4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
9 $ perf stat ~/hackbench 10
12 Performance counter stats for '/home/mingo/hackbench':
14 1255.538611 task clock ticks # 10.143 CPU utilization factor
15 54011 context switches # 0.043 M/sec
16 385 CPU migrations # 0.000 M/sec
17 17755 pagefaults # 0.014 M/sec
18 3808323185 CPU cycles # 3033.219 M/sec
19 1575111190 instructions # 1254.530 M/sec
20 17367895 cache references # 13.833 M/sec
21 7674421 cache misses # 6.112 M/sec
23 Wall-clock time elapsed: 123.786620 msecs
26 * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
28 * Improvements and fixes by:
30 * Arjan van de Ven <arjan@linux.intel.com>
31 * Yanmin Zhang <yanmin.zhang@intel.com>
32 * Wu Fengguang <fengguang.wu@intel.com>
33 * Mike Galbraith <efault@gmx.de>
34 * Paul Mackerras <paulus@samba.org>
35 * Jaswinder Singh Rajput <jaswinder@kernel.org>
37 * Released under the GPL v2. (and only v2, not any later version)
42 #include "util/util.h"
43 #include "util/parse-options.h"
44 #include "util/parse-events.h"
45 #include "util/event.h"
46 #include "util/evlist.h"
47 #include "util/evsel.h"
48 #include "util/debug.h"
49 #include "util/header.h"
50 #include "util/cpumap.h"
51 #include "util/thread.h"
52 #include "util/thread_map.h"
54 #include <sys/prctl.h>
58 #define DEFAULT_SEPARATOR " "
60 static struct perf_event_attr default_attrs
[] = {
62 { .type
= PERF_TYPE_SOFTWARE
, .config
= PERF_COUNT_SW_TASK_CLOCK
},
63 { .type
= PERF_TYPE_SOFTWARE
, .config
= PERF_COUNT_SW_CONTEXT_SWITCHES
},
64 { .type
= PERF_TYPE_SOFTWARE
, .config
= PERF_COUNT_SW_CPU_MIGRATIONS
},
65 { .type
= PERF_TYPE_SOFTWARE
, .config
= PERF_COUNT_SW_PAGE_FAULTS
},
67 { .type
= PERF_TYPE_HARDWARE
, .config
= PERF_COUNT_HW_CPU_CYCLES
},
68 { .type
= PERF_TYPE_HARDWARE
, .config
= PERF_COUNT_HW_INSTRUCTIONS
},
69 { .type
= PERF_TYPE_HARDWARE
, .config
= PERF_COUNT_HW_BRANCH_INSTRUCTIONS
},
70 { .type
= PERF_TYPE_HARDWARE
, .config
= PERF_COUNT_HW_BRANCH_MISSES
},
71 { .type
= PERF_TYPE_HARDWARE
, .config
= PERF_COUNT_HW_CACHE_REFERENCES
},
72 { .type
= PERF_TYPE_HARDWARE
, .config
= PERF_COUNT_HW_CACHE_MISSES
},
76 struct perf_evlist
*evsel_list
;
78 static bool system_wide
= false;
79 static int run_idx
= 0;
81 static int run_count
= 1;
82 static bool no_inherit
= false;
83 static bool scale
= true;
84 static bool no_aggr
= false;
85 static pid_t target_pid
= -1;
86 static pid_t target_tid
= -1;
87 static pid_t child_pid
= -1;
88 static bool null_run
= false;
89 static bool big_num
= true;
90 static int big_num_opt
= -1;
91 static const char *cpu_list
;
92 static const char *csv_sep
= NULL
;
93 static bool csv_output
= false;
95 static volatile int done
= 0;
103 struct stats res_stats
[3];
106 static int perf_evsel__alloc_stat_priv(struct perf_evsel
*evsel
)
108 evsel
->priv
= zalloc(sizeof(struct perf_stat
));
109 return evsel
->priv
== NULL
? -ENOMEM
: 0;
112 static void perf_evsel__free_stat_priv(struct perf_evsel
*evsel
)
118 static void update_stats(struct stats
*stats
, u64 val
)
123 delta
= val
- stats
->mean
;
124 stats
->mean
+= delta
/ stats
->n
;
125 stats
->M2
+= delta
*(val
- stats
->mean
);
128 static double avg_stats(struct stats
*stats
)
134 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
136 * (\Sum n_i^2) - ((\Sum n_i)^2)/n
137 * s^2 = -------------------------------
140 * http://en.wikipedia.org/wiki/Stddev
142 * The std dev of the mean is related to the std dev by:
149 static double stddev_stats(struct stats
*stats
)
151 double variance
= stats
->M2
/ (stats
->n
- 1);
152 double variance_mean
= variance
/ stats
->n
;
154 return sqrt(variance_mean
);
157 struct stats runtime_nsecs_stats
[MAX_NR_CPUS
];
158 struct stats runtime_cycles_stats
[MAX_NR_CPUS
];
159 struct stats runtime_branches_stats
[MAX_NR_CPUS
];
160 struct stats walltime_nsecs_stats
;
162 static int create_perf_stat_counter(struct perf_evsel
*evsel
)
164 struct perf_event_attr
*attr
= &evsel
->attr
;
167 attr
->read_format
= PERF_FORMAT_TOTAL_TIME_ENABLED
|
168 PERF_FORMAT_TOTAL_TIME_RUNNING
;
170 attr
->inherit
= !no_inherit
;
173 return perf_evsel__open_per_cpu(evsel
, evsel_list
->cpus
, false);
175 if (target_pid
== -1 && target_tid
== -1) {
177 attr
->enable_on_exec
= 1;
180 return perf_evsel__open_per_thread(evsel
, evsel_list
->threads
, false);
184 * Does the counter have nsecs as a unit?
186 static inline int nsec_counter(struct perf_evsel
*evsel
)
188 if (perf_evsel__match(evsel
, SOFTWARE
, SW_CPU_CLOCK
) ||
189 perf_evsel__match(evsel
, SOFTWARE
, SW_TASK_CLOCK
))
196 * Read out the results of a single counter:
197 * aggregate counts across CPUs in system-wide mode
199 static int read_counter_aggr(struct perf_evsel
*counter
)
201 struct perf_stat
*ps
= counter
->priv
;
202 u64
*count
= counter
->counts
->aggr
.values
;
205 if (__perf_evsel__read(counter
, evsel_list
->cpus
->nr
,
206 evsel_list
->threads
->nr
, scale
) < 0)
209 for (i
= 0; i
< 3; i
++)
210 update_stats(&ps
->res_stats
[i
], count
[i
]);
213 fprintf(stderr
, "%s: %" PRIu64
" %" PRIu64
" %" PRIu64
"\n",
214 event_name(counter
), count
[0], count
[1], count
[2]);
218 * Save the full runtime - to allow normalization during printout:
220 if (perf_evsel__match(counter
, SOFTWARE
, SW_TASK_CLOCK
))
221 update_stats(&runtime_nsecs_stats
[0], count
[0]);
222 if (perf_evsel__match(counter
, HARDWARE
, HW_CPU_CYCLES
))
223 update_stats(&runtime_cycles_stats
[0], count
[0]);
224 if (perf_evsel__match(counter
, HARDWARE
, HW_BRANCH_INSTRUCTIONS
))
225 update_stats(&runtime_branches_stats
[0], count
[0]);
231 * Read out the results of a single counter:
232 * do not aggregate counts across CPUs in system-wide mode
234 static int read_counter(struct perf_evsel
*counter
)
239 for (cpu
= 0; cpu
< evsel_list
->cpus
->nr
; cpu
++) {
240 if (__perf_evsel__read_on_cpu(counter
, cpu
, 0, scale
) < 0)
243 count
= counter
->counts
->cpu
[cpu
].values
;
245 if (perf_evsel__match(counter
, SOFTWARE
, SW_TASK_CLOCK
))
246 update_stats(&runtime_nsecs_stats
[cpu
], count
[0]);
247 if (perf_evsel__match(counter
, HARDWARE
, HW_CPU_CYCLES
))
248 update_stats(&runtime_cycles_stats
[cpu
], count
[0]);
249 if (perf_evsel__match(counter
, HARDWARE
, HW_BRANCH_INSTRUCTIONS
))
250 update_stats(&runtime_branches_stats
[cpu
], count
[0]);
256 static int run_perf_stat(int argc __used
, const char **argv
)
258 unsigned long long t0
, t1
;
259 struct perf_evsel
*counter
;
261 int child_ready_pipe
[2], go_pipe
[2];
262 const bool forks
= (argc
> 0);
265 if (forks
&& (pipe(child_ready_pipe
) < 0 || pipe(go_pipe
) < 0)) {
266 perror("failed to create pipes");
271 if ((child_pid
= fork()) < 0)
272 perror("failed to fork");
275 close(child_ready_pipe
[0]);
277 fcntl(go_pipe
[0], F_SETFD
, FD_CLOEXEC
);
280 * Do a dummy execvp to get the PLT entry resolved,
281 * so we avoid the resolver overhead on the real
284 execvp("", (char **)argv
);
287 * Tell the parent we're ready to go
289 close(child_ready_pipe
[1]);
292 * Wait until the parent tells us to go.
294 if (read(go_pipe
[0], &buf
, 1) == -1)
295 perror("unable to read pipe");
297 execvp(argv
[0], (char **)argv
);
303 if (target_tid
== -1 && target_pid
== -1 && !system_wide
)
304 evsel_list
->threads
->map
[0] = child_pid
;
307 * Wait for the child to be ready to exec.
309 close(child_ready_pipe
[1]);
311 if (read(child_ready_pipe
[0], &buf
, 1) == -1)
312 perror("unable to read pipe");
313 close(child_ready_pipe
[0]);
316 list_for_each_entry(counter
, &evsel_list
->entries
, node
) {
317 if (create_perf_stat_counter(counter
) < 0) {
318 if (errno
== -EPERM
|| errno
== -EACCES
) {
319 error("You may not have permission to collect %sstats.\n"
320 "\t Consider tweaking"
321 " /proc/sys/kernel/perf_event_paranoid or running as root.",
322 system_wide
? "system-wide " : "");
323 } else if (errno
== ENOENT
) {
324 error("%s event is not supported. ", event_name(counter
));
326 error("open_counter returned with %d (%s). "
327 "/bin/dmesg may provide additional information.\n",
328 errno
, strerror(errno
));
331 kill(child_pid
, SIGTERM
);
332 die("Not all events could be opened.\n");
337 if (perf_evlist__set_filters(evsel_list
)) {
338 error("failed to set filter with %d (%s)\n", errno
,
344 * Enable counters and exec the command:
352 while(!done
) sleep(1);
357 update_stats(&walltime_nsecs_stats
, t1
- t0
);
360 list_for_each_entry(counter
, &evsel_list
->entries
, node
) {
361 read_counter(counter
);
362 perf_evsel__close_fd(counter
, evsel_list
->cpus
->nr
, 1);
365 list_for_each_entry(counter
, &evsel_list
->entries
, node
) {
366 read_counter_aggr(counter
);
367 perf_evsel__close_fd(counter
, evsel_list
->cpus
->nr
,
368 evsel_list
->threads
->nr
);
372 return WEXITSTATUS(status
);
375 static void print_noise(struct perf_evsel
*evsel
, double avg
)
377 struct perf_stat
*ps
;
383 fprintf(stderr
, " ( +- %7.3f%% )",
384 100 * stddev_stats(&ps
->res_stats
[0]) / avg
);
387 static void nsec_printout(int cpu
, struct perf_evsel
*evsel
, double avg
)
389 double msecs
= avg
/ 1e6
;
390 char cpustr
[16] = { '\0', };
391 const char *fmt
= csv_output
? "%s%.6f%s%s" : "%s%18.6f%s%-24s";
394 sprintf(cpustr
, "CPU%*d%s",
396 evsel_list
->cpus
->map
[cpu
], csv_sep
);
398 fprintf(stderr
, fmt
, cpustr
, msecs
, csv_sep
, event_name(evsel
));
401 fprintf(stderr
, "%s%s", csv_sep
, evsel
->cgrp
->name
);
406 if (perf_evsel__match(evsel
, SOFTWARE
, SW_TASK_CLOCK
))
407 fprintf(stderr
, " # %10.3f CPUs ",
408 avg
/ avg_stats(&walltime_nsecs_stats
));
411 static void abs_printout(int cpu
, struct perf_evsel
*evsel
, double avg
)
413 double total
, ratio
= 0.0;
414 char cpustr
[16] = { '\0', };
420 fmt
= "%s%'18.0f%s%-24s";
422 fmt
= "%s%18.0f%s%-24s";
425 sprintf(cpustr
, "CPU%*d%s",
427 evsel_list
->cpus
->map
[cpu
], csv_sep
);
431 fprintf(stderr
, fmt
, cpustr
, avg
, csv_sep
, event_name(evsel
));
434 fprintf(stderr
, "%s%s", csv_sep
, evsel
->cgrp
->name
);
439 if (perf_evsel__match(evsel
, HARDWARE
, HW_INSTRUCTIONS
)) {
440 total
= avg_stats(&runtime_cycles_stats
[cpu
]);
445 fprintf(stderr
, " # %10.3f IPC ", ratio
);
446 } else if (perf_evsel__match(evsel
, HARDWARE
, HW_BRANCH_MISSES
) &&
447 runtime_branches_stats
[cpu
].n
!= 0) {
448 total
= avg_stats(&runtime_branches_stats
[cpu
]);
451 ratio
= avg
* 100 / total
;
453 fprintf(stderr
, " # %10.3f %% ", ratio
);
455 } else if (runtime_nsecs_stats
[cpu
].n
!= 0) {
456 total
= avg_stats(&runtime_nsecs_stats
[cpu
]);
459 ratio
= 1000.0 * avg
/ total
;
461 fprintf(stderr
, " # %10.3f M/sec", ratio
);
466 * Print out the results of a single counter:
467 * aggregated counts in system-wide mode
469 static void print_counter_aggr(struct perf_evsel
*counter
)
471 struct perf_stat
*ps
= counter
->priv
;
472 double avg
= avg_stats(&ps
->res_stats
[0]);
473 int scaled
= counter
->counts
->scaled
;
476 fprintf(stderr
, "%*s%s%*s",
480 csv_output
? 0 : -24,
481 event_name(counter
));
484 fprintf(stderr
, "%s%s", csv_sep
, counter
->cgrp
->name
);
490 if (nsec_counter(counter
))
491 nsec_printout(-1, counter
, avg
);
493 abs_printout(-1, counter
, avg
);
500 print_noise(counter
, avg
);
503 double avg_enabled
, avg_running
;
505 avg_enabled
= avg_stats(&ps
->res_stats
[1]);
506 avg_running
= avg_stats(&ps
->res_stats
[2]);
508 fprintf(stderr
, " (scaled from %.2f%%)",
509 100 * avg_running
/ avg_enabled
);
511 fprintf(stderr
, "\n");
515 * Print out the results of a single counter:
516 * does not use aggregated count in system-wide
518 static void print_counter(struct perf_evsel
*counter
)
523 for (cpu
= 0; cpu
< evsel_list
->cpus
->nr
; cpu
++) {
524 val
= counter
->counts
->cpu
[cpu
].val
;
525 ena
= counter
->counts
->cpu
[cpu
].ena
;
526 run
= counter
->counts
->cpu
[cpu
].run
;
527 if (run
== 0 || ena
== 0) {
528 fprintf(stderr
, "CPU%*d%s%*s%s%*s",
530 evsel_list
->cpus
->map
[cpu
], csv_sep
,
532 "<not counted>", csv_sep
,
533 csv_output
? 0 : -24,
534 event_name(counter
));
537 fprintf(stderr
, "%s%s", csv_sep
, counter
->cgrp
->name
);
543 if (nsec_counter(counter
))
544 nsec_printout(cpu
, counter
, val
);
546 abs_printout(cpu
, counter
, val
);
549 print_noise(counter
, 1.0);
552 fprintf(stderr
, " (scaled from %.2f%%)",
560 static void print_stat(int argc
, const char **argv
)
562 struct perf_evsel
*counter
;
568 fprintf(stderr
, "\n");
569 fprintf(stderr
, " Performance counter stats for ");
570 if(target_pid
== -1 && target_tid
== -1) {
571 fprintf(stderr
, "\'%s", argv
[0]);
572 for (i
= 1; i
< argc
; i
++)
573 fprintf(stderr
, " %s", argv
[i
]);
574 } else if (target_pid
!= -1)
575 fprintf(stderr
, "process id \'%d", target_pid
);
577 fprintf(stderr
, "thread id \'%d", target_tid
);
579 fprintf(stderr
, "\'");
581 fprintf(stderr
, " (%d runs)", run_count
);
582 fprintf(stderr
, ":\n\n");
586 list_for_each_entry(counter
, &evsel_list
->entries
, node
)
587 print_counter(counter
);
589 list_for_each_entry(counter
, &evsel_list
->entries
, node
)
590 print_counter_aggr(counter
);
594 fprintf(stderr
, "\n");
595 fprintf(stderr
, " %18.9f seconds time elapsed",
596 avg_stats(&walltime_nsecs_stats
)/1e9
);
598 fprintf(stderr
, " ( +- %7.3f%% )",
599 100*stddev_stats(&walltime_nsecs_stats
) /
600 avg_stats(&walltime_nsecs_stats
));
602 fprintf(stderr
, "\n\n");
606 static volatile int signr
= -1;
608 static void skip_signal(int signo
)
616 static void sig_atexit(void)
619 kill(child_pid
, SIGTERM
);
624 signal(signr
, SIG_DFL
);
625 kill(getpid(), signr
);
628 static const char * const stat_usage
[] = {
629 "perf stat [<options>] [<command>]",
633 static int stat__set_big_num(const struct option
*opt __used
,
634 const char *s __used
, int unset
)
636 big_num_opt
= unset
? 0 : 1;
640 static const struct option options
[] = {
641 OPT_CALLBACK('e', "event", &evsel_list
, "event",
642 "event selector. use 'perf list' to list available events",
644 OPT_CALLBACK(0, "filter", &evsel_list
, "filter",
645 "event filter", parse_filter
),
646 OPT_BOOLEAN('i', "no-inherit", &no_inherit
,
647 "child tasks do not inherit counters"),
648 OPT_INTEGER('p', "pid", &target_pid
,
649 "stat events on existing process id"),
650 OPT_INTEGER('t', "tid", &target_tid
,
651 "stat events on existing thread id"),
652 OPT_BOOLEAN('a', "all-cpus", &system_wide
,
653 "system-wide collection from all CPUs"),
654 OPT_BOOLEAN('c', "scale", &scale
,
655 "scale/normalize counters"),
656 OPT_INCR('v', "verbose", &verbose
,
657 "be more verbose (show counter open errors, etc)"),
658 OPT_INTEGER('r', "repeat", &run_count
,
659 "repeat command and print average + stddev (max: 100)"),
660 OPT_BOOLEAN('n', "null", &null_run
,
661 "null run - dont start any counters"),
662 OPT_CALLBACK_NOOPT('B', "big-num", NULL
, NULL
,
663 "print large numbers with thousands\' separators",
665 OPT_STRING('C', "cpu", &cpu_list
, "cpu",
666 "list of cpus to monitor in system-wide"),
667 OPT_BOOLEAN('A', "no-aggr", &no_aggr
,
668 "disable CPU count aggregation"),
669 OPT_STRING('x', "field-separator", &csv_sep
, "separator",
670 "print counts with custom separator"),
671 OPT_CALLBACK('G', "cgroup", &evsel_list
, "name",
672 "monitor event in cgroup name only",
677 int cmd_stat(int argc
, const char **argv
, const char *prefix __used
)
679 struct perf_evsel
*pos
;
680 int status
= -ENOMEM
;
682 setlocale(LC_ALL
, "");
684 evsel_list
= perf_evlist__new(NULL
, NULL
);
685 if (evsel_list
== NULL
)
688 argc
= parse_options(argc
, argv
, options
, stat_usage
,
689 PARSE_OPT_STOP_AT_NON_OPTION
);
694 csv_sep
= DEFAULT_SEPARATOR
;
697 * let the spreadsheet do the pretty-printing
700 /* User explicitely passed -B? */
701 if (big_num_opt
== 1) {
702 fprintf(stderr
, "-B option not supported with -x\n");
703 usage_with_options(stat_usage
, options
);
704 } else /* Nope, so disable big number formatting */
706 } else if (big_num_opt
== 0) /* User passed --no-big-num */
709 if (!argc
&& target_pid
== -1 && target_tid
== -1)
710 usage_with_options(stat_usage
, options
);
712 usage_with_options(stat_usage
, options
);
714 /* no_aggr, cgroup are for system-wide only */
715 if ((no_aggr
|| nr_cgroups
) && !system_wide
) {
716 fprintf(stderr
, "both cgroup and no-aggregation "
717 "modes only available in system-wide mode\n");
719 usage_with_options(stat_usage
, options
);
722 /* Set attrs and nr_counters if no event is selected and !null_run */
723 if (!null_run
&& !evsel_list
->nr_entries
) {
726 for (c
= 0; c
< ARRAY_SIZE(default_attrs
); ++c
) {
727 pos
= perf_evsel__new(&default_attrs
[c
], c
);
730 perf_evlist__add(evsel_list
, pos
);
734 if (target_pid
!= -1)
735 target_tid
= target_pid
;
737 evsel_list
->threads
= thread_map__new(target_pid
, target_tid
);
738 if (evsel_list
->threads
== NULL
) {
739 pr_err("Problems finding threads of monitor\n");
740 usage_with_options(stat_usage
, options
);
744 evsel_list
->cpus
= cpu_map__new(cpu_list
);
746 evsel_list
->cpus
= cpu_map__dummy_new();
748 if (evsel_list
->cpus
== NULL
) {
749 perror("failed to parse CPUs map");
750 usage_with_options(stat_usage
, options
);
754 list_for_each_entry(pos
, &evsel_list
->entries
, node
) {
755 if (perf_evsel__alloc_stat_priv(pos
) < 0 ||
756 perf_evsel__alloc_counts(pos
, evsel_list
->cpus
->nr
) < 0 ||
757 perf_evsel__alloc_fd(pos
, evsel_list
->cpus
->nr
, evsel_list
->threads
->nr
) < 0)
762 * We dont want to block the signals - that would cause
763 * child tasks to inherit that and Ctrl-C would not work.
764 * What we want is for Ctrl-C to work in the exec()-ed
765 * task, but being ignored by perf stat itself:
768 signal(SIGINT
, skip_signal
);
769 signal(SIGALRM
, skip_signal
);
770 signal(SIGABRT
, skip_signal
);
773 for (run_idx
= 0; run_idx
< run_count
; run_idx
++) {
774 if (run_count
!= 1 && verbose
)
775 fprintf(stderr
, "[ perf stat: executing run #%d ... ]\n", run_idx
+ 1);
776 status
= run_perf_stat(argc
, argv
);
780 print_stat(argc
, argv
);
782 list_for_each_entry(pos
, &evsel_list
->entries
, node
)
783 perf_evsel__free_stat_priv(pos
);
784 perf_evlist__delete_maps(evsel_list
);
786 perf_evlist__delete(evsel_list
);