blob: c92f90ff5a9f6590f2d4edc6f3607a8c841b3600 [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"
Liming Wang60666c62009-12-31 16:05:50 +080047#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110048#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030049#include "util/thread.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020050
Ingo Molnarddcacfa2009-04-20 15:37:32 +020051#include <sys/prctl.h>
Ingo Molnar42202dd2009-06-13 14:57:28 +020052#include <math.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020053
Ingo Molnarcdd6c482009-09-21 12:02:48 +020054static struct perf_event_attr default_attrs[] = {
Ingo Molnara21ca2c2009-06-06 09:58:57 +020055
Ingo Molnar56aab462009-10-19 13:27:08 +020056 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
57 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
58 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
59 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
Ingo Molnara21ca2c2009-06-06 09:58:57 +020060
Ingo Molnar56aab462009-10-19 13:27:08 +020061 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
62 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
Ingo Molnar56aab462009-10-19 13:27:08 +020063 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
64 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
Ingo Molnardd86e722009-10-19 13:33:03 +020065 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES },
66 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES },
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +020067
Ingo Molnara21ca2c2009-06-06 09:58:57 +020068};
69
Ingo Molnarddcacfa2009-04-20 15:37:32 +020070static int system_wide = 0;
Ingo Molnarf37a2912009-07-01 12:37:06 +020071static unsigned int nr_cpus = 0;
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053072static int run_idx = 0;
73
74static int run_count = 1;
75static int inherit = 1;
76static int scale = 1;
Chris Wilson933da832009-10-04 01:35:01 +010077static pid_t target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030078static pid_t target_tid = -1;
79static pid_t *all_tids = NULL;
80static int thread_num = 0;
Chris Wilson933da832009-10-04 01:35:01 +010081static pid_t child_pid = -1;
Ingo Molnar0cfb7a12009-06-27 06:10:30 +020082static int null_run = 0;
Ingo Molnarddcacfa2009-04-20 15:37:32 +020083
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030084static int *fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnarddcacfa2009-04-20 15:37:32 +020085
Peter Zijlstra63d40de2009-09-04 17:03:13 +020086static int event_scaled[MAX_COUNTERS];
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053087
Liming Wang60666c62009-12-31 16:05:50 +080088static volatile int done = 0;
89
Peter Zijlstra506d4bc2009-09-04 15:36:12 +020090struct stats
91{
Peter Zijlstra8a026312009-09-04 17:26:26 +020092 double n, mean, M2;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +020093};
Ingo Molnar42202dd2009-06-13 14:57:28 +020094
Peter Zijlstra9e9772c2009-09-04 15:36:08 +020095static void update_stats(struct stats *stats, u64 val)
96{
Peter Zijlstra8a026312009-09-04 17:26:26 +020097 double delta;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +020098
Peter Zijlstra8a026312009-09-04 17:26:26 +020099 stats->n++;
100 delta = val - stats->mean;
101 stats->mean += delta / stats->n;
102 stats->M2 += delta*(val - stats->mean);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200103}
104
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200105static double avg_stats(struct stats *stats)
106{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200107 return stats->mean;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200108}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200109
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200110/*
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200111 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
112 *
Peter Zijlstra8a026312009-09-04 17:26:26 +0200113 * (\Sum n_i^2) - ((\Sum n_i)^2)/n
114 * s^2 = -------------------------------
115 * n - 1
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200116 *
117 * http://en.wikipedia.org/wiki/Stddev
118 *
119 * The std dev of the mean is related to the std dev by:
120 *
121 * s
122 * s_mean = -------
123 * sqrt(n)
124 *
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200125 */
126static double stddev_stats(struct stats *stats)
127{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200128 double variance = stats->M2 / (stats->n - 1);
129 double variance_mean = variance / stats->n;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200130
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200131 return sqrt(variance_mean);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200132}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200133
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200134struct stats event_res_stats[MAX_COUNTERS][3];
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200135struct stats runtime_nsecs_stats;
136struct stats walltime_nsecs_stats;
137struct stats runtime_cycles_stats;
Anton Blanchard11018202009-10-18 22:29:23 +1100138struct stats runtime_branches_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200139
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530140#define MATCH_EVENT(t, c, counter) \
141 (attrs[counter].type == PERF_TYPE_##t && \
142 attrs[counter].config == PERF_COUNT_##c)
143
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530144#define ERR_PERF_OPEN \
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200145"Error: counter %d, sys_perf_event_open() syscall returned with %d (%s)\n"
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530146
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300147static void create_perf_stat_counter(int counter)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200148{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200149 struct perf_event_attr *attr = attrs + counter;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300150 int thread;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200151
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200152 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200153 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
154 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200155
156 if (system_wide) {
Ingo Molnarf37a2912009-07-01 12:37:06 +0200157 unsigned int cpu;
158
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530159 for (cpu = 0; cpu < nr_cpus; cpu++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300160 fd[cpu][counter][0] = sys_perf_event_open(attr,
161 -1, cpumap[cpu], -1, 0);
162 if (fd[cpu][counter][0] < 0 && verbose)
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530163 fprintf(stderr, ERR_PERF_OPEN, counter,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300164 fd[cpu][counter][0], strerror(errno));
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200165 }
166 } else {
Paul Mackerras57e79862009-06-30 16:07:19 +1000167 attr->inherit = inherit;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300168 if (target_pid == -1) {
169 attr->disabled = 1;
170 attr->enable_on_exec = 1;
171 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300172 for (thread = 0; thread < thread_num; thread++) {
173 fd[0][counter][thread] = sys_perf_event_open(attr,
174 all_tids[thread], -1, -1, 0);
175 if (fd[0][counter][thread] < 0 && verbose)
176 fprintf(stderr, ERR_PERF_OPEN, counter,
177 fd[0][counter][thread],
178 strerror(errno));
179 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200180 }
181}
182
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200183/*
184 * Does the counter have nsecs as a unit?
185 */
186static inline int nsec_counter(int counter)
187{
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530188 if (MATCH_EVENT(SOFTWARE, SW_CPU_CLOCK, counter) ||
189 MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200190 return 1;
191
192 return 0;
193}
194
195/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200196 * Read out the results of a single counter:
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200197 */
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200198static void read_counter(int counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200199{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200200 u64 count[3], single_count[3];
Ingo Molnarf37a2912009-07-01 12:37:06 +0200201 unsigned int cpu;
202 size_t res, nv;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200203 int scaled;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300204 int i, thread;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200205
206 count[0] = count[1] = count[2] = 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200207
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200208 nv = scale ? 3 : 1;
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530209 for (cpu = 0; cpu < nr_cpus; cpu++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300210 for (thread = 0; thread < thread_num; thread++) {
211 if (fd[cpu][counter][thread] < 0)
212 continue;
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200213
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300214 res = read(fd[cpu][counter][thread],
215 single_count, nv * sizeof(u64));
216 assert(res == nv * sizeof(u64));
Ingo Molnarf37a2912009-07-01 12:37:06 +0200217
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300218 close(fd[cpu][counter][thread]);
219 fd[cpu][counter][thread] = -1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200220
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300221 count[0] += single_count[0];
222 if (scale) {
223 count[1] += single_count[1];
224 count[2] += single_count[2];
225 }
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200226 }
227 }
228
229 scaled = 0;
230 if (scale) {
231 if (count[2] == 0) {
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200232 event_scaled[counter] = -1;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200233 count[0] = 0;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200234 return;
235 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200236
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200237 if (count[2] < count[1]) {
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200238 event_scaled[counter] = 1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200239 count[0] = (unsigned long long)
240 ((double)count[0] * count[1] / count[2] + 0.5);
241 }
242 }
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200243
244 for (i = 0; i < 3; i++)
245 update_stats(&event_res_stats[counter][i], count[i]);
246
247 if (verbose) {
248 fprintf(stderr, "%s: %Ld %Ld %Ld\n", event_name(counter),
249 count[0], count[1], count[2]);
250 }
251
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200252 /*
253 * Save the full runtime - to allow normalization during printout:
254 */
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530255 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200256 update_stats(&runtime_nsecs_stats, count[0]);
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530257 if (MATCH_EVENT(HARDWARE, HW_CPU_CYCLES, counter))
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200258 update_stats(&runtime_cycles_stats, count[0]);
Anton Blanchard11018202009-10-18 22:29:23 +1100259 if (MATCH_EVENT(HARDWARE, HW_BRANCH_INSTRUCTIONS, counter))
260 update_stats(&runtime_branches_stats, count[0]);
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200261}
262
Ingo Molnarf37a2912009-07-01 12:37:06 +0200263static int run_perf_stat(int argc __used, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200264{
265 unsigned long long t0, t1;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200266 int status = 0;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200267 int counter;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000268 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300269 const bool forks = (argc > 0);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000270 char buf;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200271
272 if (!system_wide)
273 nr_cpus = 1;
274
Liming Wang60666c62009-12-31 16:05:50 +0800275 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000276 perror("failed to create pipes");
277 exit(1);
278 }
279
Liming Wang60666c62009-12-31 16:05:50 +0800280 if (forks) {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300281 if ((child_pid = fork()) < 0)
Liming Wang60666c62009-12-31 16:05:50 +0800282 perror("failed to fork");
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000283
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300284 if (!child_pid) {
Liming Wang60666c62009-12-31 16:05:50 +0800285 close(child_ready_pipe[0]);
286 close(go_pipe[1]);
287 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
288
289 /*
290 * Do a dummy execvp to get the PLT entry resolved,
291 * so we avoid the resolver overhead on the real
292 * execvp call.
293 */
294 execvp("", (char **)argv);
295
296 /*
297 * Tell the parent we're ready to go
298 */
299 close(child_ready_pipe[1]);
300
301 /*
302 * Wait until the parent tells us to go.
303 */
304 if (read(go_pipe[0], &buf, 1) == -1)
305 perror("unable to read pipe");
306
307 execvp(argv[0], (char **)argv);
308
309 perror(argv[0]);
310 exit(-1);
311 }
312
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300313 if (target_tid == -1 && target_pid == -1 && !system_wide)
314 all_tids[0] = child_pid;
315
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000316 /*
Liming Wang60666c62009-12-31 16:05:50 +0800317 * Wait for the child to be ready to exec.
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000318 */
319 close(child_ready_pipe[1]);
Liming Wang60666c62009-12-31 16:05:50 +0800320 close(go_pipe[0]);
321 if (read(child_ready_pipe[0], &buf, 1) == -1)
Frederic Weisbeckera92bef02009-07-01 21:02:10 +0200322 perror("unable to read pipe");
Liming Wang60666c62009-12-31 16:05:50 +0800323 close(child_ready_pipe[0]);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000324 }
325
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200326 for (counter = 0; counter < nr_counters; counter++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300327 create_perf_stat_counter(counter);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200328
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200329 /*
330 * Enable counters and exec the command:
331 */
332 t0 = rdclock();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200333
Liming Wang60666c62009-12-31 16:05:50 +0800334 if (forks) {
335 close(go_pipe[1]);
336 wait(&status);
337 } else {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300338 while(!done) sleep(1);
Liming Wang60666c62009-12-31 16:05:50 +0800339 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200340
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200341 t1 = rdclock();
342
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200343 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200344
345 for (counter = 0; counter < nr_counters; counter++)
346 read_counter(counter);
347
348 return WEXITSTATUS(status);
349}
350
Peter Zijlstra849abde2009-09-04 18:23:38 +0200351static void print_noise(int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200352{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200353 if (run_count == 1)
354 return;
355
356 fprintf(stderr, " ( +- %7.3f%% )",
357 100 * stddev_stats(&event_res_stats[counter][0]) / avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200358}
359
Peter Zijlstra849abde2009-09-04 18:23:38 +0200360static void nsec_printout(int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200361{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200362 double msecs = avg / 1e6;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200363
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +0530364 fprintf(stderr, " %14.6f %-24s", msecs, event_name(counter));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200365
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530366 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter)) {
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200367 fprintf(stderr, " # %10.3f CPUs ",
368 avg / avg_stats(&walltime_nsecs_stats));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200369 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200370}
371
Peter Zijlstra849abde2009-09-04 18:23:38 +0200372static void abs_printout(int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200373{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200374 double total, ratio = 0.0;
375
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200376 fprintf(stderr, " %14.0f %-24s", avg, event_name(counter));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200377
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200378 if (MATCH_EVENT(HARDWARE, HW_INSTRUCTIONS, counter)) {
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200379 total = avg_stats(&runtime_cycles_stats);
380
381 if (total)
382 ratio = avg / total;
383
384 fprintf(stderr, " # %10.3f IPC ", ratio);
Lucas De Marchi7255fe22009-11-15 12:05:08 -0200385 } else if (MATCH_EVENT(HARDWARE, HW_BRANCH_MISSES, counter) &&
386 runtime_branches_stats.n != 0) {
Anton Blanchard11018202009-10-18 22:29:23 +1100387 total = avg_stats(&runtime_branches_stats);
388
389 if (total)
390 ratio = avg * 100 / total;
391
Ingo Molnardd86e722009-10-19 13:33:03 +0200392 fprintf(stderr, " # %10.3f %% ", ratio);
Anton Blanchard11018202009-10-18 22:29:23 +1100393
Lucas De Marchi7255fe22009-11-15 12:05:08 -0200394 } else if (runtime_nsecs_stats.n != 0) {
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200395 total = avg_stats(&runtime_nsecs_stats);
396
397 if (total)
398 ratio = 1000.0 * avg / total;
399
400 fprintf(stderr, " # %10.3f M/sec", ratio);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200401 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200402}
403
404/*
405 * Print out the results of a single counter:
406 */
407static void print_counter(int counter)
408{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200409 double avg = avg_stats(&event_res_stats[counter][0]);
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200410 int scaled = event_scaled[counter];
Ingo Molnar42202dd2009-06-13 14:57:28 +0200411
Ingo Molnar42202dd2009-06-13 14:57:28 +0200412 if (scaled == -1) {
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +0530413 fprintf(stderr, " %14s %-24s\n",
Ingo Molnar42202dd2009-06-13 14:57:28 +0200414 "<not counted>", event_name(counter));
415 return;
416 }
417
418 if (nsec_counter(counter))
Peter Zijlstra849abde2009-09-04 18:23:38 +0200419 nsec_printout(counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200420 else
Peter Zijlstra849abde2009-09-04 18:23:38 +0200421 abs_printout(counter, avg);
422
423 print_noise(counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200424
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200425 if (scaled) {
426 double avg_enabled, avg_running;
427
428 avg_enabled = avg_stats(&event_res_stats[counter][1]);
429 avg_running = avg_stats(&event_res_stats[counter][2]);
430
Ingo Molnar210ad392009-06-29 21:50:54 +0200431 fprintf(stderr, " (scaled from %.2f%%)",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200432 100 * avg_running / avg_enabled);
433 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200434
435 fprintf(stderr, "\n");
436}
437
Ingo Molnar42202dd2009-06-13 14:57:28 +0200438static void print_stat(int argc, const char **argv)
439{
440 int i, counter;
441
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200442 fflush(stdout);
443
444 fprintf(stderr, "\n");
Liming Wang60666c62009-12-31 16:05:50 +0800445 fprintf(stderr, " Performance counter stats for ");
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300446 if(target_pid == -1 && target_tid == -1) {
Liming Wang60666c62009-12-31 16:05:50 +0800447 fprintf(stderr, "\'%s", argv[0]);
448 for (i = 1; i < argc; i++)
449 fprintf(stderr, " %s", argv[i]);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300450 } else if (target_pid != -1)
451 fprintf(stderr, "process id \'%d", target_pid);
452 else
453 fprintf(stderr, "thread id \'%d", target_tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200454
Ingo Molnar42202dd2009-06-13 14:57:28 +0200455 fprintf(stderr, "\'");
456 if (run_count > 1)
457 fprintf(stderr, " (%d runs)", run_count);
458 fprintf(stderr, ":\n\n");
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200459
460 for (counter = 0; counter < nr_counters; counter++)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200461 print_counter(counter);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200462
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200463 fprintf(stderr, "\n");
Ingo Molnar566747e2009-06-27 06:24:32 +0200464 fprintf(stderr, " %14.9f seconds time elapsed",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200465 avg_stats(&walltime_nsecs_stats)/1e9);
Ingo Molnar566747e2009-06-27 06:24:32 +0200466 if (run_count > 1) {
467 fprintf(stderr, " ( +- %7.3f%% )",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200468 100*stddev_stats(&walltime_nsecs_stats) /
469 avg_stats(&walltime_nsecs_stats));
Ingo Molnar566747e2009-06-27 06:24:32 +0200470 }
471 fprintf(stderr, "\n\n");
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200472}
473
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200474static volatile int signr = -1;
475
Ingo Molnar52425192009-05-26 09:17:18 +0200476static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200477{
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300478 if(child_pid == -1)
Liming Wang60666c62009-12-31 16:05:50 +0800479 done = 1;
480
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200481 signr = signo;
482}
483
484static void sig_atexit(void)
485{
Chris Wilson933da832009-10-04 01:35:01 +0100486 if (child_pid != -1)
487 kill(child_pid, SIGTERM);
488
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200489 if (signr == -1)
490 return;
491
492 signal(signr, SIG_DFL);
493 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200494}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200495
Ingo Molnar52425192009-05-26 09:17:18 +0200496static const char * const stat_usage[] = {
Liming Wang60666c62009-12-31 16:05:50 +0800497 "perf stat [<options>] [<command>]",
Ingo Molnar52425192009-05-26 09:17:18 +0200498 NULL
499};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200500
Ingo Molnar52425192009-05-26 09:17:18 +0200501static const struct option options[] = {
502 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200503 "event selector. use 'perf list' to list available events",
504 parse_events),
Ingo Molnar52425192009-05-26 09:17:18 +0200505 OPT_BOOLEAN('i', "inherit", &inherit,
506 "child tasks inherit counters"),
507 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300508 "stat events on existing process id"),
509 OPT_INTEGER('t', "tid", &target_tid,
510 "stat events on existing thread id"),
Ingo Molnar52425192009-05-26 09:17:18 +0200511 OPT_BOOLEAN('a', "all-cpus", &system_wide,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530512 "system-wide collection from all CPUs"),
Brice Goglinb26bc5a2009-08-07 10:18:39 +0200513 OPT_BOOLEAN('c', "scale", &scale,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530514 "scale/normalize counters"),
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200515 OPT_BOOLEAN('v', "verbose", &verbose,
516 "be more verbose (show counter open errors, etc)"),
Ingo Molnar42202dd2009-06-13 14:57:28 +0200517 OPT_INTEGER('r', "repeat", &run_count,
518 "repeat command and print average + stddev (max: 100)"),
Ingo Molnar0cfb7a12009-06-27 06:10:30 +0200519 OPT_BOOLEAN('n', "null", &null_run,
520 "null run - dont start any counters"),
Ingo Molnar52425192009-05-26 09:17:18 +0200521 OPT_END()
522};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200523
Ingo Molnarf37a2912009-07-01 12:37:06 +0200524int cmd_stat(int argc, const char **argv, const char *prefix __used)
Ingo Molnar52425192009-05-26 09:17:18 +0200525{
Ingo Molnar42202dd2009-06-13 14:57:28 +0200526 int status;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300527 int i,j;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200528
Anton Blancharda0541232009-07-22 23:04:12 +1000529 argc = parse_options(argc, argv, options, stat_usage,
530 PARSE_OPT_STOP_AT_NON_OPTION);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300531 if (!argc && target_pid == -1 && target_tid == -1)
Ingo Molnar52425192009-05-26 09:17:18 +0200532 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200533 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200534 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200535
Jaswinder Singh Rajputc3043562009-06-27 23:49:09 +0530536 /* Set attrs and nr_counters if no event is selected and !null_run */
537 if (!null_run && !nr_counters) {
538 memcpy(attrs, default_attrs, sizeof(default_attrs));
539 nr_counters = ARRAY_SIZE(default_attrs);
540 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200541
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100542 if (system_wide)
543 nr_cpus = read_cpu_map();
544 else
545 nr_cpus = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200546
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300547 if (target_pid != -1) {
548 target_tid = target_pid;
549 thread_num = find_all_tid(target_pid, &all_tids);
550 if (thread_num <= 0) {
551 fprintf(stderr, "Can't find all threads of pid %d\n",
552 target_pid);
553 usage_with_options(stat_usage, options);
554 }
555 } else {
556 all_tids=malloc(sizeof(pid_t));
557 if (!all_tids)
558 return -ENOMEM;
559
560 all_tids[0] = target_tid;
561 thread_num = 1;
562 }
563
564 for (i = 0; i < MAX_NR_CPUS; i++) {
565 for (j = 0; j < MAX_COUNTERS; j++) {
566 fd[i][j] = malloc(sizeof(int)*thread_num);
567 if (!fd[i][j])
568 return -ENOMEM;
569 }
570 }
571
Ingo Molnar58d7e992009-05-15 11:03:23 +0200572 /*
573 * We dont want to block the signals - that would cause
574 * child tasks to inherit that and Ctrl-C would not work.
575 * What we want is for Ctrl-C to work in the exec()-ed
576 * task, but being ignored by perf stat itself:
577 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200578 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +0200579 signal(SIGINT, skip_signal);
580 signal(SIGALRM, skip_signal);
581 signal(SIGABRT, skip_signal);
582
Ingo Molnar42202dd2009-06-13 14:57:28 +0200583 status = 0;
584 for (run_idx = 0; run_idx < run_count; run_idx++) {
585 if (run_count != 1 && verbose)
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530586 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200587 status = run_perf_stat(argc, argv);
588 }
589
590 print_stat(argc, argv);
591
592 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200593}