blob: 7ff746da7e6c2d4810ad0ece5e54551505acf023 [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
Stephane Eraniand7470b62010-12-01 18:49:05 +020055#define DEFAULT_SEPARATOR " "
56
Ingo Molnarcdd6c482009-09-21 12:02:48 +020057static struct perf_event_attr default_attrs[] = {
Ingo Molnara21ca2c2009-06-06 09:58:57 +020058
Ingo Molnar56aab462009-10-19 13:27:08 +020059 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
60 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
61 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
62 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
Ingo Molnara21ca2c2009-06-06 09:58:57 +020063
Ingo Molnar56aab462009-10-19 13:27:08 +020064 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
65 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
Ingo Molnar56aab462009-10-19 13:27:08 +020066 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
67 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
Ingo Molnardd86e722009-10-19 13:33:03 +020068 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES },
69 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES },
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +020070
Ingo Molnara21ca2c2009-06-06 09:58:57 +020071};
72
Ian Munsiec0555642010-04-13 18:37:33 +100073static bool system_wide = false;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +020074static int nr_cpus = 0;
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053075static int run_idx = 0;
76
77static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020078static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +100079static bool scale = true;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +020080static bool no_aggr = false;
Chris Wilson933da832009-10-04 01:35:01 +010081static pid_t target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030082static pid_t target_tid = -1;
83static pid_t *all_tids = NULL;
84static int thread_num = 0;
Chris Wilson933da832009-10-04 01:35:01 +010085static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100086static bool null_run = false;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -020087static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +020088static int big_num_opt = -1;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +020089static const char *cpu_list;
Stephane Eraniand7470b62010-12-01 18:49:05 +020090static const char *csv_sep = NULL;
91static bool csv_output = false;
Stephane Eranian5af52b52010-05-18 15:00:01 +020092
Ingo Molnarddcacfa2009-04-20 15:37:32 +020093
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030094static int *fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnarddcacfa2009-04-20 15:37:32 +020095
Peter Zijlstra63d40de2009-09-04 17:03:13 +020096static int event_scaled[MAX_COUNTERS];
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053097
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +020098static struct {
99 u64 val;
100 u64 ena;
101 u64 run;
102} cpu_counts[MAX_NR_CPUS][MAX_COUNTERS];
103
Liming Wang60666c62009-12-31 16:05:50 +0800104static volatile int done = 0;
105
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200106struct stats
107{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200108 double n, mean, M2;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200109};
Ingo Molnar42202dd2009-06-13 14:57:28 +0200110
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200111static void update_stats(struct stats *stats, u64 val)
112{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200113 double delta;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200114
Peter Zijlstra8a026312009-09-04 17:26:26 +0200115 stats->n++;
116 delta = val - stats->mean;
117 stats->mean += delta / stats->n;
118 stats->M2 += delta*(val - stats->mean);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200119}
120
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200121static double avg_stats(struct stats *stats)
122{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200123 return stats->mean;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200124}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200125
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200126/*
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200127 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
128 *
Peter Zijlstra8a026312009-09-04 17:26:26 +0200129 * (\Sum n_i^2) - ((\Sum n_i)^2)/n
130 * s^2 = -------------------------------
131 * n - 1
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200132 *
133 * http://en.wikipedia.org/wiki/Stddev
134 *
135 * The std dev of the mean is related to the std dev by:
136 *
137 * s
138 * s_mean = -------
139 * sqrt(n)
140 *
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200141 */
142static double stddev_stats(struct stats *stats)
143{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200144 double variance = stats->M2 / (stats->n - 1);
145 double variance_mean = variance / stats->n;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200146
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200147 return sqrt(variance_mean);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200148}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200149
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200150struct stats event_res_stats[MAX_COUNTERS][3];
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200151struct stats runtime_nsecs_stats[MAX_NR_CPUS];
152struct stats runtime_cycles_stats[MAX_NR_CPUS];
153struct stats runtime_branches_stats[MAX_NR_CPUS];
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200154struct stats walltime_nsecs_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200155
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530156#define MATCH_EVENT(t, c, counter) \
157 (attrs[counter].type == PERF_TYPE_##t && \
158 attrs[counter].config == PERF_COUNT_##c)
159
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530160#define ERR_PERF_OPEN \
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800161"counter %d, sys_perf_event_open() syscall returned with %d (%s). /bin/dmesg may provide additional information."
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530162
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800163static int create_perf_stat_counter(int counter, bool *perm_err)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200164{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200165 struct perf_event_attr *attr = attrs + counter;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300166 int thread;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300167 int ncreated = 0;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200168
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200169 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200170 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
171 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200172
173 if (system_wide) {
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200174 int cpu;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200175
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530176 for (cpu = 0; cpu < nr_cpus; cpu++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300177 fd[cpu][counter][0] = sys_perf_event_open(attr,
178 -1, cpumap[cpu], -1, 0);
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800179 if (fd[cpu][counter][0] < 0) {
180 if (errno == EPERM || errno == EACCES)
181 *perm_err = true;
182 error(ERR_PERF_OPEN, counter,
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300183 fd[cpu][counter][0], strerror(errno));
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800184 } else {
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300185 ++ncreated;
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800186 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200187 }
188 } else {
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200189 attr->inherit = !no_inherit;
190 if (target_pid == -1 && target_tid == -1) {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300191 attr->disabled = 1;
192 attr->enable_on_exec = 1;
193 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300194 for (thread = 0; thread < thread_num; thread++) {
195 fd[0][counter][thread] = sys_perf_event_open(attr,
196 all_tids[thread], -1, -1, 0);
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800197 if (fd[0][counter][thread] < 0) {
198 if (errno == EPERM || errno == EACCES)
199 *perm_err = true;
200 error(ERR_PERF_OPEN, counter,
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300201 fd[0][counter][thread],
202 strerror(errno));
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800203 } else {
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300204 ++ncreated;
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800205 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300206 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200207 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300208
209 return ncreated;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200210}
211
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200212/*
213 * Does the counter have nsecs as a unit?
214 */
215static inline int nsec_counter(int counter)
216{
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530217 if (MATCH_EVENT(SOFTWARE, SW_CPU_CLOCK, counter) ||
218 MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200219 return 1;
220
221 return 0;
222}
223
224/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200225 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200226 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200227 */
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200228static void read_counter_aggr(int counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200229{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200230 u64 count[3], single_count[3];
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200231 int cpu;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200232 size_t res, nv;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200233 int scaled;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300234 int i, thread;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200235
236 count[0] = count[1] = count[2] = 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200237
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200238 nv = scale ? 3 : 1;
Jaswinder Singh Rajputcca03c0a2009-06-23 17:12:49 +0530239 for (cpu = 0; cpu < nr_cpus; cpu++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300240 for (thread = 0; thread < thread_num; thread++) {
241 if (fd[cpu][counter][thread] < 0)
242 continue;
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200243
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300244 res = read(fd[cpu][counter][thread],
245 single_count, nv * sizeof(u64));
246 assert(res == nv * sizeof(u64));
Ingo Molnarf37a2912009-07-01 12:37:06 +0200247
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300248 close(fd[cpu][counter][thread]);
249 fd[cpu][counter][thread] = -1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200250
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300251 count[0] += single_count[0];
252 if (scale) {
253 count[1] += single_count[1];
254 count[2] += single_count[2];
255 }
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200256 }
257 }
258
259 scaled = 0;
260 if (scale) {
261 if (count[2] == 0) {
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200262 event_scaled[counter] = -1;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200263 count[0] = 0;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200264 return;
265 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200266
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200267 if (count[2] < count[1]) {
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200268 event_scaled[counter] = 1;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200269 count[0] = (unsigned long long)
270 ((double)count[0] * count[1] / count[2] + 0.5);
271 }
272 }
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200273
274 for (i = 0; i < 3; i++)
275 update_stats(&event_res_stats[counter][i], count[i]);
276
277 if (verbose) {
278 fprintf(stderr, "%s: %Ld %Ld %Ld\n", event_name(counter),
279 count[0], count[1], count[2]);
280 }
281
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200282 /*
283 * Save the full runtime - to allow normalization during printout:
284 */
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530285 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200286 update_stats(&runtime_nsecs_stats[0], count[0]);
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530287 if (MATCH_EVENT(HARDWARE, HW_CPU_CYCLES, counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200288 update_stats(&runtime_cycles_stats[0], count[0]);
Anton Blanchard11018202009-10-18 22:29:23 +1100289 if (MATCH_EVENT(HARDWARE, HW_BRANCH_INSTRUCTIONS, counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200290 update_stats(&runtime_branches_stats[0], count[0]);
291}
292
293/*
294 * Read out the results of a single counter:
295 * do not aggregate counts across CPUs in system-wide mode
296 */
297static void read_counter(int counter)
298{
299 u64 count[3];
300 int cpu;
301 size_t res, nv;
302
303 count[0] = count[1] = count[2] = 0;
304
305 nv = scale ? 3 : 1;
306
307 for (cpu = 0; cpu < nr_cpus; cpu++) {
308
309 if (fd[cpu][counter][0] < 0)
310 continue;
311
312 res = read(fd[cpu][counter][0], count, nv * sizeof(u64));
313
314 assert(res == nv * sizeof(u64));
315
316 close(fd[cpu][counter][0]);
317 fd[cpu][counter][0] = -1;
318
319 if (scale) {
320 if (count[2] == 0) {
321 count[0] = 0;
322 } else if (count[2] < count[1]) {
323 count[0] = (unsigned long long)
324 ((double)count[0] * count[1] / count[2] + 0.5);
325 }
326 }
327 cpu_counts[cpu][counter].val = count[0]; /* scaled count */
328 cpu_counts[cpu][counter].ena = count[1];
329 cpu_counts[cpu][counter].run = count[2];
330
331 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter))
332 update_stats(&runtime_nsecs_stats[cpu], count[0]);
333 if (MATCH_EVENT(HARDWARE, HW_CPU_CYCLES, counter))
334 update_stats(&runtime_cycles_stats[cpu], count[0]);
335 if (MATCH_EVENT(HARDWARE, HW_BRANCH_INSTRUCTIONS, counter))
336 update_stats(&runtime_branches_stats[cpu], count[0]);
337 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200338}
339
Ingo Molnarf37a2912009-07-01 12:37:06 +0200340static int run_perf_stat(int argc __used, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200341{
342 unsigned long long t0, t1;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200343 int status = 0;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300344 int counter, ncreated = 0;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000345 int child_ready_pipe[2], go_pipe[2];
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800346 bool perm_err = false;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300347 const bool forks = (argc > 0);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000348 char buf;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200349
350 if (!system_wide)
351 nr_cpus = 1;
352
Liming Wang60666c62009-12-31 16:05:50 +0800353 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000354 perror("failed to create pipes");
355 exit(1);
356 }
357
Liming Wang60666c62009-12-31 16:05:50 +0800358 if (forks) {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300359 if ((child_pid = fork()) < 0)
Liming Wang60666c62009-12-31 16:05:50 +0800360 perror("failed to fork");
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000361
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300362 if (!child_pid) {
Liming Wang60666c62009-12-31 16:05:50 +0800363 close(child_ready_pipe[0]);
364 close(go_pipe[1]);
365 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
366
367 /*
368 * Do a dummy execvp to get the PLT entry resolved,
369 * so we avoid the resolver overhead on the real
370 * execvp call.
371 */
372 execvp("", (char **)argv);
373
374 /*
375 * Tell the parent we're ready to go
376 */
377 close(child_ready_pipe[1]);
378
379 /*
380 * Wait until the parent tells us to go.
381 */
382 if (read(go_pipe[0], &buf, 1) == -1)
383 perror("unable to read pipe");
384
385 execvp(argv[0], (char **)argv);
386
387 perror(argv[0]);
388 exit(-1);
389 }
390
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300391 if (target_tid == -1 && target_pid == -1 && !system_wide)
392 all_tids[0] = child_pid;
393
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000394 /*
Liming Wang60666c62009-12-31 16:05:50 +0800395 * Wait for the child to be ready to exec.
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000396 */
397 close(child_ready_pipe[1]);
Liming Wang60666c62009-12-31 16:05:50 +0800398 close(go_pipe[0]);
399 if (read(child_ready_pipe[0], &buf, 1) == -1)
Frederic Weisbeckera92bef02009-07-01 21:02:10 +0200400 perror("unable to read pipe");
Liming Wang60666c62009-12-31 16:05:50 +0800401 close(child_ready_pipe[0]);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000402 }
403
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200404 for (counter = 0; counter < nr_counters; counter++)
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800405 ncreated += create_perf_stat_counter(counter, &perm_err);
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300406
Corey Ashfordd9cf8372010-11-19 17:37:24 -0800407 if (ncreated < nr_counters) {
408 if (perm_err)
409 error("You may not have permission to collect %sstats.\n"
410 "\t Consider tweaking"
411 " /proc/sys/kernel/perf_event_paranoid or running as root.",
412 system_wide ? "system-wide " : "");
413 die("Not all events could be opened.\n");
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300414 if (child_pid != -1)
415 kill(child_pid, SIGTERM);
416 return -1;
417 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200418
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200419 /*
420 * Enable counters and exec the command:
421 */
422 t0 = rdclock();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200423
Liming Wang60666c62009-12-31 16:05:50 +0800424 if (forks) {
425 close(go_pipe[1]);
426 wait(&status);
427 } else {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300428 while(!done) sleep(1);
Liming Wang60666c62009-12-31 16:05:50 +0800429 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200430
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200431 t1 = rdclock();
432
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200433 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200434
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200435 if (no_aggr) {
436 for (counter = 0; counter < nr_counters; counter++)
437 read_counter(counter);
438 } else {
439 for (counter = 0; counter < nr_counters; counter++)
440 read_counter_aggr(counter);
441 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200442 return WEXITSTATUS(status);
443}
444
Peter Zijlstra849abde2009-09-04 18:23:38 +0200445static void print_noise(int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200446{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200447 if (run_count == 1)
448 return;
449
450 fprintf(stderr, " ( +- %7.3f%% )",
451 100 * stddev_stats(&event_res_stats[counter][0]) / avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200452}
453
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200454static void nsec_printout(int cpu, int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200455{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200456 double msecs = avg / 1e6;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200457 char cpustr[16] = { '\0', };
458 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-24s";
Ingo Molnar42202dd2009-06-13 14:57:28 +0200459
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200460 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200461 sprintf(cpustr, "CPU%*d%s",
462 csv_output ? 0 : -4,
463 cpumap[cpu], csv_sep);
464
465 fprintf(stderr, fmt, cpustr, msecs, csv_sep, event_name(counter));
466
467 if (csv_output)
468 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200469
Jaswinder Singh Rajputb9ebdcc2009-07-01 15:05:09 +0530470 if (MATCH_EVENT(SOFTWARE, SW_TASK_CLOCK, counter)) {
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200471 fprintf(stderr, " # %10.3f CPUs ",
472 avg / avg_stats(&walltime_nsecs_stats));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200473 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200474}
475
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200476static void abs_printout(int cpu, int counter, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200477{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200478 double total, ratio = 0.0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200479 char cpustr[16] = { '\0', };
Stephane Eraniand7470b62010-12-01 18:49:05 +0200480 const char *fmt;
481
482 if (csv_output)
483 fmt = "%s%.0f%s%s";
484 else if (big_num)
485 fmt = "%s%'18.0f%s%-24s";
486 else
487 fmt = "%s%18.0f%s%-24s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200488
489 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200490 sprintf(cpustr, "CPU%*d%s",
491 csv_output ? 0 : -4,
492 cpumap[cpu], csv_sep);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200493 else
494 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200495
Stephane Eraniand7470b62010-12-01 18:49:05 +0200496 fprintf(stderr, fmt, cpustr, avg, csv_sep, event_name(counter));
497
498 if (csv_output)
499 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200500
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200501 if (MATCH_EVENT(HARDWARE, HW_INSTRUCTIONS, counter)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200502 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200503
504 if (total)
505 ratio = avg / total;
506
507 fprintf(stderr, " # %10.3f IPC ", ratio);
Lucas De Marchi7255fe22009-11-15 12:05:08 -0200508 } else if (MATCH_EVENT(HARDWARE, HW_BRANCH_MISSES, counter) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200509 runtime_branches_stats[cpu].n != 0) {
510 total = avg_stats(&runtime_branches_stats[cpu]);
Anton Blanchard11018202009-10-18 22:29:23 +1100511
512 if (total)
513 ratio = avg * 100 / total;
514
Ingo Molnardd86e722009-10-19 13:33:03 +0200515 fprintf(stderr, " # %10.3f %% ", ratio);
Anton Blanchard11018202009-10-18 22:29:23 +1100516
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200517 } else if (runtime_nsecs_stats[cpu].n != 0) {
518 total = avg_stats(&runtime_nsecs_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200519
520 if (total)
521 ratio = 1000.0 * avg / total;
522
523 fprintf(stderr, " # %10.3f M/sec", ratio);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200524 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200525}
526
527/*
528 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200529 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200530 */
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200531static void print_counter_aggr(int counter)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200532{
Peter Zijlstra849abde2009-09-04 18:23:38 +0200533 double avg = avg_stats(&event_res_stats[counter][0]);
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200534 int scaled = event_scaled[counter];
Ingo Molnar42202dd2009-06-13 14:57:28 +0200535
Ingo Molnar42202dd2009-06-13 14:57:28 +0200536 if (scaled == -1) {
Stephane Eraniand7470b62010-12-01 18:49:05 +0200537 fprintf(stderr, "%*s%s%-24s\n",
538 csv_output ? 0 : 18,
539 "<not counted>", csv_sep, event_name(counter));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200540 return;
541 }
542
543 if (nsec_counter(counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200544 nsec_printout(-1, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200545 else
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200546 abs_printout(-1, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200547
Stephane Eraniand7470b62010-12-01 18:49:05 +0200548 if (csv_output) {
549 fputc('\n', stderr);
550 return;
551 }
552
Peter Zijlstra849abde2009-09-04 18:23:38 +0200553 print_noise(counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200554
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200555 if (scaled) {
556 double avg_enabled, avg_running;
557
558 avg_enabled = avg_stats(&event_res_stats[counter][1]);
559 avg_running = avg_stats(&event_res_stats[counter][2]);
560
Ingo Molnar210ad392009-06-29 21:50:54 +0200561 fprintf(stderr, " (scaled from %.2f%%)",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200562 100 * avg_running / avg_enabled);
563 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200564
565 fprintf(stderr, "\n");
566}
567
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200568/*
569 * Print out the results of a single counter:
570 * does not use aggregated count in system-wide
571 */
572static void print_counter(int counter)
573{
574 u64 ena, run, val;
575 int cpu;
576
577 for (cpu = 0; cpu < nr_cpus; cpu++) {
578 val = cpu_counts[cpu][counter].val;
579 ena = cpu_counts[cpu][counter].ena;
580 run = cpu_counts[cpu][counter].run;
581 if (run == 0 || ena == 0) {
Stephane Eraniand7470b62010-12-01 18:49:05 +0200582 fprintf(stderr, "CPU%*d%s%*s%s%-24s",
583 csv_output ? 0 : -4,
584 cpumap[cpu], csv_sep,
585 csv_output ? 0 : 18,
586 "<not counted>", csv_sep,
587 event_name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200588
589 fprintf(stderr, "\n");
590 continue;
591 }
592
593 if (nsec_counter(counter))
594 nsec_printout(cpu, counter, val);
595 else
596 abs_printout(cpu, counter, val);
597
Stephane Eraniand7470b62010-12-01 18:49:05 +0200598 if (!csv_output) {
599 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200600
Stephane Eraniand7470b62010-12-01 18:49:05 +0200601 if (run != ena) {
602 fprintf(stderr, " (scaled from %.2f%%)",
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200603 100.0 * run / ena);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200604 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200605 }
606 fprintf(stderr, "\n");
607 }
608}
609
Ingo Molnar42202dd2009-06-13 14:57:28 +0200610static void print_stat(int argc, const char **argv)
611{
612 int i, counter;
613
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200614 fflush(stdout);
615
Stephane Eraniand7470b62010-12-01 18:49:05 +0200616 if (!csv_output) {
617 fprintf(stderr, "\n");
618 fprintf(stderr, " Performance counter stats for ");
619 if(target_pid == -1 && target_tid == -1) {
620 fprintf(stderr, "\'%s", argv[0]);
621 for (i = 1; i < argc; i++)
622 fprintf(stderr, " %s", argv[i]);
623 } else if (target_pid != -1)
624 fprintf(stderr, "process id \'%d", target_pid);
625 else
626 fprintf(stderr, "thread id \'%d", target_tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200627
Stephane Eraniand7470b62010-12-01 18:49:05 +0200628 fprintf(stderr, "\'");
629 if (run_count > 1)
630 fprintf(stderr, " (%d runs)", run_count);
631 fprintf(stderr, ":\n\n");
632 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200633
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200634 if (no_aggr) {
635 for (counter = 0; counter < nr_counters; counter++)
636 print_counter(counter);
637 } else {
638 for (counter = 0; counter < nr_counters; counter++)
639 print_counter_aggr(counter);
640 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200641
Stephane Eraniand7470b62010-12-01 18:49:05 +0200642 if (!csv_output) {
643 fprintf(stderr, "\n");
644 fprintf(stderr, " %18.9f seconds time elapsed",
645 avg_stats(&walltime_nsecs_stats)/1e9);
646 if (run_count > 1) {
647 fprintf(stderr, " ( +- %7.3f%% )",
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200648 100*stddev_stats(&walltime_nsecs_stats) /
649 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200650 }
651 fprintf(stderr, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +0200652 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200653}
654
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200655static volatile int signr = -1;
656
Ingo Molnar52425192009-05-26 09:17:18 +0200657static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200658{
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300659 if(child_pid == -1)
Liming Wang60666c62009-12-31 16:05:50 +0800660 done = 1;
661
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200662 signr = signo;
663}
664
665static void sig_atexit(void)
666{
Chris Wilson933da832009-10-04 01:35:01 +0100667 if (child_pid != -1)
668 kill(child_pid, SIGTERM);
669
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200670 if (signr == -1)
671 return;
672
673 signal(signr, SIG_DFL);
674 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200675}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200676
Ingo Molnar52425192009-05-26 09:17:18 +0200677static const char * const stat_usage[] = {
Liming Wang60666c62009-12-31 16:05:50 +0800678 "perf stat [<options>] [<command>]",
Ingo Molnar52425192009-05-26 09:17:18 +0200679 NULL
680};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200681
Stephane Eraniand7470b62010-12-01 18:49:05 +0200682static int stat__set_big_num(const struct option *opt __used,
683 const char *s __used, int unset)
684{
685 big_num_opt = unset ? 0 : 1;
686 return 0;
687}
688
Ingo Molnar52425192009-05-26 09:17:18 +0200689static const struct option options[] = {
690 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200691 "event selector. use 'perf list' to list available events",
692 parse_events),
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200693 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
694 "child tasks do not inherit counters"),
Ingo Molnar52425192009-05-26 09:17:18 +0200695 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300696 "stat events on existing process id"),
697 OPT_INTEGER('t', "tid", &target_tid,
698 "stat events on existing thread id"),
Ingo Molnar52425192009-05-26 09:17:18 +0200699 OPT_BOOLEAN('a', "all-cpus", &system_wide,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530700 "system-wide collection from all CPUs"),
Brice Goglinb26bc5a2009-08-07 10:18:39 +0200701 OPT_BOOLEAN('c', "scale", &scale,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530702 "scale/normalize counters"),
Ian Munsiec0555642010-04-13 18:37:33 +1000703 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200704 "be more verbose (show counter open errors, etc)"),
Ingo Molnar42202dd2009-06-13 14:57:28 +0200705 OPT_INTEGER('r', "repeat", &run_count,
706 "repeat command and print average + stddev (max: 100)"),
Ingo Molnar0cfb7a12009-06-27 06:10:30 +0200707 OPT_BOOLEAN('n', "null", &null_run,
708 "null run - dont start any counters"),
Stephane Eraniand7470b62010-12-01 18:49:05 +0200709 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
710 "print large numbers with thousands\' separators",
711 stat__set_big_num),
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200712 OPT_STRING('C', "cpu", &cpu_list, "cpu",
713 "list of cpus to monitor in system-wide"),
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200714 OPT_BOOLEAN('A', "no-aggr", &no_aggr,
715 "disable CPU count aggregation"),
Stephane Eraniand7470b62010-12-01 18:49:05 +0200716 OPT_STRING('x', "field-separator", &csv_sep, "separator",
717 "print counts with custom separator"),
Ingo Molnar52425192009-05-26 09:17:18 +0200718 OPT_END()
719};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200720
Ingo Molnarf37a2912009-07-01 12:37:06 +0200721int cmd_stat(int argc, const char **argv, const char *prefix __used)
Ingo Molnar52425192009-05-26 09:17:18 +0200722{
Ingo Molnar42202dd2009-06-13 14:57:28 +0200723 int status;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300724 int i,j;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200725
Stephane Eranian5af52b52010-05-18 15:00:01 +0200726 setlocale(LC_ALL, "");
727
Anton Blancharda0541232009-07-22 23:04:12 +1000728 argc = parse_options(argc, argv, options, stat_usage,
729 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200730
731 if (csv_sep)
732 csv_output = true;
733 else
734 csv_sep = DEFAULT_SEPARATOR;
735
736 /*
737 * let the spreadsheet do the pretty-printing
738 */
739 if (csv_output) {
740 /* User explicitely passed -B? */
741 if (big_num_opt == 1) {
742 fprintf(stderr, "-B option not supported with -x\n");
743 usage_with_options(stat_usage, options);
744 } else /* Nope, so disable big number formatting */
745 big_num = false;
746 } else if (big_num_opt == 0) /* User passed --no-big-num */
747 big_num = false;
748
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300749 if (!argc && target_pid == -1 && target_tid == -1)
Ingo Molnar52425192009-05-26 09:17:18 +0200750 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200751 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200752 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200753
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200754 /* no_aggr is for system-wide only */
755 if (no_aggr && !system_wide)
756 usage_with_options(stat_usage, options);
757
Jaswinder Singh Rajputc3043562009-06-27 23:49:09 +0530758 /* Set attrs and nr_counters if no event is selected and !null_run */
759 if (!null_run && !nr_counters) {
760 memcpy(attrs, default_attrs, sizeof(default_attrs));
761 nr_counters = ARRAY_SIZE(default_attrs);
762 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200763
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100764 if (system_wide)
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200765 nr_cpus = read_cpu_map(cpu_list);
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100766 else
767 nr_cpus = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200768
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200769 if (nr_cpus < 1)
770 usage_with_options(stat_usage, options);
771
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300772 if (target_pid != -1) {
773 target_tid = target_pid;
774 thread_num = find_all_tid(target_pid, &all_tids);
775 if (thread_num <= 0) {
776 fprintf(stderr, "Can't find all threads of pid %d\n",
777 target_pid);
778 usage_with_options(stat_usage, options);
779 }
780 } else {
781 all_tids=malloc(sizeof(pid_t));
782 if (!all_tids)
783 return -ENOMEM;
784
785 all_tids[0] = target_tid;
786 thread_num = 1;
787 }
788
789 for (i = 0; i < MAX_NR_CPUS; i++) {
790 for (j = 0; j < MAX_COUNTERS; j++) {
791 fd[i][j] = malloc(sizeof(int)*thread_num);
792 if (!fd[i][j])
793 return -ENOMEM;
794 }
795 }
796
Ingo Molnar58d7e992009-05-15 11:03:23 +0200797 /*
798 * We dont want to block the signals - that would cause
799 * child tasks to inherit that and Ctrl-C would not work.
800 * What we want is for Ctrl-C to work in the exec()-ed
801 * task, but being ignored by perf stat itself:
802 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200803 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +0200804 signal(SIGINT, skip_signal);
805 signal(SIGALRM, skip_signal);
806 signal(SIGABRT, skip_signal);
807
Ingo Molnar42202dd2009-06-13 14:57:28 +0200808 status = 0;
809 for (run_idx = 0; run_idx < run_count; run_idx++) {
810 if (run_count != 1 && verbose)
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530811 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200812 status = run_perf_stat(argc, argv);
813 }
814
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300815 if (status != -1)
816 print_stat(argc, argv);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200817
818 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200819}