blob: 49ee3c2033ecbd8df8408445f141c8312f7efc44 [file] [log] [blame]
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-stat.c
3 *
4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
6 *
7 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02008
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02009 $ perf stat ./hackbench 10
Ingo Molnarddcacfa2009-04-20 15:37:32 +020010
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020011 Time: 0.118
Ingo Molnarddcacfa2009-04-20 15:37:32 +020012
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020013 Performance counter stats for './hackbench 10':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020014
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020015 1708.761321 task-clock # 11.037 CPUs utilized
16 41,190 context-switches # 0.024 M/sec
17 6,735 CPU-migrations # 0.004 M/sec
18 17,318 page-faults # 0.010 M/sec
19 5,205,202,243 cycles # 3.046 GHz
20 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
21 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
22 2,603,501,247 instructions # 0.50 insns per cycle
23 # 1.48 stalled cycles per insn
24 484,357,498 branches # 283.455 M/sec
25 6,388,934 branch-misses # 1.32% of all branches
26
27 0.154822978 seconds time elapsed
Ingo Molnarddcacfa2009-04-20 15:37:32 +020028
Ingo Molnar52425192009-05-26 09:17:18 +020029 *
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020030 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
Ingo Molnar52425192009-05-26 09:17:18 +020031 *
32 * Improvements and fixes by:
33 *
34 * Arjan van de Ven <arjan@linux.intel.com>
35 * Yanmin Zhang <yanmin.zhang@intel.com>
36 * Wu Fengguang <fengguang.wu@intel.com>
37 * Mike Galbraith <efault@gmx.de>
38 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053039 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020040 *
41 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020042 */
43
Peter Zijlstra1a482f32009-05-23 18:28:58 +020044#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020045#include "builtin.h"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030046#include "util/cgroup.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020047#include "util/util.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060048#include <subcmd/parse-options.h>
Ingo Molnar52425192009-05-26 09:17:18 +020049#include "util/parse-events.h"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070050#include "util/pmu.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020051#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020052#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020053#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020054#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020055#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080056#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080057#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110058#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030059#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020060#include "util/thread_map.h"
Jiri Olsad8095602015-08-07 12:51:03 +020061#include "util/counts.h"
Andi Kleen44b1e602016-05-30 12:49:42 -030062#include "util/group.h"
Jiri Olsa4979d0c2015-11-05 15:40:46 +010063#include "util/session.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010064#include "util/tool.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030065#include "util/string2.h"
Andi Kleenb18f3e32017-08-31 12:40:31 -070066#include "util/metricgroup.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>
Andi Kleen44b1e602016-05-30 12:49:42 -030071#include <api/fs/fs.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030072#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030073#include <signal.h>
Peter Zijlstra1f16c572012-10-23 13:40:14 +020074#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020075#include <sys/prctl.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030076#include <inttypes.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020077#include <locale.h>
Andi Kleene3b03b62016-05-05 16:04:03 -070078#include <math.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030079#include <sys/types.h>
80#include <sys/stat.h>
Arnaldo Carvalho de Melo42087352017-04-19 19:06:30 -030081#include <sys/wait.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030082#include <unistd.h>
Jiri Olsa0ce2da12018-06-05 14:13:13 +020083#include <sys/time.h>
84#include <sys/resource.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020085
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030086#include "sane_ctype.h"
87
Stephane Eraniand7470b62010-12-01 18:49:05 +020088#define DEFAULT_SEPARATOR " "
Kan Liangdaefd0b2017-05-26 12:05:38 -070089#define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi"
Stephane Eraniand7470b62010-12-01 18:49:05 +020090
Jiri Olsad4f63a42015-06-26 11:29:26 +020091static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010092
Andi Kleen4cabc3d2013-08-21 16:47:26 -070093/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020094static const char *transaction_attrs = {
95 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070096 "{"
97 "instructions,"
98 "cycles,"
99 "cpu/cycles-t/,"
100 "cpu/tx-start/,"
101 "cpu/el-start/,"
102 "cpu/cycles-ct/"
103 "}"
104};
105
106/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +0200107static const char * transaction_limited_attrs = {
108 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700109 "{"
110 "instructions,"
111 "cycles,"
112 "cpu/cycles-t/,"
113 "cpu/tx-start/"
114 "}"
115};
116
Andi Kleen44b1e602016-05-30 12:49:42 -0300117static const char * topdown_attrs[] = {
118 "topdown-total-slots",
119 "topdown-slots-retired",
120 "topdown-recovery-bubbles",
121 "topdown-fetch-bubbles",
122 "topdown-slots-issued",
123 NULL,
124};
125
Kan Liangdaefd0b2017-05-26 12:05:38 -0700126static const char *smi_cost_attrs = {
127 "{"
128 "msr/aperf/,"
129 "msr/smi/,"
130 "cycles"
131 "}"
132};
133
Robert Richter666e6d42012-04-05 18:26:27 +0200134static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200135
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300136static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900137 .uid = UINT_MAX,
138};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530139
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200140#define METRIC_ONLY_LEN 20
141
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200142static volatile pid_t child_pid = -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200143static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700144static bool transaction_run;
Andi Kleen44b1e602016-05-30 12:49:42 -0300145static bool topdown_run = false;
Kan Liangdaefd0b2017-05-26 12:05:38 -0700146static bool smi_cost = false;
147static bool smi_reset = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200148static int big_num_opt = -1;
Lin Ming43bece72011-08-17 18:42:07 +0800149static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200150static const char *pre_cmd = NULL;
151static const char *post_cmd = NULL;
152static bool sync_run = false;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500153static bool forever = false;
Andi Kleen44b1e602016-05-30 12:49:42 -0300154static bool force_metric_only = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100155static struct timespec ref_time;
Jiri Olsae0547312015-11-05 15:40:45 +0100156static bool append_file;
yuzhoujiandb06a262018-01-29 10:25:22 +0100157static bool interval_count;
Jiri Olsae0547312015-11-05 15:40:45 +0100158static const char *output_name;
159static int output_fd;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200160
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100161struct perf_stat {
162 bool record;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100163 struct perf_data data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100164 struct perf_session *session;
165 u64 bytes_written;
Jiri Olsaba6039b62015-11-05 15:40:55 +0100166 struct perf_tool tool;
Jiri Olsa1975d362015-11-05 15:40:56 +0100167 bool maps_allocated;
168 struct cpu_map *cpus;
169 struct thread_map *threads;
Jiri Olsa89af4e02015-11-05 15:41:02 +0100170 enum aggr_mode aggr_mode;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100171};
172
173static struct perf_stat perf_stat;
174#define STAT_RECORD perf_stat.record
175
Liming Wang60666c62009-12-31 16:05:50 +0800176static volatile int done = 0;
177
Jiri Olsa421a50f2015-07-21 14:31:22 +0200178static struct perf_stat_config stat_config = {
Jiri Olsa26893a62018-08-30 08:32:40 +0200179 .aggr_mode = AGGR_GLOBAL,
180 .scale = true,
181 .unit_width = 4, /* strlen("unit") */
182 .run_count = 1,
183 .metric_only_len = METRIC_ONLY_LEN,
184 .walltime_nsecs_stats = &walltime_nsecs_stats,
Jiri Olsa34ff0862018-08-30 08:32:47 +0200185 .big_num = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200186};
187
Stephane Eranian13370a92013-01-29 12:47:44 +0100188static inline void diff_timespec(struct timespec *r, struct timespec *a,
189 struct timespec *b)
190{
191 r->tv_sec = a->tv_sec - b->tv_sec;
192 if (a->tv_nsec < b->tv_nsec) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300193 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
Stephane Eranian13370a92013-01-29 12:47:44 +0100194 r->tv_sec--;
195 } else {
196 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
197 }
198}
199
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200200static void perf_stat__reset_stats(void)
201{
Jin Yao56739442017-12-05 22:03:07 +0800202 int i;
203
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200204 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200205 perf_stat__reset_shadow_stats();
Jin Yao56739442017-12-05 22:03:07 +0800206
207 for (i = 0; i < stat_config.stats_num; i++)
208 perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200209}
210
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100211static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100212 union perf_event *event,
213 struct perf_sample *sample __maybe_unused,
214 struct machine *machine __maybe_unused)
215{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100216 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100217 pr_err("failed to write perf data, error: %m\n");
218 return -1;
219 }
220
221 perf_stat.bytes_written += event->header.size;
222 return 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100223}
224
Jiri Olsa1975d362015-11-05 15:40:56 +0100225static int write_stat_round_event(u64 tm, u64 type)
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100226{
Jiri Olsa1975d362015-11-05 15:40:56 +0100227 return perf_event__synthesize_stat_round(NULL, tm, type,
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100228 process_synthesized_event,
229 NULL);
230}
231
232#define WRITE_STAT_ROUND_EVENT(time, interval) \
233 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
234
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100235#define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
236
237static int
238perf_evsel__write_stat_event(struct perf_evsel *counter, u32 cpu, u32 thread,
239 struct perf_counts_values *count)
240{
241 struct perf_sample_id *sid = SID(counter, cpu, thread);
242
243 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
244 process_synthesized_event, NULL);
245}
246
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200247/*
248 * Read out the results of a single counter:
249 * do not aggregate counts across CPUs in system-wide mode
250 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200251static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200252{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100253 int nthreads = thread_map__nr(evsel_list->threads);
Mark Rutland00e727b2016-07-15 11:08:10 +0100254 int ncpus, cpu, thread;
255
Jin Yao1d9f8d12017-12-05 22:03:10 +0800256 if (target__has_cpu(&target) && !target__has_per_thread(&target))
Mark Rutland00e727b2016-07-15 11:08:10 +0100257 ncpus = perf_evsel__nr_cpus(counter);
258 else
259 ncpus = 1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200260
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000261 if (!counter->supported)
262 return -ENOENT;
263
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100264 if (counter->system_wide)
265 nthreads = 1;
266
267 for (thread = 0; thread < nthreads; thread++) {
268 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200269 struct perf_counts_values *count;
270
271 count = perf_counts(counter->counts, cpu, thread);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200272
273 /*
274 * The leader's group read loads data into its group members
275 * (via perf_evsel__read_counter) and sets threir count->loaded.
276 */
277 if (!count->loaded &&
278 perf_evsel__read_counter(counter, cpu, thread)) {
Stephane Eraniandb49a712017-04-12 11:23:01 -0700279 counter->counts->scaled = -1;
280 perf_counts(counter->counts, cpu, thread)->ena = 0;
281 perf_counts(counter->counts, cpu, thread)->run = 0;
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100282 return -1;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700283 }
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100284
Jiri Olsa82bf3112017-07-26 14:02:06 +0200285 count->loaded = false;
286
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100287 if (STAT_RECORD) {
288 if (perf_evsel__write_stat_event(counter, cpu, thread, count)) {
289 pr_err("failed to write stat event\n");
290 return -1;
291 }
292 }
Andi Kleen0b1abbf2016-04-27 13:00:51 -0700293
294 if (verbose > 1) {
295 fprintf(stat_config.output,
296 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
297 perf_evsel__name(counter),
298 cpu,
299 count->val, count->ena, count->run);
300 }
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100301 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200302 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200303
304 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200305}
306
Mark Rutland3df33ef2016-08-09 14:04:29 +0100307static void read_counters(void)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200308{
309 struct perf_evsel *counter;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700310 int ret;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200311
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300312 evlist__for_each_entry(evsel_list, counter) {
Stephane Eraniandb49a712017-04-12 11:23:01 -0700313 ret = read_counter(counter);
314 if (ret)
Andi Kleen245bad82015-09-01 15:52:46 -0700315 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200316
Stephane Eraniandb49a712017-04-12 11:23:01 -0700317 if (ret == 0 && perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200318 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200319 }
320}
321
Jiri Olsaba411a92015-06-26 11:29:24 +0200322static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100323{
Stephane Eranian13370a92013-01-29 12:47:44 +0100324 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100325
Mark Rutland3df33ef2016-08-09 14:04:29 +0100326 read_counters();
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100327
Stephane Eranian13370a92013-01-29 12:47:44 +0100328 clock_gettime(CLOCK_MONOTONIC, &ts);
329 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100330
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100331 if (STAT_RECORD) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300332 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100333 pr_err("failed to write stat round event\n");
334 }
335
Andi Kleenb90f1332017-08-31 12:40:36 -0700336 init_stats(&walltime_nsecs_stats);
337 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000);
Jiri Olsad4f63a42015-06-26 11:29:26 +0200338 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100339}
340
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100341static void enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700342{
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200343 if (stat_config.initial_delay)
344 usleep(stat_config.initial_delay * USEC_PER_MSEC);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100345
346 /*
347 * We need to enable counters only if:
348 * - we don't have tracee (attaching to task or cpu)
349 * - we have initial delay configured
350 */
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200351 if (!target__none(&target) || stat_config.initial_delay)
Jiri Olsaab46db02015-12-03 10:06:43 +0100352 perf_evlist__enable(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700353}
354
Mark Rutland3df33ef2016-08-09 14:04:29 +0100355static void disable_counters(void)
356{
357 /*
358 * If we don't have tracee (attaching to task or cpu), counters may
359 * still be running. To get accurate group ratios, we must stop groups
360 * from counting before reading their constituent counters.
361 */
362 if (!target__none(&target))
363 perf_evlist__disable(evsel_list);
364}
365
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300366static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300367
368/*
369 * perf_evlist__prepare_workload will send a SIGUSR1
370 * if the fork fails, since we asked by setting its
371 * want_signal to true.
372 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300373static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
374 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300375{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300376 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300377}
378
Jiri Olsa82bf3112017-07-26 14:02:06 +0200379static bool perf_evsel__should_store_id(struct perf_evsel *counter)
380{
381 return STAT_RECORD || counter->attr.read_format & PERF_FORMAT_ID;
382}
383
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200384static bool is_target_alive(struct target *_target,
385 struct thread_map *threads)
386{
387 struct stat st;
388 int i;
389
390 if (!target__has_task(_target))
391 return true;
392
393 for (i = 0; i < threads->nr; i++) {
394 char path[PATH_MAX];
395
396 scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(),
397 threads->map[i].pid);
398
399 if (!stat(path, &st))
400 return true;
401 }
402
403 return false;
404}
405
Jiri Olsae55c14a2018-04-23 11:08:21 +0200406static int __run_perf_stat(int argc, const char **argv, int run_idx)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200407{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200408 int interval = stat_config.interval;
yuzhoujiandb06a262018-01-29 10:25:22 +0100409 int times = stat_config.times;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100410 int timeout = stat_config.timeout;
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -0300411 char msg[BUFSIZ];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200412 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100413 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100414 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100415 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200416 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300417 const bool forks = (argc > 0);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100418 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200419
Stephane Eranian13370a92013-01-29 12:47:44 +0100420 if (interval) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300421 ts.tv_sec = interval / USEC_PER_MSEC;
422 ts.tv_nsec = (interval % USEC_PER_MSEC) * NSEC_PER_MSEC;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100423 } else if (timeout) {
424 ts.tv_sec = timeout / USEC_PER_MSEC;
425 ts.tv_nsec = (timeout % USEC_PER_MSEC) * NSEC_PER_MSEC;
Stephane Eranian13370a92013-01-29 12:47:44 +0100426 } else {
427 ts.tv_sec = 1;
428 ts.tv_nsec = 0;
429 }
430
Liming Wang60666c62009-12-31 16:05:50 +0800431 if (forks) {
Jiri Olsa664c98d2015-11-05 15:40:50 +0100432 if (perf_evlist__prepare_workload(evsel_list, &target, argv, is_pipe,
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300433 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900434 perror("failed to prepare workload");
435 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800436 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900437 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000438 }
439
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200440 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300441 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200442
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300443 evlist__for_each_entry(evsel_list, counter) {
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300444try_again:
Jiri Olsad09cefd2018-08-30 08:32:17 +0200445 if (create_perf_stat_counter(counter, &stat_config, &target) < 0) {
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700446
447 /* Weak group failed. Reset the group. */
Andi Kleen35c19802017-09-05 14:13:24 -0700448 if ((errno == EINVAL || errno == EBADF) &&
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700449 counter->leader != counter &&
450 counter->weak_group) {
Andi Kleenc3537fc2018-10-01 12:59:26 -0700451 counter = perf_evlist__reset_weak_group(evsel_list, counter);
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700452 goto try_again;
453 }
454
David Ahern979987a2012-05-08 09:29:16 -0600455 /*
456 * PPC returns ENXIO for HW counters until 2.6.37
457 * (behavior changed with commit b0a873e).
458 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100459 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600460 errno == ENOENT || errno == EOPNOTSUPP ||
461 errno == ENXIO) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900462 if (verbose > 0)
David Ahernc63ca0c2011-04-29 16:04:15 -0600463 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300464 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600465 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400466
467 if ((counter->leader != counter) ||
468 !(counter->leader->nr_members > 1))
469 continue;
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300470 } else if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900471 if (verbose > 0)
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300472 ui__warning("%s\n", msg);
473 goto try_again;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800474 } else if (target__has_per_thread(&target) &&
475 evsel_list->threads &&
476 evsel_list->threads->err_thread != -1) {
477 /*
478 * For global --per-thread case, skip current
479 * error thread.
480 */
481 if (!thread_map__remove(evsel_list->threads,
482 evsel_list->threads->err_thread)) {
483 evsel_list->threads->err_thread = -1;
484 goto try_again;
485 }
486 }
Ingo Molnarede70292011-04-28 08:48:42 +0200487
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300488 perf_evsel__open_strerror(counter, &target,
489 errno, msg, sizeof(msg));
490 ui__error("%s\n", msg);
491
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200492 if (child_pid != -1)
493 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600494
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200495 return -1;
496 }
David Ahern2cee77c2011-05-30 08:55:59 -0600497 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100498
499 l = strlen(counter->unit);
Jiri Olsadf4f7b42018-08-30 08:32:32 +0200500 if (l > stat_config.unit_width)
501 stat_config.unit_width = l;
Jiri Olsa2af46462015-11-05 15:40:49 +0100502
Jiri Olsa82bf3112017-07-26 14:02:06 +0200503 if (perf_evsel__should_store_id(counter) &&
Jiri Olsa650d6222018-08-30 08:32:16 +0200504 perf_evsel__store_ids(counter, evsel_list))
Jiri Olsa2af46462015-11-05 15:40:49 +0100505 return -1;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300506 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200507
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300508 if (perf_evlist__apply_filters(evsel_list, &counter)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300509 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300510 counter->filter, perf_evsel__name(counter), errno,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300511 str_error_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100512 return -1;
513 }
514
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100515 if (STAT_RECORD) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100516 int err, fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100517
Jiri Olsa664c98d2015-11-05 15:40:50 +0100518 if (is_pipe) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100519 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
Jiri Olsa664c98d2015-11-05 15:40:50 +0100520 } else {
521 err = perf_session__write_header(perf_stat.session, evsel_list,
522 fd, false);
523 }
524
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100525 if (err < 0)
526 return err;
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100527
Jiri Olsa1c21e982018-08-30 08:32:21 +0200528 err = perf_stat_synthesize_config(&stat_config, NULL, evsel_list,
Jiri Olsac2c247f2018-08-30 08:32:22 +0200529 process_synthesized_event, is_pipe);
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100530 if (err < 0)
531 return err;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100532 }
533
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200534 /*
535 * Enable counters and exec the command:
536 */
537 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100538 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200539
Liming Wang60666c62009-12-31 16:05:50 +0800540 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900541 perf_evlist__start_workload(evsel_list);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100542 enable_counters();
Namhyung Kimacf28922013-03-11 16:43:18 +0900543
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100544 if (interval || timeout) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100545 while (!waitpid(child_pid, &status, WNOHANG)) {
546 nanosleep(&ts, NULL);
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100547 if (timeout)
548 break;
Jiri Olsaba411a92015-06-26 11:29:24 +0200549 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100550 if (interval_count && !(--times))
551 break;
Stephane Eranian13370a92013-01-29 12:47:44 +0100552 }
553 }
Jin Yao8a992552019-01-03 15:40:45 +0800554 if (child_pid != -1)
555 wait4(child_pid, &status, 0, &stat_config.ru_data);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300556
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300557 if (workload_exec_errno) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300558 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300559 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300560 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300561 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300562
Andi Kleen33e49ea2011-09-15 14:31:40 -0700563 if (WIFSIGNALED(status))
564 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800565 } else {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100566 enable_counters();
Stephane Eranian13370a92013-01-29 12:47:44 +0100567 while (!done) {
568 nanosleep(&ts, NULL);
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200569 if (!is_target_alive(&target, evsel_list->threads))
570 break;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100571 if (timeout)
572 break;
yuzhoujiandb06a262018-01-29 10:25:22 +0100573 if (interval) {
Jiri Olsaba411a92015-06-26 11:29:24 +0200574 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100575 if (interval_count && !(--times))
576 break;
577 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100578 }
Liming Wang60666c62009-12-31 16:05:50 +0800579 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200580
Mark Rutland3df33ef2016-08-09 14:04:29 +0100581 disable_counters();
582
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200583 t1 = rdclock();
584
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200585 if (stat_config.walltime_run_table)
586 stat_config.walltime_run[run_idx] = t1 - t0;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200587
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200588 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200589
Mark Rutland3df33ef2016-08-09 14:04:29 +0100590 /*
591 * Closing a group leader splits the group, and as we only disable
592 * group leaders, results in remaining events becoming enabled. To
593 * avoid arbitrary skew, we must read all counters before closing any
594 * group leaders.
595 */
596 read_counters();
597 perf_evlist__close(evsel_list);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200598
Ingo Molnar42202dd2009-06-13 14:57:28 +0200599 return WEXITSTATUS(status);
600}
601
Jiri Olsae55c14a2018-04-23 11:08:21 +0200602static int run_perf_stat(int argc, const char **argv, int run_idx)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200603{
604 int ret;
605
606 if (pre_cmd) {
607 ret = system(pre_cmd);
608 if (ret)
609 return ret;
610 }
611
612 if (sync_run)
613 sync();
614
Jiri Olsae55c14a2018-04-23 11:08:21 +0200615 ret = __run_perf_stat(argc, argv, run_idx);
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200616 if (ret)
617 return ret;
618
619 if (post_cmd) {
620 ret = system(post_cmd);
621 if (ret)
622 return ret;
623 }
624
625 return ret;
626}
627
Jiri Olsaa5a9eac2018-08-30 08:32:24 +0200628static void print_counters(struct timespec *ts, int argc, const char **argv)
629{
Jiri Olsa01748202018-08-30 08:32:25 +0200630 /* Do not print anything if we record to the pipe. */
631 if (STAT_RECORD && perf_stat.data.is_pipe)
632 return;
633
Jiri Olsac512e0e2018-08-30 08:32:33 +0200634 perf_evlist__print_counters(evsel_list, &stat_config, &target,
Jiri Olsab64df7f2018-08-30 08:32:26 +0200635 ts, argc, argv);
Jiri Olsaa5a9eac2018-08-30 08:32:24 +0200636}
637
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200638static volatile int signr = -1;
639
Ingo Molnar52425192009-05-26 09:17:18 +0200640static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200641{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200642 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +0800643 done = 1;
644
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200645 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200646 /*
647 * render child_pid harmless
648 * won't send SIGTERM to a random
649 * process in case of race condition
650 * and fast PID recycling
651 */
652 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200653}
654
655static void sig_atexit(void)
656{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200657 sigset_t set, oset;
658
659 /*
660 * avoid race condition with SIGCHLD handler
661 * in skip_signal() which is modifying child_pid
662 * goal is to avoid send SIGTERM to a random
663 * process
664 */
665 sigemptyset(&set);
666 sigaddset(&set, SIGCHLD);
667 sigprocmask(SIG_BLOCK, &set, &oset);
668
Chris Wilson933da832009-10-04 01:35:01 +0100669 if (child_pid != -1)
670 kill(child_pid, SIGTERM);
671
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200672 sigprocmask(SIG_SETMASK, &oset, NULL);
673
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200674 if (signr == -1)
675 return;
676
677 signal(signr, SIG_DFL);
678 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200679}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200680
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300681static int stat__set_big_num(const struct option *opt __maybe_unused,
682 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200683{
684 big_num_opt = unset ? 0 : 1;
685 return 0;
686}
687
Andi Kleen44b1e602016-05-30 12:49:42 -0300688static int enable_metric_only(const struct option *opt __maybe_unused,
689 const char *s __maybe_unused, int unset)
690{
691 force_metric_only = true;
Jiri Olsa0ce5aa02018-08-30 08:32:31 +0200692 stat_config.metric_only = !unset;
Andi Kleen44b1e602016-05-30 12:49:42 -0300693 return 0;
694}
695
Andi Kleenb18f3e32017-08-31 12:40:31 -0700696static int parse_metric_groups(const struct option *opt,
697 const char *str,
698 int unset __maybe_unused)
699{
Jiri Olsad0192fd2018-08-30 08:32:51 +0200700 return metricgroup__parse_groups(opt, str, &stat_config.metric_events);
Andi Kleenb18f3e32017-08-31 12:40:31 -0700701}
702
Michael Petlan51433ea2018-12-10 11:00:04 -0500703static struct option stat_options[] = {
Jiri Olsae0547312015-11-05 15:40:45 +0100704 OPT_BOOLEAN('T', "transaction", &transaction_run,
705 "hardware transaction statistics"),
706 OPT_CALLBACK('e', "event", &evsel_list, "event",
707 "event selector. use 'perf list' to list available events",
708 parse_events_option),
709 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
710 "event filter", parse_filter),
Jiri Olsa5698f262018-08-30 08:32:12 +0200711 OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit,
Jiri Olsae0547312015-11-05 15:40:45 +0100712 "child tasks do not inherit counters"),
713 OPT_STRING('p', "pid", &target.pid, "pid",
714 "stat events on existing process id"),
715 OPT_STRING('t', "tid", &target.tid, "tid",
716 "stat events on existing thread id"),
717 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
718 "system-wide collection from all CPUs"),
719 OPT_BOOLEAN('g', "group", &group,
720 "put the counters into a counter group"),
Andi Kleen75998bb2019-03-14 15:50:01 -0700721 OPT_BOOLEAN(0, "scale", &stat_config.scale,
722 "Use --no-scale to disable counter scaling for multiplexing"),
Jiri Olsae0547312015-11-05 15:40:45 +0100723 OPT_INCR('v', "verbose", &verbose,
724 "be more verbose (show counter open errors, etc)"),
Jiri Olsad97ae042018-08-30 08:32:36 +0200725 OPT_INTEGER('r', "repeat", &stat_config.run_count,
Jiri Olsae0547312015-11-05 15:40:45 +0100726 "repeat command and print average + stddev (max: 100, forever: 0)"),
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200727 OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table,
Jiri Olsae55c14a2018-04-23 11:08:21 +0200728 "display details about each run (only with -r option)"),
Jiri Olsaaea0dca2018-08-30 08:32:41 +0200729 OPT_BOOLEAN('n', "null", &stat_config.null_run,
Jiri Olsae0547312015-11-05 15:40:45 +0100730 "null run - dont start any counters"),
731 OPT_INCR('d', "detailed", &detailed_run,
732 "detailed run - start a lot of events"),
733 OPT_BOOLEAN('S', "sync", &sync_run,
734 "call sync() before starting a run"),
735 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
736 "print large numbers with thousands\' separators",
737 stat__set_big_num),
738 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
739 "list of cpus to monitor in system-wide"),
740 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
741 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsafdee3352018-08-30 08:32:48 +0200742 OPT_BOOLEAN(0, "no-merge", &stat_config.no_merge, "Do not merge identical named events"),
Jiri Olsafa7070a2018-08-30 08:32:29 +0200743 OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator",
Jiri Olsae0547312015-11-05 15:40:45 +0100744 "print counts with custom separator"),
745 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
746 "monitor event in cgroup name only", parse_cgroups),
747 OPT_STRING('o', "output", &output_name, "file", "output file name"),
748 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
749 OPT_INTEGER(0, "log-fd", &output_fd,
750 "log output to fd, instead of stderr"),
751 OPT_STRING(0, "pre", &pre_cmd, "command",
752 "command to run prior to the measured command"),
753 OPT_STRING(0, "post", &post_cmd, "command",
754 "command to run after to the measured command"),
755 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Alexey Budankov9dc9a952018-04-03 21:18:33 +0300756 "print counts at regular interval in ms "
757 "(overhead is possible for values <= 100ms)"),
yuzhoujiandb06a262018-01-29 10:25:22 +0100758 OPT_INTEGER(0, "interval-count", &stat_config.times,
759 "print counts for fixed number of times"),
Jiri Olsa132c6ba2018-08-30 08:32:30 +0200760 OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear,
Jiri Olsa9660e082018-06-07 00:15:06 +0200761 "clear screen in between new interval"),
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100762 OPT_UINTEGER(0, "timeout", &stat_config.timeout,
763 "stop workload and print counts after a timeout period in ms (>= 10ms)"),
Jiri Olsae0547312015-11-05 15:40:45 +0100764 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
765 "aggregate counts per processor socket", AGGR_SOCKET),
766 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
767 "aggregate counts per physical processor core", AGGR_CORE),
768 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
769 "aggregate counts per thread", AGGR_THREAD),
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200770 OPT_UINTEGER('D', "delay", &stat_config.initial_delay,
Jiri Olsae0547312015-11-05 15:40:45 +0100771 "ms to wait before starting measurement after program start"),
Jiri Olsa0ce5aa02018-08-30 08:32:31 +0200772 OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL,
Andi Kleen44b1e602016-05-30 12:49:42 -0300773 "Only print computed metrics. No raw values", enable_metric_only),
774 OPT_BOOLEAN(0, "topdown", &topdown_run,
775 "measure topdown level 1 statistics"),
Kan Liangdaefd0b2017-05-26 12:05:38 -0700776 OPT_BOOLEAN(0, "smi-cost", &smi_cost,
777 "measure SMI cost"),
Andi Kleenb18f3e32017-08-31 12:40:31 -0700778 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
779 "monitor specified metrics or metric groups (separated by ,)",
780 parse_metric_groups),
Jiri Olsae0547312015-11-05 15:40:45 +0100781 OPT_END()
782};
783
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200784static int perf_stat__get_socket(struct perf_stat_config *config __maybe_unused,
785 struct cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200786{
787 return cpu_map__get_socket(map, cpu, NULL);
788}
789
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200790static int perf_stat__get_core(struct perf_stat_config *config __maybe_unused,
791 struct cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200792{
793 return cpu_map__get_core(map, cpu, NULL);
794}
795
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100796static int cpu_map__get_max(struct cpu_map *map)
797{
798 int i, max = -1;
799
800 for (i = 0; i < map->nr; i++) {
801 if (map->map[i] > max)
802 max = map->map[i];
803 }
804
805 return max;
806}
807
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200808static int perf_stat__get_aggr(struct perf_stat_config *config,
809 aggr_get_id_t get_id, struct cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100810{
811 int cpu;
812
813 if (idx >= map->nr)
814 return -1;
815
816 cpu = map->map[idx];
817
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200818 if (config->cpus_aggr_map->map[cpu] == -1)
819 config->cpus_aggr_map->map[cpu] = get_id(config, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100820
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200821 return config->cpus_aggr_map->map[cpu];
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100822}
823
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200824static int perf_stat__get_socket_cached(struct perf_stat_config *config,
825 struct cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100826{
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200827 return perf_stat__get_aggr(config, perf_stat__get_socket, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100828}
829
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200830static int perf_stat__get_core_cached(struct perf_stat_config *config,
831 struct cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100832{
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200833 return perf_stat__get_aggr(config, perf_stat__get_core, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100834}
835
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100836static int perf_stat_init_aggr_mode(void)
837{
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100838 int nr;
839
Jiri Olsa421a50f2015-07-21 14:31:22 +0200840 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100841 case AGGR_SOCKET:
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200842 if (cpu_map__build_socket_map(evsel_list->cpus, &stat_config.aggr_map)) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100843 perror("cannot build socket map");
844 return -1;
845 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200846 stat_config.aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100847 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100848 case AGGR_CORE:
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200849 if (cpu_map__build_core_map(evsel_list->cpus, &stat_config.aggr_map)) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100850 perror("cannot build core map");
851 return -1;
852 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200853 stat_config.aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100854 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100855 case AGGR_NONE:
856 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +0200857 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +0200858 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100859 default:
860 break;
861 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100862
863 /*
864 * The evsel_list->cpus is the base we operate on,
865 * taking the highest cpu number to be the size of
866 * the aggregation translate cpumap.
867 */
868 nr = cpu_map__get_max(evsel_list->cpus);
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200869 stat_config.cpus_aggr_map = cpu_map__empty_new(nr + 1);
870 return stat_config.cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100871}
872
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +0900873static void perf_stat__exit_aggr_mode(void)
874{
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200875 cpu_map__put(stat_config.aggr_map);
876 cpu_map__put(stat_config.cpus_aggr_map);
877 stat_config.aggr_map = NULL;
878 stat_config.cpus_aggr_map = NULL;
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +0900879}
880
Jiri Olsa68d702f2015-11-05 15:40:58 +0100881static inline int perf_env__get_cpu(struct perf_env *env, struct cpu_map *map, int idx)
882{
883 int cpu;
884
885 if (idx > map->nr)
886 return -1;
887
888 cpu = map->map[idx];
889
Jan Stancekda8a58b2017-02-17 12:10:26 +0100890 if (cpu >= env->nr_cpus_avail)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100891 return -1;
892
893 return cpu;
894}
895
896static int perf_env__get_socket(struct cpu_map *map, int idx, void *data)
897{
898 struct perf_env *env = data;
899 int cpu = perf_env__get_cpu(env, map, idx);
900
901 return cpu == -1 ? -1 : env->cpu[cpu].socket_id;
902}
903
904static int perf_env__get_core(struct cpu_map *map, int idx, void *data)
905{
906 struct perf_env *env = data;
907 int core = -1, cpu = perf_env__get_cpu(env, map, idx);
908
909 if (cpu != -1) {
910 int socket_id = env->cpu[cpu].socket_id;
911
912 /*
913 * Encode socket in upper 16 bits
914 * core_id is relative to socket, and
915 * we need a global id. So we combine
916 * socket + core id.
917 */
918 core = (socket_id << 16) | (env->cpu[cpu].core_id & 0xffff);
919 }
920
921 return core;
922}
923
924static int perf_env__build_socket_map(struct perf_env *env, struct cpu_map *cpus,
925 struct cpu_map **sockp)
926{
927 return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
928}
929
930static int perf_env__build_core_map(struct perf_env *env, struct cpu_map *cpus,
931 struct cpu_map **corep)
932{
933 return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
934}
935
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200936static int perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused,
937 struct cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100938{
939 return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
940}
941
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200942static int perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused,
943 struct cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100944{
945 return perf_env__get_core(map, idx, &perf_stat.session->header.env);
946}
947
948static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
949{
950 struct perf_env *env = &st->session->header.env;
951
952 switch (stat_config.aggr_mode) {
953 case AGGR_SOCKET:
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200954 if (perf_env__build_socket_map(env, evsel_list->cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +0100955 perror("cannot build socket map");
956 return -1;
957 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200958 stat_config.aggr_get_id = perf_stat__get_socket_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +0100959 break;
960 case AGGR_CORE:
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200961 if (perf_env__build_core_map(env, evsel_list->cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +0100962 perror("cannot build core map");
963 return -1;
964 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200965 stat_config.aggr_get_id = perf_stat__get_core_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +0100966 break;
967 case AGGR_NONE:
968 case AGGR_GLOBAL:
969 case AGGR_THREAD:
970 case AGGR_UNSET:
971 default:
972 break;
973 }
974
975 return 0;
976}
977
Andi Kleen44b1e602016-05-30 12:49:42 -0300978static int topdown_filter_events(const char **attr, char **str, bool use_group)
979{
980 int off = 0;
981 int i;
982 int len = 0;
983 char *s;
984
985 for (i = 0; attr[i]; i++) {
986 if (pmu_have_event("cpu", attr[i])) {
987 len += strlen(attr[i]) + 1;
988 attr[i - off] = attr[i];
989 } else
990 off++;
991 }
992 attr[i - off] = NULL;
993
994 *str = malloc(len + 1 + 2);
995 if (!*str)
996 return -1;
997 s = *str;
998 if (i - off == 0) {
999 *s = 0;
1000 return 0;
1001 }
1002 if (use_group)
1003 *s++ = '{';
1004 for (i = 0; attr[i]; i++) {
1005 strcpy(s, attr[i]);
1006 s += strlen(s);
1007 *s++ = ',';
1008 }
1009 if (use_group) {
1010 s[-1] = '}';
1011 *s = 0;
1012 } else
1013 s[-1] = 0;
1014 return 0;
1015}
1016
1017__weak bool arch_topdown_check_group(bool *warn)
1018{
1019 *warn = false;
1020 return false;
1021}
1022
1023__weak void arch_topdown_group_warn(void)
1024{
1025}
1026
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001027/*
1028 * Add default attributes, if there were no attributes specified or
1029 * if -d/--detailed, -d -d or -d -d -d is used:
1030 */
1031static int add_default_attributes(void)
1032{
Andi Kleen44b1e602016-05-30 12:49:42 -03001033 int err;
Andi Kleen9dec4472016-02-26 16:27:56 -08001034 struct perf_event_attr default_attrs0[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001035
1036 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1037 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1038 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1039 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1040
1041 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Andi Kleen9dec4472016-02-26 16:27:56 -08001042};
1043 struct perf_event_attr frontend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001044 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001045};
1046 struct perf_event_attr backend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001047 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001048};
1049 struct perf_event_attr default_attrs1[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001050 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1051 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1052 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1053
1054};
1055
1056/*
1057 * Detailed stats (-d), covering the L1 and last level data caches:
1058 */
1059 struct perf_event_attr detailed_attrs[] = {
1060
1061 { .type = PERF_TYPE_HW_CACHE,
1062 .config =
1063 PERF_COUNT_HW_CACHE_L1D << 0 |
1064 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1065 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1066
1067 { .type = PERF_TYPE_HW_CACHE,
1068 .config =
1069 PERF_COUNT_HW_CACHE_L1D << 0 |
1070 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1071 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1072
1073 { .type = PERF_TYPE_HW_CACHE,
1074 .config =
1075 PERF_COUNT_HW_CACHE_LL << 0 |
1076 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1077 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1078
1079 { .type = PERF_TYPE_HW_CACHE,
1080 .config =
1081 PERF_COUNT_HW_CACHE_LL << 0 |
1082 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1083 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1084};
1085
1086/*
1087 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1088 */
1089 struct perf_event_attr very_detailed_attrs[] = {
1090
1091 { .type = PERF_TYPE_HW_CACHE,
1092 .config =
1093 PERF_COUNT_HW_CACHE_L1I << 0 |
1094 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1095 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1096
1097 { .type = PERF_TYPE_HW_CACHE,
1098 .config =
1099 PERF_COUNT_HW_CACHE_L1I << 0 |
1100 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1101 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1102
1103 { .type = PERF_TYPE_HW_CACHE,
1104 .config =
1105 PERF_COUNT_HW_CACHE_DTLB << 0 |
1106 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1107 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1108
1109 { .type = PERF_TYPE_HW_CACHE,
1110 .config =
1111 PERF_COUNT_HW_CACHE_DTLB << 0 |
1112 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1113 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1114
1115 { .type = PERF_TYPE_HW_CACHE,
1116 .config =
1117 PERF_COUNT_HW_CACHE_ITLB << 0 |
1118 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1119 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1120
1121 { .type = PERF_TYPE_HW_CACHE,
1122 .config =
1123 PERF_COUNT_HW_CACHE_ITLB << 0 |
1124 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1125 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1126
1127};
1128
1129/*
1130 * Very, very detailed stats (-d -d -d), adding prefetch events:
1131 */
1132 struct perf_event_attr very_very_detailed_attrs[] = {
1133
1134 { .type = PERF_TYPE_HW_CACHE,
1135 .config =
1136 PERF_COUNT_HW_CACHE_L1D << 0 |
1137 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1138 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1139
1140 { .type = PERF_TYPE_HW_CACHE,
1141 .config =
1142 PERF_COUNT_HW_CACHE_L1D << 0 |
1143 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1144 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1145};
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001146 struct parse_events_error errinfo;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001147
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001148 /* Set attrs if no event is selected and !null_run: */
Jiri Olsaaea0dca2018-08-30 08:32:41 +02001149 if (stat_config.null_run)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001150 return 0;
1151
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001152 if (transaction_run) {
Thomas Richter742d92f2018-06-26 09:17:01 +02001153 /* Handle -T as -M transaction. Once platform specific metrics
1154 * support has been added to the json files, all archictures
1155 * will use this approach. To determine transaction support
1156 * on an architecture test for such a metric name.
1157 */
1158 if (metricgroup__has_metric("transaction")) {
1159 struct option opt = { .value = &evsel_list };
1160
1161 return metricgroup__parse_groups(&opt, "transaction",
Jiri Olsad0192fd2018-08-30 08:32:51 +02001162 &stat_config.metric_events);
Thomas Richter742d92f2018-06-26 09:17:01 +02001163 }
1164
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001165 if (pmu_have_event("cpu", "cycles-ct") &&
1166 pmu_have_event("cpu", "el-start"))
Thomas Richterfca323402018-03-08 15:57:35 +01001167 err = parse_events(evsel_list, transaction_attrs,
1168 &errinfo);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001169 else
Thomas Richterfca323402018-03-08 15:57:35 +01001170 err = parse_events(evsel_list,
1171 transaction_limited_attrs,
1172 &errinfo);
Jiri Olsaa4547422015-06-03 16:25:53 +02001173 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001174 fprintf(stderr, "Cannot set up transaction events\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001175 parse_events_print_error(&errinfo, transaction_attrs);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001176 return -1;
1177 }
1178 return 0;
1179 }
1180
Kan Liangdaefd0b2017-05-26 12:05:38 -07001181 if (smi_cost) {
1182 int smi;
1183
1184 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
1185 fprintf(stderr, "freeze_on_smi is not supported.\n");
1186 return -1;
1187 }
1188
1189 if (!smi) {
1190 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
1191 fprintf(stderr, "Failed to set freeze_on_smi.\n");
1192 return -1;
1193 }
1194 smi_reset = true;
1195 }
1196
1197 if (pmu_have_event("msr", "aperf") &&
1198 pmu_have_event("msr", "smi")) {
1199 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001200 stat_config.metric_only = true;
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001201 err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001202 } else {
1203 fprintf(stderr, "To measure SMI cost, it needs "
1204 "msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001205 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001206 return -1;
1207 }
1208 if (err) {
1209 fprintf(stderr, "Cannot set up SMI cost events\n");
1210 return -1;
1211 }
1212 return 0;
1213 }
1214
Andi Kleen44b1e602016-05-30 12:49:42 -03001215 if (topdown_run) {
1216 char *str = NULL;
1217 bool warn = false;
1218
1219 if (stat_config.aggr_mode != AGGR_GLOBAL &&
1220 stat_config.aggr_mode != AGGR_CORE) {
1221 pr_err("top down event configuration requires --per-core mode\n");
1222 return -1;
1223 }
1224 stat_config.aggr_mode = AGGR_CORE;
1225 if (nr_cgroups || !target__has_cpu(&target)) {
1226 pr_err("top down event configuration requires system-wide mode (-a)\n");
1227 return -1;
1228 }
1229
1230 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001231 stat_config.metric_only = true;
Andi Kleen44b1e602016-05-30 12:49:42 -03001232 if (topdown_filter_events(topdown_attrs, &str,
1233 arch_topdown_check_group(&warn)) < 0) {
1234 pr_err("Out of memory\n");
1235 return -1;
1236 }
1237 if (topdown_attrs[0] && str) {
1238 if (warn)
1239 arch_topdown_group_warn();
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001240 err = parse_events(evsel_list, str, &errinfo);
Andi Kleen44b1e602016-05-30 12:49:42 -03001241 if (err) {
1242 fprintf(stderr,
1243 "Cannot set up top down events %s: %d\n",
1244 str, err);
1245 free(str);
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001246 parse_events_print_error(&errinfo, str);
Andi Kleen44b1e602016-05-30 12:49:42 -03001247 return -1;
1248 }
1249 } else {
1250 fprintf(stderr, "System does not support topdown\n");
1251 return -1;
1252 }
1253 free(str);
1254 }
1255
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001256 if (!evsel_list->nr_entries) {
Namhyung Kima1f3d562016-05-13 15:01:03 +09001257 if (target__has_cpu(&target))
1258 default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
1259
Andi Kleen9dec4472016-02-26 16:27:56 -08001260 if (perf_evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
1261 return -1;
1262 if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
1263 if (perf_evlist__add_default_attrs(evsel_list,
1264 frontend_attrs) < 0)
1265 return -1;
1266 }
1267 if (pmu_have_event("cpu", "stalled-cycles-backend")) {
1268 if (perf_evlist__add_default_attrs(evsel_list,
1269 backend_attrs) < 0)
1270 return -1;
1271 }
1272 if (perf_evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001273 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001274 }
1275
1276 /* Detailed events get appended to the event list: */
1277
1278 if (detailed_run < 1)
1279 return 0;
1280
1281 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001282 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001283 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001284
1285 if (detailed_run < 2)
1286 return 0;
1287
1288 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001289 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001290 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001291
1292 if (detailed_run < 3)
1293 return 0;
1294
1295 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001296 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001297}
1298
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001299static const char * const stat_record_usage[] = {
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001300 "perf stat record [<options>]",
1301 NULL,
1302};
1303
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001304static void init_features(struct perf_session *session)
1305{
1306 int feat;
1307
1308 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
1309 perf_header__set_feat(&session->header, feat);
1310
1311 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
1312 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
1313 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
1314 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
1315}
1316
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001317static int __cmd_record(int argc, const char **argv)
1318{
1319 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001320 struct perf_data *data = &perf_stat.data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001321
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001322 argc = parse_options(argc, argv, stat_options, stat_record_usage,
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001323 PARSE_OPT_STOP_AT_NON_OPTION);
1324
1325 if (output_name)
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001326 data->path = output_name;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001327
Jiri Olsad97ae042018-08-30 08:32:36 +02001328 if (stat_config.run_count != 1 || forever) {
Jiri Olsae9d6db8e82015-11-05 15:40:53 +01001329 pr_err("Cannot use -r option with perf stat record.\n");
1330 return -1;
1331 }
1332
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001333 session = perf_session__new(data, false, NULL);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001334 if (session == NULL) {
1335 pr_err("Perf session creation failed.\n");
1336 return -1;
1337 }
1338
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001339 init_features(session);
1340
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001341 session->evlist = evsel_list;
1342 perf_stat.session = session;
1343 perf_stat.record = true;
1344 return argc;
1345}
1346
Jiri Olsa89f16882018-09-13 14:54:03 +02001347static int process_stat_round_event(struct perf_session *session,
1348 union perf_event *event)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001349{
Andi Kleene3b03b62016-05-05 16:04:03 -07001350 struct stat_round_event *stat_round = &event->stat_round;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001351 struct perf_evsel *counter;
1352 struct timespec tsh, *ts = NULL;
1353 const char **argv = session->header.env.cmdline_argv;
1354 int argc = session->header.env.nr_cmdline;
1355
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001356 evlist__for_each_entry(evsel_list, counter)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001357 perf_stat_process_counter(&stat_config, counter);
1358
Andi Kleene3b03b62016-05-05 16:04:03 -07001359 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
1360 update_stats(&walltime_nsecs_stats, stat_round->time);
Jiri Olsaa56f9392015-11-05 15:40:59 +01001361
Andi Kleene3b03b62016-05-05 16:04:03 -07001362 if (stat_config.interval && stat_round->time) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -03001363 tsh.tv_sec = stat_round->time / NSEC_PER_SEC;
1364 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001365 ts = &tsh;
1366 }
1367
1368 print_counters(ts, argc, argv);
1369 return 0;
1370}
1371
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001372static
Jiri Olsa89f16882018-09-13 14:54:03 +02001373int process_stat_config_event(struct perf_session *session,
1374 union perf_event *event)
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001375{
Jiri Olsa89f16882018-09-13 14:54:03 +02001376 struct perf_tool *tool = session->tool;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001377 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1378
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001379 perf_event__read_stat_config(&stat_config, &event->stat_config);
Jiri Olsa68d702f2015-11-05 15:40:58 +01001380
Jiri Olsa89af4e02015-11-05 15:41:02 +01001381 if (cpu_map__empty(st->cpus)) {
1382 if (st->aggr_mode != AGGR_UNSET)
1383 pr_warning("warning: processing task data, aggregation mode not set\n");
1384 return 0;
1385 }
1386
1387 if (st->aggr_mode != AGGR_UNSET)
1388 stat_config.aggr_mode = st->aggr_mode;
1389
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001390 if (perf_stat.data.is_pipe)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001391 perf_stat_init_aggr_mode();
1392 else
1393 perf_stat_init_aggr_mode_file(st);
1394
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001395 return 0;
1396}
1397
Jiri Olsa1975d362015-11-05 15:40:56 +01001398static int set_maps(struct perf_stat *st)
1399{
1400 if (!st->cpus || !st->threads)
1401 return 0;
1402
1403 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
1404 return -EINVAL;
1405
1406 perf_evlist__set_maps(evsel_list, st->cpus, st->threads);
1407
1408 if (perf_evlist__alloc_stats(evsel_list, true))
1409 return -ENOMEM;
1410
1411 st->maps_allocated = true;
1412 return 0;
1413}
1414
1415static
Jiri Olsa89f16882018-09-13 14:54:03 +02001416int process_thread_map_event(struct perf_session *session,
1417 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01001418{
Jiri Olsa89f16882018-09-13 14:54:03 +02001419 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01001420 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1421
1422 if (st->threads) {
1423 pr_warning("Extra thread map event, ignoring.\n");
1424 return 0;
1425 }
1426
1427 st->threads = thread_map__new_event(&event->thread_map);
1428 if (!st->threads)
1429 return -ENOMEM;
1430
1431 return set_maps(st);
1432}
1433
1434static
Jiri Olsa89f16882018-09-13 14:54:03 +02001435int process_cpu_map_event(struct perf_session *session,
1436 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01001437{
Jiri Olsa89f16882018-09-13 14:54:03 +02001438 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01001439 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1440 struct cpu_map *cpus;
1441
1442 if (st->cpus) {
1443 pr_warning("Extra cpu map event, ignoring.\n");
1444 return 0;
1445 }
1446
1447 cpus = cpu_map__new_data(&event->cpu_map.data);
1448 if (!cpus)
1449 return -ENOMEM;
1450
1451 st->cpus = cpus;
1452 return set_maps(st);
1453}
1454
Jin Yao56739442017-12-05 22:03:07 +08001455static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
1456{
1457 int i;
1458
1459 config->stats = calloc(nthreads, sizeof(struct runtime_stat));
1460 if (!config->stats)
1461 return -1;
1462
1463 config->stats_num = nthreads;
1464
1465 for (i = 0; i < nthreads; i++)
1466 runtime_stat__init(&config->stats[i]);
1467
1468 return 0;
1469}
1470
1471static void runtime_stat_delete(struct perf_stat_config *config)
1472{
1473 int i;
1474
1475 if (!config->stats)
1476 return;
1477
1478 for (i = 0; i < config->stats_num; i++)
1479 runtime_stat__exit(&config->stats[i]);
1480
1481 free(config->stats);
1482}
1483
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001484static const char * const stat_report_usage[] = {
Jiri Olsaba6039b62015-11-05 15:40:55 +01001485 "perf stat report [<options>]",
1486 NULL,
1487};
1488
1489static struct perf_stat perf_stat = {
1490 .tool = {
1491 .attr = perf_event__process_attr,
Jiri Olsafa6ea782015-11-05 15:41:00 +01001492 .event_update = perf_event__process_event_update,
Jiri Olsa1975d362015-11-05 15:40:56 +01001493 .thread_map = process_thread_map_event,
1494 .cpu_map = process_cpu_map_event,
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001495 .stat_config = process_stat_config_event,
Jiri Olsaa56f9392015-11-05 15:40:59 +01001496 .stat = perf_event__process_stat_event,
1497 .stat_round = process_stat_round_event,
Jiri Olsaba6039b62015-11-05 15:40:55 +01001498 },
Jiri Olsa89af4e02015-11-05 15:41:02 +01001499 .aggr_mode = AGGR_UNSET,
Jiri Olsaba6039b62015-11-05 15:40:55 +01001500};
1501
1502static int __cmd_report(int argc, const char **argv)
1503{
1504 struct perf_session *session;
1505 const struct option options[] = {
1506 OPT_STRING('i', "input", &input_name, "file", "input file name"),
Jiri Olsa89af4e02015-11-05 15:41:02 +01001507 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
1508 "aggregate counts per processor socket", AGGR_SOCKET),
1509 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
1510 "aggregate counts per physical processor core", AGGR_CORE),
1511 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
1512 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsaba6039b62015-11-05 15:40:55 +01001513 OPT_END()
1514 };
1515 struct stat st;
1516 int ret;
1517
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001518 argc = parse_options(argc, argv, options, stat_report_usage, 0);
Jiri Olsaba6039b62015-11-05 15:40:55 +01001519
1520 if (!input_name || !strlen(input_name)) {
1521 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
1522 input_name = "-";
1523 else
1524 input_name = "perf.data";
1525 }
1526
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001527 perf_stat.data.path = input_name;
1528 perf_stat.data.mode = PERF_DATA_MODE_READ;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001529
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001530 session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
Jiri Olsaba6039b62015-11-05 15:40:55 +01001531 if (session == NULL)
1532 return -1;
1533
1534 perf_stat.session = session;
1535 stat_config.output = stderr;
1536 evsel_list = session->evlist;
1537
1538 ret = perf_session__process_events(session);
1539 if (ret)
1540 return ret;
1541
1542 perf_session__delete(session);
1543 return 0;
1544}
1545
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001546static void setup_system_wide(int forks)
1547{
1548 /*
1549 * Make system wide (-a) the default target if
1550 * no target was specified and one of following
1551 * conditions is met:
1552 *
1553 * - there's no workload specified
1554 * - there is workload specified but all requested
1555 * events are system wide events
1556 */
1557 if (!target__none(&target))
1558 return;
1559
1560 if (!forks)
1561 target.system_wide = true;
1562 else {
1563 struct perf_evsel *counter;
1564
1565 evlist__for_each_entry(evsel_list, counter) {
1566 if (!counter->system_wide)
1567 return;
1568 }
1569
1570 if (evsel_list->nr_entries)
1571 target.system_wide = true;
1572 }
1573}
1574
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001575int cmd_stat(int argc, const char **argv)
Ingo Molnar52425192009-05-26 09:17:18 +02001576{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001577 const char * const stat_usage[] = {
1578 "perf stat [<options>] [<command>]",
1579 NULL
1580 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001581 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001582 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001583 FILE *output = stderr;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001584 unsigned int interval, timeout;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001585 const char * const stat_subcommands[] = { "record", "report" };
Ingo Molnar42202dd2009-06-13 14:57:28 +02001586
Stephane Eranian5af52b52010-05-18 15:00:01 +02001587 setlocale(LC_ALL, "");
1588
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001589 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001590 if (evsel_list == NULL)
1591 return -ENOMEM;
1592
Wang Nan1669e502016-02-19 11:43:58 +00001593 parse_events__shrink_config_terms();
Michael Petlan51433ea2018-12-10 11:00:04 -05001594
1595 /* String-parsing callback-based options would segfault when negated */
1596 set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG);
1597 set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG);
1598 set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG);
1599
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001600 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
1601 (const char **) stat_usage,
1602 PARSE_OPT_STOP_AT_NON_OPTION);
Andi Kleen37932c12017-03-20 13:17:08 -07001603 perf_stat__collect_metric_expr(evsel_list);
Andi Kleenfb4605b2016-03-01 10:57:52 -08001604 perf_stat__init_shadow_stats();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001605
Jiri Olsafa7070a2018-08-30 08:32:29 +02001606 if (stat_config.csv_sep) {
1607 stat_config.csv_output = true;
1608 if (!strcmp(stat_config.csv_sep, "\\t"))
1609 stat_config.csv_sep = "\t";
Jiri Olsa6edb78a2015-11-05 15:41:01 +01001610 } else
Jiri Olsafa7070a2018-08-30 08:32:29 +02001611 stat_config.csv_sep = DEFAULT_SEPARATOR;
Jiri Olsa6edb78a2015-11-05 15:41:01 +01001612
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001613 if (argc && !strncmp(argv[0], "rec", 3)) {
1614 argc = __cmd_record(argc, argv);
1615 if (argc < 0)
1616 return -1;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001617 } else if (argc && !strncmp(argv[0], "rep", 3))
1618 return __cmd_report(argc, argv);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001619
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001620 interval = stat_config.interval;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001621 timeout = stat_config.timeout;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001622
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001623 /*
1624 * For record command the -o is already taken care of.
1625 */
1626 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
Stephane Eranian4aa90152011-08-15 22:22:33 +02001627 output = NULL;
1628
Jim Cromie56f3bae2011-09-07 17:14:00 -06001629 if (output_name && output_fd) {
1630 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001631 parse_options_usage(stat_usage, stat_options, "o", 1);
1632 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001633 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001634 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001635
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001636 if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) {
Andi Kleen54b50912016-03-03 15:57:36 -08001637 fprintf(stderr, "--metric-only is not supported with --per-thread\n");
1638 goto out;
1639 }
1640
Jiri Olsad97ae042018-08-30 08:32:36 +02001641 if (stat_config.metric_only && stat_config.run_count > 1) {
Andi Kleen54b50912016-03-03 15:57:36 -08001642 fprintf(stderr, "--metric-only is not supported with -r\n");
1643 goto out;
1644 }
1645
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001646 if (stat_config.walltime_run_table && stat_config.run_count <= 1) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02001647 fprintf(stderr, "--table is only supported with -r\n");
1648 parse_options_usage(stat_usage, stat_options, "r", 1);
1649 parse_options_usage(NULL, stat_options, "table", 0);
1650 goto out;
1651 }
1652
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001653 if (output_fd < 0) {
1654 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001655 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001656 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001657 }
1658
Stephane Eranian4aa90152011-08-15 22:22:33 +02001659 if (!output) {
1660 struct timespec tm;
1661 mode = append_file ? "a" : "w";
1662
1663 output = fopen(output_name, mode);
1664 if (!output) {
1665 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001666 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001667 }
1668 clock_gettime(CLOCK_REALTIME, &tm);
1669 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001670 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001671 mode = append_file ? "a" : "w";
1672 output = fdopen(output_fd, mode);
1673 if (!output) {
1674 perror("Failed opening logfd");
1675 return -errno;
1676 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001677 }
1678
Jiri Olsa58215222015-07-21 14:31:24 +02001679 stat_config.output = output;
1680
Stephane Eraniand7470b62010-12-01 18:49:05 +02001681 /*
1682 * let the spreadsheet do the pretty-printing
1683 */
Jiri Olsafa7070a2018-08-30 08:32:29 +02001684 if (stat_config.csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001685 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001686 if (big_num_opt == 1) {
1687 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001688 parse_options_usage(stat_usage, stat_options, "B", 1);
1689 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001690 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001691 } else /* Nope, so disable big number formatting */
Jiri Olsa34ff0862018-08-30 08:32:47 +02001692 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001693 } else if (big_num_opt == 0) /* User passed --no-big-num */
Jiri Olsa34ff0862018-08-30 08:32:47 +02001694 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001695
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001696 setup_system_wide(argc);
David Ahernac3063b2013-09-30 07:37:37 -06001697
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001698 /*
1699 * Display user/system times only for single
1700 * run and when there's specified tracee.
1701 */
Jiri Olsad97ae042018-08-30 08:32:36 +02001702 if ((stat_config.run_count == 1) && target__none(&target))
Jiri Olsa8897a892018-08-30 08:32:44 +02001703 stat_config.ru_display = true;
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001704
Jiri Olsad97ae042018-08-30 08:32:36 +02001705 if (stat_config.run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001706 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001707 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001708 goto out;
Jiri Olsad97ae042018-08-30 08:32:36 +02001709 } else if (stat_config.run_count == 0) {
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001710 forever = true;
Jiri Olsad97ae042018-08-30 08:32:36 +02001711 stat_config.run_count = 1;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001712 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001713
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001714 if (stat_config.walltime_run_table) {
1715 stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0]));
1716 if (!stat_config.walltime_run) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02001717 pr_err("failed to setup -r option");
1718 goto out;
1719 }
1720 }
1721
Jin Yao1d9f8d12017-12-05 22:03:10 +08001722 if ((stat_config.aggr_mode == AGGR_THREAD) &&
1723 !target__has_task(&target)) {
1724 if (!target.system_wide || target.cpu_list) {
1725 fprintf(stderr, "The --per-thread option is only "
1726 "available when monitoring via -p -t -a "
1727 "options or only --per-thread.\n");
1728 parse_options_usage(NULL, stat_options, "p", 1);
1729 parse_options_usage(NULL, stat_options, "t", 1);
1730 goto out;
1731 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001732 }
1733
1734 /*
1735 * no_aggr, cgroup are for system-wide only
1736 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1737 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001738 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1739 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001740 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001741 fprintf(stderr, "both cgroup and no-aggregation "
1742 "modes only available in system-wide mode\n");
1743
Jiri Olsae0547312015-11-05 15:40:45 +01001744 parse_options_usage(stat_usage, stat_options, "G", 1);
1745 parse_options_usage(NULL, stat_options, "A", 1);
1746 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001747 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001748 }
1749
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001750 if (add_default_attributes())
1751 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001752
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001753 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001754
Jin Yao1d9f8d12017-12-05 22:03:10 +08001755 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
1756 target.per_thread = true;
1757
Namhyung Kim77a6f012012-05-07 14:09:04 +09001758 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001759 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001760 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001761 parse_options_usage(stat_usage, stat_options, "p", 1);
1762 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001763 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001764 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01001765 parse_options_usage(stat_usage, stat_options, "C", 1);
1766 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001767 }
1768 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001769 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001770
1771 /*
1772 * Initialize thread_map with comm names,
1773 * so we could print it out on output.
1774 */
Jin Yao56739442017-12-05 22:03:07 +08001775 if (stat_config.aggr_mode == AGGR_THREAD) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001776 thread_map__read_comms(evsel_list->threads);
Jin Yao56739442017-12-05 22:03:07 +08001777 if (target.system_wide) {
1778 if (runtime_stat_new(&stat_config,
1779 thread_map__nr(evsel_list->threads))) {
1780 goto out;
1781 }
1782 }
1783 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001784
yuzhoujiandb06a262018-01-29 10:25:22 +01001785 if (stat_config.times && interval)
1786 interval_count = true;
1787 else if (stat_config.times && !interval) {
1788 pr_err("interval-count option should be used together with "
1789 "interval-print.\n");
1790 parse_options_usage(stat_usage, stat_options, "interval-count", 0);
1791 parse_options_usage(stat_usage, stat_options, "I", 1);
1792 goto out;
1793 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001794
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001795 if (timeout && timeout < 100) {
1796 if (timeout < 10) {
1797 pr_err("timeout must be >= 10ms.\n");
1798 parse_options_usage(stat_usage, stat_options, "timeout", 0);
1799 goto out;
1800 } else
1801 pr_warning("timeout < 100ms. "
1802 "The overhead percentage could be high in some cases. "
1803 "Please proceed with caution.\n");
1804 }
1805 if (timeout && interval) {
1806 pr_err("timeout option is not supported with interval-print.\n");
1807 parse_options_usage(stat_usage, stat_options, "timeout", 0);
1808 parse_options_usage(stat_usage, stat_options, "I", 1);
1809 goto out;
1810 }
1811
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001812 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001813 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001814
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001815 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001816 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001817
Ingo Molnar58d7e992009-05-15 11:03:23 +02001818 /*
Jiri Olsa7d9ad162018-08-30 08:32:14 +02001819 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
1820 * while avoiding that older tools show confusing messages.
1821 *
1822 * However for pipe sessions we need to keep it zero,
1823 * because script's perf_evsel__check_attr is triggered
1824 * by attr->sample_type != 0, and we can't run it on
1825 * stat sessions.
1826 */
1827 stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe);
1828
1829 /*
Ingo Molnar58d7e992009-05-15 11:03:23 +02001830 * We dont want to block the signals - that would cause
1831 * child tasks to inherit that and Ctrl-C would not work.
1832 * What we want is for Ctrl-C to work in the exec()-ed
1833 * task, but being ignored by perf stat itself:
1834 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001835 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001836 if (!forever)
1837 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001838 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001839 signal(SIGALRM, skip_signal);
1840 signal(SIGABRT, skip_signal);
1841
Ingo Molnar42202dd2009-06-13 14:57:28 +02001842 status = 0;
Jiri Olsad97ae042018-08-30 08:32:36 +02001843 for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) {
1844 if (stat_config.run_count != 1 && verbose > 0)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001845 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1846 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001847
Jiri Olsae55c14a2018-04-23 11:08:21 +02001848 status = run_perf_stat(argc, argv, run_idx);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001849 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001850 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001851 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001852 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001853 }
1854
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001855 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001856 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001857
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001858 if (STAT_RECORD) {
1859 /*
1860 * We synthesize the kernel mmap record just so that older tools
1861 * don't emit warnings about not being able to resolve symbols
1862 * due to /proc/sys/kernel/kptr_restrict settings and instear provide
1863 * a saner message about no samples being in the perf.data file.
1864 *
1865 * This also serves to suppress a warning about f_header.data.size == 0
Jiri Olsa8b99b1a2015-11-05 15:40:48 +01001866 * in header.c at the moment 'perf stat record' gets introduced, which
1867 * is not really needed once we start adding the stat specific PERF_RECORD_
1868 * records, but the need to suppress the kptr_restrict messages in older
1869 * tools remain -acme
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001870 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001871 int fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001872 int err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
1873 process_synthesized_event,
1874 &perf_stat.session->machines.host);
1875 if (err) {
1876 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
1877 "older tools may produce warnings about this file\n.");
1878 }
1879
Jiri Olsa7aad0c32015-11-05 15:40:52 +01001880 if (!interval) {
1881 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
1882 pr_err("failed to write stat round event\n");
1883 }
1884
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001885 if (!perf_stat.data.is_pipe) {
Jiri Olsa664c98d2015-11-05 15:40:50 +01001886 perf_stat.session->header.data_size += perf_stat.bytes_written;
1887 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
1888 }
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001889
1890 perf_session__delete(perf_stat.session);
1891 }
1892
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09001893 perf_stat__exit_aggr_mode();
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001894 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001895out:
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001896 free(stat_config.walltime_run);
Jiri Olsae55c14a2018-04-23 11:08:21 +02001897
Kan Liangdaefd0b2017-05-26 12:05:38 -07001898 if (smi_cost && smi_reset)
1899 sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
1900
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001901 perf_evlist__delete(evsel_list);
Jin Yao56739442017-12-05 22:03:07 +08001902
1903 runtime_stat_delete(&stat_config);
1904
Ingo Molnar42202dd2009-06-13 14:57:28 +02001905 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001906}