blob: 5e04fcc8d07763d352d920873cda095d37d07149 [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
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100088static u64 event_res[MAX_RUN][MAX_COUNTERS][3];
89static u64 event_scaled[MAX_RUN][MAX_COUNTERS];
Ingo Molnar42202dd2009-06-13 14:57:28 +020090
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100091//static u64 event_hist[MAX_RUN][MAX_COUNTERS][3];
Ingo Molnar42202dd2009-06-13 14:57:28 +020092
93
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100094static u64 runtime_nsecs[MAX_RUN];
95static u64 walltime_nsecs[MAX_RUN];
96static u64 runtime_cycles[MAX_RUN];
Ingo Molnar42202dd2009-06-13 14:57:28 +020097
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100098static u64 event_res_avg[MAX_COUNTERS][3];
99static u64 event_res_noise[MAX_COUNTERS][3];
Ingo Molnar42202dd2009-06-13 14:57:28 +0200100
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000101static u64 event_scaled_avg[MAX_COUNTERS];
Ingo Molnar42202dd2009-06-13 14:57:28 +0200102
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000103static u64 runtime_nsecs_avg;
104static u64 runtime_nsecs_noise;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200105
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000106static u64 walltime_nsecs_avg;
107static u64 walltime_nsecs_noise;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200108
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000109static u64 runtime_cycles_avg;
110static u64 runtime_cycles_noise;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200111
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530112
113#define ERR_PERF_OPEN \
114"Error: counter %d, sys_perf_counter_open() syscall returned with %d (%s)\n"
115
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200116static void create_perf_stat_counter(int counter)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200117{
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200118 struct perf_counter_attr *attr = attrs + counter;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200119
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200120 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200121 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
122 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200123
124 if (system_wide) {
125 int cpu;
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530126 for (cpu = 0; cpu < nr_cpus; cpu++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200127 fd[cpu][counter] = sys_perf_counter_open(attr, -1, cpu, -1, 0);
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530128 if (fd[cpu][counter] < 0 && verbose)
129 fprintf(stderr, ERR_PERF_OPEN, counter,
130 fd[cpu][counter], strerror(errno));
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200131 }
132 } else {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200133 attr->inherit = inherit;
134 attr->disabled = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200135
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200136 fd[0][counter] = sys_perf_counter_open(attr, 0, -1, -1, 0);
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530137 if (fd[0][counter] < 0 && verbose)
138 fprintf(stderr, ERR_PERF_OPEN, counter,
139 fd[0][counter], strerror(errno));
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200140 }
141}
142
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200143/*
144 * Does the counter have nsecs as a unit?
145 */
146static inline int nsec_counter(int counter)
147{
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200148 if (attrs[counter].type != PERF_TYPE_SOFTWARE)
149 return 0;
150
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200151 if (attrs[counter].config == PERF_COUNT_SW_CPU_CLOCK)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200152 return 1;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200153
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200154 if (attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200155 return 1;
156
157 return 0;
158}
159
160/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200161 * Read out the results of a single counter:
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200162 */
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200163static void read_counter(int counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200164{
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000165 u64 *count, single_count[3];
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200166 ssize_t res;
167 int cpu, nv;
168 int scaled;
169
Ingo Molnar42202dd2009-06-13 14:57:28 +0200170 count = event_res[run_idx][counter];
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200171
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200172 count[0] = count[1] = count[2] = 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200173
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200174 nv = scale ? 3 : 1;
Jaswinder Singh Rajputcca03c02009-06-23 17:12:49 +0530175 for (cpu = 0; cpu < nr_cpus; cpu++) {
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200176 if (fd[cpu][counter] < 0)
177 continue;
178
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000179 res = read(fd[cpu][counter], single_count, nv * sizeof(u64));
180 assert(res == nv * sizeof(u64));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200181 close(fd[cpu][counter]);
182 fd[cpu][counter] = -1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200183
184 count[0] += single_count[0];
185 if (scale) {
186 count[1] += single_count[1];
187 count[2] += single_count[2];
188 }
189 }
190
191 scaled = 0;
192 if (scale) {
193 if (count[2] == 0) {
Ingo Molnar42202dd2009-06-13 14:57:28 +0200194 event_scaled[run_idx][counter] = -1;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200195 count[0] = 0;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200196 return;
197 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200198
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200199 if (count[2] < count[1]) {
Ingo Molnar42202dd2009-06-13 14:57:28 +0200200 event_scaled[run_idx][counter] = 1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200201 count[0] = (unsigned long long)
202 ((double)count[0] * count[1] / count[2] + 0.5);
203 }
204 }
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200205 /*
206 * Save the full runtime - to allow normalization during printout:
207 */
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200208 if (attrs[counter].type == PERF_TYPE_SOFTWARE &&
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200209 attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200210 runtime_nsecs[run_idx] = count[0];
Ingo Molnare7798982009-06-07 18:14:46 +0200211 if (attrs[counter].type == PERF_TYPE_HARDWARE &&
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200212 attrs[counter].config == PERF_COUNT_HW_CPU_CYCLES)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200213 runtime_cycles[run_idx] = count[0];
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200214}
215
Ingo Molnar42202dd2009-06-13 14:57:28 +0200216static int run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200217{
218 unsigned long long t0, t1;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200219 int status = 0;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200220 int counter;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200221 int pid;
222
223 if (!system_wide)
224 nr_cpus = 1;
225
226 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200227 create_perf_stat_counter(counter);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200228
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200229 /*
230 * Enable counters and exec the command:
231 */
232 t0 = rdclock();
233 prctl(PR_TASK_PERF_COUNTERS_ENABLE);
234
235 if ((pid = fork()) < 0)
236 perror("failed to fork");
Ingo Molnar44db76c2009-06-03 19:36:07 +0200237
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200238 if (!pid) {
Ingo Molnar52425192009-05-26 09:17:18 +0200239 if (execvp(argv[0], (char **)argv)) {
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200240 perror(argv[0]);
241 exit(-1);
242 }
243 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200244
Ingo Molnar42202dd2009-06-13 14:57:28 +0200245 wait(&status);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200246
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200247 prctl(PR_TASK_PERF_COUNTERS_DISABLE);
248 t1 = rdclock();
249
Ingo Molnar42202dd2009-06-13 14:57:28 +0200250 walltime_nsecs[run_idx] = t1 - t0;
251
252 for (counter = 0; counter < nr_counters; counter++)
253 read_counter(counter);
254
255 return WEXITSTATUS(status);
256}
257
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000258static void print_noise(u64 *count, u64 *noise)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200259{
260 if (run_count > 1)
261 fprintf(stderr, " ( +- %7.3f%% )",
262 (double)noise[0]/(count[0]+1)*100.0);
263}
264
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000265static void nsec_printout(int counter, u64 *count, u64 *noise)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200266{
267 double msecs = (double)count[0] / 1000000;
268
269 fprintf(stderr, " %14.6f %-20s", msecs, event_name(counter));
270
271 if (attrs[counter].type == PERF_TYPE_SOFTWARE &&
272 attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK) {
273
274 if (walltime_nsecs_avg)
275 fprintf(stderr, " # %10.3f CPUs ",
276 (double)count[0] / (double)walltime_nsecs_avg);
277 }
278 print_noise(count, noise);
279}
280
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000281static void abs_printout(int counter, u64 *count, u64 *noise)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200282{
283 fprintf(stderr, " %14Ld %-20s", count[0], event_name(counter));
284
285 if (runtime_cycles_avg &&
286 attrs[counter].type == PERF_TYPE_HARDWARE &&
287 attrs[counter].config == PERF_COUNT_HW_INSTRUCTIONS) {
288
289 fprintf(stderr, " # %10.3f IPC ",
290 (double)count[0] / (double)runtime_cycles_avg);
291 } else {
292 if (runtime_nsecs_avg) {
293 fprintf(stderr, " # %10.3f M/sec",
294 (double)count[0]/runtime_nsecs_avg*1000.0);
295 }
296 }
297 print_noise(count, noise);
298}
299
300/*
301 * Print out the results of a single counter:
302 */
303static void print_counter(int counter)
304{
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000305 u64 *count, *noise;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200306 int scaled;
307
308 count = event_res_avg[counter];
309 noise = event_res_noise[counter];
310 scaled = event_scaled_avg[counter];
311
312 if (scaled == -1) {
313 fprintf(stderr, " %14s %-20s\n",
314 "<not counted>", event_name(counter));
315 return;
316 }
317
318 if (nsec_counter(counter))
319 nsec_printout(counter, count, noise);
320 else
321 abs_printout(counter, count, noise);
322
323 if (scaled)
324 fprintf(stderr, " (scaled from %.2f%%)",
325 (double) count[2] / count[1] * 100);
326
327 fprintf(stderr, "\n");
328}
329
330/*
Ingo Molnaref281a12009-06-13 15:40:35 +0200331 * normalize_noise noise values down to stddev:
Ingo Molnar42202dd2009-06-13 14:57:28 +0200332 */
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000333static void normalize_noise(u64 *val)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200334{
335 double res;
336
337 res = (double)*val / (run_count * sqrt((double)run_count));
338
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000339 *val = (u64)res;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200340}
341
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000342static void update_avg(const char *name, int idx, u64 *avg, u64 *val)
Ingo Molnaref281a12009-06-13 15:40:35 +0200343{
344 *avg += *val;
345
346 if (verbose > 1)
347 fprintf(stderr, "debug: %20s[%d]: %Ld\n", name, idx, *val);
348}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200349/*
350 * Calculate the averages and noises:
351 */
352static void calc_avg(void)
353{
354 int i, j;
355
Ingo Molnaref281a12009-06-13 15:40:35 +0200356 if (verbose > 1)
357 fprintf(stderr, "\n");
358
Ingo Molnar42202dd2009-06-13 14:57:28 +0200359 for (i = 0; i < run_count; i++) {
Ingo Molnaref281a12009-06-13 15:40:35 +0200360 update_avg("runtime", 0, &runtime_nsecs_avg, runtime_nsecs + i);
361 update_avg("walltime", 0, &walltime_nsecs_avg, walltime_nsecs + i);
362 update_avg("runtime_cycles", 0, &runtime_cycles_avg, runtime_cycles + i);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200363
364 for (j = 0; j < nr_counters; j++) {
Ingo Molnaref281a12009-06-13 15:40:35 +0200365 update_avg("counter/0", j,
366 event_res_avg[j]+0, event_res[i][j]+0);
367 update_avg("counter/1", j,
368 event_res_avg[j]+1, event_res[i][j]+1);
369 update_avg("counter/2", j,
370 event_res_avg[j]+2, event_res[i][j]+2);
371 update_avg("scaled", j,
372 event_scaled_avg + j, event_scaled[i]+j);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200373 }
374 }
375 runtime_nsecs_avg /= run_count;
376 walltime_nsecs_avg /= run_count;
377 runtime_cycles_avg /= run_count;
378
379 for (j = 0; j < nr_counters; j++) {
380 event_res_avg[j][0] /= run_count;
381 event_res_avg[j][1] /= run_count;
382 event_res_avg[j][2] /= run_count;
383 }
384
385 for (i = 0; i < run_count; i++) {
386 runtime_nsecs_noise +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000387 abs((s64)(runtime_nsecs[i] - runtime_nsecs_avg));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200388 walltime_nsecs_noise +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000389 abs((s64)(walltime_nsecs[i] - walltime_nsecs_avg));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200390 runtime_cycles_noise +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000391 abs((s64)(runtime_cycles[i] - runtime_cycles_avg));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200392
393 for (j = 0; j < nr_counters; j++) {
394 event_res_noise[j][0] +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000395 abs((s64)(event_res[i][j][0] - event_res_avg[j][0]));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200396 event_res_noise[j][1] +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000397 abs((s64)(event_res[i][j][1] - event_res_avg[j][1]));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200398 event_res_noise[j][2] +=
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000399 abs((s64)(event_res[i][j][2] - event_res_avg[j][2]));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200400 }
401 }
402
Ingo Molnaref281a12009-06-13 15:40:35 +0200403 normalize_noise(&runtime_nsecs_noise);
404 normalize_noise(&walltime_nsecs_noise);
405 normalize_noise(&runtime_cycles_noise);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200406
407 for (j = 0; j < nr_counters; j++) {
Ingo Molnaref281a12009-06-13 15:40:35 +0200408 normalize_noise(&event_res_noise[j][0]);
409 normalize_noise(&event_res_noise[j][1]);
410 normalize_noise(&event_res_noise[j][2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200411 }
412}
413
414static void print_stat(int argc, const char **argv)
415{
416 int i, counter;
417
418 calc_avg();
419
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200420 fflush(stdout);
421
422 fprintf(stderr, "\n");
Ingo Molnar44db76c2009-06-03 19:36:07 +0200423 fprintf(stderr, " Performance counter stats for \'%s", argv[0]);
424
425 for (i = 1; i < argc; i++)
426 fprintf(stderr, " %s", argv[i]);
427
Ingo Molnar42202dd2009-06-13 14:57:28 +0200428 fprintf(stderr, "\'");
429 if (run_count > 1)
430 fprintf(stderr, " (%d runs)", run_count);
431 fprintf(stderr, ":\n\n");
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200432
433 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200434 print_counter(counter);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200435
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200436
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200437 fprintf(stderr, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200438 fprintf(stderr, " %14.9f seconds time elapsed.\n",
439 (double)walltime_nsecs_avg/1e9);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200440 fprintf(stderr, "\n");
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200441}
442
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200443static volatile int signr = -1;
444
Ingo Molnar52425192009-05-26 09:17:18 +0200445static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200446{
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200447 signr = signo;
448}
449
450static void sig_atexit(void)
451{
452 if (signr == -1)
453 return;
454
455 signal(signr, SIG_DFL);
456 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200457}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200458
Ingo Molnar52425192009-05-26 09:17:18 +0200459static const char * const stat_usage[] = {
460 "perf stat [<options>] <command>",
461 NULL
462};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200463
Ingo Molnar52425192009-05-26 09:17:18 +0200464static const struct option options[] = {
465 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200466 "event selector. use 'perf list' to list available events",
467 parse_events),
Ingo Molnar52425192009-05-26 09:17:18 +0200468 OPT_BOOLEAN('i', "inherit", &inherit,
469 "child tasks inherit counters"),
470 OPT_INTEGER('p', "pid", &target_pid,
471 "stat events on existing pid"),
472 OPT_BOOLEAN('a', "all-cpus", &system_wide,
473 "system-wide collection from all CPUs"),
Thomas Gleixner86847b62009-06-06 12:24:17 +0200474 OPT_BOOLEAN('S', "scale", &scale,
Ingo Molnar52425192009-05-26 09:17:18 +0200475 "scale/normalize counters"),
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200476 OPT_BOOLEAN('v', "verbose", &verbose,
477 "be more verbose (show counter open errors, etc)"),
Ingo Molnar42202dd2009-06-13 14:57:28 +0200478 OPT_INTEGER('r', "repeat", &run_count,
479 "repeat command and print average + stddev (max: 100)"),
Ingo Molnar52425192009-05-26 09:17:18 +0200480 OPT_END()
481};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200482
Ingo Molnar52425192009-05-26 09:17:18 +0200483int cmd_stat(int argc, const char **argv, const char *prefix)
484{
Ingo Molnar42202dd2009-06-13 14:57:28 +0200485 int status;
486
Ingo Molnar52425192009-05-26 09:17:18 +0200487 page_size = sysconf(_SC_PAGE_SIZE);
488
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200489 memcpy(attrs, default_attrs, sizeof(attrs));
Ingo Molnar52425192009-05-26 09:17:18 +0200490
491 argc = parse_options(argc, argv, options, stat_usage, 0);
492 if (!argc)
493 usage_with_options(stat_usage, options);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200494 if (run_count <= 0 || run_count > MAX_RUN)
495 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200496
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200497 if (!nr_counters)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200498 nr_counters = 8;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200499
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200500 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
501 assert(nr_cpus <= MAX_NR_CPUS);
502 assert(nr_cpus >= 0);
503
Ingo Molnar58d7e992009-05-15 11:03:23 +0200504 /*
505 * We dont want to block the signals - that would cause
506 * child tasks to inherit that and Ctrl-C would not work.
507 * What we want is for Ctrl-C to work in the exec()-ed
508 * task, but being ignored by perf stat itself:
509 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200510 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +0200511 signal(SIGINT, skip_signal);
512 signal(SIGALRM, skip_signal);
513 signal(SIGABRT, skip_signal);
514
Ingo Molnar42202dd2009-06-13 14:57:28 +0200515 status = 0;
516 for (run_idx = 0; run_idx < run_count; run_idx++) {
517 if (run_count != 1 && verbose)
518 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx+1);
519 status = run_perf_stat(argc, argv);
520 }
521
522 print_stat(argc, argv);
523
524 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200525}