]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - tools/perf/builtin-stat.c
perf stat: Using init_stats instead of memset
[mirror_ubuntu-hirsute-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
2cba3ffb 9 $ perf stat ./hackbench 10
ddcacfa0 10
2cba3ffb 11 Time: 0.118
ddcacfa0 12
2cba3ffb 13 Performance counter stats for './hackbench 10':
ddcacfa0 14
2cba3ffb
IM
15 1708.761321 task-clock # 11.037 CPUs utilized
16 41,190 context-switches # 0.024 M/sec
17 6,735 CPU-migrations # 0.004 M/sec
18 17,318 page-faults # 0.010 M/sec
19 5,205,202,243 cycles # 3.046 GHz
20 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
21 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
22 2,603,501,247 instructions # 0.50 insns per cycle
23 # 1.48 stalled cycles per insn
24 484,357,498 branches # 283.455 M/sec
25 6,388,934 branch-misses # 1.32% of all branches
26
27 0.154822978 seconds time elapsed
ddcacfa0 28
5242519b 29 *
2cba3ffb 30 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
5242519b
IM
31 *
32 * Improvements and fixes by:
33 *
34 * Arjan van de Ven <arjan@linux.intel.com>
35 * Yanmin Zhang <yanmin.zhang@intel.com>
36 * Wu Fengguang <fengguang.wu@intel.com>
37 * Mike Galbraith <efault@gmx.de>
38 * Paul Mackerras <paulus@samba.org>
6e750a8f 39 * Jaswinder Singh Rajput <jaswinder@kernel.org>
5242519b
IM
40 *
41 * Released under the GPL v2. (and only v2, not any later version)
ddcacfa0
IM
42 */
43
1a482f38 44#include "perf.h"
16f762a2 45#include "builtin.h"
f14d5707 46#include "util/cgroup.h"
148be2c1 47#include "util/util.h"
5242519b
IM
48#include "util/parse-options.h"
49#include "util/parse-events.h"
4cabc3d1 50#include "util/pmu.h"
8f28827a 51#include "util/event.h"
361c99a6 52#include "util/evlist.h"
69aad6f1 53#include "util/evsel.h"
8f28827a 54#include "util/debug.h"
a5d243d0 55#include "util/color.h"
0007ecea 56#include "util/stat.h"
60666c63 57#include "util/header.h"
a12b51c4 58#include "util/cpumap.h"
d6d901c2 59#include "util/thread.h"
fd78260b 60#include "util/thread_map.h"
ddcacfa0 61
1f16c575 62#include <stdlib.h>
ddcacfa0 63#include <sys/prctl.h>
5af52b51 64#include <locale.h>
16c8a109 65
d7470b6a 66#define DEFAULT_SEPARATOR " "
2cee77c4
DA
67#define CNTR_NOT_SUPPORTED "<not supported>"
68#define CNTR_NOT_COUNTED "<not counted>"
d7470b6a 69
13370a9b
SE
70static void print_stat(int argc, const char **argv);
71static void print_counter_aggr(struct perf_evsel *counter, char *prefix);
72static void print_counter(struct perf_evsel *counter, char *prefix);
86ee6e18 73static void print_aggr(char *prefix);
13370a9b 74
4cabc3d1 75/* Default events used for perf stat -T */
a454742c
JO
76static const char *transaction_attrs = {
77 "task-clock,"
4cabc3d1
AK
78 "{"
79 "instructions,"
80 "cycles,"
81 "cpu/cycles-t/,"
82 "cpu/tx-start/,"
83 "cpu/el-start/,"
84 "cpu/cycles-ct/"
85 "}"
86};
87
88/* More limited version when the CPU does not have all events. */
a454742c
JO
89static const char * transaction_limited_attrs = {
90 "task-clock,"
4cabc3d1
AK
91 "{"
92 "instructions,"
93 "cycles,"
94 "cpu/cycles-t/,"
95 "cpu/tx-start/"
96 "}"
97};
98
666e6d48 99static struct perf_evlist *evsel_list;
361c99a6 100
602ad878 101static struct target target = {
77a6f014
NK
102 .uid = UINT_MAX,
103};
ddcacfa0 104
3d632595 105static int run_count = 1;
2e6cdf99 106static bool no_inherit = false;
c0555642 107static bool scale = true;
86ee6e18 108static enum aggr_mode aggr_mode = AGGR_GLOBAL;
d07f0b12 109static volatile pid_t child_pid = -1;
c0555642 110static bool null_run = false;
2cba3ffb 111static int detailed_run = 0;
4cabc3d1 112static bool transaction_run;
201e0b06 113static bool big_num = true;
d7470b6a 114static int big_num_opt = -1;
d7470b6a
SE
115static const char *csv_sep = NULL;
116static bool csv_output = false;
43bece79 117static bool group = false;
4aa9015f 118static FILE *output = NULL;
1f16c575
PZ
119static const char *pre_cmd = NULL;
120static const char *post_cmd = NULL;
121static bool sync_run = false;
13370a9b 122static unsigned int interval = 0;
41191688 123static unsigned int initial_delay = 0;
410136f5 124static unsigned int unit_width = 4; /* strlen("unit") */
a7e191c3 125static bool forever = false;
13370a9b 126static struct timespec ref_time;
86ee6e18
SE
127static struct cpu_map *aggr_map;
128static int (*aggr_get_id)(struct cpu_map *m, int cpu);
5af52b51 129
60666c63
LW
130static volatile int done = 0;
131
13370a9b
SE
132static inline void diff_timespec(struct timespec *r, struct timespec *a,
133 struct timespec *b)
134{
135 r->tv_sec = a->tv_sec - b->tv_sec;
136 if (a->tv_nsec < b->tv_nsec) {
137 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
138 r->tv_sec--;
139 } else {
140 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
141 }
142}
143
254ecbc7
JO
144static void perf_stat__reset_stats(void)
145{
146 perf_evlist__reset_stats(evsel_list);
f87027b9 147 perf_stat__reset_shadow_stats();
1eda3b21
JO
148}
149
cac21425 150static int create_perf_stat_counter(struct perf_evsel *evsel)
ddcacfa0 151{
69aad6f1 152 struct perf_event_attr *attr = &evsel->attr;
727ab04e 153
ddcacfa0 154 if (scale)
a21ca2ca
IM
155 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
156 PERF_FORMAT_TOTAL_TIME_RUNNING;
ddcacfa0 157
5d2cd909
ACM
158 attr->inherit = !no_inherit;
159
602ad878 160 if (target__has_cpu(&target))
594ac61a 161 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
5622c07b 162
602ad878 163 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
48290609 164 attr->disabled = 1;
41191688
AK
165 if (!initial_delay)
166 attr->enable_on_exec = 1;
ddcacfa0 167 }
084ab9f8 168
594ac61a 169 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
ddcacfa0
IM
170}
171
c04f5e5d
IM
172/*
173 * Does the counter have nsecs as a unit?
174 */
daec78a0 175static inline int nsec_counter(struct perf_evsel *evsel)
c04f5e5d 176{
daec78a0
ACM
177 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
178 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
c04f5e5d
IM
179 return 1;
180
181 return 0;
182}
183
779d0b99
JO
184static void zero_per_pkg(struct perf_evsel *counter)
185{
186 if (counter->per_pkg_mask)
187 memset(counter->per_pkg_mask, 0, MAX_NR_CPUS);
188}
189
190static int check_per_pkg(struct perf_evsel *counter, int cpu, bool *skip)
191{
192 unsigned long *mask = counter->per_pkg_mask;
193 struct cpu_map *cpus = perf_evsel__cpus(counter);
194 int s;
195
196 *skip = false;
197
198 if (!counter->per_pkg)
199 return 0;
200
201 if (cpu_map__empty(cpus))
202 return 0;
203
204 if (!mask) {
205 mask = zalloc(MAX_NR_CPUS);
206 if (!mask)
207 return -ENOMEM;
208
209 counter->per_pkg_mask = mask;
210 }
211
212 s = cpu_map__get_socket(cpus, cpu);
213 if (s < 0)
214 return -1;
215
216 *skip = test_and_set_bit(s, mask) == 1;
217 return 0;
218}
219
3b3eb044
JO
220static int
221process_counter_values(struct perf_evsel *evsel, int cpu, int thread,
222 struct perf_counts_values *count)
060c4f9c 223{
1971f59f 224 struct perf_counts_values *aggr = &evsel->counts->aggr;
779d0b99
JO
225 static struct perf_counts_values zero;
226 bool skip = false;
227
228 if (check_per_pkg(evsel, cpu, &skip)) {
229 pr_err("failed to read per-pkg counter\n");
230 return -1;
231 }
232
233 if (skip)
234 count = &zero;
1971f59f 235
060c4f9c
JO
236 switch (aggr_mode) {
237 case AGGR_CORE:
238 case AGGR_SOCKET:
239 case AGGR_NONE:
6c0345b7 240 if (!evsel->snapshot)
a6fa0038 241 perf_evsel__compute_deltas(evsel, cpu, thread, count);
060c4f9c 242 perf_counts_values__scale(count, scale, NULL);
56f0fd45 243 if (aggr_mode == AGGR_NONE)
f87027b9 244 perf_stat__update_shadow_stats(evsel, count->values, cpu);
060c4f9c
JO
245 break;
246 case AGGR_GLOBAL:
1971f59f
JO
247 aggr->val += count->val;
248 if (scale) {
249 aggr->ena += count->ena;
250 aggr->run += count->run;
251 }
060c4f9c
JO
252 default:
253 break;
254 }
255
256 return 0;
257}
258
3b3eb044
JO
259static int process_counter_maps(struct perf_evsel *counter)
260{
261 int nthreads = thread_map__nr(counter->threads);
262 int ncpus = perf_evsel__nr_cpus(counter);
263 int cpu, thread;
1971f59f 264
3b3eb044
JO
265 if (counter->system_wide)
266 nthreads = 1;
267
268 for (thread = 0; thread < nthreads; thread++) {
269 for (cpu = 0; cpu < ncpus; cpu++) {
270 if (process_counter_values(counter, cpu, thread,
271 perf_counts(counter->counts, cpu, thread)))
272 return -1;
273 }
274 }
275
276 return 0;
277}
278
279static int process_counter(struct perf_evsel *counter)
c04f5e5d 280{
1971f59f 281 struct perf_counts_values *aggr = &counter->counts->aggr;
69aad6f1 282 struct perf_stat *ps = counter->priv;
c52b12ed 283 u64 *count = counter->counts->aggr.values;
3b3eb044 284 int i, ret;
2996f5dd 285
1971f59f 286 aggr->val = aggr->ena = aggr->run = 0;
5835e228 287 init_stats(ps->res_stats);
1971f59f 288
32ce0a47
JO
289 if (counter->per_pkg)
290 zero_per_pkg(counter);
291
3b3eb044
JO
292 ret = process_counter_maps(counter);
293 if (ret)
294 return ret;
295
296 if (aggr_mode != AGGR_GLOBAL)
297 return 0;
9e9772c4 298
6c0345b7 299 if (!counter->snapshot)
a6fa0038 300 perf_evsel__compute_deltas(counter, -1, -1, aggr);
1971f59f
JO
301 perf_counts_values__scale(aggr, scale, &counter->counts->scaled);
302
9e9772c4 303 for (i = 0; i < 3; i++)
69aad6f1 304 update_stats(&ps->res_stats[i], count[i]);
9e9772c4
PZ
305
306 if (verbose) {
4aa9015f 307 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
7289f83c 308 perf_evsel__name(counter), count[0], count[1], count[2]);
9e9772c4
PZ
309 }
310
be1ac0d8
IM
311 /*
312 * Save the full runtime - to allow normalization during printout:
313 */
f87027b9 314 perf_stat__update_shadow_stats(counter, count, 0);
c52b12ed
ACM
315
316 return 0;
f5b4a9c3
SE
317}
318
319/*
320 * Read out the results of a single counter:
321 * do not aggregate counts across CPUs in system-wide mode
322 */
c52b12ed 323static int read_counter(struct perf_evsel *counter)
f5b4a9c3 324{
9bf1a529
JO
325 int nthreads = thread_map__nr(evsel_list->threads);
326 int ncpus = perf_evsel__nr_cpus(counter);
327 int cpu, thread;
f5b4a9c3 328
3b4331d9
SP
329 if (!counter->supported)
330 return -ENOENT;
331
9bf1a529
JO
332 if (counter->system_wide)
333 nthreads = 1;
334
335 for (thread = 0; thread < nthreads; thread++) {
336 for (cpu = 0; cpu < ncpus; cpu++) {
3b3eb044
JO
337 struct perf_counts_values *count;
338
339 count = perf_counts(counter->counts, cpu, thread);
340 if (perf_evsel__read(counter, cpu, thread, count))
9bf1a529
JO
341 return -1;
342 }
f5b4a9c3 343 }
c52b12ed
ACM
344
345 return 0;
2996f5dd
IM
346}
347
106a94a0 348static void read_counters(bool close)
13370a9b 349{
13370a9b 350 struct perf_evsel *counter;
13370a9b 351
106a94a0 352 evlist__for_each(evsel_list, counter) {
3b3eb044
JO
353 if (read_counter(counter))
354 pr_warning("failed to read counter %s\n", counter->name);
355
356 if (process_counter(counter))
357 pr_warning("failed to process counter %s\n", counter->name);
106a94a0
JO
358
359 if (close) {
360 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
361 thread_map__nr(evsel_list->threads));
13370a9b
SE
362 }
363 }
106a94a0
JO
364}
365
ba411a95 366static void process_interval(void)
106a94a0
JO
367{
368 static int num_print_interval;
369 struct perf_evsel *counter;
370 struct timespec ts, rs;
371 char prefix[64];
372
373 read_counters(false);
86ee6e18 374
13370a9b
SE
375 clock_gettime(CLOCK_MONOTONIC, &ts);
376 diff_timespec(&rs, &ts, &ref_time);
377 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
378
379 if (num_print_interval == 0 && !csv_output) {
86ee6e18
SE
380 switch (aggr_mode) {
381 case AGGR_SOCKET:
410136f5 382 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
86ee6e18 383 break;
12c08a9f 384 case AGGR_CORE:
410136f5 385 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
12c08a9f 386 break;
86ee6e18 387 case AGGR_NONE:
410136f5 388 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
86ee6e18
SE
389 break;
390 case AGGR_GLOBAL:
391 default:
410136f5 392 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
86ee6e18 393 }
13370a9b
SE
394 }
395
396 if (++num_print_interval == 25)
397 num_print_interval = 0;
398
86ee6e18 399 switch (aggr_mode) {
12c08a9f 400 case AGGR_CORE:
86ee6e18
SE
401 case AGGR_SOCKET:
402 print_aggr(prefix);
403 break;
404 case AGGR_NONE:
0050f7aa 405 evlist__for_each(evsel_list, counter)
13370a9b 406 print_counter(counter, prefix);
86ee6e18
SE
407 break;
408 case AGGR_GLOBAL:
409 default:
0050f7aa 410 evlist__for_each(evsel_list, counter)
13370a9b
SE
411 print_counter_aggr(counter, prefix);
412 }
2bbf03f1
AK
413
414 fflush(output);
13370a9b
SE
415}
416
41191688
AK
417static void handle_initial_delay(void)
418{
419 struct perf_evsel *counter;
420
421 if (initial_delay) {
422 const int ncpus = cpu_map__nr(evsel_list->cpus),
423 nthreads = thread_map__nr(evsel_list->threads);
424
425 usleep(initial_delay * 1000);
0050f7aa 426 evlist__for_each(evsel_list, counter)
41191688
AK
427 perf_evsel__enable(counter, ncpus, nthreads);
428 }
429}
430
f33cbe72 431static volatile int workload_exec_errno;
6af206fd
ACM
432
433/*
434 * perf_evlist__prepare_workload will send a SIGUSR1
435 * if the fork fails, since we asked by setting its
436 * want_signal to true.
437 */
f33cbe72
ACM
438static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
439 void *ucontext __maybe_unused)
6af206fd 440{
f33cbe72 441 workload_exec_errno = info->si_value.sival_int;
6af206fd
ACM
442}
443
acf28922 444static int __run_perf_stat(int argc, const char **argv)
42202dd5 445{
56e52e85 446 char msg[512];
42202dd5 447 unsigned long long t0, t1;
cac21425 448 struct perf_evsel *counter;
13370a9b 449 struct timespec ts;
410136f5 450 size_t l;
42202dd5 451 int status = 0;
6be2850e 452 const bool forks = (argc > 0);
42202dd5 453
13370a9b
SE
454 if (interval) {
455 ts.tv_sec = interval / 1000;
456 ts.tv_nsec = (interval % 1000) * 1000000;
457 } else {
458 ts.tv_sec = 1;
459 ts.tv_nsec = 0;
460 }
461
60666c63 462 if (forks) {
735f7e0b
ACM
463 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
464 workload_exec_failed_signal) < 0) {
acf28922
NK
465 perror("failed to prepare workload");
466 return -1;
60666c63 467 }
d20a47e7 468 child_pid = evsel_list->workload.pid;
051ae7f7
PM
469 }
470
6a4bb04c 471 if (group)
63dab225 472 perf_evlist__set_leader(evsel_list);
6a4bb04c 473
0050f7aa 474 evlist__for_each(evsel_list, counter) {
cac21425 475 if (create_perf_stat_counter(counter) < 0) {
979987a5
DA
476 /*
477 * PPC returns ENXIO for HW counters until 2.6.37
478 * (behavior changed with commit b0a873e).
479 */
38f6ae1e 480 if (errno == EINVAL || errno == ENOSYS ||
979987a5
DA
481 errno == ENOENT || errno == EOPNOTSUPP ||
482 errno == ENXIO) {
c63ca0c0
DA
483 if (verbose)
484 ui__warning("%s event is not supported by the kernel.\n",
7289f83c 485 perf_evsel__name(counter));
2cee77c4 486 counter->supported = false;
cb5ef600
KL
487
488 if ((counter->leader != counter) ||
489 !(counter->leader->nr_members > 1))
490 continue;
c63ca0c0 491 }
ede70290 492
56e52e85
ACM
493 perf_evsel__open_strerror(counter, &target,
494 errno, msg, sizeof(msg));
495 ui__error("%s\n", msg);
496
48290609
ACM
497 if (child_pid != -1)
498 kill(child_pid, SIGTERM);
fceda7fe 499
48290609
ACM
500 return -1;
501 }
2cee77c4 502 counter->supported = true;
410136f5
SE
503
504 l = strlen(counter->unit);
505 if (l > unit_width)
506 unit_width = l;
084ab9f8 507 }
42202dd5 508
23d4aad4
ACM
509 if (perf_evlist__apply_filters(evsel_list, &counter)) {
510 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
511 counter->filter, perf_evsel__name(counter), errno,
759e612b 512 strerror_r(errno, msg, sizeof(msg)));
cfd748ae
FW
513 return -1;
514 }
515
42202dd5
IM
516 /*
517 * Enable counters and exec the command:
518 */
519 t0 = rdclock();
13370a9b 520 clock_gettime(CLOCK_MONOTONIC, &ref_time);
42202dd5 521
60666c63 522 if (forks) {
acf28922 523 perf_evlist__start_workload(evsel_list);
41191688 524 handle_initial_delay();
acf28922 525
13370a9b
SE
526 if (interval) {
527 while (!waitpid(child_pid, &status, WNOHANG)) {
528 nanosleep(&ts, NULL);
ba411a95 529 process_interval();
13370a9b
SE
530 }
531 }
60666c63 532 wait(&status);
6af206fd 533
f33cbe72
ACM
534 if (workload_exec_errno) {
535 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
536 pr_err("Workload failed: %s\n", emsg);
6af206fd 537 return -1;
f33cbe72 538 }
6af206fd 539
33e49ea7
AK
540 if (WIFSIGNALED(status))
541 psignal(WTERMSIG(status), argv[0]);
60666c63 542 } else {
41191688 543 handle_initial_delay();
13370a9b
SE
544 while (!done) {
545 nanosleep(&ts, NULL);
546 if (interval)
ba411a95 547 process_interval();
13370a9b 548 }
60666c63 549 }
42202dd5 550
42202dd5
IM
551 t1 = rdclock();
552
9e9772c4 553 update_stats(&walltime_nsecs_stats, t1 - t0);
42202dd5 554
106a94a0 555 read_counters(true);
c52b12ed 556
42202dd5
IM
557 return WEXITSTATUS(status);
558}
559
41cde476 560static int run_perf_stat(int argc, const char **argv)
1f16c575
PZ
561{
562 int ret;
563
564 if (pre_cmd) {
565 ret = system(pre_cmd);
566 if (ret)
567 return ret;
568 }
569
570 if (sync_run)
571 sync();
572
573 ret = __run_perf_stat(argc, argv);
574 if (ret)
575 return ret;
576
577 if (post_cmd) {
578 ret = system(post_cmd);
579 if (ret)
580 return ret;
581 }
582
583 return ret;
584}
585
d73515c0
AK
586static void print_running(u64 run, u64 ena)
587{
588 if (csv_output) {
589 fprintf(output, "%s%" PRIu64 "%s%.2f",
590 csv_sep,
591 run,
592 csv_sep,
593 ena ? 100.0 * run / ena : 100.0);
594 } else if (run != ena) {
595 fprintf(output, " (%.2f%%)", 100.0 * run / ena);
596 }
597}
598
f99844cb
IM
599static void print_noise_pct(double total, double avg)
600{
0007ecea 601 double pct = rel_stddev_stats(total, avg);
f99844cb 602
3ae9a34d 603 if (csv_output)
4aa9015f 604 fprintf(output, "%s%.2f%%", csv_sep, pct);
a1bca6cc 605 else if (pct)
4aa9015f 606 fprintf(output, " ( +-%6.2f%% )", pct);
f99844cb
IM
607}
608
69aad6f1 609static void print_noise(struct perf_evsel *evsel, double avg)
42202dd5 610{
69aad6f1
ACM
611 struct perf_stat *ps;
612
849abde9
PZ
613 if (run_count == 1)
614 return;
615
69aad6f1 616 ps = evsel->priv;
f99844cb 617 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
42202dd5
IM
618}
619
12c08a9f 620static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
44175b6f 621{
86ee6e18 622 switch (aggr_mode) {
12c08a9f
SE
623 case AGGR_CORE:
624 fprintf(output, "S%d-C%*d%s%*d%s",
625 cpu_map__id_to_socket(id),
626 csv_output ? 0 : -8,
627 cpu_map__id_to_cpu(id),
628 csv_sep,
629 csv_output ? 0 : 4,
630 nr,
631 csv_sep);
632 break;
86ee6e18
SE
633 case AGGR_SOCKET:
634 fprintf(output, "S%*d%s%*d%s",
d7e7a451 635 csv_output ? 0 : -5,
12c08a9f 636 id,
d7e7a451
SE
637 csv_sep,
638 csv_output ? 0 : 4,
639 nr,
640 csv_sep);
86ee6e18
SE
641 break;
642 case AGGR_NONE:
643 fprintf(output, "CPU%*d%s",
d7470b6a 644 csv_output ? 0 : -4,
12c08a9f 645 perf_evsel__cpus(evsel)->map[id], csv_sep);
86ee6e18
SE
646 break;
647 case AGGR_GLOBAL:
648 default:
649 break;
650 }
651}
652
da88c7f7 653static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
86ee6e18
SE
654{
655 double msecs = avg / 1e6;
410136f5 656 const char *fmt_v, *fmt_n;
4bbe5a61 657 char name[25];
86ee6e18 658
410136f5
SE
659 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
660 fmt_n = csv_output ? "%s" : "%-25s";
661
da88c7f7 662 aggr_printout(evsel, id, nr);
d7470b6a 663
4bbe5a61
DA
664 scnprintf(name, sizeof(name), "%s%s",
665 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
410136f5
SE
666
667 fprintf(output, fmt_v, msecs, csv_sep);
668
669 if (csv_output)
670 fprintf(output, "%s%s", evsel->unit, csv_sep);
671 else
672 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
673
674 fprintf(output, fmt_n, name);
d7470b6a 675
023695d9 676 if (evsel->cgrp)
4aa9015f 677 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
023695d9 678
13370a9b 679 if (csv_output || interval)
d7470b6a 680 return;
44175b6f 681
daec78a0 682 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
4aa9015f
SE
683 fprintf(output, " # %8.3f CPUs utilized ",
684 avg / avg_stats(&walltime_nsecs_stats));
9dac6a29
NK
685 else
686 fprintf(output, " ");
44175b6f
IM
687}
688
556b1fb7
JO
689static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
690{
691 double sc = evsel->scale;
692 const char *fmt;
693 int cpu = cpu_map__id_to_cpu(id);
694
695 if (csv_output) {
696 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
697 } else {
698 if (big_num)
699 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
700 else
701 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
702 }
703
704 aggr_printout(evsel, id, nr);
705
706 if (aggr_mode == AGGR_GLOBAL)
707 cpu = 0;
708
709 fprintf(output, fmt, avg, csv_sep);
710
711 if (evsel->unit)
712 fprintf(output, "%-*s%s",
713 csv_output ? 0 : unit_width,
714 evsel->unit, csv_sep);
715
716 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
717
718 if (evsel->cgrp)
719 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
720
721 if (csv_output || interval)
722 return;
723
f87027b9 724 perf_stat__print_shadow_stats(output, evsel, avg, cpu, aggr_mode);
556b1fb7
JO
725}
726
86ee6e18 727static void print_aggr(char *prefix)
d7e7a451
SE
728{
729 struct perf_evsel *counter;
582ec082 730 int cpu, cpu2, s, s2, id, nr;
410136f5 731 double uval;
d7e7a451 732 u64 ena, run, val;
d7e7a451 733
86ee6e18 734 if (!(aggr_map || aggr_get_id))
d7e7a451
SE
735 return;
736
86ee6e18
SE
737 for (s = 0; s < aggr_map->nr; s++) {
738 id = aggr_map->map[s];
0050f7aa 739 evlist__for_each(evsel_list, counter) {
d7e7a451
SE
740 val = ena = run = 0;
741 nr = 0;
742 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
582ec082
SE
743 cpu2 = perf_evsel__cpus(counter)->map[cpu];
744 s2 = aggr_get_id(evsel_list->cpus, cpu2);
86ee6e18 745 if (s2 != id)
d7e7a451 746 continue;
a6fa0038
JO
747 val += perf_counts(counter->counts, cpu, 0)->val;
748 ena += perf_counts(counter->counts, cpu, 0)->ena;
749 run += perf_counts(counter->counts, cpu, 0)->run;
d7e7a451
SE
750 nr++;
751 }
752 if (prefix)
753 fprintf(output, "%s", prefix);
754
755 if (run == 0 || ena == 0) {
582ec082 756 aggr_printout(counter, id, nr);
86ee6e18 757
410136f5 758 fprintf(output, "%*s%s",
d7e7a451
SE
759 csv_output ? 0 : 18,
760 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
410136f5
SE
761 csv_sep);
762
763 fprintf(output, "%-*s%s",
764 csv_output ? 0 : unit_width,
765 counter->unit, csv_sep);
766
767 fprintf(output, "%*s",
768 csv_output ? 0 : -25,
d7e7a451 769 perf_evsel__name(counter));
86ee6e18 770
d7e7a451
SE
771 if (counter->cgrp)
772 fprintf(output, "%s%s",
773 csv_sep, counter->cgrp->name);
774
d73515c0 775 print_running(run, ena);
d7e7a451
SE
776 fputc('\n', output);
777 continue;
778 }
410136f5 779 uval = val * counter->scale;
d7e7a451
SE
780
781 if (nsec_counter(counter))
410136f5 782 nsec_printout(id, nr, counter, uval);
d7e7a451 783 else
410136f5 784 abs_printout(id, nr, counter, uval);
d7e7a451 785
d73515c0 786 if (!csv_output)
d7e7a451
SE
787 print_noise(counter, 1.0);
788
d73515c0 789 print_running(run, ena);
d7e7a451
SE
790 fputc('\n', output);
791 }
792 }
793}
794
2996f5dd
IM
795/*
796 * Print out the results of a single counter:
f5b4a9c3 797 * aggregated counts in system-wide mode
2996f5dd 798 */
13370a9b 799static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
2996f5dd 800{
69aad6f1
ACM
801 struct perf_stat *ps = counter->priv;
802 double avg = avg_stats(&ps->res_stats[0]);
c52b12ed 803 int scaled = counter->counts->scaled;
410136f5 804 double uval;
d73515c0
AK
805 double avg_enabled, avg_running;
806
807 avg_enabled = avg_stats(&ps->res_stats[1]);
808 avg_running = avg_stats(&ps->res_stats[2]);
2996f5dd 809
13370a9b
SE
810 if (prefix)
811 fprintf(output, "%s", prefix);
812
3b4331d9 813 if (scaled == -1 || !counter->supported) {
410136f5 814 fprintf(output, "%*s%s",
d7470b6a 815 csv_output ? 0 : 18,
2cee77c4 816 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
410136f5
SE
817 csv_sep);
818 fprintf(output, "%-*s%s",
819 csv_output ? 0 : unit_width,
820 counter->unit, csv_sep);
821 fprintf(output, "%*s",
822 csv_output ? 0 : -25,
7289f83c 823 perf_evsel__name(counter));
023695d9
SE
824
825 if (counter->cgrp)
4aa9015f 826 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
023695d9 827
d73515c0 828 print_running(avg_running, avg_enabled);
4aa9015f 829 fputc('\n', output);
2996f5dd
IM
830 return;
831 }
c04f5e5d 832
410136f5
SE
833 uval = avg * counter->scale;
834
44175b6f 835 if (nsec_counter(counter))
410136f5 836 nsec_printout(-1, 0, counter, uval);
44175b6f 837 else
410136f5 838 abs_printout(-1, 0, counter, uval);
849abde9 839
3ae9a34d
ZH
840 print_noise(counter, avg);
841
d73515c0 842 print_running(avg_running, avg_enabled);
4aa9015f 843 fprintf(output, "\n");
c04f5e5d
IM
844}
845
f5b4a9c3
SE
846/*
847 * Print out the results of a single counter:
848 * does not use aggregated count in system-wide
849 */
13370a9b 850static void print_counter(struct perf_evsel *counter, char *prefix)
f5b4a9c3
SE
851{
852 u64 ena, run, val;
410136f5 853 double uval;
f5b4a9c3
SE
854 int cpu;
855
7ae92e74 856 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
a6fa0038
JO
857 val = perf_counts(counter->counts, cpu, 0)->val;
858 ena = perf_counts(counter->counts, cpu, 0)->ena;
859 run = perf_counts(counter->counts, cpu, 0)->run;
13370a9b
SE
860
861 if (prefix)
862 fprintf(output, "%s", prefix);
863
f5b4a9c3 864 if (run == 0 || ena == 0) {
410136f5 865 fprintf(output, "CPU%*d%s%*s%s",
d7470b6a 866 csv_output ? 0 : -4,
7ae92e74 867 perf_evsel__cpus(counter)->map[cpu], csv_sep,
d7470b6a 868 csv_output ? 0 : 18,
2cee77c4 869 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
410136f5
SE
870 csv_sep);
871
872 fprintf(output, "%-*s%s",
873 csv_output ? 0 : unit_width,
874 counter->unit, csv_sep);
875
876 fprintf(output, "%*s",
877 csv_output ? 0 : -25,
878 perf_evsel__name(counter));
f5b4a9c3 879
023695d9 880 if (counter->cgrp)
4aa9015f
SE
881 fprintf(output, "%s%s",
882 csv_sep, counter->cgrp->name);
023695d9 883
d73515c0 884 print_running(run, ena);
4aa9015f 885 fputc('\n', output);
f5b4a9c3
SE
886 continue;
887 }
888
410136f5
SE
889 uval = val * counter->scale;
890
f5b4a9c3 891 if (nsec_counter(counter))
410136f5 892 nsec_printout(cpu, 0, counter, uval);
f5b4a9c3 893 else
410136f5 894 abs_printout(cpu, 0, counter, uval);
f5b4a9c3 895
d73515c0 896 if (!csv_output)
d7470b6a 897 print_noise(counter, 1.0);
d73515c0 898 print_running(run, ena);
f5b4a9c3 899
4aa9015f 900 fputc('\n', output);
f5b4a9c3
SE
901 }
902}
903
42202dd5
IM
904static void print_stat(int argc, const char **argv)
905{
69aad6f1
ACM
906 struct perf_evsel *counter;
907 int i;
42202dd5 908
ddcacfa0
IM
909 fflush(stdout);
910
d7470b6a 911 if (!csv_output) {
4aa9015f
SE
912 fprintf(output, "\n");
913 fprintf(output, " Performance counter stats for ");
62d3b617
DA
914 if (target.system_wide)
915 fprintf(output, "\'system wide");
916 else if (target.cpu_list)
917 fprintf(output, "\'CPU(s) %s", target.cpu_list);
602ad878 918 else if (!target__has_task(&target)) {
4aa9015f 919 fprintf(output, "\'%s", argv[0]);
d7470b6a 920 for (i = 1; i < argc; i++)
4aa9015f 921 fprintf(output, " %s", argv[i]);
20f946b4
NK
922 } else if (target.pid)
923 fprintf(output, "process id \'%s", target.pid);
d7470b6a 924 else
20f946b4 925 fprintf(output, "thread id \'%s", target.tid);
44db76c8 926
4aa9015f 927 fprintf(output, "\'");
d7470b6a 928 if (run_count > 1)
4aa9015f
SE
929 fprintf(output, " (%d runs)", run_count);
930 fprintf(output, ":\n\n");
d7470b6a 931 }
2996f5dd 932
86ee6e18 933 switch (aggr_mode) {
12c08a9f 934 case AGGR_CORE:
86ee6e18
SE
935 case AGGR_SOCKET:
936 print_aggr(NULL);
937 break;
938 case AGGR_GLOBAL:
0050f7aa 939 evlist__for_each(evsel_list, counter)
13370a9b 940 print_counter_aggr(counter, NULL);
86ee6e18
SE
941 break;
942 case AGGR_NONE:
0050f7aa 943 evlist__for_each(evsel_list, counter)
86ee6e18
SE
944 print_counter(counter, NULL);
945 break;
946 default:
947 break;
f5b4a9c3 948 }
ddcacfa0 949
d7470b6a 950 if (!csv_output) {
c3305257 951 if (!null_run)
4aa9015f
SE
952 fprintf(output, "\n");
953 fprintf(output, " %17.9f seconds time elapsed",
d7470b6a
SE
954 avg_stats(&walltime_nsecs_stats)/1e9);
955 if (run_count > 1) {
4aa9015f 956 fprintf(output, " ");
f99844cb
IM
957 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
958 avg_stats(&walltime_nsecs_stats));
d7470b6a 959 }
4aa9015f 960 fprintf(output, "\n\n");
566747e6 961 }
ddcacfa0
IM
962}
963
f7b7c26e
PZ
964static volatile int signr = -1;
965
5242519b 966static void skip_signal(int signo)
ddcacfa0 967{
13370a9b 968 if ((child_pid == -1) || interval)
60666c63
LW
969 done = 1;
970
f7b7c26e 971 signr = signo;
d07f0b12
SE
972 /*
973 * render child_pid harmless
974 * won't send SIGTERM to a random
975 * process in case of race condition
976 * and fast PID recycling
977 */
978 child_pid = -1;
f7b7c26e
PZ
979}
980
981static void sig_atexit(void)
982{
d07f0b12
SE
983 sigset_t set, oset;
984
985 /*
986 * avoid race condition with SIGCHLD handler
987 * in skip_signal() which is modifying child_pid
988 * goal is to avoid send SIGTERM to a random
989 * process
990 */
991 sigemptyset(&set);
992 sigaddset(&set, SIGCHLD);
993 sigprocmask(SIG_BLOCK, &set, &oset);
994
933da83a
CW
995 if (child_pid != -1)
996 kill(child_pid, SIGTERM);
997
d07f0b12
SE
998 sigprocmask(SIG_SETMASK, &oset, NULL);
999
f7b7c26e
PZ
1000 if (signr == -1)
1001 return;
1002
1003 signal(signr, SIG_DFL);
1004 kill(getpid(), signr);
5242519b
IM
1005}
1006
1d037ca1
IT
1007static int stat__set_big_num(const struct option *opt __maybe_unused,
1008 const char *s __maybe_unused, int unset)
d7470b6a
SE
1009{
1010 big_num_opt = unset ? 0 : 1;
1011 return 0;
1012}
1013
86ee6e18
SE
1014static int perf_stat_init_aggr_mode(void)
1015{
1016 switch (aggr_mode) {
1017 case AGGR_SOCKET:
1018 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1019 perror("cannot build socket map");
1020 return -1;
1021 }
1022 aggr_get_id = cpu_map__get_socket;
1023 break;
12c08a9f
SE
1024 case AGGR_CORE:
1025 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1026 perror("cannot build core map");
1027 return -1;
1028 }
1029 aggr_get_id = cpu_map__get_core;
1030 break;
86ee6e18
SE
1031 case AGGR_NONE:
1032 case AGGR_GLOBAL:
1033 default:
1034 break;
1035 }
1036 return 0;
1037}
1038
2cba3ffb
IM
1039/*
1040 * Add default attributes, if there were no attributes specified or
1041 * if -d/--detailed, -d -d or -d -d -d is used:
1042 */
1043static int add_default_attributes(void)
1044{
b070a547
ACM
1045 struct perf_event_attr default_attrs[] = {
1046
1047 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1048 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1049 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1050 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1051
1052 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1053 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1054 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1055 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1056 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1057 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1058
1059};
1060
1061/*
1062 * Detailed stats (-d), covering the L1 and last level data caches:
1063 */
1064 struct perf_event_attr detailed_attrs[] = {
1065
1066 { .type = PERF_TYPE_HW_CACHE,
1067 .config =
1068 PERF_COUNT_HW_CACHE_L1D << 0 |
1069 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1070 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1071
1072 { .type = PERF_TYPE_HW_CACHE,
1073 .config =
1074 PERF_COUNT_HW_CACHE_L1D << 0 |
1075 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1076 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1077
1078 { .type = PERF_TYPE_HW_CACHE,
1079 .config =
1080 PERF_COUNT_HW_CACHE_LL << 0 |
1081 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1082 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1083
1084 { .type = PERF_TYPE_HW_CACHE,
1085 .config =
1086 PERF_COUNT_HW_CACHE_LL << 0 |
1087 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1088 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1089};
1090
1091/*
1092 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1093 */
1094 struct perf_event_attr very_detailed_attrs[] = {
1095
1096 { .type = PERF_TYPE_HW_CACHE,
1097 .config =
1098 PERF_COUNT_HW_CACHE_L1I << 0 |
1099 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1100 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1101
1102 { .type = PERF_TYPE_HW_CACHE,
1103 .config =
1104 PERF_COUNT_HW_CACHE_L1I << 0 |
1105 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1106 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1107
1108 { .type = PERF_TYPE_HW_CACHE,
1109 .config =
1110 PERF_COUNT_HW_CACHE_DTLB << 0 |
1111 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1112 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1113
1114 { .type = PERF_TYPE_HW_CACHE,
1115 .config =
1116 PERF_COUNT_HW_CACHE_DTLB << 0 |
1117 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1118 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1119
1120 { .type = PERF_TYPE_HW_CACHE,
1121 .config =
1122 PERF_COUNT_HW_CACHE_ITLB << 0 |
1123 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1124 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1125
1126 { .type = PERF_TYPE_HW_CACHE,
1127 .config =
1128 PERF_COUNT_HW_CACHE_ITLB << 0 |
1129 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1130 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1131
1132};
1133
1134/*
1135 * Very, very detailed stats (-d -d -d), adding prefetch events:
1136 */
1137 struct perf_event_attr very_very_detailed_attrs[] = {
1138
1139 { .type = PERF_TYPE_HW_CACHE,
1140 .config =
1141 PERF_COUNT_HW_CACHE_L1D << 0 |
1142 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1143 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1144
1145 { .type = PERF_TYPE_HW_CACHE,
1146 .config =
1147 PERF_COUNT_HW_CACHE_L1D << 0 |
1148 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1149 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1150};
1151
2cba3ffb
IM
1152 /* Set attrs if no event is selected and !null_run: */
1153 if (null_run)
1154 return 0;
1155
4cabc3d1
AK
1156 if (transaction_run) {
1157 int err;
1158 if (pmu_have_event("cpu", "cycles-ct") &&
1159 pmu_have_event("cpu", "el-start"))
a454742c 1160 err = parse_events(evsel_list, transaction_attrs, NULL);
4cabc3d1 1161 else
a454742c
JO
1162 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1163 if (err) {
4cabc3d1
AK
1164 fprintf(stderr, "Cannot set up transaction events\n");
1165 return -1;
1166 }
1167 return 0;
1168 }
1169
2cba3ffb 1170 if (!evsel_list->nr_entries) {
79695e1b 1171 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
50d08e47 1172 return -1;
2cba3ffb
IM
1173 }
1174
1175 /* Detailed events get appended to the event list: */
1176
1177 if (detailed_run < 1)
1178 return 0;
1179
1180 /* Append detailed run extra attributes: */
79695e1b 1181 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
50d08e47 1182 return -1;
2cba3ffb
IM
1183
1184 if (detailed_run < 2)
1185 return 0;
1186
1187 /* Append very detailed run extra attributes: */
79695e1b 1188 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
50d08e47 1189 return -1;
2cba3ffb
IM
1190
1191 if (detailed_run < 3)
1192 return 0;
1193
1194 /* Append very, very detailed run extra attributes: */
79695e1b 1195 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
2cba3ffb
IM
1196}
1197
1d037ca1 1198int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
5242519b 1199{
1f16c575 1200 bool append_file = false;
b070a547
ACM
1201 int output_fd = 0;
1202 const char *output_name = NULL;
1203 const struct option options[] = {
4cabc3d1
AK
1204 OPT_BOOLEAN('T', "transaction", &transaction_run,
1205 "hardware transaction statistics"),
b070a547
ACM
1206 OPT_CALLBACK('e', "event", &evsel_list, "event",
1207 "event selector. use 'perf list' to list available events",
1208 parse_events_option),
1209 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1210 "event filter", parse_filter),
1211 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1212 "child tasks do not inherit counters"),
1213 OPT_STRING('p', "pid", &target.pid, "pid",
1214 "stat events on existing process id"),
1215 OPT_STRING('t', "tid", &target.tid, "tid",
1216 "stat events on existing thread id"),
1217 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1218 "system-wide collection from all CPUs"),
1219 OPT_BOOLEAN('g', "group", &group,
1220 "put the counters into a counter group"),
1221 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1222 OPT_INCR('v', "verbose", &verbose,
1223 "be more verbose (show counter open errors, etc)"),
1224 OPT_INTEGER('r', "repeat", &run_count,
a7e191c3 1225 "repeat command and print average + stddev (max: 100, forever: 0)"),
b070a547
ACM
1226 OPT_BOOLEAN('n', "null", &null_run,
1227 "null run - dont start any counters"),
1228 OPT_INCR('d', "detailed", &detailed_run,
1229 "detailed run - start a lot of events"),
1230 OPT_BOOLEAN('S', "sync", &sync_run,
1231 "call sync() before starting a run"),
48000a1a 1232 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
b070a547
ACM
1233 "print large numbers with thousands\' separators",
1234 stat__set_big_num),
1235 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1236 "list of cpus to monitor in system-wide"),
86ee6e18
SE
1237 OPT_SET_UINT('A', "no-aggr", &aggr_mode,
1238 "disable CPU count aggregation", AGGR_NONE),
b070a547
ACM
1239 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1240 "print counts with custom separator"),
1241 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1242 "monitor event in cgroup name only", parse_cgroups),
1243 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1244 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1245 OPT_INTEGER(0, "log-fd", &output_fd,
1246 "log output to fd, instead of stderr"),
1f16c575
PZ
1247 OPT_STRING(0, "pre", &pre_cmd, "command",
1248 "command to run prior to the measured command"),
1249 OPT_STRING(0, "post", &post_cmd, "command",
1250 "command to run after to the measured command"),
13370a9b
SE
1251 OPT_UINTEGER('I', "interval-print", &interval,
1252 "print counts at regular interval in ms (>= 100)"),
d4304958 1253 OPT_SET_UINT(0, "per-socket", &aggr_mode,
86ee6e18 1254 "aggregate counts per processor socket", AGGR_SOCKET),
12c08a9f
SE
1255 OPT_SET_UINT(0, "per-core", &aggr_mode,
1256 "aggregate counts per physical processor core", AGGR_CORE),
41191688
AK
1257 OPT_UINTEGER('D', "delay", &initial_delay,
1258 "ms to wait before starting measurement after program start"),
b070a547
ACM
1259 OPT_END()
1260 };
1261 const char * const stat_usage[] = {
1262 "perf stat [<options>] [<command>]",
1263 NULL
1264 };
cc03c542 1265 int status = -EINVAL, run_idx;
4aa9015f 1266 const char *mode;
42202dd5 1267
5af52b51
SE
1268 setlocale(LC_ALL, "");
1269
334fe7a3 1270 evsel_list = perf_evlist__new();
361c99a6
ACM
1271 if (evsel_list == NULL)
1272 return -ENOMEM;
1273
a0541234
AB
1274 argc = parse_options(argc, argv, options, stat_usage,
1275 PARSE_OPT_STOP_AT_NON_OPTION);
d7470b6a 1276
4aa9015f
SE
1277 output = stderr;
1278 if (output_name && strcmp(output_name, "-"))
1279 output = NULL;
1280
56f3bae7
JC
1281 if (output_name && output_fd) {
1282 fprintf(stderr, "cannot use both --output and --log-fd\n");
cc03c542
NK
1283 parse_options_usage(stat_usage, options, "o", 1);
1284 parse_options_usage(NULL, options, "log-fd", 0);
1285 goto out;
56f3bae7 1286 }
fc3e4d07
SE
1287
1288 if (output_fd < 0) {
1289 fprintf(stderr, "argument to --log-fd must be a > 0\n");
cc03c542
NK
1290 parse_options_usage(stat_usage, options, "log-fd", 0);
1291 goto out;
fc3e4d07
SE
1292 }
1293
4aa9015f
SE
1294 if (!output) {
1295 struct timespec tm;
1296 mode = append_file ? "a" : "w";
1297
1298 output = fopen(output_name, mode);
1299 if (!output) {
1300 perror("failed to create output file");
fceda7fe 1301 return -1;
4aa9015f
SE
1302 }
1303 clock_gettime(CLOCK_REALTIME, &tm);
1304 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
fc3e4d07 1305 } else if (output_fd > 0) {
56f3bae7
JC
1306 mode = append_file ? "a" : "w";
1307 output = fdopen(output_fd, mode);
1308 if (!output) {
1309 perror("Failed opening logfd");
1310 return -errno;
1311 }
4aa9015f
SE
1312 }
1313
d4ffd04d 1314 if (csv_sep) {
d7470b6a 1315 csv_output = true;
d4ffd04d
JC
1316 if (!strcmp(csv_sep, "\\t"))
1317 csv_sep = "\t";
1318 } else
d7470b6a
SE
1319 csv_sep = DEFAULT_SEPARATOR;
1320
1321 /*
1322 * let the spreadsheet do the pretty-printing
1323 */
1324 if (csv_output) {
61a9f324 1325 /* User explicitly passed -B? */
d7470b6a
SE
1326 if (big_num_opt == 1) {
1327 fprintf(stderr, "-B option not supported with -x\n");
cc03c542
NK
1328 parse_options_usage(stat_usage, options, "B", 1);
1329 parse_options_usage(NULL, options, "x", 1);
1330 goto out;
d7470b6a
SE
1331 } else /* Nope, so disable big number formatting */
1332 big_num = false;
1333 } else if (big_num_opt == 0) /* User passed --no-big-num */
1334 big_num = false;
1335
602ad878 1336 if (!argc && target__none(&target))
5242519b 1337 usage_with_options(stat_usage, options);
ac3063bd 1338
a7e191c3 1339 if (run_count < 0) {
cc03c542
NK
1340 pr_err("Run count must be a positive number\n");
1341 parse_options_usage(stat_usage, options, "r", 1);
1342 goto out;
a7e191c3
FD
1343 } else if (run_count == 0) {
1344 forever = true;
1345 run_count = 1;
1346 }
ddcacfa0 1347
023695d9 1348 /* no_aggr, cgroup are for system-wide only */
602ad878
ACM
1349 if ((aggr_mode != AGGR_GLOBAL || nr_cgroups) &&
1350 !target__has_cpu(&target)) {
023695d9
SE
1351 fprintf(stderr, "both cgroup and no-aggregation "
1352 "modes only available in system-wide mode\n");
1353
cc03c542
NK
1354 parse_options_usage(stat_usage, options, "G", 1);
1355 parse_options_usage(NULL, options, "A", 1);
1356 parse_options_usage(NULL, options, "a", 1);
1357 goto out;
d7e7a451
SE
1358 }
1359
2cba3ffb
IM
1360 if (add_default_attributes())
1361 goto out;
ddcacfa0 1362
602ad878 1363 target__validate(&target);
5c98d466 1364
77a6f014 1365 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
602ad878 1366 if (target__has_task(&target)) {
77a6f014 1367 pr_err("Problems finding threads of monitor\n");
cc03c542
NK
1368 parse_options_usage(stat_usage, options, "p", 1);
1369 parse_options_usage(NULL, options, "t", 1);
602ad878 1370 } else if (target__has_cpu(&target)) {
77a6f014 1371 perror("failed to parse CPUs map");
cc03c542
NK
1372 parse_options_usage(stat_usage, options, "C", 1);
1373 parse_options_usage(NULL, options, "a", 1);
1374 }
1375 goto out;
60d567e2 1376 }
13370a9b
SE
1377 if (interval && interval < 100) {
1378 pr_err("print interval must be >= 100ms\n");
cc03c542 1379 parse_options_usage(stat_usage, options, "I", 1);
03ad9747 1380 goto out;
13370a9b 1381 }
c45c6ea2 1382
d134ffb9 1383 if (perf_evlist__alloc_stats(evsel_list, interval))
03ad9747 1384 goto out;
d6d901c2 1385
86ee6e18 1386 if (perf_stat_init_aggr_mode())
03ad9747 1387 goto out;
86ee6e18 1388
58d7e993
IM
1389 /*
1390 * We dont want to block the signals - that would cause
1391 * child tasks to inherit that and Ctrl-C would not work.
1392 * What we want is for Ctrl-C to work in the exec()-ed
1393 * task, but being ignored by perf stat itself:
1394 */
f7b7c26e 1395 atexit(sig_atexit);
a7e191c3
FD
1396 if (!forever)
1397 signal(SIGINT, skip_signal);
13370a9b 1398 signal(SIGCHLD, skip_signal);
58d7e993
IM
1399 signal(SIGALRM, skip_signal);
1400 signal(SIGABRT, skip_signal);
1401
42202dd5 1402 status = 0;
a7e191c3 1403 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
42202dd5 1404 if (run_count != 1 && verbose)
4aa9015f
SE
1405 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1406 run_idx + 1);
f9cef0a9 1407
42202dd5 1408 status = run_perf_stat(argc, argv);
a7e191c3
FD
1409 if (forever && status != -1) {
1410 print_stat(argc, argv);
254ecbc7 1411 perf_stat__reset_stats();
a7e191c3 1412 }
42202dd5
IM
1413 }
1414
a7e191c3 1415 if (!forever && status != -1 && !interval)
084ab9f8 1416 print_stat(argc, argv);
d134ffb9
ACM
1417
1418 perf_evlist__free_stats(evsel_list);
0015e2e1
ACM
1419out:
1420 perf_evlist__delete(evsel_list);
42202dd5 1421 return status;
ddcacfa0 1422}