xref: /linux/tools/perf/builtin-stat.c (revision 8520a98dbab61e9e340cdfb72dd17ccc8a98961e)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
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:
9 
10    $ perf stat ./hackbench 10
11 
12   Time: 0.118
13 
14   Performance counter stats for './hackbench 10':
15 
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
29 
30  *
31  * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
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>
40  *   Jaswinder Singh Rajput <jaswinder@kernel.org>
41  */
42 
43 #include "builtin.h"
44 #include "perf.h"
45 #include "util/cgroup.h"
46 #include <subcmd/parse-options.h>
47 #include "util/parse-events.h"
48 #include "util/pmu.h"
49 #include "util/event.h"
50 #include "util/evlist.h"
51 #include "util/evsel.h"
52 #include "util/debug.h"
53 #include "util/color.h"
54 #include "util/stat.h"
55 #include "util/header.h"
56 #include "util/cpumap.h"
57 #include "util/thread.h"
58 #include "util/thread_map.h"
59 #include "util/counts.h"
60 #include "util/group.h"
61 #include "util/session.h"
62 #include "util/tool.h"
63 #include "util/string2.h"
64 #include "util/metricgroup.h"
65 #include "util/target.h"
66 #include "util/time-utils.h"
67 #include "util/top.h"
68 #include "asm/bug.h"
69 
70 #include <linux/time64.h>
71 #include <linux/zalloc.h>
72 #include <api/fs/fs.h>
73 #include <errno.h>
74 #include <signal.h>
75 #include <stdlib.h>
76 #include <sys/prctl.h>
77 #include <inttypes.h>
78 #include <locale.h>
79 #include <math.h>
80 #include <sys/types.h>
81 #include <sys/stat.h>
82 #include <sys/wait.h>
83 #include <unistd.h>
84 #include <sys/time.h>
85 #include <sys/resource.h>
86 
87 #include <linux/ctype.h>
88 #include <perf/evlist.h>
89 
90 #define DEFAULT_SEPARATOR	" "
91 #define FREEZE_ON_SMI_PATH	"devices/cpu/freeze_on_smi"
92 
93 static void print_counters(struct timespec *ts, int argc, const char **argv);
94 
95 /* Default events used for perf stat -T */
96 static const char *transaction_attrs = {
97 	"task-clock,"
98 	"{"
99 	"instructions,"
100 	"cycles,"
101 	"cpu/cycles-t/,"
102 	"cpu/tx-start/,"
103 	"cpu/el-start/,"
104 	"cpu/cycles-ct/"
105 	"}"
106 };
107 
108 /* More limited version when the CPU does not have all events. */
109 static const char * transaction_limited_attrs = {
110 	"task-clock,"
111 	"{"
112 	"instructions,"
113 	"cycles,"
114 	"cpu/cycles-t/,"
115 	"cpu/tx-start/"
116 	"}"
117 };
118 
119 static const char * topdown_attrs[] = {
120 	"topdown-total-slots",
121 	"topdown-slots-retired",
122 	"topdown-recovery-bubbles",
123 	"topdown-fetch-bubbles",
124 	"topdown-slots-issued",
125 	NULL,
126 };
127 
128 static const char *smi_cost_attrs = {
129 	"{"
130 	"msr/aperf/,"
131 	"msr/smi/,"
132 	"cycles"
133 	"}"
134 };
135 
136 static struct evlist	*evsel_list;
137 
138 static struct target target = {
139 	.uid	= UINT_MAX,
140 };
141 
142 #define METRIC_ONLY_LEN 20
143 
144 static volatile pid_t		child_pid			= -1;
145 static int			detailed_run			=  0;
146 static bool			transaction_run;
147 static bool			topdown_run			= false;
148 static bool			smi_cost			= false;
149 static bool			smi_reset			= false;
150 static int			big_num_opt			=  -1;
151 static bool			group				= false;
152 static const char		*pre_cmd			= NULL;
153 static const char		*post_cmd			= NULL;
154 static bool			sync_run			= false;
155 static bool			forever				= false;
156 static bool			force_metric_only		= false;
157 static struct timespec		ref_time;
158 static bool			append_file;
159 static bool			interval_count;
160 static const char		*output_name;
161 static int			output_fd;
162 
163 struct perf_stat {
164 	bool			 record;
165 	struct perf_data	 data;
166 	struct perf_session	*session;
167 	u64			 bytes_written;
168 	struct perf_tool	 tool;
169 	bool			 maps_allocated;
170 	struct perf_cpu_map	*cpus;
171 	struct perf_thread_map *threads;
172 	enum aggr_mode		 aggr_mode;
173 };
174 
175 static struct perf_stat		perf_stat;
176 #define STAT_RECORD		perf_stat.record
177 
178 static volatile int done = 0;
179 
180 static struct perf_stat_config stat_config = {
181 	.aggr_mode		= AGGR_GLOBAL,
182 	.scale			= true,
183 	.unit_width		= 4, /* strlen("unit") */
184 	.run_count		= 1,
185 	.metric_only_len	= METRIC_ONLY_LEN,
186 	.walltime_nsecs_stats	= &walltime_nsecs_stats,
187 	.big_num		= true,
188 };
189 
190 static inline void diff_timespec(struct timespec *r, struct timespec *a,
191 				 struct timespec *b)
192 {
193 	r->tv_sec = a->tv_sec - b->tv_sec;
194 	if (a->tv_nsec < b->tv_nsec) {
195 		r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
196 		r->tv_sec--;
197 	} else {
198 		r->tv_nsec = a->tv_nsec - b->tv_nsec ;
199 	}
200 }
201 
202 static void perf_stat__reset_stats(void)
203 {
204 	int i;
205 
206 	perf_evlist__reset_stats(evsel_list);
207 	perf_stat__reset_shadow_stats();
208 
209 	for (i = 0; i < stat_config.stats_num; i++)
210 		perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
211 }
212 
213 static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
214 				     union perf_event *event,
215 				     struct perf_sample *sample __maybe_unused,
216 				     struct machine *machine __maybe_unused)
217 {
218 	if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
219 		pr_err("failed to write perf data, error: %m\n");
220 		return -1;
221 	}
222 
223 	perf_stat.bytes_written += event->header.size;
224 	return 0;
225 }
226 
227 static int write_stat_round_event(u64 tm, u64 type)
228 {
229 	return perf_event__synthesize_stat_round(NULL, tm, type,
230 						 process_synthesized_event,
231 						 NULL);
232 }
233 
234 #define WRITE_STAT_ROUND_EVENT(time, interval) \
235 	write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
236 
237 #define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
238 
239 static int
240 perf_evsel__write_stat_event(struct evsel *counter, u32 cpu, u32 thread,
241 			     struct perf_counts_values *count)
242 {
243 	struct perf_sample_id *sid = SID(counter, cpu, thread);
244 
245 	return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
246 					   process_synthesized_event, NULL);
247 }
248 
249 static int read_single_counter(struct evsel *counter, int cpu,
250 			       int thread, struct timespec *rs)
251 {
252 	if (counter->tool_event == PERF_TOOL_DURATION_TIME) {
253 		u64 val = rs->tv_nsec + rs->tv_sec*1000000000ULL;
254 		struct perf_counts_values *count =
255 			perf_counts(counter->counts, cpu, thread);
256 		count->ena = count->run = val;
257 		count->val = val;
258 		return 0;
259 	}
260 	return perf_evsel__read_counter(counter, cpu, thread);
261 }
262 
263 /*
264  * Read out the results of a single counter:
265  * do not aggregate counts across CPUs in system-wide mode
266  */
267 static int read_counter(struct evsel *counter, struct timespec *rs)
268 {
269 	int nthreads = perf_thread_map__nr(evsel_list->core.threads);
270 	int ncpus, cpu, thread;
271 
272 	if (target__has_cpu(&target) && !target__has_per_thread(&target))
273 		ncpus = perf_evsel__nr_cpus(counter);
274 	else
275 		ncpus = 1;
276 
277 	if (!counter->supported)
278 		return -ENOENT;
279 
280 	if (counter->system_wide)
281 		nthreads = 1;
282 
283 	for (thread = 0; thread < nthreads; thread++) {
284 		for (cpu = 0; cpu < ncpus; cpu++) {
285 			struct perf_counts_values *count;
286 
287 			count = perf_counts(counter->counts, cpu, thread);
288 
289 			/*
290 			 * The leader's group read loads data into its group members
291 			 * (via perf_evsel__read_counter) and sets threir count->loaded.
292 			 */
293 			if (!perf_counts__is_loaded(counter->counts, cpu, thread) &&
294 			    read_single_counter(counter, cpu, thread, rs)) {
295 				counter->counts->scaled = -1;
296 				perf_counts(counter->counts, cpu, thread)->ena = 0;
297 				perf_counts(counter->counts, cpu, thread)->run = 0;
298 				return -1;
299 			}
300 
301 			perf_counts__set_loaded(counter->counts, cpu, thread, false);
302 
303 			if (STAT_RECORD) {
304 				if (perf_evsel__write_stat_event(counter, cpu, thread, count)) {
305 					pr_err("failed to write stat event\n");
306 					return -1;
307 				}
308 			}
309 
310 			if (verbose > 1) {
311 				fprintf(stat_config.output,
312 					"%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
313 						perf_evsel__name(counter),
314 						cpu,
315 						count->val, count->ena, count->run);
316 			}
317 		}
318 	}
319 
320 	return 0;
321 }
322 
323 static void read_counters(struct timespec *rs)
324 {
325 	struct evsel *counter;
326 	int ret;
327 
328 	evlist__for_each_entry(evsel_list, counter) {
329 		ret = read_counter(counter, rs);
330 		if (ret)
331 			pr_debug("failed to read counter %s\n", counter->name);
332 
333 		if (ret == 0 && perf_stat_process_counter(&stat_config, counter))
334 			pr_warning("failed to process counter %s\n", counter->name);
335 	}
336 }
337 
338 static void process_interval(void)
339 {
340 	struct timespec ts, rs;
341 
342 	clock_gettime(CLOCK_MONOTONIC, &ts);
343 	diff_timespec(&rs, &ts, &ref_time);
344 
345 	read_counters(&rs);
346 
347 	if (STAT_RECORD) {
348 		if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
349 			pr_err("failed to write stat round event\n");
350 	}
351 
352 	init_stats(&walltime_nsecs_stats);
353 	update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000);
354 	print_counters(&rs, 0, NULL);
355 }
356 
357 static void enable_counters(void)
358 {
359 	if (stat_config.initial_delay)
360 		usleep(stat_config.initial_delay * USEC_PER_MSEC);
361 
362 	/*
363 	 * We need to enable counters only if:
364 	 * - we don't have tracee (attaching to task or cpu)
365 	 * - we have initial delay configured
366 	 */
367 	if (!target__none(&target) || stat_config.initial_delay)
368 		evlist__enable(evsel_list);
369 }
370 
371 static void disable_counters(void)
372 {
373 	/*
374 	 * If we don't have tracee (attaching to task or cpu), counters may
375 	 * still be running. To get accurate group ratios, we must stop groups
376 	 * from counting before reading their constituent counters.
377 	 */
378 	if (!target__none(&target))
379 		evlist__disable(evsel_list);
380 }
381 
382 static volatile int workload_exec_errno;
383 
384 /*
385  * perf_evlist__prepare_workload will send a SIGUSR1
386  * if the fork fails, since we asked by setting its
387  * want_signal to true.
388  */
389 static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
390 					void *ucontext __maybe_unused)
391 {
392 	workload_exec_errno = info->si_value.sival_int;
393 }
394 
395 static bool perf_evsel__should_store_id(struct evsel *counter)
396 {
397 	return STAT_RECORD || counter->core.attr.read_format & PERF_FORMAT_ID;
398 }
399 
400 static bool is_target_alive(struct target *_target,
401 			    struct perf_thread_map *threads)
402 {
403 	struct stat st;
404 	int i;
405 
406 	if (!target__has_task(_target))
407 		return true;
408 
409 	for (i = 0; i < threads->nr; i++) {
410 		char path[PATH_MAX];
411 
412 		scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(),
413 			  threads->map[i].pid);
414 
415 		if (!stat(path, &st))
416 			return true;
417 	}
418 
419 	return false;
420 }
421 
422 static int __run_perf_stat(int argc, const char **argv, int run_idx)
423 {
424 	int interval = stat_config.interval;
425 	int times = stat_config.times;
426 	int timeout = stat_config.timeout;
427 	char msg[BUFSIZ];
428 	unsigned long long t0, t1;
429 	struct evsel *counter;
430 	struct timespec ts;
431 	size_t l;
432 	int status = 0;
433 	const bool forks = (argc > 0);
434 	bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
435 
436 	if (interval) {
437 		ts.tv_sec  = interval / USEC_PER_MSEC;
438 		ts.tv_nsec = (interval % USEC_PER_MSEC) * NSEC_PER_MSEC;
439 	} else if (timeout) {
440 		ts.tv_sec  = timeout / USEC_PER_MSEC;
441 		ts.tv_nsec = (timeout % USEC_PER_MSEC) * NSEC_PER_MSEC;
442 	} else {
443 		ts.tv_sec  = 1;
444 		ts.tv_nsec = 0;
445 	}
446 
447 	if (forks) {
448 		if (perf_evlist__prepare_workload(evsel_list, &target, argv, is_pipe,
449 						  workload_exec_failed_signal) < 0) {
450 			perror("failed to prepare workload");
451 			return -1;
452 		}
453 		child_pid = evsel_list->workload.pid;
454 	}
455 
456 	if (group)
457 		perf_evlist__set_leader(evsel_list);
458 
459 	evlist__for_each_entry(evsel_list, counter) {
460 try_again:
461 		if (create_perf_stat_counter(counter, &stat_config, &target) < 0) {
462 
463 			/* Weak group failed. Reset the group. */
464 			if ((errno == EINVAL || errno == EBADF) &&
465 			    counter->leader != counter &&
466 			    counter->weak_group) {
467 				counter = perf_evlist__reset_weak_group(evsel_list, counter);
468 				goto try_again;
469 			}
470 
471 			/*
472 			 * PPC returns ENXIO for HW counters until 2.6.37
473 			 * (behavior changed with commit b0a873e).
474 			 */
475 			if (errno == EINVAL || errno == ENOSYS ||
476 			    errno == ENOENT || errno == EOPNOTSUPP ||
477 			    errno == ENXIO) {
478 				if (verbose > 0)
479 					ui__warning("%s event is not supported by the kernel.\n",
480 						    perf_evsel__name(counter));
481 				counter->supported = false;
482 
483 				if ((counter->leader != counter) ||
484 				    !(counter->leader->core.nr_members > 1))
485 					continue;
486 			} else if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) {
487                                 if (verbose > 0)
488                                         ui__warning("%s\n", msg);
489                                 goto try_again;
490 			} else if (target__has_per_thread(&target) &&
491 				   evsel_list->core.threads &&
492 				   evsel_list->core.threads->err_thread != -1) {
493 				/*
494 				 * For global --per-thread case, skip current
495 				 * error thread.
496 				 */
497 				if (!thread_map__remove(evsel_list->core.threads,
498 							evsel_list->core.threads->err_thread)) {
499 					evsel_list->core.threads->err_thread = -1;
500 					goto try_again;
501 				}
502 			}
503 
504 			perf_evsel__open_strerror(counter, &target,
505 						  errno, msg, sizeof(msg));
506 			ui__error("%s\n", msg);
507 
508 			if (child_pid != -1)
509 				kill(child_pid, SIGTERM);
510 
511 			return -1;
512 		}
513 		counter->supported = true;
514 
515 		l = strlen(counter->unit);
516 		if (l > stat_config.unit_width)
517 			stat_config.unit_width = l;
518 
519 		if (perf_evsel__should_store_id(counter) &&
520 		    perf_evsel__store_ids(counter, evsel_list))
521 			return -1;
522 	}
523 
524 	if (perf_evlist__apply_filters(evsel_list, &counter)) {
525 		pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
526 			counter->filter, perf_evsel__name(counter), errno,
527 			str_error_r(errno, msg, sizeof(msg)));
528 		return -1;
529 	}
530 
531 	if (STAT_RECORD) {
532 		int err, fd = perf_data__fd(&perf_stat.data);
533 
534 		if (is_pipe) {
535 			err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
536 		} else {
537 			err = perf_session__write_header(perf_stat.session, evsel_list,
538 							 fd, false);
539 		}
540 
541 		if (err < 0)
542 			return err;
543 
544 		err = perf_stat_synthesize_config(&stat_config, NULL, evsel_list,
545 						  process_synthesized_event, is_pipe);
546 		if (err < 0)
547 			return err;
548 	}
549 
550 	/*
551 	 * Enable counters and exec the command:
552 	 */
553 	t0 = rdclock();
554 	clock_gettime(CLOCK_MONOTONIC, &ref_time);
555 
556 	if (forks) {
557 		perf_evlist__start_workload(evsel_list);
558 		enable_counters();
559 
560 		if (interval || timeout) {
561 			while (!waitpid(child_pid, &status, WNOHANG)) {
562 				nanosleep(&ts, NULL);
563 				if (timeout)
564 					break;
565 				process_interval();
566 				if (interval_count && !(--times))
567 					break;
568 			}
569 		}
570 		if (child_pid != -1)
571 			wait4(child_pid, &status, 0, &stat_config.ru_data);
572 
573 		if (workload_exec_errno) {
574 			const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
575 			pr_err("Workload failed: %s\n", emsg);
576 			return -1;
577 		}
578 
579 		if (WIFSIGNALED(status))
580 			psignal(WTERMSIG(status), argv[0]);
581 	} else {
582 		enable_counters();
583 		while (!done) {
584 			nanosleep(&ts, NULL);
585 			if (!is_target_alive(&target, evsel_list->core.threads))
586 				break;
587 			if (timeout)
588 				break;
589 			if (interval) {
590 				process_interval();
591 				if (interval_count && !(--times))
592 					break;
593 			}
594 		}
595 	}
596 
597 	disable_counters();
598 
599 	t1 = rdclock();
600 
601 	if (stat_config.walltime_run_table)
602 		stat_config.walltime_run[run_idx] = t1 - t0;
603 
604 	update_stats(&walltime_nsecs_stats, t1 - t0);
605 
606 	/*
607 	 * Closing a group leader splits the group, and as we only disable
608 	 * group leaders, results in remaining events becoming enabled. To
609 	 * avoid arbitrary skew, we must read all counters before closing any
610 	 * group leaders.
611 	 */
612 	read_counters(&(struct timespec) { .tv_nsec = t1-t0 });
613 
614 	/*
615 	 * We need to keep evsel_list alive, because it's processed
616 	 * later the evsel_list will be closed after.
617 	 */
618 	if (!STAT_RECORD)
619 		evlist__close(evsel_list);
620 
621 	return WEXITSTATUS(status);
622 }
623 
624 static int run_perf_stat(int argc, const char **argv, int run_idx)
625 {
626 	int ret;
627 
628 	if (pre_cmd) {
629 		ret = system(pre_cmd);
630 		if (ret)
631 			return ret;
632 	}
633 
634 	if (sync_run)
635 		sync();
636 
637 	ret = __run_perf_stat(argc, argv, run_idx);
638 	if (ret)
639 		return ret;
640 
641 	if (post_cmd) {
642 		ret = system(post_cmd);
643 		if (ret)
644 			return ret;
645 	}
646 
647 	return ret;
648 }
649 
650 static void print_counters(struct timespec *ts, int argc, const char **argv)
651 {
652 	/* Do not print anything if we record to the pipe. */
653 	if (STAT_RECORD && perf_stat.data.is_pipe)
654 		return;
655 
656 	perf_evlist__print_counters(evsel_list, &stat_config, &target,
657 				    ts, argc, argv);
658 }
659 
660 static volatile int signr = -1;
661 
662 static void skip_signal(int signo)
663 {
664 	if ((child_pid == -1) || stat_config.interval)
665 		done = 1;
666 
667 	signr = signo;
668 	/*
669 	 * render child_pid harmless
670 	 * won't send SIGTERM to a random
671 	 * process in case of race condition
672 	 * and fast PID recycling
673 	 */
674 	child_pid = -1;
675 }
676 
677 static void sig_atexit(void)
678 {
679 	sigset_t set, oset;
680 
681 	/*
682 	 * avoid race condition with SIGCHLD handler
683 	 * in skip_signal() which is modifying child_pid
684 	 * goal is to avoid send SIGTERM to a random
685 	 * process
686 	 */
687 	sigemptyset(&set);
688 	sigaddset(&set, SIGCHLD);
689 	sigprocmask(SIG_BLOCK, &set, &oset);
690 
691 	if (child_pid != -1)
692 		kill(child_pid, SIGTERM);
693 
694 	sigprocmask(SIG_SETMASK, &oset, NULL);
695 
696 	if (signr == -1)
697 		return;
698 
699 	signal(signr, SIG_DFL);
700 	kill(getpid(), signr);
701 }
702 
703 static int stat__set_big_num(const struct option *opt __maybe_unused,
704 			     const char *s __maybe_unused, int unset)
705 {
706 	big_num_opt = unset ? 0 : 1;
707 	return 0;
708 }
709 
710 static int enable_metric_only(const struct option *opt __maybe_unused,
711 			      const char *s __maybe_unused, int unset)
712 {
713 	force_metric_only = true;
714 	stat_config.metric_only = !unset;
715 	return 0;
716 }
717 
718 static int parse_metric_groups(const struct option *opt,
719 			       const char *str,
720 			       int unset __maybe_unused)
721 {
722 	return metricgroup__parse_groups(opt, str, &stat_config.metric_events);
723 }
724 
725 static struct option stat_options[] = {
726 	OPT_BOOLEAN('T', "transaction", &transaction_run,
727 		    "hardware transaction statistics"),
728 	OPT_CALLBACK('e', "event", &evsel_list, "event",
729 		     "event selector. use 'perf list' to list available events",
730 		     parse_events_option),
731 	OPT_CALLBACK(0, "filter", &evsel_list, "filter",
732 		     "event filter", parse_filter),
733 	OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit,
734 		    "child tasks do not inherit counters"),
735 	OPT_STRING('p', "pid", &target.pid, "pid",
736 		   "stat events on existing process id"),
737 	OPT_STRING('t', "tid", &target.tid, "tid",
738 		   "stat events on existing thread id"),
739 	OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
740 		    "system-wide collection from all CPUs"),
741 	OPT_BOOLEAN('g', "group", &group,
742 		    "put the counters into a counter group"),
743 	OPT_BOOLEAN(0, "scale", &stat_config.scale,
744 		    "Use --no-scale to disable counter scaling for multiplexing"),
745 	OPT_INCR('v', "verbose", &verbose,
746 		    "be more verbose (show counter open errors, etc)"),
747 	OPT_INTEGER('r', "repeat", &stat_config.run_count,
748 		    "repeat command and print average + stddev (max: 100, forever: 0)"),
749 	OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table,
750 		    "display details about each run (only with -r option)"),
751 	OPT_BOOLEAN('n', "null", &stat_config.null_run,
752 		    "null run - dont start any counters"),
753 	OPT_INCR('d', "detailed", &detailed_run,
754 		    "detailed run - start a lot of events"),
755 	OPT_BOOLEAN('S', "sync", &sync_run,
756 		    "call sync() before starting a run"),
757 	OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
758 			   "print large numbers with thousands\' separators",
759 			   stat__set_big_num),
760 	OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
761 		    "list of cpus to monitor in system-wide"),
762 	OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
763 		    "disable CPU count aggregation", AGGR_NONE),
764 	OPT_BOOLEAN(0, "no-merge", &stat_config.no_merge, "Do not merge identical named events"),
765 	OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator",
766 		   "print counts with custom separator"),
767 	OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
768 		     "monitor event in cgroup name only", parse_cgroups),
769 	OPT_STRING('o', "output", &output_name, "file", "output file name"),
770 	OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
771 	OPT_INTEGER(0, "log-fd", &output_fd,
772 		    "log output to fd, instead of stderr"),
773 	OPT_STRING(0, "pre", &pre_cmd, "command",
774 			"command to run prior to the measured command"),
775 	OPT_STRING(0, "post", &post_cmd, "command",
776 			"command to run after to the measured command"),
777 	OPT_UINTEGER('I', "interval-print", &stat_config.interval,
778 		    "print counts at regular interval in ms "
779 		    "(overhead is possible for values <= 100ms)"),
780 	OPT_INTEGER(0, "interval-count", &stat_config.times,
781 		    "print counts for fixed number of times"),
782 	OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear,
783 		    "clear screen in between new interval"),
784 	OPT_UINTEGER(0, "timeout", &stat_config.timeout,
785 		    "stop workload and print counts after a timeout period in ms (>= 10ms)"),
786 	OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
787 		     "aggregate counts per processor socket", AGGR_SOCKET),
788 	OPT_SET_UINT(0, "per-die", &stat_config.aggr_mode,
789 		     "aggregate counts per processor die", AGGR_DIE),
790 	OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
791 		     "aggregate counts per physical processor core", AGGR_CORE),
792 	OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
793 		     "aggregate counts per thread", AGGR_THREAD),
794 	OPT_UINTEGER('D', "delay", &stat_config.initial_delay,
795 		     "ms to wait before starting measurement after program start"),
796 	OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL,
797 			"Only print computed metrics. No raw values", enable_metric_only),
798 	OPT_BOOLEAN(0, "topdown", &topdown_run,
799 			"measure topdown level 1 statistics"),
800 	OPT_BOOLEAN(0, "smi-cost", &smi_cost,
801 			"measure SMI cost"),
802 	OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
803 		     "monitor specified metrics or metric groups (separated by ,)",
804 		     parse_metric_groups),
805 	OPT_END()
806 };
807 
808 static int perf_stat__get_socket(struct perf_stat_config *config __maybe_unused,
809 				 struct perf_cpu_map *map, int cpu)
810 {
811 	return cpu_map__get_socket(map, cpu, NULL);
812 }
813 
814 static int perf_stat__get_die(struct perf_stat_config *config __maybe_unused,
815 			      struct perf_cpu_map *map, int cpu)
816 {
817 	return cpu_map__get_die(map, cpu, NULL);
818 }
819 
820 static int perf_stat__get_core(struct perf_stat_config *config __maybe_unused,
821 			       struct perf_cpu_map *map, int cpu)
822 {
823 	return cpu_map__get_core(map, cpu, NULL);
824 }
825 
826 static int cpu_map__get_max(struct perf_cpu_map *map)
827 {
828 	int i, max = -1;
829 
830 	for (i = 0; i < map->nr; i++) {
831 		if (map->map[i] > max)
832 			max = map->map[i];
833 	}
834 
835 	return max;
836 }
837 
838 static int perf_stat__get_aggr(struct perf_stat_config *config,
839 			       aggr_get_id_t get_id, struct perf_cpu_map *map, int idx)
840 {
841 	int cpu;
842 
843 	if (idx >= map->nr)
844 		return -1;
845 
846 	cpu = map->map[idx];
847 
848 	if (config->cpus_aggr_map->map[cpu] == -1)
849 		config->cpus_aggr_map->map[cpu] = get_id(config, map, idx);
850 
851 	return config->cpus_aggr_map->map[cpu];
852 }
853 
854 static int perf_stat__get_socket_cached(struct perf_stat_config *config,
855 					struct perf_cpu_map *map, int idx)
856 {
857 	return perf_stat__get_aggr(config, perf_stat__get_socket, map, idx);
858 }
859 
860 static int perf_stat__get_die_cached(struct perf_stat_config *config,
861 					struct perf_cpu_map *map, int idx)
862 {
863 	return perf_stat__get_aggr(config, perf_stat__get_die, map, idx);
864 }
865 
866 static int perf_stat__get_core_cached(struct perf_stat_config *config,
867 				      struct perf_cpu_map *map, int idx)
868 {
869 	return perf_stat__get_aggr(config, perf_stat__get_core, map, idx);
870 }
871 
872 static bool term_percore_set(void)
873 {
874 	struct evsel *counter;
875 
876 	evlist__for_each_entry(evsel_list, counter) {
877 		if (counter->percore)
878 			return true;
879 	}
880 
881 	return false;
882 }
883 
884 static int perf_stat_init_aggr_mode(void)
885 {
886 	int nr;
887 
888 	switch (stat_config.aggr_mode) {
889 	case AGGR_SOCKET:
890 		if (cpu_map__build_socket_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
891 			perror("cannot build socket map");
892 			return -1;
893 		}
894 		stat_config.aggr_get_id = perf_stat__get_socket_cached;
895 		break;
896 	case AGGR_DIE:
897 		if (cpu_map__build_die_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
898 			perror("cannot build die map");
899 			return -1;
900 		}
901 		stat_config.aggr_get_id = perf_stat__get_die_cached;
902 		break;
903 	case AGGR_CORE:
904 		if (cpu_map__build_core_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
905 			perror("cannot build core map");
906 			return -1;
907 		}
908 		stat_config.aggr_get_id = perf_stat__get_core_cached;
909 		break;
910 	case AGGR_NONE:
911 		if (term_percore_set()) {
912 			if (cpu_map__build_core_map(evsel_list->core.cpus,
913 						    &stat_config.aggr_map)) {
914 				perror("cannot build core map");
915 				return -1;
916 			}
917 			stat_config.aggr_get_id = perf_stat__get_core_cached;
918 		}
919 		break;
920 	case AGGR_GLOBAL:
921 	case AGGR_THREAD:
922 	case AGGR_UNSET:
923 	default:
924 		break;
925 	}
926 
927 	/*
928 	 * The evsel_list->cpus is the base we operate on,
929 	 * taking the highest cpu number to be the size of
930 	 * the aggregation translate cpumap.
931 	 */
932 	nr = cpu_map__get_max(evsel_list->core.cpus);
933 	stat_config.cpus_aggr_map = perf_cpu_map__empty_new(nr + 1);
934 	return stat_config.cpus_aggr_map ? 0 : -ENOMEM;
935 }
936 
937 static void perf_stat__exit_aggr_mode(void)
938 {
939 	perf_cpu_map__put(stat_config.aggr_map);
940 	perf_cpu_map__put(stat_config.cpus_aggr_map);
941 	stat_config.aggr_map = NULL;
942 	stat_config.cpus_aggr_map = NULL;
943 }
944 
945 static inline int perf_env__get_cpu(struct perf_env *env, struct perf_cpu_map *map, int idx)
946 {
947 	int cpu;
948 
949 	if (idx > map->nr)
950 		return -1;
951 
952 	cpu = map->map[idx];
953 
954 	if (cpu >= env->nr_cpus_avail)
955 		return -1;
956 
957 	return cpu;
958 }
959 
960 static int perf_env__get_socket(struct perf_cpu_map *map, int idx, void *data)
961 {
962 	struct perf_env *env = data;
963 	int cpu = perf_env__get_cpu(env, map, idx);
964 
965 	return cpu == -1 ? -1 : env->cpu[cpu].socket_id;
966 }
967 
968 static int perf_env__get_die(struct perf_cpu_map *map, int idx, void *data)
969 {
970 	struct perf_env *env = data;
971 	int die_id = -1, cpu = perf_env__get_cpu(env, map, idx);
972 
973 	if (cpu != -1) {
974 		/*
975 		 * Encode socket in bit range 15:8
976 		 * die_id is relative to socket,
977 		 * we need a global id. So we combine
978 		 * socket + die id
979 		 */
980 		if (WARN_ONCE(env->cpu[cpu].socket_id >> 8, "The socket id number is too big.\n"))
981 			return -1;
982 
983 		if (WARN_ONCE(env->cpu[cpu].die_id >> 8, "The die id number is too big.\n"))
984 			return -1;
985 
986 		die_id = (env->cpu[cpu].socket_id << 8) | (env->cpu[cpu].die_id & 0xff);
987 	}
988 
989 	return die_id;
990 }
991 
992 static int perf_env__get_core(struct perf_cpu_map *map, int idx, void *data)
993 {
994 	struct perf_env *env = data;
995 	int core = -1, cpu = perf_env__get_cpu(env, map, idx);
996 
997 	if (cpu != -1) {
998 		/*
999 		 * Encode socket in bit range 31:24
1000 		 * encode die id in bit range 23:16
1001 		 * core_id is relative to socket and die,
1002 		 * we need a global id. So we combine
1003 		 * socket + die id + core id
1004 		 */
1005 		if (WARN_ONCE(env->cpu[cpu].socket_id >> 8, "The socket id number is too big.\n"))
1006 			return -1;
1007 
1008 		if (WARN_ONCE(env->cpu[cpu].die_id >> 8, "The die id number is too big.\n"))
1009 			return -1;
1010 
1011 		if (WARN_ONCE(env->cpu[cpu].core_id >> 16, "The core id number is too big.\n"))
1012 			return -1;
1013 
1014 		core = (env->cpu[cpu].socket_id << 24) |
1015 		       (env->cpu[cpu].die_id << 16) |
1016 		       (env->cpu[cpu].core_id & 0xffff);
1017 	}
1018 
1019 	return core;
1020 }
1021 
1022 static int perf_env__build_socket_map(struct perf_env *env, struct perf_cpu_map *cpus,
1023 				      struct perf_cpu_map **sockp)
1024 {
1025 	return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
1026 }
1027 
1028 static int perf_env__build_die_map(struct perf_env *env, struct perf_cpu_map *cpus,
1029 				   struct perf_cpu_map **diep)
1030 {
1031 	return cpu_map__build_map(cpus, diep, perf_env__get_die, env);
1032 }
1033 
1034 static int perf_env__build_core_map(struct perf_env *env, struct perf_cpu_map *cpus,
1035 				    struct perf_cpu_map **corep)
1036 {
1037 	return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
1038 }
1039 
1040 static int perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused,
1041 				      struct perf_cpu_map *map, int idx)
1042 {
1043 	return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
1044 }
1045 static int perf_stat__get_die_file(struct perf_stat_config *config __maybe_unused,
1046 				   struct perf_cpu_map *map, int idx)
1047 {
1048 	return perf_env__get_die(map, idx, &perf_stat.session->header.env);
1049 }
1050 
1051 static int perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused,
1052 				    struct perf_cpu_map *map, int idx)
1053 {
1054 	return perf_env__get_core(map, idx, &perf_stat.session->header.env);
1055 }
1056 
1057 static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
1058 {
1059 	struct perf_env *env = &st->session->header.env;
1060 
1061 	switch (stat_config.aggr_mode) {
1062 	case AGGR_SOCKET:
1063 		if (perf_env__build_socket_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
1064 			perror("cannot build socket map");
1065 			return -1;
1066 		}
1067 		stat_config.aggr_get_id = perf_stat__get_socket_file;
1068 		break;
1069 	case AGGR_DIE:
1070 		if (perf_env__build_die_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
1071 			perror("cannot build die map");
1072 			return -1;
1073 		}
1074 		stat_config.aggr_get_id = perf_stat__get_die_file;
1075 		break;
1076 	case AGGR_CORE:
1077 		if (perf_env__build_core_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
1078 			perror("cannot build core map");
1079 			return -1;
1080 		}
1081 		stat_config.aggr_get_id = perf_stat__get_core_file;
1082 		break;
1083 	case AGGR_NONE:
1084 	case AGGR_GLOBAL:
1085 	case AGGR_THREAD:
1086 	case AGGR_UNSET:
1087 	default:
1088 		break;
1089 	}
1090 
1091 	return 0;
1092 }
1093 
1094 static int topdown_filter_events(const char **attr, char **str, bool use_group)
1095 {
1096 	int off = 0;
1097 	int i;
1098 	int len = 0;
1099 	char *s;
1100 
1101 	for (i = 0; attr[i]; i++) {
1102 		if (pmu_have_event("cpu", attr[i])) {
1103 			len += strlen(attr[i]) + 1;
1104 			attr[i - off] = attr[i];
1105 		} else
1106 			off++;
1107 	}
1108 	attr[i - off] = NULL;
1109 
1110 	*str = malloc(len + 1 + 2);
1111 	if (!*str)
1112 		return -1;
1113 	s = *str;
1114 	if (i - off == 0) {
1115 		*s = 0;
1116 		return 0;
1117 	}
1118 	if (use_group)
1119 		*s++ = '{';
1120 	for (i = 0; attr[i]; i++) {
1121 		strcpy(s, attr[i]);
1122 		s += strlen(s);
1123 		*s++ = ',';
1124 	}
1125 	if (use_group) {
1126 		s[-1] = '}';
1127 		*s = 0;
1128 	} else
1129 		s[-1] = 0;
1130 	return 0;
1131 }
1132 
1133 __weak bool arch_topdown_check_group(bool *warn)
1134 {
1135 	*warn = false;
1136 	return false;
1137 }
1138 
1139 __weak void arch_topdown_group_warn(void)
1140 {
1141 }
1142 
1143 /*
1144  * Add default attributes, if there were no attributes specified or
1145  * if -d/--detailed, -d -d or -d -d -d is used:
1146  */
1147 static int add_default_attributes(void)
1148 {
1149 	int err;
1150 	struct perf_event_attr default_attrs0[] = {
1151 
1152   { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK		},
1153   { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES	},
1154   { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS		},
1155   { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS		},
1156 
1157   { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES		},
1158 };
1159 	struct perf_event_attr frontend_attrs[] = {
1160   { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND	},
1161 };
1162 	struct perf_event_attr backend_attrs[] = {
1163   { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND	},
1164 };
1165 	struct perf_event_attr default_attrs1[] = {
1166   { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS		},
1167   { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS	},
1168   { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES		},
1169 
1170 };
1171 
1172 /*
1173  * Detailed stats (-d), covering the L1 and last level data caches:
1174  */
1175 	struct perf_event_attr detailed_attrs[] = {
1176 
1177   { .type = PERF_TYPE_HW_CACHE,
1178     .config =
1179 	 PERF_COUNT_HW_CACHE_L1D		<<  0  |
1180 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1181 	(PERF_COUNT_HW_CACHE_RESULT_ACCESS	<< 16)				},
1182 
1183   { .type = PERF_TYPE_HW_CACHE,
1184     .config =
1185 	 PERF_COUNT_HW_CACHE_L1D		<<  0  |
1186 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1187 	(PERF_COUNT_HW_CACHE_RESULT_MISS	<< 16)				},
1188 
1189   { .type = PERF_TYPE_HW_CACHE,
1190     .config =
1191 	 PERF_COUNT_HW_CACHE_LL			<<  0  |
1192 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1193 	(PERF_COUNT_HW_CACHE_RESULT_ACCESS	<< 16)				},
1194 
1195   { .type = PERF_TYPE_HW_CACHE,
1196     .config =
1197 	 PERF_COUNT_HW_CACHE_LL			<<  0  |
1198 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1199 	(PERF_COUNT_HW_CACHE_RESULT_MISS	<< 16)				},
1200 };
1201 
1202 /*
1203  * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1204  */
1205 	struct perf_event_attr very_detailed_attrs[] = {
1206 
1207   { .type = PERF_TYPE_HW_CACHE,
1208     .config =
1209 	 PERF_COUNT_HW_CACHE_L1I		<<  0  |
1210 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1211 	(PERF_COUNT_HW_CACHE_RESULT_ACCESS	<< 16)				},
1212 
1213   { .type = PERF_TYPE_HW_CACHE,
1214     .config =
1215 	 PERF_COUNT_HW_CACHE_L1I		<<  0  |
1216 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1217 	(PERF_COUNT_HW_CACHE_RESULT_MISS	<< 16)				},
1218 
1219   { .type = PERF_TYPE_HW_CACHE,
1220     .config =
1221 	 PERF_COUNT_HW_CACHE_DTLB		<<  0  |
1222 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1223 	(PERF_COUNT_HW_CACHE_RESULT_ACCESS	<< 16)				},
1224 
1225   { .type = PERF_TYPE_HW_CACHE,
1226     .config =
1227 	 PERF_COUNT_HW_CACHE_DTLB		<<  0  |
1228 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1229 	(PERF_COUNT_HW_CACHE_RESULT_MISS	<< 16)				},
1230 
1231   { .type = PERF_TYPE_HW_CACHE,
1232     .config =
1233 	 PERF_COUNT_HW_CACHE_ITLB		<<  0  |
1234 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1235 	(PERF_COUNT_HW_CACHE_RESULT_ACCESS	<< 16)				},
1236 
1237   { .type = PERF_TYPE_HW_CACHE,
1238     .config =
1239 	 PERF_COUNT_HW_CACHE_ITLB		<<  0  |
1240 	(PERF_COUNT_HW_CACHE_OP_READ		<<  8) |
1241 	(PERF_COUNT_HW_CACHE_RESULT_MISS	<< 16)				},
1242 
1243 };
1244 
1245 /*
1246  * Very, very detailed stats (-d -d -d), adding prefetch events:
1247  */
1248 	struct perf_event_attr very_very_detailed_attrs[] = {
1249 
1250   { .type = PERF_TYPE_HW_CACHE,
1251     .config =
1252 	 PERF_COUNT_HW_CACHE_L1D		<<  0  |
1253 	(PERF_COUNT_HW_CACHE_OP_PREFETCH	<<  8) |
1254 	(PERF_COUNT_HW_CACHE_RESULT_ACCESS	<< 16)				},
1255 
1256   { .type = PERF_TYPE_HW_CACHE,
1257     .config =
1258 	 PERF_COUNT_HW_CACHE_L1D		<<  0  |
1259 	(PERF_COUNT_HW_CACHE_OP_PREFETCH	<<  8) |
1260 	(PERF_COUNT_HW_CACHE_RESULT_MISS	<< 16)				},
1261 };
1262 	struct parse_events_error errinfo;
1263 
1264 	/* Set attrs if no event is selected and !null_run: */
1265 	if (stat_config.null_run)
1266 		return 0;
1267 
1268 	if (transaction_run) {
1269 		/* Handle -T as -M transaction. Once platform specific metrics
1270 		 * support has been added to the json files, all archictures
1271 		 * will use this approach. To determine transaction support
1272 		 * on an architecture test for such a metric name.
1273 		 */
1274 		if (metricgroup__has_metric("transaction")) {
1275 			struct option opt = { .value = &evsel_list };
1276 
1277 			return metricgroup__parse_groups(&opt, "transaction",
1278 							 &stat_config.metric_events);
1279 		}
1280 
1281 		if (pmu_have_event("cpu", "cycles-ct") &&
1282 		    pmu_have_event("cpu", "el-start"))
1283 			err = parse_events(evsel_list, transaction_attrs,
1284 					   &errinfo);
1285 		else
1286 			err = parse_events(evsel_list,
1287 					   transaction_limited_attrs,
1288 					   &errinfo);
1289 		if (err) {
1290 			fprintf(stderr, "Cannot set up transaction events\n");
1291 			parse_events_print_error(&errinfo, transaction_attrs);
1292 			return -1;
1293 		}
1294 		return 0;
1295 	}
1296 
1297 	if (smi_cost) {
1298 		int smi;
1299 
1300 		if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
1301 			fprintf(stderr, "freeze_on_smi is not supported.\n");
1302 			return -1;
1303 		}
1304 
1305 		if (!smi) {
1306 			if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
1307 				fprintf(stderr, "Failed to set freeze_on_smi.\n");
1308 				return -1;
1309 			}
1310 			smi_reset = true;
1311 		}
1312 
1313 		if (pmu_have_event("msr", "aperf") &&
1314 		    pmu_have_event("msr", "smi")) {
1315 			if (!force_metric_only)
1316 				stat_config.metric_only = true;
1317 			err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
1318 		} else {
1319 			fprintf(stderr, "To measure SMI cost, it needs "
1320 				"msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
1321 			parse_events_print_error(&errinfo, smi_cost_attrs);
1322 			return -1;
1323 		}
1324 		if (err) {
1325 			fprintf(stderr, "Cannot set up SMI cost events\n");
1326 			return -1;
1327 		}
1328 		return 0;
1329 	}
1330 
1331 	if (topdown_run) {
1332 		char *str = NULL;
1333 		bool warn = false;
1334 
1335 		if (stat_config.aggr_mode != AGGR_GLOBAL &&
1336 		    stat_config.aggr_mode != AGGR_CORE) {
1337 			pr_err("top down event configuration requires --per-core mode\n");
1338 			return -1;
1339 		}
1340 		stat_config.aggr_mode = AGGR_CORE;
1341 		if (nr_cgroups || !target__has_cpu(&target)) {
1342 			pr_err("top down event configuration requires system-wide mode (-a)\n");
1343 			return -1;
1344 		}
1345 
1346 		if (!force_metric_only)
1347 			stat_config.metric_only = true;
1348 		if (topdown_filter_events(topdown_attrs, &str,
1349 				arch_topdown_check_group(&warn)) < 0) {
1350 			pr_err("Out of memory\n");
1351 			return -1;
1352 		}
1353 		if (topdown_attrs[0] && str) {
1354 			if (warn)
1355 				arch_topdown_group_warn();
1356 			err = parse_events(evsel_list, str, &errinfo);
1357 			if (err) {
1358 				fprintf(stderr,
1359 					"Cannot set up top down events %s: %d\n",
1360 					str, err);
1361 				parse_events_print_error(&errinfo, str);
1362 				free(str);
1363 				return -1;
1364 			}
1365 		} else {
1366 			fprintf(stderr, "System does not support topdown\n");
1367 			return -1;
1368 		}
1369 		free(str);
1370 	}
1371 
1372 	if (!evsel_list->core.nr_entries) {
1373 		if (target__has_cpu(&target))
1374 			default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
1375 
1376 		if (perf_evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
1377 			return -1;
1378 		if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
1379 			if (perf_evlist__add_default_attrs(evsel_list,
1380 						frontend_attrs) < 0)
1381 				return -1;
1382 		}
1383 		if (pmu_have_event("cpu", "stalled-cycles-backend")) {
1384 			if (perf_evlist__add_default_attrs(evsel_list,
1385 						backend_attrs) < 0)
1386 				return -1;
1387 		}
1388 		if (perf_evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
1389 			return -1;
1390 	}
1391 
1392 	/* Detailed events get appended to the event list: */
1393 
1394 	if (detailed_run <  1)
1395 		return 0;
1396 
1397 	/* Append detailed run extra attributes: */
1398 	if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
1399 		return -1;
1400 
1401 	if (detailed_run < 2)
1402 		return 0;
1403 
1404 	/* Append very detailed run extra attributes: */
1405 	if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
1406 		return -1;
1407 
1408 	if (detailed_run < 3)
1409 		return 0;
1410 
1411 	/* Append very, very detailed run extra attributes: */
1412 	return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
1413 }
1414 
1415 static const char * const stat_record_usage[] = {
1416 	"perf stat record [<options>]",
1417 	NULL,
1418 };
1419 
1420 static void init_features(struct perf_session *session)
1421 {
1422 	int feat;
1423 
1424 	for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
1425 		perf_header__set_feat(&session->header, feat);
1426 
1427 	perf_header__clear_feat(&session->header, HEADER_DIR_FORMAT);
1428 	perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
1429 	perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
1430 	perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
1431 	perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
1432 }
1433 
1434 static int __cmd_record(int argc, const char **argv)
1435 {
1436 	struct perf_session *session;
1437 	struct perf_data *data = &perf_stat.data;
1438 
1439 	argc = parse_options(argc, argv, stat_options, stat_record_usage,
1440 			     PARSE_OPT_STOP_AT_NON_OPTION);
1441 
1442 	if (output_name)
1443 		data->path = output_name;
1444 
1445 	if (stat_config.run_count != 1 || forever) {
1446 		pr_err("Cannot use -r option with perf stat record.\n");
1447 		return -1;
1448 	}
1449 
1450 	session = perf_session__new(data, false, NULL);
1451 	if (session == NULL) {
1452 		pr_err("Perf session creation failed.\n");
1453 		return -1;
1454 	}
1455 
1456 	init_features(session);
1457 
1458 	session->evlist   = evsel_list;
1459 	perf_stat.session = session;
1460 	perf_stat.record  = true;
1461 	return argc;
1462 }
1463 
1464 static int process_stat_round_event(struct perf_session *session,
1465 				    union perf_event *event)
1466 {
1467 	struct perf_record_stat_round *stat_round = &event->stat_round;
1468 	struct evsel *counter;
1469 	struct timespec tsh, *ts = NULL;
1470 	const char **argv = session->header.env.cmdline_argv;
1471 	int argc = session->header.env.nr_cmdline;
1472 
1473 	evlist__for_each_entry(evsel_list, counter)
1474 		perf_stat_process_counter(&stat_config, counter);
1475 
1476 	if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
1477 		update_stats(&walltime_nsecs_stats, stat_round->time);
1478 
1479 	if (stat_config.interval && stat_round->time) {
1480 		tsh.tv_sec  = stat_round->time / NSEC_PER_SEC;
1481 		tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
1482 		ts = &tsh;
1483 	}
1484 
1485 	print_counters(ts, argc, argv);
1486 	return 0;
1487 }
1488 
1489 static
1490 int process_stat_config_event(struct perf_session *session,
1491 			      union perf_event *event)
1492 {
1493 	struct perf_tool *tool = session->tool;
1494 	struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1495 
1496 	perf_event__read_stat_config(&stat_config, &event->stat_config);
1497 
1498 	if (perf_cpu_map__empty(st->cpus)) {
1499 		if (st->aggr_mode != AGGR_UNSET)
1500 			pr_warning("warning: processing task data, aggregation mode not set\n");
1501 		return 0;
1502 	}
1503 
1504 	if (st->aggr_mode != AGGR_UNSET)
1505 		stat_config.aggr_mode = st->aggr_mode;
1506 
1507 	if (perf_stat.data.is_pipe)
1508 		perf_stat_init_aggr_mode();
1509 	else
1510 		perf_stat_init_aggr_mode_file(st);
1511 
1512 	return 0;
1513 }
1514 
1515 static int set_maps(struct perf_stat *st)
1516 {
1517 	if (!st->cpus || !st->threads)
1518 		return 0;
1519 
1520 	if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
1521 		return -EINVAL;
1522 
1523 	perf_evlist__set_maps(&evsel_list->core, st->cpus, st->threads);
1524 
1525 	if (perf_evlist__alloc_stats(evsel_list, true))
1526 		return -ENOMEM;
1527 
1528 	st->maps_allocated = true;
1529 	return 0;
1530 }
1531 
1532 static
1533 int process_thread_map_event(struct perf_session *session,
1534 			     union perf_event *event)
1535 {
1536 	struct perf_tool *tool = session->tool;
1537 	struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1538 
1539 	if (st->threads) {
1540 		pr_warning("Extra thread map event, ignoring.\n");
1541 		return 0;
1542 	}
1543 
1544 	st->threads = thread_map__new_event(&event->thread_map);
1545 	if (!st->threads)
1546 		return -ENOMEM;
1547 
1548 	return set_maps(st);
1549 }
1550 
1551 static
1552 int process_cpu_map_event(struct perf_session *session,
1553 			  union perf_event *event)
1554 {
1555 	struct perf_tool *tool = session->tool;
1556 	struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1557 	struct perf_cpu_map *cpus;
1558 
1559 	if (st->cpus) {
1560 		pr_warning("Extra cpu map event, ignoring.\n");
1561 		return 0;
1562 	}
1563 
1564 	cpus = cpu_map__new_data(&event->cpu_map.data);
1565 	if (!cpus)
1566 		return -ENOMEM;
1567 
1568 	st->cpus = cpus;
1569 	return set_maps(st);
1570 }
1571 
1572 static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
1573 {
1574 	int i;
1575 
1576 	config->stats = calloc(nthreads, sizeof(struct runtime_stat));
1577 	if (!config->stats)
1578 		return -1;
1579 
1580 	config->stats_num = nthreads;
1581 
1582 	for (i = 0; i < nthreads; i++)
1583 		runtime_stat__init(&config->stats[i]);
1584 
1585 	return 0;
1586 }
1587 
1588 static void runtime_stat_delete(struct perf_stat_config *config)
1589 {
1590 	int i;
1591 
1592 	if (!config->stats)
1593 		return;
1594 
1595 	for (i = 0; i < config->stats_num; i++)
1596 		runtime_stat__exit(&config->stats[i]);
1597 
1598 	zfree(&config->stats);
1599 }
1600 
1601 static const char * const stat_report_usage[] = {
1602 	"perf stat report [<options>]",
1603 	NULL,
1604 };
1605 
1606 static struct perf_stat perf_stat = {
1607 	.tool = {
1608 		.attr		= perf_event__process_attr,
1609 		.event_update	= perf_event__process_event_update,
1610 		.thread_map	= process_thread_map_event,
1611 		.cpu_map	= process_cpu_map_event,
1612 		.stat_config	= process_stat_config_event,
1613 		.stat		= perf_event__process_stat_event,
1614 		.stat_round	= process_stat_round_event,
1615 	},
1616 	.aggr_mode = AGGR_UNSET,
1617 };
1618 
1619 static int __cmd_report(int argc, const char **argv)
1620 {
1621 	struct perf_session *session;
1622 	const struct option options[] = {
1623 	OPT_STRING('i', "input", &input_name, "file", "input file name"),
1624 	OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
1625 		     "aggregate counts per processor socket", AGGR_SOCKET),
1626 	OPT_SET_UINT(0, "per-die", &perf_stat.aggr_mode,
1627 		     "aggregate counts per processor die", AGGR_DIE),
1628 	OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
1629 		     "aggregate counts per physical processor core", AGGR_CORE),
1630 	OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
1631 		     "disable CPU count aggregation", AGGR_NONE),
1632 	OPT_END()
1633 	};
1634 	struct stat st;
1635 	int ret;
1636 
1637 	argc = parse_options(argc, argv, options, stat_report_usage, 0);
1638 
1639 	if (!input_name || !strlen(input_name)) {
1640 		if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
1641 			input_name = "-";
1642 		else
1643 			input_name = "perf.data";
1644 	}
1645 
1646 	perf_stat.data.path = input_name;
1647 	perf_stat.data.mode = PERF_DATA_MODE_READ;
1648 
1649 	session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
1650 	if (session == NULL)
1651 		return -1;
1652 
1653 	perf_stat.session  = session;
1654 	stat_config.output = stderr;
1655 	evsel_list         = session->evlist;
1656 
1657 	ret = perf_session__process_events(session);
1658 	if (ret)
1659 		return ret;
1660 
1661 	perf_session__delete(session);
1662 	return 0;
1663 }
1664 
1665 static void setup_system_wide(int forks)
1666 {
1667 	/*
1668 	 * Make system wide (-a) the default target if
1669 	 * no target was specified and one of following
1670 	 * conditions is met:
1671 	 *
1672 	 *   - there's no workload specified
1673 	 *   - there is workload specified but all requested
1674 	 *     events are system wide events
1675 	 */
1676 	if (!target__none(&target))
1677 		return;
1678 
1679 	if (!forks)
1680 		target.system_wide = true;
1681 	else {
1682 		struct evsel *counter;
1683 
1684 		evlist__for_each_entry(evsel_list, counter) {
1685 			if (!counter->system_wide)
1686 				return;
1687 		}
1688 
1689 		if (evsel_list->core.nr_entries)
1690 			target.system_wide = true;
1691 	}
1692 }
1693 
1694 int cmd_stat(int argc, const char **argv)
1695 {
1696 	const char * const stat_usage[] = {
1697 		"perf stat [<options>] [<command>]",
1698 		NULL
1699 	};
1700 	int status = -EINVAL, run_idx;
1701 	const char *mode;
1702 	FILE *output = stderr;
1703 	unsigned int interval, timeout;
1704 	const char * const stat_subcommands[] = { "record", "report" };
1705 
1706 	setlocale(LC_ALL, "");
1707 
1708 	evsel_list = evlist__new();
1709 	if (evsel_list == NULL)
1710 		return -ENOMEM;
1711 
1712 	parse_events__shrink_config_terms();
1713 
1714 	/* String-parsing callback-based options would segfault when negated */
1715 	set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG);
1716 	set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG);
1717 	set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG);
1718 
1719 	argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
1720 					(const char **) stat_usage,
1721 					PARSE_OPT_STOP_AT_NON_OPTION);
1722 	perf_stat__collect_metric_expr(evsel_list);
1723 	perf_stat__init_shadow_stats();
1724 
1725 	if (stat_config.csv_sep) {
1726 		stat_config.csv_output = true;
1727 		if (!strcmp(stat_config.csv_sep, "\\t"))
1728 			stat_config.csv_sep = "\t";
1729 	} else
1730 		stat_config.csv_sep = DEFAULT_SEPARATOR;
1731 
1732 	if (argc && !strncmp(argv[0], "rec", 3)) {
1733 		argc = __cmd_record(argc, argv);
1734 		if (argc < 0)
1735 			return -1;
1736 	} else if (argc && !strncmp(argv[0], "rep", 3))
1737 		return __cmd_report(argc, argv);
1738 
1739 	interval = stat_config.interval;
1740 	timeout = stat_config.timeout;
1741 
1742 	/*
1743 	 * For record command the -o is already taken care of.
1744 	 */
1745 	if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
1746 		output = NULL;
1747 
1748 	if (output_name && output_fd) {
1749 		fprintf(stderr, "cannot use both --output and --log-fd\n");
1750 		parse_options_usage(stat_usage, stat_options, "o", 1);
1751 		parse_options_usage(NULL, stat_options, "log-fd", 0);
1752 		goto out;
1753 	}
1754 
1755 	if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) {
1756 		fprintf(stderr, "--metric-only is not supported with --per-thread\n");
1757 		goto out;
1758 	}
1759 
1760 	if (stat_config.metric_only && stat_config.run_count > 1) {
1761 		fprintf(stderr, "--metric-only is not supported with -r\n");
1762 		goto out;
1763 	}
1764 
1765 	if (stat_config.walltime_run_table && stat_config.run_count <= 1) {
1766 		fprintf(stderr, "--table is only supported with -r\n");
1767 		parse_options_usage(stat_usage, stat_options, "r", 1);
1768 		parse_options_usage(NULL, stat_options, "table", 0);
1769 		goto out;
1770 	}
1771 
1772 	if (output_fd < 0) {
1773 		fprintf(stderr, "argument to --log-fd must be a > 0\n");
1774 		parse_options_usage(stat_usage, stat_options, "log-fd", 0);
1775 		goto out;
1776 	}
1777 
1778 	if (!output) {
1779 		struct timespec tm;
1780 		mode = append_file ? "a" : "w";
1781 
1782 		output = fopen(output_name, mode);
1783 		if (!output) {
1784 			perror("failed to create output file");
1785 			return -1;
1786 		}
1787 		clock_gettime(CLOCK_REALTIME, &tm);
1788 		fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
1789 	} else if (output_fd > 0) {
1790 		mode = append_file ? "a" : "w";
1791 		output = fdopen(output_fd, mode);
1792 		if (!output) {
1793 			perror("Failed opening logfd");
1794 			return -errno;
1795 		}
1796 	}
1797 
1798 	stat_config.output = output;
1799 
1800 	/*
1801 	 * let the spreadsheet do the pretty-printing
1802 	 */
1803 	if (stat_config.csv_output) {
1804 		/* User explicitly passed -B? */
1805 		if (big_num_opt == 1) {
1806 			fprintf(stderr, "-B option not supported with -x\n");
1807 			parse_options_usage(stat_usage, stat_options, "B", 1);
1808 			parse_options_usage(NULL, stat_options, "x", 1);
1809 			goto out;
1810 		} else /* Nope, so disable big number formatting */
1811 			stat_config.big_num = false;
1812 	} else if (big_num_opt == 0) /* User passed --no-big-num */
1813 		stat_config.big_num = false;
1814 
1815 	setup_system_wide(argc);
1816 
1817 	/*
1818 	 * Display user/system times only for single
1819 	 * run and when there's specified tracee.
1820 	 */
1821 	if ((stat_config.run_count == 1) && target__none(&target))
1822 		stat_config.ru_display = true;
1823 
1824 	if (stat_config.run_count < 0) {
1825 		pr_err("Run count must be a positive number\n");
1826 		parse_options_usage(stat_usage, stat_options, "r", 1);
1827 		goto out;
1828 	} else if (stat_config.run_count == 0) {
1829 		forever = true;
1830 		stat_config.run_count = 1;
1831 	}
1832 
1833 	if (stat_config.walltime_run_table) {
1834 		stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0]));
1835 		if (!stat_config.walltime_run) {
1836 			pr_err("failed to setup -r option");
1837 			goto out;
1838 		}
1839 	}
1840 
1841 	if ((stat_config.aggr_mode == AGGR_THREAD) &&
1842 		!target__has_task(&target)) {
1843 		if (!target.system_wide || target.cpu_list) {
1844 			fprintf(stderr, "The --per-thread option is only "
1845 				"available when monitoring via -p -t -a "
1846 				"options or only --per-thread.\n");
1847 			parse_options_usage(NULL, stat_options, "p", 1);
1848 			parse_options_usage(NULL, stat_options, "t", 1);
1849 			goto out;
1850 		}
1851 	}
1852 
1853 	/*
1854 	 * no_aggr, cgroup are for system-wide only
1855 	 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1856 	 */
1857 	if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1858 	      stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
1859 	    !target__has_cpu(&target)) {
1860 		fprintf(stderr, "both cgroup and no-aggregation "
1861 			"modes only available in system-wide mode\n");
1862 
1863 		parse_options_usage(stat_usage, stat_options, "G", 1);
1864 		parse_options_usage(NULL, stat_options, "A", 1);
1865 		parse_options_usage(NULL, stat_options, "a", 1);
1866 		goto out;
1867 	}
1868 
1869 	if (add_default_attributes())
1870 		goto out;
1871 
1872 	target__validate(&target);
1873 
1874 	if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
1875 		target.per_thread = true;
1876 
1877 	if (perf_evlist__create_maps(evsel_list, &target) < 0) {
1878 		if (target__has_task(&target)) {
1879 			pr_err("Problems finding threads of monitor\n");
1880 			parse_options_usage(stat_usage, stat_options, "p", 1);
1881 			parse_options_usage(NULL, stat_options, "t", 1);
1882 		} else if (target__has_cpu(&target)) {
1883 			perror("failed to parse CPUs map");
1884 			parse_options_usage(stat_usage, stat_options, "C", 1);
1885 			parse_options_usage(NULL, stat_options, "a", 1);
1886 		}
1887 		goto out;
1888 	}
1889 
1890 	/*
1891 	 * Initialize thread_map with comm names,
1892 	 * so we could print it out on output.
1893 	 */
1894 	if (stat_config.aggr_mode == AGGR_THREAD) {
1895 		thread_map__read_comms(evsel_list->core.threads);
1896 		if (target.system_wide) {
1897 			if (runtime_stat_new(&stat_config,
1898 				perf_thread_map__nr(evsel_list->core.threads))) {
1899 				goto out;
1900 			}
1901 		}
1902 	}
1903 
1904 	if (stat_config.times && interval)
1905 		interval_count = true;
1906 	else if (stat_config.times && !interval) {
1907 		pr_err("interval-count option should be used together with "
1908 				"interval-print.\n");
1909 		parse_options_usage(stat_usage, stat_options, "interval-count", 0);
1910 		parse_options_usage(stat_usage, stat_options, "I", 1);
1911 		goto out;
1912 	}
1913 
1914 	if (timeout && timeout < 100) {
1915 		if (timeout < 10) {
1916 			pr_err("timeout must be >= 10ms.\n");
1917 			parse_options_usage(stat_usage, stat_options, "timeout", 0);
1918 			goto out;
1919 		} else
1920 			pr_warning("timeout < 100ms. "
1921 				   "The overhead percentage could be high in some cases. "
1922 				   "Please proceed with caution.\n");
1923 	}
1924 	if (timeout && interval) {
1925 		pr_err("timeout option is not supported with interval-print.\n");
1926 		parse_options_usage(stat_usage, stat_options, "timeout", 0);
1927 		parse_options_usage(stat_usage, stat_options, "I", 1);
1928 		goto out;
1929 	}
1930 
1931 	if (perf_evlist__alloc_stats(evsel_list, interval))
1932 		goto out;
1933 
1934 	if (perf_stat_init_aggr_mode())
1935 		goto out;
1936 
1937 	/*
1938 	 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
1939 	 * while avoiding that older tools show confusing messages.
1940 	 *
1941 	 * However for pipe sessions we need to keep it zero,
1942 	 * because script's perf_evsel__check_attr is triggered
1943 	 * by attr->sample_type != 0, and we can't run it on
1944 	 * stat sessions.
1945 	 */
1946 	stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe);
1947 
1948 	/*
1949 	 * We dont want to block the signals - that would cause
1950 	 * child tasks to inherit that and Ctrl-C would not work.
1951 	 * What we want is for Ctrl-C to work in the exec()-ed
1952 	 * task, but being ignored by perf stat itself:
1953 	 */
1954 	atexit(sig_atexit);
1955 	if (!forever)
1956 		signal(SIGINT,  skip_signal);
1957 	signal(SIGCHLD, skip_signal);
1958 	signal(SIGALRM, skip_signal);
1959 	signal(SIGABRT, skip_signal);
1960 
1961 	status = 0;
1962 	for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) {
1963 		if (stat_config.run_count != 1 && verbose > 0)
1964 			fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1965 				run_idx + 1);
1966 
1967 		status = run_perf_stat(argc, argv, run_idx);
1968 		if (forever && status != -1) {
1969 			print_counters(NULL, argc, argv);
1970 			perf_stat__reset_stats();
1971 		}
1972 	}
1973 
1974 	if (!forever && status != -1 && !interval)
1975 		print_counters(NULL, argc, argv);
1976 
1977 	if (STAT_RECORD) {
1978 		/*
1979 		 * We synthesize the kernel mmap record just so that older tools
1980 		 * don't emit warnings about not being able to resolve symbols
1981 		 * due to /proc/sys/kernel/kptr_restrict settings and instear provide
1982 		 * a saner message about no samples being in the perf.data file.
1983 		 *
1984 		 * This also serves to suppress a warning about f_header.data.size == 0
1985 		 * in header.c at the moment 'perf stat record' gets introduced, which
1986 		 * is not really needed once we start adding the stat specific PERF_RECORD_
1987 		 * records, but the need to suppress the kptr_restrict messages in older
1988 		 * tools remain  -acme
1989 		 */
1990 		int fd = perf_data__fd(&perf_stat.data);
1991 		int err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
1992 							     process_synthesized_event,
1993 							     &perf_stat.session->machines.host);
1994 		if (err) {
1995 			pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
1996 				   "older tools may produce warnings about this file\n.");
1997 		}
1998 
1999 		if (!interval) {
2000 			if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
2001 				pr_err("failed to write stat round event\n");
2002 		}
2003 
2004 		if (!perf_stat.data.is_pipe) {
2005 			perf_stat.session->header.data_size += perf_stat.bytes_written;
2006 			perf_session__write_header(perf_stat.session, evsel_list, fd, true);
2007 		}
2008 
2009 		evlist__close(evsel_list);
2010 		perf_session__delete(perf_stat.session);
2011 	}
2012 
2013 	perf_stat__exit_aggr_mode();
2014 	perf_evlist__free_stats(evsel_list);
2015 out:
2016 	zfree(&stat_config.walltime_run);
2017 
2018 	if (smi_cost && smi_reset)
2019 		sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
2020 
2021 	evlist__delete(evsel_list);
2022 
2023 	runtime_stat_delete(&stat_config);
2024 
2025 	return status;
2026 }
2027