blob: 8420ec589506fc60d4517bed35bf16292912cb34 [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
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053062#define MAX_RUN 100
63
Ingo Molnarddcacfa2009-04-20 15:37:32 +020064static int system_wide = 0;
Ingo Molnar743ee1f2009-06-07 17:06:46 +020065static int verbose = 0;
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053066static int nr_cpus = 0;
67static int run_idx = 0;
68
69static int run_count = 1;
70static int inherit = 1;
71static int scale = 1;
72static int target_pid = -1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +020073
Ingo Molnarddcacfa2009-04-20 15:37:32 +020074static int fd[MAX_NR_CPUS][MAX_COUNTERS];
75
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100076static u64 runtime_nsecs[MAX_RUN];
77static u64 walltime_nsecs[MAX_RUN];
78static u64 runtime_cycles[MAX_RUN];
Ingo Molnar42202dd2009-06-13 14:57:28 +020079
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053080static u64 event_res[MAX_RUN][MAX_COUNTERS][3];
81static u64 event_scaled[MAX_RUN][MAX_COUNTERS];
82
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100083static u64 event_res_avg[MAX_COUNTERS][3];
84static u64 event_res_noise[MAX_COUNTERS][3];
Ingo Molnar42202dd2009-06-13 14:57:28 +020085
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100086static u64 event_scaled_avg[MAX_COUNTERS];
Ingo Molnar42202dd2009-06-13 14:57:28 +020087
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100088static u64 runtime_nsecs_avg;
89static u64 runtime_nsecs_noise;
Ingo Molnar42202dd2009-06-13 14:57:28 +020090
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100091static u64 walltime_nsecs_avg;
92static u64 walltime_nsecs_noise;
Ingo Molnar42202dd2009-06-13 14:57:28 +020093
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100094static u64 runtime_cycles_avg;
95static u64 runtime_cycles_noise;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +020096
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +053097#define ERR_PERF_OPEN \
98"Error: counter %d, sys_perf_counter_open() syscall returned with %d (%s)\n"
99
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200100static void create_perf_stat_counter(int counter)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200101{
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200102 struct perf_counter_attr *attr = attrs + counter;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200103
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200104 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200105 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
106 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200107
108 if (system_wide) {
109 int cpu;
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530110 for (cpu = 0; cpu < nr_cpus; cpu++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200111 fd[cpu][counter] = sys_perf_counter_open(attr, -1, cpu, -1, 0);
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530112 if (fd[cpu][counter] < 0 && verbose)
113 fprintf(stderr, ERR_PERF_OPEN, counter,
114 fd[cpu][counter], strerror(errno));
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200115 }
116 } else {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200117 attr->inherit = inherit;
118 attr->disabled = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200119
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200120 fd[0][counter] = sys_perf_counter_open(attr, 0, -1, -1, 0);
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530121 if (fd[0][counter] < 0 && verbose)
122 fprintf(stderr, ERR_PERF_OPEN, counter,
123 fd[0][counter], strerror(errno));
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200124 }
125}
126
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200127/*
128 * Does the counter have nsecs as a unit?
129 */
130static inline int nsec_counter(int counter)
131{
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200132 if (attrs[counter].type != PERF_TYPE_SOFTWARE)
133 return 0;
134
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200135 if (attrs[counter].config == PERF_COUNT_SW_CPU_CLOCK)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200136 return 1;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200137
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200138 if (attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200139 return 1;
140
141 return 0;
142}
143
144/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200145 * Read out the results of a single counter:
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200146 */
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200147static void read_counter(int counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200148{
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000149 u64 *count, single_count[3];
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200150 ssize_t res;
151 int cpu, nv;
152 int scaled;
153
Ingo Molnar42202dd2009-06-13 14:57:28 +0200154 count = event_res[run_idx][counter];
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200155
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200156 count[0] = count[1] = count[2] = 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200157
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200158 nv = scale ? 3 : 1;
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530159 for (cpu = 0; cpu < nr_cpus; cpu++) {
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200160 if (fd[cpu][counter] < 0)
161 continue;
162
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000163 res = read(fd[cpu][counter], single_count, nv * sizeof(u64));
164 assert(res == nv * sizeof(u64));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200165 close(fd[cpu][counter]);
166 fd[cpu][counter] = -1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200167
168 count[0] += single_count[0];
169 if (scale) {
170 count[1] += single_count[1];
171 count[2] += single_count[2];
172 }
173 }
174
175 scaled = 0;
176 if (scale) {
177 if (count[2] == 0) {
Ingo Molnar42202dd2009-06-13 14:57:28 +0200178 event_scaled[run_idx][counter] = -1;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200179 count[0] = 0;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200180 return;
181 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200182
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200183 if (count[2] < count[1]) {
Ingo Molnar42202dd2009-06-13 14:57:28 +0200184 event_scaled[run_idx][counter] = 1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200185 count[0] = (unsigned long long)
186 ((double)count[0] * count[1] / count[2] + 0.5);
187 }
188 }
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200189 /*
190 * Save the full runtime - to allow normalization during printout:
191 */
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200192 if (attrs[counter].type == PERF_TYPE_SOFTWARE &&
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200193 attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200194 runtime_nsecs[run_idx] = count[0];
Ingo Molnare7798982009-06-07 18:14:46 +0200195 if (attrs[counter].type == PERF_TYPE_HARDWARE &&
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200196 attrs[counter].config == PERF_COUNT_HW_CPU_CYCLES)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200197 runtime_cycles[run_idx] = count[0];
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200198}
199
Ingo Molnar42202dd2009-06-13 14:57:28 +0200200static int run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200201{
202 unsigned long long t0, t1;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200203 int status = 0;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200204 int counter;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200205 int pid;
206
207 if (!system_wide)
208 nr_cpus = 1;
209
210 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200211 create_perf_stat_counter(counter);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200212
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200213 /*
214 * Enable counters and exec the command:
215 */
216 t0 = rdclock();
217 prctl(PR_TASK_PERF_COUNTERS_ENABLE);
218
219 if ((pid = fork()) < 0)
220 perror("failed to fork");
Ingo Molnar44db76c2009-06-03 19:36:07 +0200221
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200222 if (!pid) {
Ingo Molnar52425192009-05-26 09:17:18 +0200223 if (execvp(argv[0], (char **)argv)) {
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200224 perror(argv[0]);
225 exit(-1);
226 }
227 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200228
Ingo Molnar42202dd2009-06-13 14:57:28 +0200229 wait(&status);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200230
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200231 prctl(PR_TASK_PERF_COUNTERS_DISABLE);
232 t1 = rdclock();
233
Ingo Molnar42202dd2009-06-13 14:57:28 +0200234 walltime_nsecs[run_idx] = t1 - t0;
235
236 for (counter = 0; counter < nr_counters; counter++)
237 read_counter(counter);
238
239 return WEXITSTATUS(status);
240}
241
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000242static void print_noise(u64 *count, u64 *noise)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200243{
244 if (run_count > 1)
245 fprintf(stderr, " ( +- %7.3f%% )",
246 (double)noise[0]/(count[0]+1)*100.0);
247}
248
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000249static void nsec_printout(int counter, u64 *count, u64 *noise)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200250{
251 double msecs = (double)count[0] / 1000000;
252
253 fprintf(stderr, " %14.6f %-20s", msecs, event_name(counter));
254
255 if (attrs[counter].type == PERF_TYPE_SOFTWARE &&
256 attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK) {
257
258 if (walltime_nsecs_avg)
259 fprintf(stderr, " # %10.3f CPUs ",
260 (double)count[0] / (double)walltime_nsecs_avg);
261 }
262 print_noise(count, noise);
263}
264
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000265static void abs_printout(int counter, u64 *count, u64 *noise)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200266{
267 fprintf(stderr, " %14Ld %-20s", count[0], event_name(counter));
268
269 if (runtime_cycles_avg &&
270 attrs[counter].type == PERF_TYPE_HARDWARE &&
271 attrs[counter].config == PERF_COUNT_HW_INSTRUCTIONS) {
272
273 fprintf(stderr, " # %10.3f IPC ",
274 (double)count[0] / (double)runtime_cycles_avg);
275 } else {
276 if (runtime_nsecs_avg) {
277 fprintf(stderr, " # %10.3f M/sec",
278 (double)count[0]/runtime_nsecs_avg*1000.0);
279 }
280 }
281 print_noise(count, noise);
282}
283
284/*
285 * Print out the results of a single counter:
286 */
287static void print_counter(int counter)
288{
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000289 u64 *count, *noise;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200290 int scaled;
291
292 count = event_res_avg[counter];
293 noise = event_res_noise[counter];
294 scaled = event_scaled_avg[counter];
295
296 if (scaled == -1) {
297 fprintf(stderr, " %14s %-20s\n",
298 "<not counted>", event_name(counter));
299 return;
300 }
301
302 if (nsec_counter(counter))
303 nsec_printout(counter, count, noise);
304 else
305 abs_printout(counter, count, noise);
306
307 if (scaled)
308 fprintf(stderr, " (scaled from %.2f%%)",
309 (double) count[2] / count[1] * 100);
310
311 fprintf(stderr, "\n");
312}
313
314/*
Ingo Molnaref281a12009-06-13 15:40:35 +0200315 * normalize_noise noise values down to stddev:
Ingo Molnar42202dd2009-06-13 14:57:28 +0200316 */
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000317static void normalize_noise(u64 *val)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200318{
319 double res;
320
321 res = (double)*val / (run_count * sqrt((double)run_count));
322
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000323 *val = (u64)res;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200324}
325
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000326static void update_avg(const char *name, int idx, u64 *avg, u64 *val)
Ingo Molnaref281a12009-06-13 15:40:35 +0200327{
328 *avg += *val;
329
330 if (verbose > 1)
331 fprintf(stderr, "debug: %20s[%d]: %Ld\n", name, idx, *val);
332}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200333/*
334 * Calculate the averages and noises:
335 */
336static void calc_avg(void)
337{
338 int i, j;
339
Ingo Molnaref281a12009-06-13 15:40:35 +0200340 if (verbose > 1)
341 fprintf(stderr, "\n");
342
Ingo Molnar42202dd2009-06-13 14:57:28 +0200343 for (i = 0; i < run_count; i++) {
Ingo Molnaref281a12009-06-13 15:40:35 +0200344 update_avg("runtime", 0, &runtime_nsecs_avg, runtime_nsecs + i);
345 update_avg("walltime", 0, &walltime_nsecs_avg, walltime_nsecs + i);
346 update_avg("runtime_cycles", 0, &runtime_cycles_avg, runtime_cycles + i);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200347
348 for (j = 0; j < nr_counters; j++) {
Ingo Molnaref281a12009-06-13 15:40:35 +0200349 update_avg("counter/0", j,
350 event_res_avg[j]+0, event_res[i][j]+0);
351 update_avg("counter/1", j,
352 event_res_avg[j]+1, event_res[i][j]+1);
353 update_avg("counter/2", j,
354 event_res_avg[j]+2, event_res[i][j]+2);
355 update_avg("scaled", j,
356 event_scaled_avg + j, event_scaled[i]+j);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200357 }
358 }
359 runtime_nsecs_avg /= run_count;
360 walltime_nsecs_avg /= run_count;
361 runtime_cycles_avg /= run_count;
362
363 for (j = 0; j < nr_counters; j++) {
364 event_res_avg[j][0] /= run_count;
365 event_res_avg[j][1] /= run_count;
366 event_res_avg[j][2] /= run_count;
367 }
368
369 for (i = 0; i < run_count; i++) {
370 runtime_nsecs_noise +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000371 abs((s64)(runtime_nsecs[i] - runtime_nsecs_avg));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200372 walltime_nsecs_noise +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000373 abs((s64)(walltime_nsecs[i] - walltime_nsecs_avg));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200374 runtime_cycles_noise +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000375 abs((s64)(runtime_cycles[i] - runtime_cycles_avg));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200376
377 for (j = 0; j < nr_counters; j++) {
378 event_res_noise[j][0] +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000379 abs((s64)(event_res[i][j][0] - event_res_avg[j][0]));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200380 event_res_noise[j][1] +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000381 abs((s64)(event_res[i][j][1] - event_res_avg[j][1]));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200382 event_res_noise[j][2] +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000383 abs((s64)(event_res[i][j][2] - event_res_avg[j][2]));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200384 }
385 }
386
Ingo Molnaref281a12009-06-13 15:40:35 +0200387 normalize_noise(&runtime_nsecs_noise);
388 normalize_noise(&walltime_nsecs_noise);
389 normalize_noise(&runtime_cycles_noise);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200390
391 for (j = 0; j < nr_counters; j++) {
Ingo Molnaref281a12009-06-13 15:40:35 +0200392 normalize_noise(&event_res_noise[j][0]);
393 normalize_noise(&event_res_noise[j][1]);
394 normalize_noise(&event_res_noise[j][2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200395 }
396}
397
398static void print_stat(int argc, const char **argv)
399{
400 int i, counter;
401
402 calc_avg();
403
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,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530457 "system-wide collection from all CPUs"),
Thomas Gleixner86847b62009-06-06 12:24:17 +0200458 OPT_BOOLEAN('S', "scale", &scale,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530459 "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 Molnara21ca2c2009-06-06 09:58:57 +0200471 memcpy(attrs, default_attrs, sizeof(attrs));
Ingo Molnar52425192009-05-26 09:17:18 +0200472
473 argc = parse_options(argc, argv, options, stat_usage, 0);
474 if (!argc)
475 usage_with_options(stat_usage, options);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200476 if (run_count <= 0 || run_count > MAX_RUN)
477 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200478
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200479 if (!nr_counters)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200480 nr_counters = 8;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200481
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200482 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
483 assert(nr_cpus <= MAX_NR_CPUS);
484 assert(nr_cpus >= 0);
485
Ingo Molnar58d7e992009-05-15 11:03:23 +0200486 /*
487 * We dont want to block the signals - that would cause
488 * child tasks to inherit that and Ctrl-C would not work.
489 * What we want is for Ctrl-C to work in the exec()-ed
490 * task, but being ignored by perf stat itself:
491 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200492 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +0200493 signal(SIGINT, skip_signal);
494 signal(SIGALRM, skip_signal);
495 signal(SIGABRT, skip_signal);
496
Ingo Molnar42202dd2009-06-13 14:57:28 +0200497 status = 0;
498 for (run_idx = 0; run_idx < run_count; run_idx++) {
499 if (run_count != 1 && verbose)
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530500 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200501 status = run_perf_stat(argc, argv);
502 }
503
504 print_stat(argc, argv);
505
506 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200507}