]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - tools/perf/builtin-stat.c
perf stat: Replace aggregation ID with a struct
[mirror_ubuntu-hirsute-kernel.git] / tools / perf / builtin-stat.c
CommitLineData
91007045 1// SPDX-License-Identifier: GPL-2.0-only
ddcacfa0 2/*
bf9e1876
IM
3 * builtin-stat.c
4 *
5 * Builtin stat command: Give a precise performance counters summary
6 * overview about any workload, CPU or specific PID.
7 *
8 * Sample output:
ddcacfa0 9
2cba3ffb 10 $ perf stat ./hackbench 10
ddcacfa0 11
2cba3ffb 12 Time: 0.118
ddcacfa0 13
2cba3ffb 14 Performance counter stats for './hackbench 10':
ddcacfa0 15
2cba3ffb
IM
16 1708.761321 task-clock # 11.037 CPUs utilized
17 41,190 context-switches # 0.024 M/sec
18 6,735 CPU-migrations # 0.004 M/sec
19 17,318 page-faults # 0.010 M/sec
20 5,205,202,243 cycles # 3.046 GHz
21 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
22 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
23 2,603,501,247 instructions # 0.50 insns per cycle
24 # 1.48 stalled cycles per insn
25 484,357,498 branches # 283.455 M/sec
26 6,388,934 branch-misses # 1.32% of all branches
27
28 0.154822978 seconds time elapsed
ddcacfa0 29
5242519b 30 *
2cba3ffb 31 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
5242519b
IM
32 *
33 * Improvements and fixes by:
34 *
35 * Arjan van de Ven <arjan@linux.intel.com>
36 * Yanmin Zhang <yanmin.zhang@intel.com>
37 * Wu Fengguang <fengguang.wu@intel.com>
38 * Mike Galbraith <efault@gmx.de>
39 * Paul Mackerras <paulus@samba.org>
6e750a8f 40 * Jaswinder Singh Rajput <jaswinder@kernel.org>
ddcacfa0
IM
41 */
42
16f762a2 43#include "builtin.h"
c1a604df 44#include "perf.h"
f14d5707 45#include "util/cgroup.h"
4b6ab94e 46#include <subcmd/parse-options.h>
5242519b 47#include "util/parse-events.h"
4cabc3d1 48#include "util/pmu.h"
8f28827a 49#include "util/event.h"
361c99a6 50#include "util/evlist.h"
69aad6f1 51#include "util/evsel.h"
8f28827a 52#include "util/debug.h"
a5d243d0 53#include "util/color.h"
0007ecea 54#include "util/stat.h"
60666c63 55#include "util/header.h"
a12b51c4 56#include "util/cpumap.h"
fd78260b 57#include "util/thread_map.h"
d809560b 58#include "util/counts.h"
687986bb 59#include "util/topdown.h"
4979d0c7 60#include "util/session.h"
ba6039b6 61#include "util/tool.h"
a067558e 62#include "util/string2.h"
b18f3e36 63#include "util/metricgroup.h"
ea49e01c 64#include "util/synthetic-events.h"
aeb00b1a 65#include "util/target.h"
f3711020 66#include "util/time-utils.h"
9660e08e 67#include "util/top.h"
4804e011 68#include "util/affinity.h"
70943490 69#include "util/pfm.h"
ba6039b6 70#include "asm/bug.h"
ddcacfa0 71
bd48c63e 72#include <linux/time64.h>
7f7c536f 73#include <linux/zalloc.h>
44b1e60a 74#include <api/fs/fs.h>
a43783ae 75#include <errno.h>
9607ad3a 76#include <signal.h>
1f16c575 77#include <stdlib.h>
ddcacfa0 78#include <sys/prctl.h>
fd20e811 79#include <inttypes.h>
5af52b51 80#include <locale.h>
e3b03b6c 81#include <math.h>
7a8ef4c4
ACM
82#include <sys/types.h>
83#include <sys/stat.h>
4208735d 84#include <sys/wait.h>
7a8ef4c4 85#include <unistd.h>
0ce2da14
JO
86#include <sys/time.h>
87#include <sys/resource.h>
6ef81c55 88#include <linux/err.h>
16c8a109 89
3052ba56 90#include <linux/ctype.h>
453fa030 91#include <perf/evlist.h>
3d689ed6 92
d7470b6a 93#define DEFAULT_SEPARATOR " "
daefd0bc 94#define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi"
d7470b6a 95
d4f63a47 96static void print_counters(struct timespec *ts, int argc, const char **argv);
13370a9b 97
4cabc3d1 98/* Default events used for perf stat -T */
a454742c
JO
99static const char *transaction_attrs = {
100 "task-clock,"
4cabc3d1
AK
101 "{"
102 "instructions,"
103 "cycles,"
104 "cpu/cycles-t/,"
105 "cpu/tx-start/,"
106 "cpu/el-start/,"
107 "cpu/cycles-ct/"
108 "}"
109};
110
111/* More limited version when the CPU does not have all events. */
a454742c
JO
112static const char * transaction_limited_attrs = {
113 "task-clock,"
4cabc3d1
AK
114 "{"
115 "instructions,"
116 "cycles,"
117 "cpu/cycles-t/,"
118 "cpu/tx-start/"
119 "}"
120};
121
44b1e60a
AK
122static const char * topdown_attrs[] = {
123 "topdown-total-slots",
124 "topdown-slots-retired",
125 "topdown-recovery-bubbles",
126 "topdown-fetch-bubbles",
127 "topdown-slots-issued",
128 NULL,
129};
130
55c36a9f
AK
131static const char *topdown_metric_attrs[] = {
132 "slots",
133 "topdown-retiring",
134 "topdown-bad-spec",
135 "topdown-fe-bound",
136 "topdown-be-bound",
137 NULL,
138};
139
daefd0bc
KL
140static const char *smi_cost_attrs = {
141 "{"
142 "msr/aperf/,"
143 "msr/smi/,"
144 "cycles"
145 "}"
146};
147
63503dba 148static struct evlist *evsel_list;
361c99a6 149
602ad878 150static struct target target = {
77a6f014
NK
151 .uid = UINT_MAX,
152};
ddcacfa0 153
c1a1f5d9
JO
154#define METRIC_ONLY_LEN 20
155
d07f0b12 156static volatile pid_t child_pid = -1;
2cba3ffb 157static int detailed_run = 0;
4cabc3d1 158static bool transaction_run;
44b1e60a 159static bool topdown_run = false;
daefd0bc
KL
160static bool smi_cost = false;
161static bool smi_reset = false;
d7470b6a 162static int big_num_opt = -1;
43bece79 163static bool group = false;
1f16c575
PZ
164static const char *pre_cmd = NULL;
165static const char *post_cmd = NULL;
166static bool sync_run = false;
a7e191c3 167static bool forever = false;
44b1e60a 168static bool force_metric_only = false;
13370a9b 169static struct timespec ref_time;
e0547311 170static bool append_file;
db06a269 171static bool interval_count;
e0547311
JO
172static const char *output_name;
173static int output_fd;
5af52b51 174
4979d0c7
JO
175struct perf_stat {
176 bool record;
8ceb41d7 177 struct perf_data data;
4979d0c7
JO
178 struct perf_session *session;
179 u64 bytes_written;
ba6039b6 180 struct perf_tool tool;
1975d36e 181 bool maps_allocated;
f854839b 182 struct perf_cpu_map *cpus;
9749b90e 183 struct perf_thread_map *threads;
89af4e05 184 enum aggr_mode aggr_mode;
4979d0c7
JO
185};
186
187static struct perf_stat perf_stat;
188#define STAT_RECORD perf_stat.record
189
60666c63
LW
190static volatile int done = 0;
191
421a50f3 192static struct perf_stat_config stat_config = {
26893a60
JO
193 .aggr_mode = AGGR_GLOBAL,
194 .scale = true,
195 .unit_width = 4, /* strlen("unit") */
196 .run_count = 1,
197 .metric_only_len = METRIC_ONLY_LEN,
198 .walltime_nsecs_stats = &walltime_nsecs_stats,
34ff0866 199 .big_num = true,
27e9769a
AB
200 .ctl_fd = -1,
201 .ctl_fd_ack = -1
421a50f3
JO
202};
203
a9a17902
JO
204static bool cpus_map_matched(struct evsel *a, struct evsel *b)
205{
206 if (!a->core.cpus && !b->core.cpus)
207 return true;
208
209 if (!a->core.cpus || !b->core.cpus)
210 return false;
211
212 if (a->core.cpus->nr != b->core.cpus->nr)
213 return false;
214
215 for (int i = 0; i < a->core.cpus->nr; i++) {
216 if (a->core.cpus->map[i] != b->core.cpus->map[i])
217 return false;
218 }
219
220 return true;
221}
222
223static void evlist__check_cpu_maps(struct evlist *evlist)
224{
225 struct evsel *evsel, *pos, *leader;
226 char buf[1024];
227
228 evlist__for_each_entry(evlist, evsel) {
229 leader = evsel->leader;
230
231 /* Check that leader matches cpus with each member. */
232 if (leader == evsel)
233 continue;
234 if (cpus_map_matched(leader, evsel))
235 continue;
236
237 /* If there's mismatch disable the group and warn user. */
238 WARN_ONCE(1, "WARNING: grouped events cpus do not match, disabling group:\n");
239 evsel__group_desc(leader, buf, sizeof(buf));
240 pr_warning(" %s\n", buf);
241
242 if (verbose) {
243 cpu_map__snprint(leader->core.cpus, buf, sizeof(buf));
244 pr_warning(" %s: %s\n", leader->name, buf);
245 cpu_map__snprint(evsel->core.cpus, buf, sizeof(buf));
246 pr_warning(" %s: %s\n", evsel->name, buf);
247 }
248
249 for_each_group_evsel(pos, leader) {
250 pos->leader = pos;
251 pos->core.nr_members = 0;
252 }
253 evsel->leader->core.nr_members = 0;
254 }
255}
256
13370a9b
SE
257static inline void diff_timespec(struct timespec *r, struct timespec *a,
258 struct timespec *b)
259{
260 r->tv_sec = a->tv_sec - b->tv_sec;
261 if (a->tv_nsec < b->tv_nsec) {
310ebb93 262 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
13370a9b
SE
263 r->tv_sec--;
264 } else {
265 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
266 }
267}
268
254ecbc7
JO
269static void perf_stat__reset_stats(void)
270{
56739444
JY
271 int i;
272
53f5e908 273 evlist__reset_stats(evsel_list);
f87027b9 274 perf_stat__reset_shadow_stats();
56739444
JY
275
276 for (i = 0; i < stat_config.stats_num; i++)
277 perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
1eda3b21
JO
278}
279
8b99b1a4
JO
280static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
281 union perf_event *event,
282 struct perf_sample *sample __maybe_unused,
283 struct machine *machine __maybe_unused)
4979d0c7 284{
8ceb41d7 285 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
4979d0c7
JO
286 pr_err("failed to write perf data, error: %m\n");
287 return -1;
288 }
289
8b99b1a4 290 perf_stat.bytes_written += event->header.size;
4979d0c7
JO
291 return 0;
292}
293
1975d36e 294static int write_stat_round_event(u64 tm, u64 type)
7aad0c32 295{
1975d36e 296 return perf_event__synthesize_stat_round(NULL, tm, type,
7aad0c32
JO
297 process_synthesized_event,
298 NULL);
299}
300
301#define WRITE_STAT_ROUND_EVENT(time, interval) \
302 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
303
8cd36f3e 304#define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y)
5a6ea81b 305
ddc6999e
ACM
306static int evsel__write_stat_event(struct evsel *counter, u32 cpu, u32 thread,
307 struct perf_counts_values *count)
5a6ea81b
JO
308{
309 struct perf_sample_id *sid = SID(counter, cpu, thread);
310
311 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
312 process_synthesized_event, NULL);
313}
314
32dcd021 315static int read_single_counter(struct evsel *counter, int cpu,
f0fbb114
AK
316 int thread, struct timespec *rs)
317{
318 if (counter->tool_event == PERF_TOOL_DURATION_TIME) {
319 u64 val = rs->tv_nsec + rs->tv_sec*1000000000ULL;
320 struct perf_counts_values *count =
321 perf_counts(counter->counts, cpu, thread);
322 count->ena = count->run = val;
323 count->val = val;
324 return 0;
325 }
ea089692 326 return evsel__read_counter(counter, cpu, thread);
f0fbb114
AK
327}
328
f5b4a9c3
SE
329/*
330 * Read out the results of a single counter:
331 * do not aggregate counts across CPUs in system-wide mode
332 */
4b49ab70 333static int read_counter_cpu(struct evsel *counter, struct timespec *rs, int cpu)
f5b4a9c3 334{
a2f354e3 335 int nthreads = perf_thread_map__nr(evsel_list->core.threads);
4b49ab70 336 int thread;
f5b4a9c3 337
3b4331d9
SP
338 if (!counter->supported)
339 return -ENOENT;
340
648b5af3 341 if (counter->core.system_wide)
9bf1a529
JO
342 nthreads = 1;
343
344 for (thread = 0; thread < nthreads; thread++) {
4b49ab70
AK
345 struct perf_counts_values *count;
346
347 count = perf_counts(counter->counts, cpu, thread);
348
349 /*
350 * The leader's group read loads data into its group members
ea089692 351 * (via evsel__read_counter()) and sets their count->loaded.
4b49ab70
AK
352 */
353 if (!perf_counts__is_loaded(counter->counts, cpu, thread) &&
354 read_single_counter(counter, cpu, thread, rs)) {
355 counter->counts->scaled = -1;
356 perf_counts(counter->counts, cpu, thread)->ena = 0;
357 perf_counts(counter->counts, cpu, thread)->run = 0;
358 return -1;
359 }
5a6ea81b 360
4b49ab70 361 perf_counts__set_loaded(counter->counts, cpu, thread, false);
82bf311e 362
4b49ab70 363 if (STAT_RECORD) {
ddc6999e 364 if (evsel__write_stat_event(counter, cpu, thread, count)) {
4b49ab70
AK
365 pr_err("failed to write stat event\n");
366 return -1;
5a6ea81b 367 }
4b49ab70 368 }
0b1abbf4 369
4b49ab70
AK
370 if (verbose > 1) {
371 fprintf(stat_config.output,
372 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
8ab2e96d 373 evsel__name(counter),
4b49ab70
AK
374 cpu,
375 count->val, count->ena, count->run);
9bf1a529 376 }
f5b4a9c3 377 }
c52b12ed
ACM
378
379 return 0;
2996f5dd
IM
380}
381
c7e5b328 382static int read_affinity_counters(struct timespec *rs)
13370a9b 383{
32dcd021 384 struct evsel *counter;
4b49ab70
AK
385 struct affinity affinity;
386 int i, ncpus, cpu;
387
388 if (affinity__setup(&affinity) < 0)
c7e5b328 389 return -1;
4b49ab70
AK
390
391 ncpus = perf_cpu_map__nr(evsel_list->core.all_cpus);
392 if (!target__has_cpu(&target) || target__has_per_thread(&target))
393 ncpus = 1;
394 evlist__for_each_cpu(evsel_list, i, cpu) {
395 if (i >= ncpus)
396 break;
397 affinity__set(&affinity, cpu);
398
399 evlist__for_each_entry(evsel_list, counter) {
400 if (evsel__cpu_iter_skip(counter, cpu))
401 continue;
402 if (!counter->err) {
403 counter->err = read_counter_cpu(counter, rs,
404 counter->cpu_iter - 1);
405 }
406 }
407 }
408 affinity__cleanup(&affinity);
c7e5b328
JY
409 return 0;
410}
411
412static void read_counters(struct timespec *rs)
413{
414 struct evsel *counter;
415
ee6a9614 416 if (!stat_config.stop_read_counter && (read_affinity_counters(rs) < 0))
c7e5b328 417 return;
13370a9b 418
e5cadb93 419 evlist__for_each_entry(evsel_list, counter) {
4b49ab70 420 if (counter->err)
245bad8e 421 pr_debug("failed to read counter %s\n", counter->name);
4b49ab70 422 if (counter->err == 0 && perf_stat_process_counter(&stat_config, counter))
3b3eb044 423 pr_warning("failed to process counter %s\n", counter->name);
4b49ab70 424 counter->err = 0;
13370a9b 425 }
106a94a0
JO
426}
427
72f02a94
JY
428static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
429{
430 int i;
431
432 config->stats = calloc(nthreads, sizeof(struct runtime_stat));
433 if (!config->stats)
434 return -1;
435
436 config->stats_num = nthreads;
437
438 for (i = 0; i < nthreads; i++)
439 runtime_stat__init(&config->stats[i]);
440
441 return 0;
442}
443
444static void runtime_stat_delete(struct perf_stat_config *config)
445{
446 int i;
447
448 if (!config->stats)
449 return;
450
451 for (i = 0; i < config->stats_num; i++)
452 runtime_stat__exit(&config->stats[i]);
453
454 zfree(&config->stats);
455}
456
457static void runtime_stat_reset(struct perf_stat_config *config)
458{
459 int i;
460
461 if (!config->stats)
462 return;
463
464 for (i = 0; i < config->stats_num; i++)
465 perf_stat__reset_shadow_per_stat(&config->stats[i]);
466}
467
ba411a95 468static void process_interval(void)
106a94a0 469{
106a94a0 470 struct timespec ts, rs;
106a94a0 471
13370a9b
SE
472 clock_gettime(CLOCK_MONOTONIC, &ts);
473 diff_timespec(&rs, &ts, &ref_time);
13370a9b 474
197ba86f 475 perf_stat__reset_shadow_per_stat(&rt_stat);
72f02a94 476 runtime_stat_reset(&stat_config);
f0fbb114
AK
477 read_counters(&rs);
478
7aad0c32 479 if (STAT_RECORD) {
bd48c63e 480 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
7aad0c32
JO
481 pr_err("failed to write stat round event\n");
482 }
483
b90f1333 484 init_stats(&walltime_nsecs_stats);
ea9eb1f4 485 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000ULL);
d4f63a47 486 print_counters(&rs, 0, NULL);
13370a9b
SE
487}
488
dece3a4d
AB
489static bool handle_interval(unsigned int interval, int *times)
490{
491 if (interval) {
492 process_interval();
493 if (interval_count && !(--(*times)))
494 return true;
495 }
496 return false;
497}
498
67ccdecd 499static void enable_counters(void)
41191688 500{
2162b9c6
AB
501 if (stat_config.initial_delay < 0) {
502 pr_info(EVLIST_DISABLED_MSG);
503 return;
504 }
505
506 if (stat_config.initial_delay > 0) {
507 pr_info(EVLIST_DISABLED_MSG);
728c0ee0 508 usleep(stat_config.initial_delay * USEC_PER_MSEC);
2162b9c6 509 }
67ccdecd
JO
510
511 /*
512 * We need to enable counters only if:
513 * - we don't have tracee (attaching to task or cpu)
514 * - we have initial delay configured
515 */
2162b9c6 516 if (!target__none(&target) || stat_config.initial_delay) {
1c87f165 517 evlist__enable(evsel_list);
2162b9c6
AB
518 if (stat_config.initial_delay > 0)
519 pr_info(EVLIST_ENABLED_MSG);
520 }
41191688
AK
521}
522
3df33eff
MR
523static void disable_counters(void)
524{
525 /*
526 * If we don't have tracee (attaching to task or cpu), counters may
527 * still be running. To get accurate group ratios, we must stop groups
528 * from counting before reading their constituent counters.
529 */
530 if (!target__none(&target))
e74676de 531 evlist__disable(evsel_list);
3df33eff
MR
532}
533
f33cbe72 534static volatile int workload_exec_errno;
6af206fd
ACM
535
536/*
7b392ef0 537 * evlist__prepare_workload will send a SIGUSR1
6af206fd
ACM
538 * if the fork fails, since we asked by setting its
539 * want_signal to true.
540 */
f33cbe72
ACM
541static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
542 void *ucontext __maybe_unused)
6af206fd 543{
f33cbe72 544 workload_exec_errno = info->si_value.sival_int;
6af206fd
ACM
545}
546
ddc6999e 547static bool evsel__should_store_id(struct evsel *counter)
82bf311e 548{
1fc632ce 549 return STAT_RECORD || counter->core.attr.read_format & PERF_FORMAT_ID;
82bf311e
JO
550}
551
cbb5df7e 552static bool is_target_alive(struct target *_target,
9749b90e 553 struct perf_thread_map *threads)
cbb5df7e
JO
554{
555 struct stat st;
556 int i;
557
558 if (!target__has_task(_target))
559 return true;
560
561 for (i = 0; i < threads->nr; i++) {
562 char path[PATH_MAX];
563
564 scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(),
565 threads->map[i].pid);
566
567 if (!stat(path, &st))
568 return true;
569 }
570
571 return false;
572}
573
bee328cb
AB
574static void process_evlist(struct evlist *evlist, unsigned int interval)
575{
576 enum evlist_ctl_cmd cmd = EVLIST_CTL_CMD_UNSUPPORTED;
577
578 if (evlist__ctlfd_process(evlist, &cmd) > 0) {
579 switch (cmd) {
580 case EVLIST_CTL_CMD_ENABLE:
581 pr_info(EVLIST_ENABLED_MSG);
582 if (interval)
583 process_interval();
584 break;
585 case EVLIST_CTL_CMD_DISABLE:
586 if (interval)
587 process_interval();
588 pr_info(EVLIST_DISABLED_MSG);
589 break;
d20aff15 590 case EVLIST_CTL_CMD_SNAPSHOT:
bee328cb
AB
591 case EVLIST_CTL_CMD_ACK:
592 case EVLIST_CTL_CMD_UNSUPPORTED:
593 default:
594 break;
595 }
596 }
597}
598
599static void compute_tts(struct timespec *time_start, struct timespec *time_stop,
600 int *time_to_sleep)
601{
602 int tts = *time_to_sleep;
603 struct timespec time_diff;
604
605 diff_timespec(&time_diff, time_stop, time_start);
606
607 tts -= time_diff.tv_sec * MSEC_PER_SEC +
608 time_diff.tv_nsec / NSEC_PER_MSEC;
609
610 if (tts < 0)
611 tts = 0;
612
613 *time_to_sleep = tts;
614}
615
616static int dispatch_events(bool forks, int timeout, int interval, int *times)
987b8238
AB
617{
618 int child_exited = 0, status = 0;
bee328cb
AB
619 int time_to_sleep, sleep_time;
620 struct timespec time_start, time_stop;
621
622 if (interval)
623 sleep_time = interval;
624 else if (timeout)
625 sleep_time = timeout;
626 else
627 sleep_time = 1000;
628
629 time_to_sleep = sleep_time;
987b8238
AB
630
631 while (!done) {
632 if (forks)
633 child_exited = waitpid(child_pid, &status, WNOHANG);
634 else
635 child_exited = !is_target_alive(&target, evsel_list->core.threads) ? 1 : 0;
636
637 if (child_exited)
638 break;
639
bee328cb
AB
640 clock_gettime(CLOCK_MONOTONIC, &time_start);
641 if (!(evlist__poll(evsel_list, time_to_sleep) > 0)) { /* poll timeout or EINTR */
642 if (timeout || handle_interval(interval, times))
643 break;
644 time_to_sleep = sleep_time;
645 } else { /* fd revent */
646 process_evlist(evsel_list, interval);
647 clock_gettime(CLOCK_MONOTONIC, &time_stop);
648 compute_tts(&time_start, &time_stop, &time_to_sleep);
649 }
987b8238
AB
650 }
651
652 return status;
653}
654
e0e6a6ca
AK
655enum counter_recovery {
656 COUNTER_SKIP,
657 COUNTER_RETRY,
658 COUNTER_FATAL,
659};
660
661static enum counter_recovery stat_handle_error(struct evsel *counter)
662{
663 char msg[BUFSIZ];
664 /*
665 * PPC returns ENXIO for HW counters until 2.6.37
666 * (behavior changed with commit b0a873e).
667 */
668 if (errno == EINVAL || errno == ENOSYS ||
669 errno == ENOENT || errno == EOPNOTSUPP ||
670 errno == ENXIO) {
671 if (verbose > 0)
672 ui__warning("%s event is not supported by the kernel.\n",
8ab2e96d 673 evsel__name(counter));
e0e6a6ca 674 counter->supported = false;
4804e011
AK
675 /*
676 * errored is a sticky flag that means one of the counter's
677 * cpu event had a problem and needs to be reexamined.
678 */
679 counter->errored = true;
e0e6a6ca
AK
680
681 if ((counter->leader != counter) ||
682 !(counter->leader->core.nr_members > 1))
683 return COUNTER_SKIP;
ae430892 684 } else if (evsel__fallback(counter, errno, msg, sizeof(msg))) {
e0e6a6ca
AK
685 if (verbose > 0)
686 ui__warning("%s\n", msg);
687 return COUNTER_RETRY;
688 } else if (target__has_per_thread(&target) &&
689 evsel_list->core.threads &&
690 evsel_list->core.threads->err_thread != -1) {
691 /*
692 * For global --per-thread case, skip current
693 * error thread.
694 */
695 if (!thread_map__remove(evsel_list->core.threads,
696 evsel_list->core.threads->err_thread)) {
697 evsel_list->core.threads->err_thread = -1;
698 return COUNTER_RETRY;
699 }
700 }
701
2bb72dbb 702 evsel__open_strerror(counter, &target, errno, msg, sizeof(msg));
e0e6a6ca
AK
703 ui__error("%s\n", msg);
704
705 if (child_pid != -1)
706 kill(child_pid, SIGTERM);
707 return COUNTER_FATAL;
708}
709
e55c14af 710static int __run_perf_stat(int argc, const char **argv, int run_idx)
42202dd5 711{
ec0d3d1f 712 int interval = stat_config.interval;
db06a269 713 int times = stat_config.times;
f1f8ad52 714 int timeout = stat_config.timeout;
d6195a6a 715 char msg[BUFSIZ];
42202dd5 716 unsigned long long t0, t1;
32dcd021 717 struct evsel *counter;
410136f5 718 size_t l;
42202dd5 719 int status = 0;
6be2850e 720 const bool forks = (argc > 0);
8ceb41d7 721 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
4804e011
AK
722 struct affinity affinity;
723 int i, cpu;
724 bool second_pass = false;
42202dd5 725
60666c63 726 if (forks) {
7b392ef0 727 if (evlist__prepare_workload(evsel_list, &target, argv, is_pipe, workload_exec_failed_signal) < 0) {
acf28922
NK
728 perror("failed to prepare workload");
729 return -1;
60666c63 730 }
d20a47e7 731 child_pid = evsel_list->workload.pid;
051ae7f7
PM
732 }
733
6a4bb04c 734 if (group)
a622eafa 735 evlist__set_leader(evsel_list);
6a4bb04c 736
4804e011
AK
737 if (affinity__setup(&affinity) < 0)
738 return -1;
739
740 evlist__for_each_cpu (evsel_list, i, cpu) {
741 affinity__set(&affinity, cpu);
742
743 evlist__for_each_entry(evsel_list, counter) {
744 if (evsel__cpu_iter_skip(counter, cpu))
745 continue;
746 if (counter->reset_group || counter->errored)
747 continue;
42ef8a78 748try_again:
4804e011
AK
749 if (create_perf_stat_counter(counter, &stat_config, &target,
750 counter->cpu_iter - 1) < 0) {
751
752 /*
753 * Weak group failed. We cannot just undo this here
754 * because earlier CPUs might be in group mode, and the kernel
755 * doesn't support mixing group and non group reads. Defer
756 * it to later.
757 * Don't close here because we're in the wrong affinity.
758 */
759 if ((errno == EINVAL || errno == EBADF) &&
760 counter->leader != counter &&
761 counter->weak_group) {
64b4778b 762 evlist__reset_weak_group(evsel_list, counter, false);
4804e011
AK
763 assert(counter->reset_group);
764 second_pass = true;
765 continue;
766 }
767
768 switch (stat_handle_error(counter)) {
769 case COUNTER_FATAL:
770 return -1;
771 case COUNTER_RETRY:
772 goto try_again;
773 case COUNTER_SKIP:
774 continue;
775 default:
776 break;
777 }
778
5a5dfe4b 779 }
4804e011
AK
780 counter->supported = true;
781 }
782 }
5a5dfe4b 783
4804e011
AK
784 if (second_pass) {
785 /*
786 * Now redo all the weak group after closing them,
787 * and also close errored counters.
788 */
789
790 evlist__for_each_cpu(evsel_list, i, cpu) {
791 affinity__set(&affinity, cpu);
792 /* First close errored or weak retry */
793 evlist__for_each_entry(evsel_list, counter) {
794 if (!counter->reset_group && !counter->errored)
795 continue;
796 if (evsel__cpu_iter_skip_no_inc(counter, cpu))
797 continue;
798 perf_evsel__close_cpu(&counter->core, counter->cpu_iter);
ab6c79b8 799 }
4804e011
AK
800 /* Now reopen weak */
801 evlist__for_each_entry(evsel_list, counter) {
802 if (!counter->reset_group && !counter->errored)
803 continue;
804 if (evsel__cpu_iter_skip(counter, cpu))
805 continue;
806 if (!counter->reset_group)
807 continue;
808try_again_reset:
8ab2e96d 809 pr_debug2("reopening weak %s\n", evsel__name(counter));
4804e011
AK
810 if (create_perf_stat_counter(counter, &stat_config, &target,
811 counter->cpu_iter - 1) < 0) {
812
813 switch (stat_handle_error(counter)) {
814 case COUNTER_FATAL:
815 return -1;
816 case COUNTER_RETRY:
817 goto try_again_reset;
818 case COUNTER_SKIP:
819 continue;
820 default:
821 break;
822 }
823 }
824 counter->supported = true;
825 }
826 }
827 }
828 affinity__cleanup(&affinity);
829
830 evlist__for_each_entry(evsel_list, counter) {
831 if (!counter->supported) {
832 perf_evsel__free_fd(&counter->core);
833 continue;
48290609 834 }
410136f5
SE
835
836 l = strlen(counter->unit);
df4f7b4d
JO
837 if (l > stat_config.unit_width)
838 stat_config.unit_width = l;
2af4646d 839
ddc6999e 840 if (evsel__should_store_id(counter) &&
34397753 841 evsel__store_ids(counter, evsel_list))
2af4646d 842 return -1;
084ab9f8 843 }
42202dd5 844
24bf91a7 845 if (evlist__apply_filters(evsel_list, &counter)) {
62d94b00 846 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
8ab2e96d 847 counter->filter, evsel__name(counter), errno,
c8b5f2c9 848 str_error_r(errno, msg, sizeof(msg)));
cfd748ae
FW
849 return -1;
850 }
851
4979d0c7 852 if (STAT_RECORD) {
8ceb41d7 853 int err, fd = perf_data__fd(&perf_stat.data);
4979d0c7 854
664c98d4 855 if (is_pipe) {
8ceb41d7 856 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
664c98d4
JO
857 } else {
858 err = perf_session__write_header(perf_stat.session, evsel_list,
859 fd, false);
860 }
861
4979d0c7
JO
862 if (err < 0)
863 return err;
8b99b1a4 864
b251892d
ACM
865 err = perf_event__synthesize_stat_events(&stat_config, NULL, evsel_list,
866 process_synthesized_event, is_pipe);
8b99b1a4
JO
867 if (err < 0)
868 return err;
4979d0c7
JO
869 }
870
42202dd5
IM
871 /*
872 * Enable counters and exec the command:
873 */
874 t0 = rdclock();
13370a9b 875 clock_gettime(CLOCK_MONOTONIC, &ref_time);
42202dd5 876
60666c63 877 if (forks) {
7b392ef0 878 evlist__start_workload(evsel_list);
67ccdecd 879 enable_counters();
acf28922 880
27e9769a 881 if (interval || timeout || evlist__ctlfd_initialized(evsel_list))
bee328cb 882 status = dispatch_events(forks, timeout, interval, &times);
cfbd41b7
ACM
883 if (child_pid != -1) {
884 if (timeout)
885 kill(child_pid, SIGTERM);
8a99255a 886 wait4(child_pid, &status, 0, &stat_config.ru_data);
cfbd41b7 887 }
6af206fd 888
f33cbe72 889 if (workload_exec_errno) {
c8b5f2c9 890 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
f33cbe72 891 pr_err("Workload failed: %s\n", emsg);
6af206fd 892 return -1;
f33cbe72 893 }
6af206fd 894
33e49ea7
AK
895 if (WIFSIGNALED(status))
896 psignal(WTERMSIG(status), argv[0]);
60666c63 897 } else {
67ccdecd 898 enable_counters();
bee328cb 899 status = dispatch_events(forks, timeout, interval, &times);
60666c63 900 }
42202dd5 901
3df33eff
MR
902 disable_counters();
903
42202dd5
IM
904 t1 = rdclock();
905
54ac0b1b
JO
906 if (stat_config.walltime_run_table)
907 stat_config.walltime_run[run_idx] = t1 - t0;
e55c14af 908
ee6a9614 909 if (interval && stat_config.summary) {
c7e5b328 910 stat_config.interval = 0;
ee6a9614 911 stat_config.stop_read_counter = true;
c7e5b328
JY
912 init_stats(&walltime_nsecs_stats);
913 update_stats(&walltime_nsecs_stats, t1 - t0);
914
915 if (stat_config.aggr_mode == AGGR_GLOBAL)
53f5e908 916 evlist__save_aggr_prev_raw_counts(evsel_list);
c7e5b328 917
53f5e908
ACM
918 evlist__copy_prev_raw_counts(evsel_list);
919 evlist__reset_prev_raw_counts(evsel_list);
c7e5b328
JY
920 runtime_stat_reset(&stat_config);
921 perf_stat__reset_shadow_per_stat(&rt_stat);
922 } else
923 update_stats(&walltime_nsecs_stats, t1 - t0);
42202dd5 924
3df33eff
MR
925 /*
926 * Closing a group leader splits the group, and as we only disable
927 * group leaders, results in remaining events becoming enabled. To
928 * avoid arbitrary skew, we must read all counters before closing any
929 * group leaders.
930 */
f0fbb114 931 read_counters(&(struct timespec) { .tv_nsec = t1-t0 });
08ef3af1
JO
932
933 /*
934 * We need to keep evsel_list alive, because it's processed
935 * later the evsel_list will be closed after.
936 */
937 if (!STAT_RECORD)
750b4ede 938 evlist__close(evsel_list);
c52b12ed 939
42202dd5
IM
940 return WEXITSTATUS(status);
941}
942
e55c14af 943static int run_perf_stat(int argc, const char **argv, int run_idx)
1f16c575
PZ
944{
945 int ret;
946
947 if (pre_cmd) {
948 ret = system(pre_cmd);
949 if (ret)
950 return ret;
951 }
952
953 if (sync_run)
954 sync();
955
e55c14af 956 ret = __run_perf_stat(argc, argv, run_idx);
1f16c575
PZ
957 if (ret)
958 return ret;
959
960 if (post_cmd) {
961 ret = system(post_cmd);
962 if (ret)
963 return ret;
964 }
965
966 return ret;
967}
968
a5a9eac1
JO
969static void print_counters(struct timespec *ts, int argc, const char **argv)
970{
0174820a
JO
971 /* Do not print anything if we record to the pipe. */
972 if (STAT_RECORD && perf_stat.data.is_pipe)
973 return;
55a4de94
AK
974 if (stat_config.quiet)
975 return;
0174820a 976
71273724 977 evlist__print_counters(evsel_list, &stat_config, &target, ts, argc, argv);
a5a9eac1
JO
978}
979
f7b7c26e
PZ
980static volatile int signr = -1;
981
5242519b 982static void skip_signal(int signo)
ddcacfa0 983{
ec0d3d1f 984 if ((child_pid == -1) || stat_config.interval)
60666c63
LW
985 done = 1;
986
f7b7c26e 987 signr = signo;
d07f0b12
SE
988 /*
989 * render child_pid harmless
990 * won't send SIGTERM to a random
991 * process in case of race condition
992 * and fast PID recycling
993 */
994 child_pid = -1;
f7b7c26e
PZ
995}
996
997static void sig_atexit(void)
998{
d07f0b12
SE
999 sigset_t set, oset;
1000
1001 /*
1002 * avoid race condition with SIGCHLD handler
1003 * in skip_signal() which is modifying child_pid
1004 * goal is to avoid send SIGTERM to a random
1005 * process
1006 */
1007 sigemptyset(&set);
1008 sigaddset(&set, SIGCHLD);
1009 sigprocmask(SIG_BLOCK, &set, &oset);
1010
933da83a
CW
1011 if (child_pid != -1)
1012 kill(child_pid, SIGTERM);
1013
d07f0b12
SE
1014 sigprocmask(SIG_SETMASK, &oset, NULL);
1015
f7b7c26e
PZ
1016 if (signr == -1)
1017 return;
1018
1019 signal(signr, SIG_DFL);
1020 kill(getpid(), signr);
5242519b
IM
1021}
1022
d778a778
PC
1023void perf_stat__set_big_num(int set)
1024{
1025 stat_config.big_num = (set != 0);
1026}
1027
1d037ca1
IT
1028static int stat__set_big_num(const struct option *opt __maybe_unused,
1029 const char *s __maybe_unused, int unset)
d7470b6a
SE
1030{
1031 big_num_opt = unset ? 0 : 1;
d778a778 1032 perf_stat__set_big_num(!unset);
d7470b6a
SE
1033 return 0;
1034}
1035
44b1e60a
AK
1036static int enable_metric_only(const struct option *opt __maybe_unused,
1037 const char *s __maybe_unused, int unset)
1038{
1039 force_metric_only = true;
0ce5aa02 1040 stat_config.metric_only = !unset;
44b1e60a
AK
1041 return 0;
1042}
1043
b18f3e36
AK
1044static int parse_metric_groups(const struct option *opt,
1045 const char *str,
1046 int unset __maybe_unused)
1047{
05530a79
IR
1048 return metricgroup__parse_groups(opt, str,
1049 stat_config.metric_no_group,
1050 stat_config.metric_no_merge,
1051 &stat_config.metric_events);
b18f3e36
AK
1052}
1053
27e9769a
AB
1054static int parse_control_option(const struct option *opt,
1055 const char *str,
1056 int unset __maybe_unused)
1057{
9864a66d 1058 struct perf_stat_config *config = opt->value;
27e9769a 1059
a8fcbd26
AH
1060 return evlist__parse_control(str, &config->ctl_fd, &config->ctl_fd_ack, &config->ctl_fd_close);
1061}
1062
d1c5a0e8
NK
1063static int parse_stat_cgroups(const struct option *opt,
1064 const char *str, int unset)
1065{
1066 if (stat_config.cgroup_list) {
1067 pr_err("--cgroup and --for-each-cgroup cannot be used together\n");
1068 return -1;
1069 }
1070
1071 return parse_cgroups(opt, str, unset);
1072}
1073
51433ead 1074static struct option stat_options[] = {
e0547311
JO
1075 OPT_BOOLEAN('T', "transaction", &transaction_run,
1076 "hardware transaction statistics"),
1077 OPT_CALLBACK('e', "event", &evsel_list, "event",
1078 "event selector. use 'perf list' to list available events",
1079 parse_events_option),
1080 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1081 "event filter", parse_filter),
5698f26b 1082 OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit,
e0547311
JO
1083 "child tasks do not inherit counters"),
1084 OPT_STRING('p', "pid", &target.pid, "pid",
1085 "stat events on existing process id"),
1086 OPT_STRING('t', "tid", &target.tid, "tid",
1087 "stat events on existing thread id"),
1088 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1089 "system-wide collection from all CPUs"),
1090 OPT_BOOLEAN('g', "group", &group,
1091 "put the counters into a counter group"),
75998bb2
AK
1092 OPT_BOOLEAN(0, "scale", &stat_config.scale,
1093 "Use --no-scale to disable counter scaling for multiplexing"),
e0547311
JO
1094 OPT_INCR('v', "verbose", &verbose,
1095 "be more verbose (show counter open errors, etc)"),
d97ae04b 1096 OPT_INTEGER('r', "repeat", &stat_config.run_count,
e0547311 1097 "repeat command and print average + stddev (max: 100, forever: 0)"),
54ac0b1b 1098 OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table,
e55c14af 1099 "display details about each run (only with -r option)"),
aea0dca1 1100 OPT_BOOLEAN('n', "null", &stat_config.null_run,
e0547311
JO
1101 "null run - dont start any counters"),
1102 OPT_INCR('d', "detailed", &detailed_run,
1103 "detailed run - start a lot of events"),
1104 OPT_BOOLEAN('S', "sync", &sync_run,
1105 "call sync() before starting a run"),
1106 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1107 "print large numbers with thousands\' separators",
1108 stat__set_big_num),
1109 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1110 "list of cpus to monitor in system-wide"),
1111 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
1112 "disable CPU count aggregation", AGGR_NONE),
fdee335b 1113 OPT_BOOLEAN(0, "no-merge", &stat_config.no_merge, "Do not merge identical named events"),
fa7070a3 1114 OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator",
e0547311
JO
1115 "print counts with custom separator"),
1116 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
d1c5a0e8
NK
1117 "monitor event in cgroup name only", parse_stat_cgroups),
1118 OPT_STRING(0, "for-each-cgroup", &stat_config.cgroup_list, "name",
1119 "expand events for each cgroup"),
e0547311
JO
1120 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1121 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1122 OPT_INTEGER(0, "log-fd", &output_fd,
1123 "log output to fd, instead of stderr"),
1124 OPT_STRING(0, "pre", &pre_cmd, "command",
1125 "command to run prior to the measured command"),
1126 OPT_STRING(0, "post", &post_cmd, "command",
1127 "command to run after to the measured command"),
1128 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
9dc9a95f
AB
1129 "print counts at regular interval in ms "
1130 "(overhead is possible for values <= 100ms)"),
db06a269 1131 OPT_INTEGER(0, "interval-count", &stat_config.times,
1132 "print counts for fixed number of times"),
132c6ba3 1133 OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear,
9660e08e 1134 "clear screen in between new interval"),
f1f8ad52 1135 OPT_UINTEGER(0, "timeout", &stat_config.timeout,
1136 "stop workload and print counts after a timeout period in ms (>= 10ms)"),
e0547311
JO
1137 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
1138 "aggregate counts per processor socket", AGGR_SOCKET),
db5742b6
KL
1139 OPT_SET_UINT(0, "per-die", &stat_config.aggr_mode,
1140 "aggregate counts per processor die", AGGR_DIE),
e0547311
JO
1141 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
1142 "aggregate counts per physical processor core", AGGR_CORE),
1143 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
1144 "aggregate counts per thread", AGGR_THREAD),
86895b48
JO
1145 OPT_SET_UINT(0, "per-node", &stat_config.aggr_mode,
1146 "aggregate counts per numa node", AGGR_NODE),
2162b9c6
AB
1147 OPT_INTEGER('D', "delay", &stat_config.initial_delay,
1148 "ms to wait before starting measurement after program start (-1: start with events disabled)"),
0ce5aa02 1149 OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL,
44b1e60a 1150 "Only print computed metrics. No raw values", enable_metric_only),
05530a79
IR
1151 OPT_BOOLEAN(0, "metric-no-group", &stat_config.metric_no_group,
1152 "don't group metric events, impacts multiplexing"),
1153 OPT_BOOLEAN(0, "metric-no-merge", &stat_config.metric_no_merge,
1154 "don't try to share events between metrics in a group"),
44b1e60a
AK
1155 OPT_BOOLEAN(0, "topdown", &topdown_run,
1156 "measure topdown level 1 statistics"),
daefd0bc
KL
1157 OPT_BOOLEAN(0, "smi-cost", &smi_cost,
1158 "measure SMI cost"),
b18f3e36
AK
1159 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
1160 "monitor specified metrics or metric groups (separated by ,)",
1161 parse_metric_groups),
dd071024
JY
1162 OPT_BOOLEAN_FLAG(0, "all-kernel", &stat_config.all_kernel,
1163 "Configure all used events to run in kernel space.",
1164 PARSE_OPT_EXCLUSIVE),
1165 OPT_BOOLEAN_FLAG(0, "all-user", &stat_config.all_user,
1166 "Configure all used events to run in user space.",
1167 PARSE_OPT_EXCLUSIVE),
1af62ce6
JY
1168 OPT_BOOLEAN(0, "percore-show-thread", &stat_config.percore_show_thread,
1169 "Use with 'percore' event qualifier to show the event "
1170 "counts of one hardware thread by sum up total hardware "
1171 "threads of same physical core"),
ee6a9614
JY
1172 OPT_BOOLEAN(0, "summary", &stat_config.summary,
1173 "print summary for interval mode"),
55a4de94
AK
1174 OPT_BOOLEAN(0, "quiet", &stat_config.quiet,
1175 "don't print output (useful with record)"),
70943490
SE
1176#ifdef HAVE_LIBPFM
1177 OPT_CALLBACK(0, "pfm-events", &evsel_list, "event",
1178 "libpfm4 event selector. use 'perf list' to list available events",
1179 parse_libpfm_events_option),
1180#endif
a8fcbd26 1181 OPT_CALLBACK(0, "control", &stat_config, "fd:ctl-fd[,ack-fd] or fifo:ctl-fifo[,ack-fifo]",
27e9769a 1182 "Listen on ctl-fd descriptor for command to control measurement ('enable': enable events, 'disable': disable events).\n"
a8fcbd26
AH
1183 "\t\t\t Optionally send control command completion ('ack\\n') to ack-fd descriptor.\n"
1184 "\t\t\t Alternatively, ctl-fifo / ack-fifo will be opened and used as ctl-fd / ack-fd.",
27e9769a 1185 parse_control_option),
e0547311
JO
1186 OPT_END()
1187};
1188
2760f5a1 1189static struct aggr_cpu_id perf_stat__get_socket(struct perf_stat_config *config __maybe_unused,
f854839b 1190 struct perf_cpu_map *map, int cpu)
1fe7a300
JO
1191{
1192 return cpu_map__get_socket(map, cpu, NULL);
1193}
1194
2760f5a1 1195static struct aggr_cpu_id perf_stat__get_die(struct perf_stat_config *config __maybe_unused,
f854839b 1196 struct perf_cpu_map *map, int cpu)
db5742b6
KL
1197{
1198 return cpu_map__get_die(map, cpu, NULL);
1199}
1200
2760f5a1 1201static struct aggr_cpu_id perf_stat__get_core(struct perf_stat_config *config __maybe_unused,
f854839b 1202 struct perf_cpu_map *map, int cpu)
1fe7a300
JO
1203{
1204 return cpu_map__get_core(map, cpu, NULL);
1205}
1206
2760f5a1 1207static struct aggr_cpu_id perf_stat__get_node(struct perf_stat_config *config __maybe_unused,
86895b48
JO
1208 struct perf_cpu_map *map, int cpu)
1209{
1210 return cpu_map__get_node(map, cpu, NULL);
1211}
1212
2760f5a1 1213static struct aggr_cpu_id perf_stat__get_aggr(struct perf_stat_config *config,
f854839b 1214 aggr_get_id_t get_id, struct perf_cpu_map *map, int idx)
1e5a2931
JO
1215{
1216 int cpu;
2760f5a1 1217 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
1e5a2931
JO
1218
1219 if (idx >= map->nr)
2760f5a1 1220 return id;
1e5a2931
JO
1221
1222 cpu = map->map[idx];
1223
6f6b6594 1224 if (config->cpus_aggr_map->map[cpu] == -1)
2760f5a1 1225 config->cpus_aggr_map->map[cpu] = get_id(config, map, idx).id;
1e5a2931 1226
2760f5a1
JC
1227 id.id = config->cpus_aggr_map->map[cpu];
1228 return id;
1e5a2931
JO
1229}
1230
2760f5a1 1231static struct aggr_cpu_id perf_stat__get_socket_cached(struct perf_stat_config *config,
f854839b 1232 struct perf_cpu_map *map, int idx)
1e5a2931 1233{
6f6b6594 1234 return perf_stat__get_aggr(config, perf_stat__get_socket, map, idx);
1e5a2931
JO
1235}
1236
2760f5a1 1237static struct aggr_cpu_id perf_stat__get_die_cached(struct perf_stat_config *config,
f854839b 1238 struct perf_cpu_map *map, int idx)
db5742b6
KL
1239{
1240 return perf_stat__get_aggr(config, perf_stat__get_die, map, idx);
1241}
1242
2760f5a1 1243static struct aggr_cpu_id perf_stat__get_core_cached(struct perf_stat_config *config,
f854839b 1244 struct perf_cpu_map *map, int idx)
1e5a2931 1245{
6f6b6594 1246 return perf_stat__get_aggr(config, perf_stat__get_core, map, idx);
1e5a2931
JO
1247}
1248
2760f5a1 1249static struct aggr_cpu_id perf_stat__get_node_cached(struct perf_stat_config *config,
86895b48
JO
1250 struct perf_cpu_map *map, int idx)
1251{
1252 return perf_stat__get_aggr(config, perf_stat__get_node, map, idx);
1253}
1254
4fc4d8df
JY
1255static bool term_percore_set(void)
1256{
32dcd021 1257 struct evsel *counter;
4fc4d8df
JY
1258
1259 evlist__for_each_entry(evsel_list, counter) {
1260 if (counter->percore)
1261 return true;
1262 }
1263
1264 return false;
1265}
1266
86ee6e18
SE
1267static int perf_stat_init_aggr_mode(void)
1268{
1e5a2931
JO
1269 int nr;
1270
421a50f3 1271 switch (stat_config.aggr_mode) {
86ee6e18 1272 case AGGR_SOCKET:
f72f901d 1273 if (cpu_map__build_socket_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
86ee6e18
SE
1274 perror("cannot build socket map");
1275 return -1;
1276 }
6f6b6594 1277 stat_config.aggr_get_id = perf_stat__get_socket_cached;
86ee6e18 1278 break;
db5742b6 1279 case AGGR_DIE:
f72f901d 1280 if (cpu_map__build_die_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
db5742b6
KL
1281 perror("cannot build die map");
1282 return -1;
1283 }
1284 stat_config.aggr_get_id = perf_stat__get_die_cached;
1285 break;
12c08a9f 1286 case AGGR_CORE:
f72f901d 1287 if (cpu_map__build_core_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
12c08a9f
SE
1288 perror("cannot build core map");
1289 return -1;
1290 }
6f6b6594 1291 stat_config.aggr_get_id = perf_stat__get_core_cached;
12c08a9f 1292 break;
86895b48
JO
1293 case AGGR_NODE:
1294 if (cpu_map__build_node_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
1295 perror("cannot build core map");
1296 return -1;
1297 }
1298 stat_config.aggr_get_id = perf_stat__get_node_cached;
1299 break;
86ee6e18 1300 case AGGR_NONE:
4fc4d8df 1301 if (term_percore_set()) {
f72f901d 1302 if (cpu_map__build_core_map(evsel_list->core.cpus,
4fc4d8df
JY
1303 &stat_config.aggr_map)) {
1304 perror("cannot build core map");
1305 return -1;
1306 }
1307 stat_config.aggr_get_id = perf_stat__get_core_cached;
1308 }
1309 break;
86ee6e18 1310 case AGGR_GLOBAL:
32b8af82 1311 case AGGR_THREAD:
208df99e 1312 case AGGR_UNSET:
86ee6e18
SE
1313 default:
1314 break;
1315 }
1e5a2931
JO
1316
1317 /*
1318 * The evsel_list->cpus is the base we operate on,
1319 * taking the highest cpu number to be the size of
1320 * the aggregation translate cpumap.
1321 */
4256d434 1322 nr = perf_cpu_map__max(evsel_list->core.cpus);
315c0a1f 1323 stat_config.cpus_aggr_map = perf_cpu_map__empty_new(nr + 1);
6f6b6594 1324 return stat_config.cpus_aggr_map ? 0 : -ENOMEM;
86ee6e18
SE
1325}
1326
544c2ae7
MH
1327static void perf_stat__exit_aggr_mode(void)
1328{
38f01d8d
JO
1329 perf_cpu_map__put(stat_config.aggr_map);
1330 perf_cpu_map__put(stat_config.cpus_aggr_map);
6f6b6594
JO
1331 stat_config.aggr_map = NULL;
1332 stat_config.cpus_aggr_map = NULL;
544c2ae7
MH
1333}
1334
f854839b 1335static inline int perf_env__get_cpu(struct perf_env *env, struct perf_cpu_map *map, int idx)
68d702f7
JO
1336{
1337 int cpu;
1338
1339 if (idx > map->nr)
1340 return -1;
1341
1342 cpu = map->map[idx];
1343
da8a58b5 1344 if (cpu >= env->nr_cpus_avail)
68d702f7
JO
1345 return -1;
1346
1347 return cpu;
1348}
1349
2760f5a1 1350static struct aggr_cpu_id perf_env__get_socket(struct perf_cpu_map *map, int idx, void *data)
68d702f7
JO
1351{
1352 struct perf_env *env = data;
1353 int cpu = perf_env__get_cpu(env, map, idx);
2760f5a1
JC
1354 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
1355
1356 if (cpu != -1)
1357 id.id = env->cpu[cpu].socket_id;
68d702f7 1358
2760f5a1 1359 return id;
68d702f7
JO
1360}
1361
2760f5a1 1362static struct aggr_cpu_id perf_env__get_die(struct perf_cpu_map *map, int idx, void *data)
db5742b6
KL
1363{
1364 struct perf_env *env = data;
2760f5a1
JC
1365 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
1366 int cpu = perf_env__get_cpu(env, map, idx);
db5742b6
KL
1367
1368 if (cpu != -1) {
1369 /*
1370 * Encode socket in bit range 15:8
1371 * die_id is relative to socket,
1372 * we need a global id. So we combine
1373 * socket + die id
1374 */
1375 if (WARN_ONCE(env->cpu[cpu].socket_id >> 8, "The socket id number is too big.\n"))
2760f5a1 1376 return cpu_map__empty_aggr_cpu_id();
db5742b6
KL
1377
1378 if (WARN_ONCE(env->cpu[cpu].die_id >> 8, "The die id number is too big.\n"))
2760f5a1 1379 return cpu_map__empty_aggr_cpu_id();
db5742b6 1380
2760f5a1 1381 id.id = (env->cpu[cpu].socket_id << 8) | (env->cpu[cpu].die_id & 0xff);
db5742b6
KL
1382 }
1383
2760f5a1 1384 return id;
db5742b6
KL
1385}
1386
2760f5a1 1387static struct aggr_cpu_id perf_env__get_core(struct perf_cpu_map *map, int idx, void *data)
68d702f7
JO
1388{
1389 struct perf_env *env = data;
2760f5a1
JC
1390 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
1391 int cpu = perf_env__get_cpu(env, map, idx);
68d702f7
JO
1392
1393 if (cpu != -1) {
68d702f7 1394 /*
db5742b6
KL
1395 * Encode socket in bit range 31:24
1396 * encode die id in bit range 23:16
1397 * core_id is relative to socket and die,
68d702f7 1398 * we need a global id. So we combine
db5742b6 1399 * socket + die id + core id
68d702f7 1400 */
db5742b6 1401 if (WARN_ONCE(env->cpu[cpu].socket_id >> 8, "The socket id number is too big.\n"))
2760f5a1 1402 return cpu_map__empty_aggr_cpu_id();
db5742b6
KL
1403
1404 if (WARN_ONCE(env->cpu[cpu].die_id >> 8, "The die id number is too big.\n"))
2760f5a1 1405 return cpu_map__empty_aggr_cpu_id();
db5742b6
KL
1406
1407 if (WARN_ONCE(env->cpu[cpu].core_id >> 16, "The core id number is too big.\n"))
2760f5a1 1408 return cpu_map__empty_aggr_cpu_id();
db5742b6 1409
2760f5a1 1410 id.id = (env->cpu[cpu].socket_id << 24) |
db5742b6
KL
1411 (env->cpu[cpu].die_id << 16) |
1412 (env->cpu[cpu].core_id & 0xffff);
68d702f7
JO
1413 }
1414
2760f5a1 1415 return id;
68d702f7
JO
1416}
1417
2760f5a1 1418static struct aggr_cpu_id perf_env__get_node(struct perf_cpu_map *map, int idx, void *data)
86895b48
JO
1419{
1420 int cpu = perf_env__get_cpu(data, map, idx);
2760f5a1 1421 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
86895b48 1422
2760f5a1
JC
1423 id.id = perf_env__numa_node(data, cpu);
1424 return id;
86895b48
JO
1425}
1426
f854839b
JO
1427static int perf_env__build_socket_map(struct perf_env *env, struct perf_cpu_map *cpus,
1428 struct perf_cpu_map **sockp)
68d702f7
JO
1429{
1430 return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
1431}
1432
f854839b
JO
1433static int perf_env__build_die_map(struct perf_env *env, struct perf_cpu_map *cpus,
1434 struct perf_cpu_map **diep)
db5742b6
KL
1435{
1436 return cpu_map__build_map(cpus, diep, perf_env__get_die, env);
1437}
1438
f854839b
JO
1439static int perf_env__build_core_map(struct perf_env *env, struct perf_cpu_map *cpus,
1440 struct perf_cpu_map **corep)
68d702f7
JO
1441{
1442 return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
1443}
1444
86895b48
JO
1445static int perf_env__build_node_map(struct perf_env *env, struct perf_cpu_map *cpus,
1446 struct perf_cpu_map **nodep)
1447{
1448 return cpu_map__build_map(cpus, nodep, perf_env__get_node, env);
1449}
1450
2760f5a1 1451static struct aggr_cpu_id perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused,
f854839b 1452 struct perf_cpu_map *map, int idx)
68d702f7
JO
1453{
1454 return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
1455}
2760f5a1 1456static struct aggr_cpu_id perf_stat__get_die_file(struct perf_stat_config *config __maybe_unused,
f854839b 1457 struct perf_cpu_map *map, int idx)
db5742b6
KL
1458{
1459 return perf_env__get_die(map, idx, &perf_stat.session->header.env);
1460}
68d702f7 1461
2760f5a1 1462static struct aggr_cpu_id perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused,
f854839b 1463 struct perf_cpu_map *map, int idx)
68d702f7
JO
1464{
1465 return perf_env__get_core(map, idx, &perf_stat.session->header.env);
1466}
1467
2760f5a1 1468static struct aggr_cpu_id perf_stat__get_node_file(struct perf_stat_config *config __maybe_unused,
86895b48
JO
1469 struct perf_cpu_map *map, int idx)
1470{
1471 return perf_env__get_node(map, idx, &perf_stat.session->header.env);
1472}
1473
68d702f7
JO
1474static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
1475{
1476 struct perf_env *env = &st->session->header.env;
1477
1478 switch (stat_config.aggr_mode) {
1479 case AGGR_SOCKET:
f72f901d 1480 if (perf_env__build_socket_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
68d702f7
JO
1481 perror("cannot build socket map");
1482 return -1;
1483 }
6f6b6594 1484 stat_config.aggr_get_id = perf_stat__get_socket_file;
68d702f7 1485 break;
db5742b6 1486 case AGGR_DIE:
f72f901d 1487 if (perf_env__build_die_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
db5742b6
KL
1488 perror("cannot build die map");
1489 return -1;
1490 }
1491 stat_config.aggr_get_id = perf_stat__get_die_file;
1492 break;
68d702f7 1493 case AGGR_CORE:
f72f901d 1494 if (perf_env__build_core_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
68d702f7
JO
1495 perror("cannot build core map");
1496 return -1;
1497 }
6f6b6594 1498 stat_config.aggr_get_id = perf_stat__get_core_file;
68d702f7 1499 break;
86895b48
JO
1500 case AGGR_NODE:
1501 if (perf_env__build_node_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
1502 perror("cannot build core map");
1503 return -1;
1504 }
1505 stat_config.aggr_get_id = perf_stat__get_node_file;
1506 break;
68d702f7
JO
1507 case AGGR_NONE:
1508 case AGGR_GLOBAL:
1509 case AGGR_THREAD:
1510 case AGGR_UNSET:
1511 default:
1512 break;
1513 }
1514
1515 return 0;
1516}
1517
2cba3ffb
IM
1518/*
1519 * Add default attributes, if there were no attributes specified or
1520 * if -d/--detailed, -d -d or -d -d -d is used:
1521 */
1522static int add_default_attributes(void)
1523{
44b1e60a 1524 int err;
9dec4473 1525 struct perf_event_attr default_attrs0[] = {
b070a547
ACM
1526
1527 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1528 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1529 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1530 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1531
1532 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
9dec4473
AK
1533};
1534 struct perf_event_attr frontend_attrs[] = {
b070a547 1535 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
9dec4473
AK
1536};
1537 struct perf_event_attr backend_attrs[] = {
b070a547 1538 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
9dec4473
AK
1539};
1540 struct perf_event_attr default_attrs1[] = {
b070a547
ACM
1541 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1542 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1543 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1544
1545};
1546
1547/*
1548 * Detailed stats (-d), covering the L1 and last level data caches:
1549 */
1550 struct perf_event_attr detailed_attrs[] = {
1551
1552 { .type = PERF_TYPE_HW_CACHE,
1553 .config =
1554 PERF_COUNT_HW_CACHE_L1D << 0 |
1555 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1556 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1557
1558 { .type = PERF_TYPE_HW_CACHE,
1559 .config =
1560 PERF_COUNT_HW_CACHE_L1D << 0 |
1561 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1562 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1563
1564 { .type = PERF_TYPE_HW_CACHE,
1565 .config =
1566 PERF_COUNT_HW_CACHE_LL << 0 |
1567 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1568 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1569
1570 { .type = PERF_TYPE_HW_CACHE,
1571 .config =
1572 PERF_COUNT_HW_CACHE_LL << 0 |
1573 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1574 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1575};
1576
1577/*
1578 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1579 */
1580 struct perf_event_attr very_detailed_attrs[] = {
1581
1582 { .type = PERF_TYPE_HW_CACHE,
1583 .config =
1584 PERF_COUNT_HW_CACHE_L1I << 0 |
1585 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1586 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1587
1588 { .type = PERF_TYPE_HW_CACHE,
1589 .config =
1590 PERF_COUNT_HW_CACHE_L1I << 0 |
1591 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1592 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1593
1594 { .type = PERF_TYPE_HW_CACHE,
1595 .config =
1596 PERF_COUNT_HW_CACHE_DTLB << 0 |
1597 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1598 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1599
1600 { .type = PERF_TYPE_HW_CACHE,
1601 .config =
1602 PERF_COUNT_HW_CACHE_DTLB << 0 |
1603 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1604 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1605
1606 { .type = PERF_TYPE_HW_CACHE,
1607 .config =
1608 PERF_COUNT_HW_CACHE_ITLB << 0 |
1609 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1610 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1611
1612 { .type = PERF_TYPE_HW_CACHE,
1613 .config =
1614 PERF_COUNT_HW_CACHE_ITLB << 0 |
1615 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1616 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1617
1618};
1619
1620/*
1621 * Very, very detailed stats (-d -d -d), adding prefetch events:
1622 */
1623 struct perf_event_attr very_very_detailed_attrs[] = {
1624
1625 { .type = PERF_TYPE_HW_CACHE,
1626 .config =
1627 PERF_COUNT_HW_CACHE_L1D << 0 |
1628 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1629 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1630
1631 { .type = PERF_TYPE_HW_CACHE,
1632 .config =
1633 PERF_COUNT_HW_CACHE_L1D << 0 |
1634 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1635 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1636};
a5cfa621 1637 struct parse_events_error errinfo;
b070a547 1638
2cba3ffb 1639 /* Set attrs if no event is selected and !null_run: */
aea0dca1 1640 if (stat_config.null_run)
2cba3ffb
IM
1641 return 0;
1642
a910e466 1643 bzero(&errinfo, sizeof(errinfo));
4cabc3d1 1644 if (transaction_run) {
742d92ff
TR
1645 /* Handle -T as -M transaction. Once platform specific metrics
1646 * support has been added to the json files, all archictures
1647 * will use this approach. To determine transaction support
1648 * on an architecture test for such a metric name.
1649 */
1650 if (metricgroup__has_metric("transaction")) {
1651 struct option opt = { .value = &evsel_list };
1652
1653 return metricgroup__parse_groups(&opt, "transaction",
05530a79
IR
1654 stat_config.metric_no_group,
1655 stat_config.metric_no_merge,
d0192fdb 1656 &stat_config.metric_events);
742d92ff
TR
1657 }
1658
4cabc3d1
AK
1659 if (pmu_have_event("cpu", "cycles-ct") &&
1660 pmu_have_event("cpu", "el-start"))
fca32340
TR
1661 err = parse_events(evsel_list, transaction_attrs,
1662 &errinfo);
4cabc3d1 1663 else
fca32340
TR
1664 err = parse_events(evsel_list,
1665 transaction_limited_attrs,
1666 &errinfo);
a454742c 1667 if (err) {
4cabc3d1 1668 fprintf(stderr, "Cannot set up transaction events\n");
a5cfa621 1669 parse_events_print_error(&errinfo, transaction_attrs);
4cabc3d1
AK
1670 return -1;
1671 }
1672 return 0;
1673 }
1674
daefd0bc
KL
1675 if (smi_cost) {
1676 int smi;
1677
1678 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
1679 fprintf(stderr, "freeze_on_smi is not supported.\n");
1680 return -1;
1681 }
1682
1683 if (!smi) {
1684 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
1685 fprintf(stderr, "Failed to set freeze_on_smi.\n");
1686 return -1;
1687 }
1688 smi_reset = true;
1689 }
1690
1691 if (pmu_have_event("msr", "aperf") &&
1692 pmu_have_event("msr", "smi")) {
1693 if (!force_metric_only)
0ce5aa02 1694 stat_config.metric_only = true;
a5cfa621 1695 err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
daefd0bc
KL
1696 } else {
1697 fprintf(stderr, "To measure SMI cost, it needs "
1698 "msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
a5cfa621 1699 parse_events_print_error(&errinfo, smi_cost_attrs);
daefd0bc
KL
1700 return -1;
1701 }
1702 if (err) {
a910e466 1703 parse_events_print_error(&errinfo, smi_cost_attrs);
daefd0bc
KL
1704 fprintf(stderr, "Cannot set up SMI cost events\n");
1705 return -1;
1706 }
1707 return 0;
1708 }
1709
44b1e60a
AK
1710 if (topdown_run) {
1711 char *str = NULL;
1712 bool warn = false;
1713
55c36a9f
AK
1714 if (!force_metric_only)
1715 stat_config.metric_only = true;
1716
1717 if (topdown_filter_events(topdown_metric_attrs, &str, 1) < 0) {
1718 pr_err("Out of memory\n");
1719 return -1;
1720 }
1721 if (topdown_metric_attrs[0] && str) {
1722 if (!stat_config.interval && !stat_config.metric_only) {
1723 fprintf(stat_config.output,
1724 "Topdown accuracy may decrease when measuring long periods.\n"
1725 "Please print the result regularly, e.g. -I1000\n");
1726 }
1727 goto setup_metrics;
1728 }
1729
1730 zfree(&str);
1731
44b1e60a
AK
1732 if (stat_config.aggr_mode != AGGR_GLOBAL &&
1733 stat_config.aggr_mode != AGGR_CORE) {
1734 pr_err("top down event configuration requires --per-core mode\n");
1735 return -1;
1736 }
1737 stat_config.aggr_mode = AGGR_CORE;
1738 if (nr_cgroups || !target__has_cpu(&target)) {
1739 pr_err("top down event configuration requires system-wide mode (-a)\n");
1740 return -1;
1741 }
1742
44b1e60a
AK
1743 if (topdown_filter_events(topdown_attrs, &str,
1744 arch_topdown_check_group(&warn)) < 0) {
1745 pr_err("Out of memory\n");
1746 return -1;
1747 }
1748 if (topdown_attrs[0] && str) {
1749 if (warn)
1750 arch_topdown_group_warn();
55c36a9f 1751setup_metrics:
a5cfa621 1752 err = parse_events(evsel_list, str, &errinfo);
44b1e60a
AK
1753 if (err) {
1754 fprintf(stderr,
1755 "Cannot set up top down events %s: %d\n",
1756 str, err);
a5cfa621 1757 parse_events_print_error(&errinfo, str);
c74b0503 1758 free(str);
44b1e60a
AK
1759 return -1;
1760 }
1761 } else {
1762 fprintf(stderr, "System does not support topdown\n");
1763 return -1;
1764 }
1765 free(str);
1766 }
1767
6484d2f9 1768 if (!evsel_list->core.nr_entries) {
a1f3d567
NK
1769 if (target__has_cpu(&target))
1770 default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
1771
e251abee 1772 if (evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
9dec4473
AK
1773 return -1;
1774 if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
e251abee 1775 if (evlist__add_default_attrs(evsel_list, frontend_attrs) < 0)
9dec4473
AK
1776 return -1;
1777 }
1778 if (pmu_have_event("cpu", "stalled-cycles-backend")) {
e251abee 1779 if (evlist__add_default_attrs(evsel_list, backend_attrs) < 0)
9dec4473
AK
1780 return -1;
1781 }
e251abee 1782 if (evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
50d08e47 1783 return -1;
2cba3ffb
IM
1784 }
1785
1786 /* Detailed events get appended to the event list: */
1787
1788 if (detailed_run < 1)
1789 return 0;
1790
1791 /* Append detailed run extra attributes: */
e251abee 1792 if (evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
50d08e47 1793 return -1;
2cba3ffb
IM
1794
1795 if (detailed_run < 2)
1796 return 0;
1797
1798 /* Append very detailed run extra attributes: */
e251abee 1799 if (evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
50d08e47 1800 return -1;
2cba3ffb
IM
1801
1802 if (detailed_run < 3)
1803 return 0;
1804
1805 /* Append very, very detailed run extra attributes: */
e251abee 1806 return evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
2cba3ffb
IM
1807}
1808
8a59f3cc 1809static const char * const stat_record_usage[] = {
4979d0c7
JO
1810 "perf stat record [<options>]",
1811 NULL,
1812};
1813
3ba78bd0
JO
1814static void init_features(struct perf_session *session)
1815{
1816 int feat;
1817
1818 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
1819 perf_header__set_feat(&session->header, feat);
1820
8002a63f 1821 perf_header__clear_feat(&session->header, HEADER_DIR_FORMAT);
3ba78bd0
JO
1822 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
1823 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
1824 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
1825 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
1826}
1827
4979d0c7
JO
1828static int __cmd_record(int argc, const char **argv)
1829{
1830 struct perf_session *session;
8ceb41d7 1831 struct perf_data *data = &perf_stat.data;
4979d0c7 1832
8a59f3cc 1833 argc = parse_options(argc, argv, stat_options, stat_record_usage,
4979d0c7
JO
1834 PARSE_OPT_STOP_AT_NON_OPTION);
1835
1836 if (output_name)
2d4f2799 1837 data->path = output_name;
4979d0c7 1838
d97ae04b 1839 if (stat_config.run_count != 1 || forever) {
e9d6db8e
JO
1840 pr_err("Cannot use -r option with perf stat record.\n");
1841 return -1;
1842 }
1843
8ceb41d7 1844 session = perf_session__new(data, false, NULL);
6ef81c55
MI
1845 if (IS_ERR(session)) {
1846 pr_err("Perf session creation failed\n");
1847 return PTR_ERR(session);
4979d0c7
JO
1848 }
1849
3ba78bd0
JO
1850 init_features(session);
1851
4979d0c7
JO
1852 session->evlist = evsel_list;
1853 perf_stat.session = session;
1854 perf_stat.record = true;
1855 return argc;
1856}
1857
89f1688a
JO
1858static int process_stat_round_event(struct perf_session *session,
1859 union perf_event *event)
a56f9390 1860{
72932371 1861 struct perf_record_stat_round *stat_round = &event->stat_round;
32dcd021 1862 struct evsel *counter;
a56f9390
JO
1863 struct timespec tsh, *ts = NULL;
1864 const char **argv = session->header.env.cmdline_argv;
1865 int argc = session->header.env.nr_cmdline;
1866
e5cadb93 1867 evlist__for_each_entry(evsel_list, counter)
a56f9390
JO
1868 perf_stat_process_counter(&stat_config, counter);
1869
e3b03b6c
AK
1870 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
1871 update_stats(&walltime_nsecs_stats, stat_round->time);
a56f9390 1872
e3b03b6c 1873 if (stat_config.interval && stat_round->time) {
bd48c63e
ACM
1874 tsh.tv_sec = stat_round->time / NSEC_PER_SEC;
1875 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
a56f9390
JO
1876 ts = &tsh;
1877 }
1878
1879 print_counters(ts, argc, argv);
1880 return 0;
1881}
1882
62ba18ba 1883static
89f1688a
JO
1884int process_stat_config_event(struct perf_session *session,
1885 union perf_event *event)
62ba18ba 1886{
89f1688a 1887 struct perf_tool *tool = session->tool;
68d702f7
JO
1888 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1889
62ba18ba 1890 perf_event__read_stat_config(&stat_config, &event->stat_config);
68d702f7 1891
315c0a1f 1892 if (perf_cpu_map__empty(st->cpus)) {
89af4e05
JO
1893 if (st->aggr_mode != AGGR_UNSET)
1894 pr_warning("warning: processing task data, aggregation mode not set\n");
1895 return 0;
1896 }
1897
1898 if (st->aggr_mode != AGGR_UNSET)
1899 stat_config.aggr_mode = st->aggr_mode;
1900
8ceb41d7 1901 if (perf_stat.data.is_pipe)
68d702f7
JO
1902 perf_stat_init_aggr_mode();
1903 else
1904 perf_stat_init_aggr_mode_file(st);
1905
62ba18ba
JO
1906 return 0;
1907}
1908
1975d36e
JO
1909static int set_maps(struct perf_stat *st)
1910{
1911 if (!st->cpus || !st->threads)
1912 return 0;
1913
1914 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
1915 return -EINVAL;
1916
453fa030 1917 perf_evlist__set_maps(&evsel_list->core, st->cpus, st->threads);
1975d36e 1918
53f5e908 1919 if (evlist__alloc_stats(evsel_list, true))
1975d36e
JO
1920 return -ENOMEM;
1921
1922 st->maps_allocated = true;
1923 return 0;
1924}
1925
1926static
89f1688a
JO
1927int process_thread_map_event(struct perf_session *session,
1928 union perf_event *event)
1975d36e 1929{
89f1688a 1930 struct perf_tool *tool = session->tool;
1975d36e
JO
1931 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1932
1933 if (st->threads) {
1934 pr_warning("Extra thread map event, ignoring.\n");
1935 return 0;
1936 }
1937
1938 st->threads = thread_map__new_event(&event->thread_map);
1939 if (!st->threads)
1940 return -ENOMEM;
1941
1942 return set_maps(st);
1943}
1944
1945static
89f1688a
JO
1946int process_cpu_map_event(struct perf_session *session,
1947 union perf_event *event)
1975d36e 1948{
89f1688a 1949 struct perf_tool *tool = session->tool;
1975d36e 1950 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
f854839b 1951 struct perf_cpu_map *cpus;
1975d36e
JO
1952
1953 if (st->cpus) {
1954 pr_warning("Extra cpu map event, ignoring.\n");
1955 return 0;
1956 }
1957
1958 cpus = cpu_map__new_data(&event->cpu_map.data);
1959 if (!cpus)
1960 return -ENOMEM;
1961
1962 st->cpus = cpus;
1963 return set_maps(st);
1964}
1965
8a59f3cc 1966static const char * const stat_report_usage[] = {
ba6039b6
JO
1967 "perf stat report [<options>]",
1968 NULL,
1969};
1970
1971static struct perf_stat perf_stat = {
1972 .tool = {
1973 .attr = perf_event__process_attr,
fa6ea781 1974 .event_update = perf_event__process_event_update,
1975d36e
JO
1975 .thread_map = process_thread_map_event,
1976 .cpu_map = process_cpu_map_event,
62ba18ba 1977 .stat_config = process_stat_config_event,
a56f9390
JO
1978 .stat = perf_event__process_stat_event,
1979 .stat_round = process_stat_round_event,
ba6039b6 1980 },
89af4e05 1981 .aggr_mode = AGGR_UNSET,
ba6039b6
JO
1982};
1983
1984static int __cmd_report(int argc, const char **argv)
1985{
1986 struct perf_session *session;
1987 const struct option options[] = {
1988 OPT_STRING('i', "input", &input_name, "file", "input file name"),
89af4e05
JO
1989 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
1990 "aggregate counts per processor socket", AGGR_SOCKET),
db5742b6
KL
1991 OPT_SET_UINT(0, "per-die", &perf_stat.aggr_mode,
1992 "aggregate counts per processor die", AGGR_DIE),
89af4e05
JO
1993 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
1994 "aggregate counts per physical processor core", AGGR_CORE),
86895b48
JO
1995 OPT_SET_UINT(0, "per-node", &perf_stat.aggr_mode,
1996 "aggregate counts per numa node", AGGR_NODE),
89af4e05
JO
1997 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
1998 "disable CPU count aggregation", AGGR_NONE),
ba6039b6
JO
1999 OPT_END()
2000 };
2001 struct stat st;
2002 int ret;
2003
8a59f3cc 2004 argc = parse_options(argc, argv, options, stat_report_usage, 0);
ba6039b6
JO
2005
2006 if (!input_name || !strlen(input_name)) {
2007 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
2008 input_name = "-";
2009 else
2010 input_name = "perf.data";
2011 }
2012
2d4f2799
JO
2013 perf_stat.data.path = input_name;
2014 perf_stat.data.mode = PERF_DATA_MODE_READ;
ba6039b6 2015
8ceb41d7 2016 session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
6ef81c55
MI
2017 if (IS_ERR(session))
2018 return PTR_ERR(session);
ba6039b6
JO
2019
2020 perf_stat.session = session;
2021 stat_config.output = stderr;
2022 evsel_list = session->evlist;
2023
2024 ret = perf_session__process_events(session);
2025 if (ret)
2026 return ret;
2027
2028 perf_session__delete(session);
2029 return 0;
2030}
2031
e3ba76de
JO
2032static void setup_system_wide(int forks)
2033{
2034 /*
2035 * Make system wide (-a) the default target if
2036 * no target was specified and one of following
2037 * conditions is met:
2038 *
2039 * - there's no workload specified
2040 * - there is workload specified but all requested
2041 * events are system wide events
2042 */
2043 if (!target__none(&target))
2044 return;
2045
2046 if (!forks)
2047 target.system_wide = true;
2048 else {
32dcd021 2049 struct evsel *counter;
e3ba76de
JO
2050
2051 evlist__for_each_entry(evsel_list, counter) {
002a3d69
JY
2052 if (!counter->core.system_wide &&
2053 strcmp(counter->name, "duration_time")) {
e3ba76de 2054 return;
002a3d69 2055 }
e3ba76de
JO
2056 }
2057
6484d2f9 2058 if (evsel_list->core.nr_entries)
e3ba76de
JO
2059 target.system_wide = true;
2060 }
2061}
2062
b0ad8ea6 2063int cmd_stat(int argc, const char **argv)
5242519b 2064{
b070a547
ACM
2065 const char * const stat_usage[] = {
2066 "perf stat [<options>] [<command>]",
2067 NULL
2068 };
cc03c542 2069 int status = -EINVAL, run_idx;
4aa9015f 2070 const char *mode;
5821522e 2071 FILE *output = stderr;
f1f8ad52 2072 unsigned int interval, timeout;
ba6039b6 2073 const char * const stat_subcommands[] = { "record", "report" };
42202dd5 2074
5af52b51
SE
2075 setlocale(LC_ALL, "");
2076
0f98b11c 2077 evsel_list = evlist__new();
361c99a6
ACM
2078 if (evsel_list == NULL)
2079 return -ENOMEM;
2080
1669e509 2081 parse_events__shrink_config_terms();
51433ead
MP
2082
2083 /* String-parsing callback-based options would segfault when negated */
2084 set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG);
2085 set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG);
2086 set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG);
2087
4979d0c7
JO
2088 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
2089 (const char **) stat_usage,
2090 PARSE_OPT_STOP_AT_NON_OPTION);
37932c18 2091 perf_stat__collect_metric_expr(evsel_list);
fb4605ba 2092 perf_stat__init_shadow_stats();
4979d0c7 2093
fa7070a3
JO
2094 if (stat_config.csv_sep) {
2095 stat_config.csv_output = true;
2096 if (!strcmp(stat_config.csv_sep, "\\t"))
2097 stat_config.csv_sep = "\t";
6edb78a2 2098 } else
fa7070a3 2099 stat_config.csv_sep = DEFAULT_SEPARATOR;
6edb78a2 2100
4979d0c7
JO
2101 if (argc && !strncmp(argv[0], "rec", 3)) {
2102 argc = __cmd_record(argc, argv);
2103 if (argc < 0)
2104 return -1;
ba6039b6
JO
2105 } else if (argc && !strncmp(argv[0], "rep", 3))
2106 return __cmd_report(argc, argv);
d7470b6a 2107
ec0d3d1f 2108 interval = stat_config.interval;
f1f8ad52 2109 timeout = stat_config.timeout;
ec0d3d1f 2110
4979d0c7
JO
2111 /*
2112 * For record command the -o is already taken care of.
2113 */
2114 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
4aa9015f
SE
2115 output = NULL;
2116
56f3bae7
JC
2117 if (output_name && output_fd) {
2118 fprintf(stderr, "cannot use both --output and --log-fd\n");
e0547311
JO
2119 parse_options_usage(stat_usage, stat_options, "o", 1);
2120 parse_options_usage(NULL, stat_options, "log-fd", 0);
cc03c542 2121 goto out;
56f3bae7 2122 }
fc3e4d07 2123
0ce5aa02 2124 if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) {
54b50916
AK
2125 fprintf(stderr, "--metric-only is not supported with --per-thread\n");
2126 goto out;
2127 }
2128
d97ae04b 2129 if (stat_config.metric_only && stat_config.run_count > 1) {
54b50916
AK
2130 fprintf(stderr, "--metric-only is not supported with -r\n");
2131 goto out;
2132 }
2133
54ac0b1b 2134 if (stat_config.walltime_run_table && stat_config.run_count <= 1) {
e55c14af
JO
2135 fprintf(stderr, "--table is only supported with -r\n");
2136 parse_options_usage(stat_usage, stat_options, "r", 1);
2137 parse_options_usage(NULL, stat_options, "table", 0);
2138 goto out;
2139 }
2140
fc3e4d07
SE
2141 if (output_fd < 0) {
2142 fprintf(stderr, "argument to --log-fd must be a > 0\n");
e0547311 2143 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
cc03c542 2144 goto out;
fc3e4d07
SE
2145 }
2146
55a4de94 2147 if (!output && !stat_config.quiet) {
4aa9015f
SE
2148 struct timespec tm;
2149 mode = append_file ? "a" : "w";
2150
2151 output = fopen(output_name, mode);
2152 if (!output) {
2153 perror("failed to create output file");
fceda7fe 2154 return -1;
4aa9015f
SE
2155 }
2156 clock_gettime(CLOCK_REALTIME, &tm);
2157 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
fc3e4d07 2158 } else if (output_fd > 0) {
56f3bae7
JC
2159 mode = append_file ? "a" : "w";
2160 output = fdopen(output_fd, mode);
2161 if (!output) {
2162 perror("Failed opening logfd");
2163 return -errno;
2164 }
4aa9015f
SE
2165 }
2166
5821522e
JO
2167 stat_config.output = output;
2168
d7470b6a
SE
2169 /*
2170 * let the spreadsheet do the pretty-printing
2171 */
fa7070a3 2172 if (stat_config.csv_output) {
61a9f324 2173 /* User explicitly passed -B? */
d7470b6a
SE
2174 if (big_num_opt == 1) {
2175 fprintf(stderr, "-B option not supported with -x\n");
e0547311
JO
2176 parse_options_usage(stat_usage, stat_options, "B", 1);
2177 parse_options_usage(NULL, stat_options, "x", 1);
cc03c542 2178 goto out;
d7470b6a 2179 } else /* Nope, so disable big number formatting */
34ff0866 2180 stat_config.big_num = false;
d7470b6a 2181 } else if (big_num_opt == 0) /* User passed --no-big-num */
34ff0866 2182 stat_config.big_num = false;
d7470b6a 2183
e3ba76de 2184 setup_system_wide(argc);
ac3063bd 2185
0ce2da14
JO
2186 /*
2187 * Display user/system times only for single
2188 * run and when there's specified tracee.
2189 */
d97ae04b 2190 if ((stat_config.run_count == 1) && target__none(&target))
8897a891 2191 stat_config.ru_display = true;
0ce2da14 2192
d97ae04b 2193 if (stat_config.run_count < 0) {
cc03c542 2194 pr_err("Run count must be a positive number\n");
e0547311 2195 parse_options_usage(stat_usage, stat_options, "r", 1);
cc03c542 2196 goto out;
d97ae04b 2197 } else if (stat_config.run_count == 0) {
a7e191c3 2198 forever = true;
d97ae04b 2199 stat_config.run_count = 1;
a7e191c3 2200 }
ddcacfa0 2201
54ac0b1b
JO
2202 if (stat_config.walltime_run_table) {
2203 stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0]));
2204 if (!stat_config.walltime_run) {
e55c14af
JO
2205 pr_err("failed to setup -r option");
2206 goto out;
2207 }
2208 }
2209
1d9f8d1b
JY
2210 if ((stat_config.aggr_mode == AGGR_THREAD) &&
2211 !target__has_task(&target)) {
2212 if (!target.system_wide || target.cpu_list) {
2213 fprintf(stderr, "The --per-thread option is only "
2214 "available when monitoring via -p -t -a "
2215 "options or only --per-thread.\n");
2216 parse_options_usage(NULL, stat_options, "p", 1);
2217 parse_options_usage(NULL, stat_options, "t", 1);
2218 goto out;
2219 }
32b8af82
JO
2220 }
2221
2222 /*
2223 * no_aggr, cgroup are for system-wide only
2224 * --per-thread is aggregated per thread, we dont mix it with cpu mode
2225 */
421a50f3
JO
2226 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
2227 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
602ad878 2228 !target__has_cpu(&target)) {
023695d9
SE
2229 fprintf(stderr, "both cgroup and no-aggregation "
2230 "modes only available in system-wide mode\n");
2231
e0547311
JO
2232 parse_options_usage(stat_usage, stat_options, "G", 1);
2233 parse_options_usage(NULL, stat_options, "A", 1);
2234 parse_options_usage(NULL, stat_options, "a", 1);
cc03c542 2235 goto out;
d7e7a451
SE
2236 }
2237
2cba3ffb
IM
2238 if (add_default_attributes())
2239 goto out;
ddcacfa0 2240
d1c5a0e8
NK
2241 if (stat_config.cgroup_list) {
2242 if (nr_cgroups > 0) {
2243 pr_err("--cgroup and --for-each-cgroup cannot be used together\n");
2244 parse_options_usage(stat_usage, stat_options, "G", 1);
2245 parse_options_usage(NULL, stat_options, "for-each-cgroup", 0);
2246 goto out;
2247 }
2248
b214ba8c 2249 if (evlist__expand_cgroup(evsel_list, stat_config.cgroup_list,
bb1c15b6
NK
2250 &stat_config.metric_events, true) < 0) {
2251 parse_options_usage(stat_usage, stat_options,
2252 "for-each-cgroup", 0);
d1c5a0e8 2253 goto out;
bb1c15b6 2254 }
d1c5a0e8
NK
2255 }
2256
602ad878 2257 target__validate(&target);
5c98d466 2258
1d9f8d1b
JY
2259 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
2260 target.per_thread = true;
2261
7748bb71 2262 if (evlist__create_maps(evsel_list, &target) < 0) {
602ad878 2263 if (target__has_task(&target)) {
77a6f014 2264 pr_err("Problems finding threads of monitor\n");
e0547311
JO
2265 parse_options_usage(stat_usage, stat_options, "p", 1);
2266 parse_options_usage(NULL, stat_options, "t", 1);
602ad878 2267 } else if (target__has_cpu(&target)) {
77a6f014 2268 perror("failed to parse CPUs map");
e0547311
JO
2269 parse_options_usage(stat_usage, stat_options, "C", 1);
2270 parse_options_usage(NULL, stat_options, "a", 1);
cc03c542
NK
2271 }
2272 goto out;
60d567e2 2273 }
32b8af82 2274
a9a17902
JO
2275 evlist__check_cpu_maps(evsel_list);
2276
32b8af82
JO
2277 /*
2278 * Initialize thread_map with comm names,
2279 * so we could print it out on output.
2280 */
56739444 2281 if (stat_config.aggr_mode == AGGR_THREAD) {
03617c22 2282 thread_map__read_comms(evsel_list->core.threads);
56739444
JY
2283 if (target.system_wide) {
2284 if (runtime_stat_new(&stat_config,
a2f354e3 2285 perf_thread_map__nr(evsel_list->core.threads))) {
56739444
JY
2286 goto out;
2287 }
2288 }
2289 }
32b8af82 2290
86895b48
JO
2291 if (stat_config.aggr_mode == AGGR_NODE)
2292 cpu__setup_cpunode_map();
2293
db06a269 2294 if (stat_config.times && interval)
2295 interval_count = true;
2296 else if (stat_config.times && !interval) {
2297 pr_err("interval-count option should be used together with "
2298 "interval-print.\n");
2299 parse_options_usage(stat_usage, stat_options, "interval-count", 0);
2300 parse_options_usage(stat_usage, stat_options, "I", 1);
2301 goto out;
2302 }
c45c6ea2 2303
f1f8ad52 2304 if (timeout && timeout < 100) {
2305 if (timeout < 10) {
2306 pr_err("timeout must be >= 10ms.\n");
2307 parse_options_usage(stat_usage, stat_options, "timeout", 0);
2308 goto out;
2309 } else
2310 pr_warning("timeout < 100ms. "
2311 "The overhead percentage could be high in some cases. "
2312 "Please proceed with caution.\n");
2313 }
2314 if (timeout && interval) {
2315 pr_err("timeout option is not supported with interval-print.\n");
2316 parse_options_usage(stat_usage, stat_options, "timeout", 0);
2317 parse_options_usage(stat_usage, stat_options, "I", 1);
2318 goto out;
2319 }
2320
53f5e908 2321 if (evlist__alloc_stats(evsel_list, interval))
03ad9747 2322 goto out;
d6d901c2 2323
86ee6e18 2324 if (perf_stat_init_aggr_mode())
03ad9747 2325 goto out;
86ee6e18 2326
7d9ad16a
JO
2327 /*
2328 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
2329 * while avoiding that older tools show confusing messages.
2330 *
2331 * However for pipe sessions we need to keep it zero,
2332 * because script's perf_evsel__check_attr is triggered
2333 * by attr->sample_type != 0, and we can't run it on
2334 * stat sessions.
2335 */
2336 stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe);
2337
58d7e993
IM
2338 /*
2339 * We dont want to block the signals - that would cause
2340 * child tasks to inherit that and Ctrl-C would not work.
2341 * What we want is for Ctrl-C to work in the exec()-ed
2342 * task, but being ignored by perf stat itself:
2343 */
f7b7c26e 2344 atexit(sig_atexit);
a7e191c3
FD
2345 if (!forever)
2346 signal(SIGINT, skip_signal);
13370a9b 2347 signal(SIGCHLD, skip_signal);
58d7e993
IM
2348 signal(SIGALRM, skip_signal);
2349 signal(SIGABRT, skip_signal);
2350
27e9769a
AB
2351 if (evlist__initialize_ctlfd(evsel_list, stat_config.ctl_fd, stat_config.ctl_fd_ack))
2352 goto out;
2353
42202dd5 2354 status = 0;
d97ae04b
JO
2355 for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) {
2356 if (stat_config.run_count != 1 && verbose > 0)
4aa9015f
SE
2357 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
2358 run_idx + 1);
f9cef0a9 2359
b63fd11c 2360 if (run_idx != 0)
53f5e908 2361 evlist__reset_prev_raw_counts(evsel_list);
b63fd11c 2362
e55c14af 2363 status = run_perf_stat(argc, argv, run_idx);
443f2d5b 2364 if (forever && status != -1 && !interval) {
d4f63a47 2365 print_counters(NULL, argc, argv);
254ecbc7 2366 perf_stat__reset_stats();
a7e191c3 2367 }
42202dd5
IM
2368 }
2369
c7e5b328 2370 if (!forever && status != -1 && (!interval || stat_config.summary))
d4f63a47 2371 print_counters(NULL, argc, argv);
d134ffb9 2372
27e9769a
AB
2373 evlist__finalize_ctlfd(evsel_list);
2374
4979d0c7
JO
2375 if (STAT_RECORD) {
2376 /*
2377 * We synthesize the kernel mmap record just so that older tools
2378 * don't emit warnings about not being able to resolve symbols
2379 * due to /proc/sys/kernel/kptr_restrict settings and instear provide
2380 * a saner message about no samples being in the perf.data file.
2381 *
2382 * This also serves to suppress a warning about f_header.data.size == 0
8b99b1a4
JO
2383 * in header.c at the moment 'perf stat record' gets introduced, which
2384 * is not really needed once we start adding the stat specific PERF_RECORD_
2385 * records, but the need to suppress the kptr_restrict messages in older
2386 * tools remain -acme
4979d0c7 2387 */
8ceb41d7 2388 int fd = perf_data__fd(&perf_stat.data);
4979d0c7
JO
2389 int err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
2390 process_synthesized_event,
2391 &perf_stat.session->machines.host);
2392 if (err) {
2393 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
2394 "older tools may produce warnings about this file\n.");
2395 }
2396
7aad0c32
JO
2397 if (!interval) {
2398 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
2399 pr_err("failed to write stat round event\n");
2400 }
2401
8ceb41d7 2402 if (!perf_stat.data.is_pipe) {
664c98d4
JO
2403 perf_stat.session->header.data_size += perf_stat.bytes_written;
2404 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
2405 }
4979d0c7 2406
750b4ede 2407 evlist__close(evsel_list);
4979d0c7
JO
2408 perf_session__delete(perf_stat.session);
2409 }
2410
544c2ae7 2411 perf_stat__exit_aggr_mode();
53f5e908 2412 evlist__free_stats(evsel_list);
0015e2e1 2413out:
d8f9da24 2414 zfree(&stat_config.walltime_run);
e55c14af 2415
daefd0bc
KL
2416 if (smi_cost && smi_reset)
2417 sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
2418
c12995a5 2419 evlist__delete(evsel_list);
56739444 2420
9afe5658 2421 metricgroup__rblist_exit(&stat_config.metric_events);
56739444 2422 runtime_stat_delete(&stat_config);
ee7fe31e 2423 evlist__close_control(stat_config.ctl_fd, stat_config.ctl_fd_ack, &stat_config.ctl_fd_close);
56739444 2424
42202dd5 2425 return status;
ddcacfa0 2426}