perf evsel: Steal the counter reading routines from stat
[deliverable/linux.git] / tools / perf / builtin-stat.c
CommitLineData
ddcacfa0 1/*
bf9e1876
IM
2 * 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:
ddcacfa0 8
bf9e1876
IM
9 $ perf stat ~/hackbench 10
10 Time: 0.104
ddcacfa0 11
bf9e1876 12 Performance counter stats for '/home/mingo/hackbench':
ddcacfa0 13
bf9e1876
IM
14 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
ddcacfa0 22
bf9e1876 23 Wall-clock time elapsed: 123.786620 msecs
ddcacfa0 24
5242519b
IM
25 *
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>
6e750a8f 35 * Jaswinder Singh Rajput <jaswinder@kernel.org>
5242519b
IM
36 *
37 * Released under the GPL v2. (and only v2, not any later version)
ddcacfa0
IM
38 */
39
1a482f38 40#include "perf.h"
16f762a2 41#include "builtin.h"
148be2c1 42#include "util/util.h"
5242519b
IM
43#include "util/parse-options.h"
44#include "util/parse-events.h"
8f28827a 45#include "util/event.h"
69aad6f1 46#include "util/evsel.h"
8f28827a 47#include "util/debug.h"
60666c63 48#include "util/header.h"
a12b51c4 49#include "util/cpumap.h"
d6d901c2 50#include "util/thread.h"
ddcacfa0 51
ddcacfa0 52#include <sys/prctl.h>
42202dd5 53#include <math.h>
5af52b51 54#include <locale.h>
16c8a109 55
69aad6f1
ACM
56#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
57
d7470b6a
SE
58#define DEFAULT_SEPARATOR " "
59
cdd6c482 60static struct perf_event_attr default_attrs[] = {
ddcacfa0 61
56aab464
IM
62 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
63 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
64 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
65 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
f4dbfa8f 66
56aab464
IM
67 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
68 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
56aab464
IM
69 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
70 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
dd86e72a
IM
71 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES },
72 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES },
f4dbfa8f 73
ddcacfa0 74};
5242519b 75
c0555642 76static bool system_wide = false;
c45c6ea2 77static int nr_cpus = 0;
3d632595 78static int run_idx = 0;
ddcacfa0 79
3d632595 80static int run_count = 1;
2e6cdf99 81static bool no_inherit = false;
c0555642 82static bool scale = true;
f5b4a9c3 83static bool no_aggr = false;
933da83a 84static pid_t target_pid = -1;
d6d901c2
ZY
85static pid_t target_tid = -1;
86static pid_t *all_tids = NULL;
87static int thread_num = 0;
933da83a 88static pid_t child_pid = -1;
c0555642 89static bool null_run = false;
201e0b06 90static bool big_num = true;
d7470b6a 91static int big_num_opt = -1;
c45c6ea2 92static const char *cpu_list;
d7470b6a
SE
93static const char *csv_sep = NULL;
94static bool csv_output = false;
5af52b51 95
60666c63
LW
96static volatile int done = 0;
97
506d4bc8
PZ
98struct stats
99{
8a02631a 100 double n, mean, M2;
506d4bc8 101};
42202dd5 102
69aad6f1
ACM
103struct perf_stat {
104 struct stats res_stats[3];
69aad6f1
ACM
105};
106
c52b12ed 107static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
69aad6f1 108{
c52b12ed 109 evsel->priv = zalloc(sizeof(struct perf_stat));
69aad6f1
ACM
110 return evsel->priv == NULL ? -ENOMEM : 0;
111}
112
113static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
114{
115 free(evsel->priv);
116 evsel->priv = NULL;
117}
118
9e9772c4
PZ
119static void update_stats(struct stats *stats, u64 val)
120{
8a02631a 121 double delta;
9e9772c4 122
8a02631a
PZ
123 stats->n++;
124 delta = val - stats->mean;
125 stats->mean += delta / stats->n;
126 stats->M2 += delta*(val - stats->mean);
9e9772c4
PZ
127}
128
506d4bc8
PZ
129static double avg_stats(struct stats *stats)
130{
8a02631a 131 return stats->mean;
506d4bc8 132}
42202dd5 133
506d4bc8 134/*
63d40deb
PZ
135 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
136 *
8a02631a
PZ
137 * (\Sum n_i^2) - ((\Sum n_i)^2)/n
138 * s^2 = -------------------------------
139 * n - 1
63d40deb
PZ
140 *
141 * http://en.wikipedia.org/wiki/Stddev
142 *
143 * The std dev of the mean is related to the std dev by:
144 *
145 * s
146 * s_mean = -------
147 * sqrt(n)
148 *
506d4bc8
PZ
149 */
150static double stddev_stats(struct stats *stats)
151{
8a02631a
PZ
152 double variance = stats->M2 / (stats->n - 1);
153 double variance_mean = variance / stats->n;
42202dd5 154
63d40deb 155 return sqrt(variance_mean);
506d4bc8 156}
42202dd5 157
f5b4a9c3
SE
158struct stats runtime_nsecs_stats[MAX_NR_CPUS];
159struct stats runtime_cycles_stats[MAX_NR_CPUS];
160struct stats runtime_branches_stats[MAX_NR_CPUS];
506d4bc8 161struct stats walltime_nsecs_stats;
be1ac0d8 162
cca03c0a 163#define ERR_PERF_OPEN \
d9cf837e 164"counter %d, sys_perf_event_open() syscall returned with %d (%s). /bin/dmesg may provide additional information."
cca03c0a 165
69aad6f1 166static int create_perf_stat_counter(struct perf_evsel *evsel, bool *perm_err)
ddcacfa0 167{
69aad6f1 168 struct perf_event_attr *attr = &evsel->attr;
d6d901c2 169 int thread;
084ab9f8 170 int ncreated = 0;
16c8a109 171
ddcacfa0 172 if (scale)
a21ca2ca
IM
173 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
174 PERF_FORMAT_TOTAL_TIME_RUNNING;
ddcacfa0
IM
175
176 if (system_wide) {
c45c6ea2 177 int cpu;
f37a291c 178
cca03c0a 179 for (cpu = 0; cpu < nr_cpus; cpu++) {
69aad6f1 180 FD(evsel, cpu, 0) = sys_perf_event_open(attr,
d6d901c2 181 -1, cpumap[cpu], -1, 0);
69aad6f1 182 if (FD(evsel, cpu, 0) < 0) {
d9cf837e
CA
183 if (errno == EPERM || errno == EACCES)
184 *perm_err = true;
69aad6f1
ACM
185 error(ERR_PERF_OPEN, evsel->idx,
186 FD(evsel, cpu, 0), strerror(errno));
d9cf837e 187 } else {
084ab9f8 188 ++ncreated;
d9cf837e 189 }
ddcacfa0
IM
190 }
191 } else {
2e6cdf99
SE
192 attr->inherit = !no_inherit;
193 if (target_pid == -1 && target_tid == -1) {
6be2850e
ZY
194 attr->disabled = 1;
195 attr->enable_on_exec = 1;
196 }
d6d901c2 197 for (thread = 0; thread < thread_num; thread++) {
69aad6f1 198 FD(evsel, 0, thread) = sys_perf_event_open(attr,
d6d901c2 199 all_tids[thread], -1, -1, 0);
69aad6f1 200 if (FD(evsel, 0, thread) < 0) {
d9cf837e
CA
201 if (errno == EPERM || errno == EACCES)
202 *perm_err = true;
69aad6f1
ACM
203 error(ERR_PERF_OPEN, evsel->idx,
204 FD(evsel, 0, thread),
084ab9f8 205 strerror(errno));
d9cf837e 206 } else {
084ab9f8 207 ++ncreated;
d9cf837e 208 }
d6d901c2 209 }
ddcacfa0 210 }
084ab9f8
ACM
211
212 return ncreated;
ddcacfa0
IM
213}
214
c04f5e5d
IM
215/*
216 * Does the counter have nsecs as a unit?
217 */
daec78a0 218static inline int nsec_counter(struct perf_evsel *evsel)
c04f5e5d 219{
daec78a0
ACM
220 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
221 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
c04f5e5d
IM
222 return 1;
223
224 return 0;
225}
226
227/*
2996f5dd 228 * Read out the results of a single counter:
f5b4a9c3 229 * aggregate counts across CPUs in system-wide mode
c04f5e5d 230 */
c52b12ed 231static int read_counter_aggr(struct perf_evsel *counter)
c04f5e5d 232{
69aad6f1 233 struct perf_stat *ps = counter->priv;
c52b12ed
ACM
234 u64 *count = counter->counts->aggr.values;
235 int i;
2996f5dd 236
c52b12ed
ACM
237 if (__perf_evsel__read(counter, nr_cpus, thread_num, scale) < 0)
238 return -1;
9e9772c4
PZ
239
240 for (i = 0; i < 3; i++)
69aad6f1 241 update_stats(&ps->res_stats[i], count[i]);
9e9772c4
PZ
242
243 if (verbose) {
244 fprintf(stderr, "%s: %Ld %Ld %Ld\n", event_name(counter),
245 count[0], count[1], count[2]);
246 }
247
be1ac0d8
IM
248 /*
249 * Save the full runtime - to allow normalization during printout:
250 */
daec78a0 251 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
f5b4a9c3 252 update_stats(&runtime_nsecs_stats[0], count[0]);
daec78a0 253 if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
f5b4a9c3 254 update_stats(&runtime_cycles_stats[0], count[0]);
daec78a0 255 if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
f5b4a9c3 256 update_stats(&runtime_branches_stats[0], count[0]);
c52b12ed
ACM
257
258 return 0;
f5b4a9c3
SE
259}
260
261/*
262 * Read out the results of a single counter:
263 * do not aggregate counts across CPUs in system-wide mode
264 */
c52b12ed 265static int read_counter(struct perf_evsel *counter)
f5b4a9c3 266{
c52b12ed 267 u64 *count;
f5b4a9c3 268 int cpu;
f5b4a9c3
SE
269
270 for (cpu = 0; cpu < nr_cpus; cpu++) {
c52b12ed
ACM
271 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
272 return -1;
f5b4a9c3 273
c52b12ed 274 count = counter->counts->cpu[cpu].values;
f5b4a9c3 275
daec78a0 276 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
f5b4a9c3 277 update_stats(&runtime_nsecs_stats[cpu], count[0]);
daec78a0 278 if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
f5b4a9c3 279 update_stats(&runtime_cycles_stats[cpu], count[0]);
daec78a0 280 if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
f5b4a9c3
SE
281 update_stats(&runtime_branches_stats[cpu], count[0]);
282 }
c52b12ed
ACM
283
284 return 0;
2996f5dd
IM
285}
286
f37a291c 287static int run_perf_stat(int argc __used, const char **argv)
42202dd5
IM
288{
289 unsigned long long t0, t1;
69aad6f1 290 struct perf_evsel *counter;
42202dd5 291 int status = 0;
69aad6f1 292 int ncreated = 0;
051ae7f7 293 int child_ready_pipe[2], go_pipe[2];
d9cf837e 294 bool perm_err = false;
6be2850e 295 const bool forks = (argc > 0);
051ae7f7 296 char buf;
42202dd5
IM
297
298 if (!system_wide)
299 nr_cpus = 1;
300
60666c63 301 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
051ae7f7
PM
302 perror("failed to create pipes");
303 exit(1);
304 }
305
60666c63 306 if (forks) {
6be2850e 307 if ((child_pid = fork()) < 0)
60666c63
LW
308 perror("failed to fork");
309
6be2850e 310 if (!child_pid) {
60666c63
LW
311 close(child_ready_pipe[0]);
312 close(go_pipe[1]);
313 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
314
315 /*
316 * Do a dummy execvp to get the PLT entry resolved,
317 * so we avoid the resolver overhead on the real
318 * execvp call.
319 */
320 execvp("", (char **)argv);
321
322 /*
323 * Tell the parent we're ready to go
324 */
325 close(child_ready_pipe[1]);
326
327 /*
328 * Wait until the parent tells us to go.
329 */
330 if (read(go_pipe[0], &buf, 1) == -1)
331 perror("unable to read pipe");
332
333 execvp(argv[0], (char **)argv);
334
335 perror(argv[0]);
336 exit(-1);
337 }
051ae7f7 338
d6d901c2
ZY
339 if (target_tid == -1 && target_pid == -1 && !system_wide)
340 all_tids[0] = child_pid;
341
051ae7f7 342 /*
60666c63 343 * Wait for the child to be ready to exec.
051ae7f7
PM
344 */
345 close(child_ready_pipe[1]);
60666c63
LW
346 close(go_pipe[0]);
347 if (read(child_ready_pipe[0], &buf, 1) == -1)
a92bef0f 348 perror("unable to read pipe");
60666c63 349 close(child_ready_pipe[0]);
051ae7f7
PM
350 }
351
69aad6f1 352 list_for_each_entry(counter, &evsel_list, node)
d9cf837e
CA
353 ncreated += create_perf_stat_counter(counter, &perm_err);
354
355 if (ncreated < nr_counters) {
356 if (perm_err)
357 error("You may not have permission to collect %sstats.\n"
358 "\t Consider tweaking"
359 " /proc/sys/kernel/perf_event_paranoid or running as root.",
360 system_wide ? "system-wide " : "");
361 die("Not all events could be opened.\n");
084ab9f8
ACM
362 if (child_pid != -1)
363 kill(child_pid, SIGTERM);
364 return -1;
365 }
42202dd5
IM
366
367 /*
368 * Enable counters and exec the command:
369 */
370 t0 = rdclock();
42202dd5 371
60666c63
LW
372 if (forks) {
373 close(go_pipe[1]);
374 wait(&status);
375 } else {
6be2850e 376 while(!done) sleep(1);
60666c63 377 }
42202dd5 378
42202dd5
IM
379 t1 = rdclock();
380
9e9772c4 381 update_stats(&walltime_nsecs_stats, t1 - t0);
42202dd5 382
f5b4a9c3 383 if (no_aggr) {
c52b12ed 384 list_for_each_entry(counter, &evsel_list, node) {
f5b4a9c3 385 read_counter(counter);
c52b12ed
ACM
386 perf_evsel__close_fd(counter, nr_cpus, 1);
387 }
f5b4a9c3 388 } else {
c52b12ed 389 list_for_each_entry(counter, &evsel_list, node) {
f5b4a9c3 390 read_counter_aggr(counter);
c52b12ed
ACM
391 perf_evsel__close_fd(counter, nr_cpus, thread_num);
392 }
f5b4a9c3 393 }
c52b12ed 394
42202dd5
IM
395 return WEXITSTATUS(status);
396}
397
69aad6f1 398static void print_noise(struct perf_evsel *evsel, double avg)
42202dd5 399{
69aad6f1
ACM
400 struct perf_stat *ps;
401
849abde9
PZ
402 if (run_count == 1)
403 return;
404
69aad6f1 405 ps = evsel->priv;
849abde9 406 fprintf(stderr, " ( +- %7.3f%% )",
69aad6f1 407 100 * stddev_stats(&ps->res_stats[0]) / avg);
42202dd5
IM
408}
409
daec78a0 410static void nsec_printout(int cpu, struct perf_evsel *evsel, double avg)
44175b6f 411{
506d4bc8 412 double msecs = avg / 1e6;
d7470b6a
SE
413 char cpustr[16] = { '\0', };
414 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-24s";
44175b6f 415
f5b4a9c3 416 if (no_aggr)
d7470b6a
SE
417 sprintf(cpustr, "CPU%*d%s",
418 csv_output ? 0 : -4,
419 cpumap[cpu], csv_sep);
420
daec78a0 421 fprintf(stderr, fmt, cpustr, msecs, csv_sep, event_name(evsel));
d7470b6a
SE
422
423 if (csv_output)
424 return;
44175b6f 425
daec78a0 426 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
506d4bc8
PZ
427 fprintf(stderr, " # %10.3f CPUs ",
428 avg / avg_stats(&walltime_nsecs_stats));
44175b6f
IM
429}
430
daec78a0 431static void abs_printout(int cpu, struct perf_evsel *evsel, double avg)
44175b6f 432{
c7f7fea3 433 double total, ratio = 0.0;
f5b4a9c3 434 char cpustr[16] = { '\0', };
d7470b6a
SE
435 const char *fmt;
436
437 if (csv_output)
438 fmt = "%s%.0f%s%s";
439 else if (big_num)
440 fmt = "%s%'18.0f%s%-24s";
441 else
442 fmt = "%s%18.0f%s%-24s";
f5b4a9c3
SE
443
444 if (no_aggr)
d7470b6a
SE
445 sprintf(cpustr, "CPU%*d%s",
446 csv_output ? 0 : -4,
447 cpumap[cpu], csv_sep);
f5b4a9c3
SE
448 else
449 cpu = 0;
c7f7fea3 450
daec78a0 451 fprintf(stderr, fmt, cpustr, avg, csv_sep, event_name(evsel));
d7470b6a
SE
452
453 if (csv_output)
454 return;
44175b6f 455
daec78a0 456 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
f5b4a9c3 457 total = avg_stats(&runtime_cycles_stats[cpu]);
c7f7fea3
IM
458
459 if (total)
460 ratio = avg / total;
461
462 fprintf(stderr, " # %10.3f IPC ", ratio);
daec78a0 463 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
f5b4a9c3
SE
464 runtime_branches_stats[cpu].n != 0) {
465 total = avg_stats(&runtime_branches_stats[cpu]);
11018201
AB
466
467 if (total)
468 ratio = avg * 100 / total;
469
dd86e72a 470 fprintf(stderr, " # %10.3f %% ", ratio);
11018201 471
f5b4a9c3
SE
472 } else if (runtime_nsecs_stats[cpu].n != 0) {
473 total = avg_stats(&runtime_nsecs_stats[cpu]);
c7f7fea3
IM
474
475 if (total)
476 ratio = 1000.0 * avg / total;
477
478 fprintf(stderr, " # %10.3f M/sec", ratio);
44175b6f 479 }
44175b6f
IM
480}
481
2996f5dd
IM
482/*
483 * Print out the results of a single counter:
f5b4a9c3 484 * aggregated counts in system-wide mode
2996f5dd 485 */
69aad6f1 486static void print_counter_aggr(struct perf_evsel *counter)
2996f5dd 487{
69aad6f1
ACM
488 struct perf_stat *ps = counter->priv;
489 double avg = avg_stats(&ps->res_stats[0]);
c52b12ed 490 int scaled = counter->counts->scaled;
2996f5dd 491
2996f5dd 492 if (scaled == -1) {
d7470b6a
SE
493 fprintf(stderr, "%*s%s%-24s\n",
494 csv_output ? 0 : 18,
495 "<not counted>", csv_sep, event_name(counter));
2996f5dd
IM
496 return;
497 }
c04f5e5d 498
44175b6f 499 if (nsec_counter(counter))
f5b4a9c3 500 nsec_printout(-1, counter, avg);
44175b6f 501 else
f5b4a9c3 502 abs_printout(-1, counter, avg);
849abde9 503
d7470b6a
SE
504 if (csv_output) {
505 fputc('\n', stderr);
506 return;
507 }
508
849abde9 509 print_noise(counter, avg);
506d4bc8
PZ
510
511 if (scaled) {
512 double avg_enabled, avg_running;
513
69aad6f1
ACM
514 avg_enabled = avg_stats(&ps->res_stats[1]);
515 avg_running = avg_stats(&ps->res_stats[2]);
d7c29318 516
210ad39f 517 fprintf(stderr, " (scaled from %.2f%%)",
506d4bc8
PZ
518 100 * avg_running / avg_enabled);
519 }
44175b6f 520
c04f5e5d
IM
521 fprintf(stderr, "\n");
522}
523
f5b4a9c3
SE
524/*
525 * Print out the results of a single counter:
526 * does not use aggregated count in system-wide
527 */
69aad6f1 528static void print_counter(struct perf_evsel *counter)
f5b4a9c3
SE
529{
530 u64 ena, run, val;
531 int cpu;
532
533 for (cpu = 0; cpu < nr_cpus; cpu++) {
c52b12ed
ACM
534 val = counter->counts->cpu[cpu].val;
535 ena = counter->counts->cpu[cpu].ena;
536 run = counter->counts->cpu[cpu].run;
f5b4a9c3 537 if (run == 0 || ena == 0) {
d7470b6a
SE
538 fprintf(stderr, "CPU%*d%s%*s%s%-24s",
539 csv_output ? 0 : -4,
540 cpumap[cpu], csv_sep,
541 csv_output ? 0 : 18,
542 "<not counted>", csv_sep,
543 event_name(counter));
f5b4a9c3
SE
544
545 fprintf(stderr, "\n");
546 continue;
547 }
548
549 if (nsec_counter(counter))
550 nsec_printout(cpu, counter, val);
551 else
552 abs_printout(cpu, counter, val);
553
d7470b6a
SE
554 if (!csv_output) {
555 print_noise(counter, 1.0);
f5b4a9c3 556
d7470b6a
SE
557 if (run != ena) {
558 fprintf(stderr, " (scaled from %.2f%%)",
f5b4a9c3 559 100.0 * run / ena);
d7470b6a 560 }
f5b4a9c3
SE
561 }
562 fprintf(stderr, "\n");
563 }
564}
565
42202dd5
IM
566static void print_stat(int argc, const char **argv)
567{
69aad6f1
ACM
568 struct perf_evsel *counter;
569 int i;
42202dd5 570
ddcacfa0
IM
571 fflush(stdout);
572
d7470b6a
SE
573 if (!csv_output) {
574 fprintf(stderr, "\n");
575 fprintf(stderr, " Performance counter stats for ");
576 if(target_pid == -1 && target_tid == -1) {
577 fprintf(stderr, "\'%s", argv[0]);
578 for (i = 1; i < argc; i++)
579 fprintf(stderr, " %s", argv[i]);
580 } else if (target_pid != -1)
581 fprintf(stderr, "process id \'%d", target_pid);
582 else
583 fprintf(stderr, "thread id \'%d", target_tid);
44db76c8 584
d7470b6a
SE
585 fprintf(stderr, "\'");
586 if (run_count > 1)
587 fprintf(stderr, " (%d runs)", run_count);
588 fprintf(stderr, ":\n\n");
589 }
2996f5dd 590
f5b4a9c3 591 if (no_aggr) {
69aad6f1 592 list_for_each_entry(counter, &evsel_list, node)
f5b4a9c3
SE
593 print_counter(counter);
594 } else {
69aad6f1 595 list_for_each_entry(counter, &evsel_list, node)
f5b4a9c3
SE
596 print_counter_aggr(counter);
597 }
ddcacfa0 598
d7470b6a
SE
599 if (!csv_output) {
600 fprintf(stderr, "\n");
601 fprintf(stderr, " %18.9f seconds time elapsed",
602 avg_stats(&walltime_nsecs_stats)/1e9);
603 if (run_count > 1) {
604 fprintf(stderr, " ( +- %7.3f%% )",
506d4bc8
PZ
605 100*stddev_stats(&walltime_nsecs_stats) /
606 avg_stats(&walltime_nsecs_stats));
d7470b6a
SE
607 }
608 fprintf(stderr, "\n\n");
566747e6 609 }
ddcacfa0
IM
610}
611
f7b7c26e
PZ
612static volatile int signr = -1;
613
5242519b 614static void skip_signal(int signo)
ddcacfa0 615{
6be2850e 616 if(child_pid == -1)
60666c63
LW
617 done = 1;
618
f7b7c26e
PZ
619 signr = signo;
620}
621
622static void sig_atexit(void)
623{
933da83a
CW
624 if (child_pid != -1)
625 kill(child_pid, SIGTERM);
626
f7b7c26e
PZ
627 if (signr == -1)
628 return;
629
630 signal(signr, SIG_DFL);
631 kill(getpid(), signr);
5242519b
IM
632}
633
634static const char * const stat_usage[] = {
60666c63 635 "perf stat [<options>] [<command>]",
5242519b
IM
636 NULL
637};
638
d7470b6a
SE
639static int stat__set_big_num(const struct option *opt __used,
640 const char *s __used, int unset)
641{
642 big_num_opt = unset ? 0 : 1;
643 return 0;
644}
645
5242519b
IM
646static const struct option options[] = {
647 OPT_CALLBACK('e', "event", NULL, "event",
86847b62
TG
648 "event selector. use 'perf list' to list available events",
649 parse_events),
2e6cdf99
SE
650 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
651 "child tasks do not inherit counters"),
5242519b 652 OPT_INTEGER('p', "pid", &target_pid,
d6d901c2
ZY
653 "stat events on existing process id"),
654 OPT_INTEGER('t', "tid", &target_tid,
655 "stat events on existing thread id"),
5242519b 656 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3d632595 657 "system-wide collection from all CPUs"),
b26bc5a7 658 OPT_BOOLEAN('c', "scale", &scale,
3d632595 659 "scale/normalize counters"),
c0555642 660 OPT_INCR('v', "verbose", &verbose,
743ee1f8 661 "be more verbose (show counter open errors, etc)"),
42202dd5
IM
662 OPT_INTEGER('r', "repeat", &run_count,
663 "repeat command and print average + stddev (max: 100)"),
0cfb7a13
IM
664 OPT_BOOLEAN('n', "null", &null_run,
665 "null run - dont start any counters"),
d7470b6a
SE
666 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
667 "print large numbers with thousands\' separators",
668 stat__set_big_num),
c45c6ea2
SE
669 OPT_STRING('C', "cpu", &cpu_list, "cpu",
670 "list of cpus to monitor in system-wide"),
f5b4a9c3
SE
671 OPT_BOOLEAN('A', "no-aggr", &no_aggr,
672 "disable CPU count aggregation"),
d7470b6a
SE
673 OPT_STRING('x', "field-separator", &csv_sep, "separator",
674 "print counts with custom separator"),
5242519b
IM
675 OPT_END()
676};
677
f37a291c 678int cmd_stat(int argc, const char **argv, const char *prefix __used)
5242519b 679{
69aad6f1
ACM
680 struct perf_evsel *pos;
681 int status = -ENOMEM;
42202dd5 682
5af52b51
SE
683 setlocale(LC_ALL, "");
684
a0541234
AB
685 argc = parse_options(argc, argv, options, stat_usage,
686 PARSE_OPT_STOP_AT_NON_OPTION);
d7470b6a
SE
687
688 if (csv_sep)
689 csv_output = true;
690 else
691 csv_sep = DEFAULT_SEPARATOR;
692
693 /*
694 * let the spreadsheet do the pretty-printing
695 */
696 if (csv_output) {
697 /* User explicitely passed -B? */
698 if (big_num_opt == 1) {
699 fprintf(stderr, "-B option not supported with -x\n");
700 usage_with_options(stat_usage, options);
701 } else /* Nope, so disable big number formatting */
702 big_num = false;
703 } else if (big_num_opt == 0) /* User passed --no-big-num */
704 big_num = false;
705
d6d901c2 706 if (!argc && target_pid == -1 && target_tid == -1)
5242519b 707 usage_with_options(stat_usage, options);
9e9772c4 708 if (run_count <= 0)
42202dd5 709 usage_with_options(stat_usage, options);
ddcacfa0 710
f5b4a9c3
SE
711 /* no_aggr is for system-wide only */
712 if (no_aggr && !system_wide)
713 usage_with_options(stat_usage, options);
714
c3043569
JSR
715 /* Set attrs and nr_counters if no event is selected and !null_run */
716 if (!null_run && !nr_counters) {
69aad6f1
ACM
717 size_t c;
718
c3043569 719 nr_counters = ARRAY_SIZE(default_attrs);
69aad6f1
ACM
720
721 for (c = 0; c < ARRAY_SIZE(default_attrs); ++c) {
722 pos = perf_evsel__new(default_attrs[c].type,
723 default_attrs[c].config,
724 nr_counters);
725 if (pos == NULL)
726 goto out;
727 list_add(&pos->node, &evsel_list);
728 }
c3043569 729 }
ddcacfa0 730
a12b51c4 731 if (system_wide)
c45c6ea2 732 nr_cpus = read_cpu_map(cpu_list);
a12b51c4
PM
733 else
734 nr_cpus = 1;
ddcacfa0 735
c45c6ea2
SE
736 if (nr_cpus < 1)
737 usage_with_options(stat_usage, options);
738
d6d901c2
ZY
739 if (target_pid != -1) {
740 target_tid = target_pid;
741 thread_num = find_all_tid(target_pid, &all_tids);
742 if (thread_num <= 0) {
743 fprintf(stderr, "Can't find all threads of pid %d\n",
744 target_pid);
745 usage_with_options(stat_usage, options);
746 }
747 } else {
748 all_tids=malloc(sizeof(pid_t));
749 if (!all_tids)
750 return -ENOMEM;
751
752 all_tids[0] = target_tid;
753 thread_num = 1;
754 }
755
69aad6f1 756 list_for_each_entry(pos, &evsel_list, node) {
c52b12ed
ACM
757 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
758 perf_evsel__alloc_counts(pos, nr_cpus) < 0 ||
69aad6f1
ACM
759 perf_evsel__alloc_fd(pos, nr_cpus, thread_num) < 0)
760 goto out_free_fd;
d6d901c2
ZY
761 }
762
58d7e993
IM
763 /*
764 * We dont want to block the signals - that would cause
765 * child tasks to inherit that and Ctrl-C would not work.
766 * What we want is for Ctrl-C to work in the exec()-ed
767 * task, but being ignored by perf stat itself:
768 */
f7b7c26e 769 atexit(sig_atexit);
58d7e993
IM
770 signal(SIGINT, skip_signal);
771 signal(SIGALRM, skip_signal);
772 signal(SIGABRT, skip_signal);
773
42202dd5
IM
774 status = 0;
775 for (run_idx = 0; run_idx < run_count; run_idx++) {
776 if (run_count != 1 && verbose)
3d632595 777 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1);
42202dd5
IM
778 status = run_perf_stat(argc, argv);
779 }
780
084ab9f8
ACM
781 if (status != -1)
782 print_stat(argc, argv);
69aad6f1 783out_free_fd:
70d544d0 784 list_for_each_entry(pos, &evsel_list, node)
69aad6f1 785 perf_evsel__free_stat_priv(pos);
69aad6f1 786out:
42202dd5 787 return status;
ddcacfa0 788}
This page took 0.126385 seconds and 5 git commands to generate.