blob: 22547a490e1f9ec4e20f18a1b0483c0b2e5b0f32 [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 Eranian2e6cdf92010-05-12 10:40:01 +0200151static bool no_inherit = false;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200152static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000153static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200154static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700155static bool transaction_run;
Andi Kleen44b1e602016-05-30 12:49:42 -0300156static bool topdown_run = false;
Kan Liangdaefd0b2017-05-26 12:05:38 -0700157static bool smi_cost = false;
158static bool smi_reset = false;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200159static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200160static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200161static const char *csv_sep = NULL;
162static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800163static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200164static const char *pre_cmd = NULL;
165static const char *post_cmd = NULL;
166static bool sync_run = false;
Andi Kleen41191682013-08-02 17:41:11 -0700167static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100168static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500169static bool forever = false;
Andi Kleen54b50912016-03-03 15:57:36 -0800170static bool metric_only = false;
Andi Kleen44b1e602016-05-30 12:49:42 -0300171static bool force_metric_only = false;
Andi Kleen430daf22017-03-20 13:17:00 -0700172static bool no_merge = false;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200173static bool walltime_run_table = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100174static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100175static struct cpu_map *aggr_map;
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100176static aggr_get_id_t aggr_get_id;
Jiri Olsae0547312015-11-05 15:40:45 +0100177static bool append_file;
yuzhoujiandb06a262018-01-29 10:25:22 +0100178static bool interval_count;
Jiri Olsa9660e082018-06-07 00:15:06 +0200179static bool interval_clear;
Jiri Olsae0547312015-11-05 15:40:45 +0100180static const char *output_name;
181static int output_fd;
Borislav Petkov02d492e2017-02-07 01:40:05 +0100182static int print_free_counters_hint;
Kan Liang30060ea2018-04-24 11:20:11 -0700183static int print_mixed_hw_group_error;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200184static u64 *walltime_run;
Jiri Olsa0ce2da12018-06-05 14:13:13 +0200185static bool ru_display = false;
186static struct rusage ru_data;
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200187static unsigned int metric_only_len = METRIC_ONLY_LEN;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200188
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100189struct perf_stat {
190 bool record;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100191 struct perf_data data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100192 struct perf_session *session;
193 u64 bytes_written;
Jiri Olsaba6039b62015-11-05 15:40:55 +0100194 struct perf_tool tool;
Jiri Olsa1975d362015-11-05 15:40:56 +0100195 bool maps_allocated;
196 struct cpu_map *cpus;
197 struct thread_map *threads;
Jiri Olsa89af4e02015-11-05 15:41:02 +0100198 enum aggr_mode aggr_mode;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100199};
200
201static struct perf_stat perf_stat;
202#define STAT_RECORD perf_stat.record
203
Liming Wang60666c62009-12-31 16:05:50 +0800204static volatile int done = 0;
205
Jiri Olsa421a50f2015-07-21 14:31:22 +0200206static struct perf_stat_config stat_config = {
207 .aggr_mode = AGGR_GLOBAL,
Jiri Olsa711a5722015-07-21 14:31:23 +0200208 .scale = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200209};
210
Andi Kleene864c5c2017-08-31 12:40:35 -0700211static bool is_duration_time(struct perf_evsel *evsel)
212{
213 return !strcmp(evsel->name, "duration_time");
214}
215
Stephane Eranian13370a92013-01-29 12:47:44 +0100216static inline void diff_timespec(struct timespec *r, struct timespec *a,
217 struct timespec *b)
218{
219 r->tv_sec = a->tv_sec - b->tv_sec;
220 if (a->tv_nsec < b->tv_nsec) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300221 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
Stephane Eranian13370a92013-01-29 12:47:44 +0100222 r->tv_sec--;
223 } else {
224 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
225 }
226}
227
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200228static void perf_stat__reset_stats(void)
229{
Jin Yao56739442017-12-05 22:03:07 +0800230 int i;
231
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200232 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200233 perf_stat__reset_shadow_stats();
Jin Yao56739442017-12-05 22:03:07 +0800234
235 for (i = 0; i < stat_config.stats_num; i++)
236 perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200237}
238
Jiri Olsacac21422012-11-12 18:34:00 +0100239static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200240{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200241 struct perf_event_attr *attr = &evsel->attr;
Jiri Olsa82bf3112017-07-26 14:02:06 +0200242 struct perf_evsel *leader = evsel->leader;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200243
Jiri Olsa82bf3112017-07-26 14:02:06 +0200244 if (stat_config.scale) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200245 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
246 PERF_FORMAT_TOTAL_TIME_RUNNING;
Jiri Olsa82bf3112017-07-26 14:02:06 +0200247 }
248
249 /*
250 * The event is part of non trivial group, let's enable
251 * the group read (for leader) and ID retrieval for all
252 * members.
253 */
254 if (leader->nr_members > 1)
255 attr->read_format |= PERF_FORMAT_ID|PERF_FORMAT_GROUP;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200256
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200257 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300258
Jiri Olsa6acd8e92015-11-25 16:36:54 +0100259 /*
260 * Some events get initialized with sample_(period/type) set,
261 * like tracepoints. Clear it up for counting.
262 */
263 attr->sample_period = 0;
Jiri Olsa6db1a5c2016-01-05 22:09:05 +0100264
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100265 /*
266 * But set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
267 * while avoiding that older tools show confusing messages.
Jiri Olsa6db1a5c2016-01-05 22:09:05 +0100268 *
269 * However for pipe sessions we need to keep it zero,
270 * because script's perf_evsel__check_attr is triggered
271 * by attr->sample_type != 0, and we can't run it on
272 * stat sessions.
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100273 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100274 if (!(STAT_RECORD && perf_stat.data.is_pipe))
Jiri Olsa6db1a5c2016-01-05 22:09:05 +0100275 attr->sample_type = PERF_SAMPLE_IDENTIFIER;
Jiri Olsa6acd8e92015-11-25 16:36:54 +0100276
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100277 /*
278 * Disabling all counters initially, they will be enabled
279 * either manually by us or by kernel via enable_on_exec
280 * set later.
281 */
Jiri Olsac8280ce2015-12-03 10:06:45 +0100282 if (perf_evsel__is_group_leader(evsel)) {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100283 attr->disabled = 1;
284
Jiri Olsac8280ce2015-12-03 10:06:45 +0100285 /*
286 * In case of initial_delay we enable tracee
287 * events manually.
288 */
289 if (target__none(&target) && !initial_delay)
290 attr->enable_on_exec = 1;
291 }
292
Jin Yao1d9f8d12017-12-05 22:03:10 +0800293 if (target__has_cpu(&target) && !target__has_per_thread(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300294 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200295
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300296 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200297}
298
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200299/*
300 * Does the counter have nsecs as a unit?
301 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200302static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200303{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200304 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
305 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200306 return 1;
307
308 return 0;
309}
310
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100311static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100312 union perf_event *event,
313 struct perf_sample *sample __maybe_unused,
314 struct machine *machine __maybe_unused)
315{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100316 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100317 pr_err("failed to write perf data, error: %m\n");
318 return -1;
319 }
320
321 perf_stat.bytes_written += event->header.size;
322 return 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100323}
324
Jiri Olsa1975d362015-11-05 15:40:56 +0100325static int write_stat_round_event(u64 tm, u64 type)
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100326{
Jiri Olsa1975d362015-11-05 15:40:56 +0100327 return perf_event__synthesize_stat_round(NULL, tm, type,
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100328 process_synthesized_event,
329 NULL);
330}
331
332#define WRITE_STAT_ROUND_EVENT(time, interval) \
333 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
334
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100335#define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
336
337static int
338perf_evsel__write_stat_event(struct perf_evsel *counter, u32 cpu, u32 thread,
339 struct perf_counts_values *count)
340{
341 struct perf_sample_id *sid = SID(counter, cpu, thread);
342
343 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
344 process_synthesized_event, NULL);
345}
346
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200347/*
348 * Read out the results of a single counter:
349 * do not aggregate counts across CPUs in system-wide mode
350 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200351static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200352{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100353 int nthreads = thread_map__nr(evsel_list->threads);
Mark Rutland00e727b2016-07-15 11:08:10 +0100354 int ncpus, cpu, thread;
355
Jin Yao1d9f8d12017-12-05 22:03:10 +0800356 if (target__has_cpu(&target) && !target__has_per_thread(&target))
Mark Rutland00e727b2016-07-15 11:08:10 +0100357 ncpus = perf_evsel__nr_cpus(counter);
358 else
359 ncpus = 1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200360
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000361 if (!counter->supported)
362 return -ENOENT;
363
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100364 if (counter->system_wide)
365 nthreads = 1;
366
367 for (thread = 0; thread < nthreads; thread++) {
368 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200369 struct perf_counts_values *count;
370
371 count = perf_counts(counter->counts, cpu, thread);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200372
373 /*
374 * The leader's group read loads data into its group members
375 * (via perf_evsel__read_counter) and sets threir count->loaded.
376 */
377 if (!count->loaded &&
378 perf_evsel__read_counter(counter, cpu, thread)) {
Stephane Eraniandb49a712017-04-12 11:23:01 -0700379 counter->counts->scaled = -1;
380 perf_counts(counter->counts, cpu, thread)->ena = 0;
381 perf_counts(counter->counts, cpu, thread)->run = 0;
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100382 return -1;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700383 }
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100384
Jiri Olsa82bf3112017-07-26 14:02:06 +0200385 count->loaded = false;
386
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100387 if (STAT_RECORD) {
388 if (perf_evsel__write_stat_event(counter, cpu, thread, count)) {
389 pr_err("failed to write stat event\n");
390 return -1;
391 }
392 }
Andi Kleen0b1abbf2016-04-27 13:00:51 -0700393
394 if (verbose > 1) {
395 fprintf(stat_config.output,
396 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
397 perf_evsel__name(counter),
398 cpu,
399 count->val, count->ena, count->run);
400 }
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100401 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200402 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200403
404 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200405}
406
Mark Rutland3df33ef2016-08-09 14:04:29 +0100407static void read_counters(void)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200408{
409 struct perf_evsel *counter;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700410 int ret;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200411
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300412 evlist__for_each_entry(evsel_list, counter) {
Stephane Eraniandb49a712017-04-12 11:23:01 -0700413 ret = read_counter(counter);
414 if (ret)
Andi Kleen245bad82015-09-01 15:52:46 -0700415 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200416
Stephane Eraniandb49a712017-04-12 11:23:01 -0700417 if (ret == 0 && perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200418 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200419 }
420}
421
Jiri Olsaba411a92015-06-26 11:29:24 +0200422static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100423{
Stephane Eranian13370a92013-01-29 12:47:44 +0100424 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100425
Mark Rutland3df33ef2016-08-09 14:04:29 +0100426 read_counters();
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100427
Stephane Eranian13370a92013-01-29 12:47:44 +0100428 clock_gettime(CLOCK_MONOTONIC, &ts);
429 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100430
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100431 if (STAT_RECORD) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300432 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100433 pr_err("failed to write stat round event\n");
434 }
435
Andi Kleenb90f1332017-08-31 12:40:36 -0700436 init_stats(&walltime_nsecs_stats);
437 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000);
Jiri Olsad4f63a42015-06-26 11:29:26 +0200438 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100439}
440
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100441static void enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700442{
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100443 if (initial_delay)
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300444 usleep(initial_delay * USEC_PER_MSEC);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100445
446 /*
447 * We need to enable counters only if:
448 * - we don't have tracee (attaching to task or cpu)
449 * - we have initial delay configured
450 */
451 if (!target__none(&target) || initial_delay)
Jiri Olsaab46db02015-12-03 10:06:43 +0100452 perf_evlist__enable(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700453}
454
Mark Rutland3df33ef2016-08-09 14:04:29 +0100455static void disable_counters(void)
456{
457 /*
458 * If we don't have tracee (attaching to task or cpu), counters may
459 * still be running. To get accurate group ratios, we must stop groups
460 * from counting before reading their constituent counters.
461 */
462 if (!target__none(&target))
463 perf_evlist__disable(evsel_list);
464}
465
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300466static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300467
468/*
469 * perf_evlist__prepare_workload will send a SIGUSR1
470 * if the fork fails, since we asked by setting its
471 * want_signal to true.
472 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300473static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
474 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300475{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300476 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300477}
478
Jiri Olsa664c98d2015-11-05 15:40:50 +0100479static int perf_stat_synthesize_config(bool is_pipe)
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100480{
481 int err;
482
Jiri Olsa664c98d2015-11-05 15:40:50 +0100483 if (is_pipe) {
484 err = perf_event__synthesize_attrs(NULL, perf_stat.session,
485 process_synthesized_event);
486 if (err < 0) {
487 pr_err("Couldn't synthesize attrs.\n");
488 return err;
489 }
490 }
491
Andi Kleenbfd8f722017-11-17 13:42:58 -0800492 err = perf_event__synthesize_extra_attr(NULL,
493 evsel_list,
494 process_synthesized_event,
495 is_pipe);
Jiri Olsa7b60a7e2015-11-05 15:40:54 +0100496
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100497 err = perf_event__synthesize_thread_map2(NULL, evsel_list->threads,
498 process_synthesized_event,
499 NULL);
500 if (err < 0) {
501 pr_err("Couldn't synthesize thread map.\n");
502 return err;
503 }
504
505 err = perf_event__synthesize_cpu_map(NULL, evsel_list->cpus,
506 process_synthesized_event, NULL);
507 if (err < 0) {
508 pr_err("Couldn't synthesize thread map.\n");
509 return err;
510 }
511
512 err = perf_event__synthesize_stat_config(NULL, &stat_config,
513 process_synthesized_event, NULL);
514 if (err < 0) {
515 pr_err("Couldn't synthesize config.\n");
516 return err;
517 }
518
519 return 0;
520}
521
Jiri Olsa2af46462015-11-05 15:40:49 +0100522#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
523
Andi Kleen42811d52017-10-05 19:00:28 -0700524static int __store_counter_ids(struct perf_evsel *counter)
Jiri Olsa2af46462015-11-05 15:40:49 +0100525{
526 int cpu, thread;
527
Andi Kleen42811d52017-10-05 19:00:28 -0700528 for (cpu = 0; cpu < xyarray__max_x(counter->fd); cpu++) {
529 for (thread = 0; thread < xyarray__max_y(counter->fd);
530 thread++) {
Jiri Olsa2af46462015-11-05 15:40:49 +0100531 int fd = FD(counter, cpu, thread);
532
533 if (perf_evlist__id_add_fd(evsel_list, counter,
534 cpu, thread, fd) < 0)
535 return -1;
536 }
537 }
538
539 return 0;
540}
541
542static int store_counter_ids(struct perf_evsel *counter)
543{
544 struct cpu_map *cpus = counter->cpus;
545 struct thread_map *threads = counter->threads;
546
547 if (perf_evsel__alloc_id(counter, cpus->nr, threads->nr))
548 return -ENOMEM;
549
Andi Kleen42811d52017-10-05 19:00:28 -0700550 return __store_counter_ids(counter);
Jiri Olsa2af46462015-11-05 15:40:49 +0100551}
552
Jiri Olsa82bf3112017-07-26 14:02:06 +0200553static bool perf_evsel__should_store_id(struct perf_evsel *counter)
554{
555 return STAT_RECORD || counter->attr.read_format & PERF_FORMAT_ID;
556}
557
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700558static struct perf_evsel *perf_evsel__reset_weak_group(struct perf_evsel *evsel)
559{
560 struct perf_evsel *c2, *leader;
561 bool is_open = true;
562
563 leader = evsel->leader;
564 pr_debug("Weak group for %s/%d failed\n",
565 leader->name, leader->nr_members);
566
567 /*
568 * for_each_group_member doesn't work here because it doesn't
569 * include the first entry.
570 */
571 evlist__for_each_entry(evsel_list, c2) {
572 if (c2 == evsel)
573 is_open = false;
574 if (c2->leader == leader) {
575 if (is_open)
576 perf_evsel__close(c2);
577 c2->leader = c2;
578 c2->nr_members = 0;
579 }
580 }
581 return leader;
582}
583
Jiri Olsae55c14a2018-04-23 11:08:21 +0200584static int __run_perf_stat(int argc, const char **argv, int run_idx)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200585{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200586 int interval = stat_config.interval;
yuzhoujiandb06a262018-01-29 10:25:22 +0100587 int times = stat_config.times;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100588 int timeout = stat_config.timeout;
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -0300589 char msg[BUFSIZ];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200590 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100591 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100592 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100593 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200594 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300595 const bool forks = (argc > 0);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100596 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
Mathieu Poirier5d8bb1e2016-09-16 09:50:03 -0600597 struct perf_evsel_config_term *err_term;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200598
Stephane Eranian13370a92013-01-29 12:47:44 +0100599 if (interval) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300600 ts.tv_sec = interval / USEC_PER_MSEC;
601 ts.tv_nsec = (interval % USEC_PER_MSEC) * NSEC_PER_MSEC;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100602 } else if (timeout) {
603 ts.tv_sec = timeout / USEC_PER_MSEC;
604 ts.tv_nsec = (timeout % USEC_PER_MSEC) * NSEC_PER_MSEC;
Stephane Eranian13370a92013-01-29 12:47:44 +0100605 } else {
606 ts.tv_sec = 1;
607 ts.tv_nsec = 0;
608 }
609
Liming Wang60666c62009-12-31 16:05:50 +0800610 if (forks) {
Jiri Olsa664c98d2015-11-05 15:40:50 +0100611 if (perf_evlist__prepare_workload(evsel_list, &target, argv, is_pipe,
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300612 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900613 perror("failed to prepare workload");
614 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800615 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900616 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000617 }
618
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200619 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300620 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200621
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300622 evlist__for_each_entry(evsel_list, counter) {
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300623try_again:
Jiri Olsacac21422012-11-12 18:34:00 +0100624 if (create_perf_stat_counter(counter) < 0) {
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700625
626 /* Weak group failed. Reset the group. */
Andi Kleen35c19802017-09-05 14:13:24 -0700627 if ((errno == EINVAL || errno == EBADF) &&
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700628 counter->leader != counter &&
629 counter->weak_group) {
630 counter = perf_evsel__reset_weak_group(counter);
631 goto try_again;
632 }
633
David Ahern979987a2012-05-08 09:29:16 -0600634 /*
635 * PPC returns ENXIO for HW counters until 2.6.37
636 * (behavior changed with commit b0a873e).
637 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100638 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600639 errno == ENOENT || errno == EOPNOTSUPP ||
640 errno == ENXIO) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900641 if (verbose > 0)
David Ahernc63ca0c2011-04-29 16:04:15 -0600642 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300643 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600644 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400645
646 if ((counter->leader != counter) ||
647 !(counter->leader->nr_members > 1))
648 continue;
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300649 } else if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900650 if (verbose > 0)
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300651 ui__warning("%s\n", msg);
652 goto try_again;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800653 } else if (target__has_per_thread(&target) &&
654 evsel_list->threads &&
655 evsel_list->threads->err_thread != -1) {
656 /*
657 * For global --per-thread case, skip current
658 * error thread.
659 */
660 if (!thread_map__remove(evsel_list->threads,
661 evsel_list->threads->err_thread)) {
662 evsel_list->threads->err_thread = -1;
663 goto try_again;
664 }
665 }
Ingo Molnarede70292011-04-28 08:48:42 +0200666
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300667 perf_evsel__open_strerror(counter, &target,
668 errno, msg, sizeof(msg));
669 ui__error("%s\n", msg);
670
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200671 if (child_pid != -1)
672 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600673
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200674 return -1;
675 }
David Ahern2cee77c2011-05-30 08:55:59 -0600676 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100677
678 l = strlen(counter->unit);
679 if (l > unit_width)
680 unit_width = l;
Jiri Olsa2af46462015-11-05 15:40:49 +0100681
Jiri Olsa82bf3112017-07-26 14:02:06 +0200682 if (perf_evsel__should_store_id(counter) &&
683 store_counter_ids(counter))
Jiri Olsa2af46462015-11-05 15:40:49 +0100684 return -1;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300685 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200686
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300687 if (perf_evlist__apply_filters(evsel_list, &counter)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300688 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300689 counter->filter, perf_evsel__name(counter), errno,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300690 str_error_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100691 return -1;
692 }
693
Mathieu Poirier5d8bb1e2016-09-16 09:50:03 -0600694 if (perf_evlist__apply_drv_configs(evsel_list, &counter, &err_term)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300695 pr_err("failed to set config \"%s\" on event %s with %d (%s)\n",
Mathieu Poirier5d8bb1e2016-09-16 09:50:03 -0600696 err_term->val.drv_cfg, perf_evsel__name(counter), errno,
697 str_error_r(errno, msg, sizeof(msg)));
698 return -1;
699 }
700
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100701 if (STAT_RECORD) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100702 int err, fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100703
Jiri Olsa664c98d2015-11-05 15:40:50 +0100704 if (is_pipe) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100705 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
Jiri Olsa664c98d2015-11-05 15:40:50 +0100706 } else {
707 err = perf_session__write_header(perf_stat.session, evsel_list,
708 fd, false);
709 }
710
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100711 if (err < 0)
712 return err;
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100713
Jiri Olsa664c98d2015-11-05 15:40:50 +0100714 err = perf_stat_synthesize_config(is_pipe);
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100715 if (err < 0)
716 return err;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100717 }
718
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200719 /*
720 * Enable counters and exec the command:
721 */
722 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100723 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200724
Liming Wang60666c62009-12-31 16:05:50 +0800725 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900726 perf_evlist__start_workload(evsel_list);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100727 enable_counters();
Namhyung Kimacf28922013-03-11 16:43:18 +0900728
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100729 if (interval || timeout) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100730 while (!waitpid(child_pid, &status, WNOHANG)) {
731 nanosleep(&ts, NULL);
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100732 if (timeout)
733 break;
Jiri Olsaba411a92015-06-26 11:29:24 +0200734 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100735 if (interval_count && !(--times))
736 break;
Stephane Eranian13370a92013-01-29 12:47:44 +0100737 }
738 }
Jiri Olsa0ce2da12018-06-05 14:13:13 +0200739 wait4(child_pid, &status, 0, &ru_data);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300740
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300741 if (workload_exec_errno) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300742 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300743 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300744 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300745 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300746
Andi Kleen33e49ea2011-09-15 14:31:40 -0700747 if (WIFSIGNALED(status))
748 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800749 } else {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100750 enable_counters();
Stephane Eranian13370a92013-01-29 12:47:44 +0100751 while (!done) {
752 nanosleep(&ts, NULL);
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100753 if (timeout)
754 break;
yuzhoujiandb06a262018-01-29 10:25:22 +0100755 if (interval) {
Jiri Olsaba411a92015-06-26 11:29:24 +0200756 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100757 if (interval_count && !(--times))
758 break;
759 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100760 }
Liming Wang60666c62009-12-31 16:05:50 +0800761 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200762
Mark Rutland3df33ef2016-08-09 14:04:29 +0100763 disable_counters();
764
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200765 t1 = rdclock();
766
Jiri Olsae55c14a2018-04-23 11:08:21 +0200767 if (walltime_run_table)
768 walltime_run[run_idx] = t1 - t0;
769
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200770 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200771
Mark Rutland3df33ef2016-08-09 14:04:29 +0100772 /*
773 * Closing a group leader splits the group, and as we only disable
774 * group leaders, results in remaining events becoming enabled. To
775 * avoid arbitrary skew, we must read all counters before closing any
776 * group leaders.
777 */
778 read_counters();
779 perf_evlist__close(evsel_list);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200780
Ingo Molnar42202dd2009-06-13 14:57:28 +0200781 return WEXITSTATUS(status);
782}
783
Jiri Olsae55c14a2018-04-23 11:08:21 +0200784static int run_perf_stat(int argc, const char **argv, int run_idx)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200785{
786 int ret;
787
788 if (pre_cmd) {
789 ret = system(pre_cmd);
790 if (ret)
791 return ret;
792 }
793
794 if (sync_run)
795 sync();
796
Jiri Olsae55c14a2018-04-23 11:08:21 +0200797 ret = __run_perf_stat(argc, argv, run_idx);
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200798 if (ret)
799 return ret;
800
801 if (post_cmd) {
802 ret = system(post_cmd);
803 if (ret)
804 return ret;
805 }
806
807 return ret;
808}
809
Andi Kleend73515c2015-03-11 07:16:27 -0700810static void print_running(u64 run, u64 ena)
811{
812 if (csv_output) {
Jiri Olsa58215222015-07-21 14:31:24 +0200813 fprintf(stat_config.output, "%s%" PRIu64 "%s%.2f",
Andi Kleend73515c2015-03-11 07:16:27 -0700814 csv_sep,
815 run,
816 csv_sep,
817 ena ? 100.0 * run / ena : 100.0);
818 } else if (run != ena) {
Jiri Olsa58215222015-07-21 14:31:24 +0200819 fprintf(stat_config.output, " (%.2f%%)", 100.0 * run / ena);
Andi Kleend73515c2015-03-11 07:16:27 -0700820 }
821}
822
Ingo Molnarf99844c2011-04-27 05:35:39 +0200823static void print_noise_pct(double total, double avg)
824{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800825 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200826
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700827 if (csv_output)
Jiri Olsa58215222015-07-21 14:31:24 +0200828 fprintf(stat_config.output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600829 else if (pct)
Jiri Olsa58215222015-07-21 14:31:24 +0200830 fprintf(stat_config.output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200831}
832
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200833static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200834{
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200835 struct perf_stat_evsel *ps;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200836
Peter Zijlstra849abde2009-09-04 18:23:38 +0200837 if (run_count == 1)
838 return;
839
Arnaldo Carvalho de Meloe669e832017-10-26 14:22:34 -0300840 ps = evsel->stats;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200841 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200842}
843
Stephane Eranian12c08a92013-02-14 13:57:29 +0100844static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200845{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200846 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100847 case AGGR_CORE:
Jiri Olsa58215222015-07-21 14:31:24 +0200848 fprintf(stat_config.output, "S%d-C%*d%s%*d%s",
Stephane Eranian12c08a92013-02-14 13:57:29 +0100849 cpu_map__id_to_socket(id),
850 csv_output ? 0 : -8,
851 cpu_map__id_to_cpu(id),
852 csv_sep,
853 csv_output ? 0 : 4,
854 nr,
855 csv_sep);
856 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100857 case AGGR_SOCKET:
Jiri Olsa58215222015-07-21 14:31:24 +0200858 fprintf(stat_config.output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100859 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100860 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100861 csv_sep,
862 csv_output ? 0 : 4,
863 nr,
864 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100865 break;
866 case AGGR_NONE:
Jiri Olsa58215222015-07-21 14:31:24 +0200867 fprintf(stat_config.output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200868 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100869 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100870 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200871 case AGGR_THREAD:
Jiri Olsa58215222015-07-21 14:31:24 +0200872 fprintf(stat_config.output, "%*s-%*d%s",
Jiri Olsa32b8af82015-06-26 11:29:27 +0200873 csv_output ? 0 : 16,
874 thread_map__comm(evsel->threads, id),
875 csv_output ? 0 : -8,
876 thread_map__pid(evsel->threads, id),
877 csv_sep);
878 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100879 case AGGR_GLOBAL:
Jiri Olsa208df992015-10-16 12:41:04 +0200880 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100881 default:
882 break;
883 }
884}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200885
Andi Kleen140aead2016-01-30 09:06:49 -0800886struct outstate {
887 FILE *fh;
888 bool newline;
Andi Kleenf9483392016-01-30 09:06:50 -0800889 const char *prefix;
Andi Kleen92a61f62016-02-29 14:36:21 -0800890 int nfields;
Andi Kleen44d49a62016-02-29 14:36:22 -0800891 int id, nr;
892 struct perf_evsel *evsel;
Andi Kleen140aead2016-01-30 09:06:49 -0800893};
894
895#define METRIC_LEN 35
896
897static void new_line_std(void *ctx)
898{
899 struct outstate *os = ctx;
900
901 os->newline = true;
902}
903
904static void do_new_line_std(struct outstate *os)
905{
906 fputc('\n', os->fh);
Andi Kleenf9483392016-01-30 09:06:50 -0800907 fputs(os->prefix, os->fh);
Andi Kleen44d49a62016-02-29 14:36:22 -0800908 aggr_printout(os->evsel, os->id, os->nr);
Andi Kleen140aead2016-01-30 09:06:49 -0800909 if (stat_config.aggr_mode == AGGR_NONE)
910 fprintf(os->fh, " ");
Andi Kleen140aead2016-01-30 09:06:49 -0800911 fprintf(os->fh, " ");
912}
913
914static void print_metric_std(void *ctx, const char *color, const char *fmt,
915 const char *unit, double val)
916{
917 struct outstate *os = ctx;
918 FILE *out = os->fh;
919 int n;
920 bool newline = os->newline;
921
922 os->newline = false;
923
924 if (unit == NULL || fmt == NULL) {
925 fprintf(out, "%-*s", METRIC_LEN, "");
926 return;
927 }
928
929 if (newline)
930 do_new_line_std(os);
931
932 n = fprintf(out, " # ");
933 if (color)
934 n += color_fprintf(out, color, fmt, val);
935 else
936 n += fprintf(out, fmt, val);
937 fprintf(out, " %-*s", METRIC_LEN - n - 1, unit);
938}
939
Andi Kleen92a61f62016-02-29 14:36:21 -0800940static void new_line_csv(void *ctx)
941{
942 struct outstate *os = ctx;
943 int i;
944
945 fputc('\n', os->fh);
946 if (os->prefix)
947 fprintf(os->fh, "%s%s", os->prefix, csv_sep);
Andi Kleen44d49a62016-02-29 14:36:22 -0800948 aggr_printout(os->evsel, os->id, os->nr);
Andi Kleen92a61f62016-02-29 14:36:21 -0800949 for (i = 0; i < os->nfields; i++)
950 fputs(csv_sep, os->fh);
951}
952
953static void print_metric_csv(void *ctx,
954 const char *color __maybe_unused,
955 const char *fmt, const char *unit, double val)
956{
957 struct outstate *os = ctx;
958 FILE *out = os->fh;
959 char buf[64], *vals, *ends;
960
961 if (unit == NULL || fmt == NULL) {
Ilya Pronin40c21892018-03-05 22:43:53 -0800962 fprintf(out, "%s%s", csv_sep, csv_sep);
Andi Kleen92a61f62016-02-29 14:36:21 -0800963 return;
964 }
965 snprintf(buf, sizeof(buf), fmt, val);
Taeung Songb07c40d2017-04-07 23:24:18 +0900966 ends = vals = ltrim(buf);
Andi Kleen92a61f62016-02-29 14:36:21 -0800967 while (isdigit(*ends) || *ends == '.')
968 ends++;
969 *ends = 0;
970 while (isspace(*unit))
971 unit++;
972 fprintf(out, "%s%s%s%s", csv_sep, vals, csv_sep, unit);
973}
974
Andi Kleen54b50912016-03-03 15:57:36 -0800975/* Filter out some columns that don't work well in metrics only mode */
976
977static bool valid_only_metric(const char *unit)
978{
979 if (!unit)
980 return false;
981 if (strstr(unit, "/sec") ||
982 strstr(unit, "hz") ||
983 strstr(unit, "Hz") ||
984 strstr(unit, "CPUs utilized"))
985 return false;
986 return true;
987}
988
989static const char *fixunit(char *buf, struct perf_evsel *evsel,
990 const char *unit)
991{
992 if (!strncmp(unit, "of all", 6)) {
993 snprintf(buf, 1024, "%s %s", perf_evsel__name(evsel),
994 unit);
995 return buf;
996 }
997 return unit;
998}
999
1000static void print_metric_only(void *ctx, const char *color, const char *fmt,
1001 const char *unit, double val)
1002{
1003 struct outstate *os = ctx;
1004 FILE *out = os->fh;
Jiri Olsaf5155722018-06-07 00:15:08 +02001005 char buf[1024], str[1024];
Jiri Olsac1a1f5d2018-06-07 00:15:09 +02001006 unsigned mlen = metric_only_len;
Andi Kleen54b50912016-03-03 15:57:36 -08001007
1008 if (!valid_only_metric(unit))
1009 return;
1010 unit = fixunit(buf, os->evsel, unit);
Andi Kleen54b50912016-03-03 15:57:36 -08001011 if (mlen < strlen(unit))
1012 mlen = strlen(unit) + 1;
Jiri Olsaf5155722018-06-07 00:15:08 +02001013
1014 if (color)
1015 mlen += strlen(color) + sizeof(PERF_COLOR_RESET) - 1;
1016
1017 color_snprintf(str, sizeof(str), color ?: "", fmt, val);
1018 fprintf(out, "%*s ", mlen, str);
Andi Kleen54b50912016-03-03 15:57:36 -08001019}
1020
1021static void print_metric_only_csv(void *ctx, const char *color __maybe_unused,
1022 const char *fmt,
1023 const char *unit, double val)
1024{
1025 struct outstate *os = ctx;
1026 FILE *out = os->fh;
1027 char buf[64], *vals, *ends;
1028 char tbuf[1024];
1029
1030 if (!valid_only_metric(unit))
1031 return;
1032 unit = fixunit(tbuf, os->evsel, unit);
1033 snprintf(buf, sizeof buf, fmt, val);
Taeung Songb07c40d2017-04-07 23:24:18 +09001034 ends = vals = ltrim(buf);
Andi Kleen54b50912016-03-03 15:57:36 -08001035 while (isdigit(*ends) || *ends == '.')
1036 ends++;
1037 *ends = 0;
1038 fprintf(out, "%s%s", vals, csv_sep);
1039}
1040
1041static void new_line_metric(void *ctx __maybe_unused)
1042{
1043}
1044
1045static void print_metric_header(void *ctx, const char *color __maybe_unused,
1046 const char *fmt __maybe_unused,
1047 const char *unit, double val __maybe_unused)
1048{
1049 struct outstate *os = ctx;
1050 char tbuf[1024];
1051
1052 if (!valid_only_metric(unit))
1053 return;
1054 unit = fixunit(tbuf, os->evsel, unit);
1055 if (csv_output)
1056 fprintf(os->fh, "%s%s", unit, csv_sep);
1057 else
Jiri Olsac1a1f5d2018-06-07 00:15:09 +02001058 fprintf(os->fh, "%*s ", metric_only_len, unit);
Andi Kleen54b50912016-03-03 15:57:36 -08001059}
1060
Andi Kleenda88c7f2014-09-24 13:50:46 -07001061static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001062{
Jiri Olsa58215222015-07-21 14:31:24 +02001063 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -03001064 double msecs = avg / NSEC_PER_MSEC;
Stephane Eranian410136f2013-11-12 17:58:49 +01001065 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -06001066 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001067
Stephane Eranian410136f2013-11-12 17:58:49 +01001068 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
1069 fmt_n = csv_output ? "%s" : "%-25s";
1070
Andi Kleenda88c7f2014-09-24 13:50:46 -07001071 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001072
David Ahern4bbe5a62013-09-28 14:28:00 -06001073 scnprintf(name, sizeof(name), "%s%s",
1074 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +01001075
1076 fprintf(output, fmt_v, msecs, csv_sep);
1077
1078 if (csv_output)
1079 fprintf(output, "%s%s", evsel->unit, csv_sep);
1080 else
1081 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
1082
1083 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001084
Stephane Eranian023695d2011-02-14 11:20:01 +02001085 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001086 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001087}
1088
Andi Kleen44d49a62016-02-29 14:36:22 -08001089static int first_shadow_cpu(struct perf_evsel *evsel, int id)
1090{
1091 int i;
1092
1093 if (!aggr_get_id)
1094 return 0;
1095
1096 if (stat_config.aggr_mode == AGGR_NONE)
1097 return id;
1098
1099 if (stat_config.aggr_mode == AGGR_GLOBAL)
1100 return 0;
1101
1102 for (i = 0; i < perf_evsel__nr_cpus(evsel); i++) {
1103 int cpu2 = perf_evsel__cpus(evsel)->map[i];
1104
1105 if (aggr_get_id(evsel_list->cpus, cpu2) == id)
1106 return cpu2;
1107 }
1108 return 0;
1109}
1110
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001111static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
1112{
Jiri Olsa58215222015-07-21 14:31:24 +02001113 FILE *output = stat_config.output;
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001114 double sc = evsel->scale;
1115 const char *fmt;
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001116
1117 if (csv_output) {
Andi Kleene3b03b62016-05-05 16:04:03 -07001118 fmt = floor(sc) != sc ? "%.2f%s" : "%.0f%s";
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001119 } else {
1120 if (big_num)
Andi Kleene3b03b62016-05-05 16:04:03 -07001121 fmt = floor(sc) != sc ? "%'18.2f%s" : "%'18.0f%s";
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001122 else
Andi Kleene3b03b62016-05-05 16:04:03 -07001123 fmt = floor(sc) != sc ? "%18.2f%s" : "%18.0f%s";
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001124 }
1125
1126 aggr_printout(evsel, id, nr);
1127
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001128 fprintf(output, fmt, avg, csv_sep);
1129
1130 if (evsel->unit)
1131 fprintf(output, "%-*s%s",
1132 csv_output ? 0 : unit_width,
1133 evsel->unit, csv_sep);
1134
1135 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
1136
1137 if (evsel->cgrp)
1138 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Andi Kleeneedfcb42015-11-02 17:50:21 -08001139}
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001140
Kan Liang30060ea2018-04-24 11:20:11 -07001141static bool is_mixed_hw_group(struct perf_evsel *counter)
1142{
1143 struct perf_evlist *evlist = counter->evlist;
1144 u32 pmu_type = counter->attr.type;
1145 struct perf_evsel *pos;
1146
1147 if (counter->nr_members < 2)
1148 return false;
1149
1150 evlist__for_each_entry(evlist, pos) {
1151 /* software events can be part of any hardware group */
1152 if (pos->attr.type == PERF_TYPE_SOFTWARE)
1153 continue;
1154 if (pmu_type == PERF_TYPE_SOFTWARE) {
1155 pmu_type = pos->attr.type;
1156 continue;
1157 }
1158 if (pmu_type != pos->attr.type)
1159 return true;
1160 }
1161
1162 return false;
1163}
1164
Andi Kleenf9483392016-01-30 09:06:50 -08001165static void printout(int id, int nr, struct perf_evsel *counter, double uval,
Jin Yaoe0128b32017-12-05 22:03:05 +08001166 char *prefix, u64 run, u64 ena, double noise,
1167 struct runtime_stat *st)
Andi Kleeneedfcb42015-11-02 17:50:21 -08001168{
Andi Kleen140aead2016-01-30 09:06:49 -08001169 struct perf_stat_output_ctx out;
Andi Kleenf9483392016-01-30 09:06:50 -08001170 struct outstate os = {
1171 .fh = stat_config.output,
Andi Kleen44d49a62016-02-29 14:36:22 -08001172 .prefix = prefix ? prefix : "",
1173 .id = id,
1174 .nr = nr,
1175 .evsel = counter,
Andi Kleenf9483392016-01-30 09:06:50 -08001176 };
Andi Kleen140aead2016-01-30 09:06:49 -08001177 print_metric_t pm = print_metric_std;
1178 void (*nl)(void *);
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001179
Andi Kleen54b50912016-03-03 15:57:36 -08001180 if (metric_only) {
1181 nl = new_line_metric;
1182 if (csv_output)
1183 pm = print_metric_only_csv;
1184 else
1185 pm = print_metric_only;
1186 } else
1187 nl = new_line_std;
Andi Kleeneedfcb42015-11-02 17:50:21 -08001188
Andi Kleen54b50912016-03-03 15:57:36 -08001189 if (csv_output && !metric_only) {
Andi Kleen92a61f62016-02-29 14:36:21 -08001190 static int aggr_fields[] = {
1191 [AGGR_GLOBAL] = 0,
1192 [AGGR_THREAD] = 1,
1193 [AGGR_NONE] = 1,
1194 [AGGR_SOCKET] = 2,
1195 [AGGR_CORE] = 2,
1196 };
1197
1198 pm = print_metric_csv;
1199 nl = new_line_csv;
1200 os.nfields = 3;
1201 os.nfields += aggr_fields[stat_config.aggr_mode];
1202 if (counter->cgrp)
1203 os.nfields++;
1204 }
Andi Kleenb002f3b2016-02-17 14:44:00 -08001205 if (run == 0 || ena == 0 || counter->counts->scaled == -1) {
Andi Kleen54b50912016-03-03 15:57:36 -08001206 if (metric_only) {
1207 pm(&os, NULL, "", "", 0);
1208 return;
1209 }
Andi Kleencb110f42016-01-30 09:06:51 -08001210 aggr_printout(counter, id, nr);
1211
1212 fprintf(stat_config.output, "%*s%s",
1213 csv_output ? 0 : 18,
1214 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
1215 csv_sep);
1216
Kan Liang30060ea2018-04-24 11:20:11 -07001217 if (counter->supported) {
Borislav Petkov02d492e2017-02-07 01:40:05 +01001218 print_free_counters_hint = 1;
Kan Liang30060ea2018-04-24 11:20:11 -07001219 if (is_mixed_hw_group(counter))
1220 print_mixed_hw_group_error = 1;
1221 }
Borislav Petkov02d492e2017-02-07 01:40:05 +01001222
Andi Kleencb110f42016-01-30 09:06:51 -08001223 fprintf(stat_config.output, "%-*s%s",
1224 csv_output ? 0 : unit_width,
1225 counter->unit, csv_sep);
1226
1227 fprintf(stat_config.output, "%*s",
1228 csv_output ? 0 : -25,
1229 perf_evsel__name(counter));
1230
1231 if (counter->cgrp)
1232 fprintf(stat_config.output, "%s%s",
1233 csv_sep, counter->cgrp->name);
1234
Andi Kleen92a61f62016-02-29 14:36:21 -08001235 if (!csv_output)
1236 pm(&os, NULL, NULL, "", 0);
1237 print_noise(counter, noise);
Andi Kleencb110f42016-01-30 09:06:51 -08001238 print_running(run, ena);
Andi Kleen92a61f62016-02-29 14:36:21 -08001239 if (csv_output)
1240 pm(&os, NULL, NULL, "", 0);
Andi Kleencb110f42016-01-30 09:06:51 -08001241 return;
1242 }
1243
Andi Kleen54b50912016-03-03 15:57:36 -08001244 if (metric_only)
1245 /* nothing */;
1246 else if (nsec_counter(counter))
Andi Kleeneedfcb42015-11-02 17:50:21 -08001247 nsec_printout(id, nr, counter, uval);
1248 else
1249 abs_printout(id, nr, counter, uval);
1250
Andi Kleen140aead2016-01-30 09:06:49 -08001251 out.print_metric = pm;
1252 out.new_line = nl;
1253 out.ctx = &os;
Andi Kleen37932c12017-03-20 13:17:08 -07001254 out.force_header = false;
Andi Kleen140aead2016-01-30 09:06:49 -08001255
Andi Kleen54b50912016-03-03 15:57:36 -08001256 if (csv_output && !metric_only) {
Andi Kleen92a61f62016-02-29 14:36:21 -08001257 print_noise(counter, noise);
1258 print_running(run, ena);
1259 }
1260
1261 perf_stat__print_shadow_stats(counter, uval,
Andi Kleen44d49a62016-02-29 14:36:22 -08001262 first_shadow_cpu(counter, id),
Jin Yaoe0128b32017-12-05 22:03:05 +08001263 &out, &metric_events, st);
Andi Kleen54b50912016-03-03 15:57:36 -08001264 if (!csv_output && !metric_only) {
Andi Kleen92a61f62016-02-29 14:36:21 -08001265 print_noise(counter, noise);
1266 print_running(run, ena);
1267 }
Jiri Olsa556b1fb2015-06-03 16:25:56 +02001268}
1269
Andi Kleen44d49a62016-02-29 14:36:22 -08001270static void aggr_update_shadow(void)
1271{
1272 int cpu, s2, id, s;
1273 u64 val;
1274 struct perf_evsel *counter;
1275
1276 for (s = 0; s < aggr_map->nr; s++) {
1277 id = aggr_map->map[s];
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001278 evlist__for_each_entry(evsel_list, counter) {
Andi Kleen44d49a62016-02-29 14:36:22 -08001279 val = 0;
1280 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
1281 s2 = aggr_get_id(evsel_list->cpus, cpu);
1282 if (s2 != id)
1283 continue;
1284 val += perf_counts(counter->counts, cpu, 0)->val;
1285 }
Jiri Olsa54830dd2017-01-23 22:42:56 +01001286 perf_stat__update_shadow_stats(counter, val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001287 first_shadow_cpu(counter, id),
1288 &rt_stat);
Andi Kleen44d49a62016-02-29 14:36:22 -08001289 }
1290 }
1291}
1292
Agustin Vega-Frias8c5421c2018-03-06 09:04:43 -05001293static void uniquify_event_name(struct perf_evsel *counter)
1294{
1295 char *new_name;
1296 char *config;
1297
Kan Liang80ee8c52018-04-24 11:20:14 -07001298 if (counter->uniquified_name ||
1299 !counter->pmu_name || !strncmp(counter->name, counter->pmu_name,
Agustin Vega-Frias8c5421c2018-03-06 09:04:43 -05001300 strlen(counter->pmu_name)))
1301 return;
1302
1303 config = strchr(counter->name, '/');
1304 if (config) {
1305 if (asprintf(&new_name,
1306 "%s%s", counter->pmu_name, config) > 0) {
1307 free(counter->name);
1308 counter->name = new_name;
1309 }
1310 } else {
1311 if (asprintf(&new_name,
1312 "%s [%s]", counter->name, counter->pmu_name) > 0) {
1313 free(counter->name);
1314 counter->name = new_name;
1315 }
1316 }
Kan Liang80ee8c52018-04-24 11:20:14 -07001317
1318 counter->uniquified_name = true;
Agustin Vega-Frias8c5421c2018-03-06 09:04:43 -05001319}
1320
Andi Kleen430daf22017-03-20 13:17:00 -07001321static void collect_all_aliases(struct perf_evsel *counter,
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001322 void (*cb)(struct perf_evsel *counter, void *data,
1323 bool first),
1324 void *data)
1325{
Andi Kleen430daf22017-03-20 13:17:00 -07001326 struct perf_evsel *alias;
1327
1328 alias = list_prepare_entry(counter, &(evsel_list->entries), node);
1329 list_for_each_entry_continue (alias, &evsel_list->entries, node) {
1330 if (strcmp(perf_evsel__name(alias), perf_evsel__name(counter)) ||
1331 alias->scale != counter->scale ||
1332 alias->cgrp != counter->cgrp ||
1333 strcmp(alias->unit, counter->unit) ||
1334 nsec_counter(alias) != nsec_counter(counter))
1335 break;
1336 alias->merged_stat = true;
1337 cb(alias, data, false);
1338 }
1339}
1340
1341static bool collect_data(struct perf_evsel *counter,
1342 void (*cb)(struct perf_evsel *counter, void *data,
1343 bool first),
1344 void *data)
1345{
1346 if (counter->merged_stat)
1347 return false;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001348 cb(counter, data, true);
Agustin Vega-Frias8c5421c2018-03-06 09:04:43 -05001349 if (no_merge)
1350 uniquify_event_name(counter);
1351 else if (counter->auto_merge_stats)
Andi Kleen430daf22017-03-20 13:17:00 -07001352 collect_all_aliases(counter, cb, data);
1353 return true;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001354}
1355
1356struct aggr_data {
1357 u64 ena, run, val;
1358 int id;
1359 int nr;
1360 int cpu;
1361};
1362
1363static void aggr_cb(struct perf_evsel *counter, void *data, bool first)
1364{
1365 struct aggr_data *ad = data;
1366 int cpu, s2;
1367
1368 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
1369 struct perf_counts_values *counts;
1370
1371 s2 = aggr_get_id(perf_evsel__cpus(counter), cpu);
1372 if (s2 != ad->id)
1373 continue;
1374 if (first)
1375 ad->nr++;
1376 counts = perf_counts(counter->counts, cpu, 0);
Andi Kleenb4229e92017-03-20 13:17:01 -07001377 /*
1378 * When any result is bad, make them all to give
1379 * consistent output in interval mode.
1380 */
1381 if (counts->ena == 0 || counts->run == 0 ||
1382 counter->counts->scaled == -1) {
1383 ad->ena = 0;
1384 ad->run = 0;
1385 break;
1386 }
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001387 ad->val += counts->val;
1388 ad->ena += counts->ena;
1389 ad->run += counts->run;
1390 }
1391}
1392
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001393static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001394{
Jiri Olsa58215222015-07-21 14:31:24 +02001395 FILE *output = stat_config.output;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001396 struct perf_evsel *counter;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001397 int s, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +01001398 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001399 u64 ena, run, val;
Andi Kleen54b50912016-03-03 15:57:36 -08001400 bool first;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001401
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001402 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001403 return;
1404
Andi Kleen44d49a62016-02-29 14:36:22 -08001405 aggr_update_shadow();
1406
Andi Kleen54b50912016-03-03 15:57:36 -08001407 /*
1408 * With metric_only everything is on a single line.
1409 * Without each counter has its own line.
1410 */
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001411 for (s = 0; s < aggr_map->nr; s++) {
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001412 struct aggr_data ad;
Andi Kleen54b50912016-03-03 15:57:36 -08001413 if (prefix && metric_only)
1414 fprintf(output, "%s", prefix);
1415
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001416 ad.id = id = aggr_map->map[s];
Andi Kleen54b50912016-03-03 15:57:36 -08001417 first = true;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001418 evlist__for_each_entry(evsel_list, counter) {
Andi Kleene864c5c2017-08-31 12:40:35 -07001419 if (is_duration_time(counter))
1420 continue;
1421
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001422 ad.val = ad.ena = ad.run = 0;
1423 ad.nr = 0;
Andi Kleen430daf22017-03-20 13:17:00 -07001424 if (!collect_data(counter, aggr_cb, &ad))
1425 continue;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001426 nr = ad.nr;
1427 ena = ad.ena;
1428 run = ad.run;
1429 val = ad.val;
Andi Kleen54b50912016-03-03 15:57:36 -08001430 if (first && metric_only) {
1431 first = false;
1432 aggr_printout(counter, id, nr);
1433 }
1434 if (prefix && !metric_only)
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001435 fprintf(output, "%s", prefix);
1436
Stephane Eranian410136f2013-11-12 17:58:49 +01001437 uval = val * counter->scale;
Jin Yaoe0128b32017-12-05 22:03:05 +08001438 printout(id, nr, counter, uval, prefix, run, ena, 1.0,
1439 &rt_stat);
Andi Kleen54b50912016-03-03 15:57:36 -08001440 if (!metric_only)
1441 fputc('\n', output);
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001442 }
Andi Kleen54b50912016-03-03 15:57:36 -08001443 if (metric_only)
1444 fputc('\n', output);
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001445 }
1446}
1447
Jin Yao29734552017-12-05 22:03:11 +08001448static int cmp_val(const void *a, const void *b)
Jiri Olsa32b8af82015-06-26 11:29:27 +02001449{
Jin Yao29734552017-12-05 22:03:11 +08001450 return ((struct perf_aggr_thread_value *)b)->val -
1451 ((struct perf_aggr_thread_value *)a)->val;
1452}
1453
1454static struct perf_aggr_thread_value *sort_aggr_thread(
1455 struct perf_evsel *counter,
1456 int nthreads, int ncpus,
1457 int *ret)
1458{
1459 int cpu, thread, i = 0;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001460 double uval;
Jin Yao29734552017-12-05 22:03:11 +08001461 struct perf_aggr_thread_value *buf;
1462
1463 buf = calloc(nthreads, sizeof(struct perf_aggr_thread_value));
1464 if (!buf)
1465 return NULL;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001466
1467 for (thread = 0; thread < nthreads; thread++) {
1468 u64 ena = 0, run = 0, val = 0;
1469
1470 for (cpu = 0; cpu < ncpus; cpu++) {
1471 val += perf_counts(counter->counts, cpu, thread)->val;
1472 ena += perf_counts(counter->counts, cpu, thread)->ena;
1473 run += perf_counts(counter->counts, cpu, thread)->run;
1474 }
1475
Jin Yao29734552017-12-05 22:03:11 +08001476 uval = val * counter->scale;
1477
1478 /*
1479 * Skip value 0 when enabling --per-thread globally,
1480 * otherwise too many 0 output.
1481 */
1482 if (uval == 0.0 && target__has_per_thread(&target))
1483 continue;
1484
1485 buf[i].counter = counter;
1486 buf[i].id = thread;
1487 buf[i].uval = uval;
1488 buf[i].val = val;
1489 buf[i].run = run;
1490 buf[i].ena = ena;
1491 i++;
1492 }
1493
1494 qsort(buf, i, sizeof(struct perf_aggr_thread_value), cmp_val);
1495
1496 if (ret)
1497 *ret = i;
1498
1499 return buf;
1500}
1501
1502static void print_aggr_thread(struct perf_evsel *counter, char *prefix)
1503{
1504 FILE *output = stat_config.output;
1505 int nthreads = thread_map__nr(counter->threads);
1506 int ncpus = cpu_map__nr(counter->cpus);
1507 int thread, sorted_threads, id;
1508 struct perf_aggr_thread_value *buf;
1509
1510 buf = sort_aggr_thread(counter, nthreads, ncpus, &sorted_threads);
1511 if (!buf) {
1512 perror("cannot sort aggr thread");
1513 return;
1514 }
1515
1516 for (thread = 0; thread < sorted_threads; thread++) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001517 if (prefix)
1518 fprintf(output, "%s", prefix);
1519
Jin Yao29734552017-12-05 22:03:11 +08001520 id = buf[thread].id;
Jin Yao14e72a22017-12-05 22:03:08 +08001521 if (stat_config.stats)
Jin Yao29734552017-12-05 22:03:11 +08001522 printout(id, 0, buf[thread].counter, buf[thread].uval,
1523 prefix, buf[thread].run, buf[thread].ena, 1.0,
1524 &stat_config.stats[id]);
Jin Yao14e72a22017-12-05 22:03:08 +08001525 else
Jin Yao29734552017-12-05 22:03:11 +08001526 printout(id, 0, buf[thread].counter, buf[thread].uval,
1527 prefix, buf[thread].run, buf[thread].ena, 1.0,
1528 &rt_stat);
Jiri Olsa32b8af82015-06-26 11:29:27 +02001529 fputc('\n', output);
1530 }
Jin Yao29734552017-12-05 22:03:11 +08001531
1532 free(buf);
Jiri Olsa32b8af82015-06-26 11:29:27 +02001533}
1534
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001535struct caggr_data {
1536 double avg, avg_enabled, avg_running;
1537};
1538
1539static void counter_aggr_cb(struct perf_evsel *counter, void *data,
1540 bool first __maybe_unused)
1541{
1542 struct caggr_data *cd = data;
Arnaldo Carvalho de Meloe669e832017-10-26 14:22:34 -03001543 struct perf_stat_evsel *ps = counter->stats;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001544
1545 cd->avg += avg_stats(&ps->res_stats[0]);
1546 cd->avg_enabled += avg_stats(&ps->res_stats[1]);
1547 cd->avg_running += avg_stats(&ps->res_stats[2]);
1548}
1549
Ingo Molnar42202dd2009-06-13 14:57:28 +02001550/*
1551 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001552 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +02001553 */
Stephane Eranian13370a92013-01-29 12:47:44 +01001554static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001555{
Jiri Olsa58215222015-07-21 14:31:24 +02001556 FILE *output = stat_config.output;
Stephane Eranian410136f2013-11-12 17:58:49 +01001557 double uval;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001558 struct caggr_data cd = { .avg = 0.0 };
Andi Kleend73515c2015-03-11 07:16:27 -07001559
Andi Kleen430daf22017-03-20 13:17:00 -07001560 if (!collect_data(counter, counter_aggr_cb, &cd))
1561 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001562
Andi Kleen54b50912016-03-03 15:57:36 -08001563 if (prefix && !metric_only)
Stephane Eranian13370a92013-01-29 12:47:44 +01001564 fprintf(output, "%s", prefix);
1565
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001566 uval = cd.avg * counter->scale;
Jin Yaoe0128b32017-12-05 22:03:05 +08001567 printout(-1, 0, counter, uval, prefix, cd.avg_running, cd.avg_enabled,
1568 cd.avg, &rt_stat);
Andi Kleen54b50912016-03-03 15:57:36 -08001569 if (!metric_only)
1570 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +02001571}
1572
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001573static void counter_cb(struct perf_evsel *counter, void *data,
1574 bool first __maybe_unused)
1575{
1576 struct aggr_data *ad = data;
1577
1578 ad->val += perf_counts(counter->counts, ad->cpu, 0)->val;
1579 ad->ena += perf_counts(counter->counts, ad->cpu, 0)->ena;
1580 ad->run += perf_counts(counter->counts, ad->cpu, 0)->run;
1581}
1582
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001583/*
1584 * Print out the results of a single counter:
1585 * does not use aggregated count in system-wide
1586 */
Stephane Eranian13370a92013-01-29 12:47:44 +01001587static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001588{
Jiri Olsa58215222015-07-21 14:31:24 +02001589 FILE *output = stat_config.output;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001590 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +01001591 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001592 int cpu;
1593
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001594 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001595 struct aggr_data ad = { .cpu = cpu };
1596
Andi Kleen430daf22017-03-20 13:17:00 -07001597 if (!collect_data(counter, counter_cb, &ad))
1598 return;
Andi Kleenfbe51fb2017-03-20 13:16:59 -07001599 val = ad.val;
1600 ena = ad.ena;
1601 run = ad.run;
Stephane Eranian13370a92013-01-29 12:47:44 +01001602
1603 if (prefix)
1604 fprintf(output, "%s", prefix);
1605
Stephane Eranian410136f2013-11-12 17:58:49 +01001606 uval = val * counter->scale;
Jin Yaoe0128b32017-12-05 22:03:05 +08001607 printout(cpu, 0, counter, uval, prefix, run, ena, 1.0,
1608 &rt_stat);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001609
Stephane Eranian4aa90152011-08-15 22:22:33 +02001610 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001611 }
1612}
1613
Andi Kleen206cab62016-03-03 15:57:37 -08001614static void print_no_aggr_metric(char *prefix)
1615{
1616 int cpu;
1617 int nrcpus = 0;
1618 struct perf_evsel *counter;
1619 u64 ena, run, val;
1620 double uval;
1621
1622 nrcpus = evsel_list->cpus->nr;
1623 for (cpu = 0; cpu < nrcpus; cpu++) {
1624 bool first = true;
1625
1626 if (prefix)
1627 fputs(prefix, stat_config.output);
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001628 evlist__for_each_entry(evsel_list, counter) {
Andi Kleene864c5c2017-08-31 12:40:35 -07001629 if (is_duration_time(counter))
1630 continue;
Andi Kleen206cab62016-03-03 15:57:37 -08001631 if (first) {
1632 aggr_printout(counter, cpu, 0);
1633 first = false;
1634 }
1635 val = perf_counts(counter->counts, cpu, 0)->val;
1636 ena = perf_counts(counter->counts, cpu, 0)->ena;
1637 run = perf_counts(counter->counts, cpu, 0)->run;
1638
1639 uval = val * counter->scale;
Jin Yaoe0128b32017-12-05 22:03:05 +08001640 printout(cpu, 0, counter, uval, prefix, run, ena, 1.0,
1641 &rt_stat);
Andi Kleen206cab62016-03-03 15:57:37 -08001642 }
1643 fputc('\n', stat_config.output);
1644 }
1645}
1646
Andi Kleen54b50912016-03-03 15:57:36 -08001647static int aggr_header_lens[] = {
1648 [AGGR_CORE] = 18,
1649 [AGGR_SOCKET] = 12,
Andi Kleen206cab62016-03-03 15:57:37 -08001650 [AGGR_NONE] = 6,
Andi Kleen54b50912016-03-03 15:57:36 -08001651 [AGGR_THREAD] = 24,
1652 [AGGR_GLOBAL] = 0,
1653};
1654
Andi Kleenc51fd632016-05-24 12:52:39 -07001655static const char *aggr_header_csv[] = {
1656 [AGGR_CORE] = "core,cpus,",
1657 [AGGR_SOCKET] = "socket,cpus",
1658 [AGGR_NONE] = "cpu,",
1659 [AGGR_THREAD] = "comm-pid,",
1660 [AGGR_GLOBAL] = ""
1661};
1662
Andi Kleen41c8ca22016-05-24 12:52:38 -07001663static void print_metric_headers(const char *prefix, bool no_indent)
Andi Kleen54b50912016-03-03 15:57:36 -08001664{
1665 struct perf_stat_output_ctx out;
1666 struct perf_evsel *counter;
1667 struct outstate os = {
1668 .fh = stat_config.output
1669 };
1670
1671 if (prefix)
1672 fprintf(stat_config.output, "%s", prefix);
1673
Andi Kleen41c8ca22016-05-24 12:52:38 -07001674 if (!csv_output && !no_indent)
Andi Kleen54b50912016-03-03 15:57:36 -08001675 fprintf(stat_config.output, "%*s",
1676 aggr_header_lens[stat_config.aggr_mode], "");
Andi Kleenc51fd632016-05-24 12:52:39 -07001677 if (csv_output) {
1678 if (stat_config.interval)
1679 fputs("time,", stat_config.output);
1680 fputs(aggr_header_csv[stat_config.aggr_mode],
1681 stat_config.output);
1682 }
Andi Kleen54b50912016-03-03 15:57:36 -08001683
1684 /* Print metrics headers only */
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001685 evlist__for_each_entry(evsel_list, counter) {
Andi Kleene864c5c2017-08-31 12:40:35 -07001686 if (is_duration_time(counter))
1687 continue;
Andi Kleen54b50912016-03-03 15:57:36 -08001688 os.evsel = counter;
1689 out.ctx = &os;
1690 out.print_metric = print_metric_header;
1691 out.new_line = new_line_metric;
Andi Kleen37932c12017-03-20 13:17:08 -07001692 out.force_header = true;
Andi Kleen54b50912016-03-03 15:57:36 -08001693 os.evsel = counter;
1694 perf_stat__print_shadow_stats(counter, 0,
1695 0,
Andi Kleenb18f3e32017-08-31 12:40:31 -07001696 &out,
Jin Yaoe0128b32017-12-05 22:03:05 +08001697 &metric_events,
1698 &rt_stat);
Andi Kleen54b50912016-03-03 15:57:36 -08001699 }
1700 fputc('\n', stat_config.output);
1701}
1702
Jiri Olsad4f63a42015-06-26 11:29:26 +02001703static void print_interval(char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001704{
Jiri Olsa58215222015-07-21 14:31:24 +02001705 FILE *output = stat_config.output;
Jiri Olsad4f63a42015-06-26 11:29:26 +02001706 static int num_print_interval;
1707
Jiri Olsa9660e082018-06-07 00:15:06 +02001708 if (interval_clear)
1709 puts(CONSOLE_CLEAR);
1710
Jiri Olsad4f63a42015-06-26 11:29:26 +02001711 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
1712
Jiri Olsa9660e082018-06-07 00:15:06 +02001713 if ((num_print_interval == 0 && !csv_output) || interval_clear) {
Jiri Olsa421a50f2015-07-21 14:31:22 +02001714 switch (stat_config.aggr_mode) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001715 case AGGR_SOCKET:
Andi Kleen41c8ca22016-05-24 12:52:38 -07001716 fprintf(output, "# time socket cpus");
1717 if (!metric_only)
1718 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsad4f63a42015-06-26 11:29:26 +02001719 break;
1720 case AGGR_CORE:
Andi Kleen41c8ca22016-05-24 12:52:38 -07001721 fprintf(output, "# time core cpus");
1722 if (!metric_only)
1723 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsad4f63a42015-06-26 11:29:26 +02001724 break;
1725 case AGGR_NONE:
Jiri Olsaf5155722018-06-07 00:15:08 +02001726 fprintf(output, "# time CPU ");
Andi Kleen41c8ca22016-05-24 12:52:38 -07001727 if (!metric_only)
1728 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsad4f63a42015-06-26 11:29:26 +02001729 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001730 case AGGR_THREAD:
Andi Kleen41c8ca22016-05-24 12:52:38 -07001731 fprintf(output, "# time comm-pid");
1732 if (!metric_only)
1733 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsa32b8af82015-06-26 11:29:27 +02001734 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +02001735 case AGGR_GLOBAL:
1736 default:
Andi Kleen41c8ca22016-05-24 12:52:38 -07001737 fprintf(output, "# time");
1738 if (!metric_only)
1739 fprintf(output, " counts %*s events\n", unit_width, "unit");
Jiri Olsa208df992015-10-16 12:41:04 +02001740 case AGGR_UNSET:
1741 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +02001742 }
1743 }
1744
Jiri Olsa9660e082018-06-07 00:15:06 +02001745 if ((num_print_interval == 0 && metric_only) || interval_clear)
Andi Kleen41c8ca22016-05-24 12:52:38 -07001746 print_metric_headers(" ", true);
Jiri Olsad4f63a42015-06-26 11:29:26 +02001747 if (++num_print_interval == 25)
1748 num_print_interval = 0;
1749}
1750
1751static void print_header(int argc, const char **argv)
1752{
Jiri Olsa58215222015-07-21 14:31:24 +02001753 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001754 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001755
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001756 fflush(stdout);
1757
Stephane Eraniand7470b62010-12-01 18:49:05 +02001758 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001759 fprintf(output, "\n");
1760 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -06001761 if (target.system_wide)
1762 fprintf(output, "\'system wide");
1763 else if (target.cpu_list)
1764 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001765 else if (!target__has_task(&target)) {
Jiri Olsaba6039b62015-11-05 15:40:55 +01001766 fprintf(output, "\'%s", argv ? argv[0] : "pipe");
1767 for (i = 1; argv && (i < argc); i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001768 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +09001769 } else if (target.pid)
1770 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001771 else
Namhyung Kim20f946b2012-04-26 14:15:16 +09001772 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +02001773
Stephane Eranian4aa90152011-08-15 22:22:33 +02001774 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001775 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001776 fprintf(output, " (%d runs)", run_count);
1777 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001778 }
Jiri Olsad4f63a42015-06-26 11:29:26 +02001779}
1780
Jiri Olsabc22de92018-04-23 11:08:20 +02001781static int get_precision(double num)
1782{
1783 if (num > 1)
1784 return 0;
1785
1786 return lround(ceil(-log10(num)));
1787}
1788
Jiri Olsae55c14a2018-04-23 11:08:21 +02001789static void print_table(FILE *output, int precision, double avg)
1790{
1791 char tmp[64];
1792 int idx, indent = 0;
1793
1794 scnprintf(tmp, 64, " %17.*f", precision, avg);
1795 while (tmp[indent] == ' ')
1796 indent++;
1797
1798 fprintf(output, "%*s# Table of individual measurements:\n", indent, "");
1799
1800 for (idx = 0; idx < run_count; idx++) {
1801 double run = (double) walltime_run[idx] / NSEC_PER_SEC;
Jiri Olsaabc60ba2018-04-23 11:08:22 +02001802 int h, n = 1 + abs((int) (100.0 * (run - avg)/run) / 5);
Jiri Olsae55c14a2018-04-23 11:08:21 +02001803
Jiri Olsaabc60ba2018-04-23 11:08:22 +02001804 fprintf(output, " %17.*f (%+.*f) ",
Jiri Olsae55c14a2018-04-23 11:08:21 +02001805 precision, run, precision, run - avg);
Jiri Olsaabc60ba2018-04-23 11:08:22 +02001806
1807 for (h = 0; h < n; h++)
1808 fprintf(output, "#");
1809
1810 fprintf(output, "\n");
Jiri Olsae55c14a2018-04-23 11:08:21 +02001811 }
1812
1813 fprintf(output, "\n%*s# Final result:\n", indent, "");
1814}
1815
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001816static double timeval2double(struct timeval *t)
1817{
1818 return t->tv_sec + (double) t->tv_usec/USEC_PER_SEC;
1819}
1820
Jiri Olsad4f63a42015-06-26 11:29:26 +02001821static void print_footer(void)
1822{
Jiri Olsabc22de92018-04-23 11:08:20 +02001823 double avg = avg_stats(&walltime_nsecs_stats) / NSEC_PER_SEC;
Jiri Olsa58215222015-07-21 14:31:24 +02001824 FILE *output = stat_config.output;
Andi Kleen918c7b02017-05-22 18:00:16 -07001825 int n;
Jiri Olsa58215222015-07-21 14:31:24 +02001826
Jiri Olsad4f63a42015-06-26 11:29:26 +02001827 if (!null_run)
1828 fprintf(output, "\n");
Jiri Olsabc22de92018-04-23 11:08:20 +02001829
1830 if (run_count == 1) {
1831 fprintf(output, " %17.9f seconds time elapsed", avg);
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001832
1833 if (ru_display) {
1834 double ru_utime = timeval2double(&ru_data.ru_utime);
1835 double ru_stime = timeval2double(&ru_data.ru_stime);
1836
1837 fprintf(output, "\n\n");
1838 fprintf(output, " %17.9f seconds user\n", ru_utime);
1839 fprintf(output, " %17.9f seconds sys\n", ru_stime);
1840 }
Jiri Olsabc22de92018-04-23 11:08:20 +02001841 } else {
1842 double sd = stddev_stats(&walltime_nsecs_stats) / NSEC_PER_SEC;
1843 /*
1844 * Display at most 2 more significant
1845 * digits than the stddev inaccuracy.
1846 */
1847 int precision = get_precision(sd) + 2;
1848
Jiri Olsae55c14a2018-04-23 11:08:21 +02001849 if (walltime_run_table)
1850 print_table(output, precision, avg);
1851
Jiri Olsabc22de92018-04-23 11:08:20 +02001852 fprintf(output, " %17.*f +- %.*f seconds time elapsed",
1853 precision, avg, precision, sd);
1854
1855 print_noise_pct(sd, avg);
Jiri Olsad4f63a42015-06-26 11:29:26 +02001856 }
1857 fprintf(output, "\n\n");
Borislav Petkov02d492e2017-02-07 01:40:05 +01001858
Andi Kleen918c7b02017-05-22 18:00:16 -07001859 if (print_free_counters_hint &&
1860 sysctl__read_int("kernel/nmi_watchdog", &n) >= 0 &&
1861 n > 0)
Borislav Petkov02d492e2017-02-07 01:40:05 +01001862 fprintf(output,
1863"Some events weren't counted. Try disabling the NMI watchdog:\n"
1864" echo 0 > /proc/sys/kernel/nmi_watchdog\n"
1865" perf stat ...\n"
1866" echo 1 > /proc/sys/kernel/nmi_watchdog\n");
Kan Liang30060ea2018-04-24 11:20:11 -07001867
1868 if (print_mixed_hw_group_error)
1869 fprintf(output,
1870 "The events in group usually have to be from "
1871 "the same PMU. Try reorganizing the group.\n");
Jiri Olsad4f63a42015-06-26 11:29:26 +02001872}
1873
1874static void print_counters(struct timespec *ts, int argc, const char **argv)
1875{
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001876 int interval = stat_config.interval;
Jiri Olsad4f63a42015-06-26 11:29:26 +02001877 struct perf_evsel *counter;
1878 char buf[64], *prefix = NULL;
1879
Jiri Olsa664c98d2015-11-05 15:40:50 +01001880 /* Do not print anything if we record to the pipe. */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001881 if (STAT_RECORD && perf_stat.data.is_pipe)
Jiri Olsa664c98d2015-11-05 15:40:50 +01001882 return;
1883
Jiri Olsad4f63a42015-06-26 11:29:26 +02001884 if (interval)
1885 print_interval(prefix = buf, ts);
1886 else
1887 print_header(argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001888
Andi Kleen54b50912016-03-03 15:57:36 -08001889 if (metric_only) {
1890 static int num_print_iv;
1891
Andi Kleen41c8ca22016-05-24 12:52:38 -07001892 if (num_print_iv == 0 && !interval)
1893 print_metric_headers(prefix, false);
Andi Kleen54b50912016-03-03 15:57:36 -08001894 if (num_print_iv++ == 25)
1895 num_print_iv = 0;
1896 if (stat_config.aggr_mode == AGGR_GLOBAL && prefix)
1897 fprintf(stat_config.output, "%s", prefix);
1898 }
1899
Jiri Olsa421a50f2015-07-21 14:31:22 +02001900 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +01001901 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001902 case AGGR_SOCKET:
Jiri Olsad4f63a42015-06-26 11:29:26 +02001903 print_aggr(prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001904 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001905 case AGGR_THREAD:
Andi Kleene864c5c2017-08-31 12:40:35 -07001906 evlist__for_each_entry(evsel_list, counter) {
1907 if (is_duration_time(counter))
1908 continue;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001909 print_aggr_thread(counter, prefix);
Andi Kleene864c5c2017-08-31 12:40:35 -07001910 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001911 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001912 case AGGR_GLOBAL:
Andi Kleene864c5c2017-08-31 12:40:35 -07001913 evlist__for_each_entry(evsel_list, counter) {
1914 if (is_duration_time(counter))
1915 continue;
Jiri Olsad4f63a42015-06-26 11:29:26 +02001916 print_counter_aggr(counter, prefix);
Andi Kleene864c5c2017-08-31 12:40:35 -07001917 }
Andi Kleen54b50912016-03-03 15:57:36 -08001918 if (metric_only)
1919 fputc('\n', stat_config.output);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001920 break;
1921 case AGGR_NONE:
Andi Kleen206cab62016-03-03 15:57:37 -08001922 if (metric_only)
1923 print_no_aggr_metric(prefix);
1924 else {
Andi Kleene864c5c2017-08-31 12:40:35 -07001925 evlist__for_each_entry(evsel_list, counter) {
1926 if (is_duration_time(counter))
1927 continue;
Andi Kleen206cab62016-03-03 15:57:37 -08001928 print_counter(counter, prefix);
Andi Kleene864c5c2017-08-31 12:40:35 -07001929 }
Andi Kleen206cab62016-03-03 15:57:37 -08001930 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001931 break;
Jiri Olsa208df992015-10-16 12:41:04 +02001932 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001933 default:
1934 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001935 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001936
Jiri Olsad4f63a42015-06-26 11:29:26 +02001937 if (!interval && !csv_output)
1938 print_footer();
1939
Jiri Olsa58215222015-07-21 14:31:24 +02001940 fflush(stat_config.output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001941}
1942
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001943static volatile int signr = -1;
1944
Ingo Molnar52425192009-05-26 09:17:18 +02001945static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001946{
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001947 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +08001948 done = 1;
1949
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001950 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001951 /*
1952 * render child_pid harmless
1953 * won't send SIGTERM to a random
1954 * process in case of race condition
1955 * and fast PID recycling
1956 */
1957 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001958}
1959
1960static void sig_atexit(void)
1961{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001962 sigset_t set, oset;
1963
1964 /*
1965 * avoid race condition with SIGCHLD handler
1966 * in skip_signal() which is modifying child_pid
1967 * goal is to avoid send SIGTERM to a random
1968 * process
1969 */
1970 sigemptyset(&set);
1971 sigaddset(&set, SIGCHLD);
1972 sigprocmask(SIG_BLOCK, &set, &oset);
1973
Chris Wilson933da832009-10-04 01:35:01 +01001974 if (child_pid != -1)
1975 kill(child_pid, SIGTERM);
1976
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001977 sigprocmask(SIG_SETMASK, &oset, NULL);
1978
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001979 if (signr == -1)
1980 return;
1981
1982 signal(signr, SIG_DFL);
1983 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001984}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001985
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001986static int stat__set_big_num(const struct option *opt __maybe_unused,
1987 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001988{
1989 big_num_opt = unset ? 0 : 1;
1990 return 0;
1991}
1992
Andi Kleen44b1e602016-05-30 12:49:42 -03001993static int enable_metric_only(const struct option *opt __maybe_unused,
1994 const char *s __maybe_unused, int unset)
1995{
1996 force_metric_only = true;
1997 metric_only = !unset;
1998 return 0;
1999}
2000
Andi Kleenb18f3e32017-08-31 12:40:31 -07002001static int parse_metric_groups(const struct option *opt,
2002 const char *str,
2003 int unset __maybe_unused)
2004{
2005 return metricgroup__parse_groups(opt, str, &metric_events);
2006}
2007
Jiri Olsae0547312015-11-05 15:40:45 +01002008static const struct option stat_options[] = {
2009 OPT_BOOLEAN('T', "transaction", &transaction_run,
2010 "hardware transaction statistics"),
2011 OPT_CALLBACK('e', "event", &evsel_list, "event",
2012 "event selector. use 'perf list' to list available events",
2013 parse_events_option),
2014 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
2015 "event filter", parse_filter),
2016 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
2017 "child tasks do not inherit counters"),
2018 OPT_STRING('p', "pid", &target.pid, "pid",
2019 "stat events on existing process id"),
2020 OPT_STRING('t', "tid", &target.tid, "tid",
2021 "stat events on existing thread id"),
2022 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
2023 "system-wide collection from all CPUs"),
2024 OPT_BOOLEAN('g', "group", &group,
2025 "put the counters into a counter group"),
2026 OPT_BOOLEAN('c', "scale", &stat_config.scale, "scale/normalize counters"),
2027 OPT_INCR('v', "verbose", &verbose,
2028 "be more verbose (show counter open errors, etc)"),
2029 OPT_INTEGER('r', "repeat", &run_count,
2030 "repeat command and print average + stddev (max: 100, forever: 0)"),
Jiri Olsae55c14a2018-04-23 11:08:21 +02002031 OPT_BOOLEAN(0, "table", &walltime_run_table,
2032 "display details about each run (only with -r option)"),
Jiri Olsae0547312015-11-05 15:40:45 +01002033 OPT_BOOLEAN('n', "null", &null_run,
2034 "null run - dont start any counters"),
2035 OPT_INCR('d', "detailed", &detailed_run,
2036 "detailed run - start a lot of events"),
2037 OPT_BOOLEAN('S', "sync", &sync_run,
2038 "call sync() before starting a run"),
2039 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
2040 "print large numbers with thousands\' separators",
2041 stat__set_big_num),
2042 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
2043 "list of cpus to monitor in system-wide"),
2044 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
2045 "disable CPU count aggregation", AGGR_NONE),
Andi Kleen430daf22017-03-20 13:17:00 -07002046 OPT_BOOLEAN(0, "no-merge", &no_merge, "Do not merge identical named events"),
Jiri Olsae0547312015-11-05 15:40:45 +01002047 OPT_STRING('x', "field-separator", &csv_sep, "separator",
2048 "print counts with custom separator"),
2049 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
2050 "monitor event in cgroup name only", parse_cgroups),
2051 OPT_STRING('o', "output", &output_name, "file", "output file name"),
2052 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
2053 OPT_INTEGER(0, "log-fd", &output_fd,
2054 "log output to fd, instead of stderr"),
2055 OPT_STRING(0, "pre", &pre_cmd, "command",
2056 "command to run prior to the measured command"),
2057 OPT_STRING(0, "post", &post_cmd, "command",
2058 "command to run after to the measured command"),
2059 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Alexey Budankov9dc9a952018-04-03 21:18:33 +03002060 "print counts at regular interval in ms "
2061 "(overhead is possible for values <= 100ms)"),
yuzhoujiandb06a262018-01-29 10:25:22 +01002062 OPT_INTEGER(0, "interval-count", &stat_config.times,
2063 "print counts for fixed number of times"),
Jiri Olsa9660e082018-06-07 00:15:06 +02002064 OPT_BOOLEAN(0, "interval-clear", &interval_clear,
2065 "clear screen in between new interval"),
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002066 OPT_UINTEGER(0, "timeout", &stat_config.timeout,
2067 "stop workload and print counts after a timeout period in ms (>= 10ms)"),
Jiri Olsae0547312015-11-05 15:40:45 +01002068 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
2069 "aggregate counts per processor socket", AGGR_SOCKET),
2070 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
2071 "aggregate counts per physical processor core", AGGR_CORE),
2072 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
2073 "aggregate counts per thread", AGGR_THREAD),
2074 OPT_UINTEGER('D', "delay", &initial_delay,
2075 "ms to wait before starting measurement after program start"),
Andi Kleen44b1e602016-05-30 12:49:42 -03002076 OPT_CALLBACK_NOOPT(0, "metric-only", &metric_only, NULL,
2077 "Only print computed metrics. No raw values", enable_metric_only),
2078 OPT_BOOLEAN(0, "topdown", &topdown_run,
2079 "measure topdown level 1 statistics"),
Kan Liangdaefd0b2017-05-26 12:05:38 -07002080 OPT_BOOLEAN(0, "smi-cost", &smi_cost,
2081 "measure SMI cost"),
Andi Kleenb18f3e32017-08-31 12:40:31 -07002082 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
2083 "monitor specified metrics or metric groups (separated by ,)",
2084 parse_metric_groups),
Jiri Olsae0547312015-11-05 15:40:45 +01002085 OPT_END()
2086};
2087
Jiri Olsa1fe7a302015-10-16 12:41:15 +02002088static int perf_stat__get_socket(struct cpu_map *map, int cpu)
2089{
2090 return cpu_map__get_socket(map, cpu, NULL);
2091}
2092
2093static int perf_stat__get_core(struct cpu_map *map, int cpu)
2094{
2095 return cpu_map__get_core(map, cpu, NULL);
2096}
2097
Jiri Olsa1e5a2932015-10-25 15:51:18 +01002098static int cpu_map__get_max(struct cpu_map *map)
2099{
2100 int i, max = -1;
2101
2102 for (i = 0; i < map->nr; i++) {
2103 if (map->map[i] > max)
2104 max = map->map[i];
2105 }
2106
2107 return max;
2108}
2109
2110static struct cpu_map *cpus_aggr_map;
2111
2112static int perf_stat__get_aggr(aggr_get_id_t get_id, struct cpu_map *map, int idx)
2113{
2114 int cpu;
2115
2116 if (idx >= map->nr)
2117 return -1;
2118
2119 cpu = map->map[idx];
2120
2121 if (cpus_aggr_map->map[cpu] == -1)
2122 cpus_aggr_map->map[cpu] = get_id(map, idx);
2123
2124 return cpus_aggr_map->map[cpu];
2125}
2126
2127static int perf_stat__get_socket_cached(struct cpu_map *map, int idx)
2128{
2129 return perf_stat__get_aggr(perf_stat__get_socket, map, idx);
2130}
2131
2132static int perf_stat__get_core_cached(struct cpu_map *map, int idx)
2133{
2134 return perf_stat__get_aggr(perf_stat__get_core, map, idx);
2135}
2136
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002137static int perf_stat_init_aggr_mode(void)
2138{
Jiri Olsa1e5a2932015-10-25 15:51:18 +01002139 int nr;
2140
Jiri Olsa421a50f2015-07-21 14:31:22 +02002141 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002142 case AGGR_SOCKET:
2143 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
2144 perror("cannot build socket map");
2145 return -1;
2146 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01002147 aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002148 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01002149 case AGGR_CORE:
2150 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
2151 perror("cannot build core map");
2152 return -1;
2153 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01002154 aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +01002155 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002156 case AGGR_NONE:
2157 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02002158 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +02002159 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002160 default:
2161 break;
2162 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01002163
2164 /*
2165 * The evsel_list->cpus is the base we operate on,
2166 * taking the highest cpu number to be the size of
2167 * the aggregation translate cpumap.
2168 */
2169 nr = cpu_map__get_max(evsel_list->cpus);
2170 cpus_aggr_map = cpu_map__empty_new(nr + 1);
2171 return cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002172}
2173
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09002174static void perf_stat__exit_aggr_mode(void)
2175{
2176 cpu_map__put(aggr_map);
2177 cpu_map__put(cpus_aggr_map);
2178 aggr_map = NULL;
2179 cpus_aggr_map = NULL;
2180}
2181
Jiri Olsa68d702f2015-11-05 15:40:58 +01002182static inline int perf_env__get_cpu(struct perf_env *env, struct cpu_map *map, int idx)
2183{
2184 int cpu;
2185
2186 if (idx > map->nr)
2187 return -1;
2188
2189 cpu = map->map[idx];
2190
Jan Stancekda8a58b2017-02-17 12:10:26 +01002191 if (cpu >= env->nr_cpus_avail)
Jiri Olsa68d702f2015-11-05 15:40:58 +01002192 return -1;
2193
2194 return cpu;
2195}
2196
2197static int perf_env__get_socket(struct cpu_map *map, int idx, void *data)
2198{
2199 struct perf_env *env = data;
2200 int cpu = perf_env__get_cpu(env, map, idx);
2201
2202 return cpu == -1 ? -1 : env->cpu[cpu].socket_id;
2203}
2204
2205static int perf_env__get_core(struct cpu_map *map, int idx, void *data)
2206{
2207 struct perf_env *env = data;
2208 int core = -1, cpu = perf_env__get_cpu(env, map, idx);
2209
2210 if (cpu != -1) {
2211 int socket_id = env->cpu[cpu].socket_id;
2212
2213 /*
2214 * Encode socket in upper 16 bits
2215 * core_id is relative to socket, and
2216 * we need a global id. So we combine
2217 * socket + core id.
2218 */
2219 core = (socket_id << 16) | (env->cpu[cpu].core_id & 0xffff);
2220 }
2221
2222 return core;
2223}
2224
2225static int perf_env__build_socket_map(struct perf_env *env, struct cpu_map *cpus,
2226 struct cpu_map **sockp)
2227{
2228 return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
2229}
2230
2231static int perf_env__build_core_map(struct perf_env *env, struct cpu_map *cpus,
2232 struct cpu_map **corep)
2233{
2234 return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
2235}
2236
2237static int perf_stat__get_socket_file(struct cpu_map *map, int idx)
2238{
2239 return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
2240}
2241
2242static int perf_stat__get_core_file(struct cpu_map *map, int idx)
2243{
2244 return perf_env__get_core(map, idx, &perf_stat.session->header.env);
2245}
2246
2247static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
2248{
2249 struct perf_env *env = &st->session->header.env;
2250
2251 switch (stat_config.aggr_mode) {
2252 case AGGR_SOCKET:
2253 if (perf_env__build_socket_map(env, evsel_list->cpus, &aggr_map)) {
2254 perror("cannot build socket map");
2255 return -1;
2256 }
2257 aggr_get_id = perf_stat__get_socket_file;
2258 break;
2259 case AGGR_CORE:
2260 if (perf_env__build_core_map(env, evsel_list->cpus, &aggr_map)) {
2261 perror("cannot build core map");
2262 return -1;
2263 }
2264 aggr_get_id = perf_stat__get_core_file;
2265 break;
2266 case AGGR_NONE:
2267 case AGGR_GLOBAL:
2268 case AGGR_THREAD:
2269 case AGGR_UNSET:
2270 default:
2271 break;
2272 }
2273
2274 return 0;
2275}
2276
Andi Kleen44b1e602016-05-30 12:49:42 -03002277static int topdown_filter_events(const char **attr, char **str, bool use_group)
2278{
2279 int off = 0;
2280 int i;
2281 int len = 0;
2282 char *s;
2283
2284 for (i = 0; attr[i]; i++) {
2285 if (pmu_have_event("cpu", attr[i])) {
2286 len += strlen(attr[i]) + 1;
2287 attr[i - off] = attr[i];
2288 } else
2289 off++;
2290 }
2291 attr[i - off] = NULL;
2292
2293 *str = malloc(len + 1 + 2);
2294 if (!*str)
2295 return -1;
2296 s = *str;
2297 if (i - off == 0) {
2298 *s = 0;
2299 return 0;
2300 }
2301 if (use_group)
2302 *s++ = '{';
2303 for (i = 0; attr[i]; i++) {
2304 strcpy(s, attr[i]);
2305 s += strlen(s);
2306 *s++ = ',';
2307 }
2308 if (use_group) {
2309 s[-1] = '}';
2310 *s = 0;
2311 } else
2312 s[-1] = 0;
2313 return 0;
2314}
2315
2316__weak bool arch_topdown_check_group(bool *warn)
2317{
2318 *warn = false;
2319 return false;
2320}
2321
2322__weak void arch_topdown_group_warn(void)
2323{
2324}
2325
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002326/*
2327 * Add default attributes, if there were no attributes specified or
2328 * if -d/--detailed, -d -d or -d -d -d is used:
2329 */
2330static int add_default_attributes(void)
2331{
Andi Kleen44b1e602016-05-30 12:49:42 -03002332 int err;
Andi Kleen9dec4472016-02-26 16:27:56 -08002333 struct perf_event_attr default_attrs0[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002334
2335 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
2336 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
2337 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
2338 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
2339
2340 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Andi Kleen9dec4472016-02-26 16:27:56 -08002341};
2342 struct perf_event_attr frontend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002343 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08002344};
2345 struct perf_event_attr backend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002346 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08002347};
2348 struct perf_event_attr default_attrs1[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002349 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
2350 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
2351 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
2352
2353};
2354
2355/*
2356 * Detailed stats (-d), covering the L1 and last level data caches:
2357 */
2358 struct perf_event_attr detailed_attrs[] = {
2359
2360 { .type = PERF_TYPE_HW_CACHE,
2361 .config =
2362 PERF_COUNT_HW_CACHE_L1D << 0 |
2363 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2364 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2365
2366 { .type = PERF_TYPE_HW_CACHE,
2367 .config =
2368 PERF_COUNT_HW_CACHE_L1D << 0 |
2369 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2370 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2371
2372 { .type = PERF_TYPE_HW_CACHE,
2373 .config =
2374 PERF_COUNT_HW_CACHE_LL << 0 |
2375 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2376 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2377
2378 { .type = PERF_TYPE_HW_CACHE,
2379 .config =
2380 PERF_COUNT_HW_CACHE_LL << 0 |
2381 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2382 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2383};
2384
2385/*
2386 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
2387 */
2388 struct perf_event_attr very_detailed_attrs[] = {
2389
2390 { .type = PERF_TYPE_HW_CACHE,
2391 .config =
2392 PERF_COUNT_HW_CACHE_L1I << 0 |
2393 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2394 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2395
2396 { .type = PERF_TYPE_HW_CACHE,
2397 .config =
2398 PERF_COUNT_HW_CACHE_L1I << 0 |
2399 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2400 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2401
2402 { .type = PERF_TYPE_HW_CACHE,
2403 .config =
2404 PERF_COUNT_HW_CACHE_DTLB << 0 |
2405 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2406 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2407
2408 { .type = PERF_TYPE_HW_CACHE,
2409 .config =
2410 PERF_COUNT_HW_CACHE_DTLB << 0 |
2411 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2412 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2413
2414 { .type = PERF_TYPE_HW_CACHE,
2415 .config =
2416 PERF_COUNT_HW_CACHE_ITLB << 0 |
2417 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2418 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2419
2420 { .type = PERF_TYPE_HW_CACHE,
2421 .config =
2422 PERF_COUNT_HW_CACHE_ITLB << 0 |
2423 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
2424 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2425
2426};
2427
2428/*
2429 * Very, very detailed stats (-d -d -d), adding prefetch events:
2430 */
2431 struct perf_event_attr very_very_detailed_attrs[] = {
2432
2433 { .type = PERF_TYPE_HW_CACHE,
2434 .config =
2435 PERF_COUNT_HW_CACHE_L1D << 0 |
2436 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
2437 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
2438
2439 { .type = PERF_TYPE_HW_CACHE,
2440 .config =
2441 PERF_COUNT_HW_CACHE_L1D << 0 |
2442 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
2443 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
2444};
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002445 struct parse_events_error errinfo;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002446
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002447 /* Set attrs if no event is selected and !null_run: */
2448 if (null_run)
2449 return 0;
2450
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002451 if (transaction_run) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002452 if (pmu_have_event("cpu", "cycles-ct") &&
2453 pmu_have_event("cpu", "el-start"))
Thomas Richterfca323402018-03-08 15:57:35 +01002454 err = parse_events(evsel_list, transaction_attrs,
2455 &errinfo);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002456 else
Thomas Richterfca323402018-03-08 15:57:35 +01002457 err = parse_events(evsel_list,
2458 transaction_limited_attrs,
2459 &errinfo);
Jiri Olsaa4547422015-06-03 16:25:53 +02002460 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002461 fprintf(stderr, "Cannot set up transaction events\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002462 parse_events_print_error(&errinfo, transaction_attrs);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07002463 return -1;
2464 }
2465 return 0;
2466 }
2467
Kan Liangdaefd0b2017-05-26 12:05:38 -07002468 if (smi_cost) {
2469 int smi;
2470
2471 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
2472 fprintf(stderr, "freeze_on_smi is not supported.\n");
2473 return -1;
2474 }
2475
2476 if (!smi) {
2477 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
2478 fprintf(stderr, "Failed to set freeze_on_smi.\n");
2479 return -1;
2480 }
2481 smi_reset = true;
2482 }
2483
2484 if (pmu_have_event("msr", "aperf") &&
2485 pmu_have_event("msr", "smi")) {
2486 if (!force_metric_only)
2487 metric_only = true;
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002488 err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
Kan Liangdaefd0b2017-05-26 12:05:38 -07002489 } else {
2490 fprintf(stderr, "To measure SMI cost, it needs "
2491 "msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002492 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07002493 return -1;
2494 }
2495 if (err) {
2496 fprintf(stderr, "Cannot set up SMI cost events\n");
2497 return -1;
2498 }
2499 return 0;
2500 }
2501
Andi Kleen44b1e602016-05-30 12:49:42 -03002502 if (topdown_run) {
2503 char *str = NULL;
2504 bool warn = false;
2505
2506 if (stat_config.aggr_mode != AGGR_GLOBAL &&
2507 stat_config.aggr_mode != AGGR_CORE) {
2508 pr_err("top down event configuration requires --per-core mode\n");
2509 return -1;
2510 }
2511 stat_config.aggr_mode = AGGR_CORE;
2512 if (nr_cgroups || !target__has_cpu(&target)) {
2513 pr_err("top down event configuration requires system-wide mode (-a)\n");
2514 return -1;
2515 }
2516
2517 if (!force_metric_only)
2518 metric_only = true;
2519 if (topdown_filter_events(topdown_attrs, &str,
2520 arch_topdown_check_group(&warn)) < 0) {
2521 pr_err("Out of memory\n");
2522 return -1;
2523 }
2524 if (topdown_attrs[0] && str) {
2525 if (warn)
2526 arch_topdown_group_warn();
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002527 err = parse_events(evsel_list, str, &errinfo);
Andi Kleen44b1e602016-05-30 12:49:42 -03002528 if (err) {
2529 fprintf(stderr,
2530 "Cannot set up top down events %s: %d\n",
2531 str, err);
2532 free(str);
Jiri Olsaa5cfa622018-06-07 00:15:10 +02002533 parse_events_print_error(&errinfo, str);
Andi Kleen44b1e602016-05-30 12:49:42 -03002534 return -1;
2535 }
2536 } else {
2537 fprintf(stderr, "System does not support topdown\n");
2538 return -1;
2539 }
2540 free(str);
2541 }
2542
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002543 if (!evsel_list->nr_entries) {
Namhyung Kima1f3d562016-05-13 15:01:03 +09002544 if (target__has_cpu(&target))
2545 default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
2546
Andi Kleen9dec4472016-02-26 16:27:56 -08002547 if (perf_evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
2548 return -1;
2549 if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
2550 if (perf_evlist__add_default_attrs(evsel_list,
2551 frontend_attrs) < 0)
2552 return -1;
2553 }
2554 if (pmu_have_event("cpu", "stalled-cycles-backend")) {
2555 if (perf_evlist__add_default_attrs(evsel_list,
2556 backend_attrs) < 0)
2557 return -1;
2558 }
2559 if (perf_evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02002560 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002561 }
2562
2563 /* Detailed events get appended to the event list: */
2564
2565 if (detailed_run < 1)
2566 return 0;
2567
2568 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03002569 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02002570 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002571
2572 if (detailed_run < 2)
2573 return 0;
2574
2575 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03002576 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02002577 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002578
2579 if (detailed_run < 3)
2580 return 0;
2581
2582 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03002583 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002584}
2585
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002586static const char * const stat_record_usage[] = {
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002587 "perf stat record [<options>]",
2588 NULL,
2589};
2590
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01002591static void init_features(struct perf_session *session)
2592{
2593 int feat;
2594
2595 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
2596 perf_header__set_feat(&session->header, feat);
2597
2598 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
2599 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
2600 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
2601 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
2602}
2603
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002604static int __cmd_record(int argc, const char **argv)
2605{
2606 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002607 struct perf_data *data = &perf_stat.data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002608
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002609 argc = parse_options(argc, argv, stat_options, stat_record_usage,
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002610 PARSE_OPT_STOP_AT_NON_OPTION);
2611
2612 if (output_name)
Jiri Olsaeae8ad82017-01-23 22:25:41 +01002613 data->file.path = output_name;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002614
Jiri Olsae9d6db8e82015-11-05 15:40:53 +01002615 if (run_count != 1 || forever) {
2616 pr_err("Cannot use -r option with perf stat record.\n");
2617 return -1;
2618 }
2619
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002620 session = perf_session__new(data, false, NULL);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002621 if (session == NULL) {
2622 pr_err("Perf session creation failed.\n");
2623 return -1;
2624 }
2625
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01002626 init_features(session);
2627
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002628 session->evlist = evsel_list;
2629 perf_stat.session = session;
2630 perf_stat.record = true;
2631 return argc;
2632}
2633
Jiri Olsaa56f9392015-11-05 15:40:59 +01002634static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
2635 union perf_event *event,
2636 struct perf_session *session)
2637{
Andi Kleene3b03b62016-05-05 16:04:03 -07002638 struct stat_round_event *stat_round = &event->stat_round;
Jiri Olsaa56f9392015-11-05 15:40:59 +01002639 struct perf_evsel *counter;
2640 struct timespec tsh, *ts = NULL;
2641 const char **argv = session->header.env.cmdline_argv;
2642 int argc = session->header.env.nr_cmdline;
2643
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002644 evlist__for_each_entry(evsel_list, counter)
Jiri Olsaa56f9392015-11-05 15:40:59 +01002645 perf_stat_process_counter(&stat_config, counter);
2646
Andi Kleene3b03b62016-05-05 16:04:03 -07002647 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
2648 update_stats(&walltime_nsecs_stats, stat_round->time);
Jiri Olsaa56f9392015-11-05 15:40:59 +01002649
Andi Kleene3b03b62016-05-05 16:04:03 -07002650 if (stat_config.interval && stat_round->time) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -03002651 tsh.tv_sec = stat_round->time / NSEC_PER_SEC;
2652 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
Jiri Olsaa56f9392015-11-05 15:40:59 +01002653 ts = &tsh;
2654 }
2655
2656 print_counters(ts, argc, argv);
2657 return 0;
2658}
2659
Jiri Olsa62ba18b2015-11-05 15:40:57 +01002660static
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03002661int process_stat_config_event(struct perf_tool *tool,
Jiri Olsa62ba18b2015-11-05 15:40:57 +01002662 union perf_event *event,
2663 struct perf_session *session __maybe_unused)
2664{
Jiri Olsa68d702f2015-11-05 15:40:58 +01002665 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2666
Jiri Olsa62ba18b2015-11-05 15:40:57 +01002667 perf_event__read_stat_config(&stat_config, &event->stat_config);
Jiri Olsa68d702f2015-11-05 15:40:58 +01002668
Jiri Olsa89af4e02015-11-05 15:41:02 +01002669 if (cpu_map__empty(st->cpus)) {
2670 if (st->aggr_mode != AGGR_UNSET)
2671 pr_warning("warning: processing task data, aggregation mode not set\n");
2672 return 0;
2673 }
2674
2675 if (st->aggr_mode != AGGR_UNSET)
2676 stat_config.aggr_mode = st->aggr_mode;
2677
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002678 if (perf_stat.data.is_pipe)
Jiri Olsa68d702f2015-11-05 15:40:58 +01002679 perf_stat_init_aggr_mode();
2680 else
2681 perf_stat_init_aggr_mode_file(st);
2682
Jiri Olsa62ba18b2015-11-05 15:40:57 +01002683 return 0;
2684}
2685
Jiri Olsa1975d362015-11-05 15:40:56 +01002686static int set_maps(struct perf_stat *st)
2687{
2688 if (!st->cpus || !st->threads)
2689 return 0;
2690
2691 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
2692 return -EINVAL;
2693
2694 perf_evlist__set_maps(evsel_list, st->cpus, st->threads);
2695
2696 if (perf_evlist__alloc_stats(evsel_list, true))
2697 return -ENOMEM;
2698
2699 st->maps_allocated = true;
2700 return 0;
2701}
2702
2703static
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03002704int process_thread_map_event(struct perf_tool *tool,
Jiri Olsa1975d362015-11-05 15:40:56 +01002705 union perf_event *event,
2706 struct perf_session *session __maybe_unused)
2707{
2708 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2709
2710 if (st->threads) {
2711 pr_warning("Extra thread map event, ignoring.\n");
2712 return 0;
2713 }
2714
2715 st->threads = thread_map__new_event(&event->thread_map);
2716 if (!st->threads)
2717 return -ENOMEM;
2718
2719 return set_maps(st);
2720}
2721
2722static
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03002723int process_cpu_map_event(struct perf_tool *tool,
Jiri Olsa1975d362015-11-05 15:40:56 +01002724 union perf_event *event,
2725 struct perf_session *session __maybe_unused)
2726{
2727 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2728 struct cpu_map *cpus;
2729
2730 if (st->cpus) {
2731 pr_warning("Extra cpu map event, ignoring.\n");
2732 return 0;
2733 }
2734
2735 cpus = cpu_map__new_data(&event->cpu_map.data);
2736 if (!cpus)
2737 return -ENOMEM;
2738
2739 st->cpus = cpus;
2740 return set_maps(st);
2741}
2742
Jin Yao56739442017-12-05 22:03:07 +08002743static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
2744{
2745 int i;
2746
2747 config->stats = calloc(nthreads, sizeof(struct runtime_stat));
2748 if (!config->stats)
2749 return -1;
2750
2751 config->stats_num = nthreads;
2752
2753 for (i = 0; i < nthreads; i++)
2754 runtime_stat__init(&config->stats[i]);
2755
2756 return 0;
2757}
2758
2759static void runtime_stat_delete(struct perf_stat_config *config)
2760{
2761 int i;
2762
2763 if (!config->stats)
2764 return;
2765
2766 for (i = 0; i < config->stats_num; i++)
2767 runtime_stat__exit(&config->stats[i]);
2768
2769 free(config->stats);
2770}
2771
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002772static const char * const stat_report_usage[] = {
Jiri Olsaba6039b62015-11-05 15:40:55 +01002773 "perf stat report [<options>]",
2774 NULL,
2775};
2776
2777static struct perf_stat perf_stat = {
2778 .tool = {
2779 .attr = perf_event__process_attr,
Jiri Olsafa6ea782015-11-05 15:41:00 +01002780 .event_update = perf_event__process_event_update,
Jiri Olsa1975d362015-11-05 15:40:56 +01002781 .thread_map = process_thread_map_event,
2782 .cpu_map = process_cpu_map_event,
Jiri Olsa62ba18b2015-11-05 15:40:57 +01002783 .stat_config = process_stat_config_event,
Jiri Olsaa56f9392015-11-05 15:40:59 +01002784 .stat = perf_event__process_stat_event,
2785 .stat_round = process_stat_round_event,
Jiri Olsaba6039b62015-11-05 15:40:55 +01002786 },
Jiri Olsa89af4e02015-11-05 15:41:02 +01002787 .aggr_mode = AGGR_UNSET,
Jiri Olsaba6039b62015-11-05 15:40:55 +01002788};
2789
2790static int __cmd_report(int argc, const char **argv)
2791{
2792 struct perf_session *session;
2793 const struct option options[] = {
2794 OPT_STRING('i', "input", &input_name, "file", "input file name"),
Jiri Olsa89af4e02015-11-05 15:41:02 +01002795 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
2796 "aggregate counts per processor socket", AGGR_SOCKET),
2797 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
2798 "aggregate counts per physical processor core", AGGR_CORE),
2799 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
2800 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsaba6039b62015-11-05 15:40:55 +01002801 OPT_END()
2802 };
2803 struct stat st;
2804 int ret;
2805
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002806 argc = parse_options(argc, argv, options, stat_report_usage, 0);
Jiri Olsaba6039b62015-11-05 15:40:55 +01002807
2808 if (!input_name || !strlen(input_name)) {
2809 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
2810 input_name = "-";
2811 else
2812 input_name = "perf.data";
2813 }
2814
Jiri Olsaeae8ad82017-01-23 22:25:41 +01002815 perf_stat.data.file.path = input_name;
2816 perf_stat.data.mode = PERF_DATA_MODE_READ;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002817
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002818 session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
Jiri Olsaba6039b62015-11-05 15:40:55 +01002819 if (session == NULL)
2820 return -1;
2821
2822 perf_stat.session = session;
2823 stat_config.output = stderr;
2824 evsel_list = session->evlist;
2825
2826 ret = perf_session__process_events(session);
2827 if (ret)
2828 return ret;
2829
2830 perf_session__delete(session);
2831 return 0;
2832}
2833
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002834static void setup_system_wide(int forks)
2835{
2836 /*
2837 * Make system wide (-a) the default target if
2838 * no target was specified and one of following
2839 * conditions is met:
2840 *
2841 * - there's no workload specified
2842 * - there is workload specified but all requested
2843 * events are system wide events
2844 */
2845 if (!target__none(&target))
2846 return;
2847
2848 if (!forks)
2849 target.system_wide = true;
2850 else {
2851 struct perf_evsel *counter;
2852
2853 evlist__for_each_entry(evsel_list, counter) {
2854 if (!counter->system_wide)
2855 return;
2856 }
2857
2858 if (evsel_list->nr_entries)
2859 target.system_wide = true;
2860 }
2861}
2862
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002863int cmd_stat(int argc, const char **argv)
Ingo Molnar52425192009-05-26 09:17:18 +02002864{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002865 const char * const stat_usage[] = {
2866 "perf stat [<options>] [<command>]",
2867 NULL
2868 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09002869 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02002870 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02002871 FILE *output = stderr;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002872 unsigned int interval, timeout;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002873 const char * const stat_subcommands[] = { "record", "report" };
Ingo Molnar42202dd2009-06-13 14:57:28 +02002874
Stephane Eranian5af52b52010-05-18 15:00:01 +02002875 setlocale(LC_ALL, "");
2876
Namhyung Kim334fe7a2013-03-11 16:43:12 +09002877 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02002878 if (evsel_list == NULL)
2879 return -ENOMEM;
2880
Wang Nan1669e502016-02-19 11:43:58 +00002881 parse_events__shrink_config_terms();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002882 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
2883 (const char **) stat_usage,
2884 PARSE_OPT_STOP_AT_NON_OPTION);
Andi Kleen37932c12017-03-20 13:17:08 -07002885 perf_stat__collect_metric_expr(evsel_list);
Andi Kleenfb4605b2016-03-01 10:57:52 -08002886 perf_stat__init_shadow_stats();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002887
Jiri Olsa6edb78a2015-11-05 15:41:01 +01002888 if (csv_sep) {
2889 csv_output = true;
2890 if (!strcmp(csv_sep, "\\t"))
2891 csv_sep = "\t";
2892 } else
2893 csv_sep = DEFAULT_SEPARATOR;
2894
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002895 if (argc && !strncmp(argv[0], "rec", 3)) {
2896 argc = __cmd_record(argc, argv);
2897 if (argc < 0)
2898 return -1;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002899 } else if (argc && !strncmp(argv[0], "rep", 3))
2900 return __cmd_report(argc, argv);
Stephane Eraniand7470b62010-12-01 18:49:05 +02002901
Jiri Olsaec0d3d12015-07-21 14:31:25 +02002902 interval = stat_config.interval;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002903 timeout = stat_config.timeout;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02002904
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002905 /*
2906 * For record command the -o is already taken care of.
2907 */
2908 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
Stephane Eranian4aa90152011-08-15 22:22:33 +02002909 output = NULL;
2910
Jim Cromie56f3bae2011-09-07 17:14:00 -06002911 if (output_name && output_fd) {
2912 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002913 parse_options_usage(stat_usage, stat_options, "o", 1);
2914 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002915 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06002916 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002917
Andi Kleen54b50912016-03-03 15:57:36 -08002918 if (metric_only && stat_config.aggr_mode == AGGR_THREAD) {
2919 fprintf(stderr, "--metric-only is not supported with --per-thread\n");
2920 goto out;
2921 }
2922
Andi Kleen54b50912016-03-03 15:57:36 -08002923 if (metric_only && run_count > 1) {
2924 fprintf(stderr, "--metric-only is not supported with -r\n");
2925 goto out;
2926 }
2927
Jiri Olsae55c14a2018-04-23 11:08:21 +02002928 if (walltime_run_table && run_count <= 1) {
2929 fprintf(stderr, "--table is only supported with -r\n");
2930 parse_options_usage(stat_usage, stat_options, "r", 1);
2931 parse_options_usage(NULL, stat_options, "table", 0);
2932 goto out;
2933 }
2934
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002935 if (output_fd < 0) {
2936 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002937 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002938 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002939 }
2940
Stephane Eranian4aa90152011-08-15 22:22:33 +02002941 if (!output) {
2942 struct timespec tm;
2943 mode = append_file ? "a" : "w";
2944
2945 output = fopen(output_name, mode);
2946 if (!output) {
2947 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06002948 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02002949 }
2950 clock_gettime(CLOCK_REALTIME, &tm);
2951 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002952 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06002953 mode = append_file ? "a" : "w";
2954 output = fdopen(output_fd, mode);
2955 if (!output) {
2956 perror("Failed opening logfd");
2957 return -errno;
2958 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02002959 }
2960
Jiri Olsa58215222015-07-21 14:31:24 +02002961 stat_config.output = output;
2962
Stephane Eraniand7470b62010-12-01 18:49:05 +02002963 /*
2964 * let the spreadsheet do the pretty-printing
2965 */
2966 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06002967 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02002968 if (big_num_opt == 1) {
2969 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002970 parse_options_usage(stat_usage, stat_options, "B", 1);
2971 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002972 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02002973 } else /* Nope, so disable big number formatting */
2974 big_num = false;
2975 } else if (big_num_opt == 0) /* User passed --no-big-num */
2976 big_num = false;
2977
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002978 setup_system_wide(argc);
David Ahernac3063b2013-09-30 07:37:37 -06002979
Jiri Olsa0ce2da12018-06-05 14:13:13 +02002980 /*
2981 * Display user/system times only for single
2982 * run and when there's specified tracee.
2983 */
2984 if ((run_count == 1) && target__none(&target))
2985 ru_display = true;
2986
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002987 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09002988 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002989 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002990 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002991 } else if (run_count == 0) {
2992 forever = true;
2993 run_count = 1;
2994 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002995
Jiri Olsae55c14a2018-04-23 11:08:21 +02002996 if (walltime_run_table) {
2997 walltime_run = zalloc(run_count * sizeof(walltime_run[0]));
2998 if (!walltime_run) {
2999 pr_err("failed to setup -r option");
3000 goto out;
3001 }
3002 }
3003
Jin Yao1d9f8d12017-12-05 22:03:10 +08003004 if ((stat_config.aggr_mode == AGGR_THREAD) &&
3005 !target__has_task(&target)) {
3006 if (!target.system_wide || target.cpu_list) {
3007 fprintf(stderr, "The --per-thread option is only "
3008 "available when monitoring via -p -t -a "
3009 "options or only --per-thread.\n");
3010 parse_options_usage(NULL, stat_options, "p", 1);
3011 parse_options_usage(NULL, stat_options, "t", 1);
3012 goto out;
3013 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02003014 }
3015
3016 /*
3017 * no_aggr, cgroup are for system-wide only
3018 * --per-thread is aggregated per thread, we dont mix it with cpu mode
3019 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02003020 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
3021 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03003022 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02003023 fprintf(stderr, "both cgroup and no-aggregation "
3024 "modes only available in system-wide mode\n");
3025
Jiri Olsae0547312015-11-05 15:40:45 +01003026 parse_options_usage(stat_usage, stat_options, "G", 1);
3027 parse_options_usage(NULL, stat_options, "A", 1);
3028 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09003029 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01003030 }
3031
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02003032 if (add_default_attributes())
3033 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02003034
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03003035 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02003036
Jin Yao1d9f8d12017-12-05 22:03:10 +08003037 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
3038 target.per_thread = true;
3039
Namhyung Kim77a6f012012-05-07 14:09:04 +09003040 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03003041 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09003042 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01003043 parse_options_usage(stat_usage, stat_options, "p", 1);
3044 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03003045 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09003046 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01003047 parse_options_usage(stat_usage, stat_options, "C", 1);
3048 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09003049 }
3050 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02003051 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02003052
3053 /*
3054 * Initialize thread_map with comm names,
3055 * so we could print it out on output.
3056 */
Jin Yao56739442017-12-05 22:03:07 +08003057 if (stat_config.aggr_mode == AGGR_THREAD) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02003058 thread_map__read_comms(evsel_list->threads);
Jin Yao56739442017-12-05 22:03:07 +08003059 if (target.system_wide) {
3060 if (runtime_stat_new(&stat_config,
3061 thread_map__nr(evsel_list->threads))) {
3062 goto out;
3063 }
3064 }
3065 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02003066
yuzhoujiandb06a262018-01-29 10:25:22 +01003067 if (stat_config.times && interval)
3068 interval_count = true;
3069 else if (stat_config.times && !interval) {
3070 pr_err("interval-count option should be used together with "
3071 "interval-print.\n");
3072 parse_options_usage(stat_usage, stat_options, "interval-count", 0);
3073 parse_options_usage(stat_usage, stat_options, "I", 1);
3074 goto out;
3075 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02003076
yuzhoujianf1f8ad52018-01-29 10:25:23 +01003077 if (timeout && timeout < 100) {
3078 if (timeout < 10) {
3079 pr_err("timeout must be >= 10ms.\n");
3080 parse_options_usage(stat_usage, stat_options, "timeout", 0);
3081 goto out;
3082 } else
3083 pr_warning("timeout < 100ms. "
3084 "The overhead percentage could be high in some cases. "
3085 "Please proceed with caution.\n");
3086 }
3087 if (timeout && interval) {
3088 pr_err("timeout option is not supported with interval-print.\n");
3089 parse_options_usage(stat_usage, stat_options, "timeout", 0);
3090 parse_options_usage(stat_usage, stat_options, "I", 1);
3091 goto out;
3092 }
3093
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03003094 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03003095 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03003096
Stephane Eranian86ee6e12013-02-14 13:57:27 +01003097 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03003098 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01003099
Ingo Molnar58d7e992009-05-15 11:03:23 +02003100 /*
3101 * We dont want to block the signals - that would cause
3102 * child tasks to inherit that and Ctrl-C would not work.
3103 * What we want is for Ctrl-C to work in the exec()-ed
3104 * task, but being ignored by perf stat itself:
3105 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02003106 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05003107 if (!forever)
3108 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01003109 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02003110 signal(SIGALRM, skip_signal);
3111 signal(SIGABRT, skip_signal);
3112
Ingo Molnar42202dd2009-06-13 14:57:28 +02003113 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05003114 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Namhyung Kimbb963e12017-02-17 17:17:38 +09003115 if (run_count != 1 && verbose > 0)
Stephane Eranian4aa90152011-08-15 22:22:33 +02003116 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
3117 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02003118
Jiri Olsae55c14a2018-04-23 11:08:21 +02003119 status = run_perf_stat(argc, argv, run_idx);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05003120 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02003121 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02003122 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05003123 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02003124 }
3125
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05003126 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02003127 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03003128
Jiri Olsa4979d0c2015-11-05 15:40:46 +01003129 if (STAT_RECORD) {
3130 /*
3131 * We synthesize the kernel mmap record just so that older tools
3132 * don't emit warnings about not being able to resolve symbols
3133 * due to /proc/sys/kernel/kptr_restrict settings and instear provide
3134 * a saner message about no samples being in the perf.data file.
3135 *
3136 * This also serves to suppress a warning about f_header.data.size == 0
Jiri Olsa8b99b1a2015-11-05 15:40:48 +01003137 * in header.c at the moment 'perf stat record' gets introduced, which
3138 * is not really needed once we start adding the stat specific PERF_RECORD_
3139 * records, but the need to suppress the kptr_restrict messages in older
3140 * tools remain -acme
Jiri Olsa4979d0c2015-11-05 15:40:46 +01003141 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003142 int fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01003143 int err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
3144 process_synthesized_event,
3145 &perf_stat.session->machines.host);
3146 if (err) {
3147 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
3148 "older tools may produce warnings about this file\n.");
3149 }
3150
Jiri Olsa7aad0c32015-11-05 15:40:52 +01003151 if (!interval) {
3152 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
3153 pr_err("failed to write stat round event\n");
3154 }
3155
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003156 if (!perf_stat.data.is_pipe) {
Jiri Olsa664c98d2015-11-05 15:40:50 +01003157 perf_stat.session->header.data_size += perf_stat.bytes_written;
3158 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
3159 }
Jiri Olsa4979d0c2015-11-05 15:40:46 +01003160
3161 perf_session__delete(perf_stat.session);
3162 }
3163
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09003164 perf_stat__exit_aggr_mode();
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03003165 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02003166out:
Jiri Olsae55c14a2018-04-23 11:08:21 +02003167 free(walltime_run);
3168
Kan Liangdaefd0b2017-05-26 12:05:38 -07003169 if (smi_cost && smi_reset)
3170 sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
3171
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02003172 perf_evlist__delete(evsel_list);
Jin Yao56739442017-12-05 22:03:07 +08003173
3174 runtime_stat_delete(&stat_config);
3175
Ingo Molnar42202dd2009-06-13 14:57:28 +02003176 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02003177}