Frederic Weisbecker | 1b290d6 | 2009-11-23 15:42:35 +0100 | [diff] [blame] | 1 | #include "../../../include/linux/hw_breakpoint.h" |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 2 | #include "util.h" |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 3 | #include "../perf.h" |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame^] | 4 | #include "evlist.h" |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 5 | #include "evsel.h" |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 6 | #include "parse-options.h" |
| 7 | #include "parse-events.h" |
| 8 | #include "exec_cmd.h" |
Arnaldo Carvalho de Melo | a0055ae | 2009-06-01 17:50:19 -0300 | [diff] [blame] | 9 | #include "string.h" |
Arnaldo Carvalho de Melo | 5aab621 | 2010-03-25 19:59:00 -0300 | [diff] [blame] | 10 | #include "symbol.h" |
Jason Baron | 5beeded | 2009-07-21 14:16:29 -0400 | [diff] [blame] | 11 | #include "cache.h" |
Arjan van de Ven | 8755a8f | 2009-09-12 07:52:51 +0200 | [diff] [blame] | 12 | #include "header.h" |
Clark Williams | 549104f | 2009-11-08 09:03:07 -0600 | [diff] [blame] | 13 | #include "debugfs.h" |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 14 | |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 15 | struct event_symbol { |
Ingo Molnar | 83a0944 | 2009-08-15 12:26:57 +0200 | [diff] [blame] | 16 | u8 type; |
| 17 | u64 config; |
| 18 | const char *symbol; |
| 19 | const char *alias; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 20 | }; |
| 21 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 22 | enum event_result { |
| 23 | EVT_FAILED, |
| 24 | EVT_HANDLED, |
| 25 | EVT_HANDLED_ALL |
| 26 | }; |
| 27 | |
Jason Baron | 5beeded | 2009-07-21 14:16:29 -0400 | [diff] [blame] | 28 | char debugfs_path[MAXPATHLEN]; |
| 29 | |
Jaswinder Singh Rajput | 51e2684 | 2009-06-22 16:43:14 +0530 | [diff] [blame] | 30 | #define CHW(x) .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_##x |
| 31 | #define CSW(x) .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_##x |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 32 | |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 33 | static struct event_symbol event_symbols[] = { |
Jaswinder Singh Rajput | 74d5b58 | 2009-06-22 16:44:28 +0530 | [diff] [blame] | 34 | { CHW(CPU_CYCLES), "cpu-cycles", "cycles" }, |
| 35 | { CHW(INSTRUCTIONS), "instructions", "" }, |
| 36 | { CHW(CACHE_REFERENCES), "cache-references", "" }, |
| 37 | { CHW(CACHE_MISSES), "cache-misses", "" }, |
| 38 | { CHW(BRANCH_INSTRUCTIONS), "branch-instructions", "branches" }, |
| 39 | { CHW(BRANCH_MISSES), "branch-misses", "" }, |
| 40 | { CHW(BUS_CYCLES), "bus-cycles", "" }, |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 41 | |
Jaswinder Singh Rajput | 74d5b58 | 2009-06-22 16:44:28 +0530 | [diff] [blame] | 42 | { CSW(CPU_CLOCK), "cpu-clock", "" }, |
| 43 | { CSW(TASK_CLOCK), "task-clock", "" }, |
Jaswinder Singh Rajput | c0c22db | 2009-06-22 20:47:26 +0530 | [diff] [blame] | 44 | { CSW(PAGE_FAULTS), "page-faults", "faults" }, |
Jaswinder Singh Rajput | 74d5b58 | 2009-06-22 16:44:28 +0530 | [diff] [blame] | 45 | { CSW(PAGE_FAULTS_MIN), "minor-faults", "" }, |
| 46 | { CSW(PAGE_FAULTS_MAJ), "major-faults", "" }, |
| 47 | { CSW(CONTEXT_SWITCHES), "context-switches", "cs" }, |
| 48 | { CSW(CPU_MIGRATIONS), "cpu-migrations", "migrations" }, |
Anton Blanchard | f7d7986 | 2009-10-18 01:09:29 +0000 | [diff] [blame] | 49 | { CSW(ALIGNMENT_FAULTS), "alignment-faults", "" }, |
| 50 | { CSW(EMULATION_FAULTS), "emulation-faults", "" }, |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 51 | }; |
| 52 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 53 | #define __PERF_EVENT_FIELD(config, name) \ |
| 54 | ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT) |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 55 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 56 | #define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW) |
| 57 | #define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG) |
| 58 | #define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE) |
| 59 | #define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT) |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 60 | |
Ingo Molnar | 83a0944 | 2009-08-15 12:26:57 +0200 | [diff] [blame] | 61 | static const char *hw_event_names[] = { |
Ingo Molnar | 8faf3b5 | 2009-06-06 13:58:12 +0200 | [diff] [blame] | 62 | "cycles", |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 63 | "instructions", |
Ingo Molnar | 8faf3b5 | 2009-06-06 13:58:12 +0200 | [diff] [blame] | 64 | "cache-references", |
| 65 | "cache-misses", |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 66 | "branches", |
Ingo Molnar | 8faf3b5 | 2009-06-06 13:58:12 +0200 | [diff] [blame] | 67 | "branch-misses", |
| 68 | "bus-cycles", |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 69 | }; |
| 70 | |
Ingo Molnar | 83a0944 | 2009-08-15 12:26:57 +0200 | [diff] [blame] | 71 | static const char *sw_event_names[] = { |
Ingo Molnar | 44175b6 | 2009-06-13 13:35:00 +0200 | [diff] [blame] | 72 | "cpu-clock-msecs", |
| 73 | "task-clock-msecs", |
Ingo Molnar | 8faf3b5 | 2009-06-06 13:58:12 +0200 | [diff] [blame] | 74 | "page-faults", |
| 75 | "context-switches", |
| 76 | "CPU-migrations", |
| 77 | "minor-faults", |
| 78 | "major-faults", |
Anton Blanchard | f7d7986 | 2009-10-18 01:09:29 +0000 | [diff] [blame] | 79 | "alignment-faults", |
| 80 | "emulation-faults", |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 81 | }; |
| 82 | |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 83 | #define MAX_ALIASES 8 |
| 84 | |
Ingo Molnar | 83a0944 | 2009-08-15 12:26:57 +0200 | [diff] [blame] | 85 | static const char *hw_cache[][MAX_ALIASES] = { |
Anton Blanchard | 9590b7b | 2009-07-06 22:01:31 +1000 | [diff] [blame] | 86 | { "L1-dcache", "l1-d", "l1d", "L1-data", }, |
| 87 | { "L1-icache", "l1-i", "l1i", "L1-instruction", }, |
Jaswinder Singh Rajput | e5c5954 | 2009-06-25 18:25:22 +0530 | [diff] [blame] | 88 | { "LLC", "L2" }, |
| 89 | { "dTLB", "d-tlb", "Data-TLB", }, |
| 90 | { "iTLB", "i-tlb", "Instruction-TLB", }, |
| 91 | { "branch", "branches", "bpu", "btb", "bpc", }, |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 92 | }; |
| 93 | |
Ingo Molnar | 83a0944 | 2009-08-15 12:26:57 +0200 | [diff] [blame] | 94 | static const char *hw_cache_op[][MAX_ALIASES] = { |
Jaswinder Singh Rajput | e5c5954 | 2009-06-25 18:25:22 +0530 | [diff] [blame] | 95 | { "load", "loads", "read", }, |
| 96 | { "store", "stores", "write", }, |
| 97 | { "prefetch", "prefetches", "speculative-read", "speculative-load", }, |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 98 | }; |
| 99 | |
Ingo Molnar | 83a0944 | 2009-08-15 12:26:57 +0200 | [diff] [blame] | 100 | static const char *hw_cache_result[][MAX_ALIASES] = { |
Jaswinder Singh Rajput | e5c5954 | 2009-06-25 18:25:22 +0530 | [diff] [blame] | 101 | { "refs", "Reference", "ops", "access", }, |
| 102 | { "misses", "miss", }, |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 103 | }; |
| 104 | |
Jaswinder Singh Rajput | 06813f6 | 2009-06-25 17:16:07 +0530 | [diff] [blame] | 105 | #define C(x) PERF_COUNT_HW_CACHE_##x |
| 106 | #define CACHE_READ (1 << C(OP_READ)) |
| 107 | #define CACHE_WRITE (1 << C(OP_WRITE)) |
| 108 | #define CACHE_PREFETCH (1 << C(OP_PREFETCH)) |
| 109 | #define COP(x) (1 << x) |
| 110 | |
| 111 | /* |
| 112 | * cache operartion stat |
| 113 | * L1I : Read and prefetch only |
| 114 | * ITLB and BPU : Read-only |
| 115 | */ |
| 116 | static unsigned long hw_cache_stat[C(MAX)] = { |
| 117 | [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH), |
| 118 | [C(L1I)] = (CACHE_READ | CACHE_PREFETCH), |
| 119 | [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH), |
| 120 | [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH), |
| 121 | [C(ITLB)] = (CACHE_READ), |
| 122 | [C(BPU)] = (CACHE_READ), |
| 123 | }; |
| 124 | |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 125 | #define for_each_subsystem(sys_dir, sys_dirent, sys_next) \ |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 126 | while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next) \ |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 127 | if (sys_dirent.d_type == DT_DIR && \ |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 128 | (strcmp(sys_dirent.d_name, ".")) && \ |
| 129 | (strcmp(sys_dirent.d_name, ".."))) |
| 130 | |
Peter Zijlstra | ae07b63 | 2009-08-06 16:48:54 +0200 | [diff] [blame] | 131 | static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir) |
| 132 | { |
| 133 | char evt_path[MAXPATHLEN]; |
| 134 | int fd; |
| 135 | |
| 136 | snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", debugfs_path, |
| 137 | sys_dir->d_name, evt_dir->d_name); |
| 138 | fd = open(evt_path, O_RDONLY); |
| 139 | if (fd < 0) |
| 140 | return -EINVAL; |
| 141 | close(fd); |
| 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 146 | #define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) \ |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 147 | while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next) \ |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 148 | if (evt_dirent.d_type == DT_DIR && \ |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 149 | (strcmp(evt_dirent.d_name, ".")) && \ |
Peter Zijlstra | ae07b63 | 2009-08-06 16:48:54 +0200 | [diff] [blame] | 150 | (strcmp(evt_dirent.d_name, "..")) && \ |
| 151 | (!tp_event_has_id(&sys_dirent, &evt_dirent))) |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 152 | |
Li Zefan | 270bbbe | 2009-09-17 16:34:51 +0800 | [diff] [blame] | 153 | #define MAX_EVENT_LENGTH 512 |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 154 | |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 155 | |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 156 | struct tracepoint_path *tracepoint_id_to_path(u64 config) |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 157 | { |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 158 | struct tracepoint_path *path = NULL; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 159 | DIR *sys_dir, *evt_dir; |
| 160 | struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 161 | char id_buf[4]; |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 162 | int fd; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 163 | u64 id; |
| 164 | char evt_path[MAXPATHLEN]; |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 165 | char dir_path[MAXPATHLEN]; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 166 | |
Clark Williams | 549104f | 2009-11-08 09:03:07 -0600 | [diff] [blame] | 167 | if (debugfs_valid_mountpoint(debugfs_path)) |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 168 | return NULL; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 169 | |
Jason Baron | 5beeded | 2009-07-21 14:16:29 -0400 | [diff] [blame] | 170 | sys_dir = opendir(debugfs_path); |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 171 | if (!sys_dir) |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 172 | return NULL; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 173 | |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 174 | for_each_subsystem(sys_dir, sys_dirent, sys_next) { |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 175 | |
| 176 | snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path, |
| 177 | sys_dirent.d_name); |
| 178 | evt_dir = opendir(dir_path); |
| 179 | if (!evt_dir) |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 180 | continue; |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 181 | |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 182 | for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) { |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 183 | |
| 184 | snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path, |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 185 | evt_dirent.d_name); |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 186 | fd = open(evt_path, O_RDONLY); |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 187 | if (fd < 0) |
| 188 | continue; |
| 189 | if (read(fd, id_buf, sizeof(id_buf)) < 0) { |
| 190 | close(fd); |
| 191 | continue; |
| 192 | } |
| 193 | close(fd); |
| 194 | id = atoll(id_buf); |
| 195 | if (id == config) { |
| 196 | closedir(evt_dir); |
| 197 | closedir(sys_dir); |
Julia Lawall | 59b4cae | 2009-12-06 10:16:30 +0100 | [diff] [blame] | 198 | path = zalloc(sizeof(*path)); |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 199 | path->system = malloc(MAX_EVENT_LENGTH); |
| 200 | if (!path->system) { |
| 201 | free(path); |
| 202 | return NULL; |
| 203 | } |
| 204 | path->name = malloc(MAX_EVENT_LENGTH); |
| 205 | if (!path->name) { |
| 206 | free(path->system); |
| 207 | free(path); |
| 208 | return NULL; |
| 209 | } |
| 210 | strncpy(path->system, sys_dirent.d_name, |
| 211 | MAX_EVENT_LENGTH); |
| 212 | strncpy(path->name, evt_dirent.d_name, |
| 213 | MAX_EVENT_LENGTH); |
| 214 | return path; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 215 | } |
| 216 | } |
| 217 | closedir(evt_dir); |
| 218 | } |
| 219 | |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 220 | closedir(sys_dir); |
Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 221 | return NULL; |
| 222 | } |
| 223 | |
| 224 | #define TP_PATH_LEN (MAX_EVENT_LENGTH * 2 + 1) |
| 225 | static const char *tracepoint_id_to_name(u64 config) |
| 226 | { |
| 227 | static char buf[TP_PATH_LEN]; |
| 228 | struct tracepoint_path *path; |
| 229 | |
| 230 | path = tracepoint_id_to_path(config); |
| 231 | if (path) { |
| 232 | snprintf(buf, TP_PATH_LEN, "%s:%s", path->system, path->name); |
| 233 | free(path->name); |
| 234 | free(path->system); |
| 235 | free(path); |
| 236 | } else |
| 237 | snprintf(buf, TP_PATH_LEN, "%s:%s", "unknown", "unknown"); |
| 238 | |
| 239 | return buf; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 240 | } |
| 241 | |
Jaswinder Singh Rajput | 06813f6 | 2009-06-25 17:16:07 +0530 | [diff] [blame] | 242 | static int is_cache_op_valid(u8 cache_type, u8 cache_op) |
| 243 | { |
| 244 | if (hw_cache_stat[cache_type] & COP(cache_op)) |
| 245 | return 1; /* valid */ |
| 246 | else |
| 247 | return 0; /* invalid */ |
| 248 | } |
| 249 | |
Jaswinder Singh Rajput | e5c5954 | 2009-06-25 18:25:22 +0530 | [diff] [blame] | 250 | static char *event_cache_name(u8 cache_type, u8 cache_op, u8 cache_result) |
| 251 | { |
| 252 | static char name[50]; |
| 253 | |
| 254 | if (cache_result) { |
| 255 | sprintf(name, "%s-%s-%s", hw_cache[cache_type][0], |
| 256 | hw_cache_op[cache_op][0], |
| 257 | hw_cache_result[cache_result][0]); |
| 258 | } else { |
| 259 | sprintf(name, "%s-%s", hw_cache[cache_type][0], |
| 260 | hw_cache_op[cache_op][1]); |
| 261 | } |
| 262 | |
| 263 | return name; |
| 264 | } |
| 265 | |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 266 | const char *event_name(struct perf_evsel *evsel) |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 267 | { |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 268 | u64 config = evsel->attr.config; |
| 269 | int type = evsel->attr.type; |
Peter Zijlstra | 8f18aec | 2009-08-06 19:40:28 +0200 | [diff] [blame] | 270 | |
| 271 | return __event_name(type, config); |
| 272 | } |
| 273 | |
Ingo Molnar | 83a0944 | 2009-08-15 12:26:57 +0200 | [diff] [blame] | 274 | const char *__event_name(int type, u64 config) |
Peter Zijlstra | 8f18aec | 2009-08-06 19:40:28 +0200 | [diff] [blame] | 275 | { |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 276 | static char buf[32]; |
| 277 | |
Peter Zijlstra | 8f18aec | 2009-08-06 19:40:28 +0200 | [diff] [blame] | 278 | if (type == PERF_TYPE_RAW) { |
Arnaldo Carvalho de Melo | 9486aa3 | 2011-01-22 20:37:02 -0200 | [diff] [blame] | 279 | sprintf(buf, "raw 0x%" PRIx64, config); |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 280 | return buf; |
| 281 | } |
| 282 | |
| 283 | switch (type) { |
| 284 | case PERF_TYPE_HARDWARE: |
Peter Zijlstra | f4dbfa8 | 2009-06-11 14:06:28 +0200 | [diff] [blame] | 285 | if (config < PERF_COUNT_HW_MAX) |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 286 | return hw_event_names[config]; |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 287 | return "unknown-hardware"; |
| 288 | |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 289 | case PERF_TYPE_HW_CACHE: { |
Paul Mackerras | 9cffa8d | 2009-06-19 22:21:42 +1000 | [diff] [blame] | 290 | u8 cache_type, cache_op, cache_result; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 291 | |
| 292 | cache_type = (config >> 0) & 0xff; |
| 293 | if (cache_type > PERF_COUNT_HW_CACHE_MAX) |
| 294 | return "unknown-ext-hardware-cache-type"; |
| 295 | |
| 296 | cache_op = (config >> 8) & 0xff; |
Ingo Molnar | 8faf3b5 | 2009-06-06 13:58:12 +0200 | [diff] [blame] | 297 | if (cache_op > PERF_COUNT_HW_CACHE_OP_MAX) |
| 298 | return "unknown-ext-hardware-cache-op"; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 299 | |
| 300 | cache_result = (config >> 16) & 0xff; |
Ingo Molnar | 8faf3b5 | 2009-06-06 13:58:12 +0200 | [diff] [blame] | 301 | if (cache_result > PERF_COUNT_HW_CACHE_RESULT_MAX) |
| 302 | return "unknown-ext-hardware-cache-result"; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 303 | |
Jaswinder Singh Rajput | 06813f6 | 2009-06-25 17:16:07 +0530 | [diff] [blame] | 304 | if (!is_cache_op_valid(cache_type, cache_op)) |
| 305 | return "invalid-cache"; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 306 | |
Jaswinder Singh Rajput | e5c5954 | 2009-06-25 18:25:22 +0530 | [diff] [blame] | 307 | return event_cache_name(cache_type, cache_op, cache_result); |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 308 | } |
| 309 | |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 310 | case PERF_TYPE_SOFTWARE: |
Peter Zijlstra | f4dbfa8 | 2009-06-11 14:06:28 +0200 | [diff] [blame] | 311 | if (config < PERF_COUNT_SW_MAX) |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 312 | return sw_event_names[config]; |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 313 | return "unknown-software"; |
| 314 | |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 315 | case PERF_TYPE_TRACEPOINT: |
| 316 | return tracepoint_id_to_name(config); |
| 317 | |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 318 | default: |
| 319 | break; |
| 320 | } |
| 321 | |
| 322 | return "unknown"; |
| 323 | } |
| 324 | |
Ingo Molnar | 83a0944 | 2009-08-15 12:26:57 +0200 | [diff] [blame] | 325 | static int parse_aliases(const char **str, const char *names[][MAX_ALIASES], int size) |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 326 | { |
| 327 | int i, j; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 328 | int n, longest = -1; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 329 | |
| 330 | for (i = 0; i < size; i++) { |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 331 | for (j = 0; j < MAX_ALIASES && names[i][j]; j++) { |
| 332 | n = strlen(names[i][j]); |
| 333 | if (n > longest && !strncasecmp(*str, names[i][j], n)) |
| 334 | longest = n; |
| 335 | } |
| 336 | if (longest > 0) { |
| 337 | *str += longest; |
| 338 | return i; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 339 | } |
| 340 | } |
| 341 | |
Ingo Molnar | 8953645 | 2009-06-06 21:04:17 +0200 | [diff] [blame] | 342 | return -1; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 343 | } |
| 344 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 345 | static enum event_result |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 346 | parse_generic_hw_event(const char **str, struct perf_event_attr *attr) |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 347 | { |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 348 | const char *s = *str; |
| 349 | int cache_type = -1, cache_op = -1, cache_result = -1; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 350 | |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 351 | cache_type = parse_aliases(&s, hw_cache, PERF_COUNT_HW_CACHE_MAX); |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 352 | /* |
| 353 | * No fallback - if we cannot get a clear cache type |
| 354 | * then bail out: |
| 355 | */ |
| 356 | if (cache_type == -1) |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 357 | return EVT_FAILED; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 358 | |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 359 | while ((cache_op == -1 || cache_result == -1) && *s == '-') { |
| 360 | ++s; |
| 361 | |
| 362 | if (cache_op == -1) { |
| 363 | cache_op = parse_aliases(&s, hw_cache_op, |
| 364 | PERF_COUNT_HW_CACHE_OP_MAX); |
| 365 | if (cache_op >= 0) { |
| 366 | if (!is_cache_op_valid(cache_type, cache_op)) |
| 367 | return 0; |
| 368 | continue; |
| 369 | } |
| 370 | } |
| 371 | |
| 372 | if (cache_result == -1) { |
| 373 | cache_result = parse_aliases(&s, hw_cache_result, |
| 374 | PERF_COUNT_HW_CACHE_RESULT_MAX); |
| 375 | if (cache_result >= 0) |
| 376 | continue; |
| 377 | } |
| 378 | |
| 379 | /* |
| 380 | * Can't parse this as a cache op or result, so back up |
| 381 | * to the '-'. |
| 382 | */ |
| 383 | --s; |
| 384 | break; |
| 385 | } |
| 386 | |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 387 | /* |
| 388 | * Fall back to reads: |
| 389 | */ |
Ingo Molnar | 8953645 | 2009-06-06 21:04:17 +0200 | [diff] [blame] | 390 | if (cache_op == -1) |
| 391 | cache_op = PERF_COUNT_HW_CACHE_OP_READ; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 392 | |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 393 | /* |
| 394 | * Fall back to accesses: |
| 395 | */ |
| 396 | if (cache_result == -1) |
| 397 | cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS; |
| 398 | |
| 399 | attr->config = cache_type | (cache_op << 8) | (cache_result << 16); |
| 400 | attr->type = PERF_TYPE_HW_CACHE; |
| 401 | |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 402 | *str = s; |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 403 | return EVT_HANDLED; |
Ingo Molnar | 8326f44 | 2009-06-05 20:22:46 +0200 | [diff] [blame] | 404 | } |
| 405 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 406 | static enum event_result |
| 407 | parse_single_tracepoint_event(char *sys_name, |
| 408 | const char *evt_name, |
| 409 | unsigned int evt_length, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 410 | struct perf_event_attr *attr, |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 411 | const char **strp) |
| 412 | { |
| 413 | char evt_path[MAXPATHLEN]; |
| 414 | char id_buf[4]; |
| 415 | u64 id; |
| 416 | int fd; |
| 417 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 418 | snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", debugfs_path, |
| 419 | sys_name, evt_name); |
| 420 | |
| 421 | fd = open(evt_path, O_RDONLY); |
| 422 | if (fd < 0) |
| 423 | return EVT_FAILED; |
| 424 | |
| 425 | if (read(fd, id_buf, sizeof(id_buf)) < 0) { |
| 426 | close(fd); |
| 427 | return EVT_FAILED; |
| 428 | } |
| 429 | |
| 430 | close(fd); |
| 431 | id = atoll(id_buf); |
| 432 | attr->config = id; |
| 433 | attr->type = PERF_TYPE_TRACEPOINT; |
Corey Ashford | 4c635a4 | 2010-11-30 14:27:01 -0800 | [diff] [blame] | 434 | *strp += strlen(sys_name) + evt_length + 1; /* + 1 for the ':' */ |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 435 | |
Stephane Eranian | 5710fca | 2010-04-21 18:06:01 +0200 | [diff] [blame] | 436 | attr->sample_type |= PERF_SAMPLE_RAW; |
| 437 | attr->sample_type |= PERF_SAMPLE_TIME; |
| 438 | attr->sample_type |= PERF_SAMPLE_CPU; |
| 439 | |
| 440 | attr->sample_period = 1; |
| 441 | |
| 442 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 443 | return EVT_HANDLED; |
| 444 | } |
| 445 | |
| 446 | /* sys + ':' + event + ':' + flags*/ |
| 447 | #define MAX_EVOPT_LEN (MAX_EVENT_LENGTH * 2 + 2 + 128) |
| 448 | static enum event_result |
Masami Hiramatsu | fb1d2ed | 2010-01-05 17:47:17 -0500 | [diff] [blame] | 449 | parse_multiple_tracepoint_event(char *sys_name, const char *evt_exp, |
| 450 | char *flags) |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 451 | { |
| 452 | char evt_path[MAXPATHLEN]; |
| 453 | struct dirent *evt_ent; |
| 454 | DIR *evt_dir; |
| 455 | |
| 456 | snprintf(evt_path, MAXPATHLEN, "%s/%s", debugfs_path, sys_name); |
| 457 | evt_dir = opendir(evt_path); |
| 458 | |
| 459 | if (!evt_dir) { |
| 460 | perror("Can't open event dir"); |
| 461 | return EVT_FAILED; |
| 462 | } |
| 463 | |
| 464 | while ((evt_ent = readdir(evt_dir))) { |
| 465 | char event_opt[MAX_EVOPT_LEN + 1]; |
| 466 | int len; |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 467 | |
| 468 | if (!strcmp(evt_ent->d_name, ".") |
| 469 | || !strcmp(evt_ent->d_name, "..") |
| 470 | || !strcmp(evt_ent->d_name, "enable") |
| 471 | || !strcmp(evt_ent->d_name, "filter")) |
| 472 | continue; |
| 473 | |
Masami Hiramatsu | fb1d2ed | 2010-01-05 17:47:17 -0500 | [diff] [blame] | 474 | if (!strglobmatch(evt_ent->d_name, evt_exp)) |
| 475 | continue; |
| 476 | |
Ulrich Drepper | 180570f | 2009-12-06 13:25:30 -0500 | [diff] [blame] | 477 | len = snprintf(event_opt, MAX_EVOPT_LEN, "%s:%s%s%s", sys_name, |
| 478 | evt_ent->d_name, flags ? ":" : "", |
| 479 | flags ?: ""); |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 480 | if (len < 0) |
| 481 | return EVT_FAILED; |
| 482 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 483 | if (parse_events(NULL, event_opt, 0)) |
| 484 | return EVT_FAILED; |
| 485 | } |
| 486 | |
| 487 | return EVT_HANDLED_ALL; |
| 488 | } |
| 489 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 490 | static enum event_result parse_tracepoint_event(const char **strp, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 491 | struct perf_event_attr *attr) |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 492 | { |
| 493 | const char *evt_name; |
Corey Ashford | 4c635a4 | 2010-11-30 14:27:01 -0800 | [diff] [blame] | 494 | char *flags = NULL, *comma_loc; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 495 | char sys_name[MAX_EVENT_LENGTH]; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 496 | unsigned int sys_length, evt_length; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 497 | |
Clark Williams | 549104f | 2009-11-08 09:03:07 -0600 | [diff] [blame] | 498 | if (debugfs_valid_mountpoint(debugfs_path)) |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 499 | return 0; |
| 500 | |
| 501 | evt_name = strchr(*strp, ':'); |
| 502 | if (!evt_name) |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 503 | return EVT_FAILED; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 504 | |
| 505 | sys_length = evt_name - *strp; |
| 506 | if (sys_length >= MAX_EVENT_LENGTH) |
| 507 | return 0; |
| 508 | |
| 509 | strncpy(sys_name, *strp, sys_length); |
| 510 | sys_name[sys_length] = '\0'; |
| 511 | evt_name = evt_name + 1; |
Frederic Weisbecker | 3a9f131 | 2009-08-13 10:27:18 +0200 | [diff] [blame] | 512 | |
Corey Ashford | 4c635a4 | 2010-11-30 14:27:01 -0800 | [diff] [blame] | 513 | comma_loc = strchr(evt_name, ','); |
| 514 | if (comma_loc) { |
| 515 | /* take the event name up to the comma */ |
| 516 | evt_name = strndup(evt_name, comma_loc - evt_name); |
| 517 | } |
Frederic Weisbecker | 3a9f131 | 2009-08-13 10:27:18 +0200 | [diff] [blame] | 518 | flags = strchr(evt_name, ':'); |
| 519 | if (flags) { |
Ingo Molnar | 1fc35b2 | 2009-09-13 09:44:29 +0200 | [diff] [blame] | 520 | /* split it out: */ |
| 521 | evt_name = strndup(evt_name, flags - evt_name); |
Frederic Weisbecker | 3a9f131 | 2009-08-13 10:27:18 +0200 | [diff] [blame] | 522 | flags++; |
Frederic Weisbecker | 3a9f131 | 2009-08-13 10:27:18 +0200 | [diff] [blame] | 523 | } |
| 524 | |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 525 | evt_length = strlen(evt_name); |
| 526 | if (evt_length >= MAX_EVENT_LENGTH) |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 527 | return EVT_FAILED; |
Masami Hiramatsu | fb1d2ed | 2010-01-05 17:47:17 -0500 | [diff] [blame] | 528 | if (strpbrk(evt_name, "*?")) { |
Arnaldo Carvalho de Melo | dd9a9ad | 2011-01-17 14:25:06 -0200 | [diff] [blame] | 529 | *strp += strlen(sys_name) + evt_length + 1; /* 1 == the ':' */ |
Masami Hiramatsu | fb1d2ed | 2010-01-05 17:47:17 -0500 | [diff] [blame] | 530 | return parse_multiple_tracepoint_event(sys_name, evt_name, |
| 531 | flags); |
Han Pingtian | f006d25 | 2011-01-06 17:39:22 +0800 | [diff] [blame] | 532 | } else { |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 533 | return parse_single_tracepoint_event(sys_name, evt_name, |
Frederic Weisbecker | bdef3b0 | 2010-04-14 20:05:17 +0200 | [diff] [blame] | 534 | evt_length, attr, strp); |
Han Pingtian | f006d25 | 2011-01-06 17:39:22 +0800 | [diff] [blame] | 535 | } |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 536 | } |
| 537 | |
Frederic Weisbecker | 1b290d6 | 2009-11-23 15:42:35 +0100 | [diff] [blame] | 538 | static enum event_result |
| 539 | parse_breakpoint_type(const char *type, const char **strp, |
| 540 | struct perf_event_attr *attr) |
| 541 | { |
| 542 | int i; |
| 543 | |
| 544 | for (i = 0; i < 3; i++) { |
| 545 | if (!type[i]) |
| 546 | break; |
| 547 | |
| 548 | switch (type[i]) { |
| 549 | case 'r': |
| 550 | attr->bp_type |= HW_BREAKPOINT_R; |
| 551 | break; |
| 552 | case 'w': |
| 553 | attr->bp_type |= HW_BREAKPOINT_W; |
| 554 | break; |
| 555 | case 'x': |
| 556 | attr->bp_type |= HW_BREAKPOINT_X; |
| 557 | break; |
| 558 | default: |
| 559 | return EVT_FAILED; |
| 560 | } |
| 561 | } |
| 562 | if (!attr->bp_type) /* Default */ |
| 563 | attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W; |
| 564 | |
| 565 | *strp = type + i; |
| 566 | |
| 567 | return EVT_HANDLED; |
| 568 | } |
| 569 | |
| 570 | static enum event_result |
| 571 | parse_breakpoint_event(const char **strp, struct perf_event_attr *attr) |
| 572 | { |
| 573 | const char *target; |
| 574 | const char *type; |
| 575 | char *endaddr; |
| 576 | u64 addr; |
| 577 | enum event_result err; |
| 578 | |
| 579 | target = strchr(*strp, ':'); |
| 580 | if (!target) |
| 581 | return EVT_FAILED; |
| 582 | |
| 583 | if (strncmp(*strp, "mem", target - *strp) != 0) |
| 584 | return EVT_FAILED; |
| 585 | |
| 586 | target++; |
| 587 | |
| 588 | addr = strtoull(target, &endaddr, 0); |
| 589 | if (target == endaddr) |
| 590 | return EVT_FAILED; |
| 591 | |
| 592 | attr->bp_addr = addr; |
| 593 | *strp = endaddr; |
| 594 | |
| 595 | type = strchr(target, ':'); |
| 596 | |
| 597 | /* If no type is defined, just rw as default */ |
| 598 | if (!type) { |
| 599 | attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W; |
| 600 | } else { |
| 601 | err = parse_breakpoint_type(++type, strp, attr); |
| 602 | if (err == EVT_FAILED) |
| 603 | return EVT_FAILED; |
| 604 | } |
| 605 | |
Frederic Weisbecker | aa59a48 | 2010-06-24 21:36:19 +0200 | [diff] [blame] | 606 | /* |
| 607 | * We should find a nice way to override the access length |
| 608 | * Provide some defaults for now |
| 609 | */ |
| 610 | if (attr->bp_type == HW_BREAKPOINT_X) |
| 611 | attr->bp_len = sizeof(long); |
| 612 | else |
| 613 | attr->bp_len = HW_BREAKPOINT_LEN_4; |
| 614 | |
Frederic Weisbecker | 1b290d6 | 2009-11-23 15:42:35 +0100 | [diff] [blame] | 615 | attr->type = PERF_TYPE_BREAKPOINT; |
| 616 | |
| 617 | return EVT_HANDLED; |
| 618 | } |
| 619 | |
Jaswinder Singh Rajput | 74d5b58 | 2009-06-22 16:44:28 +0530 | [diff] [blame] | 620 | static int check_events(const char *str, unsigned int i) |
| 621 | { |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 622 | int n; |
Jaswinder Singh Rajput | 74d5b58 | 2009-06-22 16:44:28 +0530 | [diff] [blame] | 623 | |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 624 | n = strlen(event_symbols[i].symbol); |
| 625 | if (!strncmp(str, event_symbols[i].symbol, n)) |
| 626 | return n; |
| 627 | |
| 628 | n = strlen(event_symbols[i].alias); |
| 629 | if (n) |
| 630 | if (!strncmp(str, event_symbols[i].alias, n)) |
| 631 | return n; |
| 632 | return 0; |
| 633 | } |
| 634 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 635 | static enum event_result |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 636 | parse_symbolic_event(const char **strp, struct perf_event_attr *attr) |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 637 | { |
| 638 | const char *str = *strp; |
| 639 | unsigned int i; |
| 640 | int n; |
| 641 | |
| 642 | for (i = 0; i < ARRAY_SIZE(event_symbols); i++) { |
| 643 | n = check_events(str, i); |
| 644 | if (n > 0) { |
| 645 | attr->type = event_symbols[i].type; |
| 646 | attr->config = event_symbols[i].config; |
| 647 | *strp = str + n; |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 648 | return EVT_HANDLED; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 649 | } |
| 650 | } |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 651 | return EVT_FAILED; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 652 | } |
| 653 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 654 | static enum event_result |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 655 | parse_raw_event(const char **strp, struct perf_event_attr *attr) |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 656 | { |
| 657 | const char *str = *strp; |
| 658 | u64 config; |
| 659 | int n; |
| 660 | |
| 661 | if (*str != 'r') |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 662 | return EVT_FAILED; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 663 | n = hex2u64(str + 1, &config); |
| 664 | if (n > 0) { |
| 665 | *strp = str + n + 1; |
| 666 | attr->type = PERF_TYPE_RAW; |
| 667 | attr->config = config; |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 668 | return EVT_HANDLED; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 669 | } |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 670 | return EVT_FAILED; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 671 | } |
| 672 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 673 | static enum event_result |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 674 | parse_numeric_event(const char **strp, struct perf_event_attr *attr) |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 675 | { |
| 676 | const char *str = *strp; |
| 677 | char *endp; |
| 678 | unsigned long type; |
| 679 | u64 config; |
| 680 | |
| 681 | type = strtoul(str, &endp, 0); |
| 682 | if (endp > str && type < PERF_TYPE_MAX && *endp == ':') { |
| 683 | str = endp + 1; |
| 684 | config = strtoul(str, &endp, 0); |
| 685 | if (endp > str) { |
| 686 | attr->type = type; |
| 687 | attr->config = config; |
| 688 | *strp = endp; |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 689 | return EVT_HANDLED; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 690 | } |
| 691 | } |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 692 | return EVT_FAILED; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 693 | } |
| 694 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 695 | static enum event_result |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 696 | parse_event_modifier(const char **strp, struct perf_event_attr *attr) |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 697 | { |
| 698 | const char *str = *strp; |
Peter Zijlstra | ab60834 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 699 | int exclude = 0; |
| 700 | int eu = 0, ek = 0, eh = 0, precise = 0; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 701 | |
| 702 | if (*str++ != ':') |
| 703 | return 0; |
| 704 | while (*str) { |
Peter Zijlstra | ab60834 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 705 | if (*str == 'u') { |
| 706 | if (!exclude) |
| 707 | exclude = eu = ek = eh = 1; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 708 | eu = 0; |
Peter Zijlstra | ab60834 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 709 | } else if (*str == 'k') { |
| 710 | if (!exclude) |
| 711 | exclude = eu = ek = eh = 1; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 712 | ek = 0; |
Peter Zijlstra | ab60834 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 713 | } else if (*str == 'h') { |
| 714 | if (!exclude) |
| 715 | exclude = eu = ek = eh = 1; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 716 | eh = 0; |
Peter Zijlstra | ab60834 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 717 | } else if (*str == 'p') { |
| 718 | precise++; |
| 719 | } else |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 720 | break; |
Peter Zijlstra | ab60834 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 721 | |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 722 | ++str; |
| 723 | } |
| 724 | if (str >= *strp + 2) { |
| 725 | *strp = str; |
| 726 | attr->exclude_user = eu; |
| 727 | attr->exclude_kernel = ek; |
| 728 | attr->exclude_hv = eh; |
Peter Zijlstra | ab60834 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 729 | attr->precise_ip = precise; |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 730 | return 1; |
| 731 | } |
Jaswinder Singh Rajput | 74d5b58 | 2009-06-22 16:44:28 +0530 | [diff] [blame] | 732 | return 0; |
| 733 | } |
| 734 | |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 735 | /* |
| 736 | * Each event can have multiple symbolic names. |
| 737 | * Symbolic names are (almost) exactly matched. |
| 738 | */ |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 739 | static enum event_result |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 740 | parse_event_symbols(const char **str, struct perf_event_attr *attr) |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 741 | { |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 742 | enum event_result ret; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 743 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 744 | ret = parse_tracepoint_event(str, attr); |
| 745 | if (ret != EVT_FAILED) |
| 746 | goto modifier; |
| 747 | |
| 748 | ret = parse_raw_event(str, attr); |
| 749 | if (ret != EVT_FAILED) |
| 750 | goto modifier; |
| 751 | |
| 752 | ret = parse_numeric_event(str, attr); |
| 753 | if (ret != EVT_FAILED) |
| 754 | goto modifier; |
| 755 | |
| 756 | ret = parse_symbolic_event(str, attr); |
| 757 | if (ret != EVT_FAILED) |
| 758 | goto modifier; |
| 759 | |
| 760 | ret = parse_generic_hw_event(str, attr); |
| 761 | if (ret != EVT_FAILED) |
| 762 | goto modifier; |
| 763 | |
Frederic Weisbecker | 1b290d6 | 2009-11-23 15:42:35 +0100 | [diff] [blame] | 764 | ret = parse_breakpoint_event(str, attr); |
| 765 | if (ret != EVT_FAILED) |
| 766 | goto modifier; |
| 767 | |
Marti Raudsepp | 85df6f6 | 2009-10-27 00:33:04 +0000 | [diff] [blame] | 768 | fprintf(stderr, "invalid or unsupported event: '%s'\n", *str); |
| 769 | fprintf(stderr, "Run 'perf list' for a list of valid events\n"); |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 770 | return EVT_FAILED; |
| 771 | |
| 772 | modifier: |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 773 | parse_event_modifier(str, attr); |
Ingo Molnar | a21ca2c | 2009-06-06 09:58:57 +0200 | [diff] [blame] | 774 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 775 | return ret; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 776 | } |
| 777 | |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame^] | 778 | int parse_events(const struct option *opt, const char *str, int unset __used) |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 779 | { |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame^] | 780 | struct perf_evlist *evlist = *(struct perf_evlist **)opt->value; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 781 | struct perf_event_attr attr; |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 782 | enum event_result ret; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 783 | |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 784 | for (;;) { |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 785 | memset(&attr, 0, sizeof(attr)); |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 786 | ret = parse_event_symbols(&str, &attr); |
| 787 | if (ret == EVT_FAILED) |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 788 | return -1; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 789 | |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 790 | if (!(*str == 0 || *str == ',' || isspace(*str))) |
| 791 | return -1; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 792 | |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 793 | if (ret != EVT_HANDLED_ALL) { |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 794 | struct perf_evsel *evsel; |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame^] | 795 | evsel = perf_evsel__new(&attr, evlist->nr_entries); |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 796 | if (evsel == NULL) |
| 797 | return -1; |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame^] | 798 | perf_evlist__add(evlist, evsel); |
Frederic Weisbecker | bcd3279 | 2009-09-11 23:19:45 +0200 | [diff] [blame] | 799 | } |
Paul Mackerras | 61c4598 | 2009-07-01 13:04:34 +1000 | [diff] [blame] | 800 | |
| 801 | if (*str == 0) |
| 802 | break; |
| 803 | if (*str == ',') |
| 804 | ++str; |
| 805 | while (isspace(*str)) |
| 806 | ++str; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | return 0; |
| 810 | } |
| 811 | |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame^] | 812 | int parse_filter(const struct option *opt, const char *str, |
Li Zefan | c171b55 | 2009-10-15 11:22:07 +0800 | [diff] [blame] | 813 | int unset __used) |
| 814 | { |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame^] | 815 | struct perf_evlist *evlist = *(struct perf_evlist **)opt->value; |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 816 | struct perf_evsel *last = NULL; |
Li Zefan | c171b55 | 2009-10-15 11:22:07 +0800 | [diff] [blame] | 817 | |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame^] | 818 | if (evlist->nr_entries > 0) |
| 819 | last = list_entry(evlist->entries.prev, struct perf_evsel, node); |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 820 | |
| 821 | if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) { |
Li Zefan | c171b55 | 2009-10-15 11:22:07 +0800 | [diff] [blame] | 822 | fprintf(stderr, |
| 823 | "-F option should follow a -e tracepoint option\n"); |
| 824 | return -1; |
| 825 | } |
| 826 | |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 827 | last->filter = strdup(str); |
| 828 | if (last->filter == NULL) { |
Li Zefan | c171b55 | 2009-10-15 11:22:07 +0800 | [diff] [blame] | 829 | fprintf(stderr, "not enough memory to hold filter string\n"); |
| 830 | return -1; |
| 831 | } |
Li Zefan | c171b55 | 2009-10-15 11:22:07 +0800 | [diff] [blame] | 832 | |
| 833 | return 0; |
| 834 | } |
| 835 | |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 836 | static const char * const event_type_descriptors[] = { |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 837 | "Hardware event", |
| 838 | "Software event", |
| 839 | "Tracepoint event", |
| 840 | "Hardware cache event", |
Liming Wang | 41bdcb2 | 2009-12-29 16:37:07 +0800 | [diff] [blame] | 841 | "Raw hardware event descriptor", |
| 842 | "Hardware breakpoint", |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 843 | }; |
| 844 | |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 845 | /* |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 846 | * Print the events from <debugfs_mount_point>/tracing/events |
| 847 | */ |
| 848 | |
| 849 | static void print_tracepoint_events(void) |
| 850 | { |
| 851 | DIR *sys_dir, *evt_dir; |
| 852 | struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 853 | char evt_path[MAXPATHLEN]; |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 854 | char dir_path[MAXPATHLEN]; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 855 | |
Clark Williams | 549104f | 2009-11-08 09:03:07 -0600 | [diff] [blame] | 856 | if (debugfs_valid_mountpoint(debugfs_path)) |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 857 | return; |
| 858 | |
Jason Baron | 5beeded | 2009-07-21 14:16:29 -0400 | [diff] [blame] | 859 | sys_dir = opendir(debugfs_path); |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 860 | if (!sys_dir) |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 861 | return; |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 862 | |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 863 | for_each_subsystem(sys_dir, sys_dirent, sys_next) { |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 864 | |
| 865 | snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path, |
| 866 | sys_dirent.d_name); |
| 867 | evt_dir = opendir(dir_path); |
| 868 | if (!evt_dir) |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 869 | continue; |
Eric Dumazet | 725b136 | 2009-09-24 15:39:09 +0200 | [diff] [blame] | 870 | |
Ulrich Drepper | 6b58e7f | 2009-09-04 16:39:51 -0300 | [diff] [blame] | 871 | for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) { |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 872 | snprintf(evt_path, MAXPATHLEN, "%s:%s", |
| 873 | sys_dirent.d_name, evt_dirent.d_name); |
Marti Raudsepp | 689d301 | 2009-10-27 00:33:05 +0000 | [diff] [blame] | 874 | printf(" %-42s [%s]\n", evt_path, |
Liming Wang | 41bdcb2 | 2009-12-29 16:37:07 +0800 | [diff] [blame] | 875 | event_type_descriptors[PERF_TYPE_TRACEPOINT]); |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 876 | } |
| 877 | closedir(evt_dir); |
| 878 | } |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 879 | closedir(sys_dir); |
| 880 | } |
| 881 | |
| 882 | /* |
Thomas Renninger | 20c457b | 2011-01-03 17:50:45 +0100 | [diff] [blame] | 883 | * Check whether event is in <debugfs_mount_point>/tracing/events |
| 884 | */ |
| 885 | |
| 886 | int is_valid_tracepoint(const char *event_string) |
| 887 | { |
| 888 | DIR *sys_dir, *evt_dir; |
| 889 | struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent; |
| 890 | char evt_path[MAXPATHLEN]; |
| 891 | char dir_path[MAXPATHLEN]; |
| 892 | |
| 893 | if (debugfs_valid_mountpoint(debugfs_path)) |
| 894 | return 0; |
| 895 | |
| 896 | sys_dir = opendir(debugfs_path); |
| 897 | if (!sys_dir) |
| 898 | return 0; |
| 899 | |
| 900 | for_each_subsystem(sys_dir, sys_dirent, sys_next) { |
| 901 | |
| 902 | snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path, |
| 903 | sys_dirent.d_name); |
| 904 | evt_dir = opendir(dir_path); |
| 905 | if (!evt_dir) |
| 906 | continue; |
| 907 | |
| 908 | for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) { |
| 909 | snprintf(evt_path, MAXPATHLEN, "%s:%s", |
| 910 | sys_dirent.d_name, evt_dirent.d_name); |
| 911 | if (!strcmp(evt_path, event_string)) { |
| 912 | closedir(evt_dir); |
| 913 | closedir(sys_dir); |
| 914 | return 1; |
| 915 | } |
| 916 | } |
| 917 | closedir(evt_dir); |
| 918 | } |
| 919 | closedir(sys_dir); |
| 920 | return 0; |
| 921 | } |
| 922 | |
| 923 | /* |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 924 | * Print the help text for the event symbols: |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 925 | */ |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 926 | void print_events(void) |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 927 | { |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 928 | struct event_symbol *syms = event_symbols; |
Jaswinder Singh Rajput | 73c24cb | 2009-07-01 18:36:18 +0530 | [diff] [blame] | 929 | unsigned int i, type, op, prev_type = -1; |
Jaswinder Singh Rajput | 74d5b58 | 2009-06-22 16:44:28 +0530 | [diff] [blame] | 930 | char name[40]; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 931 | |
Marti Raudsepp | 689d301 | 2009-10-27 00:33:05 +0000 | [diff] [blame] | 932 | printf("\n"); |
| 933 | printf("List of pre-defined events (to be used in -e):\n"); |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 934 | |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 935 | for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) { |
Liming Wang | 41bdcb2 | 2009-12-29 16:37:07 +0800 | [diff] [blame] | 936 | type = syms->type; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 937 | |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 938 | if (type != prev_type) |
Marti Raudsepp | 689d301 | 2009-10-27 00:33:05 +0000 | [diff] [blame] | 939 | printf("\n"); |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 940 | |
Jaswinder Singh Rajput | 74d5b58 | 2009-06-22 16:44:28 +0530 | [diff] [blame] | 941 | if (strlen(syms->alias)) |
| 942 | sprintf(name, "%s OR %s", syms->symbol, syms->alias); |
| 943 | else |
| 944 | strcpy(name, syms->symbol); |
Marti Raudsepp | 689d301 | 2009-10-27 00:33:05 +0000 | [diff] [blame] | 945 | printf(" %-42s [%s]\n", name, |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 946 | event_type_descriptors[type]); |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 947 | |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 948 | prev_type = type; |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 949 | } |
| 950 | |
Marti Raudsepp | 689d301 | 2009-10-27 00:33:05 +0000 | [diff] [blame] | 951 | printf("\n"); |
Jaswinder Singh Rajput | 73c24cb | 2009-07-01 18:36:18 +0530 | [diff] [blame] | 952 | for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) { |
| 953 | for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) { |
| 954 | /* skip invalid cache type */ |
| 955 | if (!is_cache_op_valid(type, op)) |
| 956 | continue; |
| 957 | |
| 958 | for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) { |
Marti Raudsepp | 689d301 | 2009-10-27 00:33:05 +0000 | [diff] [blame] | 959 | printf(" %-42s [%s]\n", |
Jaswinder Singh Rajput | 73c24cb | 2009-07-01 18:36:18 +0530 | [diff] [blame] | 960 | event_cache_name(type, op, i), |
Liming Wang | 41bdcb2 | 2009-12-29 16:37:07 +0800 | [diff] [blame] | 961 | event_type_descriptors[PERF_TYPE_HW_CACHE]); |
Jaswinder Singh Rajput | 73c24cb | 2009-07-01 18:36:18 +0530 | [diff] [blame] | 962 | } |
| 963 | } |
| 964 | } |
| 965 | |
Marti Raudsepp | 689d301 | 2009-10-27 00:33:05 +0000 | [diff] [blame] | 966 | printf("\n"); |
Liming Wang | 41bdcb2 | 2009-12-29 16:37:07 +0800 | [diff] [blame] | 967 | printf(" %-42s [%s]\n", |
Arnaldo Carvalho de Melo | 1cf4a06 | 2010-05-07 14:07:05 -0300 | [diff] [blame] | 968 | "rNNN (see 'perf list --help' on how to encode it)", |
| 969 | event_type_descriptors[PERF_TYPE_RAW]); |
Marti Raudsepp | 689d301 | 2009-10-27 00:33:05 +0000 | [diff] [blame] | 970 | printf("\n"); |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 971 | |
Liming Wang | 41bdcb2 | 2009-12-29 16:37:07 +0800 | [diff] [blame] | 972 | printf(" %-42s [%s]\n", |
| 973 | "mem:<addr>[:access]", |
| 974 | event_type_descriptors[PERF_TYPE_BREAKPOINT]); |
Frederic Weisbecker | 1b290d6 | 2009-11-23 15:42:35 +0100 | [diff] [blame] | 975 | printf("\n"); |
| 976 | |
Jason Baron | f6bdafe | 2009-07-21 12:20:22 -0400 | [diff] [blame] | 977 | print_tracepoint_events(); |
| 978 | |
Thomas Gleixner | 86847b6 | 2009-06-06 12:24:17 +0200 | [diff] [blame] | 979 | exit(129); |
Ingo Molnar | 8ad8db3 | 2009-05-26 11:10:09 +0200 | [diff] [blame] | 980 | } |