blob: c37368343fffa44c53e02d515f65f8a06c0d1976 [file] [log] [blame]
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-stat.c
3 *
4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
6 *
7 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02008
Ingo Molnarbf9e1872009-06-02 23:37:05 +02009 $ perf stat ~/hackbench 10
10 Time: 0.104
Ingo Molnarddcacfa2009-04-20 15:37:32 +020011
Ingo Molnarbf9e1872009-06-02 23:37:05 +020012 Performance counter stats for '/home/mingo/hackbench':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020013
Ingo Molnarbf9e1872009-06-02 23:37:05 +020014 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
Ingo Molnarddcacfa2009-04-20 15:37:32 +020022
Ingo Molnarbf9e1872009-06-02 23:37:05 +020023 Wall-clock time elapsed: 123.786620 msecs
Ingo Molnarddcacfa2009-04-20 15:37:32 +020024
Ingo Molnar52425192009-05-26 09:17:18 +020025 *
26 * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
27 *
28 * Improvements and fixes by:
29 *
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>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053035 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020036 *
37 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020038 */
39
Peter Zijlstra1a482f32009-05-23 18:28:58 +020040#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020041#include "builtin.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020042#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020043#include "util/parse-options.h"
44#include "util/parse-events.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020045#include "util/event.h"
46#include "util/debug.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020047
Ingo Molnarddcacfa2009-04-20 15:37:32 +020048#include <sys/prctl.h>
Ingo Molnar42202dd2009-06-13 14:57:28 +020049#include <math.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020050
Ingo Molnarcdd6c482009-09-21 12:02:48 +020051static struct perf_event_attr default_attrs[] = {
Ingo Molnara21ca2c2009-06-06 09:58:57 +020052
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +020053 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
54 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES},
55 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
56 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
Ingo Molnara21ca2c2009-06-06 09:58:57 +020057
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +020058 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
59 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
60 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES},
61 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES },
62
Ingo Molnara21ca2c2009-06-06 09:58:57 +020063};
64
Ingo Molnarddcacfa2009-04-20 15:37:32 +020065static int system_wide = 0;
Ingo Molnarf37a2912009-07-01 12:37:06 +020066static unsigned int nr_cpus = 0;
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053067static int run_idx = 0;
68
69static int run_count = 1;
70static int inherit = 1;
71static int scale = 1;
Chris Wilson933da832009-10-04 01:35:01 +010072static pid_t target_pid = -1;
73static pid_t child_pid = -1;
Ingo Molnar0cfb7a12009-06-27 06:10:30 +020074static int null_run = 0;
Ingo Molnarddcacfa2009-04-20 15:37:32 +020075
Ingo Molnarddcacfa2009-04-20 15:37:32 +020076static int fd[MAX_NR_CPUS][MAX_COUNTERS];
77
Peter Zijlstra63d40de2009-09-04 17:03:13 +020078static int event_scaled[MAX_COUNTERS];
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053079
Peter Zijlstra506d4bc2009-09-04 15:36:12 +020080struct stats
81{
Peter Zijlstra8a026312009-09-04 17:26:26 +020082 double n, mean, M2;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +020083};
Ingo Molnar42202dd2009-06-13 14:57:28 +020084
Peter Zijlstra9e9772c2009-09-04 15:36:08 +020085static void update_stats(struct stats *stats, u64 val)
86{
Peter Zijlstra8a026312009-09-04 17:26:26 +020087 double delta;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +020088
Peter Zijlstra8a026312009-09-04 17:26:26 +020089 stats->n++;
90 delta = val - stats->mean;
91 stats->mean += delta / stats->n;
92 stats->M2 += delta*(val - stats->mean);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +020093}
94
Peter Zijlstra506d4bc2009-09-04 15:36:12 +020095static double avg_stats(struct stats *stats)
96{
Peter Zijlstra8a026312009-09-04 17:26:26 +020097 return stats->mean;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +020098}
Ingo Molnar42202dd2009-06-13 14:57:28 +020099
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200100/*
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200101 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
102 *
Peter Zijlstra8a026312009-09-04 17:26:26 +0200103 * (\Sum n_i^2) - ((\Sum n_i)^2)/n
104 * s^2 = -------------------------------
105 * n - 1
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200106 *
107 * http://en.wikipedia.org/wiki/Stddev
108 *
109 * The std dev of the mean is related to the std dev by:
110 *
111 * s
112 * s_mean = -------
113 * sqrt(n)
114 *
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200115 */
116static double stddev_stats(struct stats *stats)
117{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200118 double variance = stats->M2 / (stats->n - 1);
119 double variance_mean = variance / stats->n;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200120
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200121 return sqrt(variance_mean);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200122}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200123
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200124struct stats event_res_stats[MAX_COUNTERS][3];
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200125struct stats runtime_nsecs_stats;
126struct stats walltime_nsecs_stats;
127struct stats runtime_cycles_stats;
Anton Blanchard11018202009-10-18 22:29:23 +1100128struct stats runtime_branches_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200129
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530130#define MATCH_EVENT(t, c, counter) \
131 (attrs[counter].type == PERF_TYPE_##t && \
132 attrs[counter].config == PERF_COUNT_##c)
133
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530134#define ERR_PERF_OPEN \
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200135"Error: counter %d, sys_perf_event_open() syscall returned with %d (%s)\n"
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530136
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000137static void create_perf_stat_counter(int counter, int pid)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200138{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200139 struct perf_event_attr *attr = attrs + counter;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200140
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200141 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200142 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
143 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200144
145 if (system_wide) {
Ingo Molnarf37a2912009-07-01 12:37:06 +0200146 unsigned int cpu;
147
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530148 for (cpu = 0; cpu < nr_cpus; cpu++) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200149 fd[cpu][counter] = sys_perf_event_open(attr, -1, cpu, -1, 0);
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530150 if (fd[cpu][counter] < 0 && verbose)
151 fprintf(stderr, ERR_PERF_OPEN, counter,
152 fd[cpu][counter], strerror(errno));
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200153 }
154 } else {
Paul Mackerras57e79862009-06-30 16:07:19 +1000155 attr->inherit = inherit;
156 attr->disabled = 1;
157 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200158
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200159 fd[0][counter] = sys_perf_event_open(attr, pid, -1, -1, 0);
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530160 if (fd[0][counter] < 0 && verbose)
161 fprintf(stderr, ERR_PERF_OPEN, counter,
162 fd[0][counter], strerror(errno));
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200163 }
164}
165
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200166/*
167 * Does the counter have nsecs as a unit?
168 */
169static inline int nsec_counter(int counter)
170{
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530171 if (MATCH_EVENT(SOFTWARE, SW_CPU_CLOCK, counter) ||
172 MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200173 return 1;
174
175 return 0;
176}
177
178/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200179 * Read out the results of a single counter:
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200180 */
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200181static void read_counter(int counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200182{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200183 u64 count[3], single_count[3];
Ingo Molnarf37a2912009-07-01 12:37:06 +0200184 unsigned int cpu;
185 size_t res, nv;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200186 int scaled;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200187 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200188
189 count[0] = count[1] = count[2] = 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200190
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200191 nv = scale ? 3 : 1;
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530192 for (cpu = 0; cpu < nr_cpus; cpu++) {
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200193 if (fd[cpu][counter] < 0)
194 continue;
195
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000196 res = read(fd[cpu][counter], single_count, nv * sizeof(u64));
197 assert(res == nv * sizeof(u64));
Ingo Molnarf37a2912009-07-01 12:37:06 +0200198
Ingo Molnar42202dd2009-06-13 14:57:28 +0200199 close(fd[cpu][counter]);
200 fd[cpu][counter] = -1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200201
202 count[0] += single_count[0];
203 if (scale) {
204 count[1] += single_count[1];
205 count[2] += single_count[2];
206 }
207 }
208
209 scaled = 0;
210 if (scale) {
211 if (count[2] == 0) {
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200212 event_scaled[counter] = -1;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200213 count[0] = 0;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200214 return;
215 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200216
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200217 if (count[2] < count[1]) {
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200218 event_scaled[counter] = 1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200219 count[0] = (unsigned long long)
220 ((double)count[0] * count[1] / count[2] + 0.5);
221 }
222 }
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200223
224 for (i = 0; i < 3; i++)
225 update_stats(&event_res_stats[counter][i], count[i]);
226
227 if (verbose) {
228 fprintf(stderr, "%s: %Ld %Ld %Ld\n", event_name(counter),
229 count[0], count[1], count[2]);
230 }
231
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200232 /*
233 * Save the full runtime - to allow normalization during printout:
234 */
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530235 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200236 update_stats(&runtime_nsecs_stats, count[0]);
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530237 if (MATCH_EVENT(HARDWARE, HW_CPU_CYCLES, counter))
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200238 update_stats(&runtime_cycles_stats, count[0]);
Anton Blanchard11018202009-10-18 22:29:23 +1100239 if (MATCH_EVENT(HARDWARE, HW_BRANCH_INSTRUCTIONS, counter))
240 update_stats(&runtime_branches_stats, count[0]);
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200241}
242
Ingo Molnarf37a2912009-07-01 12:37:06 +0200243static int run_perf_stat(int argc __used, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200244{
245 unsigned long long t0, t1;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200246 int status = 0;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200247 int counter;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200248 int pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000249 int child_ready_pipe[2], go_pipe[2];
250 char buf;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200251
252 if (!system_wide)
253 nr_cpus = 1;
254
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000255 if (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0) {
256 perror("failed to create pipes");
257 exit(1);
258 }
259
260 if ((pid = fork()) < 0)
261 perror("failed to fork");
262
263 if (!pid) {
264 close(child_ready_pipe[0]);
265 close(go_pipe[1]);
266 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
267
268 /*
269 * Do a dummy execvp to get the PLT entry resolved,
270 * so we avoid the resolver overhead on the real
271 * execvp call.
272 */
273 execvp("", (char **)argv);
274
275 /*
276 * Tell the parent we're ready to go
277 */
278 close(child_ready_pipe[1]);
279
280 /*
281 * Wait until the parent tells us to go.
282 */
Frederic Weisbeckera92bef02009-07-01 21:02:10 +0200283 if (read(go_pipe[0], &buf, 1) == -1)
284 perror("unable to read pipe");
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000285
286 execvp(argv[0], (char **)argv);
287
288 perror(argv[0]);
289 exit(-1);
290 }
291
Chris Wilson933da832009-10-04 01:35:01 +0100292 child_pid = pid;
293
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000294 /*
295 * Wait for the child to be ready to exec.
296 */
297 close(child_ready_pipe[1]);
298 close(go_pipe[0]);
Frederic Weisbeckera92bef02009-07-01 21:02:10 +0200299 if (read(child_ready_pipe[0], &buf, 1) == -1)
300 perror("unable to read pipe");
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000301 close(child_ready_pipe[0]);
302
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200303 for (counter = 0; counter < nr_counters; counter++)
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000304 create_perf_stat_counter(counter, pid);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200305
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200306 /*
307 * Enable counters and exec the command:
308 */
309 t0 = rdclock();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200310
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000311 close(go_pipe[1]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200312 wait(&status);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200313
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200314 t1 = rdclock();
315
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200316 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200317
318 for (counter = 0; counter < nr_counters; counter++)
319 read_counter(counter);
320
321 return WEXITSTATUS(status);
322}
323
Peter Zijlstra849abde2009-09-04 18:23:38 +0200324static void print_noise(int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200325{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200326 if (run_count == 1)
327 return;
328
329 fprintf(stderr, " ( +- %7.3f%% )",
330 100 * stddev_stats(&event_res_stats[counter][0]) / avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200331}
332
Peter Zijlstra849abde2009-09-04 18:23:38 +0200333static void nsec_printout(int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200334{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200335 double msecs = avg / 1e6;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200336
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +0530337 fprintf(stderr, " %14.6f %-24s", msecs, event_name(counter));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200338
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530339 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter)) {
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200340 fprintf(stderr, " # %10.3f CPUs ",
341 avg / avg_stats(&walltime_nsecs_stats));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200342 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200343}
344
Peter Zijlstra849abde2009-09-04 18:23:38 +0200345static void abs_printout(int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200346{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200347 double total, ratio = 0.0;
348
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200349 fprintf(stderr, " %14.0f %-24s", avg, event_name(counter));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200350
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200351 if (MATCH_EVENT(HARDWARE, HW_INSTRUCTIONS, counter)) {
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200352 total = avg_stats(&runtime_cycles_stats);
353
354 if (total)
355 ratio = avg / total;
356
357 fprintf(stderr, " # %10.3f IPC ", ratio);
Anton Blanchard11018202009-10-18 22:29:23 +1100358 } else if (MATCH_EVENT(HARDWARE, HW_BRANCH_MISSES, counter)) {
359 total = avg_stats(&runtime_branches_stats);
360
361 if (total)
362 ratio = avg * 100 / total;
363
364 fprintf(stderr, " # %10.3f %% ", ratio);
365
Ingo Molnar42202dd2009-06-13 14:57:28 +0200366 } else {
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200367 total = avg_stats(&runtime_nsecs_stats);
368
369 if (total)
370 ratio = 1000.0 * avg / total;
371
372 fprintf(stderr, " # %10.3f M/sec", ratio);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200373 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200374}
375
376/*
377 * Print out the results of a single counter:
378 */
379static void print_counter(int counter)
380{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200381 double avg = avg_stats(&event_res_stats[counter][0]);
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200382 int scaled = event_scaled[counter];
Ingo Molnar42202dd2009-06-13 14:57:28 +0200383
Ingo Molnar42202dd2009-06-13 14:57:28 +0200384 if (scaled == -1) {
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +0530385 fprintf(stderr, " %14s %-24s\n",
Ingo Molnar42202dd2009-06-13 14:57:28 +0200386 "<not counted>", event_name(counter));
387 return;
388 }
389
390 if (nsec_counter(counter))
Peter Zijlstra849abde2009-09-04 18:23:38 +0200391 nsec_printout(counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200392 else
Peter Zijlstra849abde2009-09-04 18:23:38 +0200393 abs_printout(counter, avg);
394
395 print_noise(counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200396
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200397 if (scaled) {
398 double avg_enabled, avg_running;
399
400 avg_enabled = avg_stats(&event_res_stats[counter][1]);
401 avg_running = avg_stats(&event_res_stats[counter][2]);
402
Ingo Molnar210ad392009-06-29 21:50:54 +0200403 fprintf(stderr, " (scaled from %.2f%%)",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200404 100 * avg_running / avg_enabled);
405 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200406
407 fprintf(stderr, "\n");
408}
409
Ingo Molnar42202dd2009-06-13 14:57:28 +0200410static void print_stat(int argc, const char **argv)
411{
412 int i, counter;
413
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200414 fflush(stdout);
415
416 fprintf(stderr, "\n");
Ingo Molnar44db76c2009-06-03 19:36:07 +0200417 fprintf(stderr, " Performance counter stats for \'%s", argv[0]);
418
419 for (i = 1; i < argc; i++)
420 fprintf(stderr, " %s", argv[i]);
421
Ingo Molnar42202dd2009-06-13 14:57:28 +0200422 fprintf(stderr, "\'");
423 if (run_count > 1)
424 fprintf(stderr, " (%d runs)", run_count);
425 fprintf(stderr, ":\n\n");
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200426
427 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200428 print_counter(counter);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200429
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200430 fprintf(stderr, "\n");
Ingo Molnar566747e2009-06-27 06:24:32 +0200431 fprintf(stderr, " %14.9f seconds time elapsed",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200432 avg_stats(&walltime_nsecs_stats)/1e9);
Ingo Molnar566747e2009-06-27 06:24:32 +0200433 if (run_count > 1) {
434 fprintf(stderr, " ( +- %7.3f%% )",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200435 100*stddev_stats(&walltime_nsecs_stats) /
436 avg_stats(&walltime_nsecs_stats));
Ingo Molnar566747e2009-06-27 06:24:32 +0200437 }
438 fprintf(stderr, "\n\n");
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200439}
440
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200441static volatile int signr = -1;
442
Ingo Molnar52425192009-05-26 09:17:18 +0200443static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200444{
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200445 signr = signo;
446}
447
448static void sig_atexit(void)
449{
Chris Wilson933da832009-10-04 01:35:01 +0100450 if (child_pid != -1)
451 kill(child_pid, SIGTERM);
452
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200453 if (signr == -1)
454 return;
455
456 signal(signr, SIG_DFL);
457 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200458}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200459
Ingo Molnar52425192009-05-26 09:17:18 +0200460static const char * const stat_usage[] = {
461 "perf stat [<options>] <command>",
462 NULL
463};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200464
Ingo Molnar52425192009-05-26 09:17:18 +0200465static const struct option options[] = {
466 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200467 "event selector. use 'perf list' to list available events",
468 parse_events),
Ingo Molnar52425192009-05-26 09:17:18 +0200469 OPT_BOOLEAN('i', "inherit", &inherit,
470 "child tasks inherit counters"),
471 OPT_INTEGER('p', "pid", &target_pid,
472 "stat events on existing pid"),
473 OPT_BOOLEAN('a', "all-cpus", &system_wide,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530474 "system-wide collection from all CPUs"),
Brice Goglinb26bc5a2009-08-07 10:18:39 +0200475 OPT_BOOLEAN('c', "scale", &scale,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530476 "scale/normalize counters"),
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200477 OPT_BOOLEAN('v', "verbose", &verbose,
478 "be more verbose (show counter open errors, etc)"),
Ingo Molnar42202dd2009-06-13 14:57:28 +0200479 OPT_INTEGER('r', "repeat", &run_count,
480 "repeat command and print average + stddev (max: 100)"),
Ingo Molnar0cfb7a12009-06-27 06:10:30 +0200481 OPT_BOOLEAN('n', "null", &null_run,
482 "null run - dont start any counters"),
Ingo Molnar52425192009-05-26 09:17:18 +0200483 OPT_END()
484};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200485
Ingo Molnarf37a2912009-07-01 12:37:06 +0200486int cmd_stat(int argc, const char **argv, const char *prefix __used)
Ingo Molnar52425192009-05-26 09:17:18 +0200487{
Ingo Molnar42202dd2009-06-13 14:57:28 +0200488 int status;
489
Anton Blancharda0541232009-07-22 23:04:12 +1000490 argc = parse_options(argc, argv, options, stat_usage,
491 PARSE_OPT_STOP_AT_NON_OPTION);
Ingo Molnar52425192009-05-26 09:17:18 +0200492 if (!argc)
493 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200494 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200495 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200496
Jaswinder Singh Rajputc3043562009-06-27 23:49:09 +0530497 /* Set attrs and nr_counters if no event is selected and !null_run */
498 if (!null_run && !nr_counters) {
499 memcpy(attrs, default_attrs, sizeof(default_attrs));
500 nr_counters = ARRAY_SIZE(default_attrs);
501 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200502
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200503 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
504 assert(nr_cpus <= MAX_NR_CPUS);
Ingo Molnarf37a2912009-07-01 12:37:06 +0200505 assert((int)nr_cpus >= 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200506
Ingo Molnar58d7e992009-05-15 11:03:23 +0200507 /*
508 * We dont want to block the signals - that would cause
509 * child tasks to inherit that and Ctrl-C would not work.
510 * What we want is for Ctrl-C to work in the exec()-ed
511 * task, but being ignored by perf stat itself:
512 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200513 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +0200514 signal(SIGINT, skip_signal);
515 signal(SIGALRM, skip_signal);
516 signal(SIGABRT, skip_signal);
517
Ingo Molnar42202dd2009-06-13 14:57:28 +0200518 status = 0;
519 for (run_idx = 0; run_idx < run_count; run_idx++) {
520 if (run_count != 1 && verbose)
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530521 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200522 status = run_perf_stat(argc, argv);
523 }
524
525 print_stat(argc, argv);
526
527 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200528}