blob: e5e19b4610619f75a4aa9ee1926a33fb7d65e484 [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
Peter Zijlstra1a482f32009-05-23 18:28:58 +020043#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020044#include "builtin.h"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030045#include "util/cgroup.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020046#include "util/util.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060047#include <subcmd/parse-options.h>
Ingo Molnar52425192009-05-26 09:17:18 +020048#include "util/parse-events.h"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070049#include "util/pmu.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020050#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020051#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020052#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020053#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020054#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080055#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080056#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110057#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030058#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020059#include "util/thread_map.h"
Jiri Olsad8095602015-08-07 12:51:03 +020060#include "util/counts.h"
Andi Kleen44b1e602016-05-30 12:49:42 -030061#include "util/group.h"
Jiri Olsa4979d0c2015-11-05 15:40:46 +010062#include "util/session.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010063#include "util/tool.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030064#include "util/string2.h"
Andi Kleenb18f3e32017-08-31 12:40:31 -070065#include "util/metricgroup.h"
Jiri Olsa9660e082018-06-07 00:15:06 +020066#include "util/top.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010067#include "asm/bug.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020068
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030069#include <linux/time64.h>
Andi Kleen44b1e602016-05-30 12:49:42 -030070#include <api/fs/fs.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030071#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030072#include <signal.h>
Peter Zijlstra1f16c572012-10-23 13:40:14 +020073#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020074#include <sys/prctl.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030075#include <inttypes.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020076#include <locale.h>
Andi Kleene3b03b62016-05-05 16:04:03 -070077#include <math.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030078#include <sys/types.h>
79#include <sys/stat.h>
Arnaldo Carvalho de Melo42087352017-04-19 19:06:30 -030080#include <sys/wait.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030081#include <unistd.h>
Jiri Olsa0ce2da12018-06-05 14:13:13 +020082#include <sys/time.h>
83#include <sys/resource.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020084
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030085#include <linux/ctype.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030086
Stephane Eraniand7470b62010-12-01 18:49:05 +020087#define DEFAULT_SEPARATOR " "
Kan Liangdaefd0b2017-05-26 12:05:38 -070088#define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi"
Stephane Eraniand7470b62010-12-01 18:49:05 +020089
Jiri Olsad4f63a42015-06-26 11:29:26 +020090static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010091
Andi Kleen4cabc3d2013-08-21 16:47:26 -070092/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020093static const char *transaction_attrs = {
94 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070095 "{"
96 "instructions,"
97 "cycles,"
98 "cpu/cycles-t/,"
99 "cpu/tx-start/,"
100 "cpu/el-start/,"
101 "cpu/cycles-ct/"
102 "}"
103};
104
105/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +0200106static const char * transaction_limited_attrs = {
107 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700108 "{"
109 "instructions,"
110 "cycles,"
111 "cpu/cycles-t/,"
112 "cpu/tx-start/"
113 "}"
114};
115
Andi Kleen44b1e602016-05-30 12:49:42 -0300116static const char * topdown_attrs[] = {
117 "topdown-total-slots",
118 "topdown-slots-retired",
119 "topdown-recovery-bubbles",
120 "topdown-fetch-bubbles",
121 "topdown-slots-issued",
122 NULL,
123};
124
Kan Liangdaefd0b2017-05-26 12:05:38 -0700125static const char *smi_cost_attrs = {
126 "{"
127 "msr/aperf/,"
128 "msr/smi/,"
129 "cycles"
130 "}"
131};
132
Robert Richter666e6d42012-04-05 18:26:27 +0200133static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200134
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300135static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900136 .uid = UINT_MAX,
137};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530138
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200139#define METRIC_ONLY_LEN 20
140
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200141static volatile pid_t child_pid = -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200142static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700143static bool transaction_run;
Andi Kleen44b1e602016-05-30 12:49:42 -0300144static bool topdown_run = false;
Kan Liangdaefd0b2017-05-26 12:05:38 -0700145static bool smi_cost = false;
146static bool smi_reset = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200147static int big_num_opt = -1;
Lin Ming43bece72011-08-17 18:42:07 +0800148static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200149static const char *pre_cmd = NULL;
150static const char *post_cmd = NULL;
151static bool sync_run = false;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500152static bool forever = false;
Andi Kleen44b1e602016-05-30 12:49:42 -0300153static bool force_metric_only = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100154static struct timespec ref_time;
Jiri Olsae0547312015-11-05 15:40:45 +0100155static bool append_file;
yuzhoujiandb06a262018-01-29 10:25:22 +0100156static bool interval_count;
Jiri Olsae0547312015-11-05 15:40:45 +0100157static const char *output_name;
158static int output_fd;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200159
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100160struct perf_stat {
161 bool record;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100162 struct perf_data data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100163 struct perf_session *session;
164 u64 bytes_written;
Jiri Olsaba6039b62015-11-05 15:40:55 +0100165 struct perf_tool tool;
Jiri Olsa1975d362015-11-05 15:40:56 +0100166 bool maps_allocated;
167 struct cpu_map *cpus;
168 struct thread_map *threads;
Jiri Olsa89af4e02015-11-05 15:41:02 +0100169 enum aggr_mode aggr_mode;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100170};
171
172static struct perf_stat perf_stat;
173#define STAT_RECORD perf_stat.record
174
Liming Wang60666c62009-12-31 16:05:50 +0800175static volatile int done = 0;
176
Jiri Olsa421a50f2015-07-21 14:31:22 +0200177static struct perf_stat_config stat_config = {
Jiri Olsa26893a62018-08-30 08:32:40 +0200178 .aggr_mode = AGGR_GLOBAL,
179 .scale = true,
180 .unit_width = 4, /* strlen("unit") */
181 .run_count = 1,
182 .metric_only_len = METRIC_ONLY_LEN,
183 .walltime_nsecs_stats = &walltime_nsecs_stats,
Jiri Olsa34ff0862018-08-30 08:32:47 +0200184 .big_num = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200185};
186
Stephane Eranian13370a92013-01-29 12:47:44 +0100187static inline void diff_timespec(struct timespec *r, struct timespec *a,
188 struct timespec *b)
189{
190 r->tv_sec = a->tv_sec - b->tv_sec;
191 if (a->tv_nsec < b->tv_nsec) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300192 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
Stephane Eranian13370a92013-01-29 12:47:44 +0100193 r->tv_sec--;
194 } else {
195 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
196 }
197}
198
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200199static void perf_stat__reset_stats(void)
200{
Jin Yao56739442017-12-05 22:03:07 +0800201 int i;
202
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200203 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200204 perf_stat__reset_shadow_stats();
Jin Yao56739442017-12-05 22:03:07 +0800205
206 for (i = 0; i < stat_config.stats_num; i++)
207 perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200208}
209
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100210static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100211 union perf_event *event,
212 struct perf_sample *sample __maybe_unused,
213 struct machine *machine __maybe_unused)
214{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100215 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100216 pr_err("failed to write perf data, error: %m\n");
217 return -1;
218 }
219
220 perf_stat.bytes_written += event->header.size;
221 return 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100222}
223
Jiri Olsa1975d362015-11-05 15:40:56 +0100224static int write_stat_round_event(u64 tm, u64 type)
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100225{
Jiri Olsa1975d362015-11-05 15:40:56 +0100226 return perf_event__synthesize_stat_round(NULL, tm, type,
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100227 process_synthesized_event,
228 NULL);
229}
230
231#define WRITE_STAT_ROUND_EVENT(time, interval) \
232 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
233
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100234#define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
235
236static int
237perf_evsel__write_stat_event(struct perf_evsel *counter, u32 cpu, u32 thread,
238 struct perf_counts_values *count)
239{
240 struct perf_sample_id *sid = SID(counter, cpu, thread);
241
242 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
243 process_synthesized_event, NULL);
244}
245
Andi Kleenf0fbb112019-03-26 15:18:21 -0700246static int read_single_counter(struct perf_evsel *counter, int cpu,
247 int thread, struct timespec *rs)
248{
249 if (counter->tool_event == PERF_TOOL_DURATION_TIME) {
250 u64 val = rs->tv_nsec + rs->tv_sec*1000000000ULL;
251 struct perf_counts_values *count =
252 perf_counts(counter->counts, cpu, thread);
253 count->ena = count->run = val;
254 count->val = val;
255 return 0;
256 }
257 return perf_evsel__read_counter(counter, cpu, thread);
258}
259
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200260/*
261 * Read out the results of a single counter:
262 * do not aggregate counts across CPUs in system-wide mode
263 */
Andi Kleenf0fbb112019-03-26 15:18:21 -0700264static int read_counter(struct perf_evsel *counter, struct timespec *rs)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200265{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100266 int nthreads = thread_map__nr(evsel_list->threads);
Mark Rutland00e727b2016-07-15 11:08:10 +0100267 int ncpus, cpu, thread;
268
Jin Yao1d9f8d12017-12-05 22:03:10 +0800269 if (target__has_cpu(&target) && !target__has_per_thread(&target))
Mark Rutland00e727b2016-07-15 11:08:10 +0100270 ncpus = perf_evsel__nr_cpus(counter);
271 else
272 ncpus = 1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200273
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000274 if (!counter->supported)
275 return -ENOENT;
276
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100277 if (counter->system_wide)
278 nthreads = 1;
279
280 for (thread = 0; thread < nthreads; thread++) {
281 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200282 struct perf_counts_values *count;
283
284 count = perf_counts(counter->counts, cpu, thread);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200285
286 /*
287 * The leader's group read loads data into its group members
288 * (via perf_evsel__read_counter) and sets threir count->loaded.
289 */
290 if (!count->loaded &&
Andi Kleenf0fbb112019-03-26 15:18:21 -0700291 read_single_counter(counter, cpu, thread, rs)) {
Stephane Eraniandb49a712017-04-12 11:23:01 -0700292 counter->counts->scaled = -1;
293 perf_counts(counter->counts, cpu, thread)->ena = 0;
294 perf_counts(counter->counts, cpu, thread)->run = 0;
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100295 return -1;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700296 }
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100297
Jiri Olsa82bf3112017-07-26 14:02:06 +0200298 count->loaded = false;
299
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100300 if (STAT_RECORD) {
301 if (perf_evsel__write_stat_event(counter, cpu, thread, count)) {
302 pr_err("failed to write stat event\n");
303 return -1;
304 }
305 }
Andi Kleen0b1abbf2016-04-27 13:00:51 -0700306
307 if (verbose > 1) {
308 fprintf(stat_config.output,
309 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
310 perf_evsel__name(counter),
311 cpu,
312 count->val, count->ena, count->run);
313 }
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100314 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200315 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200316
317 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200318}
319
Andi Kleenf0fbb112019-03-26 15:18:21 -0700320static void read_counters(struct timespec *rs)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200321{
322 struct perf_evsel *counter;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700323 int ret;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200324
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300325 evlist__for_each_entry(evsel_list, counter) {
Andi Kleenf0fbb112019-03-26 15:18:21 -0700326 ret = read_counter(counter, rs);
Stephane Eraniandb49a712017-04-12 11:23:01 -0700327 if (ret)
Andi Kleen245bad82015-09-01 15:52:46 -0700328 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200329
Stephane Eraniandb49a712017-04-12 11:23:01 -0700330 if (ret == 0 && perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200331 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200332 }
333}
334
Jiri Olsaba411a92015-06-26 11:29:24 +0200335static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100336{
Stephane Eranian13370a92013-01-29 12:47:44 +0100337 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100338
Stephane Eranian13370a92013-01-29 12:47:44 +0100339 clock_gettime(CLOCK_MONOTONIC, &ts);
340 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100341
Andi Kleenf0fbb112019-03-26 15:18:21 -0700342 read_counters(&rs);
343
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100344 if (STAT_RECORD) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300345 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100346 pr_err("failed to write stat round event\n");
347 }
348
Andi Kleenb90f1332017-08-31 12:40:36 -0700349 init_stats(&walltime_nsecs_stats);
350 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000);
Jiri Olsad4f63a42015-06-26 11:29:26 +0200351 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100352}
353
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100354static void enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700355{
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200356 if (stat_config.initial_delay)
357 usleep(stat_config.initial_delay * USEC_PER_MSEC);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100358
359 /*
360 * We need to enable counters only if:
361 * - we don't have tracee (attaching to task or cpu)
362 * - we have initial delay configured
363 */
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200364 if (!target__none(&target) || stat_config.initial_delay)
Jiri Olsaab46db02015-12-03 10:06:43 +0100365 perf_evlist__enable(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700366}
367
Mark Rutland3df33ef2016-08-09 14:04:29 +0100368static void disable_counters(void)
369{
370 /*
371 * If we don't have tracee (attaching to task or cpu), counters may
372 * still be running. To get accurate group ratios, we must stop groups
373 * from counting before reading their constituent counters.
374 */
375 if (!target__none(&target))
376 perf_evlist__disable(evsel_list);
377}
378
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300379static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300380
381/*
382 * perf_evlist__prepare_workload will send a SIGUSR1
383 * if the fork fails, since we asked by setting its
384 * want_signal to true.
385 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300386static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
387 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300388{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300389 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300390}
391
Jiri Olsa82bf3112017-07-26 14:02:06 +0200392static bool perf_evsel__should_store_id(struct perf_evsel *counter)
393{
394 return STAT_RECORD || counter->attr.read_format & PERF_FORMAT_ID;
395}
396
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200397static bool is_target_alive(struct target *_target,
398 struct thread_map *threads)
399{
400 struct stat st;
401 int i;
402
403 if (!target__has_task(_target))
404 return true;
405
406 for (i = 0; i < threads->nr; i++) {
407 char path[PATH_MAX];
408
409 scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(),
410 threads->map[i].pid);
411
412 if (!stat(path, &st))
413 return true;
414 }
415
416 return false;
417}
418
Jiri Olsae55c14a2018-04-23 11:08:21 +0200419static int __run_perf_stat(int argc, const char **argv, int run_idx)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200420{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200421 int interval = stat_config.interval;
yuzhoujiandb06a262018-01-29 10:25:22 +0100422 int times = stat_config.times;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100423 int timeout = stat_config.timeout;
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -0300424 char msg[BUFSIZ];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200425 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100426 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100427 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100428 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200429 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300430 const bool forks = (argc > 0);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100431 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200432
Stephane Eranian13370a92013-01-29 12:47:44 +0100433 if (interval) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300434 ts.tv_sec = interval / USEC_PER_MSEC;
435 ts.tv_nsec = (interval % USEC_PER_MSEC) * NSEC_PER_MSEC;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100436 } else if (timeout) {
437 ts.tv_sec = timeout / USEC_PER_MSEC;
438 ts.tv_nsec = (timeout % USEC_PER_MSEC) * NSEC_PER_MSEC;
Stephane Eranian13370a92013-01-29 12:47:44 +0100439 } else {
440 ts.tv_sec = 1;
441 ts.tv_nsec = 0;
442 }
443
Liming Wang60666c62009-12-31 16:05:50 +0800444 if (forks) {
Jiri Olsa664c98d2015-11-05 15:40:50 +0100445 if (perf_evlist__prepare_workload(evsel_list, &target, argv, is_pipe,
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300446 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900447 perror("failed to prepare workload");
448 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800449 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900450 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000451 }
452
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200453 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300454 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200455
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300456 evlist__for_each_entry(evsel_list, counter) {
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300457try_again:
Jiri Olsad09cefd2018-08-30 08:32:17 +0200458 if (create_perf_stat_counter(counter, &stat_config, &target) < 0) {
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700459
460 /* Weak group failed. Reset the group. */
Andi Kleen35c19802017-09-05 14:13:24 -0700461 if ((errno == EINVAL || errno == EBADF) &&
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700462 counter->leader != counter &&
463 counter->weak_group) {
Andi Kleenc3537fc2018-10-01 12:59:26 -0700464 counter = perf_evlist__reset_weak_group(evsel_list, counter);
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700465 goto try_again;
466 }
467
David Ahern979987a2012-05-08 09:29:16 -0600468 /*
469 * PPC returns ENXIO for HW counters until 2.6.37
470 * (behavior changed with commit b0a873e).
471 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100472 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600473 errno == ENOENT || errno == EOPNOTSUPP ||
474 errno == ENXIO) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900475 if (verbose > 0)
David Ahernc63ca0c2011-04-29 16:04:15 -0600476 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300477 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600478 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400479
480 if ((counter->leader != counter) ||
481 !(counter->leader->nr_members > 1))
482 continue;
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300483 } else if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900484 if (verbose > 0)
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300485 ui__warning("%s\n", msg);
486 goto try_again;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800487 } else if (target__has_per_thread(&target) &&
488 evsel_list->threads &&
489 evsel_list->threads->err_thread != -1) {
490 /*
491 * For global --per-thread case, skip current
492 * error thread.
493 */
494 if (!thread_map__remove(evsel_list->threads,
495 evsel_list->threads->err_thread)) {
496 evsel_list->threads->err_thread = -1;
497 goto try_again;
498 }
499 }
Ingo Molnarede70292011-04-28 08:48:42 +0200500
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300501 perf_evsel__open_strerror(counter, &target,
502 errno, msg, sizeof(msg));
503 ui__error("%s\n", msg);
504
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200505 if (child_pid != -1)
506 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600507
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200508 return -1;
509 }
David Ahern2cee77c2011-05-30 08:55:59 -0600510 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100511
512 l = strlen(counter->unit);
Jiri Olsadf4f7b42018-08-30 08:32:32 +0200513 if (l > stat_config.unit_width)
514 stat_config.unit_width = l;
Jiri Olsa2af46462015-11-05 15:40:49 +0100515
Jiri Olsa82bf3112017-07-26 14:02:06 +0200516 if (perf_evsel__should_store_id(counter) &&
Jiri Olsa650d6222018-08-30 08:32:16 +0200517 perf_evsel__store_ids(counter, evsel_list))
Jiri Olsa2af46462015-11-05 15:40:49 +0100518 return -1;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300519 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200520
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300521 if (perf_evlist__apply_filters(evsel_list, &counter)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300522 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300523 counter->filter, perf_evsel__name(counter), errno,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300524 str_error_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100525 return -1;
526 }
527
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100528 if (STAT_RECORD) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100529 int err, fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100530
Jiri Olsa664c98d2015-11-05 15:40:50 +0100531 if (is_pipe) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100532 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
Jiri Olsa664c98d2015-11-05 15:40:50 +0100533 } else {
534 err = perf_session__write_header(perf_stat.session, evsel_list,
535 fd, false);
536 }
537
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100538 if (err < 0)
539 return err;
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100540
Jiri Olsa1c21e982018-08-30 08:32:21 +0200541 err = perf_stat_synthesize_config(&stat_config, NULL, evsel_list,
Jiri Olsac2c247f2018-08-30 08:32:22 +0200542 process_synthesized_event, is_pipe);
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100543 if (err < 0)
544 return err;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100545 }
546
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200547 /*
548 * Enable counters and exec the command:
549 */
550 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100551 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200552
Liming Wang60666c62009-12-31 16:05:50 +0800553 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900554 perf_evlist__start_workload(evsel_list);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100555 enable_counters();
Namhyung Kimacf28922013-03-11 16:43:18 +0900556
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100557 if (interval || timeout) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100558 while (!waitpid(child_pid, &status, WNOHANG)) {
559 nanosleep(&ts, NULL);
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100560 if (timeout)
561 break;
Jiri Olsaba411a92015-06-26 11:29:24 +0200562 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100563 if (interval_count && !(--times))
564 break;
Stephane Eranian13370a92013-01-29 12:47:44 +0100565 }
566 }
Jin Yao8a992552019-01-03 15:40:45 +0800567 if (child_pid != -1)
568 wait4(child_pid, &status, 0, &stat_config.ru_data);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300569
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300570 if (workload_exec_errno) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300571 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300572 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300573 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300574 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300575
Andi Kleen33e49ea2011-09-15 14:31:40 -0700576 if (WIFSIGNALED(status))
577 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800578 } else {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100579 enable_counters();
Stephane Eranian13370a92013-01-29 12:47:44 +0100580 while (!done) {
581 nanosleep(&ts, NULL);
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200582 if (!is_target_alive(&target, evsel_list->threads))
583 break;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100584 if (timeout)
585 break;
yuzhoujiandb06a262018-01-29 10:25:22 +0100586 if (interval) {
Jiri Olsaba411a92015-06-26 11:29:24 +0200587 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100588 if (interval_count && !(--times))
589 break;
590 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100591 }
Liming Wang60666c62009-12-31 16:05:50 +0800592 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200593
Mark Rutland3df33ef2016-08-09 14:04:29 +0100594 disable_counters();
595
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200596 t1 = rdclock();
597
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200598 if (stat_config.walltime_run_table)
599 stat_config.walltime_run[run_idx] = t1 - t0;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200600
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200601 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200602
Mark Rutland3df33ef2016-08-09 14:04:29 +0100603 /*
604 * Closing a group leader splits the group, and as we only disable
605 * group leaders, results in remaining events becoming enabled. To
606 * avoid arbitrary skew, we must read all counters before closing any
607 * group leaders.
608 */
Andi Kleenf0fbb112019-03-26 15:18:21 -0700609 read_counters(&(struct timespec) { .tv_nsec = t1-t0 });
Mark Rutland3df33ef2016-08-09 14:04:29 +0100610 perf_evlist__close(evsel_list);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200611
Ingo Molnar42202dd2009-06-13 14:57:28 +0200612 return WEXITSTATUS(status);
613}
614
Jiri Olsae55c14a2018-04-23 11:08:21 +0200615static int run_perf_stat(int argc, const char **argv, int run_idx)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200616{
617 int ret;
618
619 if (pre_cmd) {
620 ret = system(pre_cmd);
621 if (ret)
622 return ret;
623 }
624
625 if (sync_run)
626 sync();
627
Jiri Olsae55c14a2018-04-23 11:08:21 +0200628 ret = __run_perf_stat(argc, argv, run_idx);
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200629 if (ret)
630 return ret;
631
632 if (post_cmd) {
633 ret = system(post_cmd);
634 if (ret)
635 return ret;
636 }
637
638 return ret;
639}
640
Jiri Olsaa5a9eac2018-08-30 08:32:24 +0200641static void print_counters(struct timespec *ts, int argc, const char **argv)
642{
Jiri Olsa01748202018-08-30 08:32:25 +0200643 /* Do not print anything if we record to the pipe. */
644 if (STAT_RECORD && perf_stat.data.is_pipe)
645 return;
646
Jiri Olsac512e0e2018-08-30 08:32:33 +0200647 perf_evlist__print_counters(evsel_list, &stat_config, &target,
Jiri Olsab64df7f2018-08-30 08:32:26 +0200648 ts, argc, argv);
Jiri Olsaa5a9eac2018-08-30 08:32:24 +0200649}
650
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200651static volatile int signr = -1;
652
Ingo Molnar52425192009-05-26 09:17:18 +0200653static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200654{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200655 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +0800656 done = 1;
657
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200658 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200659 /*
660 * render child_pid harmless
661 * won't send SIGTERM to a random
662 * process in case of race condition
663 * and fast PID recycling
664 */
665 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200666}
667
668static void sig_atexit(void)
669{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200670 sigset_t set, oset;
671
672 /*
673 * avoid race condition with SIGCHLD handler
674 * in skip_signal() which is modifying child_pid
675 * goal is to avoid send SIGTERM to a random
676 * process
677 */
678 sigemptyset(&set);
679 sigaddset(&set, SIGCHLD);
680 sigprocmask(SIG_BLOCK, &set, &oset);
681
Chris Wilson933da832009-10-04 01:35:01 +0100682 if (child_pid != -1)
683 kill(child_pid, SIGTERM);
684
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200685 sigprocmask(SIG_SETMASK, &oset, NULL);
686
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200687 if (signr == -1)
688 return;
689
690 signal(signr, SIG_DFL);
691 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200692}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200693
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300694static int stat__set_big_num(const struct option *opt __maybe_unused,
695 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200696{
697 big_num_opt = unset ? 0 : 1;
698 return 0;
699}
700
Andi Kleen44b1e602016-05-30 12:49:42 -0300701static int enable_metric_only(const struct option *opt __maybe_unused,
702 const char *s __maybe_unused, int unset)
703{
704 force_metric_only = true;
Jiri Olsa0ce5aa02018-08-30 08:32:31 +0200705 stat_config.metric_only = !unset;
Andi Kleen44b1e602016-05-30 12:49:42 -0300706 return 0;
707}
708
Andi Kleenb18f3e32017-08-31 12:40:31 -0700709static int parse_metric_groups(const struct option *opt,
710 const char *str,
711 int unset __maybe_unused)
712{
Jiri Olsad0192fd2018-08-30 08:32:51 +0200713 return metricgroup__parse_groups(opt, str, &stat_config.metric_events);
Andi Kleenb18f3e32017-08-31 12:40:31 -0700714}
715
Michael Petlan51433ea2018-12-10 11:00:04 -0500716static struct option stat_options[] = {
Jiri Olsae0547312015-11-05 15:40:45 +0100717 OPT_BOOLEAN('T', "transaction", &transaction_run,
718 "hardware transaction statistics"),
719 OPT_CALLBACK('e', "event", &evsel_list, "event",
720 "event selector. use 'perf list' to list available events",
721 parse_events_option),
722 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
723 "event filter", parse_filter),
Jiri Olsa5698f262018-08-30 08:32:12 +0200724 OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit,
Jiri Olsae0547312015-11-05 15:40:45 +0100725 "child tasks do not inherit counters"),
726 OPT_STRING('p', "pid", &target.pid, "pid",
727 "stat events on existing process id"),
728 OPT_STRING('t', "tid", &target.tid, "tid",
729 "stat events on existing thread id"),
730 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
731 "system-wide collection from all CPUs"),
732 OPT_BOOLEAN('g', "group", &group,
733 "put the counters into a counter group"),
Andi Kleen75998bb2019-03-14 15:50:01 -0700734 OPT_BOOLEAN(0, "scale", &stat_config.scale,
735 "Use --no-scale to disable counter scaling for multiplexing"),
Jiri Olsae0547312015-11-05 15:40:45 +0100736 OPT_INCR('v', "verbose", &verbose,
737 "be more verbose (show counter open errors, etc)"),
Jiri Olsad97ae042018-08-30 08:32:36 +0200738 OPT_INTEGER('r', "repeat", &stat_config.run_count,
Jiri Olsae0547312015-11-05 15:40:45 +0100739 "repeat command and print average + stddev (max: 100, forever: 0)"),
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200740 OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table,
Jiri Olsae55c14a2018-04-23 11:08:21 +0200741 "display details about each run (only with -r option)"),
Jiri Olsaaea0dca2018-08-30 08:32:41 +0200742 OPT_BOOLEAN('n', "null", &stat_config.null_run,
Jiri Olsae0547312015-11-05 15:40:45 +0100743 "null run - dont start any counters"),
744 OPT_INCR('d', "detailed", &detailed_run,
745 "detailed run - start a lot of events"),
746 OPT_BOOLEAN('S', "sync", &sync_run,
747 "call sync() before starting a run"),
748 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
749 "print large numbers with thousands\' separators",
750 stat__set_big_num),
751 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
752 "list of cpus to monitor in system-wide"),
753 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
754 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsafdee3352018-08-30 08:32:48 +0200755 OPT_BOOLEAN(0, "no-merge", &stat_config.no_merge, "Do not merge identical named events"),
Jiri Olsafa7070a2018-08-30 08:32:29 +0200756 OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator",
Jiri Olsae0547312015-11-05 15:40:45 +0100757 "print counts with custom separator"),
758 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
759 "monitor event in cgroup name only", parse_cgroups),
760 OPT_STRING('o', "output", &output_name, "file", "output file name"),
761 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
762 OPT_INTEGER(0, "log-fd", &output_fd,
763 "log output to fd, instead of stderr"),
764 OPT_STRING(0, "pre", &pre_cmd, "command",
765 "command to run prior to the measured command"),
766 OPT_STRING(0, "post", &post_cmd, "command",
767 "command to run after to the measured command"),
768 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Alexey Budankov9dc9a952018-04-03 21:18:33 +0300769 "print counts at regular interval in ms "
770 "(overhead is possible for values <= 100ms)"),
yuzhoujiandb06a262018-01-29 10:25:22 +0100771 OPT_INTEGER(0, "interval-count", &stat_config.times,
772 "print counts for fixed number of times"),
Jiri Olsa132c6ba2018-08-30 08:32:30 +0200773 OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear,
Jiri Olsa9660e082018-06-07 00:15:06 +0200774 "clear screen in between new interval"),
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100775 OPT_UINTEGER(0, "timeout", &stat_config.timeout,
776 "stop workload and print counts after a timeout period in ms (>= 10ms)"),
Jiri Olsae0547312015-11-05 15:40:45 +0100777 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
778 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -0700779 OPT_SET_UINT(0, "per-die", &stat_config.aggr_mode,
780 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsae0547312015-11-05 15:40:45 +0100781 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
782 "aggregate counts per physical processor core", AGGR_CORE),
783 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
784 "aggregate counts per thread", AGGR_THREAD),
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200785 OPT_UINTEGER('D', "delay", &stat_config.initial_delay,
Jiri Olsae0547312015-11-05 15:40:45 +0100786 "ms to wait before starting measurement after program start"),
Jiri Olsa0ce5aa02018-08-30 08:32:31 +0200787 OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL,
Andi Kleen44b1e602016-05-30 12:49:42 -0300788 "Only print computed metrics. No raw values", enable_metric_only),
789 OPT_BOOLEAN(0, "topdown", &topdown_run,
790 "measure topdown level 1 statistics"),
Kan Liangdaefd0b2017-05-26 12:05:38 -0700791 OPT_BOOLEAN(0, "smi-cost", &smi_cost,
792 "measure SMI cost"),
Andi Kleenb18f3e32017-08-31 12:40:31 -0700793 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
794 "monitor specified metrics or metric groups (separated by ,)",
795 parse_metric_groups),
Jiri Olsae0547312015-11-05 15:40:45 +0100796 OPT_END()
797};
798
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200799static int perf_stat__get_socket(struct perf_stat_config *config __maybe_unused,
800 struct cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200801{
802 return cpu_map__get_socket(map, cpu, NULL);
803}
804
Kan Liangdb5742b2019-06-04 15:50:42 -0700805static int perf_stat__get_die(struct perf_stat_config *config __maybe_unused,
806 struct cpu_map *map, int cpu)
807{
808 return cpu_map__get_die(map, cpu, NULL);
809}
810
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200811static int perf_stat__get_core(struct perf_stat_config *config __maybe_unused,
812 struct cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200813{
814 return cpu_map__get_core(map, cpu, NULL);
815}
816
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100817static int cpu_map__get_max(struct cpu_map *map)
818{
819 int i, max = -1;
820
821 for (i = 0; i < map->nr; i++) {
822 if (map->map[i] > max)
823 max = map->map[i];
824 }
825
826 return max;
827}
828
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200829static int perf_stat__get_aggr(struct perf_stat_config *config,
830 aggr_get_id_t get_id, struct cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100831{
832 int cpu;
833
834 if (idx >= map->nr)
835 return -1;
836
837 cpu = map->map[idx];
838
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200839 if (config->cpus_aggr_map->map[cpu] == -1)
840 config->cpus_aggr_map->map[cpu] = get_id(config, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100841
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200842 return config->cpus_aggr_map->map[cpu];
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100843}
844
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200845static int perf_stat__get_socket_cached(struct perf_stat_config *config,
846 struct cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100847{
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200848 return perf_stat__get_aggr(config, perf_stat__get_socket, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100849}
850
Kan Liangdb5742b2019-06-04 15:50:42 -0700851static int perf_stat__get_die_cached(struct perf_stat_config *config,
852 struct cpu_map *map, int idx)
853{
854 return perf_stat__get_aggr(config, perf_stat__get_die, map, idx);
855}
856
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200857static int perf_stat__get_core_cached(struct perf_stat_config *config,
858 struct 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_core, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100861}
862
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800863static bool term_percore_set(void)
864{
865 struct perf_evsel *counter;
866
867 evlist__for_each_entry(evsel_list, counter) {
868 if (counter->percore)
869 return true;
870 }
871
872 return false;
873}
874
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100875static int perf_stat_init_aggr_mode(void)
876{
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100877 int nr;
878
Jiri Olsa421a50f2015-07-21 14:31:22 +0200879 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100880 case AGGR_SOCKET:
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200881 if (cpu_map__build_socket_map(evsel_list->cpus, &stat_config.aggr_map)) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100882 perror("cannot build socket map");
883 return -1;
884 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200885 stat_config.aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100886 break;
Kan Liangdb5742b2019-06-04 15:50:42 -0700887 case AGGR_DIE:
888 if (cpu_map__build_die_map(evsel_list->cpus, &stat_config.aggr_map)) {
889 perror("cannot build die map");
890 return -1;
891 }
892 stat_config.aggr_get_id = perf_stat__get_die_cached;
893 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100894 case AGGR_CORE:
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200895 if (cpu_map__build_core_map(evsel_list->cpus, &stat_config.aggr_map)) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100896 perror("cannot build core map");
897 return -1;
898 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200899 stat_config.aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100900 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100901 case AGGR_NONE:
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800902 if (term_percore_set()) {
903 if (cpu_map__build_core_map(evsel_list->cpus,
904 &stat_config.aggr_map)) {
905 perror("cannot build core map");
906 return -1;
907 }
908 stat_config.aggr_get_id = perf_stat__get_core_cached;
909 }
910 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100911 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +0200912 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +0200913 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100914 default:
915 break;
916 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100917
918 /*
919 * The evsel_list->cpus is the base we operate on,
920 * taking the highest cpu number to be the size of
921 * the aggregation translate cpumap.
922 */
923 nr = cpu_map__get_max(evsel_list->cpus);
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200924 stat_config.cpus_aggr_map = cpu_map__empty_new(nr + 1);
925 return stat_config.cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100926}
927
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +0900928static void perf_stat__exit_aggr_mode(void)
929{
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200930 cpu_map__put(stat_config.aggr_map);
931 cpu_map__put(stat_config.cpus_aggr_map);
932 stat_config.aggr_map = NULL;
933 stat_config.cpus_aggr_map = NULL;
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +0900934}
935
Jiri Olsa68d702f2015-11-05 15:40:58 +0100936static inline int perf_env__get_cpu(struct perf_env *env, struct cpu_map *map, int idx)
937{
938 int cpu;
939
940 if (idx > map->nr)
941 return -1;
942
943 cpu = map->map[idx];
944
Jan Stancekda8a58b2017-02-17 12:10:26 +0100945 if (cpu >= env->nr_cpus_avail)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100946 return -1;
947
948 return cpu;
949}
950
951static int perf_env__get_socket(struct cpu_map *map, int idx, void *data)
952{
953 struct perf_env *env = data;
954 int cpu = perf_env__get_cpu(env, map, idx);
955
956 return cpu == -1 ? -1 : env->cpu[cpu].socket_id;
957}
958
Kan Liangdb5742b2019-06-04 15:50:42 -0700959static int perf_env__get_die(struct cpu_map *map, int idx, void *data)
960{
961 struct perf_env *env = data;
962 int die_id = -1, cpu = perf_env__get_cpu(env, map, idx);
963
964 if (cpu != -1) {
965 /*
966 * Encode socket in bit range 15:8
967 * die_id is relative to socket,
968 * we need a global id. So we combine
969 * socket + die id
970 */
971 if (WARN_ONCE(env->cpu[cpu].socket_id >> 8, "The socket id number is too big.\n"))
972 return -1;
973
974 if (WARN_ONCE(env->cpu[cpu].die_id >> 8, "The die id number is too big.\n"))
975 return -1;
976
977 die_id = (env->cpu[cpu].socket_id << 8) | (env->cpu[cpu].die_id & 0xff);
978 }
979
980 return die_id;
981}
982
Jiri Olsa68d702f2015-11-05 15:40:58 +0100983static int perf_env__get_core(struct cpu_map *map, int idx, void *data)
984{
985 struct perf_env *env = data;
986 int core = -1, cpu = perf_env__get_cpu(env, map, idx);
987
988 if (cpu != -1) {
Jiri Olsa68d702f2015-11-05 15:40:58 +0100989 /*
Kan Liangdb5742b2019-06-04 15:50:42 -0700990 * Encode socket in bit range 31:24
991 * encode die id in bit range 23:16
992 * core_id is relative to socket and die,
Jiri Olsa68d702f2015-11-05 15:40:58 +0100993 * we need a global id. So we combine
Kan Liangdb5742b2019-06-04 15:50:42 -0700994 * socket + die id + core id
Jiri Olsa68d702f2015-11-05 15:40:58 +0100995 */
Kan Liangdb5742b2019-06-04 15:50:42 -0700996 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 if (WARN_ONCE(env->cpu[cpu].core_id >> 16, "The core id number is too big.\n"))
1003 return -1;
1004
1005 core = (env->cpu[cpu].socket_id << 24) |
1006 (env->cpu[cpu].die_id << 16) |
1007 (env->cpu[cpu].core_id & 0xffff);
Jiri Olsa68d702f2015-11-05 15:40:58 +01001008 }
1009
1010 return core;
1011}
1012
1013static int perf_env__build_socket_map(struct perf_env *env, struct cpu_map *cpus,
1014 struct cpu_map **sockp)
1015{
1016 return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
1017}
1018
Kan Liangdb5742b2019-06-04 15:50:42 -07001019static int perf_env__build_die_map(struct perf_env *env, struct cpu_map *cpus,
1020 struct cpu_map **diep)
1021{
1022 return cpu_map__build_map(cpus, diep, perf_env__get_die, env);
1023}
1024
Jiri Olsa68d702f2015-11-05 15:40:58 +01001025static int perf_env__build_core_map(struct perf_env *env, struct cpu_map *cpus,
1026 struct cpu_map **corep)
1027{
1028 return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
1029}
1030
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001031static int perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused,
1032 struct cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001033{
1034 return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
1035}
Kan Liangdb5742b2019-06-04 15:50:42 -07001036static int perf_stat__get_die_file(struct perf_stat_config *config __maybe_unused,
1037 struct cpu_map *map, int idx)
1038{
1039 return perf_env__get_die(map, idx, &perf_stat.session->header.env);
1040}
Jiri Olsa68d702f2015-11-05 15:40:58 +01001041
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001042static int perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused,
1043 struct cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001044{
1045 return perf_env__get_core(map, idx, &perf_stat.session->header.env);
1046}
1047
1048static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
1049{
1050 struct perf_env *env = &st->session->header.env;
1051
1052 switch (stat_config.aggr_mode) {
1053 case AGGR_SOCKET:
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001054 if (perf_env__build_socket_map(env, evsel_list->cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001055 perror("cannot build socket map");
1056 return -1;
1057 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001058 stat_config.aggr_get_id = perf_stat__get_socket_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001059 break;
Kan Liangdb5742b2019-06-04 15:50:42 -07001060 case AGGR_DIE:
1061 if (perf_env__build_die_map(env, evsel_list->cpus, &stat_config.aggr_map)) {
1062 perror("cannot build die map");
1063 return -1;
1064 }
1065 stat_config.aggr_get_id = perf_stat__get_die_file;
1066 break;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001067 case AGGR_CORE:
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001068 if (perf_env__build_core_map(env, evsel_list->cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001069 perror("cannot build core map");
1070 return -1;
1071 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001072 stat_config.aggr_get_id = perf_stat__get_core_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001073 break;
1074 case AGGR_NONE:
1075 case AGGR_GLOBAL:
1076 case AGGR_THREAD:
1077 case AGGR_UNSET:
1078 default:
1079 break;
1080 }
1081
1082 return 0;
1083}
1084
Andi Kleen44b1e602016-05-30 12:49:42 -03001085static int topdown_filter_events(const char **attr, char **str, bool use_group)
1086{
1087 int off = 0;
1088 int i;
1089 int len = 0;
1090 char *s;
1091
1092 for (i = 0; attr[i]; i++) {
1093 if (pmu_have_event("cpu", attr[i])) {
1094 len += strlen(attr[i]) + 1;
1095 attr[i - off] = attr[i];
1096 } else
1097 off++;
1098 }
1099 attr[i - off] = NULL;
1100
1101 *str = malloc(len + 1 + 2);
1102 if (!*str)
1103 return -1;
1104 s = *str;
1105 if (i - off == 0) {
1106 *s = 0;
1107 return 0;
1108 }
1109 if (use_group)
1110 *s++ = '{';
1111 for (i = 0; attr[i]; i++) {
1112 strcpy(s, attr[i]);
1113 s += strlen(s);
1114 *s++ = ',';
1115 }
1116 if (use_group) {
1117 s[-1] = '}';
1118 *s = 0;
1119 } else
1120 s[-1] = 0;
1121 return 0;
1122}
1123
1124__weak bool arch_topdown_check_group(bool *warn)
1125{
1126 *warn = false;
1127 return false;
1128}
1129
1130__weak void arch_topdown_group_warn(void)
1131{
1132}
1133
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001134/*
1135 * Add default attributes, if there were no attributes specified or
1136 * if -d/--detailed, -d -d or -d -d -d is used:
1137 */
1138static int add_default_attributes(void)
1139{
Andi Kleen44b1e602016-05-30 12:49:42 -03001140 int err;
Andi Kleen9dec4472016-02-26 16:27:56 -08001141 struct perf_event_attr default_attrs0[] = {
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001142
1143 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1144 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1145 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1146 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1147
1148 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Andi Kleen9dec4472016-02-26 16:27:56 -08001149};
1150 struct perf_event_attr frontend_attrs[] = {
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001151 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001152};
1153 struct perf_event_attr backend_attrs[] = {
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001154 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001155};
1156 struct perf_event_attr default_attrs1[] = {
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001157 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1158 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1159 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1160
1161};
1162
1163/*
1164 * Detailed stats (-d), covering the L1 and last level data caches:
1165 */
1166 struct perf_event_attr detailed_attrs[] = {
1167
1168 { .type = PERF_TYPE_HW_CACHE,
1169 .config =
1170 PERF_COUNT_HW_CACHE_L1D << 0 |
1171 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1172 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1173
1174 { .type = PERF_TYPE_HW_CACHE,
1175 .config =
1176 PERF_COUNT_HW_CACHE_L1D << 0 |
1177 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1178 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1179
1180 { .type = PERF_TYPE_HW_CACHE,
1181 .config =
1182 PERF_COUNT_HW_CACHE_LL << 0 |
1183 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1184 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1185
1186 { .type = PERF_TYPE_HW_CACHE,
1187 .config =
1188 PERF_COUNT_HW_CACHE_LL << 0 |
1189 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1190 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1191};
1192
1193/*
1194 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1195 */
1196 struct perf_event_attr very_detailed_attrs[] = {
1197
1198 { .type = PERF_TYPE_HW_CACHE,
1199 .config =
1200 PERF_COUNT_HW_CACHE_L1I << 0 |
1201 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1202 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1203
1204 { .type = PERF_TYPE_HW_CACHE,
1205 .config =
1206 PERF_COUNT_HW_CACHE_L1I << 0 |
1207 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1208 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1209
1210 { .type = PERF_TYPE_HW_CACHE,
1211 .config =
1212 PERF_COUNT_HW_CACHE_DTLB << 0 |
1213 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1214 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1215
1216 { .type = PERF_TYPE_HW_CACHE,
1217 .config =
1218 PERF_COUNT_HW_CACHE_DTLB << 0 |
1219 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1220 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1221
1222 { .type = PERF_TYPE_HW_CACHE,
1223 .config =
1224 PERF_COUNT_HW_CACHE_ITLB << 0 |
1225 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1226 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1227
1228 { .type = PERF_TYPE_HW_CACHE,
1229 .config =
1230 PERF_COUNT_HW_CACHE_ITLB << 0 |
1231 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1232 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1233
1234};
1235
1236/*
1237 * Very, very detailed stats (-d -d -d), adding prefetch events:
1238 */
1239 struct perf_event_attr very_very_detailed_attrs[] = {
1240
1241 { .type = PERF_TYPE_HW_CACHE,
1242 .config =
1243 PERF_COUNT_HW_CACHE_L1D << 0 |
1244 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1245 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1246
1247 { .type = PERF_TYPE_HW_CACHE,
1248 .config =
1249 PERF_COUNT_HW_CACHE_L1D << 0 |
1250 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1251 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1252};
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001253 struct parse_events_error errinfo;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001254
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001255 /* Set attrs if no event is selected and !null_run: */
Jiri Olsaaea0dca2018-08-30 08:32:41 +02001256 if (stat_config.null_run)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001257 return 0;
1258
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001259 if (transaction_run) {
Thomas Richter742d92f2018-06-26 09:17:01 +02001260 /* Handle -T as -M transaction. Once platform specific metrics
1261 * support has been added to the json files, all archictures
1262 * will use this approach. To determine transaction support
1263 * on an architecture test for such a metric name.
1264 */
1265 if (metricgroup__has_metric("transaction")) {
1266 struct option opt = { .value = &evsel_list };
1267
1268 return metricgroup__parse_groups(&opt, "transaction",
Jiri Olsad0192fd2018-08-30 08:32:51 +02001269 &stat_config.metric_events);
Thomas Richter742d92f2018-06-26 09:17:01 +02001270 }
1271
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001272 if (pmu_have_event("cpu", "cycles-ct") &&
1273 pmu_have_event("cpu", "el-start"))
Thomas Richterfca323402018-03-08 15:57:35 +01001274 err = parse_events(evsel_list, transaction_attrs,
1275 &errinfo);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001276 else
Thomas Richterfca323402018-03-08 15:57:35 +01001277 err = parse_events(evsel_list,
1278 transaction_limited_attrs,
1279 &errinfo);
Jiri Olsaa4547422015-06-03 16:25:53 +02001280 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001281 fprintf(stderr, "Cannot set up transaction events\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001282 parse_events_print_error(&errinfo, transaction_attrs);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001283 return -1;
1284 }
1285 return 0;
1286 }
1287
Kan Liangdaefd0b2017-05-26 12:05:38 -07001288 if (smi_cost) {
1289 int smi;
1290
1291 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
1292 fprintf(stderr, "freeze_on_smi is not supported.\n");
1293 return -1;
1294 }
1295
1296 if (!smi) {
1297 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
1298 fprintf(stderr, "Failed to set freeze_on_smi.\n");
1299 return -1;
1300 }
1301 smi_reset = true;
1302 }
1303
1304 if (pmu_have_event("msr", "aperf") &&
1305 pmu_have_event("msr", "smi")) {
1306 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001307 stat_config.metric_only = true;
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001308 err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001309 } else {
1310 fprintf(stderr, "To measure SMI cost, it needs "
1311 "msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001312 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001313 return -1;
1314 }
1315 if (err) {
1316 fprintf(stderr, "Cannot set up SMI cost events\n");
1317 return -1;
1318 }
1319 return 0;
1320 }
1321
Andi Kleen44b1e602016-05-30 12:49:42 -03001322 if (topdown_run) {
1323 char *str = NULL;
1324 bool warn = false;
1325
1326 if (stat_config.aggr_mode != AGGR_GLOBAL &&
1327 stat_config.aggr_mode != AGGR_CORE) {
1328 pr_err("top down event configuration requires --per-core mode\n");
1329 return -1;
1330 }
1331 stat_config.aggr_mode = AGGR_CORE;
1332 if (nr_cgroups || !target__has_cpu(&target)) {
1333 pr_err("top down event configuration requires system-wide mode (-a)\n");
1334 return -1;
1335 }
1336
1337 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001338 stat_config.metric_only = true;
Andi Kleen44b1e602016-05-30 12:49:42 -03001339 if (topdown_filter_events(topdown_attrs, &str,
1340 arch_topdown_check_group(&warn)) < 0) {
1341 pr_err("Out of memory\n");
1342 return -1;
1343 }
1344 if (topdown_attrs[0] && str) {
1345 if (warn)
1346 arch_topdown_group_warn();
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001347 err = parse_events(evsel_list, str, &errinfo);
Andi Kleen44b1e602016-05-30 12:49:42 -03001348 if (err) {
1349 fprintf(stderr,
1350 "Cannot set up top down events %s: %d\n",
1351 str, err);
1352 free(str);
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001353 parse_events_print_error(&errinfo, str);
Andi Kleen44b1e602016-05-30 12:49:42 -03001354 return -1;
1355 }
1356 } else {
1357 fprintf(stderr, "System does not support topdown\n");
1358 return -1;
1359 }
1360 free(str);
1361 }
1362
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001363 if (!evsel_list->nr_entries) {
Namhyung Kima1f3d562016-05-13 15:01:03 +09001364 if (target__has_cpu(&target))
1365 default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
1366
Andi Kleen9dec4472016-02-26 16:27:56 -08001367 if (perf_evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
1368 return -1;
1369 if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
1370 if (perf_evlist__add_default_attrs(evsel_list,
1371 frontend_attrs) < 0)
1372 return -1;
1373 }
1374 if (pmu_have_event("cpu", "stalled-cycles-backend")) {
1375 if (perf_evlist__add_default_attrs(evsel_list,
1376 backend_attrs) < 0)
1377 return -1;
1378 }
1379 if (perf_evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001380 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001381 }
1382
1383 /* Detailed events get appended to the event list: */
1384
1385 if (detailed_run < 1)
1386 return 0;
1387
1388 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001389 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001390 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001391
1392 if (detailed_run < 2)
1393 return 0;
1394
1395 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001396 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001397 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001398
1399 if (detailed_run < 3)
1400 return 0;
1401
1402 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001403 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001404}
1405
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001406static const char * const stat_record_usage[] = {
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001407 "perf stat record [<options>]",
1408 NULL,
1409};
1410
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001411static void init_features(struct perf_session *session)
1412{
1413 int feat;
1414
1415 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
1416 perf_header__set_feat(&session->header, feat);
1417
Jiri Olsa8002a632019-04-09 12:01:56 +02001418 perf_header__clear_feat(&session->header, HEADER_DIR_FORMAT);
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001419 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
1420 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
1421 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
1422 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
1423}
1424
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001425static int __cmd_record(int argc, const char **argv)
1426{
1427 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001428 struct perf_data *data = &perf_stat.data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001429
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001430 argc = parse_options(argc, argv, stat_options, stat_record_usage,
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001431 PARSE_OPT_STOP_AT_NON_OPTION);
1432
1433 if (output_name)
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001434 data->path = output_name;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001435
Jiri Olsad97ae042018-08-30 08:32:36 +02001436 if (stat_config.run_count != 1 || forever) {
Jiri Olsae9d6db8e82015-11-05 15:40:53 +01001437 pr_err("Cannot use -r option with perf stat record.\n");
1438 return -1;
1439 }
1440
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001441 session = perf_session__new(data, false, NULL);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001442 if (session == NULL) {
1443 pr_err("Perf session creation failed.\n");
1444 return -1;
1445 }
1446
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001447 init_features(session);
1448
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001449 session->evlist = evsel_list;
1450 perf_stat.session = session;
1451 perf_stat.record = true;
1452 return argc;
1453}
1454
Jiri Olsa89f16882018-09-13 14:54:03 +02001455static int process_stat_round_event(struct perf_session *session,
1456 union perf_event *event)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001457{
Andi Kleene3b03b62016-05-05 16:04:03 -07001458 struct stat_round_event *stat_round = &event->stat_round;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001459 struct perf_evsel *counter;
1460 struct timespec tsh, *ts = NULL;
1461 const char **argv = session->header.env.cmdline_argv;
1462 int argc = session->header.env.nr_cmdline;
1463
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001464 evlist__for_each_entry(evsel_list, counter)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001465 perf_stat_process_counter(&stat_config, counter);
1466
Andi Kleene3b03b62016-05-05 16:04:03 -07001467 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
1468 update_stats(&walltime_nsecs_stats, stat_round->time);
Jiri Olsaa56f9392015-11-05 15:40:59 +01001469
Andi Kleene3b03b62016-05-05 16:04:03 -07001470 if (stat_config.interval && stat_round->time) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -03001471 tsh.tv_sec = stat_round->time / NSEC_PER_SEC;
1472 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001473 ts = &tsh;
1474 }
1475
1476 print_counters(ts, argc, argv);
1477 return 0;
1478}
1479
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001480static
Jiri Olsa89f16882018-09-13 14:54:03 +02001481int process_stat_config_event(struct perf_session *session,
1482 union perf_event *event)
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001483{
Jiri Olsa89f16882018-09-13 14:54:03 +02001484 struct perf_tool *tool = session->tool;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001485 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1486
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001487 perf_event__read_stat_config(&stat_config, &event->stat_config);
Jiri Olsa68d702f2015-11-05 15:40:58 +01001488
Jiri Olsa89af4e02015-11-05 15:41:02 +01001489 if (cpu_map__empty(st->cpus)) {
1490 if (st->aggr_mode != AGGR_UNSET)
1491 pr_warning("warning: processing task data, aggregation mode not set\n");
1492 return 0;
1493 }
1494
1495 if (st->aggr_mode != AGGR_UNSET)
1496 stat_config.aggr_mode = st->aggr_mode;
1497
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001498 if (perf_stat.data.is_pipe)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001499 perf_stat_init_aggr_mode();
1500 else
1501 perf_stat_init_aggr_mode_file(st);
1502
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001503 return 0;
1504}
1505
Jiri Olsa1975d362015-11-05 15:40:56 +01001506static int set_maps(struct perf_stat *st)
1507{
1508 if (!st->cpus || !st->threads)
1509 return 0;
1510
1511 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
1512 return -EINVAL;
1513
1514 perf_evlist__set_maps(evsel_list, st->cpus, st->threads);
1515
1516 if (perf_evlist__alloc_stats(evsel_list, true))
1517 return -ENOMEM;
1518
1519 st->maps_allocated = true;
1520 return 0;
1521}
1522
1523static
Jiri Olsa89f16882018-09-13 14:54:03 +02001524int process_thread_map_event(struct perf_session *session,
1525 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01001526{
Jiri Olsa89f16882018-09-13 14:54:03 +02001527 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01001528 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1529
1530 if (st->threads) {
1531 pr_warning("Extra thread map event, ignoring.\n");
1532 return 0;
1533 }
1534
1535 st->threads = thread_map__new_event(&event->thread_map);
1536 if (!st->threads)
1537 return -ENOMEM;
1538
1539 return set_maps(st);
1540}
1541
1542static
Jiri Olsa89f16882018-09-13 14:54:03 +02001543int process_cpu_map_event(struct perf_session *session,
1544 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01001545{
Jiri Olsa89f16882018-09-13 14:54:03 +02001546 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01001547 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1548 struct cpu_map *cpus;
1549
1550 if (st->cpus) {
1551 pr_warning("Extra cpu map event, ignoring.\n");
1552 return 0;
1553 }
1554
1555 cpus = cpu_map__new_data(&event->cpu_map.data);
1556 if (!cpus)
1557 return -ENOMEM;
1558
1559 st->cpus = cpus;
1560 return set_maps(st);
1561}
1562
Jin Yao56739442017-12-05 22:03:07 +08001563static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
1564{
1565 int i;
1566
1567 config->stats = calloc(nthreads, sizeof(struct runtime_stat));
1568 if (!config->stats)
1569 return -1;
1570
1571 config->stats_num = nthreads;
1572
1573 for (i = 0; i < nthreads; i++)
1574 runtime_stat__init(&config->stats[i]);
1575
1576 return 0;
1577}
1578
1579static void runtime_stat_delete(struct perf_stat_config *config)
1580{
1581 int i;
1582
1583 if (!config->stats)
1584 return;
1585
1586 for (i = 0; i < config->stats_num; i++)
1587 runtime_stat__exit(&config->stats[i]);
1588
1589 free(config->stats);
1590}
1591
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001592static const char * const stat_report_usage[] = {
Jiri Olsaba6039b62015-11-05 15:40:55 +01001593 "perf stat report [<options>]",
1594 NULL,
1595};
1596
1597static struct perf_stat perf_stat = {
1598 .tool = {
1599 .attr = perf_event__process_attr,
Jiri Olsafa6ea782015-11-05 15:41:00 +01001600 .event_update = perf_event__process_event_update,
Jiri Olsa1975d362015-11-05 15:40:56 +01001601 .thread_map = process_thread_map_event,
1602 .cpu_map = process_cpu_map_event,
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001603 .stat_config = process_stat_config_event,
Jiri Olsaa56f9392015-11-05 15:40:59 +01001604 .stat = perf_event__process_stat_event,
1605 .stat_round = process_stat_round_event,
Jiri Olsaba6039b62015-11-05 15:40:55 +01001606 },
Jiri Olsa89af4e02015-11-05 15:41:02 +01001607 .aggr_mode = AGGR_UNSET,
Jiri Olsaba6039b62015-11-05 15:40:55 +01001608};
1609
1610static int __cmd_report(int argc, const char **argv)
1611{
1612 struct perf_session *session;
1613 const struct option options[] = {
1614 OPT_STRING('i', "input", &input_name, "file", "input file name"),
Jiri Olsa89af4e02015-11-05 15:41:02 +01001615 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
1616 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -07001617 OPT_SET_UINT(0, "per-die", &perf_stat.aggr_mode,
1618 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsa89af4e02015-11-05 15:41:02 +01001619 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
1620 "aggregate counts per physical processor core", AGGR_CORE),
1621 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
1622 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsaba6039b62015-11-05 15:40:55 +01001623 OPT_END()
1624 };
1625 struct stat st;
1626 int ret;
1627
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001628 argc = parse_options(argc, argv, options, stat_report_usage, 0);
Jiri Olsaba6039b62015-11-05 15:40:55 +01001629
1630 if (!input_name || !strlen(input_name)) {
1631 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
1632 input_name = "-";
1633 else
1634 input_name = "perf.data";
1635 }
1636
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001637 perf_stat.data.path = input_name;
1638 perf_stat.data.mode = PERF_DATA_MODE_READ;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001639
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001640 session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
Jiri Olsaba6039b62015-11-05 15:40:55 +01001641 if (session == NULL)
1642 return -1;
1643
1644 perf_stat.session = session;
1645 stat_config.output = stderr;
1646 evsel_list = session->evlist;
1647
1648 ret = perf_session__process_events(session);
1649 if (ret)
1650 return ret;
1651
1652 perf_session__delete(session);
1653 return 0;
1654}
1655
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001656static void setup_system_wide(int forks)
1657{
1658 /*
1659 * Make system wide (-a) the default target if
1660 * no target was specified and one of following
1661 * conditions is met:
1662 *
1663 * - there's no workload specified
1664 * - there is workload specified but all requested
1665 * events are system wide events
1666 */
1667 if (!target__none(&target))
1668 return;
1669
1670 if (!forks)
1671 target.system_wide = true;
1672 else {
1673 struct perf_evsel *counter;
1674
1675 evlist__for_each_entry(evsel_list, counter) {
1676 if (!counter->system_wide)
1677 return;
1678 }
1679
1680 if (evsel_list->nr_entries)
1681 target.system_wide = true;
1682 }
1683}
1684
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001685int cmd_stat(int argc, const char **argv)
Ingo Molnar52425192009-05-26 09:17:18 +02001686{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001687 const char * const stat_usage[] = {
1688 "perf stat [<options>] [<command>]",
1689 NULL
1690 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001691 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001692 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001693 FILE *output = stderr;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001694 unsigned int interval, timeout;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001695 const char * const stat_subcommands[] = { "record", "report" };
Ingo Molnar42202dd2009-06-13 14:57:28 +02001696
Stephane Eranian5af52b52010-05-18 15:00:01 +02001697 setlocale(LC_ALL, "");
1698
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001699 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001700 if (evsel_list == NULL)
1701 return -ENOMEM;
1702
Wang Nan1669e502016-02-19 11:43:58 +00001703 parse_events__shrink_config_terms();
Michael Petlan51433ea2018-12-10 11:00:04 -05001704
1705 /* String-parsing callback-based options would segfault when negated */
1706 set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG);
1707 set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG);
1708 set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG);
1709
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001710 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
1711 (const char **) stat_usage,
1712 PARSE_OPT_STOP_AT_NON_OPTION);
Andi Kleen37932c12017-03-20 13:17:08 -07001713 perf_stat__collect_metric_expr(evsel_list);
Andi Kleenfb4605b2016-03-01 10:57:52 -08001714 perf_stat__init_shadow_stats();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001715
Jiri Olsafa7070a2018-08-30 08:32:29 +02001716 if (stat_config.csv_sep) {
1717 stat_config.csv_output = true;
1718 if (!strcmp(stat_config.csv_sep, "\\t"))
1719 stat_config.csv_sep = "\t";
Jiri Olsa6edb78a2015-11-05 15:41:01 +01001720 } else
Jiri Olsafa7070a2018-08-30 08:32:29 +02001721 stat_config.csv_sep = DEFAULT_SEPARATOR;
Jiri Olsa6edb78a2015-11-05 15:41:01 +01001722
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001723 if (argc && !strncmp(argv[0], "rec", 3)) {
1724 argc = __cmd_record(argc, argv);
1725 if (argc < 0)
1726 return -1;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001727 } else if (argc && !strncmp(argv[0], "rep", 3))
1728 return __cmd_report(argc, argv);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001729
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001730 interval = stat_config.interval;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001731 timeout = stat_config.timeout;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001732
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001733 /*
1734 * For record command the -o is already taken care of.
1735 */
1736 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
Stephane Eranian4aa90152011-08-15 22:22:33 +02001737 output = NULL;
1738
Jim Cromie56f3bae2011-09-07 17:14:00 -06001739 if (output_name && output_fd) {
1740 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001741 parse_options_usage(stat_usage, stat_options, "o", 1);
1742 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001743 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001744 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001745
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001746 if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) {
Andi Kleen54b50912016-03-03 15:57:36 -08001747 fprintf(stderr, "--metric-only is not supported with --per-thread\n");
1748 goto out;
1749 }
1750
Jiri Olsad97ae042018-08-30 08:32:36 +02001751 if (stat_config.metric_only && stat_config.run_count > 1) {
Andi Kleen54b50912016-03-03 15:57:36 -08001752 fprintf(stderr, "--metric-only is not supported with -r\n");
1753 goto out;
1754 }
1755
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001756 if (stat_config.walltime_run_table && stat_config.run_count <= 1) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02001757 fprintf(stderr, "--table is only supported with -r\n");
1758 parse_options_usage(stat_usage, stat_options, "r", 1);
1759 parse_options_usage(NULL, stat_options, "table", 0);
1760 goto out;
1761 }
1762
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001763 if (output_fd < 0) {
1764 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001765 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001766 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001767 }
1768
Stephane Eranian4aa90152011-08-15 22:22:33 +02001769 if (!output) {
1770 struct timespec tm;
1771 mode = append_file ? "a" : "w";
1772
1773 output = fopen(output_name, mode);
1774 if (!output) {
1775 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001776 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001777 }
1778 clock_gettime(CLOCK_REALTIME, &tm);
1779 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001780 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001781 mode = append_file ? "a" : "w";
1782 output = fdopen(output_fd, mode);
1783 if (!output) {
1784 perror("Failed opening logfd");
1785 return -errno;
1786 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001787 }
1788
Jiri Olsa58215222015-07-21 14:31:24 +02001789 stat_config.output = output;
1790
Stephane Eraniand7470b62010-12-01 18:49:05 +02001791 /*
1792 * let the spreadsheet do the pretty-printing
1793 */
Jiri Olsafa7070a2018-08-30 08:32:29 +02001794 if (stat_config.csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001795 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001796 if (big_num_opt == 1) {
1797 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001798 parse_options_usage(stat_usage, stat_options, "B", 1);
1799 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001800 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001801 } else /* Nope, so disable big number formatting */
Jiri Olsa34ff0862018-08-30 08:32:47 +02001802 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001803 } else if (big_num_opt == 0) /* User passed --no-big-num */
Jiri Olsa34ff0862018-08-30 08:32:47 +02001804 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001805
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001806 setup_system_wide(argc);
David Ahernac3063b2013-09-30 07:37:37 -06001807
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001808 /*
1809 * Display user/system times only for single
1810 * run and when there's specified tracee.
1811 */
Jiri Olsad97ae042018-08-30 08:32:36 +02001812 if ((stat_config.run_count == 1) && target__none(&target))
Jiri Olsa8897a892018-08-30 08:32:44 +02001813 stat_config.ru_display = true;
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001814
Jiri Olsad97ae042018-08-30 08:32:36 +02001815 if (stat_config.run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001816 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001817 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001818 goto out;
Jiri Olsad97ae042018-08-30 08:32:36 +02001819 } else if (stat_config.run_count == 0) {
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001820 forever = true;
Jiri Olsad97ae042018-08-30 08:32:36 +02001821 stat_config.run_count = 1;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001822 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001823
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001824 if (stat_config.walltime_run_table) {
1825 stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0]));
1826 if (!stat_config.walltime_run) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02001827 pr_err("failed to setup -r option");
1828 goto out;
1829 }
1830 }
1831
Jin Yao1d9f8d12017-12-05 22:03:10 +08001832 if ((stat_config.aggr_mode == AGGR_THREAD) &&
1833 !target__has_task(&target)) {
1834 if (!target.system_wide || target.cpu_list) {
1835 fprintf(stderr, "The --per-thread option is only "
1836 "available when monitoring via -p -t -a "
1837 "options or only --per-thread.\n");
1838 parse_options_usage(NULL, stat_options, "p", 1);
1839 parse_options_usage(NULL, stat_options, "t", 1);
1840 goto out;
1841 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001842 }
1843
1844 /*
1845 * no_aggr, cgroup are for system-wide only
1846 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1847 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001848 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1849 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001850 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001851 fprintf(stderr, "both cgroup and no-aggregation "
1852 "modes only available in system-wide mode\n");
1853
Jiri Olsae0547312015-11-05 15:40:45 +01001854 parse_options_usage(stat_usage, stat_options, "G", 1);
1855 parse_options_usage(NULL, stat_options, "A", 1);
1856 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001857 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001858 }
1859
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001860 if (add_default_attributes())
1861 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001862
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001863 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001864
Jin Yao1d9f8d12017-12-05 22:03:10 +08001865 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
1866 target.per_thread = true;
1867
Namhyung Kim77a6f012012-05-07 14:09:04 +09001868 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001869 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001870 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001871 parse_options_usage(stat_usage, stat_options, "p", 1);
1872 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001873 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001874 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01001875 parse_options_usage(stat_usage, stat_options, "C", 1);
1876 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001877 }
1878 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001879 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001880
1881 /*
1882 * Initialize thread_map with comm names,
1883 * so we could print it out on output.
1884 */
Jin Yao56739442017-12-05 22:03:07 +08001885 if (stat_config.aggr_mode == AGGR_THREAD) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001886 thread_map__read_comms(evsel_list->threads);
Jin Yao56739442017-12-05 22:03:07 +08001887 if (target.system_wide) {
1888 if (runtime_stat_new(&stat_config,
1889 thread_map__nr(evsel_list->threads))) {
1890 goto out;
1891 }
1892 }
1893 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001894
yuzhoujiandb06a262018-01-29 10:25:22 +01001895 if (stat_config.times && interval)
1896 interval_count = true;
1897 else if (stat_config.times && !interval) {
1898 pr_err("interval-count option should be used together with "
1899 "interval-print.\n");
1900 parse_options_usage(stat_usage, stat_options, "interval-count", 0);
1901 parse_options_usage(stat_usage, stat_options, "I", 1);
1902 goto out;
1903 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001904
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001905 if (timeout && timeout < 100) {
1906 if (timeout < 10) {
1907 pr_err("timeout must be >= 10ms.\n");
1908 parse_options_usage(stat_usage, stat_options, "timeout", 0);
1909 goto out;
1910 } else
1911 pr_warning("timeout < 100ms. "
1912 "The overhead percentage could be high in some cases. "
1913 "Please proceed with caution.\n");
1914 }
1915 if (timeout && interval) {
1916 pr_err("timeout option is not supported with interval-print.\n");
1917 parse_options_usage(stat_usage, stat_options, "timeout", 0);
1918 parse_options_usage(stat_usage, stat_options, "I", 1);
1919 goto out;
1920 }
1921
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001922 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001923 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001924
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001925 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001926 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001927
Ingo Molnar58d7e992009-05-15 11:03:23 +02001928 /*
Jiri Olsa7d9ad162018-08-30 08:32:14 +02001929 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
1930 * while avoiding that older tools show confusing messages.
1931 *
1932 * However for pipe sessions we need to keep it zero,
1933 * because script's perf_evsel__check_attr is triggered
1934 * by attr->sample_type != 0, and we can't run it on
1935 * stat sessions.
1936 */
1937 stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe);
1938
1939 /*
Ingo Molnar58d7e992009-05-15 11:03:23 +02001940 * We dont want to block the signals - that would cause
1941 * child tasks to inherit that and Ctrl-C would not work.
1942 * What we want is for Ctrl-C to work in the exec()-ed
1943 * task, but being ignored by perf stat itself:
1944 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001945 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001946 if (!forever)
1947 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001948 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001949 signal(SIGALRM, skip_signal);
1950 signal(SIGABRT, skip_signal);
1951
Ingo Molnar42202dd2009-06-13 14:57:28 +02001952 status = 0;
Jiri Olsad97ae042018-08-30 08:32:36 +02001953 for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) {
1954 if (stat_config.run_count != 1 && verbose > 0)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001955 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1956 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001957
Jiri Olsae55c14a2018-04-23 11:08:21 +02001958 status = run_perf_stat(argc, argv, run_idx);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001959 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001960 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001961 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001962 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001963 }
1964
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001965 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001966 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001967
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001968 if (STAT_RECORD) {
1969 /*
1970 * We synthesize the kernel mmap record just so that older tools
1971 * don't emit warnings about not being able to resolve symbols
1972 * due to /proc/sys/kernel/kptr_restrict settings and instear provide
1973 * a saner message about no samples being in the perf.data file.
1974 *
1975 * This also serves to suppress a warning about f_header.data.size == 0
Jiri Olsa8b99b1a2015-11-05 15:40:48 +01001976 * in header.c at the moment 'perf stat record' gets introduced, which
1977 * is not really needed once we start adding the stat specific PERF_RECORD_
1978 * records, but the need to suppress the kptr_restrict messages in older
1979 * tools remain -acme
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001980 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001981 int fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001982 int err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
1983 process_synthesized_event,
1984 &perf_stat.session->machines.host);
1985 if (err) {
1986 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
1987 "older tools may produce warnings about this file\n.");
1988 }
1989
Jiri Olsa7aad0c32015-11-05 15:40:52 +01001990 if (!interval) {
1991 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
1992 pr_err("failed to write stat round event\n");
1993 }
1994
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001995 if (!perf_stat.data.is_pipe) {
Jiri Olsa664c98d2015-11-05 15:40:50 +01001996 perf_stat.session->header.data_size += perf_stat.bytes_written;
1997 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
1998 }
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001999
2000 perf_session__delete(perf_stat.session);
2001 }
2002
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09002003 perf_stat__exit_aggr_mode();
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03002004 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02002005out:
Jiri Olsa54ac0b12018-08-30 08:32:50 +02002006 free(stat_config.walltime_run);
Jiri Olsae55c14a2018-04-23 11:08:21 +02002007
Kan Liangdaefd0b2017-05-26 12:05:38 -07002008 if (smi_cost && smi_reset)
2009 sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
2010
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02002011 perf_evlist__delete(evsel_list);
Jin Yao56739442017-12-05 22:03:07 +08002012
2013 runtime_stat_delete(&stat_config);
2014
Ingo Molnar42202dd2009-06-13 14:57:28 +02002015 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002016}