blob: 7a3361308e614a3dc43b83c1e728c972b4bf995e [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"
Mathieu Poirier5d8bb1e2016-09-16 09:50:03 -060055#include "util/drv_configs.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020056#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080057#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080058#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110059#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030060#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020061#include "util/thread_map.h"
Jiri Olsad8095602015-08-07 12:51:03 +020062#include "util/counts.h"
Andi Kleen44b1e602016-05-30 12:49:42 -030063#include "util/group.h"
Jiri Olsa4979d0c2015-11-05 15:40:46 +010064#include "util/session.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010065#include "util/tool.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030066#include "util/string2.h"
Andi Kleenb18f3e32017-08-31 12:40:31 -070067#include "util/metricgroup.h"
Jiri Olsa9660e082018-06-07 00:15:06 +020068#include "util/top.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010069#include "asm/bug.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020070
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030071#include <linux/time64.h>
Andi Kleen44b1e602016-05-30 12:49:42 -030072#include <api/fs/fs.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030073#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030074#include <signal.h>
Peter Zijlstra1f16c572012-10-23 13:40:14 +020075#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020076#include <sys/prctl.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030077#include <inttypes.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020078#include <locale.h>
Andi Kleene3b03b62016-05-05 16:04:03 -070079#include <math.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030080#include <sys/types.h>
81#include <sys/stat.h>
Arnaldo Carvalho de Melo42087352017-04-19 19:06:30 -030082#include <sys/wait.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030083#include <unistd.h>
Jiri Olsa0ce2da12018-06-05 14:13:13 +020084#include <sys/time.h>
85#include <sys/resource.h>
86#include <sys/wait.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020087
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030088#include "sane_ctype.h"
89
Stephane Eraniand7470b62010-12-01 18:49:05 +020090#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060091#define CNTR_NOT_SUPPORTED "<not supported>"
92#define CNTR_NOT_COUNTED "<not counted>"
Kan Liangdaefd0b2017-05-26 12:05:38 -070093#define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi"
Stephane Eraniand7470b62010-12-01 18:49:05 +020094
Jiri Olsad4f63a42015-06-26 11:29:26 +020095static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010096
Andi Kleen4cabc3d2013-08-21 16:47:26 -070097/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020098static const char *transaction_attrs = {
99 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700100 "{"
101 "instructions,"
102 "cycles,"
103 "cpu/cycles-t/,"
104 "cpu/tx-start/,"
105 "cpu/el-start/,"
106 "cpu/cycles-ct/"
107 "}"
108};
109
110/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +0200111static const char * transaction_limited_attrs = {
112 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700113 "{"
114 "instructions,"
115 "cycles,"
116 "cpu/cycles-t/,"
117 "cpu/tx-start/"
118 "}"
119};
120
Andi Kleen44b1e602016-05-30 12:49:42 -0300121static const char * topdown_attrs[] = {
122 "topdown-total-slots",
123 "topdown-slots-retired",
124 "topdown-recovery-bubbles",
125 "topdown-fetch-bubbles",
126 "topdown-slots-issued",
127 NULL,
128};
129
Kan Liangdaefd0b2017-05-26 12:05:38 -0700130static const char *smi_cost_attrs = {
131 "{"
132 "msr/aperf/,"
133 "msr/smi/,"
134 "cycles"
135 "}"
136};
137
Robert Richter666e6d42012-04-05 18:26:27 +0200138static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200139
Andi Kleenb18f3e32017-08-31 12:40:31 -0700140static struct rblist metric_events;
141
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300142static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900143 .uid = UINT_MAX,
144};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530145
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100146typedef int (*aggr_get_id_t)(struct cpu_map *m, int cpu);
147
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200148#define METRIC_ONLY_LEN 20
149
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530150static int run_count = 1;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200151static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000152static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200153static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700154static bool transaction_run;
Andi Kleen44b1e602016-05-30 12:49:42 -0300155static bool topdown_run = false;
Kan Liangdaefd0b2017-05-26 12:05:38 -0700156static bool smi_cost = false;
157static bool smi_reset = false;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200158static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200159static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200160static const char *csv_sep = NULL;
161static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800162static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200163static const char *pre_cmd = NULL;
164static const char *post_cmd = NULL;
165static bool sync_run = false;
Stephane Eranian410136f2013-11-12 17:58:49 +0100166static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500167static bool forever = false;
Andi Kleen54b50912016-03-03 15:57:36 -0800168static bool metric_only = false;
Andi Kleen44b1e602016-05-30 12:49:42 -0300169static bool force_metric_only = false;
Andi Kleen430daf22017-03-20 13:17:00 -0700170static bool no_merge = false;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200171static bool walltime_run_table = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100172static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100173static struct cpu_map *aggr_map;
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100174static aggr_get_id_t aggr_get_id;
Jiri Olsae0547312015-11-05 15:40:45 +0100175static bool append_file;
yuzhoujiandb06a262018-01-29 10:25:22 +0100176static bool interval_count;
Jiri Olsa9660e082018-06-07 00:15:06 +0200177static bool interval_clear;
Jiri Olsae0547312015-11-05 15:40:45 +0100178static const char *output_name;
179static int output_fd;
Borislav Petkov02d492e2017-02-07 01:40:05 +0100180static int print_free_counters_hint;
Kan Liang30060ea2018-04-24 11:20:11 -0700181static int print_mixed_hw_group_error;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200182static u64 *walltime_run;
Jiri Olsa0ce2da12018-06-05 14:13:13 +0200183static bool ru_display = false;
184static struct rusage ru_data;
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200185static unsigned int metric_only_len = METRIC_ONLY_LEN;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200186
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100187struct perf_stat {
188 bool record;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100189 struct perf_data data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100190 struct perf_session *session;
191 u64 bytes_written;
Jiri Olsaba6039b62015-11-05 15:40:55 +0100192 struct perf_tool tool;
Jiri Olsa1975d362015-11-05 15:40:56 +0100193 bool maps_allocated;
194 struct cpu_map *cpus;
195 struct thread_map *threads;
Jiri Olsa89af4e02015-11-05 15:41:02 +0100196 enum aggr_mode aggr_mode;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100197};
198
199static struct perf_stat perf_stat;
200#define STAT_RECORD perf_stat.record
201
Liming Wang60666c62009-12-31 16:05:50 +0800202static volatile int done = 0;
203
Jiri Olsa421a50f2015-07-21 14:31:22 +0200204static struct perf_stat_config stat_config = {
205 .aggr_mode = AGGR_GLOBAL,
Jiri Olsa711a5722015-07-21 14:31:23 +0200206 .scale = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200207};
208
Andi Kleene864c5c2017-08-31 12:40:35 -0700209static bool is_duration_time(struct perf_evsel *evsel)
210{
211 return !strcmp(evsel->name, "duration_time");
212}
213
Stephane Eranian13370a92013-01-29 12:47:44 +0100214static inline void diff_timespec(struct timespec *r, struct timespec *a,
215 struct timespec *b)
216{
217 r->tv_sec = a->tv_sec - b->tv_sec;
218 if (a->tv_nsec < b->tv_nsec) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300219 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
Stephane Eranian13370a92013-01-29 12:47:44 +0100220 r->tv_sec--;
221 } else {
222 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
223 }
224}
225
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200226static void perf_stat__reset_stats(void)
227{
Jin Yao56739442017-12-05 22:03:07 +0800228 int i;
229
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200230 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200231 perf_stat__reset_shadow_stats();
Jin Yao56739442017-12-05 22:03:07 +0800232
233 for (i = 0; i < stat_config.stats_num; i++)
234 perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200235}
236
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100237static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100238 union perf_event *event,
239 struct perf_sample *sample __maybe_unused,
240 struct machine *machine __maybe_unused)
241{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100242 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100243 pr_err("failed to write perf data, error: %m\n");
244 return -1;
245 }
246
247 perf_stat.bytes_written += event->header.size;
248 return 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100249}
250
Jiri Olsa1975d362015-11-05 15:40:56 +0100251static int write_stat_round_event(u64 tm, u64 type)
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100252{
Jiri Olsa1975d362015-11-05 15:40:56 +0100253 return perf_event__synthesize_stat_round(NULL, tm, type,
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100254 process_synthesized_event,
255 NULL);
256}
257
258#define WRITE_STAT_ROUND_EVENT(time, interval) \
259 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
260
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100261#define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
262
263static int
264perf_evsel__write_stat_event(struct perf_evsel *counter, u32 cpu, u32 thread,
265 struct perf_counts_values *count)
266{
267 struct perf_sample_id *sid = SID(counter, cpu, thread);
268
269 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
270 process_synthesized_event, NULL);
271}
272
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200273/*
274 * Read out the results of a single counter:
275 * do not aggregate counts across CPUs in system-wide mode
276 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200277static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200278{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100279 int nthreads = thread_map__nr(evsel_list->threads);
Mark Rutland00e727b2016-07-15 11:08:10 +0100280 int ncpus, cpu, thread;
281
Jin Yao1d9f8d12017-12-05 22:03:10 +0800282 if (target__has_cpu(&target) && !target__has_per_thread(&target))
Mark Rutland00e727b2016-07-15 11:08:10 +0100283 ncpus = perf_evsel__nr_cpus(counter);
284 else
285 ncpus = 1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200286
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000287 if (!counter->supported)
288 return -ENOENT;
289
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100290 if (counter->system_wide)
291 nthreads = 1;
292
293 for (thread = 0; thread < nthreads; thread++) {
294 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200295 struct perf_counts_values *count;
296
297 count = perf_counts(counter->counts, cpu, thread);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200298
299 /*
300 * The leader's group read loads data into its group members
301 * (via perf_evsel__read_counter) and sets threir count->loaded.
302 */
303 if (!count->loaded &&
304 perf_evsel__read_counter(counter, cpu, thread)) {
Stephane Eraniandb49a712017-04-12 11:23:01 -0700305 counter->counts->scaled = -1;
306 perf_counts(counter->counts, cpu, thread)->ena = 0;
307 perf_counts(counter->counts, cpu, thread)->run = 0;
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100308 return -1;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700309 }
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100310
Jiri Olsa82bf3112017-07-26 14:02:06 +0200311 count->loaded = false;
312
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100313 if (STAT_RECORD) {
314 if (perf_evsel__write_stat_event(counter, cpu, thread, count)) {
315 pr_err("failed to write stat event\n");
316 return -1;
317 }
318 }
Andi Kleen0b1abbf2016-04-27 13:00:51 -0700319
320 if (verbose > 1) {
321 fprintf(stat_config.output,
322 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
323 perf_evsel__name(counter),
324 cpu,
325 count->val, count->ena, count->run);
326 }
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100327 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200328 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200329
330 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200331}
332
Mark Rutland3df33ef2016-08-09 14:04:29 +0100333static void read_counters(void)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200334{
335 struct perf_evsel *counter;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700336 int ret;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200337
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300338 evlist__for_each_entry(evsel_list, counter) {
Stephane Eraniandb49a712017-04-12 11:23:01 -0700339 ret = read_counter(counter);
340 if (ret)
Andi Kleen245bad82015-09-01 15:52:46 -0700341 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200342
Stephane Eraniandb49a712017-04-12 11:23:01 -0700343 if (ret == 0 && perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200344 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200345 }
346}
347
Jiri Olsaba411a92015-06-26 11:29:24 +0200348static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100349{
Stephane Eranian13370a92013-01-29 12:47:44 +0100350 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100351
Mark Rutland3df33ef2016-08-09 14:04:29 +0100352 read_counters();
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100353
Stephane Eranian13370a92013-01-29 12:47:44 +0100354 clock_gettime(CLOCK_MONOTONIC, &ts);
355 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100356
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100357 if (STAT_RECORD) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300358 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100359 pr_err("failed to write stat round event\n");
360 }
361
Andi Kleenb90f1332017-08-31 12:40:36 -0700362 init_stats(&walltime_nsecs_stats);
363 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000);
Jiri Olsad4f63a42015-06-26 11:29:26 +0200364 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100365}
366
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100367static void enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700368{
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200369 if (stat_config.initial_delay)
370 usleep(stat_config.initial_delay * USEC_PER_MSEC);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100371
372 /*
373 * We need to enable counters only if:
374 * - we don't have tracee (attaching to task or cpu)
375 * - we have initial delay configured
376 */
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200377 if (!target__none(&target) || stat_config.initial_delay)
Jiri Olsaab46db02015-12-03 10:06:43 +0100378 perf_evlist__enable(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700379}
380
Mark Rutland3df33ef2016-08-09 14:04:29 +0100381static void disable_counters(void)
382{
383 /*
384 * If we don't have tracee (attaching to task or cpu), counters may
385 * still be running. To get accurate group ratios, we must stop groups
386 * from counting before reading their constituent counters.
387 */
388 if (!target__none(&target))
389 perf_evlist__disable(evsel_list);
390}
391
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300392static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300393
394/*
395 * perf_evlist__prepare_workload will send a SIGUSR1
396 * if the fork fails, since we asked by setting its
397 * want_signal to true.
398 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300399static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
400 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300401{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300402 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300403}
404
Jiri Olsa82bf3112017-07-26 14:02:06 +0200405static bool perf_evsel__should_store_id(struct perf_evsel *counter)
406{
407 return STAT_RECORD || counter->attr.read_format & PERF_FORMAT_ID;
408}
409
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700410static struct perf_evsel *perf_evsel__reset_weak_group(struct perf_evsel *evsel)
411{
412 struct perf_evsel *c2, *leader;
413 bool is_open = true;
414
415 leader = evsel->leader;
416 pr_debug("Weak group for %s/%d failed\n",
417 leader->name, leader->nr_members);
418
419 /*
420 * for_each_group_member doesn't work here because it doesn't
421 * include the first entry.
422 */
423 evlist__for_each_entry(evsel_list, c2) {
424 if (c2 == evsel)
425 is_open = false;
426 if (c2->leader == leader) {
427 if (is_open)
428 perf_evsel__close(c2);
429 c2->leader = c2;
430 c2->nr_members = 0;
431 }
432 }
433 return leader;
434}
435
Jiri Olsae55c14a2018-04-23 11:08:21 +0200436static int __run_perf_stat(int argc, const char **argv, int run_idx)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200437{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200438 int interval = stat_config.interval;
yuzhoujiandb06a262018-01-29 10:25:22 +0100439 int times = stat_config.times;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100440 int timeout = stat_config.timeout;
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -0300441 char msg[BUFSIZ];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200442 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100443 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100444 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100445 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200446 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300447 const bool forks = (argc > 0);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100448 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
Mathieu Poirier5d8bb1e2016-09-16 09:50:03 -0600449 struct perf_evsel_config_term *err_term;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200450
Stephane Eranian13370a92013-01-29 12:47:44 +0100451 if (interval) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300452 ts.tv_sec = interval / USEC_PER_MSEC;
453 ts.tv_nsec = (interval % USEC_PER_MSEC) * NSEC_PER_MSEC;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100454 } else if (timeout) {
455 ts.tv_sec = timeout / USEC_PER_MSEC;
456 ts.tv_nsec = (timeout % USEC_PER_MSEC) * NSEC_PER_MSEC;
Stephane Eranian13370a92013-01-29 12:47:44 +0100457 } else {
458 ts.tv_sec = 1;
459 ts.tv_nsec = 0;
460 }
461
Liming Wang60666c62009-12-31 16:05:50 +0800462 if (forks) {
Jiri Olsa664c98d2015-11-05 15:40:50 +0100463 if (perf_evlist__prepare_workload(evsel_list, &target, argv, is_pipe,
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300464 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900465 perror("failed to prepare workload");
466 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800467 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900468 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000469 }
470
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200471 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300472 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200473
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300474 evlist__for_each_entry(evsel_list, counter) {
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300475try_again:
Jiri Olsad09cefd2018-08-30 08:32:17 +0200476 if (create_perf_stat_counter(counter, &stat_config, &target) < 0) {
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700477
478 /* Weak group failed. Reset the group. */
Andi Kleen35c19802017-09-05 14:13:24 -0700479 if ((errno == EINVAL || errno == EBADF) &&
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700480 counter->leader != counter &&
481 counter->weak_group) {
482 counter = perf_evsel__reset_weak_group(counter);
483 goto try_again;
484 }
485
David Ahern979987a2012-05-08 09:29:16 -0600486 /*
487 * PPC returns ENXIO for HW counters until 2.6.37
488 * (behavior changed with commit b0a873e).
489 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100490 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600491 errno == ENOENT || errno == EOPNOTSUPP ||
492 errno == ENXIO) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900493 if (verbose > 0)
David Ahernc63ca0c2011-04-29 16:04:15 -0600494 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300495 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600496 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400497
498 if ((counter->leader != counter) ||
499 !(counter->leader->nr_members > 1))
500 continue;
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300501 } else if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900502 if (verbose > 0)
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300503 ui__warning("%s\n", msg);
504 goto try_again;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800505 } else if (target__has_per_thread(&target) &&
506 evsel_list->threads &&
507 evsel_list->threads->err_thread != -1) {
508 /*
509 * For global --per-thread case, skip current
510 * error thread.
511 */
512 if (!thread_map__remove(evsel_list->threads,
513 evsel_list->threads->err_thread)) {
514 evsel_list->threads->err_thread = -1;
515 goto try_again;
516 }
517 }
Ingo Molnarede70292011-04-28 08:48:42 +0200518
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300519 perf_evsel__open_strerror(counter, &target,
520 errno, msg, sizeof(msg));
521 ui__error("%s\n", msg);
522
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200523 if (child_pid != -1)
524 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600525
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200526 return -1;
527 }
David Ahern2cee77c2011-05-30 08:55:59 -0600528 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100529
530 l = strlen(counter->unit);
531 if (l > unit_width)
532 unit_width = l;
Jiri Olsa2af46462015-11-05 15:40:49 +0100533
Jiri Olsa82bf3112017-07-26 14:02:06 +0200534 if (perf_evsel__should_store_id(counter) &&
Jiri Olsa650d6222018-08-30 08:32:16 +0200535 perf_evsel__store_ids(counter, evsel_list))
Jiri Olsa2af46462015-11-05 15:40:49 +0100536 return -1;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300537 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200538
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300539 if (perf_evlist__apply_filters(evsel_list, &counter)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300540 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300541 counter->filter, perf_evsel__name(counter), errno,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300542 str_error_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100543 return -1;
544 }
545
Mathieu Poirier5d8bb1e2016-09-16 09:50:03 -0600546 if (perf_evlist__apply_drv_configs(evsel_list, &counter, &err_term)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300547 pr_err("failed to set config \"%s\" on event %s with %d (%s)\n",
Mathieu Poirier5d8bb1e2016-09-16 09:50:03 -0600548 err_term->val.drv_cfg, perf_evsel__name(counter), errno,
549 str_error_r(errno, msg, sizeof(msg)));
550 return -1;
551 }
552
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100553 if (STAT_RECORD) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100554 int err, fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100555
Jiri Olsa664c98d2015-11-05 15:40:50 +0100556 if (is_pipe) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100557 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
Jiri Olsa664c98d2015-11-05 15:40:50 +0100558 } else {
559 err = perf_session__write_header(perf_stat.session, evsel_list,
560 fd, false);
561 }
562
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100563 if (err < 0)
564 return err;
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100565
Jiri Olsa1c21e982018-08-30 08:32:21 +0200566 err = perf_stat_synthesize_config(&stat_config, NULL, evsel_list,
Jiri Olsac2c247f2018-08-30 08:32:22 +0200567 process_synthesized_event, is_pipe);
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100568 if (err < 0)
569 return err;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100570 }
571
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200572 /*
573 * Enable counters and exec the command:
574 */
575 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100576 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200577
Liming Wang60666c62009-12-31 16:05:50 +0800578 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900579 perf_evlist__start_workload(evsel_list);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100580 enable_counters();
Namhyung Kimacf28922013-03-11 16:43:18 +0900581
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100582 if (interval || timeout) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100583 while (!waitpid(child_pid, &status, WNOHANG)) {
584 nanosleep(&ts, NULL);
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100585 if (timeout)
586 break;
Jiri Olsaba411a92015-06-26 11:29:24 +0200587 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100588 if (interval_count && !(--times))
589 break;
Stephane Eranian13370a92013-01-29 12:47:44 +0100590 }
591 }
Jiri Olsa0ce2da12018-06-05 14:13:13 +0200592 wait4(child_pid, &status, 0, &ru_data);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300593
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300594 if (workload_exec_errno) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300595 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300596 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300597 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300598 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300599
Andi Kleen33e49ea2011-09-15 14:31:40 -0700600 if (WIFSIGNALED(status))
601 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800602 } else {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100603 enable_counters();
Stephane Eranian13370a92013-01-29 12:47:44 +0100604 while (!done) {
605 nanosleep(&ts, NULL);
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100606 if (timeout)
607 break;
yuzhoujiandb06a262018-01-29 10:25:22 +0100608 if (interval) {
Jiri Olsaba411a92015-06-26 11:29:24 +0200609 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100610 if (interval_count && !(--times))
611 break;
612 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100613 }
Liming Wang60666c62009-12-31 16:05:50 +0800614 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200615
Mark Rutland3df33ef2016-08-09 14:04:29 +0100616 disable_counters();
617
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200618 t1 = rdclock();
619
Jiri Olsae55c14a2018-04-23 11:08:21 +0200620 if (walltime_run_table)
621 walltime_run[run_idx] = t1 - t0;
622
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200623 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200624
Mark Rutland3df33ef2016-08-09 14:04:29 +0100625 /*
626 * Closing a group leader splits the group, and as we only disable
627 * group leaders, results in remaining events becoming enabled. To
628 * avoid arbitrary skew, we must read all counters before closing any
629 * group leaders.
630 */
631 read_counters();
632 perf_evlist__close(evsel_list);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200633
Ingo Molnar42202dd2009-06-13 14:57:28 +0200634 return WEXITSTATUS(status);
635}
636
Jiri Olsae55c14a2018-04-23 11:08:21 +0200637static int run_perf_stat(int argc, const char **argv, int run_idx)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200638{
639 int ret;
640
641 if (pre_cmd) {
642 ret = system(pre_cmd);
643 if (ret)
644 return ret;
645 }
646
647 if (sync_run)
648 sync();
649
Jiri Olsae55c14a2018-04-23 11:08:21 +0200650 ret = __run_perf_stat(argc, argv, run_idx);
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200651 if (ret)
652 return ret;
653
654 if (post_cmd) {
655 ret = system(post_cmd);
656 if (ret)
657 return ret;
658 }
659
660 return ret;
661}
662
Jiri Olsaf3ca50e2018-08-30 08:32:27 +0200663static void print_running(struct perf_stat_config *config,
664 u64 run, u64 ena)
Andi Kleend73515c2015-03-11 07:16:27 -0700665{
666 if (csv_output) {
Jiri Olsaf3ca50e2018-08-30 08:32:27 +0200667 fprintf(config->output, "%s%" PRIu64 "%s%.2f",
Andi Kleend73515c2015-03-11 07:16:27 -0700668 csv_sep,
669 run,
670 csv_sep,
671 ena ? 100.0 * run / ena : 100.0);
672 } else if (run != ena) {
Jiri Olsaf3ca50e2018-08-30 08:32:27 +0200673 fprintf(config->output, " (%.2f%%)", 100.0 * run / ena);
Andi Kleend73515c2015-03-11 07:16:27 -0700674 }
675}
676
Jiri Olsaf3ca50e2018-08-30 08:32:27 +0200677static void print_noise_pct(struct perf_stat_config *config,
678 double total, double avg)
Ingo Molnarf99844c2011-04-27 05:35:39 +0200679{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800680 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200681
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700682 if (csv_output)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +0200683 fprintf(config->output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600684 else if (pct)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +0200685 fprintf(config->output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200686}
687
Jiri Olsaf3ca50e2018-08-30 08:32:27 +0200688static void print_noise(struct perf_stat_config *config,
689 struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200690{
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200691 struct perf_stat_evsel *ps;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200692
Peter Zijlstra849abde2009-09-04 18:23:38 +0200693 if (run_count == 1)
694 return;
695
Arnaldo Carvalho de Meloe669e832017-10-26 14:22:34 -0300696 ps = evsel->stats;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +0200697 print_noise_pct(config, stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200698}
699
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200700static void aggr_printout(struct perf_stat_config *config,
701 struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200702{
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200703 switch (config->aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100704 case AGGR_CORE:
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200705 fprintf(config->output, "S%d-C%*d%s%*d%s",
Stephane Eranian12c08a92013-02-14 13:57:29 +0100706 cpu_map__id_to_socket(id),
707 csv_output ? 0 : -8,
708 cpu_map__id_to_cpu(id),
709 csv_sep,
710 csv_output ? 0 : 4,
711 nr,
712 csv_sep);
713 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100714 case AGGR_SOCKET:
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200715 fprintf(config->output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100716 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100717 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100718 csv_sep,
719 csv_output ? 0 : 4,
720 nr,
721 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100722 break;
723 case AGGR_NONE:
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200724 fprintf(config->output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200725 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100726 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100727 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200728 case AGGR_THREAD:
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200729 fprintf(config->output, "%*s-%*d%s",
Jiri Olsa32b8af82015-06-26 11:29:27 +0200730 csv_output ? 0 : 16,
731 thread_map__comm(evsel->threads, id),
732 csv_output ? 0 : -8,
733 thread_map__pid(evsel->threads, id),
734 csv_sep);
735 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100736 case AGGR_GLOBAL:
Jiri Olsa208df992015-10-16 12:41:04 +0200737 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100738 default:
739 break;
740 }
741}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200742
Andi Kleen140aead2016-01-30 09:06:49 -0800743struct outstate {
744 FILE *fh;
745 bool newline;
Andi Kleenf9483392016-01-30 09:06:50 -0800746 const char *prefix;
Andi Kleen92a61f62016-02-29 14:36:21 -0800747 int nfields;
Andi Kleen44d49a62016-02-29 14:36:22 -0800748 int id, nr;
749 struct perf_evsel *evsel;
Andi Kleen140aead2016-01-30 09:06:49 -0800750};
751
752#define METRIC_LEN 35
753
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200754static void new_line_std(struct perf_stat_config *config __maybe_unused,
755 void *ctx)
Andi Kleen140aead2016-01-30 09:06:49 -0800756{
757 struct outstate *os = ctx;
758
759 os->newline = true;
760}
761
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200762static void do_new_line_std(struct perf_stat_config *config,
763 struct outstate *os)
Andi Kleen140aead2016-01-30 09:06:49 -0800764{
765 fputc('\n', os->fh);
Andi Kleenf9483392016-01-30 09:06:50 -0800766 fputs(os->prefix, os->fh);
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200767 aggr_printout(config, os->evsel, os->id, os->nr);
768 if (config->aggr_mode == AGGR_NONE)
Andi Kleen140aead2016-01-30 09:06:49 -0800769 fprintf(os->fh, " ");
Andi Kleen140aead2016-01-30 09:06:49 -0800770 fprintf(os->fh, " ");
771}
772
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200773static void print_metric_std(struct perf_stat_config *config,
774 void *ctx, const char *color, const char *fmt,
Andi Kleen140aead2016-01-30 09:06:49 -0800775 const char *unit, double val)
776{
777 struct outstate *os = ctx;
778 FILE *out = os->fh;
779 int n;
780 bool newline = os->newline;
781
782 os->newline = false;
783
784 if (unit == NULL || fmt == NULL) {
785 fprintf(out, "%-*s", METRIC_LEN, "");
786 return;
787 }
788
789 if (newline)
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200790 do_new_line_std(config, os);
Andi Kleen140aead2016-01-30 09:06:49 -0800791
792 n = fprintf(out, " # ");
793 if (color)
794 n += color_fprintf(out, color, fmt, val);
795 else
796 n += fprintf(out, fmt, val);
797 fprintf(out, " %-*s", METRIC_LEN - n - 1, unit);
798}
799
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200800static void new_line_csv(struct perf_stat_config *config, void *ctx)
Andi Kleen92a61f62016-02-29 14:36:21 -0800801{
802 struct outstate *os = ctx;
803 int i;
804
805 fputc('\n', os->fh);
806 if (os->prefix)
807 fprintf(os->fh, "%s%s", os->prefix, csv_sep);
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200808 aggr_printout(config, os->evsel, os->id, os->nr);
Andi Kleen92a61f62016-02-29 14:36:21 -0800809 for (i = 0; i < os->nfields; i++)
810 fputs(csv_sep, os->fh);
811}
812
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200813static void print_metric_csv(struct perf_stat_config *config __maybe_unused,
814 void *ctx,
Andi Kleen92a61f62016-02-29 14:36:21 -0800815 const char *color __maybe_unused,
816 const char *fmt, const char *unit, double val)
817{
818 struct outstate *os = ctx;
819 FILE *out = os->fh;
820 char buf[64], *vals, *ends;
821
822 if (unit == NULL || fmt == NULL) {
Ilya Pronin40c21892018-03-05 22:43:53 -0800823 fprintf(out, "%s%s", csv_sep, csv_sep);
Andi Kleen92a61f62016-02-29 14:36:21 -0800824 return;
825 }
826 snprintf(buf, sizeof(buf), fmt, val);
Taeung Songb07c40d2017-04-07 23:24:18 +0900827 ends = vals = ltrim(buf);
Andi Kleen92a61f62016-02-29 14:36:21 -0800828 while (isdigit(*ends) || *ends == '.')
829 ends++;
830 *ends = 0;
831 while (isspace(*unit))
832 unit++;
833 fprintf(out, "%s%s%s%s", csv_sep, vals, csv_sep, unit);
834}
835
Andi Kleen54b50912016-03-03 15:57:36 -0800836/* Filter out some columns that don't work well in metrics only mode */
837
838static bool valid_only_metric(const char *unit)
839{
840 if (!unit)
841 return false;
842 if (strstr(unit, "/sec") ||
843 strstr(unit, "hz") ||
844 strstr(unit, "Hz") ||
845 strstr(unit, "CPUs utilized"))
846 return false;
847 return true;
848}
849
850static const char *fixunit(char *buf, struct perf_evsel *evsel,
851 const char *unit)
852{
853 if (!strncmp(unit, "of all", 6)) {
854 snprintf(buf, 1024, "%s %s", perf_evsel__name(evsel),
855 unit);
856 return buf;
857 }
858 return unit;
859}
860
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200861static void print_metric_only(struct perf_stat_config *config __maybe_unused,
862 void *ctx, const char *color, const char *fmt,
Andi Kleen54b50912016-03-03 15:57:36 -0800863 const char *unit, double val)
864{
865 struct outstate *os = ctx;
866 FILE *out = os->fh;
Jiri Olsaf5155722018-06-07 00:15:08 +0200867 char buf[1024], str[1024];
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200868 unsigned mlen = metric_only_len;
Andi Kleen54b50912016-03-03 15:57:36 -0800869
870 if (!valid_only_metric(unit))
871 return;
872 unit = fixunit(buf, os->evsel, unit);
Andi Kleen54b50912016-03-03 15:57:36 -0800873 if (mlen < strlen(unit))
874 mlen = strlen(unit) + 1;
Jiri Olsaf5155722018-06-07 00:15:08 +0200875
876 if (color)
877 mlen += strlen(color) + sizeof(PERF_COLOR_RESET) - 1;
878
879 color_snprintf(str, sizeof(str), color ?: "", fmt, val);
880 fprintf(out, "%*s ", mlen, str);
Andi Kleen54b50912016-03-03 15:57:36 -0800881}
882
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200883static void print_metric_only_csv(struct perf_stat_config *config __maybe_unused,
884 void *ctx, const char *color __maybe_unused,
Andi Kleen54b50912016-03-03 15:57:36 -0800885 const char *fmt,
886 const char *unit, double val)
887{
888 struct outstate *os = ctx;
889 FILE *out = os->fh;
890 char buf[64], *vals, *ends;
891 char tbuf[1024];
892
893 if (!valid_only_metric(unit))
894 return;
895 unit = fixunit(tbuf, os->evsel, unit);
896 snprintf(buf, sizeof buf, fmt, val);
Taeung Songb07c40d2017-04-07 23:24:18 +0900897 ends = vals = ltrim(buf);
Andi Kleen54b50912016-03-03 15:57:36 -0800898 while (isdigit(*ends) || *ends == '.')
899 ends++;
900 *ends = 0;
901 fprintf(out, "%s%s", vals, csv_sep);
902}
903
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200904static void new_line_metric(struct perf_stat_config *config __maybe_unused,
905 void *ctx __maybe_unused)
Andi Kleen54b50912016-03-03 15:57:36 -0800906{
907}
908
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200909static void print_metric_header(struct perf_stat_config *config __maybe_unused,
910 void *ctx, const char *color __maybe_unused,
Andi Kleen54b50912016-03-03 15:57:36 -0800911 const char *fmt __maybe_unused,
912 const char *unit, double val __maybe_unused)
913{
914 struct outstate *os = ctx;
915 char tbuf[1024];
916
917 if (!valid_only_metric(unit))
918 return;
919 unit = fixunit(tbuf, os->evsel, unit);
920 if (csv_output)
921 fprintf(os->fh, "%s%s", unit, csv_sep);
922 else
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200923 fprintf(os->fh, "%*s ", metric_only_len, unit);
Andi Kleen54b50912016-03-03 15:57:36 -0800924}
925
Andi Kleen44d49a62016-02-29 14:36:22 -0800926static int first_shadow_cpu(struct perf_evsel *evsel, int id)
927{
928 int i;
929
930 if (!aggr_get_id)
931 return 0;
932
933 if (stat_config.aggr_mode == AGGR_NONE)
934 return id;
935
936 if (stat_config.aggr_mode == AGGR_GLOBAL)
937 return 0;
938
939 for (i = 0; i < perf_evsel__nr_cpus(evsel); i++) {
940 int cpu2 = perf_evsel__cpus(evsel)->map[i];
941
942 if (aggr_get_id(evsel_list->cpus, cpu2) == id)
943 return cpu2;
944 }
945 return 0;
946}
947
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200948static void abs_printout(struct perf_stat_config *config,
949 int id, int nr, struct perf_evsel *evsel, double avg)
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200950{
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200951 FILE *output = config->output;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200952 double sc = evsel->scale;
953 const char *fmt;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200954
955 if (csv_output) {
Andi Kleene3b03b62016-05-05 16:04:03 -0700956 fmt = floor(sc) != sc ? "%.2f%s" : "%.0f%s";
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200957 } else {
958 if (big_num)
Andi Kleene3b03b62016-05-05 16:04:03 -0700959 fmt = floor(sc) != sc ? "%'18.2f%s" : "%'18.0f%s";
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200960 else
Andi Kleene3b03b62016-05-05 16:04:03 -0700961 fmt = floor(sc) != sc ? "%18.2f%s" : "%18.0f%s";
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200962 }
963
Jiri Olsa6ca9a082018-08-30 08:32:28 +0200964 aggr_printout(config, evsel, id, nr);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200965
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200966 fprintf(output, fmt, avg, csv_sep);
967
968 if (evsel->unit)
969 fprintf(output, "%-*s%s",
970 csv_output ? 0 : unit_width,
971 evsel->unit, csv_sep);
972
973 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
974
975 if (evsel->cgrp)
976 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Andi Kleeneedfcb42015-11-02 17:50:21 -0800977}
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200978
Kan Liang30060ea2018-04-24 11:20:11 -0700979static bool is_mixed_hw_group(struct perf_evsel *counter)
980{
981 struct perf_evlist *evlist = counter->evlist;
982 u32 pmu_type = counter->attr.type;
983 struct perf_evsel *pos;
984
985 if (counter->nr_members < 2)
986 return false;
987
988 evlist__for_each_entry(evlist, pos) {
989 /* software events can be part of any hardware group */
990 if (pos->attr.type == PERF_TYPE_SOFTWARE)
991 continue;
992 if (pmu_type == PERF_TYPE_SOFTWARE) {
993 pmu_type = pos->attr.type;
994 continue;
995 }
996 if (pmu_type != pos->attr.type)
997 return true;
998 }
999
1000 return false;
1001}
1002
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001003static void printout(struct perf_stat_config *config, int id, int nr,
1004 struct perf_evsel *counter, double uval,
Jin Yaoe0128b32017-12-05 22:03:05 +08001005 char *prefix, u64 run, u64 ena, double noise,
1006 struct runtime_stat *st)
Andi Kleeneedfcb42015-11-02 17:50:21 -08001007{
Andi Kleen140aead2016-01-30 09:06:49 -08001008 struct perf_stat_output_ctx out;
Andi Kleenf9483392016-01-30 09:06:50 -08001009 struct outstate os = {
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001010 .fh = config->output,
Andi Kleen44d49a62016-02-29 14:36:22 -08001011 .prefix = prefix ? prefix : "",
1012 .id = id,
1013 .nr = nr,
1014 .evsel = counter,
Andi Kleenf9483392016-01-30 09:06:50 -08001015 };
Andi Kleen140aead2016-01-30 09:06:49 -08001016 print_metric_t pm = print_metric_std;
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001017 new_line_t nl;
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001018
Andi Kleen54b50912016-03-03 15:57:36 -08001019 if (metric_only) {
1020 nl = new_line_metric;
1021 if (csv_output)
1022 pm = print_metric_only_csv;
1023 else
1024 pm = print_metric_only;
1025 } else
1026 nl = new_line_std;
Andi Kleeneedfcb42015-11-02 17:50:21 -08001027
Andi Kleen54b50912016-03-03 15:57:36 -08001028 if (csv_output && !metric_only) {
Andi Kleen92a61f62016-02-29 14:36:21 -08001029 static int aggr_fields[] = {
1030 [AGGR_GLOBAL] = 0,
1031 [AGGR_THREAD] = 1,
1032 [AGGR_NONE] = 1,
1033 [AGGR_SOCKET] = 2,
1034 [AGGR_CORE] = 2,
1035 };
1036
1037 pm = print_metric_csv;
1038 nl = new_line_csv;
1039 os.nfields = 3;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001040 os.nfields += aggr_fields[config->aggr_mode];
Andi Kleen92a61f62016-02-29 14:36:21 -08001041 if (counter->cgrp)
1042 os.nfields++;
1043 }
Andi Kleenb002f3b2016-02-17 14:44:00 -08001044 if (run == 0 || ena == 0 || counter->counts->scaled == -1) {
Andi Kleen54b50912016-03-03 15:57:36 -08001045 if (metric_only) {
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001046 pm(config, &os, NULL, "", "", 0);
Andi Kleen54b50912016-03-03 15:57:36 -08001047 return;
1048 }
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001049 aggr_printout(config, counter, id, nr);
Andi Kleencb110f42016-01-30 09:06:51 -08001050
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001051 fprintf(config->output, "%*s%s",
Andi Kleencb110f42016-01-30 09:06:51 -08001052 csv_output ? 0 : 18,
1053 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
1054 csv_sep);
1055
Kan Liang30060ea2018-04-24 11:20:11 -07001056 if (counter->supported) {
Borislav Petkov02d492e2017-02-07 01:40:05 +01001057 print_free_counters_hint = 1;
Kan Liang30060ea2018-04-24 11:20:11 -07001058 if (is_mixed_hw_group(counter))
1059 print_mixed_hw_group_error = 1;
1060 }
Borislav Petkov02d492e2017-02-07 01:40:05 +01001061
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001062 fprintf(config->output, "%-*s%s",
Andi Kleencb110f42016-01-30 09:06:51 -08001063 csv_output ? 0 : unit_width,
1064 counter->unit, csv_sep);
1065
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001066 fprintf(config->output, "%*s",
Andi Kleencb110f42016-01-30 09:06:51 -08001067 csv_output ? 0 : -25,
1068 perf_evsel__name(counter));
1069
1070 if (counter->cgrp)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001071 fprintf(config->output, "%s%s",
Andi Kleencb110f42016-01-30 09:06:51 -08001072 csv_sep, counter->cgrp->name);
1073
Andi Kleen92a61f62016-02-29 14:36:21 -08001074 if (!csv_output)
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001075 pm(config, &os, NULL, NULL, "", 0);
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001076 print_noise(config, counter, noise);
1077 print_running(config, run, ena);
Andi Kleen92a61f62016-02-29 14:36:21 -08001078 if (csv_output)
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001079 pm(config, &os, NULL, NULL, "", 0);
Andi Kleencb110f42016-01-30 09:06:51 -08001080 return;
1081 }
1082
Jiri Olsa0aa802a2018-07-20 13:00:34 +02001083 if (!metric_only)
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001084 abs_printout(config, id, nr, counter, uval);
Andi Kleeneedfcb42015-11-02 17:50:21 -08001085
Andi Kleen140aead2016-01-30 09:06:49 -08001086 out.print_metric = pm;
1087 out.new_line = nl;
1088 out.ctx = &os;
Andi Kleen37932c12017-03-20 13:17:08 -07001089 out.force_header = false;
Andi Kleen140aead2016-01-30 09:06:49 -08001090
Andi Kleen54b50912016-03-03 15:57:36 -08001091 if (csv_output && !metric_only) {
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001092 print_noise(config, counter, noise);
1093 print_running(config, run, ena);
Andi Kleen92a61f62016-02-29 14:36:21 -08001094 }
1095
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001096 perf_stat__print_shadow_stats(config, counter, uval,
Andi Kleen44d49a62016-02-29 14:36:22 -08001097 first_shadow_cpu(counter, id),
Jin Yaoe0128b32017-12-05 22:03:05 +08001098 &out, &metric_events, st);
Andi Kleen54b50912016-03-03 15:57:36 -08001099 if (!csv_output && !metric_only) {
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001100 print_noise(config, counter, noise);
1101 print_running(config, run, ena);
Andi Kleen92a61f62016-02-29 14:36:21 -08001102 }
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001103}
1104
Andi Kleen44d49a62016-02-29 14:36:22 -08001105static void aggr_update_shadow(void)
1106{
1107 int cpu, s2, id, s;
1108 u64 val;
1109 struct perf_evsel *counter;
1110
1111 for (s = 0; s < aggr_map->nr; s++) {
1112 id = aggr_map->map[s];
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001113 evlist__for_each_entry(evsel_list, counter) {
Andi Kleen44d49a62016-02-29 14:36:22 -08001114 val = 0;
1115 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
1116 s2 = aggr_get_id(evsel_list->cpus, cpu);
1117 if (s2 != id)
1118 continue;
1119 val += perf_counts(counter->counts, cpu, 0)->val;
1120 }
Jiri Olsa54830dd2017-01-23 22:42:56 +01001121 perf_stat__update_shadow_stats(counter, val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001122 first_shadow_cpu(counter, id),
1123 &rt_stat);
Andi Kleen44d49a62016-02-29 14:36:22 -08001124 }
1125 }
1126}
1127
Agustin Vega-Frias8c5421c2018-03-06 09:04:43 -05001128static void uniquify_event_name(struct perf_evsel *counter)
1129{
1130 char *new_name;
1131 char *config;
1132
Kan Liang80ee8c52018-04-24 11:20:14 -07001133 if (counter->uniquified_name ||
1134 !counter->pmu_name || !strncmp(counter->name, counter->pmu_name,
Agustin Vega-Frias8c5421c2018-03-06 09:04:43 -05001135 strlen(counter->pmu_name)))
1136 return;
1137
1138 config = strchr(counter->name, '/');
1139 if (config) {
1140 if (asprintf(&new_name,
1141 "%s%s", counter->pmu_name, config) > 0) {
1142 free(counter->name);
1143 counter->name = new_name;
1144 }
1145 } else {
1146 if (asprintf(&new_name,
1147 "%s [%s]", counter->name, counter->pmu_name) > 0) {
1148 free(counter->name);
1149 counter->name = new_name;
1150 }
1151 }
Kan Liang80ee8c52018-04-24 11:20:14 -07001152
1153 counter->uniquified_name = true;
Agustin Vega-Frias8c5421c2018-03-06 09:04:43 -05001154}
1155
Andi Kleen430daf22017-03-20 13:17:00 -07001156static void collect_all_aliases(struct perf_evsel *counter,
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001157 void (*cb)(struct perf_evsel *counter, void *data,
1158 bool first),
1159 void *data)
1160{
Andi Kleen430daf22017-03-20 13:17:00 -07001161 struct perf_evsel *alias;
1162
1163 alias = list_prepare_entry(counter, &(evsel_list->entries), node);
1164 list_for_each_entry_continue (alias, &evsel_list->entries, node) {
1165 if (strcmp(perf_evsel__name(alias), perf_evsel__name(counter)) ||
1166 alias->scale != counter->scale ||
1167 alias->cgrp != counter->cgrp ||
1168 strcmp(alias->unit, counter->unit) ||
Jiri Olsa0aa802a2018-07-20 13:00:34 +02001169 perf_evsel__is_clock(alias) != perf_evsel__is_clock(counter))
Andi Kleen430daf22017-03-20 13:17:00 -07001170 break;
1171 alias->merged_stat = true;
1172 cb(alias, data, false);
1173 }
1174}
1175
1176static bool collect_data(struct perf_evsel *counter,
1177 void (*cb)(struct perf_evsel *counter, void *data,
1178 bool first),
1179 void *data)
1180{
1181 if (counter->merged_stat)
1182 return false;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001183 cb(counter, data, true);
Agustin Vega-Frias8c5421c2018-03-06 09:04:43 -05001184 if (no_merge)
1185 uniquify_event_name(counter);
1186 else if (counter->auto_merge_stats)
Andi Kleen430daf22017-03-20 13:17:00 -07001187 collect_all_aliases(counter, cb, data);
1188 return true;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001189}
1190
1191struct aggr_data {
1192 u64 ena, run, val;
1193 int id;
1194 int nr;
1195 int cpu;
1196};
1197
1198static void aggr_cb(struct perf_evsel *counter, void *data, bool first)
1199{
1200 struct aggr_data *ad = data;
1201 int cpu, s2;
1202
1203 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
1204 struct perf_counts_values *counts;
1205
1206 s2 = aggr_get_id(perf_evsel__cpus(counter), cpu);
1207 if (s2 != ad->id)
1208 continue;
1209 if (first)
1210 ad->nr++;
1211 counts = perf_counts(counter->counts, cpu, 0);
Andi Kleenb4229e92017-03-20 13:17:01 -07001212 /*
1213 * When any result is bad, make them all to give
1214 * consistent output in interval mode.
1215 */
1216 if (counts->ena == 0 || counts->run == 0 ||
1217 counter->counts->scaled == -1) {
1218 ad->ena = 0;
1219 ad->run = 0;
1220 break;
1221 }
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001222 ad->val += counts->val;
1223 ad->ena += counts->ena;
1224 ad->run += counts->run;
1225 }
1226}
1227
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001228static void print_aggr(struct perf_stat_config *config,
1229 char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001230{
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001231 FILE *output = config->output;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001232 struct perf_evsel *counter;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001233 int s, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +01001234 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001235 u64 ena, run, val;
Andi Kleen54b50912016-03-03 15:57:36 -08001236 bool first;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001237
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001238 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001239 return;
1240
Andi Kleen44d49a62016-02-29 14:36:22 -08001241 aggr_update_shadow();
1242
Andi Kleen54b50912016-03-03 15:57:36 -08001243 /*
1244 * With metric_only everything is on a single line.
1245 * Without each counter has its own line.
1246 */
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001247 for (s = 0; s < aggr_map->nr; s++) {
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001248 struct aggr_data ad;
Andi Kleen54b50912016-03-03 15:57:36 -08001249 if (prefix && metric_only)
1250 fprintf(output, "%s", prefix);
1251
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001252 ad.id = id = aggr_map->map[s];
Andi Kleen54b50912016-03-03 15:57:36 -08001253 first = true;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001254 evlist__for_each_entry(evsel_list, counter) {
Andi Kleene864c5c2017-08-31 12:40:35 -07001255 if (is_duration_time(counter))
1256 continue;
1257
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001258 ad.val = ad.ena = ad.run = 0;
1259 ad.nr = 0;
Andi Kleen430daf22017-03-20 13:17:00 -07001260 if (!collect_data(counter, aggr_cb, &ad))
1261 continue;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001262 nr = ad.nr;
1263 ena = ad.ena;
1264 run = ad.run;
1265 val = ad.val;
Andi Kleen54b50912016-03-03 15:57:36 -08001266 if (first && metric_only) {
1267 first = false;
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001268 aggr_printout(config, counter, id, nr);
Andi Kleen54b50912016-03-03 15:57:36 -08001269 }
1270 if (prefix && !metric_only)
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001271 fprintf(output, "%s", prefix);
1272
Stephane Eranian410136f2013-11-12 17:58:49 +01001273 uval = val * counter->scale;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001274 printout(config, id, nr, counter, uval, prefix,
1275 run, ena, 1.0, &rt_stat);
Andi Kleen54b50912016-03-03 15:57:36 -08001276 if (!metric_only)
1277 fputc('\n', output);
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001278 }
Andi Kleen54b50912016-03-03 15:57:36 -08001279 if (metric_only)
1280 fputc('\n', output);
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001281 }
1282}
1283
Jin Yao29734552017-12-05 22:03:11 +08001284static int cmp_val(const void *a, const void *b)
Jiri Olsa32b8af82015-06-26 11:29:27 +02001285{
Jin Yao29734552017-12-05 22:03:11 +08001286 return ((struct perf_aggr_thread_value *)b)->val -
1287 ((struct perf_aggr_thread_value *)a)->val;
1288}
1289
1290static struct perf_aggr_thread_value *sort_aggr_thread(
1291 struct perf_evsel *counter,
1292 int nthreads, int ncpus,
1293 int *ret)
1294{
1295 int cpu, thread, i = 0;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001296 double uval;
Jin Yao29734552017-12-05 22:03:11 +08001297 struct perf_aggr_thread_value *buf;
1298
1299 buf = calloc(nthreads, sizeof(struct perf_aggr_thread_value));
1300 if (!buf)
1301 return NULL;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001302
1303 for (thread = 0; thread < nthreads; thread++) {
1304 u64 ena = 0, run = 0, val = 0;
1305
1306 for (cpu = 0; cpu < ncpus; cpu++) {
1307 val += perf_counts(counter->counts, cpu, thread)->val;
1308 ena += perf_counts(counter->counts, cpu, thread)->ena;
1309 run += perf_counts(counter->counts, cpu, thread)->run;
1310 }
1311
Jin Yao29734552017-12-05 22:03:11 +08001312 uval = val * counter->scale;
1313
1314 /*
1315 * Skip value 0 when enabling --per-thread globally,
1316 * otherwise too many 0 output.
1317 */
1318 if (uval == 0.0 && target__has_per_thread(&target))
1319 continue;
1320
1321 buf[i].counter = counter;
1322 buf[i].id = thread;
1323 buf[i].uval = uval;
1324 buf[i].val = val;
1325 buf[i].run = run;
1326 buf[i].ena = ena;
1327 i++;
1328 }
1329
1330 qsort(buf, i, sizeof(struct perf_aggr_thread_value), cmp_val);
1331
1332 if (ret)
1333 *ret = i;
1334
1335 return buf;
1336}
1337
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001338static void print_aggr_thread(struct perf_stat_config *config,
1339 struct perf_evsel *counter, char *prefix)
Jin Yao29734552017-12-05 22:03:11 +08001340{
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001341 FILE *output = config->output;
Jin Yao29734552017-12-05 22:03:11 +08001342 int nthreads = thread_map__nr(counter->threads);
1343 int ncpus = cpu_map__nr(counter->cpus);
1344 int thread, sorted_threads, id;
1345 struct perf_aggr_thread_value *buf;
1346
1347 buf = sort_aggr_thread(counter, nthreads, ncpus, &sorted_threads);
1348 if (!buf) {
1349 perror("cannot sort aggr thread");
1350 return;
1351 }
1352
1353 for (thread = 0; thread < sorted_threads; thread++) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001354 if (prefix)
1355 fprintf(output, "%s", prefix);
1356
Jin Yao29734552017-12-05 22:03:11 +08001357 id = buf[thread].id;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001358 if (config->stats)
1359 printout(config, id, 0, buf[thread].counter, buf[thread].uval,
Jin Yao29734552017-12-05 22:03:11 +08001360 prefix, buf[thread].run, buf[thread].ena, 1.0,
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001361 &config->stats[id]);
Jin Yao14e72a22017-12-05 22:03:08 +08001362 else
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001363 printout(config, id, 0, buf[thread].counter, buf[thread].uval,
Jin Yao29734552017-12-05 22:03:11 +08001364 prefix, buf[thread].run, buf[thread].ena, 1.0,
1365 &rt_stat);
Jiri Olsa32b8af82015-06-26 11:29:27 +02001366 fputc('\n', output);
1367 }
Jin Yao29734552017-12-05 22:03:11 +08001368
1369 free(buf);
Jiri Olsa32b8af82015-06-26 11:29:27 +02001370}
1371
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001372struct caggr_data {
1373 double avg, avg_enabled, avg_running;
1374};
1375
1376static void counter_aggr_cb(struct perf_evsel *counter, void *data,
1377 bool first __maybe_unused)
1378{
1379 struct caggr_data *cd = data;
Arnaldo Carvalho de Meloe669e832017-10-26 14:22:34 -03001380 struct perf_stat_evsel *ps = counter->stats;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001381
1382 cd->avg += avg_stats(&ps->res_stats[0]);
1383 cd->avg_enabled += avg_stats(&ps->res_stats[1]);
1384 cd->avg_running += avg_stats(&ps->res_stats[2]);
1385}
1386
Ingo Molnar42202dd2009-06-13 14:57:28 +02001387/*
1388 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001389 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +02001390 */
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001391static void print_counter_aggr(struct perf_stat_config *config,
1392 struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001393{
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001394 FILE *output = config->output;
Stephane Eranian410136f2013-11-12 17:58:49 +01001395 double uval;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001396 struct caggr_data cd = { .avg = 0.0 };
Andi Kleend73515c2015-03-11 07:16:27 -07001397
Andi Kleen430daf22017-03-20 13:17:00 -07001398 if (!collect_data(counter, counter_aggr_cb, &cd))
1399 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001400
Andi Kleen54b50912016-03-03 15:57:36 -08001401 if (prefix && !metric_only)
Stephane Eranian13370a92013-01-29 12:47:44 +01001402 fprintf(output, "%s", prefix);
1403
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001404 uval = cd.avg * counter->scale;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001405 printout(config, -1, 0, counter, uval, prefix, cd.avg_running, cd.avg_enabled,
Jin Yaoe0128b32017-12-05 22:03:05 +08001406 cd.avg, &rt_stat);
Andi Kleen54b50912016-03-03 15:57:36 -08001407 if (!metric_only)
1408 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +02001409}
1410
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001411static void counter_cb(struct perf_evsel *counter, void *data,
1412 bool first __maybe_unused)
1413{
1414 struct aggr_data *ad = data;
1415
1416 ad->val += perf_counts(counter->counts, ad->cpu, 0)->val;
1417 ad->ena += perf_counts(counter->counts, ad->cpu, 0)->ena;
1418 ad->run += perf_counts(counter->counts, ad->cpu, 0)->run;
1419}
1420
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001421/*
1422 * Print out the results of a single counter:
1423 * does not use aggregated count in system-wide
1424 */
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001425static void print_counter(struct perf_stat_config *config,
1426 struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001427{
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001428 FILE *output = config->output;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001429 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +01001430 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001431 int cpu;
1432
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001433 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001434 struct aggr_data ad = { .cpu = cpu };
1435
Andi Kleen430daf22017-03-20 13:17:00 -07001436 if (!collect_data(counter, counter_cb, &ad))
1437 return;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001438 val = ad.val;
1439 ena = ad.ena;
1440 run = ad.run;
Stephane Eranian13370a92013-01-29 12:47:44 +01001441
1442 if (prefix)
1443 fprintf(output, "%s", prefix);
1444
Stephane Eranian410136f2013-11-12 17:58:49 +01001445 uval = val * counter->scale;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001446 printout(config, cpu, 0, counter, uval, prefix, run, ena, 1.0,
Jin Yaoe0128b32017-12-05 22:03:05 +08001447 &rt_stat);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001448
Stephane Eranian4aa90152011-08-15 22:22:33 +02001449 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001450 }
1451}
1452
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001453static void print_no_aggr_metric(struct perf_stat_config *config,
1454 char *prefix)
Andi Kleen206cab62016-03-03 15:57:37 -08001455{
1456 int cpu;
1457 int nrcpus = 0;
1458 struct perf_evsel *counter;
1459 u64 ena, run, val;
1460 double uval;
1461
1462 nrcpus = evsel_list->cpus->nr;
1463 for (cpu = 0; cpu < nrcpus; cpu++) {
1464 bool first = true;
1465
1466 if (prefix)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001467 fputs(prefix, config->output);
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001468 evlist__for_each_entry(evsel_list, counter) {
Andi Kleene864c5c2017-08-31 12:40:35 -07001469 if (is_duration_time(counter))
1470 continue;
Andi Kleen206cab62016-03-03 15:57:37 -08001471 if (first) {
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001472 aggr_printout(config, counter, cpu, 0);
Andi Kleen206cab62016-03-03 15:57:37 -08001473 first = false;
1474 }
1475 val = perf_counts(counter->counts, cpu, 0)->val;
1476 ena = perf_counts(counter->counts, cpu, 0)->ena;
1477 run = perf_counts(counter->counts, cpu, 0)->run;
1478
1479 uval = val * counter->scale;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001480 printout(config, cpu, 0, counter, uval, prefix, run, ena, 1.0,
Jin Yaoe0128b32017-12-05 22:03:05 +08001481 &rt_stat);
Andi Kleen206cab62016-03-03 15:57:37 -08001482 }
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001483 fputc('\n', config->output);
Andi Kleen206cab62016-03-03 15:57:37 -08001484 }
1485}
1486
Andi Kleen54b50912016-03-03 15:57:36 -08001487static int aggr_header_lens[] = {
1488 [AGGR_CORE] = 18,
1489 [AGGR_SOCKET] = 12,
Andi Kleen206cab62016-03-03 15:57:37 -08001490 [AGGR_NONE] = 6,
Andi Kleen54b50912016-03-03 15:57:36 -08001491 [AGGR_THREAD] = 24,
1492 [AGGR_GLOBAL] = 0,
1493};
1494
Andi Kleenc51fd632016-05-24 12:52:39 -07001495static const char *aggr_header_csv[] = {
1496 [AGGR_CORE] = "core,cpus,",
1497 [AGGR_SOCKET] = "socket,cpus",
1498 [AGGR_NONE] = "cpu,",
1499 [AGGR_THREAD] = "comm-pid,",
1500 [AGGR_GLOBAL] = ""
1501};
1502
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001503static void print_metric_headers(struct perf_stat_config *config,
1504 const char *prefix, bool no_indent)
Andi Kleen54b50912016-03-03 15:57:36 -08001505{
1506 struct perf_stat_output_ctx out;
1507 struct perf_evsel *counter;
1508 struct outstate os = {
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001509 .fh = config->output
Andi Kleen54b50912016-03-03 15:57:36 -08001510 };
1511
1512 if (prefix)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001513 fprintf(config->output, "%s", prefix);
Andi Kleen54b50912016-03-03 15:57:36 -08001514
Andi Kleen41c8ca22016-05-24 12:52:38 -07001515 if (!csv_output && !no_indent)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001516 fprintf(config->output, "%*s",
1517 aggr_header_lens[config->aggr_mode], "");
Andi Kleenc51fd632016-05-24 12:52:39 -07001518 if (csv_output) {
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001519 if (config->interval)
1520 fputs("time,", config->output);
1521 fputs(aggr_header_csv[config->aggr_mode], config->output);
Andi Kleenc51fd632016-05-24 12:52:39 -07001522 }
Andi Kleen54b50912016-03-03 15:57:36 -08001523
1524 /* Print metrics headers only */
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001525 evlist__for_each_entry(evsel_list, counter) {
Andi Kleene864c5c2017-08-31 12:40:35 -07001526 if (is_duration_time(counter))
1527 continue;
Andi Kleen54b50912016-03-03 15:57:36 -08001528 os.evsel = counter;
1529 out.ctx = &os;
1530 out.print_metric = print_metric_header;
1531 out.new_line = new_line_metric;
Andi Kleen37932c12017-03-20 13:17:08 -07001532 out.force_header = true;
Andi Kleen54b50912016-03-03 15:57:36 -08001533 os.evsel = counter;
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001534 perf_stat__print_shadow_stats(config, counter, 0,
Andi Kleen54b50912016-03-03 15:57:36 -08001535 0,
Andi Kleenb18f3e32017-08-31 12:40:31 -07001536 &out,
Jin Yaoe0128b32017-12-05 22:03:05 +08001537 &metric_events,
1538 &rt_stat);
Andi Kleen54b50912016-03-03 15:57:36 -08001539 }
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001540 fputc('\n', config->output);
Andi Kleen54b50912016-03-03 15:57:36 -08001541}
1542
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001543static void print_interval(struct perf_stat_config *config,
1544 char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001545{
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001546 FILE *output = config->output;
Jiri Olsad4f63a42015-06-26 11:29:26 +02001547 static int num_print_interval;
1548
Jiri Olsa9660e082018-06-07 00:15:06 +02001549 if (interval_clear)
1550 puts(CONSOLE_CLEAR);
1551
Jiri Olsad4f63a42015-06-26 11:29:26 +02001552 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
1553
Jiri Olsa9660e082018-06-07 00:15:06 +02001554 if ((num_print_interval == 0 && !csv_output) || interval_clear) {
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001555 switch (config->aggr_mode) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001556 case AGGR_SOCKET:
Andi Kleen41c8ca22016-05-24 12:52:38 -07001557 fprintf(output, "# time socket cpus");
1558 if (!metric_only)
1559 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsad4f63a42015-06-26 11:29:26 +02001560 break;
1561 case AGGR_CORE:
Andi Kleen41c8ca22016-05-24 12:52:38 -07001562 fprintf(output, "# time core cpus");
1563 if (!metric_only)
1564 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsad4f63a42015-06-26 11:29:26 +02001565 break;
1566 case AGGR_NONE:
Jiri Olsaf5155722018-06-07 00:15:08 +02001567 fprintf(output, "# time CPU ");
Andi Kleen41c8ca22016-05-24 12:52:38 -07001568 if (!metric_only)
1569 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsad4f63a42015-06-26 11:29:26 +02001570 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001571 case AGGR_THREAD:
Andi Kleen41c8ca22016-05-24 12:52:38 -07001572 fprintf(output, "# time comm-pid");
1573 if (!metric_only)
1574 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsa32b8af82015-06-26 11:29:27 +02001575 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +02001576 case AGGR_GLOBAL:
1577 default:
Andi Kleen41c8ca22016-05-24 12:52:38 -07001578 fprintf(output, "# time");
1579 if (!metric_only)
1580 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsa208df992015-10-16 12:41:04 +02001581 case AGGR_UNSET:
1582 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +02001583 }
1584 }
1585
Jiri Olsac818cc02018-07-02 15:42:02 +02001586 if ((num_print_interval == 0 || interval_clear) && metric_only)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001587 print_metric_headers(config, " ", true);
Jiri Olsad4f63a42015-06-26 11:29:26 +02001588 if (++num_print_interval == 25)
1589 num_print_interval = 0;
1590}
1591
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001592static void print_header(struct perf_stat_config *config,
1593 int argc, const char **argv)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001594{
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001595 FILE *output = config->output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001596 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001597
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001598 fflush(stdout);
1599
Stephane Eraniand7470b62010-12-01 18:49:05 +02001600 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001601 fprintf(output, "\n");
1602 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -06001603 if (target.system_wide)
1604 fprintf(output, "\'system wide");
1605 else if (target.cpu_list)
1606 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001607 else if (!target__has_task(&target)) {
Jiri Olsaba6039b62015-11-05 15:40:55 +01001608 fprintf(output, "\'%s", argv ? argv[0] : "pipe");
1609 for (i = 1; argv && (i < argc); i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001610 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +09001611 } else if (target.pid)
1612 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001613 else
Namhyung Kim20f946b2012-04-26 14:15:16 +09001614 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +02001615
Stephane Eranian4aa90152011-08-15 22:22:33 +02001616 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001617 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001618 fprintf(output, " (%d runs)", run_count);
1619 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001620 }
Jiri Olsad4f63a42015-06-26 11:29:26 +02001621}
1622
Jiri Olsabc22de92018-04-23 11:08:20 +02001623static int get_precision(double num)
1624{
1625 if (num > 1)
1626 return 0;
1627
1628 return lround(ceil(-log10(num)));
1629}
1630
Jiri Olsae55c14a2018-04-23 11:08:21 +02001631static void print_table(FILE *output, int precision, double avg)
1632{
1633 char tmp[64];
1634 int idx, indent = 0;
1635
1636 scnprintf(tmp, 64, " %17.*f", precision, avg);
1637 while (tmp[indent] == ' ')
1638 indent++;
1639
1640 fprintf(output, "%*s# Table of individual measurements:\n", indent, "");
1641
1642 for (idx = 0; idx < run_count; idx++) {
1643 double run = (double) walltime_run[idx] / NSEC_PER_SEC;
Jiri Olsaabc60ba2018-04-23 11:08:22 +02001644 int h, n = 1 + abs((int) (100.0 * (run - avg)/run) / 5);
Jiri Olsae55c14a2018-04-23 11:08:21 +02001645
Jiri Olsaabc60ba2018-04-23 11:08:22 +02001646 fprintf(output, " %17.*f (%+.*f) ",
Jiri Olsae55c14a2018-04-23 11:08:21 +02001647 precision, run, precision, run - avg);
Jiri Olsaabc60ba2018-04-23 11:08:22 +02001648
1649 for (h = 0; h < n; h++)
1650 fprintf(output, "#");
1651
1652 fprintf(output, "\n");
Jiri Olsae55c14a2018-04-23 11:08:21 +02001653 }
1654
1655 fprintf(output, "\n%*s# Final result:\n", indent, "");
1656}
1657
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001658static double timeval2double(struct timeval *t)
1659{
1660 return t->tv_sec + (double) t->tv_usec/USEC_PER_SEC;
1661}
1662
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001663static void print_footer(struct perf_stat_config *config)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001664{
Jiri Olsabc22de92018-04-23 11:08:20 +02001665 double avg = avg_stats(&walltime_nsecs_stats) / NSEC_PER_SEC;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001666 FILE *output = config->output;
Andi Kleen918c7b062017-05-22 18:00:16 -07001667 int n;
Jiri Olsa58215222015-07-21 14:31:24 +02001668
Jiri Olsad4f63a42015-06-26 11:29:26 +02001669 if (!null_run)
1670 fprintf(output, "\n");
Jiri Olsabc22de92018-04-23 11:08:20 +02001671
1672 if (run_count == 1) {
1673 fprintf(output, " %17.9f seconds time elapsed", avg);
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001674
1675 if (ru_display) {
1676 double ru_utime = timeval2double(&ru_data.ru_utime);
1677 double ru_stime = timeval2double(&ru_data.ru_stime);
1678
1679 fprintf(output, "\n\n");
1680 fprintf(output, " %17.9f seconds user\n", ru_utime);
1681 fprintf(output, " %17.9f seconds sys\n", ru_stime);
1682 }
Jiri Olsabc22de92018-04-23 11:08:20 +02001683 } else {
1684 double sd = stddev_stats(&walltime_nsecs_stats) / NSEC_PER_SEC;
1685 /*
1686 * Display at most 2 more significant
1687 * digits than the stddev inaccuracy.
1688 */
1689 int precision = get_precision(sd) + 2;
1690
Jiri Olsae55c14a2018-04-23 11:08:21 +02001691 if (walltime_run_table)
1692 print_table(output, precision, avg);
1693
Jiri Olsabc22de92018-04-23 11:08:20 +02001694 fprintf(output, " %17.*f +- %.*f seconds time elapsed",
1695 precision, avg, precision, sd);
1696
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001697 print_noise_pct(config, sd, avg);
Jiri Olsad4f63a42015-06-26 11:29:26 +02001698 }
1699 fprintf(output, "\n\n");
Borislav Petkov02d492e2017-02-07 01:40:05 +01001700
Andi Kleen918c7b062017-05-22 18:00:16 -07001701 if (print_free_counters_hint &&
1702 sysctl__read_int("kernel/nmi_watchdog", &n) >= 0 &&
1703 n > 0)
Borislav Petkov02d492e2017-02-07 01:40:05 +01001704 fprintf(output,
1705"Some events weren't counted. Try disabling the NMI watchdog:\n"
1706" echo 0 > /proc/sys/kernel/nmi_watchdog\n"
1707" perf stat ...\n"
1708" echo 1 > /proc/sys/kernel/nmi_watchdog\n");
Kan Liang30060ea2018-04-24 11:20:11 -07001709
1710 if (print_mixed_hw_group_error)
1711 fprintf(output,
1712 "The events in group usually have to be from "
1713 "the same PMU. Try reorganizing the group.\n");
Jiri Olsad4f63a42015-06-26 11:29:26 +02001714}
1715
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001716static void
1717perf_evlist__print_counters(struct perf_evlist *evlist,
Jiri Olsab64df7f2018-08-30 08:32:26 +02001718 struct perf_stat_config *config,
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001719 struct timespec *ts,
1720 int argc, const char **argv)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001721{
Jiri Olsab64df7f2018-08-30 08:32:26 +02001722 int interval = config->interval;
Jiri Olsad4f63a42015-06-26 11:29:26 +02001723 struct perf_evsel *counter;
1724 char buf[64], *prefix = NULL;
1725
1726 if (interval)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001727 print_interval(config, prefix = buf, ts);
Jiri Olsad4f63a42015-06-26 11:29:26 +02001728 else
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001729 print_header(config, argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001730
Andi Kleen54b50912016-03-03 15:57:36 -08001731 if (metric_only) {
1732 static int num_print_iv;
1733
Andi Kleen41c8ca22016-05-24 12:52:38 -07001734 if (num_print_iv == 0 && !interval)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001735 print_metric_headers(config, prefix, false);
Andi Kleen54b50912016-03-03 15:57:36 -08001736 if (num_print_iv++ == 25)
1737 num_print_iv = 0;
Jiri Olsab64df7f2018-08-30 08:32:26 +02001738 if (config->aggr_mode == AGGR_GLOBAL && prefix)
1739 fprintf(config->output, "%s", prefix);
Andi Kleen54b50912016-03-03 15:57:36 -08001740 }
1741
Jiri Olsab64df7f2018-08-30 08:32:26 +02001742 switch (config->aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +01001743 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001744 case AGGR_SOCKET:
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001745 print_aggr(config, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001746 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001747 case AGGR_THREAD:
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001748 evlist__for_each_entry(evlist, counter) {
Andi Kleene864c5c2017-08-31 12:40:35 -07001749 if (is_duration_time(counter))
1750 continue;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001751 print_aggr_thread(config, counter, prefix);
Andi Kleene864c5c2017-08-31 12:40:35 -07001752 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001753 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001754 case AGGR_GLOBAL:
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001755 evlist__for_each_entry(evlist, counter) {
Andi Kleene864c5c2017-08-31 12:40:35 -07001756 if (is_duration_time(counter))
1757 continue;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001758 print_counter_aggr(config, counter, prefix);
Andi Kleene864c5c2017-08-31 12:40:35 -07001759 }
Andi Kleen54b50912016-03-03 15:57:36 -08001760 if (metric_only)
Jiri Olsab64df7f2018-08-30 08:32:26 +02001761 fputc('\n', config->output);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001762 break;
1763 case AGGR_NONE:
Andi Kleen206cab62016-03-03 15:57:37 -08001764 if (metric_only)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001765 print_no_aggr_metric(config, prefix);
Andi Kleen206cab62016-03-03 15:57:37 -08001766 else {
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001767 evlist__for_each_entry(evlist, counter) {
Andi Kleene864c5c2017-08-31 12:40:35 -07001768 if (is_duration_time(counter))
1769 continue;
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001770 print_counter(config, counter, prefix);
Andi Kleene864c5c2017-08-31 12:40:35 -07001771 }
Andi Kleen206cab62016-03-03 15:57:37 -08001772 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001773 break;
Jiri Olsa208df992015-10-16 12:41:04 +02001774 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001775 default:
1776 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001777 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001778
Jiri Olsad4f63a42015-06-26 11:29:26 +02001779 if (!interval && !csv_output)
Jiri Olsaf3ca50e2018-08-30 08:32:27 +02001780 print_footer(config);
Jiri Olsad4f63a42015-06-26 11:29:26 +02001781
Jiri Olsab64df7f2018-08-30 08:32:26 +02001782 fflush(config->output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001783}
1784
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001785static void print_counters(struct timespec *ts, int argc, const char **argv)
1786{
Jiri Olsa01748202018-08-30 08:32:25 +02001787 /* Do not print anything if we record to the pipe. */
1788 if (STAT_RECORD && perf_stat.data.is_pipe)
1789 return;
1790
Jiri Olsab64df7f2018-08-30 08:32:26 +02001791 perf_evlist__print_counters(evsel_list, &stat_config,
1792 ts, argc, argv);
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001793}
1794
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001795static volatile int signr = -1;
1796
Ingo Molnar52425192009-05-26 09:17:18 +02001797static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001798{
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001799 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +08001800 done = 1;
1801
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001802 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001803 /*
1804 * render child_pid harmless
1805 * won't send SIGTERM to a random
1806 * process in case of race condition
1807 * and fast PID recycling
1808 */
1809 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001810}
1811
1812static void sig_atexit(void)
1813{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001814 sigset_t set, oset;
1815
1816 /*
1817 * avoid race condition with SIGCHLD handler
1818 * in skip_signal() which is modifying child_pid
1819 * goal is to avoid send SIGTERM to a random
1820 * process
1821 */
1822 sigemptyset(&set);
1823 sigaddset(&set, SIGCHLD);
1824 sigprocmask(SIG_BLOCK, &set, &oset);
1825
Chris Wilson933da832009-10-04 01:35:01 +01001826 if (child_pid != -1)
1827 kill(child_pid, SIGTERM);
1828
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001829 sigprocmask(SIG_SETMASK, &oset, NULL);
1830
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001831 if (signr == -1)
1832 return;
1833
1834 signal(signr, SIG_DFL);
1835 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001836}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001837
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001838static int stat__set_big_num(const struct option *opt __maybe_unused,
1839 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001840{
1841 big_num_opt = unset ? 0 : 1;
1842 return 0;
1843}
1844
Andi Kleen44b1e602016-05-30 12:49:42 -03001845static int enable_metric_only(const struct option *opt __maybe_unused,
1846 const char *s __maybe_unused, int unset)
1847{
1848 force_metric_only = true;
1849 metric_only = !unset;
1850 return 0;
1851}
1852
Andi Kleenb18f3e32017-08-31 12:40:31 -07001853static int parse_metric_groups(const struct option *opt,
1854 const char *str,
1855 int unset __maybe_unused)
1856{
1857 return metricgroup__parse_groups(opt, str, &metric_events);
1858}
1859
Jiri Olsae0547312015-11-05 15:40:45 +01001860static const struct option stat_options[] = {
1861 OPT_BOOLEAN('T', "transaction", &transaction_run,
1862 "hardware transaction statistics"),
1863 OPT_CALLBACK('e', "event", &evsel_list, "event",
1864 "event selector. use 'perf list' to list available events",
1865 parse_events_option),
1866 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1867 "event filter", parse_filter),
Jiri Olsa5698f262018-08-30 08:32:12 +02001868 OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit,
Jiri Olsae0547312015-11-05 15:40:45 +01001869 "child tasks do not inherit counters"),
1870 OPT_STRING('p', "pid", &target.pid, "pid",
1871 "stat events on existing process id"),
1872 OPT_STRING('t', "tid", &target.tid, "tid",
1873 "stat events on existing thread id"),
1874 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1875 "system-wide collection from all CPUs"),
1876 OPT_BOOLEAN('g', "group", &group,
1877 "put the counters into a counter group"),
1878 OPT_BOOLEAN('c', "scale", &stat_config.scale, "scale/normalize counters"),
1879 OPT_INCR('v', "verbose", &verbose,
1880 "be more verbose (show counter open errors, etc)"),
1881 OPT_INTEGER('r', "repeat", &run_count,
1882 "repeat command and print average + stddev (max: 100, forever: 0)"),
Jiri Olsae55c14a2018-04-23 11:08:21 +02001883 OPT_BOOLEAN(0, "table", &walltime_run_table,
1884 "display details about each run (only with -r option)"),
Jiri Olsae0547312015-11-05 15:40:45 +01001885 OPT_BOOLEAN('n', "null", &null_run,
1886 "null run - dont start any counters"),
1887 OPT_INCR('d', "detailed", &detailed_run,
1888 "detailed run - start a lot of events"),
1889 OPT_BOOLEAN('S', "sync", &sync_run,
1890 "call sync() before starting a run"),
1891 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1892 "print large numbers with thousands\' separators",
1893 stat__set_big_num),
1894 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1895 "list of cpus to monitor in system-wide"),
1896 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
1897 "disable CPU count aggregation", AGGR_NONE),
Andi Kleen430daf22017-03-20 13:17:00 -07001898 OPT_BOOLEAN(0, "no-merge", &no_merge, "Do not merge identical named events"),
Jiri Olsae0547312015-11-05 15:40:45 +01001899 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1900 "print counts with custom separator"),
1901 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1902 "monitor event in cgroup name only", parse_cgroups),
1903 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1904 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1905 OPT_INTEGER(0, "log-fd", &output_fd,
1906 "log output to fd, instead of stderr"),
1907 OPT_STRING(0, "pre", &pre_cmd, "command",
1908 "command to run prior to the measured command"),
1909 OPT_STRING(0, "post", &post_cmd, "command",
1910 "command to run after to the measured command"),
1911 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Alexey Budankov9dc9a952018-04-03 21:18:33 +03001912 "print counts at regular interval in ms "
1913 "(overhead is possible for values <= 100ms)"),
yuzhoujiandb06a262018-01-29 10:25:22 +01001914 OPT_INTEGER(0, "interval-count", &stat_config.times,
1915 "print counts for fixed number of times"),
Jiri Olsa9660e082018-06-07 00:15:06 +02001916 OPT_BOOLEAN(0, "interval-clear", &interval_clear,
1917 "clear screen in between new interval"),
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001918 OPT_UINTEGER(0, "timeout", &stat_config.timeout,
1919 "stop workload and print counts after a timeout period in ms (>= 10ms)"),
Jiri Olsae0547312015-11-05 15:40:45 +01001920 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
1921 "aggregate counts per processor socket", AGGR_SOCKET),
1922 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
1923 "aggregate counts per physical processor core", AGGR_CORE),
1924 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
1925 "aggregate counts per thread", AGGR_THREAD),
Jiri Olsa728c0ee2018-08-30 08:32:11 +02001926 OPT_UINTEGER('D', "delay", &stat_config.initial_delay,
Jiri Olsae0547312015-11-05 15:40:45 +01001927 "ms to wait before starting measurement after program start"),
Andi Kleen44b1e602016-05-30 12:49:42 -03001928 OPT_CALLBACK_NOOPT(0, "metric-only", &metric_only, NULL,
1929 "Only print computed metrics. No raw values", enable_metric_only),
1930 OPT_BOOLEAN(0, "topdown", &topdown_run,
1931 "measure topdown level 1 statistics"),
Kan Liangdaefd0b2017-05-26 12:05:38 -07001932 OPT_BOOLEAN(0, "smi-cost", &smi_cost,
1933 "measure SMI cost"),
Andi Kleenb18f3e32017-08-31 12:40:31 -07001934 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
1935 "monitor specified metrics or metric groups (separated by ,)",
1936 parse_metric_groups),
Jiri Olsae0547312015-11-05 15:40:45 +01001937 OPT_END()
1938};
1939
Jiri Olsa1fe7a302015-10-16 12:41:15 +02001940static int perf_stat__get_socket(struct cpu_map *map, int cpu)
1941{
1942 return cpu_map__get_socket(map, cpu, NULL);
1943}
1944
1945static int perf_stat__get_core(struct cpu_map *map, int cpu)
1946{
1947 return cpu_map__get_core(map, cpu, NULL);
1948}
1949
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001950static int cpu_map__get_max(struct cpu_map *map)
1951{
1952 int i, max = -1;
1953
1954 for (i = 0; i < map->nr; i++) {
1955 if (map->map[i] > max)
1956 max = map->map[i];
1957 }
1958
1959 return max;
1960}
1961
1962static struct cpu_map *cpus_aggr_map;
1963
1964static int perf_stat__get_aggr(aggr_get_id_t get_id, struct cpu_map *map, int idx)
1965{
1966 int cpu;
1967
1968 if (idx >= map->nr)
1969 return -1;
1970
1971 cpu = map->map[idx];
1972
1973 if (cpus_aggr_map->map[cpu] == -1)
1974 cpus_aggr_map->map[cpu] = get_id(map, idx);
1975
1976 return cpus_aggr_map->map[cpu];
1977}
1978
1979static int perf_stat__get_socket_cached(struct cpu_map *map, int idx)
1980{
1981 return perf_stat__get_aggr(perf_stat__get_socket, map, idx);
1982}
1983
1984static int perf_stat__get_core_cached(struct cpu_map *map, int idx)
1985{
1986 return perf_stat__get_aggr(perf_stat__get_core, map, idx);
1987}
1988
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001989static int perf_stat_init_aggr_mode(void)
1990{
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001991 int nr;
1992
Jiri Olsa421a50f2015-07-21 14:31:22 +02001993 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001994 case AGGR_SOCKET:
1995 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1996 perror("cannot build socket map");
1997 return -1;
1998 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001999 aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002000 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01002001 case AGGR_CORE:
2002 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
2003 perror("cannot build core map");
2004 return -1;
2005 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01002006 aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +01002007 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002008 case AGGR_NONE:
2009 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02002010 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +02002011 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002012 default:
2013 break;
2014 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01002015
2016 /*
2017 * The evsel_list->cpus is the base we operate on,
2018 * taking the highest cpu number to be the size of
2019 * the aggregation translate cpumap.
2020 */
2021 nr = cpu_map__get_max(evsel_list->cpus);
2022 cpus_aggr_map = cpu_map__empty_new(nr + 1);
2023 return cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002024}
2025
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09002026static void perf_stat__exit_aggr_mode(void)
2027{
2028 cpu_map__put(aggr_map);
2029 cpu_map__put(cpus_aggr_map);
2030 aggr_map = NULL;
2031 cpus_aggr_map = NULL;
2032}
2033
Jiri Olsa68d702f2015-11-05 15:40:58 +01002034static inline int perf_env__get_cpu(struct perf_env *env, struct cpu_map *map, int idx)
2035{
2036 int cpu;
2037
2038 if (idx > map->nr)
2039 return -1;
2040
2041 cpu = map->map[idx];
2042
Jan Stancekda8a58b2017-02-17 12:10:26 +01002043 if (cpu >= env->nr_cpus_avail)
Jiri Olsa68d702f2015-11-05 15:40:58 +01002044 return -1;
2045
2046 return cpu;
2047}
2048
2049static int perf_env__get_socket(struct cpu_map *map, int idx, void *data)
2050{
2051 struct perf_env *env = data;
2052 int cpu = perf_env__get_cpu(env, map, idx);
2053
2054 return cpu == -1 ? -1 : env->cpu[cpu].socket_id;
2055}
2056
2057static int perf_env__get_core(struct cpu_map *map, int idx, void *data)
2058{
2059 struct perf_env *env = data;
2060 int core = -1, cpu = perf_env__get_cpu(env, map, idx);
2061
2062 if (cpu != -1) {
2063 int socket_id = env->cpu[cpu].socket_id;
2064
2065 /*
2066 * Encode socket in upper 16 bits
2067 * core_id is relative to socket, and
2068 * we need a global id. So we combine
2069 * socket + core id.
2070 */
2071 core = (socket_id << 16) | (env->cpu[cpu].core_id & 0xffff);
2072 }
2073
2074 return core;
2075}
2076
2077static int perf_env__build_socket_map(struct perf_env *env, struct cpu_map *cpus,
2078 struct cpu_map **sockp)
2079{
2080 return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
2081}
2082
2083static int perf_env__build_core_map(struct perf_env *env, struct cpu_map *cpus,
2084 struct cpu_map **corep)
2085{
2086 return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
2087}
2088
2089static int perf_stat__get_socket_file(struct cpu_map *map, int idx)
2090{
2091 return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
2092}
2093
2094static int perf_stat__get_core_file(struct cpu_map *map, int idx)
2095{
2096 return perf_env__get_core(map, idx, &perf_stat.session->header.env);
2097}
2098
2099static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
2100{
2101 struct perf_env *env = &st->session->header.env;
2102
2103 switch (stat_config.aggr_mode) {
2104 case AGGR_SOCKET:
2105 if (perf_env__build_socket_map(env, evsel_list->cpus, &aggr_map)) {
2106 perror("cannot build socket map");
2107 return -1;
2108 }
2109 aggr_get_id = perf_stat__get_socket_file;
2110 break;
2111 case AGGR_CORE:
2112 if (perf_env__build_core_map(env, evsel_list->cpus, &aggr_map)) {
2113 perror("cannot build core map");
2114 return -1;
2115 }
2116 aggr_get_id = perf_stat__get_core_file;
2117 break;
2118 case AGGR_NONE:
2119 case AGGR_GLOBAL:
2120 case AGGR_THREAD:
2121 case AGGR_UNSET:
2122 default:
2123 break;
2124 }
2125
2126 return 0;
2127}
2128
Andi Kleen44b1e602016-05-30 12:49:42 -03002129static int topdown_filter_events(const char **attr, char **str, bool use_group)
2130{
2131 int off = 0;
2132 int i;
2133 int len = 0;
2134 char *s;
2135
2136 for (i = 0; attr[i]; i++) {
2137 if (pmu_have_event("cpu", attr[i])) {
2138 len += strlen(attr[i]) + 1;
2139 attr[i - off] = attr[i];
2140 } else
2141 off++;
2142 }
2143 attr[i - off] = NULL;
2144
2145 *str = malloc(len + 1 + 2);
2146 if (!*str)
2147 return -1;
2148 s = *str;
2149 if (i - off == 0) {
2150 *s = 0;
2151 return 0;
2152 }
2153 if (use_group)
2154 *s++ = '{';
2155 for (i = 0; attr[i]; i++) {
2156 strcpy(s, attr[i]);
2157 s += strlen(s);
2158 *s++ = ',';
2159 }
2160 if (use_group) {
2161 s[-1] = '}';
2162 *s = 0;
2163 } else
2164 s[-1] = 0;
2165 return 0;
2166}
2167
2168__weak bool arch_topdown_check_group(bool *warn)
2169{
2170 *warn = false;
2171 return false;
2172}
2173
2174__weak void arch_topdown_group_warn(void)
2175{
2176}
2177
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002178/*
2179 * Add default attributes, if there were no attributes specified or
2180 * if -d/--detailed, -d -d or -d -d -d is used:
2181 */
2182static int add_default_attributes(void)
2183{
Andi Kleen44b1e602016-05-30 12:49:42 -03002184 int err;
Andi Kleen9dec4472016-02-26 16:27:56 -08002185 struct perf_event_attr default_attrs0[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002186
2187 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
2188 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
2189 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
2190 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
2191
2192 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Andi Kleen9dec4472016-02-26 16:27:56 -08002193};
2194 struct perf_event_attr frontend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002195 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08002196};
2197 struct perf_event_attr backend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002198 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08002199};
2200 struct perf_event_attr default_attrs1[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002201 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
2202 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
2203 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
2204
2205};
2206
2207/*
2208 * Detailed stats (-d), covering the L1 and last level data caches:
2209 */
2210 struct perf_event_attr detailed_attrs[] = {
2211
2212 { .type = PERF_TYPE_HW_CACHE,
2213 .config =
2214 PERF_COUNT_HW_CACHE_L1D << 0 |
2215 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2216 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2217
2218 { .type = PERF_TYPE_HW_CACHE,
2219 .config =
2220 PERF_COUNT_HW_CACHE_L1D << 0 |
2221 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2222 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2223
2224 { .type = PERF_TYPE_HW_CACHE,
2225 .config =
2226 PERF_COUNT_HW_CACHE_LL << 0 |
2227 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2228 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2229
2230 { .type = PERF_TYPE_HW_CACHE,
2231 .config =
2232 PERF_COUNT_HW_CACHE_LL << 0 |
2233 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2234 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2235};
2236
2237/*
2238 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
2239 */
2240 struct perf_event_attr very_detailed_attrs[] = {
2241
2242 { .type = PERF_TYPE_HW_CACHE,
2243 .config =
2244 PERF_COUNT_HW_CACHE_L1I << 0 |
2245 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2246 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2247
2248 { .type = PERF_TYPE_HW_CACHE,
2249 .config =
2250 PERF_COUNT_HW_CACHE_L1I << 0 |
2251 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2252 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2253
2254 { .type = PERF_TYPE_HW_CACHE,
2255 .config =
2256 PERF_COUNT_HW_CACHE_DTLB << 0 |
2257 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2258 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2259
2260 { .type = PERF_TYPE_HW_CACHE,
2261 .config =
2262 PERF_COUNT_HW_CACHE_DTLB << 0 |
2263 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2264 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2265
2266 { .type = PERF_TYPE_HW_CACHE,
2267 .config =
2268 PERF_COUNT_HW_CACHE_ITLB << 0 |
2269 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2270 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2271
2272 { .type = PERF_TYPE_HW_CACHE,
2273 .config =
2274 PERF_COUNT_HW_CACHE_ITLB << 0 |
2275 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2276 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2277
2278};
2279
2280/*
2281 * Very, very detailed stats (-d -d -d), adding prefetch events:
2282 */
2283 struct perf_event_attr very_very_detailed_attrs[] = {
2284
2285 { .type = PERF_TYPE_HW_CACHE,
2286 .config =
2287 PERF_COUNT_HW_CACHE_L1D << 0 |
2288 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
2289 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2290
2291 { .type = PERF_TYPE_HW_CACHE,
2292 .config =
2293 PERF_COUNT_HW_CACHE_L1D << 0 |
2294 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
2295 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2296};
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002297 struct parse_events_error errinfo;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002298
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002299 /* Set attrs if no event is selected and !null_run: */
2300 if (null_run)
2301 return 0;
2302
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002303 if (transaction_run) {
Thomas Richter742d92f2018-06-26 09:17:01 +02002304 /* Handle -T as -M transaction. Once platform specific metrics
2305 * support has been added to the json files, all archictures
2306 * will use this approach. To determine transaction support
2307 * on an architecture test for such a metric name.
2308 */
2309 if (metricgroup__has_metric("transaction")) {
2310 struct option opt = { .value = &evsel_list };
2311
2312 return metricgroup__parse_groups(&opt, "transaction",
2313 &metric_events);
2314 }
2315
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002316 if (pmu_have_event("cpu", "cycles-ct") &&
2317 pmu_have_event("cpu", "el-start"))
Thomas Richterfca323402018-03-08 15:57:35 +01002318 err = parse_events(evsel_list, transaction_attrs,
2319 &errinfo);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002320 else
Thomas Richterfca323402018-03-08 15:57:35 +01002321 err = parse_events(evsel_list,
2322 transaction_limited_attrs,
2323 &errinfo);
Jiri Olsaa4547422015-06-03 16:25:53 +02002324 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002325 fprintf(stderr, "Cannot set up transaction events\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002326 parse_events_print_error(&errinfo, transaction_attrs);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002327 return -1;
2328 }
2329 return 0;
2330 }
2331
Kan Liangdaefd0b2017-05-26 12:05:38 -07002332 if (smi_cost) {
2333 int smi;
2334
2335 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
2336 fprintf(stderr, "freeze_on_smi is not supported.\n");
2337 return -1;
2338 }
2339
2340 if (!smi) {
2341 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
2342 fprintf(stderr, "Failed to set freeze_on_smi.\n");
2343 return -1;
2344 }
2345 smi_reset = true;
2346 }
2347
2348 if (pmu_have_event("msr", "aperf") &&
2349 pmu_have_event("msr", "smi")) {
2350 if (!force_metric_only)
2351 metric_only = true;
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002352 err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
Kan Liangdaefd0b2017-05-26 12:05:38 -07002353 } else {
2354 fprintf(stderr, "To measure SMI cost, it needs "
2355 "msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002356 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07002357 return -1;
2358 }
2359 if (err) {
2360 fprintf(stderr, "Cannot set up SMI cost events\n");
2361 return -1;
2362 }
2363 return 0;
2364 }
2365
Andi Kleen44b1e602016-05-30 12:49:42 -03002366 if (topdown_run) {
2367 char *str = NULL;
2368 bool warn = false;
2369
2370 if (stat_config.aggr_mode != AGGR_GLOBAL &&
2371 stat_config.aggr_mode != AGGR_CORE) {
2372 pr_err("top down event configuration requires --per-core mode\n");
2373 return -1;
2374 }
2375 stat_config.aggr_mode = AGGR_CORE;
2376 if (nr_cgroups || !target__has_cpu(&target)) {
2377 pr_err("top down event configuration requires system-wide mode (-a)\n");
2378 return -1;
2379 }
2380
2381 if (!force_metric_only)
2382 metric_only = true;
2383 if (topdown_filter_events(topdown_attrs, &str,
2384 arch_topdown_check_group(&warn)) < 0) {
2385 pr_err("Out of memory\n");
2386 return -1;
2387 }
2388 if (topdown_attrs[0] && str) {
2389 if (warn)
2390 arch_topdown_group_warn();
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002391 err = parse_events(evsel_list, str, &errinfo);
Andi Kleen44b1e602016-05-30 12:49:42 -03002392 if (err) {
2393 fprintf(stderr,
2394 "Cannot set up top down events %s: %d\n",
2395 str, err);
2396 free(str);
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002397 parse_events_print_error(&errinfo, str);
Andi Kleen44b1e602016-05-30 12:49:42 -03002398 return -1;
2399 }
2400 } else {
2401 fprintf(stderr, "System does not support topdown\n");
2402 return -1;
2403 }
2404 free(str);
2405 }
2406
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002407 if (!evsel_list->nr_entries) {
Namhyung Kima1f3d562016-05-13 15:01:03 +09002408 if (target__has_cpu(&target))
2409 default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
2410
Andi Kleen9dec4472016-02-26 16:27:56 -08002411 if (perf_evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
2412 return -1;
2413 if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
2414 if (perf_evlist__add_default_attrs(evsel_list,
2415 frontend_attrs) < 0)
2416 return -1;
2417 }
2418 if (pmu_have_event("cpu", "stalled-cycles-backend")) {
2419 if (perf_evlist__add_default_attrs(evsel_list,
2420 backend_attrs) < 0)
2421 return -1;
2422 }
2423 if (perf_evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02002424 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002425 }
2426
2427 /* Detailed events get appended to the event list: */
2428
2429 if (detailed_run < 1)
2430 return 0;
2431
2432 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03002433 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02002434 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002435
2436 if (detailed_run < 2)
2437 return 0;
2438
2439 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03002440 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02002441 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002442
2443 if (detailed_run < 3)
2444 return 0;
2445
2446 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03002447 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002448}
2449
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002450static const char * const stat_record_usage[] = {
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002451 "perf stat record [<options>]",
2452 NULL,
2453};
2454
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01002455static void init_features(struct perf_session *session)
2456{
2457 int feat;
2458
2459 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
2460 perf_header__set_feat(&session->header, feat);
2461
2462 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
2463 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
2464 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
2465 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
2466}
2467
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002468static int __cmd_record(int argc, const char **argv)
2469{
2470 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002471 struct perf_data *data = &perf_stat.data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002472
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002473 argc = parse_options(argc, argv, stat_options, stat_record_usage,
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002474 PARSE_OPT_STOP_AT_NON_OPTION);
2475
2476 if (output_name)
Jiri Olsaeae8ad82017-01-23 22:25:41 +01002477 data->file.path = output_name;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002478
Jiri Olsae9d6db8e82015-11-05 15:40:53 +01002479 if (run_count != 1 || forever) {
2480 pr_err("Cannot use -r option with perf stat record.\n");
2481 return -1;
2482 }
2483
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002484 session = perf_session__new(data, false, NULL);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002485 if (session == NULL) {
2486 pr_err("Perf session creation failed.\n");
2487 return -1;
2488 }
2489
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01002490 init_features(session);
2491
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002492 session->evlist = evsel_list;
2493 perf_stat.session = session;
2494 perf_stat.record = true;
2495 return argc;
2496}
2497
Jiri Olsaa56f9392015-11-05 15:40:59 +01002498static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
2499 union perf_event *event,
2500 struct perf_session *session)
2501{
Andi Kleene3b03b62016-05-05 16:04:03 -07002502 struct stat_round_event *stat_round = &event->stat_round;
Jiri Olsaa56f9392015-11-05 15:40:59 +01002503 struct perf_evsel *counter;
2504 struct timespec tsh, *ts = NULL;
2505 const char **argv = session->header.env.cmdline_argv;
2506 int argc = session->header.env.nr_cmdline;
2507
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002508 evlist__for_each_entry(evsel_list, counter)
Jiri Olsaa56f9392015-11-05 15:40:59 +01002509 perf_stat_process_counter(&stat_config, counter);
2510
Andi Kleene3b03b62016-05-05 16:04:03 -07002511 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
2512 update_stats(&walltime_nsecs_stats, stat_round->time);
Jiri Olsaa56f9392015-11-05 15:40:59 +01002513
Andi Kleene3b03b62016-05-05 16:04:03 -07002514 if (stat_config.interval && stat_round->time) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -03002515 tsh.tv_sec = stat_round->time / NSEC_PER_SEC;
2516 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
Jiri Olsaa56f9392015-11-05 15:40:59 +01002517 ts = &tsh;
2518 }
2519
2520 print_counters(ts, argc, argv);
2521 return 0;
2522}
2523
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002524static
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03002525int process_stat_config_event(struct perf_tool *tool,
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002526 union perf_event *event,
2527 struct perf_session *session __maybe_unused)
2528{
Jiri Olsa68d702f2015-11-05 15:40:58 +01002529 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2530
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002531 perf_event__read_stat_config(&stat_config, &event->stat_config);
Jiri Olsa68d702f2015-11-05 15:40:58 +01002532
Jiri Olsa89af4e02015-11-05 15:41:02 +01002533 if (cpu_map__empty(st->cpus)) {
2534 if (st->aggr_mode != AGGR_UNSET)
2535 pr_warning("warning: processing task data, aggregation mode not set\n");
2536 return 0;
2537 }
2538
2539 if (st->aggr_mode != AGGR_UNSET)
2540 stat_config.aggr_mode = st->aggr_mode;
2541
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002542 if (perf_stat.data.is_pipe)
Jiri Olsa68d702f2015-11-05 15:40:58 +01002543 perf_stat_init_aggr_mode();
2544 else
2545 perf_stat_init_aggr_mode_file(st);
2546
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002547 return 0;
2548}
2549
Jiri Olsa1975d362015-11-05 15:40:56 +01002550static int set_maps(struct perf_stat *st)
2551{
2552 if (!st->cpus || !st->threads)
2553 return 0;
2554
2555 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
2556 return -EINVAL;
2557
2558 perf_evlist__set_maps(evsel_list, st->cpus, st->threads);
2559
2560 if (perf_evlist__alloc_stats(evsel_list, true))
2561 return -ENOMEM;
2562
2563 st->maps_allocated = true;
2564 return 0;
2565}
2566
2567static
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03002568int process_thread_map_event(struct perf_tool *tool,
Jiri Olsa1975d362015-11-05 15:40:56 +01002569 union perf_event *event,
2570 struct perf_session *session __maybe_unused)
2571{
2572 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2573
2574 if (st->threads) {
2575 pr_warning("Extra thread map event, ignoring.\n");
2576 return 0;
2577 }
2578
2579 st->threads = thread_map__new_event(&event->thread_map);
2580 if (!st->threads)
2581 return -ENOMEM;
2582
2583 return set_maps(st);
2584}
2585
2586static
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03002587int process_cpu_map_event(struct perf_tool *tool,
Jiri Olsa1975d362015-11-05 15:40:56 +01002588 union perf_event *event,
2589 struct perf_session *session __maybe_unused)
2590{
2591 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2592 struct cpu_map *cpus;
2593
2594 if (st->cpus) {
2595 pr_warning("Extra cpu map event, ignoring.\n");
2596 return 0;
2597 }
2598
2599 cpus = cpu_map__new_data(&event->cpu_map.data);
2600 if (!cpus)
2601 return -ENOMEM;
2602
2603 st->cpus = cpus;
2604 return set_maps(st);
2605}
2606
Jin Yao56739442017-12-05 22:03:07 +08002607static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
2608{
2609 int i;
2610
2611 config->stats = calloc(nthreads, sizeof(struct runtime_stat));
2612 if (!config->stats)
2613 return -1;
2614
2615 config->stats_num = nthreads;
2616
2617 for (i = 0; i < nthreads; i++)
2618 runtime_stat__init(&config->stats[i]);
2619
2620 return 0;
2621}
2622
2623static void runtime_stat_delete(struct perf_stat_config *config)
2624{
2625 int i;
2626
2627 if (!config->stats)
2628 return;
2629
2630 for (i = 0; i < config->stats_num; i++)
2631 runtime_stat__exit(&config->stats[i]);
2632
2633 free(config->stats);
2634}
2635
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002636static const char * const stat_report_usage[] = {
Jiri Olsaba6039b62015-11-05 15:40:55 +01002637 "perf stat report [<options>]",
2638 NULL,
2639};
2640
2641static struct perf_stat perf_stat = {
2642 .tool = {
2643 .attr = perf_event__process_attr,
Jiri Olsafa6ea782015-11-05 15:41:00 +01002644 .event_update = perf_event__process_event_update,
Jiri Olsa1975d362015-11-05 15:40:56 +01002645 .thread_map = process_thread_map_event,
2646 .cpu_map = process_cpu_map_event,
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002647 .stat_config = process_stat_config_event,
Jiri Olsaa56f9392015-11-05 15:40:59 +01002648 .stat = perf_event__process_stat_event,
2649 .stat_round = process_stat_round_event,
Jiri Olsaba6039b62015-11-05 15:40:55 +01002650 },
Jiri Olsa89af4e02015-11-05 15:41:02 +01002651 .aggr_mode = AGGR_UNSET,
Jiri Olsaba6039b62015-11-05 15:40:55 +01002652};
2653
2654static int __cmd_report(int argc, const char **argv)
2655{
2656 struct perf_session *session;
2657 const struct option options[] = {
2658 OPT_STRING('i', "input", &input_name, "file", "input file name"),
Jiri Olsa89af4e02015-11-05 15:41:02 +01002659 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
2660 "aggregate counts per processor socket", AGGR_SOCKET),
2661 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
2662 "aggregate counts per physical processor core", AGGR_CORE),
2663 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
2664 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsaba6039b62015-11-05 15:40:55 +01002665 OPT_END()
2666 };
2667 struct stat st;
2668 int ret;
2669
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002670 argc = parse_options(argc, argv, options, stat_report_usage, 0);
Jiri Olsaba6039b62015-11-05 15:40:55 +01002671
2672 if (!input_name || !strlen(input_name)) {
2673 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
2674 input_name = "-";
2675 else
2676 input_name = "perf.data";
2677 }
2678
Jiri Olsaeae8ad82017-01-23 22:25:41 +01002679 perf_stat.data.file.path = input_name;
2680 perf_stat.data.mode = PERF_DATA_MODE_READ;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002681
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002682 session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
Jiri Olsaba6039b62015-11-05 15:40:55 +01002683 if (session == NULL)
2684 return -1;
2685
2686 perf_stat.session = session;
2687 stat_config.output = stderr;
2688 evsel_list = session->evlist;
2689
2690 ret = perf_session__process_events(session);
2691 if (ret)
2692 return ret;
2693
2694 perf_session__delete(session);
2695 return 0;
2696}
2697
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002698static void setup_system_wide(int forks)
2699{
2700 /*
2701 * Make system wide (-a) the default target if
2702 * no target was specified and one of following
2703 * conditions is met:
2704 *
2705 * - there's no workload specified
2706 * - there is workload specified but all requested
2707 * events are system wide events
2708 */
2709 if (!target__none(&target))
2710 return;
2711
2712 if (!forks)
2713 target.system_wide = true;
2714 else {
2715 struct perf_evsel *counter;
2716
2717 evlist__for_each_entry(evsel_list, counter) {
2718 if (!counter->system_wide)
2719 return;
2720 }
2721
2722 if (evsel_list->nr_entries)
2723 target.system_wide = true;
2724 }
2725}
2726
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002727int cmd_stat(int argc, const char **argv)
Ingo Molnar52425192009-05-26 09:17:18 +02002728{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002729 const char * const stat_usage[] = {
2730 "perf stat [<options>] [<command>]",
2731 NULL
2732 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09002733 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02002734 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02002735 FILE *output = stderr;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002736 unsigned int interval, timeout;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002737 const char * const stat_subcommands[] = { "record", "report" };
Ingo Molnar42202dd2009-06-13 14:57:28 +02002738
Stephane Eranian5af52b52010-05-18 15:00:01 +02002739 setlocale(LC_ALL, "");
2740
Namhyung Kim334fe7a2013-03-11 16:43:12 +09002741 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02002742 if (evsel_list == NULL)
2743 return -ENOMEM;
2744
Wang Nan1669e502016-02-19 11:43:58 +00002745 parse_events__shrink_config_terms();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002746 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
2747 (const char **) stat_usage,
2748 PARSE_OPT_STOP_AT_NON_OPTION);
Andi Kleen37932c12017-03-20 13:17:08 -07002749 perf_stat__collect_metric_expr(evsel_list);
Andi Kleenfb4605b2016-03-01 10:57:52 -08002750 perf_stat__init_shadow_stats();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002751
Jiri Olsa6edb78a2015-11-05 15:41:01 +01002752 if (csv_sep) {
2753 csv_output = true;
2754 if (!strcmp(csv_sep, "\\t"))
2755 csv_sep = "\t";
2756 } else
2757 csv_sep = DEFAULT_SEPARATOR;
2758
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002759 if (argc && !strncmp(argv[0], "rec", 3)) {
2760 argc = __cmd_record(argc, argv);
2761 if (argc < 0)
2762 return -1;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002763 } else if (argc && !strncmp(argv[0], "rep", 3))
2764 return __cmd_report(argc, argv);
Stephane Eraniand7470b62010-12-01 18:49:05 +02002765
Jiri Olsaec0d3d12015-07-21 14:31:25 +02002766 interval = stat_config.interval;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002767 timeout = stat_config.timeout;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02002768
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002769 /*
2770 * For record command the -o is already taken care of.
2771 */
2772 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
Stephane Eranian4aa90152011-08-15 22:22:33 +02002773 output = NULL;
2774
Jim Cromie56f3bae2011-09-07 17:14:00 -06002775 if (output_name && output_fd) {
2776 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002777 parse_options_usage(stat_usage, stat_options, "o", 1);
2778 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002779 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06002780 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002781
Andi Kleen54b50912016-03-03 15:57:36 -08002782 if (metric_only && stat_config.aggr_mode == AGGR_THREAD) {
2783 fprintf(stderr, "--metric-only is not supported with --per-thread\n");
2784 goto out;
2785 }
2786
Andi Kleen54b50912016-03-03 15:57:36 -08002787 if (metric_only && run_count > 1) {
2788 fprintf(stderr, "--metric-only is not supported with -r\n");
2789 goto out;
2790 }
2791
Jiri Olsae55c14a2018-04-23 11:08:21 +02002792 if (walltime_run_table && run_count <= 1) {
2793 fprintf(stderr, "--table is only supported with -r\n");
2794 parse_options_usage(stat_usage, stat_options, "r", 1);
2795 parse_options_usage(NULL, stat_options, "table", 0);
2796 goto out;
2797 }
2798
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002799 if (output_fd < 0) {
2800 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002801 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002802 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002803 }
2804
Stephane Eranian4aa90152011-08-15 22:22:33 +02002805 if (!output) {
2806 struct timespec tm;
2807 mode = append_file ? "a" : "w";
2808
2809 output = fopen(output_name, mode);
2810 if (!output) {
2811 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06002812 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02002813 }
2814 clock_gettime(CLOCK_REALTIME, &tm);
2815 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002816 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06002817 mode = append_file ? "a" : "w";
2818 output = fdopen(output_fd, mode);
2819 if (!output) {
2820 perror("Failed opening logfd");
2821 return -errno;
2822 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02002823 }
2824
Jiri Olsa58215222015-07-21 14:31:24 +02002825 stat_config.output = output;
2826
Stephane Eraniand7470b62010-12-01 18:49:05 +02002827 /*
2828 * let the spreadsheet do the pretty-printing
2829 */
2830 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06002831 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02002832 if (big_num_opt == 1) {
2833 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002834 parse_options_usage(stat_usage, stat_options, "B", 1);
2835 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002836 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02002837 } else /* Nope, so disable big number formatting */
2838 big_num = false;
2839 } else if (big_num_opt == 0) /* User passed --no-big-num */
2840 big_num = false;
2841
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002842 setup_system_wide(argc);
David Ahernac3063b2013-09-30 07:37:37 -06002843
Jiri Olsa0ce2da12018-06-05 14:13:13 +02002844 /*
2845 * Display user/system times only for single
2846 * run and when there's specified tracee.
2847 */
2848 if ((run_count == 1) && target__none(&target))
2849 ru_display = true;
2850
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002851 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09002852 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002853 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002854 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002855 } else if (run_count == 0) {
2856 forever = true;
2857 run_count = 1;
2858 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002859
Jiri Olsae55c14a2018-04-23 11:08:21 +02002860 if (walltime_run_table) {
2861 walltime_run = zalloc(run_count * sizeof(walltime_run[0]));
2862 if (!walltime_run) {
2863 pr_err("failed to setup -r option");
2864 goto out;
2865 }
2866 }
2867
Jin Yao1d9f8d12017-12-05 22:03:10 +08002868 if ((stat_config.aggr_mode == AGGR_THREAD) &&
2869 !target__has_task(&target)) {
2870 if (!target.system_wide || target.cpu_list) {
2871 fprintf(stderr, "The --per-thread option is only "
2872 "available when monitoring via -p -t -a "
2873 "options or only --per-thread.\n");
2874 parse_options_usage(NULL, stat_options, "p", 1);
2875 parse_options_usage(NULL, stat_options, "t", 1);
2876 goto out;
2877 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02002878 }
2879
2880 /*
2881 * no_aggr, cgroup are for system-wide only
2882 * --per-thread is aggregated per thread, we dont mix it with cpu mode
2883 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02002884 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
2885 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002886 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02002887 fprintf(stderr, "both cgroup and no-aggregation "
2888 "modes only available in system-wide mode\n");
2889
Jiri Olsae0547312015-11-05 15:40:45 +01002890 parse_options_usage(stat_usage, stat_options, "G", 1);
2891 parse_options_usage(NULL, stat_options, "A", 1);
2892 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002893 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01002894 }
2895
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002896 if (add_default_attributes())
2897 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002898
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002899 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02002900
Jin Yao1d9f8d12017-12-05 22:03:10 +08002901 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
2902 target.per_thread = true;
2903
Namhyung Kim77a6f012012-05-07 14:09:04 +09002904 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002905 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09002906 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002907 parse_options_usage(stat_usage, stat_options, "p", 1);
2908 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002909 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09002910 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01002911 parse_options_usage(stat_usage, stat_options, "C", 1);
2912 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002913 }
2914 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02002915 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02002916
2917 /*
2918 * Initialize thread_map with comm names,
2919 * so we could print it out on output.
2920 */
Jin Yao56739442017-12-05 22:03:07 +08002921 if (stat_config.aggr_mode == AGGR_THREAD) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02002922 thread_map__read_comms(evsel_list->threads);
Jin Yao56739442017-12-05 22:03:07 +08002923 if (target.system_wide) {
2924 if (runtime_stat_new(&stat_config,
2925 thread_map__nr(evsel_list->threads))) {
2926 goto out;
2927 }
2928 }
2929 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02002930
yuzhoujiandb06a262018-01-29 10:25:22 +01002931 if (stat_config.times && interval)
2932 interval_count = true;
2933 else if (stat_config.times && !interval) {
2934 pr_err("interval-count option should be used together with "
2935 "interval-print.\n");
2936 parse_options_usage(stat_usage, stat_options, "interval-count", 0);
2937 parse_options_usage(stat_usage, stat_options, "I", 1);
2938 goto out;
2939 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02002940
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002941 if (timeout && timeout < 100) {
2942 if (timeout < 10) {
2943 pr_err("timeout must be >= 10ms.\n");
2944 parse_options_usage(stat_usage, stat_options, "timeout", 0);
2945 goto out;
2946 } else
2947 pr_warning("timeout < 100ms. "
2948 "The overhead percentage could be high in some cases. "
2949 "Please proceed with caution.\n");
2950 }
2951 if (timeout && interval) {
2952 pr_err("timeout option is not supported with interval-print.\n");
2953 parse_options_usage(stat_usage, stat_options, "timeout", 0);
2954 parse_options_usage(stat_usage, stat_options, "I", 1);
2955 goto out;
2956 }
2957
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03002958 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03002959 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03002960
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002961 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03002962 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002963
Ingo Molnar58d7e992009-05-15 11:03:23 +02002964 /*
Jiri Olsa7d9ad162018-08-30 08:32:14 +02002965 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
2966 * while avoiding that older tools show confusing messages.
2967 *
2968 * However for pipe sessions we need to keep it zero,
2969 * because script's perf_evsel__check_attr is triggered
2970 * by attr->sample_type != 0, and we can't run it on
2971 * stat sessions.
2972 */
2973 stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe);
2974
2975 /*
Ingo Molnar58d7e992009-05-15 11:03:23 +02002976 * We dont want to block the signals - that would cause
2977 * child tasks to inherit that and Ctrl-C would not work.
2978 * What we want is for Ctrl-C to work in the exec()-ed
2979 * task, but being ignored by perf stat itself:
2980 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02002981 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002982 if (!forever)
2983 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01002984 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02002985 signal(SIGALRM, skip_signal);
2986 signal(SIGABRT, skip_signal);
2987
Ingo Molnar42202dd2009-06-13 14:57:28 +02002988 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002989 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Namhyung Kimbb963e12017-02-17 17:17:38 +09002990 if (run_count != 1 && verbose > 0)
Stephane Eranian4aa90152011-08-15 22:22:33 +02002991 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
2992 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02002993
Jiri Olsae55c14a2018-04-23 11:08:21 +02002994 status = run_perf_stat(argc, argv, run_idx);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002995 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02002996 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02002997 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002998 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02002999 }
3000
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05003001 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02003002 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03003003
Jiri Olsa4979d0c2015-11-05 15:40:46 +01003004 if (STAT_RECORD) {
3005 /*
3006 * We synthesize the kernel mmap record just so that older tools
3007 * don't emit warnings about not being able to resolve symbols
3008 * due to /proc/sys/kernel/kptr_restrict settings and instear provide
3009 * a saner message about no samples being in the perf.data file.
3010 *
3011 * This also serves to suppress a warning about f_header.data.size == 0
Jiri Olsa8b99b1a2015-11-05 15:40:48 +01003012 * in header.c at the moment 'perf stat record' gets introduced, which
3013 * is not really needed once we start adding the stat specific PERF_RECORD_
3014 * records, but the need to suppress the kptr_restrict messages in older
3015 * tools remain -acme
Jiri Olsa4979d0c2015-11-05 15:40:46 +01003016 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003017 int fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01003018 int err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
3019 process_synthesized_event,
3020 &perf_stat.session->machines.host);
3021 if (err) {
3022 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
3023 "older tools may produce warnings about this file\n.");
3024 }
3025
Jiri Olsa7aad0c32015-11-05 15:40:52 +01003026 if (!interval) {
3027 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
3028 pr_err("failed to write stat round event\n");
3029 }
3030
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003031 if (!perf_stat.data.is_pipe) {
Jiri Olsa664c98d2015-11-05 15:40:50 +01003032 perf_stat.session->header.data_size += perf_stat.bytes_written;
3033 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
3034 }
Jiri Olsa4979d0c2015-11-05 15:40:46 +01003035
3036 perf_session__delete(perf_stat.session);
3037 }
3038
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09003039 perf_stat__exit_aggr_mode();
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03003040 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02003041out:
Jiri Olsae55c14a2018-04-23 11:08:21 +02003042 free(walltime_run);
3043
Kan Liangdaefd0b2017-05-26 12:05:38 -07003044 if (smi_cost && smi_reset)
3045 sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
3046
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02003047 perf_evlist__delete(evsel_list);
Jin Yao56739442017-12-05 22:03:07 +08003048
3049 runtime_stat_delete(&stat_config);
3050
Ingo Molnar42202dd2009-06-13 14:57:28 +02003051 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02003052}