blob: 5964e808d73d3d471d129d9fed2500c481061a70 [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"
Andi Kleen44b1e602016-05-30 12:49:42 -030059#include "util/group.h"
Jiri Olsa4979d0c2015-11-05 15:40:46 +010060#include "util/session.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010061#include "util/tool.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030062#include "util/string2.h"
Andi Kleenb18f3e32017-08-31 12:40:31 -070063#include "util/metricgroup.h"
Arnaldo Carvalho de 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"
Jiri Olsaba6039b62015-11-05 15:40:55 +010068#include "asm/bug.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020069
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030070#include <linux/time64.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030071#include <linux/zalloc.h>
Andi Kleen44b1e602016-05-30 12:49:42 -030072#include <api/fs/fs.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030073#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030074#include <signal.h>
Peter Zijlstra1f16c572012-10-23 13:40:14 +020075#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020076#include <sys/prctl.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030077#include <inttypes.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020078#include <locale.h>
Andi Kleene3b03b62016-05-05 16:04:03 -070079#include <math.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030080#include <sys/types.h>
81#include <sys/stat.h>
Arnaldo Carvalho de Melo42087352017-04-19 19:06:30 -030082#include <sys/wait.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030083#include <unistd.h>
Jiri Olsa0ce2da12018-06-05 14:13:13 +020084#include <sys/time.h>
85#include <sys/resource.h>
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053086#include <linux/err.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020087
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030088#include <linux/ctype.h>
Jiri Olsa453fa032019-07-21 13:24:43 +020089#include <perf/evlist.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030090
Stephane Eraniand7470b62010-12-01 18:49:05 +020091#define DEFAULT_SEPARATOR " "
Kan Liangdaefd0b2017-05-26 12:05:38 -070092#define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi"
Stephane Eraniand7470b62010-12-01 18:49:05 +020093
Jiri Olsad4f63a42015-06-26 11:29:26 +020094static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010095
Andi Kleen4cabc3d2013-08-21 16:47:26 -070096/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020097static const char *transaction_attrs = {
98 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070099 "{"
100 "instructions,"
101 "cycles,"
102 "cpu/cycles-t/,"
103 "cpu/tx-start/,"
104 "cpu/el-start/,"
105 "cpu/cycles-ct/"
106 "}"
107};
108
109/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +0200110static const char * transaction_limited_attrs = {
111 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700112 "{"
113 "instructions,"
114 "cycles,"
115 "cpu/cycles-t/,"
116 "cpu/tx-start/"
117 "}"
118};
119
Andi Kleen44b1e602016-05-30 12:49:42 -0300120static const char * topdown_attrs[] = {
121 "topdown-total-slots",
122 "topdown-slots-retired",
123 "topdown-recovery-bubbles",
124 "topdown-fetch-bubbles",
125 "topdown-slots-issued",
126 NULL,
127};
128
Kan Liangdaefd0b2017-05-26 12:05:38 -0700129static const char *smi_cost_attrs = {
130 "{"
131 "msr/aperf/,"
132 "msr/smi/,"
133 "cycles"
134 "}"
135};
136
Jiri Olsa63503db2019-07-21 13:23:52 +0200137static struct evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200138
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300139static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900140 .uid = UINT_MAX,
141};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530142
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200143#define METRIC_ONLY_LEN 20
144
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200145static volatile pid_t child_pid = -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200146static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700147static bool transaction_run;
Andi Kleen44b1e602016-05-30 12:49:42 -0300148static bool topdown_run = false;
Kan Liangdaefd0b2017-05-26 12:05:38 -0700149static bool smi_cost = false;
150static bool smi_reset = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200151static int big_num_opt = -1;
Lin Ming43bece72011-08-17 18:42:07 +0800152static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200153static const char *pre_cmd = NULL;
154static const char *post_cmd = NULL;
155static bool sync_run = false;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500156static bool forever = false;
Andi Kleen44b1e602016-05-30 12:49:42 -0300157static bool force_metric_only = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100158static struct timespec ref_time;
Jiri Olsae0547312015-11-05 15:40:45 +0100159static bool append_file;
yuzhoujiandb06a262018-01-29 10:25:22 +0100160static bool interval_count;
Jiri Olsae0547312015-11-05 15:40:45 +0100161static const char *output_name;
162static int output_fd;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200163
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100164struct perf_stat {
165 bool record;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100166 struct perf_data data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100167 struct perf_session *session;
168 u64 bytes_written;
Jiri Olsaba6039b62015-11-05 15:40:55 +0100169 struct perf_tool tool;
Jiri Olsa1975d362015-11-05 15:40:56 +0100170 bool maps_allocated;
Jiri Olsaf8548392019-07-21 13:23:49 +0200171 struct perf_cpu_map *cpus;
Jiri Olsa9749b902019-07-21 13:23:50 +0200172 struct perf_thread_map *threads;
Jiri Olsa89af4e02015-11-05 15:41:02 +0100173 enum aggr_mode aggr_mode;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100174};
175
176static struct perf_stat perf_stat;
177#define STAT_RECORD perf_stat.record
178
Liming Wang60666c62009-12-31 16:05:50 +0800179static volatile int done = 0;
180
Jiri Olsa421a50f2015-07-21 14:31:22 +0200181static struct perf_stat_config stat_config = {
Jiri Olsa26893a62018-08-30 08:32:40 +0200182 .aggr_mode = AGGR_GLOBAL,
183 .scale = true,
184 .unit_width = 4, /* strlen("unit") */
185 .run_count = 1,
186 .metric_only_len = METRIC_ONLY_LEN,
187 .walltime_nsecs_stats = &walltime_nsecs_stats,
Jiri Olsa34ff0862018-08-30 08:32:47 +0200188 .big_num = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200189};
190
Stephane Eranian13370a92013-01-29 12:47:44 +0100191static inline void diff_timespec(struct timespec *r, struct timespec *a,
192 struct timespec *b)
193{
194 r->tv_sec = a->tv_sec - b->tv_sec;
195 if (a->tv_nsec < b->tv_nsec) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300196 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
Stephane Eranian13370a92013-01-29 12:47:44 +0100197 r->tv_sec--;
198 } else {
199 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
200 }
201}
202
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200203static void perf_stat__reset_stats(void)
204{
Jin Yao56739442017-12-05 22:03:07 +0800205 int i;
206
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200207 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200208 perf_stat__reset_shadow_stats();
Jin Yao56739442017-12-05 22:03:07 +0800209
210 for (i = 0; i < stat_config.stats_num; i++)
211 perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200212}
213
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100214static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100215 union perf_event *event,
216 struct perf_sample *sample __maybe_unused,
217 struct machine *machine __maybe_unused)
218{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100219 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100220 pr_err("failed to write perf data, error: %m\n");
221 return -1;
222 }
223
224 perf_stat.bytes_written += event->header.size;
225 return 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100226}
227
Jiri Olsa1975d362015-11-05 15:40:56 +0100228static int write_stat_round_event(u64 tm, u64 type)
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100229{
Jiri Olsa1975d362015-11-05 15:40:56 +0100230 return perf_event__synthesize_stat_round(NULL, tm, type,
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100231 process_synthesized_event,
232 NULL);
233}
234
235#define WRITE_STAT_ROUND_EVENT(time, interval) \
236 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
237
Jiri Olsa8cd36f32019-09-02 22:04:12 +0200238#define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y)
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100239
240static int
Jiri Olsa32dcd022019-07-21 13:23:51 +0200241perf_evsel__write_stat_event(struct evsel *counter, u32 cpu, u32 thread,
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100242 struct perf_counts_values *count)
243{
244 struct perf_sample_id *sid = SID(counter, cpu, thread);
245
246 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
247 process_synthesized_event, NULL);
248}
249
Jiri Olsa32dcd022019-07-21 13:23:51 +0200250static int read_single_counter(struct evsel *counter, int cpu,
Andi Kleenf0fbb112019-03-26 15:18:21 -0700251 int thread, struct timespec *rs)
252{
253 if (counter->tool_event == PERF_TOOL_DURATION_TIME) {
254 u64 val = rs->tv_nsec + rs->tv_sec*1000000000ULL;
255 struct perf_counts_values *count =
256 perf_counts(counter->counts, cpu, thread);
257 count->ena = count->run = val;
258 count->val = val;
259 return 0;
260 }
261 return perf_evsel__read_counter(counter, cpu, thread);
262}
263
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200264/*
265 * Read out the results of a single counter:
266 * do not aggregate counts across CPUs in system-wide mode
267 */
Jiri Olsa32dcd022019-07-21 13:23:51 +0200268static int read_counter(struct evsel *counter, struct timespec *rs)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200269{
Jiri Olsaa2f354e2019-08-22 13:11:41 +0200270 int nthreads = perf_thread_map__nr(evsel_list->core.threads);
Mark Rutland00e727b2016-07-15 11:08:10 +0100271 int ncpus, cpu, thread;
272
Jin Yao1d9f8d12017-12-05 22:03:10 +0800273 if (target__has_cpu(&target) && !target__has_per_thread(&target))
Mark Rutland00e727b2016-07-15 11:08:10 +0100274 ncpus = perf_evsel__nr_cpus(counter);
275 else
276 ncpus = 1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200277
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000278 if (!counter->supported)
279 return -ENOENT;
280
Jiri Olsa648b5af2019-08-06 11:35:19 +0200281 if (counter->core.system_wide)
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100282 nthreads = 1;
283
284 for (thread = 0; thread < nthreads; thread++) {
285 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200286 struct perf_counts_values *count;
287
288 count = perf_counts(counter->counts, cpu, thread);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200289
290 /*
291 * The leader's group read loads data into its group members
292 * (via perf_evsel__read_counter) and sets threir count->loaded.
293 */
Jiri Olsadf1d6852019-07-21 13:23:48 +0200294 if (!perf_counts__is_loaded(counter->counts, cpu, thread) &&
Andi Kleenf0fbb112019-03-26 15:18:21 -0700295 read_single_counter(counter, cpu, thread, rs)) {
Stephane Eraniandb49a712017-04-12 11:23:01 -0700296 counter->counts->scaled = -1;
297 perf_counts(counter->counts, cpu, thread)->ena = 0;
298 perf_counts(counter->counts, cpu, thread)->run = 0;
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100299 return -1;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700300 }
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100301
Jiri Olsadf1d6852019-07-21 13:23:48 +0200302 perf_counts__set_loaded(counter->counts, cpu, thread, false);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200303
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100304 if (STAT_RECORD) {
305 if (perf_evsel__write_stat_event(counter, cpu, thread, count)) {
306 pr_err("failed to write stat event\n");
307 return -1;
308 }
309 }
Andi Kleen0b1abbf2016-04-27 13:00:51 -0700310
311 if (verbose > 1) {
312 fprintf(stat_config.output,
313 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
314 perf_evsel__name(counter),
315 cpu,
316 count->val, count->ena, count->run);
317 }
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100318 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200319 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200320
321 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200322}
323
Andi Kleenf0fbb112019-03-26 15:18:21 -0700324static void read_counters(struct timespec *rs)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200325{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200326 struct evsel *counter;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700327 int ret;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200328
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300329 evlist__for_each_entry(evsel_list, counter) {
Andi Kleenf0fbb112019-03-26 15:18:21 -0700330 ret = read_counter(counter, rs);
Stephane Eraniandb49a712017-04-12 11:23:01 -0700331 if (ret)
Andi Kleen245bad82015-09-01 15:52:46 -0700332 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200333
Stephane Eraniandb49a712017-04-12 11:23:01 -0700334 if (ret == 0 && perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200335 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200336 }
337}
338
Jiri Olsaba411a92015-06-26 11:29:24 +0200339static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100340{
Stephane Eranian13370a92013-01-29 12:47:44 +0100341 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100342
Stephane Eranian13370a92013-01-29 12:47:44 +0100343 clock_gettime(CLOCK_MONOTONIC, &ts);
344 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100345
Andi Kleenf0fbb112019-03-26 15:18:21 -0700346 read_counters(&rs);
347
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100348 if (STAT_RECORD) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300349 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100350 pr_err("failed to write stat round event\n");
351 }
352
Andi Kleenb90f1332017-08-31 12:40:36 -0700353 init_stats(&walltime_nsecs_stats);
354 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000);
Jiri Olsad4f63a42015-06-26 11:29:26 +0200355 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100356}
357
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100358static void enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700359{
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200360 if (stat_config.initial_delay)
361 usleep(stat_config.initial_delay * USEC_PER_MSEC);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100362
363 /*
364 * We need to enable counters only if:
365 * - we don't have tracee (attaching to task or cpu)
366 * - we have initial delay configured
367 */
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200368 if (!target__none(&target) || stat_config.initial_delay)
Jiri Olsa1c87f162019-07-21 13:24:08 +0200369 evlist__enable(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700370}
371
Mark Rutland3df33ef2016-08-09 14:04:29 +0100372static void disable_counters(void)
373{
374 /*
375 * If we don't have tracee (attaching to task or cpu), counters may
376 * still be running. To get accurate group ratios, we must stop groups
377 * from counting before reading their constituent counters.
378 */
379 if (!target__none(&target))
Jiri Olsae74676d2019-07-21 13:24:09 +0200380 evlist__disable(evsel_list);
Mark Rutland3df33ef2016-08-09 14:04:29 +0100381}
382
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300383static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300384
385/*
386 * perf_evlist__prepare_workload will send a SIGUSR1
387 * if the fork fails, since we asked by setting its
388 * want_signal to true.
389 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300390static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
391 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300392{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300393 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300394}
395
Jiri Olsa32dcd022019-07-21 13:23:51 +0200396static bool perf_evsel__should_store_id(struct evsel *counter)
Jiri Olsa82bf3112017-07-26 14:02:06 +0200397{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200398 return STAT_RECORD || counter->core.attr.read_format & PERF_FORMAT_ID;
Jiri Olsa82bf3112017-07-26 14:02:06 +0200399}
400
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200401static bool is_target_alive(struct target *_target,
Jiri Olsa9749b902019-07-21 13:23:50 +0200402 struct perf_thread_map *threads)
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200403{
404 struct stat st;
405 int i;
406
407 if (!target__has_task(_target))
408 return true;
409
410 for (i = 0; i < threads->nr; i++) {
411 char path[PATH_MAX];
412
413 scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(),
414 threads->map[i].pid);
415
416 if (!stat(path, &st))
417 return true;
418 }
419
420 return false;
421}
422
Jiri Olsae55c14a2018-04-23 11:08:21 +0200423static int __run_perf_stat(int argc, const char **argv, int run_idx)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200424{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200425 int interval = stat_config.interval;
yuzhoujiandb06a262018-01-29 10:25:22 +0100426 int times = stat_config.times;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100427 int timeout = stat_config.timeout;
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -0300428 char msg[BUFSIZ];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200429 unsigned long long t0, t1;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200430 struct evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100431 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100432 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200433 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300434 const bool forks = (argc > 0);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100435 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200436
Stephane Eranian13370a92013-01-29 12:47:44 +0100437 if (interval) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300438 ts.tv_sec = interval / USEC_PER_MSEC;
439 ts.tv_nsec = (interval % USEC_PER_MSEC) * NSEC_PER_MSEC;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100440 } else if (timeout) {
441 ts.tv_sec = timeout / USEC_PER_MSEC;
442 ts.tv_nsec = (timeout % USEC_PER_MSEC) * NSEC_PER_MSEC;
Stephane Eranian13370a92013-01-29 12:47:44 +0100443 } else {
444 ts.tv_sec = 1;
445 ts.tv_nsec = 0;
446 }
447
Liming Wang60666c62009-12-31 16:05:50 +0800448 if (forks) {
Jiri Olsa664c98d2015-11-05 15:40:50 +0100449 if (perf_evlist__prepare_workload(evsel_list, &target, argv, is_pipe,
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300450 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900451 perror("failed to prepare workload");
452 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800453 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900454 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000455 }
456
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200457 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300458 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200459
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300460 evlist__for_each_entry(evsel_list, counter) {
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300461try_again:
Jiri Olsad09cefd2018-08-30 08:32:17 +0200462 if (create_perf_stat_counter(counter, &stat_config, &target) < 0) {
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700463
464 /* Weak group failed. Reset the group. */
Andi Kleen35c19802017-09-05 14:13:24 -0700465 if ((errno == EINVAL || errno == EBADF) &&
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700466 counter->leader != counter &&
467 counter->weak_group) {
Andi Kleenc3537fc2018-10-01 12:59:26 -0700468 counter = perf_evlist__reset_weak_group(evsel_list, counter);
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700469 goto try_again;
470 }
471
David Ahern979987a2012-05-08 09:29:16 -0600472 /*
473 * PPC returns ENXIO for HW counters until 2.6.37
474 * (behavior changed with commit b0a873e).
475 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100476 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600477 errno == ENOENT || errno == EOPNOTSUPP ||
478 errno == ENXIO) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900479 if (verbose > 0)
David Ahernc63ca0c2011-04-29 16:04:15 -0600480 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300481 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600482 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400483
484 if ((counter->leader != counter) ||
Jiri Olsa5643b1a2019-07-21 13:24:46 +0200485 !(counter->leader->core.nr_members > 1))
Kan Liangcb5ef602015-06-11 02:32:40 -0400486 continue;
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300487 } else if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900488 if (verbose > 0)
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300489 ui__warning("%s\n", msg);
490 goto try_again;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800491 } else if (target__has_per_thread(&target) &&
Jiri Olsa03617c22019-07-21 13:24:42 +0200492 evsel_list->core.threads &&
493 evsel_list->core.threads->err_thread != -1) {
Jin Yaoab6c79b2018-01-16 23:43:08 +0800494 /*
495 * For global --per-thread case, skip current
496 * error thread.
497 */
Jiri Olsa03617c22019-07-21 13:24:42 +0200498 if (!thread_map__remove(evsel_list->core.threads,
499 evsel_list->core.threads->err_thread)) {
500 evsel_list->core.threads->err_thread = -1;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800501 goto try_again;
502 }
503 }
Ingo Molnarede70292011-04-28 08:48:42 +0200504
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300505 perf_evsel__open_strerror(counter, &target,
506 errno, msg, sizeof(msg));
507 ui__error("%s\n", msg);
508
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200509 if (child_pid != -1)
510 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600511
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200512 return -1;
513 }
David Ahern2cee77c2011-05-30 08:55:59 -0600514 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100515
516 l = strlen(counter->unit);
Jiri Olsadf4f7b42018-08-30 08:32:32 +0200517 if (l > stat_config.unit_width)
518 stat_config.unit_width = l;
Jiri Olsa2af46462015-11-05 15:40:49 +0100519
Jiri Olsa82bf3112017-07-26 14:02:06 +0200520 if (perf_evsel__should_store_id(counter) &&
Jiri Olsa650d6222018-08-30 08:32:16 +0200521 perf_evsel__store_ids(counter, evsel_list))
Jiri Olsa2af46462015-11-05 15:40:49 +0100522 return -1;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300523 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200524
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300525 if (perf_evlist__apply_filters(evsel_list, &counter)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300526 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300527 counter->filter, perf_evsel__name(counter), errno,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300528 str_error_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100529 return -1;
530 }
531
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100532 if (STAT_RECORD) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100533 int err, fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100534
Jiri Olsa664c98d2015-11-05 15:40:50 +0100535 if (is_pipe) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100536 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
Jiri Olsa664c98d2015-11-05 15:40:50 +0100537 } else {
538 err = perf_session__write_header(perf_stat.session, evsel_list,
539 fd, false);
540 }
541
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100542 if (err < 0)
543 return err;
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100544
Arnaldo Carvalho de Melob2518922019-09-10 17:17:33 +0100545 err = perf_event__synthesize_stat_events(&stat_config, NULL, evsel_list,
546 process_synthesized_event, is_pipe);
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100547 if (err < 0)
548 return err;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100549 }
550
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200551 /*
552 * Enable counters and exec the command:
553 */
554 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100555 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200556
Liming Wang60666c62009-12-31 16:05:50 +0800557 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900558 perf_evlist__start_workload(evsel_list);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100559 enable_counters();
Namhyung Kimacf28922013-03-11 16:43:18 +0900560
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100561 if (interval || timeout) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100562 while (!waitpid(child_pid, &status, WNOHANG)) {
563 nanosleep(&ts, NULL);
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100564 if (timeout)
565 break;
Jiri Olsaba411a92015-06-26 11:29:24 +0200566 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100567 if (interval_count && !(--times))
568 break;
Stephane Eranian13370a92013-01-29 12:47:44 +0100569 }
570 }
Jin Yao8a992552019-01-03 15:40:45 +0800571 if (child_pid != -1)
572 wait4(child_pid, &status, 0, &stat_config.ru_data);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300573
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300574 if (workload_exec_errno) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300575 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300576 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300577 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300578 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300579
Andi Kleen33e49ea2011-09-15 14:31:40 -0700580 if (WIFSIGNALED(status))
581 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800582 } else {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100583 enable_counters();
Stephane Eranian13370a92013-01-29 12:47:44 +0100584 while (!done) {
585 nanosleep(&ts, NULL);
Jiri Olsa03617c22019-07-21 13:24:42 +0200586 if (!is_target_alive(&target, evsel_list->core.threads))
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200587 break;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100588 if (timeout)
589 break;
yuzhoujiandb06a262018-01-29 10:25:22 +0100590 if (interval) {
Jiri Olsaba411a92015-06-26 11:29:24 +0200591 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100592 if (interval_count && !(--times))
593 break;
594 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100595 }
Liming Wang60666c62009-12-31 16:05:50 +0800596 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200597
Mark Rutland3df33ef2016-08-09 14:04:29 +0100598 disable_counters();
599
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200600 t1 = rdclock();
601
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200602 if (stat_config.walltime_run_table)
603 stat_config.walltime_run[run_idx] = t1 - t0;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200604
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200605 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200606
Mark Rutland3df33ef2016-08-09 14:04:29 +0100607 /*
608 * Closing a group leader splits the group, and as we only disable
609 * group leaders, results in remaining events becoming enabled. To
610 * avoid arbitrary skew, we must read all counters before closing any
611 * group leaders.
612 */
Andi Kleenf0fbb112019-03-26 15:18:21 -0700613 read_counters(&(struct timespec) { .tv_nsec = t1-t0 });
Jiri Olsa08ef3af2019-07-15 16:21:21 +0200614
615 /*
616 * We need to keep evsel_list alive, because it's processed
617 * later the evsel_list will be closed after.
618 */
619 if (!STAT_RECORD)
Jiri Olsa750b4ed2019-07-21 13:24:07 +0200620 evlist__close(evsel_list);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200621
Ingo Molnar42202dd2009-06-13 14:57:28 +0200622 return WEXITSTATUS(status);
623}
624
Jiri Olsae55c14a2018-04-23 11:08:21 +0200625static int run_perf_stat(int argc, const char **argv, int run_idx)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200626{
627 int ret;
628
629 if (pre_cmd) {
630 ret = system(pre_cmd);
631 if (ret)
632 return ret;
633 }
634
635 if (sync_run)
636 sync();
637
Jiri Olsae55c14a2018-04-23 11:08:21 +0200638 ret = __run_perf_stat(argc, argv, run_idx);
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200639 if (ret)
640 return ret;
641
642 if (post_cmd) {
643 ret = system(post_cmd);
644 if (ret)
645 return ret;
646 }
647
648 return ret;
649}
650
Jiri Olsaa5a9eac2018-08-30 08:32:24 +0200651static void print_counters(struct timespec *ts, int argc, const char **argv)
652{
Jiri Olsa01748202018-08-30 08:32:25 +0200653 /* Do not print anything if we record to the pipe. */
654 if (STAT_RECORD && perf_stat.data.is_pipe)
655 return;
656
Jiri Olsac512e0e2018-08-30 08:32:33 +0200657 perf_evlist__print_counters(evsel_list, &stat_config, &target,
Jiri Olsab64df7f2018-08-30 08:32:26 +0200658 ts, argc, argv);
Jiri Olsaa5a9eac2018-08-30 08:32:24 +0200659}
660
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200661static volatile int signr = -1;
662
Ingo Molnar52425192009-05-26 09:17:18 +0200663static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200664{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200665 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +0800666 done = 1;
667
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200668 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200669 /*
670 * render child_pid harmless
671 * won't send SIGTERM to a random
672 * process in case of race condition
673 * and fast PID recycling
674 */
675 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200676}
677
678static void sig_atexit(void)
679{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200680 sigset_t set, oset;
681
682 /*
683 * avoid race condition with SIGCHLD handler
684 * in skip_signal() which is modifying child_pid
685 * goal is to avoid send SIGTERM to a random
686 * process
687 */
688 sigemptyset(&set);
689 sigaddset(&set, SIGCHLD);
690 sigprocmask(SIG_BLOCK, &set, &oset);
691
Chris Wilson933da832009-10-04 01:35:01 +0100692 if (child_pid != -1)
693 kill(child_pid, SIGTERM);
694
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200695 sigprocmask(SIG_SETMASK, &oset, NULL);
696
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200697 if (signr == -1)
698 return;
699
700 signal(signr, SIG_DFL);
701 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200702}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200703
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300704static int stat__set_big_num(const struct option *opt __maybe_unused,
705 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200706{
707 big_num_opt = unset ? 0 : 1;
708 return 0;
709}
710
Andi Kleen44b1e602016-05-30 12:49:42 -0300711static int enable_metric_only(const struct option *opt __maybe_unused,
712 const char *s __maybe_unused, int unset)
713{
714 force_metric_only = true;
Jiri Olsa0ce5aa02018-08-30 08:32:31 +0200715 stat_config.metric_only = !unset;
Andi Kleen44b1e602016-05-30 12:49:42 -0300716 return 0;
717}
718
Andi Kleenb18f3e32017-08-31 12:40:31 -0700719static int parse_metric_groups(const struct option *opt,
720 const char *str,
721 int unset __maybe_unused)
722{
Jiri Olsad0192fd2018-08-30 08:32:51 +0200723 return metricgroup__parse_groups(opt, str, &stat_config.metric_events);
Andi Kleenb18f3e32017-08-31 12:40:31 -0700724}
725
Michael Petlan51433ea2018-12-10 11:00:04 -0500726static struct option stat_options[] = {
Jiri Olsae0547312015-11-05 15:40:45 +0100727 OPT_BOOLEAN('T', "transaction", &transaction_run,
728 "hardware transaction statistics"),
729 OPT_CALLBACK('e', "event", &evsel_list, "event",
730 "event selector. use 'perf list' to list available events",
731 parse_events_option),
732 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
733 "event filter", parse_filter),
Jiri Olsa5698f262018-08-30 08:32:12 +0200734 OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit,
Jiri Olsae0547312015-11-05 15:40:45 +0100735 "child tasks do not inherit counters"),
736 OPT_STRING('p', "pid", &target.pid, "pid",
737 "stat events on existing process id"),
738 OPT_STRING('t', "tid", &target.tid, "tid",
739 "stat events on existing thread id"),
740 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
741 "system-wide collection from all CPUs"),
742 OPT_BOOLEAN('g', "group", &group,
743 "put the counters into a counter group"),
Andi Kleen75998bb2019-03-14 15:50:01 -0700744 OPT_BOOLEAN(0, "scale", &stat_config.scale,
745 "Use --no-scale to disable counter scaling for multiplexing"),
Jiri Olsae0547312015-11-05 15:40:45 +0100746 OPT_INCR('v', "verbose", &verbose,
747 "be more verbose (show counter open errors, etc)"),
Jiri Olsad97ae042018-08-30 08:32:36 +0200748 OPT_INTEGER('r', "repeat", &stat_config.run_count,
Jiri Olsae0547312015-11-05 15:40:45 +0100749 "repeat command and print average + stddev (max: 100, forever: 0)"),
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200750 OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table,
Jiri Olsae55c14a2018-04-23 11:08:21 +0200751 "display details about each run (only with -r option)"),
Jiri Olsaaea0dca2018-08-30 08:32:41 +0200752 OPT_BOOLEAN('n', "null", &stat_config.null_run,
Jiri Olsae0547312015-11-05 15:40:45 +0100753 "null run - dont start any counters"),
754 OPT_INCR('d', "detailed", &detailed_run,
755 "detailed run - start a lot of events"),
756 OPT_BOOLEAN('S', "sync", &sync_run,
757 "call sync() before starting a run"),
758 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
759 "print large numbers with thousands\' separators",
760 stat__set_big_num),
761 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
762 "list of cpus to monitor in system-wide"),
763 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
764 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsafdee3352018-08-30 08:32:48 +0200765 OPT_BOOLEAN(0, "no-merge", &stat_config.no_merge, "Do not merge identical named events"),
Jiri Olsafa7070a2018-08-30 08:32:29 +0200766 OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator",
Jiri Olsae0547312015-11-05 15:40:45 +0100767 "print counts with custom separator"),
768 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
769 "monitor event in cgroup name only", parse_cgroups),
770 OPT_STRING('o', "output", &output_name, "file", "output file name"),
771 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
772 OPT_INTEGER(0, "log-fd", &output_fd,
773 "log output to fd, instead of stderr"),
774 OPT_STRING(0, "pre", &pre_cmd, "command",
775 "command to run prior to the measured command"),
776 OPT_STRING(0, "post", &post_cmd, "command",
777 "command to run after to the measured command"),
778 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Alexey Budankov9dc9a952018-04-03 21:18:33 +0300779 "print counts at regular interval in ms "
780 "(overhead is possible for values <= 100ms)"),
yuzhoujiandb06a262018-01-29 10:25:22 +0100781 OPT_INTEGER(0, "interval-count", &stat_config.times,
782 "print counts for fixed number of times"),
Jiri Olsa132c6ba2018-08-30 08:32:30 +0200783 OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear,
Jiri Olsa9660e082018-06-07 00:15:06 +0200784 "clear screen in between new interval"),
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100785 OPT_UINTEGER(0, "timeout", &stat_config.timeout,
786 "stop workload and print counts after a timeout period in ms (>= 10ms)"),
Jiri Olsae0547312015-11-05 15:40:45 +0100787 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
788 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -0700789 OPT_SET_UINT(0, "per-die", &stat_config.aggr_mode,
790 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsae0547312015-11-05 15:40:45 +0100791 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
792 "aggregate counts per physical processor core", AGGR_CORE),
793 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
794 "aggregate counts per thread", AGGR_THREAD),
Jiri Olsa86895b42019-08-28 10:17:43 +0200795 OPT_SET_UINT(0, "per-node", &stat_config.aggr_mode,
796 "aggregate counts per numa node", AGGR_NODE),
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200797 OPT_UINTEGER('D', "delay", &stat_config.initial_delay,
Jiri Olsae0547312015-11-05 15:40:45 +0100798 "ms to wait before starting measurement after program start"),
Jiri Olsa0ce5aa02018-08-30 08:32:31 +0200799 OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL,
Andi Kleen44b1e602016-05-30 12:49:42 -0300800 "Only print computed metrics. No raw values", enable_metric_only),
801 OPT_BOOLEAN(0, "topdown", &topdown_run,
802 "measure topdown level 1 statistics"),
Kan Liangdaefd0b2017-05-26 12:05:38 -0700803 OPT_BOOLEAN(0, "smi-cost", &smi_cost,
804 "measure SMI cost"),
Andi Kleenb18f3e32017-08-31 12:40:31 -0700805 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
806 "monitor specified metrics or metric groups (separated by ,)",
807 parse_metric_groups),
Jin Yaodd071022019-10-11 13:05:45 +0800808 OPT_BOOLEAN_FLAG(0, "all-kernel", &stat_config.all_kernel,
809 "Configure all used events to run in kernel space.",
810 PARSE_OPT_EXCLUSIVE),
811 OPT_BOOLEAN_FLAG(0, "all-user", &stat_config.all_user,
812 "Configure all used events to run in user space.",
813 PARSE_OPT_EXCLUSIVE),
Jiri Olsae0547312015-11-05 15:40:45 +0100814 OPT_END()
815};
816
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200817static int perf_stat__get_socket(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +0200818 struct perf_cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200819{
820 return cpu_map__get_socket(map, cpu, NULL);
821}
822
Kan Liangdb5742b2019-06-04 15:50:42 -0700823static int perf_stat__get_die(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +0200824 struct perf_cpu_map *map, int cpu)
Kan Liangdb5742b2019-06-04 15:50:42 -0700825{
826 return cpu_map__get_die(map, cpu, NULL);
827}
828
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200829static int perf_stat__get_core(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +0200830 struct perf_cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200831{
832 return cpu_map__get_core(map, cpu, NULL);
833}
834
Jiri Olsa86895b42019-08-28 10:17:43 +0200835static int perf_stat__get_node(struct perf_stat_config *config __maybe_unused,
836 struct perf_cpu_map *map, int cpu)
837{
838 return cpu_map__get_node(map, cpu, NULL);
839}
840
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200841static int perf_stat__get_aggr(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +0200842 aggr_get_id_t get_id, struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100843{
844 int cpu;
845
846 if (idx >= map->nr)
847 return -1;
848
849 cpu = map->map[idx];
850
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200851 if (config->cpus_aggr_map->map[cpu] == -1)
852 config->cpus_aggr_map->map[cpu] = get_id(config, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100853
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200854 return config->cpus_aggr_map->map[cpu];
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100855}
856
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200857static int perf_stat__get_socket_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +0200858 struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100859{
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200860 return perf_stat__get_aggr(config, perf_stat__get_socket, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100861}
862
Kan Liangdb5742b2019-06-04 15:50:42 -0700863static int perf_stat__get_die_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +0200864 struct perf_cpu_map *map, int idx)
Kan Liangdb5742b2019-06-04 15:50:42 -0700865{
866 return perf_stat__get_aggr(config, perf_stat__get_die, map, idx);
867}
868
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200869static int perf_stat__get_core_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +0200870 struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100871{
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200872 return perf_stat__get_aggr(config, perf_stat__get_core, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100873}
874
Jiri Olsa86895b42019-08-28 10:17:43 +0200875static int perf_stat__get_node_cached(struct perf_stat_config *config,
876 struct perf_cpu_map *map, int idx)
877{
878 return perf_stat__get_aggr(config, perf_stat__get_node, map, idx);
879}
880
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800881static bool term_percore_set(void)
882{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200883 struct evsel *counter;
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800884
885 evlist__for_each_entry(evsel_list, counter) {
886 if (counter->percore)
887 return true;
888 }
889
890 return false;
891}
892
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100893static int perf_stat_init_aggr_mode(void)
894{
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100895 int nr;
896
Jiri Olsa421a50f2015-07-21 14:31:22 +0200897 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100898 case AGGR_SOCKET:
Jiri Olsaf72f9012019-07-21 13:24:41 +0200899 if (cpu_map__build_socket_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100900 perror("cannot build socket map");
901 return -1;
902 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200903 stat_config.aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100904 break;
Kan Liangdb5742b2019-06-04 15:50:42 -0700905 case AGGR_DIE:
Jiri Olsaf72f9012019-07-21 13:24:41 +0200906 if (cpu_map__build_die_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Kan Liangdb5742b2019-06-04 15:50:42 -0700907 perror("cannot build die map");
908 return -1;
909 }
910 stat_config.aggr_get_id = perf_stat__get_die_cached;
911 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100912 case AGGR_CORE:
Jiri Olsaf72f9012019-07-21 13:24:41 +0200913 if (cpu_map__build_core_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100914 perror("cannot build core map");
915 return -1;
916 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200917 stat_config.aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100918 break;
Jiri Olsa86895b42019-08-28 10:17:43 +0200919 case AGGR_NODE:
920 if (cpu_map__build_node_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
921 perror("cannot build core map");
922 return -1;
923 }
924 stat_config.aggr_get_id = perf_stat__get_node_cached;
925 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100926 case AGGR_NONE:
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800927 if (term_percore_set()) {
Jiri Olsaf72f9012019-07-21 13:24:41 +0200928 if (cpu_map__build_core_map(evsel_list->core.cpus,
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800929 &stat_config.aggr_map)) {
930 perror("cannot build core map");
931 return -1;
932 }
933 stat_config.aggr_get_id = perf_stat__get_core_cached;
934 }
935 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100936 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +0200937 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +0200938 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100939 default:
940 break;
941 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100942
943 /*
944 * The evsel_list->cpus is the base we operate on,
945 * taking the highest cpu number to be the size of
946 * the aggregation translate cpumap.
947 */
Jiri Olsa4256d432019-09-02 14:12:53 +0200948 nr = perf_cpu_map__max(evsel_list->core.cpus);
Jiri Olsa315c0a12019-08-22 13:11:39 +0200949 stat_config.cpus_aggr_map = perf_cpu_map__empty_new(nr + 1);
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200950 return stat_config.cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100951}
952
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +0900953static void perf_stat__exit_aggr_mode(void)
954{
Jiri Olsa38f01d82019-07-21 13:24:17 +0200955 perf_cpu_map__put(stat_config.aggr_map);
956 perf_cpu_map__put(stat_config.cpus_aggr_map);
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200957 stat_config.aggr_map = NULL;
958 stat_config.cpus_aggr_map = NULL;
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +0900959}
960
Jiri Olsaf8548392019-07-21 13:23:49 +0200961static inline int perf_env__get_cpu(struct perf_env *env, struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100962{
963 int cpu;
964
965 if (idx > map->nr)
966 return -1;
967
968 cpu = map->map[idx];
969
Jan Stancekda8a58b2017-02-17 12:10:26 +0100970 if (cpu >= env->nr_cpus_avail)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100971 return -1;
972
973 return cpu;
974}
975
Jiri Olsaf8548392019-07-21 13:23:49 +0200976static int perf_env__get_socket(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100977{
978 struct perf_env *env = data;
979 int cpu = perf_env__get_cpu(env, map, idx);
980
981 return cpu == -1 ? -1 : env->cpu[cpu].socket_id;
982}
983
Jiri Olsaf8548392019-07-21 13:23:49 +0200984static int perf_env__get_die(struct perf_cpu_map *map, int idx, void *data)
Kan Liangdb5742b2019-06-04 15:50:42 -0700985{
986 struct perf_env *env = data;
987 int die_id = -1, cpu = perf_env__get_cpu(env, map, idx);
988
989 if (cpu != -1) {
990 /*
991 * Encode socket in bit range 15:8
992 * die_id is relative to socket,
993 * we need a global id. So we combine
994 * socket + die id
995 */
996 if (WARN_ONCE(env->cpu[cpu].socket_id >> 8, "The socket id number is too big.\n"))
997 return -1;
998
999 if (WARN_ONCE(env->cpu[cpu].die_id >> 8, "The die id number is too big.\n"))
1000 return -1;
1001
1002 die_id = (env->cpu[cpu].socket_id << 8) | (env->cpu[cpu].die_id & 0xff);
1003 }
1004
1005 return die_id;
1006}
1007
Jiri Olsaf8548392019-07-21 13:23:49 +02001008static int perf_env__get_core(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001009{
1010 struct perf_env *env = data;
1011 int core = -1, cpu = perf_env__get_cpu(env, map, idx);
1012
1013 if (cpu != -1) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001014 /*
Kan Liangdb5742b2019-06-04 15:50:42 -07001015 * Encode socket in bit range 31:24
1016 * encode die id in bit range 23:16
1017 * core_id is relative to socket and die,
Jiri Olsa68d702f2015-11-05 15:40:58 +01001018 * we need a global id. So we combine
Kan Liangdb5742b2019-06-04 15:50:42 -07001019 * socket + die id + core id
Jiri Olsa68d702f2015-11-05 15:40:58 +01001020 */
Kan Liangdb5742b2019-06-04 15:50:42 -07001021 if (WARN_ONCE(env->cpu[cpu].socket_id >> 8, "The socket id number is too big.\n"))
1022 return -1;
1023
1024 if (WARN_ONCE(env->cpu[cpu].die_id >> 8, "The die id number is too big.\n"))
1025 return -1;
1026
1027 if (WARN_ONCE(env->cpu[cpu].core_id >> 16, "The core id number is too big.\n"))
1028 return -1;
1029
1030 core = (env->cpu[cpu].socket_id << 24) |
1031 (env->cpu[cpu].die_id << 16) |
1032 (env->cpu[cpu].core_id & 0xffff);
Jiri Olsa68d702f2015-11-05 15:40:58 +01001033 }
1034
1035 return core;
1036}
1037
Jiri Olsa86895b42019-08-28 10:17:43 +02001038static int perf_env__get_node(struct perf_cpu_map *map, int idx, void *data)
1039{
1040 int cpu = perf_env__get_cpu(data, map, idx);
1041
1042 return perf_env__numa_node(data, cpu);
1043}
1044
Jiri Olsaf8548392019-07-21 13:23:49 +02001045static int perf_env__build_socket_map(struct perf_env *env, struct perf_cpu_map *cpus,
1046 struct perf_cpu_map **sockp)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001047{
1048 return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
1049}
1050
Jiri Olsaf8548392019-07-21 13:23:49 +02001051static int perf_env__build_die_map(struct perf_env *env, struct perf_cpu_map *cpus,
1052 struct perf_cpu_map **diep)
Kan Liangdb5742b2019-06-04 15:50:42 -07001053{
1054 return cpu_map__build_map(cpus, diep, perf_env__get_die, env);
1055}
1056
Jiri Olsaf8548392019-07-21 13:23:49 +02001057static int perf_env__build_core_map(struct perf_env *env, struct perf_cpu_map *cpus,
1058 struct perf_cpu_map **corep)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001059{
1060 return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
1061}
1062
Jiri Olsa86895b42019-08-28 10:17:43 +02001063static int perf_env__build_node_map(struct perf_env *env, struct perf_cpu_map *cpus,
1064 struct perf_cpu_map **nodep)
1065{
1066 return cpu_map__build_map(cpus, nodep, perf_env__get_node, env);
1067}
1068
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001069static int perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001070 struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001071{
1072 return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
1073}
Kan Liangdb5742b2019-06-04 15:50:42 -07001074static int perf_stat__get_die_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001075 struct perf_cpu_map *map, int idx)
Kan Liangdb5742b2019-06-04 15:50:42 -07001076{
1077 return perf_env__get_die(map, idx, &perf_stat.session->header.env);
1078}
Jiri Olsa68d702f2015-11-05 15:40:58 +01001079
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001080static int perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001081 struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001082{
1083 return perf_env__get_core(map, idx, &perf_stat.session->header.env);
1084}
1085
Jiri Olsa86895b42019-08-28 10:17:43 +02001086static int perf_stat__get_node_file(struct perf_stat_config *config __maybe_unused,
1087 struct perf_cpu_map *map, int idx)
1088{
1089 return perf_env__get_node(map, idx, &perf_stat.session->header.env);
1090}
1091
Jiri Olsa68d702f2015-11-05 15:40:58 +01001092static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
1093{
1094 struct perf_env *env = &st->session->header.env;
1095
1096 switch (stat_config.aggr_mode) {
1097 case AGGR_SOCKET:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001098 if (perf_env__build_socket_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001099 perror("cannot build socket map");
1100 return -1;
1101 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001102 stat_config.aggr_get_id = perf_stat__get_socket_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001103 break;
Kan Liangdb5742b2019-06-04 15:50:42 -07001104 case AGGR_DIE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001105 if (perf_env__build_die_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Kan Liangdb5742b2019-06-04 15:50:42 -07001106 perror("cannot build die map");
1107 return -1;
1108 }
1109 stat_config.aggr_get_id = perf_stat__get_die_file;
1110 break;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001111 case AGGR_CORE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001112 if (perf_env__build_core_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001113 perror("cannot build core map");
1114 return -1;
1115 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001116 stat_config.aggr_get_id = perf_stat__get_core_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001117 break;
Jiri Olsa86895b42019-08-28 10:17:43 +02001118 case AGGR_NODE:
1119 if (perf_env__build_node_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
1120 perror("cannot build core map");
1121 return -1;
1122 }
1123 stat_config.aggr_get_id = perf_stat__get_node_file;
1124 break;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001125 case AGGR_NONE:
1126 case AGGR_GLOBAL:
1127 case AGGR_THREAD:
1128 case AGGR_UNSET:
1129 default:
1130 break;
1131 }
1132
1133 return 0;
1134}
1135
Andi Kleen44b1e602016-05-30 12:49:42 -03001136static int topdown_filter_events(const char **attr, char **str, bool use_group)
1137{
1138 int off = 0;
1139 int i;
1140 int len = 0;
1141 char *s;
1142
1143 for (i = 0; attr[i]; i++) {
1144 if (pmu_have_event("cpu", attr[i])) {
1145 len += strlen(attr[i]) + 1;
1146 attr[i - off] = attr[i];
1147 } else
1148 off++;
1149 }
1150 attr[i - off] = NULL;
1151
1152 *str = malloc(len + 1 + 2);
1153 if (!*str)
1154 return -1;
1155 s = *str;
1156 if (i - off == 0) {
1157 *s = 0;
1158 return 0;
1159 }
1160 if (use_group)
1161 *s++ = '{';
1162 for (i = 0; attr[i]; i++) {
1163 strcpy(s, attr[i]);
1164 s += strlen(s);
1165 *s++ = ',';
1166 }
1167 if (use_group) {
1168 s[-1] = '}';
1169 *s = 0;
1170 } else
1171 s[-1] = 0;
1172 return 0;
1173}
1174
1175__weak bool arch_topdown_check_group(bool *warn)
1176{
1177 *warn = false;
1178 return false;
1179}
1180
1181__weak void arch_topdown_group_warn(void)
1182{
1183}
1184
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001185/*
1186 * Add default attributes, if there were no attributes specified or
1187 * if -d/--detailed, -d -d or -d -d -d is used:
1188 */
1189static int add_default_attributes(void)
1190{
Andi Kleen44b1e602016-05-30 12:49:42 -03001191 int err;
Andi Kleen9dec4472016-02-26 16:27:56 -08001192 struct perf_event_attr default_attrs0[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001193
1194 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1195 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1196 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1197 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1198
1199 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Andi Kleen9dec4472016-02-26 16:27:56 -08001200};
1201 struct perf_event_attr frontend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001202 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001203};
1204 struct perf_event_attr backend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001205 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001206};
1207 struct perf_event_attr default_attrs1[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001208 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1209 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1210 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1211
1212};
1213
1214/*
1215 * Detailed stats (-d), covering the L1 and last level data caches:
1216 */
1217 struct perf_event_attr detailed_attrs[] = {
1218
1219 { .type = PERF_TYPE_HW_CACHE,
1220 .config =
1221 PERF_COUNT_HW_CACHE_L1D << 0 |
1222 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1223 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1224
1225 { .type = PERF_TYPE_HW_CACHE,
1226 .config =
1227 PERF_COUNT_HW_CACHE_L1D << 0 |
1228 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1229 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1230
1231 { .type = PERF_TYPE_HW_CACHE,
1232 .config =
1233 PERF_COUNT_HW_CACHE_LL << 0 |
1234 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1235 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1236
1237 { .type = PERF_TYPE_HW_CACHE,
1238 .config =
1239 PERF_COUNT_HW_CACHE_LL << 0 |
1240 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1241 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1242};
1243
1244/*
1245 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1246 */
1247 struct perf_event_attr very_detailed_attrs[] = {
1248
1249 { .type = PERF_TYPE_HW_CACHE,
1250 .config =
1251 PERF_COUNT_HW_CACHE_L1I << 0 |
1252 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1253 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1254
1255 { .type = PERF_TYPE_HW_CACHE,
1256 .config =
1257 PERF_COUNT_HW_CACHE_L1I << 0 |
1258 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1259 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1260
1261 { .type = PERF_TYPE_HW_CACHE,
1262 .config =
1263 PERF_COUNT_HW_CACHE_DTLB << 0 |
1264 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1265 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1266
1267 { .type = PERF_TYPE_HW_CACHE,
1268 .config =
1269 PERF_COUNT_HW_CACHE_DTLB << 0 |
1270 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1271 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1272
1273 { .type = PERF_TYPE_HW_CACHE,
1274 .config =
1275 PERF_COUNT_HW_CACHE_ITLB << 0 |
1276 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1277 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1278
1279 { .type = PERF_TYPE_HW_CACHE,
1280 .config =
1281 PERF_COUNT_HW_CACHE_ITLB << 0 |
1282 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1283 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1284
1285};
1286
1287/*
1288 * Very, very detailed stats (-d -d -d), adding prefetch events:
1289 */
1290 struct perf_event_attr very_very_detailed_attrs[] = {
1291
1292 { .type = PERF_TYPE_HW_CACHE,
1293 .config =
1294 PERF_COUNT_HW_CACHE_L1D << 0 |
1295 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1296 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1297
1298 { .type = PERF_TYPE_HW_CACHE,
1299 .config =
1300 PERF_COUNT_HW_CACHE_L1D << 0 |
1301 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1302 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1303};
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001304 struct parse_events_error errinfo;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001305
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001306 /* Set attrs if no event is selected and !null_run: */
Jiri Olsaaea0dca2018-08-30 08:32:41 +02001307 if (stat_config.null_run)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001308 return 0;
1309
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001310 if (transaction_run) {
Thomas Richter742d92f2018-06-26 09:17:01 +02001311 /* Handle -T as -M transaction. Once platform specific metrics
1312 * support has been added to the json files, all archictures
1313 * will use this approach. To determine transaction support
1314 * on an architecture test for such a metric name.
1315 */
1316 if (metricgroup__has_metric("transaction")) {
1317 struct option opt = { .value = &evsel_list };
1318
1319 return metricgroup__parse_groups(&opt, "transaction",
Jiri Olsad0192fd2018-08-30 08:32:51 +02001320 &stat_config.metric_events);
Thomas Richter742d92f2018-06-26 09:17:01 +02001321 }
1322
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001323 if (pmu_have_event("cpu", "cycles-ct") &&
1324 pmu_have_event("cpu", "el-start"))
Thomas Richterfca323402018-03-08 15:57:35 +01001325 err = parse_events(evsel_list, transaction_attrs,
1326 &errinfo);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001327 else
Thomas Richterfca323402018-03-08 15:57:35 +01001328 err = parse_events(evsel_list,
1329 transaction_limited_attrs,
1330 &errinfo);
Jiri Olsaa4547422015-06-03 16:25:53 +02001331 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001332 fprintf(stderr, "Cannot set up transaction events\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001333 parse_events_print_error(&errinfo, transaction_attrs);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001334 return -1;
1335 }
1336 return 0;
1337 }
1338
Kan Liangdaefd0b2017-05-26 12:05:38 -07001339 if (smi_cost) {
1340 int smi;
1341
1342 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
1343 fprintf(stderr, "freeze_on_smi is not supported.\n");
1344 return -1;
1345 }
1346
1347 if (!smi) {
1348 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
1349 fprintf(stderr, "Failed to set freeze_on_smi.\n");
1350 return -1;
1351 }
1352 smi_reset = true;
1353 }
1354
1355 if (pmu_have_event("msr", "aperf") &&
1356 pmu_have_event("msr", "smi")) {
1357 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001358 stat_config.metric_only = true;
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001359 err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001360 } else {
1361 fprintf(stderr, "To measure SMI cost, it needs "
1362 "msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001363 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001364 return -1;
1365 }
1366 if (err) {
1367 fprintf(stderr, "Cannot set up SMI cost events\n");
1368 return -1;
1369 }
1370 return 0;
1371 }
1372
Andi Kleen44b1e602016-05-30 12:49:42 -03001373 if (topdown_run) {
1374 char *str = NULL;
1375 bool warn = false;
1376
1377 if (stat_config.aggr_mode != AGGR_GLOBAL &&
1378 stat_config.aggr_mode != AGGR_CORE) {
1379 pr_err("top down event configuration requires --per-core mode\n");
1380 return -1;
1381 }
1382 stat_config.aggr_mode = AGGR_CORE;
1383 if (nr_cgroups || !target__has_cpu(&target)) {
1384 pr_err("top down event configuration requires system-wide mode (-a)\n");
1385 return -1;
1386 }
1387
1388 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001389 stat_config.metric_only = true;
Andi Kleen44b1e602016-05-30 12:49:42 -03001390 if (topdown_filter_events(topdown_attrs, &str,
1391 arch_topdown_check_group(&warn)) < 0) {
1392 pr_err("Out of memory\n");
1393 return -1;
1394 }
1395 if (topdown_attrs[0] && str) {
1396 if (warn)
1397 arch_topdown_group_warn();
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001398 err = parse_events(evsel_list, str, &errinfo);
Andi Kleen44b1e602016-05-30 12:49:42 -03001399 if (err) {
1400 fprintf(stderr,
1401 "Cannot set up top down events %s: %d\n",
1402 str, err);
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001403 parse_events_print_error(&errinfo, str);
Leo Yanc74b0502019-07-02 18:34:11 +08001404 free(str);
Andi Kleen44b1e602016-05-30 12:49:42 -03001405 return -1;
1406 }
1407 } else {
1408 fprintf(stderr, "System does not support topdown\n");
1409 return -1;
1410 }
1411 free(str);
1412 }
1413
Jiri Olsa6484d2f2019-07-21 13:24:28 +02001414 if (!evsel_list->core.nr_entries) {
Namhyung Kima1f3d562016-05-13 15:01:03 +09001415 if (target__has_cpu(&target))
1416 default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
1417
Andi Kleen9dec4472016-02-26 16:27:56 -08001418 if (perf_evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
1419 return -1;
1420 if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
1421 if (perf_evlist__add_default_attrs(evsel_list,
1422 frontend_attrs) < 0)
1423 return -1;
1424 }
1425 if (pmu_have_event("cpu", "stalled-cycles-backend")) {
1426 if (perf_evlist__add_default_attrs(evsel_list,
1427 backend_attrs) < 0)
1428 return -1;
1429 }
1430 if (perf_evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001431 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001432 }
1433
1434 /* Detailed events get appended to the event list: */
1435
1436 if (detailed_run < 1)
1437 return 0;
1438
1439 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001440 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001441 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001442
1443 if (detailed_run < 2)
1444 return 0;
1445
1446 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001447 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001448 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001449
1450 if (detailed_run < 3)
1451 return 0;
1452
1453 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001454 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001455}
1456
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001457static const char * const stat_record_usage[] = {
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001458 "perf stat record [<options>]",
1459 NULL,
1460};
1461
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001462static void init_features(struct perf_session *session)
1463{
1464 int feat;
1465
1466 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
1467 perf_header__set_feat(&session->header, feat);
1468
Jiri Olsa8002a632019-04-09 12:01:56 +02001469 perf_header__clear_feat(&session->header, HEADER_DIR_FORMAT);
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001470 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
1471 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
1472 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
1473 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
1474}
1475
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001476static int __cmd_record(int argc, const char **argv)
1477{
1478 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001479 struct perf_data *data = &perf_stat.data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001480
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001481 argc = parse_options(argc, argv, stat_options, stat_record_usage,
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001482 PARSE_OPT_STOP_AT_NON_OPTION);
1483
1484 if (output_name)
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001485 data->path = output_name;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001486
Jiri Olsad97ae042018-08-30 08:32:36 +02001487 if (stat_config.run_count != 1 || forever) {
Jiri Olsae9d6db8e82015-11-05 15:40:53 +01001488 pr_err("Cannot use -r option with perf stat record.\n");
1489 return -1;
1490 }
1491
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001492 session = perf_session__new(data, false, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05301493 if (IS_ERR(session)) {
1494 pr_err("Perf session creation failed\n");
1495 return PTR_ERR(session);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001496 }
1497
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001498 init_features(session);
1499
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001500 session->evlist = evsel_list;
1501 perf_stat.session = session;
1502 perf_stat.record = true;
1503 return argc;
1504}
1505
Jiri Olsa89f16882018-09-13 14:54:03 +02001506static int process_stat_round_event(struct perf_session *session,
1507 union perf_event *event)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001508{
Jiri Olsa72932372019-08-28 15:57:16 +02001509 struct perf_record_stat_round *stat_round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001510 struct evsel *counter;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001511 struct timespec tsh, *ts = NULL;
1512 const char **argv = session->header.env.cmdline_argv;
1513 int argc = session->header.env.nr_cmdline;
1514
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001515 evlist__for_each_entry(evsel_list, counter)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001516 perf_stat_process_counter(&stat_config, counter);
1517
Andi Kleene3b03b62016-05-05 16:04:03 -07001518 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
1519 update_stats(&walltime_nsecs_stats, stat_round->time);
Jiri Olsaa56f9392015-11-05 15:40:59 +01001520
Andi Kleene3b03b62016-05-05 16:04:03 -07001521 if (stat_config.interval && stat_round->time) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -03001522 tsh.tv_sec = stat_round->time / NSEC_PER_SEC;
1523 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001524 ts = &tsh;
1525 }
1526
1527 print_counters(ts, argc, argv);
1528 return 0;
1529}
1530
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001531static
Jiri Olsa89f16882018-09-13 14:54:03 +02001532int process_stat_config_event(struct perf_session *session,
1533 union perf_event *event)
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001534{
Jiri Olsa89f16882018-09-13 14:54:03 +02001535 struct perf_tool *tool = session->tool;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001536 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1537
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001538 perf_event__read_stat_config(&stat_config, &event->stat_config);
Jiri Olsa68d702f2015-11-05 15:40:58 +01001539
Jiri Olsa315c0a12019-08-22 13:11:39 +02001540 if (perf_cpu_map__empty(st->cpus)) {
Jiri Olsa89af4e02015-11-05 15:41:02 +01001541 if (st->aggr_mode != AGGR_UNSET)
1542 pr_warning("warning: processing task data, aggregation mode not set\n");
1543 return 0;
1544 }
1545
1546 if (st->aggr_mode != AGGR_UNSET)
1547 stat_config.aggr_mode = st->aggr_mode;
1548
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001549 if (perf_stat.data.is_pipe)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001550 perf_stat_init_aggr_mode();
1551 else
1552 perf_stat_init_aggr_mode_file(st);
1553
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001554 return 0;
1555}
1556
Jiri Olsa1975d362015-11-05 15:40:56 +01001557static int set_maps(struct perf_stat *st)
1558{
1559 if (!st->cpus || !st->threads)
1560 return 0;
1561
1562 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
1563 return -EINVAL;
1564
Jiri Olsa453fa032019-07-21 13:24:43 +02001565 perf_evlist__set_maps(&evsel_list->core, st->cpus, st->threads);
Jiri Olsa1975d362015-11-05 15:40:56 +01001566
1567 if (perf_evlist__alloc_stats(evsel_list, true))
1568 return -ENOMEM;
1569
1570 st->maps_allocated = true;
1571 return 0;
1572}
1573
1574static
Jiri Olsa89f16882018-09-13 14:54:03 +02001575int process_thread_map_event(struct perf_session *session,
1576 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01001577{
Jiri Olsa89f16882018-09-13 14:54:03 +02001578 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01001579 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1580
1581 if (st->threads) {
1582 pr_warning("Extra thread map event, ignoring.\n");
1583 return 0;
1584 }
1585
1586 st->threads = thread_map__new_event(&event->thread_map);
1587 if (!st->threads)
1588 return -ENOMEM;
1589
1590 return set_maps(st);
1591}
1592
1593static
Jiri Olsa89f16882018-09-13 14:54:03 +02001594int process_cpu_map_event(struct perf_session *session,
1595 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01001596{
Jiri Olsa89f16882018-09-13 14:54:03 +02001597 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01001598 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
Jiri Olsaf8548392019-07-21 13:23:49 +02001599 struct perf_cpu_map *cpus;
Jiri Olsa1975d362015-11-05 15:40:56 +01001600
1601 if (st->cpus) {
1602 pr_warning("Extra cpu map event, ignoring.\n");
1603 return 0;
1604 }
1605
1606 cpus = cpu_map__new_data(&event->cpu_map.data);
1607 if (!cpus)
1608 return -ENOMEM;
1609
1610 st->cpus = cpus;
1611 return set_maps(st);
1612}
1613
Jin Yao56739442017-12-05 22:03:07 +08001614static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
1615{
1616 int i;
1617
1618 config->stats = calloc(nthreads, sizeof(struct runtime_stat));
1619 if (!config->stats)
1620 return -1;
1621
1622 config->stats_num = nthreads;
1623
1624 for (i = 0; i < nthreads; i++)
1625 runtime_stat__init(&config->stats[i]);
1626
1627 return 0;
1628}
1629
1630static void runtime_stat_delete(struct perf_stat_config *config)
1631{
1632 int i;
1633
1634 if (!config->stats)
1635 return;
1636
1637 for (i = 0; i < config->stats_num; i++)
1638 runtime_stat__exit(&config->stats[i]);
1639
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001640 zfree(&config->stats);
Jin Yao56739442017-12-05 22:03:07 +08001641}
1642
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001643static const char * const stat_report_usage[] = {
Jiri Olsaba6039b62015-11-05 15:40:55 +01001644 "perf stat report [<options>]",
1645 NULL,
1646};
1647
1648static struct perf_stat perf_stat = {
1649 .tool = {
1650 .attr = perf_event__process_attr,
Jiri Olsafa6ea782015-11-05 15:41:00 +01001651 .event_update = perf_event__process_event_update,
Jiri Olsa1975d362015-11-05 15:40:56 +01001652 .thread_map = process_thread_map_event,
1653 .cpu_map = process_cpu_map_event,
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001654 .stat_config = process_stat_config_event,
Jiri Olsaa56f9392015-11-05 15:40:59 +01001655 .stat = perf_event__process_stat_event,
1656 .stat_round = process_stat_round_event,
Jiri Olsaba6039b62015-11-05 15:40:55 +01001657 },
Jiri Olsa89af4e02015-11-05 15:41:02 +01001658 .aggr_mode = AGGR_UNSET,
Jiri Olsaba6039b62015-11-05 15:40:55 +01001659};
1660
1661static int __cmd_report(int argc, const char **argv)
1662{
1663 struct perf_session *session;
1664 const struct option options[] = {
1665 OPT_STRING('i', "input", &input_name, "file", "input file name"),
Jiri Olsa89af4e02015-11-05 15:41:02 +01001666 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
1667 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -07001668 OPT_SET_UINT(0, "per-die", &perf_stat.aggr_mode,
1669 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsa89af4e02015-11-05 15:41:02 +01001670 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
1671 "aggregate counts per physical processor core", AGGR_CORE),
Jiri Olsa86895b42019-08-28 10:17:43 +02001672 OPT_SET_UINT(0, "per-node", &perf_stat.aggr_mode,
1673 "aggregate counts per numa node", AGGR_NODE),
Jiri Olsa89af4e02015-11-05 15:41:02 +01001674 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
1675 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsaba6039b62015-11-05 15:40:55 +01001676 OPT_END()
1677 };
1678 struct stat st;
1679 int ret;
1680
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001681 argc = parse_options(argc, argv, options, stat_report_usage, 0);
Jiri Olsaba6039b62015-11-05 15:40:55 +01001682
1683 if (!input_name || !strlen(input_name)) {
1684 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
1685 input_name = "-";
1686 else
1687 input_name = "perf.data";
1688 }
1689
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001690 perf_stat.data.path = input_name;
1691 perf_stat.data.mode = PERF_DATA_MODE_READ;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001692
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001693 session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05301694 if (IS_ERR(session))
1695 return PTR_ERR(session);
Jiri Olsaba6039b62015-11-05 15:40:55 +01001696
1697 perf_stat.session = session;
1698 stat_config.output = stderr;
1699 evsel_list = session->evlist;
1700
1701 ret = perf_session__process_events(session);
1702 if (ret)
1703 return ret;
1704
1705 perf_session__delete(session);
1706 return 0;
1707}
1708
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001709static void setup_system_wide(int forks)
1710{
1711 /*
1712 * Make system wide (-a) the default target if
1713 * no target was specified and one of following
1714 * conditions is met:
1715 *
1716 * - there's no workload specified
1717 * - there is workload specified but all requested
1718 * events are system wide events
1719 */
1720 if (!target__none(&target))
1721 return;
1722
1723 if (!forks)
1724 target.system_wide = true;
1725 else {
Jiri Olsa32dcd022019-07-21 13:23:51 +02001726 struct evsel *counter;
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001727
1728 evlist__for_each_entry(evsel_list, counter) {
Jiri Olsa648b5af2019-08-06 11:35:19 +02001729 if (!counter->core.system_wide)
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001730 return;
1731 }
1732
Jiri Olsa6484d2f2019-07-21 13:24:28 +02001733 if (evsel_list->core.nr_entries)
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001734 target.system_wide = true;
1735 }
1736}
1737
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001738int cmd_stat(int argc, const char **argv)
Ingo Molnar52425192009-05-26 09:17:18 +02001739{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001740 const char * const stat_usage[] = {
1741 "perf stat [<options>] [<command>]",
1742 NULL
1743 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001744 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001745 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001746 FILE *output = stderr;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001747 unsigned int interval, timeout;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001748 const char * const stat_subcommands[] = { "record", "report" };
Ingo Molnar42202dd2009-06-13 14:57:28 +02001749
Stephane Eranian5af52b52010-05-18 15:00:01 +02001750 setlocale(LC_ALL, "");
1751
Jiri Olsa0f98b112019-07-21 13:23:55 +02001752 evsel_list = evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001753 if (evsel_list == NULL)
1754 return -ENOMEM;
1755
Wang Nan1669e502016-02-19 11:43:58 +00001756 parse_events__shrink_config_terms();
Michael Petlan51433ea2018-12-10 11:00:04 -05001757
1758 /* String-parsing callback-based options would segfault when negated */
1759 set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG);
1760 set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG);
1761 set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG);
1762
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001763 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
1764 (const char **) stat_usage,
1765 PARSE_OPT_STOP_AT_NON_OPTION);
Andi Kleen37932c12017-03-20 13:17:08 -07001766 perf_stat__collect_metric_expr(evsel_list);
Andi Kleenfb4605b2016-03-01 10:57:52 -08001767 perf_stat__init_shadow_stats();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001768
Jiri Olsafa7070a2018-08-30 08:32:29 +02001769 if (stat_config.csv_sep) {
1770 stat_config.csv_output = true;
1771 if (!strcmp(stat_config.csv_sep, "\\t"))
1772 stat_config.csv_sep = "\t";
Jiri Olsa6edb78a2015-11-05 15:41:01 +01001773 } else
Jiri Olsafa7070a2018-08-30 08:32:29 +02001774 stat_config.csv_sep = DEFAULT_SEPARATOR;
Jiri Olsa6edb78a2015-11-05 15:41:01 +01001775
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001776 if (argc && !strncmp(argv[0], "rec", 3)) {
1777 argc = __cmd_record(argc, argv);
1778 if (argc < 0)
1779 return -1;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001780 } else if (argc && !strncmp(argv[0], "rep", 3))
1781 return __cmd_report(argc, argv);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001782
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001783 interval = stat_config.interval;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001784 timeout = stat_config.timeout;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001785
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001786 /*
1787 * For record command the -o is already taken care of.
1788 */
1789 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
Stephane Eranian4aa90152011-08-15 22:22:33 +02001790 output = NULL;
1791
Jim Cromie56f3bae2011-09-07 17:14:00 -06001792 if (output_name && output_fd) {
1793 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001794 parse_options_usage(stat_usage, stat_options, "o", 1);
1795 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001796 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001797 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001798
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001799 if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) {
Andi Kleen54b50912016-03-03 15:57:36 -08001800 fprintf(stderr, "--metric-only is not supported with --per-thread\n");
1801 goto out;
1802 }
1803
Jiri Olsad97ae042018-08-30 08:32:36 +02001804 if (stat_config.metric_only && stat_config.run_count > 1) {
Andi Kleen54b50912016-03-03 15:57:36 -08001805 fprintf(stderr, "--metric-only is not supported with -r\n");
1806 goto out;
1807 }
1808
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001809 if (stat_config.walltime_run_table && stat_config.run_count <= 1) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02001810 fprintf(stderr, "--table is only supported with -r\n");
1811 parse_options_usage(stat_usage, stat_options, "r", 1);
1812 parse_options_usage(NULL, stat_options, "table", 0);
1813 goto out;
1814 }
1815
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001816 if (output_fd < 0) {
1817 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001818 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001819 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001820 }
1821
Stephane Eranian4aa90152011-08-15 22:22:33 +02001822 if (!output) {
1823 struct timespec tm;
1824 mode = append_file ? "a" : "w";
1825
1826 output = fopen(output_name, mode);
1827 if (!output) {
1828 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001829 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001830 }
1831 clock_gettime(CLOCK_REALTIME, &tm);
1832 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001833 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001834 mode = append_file ? "a" : "w";
1835 output = fdopen(output_fd, mode);
1836 if (!output) {
1837 perror("Failed opening logfd");
1838 return -errno;
1839 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001840 }
1841
Jiri Olsa58215222015-07-21 14:31:24 +02001842 stat_config.output = output;
1843
Stephane Eraniand7470b62010-12-01 18:49:05 +02001844 /*
1845 * let the spreadsheet do the pretty-printing
1846 */
Jiri Olsafa7070a2018-08-30 08:32:29 +02001847 if (stat_config.csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001848 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001849 if (big_num_opt == 1) {
1850 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001851 parse_options_usage(stat_usage, stat_options, "B", 1);
1852 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001853 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001854 } else /* Nope, so disable big number formatting */
Jiri Olsa34ff0862018-08-30 08:32:47 +02001855 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001856 } else if (big_num_opt == 0) /* User passed --no-big-num */
Jiri Olsa34ff0862018-08-30 08:32:47 +02001857 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001858
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001859 setup_system_wide(argc);
David Ahernac3063b2013-09-30 07:37:37 -06001860
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001861 /*
1862 * Display user/system times only for single
1863 * run and when there's specified tracee.
1864 */
Jiri Olsad97ae042018-08-30 08:32:36 +02001865 if ((stat_config.run_count == 1) && target__none(&target))
Jiri Olsa8897a892018-08-30 08:32:44 +02001866 stat_config.ru_display = true;
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001867
Jiri Olsad97ae042018-08-30 08:32:36 +02001868 if (stat_config.run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001869 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001870 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001871 goto out;
Jiri Olsad97ae042018-08-30 08:32:36 +02001872 } else if (stat_config.run_count == 0) {
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001873 forever = true;
Jiri Olsad97ae042018-08-30 08:32:36 +02001874 stat_config.run_count = 1;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001875 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001876
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001877 if (stat_config.walltime_run_table) {
1878 stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0]));
1879 if (!stat_config.walltime_run) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02001880 pr_err("failed to setup -r option");
1881 goto out;
1882 }
1883 }
1884
Jin Yao1d9f8d12017-12-05 22:03:10 +08001885 if ((stat_config.aggr_mode == AGGR_THREAD) &&
1886 !target__has_task(&target)) {
1887 if (!target.system_wide || target.cpu_list) {
1888 fprintf(stderr, "The --per-thread option is only "
1889 "available when monitoring via -p -t -a "
1890 "options or only --per-thread.\n");
1891 parse_options_usage(NULL, stat_options, "p", 1);
1892 parse_options_usage(NULL, stat_options, "t", 1);
1893 goto out;
1894 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001895 }
1896
1897 /*
1898 * no_aggr, cgroup are for system-wide only
1899 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1900 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001901 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1902 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001903 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001904 fprintf(stderr, "both cgroup and no-aggregation "
1905 "modes only available in system-wide mode\n");
1906
Jiri Olsae0547312015-11-05 15:40:45 +01001907 parse_options_usage(stat_usage, stat_options, "G", 1);
1908 parse_options_usage(NULL, stat_options, "A", 1);
1909 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001910 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001911 }
1912
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001913 if (add_default_attributes())
1914 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001915
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001916 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001917
Jin Yao1d9f8d12017-12-05 22:03:10 +08001918 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
1919 target.per_thread = true;
1920
Namhyung Kim77a6f012012-05-07 14:09:04 +09001921 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001922 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001923 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001924 parse_options_usage(stat_usage, stat_options, "p", 1);
1925 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001926 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001927 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01001928 parse_options_usage(stat_usage, stat_options, "C", 1);
1929 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001930 }
1931 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001932 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001933
1934 /*
1935 * Initialize thread_map with comm names,
1936 * so we could print it out on output.
1937 */
Jin Yao56739442017-12-05 22:03:07 +08001938 if (stat_config.aggr_mode == AGGR_THREAD) {
Jiri Olsa03617c22019-07-21 13:24:42 +02001939 thread_map__read_comms(evsel_list->core.threads);
Jin Yao56739442017-12-05 22:03:07 +08001940 if (target.system_wide) {
1941 if (runtime_stat_new(&stat_config,
Jiri Olsaa2f354e2019-08-22 13:11:41 +02001942 perf_thread_map__nr(evsel_list->core.threads))) {
Jin Yao56739442017-12-05 22:03:07 +08001943 goto out;
1944 }
1945 }
1946 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001947
Jiri Olsa86895b42019-08-28 10:17:43 +02001948 if (stat_config.aggr_mode == AGGR_NODE)
1949 cpu__setup_cpunode_map();
1950
yuzhoujiandb06a262018-01-29 10:25:22 +01001951 if (stat_config.times && interval)
1952 interval_count = true;
1953 else if (stat_config.times && !interval) {
1954 pr_err("interval-count option should be used together with "
1955 "interval-print.\n");
1956 parse_options_usage(stat_usage, stat_options, "interval-count", 0);
1957 parse_options_usage(stat_usage, stat_options, "I", 1);
1958 goto out;
1959 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001960
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001961 if (timeout && timeout < 100) {
1962 if (timeout < 10) {
1963 pr_err("timeout must be >= 10ms.\n");
1964 parse_options_usage(stat_usage, stat_options, "timeout", 0);
1965 goto out;
1966 } else
1967 pr_warning("timeout < 100ms. "
1968 "The overhead percentage could be high in some cases. "
1969 "Please proceed with caution.\n");
1970 }
1971 if (timeout && interval) {
1972 pr_err("timeout option is not supported with interval-print.\n");
1973 parse_options_usage(stat_usage, stat_options, "timeout", 0);
1974 parse_options_usage(stat_usage, stat_options, "I", 1);
1975 goto out;
1976 }
1977
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001978 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001979 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001980
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001981 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001982 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001983
Ingo Molnar58d7e992009-05-15 11:03:23 +02001984 /*
Jiri Olsa7d9ad162018-08-30 08:32:14 +02001985 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
1986 * while avoiding that older tools show confusing messages.
1987 *
1988 * However for pipe sessions we need to keep it zero,
1989 * because script's perf_evsel__check_attr is triggered
1990 * by attr->sample_type != 0, and we can't run it on
1991 * stat sessions.
1992 */
1993 stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe);
1994
1995 /*
Ingo Molnar58d7e992009-05-15 11:03:23 +02001996 * We dont want to block the signals - that would cause
1997 * child tasks to inherit that and Ctrl-C would not work.
1998 * What we want is for Ctrl-C to work in the exec()-ed
1999 * task, but being ignored by perf stat itself:
2000 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02002001 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002002 if (!forever)
2003 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01002004 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02002005 signal(SIGALRM, skip_signal);
2006 signal(SIGABRT, skip_signal);
2007
Ingo Molnar42202dd2009-06-13 14:57:28 +02002008 status = 0;
Jiri Olsad97ae042018-08-30 08:32:36 +02002009 for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) {
2010 if (stat_config.run_count != 1 && verbose > 0)
Stephane Eranian4aa90152011-08-15 22:22:33 +02002011 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
2012 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02002013
Srikar Dronamrajub63fd112019-09-04 15:17:37 +05302014 if (run_idx != 0)
2015 perf_evlist__reset_prev_raw_counts(evsel_list);
2016
Jiri Olsae55c14a2018-04-23 11:08:21 +02002017 status = run_perf_stat(argc, argv, run_idx);
Srikar Dronamraju443f2d52019-09-04 15:17:38 +05302018 if (forever && status != -1 && !interval) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02002019 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02002020 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002021 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02002022 }
2023
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002024 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02002025 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03002026
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002027 if (STAT_RECORD) {
2028 /*
2029 * We synthesize the kernel mmap record just so that older tools
2030 * don't emit warnings about not being able to resolve symbols
2031 * due to /proc/sys/kernel/kptr_restrict settings and instear provide
2032 * a saner message about no samples being in the perf.data file.
2033 *
2034 * This also serves to suppress a warning about f_header.data.size == 0
Jiri Olsa8b99b1a2015-11-05 15:40:48 +01002035 * in header.c at the moment 'perf stat record' gets introduced, which
2036 * is not really needed once we start adding the stat specific PERF_RECORD_
2037 * records, but the need to suppress the kptr_restrict messages in older
2038 * tools remain -acme
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002039 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002040 int fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002041 int err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
2042 process_synthesized_event,
2043 &perf_stat.session->machines.host);
2044 if (err) {
2045 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
2046 "older tools may produce warnings about this file\n.");
2047 }
2048
Jiri Olsa7aad0c32015-11-05 15:40:52 +01002049 if (!interval) {
2050 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
2051 pr_err("failed to write stat round event\n");
2052 }
2053
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002054 if (!perf_stat.data.is_pipe) {
Jiri Olsa664c98d2015-11-05 15:40:50 +01002055 perf_stat.session->header.data_size += perf_stat.bytes_written;
2056 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
2057 }
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002058
Jiri Olsa750b4ed2019-07-21 13:24:07 +02002059 evlist__close(evsel_list);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002060 perf_session__delete(perf_stat.session);
2061 }
2062
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09002063 perf_stat__exit_aggr_mode();
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03002064 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02002065out:
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002066 zfree(&stat_config.walltime_run);
Jiri Olsae55c14a2018-04-23 11:08:21 +02002067
Kan Liangdaefd0b2017-05-26 12:05:38 -07002068 if (smi_cost && smi_reset)
2069 sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
2070
Jiri Olsac12995a2019-07-21 13:23:56 +02002071 evlist__delete(evsel_list);
Jin Yao56739442017-12-05 22:03:07 +08002072
2073 runtime_stat_delete(&stat_config);
2074
Ingo Molnar42202dd2009-06-13 14:57:28 +02002075 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002076}