Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 1 | /* |
Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 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: |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 8 | |
Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 9 | $ perf stat ~/hackbench 10 |
| 10 | Time: 0.104 |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 11 | |
Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 12 | Performance counter stats for '/home/mingo/hackbench': |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 13 | |
Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 14 | 1255.538611 task clock ticks # 10.143 CPU utilization factor |
| 15 | 54011 context switches # 0.043 M/sec |
| 16 | 385 CPU migrations # 0.000 M/sec |
| 17 | 17755 pagefaults # 0.014 M/sec |
| 18 | 3808323185 CPU cycles # 3033.219 M/sec |
| 19 | 1575111190 instructions # 1254.530 M/sec |
| 20 | 17367895 cache references # 13.833 M/sec |
| 21 | 7674421 cache misses # 6.112 M/sec |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 22 | |
Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 23 | Wall-clock time elapsed: 123.786620 msecs |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 24 | |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 25 | * |
| 26 | * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com> |
| 27 | * |
| 28 | * Improvements and fixes by: |
| 29 | * |
| 30 | * Arjan van de Ven <arjan@linux.intel.com> |
| 31 | * Yanmin Zhang <yanmin.zhang@intel.com> |
| 32 | * Wu Fengguang <fengguang.wu@intel.com> |
| 33 | * Mike Galbraith <efault@gmx.de> |
| 34 | * Paul Mackerras <paulus@samba.org> |
| 35 | * |
| 36 | * Released under the GPL v2. (and only v2, not any later version) |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 37 | */ |
| 38 | |
Peter Zijlstra | 1a482f3 | 2009-05-23 18:28:58 +0200 | [diff] [blame] | 39 | #include "perf.h" |
Ingo Molnar | 16f762a | 2009-05-27 09:10:38 +0200 | [diff] [blame] | 40 | #include "builtin.h" |
Ingo Molnar | 148be2c | 2009-04-27 08:02:14 +0200 | [diff] [blame] | 41 | #include "util/util.h" |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 42 | #include "util/parse-options.h" |
| 43 | #include "util/parse-events.h" |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 44 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 45 | #include <sys/prctl.h> |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 46 | #include <math.h> |
Peter Zijlstra | 16c8a10 | 2009-05-05 17:50:27 +0200 | [diff] [blame] | 47 | |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 48 | static struct perf_counter_attr default_attrs[MAX_COUNTERS] = { |
| 49 | |
Peter Zijlstra | f4dbfa8 | 2009-06-11 14:06:28 +0200 | [diff] [blame] | 50 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK }, |
| 51 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES}, |
| 52 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS }, |
| 53 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS }, |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 54 | |
Peter Zijlstra | f4dbfa8 | 2009-06-11 14:06:28 +0200 | [diff] [blame] | 55 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES }, |
| 56 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS }, |
| 57 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES}, |
| 58 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES }, |
| 59 | |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 60 | }; |
| 61 | |
Jaswinder Singh Rajput | 3d63259 | 2009-06-24 18:19:34 +0530 | [diff] [blame] | 62 | #define MAX_RUN 100 |
| 63 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 64 | static int system_wide = 0; |
Ingo Molnar | 743ee1f | 2009-06-07 17:06:46 +0200 | [diff] [blame] | 65 | static int verbose = 0; |
Jaswinder Singh Rajput | 3d63259 | 2009-06-24 18:19:34 +0530 | [diff] [blame] | 66 | static int nr_cpus = 0; |
| 67 | static int run_idx = 0; |
| 68 | |
| 69 | static int run_count = 1; |
| 70 | static int inherit = 1; |
| 71 | static int scale = 1; |
| 72 | static int target_pid = -1; |
Ingo Molnar | 0cfb7a1 | 2009-06-27 06:10:30 +0200 | [diff] [blame] | 73 | static int null_run = 0; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 74 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 75 | static int fd[MAX_NR_CPUS][MAX_COUNTERS]; |
| 76 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 77 | static u64 runtime_nsecs[MAX_RUN]; |
| 78 | static u64 walltime_nsecs[MAX_RUN]; |
| 79 | static u64 runtime_cycles[MAX_RUN]; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 80 | |
Jaswinder Singh Rajput | 3d63259 | 2009-06-24 18:19:34 +0530 | [diff] [blame] | 81 | static u64 event_res[MAX_RUN][MAX_COUNTERS][3]; |
| 82 | static u64 event_scaled[MAX_RUN][MAX_COUNTERS]; |
| 83 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 84 | static u64 event_res_avg[MAX_COUNTERS][3]; |
| 85 | static u64 event_res_noise[MAX_COUNTERS][3]; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 86 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 87 | static u64 event_scaled_avg[MAX_COUNTERS]; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 88 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 89 | static u64 runtime_nsecs_avg; |
| 90 | static u64 runtime_nsecs_noise; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 91 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 92 | static u64 walltime_nsecs_avg; |
| 93 | static u64 walltime_nsecs_noise; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 94 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 95 | static u64 runtime_cycles_avg; |
| 96 | static u64 runtime_cycles_noise; |
Ingo Molnar | be1ac0d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 97 | |
Jaswinder Singh Rajput | cca03c0a | 2009-06-23 17:12:49 +0530 | [diff] [blame] | 98 | #define ERR_PERF_OPEN \ |
| 99 | "Error: counter %d, sys_perf_counter_open() syscall returned with %d (%s)\n" |
| 100 | |
Ingo Molnar | 743ee1f | 2009-06-07 17:06:46 +0200 | [diff] [blame] | 101 | static void create_perf_stat_counter(int counter) |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 102 | { |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 103 | struct perf_counter_attr *attr = attrs + counter; |
Peter Zijlstra | 16c8a10 | 2009-05-05 17:50:27 +0200 | [diff] [blame] | 104 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 105 | if (scale) |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 106 | attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED | |
| 107 | PERF_FORMAT_TOTAL_TIME_RUNNING; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 108 | |
| 109 | if (system_wide) { |
| 110 | int cpu; |
Jaswinder Singh Rajput | cca03c0a | 2009-06-23 17:12:49 +0530 | [diff] [blame] | 111 | for (cpu = 0; cpu < nr_cpus; cpu++) { |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 112 | fd[cpu][counter] = sys_perf_counter_open(attr, -1, cpu, -1, 0); |
Jaswinder Singh Rajput | cca03c0a | 2009-06-23 17:12:49 +0530 | [diff] [blame] | 113 | if (fd[cpu][counter] < 0 && verbose) |
| 114 | fprintf(stderr, ERR_PERF_OPEN, counter, |
| 115 | fd[cpu][counter], strerror(errno)); |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 116 | } |
| 117 | } else { |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 118 | attr->inherit = inherit; |
| 119 | attr->disabled = 1; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 120 | |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 121 | fd[0][counter] = sys_perf_counter_open(attr, 0, -1, -1, 0); |
Jaswinder Singh Rajput | cca03c0a | 2009-06-23 17:12:49 +0530 | [diff] [blame] | 122 | if (fd[0][counter] < 0 && verbose) |
| 123 | fprintf(stderr, ERR_PERF_OPEN, counter, |
| 124 | fd[0][counter], strerror(errno)); |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 125 | } |
| 126 | } |
| 127 | |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 128 | /* |
| 129 | * Does the counter have nsecs as a unit? |
| 130 | */ |
| 131 | static inline int nsec_counter(int counter) |
| 132 | { |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 133 | if (attrs[counter].type != PERF_TYPE_SOFTWARE) |
| 134 | return 0; |
| 135 | |
Peter Zijlstra | f4dbfa8 | 2009-06-11 14:06:28 +0200 | [diff] [blame] | 136 | if (attrs[counter].config == PERF_COUNT_SW_CPU_CLOCK) |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 137 | return 1; |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 138 | |
Peter Zijlstra | f4dbfa8 | 2009-06-11 14:06:28 +0200 | [diff] [blame] | 139 | if (attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK) |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 140 | return 1; |
| 141 | |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | /* |
Ingo Molnar | 2996f5d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 146 | * Read out the results of a single counter: |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 147 | */ |
Ingo Molnar | 2996f5d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 148 | static void read_counter(int counter) |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 149 | { |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 150 | u64 *count, single_count[3]; |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 151 | ssize_t res; |
| 152 | int cpu, nv; |
| 153 | int scaled; |
| 154 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 155 | count = event_res[run_idx][counter]; |
Ingo Molnar | 2996f5d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 156 | |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 157 | count[0] = count[1] = count[2] = 0; |
Ingo Molnar | 2996f5d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 158 | |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 159 | nv = scale ? 3 : 1; |
Jaswinder Singh Rajput | cca03c0a | 2009-06-23 17:12:49 +0530 | [diff] [blame] | 160 | for (cpu = 0; cpu < nr_cpus; cpu++) { |
Ingo Molnar | 743ee1f | 2009-06-07 17:06:46 +0200 | [diff] [blame] | 161 | if (fd[cpu][counter] < 0) |
| 162 | continue; |
| 163 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 164 | res = read(fd[cpu][counter], single_count, nv * sizeof(u64)); |
| 165 | assert(res == nv * sizeof(u64)); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 166 | close(fd[cpu][counter]); |
| 167 | fd[cpu][counter] = -1; |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 168 | |
| 169 | count[0] += single_count[0]; |
| 170 | if (scale) { |
| 171 | count[1] += single_count[1]; |
| 172 | count[2] += single_count[2]; |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | scaled = 0; |
| 177 | if (scale) { |
| 178 | if (count[2] == 0) { |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 179 | event_scaled[run_idx][counter] = -1; |
Ingo Molnar | 2996f5d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 180 | count[0] = 0; |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 181 | return; |
| 182 | } |
Ingo Molnar | 2996f5d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 183 | |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 184 | if (count[2] < count[1]) { |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 185 | event_scaled[run_idx][counter] = 1; |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 186 | count[0] = (unsigned long long) |
| 187 | ((double)count[0] * count[1] / count[2] + 0.5); |
| 188 | } |
| 189 | } |
Ingo Molnar | be1ac0d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 190 | /* |
| 191 | * Save the full runtime - to allow normalization during printout: |
| 192 | */ |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 193 | if (attrs[counter].type == PERF_TYPE_SOFTWARE && |
Peter Zijlstra | f4dbfa8 | 2009-06-11 14:06:28 +0200 | [diff] [blame] | 194 | attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK) |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 195 | runtime_nsecs[run_idx] = count[0]; |
Ingo Molnar | e779898 | 2009-06-07 18:14:46 +0200 | [diff] [blame] | 196 | if (attrs[counter].type == PERF_TYPE_HARDWARE && |
Peter Zijlstra | f4dbfa8 | 2009-06-11 14:06:28 +0200 | [diff] [blame] | 197 | attrs[counter].config == PERF_COUNT_HW_CPU_CYCLES) |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 198 | runtime_cycles[run_idx] = count[0]; |
Ingo Molnar | 2996f5d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 199 | } |
| 200 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 201 | static int run_perf_stat(int argc, const char **argv) |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 202 | { |
| 203 | unsigned long long t0, t1; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 204 | int status = 0; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 205 | int counter; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 206 | int pid; |
| 207 | |
| 208 | if (!system_wide) |
| 209 | nr_cpus = 1; |
| 210 | |
| 211 | for (counter = 0; counter < nr_counters; counter++) |
Ingo Molnar | 743ee1f | 2009-06-07 17:06:46 +0200 | [diff] [blame] | 212 | create_perf_stat_counter(counter); |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 213 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 214 | /* |
| 215 | * Enable counters and exec the command: |
| 216 | */ |
| 217 | t0 = rdclock(); |
| 218 | prctl(PR_TASK_PERF_COUNTERS_ENABLE); |
| 219 | |
| 220 | if ((pid = fork()) < 0) |
| 221 | perror("failed to fork"); |
Ingo Molnar | 44db76c | 2009-06-03 19:36:07 +0200 | [diff] [blame] | 222 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 223 | if (!pid) { |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 224 | if (execvp(argv[0], (char **)argv)) { |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 225 | perror(argv[0]); |
| 226 | exit(-1); |
| 227 | } |
| 228 | } |
Ingo Molnar | 44db76c | 2009-06-03 19:36:07 +0200 | [diff] [blame] | 229 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 230 | wait(&status); |
Ingo Molnar | 44db76c | 2009-06-03 19:36:07 +0200 | [diff] [blame] | 231 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 232 | prctl(PR_TASK_PERF_COUNTERS_DISABLE); |
| 233 | t1 = rdclock(); |
| 234 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 235 | walltime_nsecs[run_idx] = t1 - t0; |
| 236 | |
| 237 | for (counter = 0; counter < nr_counters; counter++) |
| 238 | read_counter(counter); |
| 239 | |
| 240 | return WEXITSTATUS(status); |
| 241 | } |
| 242 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 243 | static void print_noise(u64 *count, u64 *noise) |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 244 | { |
| 245 | if (run_count > 1) |
| 246 | fprintf(stderr, " ( +- %7.3f%% )", |
| 247 | (double)noise[0]/(count[0]+1)*100.0); |
| 248 | } |
| 249 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 250 | static void nsec_printout(int counter, u64 *count, u64 *noise) |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 251 | { |
| 252 | double msecs = (double)count[0] / 1000000; |
| 253 | |
| 254 | fprintf(stderr, " %14.6f %-20s", msecs, event_name(counter)); |
| 255 | |
| 256 | if (attrs[counter].type == PERF_TYPE_SOFTWARE && |
| 257 | attrs[counter].config == PERF_COUNT_SW_TASK_CLOCK) { |
| 258 | |
| 259 | if (walltime_nsecs_avg) |
| 260 | fprintf(stderr, " # %10.3f CPUs ", |
| 261 | (double)count[0] / (double)walltime_nsecs_avg); |
| 262 | } |
| 263 | print_noise(count, noise); |
| 264 | } |
| 265 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 266 | static void abs_printout(int counter, u64 *count, u64 *noise) |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 267 | { |
| 268 | fprintf(stderr, " %14Ld %-20s", count[0], event_name(counter)); |
| 269 | |
| 270 | if (runtime_cycles_avg && |
| 271 | attrs[counter].type == PERF_TYPE_HARDWARE && |
| 272 | attrs[counter].config == PERF_COUNT_HW_INSTRUCTIONS) { |
| 273 | |
| 274 | fprintf(stderr, " # %10.3f IPC ", |
| 275 | (double)count[0] / (double)runtime_cycles_avg); |
| 276 | } else { |
| 277 | if (runtime_nsecs_avg) { |
| 278 | fprintf(stderr, " # %10.3f M/sec", |
| 279 | (double)count[0]/runtime_nsecs_avg*1000.0); |
| 280 | } |
| 281 | } |
| 282 | print_noise(count, noise); |
| 283 | } |
| 284 | |
| 285 | /* |
| 286 | * Print out the results of a single counter: |
| 287 | */ |
| 288 | static void print_counter(int counter) |
| 289 | { |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 290 | u64 *count, *noise; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 291 | int scaled; |
| 292 | |
| 293 | count = event_res_avg[counter]; |
| 294 | noise = event_res_noise[counter]; |
| 295 | scaled = event_scaled_avg[counter]; |
| 296 | |
| 297 | if (scaled == -1) { |
| 298 | fprintf(stderr, " %14s %-20s\n", |
| 299 | "<not counted>", event_name(counter)); |
| 300 | return; |
| 301 | } |
| 302 | |
| 303 | if (nsec_counter(counter)) |
| 304 | nsec_printout(counter, count, noise); |
| 305 | else |
| 306 | abs_printout(counter, count, noise); |
| 307 | |
| 308 | if (scaled) |
| 309 | fprintf(stderr, " (scaled from %.2f%%)", |
| 310 | (double) count[2] / count[1] * 100); |
| 311 | |
| 312 | fprintf(stderr, "\n"); |
| 313 | } |
| 314 | |
| 315 | /* |
Ingo Molnar | ef281a1 | 2009-06-13 15:40:35 +0200 | [diff] [blame] | 316 | * normalize_noise noise values down to stddev: |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 317 | */ |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 318 | static void normalize_noise(u64 *val) |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 319 | { |
| 320 | double res; |
| 321 | |
| 322 | res = (double)*val / (run_count * sqrt((double)run_count)); |
| 323 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 324 | *val = (u64)res; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 325 | } |
| 326 | |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 327 | static void update_avg(const char *name, int idx, u64 *avg, u64 *val) |
Ingo Molnar | ef281a1 | 2009-06-13 15:40:35 +0200 | [diff] [blame] | 328 | { |
| 329 | *avg += *val; |
| 330 | |
| 331 | if (verbose > 1) |
| 332 | fprintf(stderr, "debug: %20s[%d]: %Ld\n", name, idx, *val); |
| 333 | } |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 334 | /* |
| 335 | * Calculate the averages and noises: |
| 336 | */ |
| 337 | static void calc_avg(void) |
| 338 | { |
| 339 | int i, j; |
| 340 | |
Ingo Molnar | ef281a1 | 2009-06-13 15:40:35 +0200 | [diff] [blame] | 341 | if (verbose > 1) |
| 342 | fprintf(stderr, "\n"); |
| 343 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 344 | for (i = 0; i < run_count; i++) { |
Ingo Molnar | ef281a1 | 2009-06-13 15:40:35 +0200 | [diff] [blame] | 345 | update_avg("runtime", 0, &runtime_nsecs_avg, runtime_nsecs + i); |
| 346 | update_avg("walltime", 0, &walltime_nsecs_avg, walltime_nsecs + i); |
| 347 | update_avg("runtime_cycles", 0, &runtime_cycles_avg, runtime_cycles + i); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 348 | |
| 349 | for (j = 0; j < nr_counters; j++) { |
Ingo Molnar | ef281a1 | 2009-06-13 15:40:35 +0200 | [diff] [blame] | 350 | update_avg("counter/0", j, |
| 351 | event_res_avg[j]+0, event_res[i][j]+0); |
| 352 | update_avg("counter/1", j, |
| 353 | event_res_avg[j]+1, event_res[i][j]+1); |
| 354 | update_avg("counter/2", j, |
| 355 | event_res_avg[j]+2, event_res[i][j]+2); |
Ingo Molnar | 566747e | 2009-06-27 06:24:32 +0200 | [diff] [blame^] | 356 | if (event_scaled[i][j] != -1) |
| 357 | update_avg("scaled", j, |
| 358 | event_scaled_avg + j, event_scaled[i]+j); |
| 359 | else |
| 360 | event_scaled_avg[j] = -1; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 361 | } |
| 362 | } |
| 363 | runtime_nsecs_avg /= run_count; |
| 364 | walltime_nsecs_avg /= run_count; |
| 365 | runtime_cycles_avg /= run_count; |
| 366 | |
| 367 | for (j = 0; j < nr_counters; j++) { |
| 368 | event_res_avg[j][0] /= run_count; |
| 369 | event_res_avg[j][1] /= run_count; |
| 370 | event_res_avg[j][2] /= run_count; |
| 371 | } |
| 372 | |
| 373 | for (i = 0; i < run_count; i++) { |
| 374 | runtime_nsecs_noise += |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 375 | abs((s64)(runtime_nsecs[i] - runtime_nsecs_avg)); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 376 | walltime_nsecs_noise += |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 377 | abs((s64)(walltime_nsecs[i] - walltime_nsecs_avg)); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 378 | runtime_cycles_noise += |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 379 | abs((s64)(runtime_cycles[i] - runtime_cycles_avg)); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 380 | |
| 381 | for (j = 0; j < nr_counters; j++) { |
| 382 | event_res_noise[j][0] += |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 383 | abs((s64)(event_res[i][j][0] - event_res_avg[j][0])); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 384 | event_res_noise[j][1] += |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 385 | abs((s64)(event_res[i][j][1] - event_res_avg[j][1])); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 386 | event_res_noise[j][2] += |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 387 | abs((s64)(event_res[i][j][2] - event_res_avg[j][2])); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 388 | } |
| 389 | } |
| 390 | |
Ingo Molnar | ef281a1 | 2009-06-13 15:40:35 +0200 | [diff] [blame] | 391 | normalize_noise(&runtime_nsecs_noise); |
| 392 | normalize_noise(&walltime_nsecs_noise); |
| 393 | normalize_noise(&runtime_cycles_noise); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 394 | |
| 395 | for (j = 0; j < nr_counters; j++) { |
Ingo Molnar | ef281a1 | 2009-06-13 15:40:35 +0200 | [diff] [blame] | 396 | normalize_noise(&event_res_noise[j][0]); |
| 397 | normalize_noise(&event_res_noise[j][1]); |
| 398 | normalize_noise(&event_res_noise[j][2]); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 399 | } |
| 400 | } |
| 401 | |
| 402 | static void print_stat(int argc, const char **argv) |
| 403 | { |
| 404 | int i, counter; |
| 405 | |
| 406 | calc_avg(); |
| 407 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 408 | fflush(stdout); |
| 409 | |
| 410 | fprintf(stderr, "\n"); |
Ingo Molnar | 44db76c | 2009-06-03 19:36:07 +0200 | [diff] [blame] | 411 | fprintf(stderr, " Performance counter stats for \'%s", argv[0]); |
| 412 | |
| 413 | for (i = 1; i < argc; i++) |
| 414 | fprintf(stderr, " %s", argv[i]); |
| 415 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 416 | fprintf(stderr, "\'"); |
| 417 | if (run_count > 1) |
| 418 | fprintf(stderr, " (%d runs)", run_count); |
| 419 | fprintf(stderr, ":\n\n"); |
Ingo Molnar | 2996f5d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 420 | |
| 421 | for (counter = 0; counter < nr_counters; counter++) |
Ingo Molnar | c04f5e5 | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 422 | print_counter(counter); |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 423 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 424 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 425 | fprintf(stderr, "\n"); |
Ingo Molnar | 566747e | 2009-06-27 06:24:32 +0200 | [diff] [blame^] | 426 | fprintf(stderr, " %14.9f seconds time elapsed", |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 427 | (double)walltime_nsecs_avg/1e9); |
Ingo Molnar | 566747e | 2009-06-27 06:24:32 +0200 | [diff] [blame^] | 428 | if (run_count > 1) { |
| 429 | fprintf(stderr, " ( +- %7.3f%% )", |
| 430 | 100.0*(double)walltime_nsecs_noise/(double)walltime_nsecs_avg); |
| 431 | } |
| 432 | fprintf(stderr, "\n\n"); |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 433 | } |
| 434 | |
Peter Zijlstra | f7b7c26 | 2009-06-10 15:55:59 +0200 | [diff] [blame] | 435 | static volatile int signr = -1; |
| 436 | |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 437 | static void skip_signal(int signo) |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 438 | { |
Peter Zijlstra | f7b7c26 | 2009-06-10 15:55:59 +0200 | [diff] [blame] | 439 | signr = signo; |
| 440 | } |
| 441 | |
| 442 | static void sig_atexit(void) |
| 443 | { |
| 444 | if (signr == -1) |
| 445 | return; |
| 446 | |
| 447 | signal(signr, SIG_DFL); |
| 448 | kill(getpid(), signr); |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 449 | } |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 450 | |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 451 | static const char * const stat_usage[] = { |
| 452 | "perf stat [<options>] <command>", |
| 453 | NULL |
| 454 | }; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 455 | |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 456 | static const struct option options[] = { |
| 457 | OPT_CALLBACK('e', "event", NULL, "event", |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 458 | "event selector. use 'perf list' to list available events", |
| 459 | parse_events), |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 460 | OPT_BOOLEAN('i', "inherit", &inherit, |
| 461 | "child tasks inherit counters"), |
| 462 | OPT_INTEGER('p', "pid", &target_pid, |
| 463 | "stat events on existing pid"), |
| 464 | OPT_BOOLEAN('a', "all-cpus", &system_wide, |
Jaswinder Singh Rajput | 3d63259 | 2009-06-24 18:19:34 +0530 | [diff] [blame] | 465 | "system-wide collection from all CPUs"), |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 466 | OPT_BOOLEAN('S', "scale", &scale, |
Jaswinder Singh Rajput | 3d63259 | 2009-06-24 18:19:34 +0530 | [diff] [blame] | 467 | "scale/normalize counters"), |
Ingo Molnar | 743ee1f | 2009-06-07 17:06:46 +0200 | [diff] [blame] | 468 | OPT_BOOLEAN('v', "verbose", &verbose, |
| 469 | "be more verbose (show counter open errors, etc)"), |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 470 | OPT_INTEGER('r', "repeat", &run_count, |
| 471 | "repeat command and print average + stddev (max: 100)"), |
Ingo Molnar | 0cfb7a1 | 2009-06-27 06:10:30 +0200 | [diff] [blame] | 472 | OPT_BOOLEAN('n', "null", &null_run, |
| 473 | "null run - dont start any counters"), |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 474 | OPT_END() |
| 475 | }; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 476 | |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 477 | int cmd_stat(int argc, const char **argv, const char *prefix) |
| 478 | { |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 479 | int status; |
| 480 | |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 481 | memcpy(attrs, default_attrs, sizeof(attrs)); |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 482 | |
| 483 | argc = parse_options(argc, argv, options, stat_usage, 0); |
| 484 | if (!argc) |
| 485 | usage_with_options(stat_usage, options); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 486 | if (run_count <= 0 || run_count > MAX_RUN) |
| 487 | usage_with_options(stat_usage, options); |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 488 | |
Ingo Molnar | 0cfb7a1 | 2009-06-27 06:10:30 +0200 | [diff] [blame] | 489 | if (!null_run && !nr_counters) |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 490 | nr_counters = 8; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 491 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 492 | nr_cpus = sysconf(_SC_NPROCESSORS_ONLN); |
| 493 | assert(nr_cpus <= MAX_NR_CPUS); |
| 494 | assert(nr_cpus >= 0); |
| 495 | |
Ingo Molnar | 58d7e99 | 2009-05-15 11:03:23 +0200 | [diff] [blame] | 496 | /* |
| 497 | * We dont want to block the signals - that would cause |
| 498 | * child tasks to inherit that and Ctrl-C would not work. |
| 499 | * What we want is for Ctrl-C to work in the exec()-ed |
| 500 | * task, but being ignored by perf stat itself: |
| 501 | */ |
Peter Zijlstra | f7b7c26 | 2009-06-10 15:55:59 +0200 | [diff] [blame] | 502 | atexit(sig_atexit); |
Ingo Molnar | 58d7e99 | 2009-05-15 11:03:23 +0200 | [diff] [blame] | 503 | signal(SIGINT, skip_signal); |
| 504 | signal(SIGALRM, skip_signal); |
| 505 | signal(SIGABRT, skip_signal); |
| 506 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 507 | status = 0; |
| 508 | for (run_idx = 0; run_idx < run_count; run_idx++) { |
| 509 | if (run_count != 1 && verbose) |
Jaswinder Singh Rajput | 3d63259 | 2009-06-24 18:19:34 +0530 | [diff] [blame] | 510 | fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 511 | status = run_perf_stat(argc, argv); |
| 512 | } |
| 513 | |
| 514 | print_stat(argc, argv); |
| 515 | |
| 516 | return status; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 517 | } |