blob: b3e568ffad27840f732c4785f588a7c683ae5929 [file] [log] [blame]
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-stat.c
3 *
4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
6 *
7 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02008
Ingo Molnarbf9e1872009-06-02 23:37:05 +02009 $ perf stat ~/hackbench 10
10 Time: 0.104
Ingo Molnarddcacfa2009-04-20 15:37:32 +020011
Ingo Molnarbf9e1872009-06-02 23:37:05 +020012 Performance counter stats for '/home/mingo/hackbench':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020013
Ingo Molnarbf9e1872009-06-02 23:37:05 +020014 1255.538611 task clock ticks # 10.143 CPU utilization factor
15 54011 context switches # 0.043 M/sec
16 385 CPU migrations # 0.000 M/sec
17 17755 pagefaults # 0.014 M/sec
18 3808323185 CPU cycles # 3033.219 M/sec
19 1575111190 instructions # 1254.530 M/sec
20 17367895 cache references # 13.833 M/sec
21 7674421 cache misses # 6.112 M/sec
Ingo Molnarddcacfa2009-04-20 15:37:32 +020022
Ingo Molnarbf9e1872009-06-02 23:37:05 +020023 Wall-clock time elapsed: 123.786620 msecs
Ingo Molnarddcacfa2009-04-20 15:37:32 +020024
Ingo Molnar52425192009-05-26 09:17:18 +020025 *
26 * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
27 *
28 * Improvements and fixes by:
29 *
30 * Arjan van de Ven <arjan@linux.intel.com>
31 * Yanmin Zhang <yanmin.zhang@intel.com>
32 * Wu Fengguang <fengguang.wu@intel.com>
33 * Mike Galbraith <efault@gmx.de>
34 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053035 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020036 *
37 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020038 */
39
Peter Zijlstra1a482f32009-05-23 18:28:58 +020040#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020041#include "builtin.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020042#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020043#include "util/parse-options.h"
44#include "util/parse-events.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020045#include "util/event.h"
46#include "util/debug.h"
Liming Wang60666c62009-12-31 16:05:50 +080047#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110048#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030049#include "util/thread.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020050
Ingo Molnarddcacfa2009-04-20 15:37:32 +020051#include <sys/prctl.h>
Ingo Molnar42202dd2009-06-13 14:57:28 +020052#include <math.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020053#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020054
Ingo Molnarcdd6c482009-09-21 12:02:48 +020055static struct perf_event_attr default_attrs[] = {
Ingo Molnara21ca2c2009-06-06 09:58:57 +020056
Ingo Molnar56aab462009-10-19 13:27:08 +020057 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
58 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
59 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
60 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
Ingo Molnara21ca2c2009-06-06 09:58:57 +020061
Ingo Molnar56aab462009-10-19 13:27:08 +020062 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
63 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
Ingo Molnar56aab462009-10-19 13:27:08 +020064 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
65 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
Ingo Molnardd86e722009-10-19 13:33:03 +020066 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES },
67 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES },
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +020068
Ingo Molnara21ca2c2009-06-06 09:58:57 +020069};
70
Ian Munsiec0555642010-04-13 18:37:33 +100071static bool system_wide = false;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +020072static int nr_cpus = 0;
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053073static int run_idx = 0;
74
75static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020076static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +100077static bool scale = true;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +020078static bool no_aggr = false;
Chris Wilson933da832009-10-04 01:35:01 +010079static pid_t target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030080static pid_t target_tid = -1;
81static pid_t *all_tids = NULL;
82static int thread_num = 0;
Chris Wilson933da832009-10-04 01:35:01 +010083static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100084static bool null_run = false;
Stephane Eranian5af52b52010-05-18 15:00:01 +020085static bool big_num = false;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +020086static const char *cpu_list;
Stephane Eranian5af52b52010-05-18 15:00:01 +020087
Ingo Molnarddcacfa2009-04-20 15:37:32 +020088
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030089static int *fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnarddcacfa2009-04-20 15:37:32 +020090
Peter Zijlstra63d40de2009-09-04 17:03:13 +020091static int event_scaled[MAX_COUNTERS];
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053092
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +020093static struct {
94 u64 val;
95 u64 ena;
96 u64 run;
97} cpu_counts[MAX_NR_CPUS][MAX_COUNTERS];
98
Liming Wang60666c62009-12-31 16:05:50 +080099static volatile int done = 0;
100
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200101struct stats
102{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200103 double n, mean, M2;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200104};
Ingo Molnar42202dd2009-06-13 14:57:28 +0200105
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200106static void update_stats(struct stats *stats, u64 val)
107{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200108 double delta;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200109
Peter Zijlstra8a026312009-09-04 17:26:26 +0200110 stats->n++;
111 delta = val - stats->mean;
112 stats->mean += delta / stats->n;
113 stats->M2 += delta*(val - stats->mean);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200114}
115
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200116static double avg_stats(struct stats *stats)
117{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200118 return stats->mean;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200119}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200120
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200121/*
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200122 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
123 *
Peter Zijlstra8a026312009-09-04 17:26:26 +0200124 * (\Sum n_i^2) - ((\Sum n_i)^2)/n
125 * s^2 = -------------------------------
126 * n - 1
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200127 *
128 * http://en.wikipedia.org/wiki/Stddev
129 *
130 * The std dev of the mean is related to the std dev by:
131 *
132 * s
133 * s_mean = -------
134 * sqrt(n)
135 *
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200136 */
137static double stddev_stats(struct stats *stats)
138{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200139 double variance = stats->M2 / (stats->n - 1);
140 double variance_mean = variance / stats->n;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200141
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200142 return sqrt(variance_mean);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200143}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200144
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200145struct stats event_res_stats[MAX_COUNTERS][3];
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200146struct stats runtime_nsecs_stats[MAX_NR_CPUS];
147struct stats runtime_cycles_stats[MAX_NR_CPUS];
148struct stats runtime_branches_stats[MAX_NR_CPUS];
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200149struct stats walltime_nsecs_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200150
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530151#define MATCH_EVENT(t, c, counter) \
152 (attrs[counter].type == PERF_TYPE_##t && \
153 attrs[counter].config == PERF_COUNT_##c)
154
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530155#define ERR_PERF_OPEN \
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200156"Error: counter %d, sys_perf_event_open() syscall returned with %d (%s)\n"
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530157
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300158static int create_perf_stat_counter(int counter)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200159{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200160 struct perf_event_attr *attr = attrs + counter;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300161 int thread;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300162 int ncreated = 0;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200163
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200164 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200165 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
166 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200167
168 if (system_wide) {
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200169 int cpu;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200170
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530171 for (cpu = 0; cpu < nr_cpus; cpu++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300172 fd[cpu][counter][0] = sys_perf_event_open(attr,
173 -1, cpumap[cpu], -1, 0);
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300174 if (fd[cpu][counter][0] < 0)
175 pr_debug(ERR_PERF_OPEN, counter,
176 fd[cpu][counter][0], strerror(errno));
177 else
178 ++ncreated;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200179 }
180 } else {
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200181 attr->inherit = !no_inherit;
182 if (target_pid == -1 && target_tid == -1) {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300183 attr->disabled = 1;
184 attr->enable_on_exec = 1;
185 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300186 for (thread = 0; thread < thread_num; thread++) {
187 fd[0][counter][thread] = sys_perf_event_open(attr,
188 all_tids[thread], -1, -1, 0);
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300189 if (fd[0][counter][thread] < 0)
190 pr_debug(ERR_PERF_OPEN, counter,
191 fd[0][counter][thread],
192 strerror(errno));
193 else
194 ++ncreated;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300195 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200196 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300197
198 return ncreated;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200199}
200
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200201/*
202 * Does the counter have nsecs as a unit?
203 */
204static inline int nsec_counter(int counter)
205{
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530206 if (MATCH_EVENT(SOFTWARE, SW_CPU_CLOCK, counter) ||
207 MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200208 return 1;
209
210 return 0;
211}
212
213/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200214 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200215 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200216 */
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200217static void read_counter_aggr(int counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200218{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200219 u64 count[3], single_count[3];
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200220 int cpu;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200221 size_t res, nv;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200222 int scaled;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300223 int i, thread;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200224
225 count[0] = count[1] = count[2] = 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200226
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200227 nv = scale ? 3 : 1;
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530228 for (cpu = 0; cpu < nr_cpus; cpu++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300229 for (thread = 0; thread < thread_num; thread++) {
230 if (fd[cpu][counter][thread] < 0)
231 continue;
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200232
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300233 res = read(fd[cpu][counter][thread],
234 single_count, nv * sizeof(u64));
235 assert(res == nv * sizeof(u64));
Ingo Molnarf37a2912009-07-01 12:37:06 +0200236
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300237 close(fd[cpu][counter][thread]);
238 fd[cpu][counter][thread] = -1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200239
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300240 count[0] += single_count[0];
241 if (scale) {
242 count[1] += single_count[1];
243 count[2] += single_count[2];
244 }
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200245 }
246 }
247
248 scaled = 0;
249 if (scale) {
250 if (count[2] == 0) {
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200251 event_scaled[counter] = -1;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200252 count[0] = 0;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200253 return;
254 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200255
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200256 if (count[2] < count[1]) {
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200257 event_scaled[counter] = 1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200258 count[0] = (unsigned long long)
259 ((double)count[0] * count[1] / count[2] + 0.5);
260 }
261 }
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200262
263 for (i = 0; i < 3; i++)
264 update_stats(&event_res_stats[counter][i], count[i]);
265
266 if (verbose) {
267 fprintf(stderr, "%s: %Ld %Ld %Ld\n", event_name(counter),
268 count[0], count[1], count[2]);
269 }
270
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200271 /*
272 * Save the full runtime - to allow normalization during printout:
273 */
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530274 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200275 update_stats(&runtime_nsecs_stats[0], count[0]);
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530276 if (MATCH_EVENT(HARDWARE, HW_CPU_CYCLES, counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200277 update_stats(&runtime_cycles_stats[0], count[0]);
Anton Blanchard11018202009-10-18 22:29:23 +1100278 if (MATCH_EVENT(HARDWARE, HW_BRANCH_INSTRUCTIONS, counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200279 update_stats(&runtime_branches_stats[0], count[0]);
280}
281
282/*
283 * Read out the results of a single counter:
284 * do not aggregate counts across CPUs in system-wide mode
285 */
286static void read_counter(int counter)
287{
288 u64 count[3];
289 int cpu;
290 size_t res, nv;
291
292 count[0] = count[1] = count[2] = 0;
293
294 nv = scale ? 3 : 1;
295
296 for (cpu = 0; cpu < nr_cpus; cpu++) {
297
298 if (fd[cpu][counter][0] < 0)
299 continue;
300
301 res = read(fd[cpu][counter][0], count, nv * sizeof(u64));
302
303 assert(res == nv * sizeof(u64));
304
305 close(fd[cpu][counter][0]);
306 fd[cpu][counter][0] = -1;
307
308 if (scale) {
309 if (count[2] == 0) {
310 count[0] = 0;
311 } else if (count[2] < count[1]) {
312 count[0] = (unsigned long long)
313 ((double)count[0] * count[1] / count[2] + 0.5);
314 }
315 }
316 cpu_counts[cpu][counter].val = count[0]; /* scaled count */
317 cpu_counts[cpu][counter].ena = count[1];
318 cpu_counts[cpu][counter].run = count[2];
319
320 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
321 update_stats(&runtime_nsecs_stats[cpu], count[0]);
322 if (MATCH_EVENT(HARDWARE, HW_CPU_CYCLES, counter))
323 update_stats(&runtime_cycles_stats[cpu], count[0]);
324 if (MATCH_EVENT(HARDWARE, HW_BRANCH_INSTRUCTIONS, counter))
325 update_stats(&runtime_branches_stats[cpu], count[0]);
326 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200327}
328
Ingo Molnarf37a2912009-07-01 12:37:06 +0200329static int run_perf_stat(int argc __used, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200330{
331 unsigned long long t0, t1;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200332 int status = 0;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300333 int counter, ncreated = 0;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000334 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300335 const bool forks = (argc > 0);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000336 char buf;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200337
338 if (!system_wide)
339 nr_cpus = 1;
340
Liming Wang60666c62009-12-31 16:05:50 +0800341 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000342 perror("failed to create pipes");
343 exit(1);
344 }
345
Liming Wang60666c62009-12-31 16:05:50 +0800346 if (forks) {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300347 if ((child_pid = fork()) < 0)
Liming Wang60666c62009-12-31 16:05:50 +0800348 perror("failed to fork");
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000349
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300350 if (!child_pid) {
Liming Wang60666c62009-12-31 16:05:50 +0800351 close(child_ready_pipe[0]);
352 close(go_pipe[1]);
353 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
354
355 /*
356 * Do a dummy execvp to get the PLT entry resolved,
357 * so we avoid the resolver overhead on the real
358 * execvp call.
359 */
360 execvp("", (char **)argv);
361
362 /*
363 * Tell the parent we're ready to go
364 */
365 close(child_ready_pipe[1]);
366
367 /*
368 * Wait until the parent tells us to go.
369 */
370 if (read(go_pipe[0], &buf, 1) == -1)
371 perror("unable to read pipe");
372
373 execvp(argv[0], (char **)argv);
374
375 perror(argv[0]);
376 exit(-1);
377 }
378
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300379 if (target_tid == -1 && target_pid == -1 && !system_wide)
380 all_tids[0] = child_pid;
381
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000382 /*
Liming Wang60666c62009-12-31 16:05:50 +0800383 * Wait for the child to be ready to exec.
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000384 */
385 close(child_ready_pipe[1]);
Liming Wang60666c62009-12-31 16:05:50 +0800386 close(go_pipe[0]);
387 if (read(child_ready_pipe[0], &buf, 1) == -1)
Frederic Weisbeckera92bef02009-07-01 21:02:10 +0200388 perror("unable to read pipe");
Liming Wang60666c62009-12-31 16:05:50 +0800389 close(child_ready_pipe[0]);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000390 }
391
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200392 for (counter = 0; counter < nr_counters; counter++)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300393 ncreated += create_perf_stat_counter(counter);
394
395 if (ncreated == 0) {
396 pr_err("No permission to collect %sstats.\n"
397 "Consider tweaking /proc/sys/kernel/perf_event_paranoid.\n",
398 system_wide ? "system-wide " : "");
399 if (child_pid != -1)
400 kill(child_pid, SIGTERM);
401 return -1;
402 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200403
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200404 /*
405 * Enable counters and exec the command:
406 */
407 t0 = rdclock();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200408
Liming Wang60666c62009-12-31 16:05:50 +0800409 if (forks) {
410 close(go_pipe[1]);
411 wait(&status);
412 } else {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300413 while(!done) sleep(1);
Liming Wang60666c62009-12-31 16:05:50 +0800414 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200415
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200416 t1 = rdclock();
417
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200418 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200419
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200420 if (no_aggr) {
421 for (counter = 0; counter < nr_counters; counter++)
422 read_counter(counter);
423 } else {
424 for (counter = 0; counter < nr_counters; counter++)
425 read_counter_aggr(counter);
426 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200427 return WEXITSTATUS(status);
428}
429
Peter Zijlstra849abde2009-09-04 18:23:38 +0200430static void print_noise(int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200431{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200432 if (run_count == 1)
433 return;
434
435 fprintf(stderr, " ( +- %7.3f%% )",
436 100 * stddev_stats(&event_res_stats[counter][0]) / avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200437}
438
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200439static void nsec_printout(int cpu, int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200440{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200441 double msecs = avg / 1e6;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200442
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200443 if (no_aggr)
444 fprintf(stderr, "CPU%-4d %18.6f %-24s",
445 cpumap[cpu], msecs, event_name(counter));
446 else
447 fprintf(stderr, " %18.6f %-24s", msecs, event_name(counter));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200448
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530449 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter)) {
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200450 fprintf(stderr, " # %10.3f CPUs ",
451 avg / avg_stats(&walltime_nsecs_stats));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200452 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200453}
454
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200455static void abs_printout(int cpu, int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200456{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200457 double total, ratio = 0.0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200458 char cpustr[16] = { '\0', };
459
460 if (no_aggr)
461 sprintf(cpustr, "CPU%-4d", cpumap[cpu]);
462 else
463 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200464
Stephane Eranian5af52b52010-05-18 15:00:01 +0200465 if (big_num)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200466 fprintf(stderr, "%s %'18.0f %-24s",
467 cpustr, avg, event_name(counter));
Stephane Eranian5af52b52010-05-18 15:00:01 +0200468 else
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200469 fprintf(stderr, "%s %18.0f %-24s",
470 cpustr, avg, event_name(counter));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200471
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200472 if (MATCH_EVENT(HARDWARE, HW_INSTRUCTIONS, counter)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200473 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200474
475 if (total)
476 ratio = avg / total;
477
478 fprintf(stderr, " # %10.3f IPC ", ratio);
Lucas De Marchi7255fe22009-11-15 12:05:08 -0200479 } else if (MATCH_EVENT(HARDWARE, HW_BRANCH_MISSES, counter) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200480 runtime_branches_stats[cpu].n != 0) {
481 total = avg_stats(&runtime_branches_stats[cpu]);
Anton Blanchard11018202009-10-18 22:29:23 +1100482
483 if (total)
484 ratio = avg * 100 / total;
485
Ingo Molnardd86e722009-10-19 13:33:03 +0200486 fprintf(stderr, " # %10.3f %% ", ratio);
Anton Blanchard11018202009-10-18 22:29:23 +1100487
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200488 } else if (runtime_nsecs_stats[cpu].n != 0) {
489 total = avg_stats(&runtime_nsecs_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200490
491 if (total)
492 ratio = 1000.0 * avg / total;
493
494 fprintf(stderr, " # %10.3f M/sec", ratio);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200495 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200496}
497
498/*
499 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200500 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200501 */
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200502static void print_counter_aggr(int counter)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200503{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200504 double avg = avg_stats(&event_res_stats[counter][0]);
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200505 int scaled = event_scaled[counter];
Ingo Molnar42202dd2009-06-13 14:57:28 +0200506
Ingo Molnar42202dd2009-06-13 14:57:28 +0200507 if (scaled == -1) {
Stephane Eranian5af52b52010-05-18 15:00:01 +0200508 fprintf(stderr, " %18s %-24s\n",
Ingo Molnar42202dd2009-06-13 14:57:28 +0200509 "<not counted>", event_name(counter));
510 return;
511 }
512
513 if (nsec_counter(counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200514 nsec_printout(-1, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200515 else
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200516 abs_printout(-1, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200517
518 print_noise(counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200519
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200520 if (scaled) {
521 double avg_enabled, avg_running;
522
523 avg_enabled = avg_stats(&event_res_stats[counter][1]);
524 avg_running = avg_stats(&event_res_stats[counter][2]);
525
Ingo Molnar210ad392009-06-29 21:50:54 +0200526 fprintf(stderr, " (scaled from %.2f%%)",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200527 100 * avg_running / avg_enabled);
528 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200529
530 fprintf(stderr, "\n");
531}
532
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200533/*
534 * Print out the results of a single counter:
535 * does not use aggregated count in system-wide
536 */
537static void print_counter(int counter)
538{
539 u64 ena, run, val;
540 int cpu;
541
542 for (cpu = 0; cpu < nr_cpus; cpu++) {
543 val = cpu_counts[cpu][counter].val;
544 ena = cpu_counts[cpu][counter].ena;
545 run = cpu_counts[cpu][counter].run;
546 if (run == 0 || ena == 0) {
547 fprintf(stderr, "CPU%-4d %18s %-24s", cpumap[cpu],
548 "<not counted>", event_name(counter));
549
550 fprintf(stderr, "\n");
551 continue;
552 }
553
554 if (nsec_counter(counter))
555 nsec_printout(cpu, counter, val);
556 else
557 abs_printout(cpu, counter, val);
558
559 print_noise(counter, 1.0);
560
561 if (run != ena) {
562 fprintf(stderr, " (scaled from %.2f%%)",
563 100.0 * run / ena);
564 }
565 fprintf(stderr, "\n");
566 }
567}
568
Ingo Molnar42202dd2009-06-13 14:57:28 +0200569static void print_stat(int argc, const char **argv)
570{
571 int i, counter;
572
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200573 fflush(stdout);
574
575 fprintf(stderr, "\n");
Liming Wang60666c62009-12-31 16:05:50 +0800576 fprintf(stderr, " Performance counter stats for ");
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300577 if(target_pid == -1 && target_tid == -1) {
Liming Wang60666c62009-12-31 16:05:50 +0800578 fprintf(stderr, "\'%s", argv[0]);
579 for (i = 1; i < argc; i++)
580 fprintf(stderr, " %s", argv[i]);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300581 } else if (target_pid != -1)
582 fprintf(stderr, "process id \'%d", target_pid);
583 else
584 fprintf(stderr, "thread id \'%d", target_tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200585
Ingo Molnar42202dd2009-06-13 14:57:28 +0200586 fprintf(stderr, "\'");
587 if (run_count > 1)
588 fprintf(stderr, " (%d runs)", run_count);
589 fprintf(stderr, ":\n\n");
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200590
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200591 if (no_aggr) {
592 for (counter = 0; counter < nr_counters; counter++)
593 print_counter(counter);
594 } else {
595 for (counter = 0; counter < nr_counters; counter++)
596 print_counter_aggr(counter);
597 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200598
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200599 fprintf(stderr, "\n");
Stephane Eranian5af52b52010-05-18 15:00:01 +0200600 fprintf(stderr, " %18.9f seconds time elapsed",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200601 avg_stats(&walltime_nsecs_stats)/1e9);
Ingo Molnar566747e2009-06-27 06:24:32 +0200602 if (run_count > 1) {
603 fprintf(stderr, " ( +- %7.3f%% )",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200604 100*stddev_stats(&walltime_nsecs_stats) /
605 avg_stats(&walltime_nsecs_stats));
Ingo Molnar566747e2009-06-27 06:24:32 +0200606 }
607 fprintf(stderr, "\n\n");
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200608}
609
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200610static volatile int signr = -1;
611
Ingo Molnar52425192009-05-26 09:17:18 +0200612static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200613{
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300614 if(child_pid == -1)
Liming Wang60666c62009-12-31 16:05:50 +0800615 done = 1;
616
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200617 signr = signo;
618}
619
620static void sig_atexit(void)
621{
Chris Wilson933da832009-10-04 01:35:01 +0100622 if (child_pid != -1)
623 kill(child_pid, SIGTERM);
624
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200625 if (signr == -1)
626 return;
627
628 signal(signr, SIG_DFL);
629 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200630}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200631
Ingo Molnar52425192009-05-26 09:17:18 +0200632static const char * const stat_usage[] = {
Liming Wang60666c62009-12-31 16:05:50 +0800633 "perf stat [<options>] [<command>]",
Ingo Molnar52425192009-05-26 09:17:18 +0200634 NULL
635};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200636
Ingo Molnar52425192009-05-26 09:17:18 +0200637static const struct option options[] = {
638 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200639 "event selector. use 'perf list' to list available events",
640 parse_events),
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200641 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
642 "child tasks do not inherit counters"),
Ingo Molnar52425192009-05-26 09:17:18 +0200643 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300644 "stat events on existing process id"),
645 OPT_INTEGER('t', "tid", &target_tid,
646 "stat events on existing thread id"),
Ingo Molnar52425192009-05-26 09:17:18 +0200647 OPT_BOOLEAN('a', "all-cpus", &system_wide,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530648 "system-wide collection from all CPUs"),
Brice Goglinb26bc5a2009-08-07 10:18:39 +0200649 OPT_BOOLEAN('c', "scale", &scale,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530650 "scale/normalize counters"),
Ian Munsiec0555642010-04-13 18:37:33 +1000651 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200652 "be more verbose (show counter open errors, etc)"),
Ingo Molnar42202dd2009-06-13 14:57:28 +0200653 OPT_INTEGER('r', "repeat", &run_count,
654 "repeat command and print average + stddev (max: 100)"),
Ingo Molnar0cfb7a12009-06-27 06:10:30 +0200655 OPT_BOOLEAN('n', "null", &null_run,
656 "null run - dont start any counters"),
Stephane Eranian5af52b52010-05-18 15:00:01 +0200657 OPT_BOOLEAN('B', "big-num", &big_num,
658 "print large numbers with thousands\' separators"),
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200659 OPT_STRING('C', "cpu", &cpu_list, "cpu",
660 "list of cpus to monitor in system-wide"),
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200661 OPT_BOOLEAN('A', "no-aggr", &no_aggr,
662 "disable CPU count aggregation"),
Ingo Molnar52425192009-05-26 09:17:18 +0200663 OPT_END()
664};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200665
Ingo Molnarf37a2912009-07-01 12:37:06 +0200666int cmd_stat(int argc, const char **argv, const char *prefix __used)
Ingo Molnar52425192009-05-26 09:17:18 +0200667{
Ingo Molnar42202dd2009-06-13 14:57:28 +0200668 int status;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300669 int i,j;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200670
Stephane Eranian5af52b52010-05-18 15:00:01 +0200671 setlocale(LC_ALL, "");
672
Anton Blancharda0541232009-07-22 23:04:12 +1000673 argc = parse_options(argc, argv, options, stat_usage,
674 PARSE_OPT_STOP_AT_NON_OPTION);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300675 if (!argc && target_pid == -1 && target_tid == -1)
Ingo Molnar52425192009-05-26 09:17:18 +0200676 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200677 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200678 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200679
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200680 /* no_aggr is for system-wide only */
681 if (no_aggr && !system_wide)
682 usage_with_options(stat_usage, options);
683
Jaswinder Singh Rajputc3043562009-06-27 23:49:09 +0530684 /* Set attrs and nr_counters if no event is selected and !null_run */
685 if (!null_run && !nr_counters) {
686 memcpy(attrs, default_attrs, sizeof(default_attrs));
687 nr_counters = ARRAY_SIZE(default_attrs);
688 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200689
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100690 if (system_wide)
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200691 nr_cpus = read_cpu_map(cpu_list);
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100692 else
693 nr_cpus = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200694
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200695 if (nr_cpus < 1)
696 usage_with_options(stat_usage, options);
697
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300698 if (target_pid != -1) {
699 target_tid = target_pid;
700 thread_num = find_all_tid(target_pid, &all_tids);
701 if (thread_num <= 0) {
702 fprintf(stderr, "Can't find all threads of pid %d\n",
703 target_pid);
704 usage_with_options(stat_usage, options);
705 }
706 } else {
707 all_tids=malloc(sizeof(pid_t));
708 if (!all_tids)
709 return -ENOMEM;
710
711 all_tids[0] = target_tid;
712 thread_num = 1;
713 }
714
715 for (i = 0; i < MAX_NR_CPUS; i++) {
716 for (j = 0; j < MAX_COUNTERS; j++) {
717 fd[i][j] = malloc(sizeof(int)*thread_num);
718 if (!fd[i][j])
719 return -ENOMEM;
720 }
721 }
722
Ingo Molnar58d7e992009-05-15 11:03:23 +0200723 /*
724 * We dont want to block the signals - that would cause
725 * child tasks to inherit that and Ctrl-C would not work.
726 * What we want is for Ctrl-C to work in the exec()-ed
727 * task, but being ignored by perf stat itself:
728 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200729 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +0200730 signal(SIGINT, skip_signal);
731 signal(SIGALRM, skip_signal);
732 signal(SIGABRT, skip_signal);
733
Ingo Molnar42202dd2009-06-13 14:57:28 +0200734 status = 0;
735 for (run_idx = 0; run_idx < run_count; run_idx++) {
736 if (run_count != 1 && verbose)
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530737 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200738 status = run_perf_stat(argc, argv);
739 }
740
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300741 if (status != -1)
742 print_stat(argc, argv);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200743
744 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200745}