4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
9 $ perf stat ./hackbench 10
13 Performance counter stats for './hackbench 10':
15 1708.761321 task-clock # 11.037 CPUs utilized
16 41,190 context-switches # 0.024 M/sec
17 6,735 CPU-migrations # 0.004 M/sec
18 17,318 page-faults # 0.010 M/sec
19 5,205,202,243 cycles # 3.046 GHz
20 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
21 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
22 2,603,501,247 instructions # 0.50 insns per cycle
23 # 1.48 stalled cycles per insn
24 484,357,498 branches # 283.455 M/sec
25 6,388,934 branch-misses # 1.32% of all branches
27 0.154822978 seconds time elapsed
30 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
32 * Improvements and fixes by:
34 * Arjan van de Ven <arjan@linux.intel.com>
35 * Yanmin Zhang <yanmin.zhang@intel.com>
36 * Wu Fengguang <fengguang.wu@intel.com>
37 * Mike Galbraith <efault@gmx.de>
38 * Paul Mackerras <paulus@samba.org>
39 * Jaswinder Singh Rajput <jaswinder@kernel.org>
41 * Released under the GPL v2. (and only v2, not any later version)
46 #include "util/util.h"
47 #include "util/parse-options.h"
48 #include "util/parse-events.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"
61 #include <sys/prctl.h>
64 #define DEFAULT_SEPARATOR " "
65 #define CNTR_NOT_SUPPORTED "<not supported>"
66 #define CNTR_NOT_COUNTED "<not counted>"
68 static void print_stat(int argc, const char **argv);
69 static void print_counter_aggr(struct perf_evsel *counter, char *prefix);
70 static void print_counter(struct perf_evsel *counter, char *prefix);
71 static void print_aggr_socket(char *prefix);
73 static struct perf_evlist *evsel_list;
75 static struct perf_target target = {
79 static int run_count = 1;
80 static bool no_inherit = false;
81 static bool scale = true;
82 static bool no_aggr = false;
83 static bool aggr_socket = false;
84 static pid_t child_pid = -1;
85 static bool null_run = false;
86 static int detailed_run = 0;
87 static bool big_num = true;
88 static int big_num_opt = -1;
89 static const char *csv_sep = NULL;
90 static bool csv_output = false;
91 static bool group = false;
92 static FILE *output = NULL;
93 static const char *pre_cmd = NULL;
94 static const char *post_cmd = NULL;
95 static bool sync_run = false;
96 static unsigned int interval = 0;
97 static struct timespec ref_time;
98 static struct cpu_map *sock_map;
100 static volatile int done = 0;
103 struct stats res_stats[3];
106 static inline void diff_timespec(struct timespec *r, struct timespec *a,
109 r->tv_sec = a->tv_sec - b->tv_sec;
110 if (a->tv_nsec < b->tv_nsec) {
111 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
114 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
118 static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
120 return (evsel->cpus && !target.cpu_list) ? evsel->cpus : evsel_list->cpus;
123 static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
125 return perf_evsel__cpus(evsel)->nr;
128 static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
130 evsel->priv = zalloc(sizeof(struct perf_stat));
131 return evsel->priv == NULL ? -ENOMEM : 0;
134 static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
140 static int perf_evsel__alloc_prev_raw_counts(struct perf_evsel *evsel)
145 sz = sizeof(*evsel->counts) +
146 (perf_evsel__nr_cpus(evsel) * sizeof(struct perf_counts_values));
152 evsel->prev_raw_counts = addr;
157 static void perf_evsel__free_prev_raw_counts(struct perf_evsel *evsel)
159 free(evsel->prev_raw_counts);
160 evsel->prev_raw_counts = NULL;
163 static struct stats runtime_nsecs_stats[MAX_NR_CPUS];
164 static struct stats runtime_cycles_stats[MAX_NR_CPUS];
165 static struct stats runtime_stalled_cycles_front_stats[MAX_NR_CPUS];
166 static struct stats runtime_stalled_cycles_back_stats[MAX_NR_CPUS];
167 static struct stats runtime_branches_stats[MAX_NR_CPUS];
168 static struct stats runtime_cacherefs_stats[MAX_NR_CPUS];
169 static struct stats runtime_l1_dcache_stats[MAX_NR_CPUS];
170 static struct stats runtime_l1_icache_stats[MAX_NR_CPUS];
171 static struct stats runtime_ll_cache_stats[MAX_NR_CPUS];
172 static struct stats runtime_itlb_cache_stats[MAX_NR_CPUS];
173 static struct stats runtime_dtlb_cache_stats[MAX_NR_CPUS];
174 static struct stats walltime_nsecs_stats;
176 static int create_perf_stat_counter(struct perf_evsel *evsel)
178 struct perf_event_attr *attr = &evsel->attr;
181 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
182 PERF_FORMAT_TOTAL_TIME_RUNNING;
184 attr->inherit = !no_inherit;
186 if (perf_target__has_cpu(&target))
187 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
189 if (!perf_target__has_task(&target) &&
190 perf_evsel__is_group_leader(evsel)) {
192 attr->enable_on_exec = 1;
195 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
199 * Does the counter have nsecs as a unit?
201 static inline int nsec_counter(struct perf_evsel *evsel)
203 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
204 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
211 * Update various tracking values we maintain to print
212 * more semantic information such as miss/hit ratios,
213 * instruction rates, etc:
215 static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
217 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
218 update_stats(&runtime_nsecs_stats[0], count[0]);
219 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
220 update_stats(&runtime_cycles_stats[0], count[0]);
221 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
222 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
223 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
224 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
225 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
226 update_stats(&runtime_branches_stats[0], count[0]);
227 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
228 update_stats(&runtime_cacherefs_stats[0], count[0]);
229 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
230 update_stats(&runtime_l1_dcache_stats[0], count[0]);
231 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1I))
232 update_stats(&runtime_l1_icache_stats[0], count[0]);
233 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_LL))
234 update_stats(&runtime_ll_cache_stats[0], count[0]);
235 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_DTLB))
236 update_stats(&runtime_dtlb_cache_stats[0], count[0]);
237 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_ITLB))
238 update_stats(&runtime_itlb_cache_stats[0], count[0]);
242 * Read out the results of a single counter:
243 * aggregate counts across CPUs in system-wide mode
245 static int read_counter_aggr(struct perf_evsel *counter)
247 struct perf_stat *ps = counter->priv;
248 u64 *count = counter->counts->aggr.values;
251 if (__perf_evsel__read(counter, perf_evsel__nr_cpus(counter),
252 thread_map__nr(evsel_list->threads), scale) < 0)
255 for (i = 0; i < 3; i++)
256 update_stats(&ps->res_stats[i], count[i]);
259 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
260 perf_evsel__name(counter), count[0], count[1], count[2]);
264 * Save the full runtime - to allow normalization during printout:
266 update_shadow_stats(counter, count);
272 * Read out the results of a single counter:
273 * do not aggregate counts across CPUs in system-wide mode
275 static int read_counter(struct perf_evsel *counter)
280 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
281 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
284 count = counter->counts->cpu[cpu].values;
286 update_shadow_stats(counter, count);
292 static void print_interval(void)
294 static int num_print_interval;
295 struct perf_evsel *counter;
296 struct perf_stat *ps;
297 struct timespec ts, rs;
301 list_for_each_entry(counter, &evsel_list->entries, node) {
303 memset(ps->res_stats, 0, sizeof(ps->res_stats));
304 read_counter(counter);
307 list_for_each_entry(counter, &evsel_list->entries, node) {
309 memset(ps->res_stats, 0, sizeof(ps->res_stats));
310 read_counter_aggr(counter);
313 clock_gettime(CLOCK_MONOTONIC, &ts);
314 diff_timespec(&rs, &ts, &ref_time);
315 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
317 if (num_print_interval == 0 && !csv_output) {
319 fprintf(output, "# time socket cpus counts events\n");
321 fprintf(output, "# time CPU counts events\n");
323 fprintf(output, "# time counts events\n");
326 if (++num_print_interval == 25)
327 num_print_interval = 0;
330 print_aggr_socket(prefix);
332 list_for_each_entry(counter, &evsel_list->entries, node)
333 print_counter(counter, prefix);
335 list_for_each_entry(counter, &evsel_list->entries, node)
336 print_counter_aggr(counter, prefix);
340 static int __run_perf_stat(int argc, const char **argv)
343 unsigned long long t0, t1;
344 struct perf_evsel *counter;
347 const bool forks = (argc > 0);
350 ts.tv_sec = interval / 1000;
351 ts.tv_nsec = (interval % 1000) * 1000000;
358 && cpu_map__build_socket_map(evsel_list->cpus, &sock_map)) {
359 perror("cannot build socket map");
364 if (perf_evlist__prepare_workload(evsel_list, &target, argv,
366 perror("failed to prepare workload");
372 perf_evlist__set_leader(evsel_list);
374 list_for_each_entry(counter, &evsel_list->entries, node) {
375 if (create_perf_stat_counter(counter) < 0) {
377 * PPC returns ENXIO for HW counters until 2.6.37
378 * (behavior changed with commit b0a873e).
380 if (errno == EINVAL || errno == ENOSYS ||
381 errno == ENOENT || errno == EOPNOTSUPP ||
384 ui__warning("%s event is not supported by the kernel.\n",
385 perf_evsel__name(counter));
386 counter->supported = false;
390 perf_evsel__open_strerror(counter, &target,
391 errno, msg, sizeof(msg));
392 ui__error("%s\n", msg);
395 kill(child_pid, SIGTERM);
399 counter->supported = true;
402 if (perf_evlist__apply_filters(evsel_list)) {
403 error("failed to set filter with %d (%s)\n", errno,
409 * Enable counters and exec the command:
412 clock_gettime(CLOCK_MONOTONIC, &ref_time);
415 perf_evlist__start_workload(evsel_list);
418 while (!waitpid(child_pid, &status, WNOHANG)) {
419 nanosleep(&ts, NULL);
424 if (WIFSIGNALED(status))
425 psignal(WTERMSIG(status), argv[0]);
428 nanosleep(&ts, NULL);
436 update_stats(&walltime_nsecs_stats, t1 - t0);
439 list_for_each_entry(counter, &evsel_list->entries, node) {
440 read_counter(counter);
441 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
444 list_for_each_entry(counter, &evsel_list->entries, node) {
445 read_counter_aggr(counter);
446 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
447 thread_map__nr(evsel_list->threads));
451 return WEXITSTATUS(status);
454 static int run_perf_stat(int argc __maybe_unused, const char **argv)
459 ret = system(pre_cmd);
467 ret = __run_perf_stat(argc, argv);
472 ret = system(post_cmd);
480 static void print_noise_pct(double total, double avg)
482 double pct = rel_stddev_stats(total, avg);
485 fprintf(output, "%s%.2f%%", csv_sep, pct);
487 fprintf(output, " ( +-%6.2f%% )", pct);
490 static void print_noise(struct perf_evsel *evsel, double avg)
492 struct perf_stat *ps;
498 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
501 static void nsec_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
503 double msecs = avg / 1e6;
504 char cpustr[16] = { '\0', };
505 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-25s";
508 sprintf(cpustr, "S%*d%s%*d%s",
516 sprintf(cpustr, "CPU%*d%s",
518 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
520 fprintf(output, fmt, cpustr, msecs, csv_sep, perf_evsel__name(evsel));
523 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
525 if (csv_output || interval)
528 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
529 fprintf(output, " # %8.3f CPUs utilized ",
530 avg / avg_stats(&walltime_nsecs_stats));
532 fprintf(output, " ");
535 /* used for get_ratio_color() */
537 GRC_STALLED_CYCLES_FE,
538 GRC_STALLED_CYCLES_BE,
543 static const char *get_ratio_color(enum grc_type type, double ratio)
545 static const double grc_table[GRC_MAX_NR][3] = {
546 [GRC_STALLED_CYCLES_FE] = { 50.0, 30.0, 10.0 },
547 [GRC_STALLED_CYCLES_BE] = { 75.0, 50.0, 20.0 },
548 [GRC_CACHE_MISSES] = { 20.0, 10.0, 5.0 },
550 const char *color = PERF_COLOR_NORMAL;
552 if (ratio > grc_table[type][0])
553 color = PERF_COLOR_RED;
554 else if (ratio > grc_table[type][1])
555 color = PERF_COLOR_MAGENTA;
556 else if (ratio > grc_table[type][2])
557 color = PERF_COLOR_YELLOW;
562 static void print_stalled_cycles_frontend(int cpu,
563 struct perf_evsel *evsel
564 __maybe_unused, double avg)
566 double total, ratio = 0.0;
569 total = avg_stats(&runtime_cycles_stats[cpu]);
572 ratio = avg / total * 100.0;
574 color = get_ratio_color(GRC_STALLED_CYCLES_FE, ratio);
576 fprintf(output, " # ");
577 color_fprintf(output, color, "%6.2f%%", ratio);
578 fprintf(output, " frontend cycles idle ");
581 static void print_stalled_cycles_backend(int cpu,
582 struct perf_evsel *evsel
583 __maybe_unused, double avg)
585 double total, ratio = 0.0;
588 total = avg_stats(&runtime_cycles_stats[cpu]);
591 ratio = avg / total * 100.0;
593 color = get_ratio_color(GRC_STALLED_CYCLES_BE, ratio);
595 fprintf(output, " # ");
596 color_fprintf(output, color, "%6.2f%%", ratio);
597 fprintf(output, " backend cycles idle ");
600 static void print_branch_misses(int cpu,
601 struct perf_evsel *evsel __maybe_unused,
604 double total, ratio = 0.0;
607 total = avg_stats(&runtime_branches_stats[cpu]);
610 ratio = avg / total * 100.0;
612 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
614 fprintf(output, " # ");
615 color_fprintf(output, color, "%6.2f%%", ratio);
616 fprintf(output, " of all branches ");
619 static void print_l1_dcache_misses(int cpu,
620 struct perf_evsel *evsel __maybe_unused,
623 double total, ratio = 0.0;
626 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
629 ratio = avg / total * 100.0;
631 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
633 fprintf(output, " # ");
634 color_fprintf(output, color, "%6.2f%%", ratio);
635 fprintf(output, " of all L1-dcache hits ");
638 static void print_l1_icache_misses(int cpu,
639 struct perf_evsel *evsel __maybe_unused,
642 double total, ratio = 0.0;
645 total = avg_stats(&runtime_l1_icache_stats[cpu]);
648 ratio = avg / total * 100.0;
650 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
652 fprintf(output, " # ");
653 color_fprintf(output, color, "%6.2f%%", ratio);
654 fprintf(output, " of all L1-icache hits ");
657 static void print_dtlb_cache_misses(int cpu,
658 struct perf_evsel *evsel __maybe_unused,
661 double total, ratio = 0.0;
664 total = avg_stats(&runtime_dtlb_cache_stats[cpu]);
667 ratio = avg / total * 100.0;
669 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
671 fprintf(output, " # ");
672 color_fprintf(output, color, "%6.2f%%", ratio);
673 fprintf(output, " of all dTLB cache hits ");
676 static void print_itlb_cache_misses(int cpu,
677 struct perf_evsel *evsel __maybe_unused,
680 double total, ratio = 0.0;
683 total = avg_stats(&runtime_itlb_cache_stats[cpu]);
686 ratio = avg / total * 100.0;
688 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
690 fprintf(output, " # ");
691 color_fprintf(output, color, "%6.2f%%", ratio);
692 fprintf(output, " of all iTLB cache hits ");
695 static void print_ll_cache_misses(int cpu,
696 struct perf_evsel *evsel __maybe_unused,
699 double total, ratio = 0.0;
702 total = avg_stats(&runtime_ll_cache_stats[cpu]);
705 ratio = avg / total * 100.0;
707 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
709 fprintf(output, " # ");
710 color_fprintf(output, color, "%6.2f%%", ratio);
711 fprintf(output, " of all LL-cache hits ");
714 static void abs_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
716 double total, ratio = 0.0;
717 char cpustr[16] = { '\0', };
723 fmt = "%s%'18.0f%s%-25s";
725 fmt = "%s%18.0f%s%-25s";
728 sprintf(cpustr, "S%*d%s%*d%s",
736 sprintf(cpustr, "CPU%*d%s",
738 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
742 fprintf(output, fmt, cpustr, avg, csv_sep, perf_evsel__name(evsel));
745 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
747 if (csv_output || interval)
750 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
751 total = avg_stats(&runtime_cycles_stats[cpu]);
755 fprintf(output, " # %5.2f insns per cycle ", ratio);
757 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
758 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
762 fprintf(output, "\n # %5.2f stalled cycles per insn", ratio);
765 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
766 runtime_branches_stats[cpu].n != 0) {
767 print_branch_misses(cpu, evsel, avg);
769 evsel->attr.type == PERF_TYPE_HW_CACHE &&
770 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
771 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
772 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
773 runtime_l1_dcache_stats[cpu].n != 0) {
774 print_l1_dcache_misses(cpu, evsel, avg);
776 evsel->attr.type == PERF_TYPE_HW_CACHE &&
777 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1I |
778 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
779 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
780 runtime_l1_icache_stats[cpu].n != 0) {
781 print_l1_icache_misses(cpu, evsel, avg);
783 evsel->attr.type == PERF_TYPE_HW_CACHE &&
784 evsel->attr.config == ( PERF_COUNT_HW_CACHE_DTLB |
785 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
786 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
787 runtime_dtlb_cache_stats[cpu].n != 0) {
788 print_dtlb_cache_misses(cpu, evsel, avg);
790 evsel->attr.type == PERF_TYPE_HW_CACHE &&
791 evsel->attr.config == ( PERF_COUNT_HW_CACHE_ITLB |
792 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
793 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
794 runtime_itlb_cache_stats[cpu].n != 0) {
795 print_itlb_cache_misses(cpu, evsel, avg);
797 evsel->attr.type == PERF_TYPE_HW_CACHE &&
798 evsel->attr.config == ( PERF_COUNT_HW_CACHE_LL |
799 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
800 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
801 runtime_ll_cache_stats[cpu].n != 0) {
802 print_ll_cache_misses(cpu, evsel, avg);
803 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
804 runtime_cacherefs_stats[cpu].n != 0) {
805 total = avg_stats(&runtime_cacherefs_stats[cpu]);
808 ratio = avg * 100 / total;
810 fprintf(output, " # %8.3f %% of all cache refs ", ratio);
812 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
813 print_stalled_cycles_frontend(cpu, evsel, avg);
814 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
815 print_stalled_cycles_backend(cpu, evsel, avg);
816 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
817 total = avg_stats(&runtime_nsecs_stats[cpu]);
820 ratio = 1.0 * avg / total;
822 fprintf(output, " # %8.3f GHz ", ratio);
823 } else if (runtime_nsecs_stats[cpu].n != 0) {
826 total = avg_stats(&runtime_nsecs_stats[cpu]);
829 ratio = 1000.0 * avg / total;
835 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
837 fprintf(output, " ");
841 static void print_aggr_socket(char *prefix)
843 struct perf_evsel *counter;
845 int cpu, s, s2, sock, nr;
850 for (s = 0; s < sock_map->nr; s++) {
851 sock = cpu_map__socket(sock_map, s);
852 list_for_each_entry(counter, &evsel_list->entries, node) {
855 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
856 s2 = cpu_map__get_socket(evsel_list->cpus, cpu);
859 val += counter->counts->cpu[cpu].val;
860 ena += counter->counts->cpu[cpu].ena;
861 run += counter->counts->cpu[cpu].run;
865 fprintf(output, "%s", prefix);
867 if (run == 0 || ena == 0) {
868 fprintf(output, "S%*d%s%*d%s%*s%s%*s",
876 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
878 csv_output ? 0 : -24,
879 perf_evsel__name(counter));
881 fprintf(output, "%s%s",
882 csv_sep, counter->cgrp->name);
888 if (nsec_counter(counter))
889 nsec_printout(sock, nr, counter, val);
891 abs_printout(sock, nr, counter, val);
894 print_noise(counter, 1.0);
897 fprintf(output, " (%.2f%%)",
906 * Print out the results of a single counter:
907 * aggregated counts in system-wide mode
909 static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
911 struct perf_stat *ps = counter->priv;
912 double avg = avg_stats(&ps->res_stats[0]);
913 int scaled = counter->counts->scaled;
916 fprintf(output, "%s", prefix);
919 fprintf(output, "%*s%s%*s",
921 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
923 csv_output ? 0 : -24,
924 perf_evsel__name(counter));
927 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
933 if (nsec_counter(counter))
934 nsec_printout(-1, 0, counter, avg);
936 abs_printout(-1, 0, counter, avg);
938 print_noise(counter, avg);
946 double avg_enabled, avg_running;
948 avg_enabled = avg_stats(&ps->res_stats[1]);
949 avg_running = avg_stats(&ps->res_stats[2]);
951 fprintf(output, " [%5.2f%%]", 100 * avg_running / avg_enabled);
953 fprintf(output, "\n");
957 * Print out the results of a single counter:
958 * does not use aggregated count in system-wide
960 static void print_counter(struct perf_evsel *counter, char *prefix)
965 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
966 val = counter->counts->cpu[cpu].val;
967 ena = counter->counts->cpu[cpu].ena;
968 run = counter->counts->cpu[cpu].run;
971 fprintf(output, "%s", prefix);
973 if (run == 0 || ena == 0) {
974 fprintf(output, "CPU%*d%s%*s%s%*s",
976 perf_evsel__cpus(counter)->map[cpu], csv_sep,
978 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
980 csv_output ? 0 : -24,
981 perf_evsel__name(counter));
984 fprintf(output, "%s%s",
985 csv_sep, counter->cgrp->name);
991 if (nsec_counter(counter))
992 nsec_printout(cpu, 0, counter, val);
994 abs_printout(cpu, 0, counter, val);
997 print_noise(counter, 1.0);
1000 fprintf(output, " (%.2f%%)",
1003 fputc('\n', output);
1007 static void print_stat(int argc, const char **argv)
1009 struct perf_evsel *counter;
1015 fprintf(output, "\n");
1016 fprintf(output, " Performance counter stats for ");
1017 if (!perf_target__has_task(&target)) {
1018 fprintf(output, "\'%s", argv[0]);
1019 for (i = 1; i < argc; i++)
1020 fprintf(output, " %s", argv[i]);
1021 } else if (target.pid)
1022 fprintf(output, "process id \'%s", target.pid);
1024 fprintf(output, "thread id \'%s", target.tid);
1026 fprintf(output, "\'");
1028 fprintf(output, " (%d runs)", run_count);
1029 fprintf(output, ":\n\n");
1033 print_aggr_socket(NULL);
1035 list_for_each_entry(counter, &evsel_list->entries, node)
1036 print_counter(counter, NULL);
1038 list_for_each_entry(counter, &evsel_list->entries, node)
1039 print_counter_aggr(counter, NULL);
1044 fprintf(output, "\n");
1045 fprintf(output, " %17.9f seconds time elapsed",
1046 avg_stats(&walltime_nsecs_stats)/1e9);
1047 if (run_count > 1) {
1048 fprintf(output, " ");
1049 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
1050 avg_stats(&walltime_nsecs_stats));
1052 fprintf(output, "\n\n");
1056 static volatile int signr = -1;
1058 static void skip_signal(int signo)
1060 if ((child_pid == -1) || interval)
1066 static void sig_atexit(void)
1068 if (child_pid != -1)
1069 kill(child_pid, SIGTERM);
1074 signal(signr, SIG_DFL);
1075 kill(getpid(), signr);
1078 static int stat__set_big_num(const struct option *opt __maybe_unused,
1079 const char *s __maybe_unused, int unset)
1081 big_num_opt = unset ? 0 : 1;
1086 * Add default attributes, if there were no attributes specified or
1087 * if -d/--detailed, -d -d or -d -d -d is used:
1089 static int add_default_attributes(void)
1091 struct perf_event_attr default_attrs[] = {
1093 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1094 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1095 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1096 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1098 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1099 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1100 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1101 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1102 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1103 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1108 * Detailed stats (-d), covering the L1 and last level data caches:
1110 struct perf_event_attr detailed_attrs[] = {
1112 { .type = PERF_TYPE_HW_CACHE,
1114 PERF_COUNT_HW_CACHE_L1D << 0 |
1115 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1116 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1118 { .type = PERF_TYPE_HW_CACHE,
1120 PERF_COUNT_HW_CACHE_L1D << 0 |
1121 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1122 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1124 { .type = PERF_TYPE_HW_CACHE,
1126 PERF_COUNT_HW_CACHE_LL << 0 |
1127 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1128 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1130 { .type = PERF_TYPE_HW_CACHE,
1132 PERF_COUNT_HW_CACHE_LL << 0 |
1133 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1134 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1138 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1140 struct perf_event_attr very_detailed_attrs[] = {
1142 { .type = PERF_TYPE_HW_CACHE,
1144 PERF_COUNT_HW_CACHE_L1I << 0 |
1145 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1146 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1148 { .type = PERF_TYPE_HW_CACHE,
1150 PERF_COUNT_HW_CACHE_L1I << 0 |
1151 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1152 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1154 { .type = PERF_TYPE_HW_CACHE,
1156 PERF_COUNT_HW_CACHE_DTLB << 0 |
1157 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1158 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1160 { .type = PERF_TYPE_HW_CACHE,
1162 PERF_COUNT_HW_CACHE_DTLB << 0 |
1163 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1164 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1166 { .type = PERF_TYPE_HW_CACHE,
1168 PERF_COUNT_HW_CACHE_ITLB << 0 |
1169 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1170 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1172 { .type = PERF_TYPE_HW_CACHE,
1174 PERF_COUNT_HW_CACHE_ITLB << 0 |
1175 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1176 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1181 * Very, very detailed stats (-d -d -d), adding prefetch events:
1183 struct perf_event_attr very_very_detailed_attrs[] = {
1185 { .type = PERF_TYPE_HW_CACHE,
1187 PERF_COUNT_HW_CACHE_L1D << 0 |
1188 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1189 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1191 { .type = PERF_TYPE_HW_CACHE,
1193 PERF_COUNT_HW_CACHE_L1D << 0 |
1194 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1195 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1198 /* Set attrs if no event is selected and !null_run: */
1202 if (!evsel_list->nr_entries) {
1203 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
1207 /* Detailed events get appended to the event list: */
1209 if (detailed_run < 1)
1212 /* Append detailed run extra attributes: */
1213 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
1216 if (detailed_run < 2)
1219 /* Append very detailed run extra attributes: */
1220 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
1223 if (detailed_run < 3)
1226 /* Append very, very detailed run extra attributes: */
1227 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
1230 int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
1232 bool append_file = false;
1234 const char *output_name = NULL;
1235 const struct option options[] = {
1236 OPT_CALLBACK('e', "event", &evsel_list, "event",
1237 "event selector. use 'perf list' to list available events",
1238 parse_events_option),
1239 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1240 "event filter", parse_filter),
1241 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1242 "child tasks do not inherit counters"),
1243 OPT_STRING('p', "pid", &target.pid, "pid",
1244 "stat events on existing process id"),
1245 OPT_STRING('t', "tid", &target.tid, "tid",
1246 "stat events on existing thread id"),
1247 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1248 "system-wide collection from all CPUs"),
1249 OPT_BOOLEAN('g', "group", &group,
1250 "put the counters into a counter group"),
1251 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1252 OPT_INCR('v', "verbose", &verbose,
1253 "be more verbose (show counter open errors, etc)"),
1254 OPT_INTEGER('r', "repeat", &run_count,
1255 "repeat command and print average + stddev (max: 100)"),
1256 OPT_BOOLEAN('n', "null", &null_run,
1257 "null run - dont start any counters"),
1258 OPT_INCR('d', "detailed", &detailed_run,
1259 "detailed run - start a lot of events"),
1260 OPT_BOOLEAN('S', "sync", &sync_run,
1261 "call sync() before starting a run"),
1262 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1263 "print large numbers with thousands\' separators",
1265 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1266 "list of cpus to monitor in system-wide"),
1267 OPT_BOOLEAN('A', "no-aggr", &no_aggr, "disable CPU count aggregation"),
1268 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1269 "print counts with custom separator"),
1270 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1271 "monitor event in cgroup name only", parse_cgroups),
1272 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1273 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1274 OPT_INTEGER(0, "log-fd", &output_fd,
1275 "log output to fd, instead of stderr"),
1276 OPT_STRING(0, "pre", &pre_cmd, "command",
1277 "command to run prior to the measured command"),
1278 OPT_STRING(0, "post", &post_cmd, "command",
1279 "command to run after to the measured command"),
1280 OPT_UINTEGER('I', "interval-print", &interval,
1281 "print counts at regular interval in ms (>= 100)"),
1282 OPT_BOOLEAN(0, "aggr-socket", &aggr_socket, "aggregate counts per processor socket"),
1285 const char * const stat_usage[] = {
1286 "perf stat [<options>] [<command>]",
1289 struct perf_evsel *pos;
1290 int status = -ENOMEM, run_idx;
1293 setlocale(LC_ALL, "");
1295 evsel_list = perf_evlist__new();
1296 if (evsel_list == NULL)
1299 argc = parse_options(argc, argv, options, stat_usage,
1300 PARSE_OPT_STOP_AT_NON_OPTION);
1303 if (output_name && strcmp(output_name, "-"))
1306 if (output_name && output_fd) {
1307 fprintf(stderr, "cannot use both --output and --log-fd\n");
1308 usage_with_options(stat_usage, options);
1311 if (output_fd < 0) {
1312 fprintf(stderr, "argument to --log-fd must be a > 0\n");
1313 usage_with_options(stat_usage, options);
1318 mode = append_file ? "a" : "w";
1320 output = fopen(output_name, mode);
1322 perror("failed to create output file");
1325 clock_gettime(CLOCK_REALTIME, &tm);
1326 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
1327 } else if (output_fd > 0) {
1328 mode = append_file ? "a" : "w";
1329 output = fdopen(output_fd, mode);
1331 perror("Failed opening logfd");
1338 if (!strcmp(csv_sep, "\\t"))
1341 csv_sep = DEFAULT_SEPARATOR;
1344 * let the spreadsheet do the pretty-printing
1347 /* User explicitly passed -B? */
1348 if (big_num_opt == 1) {
1349 fprintf(stderr, "-B option not supported with -x\n");
1350 usage_with_options(stat_usage, options);
1351 } else /* Nope, so disable big number formatting */
1353 } else if (big_num_opt == 0) /* User passed --no-big-num */
1356 if (!argc && !perf_target__has_task(&target))
1357 usage_with_options(stat_usage, options);
1359 usage_with_options(stat_usage, options);
1361 /* no_aggr, cgroup are for system-wide only */
1362 if ((no_aggr || nr_cgroups) && !perf_target__has_cpu(&target)) {
1363 fprintf(stderr, "both cgroup and no-aggregation "
1364 "modes only available in system-wide mode\n");
1366 usage_with_options(stat_usage, options);
1370 if (!perf_target__has_cpu(&target)) {
1371 fprintf(stderr, "--aggr-socket only available in system-wide mode (-a)\n");
1372 usage_with_options(stat_usage, options);
1377 if (add_default_attributes())
1380 perf_target__validate(&target);
1382 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
1383 if (perf_target__has_task(&target))
1384 pr_err("Problems finding threads of monitor\n");
1385 if (perf_target__has_cpu(&target))
1386 perror("failed to parse CPUs map");
1388 usage_with_options(stat_usage, options);
1391 if (interval && interval < 100) {
1392 pr_err("print interval must be >= 100ms\n");
1393 usage_with_options(stat_usage, options);
1397 list_for_each_entry(pos, &evsel_list->entries, node) {
1398 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
1399 perf_evsel__alloc_counts(pos, perf_evsel__nr_cpus(pos)) < 0)
1403 list_for_each_entry(pos, &evsel_list->entries, node) {
1404 if (perf_evsel__alloc_prev_raw_counts(pos) < 0)
1410 * We dont want to block the signals - that would cause
1411 * child tasks to inherit that and Ctrl-C would not work.
1412 * What we want is for Ctrl-C to work in the exec()-ed
1413 * task, but being ignored by perf stat itself:
1416 signal(SIGINT, skip_signal);
1417 signal(SIGCHLD, skip_signal);
1418 signal(SIGALRM, skip_signal);
1419 signal(SIGABRT, skip_signal);
1422 for (run_idx = 0; run_idx < run_count; run_idx++) {
1423 if (run_count != 1 && verbose)
1424 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1427 status = run_perf_stat(argc, argv);
1430 if (status != -1 && !interval)
1431 print_stat(argc, argv);
1433 list_for_each_entry(pos, &evsel_list->entries, node) {
1434 perf_evsel__free_stat_priv(pos);
1435 perf_evsel__free_counts(pos);
1436 perf_evsel__free_prev_raw_counts(pos);
1438 perf_evlist__delete_maps(evsel_list);
1440 perf_evlist__delete(evsel_list);