blob: 9eb42b1ae784d4bc8c538cb54cb6bcd9e5742ed3 [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>
35 *
36 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020037 */
38
Peter Zijlstra1a482f32009-05-23 18:28:58 +020039#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020040#include "builtin.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020041#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020042#include "util/parse-options.h"
43#include "util/parse-events.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020044
Ingo Molnarddcacfa2009-04-20 15:37:32 +020045#include <sys/prctl.h>
Ingo Molnar42202dd2009-06-13 14:57:28 +020046#include <math.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020047
Ingo Molnara21ca2c2009-06-06 09:58:57 +020048static struct perf_counter_attr default_attrs[MAX_COUNTERS] = {
49
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +020050 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
51 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES},
52 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
53 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
Ingo Molnara21ca2c2009-06-06 09:58:57 +020054
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +020055 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
56 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
57 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES},
58 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES },
59
Ingo Molnara21ca2c2009-06-06 09:58:57 +020060};
61
Ingo Molnarddcacfa2009-04-20 15:37:32 +020062static int system_wide = 0;
Ingo Molnar52425192009-05-26 09:17:18 +020063static int inherit = 1;
Ingo Molnar743ee1f2009-06-07 17:06:46 +020064static int verbose = 0;
Ingo Molnarddcacfa2009-04-20 15:37:32 +020065
Ingo Molnarddcacfa2009-04-20 15:37:32 +020066static int fd[MAX_NR_CPUS][MAX_COUNTERS];
67
Ingo Molnar52425192009-05-26 09:17:18 +020068static int target_pid = -1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +020069static int nr_cpus = 0;
Ingo Molnarddcacfa2009-04-20 15:37:32 +020070static unsigned int page_size;
71
Ingo Molnar66cf7822009-04-30 13:53:33 +020072static int scale = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +020073
74static const unsigned int default_count[] = {
75 1000000,
76 1000000,
77 10000,
78 10000,
79 1000000,
80 10000,
81};
82
Ingo Molnar42202dd2009-06-13 14:57:28 +020083#define MAX_RUN 100
Ingo Molnar2996f5d2009-05-29 09:10:54 +020084
Ingo Molnar42202dd2009-06-13 14:57:28 +020085static int run_count = 1;
86static int run_idx = 0;
87
88static __u64 event_res[MAX_RUN][MAX_COUNTERS][3];
89static __u64 event_scaled[MAX_RUN][MAX_COUNTERS];
90
91//static __u64 event_hist[MAX_RUN][MAX_COUNTERS][3];
92
93
94static __u64 runtime_nsecs[MAX_RUN];
95static __u64 walltime_nsecs[MAX_RUN];
96static __u64 runtime_cycles[MAX_RUN];
97
98static __u64 event_res_avg[MAX_COUNTERS][3];
99static __u64 event_res_noise[MAX_COUNTERS][3];
100
101static __u64 event_scaled_avg[MAX_COUNTERS];
102
103static __u64 runtime_nsecs_avg;
104static __u64 runtime_nsecs_noise;
105
106static __u64 walltime_nsecs_avg;
107static __u64 walltime_nsecs_noise;
108
109static __u64 runtime_cycles_avg;
110static __u64 runtime_cycles_noise;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200111
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200112static void create_perf_stat_counter(int counter)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200113{
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200114 struct perf_counter_attr *attr = attrs + counter;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200115
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200116 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200117 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
118 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200119
120 if (system_wide) {
121 int cpu;
122 for (cpu = 0; cpu < nr_cpus; cpu ++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200123 fd[cpu][counter] = sys_perf_counter_open(attr, -1, cpu, -1, 0);
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200124 if (fd[cpu][counter] < 0 && verbose) {
125 printf("Error: counter %d, sys_perf_counter_open() syscall returned with %d (%s)\n", counter, fd[cpu][counter], strerror(errno));
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200126 }
127 }
128 } else {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200129 attr->inherit = inherit;
130 attr->disabled = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200131
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200132 fd[0][counter] = sys_perf_counter_open(attr, 0, -1, -1, 0);
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200133 if (fd[0][counter] < 0 && verbose) {
134 printf("Error: counter %d, sys_perf_counter_open() syscall returned with %d (%s)\n", counter, fd[0][counter], strerror(errno));
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200135 }
136 }
137}
138
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200139/*
140 * Does the counter have nsecs as a unit?
141 */
142static inline int nsec_counter(int counter)
143{
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200144 if (attrs[counter].type != PERF_TYPE_SOFTWARE)
145 return 0;
146
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200147 if (attrs[counter].config == PERF_COUNT_SW_CPU_CLOCK)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200148 return 1;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200149
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200150 if (attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200151 return 1;
152
153 return 0;
154}
155
156/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200157 * Read out the results of a single counter:
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200158 */
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200159static void read_counter(int counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200160{
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200161 __u64 *count, single_count[3];
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200162 ssize_t res;
163 int cpu, nv;
164 int scaled;
165
Ingo Molnar42202dd2009-06-13 14:57:28 +0200166 count = event_res[run_idx][counter];
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200167
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200168 count[0] = count[1] = count[2] = 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200169
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200170 nv = scale ? 3 : 1;
171 for (cpu = 0; cpu < nr_cpus; cpu ++) {
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200172 if (fd[cpu][counter] < 0)
173 continue;
174
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200175 res = read(fd[cpu][counter], single_count, nv * sizeof(__u64));
176 assert(res == nv * sizeof(__u64));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200177 close(fd[cpu][counter]);
178 fd[cpu][counter] = -1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200179
180 count[0] += single_count[0];
181 if (scale) {
182 count[1] += single_count[1];
183 count[2] += single_count[2];
184 }
185 }
186
187 scaled = 0;
188 if (scale) {
189 if (count[2] == 0) {
Ingo Molnar42202dd2009-06-13 14:57:28 +0200190 event_scaled[run_idx][counter] = -1;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200191 count[0] = 0;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200192 return;
193 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200194
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200195 if (count[2] < count[1]) {
Ingo Molnar42202dd2009-06-13 14:57:28 +0200196 event_scaled[run_idx][counter] = 1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200197 count[0] = (unsigned long long)
198 ((double)count[0] * count[1] / count[2] + 0.5);
199 }
200 }
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200201 /*
202 * Save the full runtime - to allow normalization during printout:
203 */
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200204 if (attrs[counter].type == PERF_TYPE_SOFTWARE &&
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200205 attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200206 runtime_nsecs[run_idx] = count[0];
Ingo Molnare7798982009-06-07 18:14:46 +0200207 if (attrs[counter].type == PERF_TYPE_HARDWARE &&
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200208 attrs[counter].config == PERF_COUNT_HW_CPU_CYCLES)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200209 runtime_cycles[run_idx] = count[0];
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200210}
211
Ingo Molnar42202dd2009-06-13 14:57:28 +0200212static int run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200213{
214 unsigned long long t0, t1;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200215 int status = 0;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200216 int counter;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200217 int pid;
218
219 if (!system_wide)
220 nr_cpus = 1;
221
222 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200223 create_perf_stat_counter(counter);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200224
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200225 /*
226 * Enable counters and exec the command:
227 */
228 t0 = rdclock();
229 prctl(PR_TASK_PERF_COUNTERS_ENABLE);
230
231 if ((pid = fork()) < 0)
232 perror("failed to fork");
Ingo Molnar44db76c2009-06-03 19:36:07 +0200233
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200234 if (!pid) {
Ingo Molnar52425192009-05-26 09:17:18 +0200235 if (execvp(argv[0], (char **)argv)) {
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200236 perror(argv[0]);
237 exit(-1);
238 }
239 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200240
Ingo Molnar42202dd2009-06-13 14:57:28 +0200241 wait(&status);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200242
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200243 prctl(PR_TASK_PERF_COUNTERS_DISABLE);
244 t1 = rdclock();
245
Ingo Molnar42202dd2009-06-13 14:57:28 +0200246 walltime_nsecs[run_idx] = t1 - t0;
247
248 for (counter = 0; counter < nr_counters; counter++)
249 read_counter(counter);
250
251 return WEXITSTATUS(status);
252}
253
254static void print_noise(__u64 *count, __u64 *noise)
255{
256 if (run_count > 1)
257 fprintf(stderr, " ( +- %7.3f%% )",
258 (double)noise[0]/(count[0]+1)*100.0);
259}
260
261static void nsec_printout(int counter, __u64 *count, __u64 *noise)
262{
263 double msecs = (double)count[0] / 1000000;
264
265 fprintf(stderr, " %14.6f %-20s", msecs, event_name(counter));
266
267 if (attrs[counter].type == PERF_TYPE_SOFTWARE &&
268 attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK) {
269
270 if (walltime_nsecs_avg)
271 fprintf(stderr, " # %10.3f CPUs ",
272 (double)count[0] / (double)walltime_nsecs_avg);
273 }
274 print_noise(count, noise);
275}
276
277static void abs_printout(int counter, __u64 *count, __u64 *noise)
278{
279 fprintf(stderr, " %14Ld %-20s", count[0], event_name(counter));
280
281 if (runtime_cycles_avg &&
282 attrs[counter].type == PERF_TYPE_HARDWARE &&
283 attrs[counter].config == PERF_COUNT_HW_INSTRUCTIONS) {
284
285 fprintf(stderr, " # %10.3f IPC ",
286 (double)count[0] / (double)runtime_cycles_avg);
287 } else {
288 if (runtime_nsecs_avg) {
289 fprintf(stderr, " # %10.3f M/sec",
290 (double)count[0]/runtime_nsecs_avg*1000.0);
291 }
292 }
293 print_noise(count, noise);
294}
295
296/*
297 * Print out the results of a single counter:
298 */
299static void print_counter(int counter)
300{
301 __u64 *count, *noise;
302 int scaled;
303
304 count = event_res_avg[counter];
305 noise = event_res_noise[counter];
306 scaled = event_scaled_avg[counter];
307
308 if (scaled == -1) {
309 fprintf(stderr, " %14s %-20s\n",
310 "<not counted>", event_name(counter));
311 return;
312 }
313
314 if (nsec_counter(counter))
315 nsec_printout(counter, count, noise);
316 else
317 abs_printout(counter, count, noise);
318
319 if (scaled)
320 fprintf(stderr, " (scaled from %.2f%%)",
321 (double) count[2] / count[1] * 100);
322
323 fprintf(stderr, "\n");
324}
325
326/*
327 * Normalize noise values down to stddev:
328 */
329static void normalize(__u64 *val)
330{
331 double res;
332
333 res = (double)*val / (run_count * sqrt((double)run_count));
334
335 *val = (__u64)res;
336}
337
338/*
339 * Calculate the averages and noises:
340 */
341static void calc_avg(void)
342{
343 int i, j;
344
345 for (i = 0; i < run_count; i++) {
346 runtime_nsecs_avg += runtime_nsecs[i];
347 walltime_nsecs_avg += walltime_nsecs[i];
348 runtime_cycles_avg += runtime_cycles[i];
349
350 for (j = 0; j < nr_counters; j++) {
351 event_res_avg[j][0] += event_res[i][j][0];
352 event_res_avg[j][1] += event_res[i][j][1];
353 event_res_avg[j][2] += event_res[i][j][2];
354 event_scaled_avg[j] += event_scaled[i][j];
355 }
356 }
357 runtime_nsecs_avg /= run_count;
358 walltime_nsecs_avg /= run_count;
359 runtime_cycles_avg /= run_count;
360
361 for (j = 0; j < nr_counters; j++) {
362 event_res_avg[j][0] /= run_count;
363 event_res_avg[j][1] /= run_count;
364 event_res_avg[j][2] /= run_count;
365 }
366
367 for (i = 0; i < run_count; i++) {
368 runtime_nsecs_noise +=
369 abs((__s64)(runtime_nsecs[i] - runtime_nsecs_avg));
370 walltime_nsecs_noise +=
371 abs((__s64)(walltime_nsecs[i] - walltime_nsecs_avg));
372 runtime_cycles_noise +=
373 abs((__s64)(runtime_cycles[i] - runtime_cycles_avg));
374
375 for (j = 0; j < nr_counters; j++) {
376 event_res_noise[j][0] +=
377 abs((__s64)(event_res[i][j][0] - event_res_avg[j][0]));
378 event_res_noise[j][1] +=
379 abs((__s64)(event_res[i][j][1] - event_res_avg[j][1]));
380 event_res_noise[j][2] +=
381 abs((__s64)(event_res[i][j][2] - event_res_avg[j][2]));
382 }
383 }
384
385 normalize(&runtime_nsecs_noise);
386 normalize(&walltime_nsecs_noise);
387 normalize(&runtime_cycles_noise);
388
389 for (j = 0; j < nr_counters; j++) {
390 normalize(&event_res_noise[j][0]);
391 normalize(&event_res_noise[j][1]);
392 normalize(&event_res_noise[j][2]);
393 }
394}
395
396static void print_stat(int argc, const char **argv)
397{
398 int i, counter;
399
400 calc_avg();
401
402 run_idx = 0;
Ingo Molnard7c29312009-05-30 12:38:51 +0200403
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200404 fflush(stdout);
405
406 fprintf(stderr, "\n");
Ingo Molnar44db76c2009-06-03 19:36:07 +0200407 fprintf(stderr, " Performance counter stats for \'%s", argv[0]);
408
409 for (i = 1; i < argc; i++)
410 fprintf(stderr, " %s", argv[i]);
411
Ingo Molnar42202dd2009-06-13 14:57:28 +0200412 fprintf(stderr, "\'");
413 if (run_count > 1)
414 fprintf(stderr, " (%d runs)", run_count);
415 fprintf(stderr, ":\n\n");
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200416
417 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200418 print_counter(counter);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200419
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200420
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200421 fprintf(stderr, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200422 fprintf(stderr, " %14.9f seconds time elapsed.\n",
423 (double)walltime_nsecs_avg/1e9);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200424 fprintf(stderr, "\n");
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200425}
426
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200427static volatile int signr = -1;
428
Ingo Molnar52425192009-05-26 09:17:18 +0200429static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200430{
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200431 signr = signo;
432}
433
434static void sig_atexit(void)
435{
436 if (signr == -1)
437 return;
438
439 signal(signr, SIG_DFL);
440 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200441}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200442
Ingo Molnar52425192009-05-26 09:17:18 +0200443static const char * const stat_usage[] = {
444 "perf stat [<options>] <command>",
445 NULL
446};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200447
Ingo Molnar52425192009-05-26 09:17:18 +0200448static const struct option options[] = {
449 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200450 "event selector. use 'perf list' to list available events",
451 parse_events),
Ingo Molnar52425192009-05-26 09:17:18 +0200452 OPT_BOOLEAN('i', "inherit", &inherit,
453 "child tasks inherit counters"),
454 OPT_INTEGER('p', "pid", &target_pid,
455 "stat events on existing pid"),
456 OPT_BOOLEAN('a', "all-cpus", &system_wide,
457 "system-wide collection from all CPUs"),
Thomas Gleixner86847b62009-06-06 12:24:17 +0200458 OPT_BOOLEAN('S', "scale", &scale,
Ingo Molnar52425192009-05-26 09:17:18 +0200459 "scale/normalize counters"),
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200460 OPT_BOOLEAN('v', "verbose", &verbose,
461 "be more verbose (show counter open errors, etc)"),
Ingo Molnar42202dd2009-06-13 14:57:28 +0200462 OPT_INTEGER('r', "repeat", &run_count,
463 "repeat command and print average + stddev (max: 100)"),
Ingo Molnar52425192009-05-26 09:17:18 +0200464 OPT_END()
465};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200466
Ingo Molnar52425192009-05-26 09:17:18 +0200467int cmd_stat(int argc, const char **argv, const char *prefix)
468{
Ingo Molnar42202dd2009-06-13 14:57:28 +0200469 int status;
470
Ingo Molnar52425192009-05-26 09:17:18 +0200471 page_size = sysconf(_SC_PAGE_SIZE);
472
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200473 memcpy(attrs, default_attrs, sizeof(attrs));
Ingo Molnar52425192009-05-26 09:17:18 +0200474
475 argc = parse_options(argc, argv, options, stat_usage, 0);
476 if (!argc)
477 usage_with_options(stat_usage, options);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200478 if (run_count <= 0 || run_count > MAX_RUN)
479 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200480
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200481 if (!nr_counters)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200482 nr_counters = 8;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200483
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200484 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
485 assert(nr_cpus <= MAX_NR_CPUS);
486 assert(nr_cpus >= 0);
487
Ingo Molnar58d7e992009-05-15 11:03:23 +0200488 /*
489 * We dont want to block the signals - that would cause
490 * child tasks to inherit that and Ctrl-C would not work.
491 * What we want is for Ctrl-C to work in the exec()-ed
492 * task, but being ignored by perf stat itself:
493 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200494 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +0200495 signal(SIGINT, skip_signal);
496 signal(SIGALRM, skip_signal);
497 signal(SIGABRT, skip_signal);
498
Ingo Molnar42202dd2009-06-13 14:57:28 +0200499 status = 0;
500 for (run_idx = 0; run_idx < run_count; run_idx++) {
501 if (run_count != 1 && verbose)
502 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx+1);
503 status = run_perf_stat(argc, argv);
504 }
505
506 print_stat(argc, argv);
507
508 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200509}