]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/perf/builtin-stat.c
perf list: Fix max event string size
[mirror_ubuntu-focal-kernel.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"
361c99a6 46#include "util/evlist.h"
69aad6f1 47#include "util/evsel.h"
8f28827a 48#include "util/debug.h"
a5d243d0 49#include "util/color.h"
60666c63 50#include "util/header.h"
a12b51c4 51#include "util/cpumap.h"
d6d901c2 52#include "util/thread.h"
fd78260b 53#include "util/thread_map.h"
ddcacfa0 54
ddcacfa0 55#include <sys/prctl.h>
42202dd5 56#include <math.h>
5af52b51 57#include <locale.h>
16c8a109 58
d7470b6a
SE
59#define DEFAULT_SEPARATOR " "
60
cdd6c482 61static struct perf_event_attr default_attrs[] = {
ddcacfa0 62
56aab464
IM
63 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
64 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
65 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
66 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
f4dbfa8f 67
56aab464 68 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
129c04cb
IM
69 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
70 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
56aab464 71 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
56aab464
IM
72 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
73 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
f4dbfa8f 74
ddcacfa0 75};
5242519b 76
c6264def
IM
77/*
78 * Detailed stats:
79 */
80static struct perf_event_attr detailed_attrs[] = {
81
82 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
83 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
84 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
85 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
86
87 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
129c04cb
IM
88 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
89 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
c6264def
IM
90 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
91 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
92 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
93
94 { .type = PERF_TYPE_HW_CACHE,
95 .config =
96 PERF_COUNT_HW_CACHE_L1D << 0 |
97 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
98 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
99
100 { .type = PERF_TYPE_HW_CACHE,
101 .config =
102 PERF_COUNT_HW_CACHE_L1D << 0 |
103 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
104 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
105
106 { .type = PERF_TYPE_HW_CACHE,
107 .config =
108 PERF_COUNT_HW_CACHE_LL << 0 |
109 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
110 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
111
112 { .type = PERF_TYPE_HW_CACHE,
113 .config =
114 PERF_COUNT_HW_CACHE_LL << 0 |
115 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
116 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
117};
118
361c99a6
ACM
119struct perf_evlist *evsel_list;
120
c0555642 121static bool system_wide = false;
3d632595 122static int run_idx = 0;
ddcacfa0 123
3d632595 124static int run_count = 1;
2e6cdf99 125static bool no_inherit = false;
c0555642 126static bool scale = true;
f5b4a9c3 127static bool no_aggr = false;
933da83a 128static pid_t target_pid = -1;
d6d901c2 129static pid_t target_tid = -1;
933da83a 130static pid_t child_pid = -1;
c0555642 131static bool null_run = false;
c6264def 132static bool detailed_run = false;
f9cef0a9 133static bool sync_run = false;
201e0b06 134static bool big_num = true;
d7470b6a 135static int big_num_opt = -1;
c45c6ea2 136static const char *cpu_list;
d7470b6a
SE
137static const char *csv_sep = NULL;
138static bool csv_output = false;
5af52b51 139
60666c63
LW
140static volatile int done = 0;
141
506d4bc8
PZ
142struct stats
143{
8a02631a 144 double n, mean, M2;
506d4bc8 145};
42202dd5 146
69aad6f1
ACM
147struct perf_stat {
148 struct stats res_stats[3];
69aad6f1
ACM
149};
150
c52b12ed 151static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
69aad6f1 152{
c52b12ed 153 evsel->priv = zalloc(sizeof(struct perf_stat));
69aad6f1
ACM
154 return evsel->priv == NULL ? -ENOMEM : 0;
155}
156
157static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
158{
159 free(evsel->priv);
160 evsel->priv = NULL;
161}
162
9e9772c4
PZ
163static void update_stats(struct stats *stats, u64 val)
164{
8a02631a 165 double delta;
9e9772c4 166
8a02631a
PZ
167 stats->n++;
168 delta = val - stats->mean;
169 stats->mean += delta / stats->n;
170 stats->M2 += delta*(val - stats->mean);
9e9772c4
PZ
171}
172
506d4bc8
PZ
173static double avg_stats(struct stats *stats)
174{
8a02631a 175 return stats->mean;
506d4bc8 176}
42202dd5 177
506d4bc8 178/*
63d40deb
PZ
179 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
180 *
8a02631a
PZ
181 * (\Sum n_i^2) - ((\Sum n_i)^2)/n
182 * s^2 = -------------------------------
183 * n - 1
63d40deb
PZ
184 *
185 * http://en.wikipedia.org/wiki/Stddev
186 *
187 * The std dev of the mean is related to the std dev by:
188 *
189 * s
190 * s_mean = -------
191 * sqrt(n)
192 *
506d4bc8
PZ
193 */
194static double stddev_stats(struct stats *stats)
195{
8a02631a
PZ
196 double variance = stats->M2 / (stats->n - 1);
197 double variance_mean = variance / stats->n;
42202dd5 198
63d40deb 199 return sqrt(variance_mean);
506d4bc8 200}
42202dd5 201
f5b4a9c3
SE
202struct stats runtime_nsecs_stats[MAX_NR_CPUS];
203struct stats runtime_cycles_stats[MAX_NR_CPUS];
d3d1e86d
IM
204struct stats runtime_stalled_cycles_front_stats[MAX_NR_CPUS];
205struct stats runtime_stalled_cycles_back_stats[MAX_NR_CPUS];
f5b4a9c3 206struct stats runtime_branches_stats[MAX_NR_CPUS];
d58f4c82 207struct stats runtime_cacherefs_stats[MAX_NR_CPUS];
8bb6c79f 208struct stats runtime_l1_dcache_stats[MAX_NR_CPUS];
506d4bc8 209struct stats walltime_nsecs_stats;
be1ac0d8 210
48290609 211static int create_perf_stat_counter(struct perf_evsel *evsel)
ddcacfa0 212{
69aad6f1 213 struct perf_event_attr *attr = &evsel->attr;
16c8a109 214
ddcacfa0 215 if (scale)
a21ca2ca
IM
216 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
217 PERF_FORMAT_TOTAL_TIME_RUNNING;
ddcacfa0 218
5d2cd909
ACM
219 attr->inherit = !no_inherit;
220
48290609 221 if (system_wide)
5d2cd909 222 return perf_evsel__open_per_cpu(evsel, evsel_list->cpus, false);
48290609 223
48290609
ACM
224 if (target_pid == -1 && target_tid == -1) {
225 attr->disabled = 1;
226 attr->enable_on_exec = 1;
ddcacfa0 227 }
084ab9f8 228
5d2cd909 229 return perf_evsel__open_per_thread(evsel, evsel_list->threads, false);
ddcacfa0
IM
230}
231
c04f5e5d
IM
232/*
233 * Does the counter have nsecs as a unit?
234 */
daec78a0 235static inline int nsec_counter(struct perf_evsel *evsel)
c04f5e5d 236{
daec78a0
ACM
237 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
238 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
c04f5e5d
IM
239 return 1;
240
241 return 0;
242}
243
dcd9936a
IM
244/*
245 * Update various tracking values we maintain to print
246 * more semantic information such as miss/hit ratios,
247 * instruction rates, etc:
248 */
249static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
250{
251 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
252 update_stats(&runtime_nsecs_stats[0], count[0]);
253 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
254 update_stats(&runtime_cycles_stats[0], count[0]);
d3d1e86d
IM
255 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
256 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
129c04cb 257 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
d3d1e86d 258 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
dcd9936a
IM
259 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
260 update_stats(&runtime_branches_stats[0], count[0]);
261 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
262 update_stats(&runtime_cacherefs_stats[0], count[0]);
8bb6c79f
IM
263 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
264 update_stats(&runtime_l1_dcache_stats[0], count[0]);
dcd9936a
IM
265}
266
c04f5e5d 267/*
2996f5dd 268 * Read out the results of a single counter:
f5b4a9c3 269 * aggregate counts across CPUs in system-wide mode
c04f5e5d 270 */
c52b12ed 271static int read_counter_aggr(struct perf_evsel *counter)
c04f5e5d 272{
69aad6f1 273 struct perf_stat *ps = counter->priv;
c52b12ed
ACM
274 u64 *count = counter->counts->aggr.values;
275 int i;
2996f5dd 276
7e2ed097
ACM
277 if (__perf_evsel__read(counter, evsel_list->cpus->nr,
278 evsel_list->threads->nr, scale) < 0)
c52b12ed 279 return -1;
9e9772c4
PZ
280
281 for (i = 0; i < 3; i++)
69aad6f1 282 update_stats(&ps->res_stats[i], count[i]);
9e9772c4
PZ
283
284 if (verbose) {
9486aa38
ACM
285 fprintf(stderr, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
286 event_name(counter), count[0], count[1], count[2]);
9e9772c4
PZ
287 }
288
be1ac0d8
IM
289 /*
290 * Save the full runtime - to allow normalization during printout:
291 */
dcd9936a 292 update_shadow_stats(counter, count);
c52b12ed
ACM
293
294 return 0;
f5b4a9c3
SE
295}
296
297/*
298 * Read out the results of a single counter:
299 * do not aggregate counts across CPUs in system-wide mode
300 */
c52b12ed 301static int read_counter(struct perf_evsel *counter)
f5b4a9c3 302{
c52b12ed 303 u64 *count;
f5b4a9c3 304 int cpu;
f5b4a9c3 305
7e2ed097 306 for (cpu = 0; cpu < evsel_list->cpus->nr; cpu++) {
c52b12ed
ACM
307 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
308 return -1;
f5b4a9c3 309
c52b12ed 310 count = counter->counts->cpu[cpu].values;
f5b4a9c3 311
dcd9936a 312 update_shadow_stats(counter, count);
f5b4a9c3 313 }
c52b12ed
ACM
314
315 return 0;
2996f5dd
IM
316}
317
f37a291c 318static int run_perf_stat(int argc __used, const char **argv)
42202dd5
IM
319{
320 unsigned long long t0, t1;
69aad6f1 321 struct perf_evsel *counter;
42202dd5 322 int status = 0;
051ae7f7 323 int child_ready_pipe[2], go_pipe[2];
6be2850e 324 const bool forks = (argc > 0);
051ae7f7 325 char buf;
42202dd5 326
60666c63 327 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
051ae7f7
PM
328 perror("failed to create pipes");
329 exit(1);
330 }
331
60666c63 332 if (forks) {
6be2850e 333 if ((child_pid = fork()) < 0)
60666c63
LW
334 perror("failed to fork");
335
6be2850e 336 if (!child_pid) {
60666c63
LW
337 close(child_ready_pipe[0]);
338 close(go_pipe[1]);
339 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
340
341 /*
342 * Do a dummy execvp to get the PLT entry resolved,
343 * so we avoid the resolver overhead on the real
344 * execvp call.
345 */
346 execvp("", (char **)argv);
347
348 /*
349 * Tell the parent we're ready to go
350 */
351 close(child_ready_pipe[1]);
352
353 /*
354 * Wait until the parent tells us to go.
355 */
356 if (read(go_pipe[0], &buf, 1) == -1)
357 perror("unable to read pipe");
358
359 execvp(argv[0], (char **)argv);
360
361 perror(argv[0]);
362 exit(-1);
363 }
051ae7f7 364
d6d901c2 365 if (target_tid == -1 && target_pid == -1 && !system_wide)
7e2ed097 366 evsel_list->threads->map[0] = child_pid;
d6d901c2 367
051ae7f7 368 /*
60666c63 369 * Wait for the child to be ready to exec.
051ae7f7
PM
370 */
371 close(child_ready_pipe[1]);
60666c63
LW
372 close(go_pipe[0]);
373 if (read(child_ready_pipe[0], &buf, 1) == -1)
a92bef0f 374 perror("unable to read pipe");
60666c63 375 close(child_ready_pipe[0]);
051ae7f7
PM
376 }
377
361c99a6 378 list_for_each_entry(counter, &evsel_list->entries, node) {
48290609 379 if (create_perf_stat_counter(counter) < 0) {
370faf1d 380 if (errno == EINVAL || errno == ENOSYS || errno == ENOENT)
ede70290
IM
381 continue;
382
383 if (errno == EPERM || errno == EACCES) {
48290609
ACM
384 error("You may not have permission to collect %sstats.\n"
385 "\t Consider tweaking"
386 " /proc/sys/kernel/perf_event_paranoid or running as root.",
387 system_wide ? "system-wide " : "");
388 } else {
389 error("open_counter returned with %d (%s). "
390 "/bin/dmesg may provide additional information.\n",
391 errno, strerror(errno));
392 }
393 if (child_pid != -1)
394 kill(child_pid, SIGTERM);
395 die("Not all events could be opened.\n");
396 return -1;
397 }
084ab9f8 398 }
42202dd5 399
cfd748ae
FW
400 if (perf_evlist__set_filters(evsel_list)) {
401 error("failed to set filter with %d (%s)\n", errno,
402 strerror(errno));
403 return -1;
404 }
405
42202dd5
IM
406 /*
407 * Enable counters and exec the command:
408 */
409 t0 = rdclock();
42202dd5 410
60666c63
LW
411 if (forks) {
412 close(go_pipe[1]);
413 wait(&status);
414 } else {
6be2850e 415 while(!done) sleep(1);
60666c63 416 }
42202dd5 417
42202dd5
IM
418 t1 = rdclock();
419
9e9772c4 420 update_stats(&walltime_nsecs_stats, t1 - t0);
42202dd5 421
f5b4a9c3 422 if (no_aggr) {
361c99a6 423 list_for_each_entry(counter, &evsel_list->entries, node) {
f5b4a9c3 424 read_counter(counter);
7e2ed097 425 perf_evsel__close_fd(counter, evsel_list->cpus->nr, 1);
c52b12ed 426 }
f5b4a9c3 427 } else {
361c99a6 428 list_for_each_entry(counter, &evsel_list->entries, node) {
f5b4a9c3 429 read_counter_aggr(counter);
7e2ed097
ACM
430 perf_evsel__close_fd(counter, evsel_list->cpus->nr,
431 evsel_list->threads->nr);
c52b12ed 432 }
f5b4a9c3 433 }
c52b12ed 434
42202dd5
IM
435 return WEXITSTATUS(status);
436}
437
f99844cb
IM
438static void print_noise_pct(double total, double avg)
439{
440 double pct = 0.0;
441
442 if (avg)
443 pct = 100.0*total/avg;
444
445 fprintf(stderr, " ( +-%6.2f%% )", pct);
446}
447
69aad6f1 448static void print_noise(struct perf_evsel *evsel, double avg)
42202dd5 449{
69aad6f1
ACM
450 struct perf_stat *ps;
451
849abde9
PZ
452 if (run_count == 1)
453 return;
454
69aad6f1 455 ps = evsel->priv;
f99844cb 456 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
42202dd5
IM
457}
458
daec78a0 459static void nsec_printout(int cpu, struct perf_evsel *evsel, double avg)
44175b6f 460{
506d4bc8 461 double msecs = avg / 1e6;
d7470b6a
SE
462 char cpustr[16] = { '\0', };
463 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-24s";
44175b6f 464
f5b4a9c3 465 if (no_aggr)
d7470b6a
SE
466 sprintf(cpustr, "CPU%*d%s",
467 csv_output ? 0 : -4,
7e2ed097 468 evsel_list->cpus->map[cpu], csv_sep);
d7470b6a 469
daec78a0 470 fprintf(stderr, fmt, cpustr, msecs, csv_sep, event_name(evsel));
d7470b6a 471
023695d9
SE
472 if (evsel->cgrp)
473 fprintf(stderr, "%s%s", csv_sep, evsel->cgrp->name);
474
d7470b6a
SE
475 if (csv_output)
476 return;
44175b6f 477
daec78a0 478 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
481f988a 479 fprintf(stderr, " # %8.3f CPUs utilized ", avg / avg_stats(&walltime_nsecs_stats));
44175b6f
IM
480}
481
d3d1e86d
IM
482static void print_stalled_cycles_frontend(int cpu, struct perf_evsel *evsel __used, double avg)
483{
484 double total, ratio = 0.0;
485 const char *color;
486
487 total = avg_stats(&runtime_cycles_stats[cpu]);
488
489 if (total)
490 ratio = avg / total * 100.0;
491
492 color = PERF_COLOR_NORMAL;
2b427e14 493 if (ratio > 50.0)
d3d1e86d 494 color = PERF_COLOR_RED;
2b427e14 495 else if (ratio > 30.0)
d3d1e86d 496 color = PERF_COLOR_MAGENTA;
2b427e14 497 else if (ratio > 10.0)
d3d1e86d
IM
498 color = PERF_COLOR_YELLOW;
499
fce3c786
IM
500 fprintf(stderr, " # ");
501 color_fprintf(stderr, color, "%6.2f%%", ratio);
d3d1e86d
IM
502 fprintf(stderr, " frontend cycles idle ");
503}
504
505static void print_stalled_cycles_backend(int cpu, struct perf_evsel *evsel __used, double avg)
a5d243d0
IM
506{
507 double total, ratio = 0.0;
508 const char *color;
509
510 total = avg_stats(&runtime_cycles_stats[cpu]);
511
512 if (total)
513 ratio = avg / total * 100.0;
514
515 color = PERF_COLOR_NORMAL;
516 if (ratio > 75.0)
517 color = PERF_COLOR_RED;
518 else if (ratio > 50.0)
519 color = PERF_COLOR_MAGENTA;
2b427e14 520 else if (ratio > 20.0)
a5d243d0
IM
521 color = PERF_COLOR_YELLOW;
522
fce3c786
IM
523 fprintf(stderr, " # ");
524 color_fprintf(stderr, color, "%6.2f%%", ratio);
525 fprintf(stderr, " backend cycles idle ");
a5d243d0
IM
526}
527
c78df6c1
IM
528static void print_branch_misses(int cpu, struct perf_evsel *evsel __used, double avg)
529{
530 double total, ratio = 0.0;
531 const char *color;
532
533 total = avg_stats(&runtime_branches_stats[cpu]);
534
535 if (total)
536 ratio = avg / total * 100.0;
537
538 color = PERF_COLOR_NORMAL;
539 if (ratio > 20.0)
540 color = PERF_COLOR_RED;
541 else if (ratio > 10.0)
542 color = PERF_COLOR_MAGENTA;
543 else if (ratio > 5.0)
544 color = PERF_COLOR_YELLOW;
545
fce3c786
IM
546 fprintf(stderr, " # ");
547 color_fprintf(stderr, color, "%6.2f%%", ratio);
c78df6c1
IM
548 fprintf(stderr, " of all branches ");
549}
550
8bb6c79f
IM
551static void print_l1_dcache_misses(int cpu, struct perf_evsel *evsel __used, double avg)
552{
553 double total, ratio = 0.0;
554 const char *color;
555
556 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
557
558 if (total)
559 ratio = avg / total * 100.0;
560
561 color = PERF_COLOR_NORMAL;
562 if (ratio > 20.0)
563 color = PERF_COLOR_RED;
564 else if (ratio > 10.0)
565 color = PERF_COLOR_MAGENTA;
566 else if (ratio > 5.0)
567 color = PERF_COLOR_YELLOW;
568
fce3c786
IM
569 fprintf(stderr, " # ");
570 color_fprintf(stderr, color, "%6.2f%%", ratio);
8bb6c79f
IM
571 fprintf(stderr, " of all L1-dcache hits ");
572}
573
daec78a0 574static void abs_printout(int cpu, struct perf_evsel *evsel, double avg)
44175b6f 575{
c7f7fea3 576 double total, ratio = 0.0;
f5b4a9c3 577 char cpustr[16] = { '\0', };
d7470b6a
SE
578 const char *fmt;
579
580 if (csv_output)
581 fmt = "%s%.0f%s%s";
582 else if (big_num)
583 fmt = "%s%'18.0f%s%-24s";
584 else
585 fmt = "%s%18.0f%s%-24s";
f5b4a9c3
SE
586
587 if (no_aggr)
d7470b6a
SE
588 sprintf(cpustr, "CPU%*d%s",
589 csv_output ? 0 : -4,
7e2ed097 590 evsel_list->cpus->map[cpu], csv_sep);
f5b4a9c3
SE
591 else
592 cpu = 0;
c7f7fea3 593
daec78a0 594 fprintf(stderr, fmt, cpustr, avg, csv_sep, event_name(evsel));
d7470b6a 595
023695d9
SE
596 if (evsel->cgrp)
597 fprintf(stderr, "%s%s", csv_sep, evsel->cgrp->name);
598
d7470b6a
SE
599 if (csv_output)
600 return;
44175b6f 601
daec78a0 602 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
f5b4a9c3 603 total = avg_stats(&runtime_cycles_stats[cpu]);
c7f7fea3
IM
604
605 if (total)
606 ratio = avg / total;
607
fce3c786 608 fprintf(stderr, " # %5.2f insns per cycle ", ratio);
481f988a 609
d3d1e86d
IM
610 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
611 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
481f988a
IM
612
613 if (total && avg) {
614 ratio = total / avg;
fce3c786 615 fprintf(stderr, "\n # %5.2f stalled cycles per insn", ratio);
481f988a
IM
616 }
617
daec78a0 618 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
f5b4a9c3 619 runtime_branches_stats[cpu].n != 0) {
c78df6c1 620 print_branch_misses(cpu, evsel, avg);
8bb6c79f
IM
621 } else if (
622 evsel->attr.type == PERF_TYPE_HW_CACHE &&
623 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
624 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
625 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
c6264def 626 runtime_l1_dcache_stats[cpu].n != 0) {
8bb6c79f 627 print_l1_dcache_misses(cpu, evsel, avg);
d58f4c82
IM
628 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
629 runtime_cacherefs_stats[cpu].n != 0) {
630 total = avg_stats(&runtime_cacherefs_stats[cpu]);
631
632 if (total)
633 ratio = avg * 100 / total;
634
481f988a 635 fprintf(stderr, " # %8.3f %% of all cache refs ", ratio);
d58f4c82 636
d3d1e86d
IM
637 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
638 print_stalled_cycles_frontend(cpu, evsel, avg);
129c04cb 639 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
d3d1e86d 640 print_stalled_cycles_backend(cpu, evsel, avg);
481f988a 641 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
f5b4a9c3 642 total = avg_stats(&runtime_nsecs_stats[cpu]);
c7f7fea3
IM
643
644 if (total)
481f988a 645 ratio = 1.0 * avg / total;
c7f7fea3 646
481f988a
IM
647 fprintf(stderr, " # %8.3f GHz ", ratio);
648 } else if (runtime_nsecs_stats[cpu].n != 0) {
649 total = avg_stats(&runtime_nsecs_stats[cpu]);
11ba2b85
IM
650
651 if (total)
481f988a 652 ratio = 1000.0 * avg / total;
11ba2b85 653
481f988a 654 fprintf(stderr, " # %8.3f M/sec ", ratio);
a5d243d0
IM
655 } else {
656 fprintf(stderr, " ");
44175b6f 657 }
44175b6f
IM
658}
659
2996f5dd
IM
660/*
661 * Print out the results of a single counter:
f5b4a9c3 662 * aggregated counts in system-wide mode
2996f5dd 663 */
69aad6f1 664static void print_counter_aggr(struct perf_evsel *counter)
2996f5dd 665{
69aad6f1
ACM
666 struct perf_stat *ps = counter->priv;
667 double avg = avg_stats(&ps->res_stats[0]);
c52b12ed 668 int scaled = counter->counts->scaled;
2996f5dd 669
2996f5dd 670 if (scaled == -1) {
023695d9 671 fprintf(stderr, "%*s%s%*s",
d7470b6a 672 csv_output ? 0 : 18,
023695d9
SE
673 "<not counted>",
674 csv_sep,
675 csv_output ? 0 : -24,
676 event_name(counter));
677
678 if (counter->cgrp)
679 fprintf(stderr, "%s%s", csv_sep, counter->cgrp->name);
680
681 fputc('\n', stderr);
2996f5dd
IM
682 return;
683 }
c04f5e5d 684
44175b6f 685 if (nsec_counter(counter))
f5b4a9c3 686 nsec_printout(-1, counter, avg);
44175b6f 687 else
f5b4a9c3 688 abs_printout(-1, counter, avg);
849abde9 689
d7470b6a
SE
690 if (csv_output) {
691 fputc('\n', stderr);
692 return;
693 }
694
849abde9 695 print_noise(counter, avg);
506d4bc8
PZ
696
697 if (scaled) {
698 double avg_enabled, avg_running;
699
69aad6f1
ACM
700 avg_enabled = avg_stats(&ps->res_stats[1]);
701 avg_running = avg_stats(&ps->res_stats[2]);
d7c29318 702
c6264def 703 fprintf(stderr, " (%.2f%%)", 100 * avg_running / avg_enabled);
506d4bc8 704 }
c04f5e5d
IM
705 fprintf(stderr, "\n");
706}
707
f5b4a9c3
SE
708/*
709 * Print out the results of a single counter:
710 * does not use aggregated count in system-wide
711 */
69aad6f1 712static void print_counter(struct perf_evsel *counter)
f5b4a9c3
SE
713{
714 u64 ena, run, val;
715 int cpu;
716
7e2ed097 717 for (cpu = 0; cpu < evsel_list->cpus->nr; cpu++) {
c52b12ed
ACM
718 val = counter->counts->cpu[cpu].val;
719 ena = counter->counts->cpu[cpu].ena;
720 run = counter->counts->cpu[cpu].run;
f5b4a9c3 721 if (run == 0 || ena == 0) {
023695d9 722 fprintf(stderr, "CPU%*d%s%*s%s%*s",
d7470b6a 723 csv_output ? 0 : -4,
7e2ed097 724 evsel_list->cpus->map[cpu], csv_sep,
d7470b6a
SE
725 csv_output ? 0 : 18,
726 "<not counted>", csv_sep,
023695d9 727 csv_output ? 0 : -24,
d7470b6a 728 event_name(counter));
f5b4a9c3 729
023695d9
SE
730 if (counter->cgrp)
731 fprintf(stderr, "%s%s", csv_sep, counter->cgrp->name);
732
733 fputc('\n', stderr);
f5b4a9c3
SE
734 continue;
735 }
736
737 if (nsec_counter(counter))
738 nsec_printout(cpu, counter, val);
739 else
740 abs_printout(cpu, counter, val);
741
d7470b6a
SE
742 if (!csv_output) {
743 print_noise(counter, 1.0);
f5b4a9c3 744
c6264def
IM
745 if (run != ena)
746 fprintf(stderr, " (%.2f%%)", 100.0 * run / ena);
f5b4a9c3 747 }
023695d9 748 fputc('\n', stderr);
f5b4a9c3
SE
749 }
750}
751
42202dd5
IM
752static void print_stat(int argc, const char **argv)
753{
69aad6f1
ACM
754 struct perf_evsel *counter;
755 int i;
42202dd5 756
ddcacfa0
IM
757 fflush(stdout);
758
d7470b6a
SE
759 if (!csv_output) {
760 fprintf(stderr, "\n");
761 fprintf(stderr, " Performance counter stats for ");
762 if(target_pid == -1 && target_tid == -1) {
763 fprintf(stderr, "\'%s", argv[0]);
764 for (i = 1; i < argc; i++)
765 fprintf(stderr, " %s", argv[i]);
766 } else if (target_pid != -1)
767 fprintf(stderr, "process id \'%d", target_pid);
768 else
769 fprintf(stderr, "thread id \'%d", target_tid);
44db76c8 770
d7470b6a
SE
771 fprintf(stderr, "\'");
772 if (run_count > 1)
773 fprintf(stderr, " (%d runs)", run_count);
774 fprintf(stderr, ":\n\n");
775 }
2996f5dd 776
f5b4a9c3 777 if (no_aggr) {
361c99a6 778 list_for_each_entry(counter, &evsel_list->entries, node)
f5b4a9c3
SE
779 print_counter(counter);
780 } else {
361c99a6 781 list_for_each_entry(counter, &evsel_list->entries, node)
f5b4a9c3
SE
782 print_counter_aggr(counter);
783 }
ddcacfa0 784
d7470b6a
SE
785 if (!csv_output) {
786 fprintf(stderr, "\n");
787 fprintf(stderr, " %18.9f seconds time elapsed",
788 avg_stats(&walltime_nsecs_stats)/1e9);
789 if (run_count > 1) {
f99844cb
IM
790 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
791 avg_stats(&walltime_nsecs_stats));
d7470b6a
SE
792 }
793 fprintf(stderr, "\n\n");
566747e6 794 }
ddcacfa0
IM
795}
796
f7b7c26e
PZ
797static volatile int signr = -1;
798
5242519b 799static void skip_signal(int signo)
ddcacfa0 800{
6be2850e 801 if(child_pid == -1)
60666c63
LW
802 done = 1;
803
f7b7c26e
PZ
804 signr = signo;
805}
806
807static void sig_atexit(void)
808{
933da83a
CW
809 if (child_pid != -1)
810 kill(child_pid, SIGTERM);
811
f7b7c26e
PZ
812 if (signr == -1)
813 return;
814
815 signal(signr, SIG_DFL);
816 kill(getpid(), signr);
5242519b
IM
817}
818
819static const char * const stat_usage[] = {
60666c63 820 "perf stat [<options>] [<command>]",
5242519b
IM
821 NULL
822};
823
d7470b6a
SE
824static int stat__set_big_num(const struct option *opt __used,
825 const char *s __used, int unset)
826{
827 big_num_opt = unset ? 0 : 1;
828 return 0;
829}
830
5242519b 831static const struct option options[] = {
361c99a6 832 OPT_CALLBACK('e', "event", &evsel_list, "event",
86847b62
TG
833 "event selector. use 'perf list' to list available events",
834 parse_events),
cfd748ae
FW
835 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
836 "event filter", parse_filter),
2e6cdf99
SE
837 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
838 "child tasks do not inherit counters"),
5242519b 839 OPT_INTEGER('p', "pid", &target_pid,
d6d901c2
ZY
840 "stat events on existing process id"),
841 OPT_INTEGER('t', "tid", &target_tid,
842 "stat events on existing thread id"),
5242519b 843 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3d632595 844 "system-wide collection from all CPUs"),
b26bc5a7 845 OPT_BOOLEAN('c', "scale", &scale,
3d632595 846 "scale/normalize counters"),
c0555642 847 OPT_INCR('v', "verbose", &verbose,
743ee1f8 848 "be more verbose (show counter open errors, etc)"),
42202dd5
IM
849 OPT_INTEGER('r', "repeat", &run_count,
850 "repeat command and print average + stddev (max: 100)"),
0cfb7a13
IM
851 OPT_BOOLEAN('n', "null", &null_run,
852 "null run - dont start any counters"),
c6264def
IM
853 OPT_BOOLEAN('d', "detailed", &detailed_run,
854 "detailed run - start a lot of events"),
f9cef0a9
IM
855 OPT_BOOLEAN('S', "sync", &sync_run,
856 "call sync() before starting a run"),
d7470b6a
SE
857 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
858 "print large numbers with thousands\' separators",
859 stat__set_big_num),
c45c6ea2
SE
860 OPT_STRING('C', "cpu", &cpu_list, "cpu",
861 "list of cpus to monitor in system-wide"),
f5b4a9c3
SE
862 OPT_BOOLEAN('A', "no-aggr", &no_aggr,
863 "disable CPU count aggregation"),
d7470b6a
SE
864 OPT_STRING('x', "field-separator", &csv_sep, "separator",
865 "print counts with custom separator"),
023695d9
SE
866 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
867 "monitor event in cgroup name only",
868 parse_cgroups),
5242519b
IM
869 OPT_END()
870};
871
f37a291c 872int cmd_stat(int argc, const char **argv, const char *prefix __used)
5242519b 873{
69aad6f1
ACM
874 struct perf_evsel *pos;
875 int status = -ENOMEM;
42202dd5 876
5af52b51
SE
877 setlocale(LC_ALL, "");
878
7e2ed097 879 evsel_list = perf_evlist__new(NULL, NULL);
361c99a6
ACM
880 if (evsel_list == NULL)
881 return -ENOMEM;
882
a0541234
AB
883 argc = parse_options(argc, argv, options, stat_usage,
884 PARSE_OPT_STOP_AT_NON_OPTION);
d7470b6a
SE
885
886 if (csv_sep)
887 csv_output = true;
888 else
889 csv_sep = DEFAULT_SEPARATOR;
890
891 /*
892 * let the spreadsheet do the pretty-printing
893 */
894 if (csv_output) {
895 /* User explicitely passed -B? */
896 if (big_num_opt == 1) {
897 fprintf(stderr, "-B option not supported with -x\n");
898 usage_with_options(stat_usage, options);
899 } else /* Nope, so disable big number formatting */
900 big_num = false;
901 } else if (big_num_opt == 0) /* User passed --no-big-num */
902 big_num = false;
903
d6d901c2 904 if (!argc && target_pid == -1 && target_tid == -1)
5242519b 905 usage_with_options(stat_usage, options);
9e9772c4 906 if (run_count <= 0)
42202dd5 907 usage_with_options(stat_usage, options);
ddcacfa0 908
023695d9
SE
909 /* no_aggr, cgroup are for system-wide only */
910 if ((no_aggr || nr_cgroups) && !system_wide) {
911 fprintf(stderr, "both cgroup and no-aggregation "
912 "modes only available in system-wide mode\n");
913
f5b4a9c3 914 usage_with_options(stat_usage, options);
023695d9 915 }
f5b4a9c3 916
c3043569 917 /* Set attrs and nr_counters if no event is selected and !null_run */
c6264def
IM
918 if (detailed_run) {
919 size_t c;
920
921 for (c = 0; c < ARRAY_SIZE(detailed_attrs); ++c) {
922 pos = perf_evsel__new(&detailed_attrs[c], c);
923 if (pos == NULL)
924 goto out;
925 perf_evlist__add(evsel_list, pos);
926 }
927 }
928 /* Set attrs and nr_counters if no event is selected and !null_run */
929 if (!detailed_run && !null_run && !evsel_list->nr_entries) {
69aad6f1
ACM
930 size_t c;
931
69aad6f1 932 for (c = 0; c < ARRAY_SIZE(default_attrs); ++c) {
361c99a6 933 pos = perf_evsel__new(&default_attrs[c], c);
69aad6f1
ACM
934 if (pos == NULL)
935 goto out;
361c99a6 936 perf_evlist__add(evsel_list, pos);
69aad6f1 937 }
c3043569 938 }
ddcacfa0 939
5c98d466
ACM
940 if (target_pid != -1)
941 target_tid = target_pid;
942
7e2ed097
ACM
943 evsel_list->threads = thread_map__new(target_pid, target_tid);
944 if (evsel_list->threads == NULL) {
5c98d466
ACM
945 pr_err("Problems finding threads of monitor\n");
946 usage_with_options(stat_usage, options);
947 }
948
a12b51c4 949 if (system_wide)
7e2ed097 950 evsel_list->cpus = cpu_map__new(cpu_list);
a12b51c4 951 else
7e2ed097 952 evsel_list->cpus = cpu_map__dummy_new();
ddcacfa0 953
7e2ed097 954 if (evsel_list->cpus == NULL) {
60d567e2 955 perror("failed to parse CPUs map");
c45c6ea2 956 usage_with_options(stat_usage, options);
60d567e2
ACM
957 return -1;
958 }
c45c6ea2 959
361c99a6 960 list_for_each_entry(pos, &evsel_list->entries, node) {
c52b12ed 961 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
7e2ed097
ACM
962 perf_evsel__alloc_counts(pos, evsel_list->cpus->nr) < 0 ||
963 perf_evsel__alloc_fd(pos, evsel_list->cpus->nr, evsel_list->threads->nr) < 0)
69aad6f1 964 goto out_free_fd;
d6d901c2
ZY
965 }
966
58d7e993
IM
967 /*
968 * We dont want to block the signals - that would cause
969 * child tasks to inherit that and Ctrl-C would not work.
970 * What we want is for Ctrl-C to work in the exec()-ed
971 * task, but being ignored by perf stat itself:
972 */
f7b7c26e 973 atexit(sig_atexit);
58d7e993
IM
974 signal(SIGINT, skip_signal);
975 signal(SIGALRM, skip_signal);
976 signal(SIGABRT, skip_signal);
977
42202dd5
IM
978 status = 0;
979 for (run_idx = 0; run_idx < run_count; run_idx++) {
980 if (run_count != 1 && verbose)
3d632595 981 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1);
f9cef0a9
IM
982
983 if (sync_run)
984 sync();
985
42202dd5
IM
986 status = run_perf_stat(argc, argv);
987 }
988
084ab9f8
ACM
989 if (status != -1)
990 print_stat(argc, argv);
69aad6f1 991out_free_fd:
361c99a6 992 list_for_each_entry(pos, &evsel_list->entries, node)
69aad6f1 993 perf_evsel__free_stat_priv(pos);
7e2ed097 994 perf_evlist__delete_maps(evsel_list);
0015e2e1
ACM
995out:
996 perf_evlist__delete(evsel_list);
42202dd5 997 return status;
ddcacfa0 998}