]>
Commit | Line | Data |
---|---|---|
d2709c7c | 1 | #include <linux/hw_breakpoint.h> |
8ad8db37 | 2 | #include "util.h" |
6b58e7f1 | 3 | #include "../perf.h" |
361c99a6 | 4 | #include "evlist.h" |
69aad6f1 | 5 | #include "evsel.h" |
8ad8db37 IM |
6 | #include "parse-options.h" |
7 | #include "parse-events.h" | |
8 | #include "exec_cmd.h" | |
50e200f0 | 9 | #include "linux/string.h" |
5aab621b | 10 | #include "symbol.h" |
5beeded1 | 11 | #include "cache.h" |
8755a8f2 | 12 | #include "header.h" |
553873e1 | 13 | #include <api/fs/debugfs.h> |
ac20de6f | 14 | #include "parse-events-bison.h" |
90e2b22d | 15 | #define YY_EXTRA_TYPE int |
89812fc8 | 16 | #include "parse-events-flex.h" |
5f537a26 | 17 | #include "pmu.h" |
b41f1cec | 18 | #include "thread_map.h" |
89812fc8 JO |
19 | |
20 | #define MAX_NAME_LEN 100 | |
8ad8db37 | 21 | |
8ad8db37 | 22 | struct event_symbol { |
83a0944f IM |
23 | const char *symbol; |
24 | const char *alias; | |
8ad8db37 IM |
25 | }; |
26 | ||
82ba1f2f JO |
27 | #ifdef PARSER_DEBUG |
28 | extern int parse_events_debug; | |
29 | #endif | |
ac20de6f | 30 | int parse_events_parse(void *data, void *scanner); |
bcd3279f | 31 | |
1dc12760 JO |
32 | static struct event_symbol event_symbols_hw[PERF_COUNT_HW_MAX] = { |
33 | [PERF_COUNT_HW_CPU_CYCLES] = { | |
34 | .symbol = "cpu-cycles", | |
35 | .alias = "cycles", | |
36 | }, | |
37 | [PERF_COUNT_HW_INSTRUCTIONS] = { | |
38 | .symbol = "instructions", | |
39 | .alias = "", | |
40 | }, | |
41 | [PERF_COUNT_HW_CACHE_REFERENCES] = { | |
42 | .symbol = "cache-references", | |
43 | .alias = "", | |
44 | }, | |
45 | [PERF_COUNT_HW_CACHE_MISSES] = { | |
46 | .symbol = "cache-misses", | |
47 | .alias = "", | |
48 | }, | |
49 | [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = { | |
50 | .symbol = "branch-instructions", | |
51 | .alias = "branches", | |
52 | }, | |
53 | [PERF_COUNT_HW_BRANCH_MISSES] = { | |
54 | .symbol = "branch-misses", | |
55 | .alias = "", | |
56 | }, | |
57 | [PERF_COUNT_HW_BUS_CYCLES] = { | |
58 | .symbol = "bus-cycles", | |
59 | .alias = "", | |
60 | }, | |
61 | [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = { | |
62 | .symbol = "stalled-cycles-frontend", | |
63 | .alias = "idle-cycles-frontend", | |
64 | }, | |
65 | [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = { | |
66 | .symbol = "stalled-cycles-backend", | |
67 | .alias = "idle-cycles-backend", | |
68 | }, | |
69 | [PERF_COUNT_HW_REF_CPU_CYCLES] = { | |
70 | .symbol = "ref-cycles", | |
71 | .alias = "", | |
72 | }, | |
73 | }; | |
74 | ||
75 | static struct event_symbol event_symbols_sw[PERF_COUNT_SW_MAX] = { | |
76 | [PERF_COUNT_SW_CPU_CLOCK] = { | |
77 | .symbol = "cpu-clock", | |
78 | .alias = "", | |
79 | }, | |
80 | [PERF_COUNT_SW_TASK_CLOCK] = { | |
81 | .symbol = "task-clock", | |
82 | .alias = "", | |
83 | }, | |
84 | [PERF_COUNT_SW_PAGE_FAULTS] = { | |
85 | .symbol = "page-faults", | |
86 | .alias = "faults", | |
87 | }, | |
88 | [PERF_COUNT_SW_CONTEXT_SWITCHES] = { | |
89 | .symbol = "context-switches", | |
90 | .alias = "cs", | |
91 | }, | |
92 | [PERF_COUNT_SW_CPU_MIGRATIONS] = { | |
93 | .symbol = "cpu-migrations", | |
94 | .alias = "migrations", | |
95 | }, | |
96 | [PERF_COUNT_SW_PAGE_FAULTS_MIN] = { | |
97 | .symbol = "minor-faults", | |
98 | .alias = "", | |
99 | }, | |
100 | [PERF_COUNT_SW_PAGE_FAULTS_MAJ] = { | |
101 | .symbol = "major-faults", | |
102 | .alias = "", | |
103 | }, | |
104 | [PERF_COUNT_SW_ALIGNMENT_FAULTS] = { | |
105 | .symbol = "alignment-faults", | |
106 | .alias = "", | |
107 | }, | |
108 | [PERF_COUNT_SW_EMULATION_FAULTS] = { | |
109 | .symbol = "emulation-faults", | |
110 | .alias = "", | |
111 | }, | |
d22d1a2a AH |
112 | [PERF_COUNT_SW_DUMMY] = { |
113 | .symbol = "dummy", | |
114 | .alias = "", | |
115 | }, | |
8ad8db37 IM |
116 | }; |
117 | ||
cdd6c482 IM |
118 | #define __PERF_EVENT_FIELD(config, name) \ |
119 | ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT) | |
5242519b | 120 | |
1fc570ad | 121 | #define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW) |
cdd6c482 | 122 | #define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG) |
1fc570ad | 123 | #define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE) |
cdd6c482 | 124 | #define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT) |
5242519b | 125 | |
6b58e7f1 | 126 | #define for_each_subsystem(sys_dir, sys_dirent, sys_next) \ |
f6bdafef | 127 | while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next) \ |
6b58e7f1 | 128 | if (sys_dirent.d_type == DT_DIR && \ |
f6bdafef JB |
129 | (strcmp(sys_dirent.d_name, ".")) && \ |
130 | (strcmp(sys_dirent.d_name, ".."))) | |
131 | ||
ae07b63f PZ |
132 | static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir) |
133 | { | |
134 | char evt_path[MAXPATHLEN]; | |
135 | int fd; | |
136 | ||
ebf294bf | 137 | snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", tracing_events_path, |
ae07b63f PZ |
138 | sys_dir->d_name, evt_dir->d_name); |
139 | fd = open(evt_path, O_RDONLY); | |
140 | if (fd < 0) | |
141 | return -EINVAL; | |
142 | close(fd); | |
143 | ||
144 | return 0; | |
145 | } | |
146 | ||
6b58e7f1 | 147 | #define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) \ |
f6bdafef | 148 | while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next) \ |
6b58e7f1 | 149 | if (evt_dirent.d_type == DT_DIR && \ |
f6bdafef | 150 | (strcmp(evt_dirent.d_name, ".")) && \ |
ae07b63f PZ |
151 | (strcmp(evt_dirent.d_name, "..")) && \ |
152 | (!tp_event_has_id(&sys_dirent, &evt_dirent))) | |
f6bdafef | 153 | |
270bbbe8 | 154 | #define MAX_EVENT_LENGTH 512 |
f6bdafef | 155 | |
f6bdafef | 156 | |
1ef2ed10 | 157 | struct tracepoint_path *tracepoint_id_to_path(u64 config) |
f6bdafef | 158 | { |
1ef2ed10 | 159 | struct tracepoint_path *path = NULL; |
f6bdafef JB |
160 | DIR *sys_dir, *evt_dir; |
161 | struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent; | |
8aa8a7c8 | 162 | char id_buf[24]; |
725b1368 | 163 | int fd; |
f6bdafef JB |
164 | u64 id; |
165 | char evt_path[MAXPATHLEN]; | |
725b1368 | 166 | char dir_path[MAXPATHLEN]; |
f6bdafef | 167 | |
ebf294bf | 168 | if (debugfs_valid_mountpoint(tracing_events_path)) |
1ef2ed10 | 169 | return NULL; |
f6bdafef | 170 | |
ebf294bf | 171 | sys_dir = opendir(tracing_events_path); |
f6bdafef | 172 | if (!sys_dir) |
725b1368 | 173 | return NULL; |
6b58e7f1 UD |
174 | |
175 | for_each_subsystem(sys_dir, sys_dirent, sys_next) { | |
725b1368 | 176 | |
ebf294bf | 177 | snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path, |
725b1368 ED |
178 | sys_dirent.d_name); |
179 | evt_dir = opendir(dir_path); | |
180 | if (!evt_dir) | |
6b58e7f1 | 181 | continue; |
725b1368 | 182 | |
6b58e7f1 | 183 | for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) { |
725b1368 ED |
184 | |
185 | snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path, | |
f6bdafef | 186 | evt_dirent.d_name); |
725b1368 | 187 | fd = open(evt_path, O_RDONLY); |
f6bdafef JB |
188 | if (fd < 0) |
189 | continue; | |
190 | if (read(fd, id_buf, sizeof(id_buf)) < 0) { | |
191 | close(fd); | |
192 | continue; | |
193 | } | |
194 | close(fd); | |
195 | id = atoll(id_buf); | |
196 | if (id == config) { | |
197 | closedir(evt_dir); | |
198 | closedir(sys_dir); | |
59b4caeb | 199 | path = zalloc(sizeof(*path)); |
1ef2ed10 FW |
200 | path->system = malloc(MAX_EVENT_LENGTH); |
201 | if (!path->system) { | |
202 | free(path); | |
203 | return NULL; | |
204 | } | |
205 | path->name = malloc(MAX_EVENT_LENGTH); | |
206 | if (!path->name) { | |
74cf249d | 207 | zfree(&path->system); |
1ef2ed10 FW |
208 | free(path); |
209 | return NULL; | |
210 | } | |
211 | strncpy(path->system, sys_dirent.d_name, | |
212 | MAX_EVENT_LENGTH); | |
213 | strncpy(path->name, evt_dirent.d_name, | |
214 | MAX_EVENT_LENGTH); | |
215 | return path; | |
f6bdafef JB |
216 | } |
217 | } | |
218 | closedir(evt_dir); | |
219 | } | |
220 | ||
f6bdafef | 221 | closedir(sys_dir); |
1ef2ed10 FW |
222 | return NULL; |
223 | } | |
224 | ||
e7c93f09 NK |
225 | struct tracepoint_path *tracepoint_name_to_path(const char *name) |
226 | { | |
227 | struct tracepoint_path *path = zalloc(sizeof(*path)); | |
228 | char *str = strchr(name, ':'); | |
229 | ||
230 | if (path == NULL || str == NULL) { | |
231 | free(path); | |
232 | return NULL; | |
233 | } | |
234 | ||
235 | path->system = strndup(name, str - name); | |
236 | path->name = strdup(str+1); | |
237 | ||
238 | if (path->system == NULL || path->name == NULL) { | |
74cf249d ACM |
239 | zfree(&path->system); |
240 | zfree(&path->name); | |
e7c93f09 NK |
241 | free(path); |
242 | path = NULL; | |
243 | } | |
244 | ||
245 | return path; | |
246 | } | |
247 | ||
1424dc96 DA |
248 | const char *event_type(int type) |
249 | { | |
250 | switch (type) { | |
251 | case PERF_TYPE_HARDWARE: | |
252 | return "hardware"; | |
253 | ||
254 | case PERF_TYPE_SOFTWARE: | |
255 | return "software"; | |
256 | ||
257 | case PERF_TYPE_TRACEPOINT: | |
258 | return "tracepoint"; | |
259 | ||
260 | case PERF_TYPE_HW_CACHE: | |
261 | return "hardware-cache"; | |
262 | ||
263 | default: | |
264 | break; | |
265 | } | |
266 | ||
267 | return "unknown"; | |
268 | } | |
269 | ||
7ae92e74 YZ |
270 | |
271 | ||
410136f5 SE |
272 | static struct perf_evsel * |
273 | __add_event(struct list_head *list, int *idx, | |
274 | struct perf_event_attr *attr, | |
275 | char *name, struct cpu_map *cpus) | |
89812fc8 JO |
276 | { |
277 | struct perf_evsel *evsel; | |
278 | ||
279 | event_attr_init(attr); | |
280 | ||
ef503831 | 281 | evsel = perf_evsel__new_idx(attr, (*idx)++); |
c5cd8ac0 | 282 | if (!evsel) |
410136f5 | 283 | return NULL; |
89812fc8 | 284 | |
7ae92e74 | 285 | evsel->cpus = cpus; |
9db1763c ACM |
286 | if (name) |
287 | evsel->name = strdup(name); | |
b847cbdc | 288 | list_add_tail(&evsel->node, list); |
410136f5 | 289 | return evsel; |
89812fc8 JO |
290 | } |
291 | ||
c5cd8ac0 | 292 | static int add_event(struct list_head *list, int *idx, |
7ae92e74 YZ |
293 | struct perf_event_attr *attr, char *name) |
294 | { | |
410136f5 | 295 | return __add_event(list, idx, attr, name, NULL) ? 0 : -ENOMEM; |
7ae92e74 YZ |
296 | } |
297 | ||
0b668bc9 | 298 | static int parse_aliases(char *str, const char *names[][PERF_EVSEL__MAX_ALIASES], int size) |
8326f44d IM |
299 | { |
300 | int i, j; | |
61c45981 | 301 | int n, longest = -1; |
8326f44d IM |
302 | |
303 | for (i = 0; i < size; i++) { | |
0b668bc9 | 304 | for (j = 0; j < PERF_EVSEL__MAX_ALIASES && names[i][j]; j++) { |
61c45981 | 305 | n = strlen(names[i][j]); |
89812fc8 | 306 | if (n > longest && !strncasecmp(str, names[i][j], n)) |
61c45981 PM |
307 | longest = n; |
308 | } | |
89812fc8 | 309 | if (longest > 0) |
61c45981 | 310 | return i; |
8326f44d IM |
311 | } |
312 | ||
8953645f | 313 | return -1; |
8326f44d IM |
314 | } |
315 | ||
c5cd8ac0 | 316 | int parse_events_add_cache(struct list_head *list, int *idx, |
89812fc8 | 317 | char *type, char *op_result1, char *op_result2) |
8326f44d | 318 | { |
89812fc8 JO |
319 | struct perf_event_attr attr; |
320 | char name[MAX_NAME_LEN]; | |
61c45981 | 321 | int cache_type = -1, cache_op = -1, cache_result = -1; |
89812fc8 JO |
322 | char *op_result[2] = { op_result1, op_result2 }; |
323 | int i, n; | |
8326f44d | 324 | |
8326f44d IM |
325 | /* |
326 | * No fallback - if we cannot get a clear cache type | |
327 | * then bail out: | |
328 | */ | |
0b668bc9 | 329 | cache_type = parse_aliases(type, perf_evsel__hw_cache, |
89812fc8 | 330 | PERF_COUNT_HW_CACHE_MAX); |
8326f44d | 331 | if (cache_type == -1) |
89812fc8 JO |
332 | return -EINVAL; |
333 | ||
334 | n = snprintf(name, MAX_NAME_LEN, "%s", type); | |
61c45981 | 335 | |
89812fc8 JO |
336 | for (i = 0; (i < 2) && (op_result[i]); i++) { |
337 | char *str = op_result[i]; | |
338 | ||
275ef387 | 339 | n += snprintf(name + n, MAX_NAME_LEN - n, "-%s", str); |
61c45981 PM |
340 | |
341 | if (cache_op == -1) { | |
0b668bc9 | 342 | cache_op = parse_aliases(str, perf_evsel__hw_cache_op, |
89812fc8 | 343 | PERF_COUNT_HW_CACHE_OP_MAX); |
61c45981 | 344 | if (cache_op >= 0) { |
0b668bc9 | 345 | if (!perf_evsel__is_cache_op_valid(cache_type, cache_op)) |
89812fc8 | 346 | return -EINVAL; |
61c45981 PM |
347 | continue; |
348 | } | |
349 | } | |
350 | ||
351 | if (cache_result == -1) { | |
0b668bc9 ACM |
352 | cache_result = parse_aliases(str, perf_evsel__hw_cache_result, |
353 | PERF_COUNT_HW_CACHE_RESULT_MAX); | |
61c45981 PM |
354 | if (cache_result >= 0) |
355 | continue; | |
356 | } | |
61c45981 | 357 | } |
8326f44d | 358 | |
8326f44d IM |
359 | /* |
360 | * Fall back to reads: | |
361 | */ | |
8953645f IM |
362 | if (cache_op == -1) |
363 | cache_op = PERF_COUNT_HW_CACHE_OP_READ; | |
8326f44d | 364 | |
8326f44d IM |
365 | /* |
366 | * Fall back to accesses: | |
367 | */ | |
368 | if (cache_result == -1) | |
369 | cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS; | |
370 | ||
89812fc8 JO |
371 | memset(&attr, 0, sizeof(attr)); |
372 | attr.config = cache_type | (cache_op << 8) | (cache_result << 16); | |
373 | attr.type = PERF_TYPE_HW_CACHE; | |
374 | return add_event(list, idx, &attr, name); | |
bcd3279f FW |
375 | } |
376 | ||
c5cd8ac0 | 377 | static int add_tracepoint(struct list_head *list, int *idx, |
89812fc8 | 378 | char *sys_name, char *evt_name) |
bcd3279f | 379 | { |
82fe1c29 | 380 | struct perf_evsel *evsel; |
bcd3279f | 381 | |
ef503831 | 382 | evsel = perf_evsel__newtp_idx(sys_name, evt_name, (*idx)++); |
c5cd8ac0 | 383 | if (!evsel) |
82fe1c29 | 384 | return -ENOMEM; |
bcd3279f | 385 | |
82fe1c29 | 386 | list_add_tail(&evsel->node, list); |
c5cd8ac0 | 387 | |
82fe1c29 | 388 | return 0; |
8326f44d IM |
389 | } |
390 | ||
c5cd8ac0 | 391 | static int add_tracepoint_multi_event(struct list_head *list, int *idx, |
f35488f9 | 392 | char *sys_name, char *evt_name) |
bcd3279f FW |
393 | { |
394 | char evt_path[MAXPATHLEN]; | |
395 | struct dirent *evt_ent; | |
396 | DIR *evt_dir; | |
89812fc8 | 397 | int ret = 0; |
bcd3279f | 398 | |
ebf294bf | 399 | snprintf(evt_path, MAXPATHLEN, "%s/%s", tracing_events_path, sys_name); |
bcd3279f | 400 | evt_dir = opendir(evt_path); |
bcd3279f FW |
401 | if (!evt_dir) { |
402 | perror("Can't open event dir"); | |
89812fc8 | 403 | return -1; |
bcd3279f FW |
404 | } |
405 | ||
89812fc8 | 406 | while (!ret && (evt_ent = readdir(evt_dir))) { |
bcd3279f FW |
407 | if (!strcmp(evt_ent->d_name, ".") |
408 | || !strcmp(evt_ent->d_name, "..") | |
409 | || !strcmp(evt_ent->d_name, "enable") | |
410 | || !strcmp(evt_ent->d_name, "filter")) | |
411 | continue; | |
412 | ||
89812fc8 | 413 | if (!strglobmatch(evt_ent->d_name, evt_name)) |
fb1d2edf MH |
414 | continue; |
415 | ||
89812fc8 | 416 | ret = add_tracepoint(list, idx, sys_name, evt_ent->d_name); |
bcd3279f FW |
417 | } |
418 | ||
0bd3f084 | 419 | closedir(evt_dir); |
89812fc8 | 420 | return ret; |
bcd3279f FW |
421 | } |
422 | ||
c5cd8ac0 | 423 | static int add_tracepoint_event(struct list_head *list, int *idx, |
f35488f9 JO |
424 | char *sys_name, char *evt_name) |
425 | { | |
426 | return strpbrk(evt_name, "*?") ? | |
427 | add_tracepoint_multi_event(list, idx, sys_name, evt_name) : | |
428 | add_tracepoint(list, idx, sys_name, evt_name); | |
429 | } | |
430 | ||
c5cd8ac0 | 431 | static int add_tracepoint_multi_sys(struct list_head *list, int *idx, |
f35488f9 JO |
432 | char *sys_name, char *evt_name) |
433 | { | |
434 | struct dirent *events_ent; | |
435 | DIR *events_dir; | |
436 | int ret = 0; | |
437 | ||
438 | events_dir = opendir(tracing_events_path); | |
439 | if (!events_dir) { | |
440 | perror("Can't open event dir"); | |
441 | return -1; | |
442 | } | |
443 | ||
444 | while (!ret && (events_ent = readdir(events_dir))) { | |
445 | if (!strcmp(events_ent->d_name, ".") | |
446 | || !strcmp(events_ent->d_name, "..") | |
447 | || !strcmp(events_ent->d_name, "enable") | |
448 | || !strcmp(events_ent->d_name, "header_event") | |
449 | || !strcmp(events_ent->d_name, "header_page")) | |
450 | continue; | |
451 | ||
452 | if (!strglobmatch(events_ent->d_name, sys_name)) | |
453 | continue; | |
454 | ||
455 | ret = add_tracepoint_event(list, idx, events_ent->d_name, | |
456 | evt_name); | |
457 | } | |
458 | ||
459 | closedir(events_dir); | |
460 | return ret; | |
461 | } | |
462 | ||
c5cd8ac0 | 463 | int parse_events_add_tracepoint(struct list_head *list, int *idx, |
89812fc8 | 464 | char *sys, char *event) |
f6bdafef | 465 | { |
89812fc8 | 466 | int ret; |
f6bdafef | 467 | |
89812fc8 JO |
468 | ret = debugfs_valid_mountpoint(tracing_events_path); |
469 | if (ret) | |
470 | return ret; | |
f6bdafef | 471 | |
f35488f9 JO |
472 | if (strpbrk(sys, "*?")) |
473 | return add_tracepoint_multi_sys(list, idx, sys, event); | |
474 | else | |
475 | return add_tracepoint_event(list, idx, sys, event); | |
f6bdafef JB |
476 | } |
477 | ||
89812fc8 JO |
478 | static int |
479 | parse_breakpoint_type(const char *type, struct perf_event_attr *attr) | |
1b290d67 FW |
480 | { |
481 | int i; | |
482 | ||
483 | for (i = 0; i < 3; i++) { | |
89812fc8 | 484 | if (!type || !type[i]) |
1b290d67 FW |
485 | break; |
486 | ||
7582732f JO |
487 | #define CHECK_SET_TYPE(bit) \ |
488 | do { \ | |
489 | if (attr->bp_type & bit) \ | |
490 | return -EINVAL; \ | |
491 | else \ | |
492 | attr->bp_type |= bit; \ | |
493 | } while (0) | |
494 | ||
1b290d67 FW |
495 | switch (type[i]) { |
496 | case 'r': | |
7582732f | 497 | CHECK_SET_TYPE(HW_BREAKPOINT_R); |
1b290d67 FW |
498 | break; |
499 | case 'w': | |
7582732f | 500 | CHECK_SET_TYPE(HW_BREAKPOINT_W); |
1b290d67 FW |
501 | break; |
502 | case 'x': | |
7582732f | 503 | CHECK_SET_TYPE(HW_BREAKPOINT_X); |
1b290d67 FW |
504 | break; |
505 | default: | |
89812fc8 | 506 | return -EINVAL; |
1b290d67 FW |
507 | } |
508 | } | |
89812fc8 | 509 | |
7582732f JO |
510 | #undef CHECK_SET_TYPE |
511 | ||
1b290d67 FW |
512 | if (!attr->bp_type) /* Default */ |
513 | attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W; | |
514 | ||
89812fc8 | 515 | return 0; |
1b290d67 FW |
516 | } |
517 | ||
c5cd8ac0 | 518 | int parse_events_add_breakpoint(struct list_head *list, int *idx, |
89812fc8 | 519 | void *ptr, char *type) |
1b290d67 | 520 | { |
89812fc8 | 521 | struct perf_event_attr attr; |
1b290d67 | 522 | |
89812fc8 | 523 | memset(&attr, 0, sizeof(attr)); |
9fafd98f | 524 | attr.bp_addr = (unsigned long) ptr; |
1b290d67 | 525 | |
89812fc8 JO |
526 | if (parse_breakpoint_type(type, &attr)) |
527 | return -EINVAL; | |
1b290d67 | 528 | |
aa59a485 FW |
529 | /* |
530 | * We should find a nice way to override the access length | |
531 | * Provide some defaults for now | |
532 | */ | |
89812fc8 JO |
533 | if (attr.bp_type == HW_BREAKPOINT_X) |
534 | attr.bp_len = sizeof(long); | |
aa59a485 | 535 | else |
89812fc8 | 536 | attr.bp_len = HW_BREAKPOINT_LEN_4; |
61c45981 | 537 | |
89812fc8 | 538 | attr.type = PERF_TYPE_BREAKPOINT; |
4a841d65 | 539 | attr.sample_period = 1; |
b908debd | 540 | |
287e74aa | 541 | return add_event(list, idx, &attr, NULL); |
74d5b588 JSR |
542 | } |
543 | ||
8f707d84 | 544 | static int config_term(struct perf_event_attr *attr, |
6cee6cd3 | 545 | struct parse_events_term *term) |
8f707d84 | 546 | { |
16fa7e82 JO |
547 | #define CHECK_TYPE_VAL(type) \ |
548 | do { \ | |
549 | if (PARSE_EVENTS__TERM_TYPE_ ## type != term->type_val) \ | |
550 | return -EINVAL; \ | |
551 | } while (0) | |
552 | ||
553 | switch (term->type_term) { | |
8f707d84 | 554 | case PARSE_EVENTS__TERM_TYPE_CONFIG: |
16fa7e82 | 555 | CHECK_TYPE_VAL(NUM); |
8f707d84 JO |
556 | attr->config = term->val.num; |
557 | break; | |
558 | case PARSE_EVENTS__TERM_TYPE_CONFIG1: | |
16fa7e82 | 559 | CHECK_TYPE_VAL(NUM); |
8f707d84 JO |
560 | attr->config1 = term->val.num; |
561 | break; | |
562 | case PARSE_EVENTS__TERM_TYPE_CONFIG2: | |
16fa7e82 | 563 | CHECK_TYPE_VAL(NUM); |
8f707d84 JO |
564 | attr->config2 = term->val.num; |
565 | break; | |
566 | case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD: | |
16fa7e82 | 567 | CHECK_TYPE_VAL(NUM); |
8f707d84 JO |
568 | attr->sample_period = term->val.num; |
569 | break; | |
570 | case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE: | |
571 | /* | |
572 | * TODO uncomment when the field is available | |
573 | * attr->branch_sample_type = term->val.num; | |
574 | */ | |
575 | break; | |
6b5fc39b JO |
576 | case PARSE_EVENTS__TERM_TYPE_NAME: |
577 | CHECK_TYPE_VAL(STR); | |
578 | break; | |
8f707d84 JO |
579 | default: |
580 | return -EINVAL; | |
581 | } | |
16fa7e82 | 582 | |
8f707d84 | 583 | return 0; |
16fa7e82 | 584 | #undef CHECK_TYPE_VAL |
8f707d84 JO |
585 | } |
586 | ||
587 | static int config_attr(struct perf_event_attr *attr, | |
588 | struct list_head *head, int fail) | |
589 | { | |
6cee6cd3 | 590 | struct parse_events_term *term; |
8f707d84 JO |
591 | |
592 | list_for_each_entry(term, head, list) | |
593 | if (config_term(attr, term) && fail) | |
594 | return -EINVAL; | |
595 | ||
596 | return 0; | |
597 | } | |
598 | ||
c5cd8ac0 | 599 | int parse_events_add_numeric(struct list_head *list, int *idx, |
b527bab5 | 600 | u32 type, u64 config, |
8f707d84 | 601 | struct list_head *head_config) |
8ad8db37 | 602 | { |
89812fc8 | 603 | struct perf_event_attr attr; |
61c45981 | 604 | |
89812fc8 JO |
605 | memset(&attr, 0, sizeof(attr)); |
606 | attr.type = type; | |
607 | attr.config = config; | |
8f707d84 JO |
608 | |
609 | if (head_config && | |
610 | config_attr(&attr, head_config, 1)) | |
611 | return -EINVAL; | |
612 | ||
9db1763c | 613 | return add_event(list, idx, &attr, NULL); |
61c45981 | 614 | } |
8ad8db37 | 615 | |
6cee6cd3 | 616 | static int parse_events__is_name_term(struct parse_events_term *term) |
6b5fc39b JO |
617 | { |
618 | return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME; | |
619 | } | |
620 | ||
9db1763c | 621 | static char *pmu_event_name(struct list_head *head_terms) |
6b5fc39b | 622 | { |
6cee6cd3 | 623 | struct parse_events_term *term; |
6b5fc39b JO |
624 | |
625 | list_for_each_entry(term, head_terms, list) | |
626 | if (parse_events__is_name_term(term)) | |
627 | return term->val.str; | |
628 | ||
9db1763c | 629 | return NULL; |
6b5fc39b JO |
630 | } |
631 | ||
c5cd8ac0 | 632 | int parse_events_add_pmu(struct list_head *list, int *idx, |
5f537a26 JO |
633 | char *name, struct list_head *head_config) |
634 | { | |
635 | struct perf_event_attr attr; | |
636 | struct perf_pmu *pmu; | |
410136f5 SE |
637 | struct perf_evsel *evsel; |
638 | char *unit; | |
639 | double scale; | |
5f537a26 JO |
640 | |
641 | pmu = perf_pmu__find(name); | |
642 | if (!pmu) | |
643 | return -EINVAL; | |
644 | ||
645 | memset(&attr, 0, sizeof(attr)); | |
646 | ||
410136f5 | 647 | if (perf_pmu__check_alias(pmu, head_config, &unit, &scale)) |
a6146d50 ZY |
648 | return -EINVAL; |
649 | ||
5f537a26 JO |
650 | /* |
651 | * Configure hardcoded terms first, no need to check | |
652 | * return value when called with fail == 0 ;) | |
653 | */ | |
654 | config_attr(&attr, head_config, 0); | |
655 | ||
656 | if (perf_pmu__config(pmu, &attr, head_config)) | |
657 | return -EINVAL; | |
658 | ||
410136f5 SE |
659 | evsel = __add_event(list, idx, &attr, pmu_event_name(head_config), |
660 | pmu->cpus); | |
661 | if (evsel) { | |
662 | evsel->unit = unit; | |
663 | evsel->scale = scale; | |
664 | } | |
665 | ||
666 | return evsel ? 0 : -ENOMEM; | |
5f537a26 JO |
667 | } |
668 | ||
6a4bb04c JO |
669 | int parse_events__modifier_group(struct list_head *list, |
670 | char *event_mod) | |
89efb029 | 671 | { |
6a4bb04c JO |
672 | return parse_events__modifier_event(list, event_mod, true); |
673 | } | |
674 | ||
63dab225 | 675 | void parse_events__set_leader(char *name, struct list_head *list) |
6a4bb04c JO |
676 | { |
677 | struct perf_evsel *leader; | |
678 | ||
63dab225 ACM |
679 | __perf_evlist__set_leader(list); |
680 | leader = list_entry(list->next, struct perf_evsel, node); | |
6a4bb04c | 681 | leader->group_name = name ? strdup(name) : NULL; |
89efb029 JO |
682 | } |
683 | ||
c5cd8ac0 | 684 | /* list_event is assumed to point to malloc'ed memory */ |
5d7be90e JO |
685 | void parse_events_update_lists(struct list_head *list_event, |
686 | struct list_head *list_all) | |
687 | { | |
688 | /* | |
689 | * Called for single event definition. Update the | |
89efb029 | 690 | * 'all event' list, and reinit the 'single event' |
5d7be90e JO |
691 | * list, for next event definition. |
692 | */ | |
693 | list_splice_tail(list_event, list_all); | |
b847cbdc | 694 | free(list_event); |
5d7be90e JO |
695 | } |
696 | ||
f5b1135b JO |
697 | struct event_modifier { |
698 | int eu; | |
699 | int ek; | |
700 | int eh; | |
701 | int eH; | |
702 | int eG; | |
703 | int precise; | |
704 | int exclude_GH; | |
3c176311 | 705 | int sample_read; |
e9a7c414 | 706 | int pinned; |
f5b1135b JO |
707 | }; |
708 | ||
709 | static int get_event_modifier(struct event_modifier *mod, char *str, | |
710 | struct perf_evsel *evsel) | |
61c45981 | 711 | { |
f5b1135b JO |
712 | int eu = evsel ? evsel->attr.exclude_user : 0; |
713 | int ek = evsel ? evsel->attr.exclude_kernel : 0; | |
714 | int eh = evsel ? evsel->attr.exclude_hv : 0; | |
715 | int eH = evsel ? evsel->attr.exclude_host : 0; | |
716 | int eG = evsel ? evsel->attr.exclude_guest : 0; | |
717 | int precise = evsel ? evsel->attr.precise_ip : 0; | |
3c176311 | 718 | int sample_read = 0; |
e9a7c414 | 719 | int pinned = evsel ? evsel->attr.pinned : 0; |
a21ca2ca | 720 | |
f5b1135b JO |
721 | int exclude = eu | ek | eh; |
722 | int exclude_GH = evsel ? evsel->exclude_GH : 0; | |
723 | ||
f5b1135b | 724 | memset(mod, 0, sizeof(*mod)); |
ceb53fbf | 725 | |
61c45981 | 726 | while (*str) { |
ab608344 PZ |
727 | if (*str == 'u') { |
728 | if (!exclude) | |
729 | exclude = eu = ek = eh = 1; | |
61c45981 | 730 | eu = 0; |
ab608344 PZ |
731 | } else if (*str == 'k') { |
732 | if (!exclude) | |
733 | exclude = eu = ek = eh = 1; | |
61c45981 | 734 | ek = 0; |
ab608344 PZ |
735 | } else if (*str == 'h') { |
736 | if (!exclude) | |
737 | exclude = eu = ek = eh = 1; | |
61c45981 | 738 | eh = 0; |
99320cc8 JR |
739 | } else if (*str == 'G') { |
740 | if (!exclude_GH) | |
741 | exclude_GH = eG = eH = 1; | |
742 | eG = 0; | |
743 | } else if (*str == 'H') { | |
744 | if (!exclude_GH) | |
745 | exclude_GH = eG = eH = 1; | |
746 | eH = 0; | |
ab608344 PZ |
747 | } else if (*str == 'p') { |
748 | precise++; | |
1342798c DA |
749 | /* use of precise requires exclude_guest */ |
750 | if (!exclude_GH) | |
751 | eG = 1; | |
3c176311 JO |
752 | } else if (*str == 'S') { |
753 | sample_read = 1; | |
e9a7c414 ME |
754 | } else if (*str == 'D') { |
755 | pinned = 1; | |
ab608344 | 756 | } else |
61c45981 | 757 | break; |
ab608344 | 758 | |
61c45981 | 759 | ++str; |
5242519b | 760 | } |
ceb53fbf | 761 | |
89812fc8 JO |
762 | /* |
763 | * precise ip: | |
764 | * | |
765 | * 0 - SAMPLE_IP can have arbitrary skid | |
766 | * 1 - SAMPLE_IP must have constant skid | |
767 | * 2 - SAMPLE_IP requested to have 0 skid | |
768 | * 3 - SAMPLE_IP must have 0 skid | |
769 | * | |
770 | * See also PERF_RECORD_MISC_EXACT_IP | |
771 | */ | |
772 | if (precise > 3) | |
773 | return -EINVAL; | |
ceb53fbf | 774 | |
f5b1135b JO |
775 | mod->eu = eu; |
776 | mod->ek = ek; | |
777 | mod->eh = eh; | |
778 | mod->eH = eH; | |
779 | mod->eG = eG; | |
780 | mod->precise = precise; | |
781 | mod->exclude_GH = exclude_GH; | |
3c176311 | 782 | mod->sample_read = sample_read; |
e9a7c414 ME |
783 | mod->pinned = pinned; |
784 | ||
f5b1135b JO |
785 | return 0; |
786 | } | |
787 | ||
534123f4 JO |
788 | /* |
789 | * Basic modifier sanity check to validate it contains only one | |
790 | * instance of any modifier (apart from 'p') present. | |
791 | */ | |
792 | static int check_modifier(char *str) | |
793 | { | |
794 | char *p = str; | |
795 | ||
796 | /* The sizeof includes 0 byte as well. */ | |
e9a7c414 | 797 | if (strlen(str) > (sizeof("ukhGHpppSD") - 1)) |
534123f4 JO |
798 | return -1; |
799 | ||
800 | while (*p) { | |
801 | if (*p != 'p' && strchr(p + 1, *p)) | |
802 | return -1; | |
803 | p++; | |
804 | } | |
805 | ||
806 | return 0; | |
807 | } | |
808 | ||
f5b1135b JO |
809 | int parse_events__modifier_event(struct list_head *list, char *str, bool add) |
810 | { | |
811 | struct perf_evsel *evsel; | |
812 | struct event_modifier mod; | |
813 | ||
814 | if (str == NULL) | |
815 | return 0; | |
816 | ||
534123f4 JO |
817 | if (check_modifier(str)) |
818 | return -EINVAL; | |
819 | ||
f5b1135b JO |
820 | if (!add && get_event_modifier(&mod, str, NULL)) |
821 | return -EINVAL; | |
822 | ||
89812fc8 | 823 | list_for_each_entry(evsel, list, node) { |
f5b1135b JO |
824 | |
825 | if (add && get_event_modifier(&mod, str, evsel)) | |
826 | return -EINVAL; | |
827 | ||
828 | evsel->attr.exclude_user = mod.eu; | |
829 | evsel->attr.exclude_kernel = mod.ek; | |
830 | evsel->attr.exclude_hv = mod.eh; | |
831 | evsel->attr.precise_ip = mod.precise; | |
832 | evsel->attr.exclude_host = mod.eH; | |
833 | evsel->attr.exclude_guest = mod.eG; | |
834 | evsel->exclude_GH = mod.exclude_GH; | |
3c176311 | 835 | evsel->sample_read = mod.sample_read; |
e9a7c414 ME |
836 | |
837 | if (perf_evsel__is_group_leader(evsel)) | |
838 | evsel->attr.pinned = mod.pinned; | |
89812fc8 | 839 | } |
ceb53fbf | 840 | |
61c45981 PM |
841 | return 0; |
842 | } | |
8ad8db37 | 843 | |
ac2ba9f3 RR |
844 | int parse_events_name(struct list_head *list, char *name) |
845 | { | |
846 | struct perf_evsel *evsel; | |
847 | ||
848 | list_for_each_entry(evsel, list, node) { | |
849 | if (!evsel->name) | |
850 | evsel->name = strdup(name); | |
851 | } | |
852 | ||
853 | return 0; | |
854 | } | |
855 | ||
50e200f0 AK |
856 | static int parse_events__scanner(const char *str, void *data, int start_token); |
857 | ||
858 | static int parse_events_fixup(int ret, const char *str, void *data, | |
859 | int start_token) | |
860 | { | |
861 | char *o = strdup(str); | |
862 | char *s = NULL; | |
863 | char *t = o; | |
864 | char *p; | |
865 | int len = 0; | |
866 | ||
867 | if (!o) | |
868 | return ret; | |
869 | while ((p = strsep(&t, ",")) != NULL) { | |
870 | if (s) | |
871 | str_append(&s, &len, ","); | |
872 | str_append(&s, &len, "cpu/"); | |
873 | str_append(&s, &len, p); | |
874 | str_append(&s, &len, "/"); | |
875 | } | |
876 | free(o); | |
877 | if (!s) | |
878 | return -ENOMEM; | |
879 | return parse_events__scanner(s, data, start_token); | |
880 | } | |
881 | ||
90e2b22d | 882 | static int parse_events__scanner(const char *str, void *data, int start_token) |
61c45981 | 883 | { |
89812fc8 | 884 | YY_BUFFER_STATE buffer; |
ac20de6f | 885 | void *scanner; |
46010ab2 | 886 | int ret; |
bcd3279f | 887 | |
90e2b22d | 888 | ret = parse_events_lex_init_extra(start_token, &scanner); |
ac20de6f ZY |
889 | if (ret) |
890 | return ret; | |
891 | ||
892 | buffer = parse_events__scan_string(str, scanner); | |
a21ca2ca | 893 | |
82ba1f2f JO |
894 | #ifdef PARSER_DEBUG |
895 | parse_events_debug = 1; | |
896 | #endif | |
ac20de6f ZY |
897 | ret = parse_events_parse(data, scanner); |
898 | ||
899 | parse_events__flush_buffer(buffer, scanner); | |
900 | parse_events__delete_buffer(buffer, scanner); | |
901 | parse_events_lex_destroy(scanner); | |
50e200f0 AK |
902 | if (ret && !strchr(str, '/')) |
903 | ret = parse_events_fixup(ret, str, data, start_token); | |
ac20de6f ZY |
904 | return ret; |
905 | } | |
bcd3279f | 906 | |
90e2b22d JO |
907 | /* |
908 | * parse event config string, return a list of event terms. | |
909 | */ | |
910 | int parse_events_terms(struct list_head *terms, const char *str) | |
911 | { | |
23b6339b | 912 | struct parse_events_terms data = { |
90e2b22d JO |
913 | .terms = NULL, |
914 | }; | |
915 | int ret; | |
916 | ||
917 | ret = parse_events__scanner(str, &data, PE_START_TERMS); | |
918 | if (!ret) { | |
919 | list_splice(data.terms, terms); | |
74cf249d | 920 | zfree(&data.terms); |
90e2b22d JO |
921 | return 0; |
922 | } | |
923 | ||
b2c34fde AH |
924 | if (data.terms) |
925 | parse_events__free_terms(data.terms); | |
90e2b22d JO |
926 | return ret; |
927 | } | |
928 | ||
d8f7bbc9 | 929 | int parse_events(struct perf_evlist *evlist, const char *str) |
ac20de6f | 930 | { |
23b6339b | 931 | struct parse_events_evlist data = { |
ac20de6f ZY |
932 | .list = LIST_HEAD_INIT(data.list), |
933 | .idx = evlist->nr_entries, | |
934 | }; | |
935 | int ret; | |
bcd3279f | 936 | |
90e2b22d | 937 | ret = parse_events__scanner(str, &data, PE_START_EVENTS); |
89812fc8 | 938 | if (!ret) { |
46010ab2 JO |
939 | int entries = data.idx - evlist->nr_entries; |
940 | perf_evlist__splice_list_tail(evlist, &data.list, entries); | |
97f63e4a | 941 | evlist->nr_groups += data.nr_groups; |
89812fc8 JO |
942 | return 0; |
943 | } | |
bcd3279f | 944 | |
5d7be90e JO |
945 | /* |
946 | * There are 2 users - builtin-record and builtin-test objects. | |
947 | * Both call perf_evlist__delete in case of error, so we dont | |
948 | * need to bother. | |
949 | */ | |
bcd3279f | 950 | return ret; |
8ad8db37 IM |
951 | } |
952 | ||
f120f9d5 | 953 | int parse_events_option(const struct option *opt, const char *str, |
1d037ca1 | 954 | int unset __maybe_unused) |
f120f9d5 JO |
955 | { |
956 | struct perf_evlist *evlist = *(struct perf_evlist **)opt->value; | |
d8f7bbc9 | 957 | int ret = parse_events(evlist, str); |
9175ce1f AK |
958 | |
959 | if (ret) { | |
960 | fprintf(stderr, "invalid or unsupported event: '%s'\n", str); | |
961 | fprintf(stderr, "Run 'perf list' for a list of valid events\n"); | |
962 | } | |
963 | return ret; | |
f120f9d5 JO |
964 | } |
965 | ||
361c99a6 | 966 | int parse_filter(const struct option *opt, const char *str, |
1d037ca1 | 967 | int unset __maybe_unused) |
c171b552 | 968 | { |
361c99a6 | 969 | struct perf_evlist *evlist = *(struct perf_evlist **)opt->value; |
69aad6f1 | 970 | struct perf_evsel *last = NULL; |
c171b552 | 971 | |
361c99a6 | 972 | if (evlist->nr_entries > 0) |
0c21f736 | 973 | last = perf_evlist__last(evlist); |
69aad6f1 ACM |
974 | |
975 | if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) { | |
c171b552 LZ |
976 | fprintf(stderr, |
977 | "-F option should follow a -e tracepoint option\n"); | |
978 | return -1; | |
979 | } | |
980 | ||
69aad6f1 ACM |
981 | last->filter = strdup(str); |
982 | if (last->filter == NULL) { | |
c171b552 LZ |
983 | fprintf(stderr, "not enough memory to hold filter string\n"); |
984 | return -1; | |
985 | } | |
c171b552 LZ |
986 | |
987 | return 0; | |
988 | } | |
989 | ||
86847b62 | 990 | static const char * const event_type_descriptors[] = { |
86847b62 TG |
991 | "Hardware event", |
992 | "Software event", | |
993 | "Tracepoint event", | |
994 | "Hardware cache event", | |
41bdcb23 LW |
995 | "Raw hardware event descriptor", |
996 | "Hardware breakpoint", | |
86847b62 TG |
997 | }; |
998 | ||
f6bdafef JB |
999 | /* |
1000 | * Print the events from <debugfs_mount_point>/tracing/events | |
1001 | */ | |
1002 | ||
a3277d2d FW |
1003 | void print_tracepoint_events(const char *subsys_glob, const char *event_glob, |
1004 | bool name_only) | |
f6bdafef JB |
1005 | { |
1006 | DIR *sys_dir, *evt_dir; | |
1007 | struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent; | |
f6bdafef | 1008 | char evt_path[MAXPATHLEN]; |
725b1368 | 1009 | char dir_path[MAXPATHLEN]; |
f6bdafef | 1010 | |
f11cfc6f PE |
1011 | if (debugfs_valid_mountpoint(tracing_events_path)) { |
1012 | printf(" [ Tracepoints not available: %s ]\n", strerror(errno)); | |
f6bdafef | 1013 | return; |
f11cfc6f | 1014 | } |
f6bdafef | 1015 | |
ebf294bf | 1016 | sys_dir = opendir(tracing_events_path); |
f6bdafef | 1017 | if (!sys_dir) |
725b1368 | 1018 | return; |
6b58e7f1 UD |
1019 | |
1020 | for_each_subsystem(sys_dir, sys_dirent, sys_next) { | |
668b8788 ACM |
1021 | if (subsys_glob != NULL && |
1022 | !strglobmatch(sys_dirent.d_name, subsys_glob)) | |
1023 | continue; | |
725b1368 | 1024 | |
ebf294bf | 1025 | snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path, |
725b1368 ED |
1026 | sys_dirent.d_name); |
1027 | evt_dir = opendir(dir_path); | |
1028 | if (!evt_dir) | |
6b58e7f1 | 1029 | continue; |
725b1368 | 1030 | |
6b58e7f1 | 1031 | for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) { |
668b8788 ACM |
1032 | if (event_glob != NULL && |
1033 | !strglobmatch(evt_dirent.d_name, event_glob)) | |
1034 | continue; | |
1035 | ||
a3277d2d FW |
1036 | if (name_only) { |
1037 | printf("%s:%s ", sys_dirent.d_name, evt_dirent.d_name); | |
1038 | continue; | |
1039 | } | |
1040 | ||
f6bdafef JB |
1041 | snprintf(evt_path, MAXPATHLEN, "%s:%s", |
1042 | sys_dirent.d_name, evt_dirent.d_name); | |
947b4ad1 | 1043 | printf(" %-50s [%s]\n", evt_path, |
41bdcb23 | 1044 | event_type_descriptors[PERF_TYPE_TRACEPOINT]); |
f6bdafef JB |
1045 | } |
1046 | closedir(evt_dir); | |
1047 | } | |
f6bdafef JB |
1048 | closedir(sys_dir); |
1049 | } | |
1050 | ||
20c457b8 TR |
1051 | /* |
1052 | * Check whether event is in <debugfs_mount_point>/tracing/events | |
1053 | */ | |
1054 | ||
1055 | int is_valid_tracepoint(const char *event_string) | |
1056 | { | |
1057 | DIR *sys_dir, *evt_dir; | |
1058 | struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent; | |
1059 | char evt_path[MAXPATHLEN]; | |
1060 | char dir_path[MAXPATHLEN]; | |
1061 | ||
ebf294bf | 1062 | if (debugfs_valid_mountpoint(tracing_events_path)) |
20c457b8 TR |
1063 | return 0; |
1064 | ||
ebf294bf | 1065 | sys_dir = opendir(tracing_events_path); |
20c457b8 TR |
1066 | if (!sys_dir) |
1067 | return 0; | |
1068 | ||
1069 | for_each_subsystem(sys_dir, sys_dirent, sys_next) { | |
1070 | ||
ebf294bf | 1071 | snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path, |
20c457b8 TR |
1072 | sys_dirent.d_name); |
1073 | evt_dir = opendir(dir_path); | |
1074 | if (!evt_dir) | |
1075 | continue; | |
1076 | ||
1077 | for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) { | |
1078 | snprintf(evt_path, MAXPATHLEN, "%s:%s", | |
1079 | sys_dirent.d_name, evt_dirent.d_name); | |
1080 | if (!strcmp(evt_path, event_string)) { | |
1081 | closedir(evt_dir); | |
1082 | closedir(sys_dir); | |
1083 | return 1; | |
1084 | } | |
1085 | } | |
1086 | closedir(evt_dir); | |
1087 | } | |
1088 | closedir(sys_dir); | |
1089 | return 0; | |
1090 | } | |
1091 | ||
b41f1cec NK |
1092 | static bool is_event_supported(u8 type, unsigned config) |
1093 | { | |
1094 | bool ret = true; | |
1095 | struct perf_evsel *evsel; | |
1096 | struct perf_event_attr attr = { | |
1097 | .type = type, | |
1098 | .config = config, | |
1099 | .disabled = 1, | |
1100 | .exclude_kernel = 1, | |
1101 | }; | |
1102 | struct { | |
1103 | struct thread_map map; | |
1104 | int threads[1]; | |
1105 | } tmap = { | |
1106 | .map.nr = 1, | |
1107 | .threads = { 0 }, | |
1108 | }; | |
1109 | ||
ef503831 | 1110 | evsel = perf_evsel__new(&attr); |
b41f1cec NK |
1111 | if (evsel) { |
1112 | ret = perf_evsel__open(evsel, NULL, &tmap.map) >= 0; | |
1113 | perf_evsel__delete(evsel); | |
1114 | } | |
1115 | ||
1116 | return ret; | |
1117 | } | |
1118 | ||
1dc12760 JO |
1119 | static void __print_events_type(u8 type, struct event_symbol *syms, |
1120 | unsigned max) | |
668b8788 | 1121 | { |
668b8788 | 1122 | char name[64]; |
1dc12760 | 1123 | unsigned i; |
668b8788 | 1124 | |
1dc12760 | 1125 | for (i = 0; i < max ; i++, syms++) { |
b41f1cec NK |
1126 | if (!is_event_supported(type, i)) |
1127 | continue; | |
1128 | ||
668b8788 ACM |
1129 | if (strlen(syms->alias)) |
1130 | snprintf(name, sizeof(name), "%s OR %s", | |
1131 | syms->symbol, syms->alias); | |
1132 | else | |
1133 | snprintf(name, sizeof(name), "%s", syms->symbol); | |
1134 | ||
b41f1cec | 1135 | printf(" %-50s [%s]\n", name, event_type_descriptors[type]); |
668b8788 ACM |
1136 | } |
1137 | } | |
1138 | ||
1dc12760 JO |
1139 | void print_events_type(u8 type) |
1140 | { | |
1141 | if (type == PERF_TYPE_SOFTWARE) | |
1142 | __print_events_type(type, event_symbols_sw, PERF_COUNT_SW_MAX); | |
1143 | else | |
1144 | __print_events_type(type, event_symbols_hw, PERF_COUNT_HW_MAX); | |
1145 | } | |
1146 | ||
a3277d2d | 1147 | int print_hwcache_events(const char *event_glob, bool name_only) |
668b8788 ACM |
1148 | { |
1149 | unsigned int type, op, i, printed = 0; | |
0b668bc9 | 1150 | char name[64]; |
668b8788 ACM |
1151 | |
1152 | for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) { | |
1153 | for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) { | |
1154 | /* skip invalid cache type */ | |
0b668bc9 | 1155 | if (!perf_evsel__is_cache_op_valid(type, op)) |
668b8788 ACM |
1156 | continue; |
1157 | ||
1158 | for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) { | |
0b668bc9 ACM |
1159 | __perf_evsel__hw_cache_type_op_res_name(type, op, i, |
1160 | name, sizeof(name)); | |
947b4ad1 | 1161 | if (event_glob != NULL && !strglobmatch(name, event_glob)) |
668b8788 ACM |
1162 | continue; |
1163 | ||
b41f1cec NK |
1164 | if (!is_event_supported(PERF_TYPE_HW_CACHE, |
1165 | type | (op << 8) | (i << 16))) | |
1166 | continue; | |
1167 | ||
a3277d2d FW |
1168 | if (name_only) |
1169 | printf("%s ", name); | |
1170 | else | |
1171 | printf(" %-50s [%s]\n", name, | |
1172 | event_type_descriptors[PERF_TYPE_HW_CACHE]); | |
668b8788 ACM |
1173 | ++printed; |
1174 | } | |
1175 | } | |
1176 | } | |
1177 | ||
dc098b35 AK |
1178 | if (printed) |
1179 | printf("\n"); | |
668b8788 ACM |
1180 | return printed; |
1181 | } | |
1182 | ||
1dc12760 | 1183 | static void print_symbol_events(const char *event_glob, unsigned type, |
a3277d2d FW |
1184 | struct event_symbol *syms, unsigned max, |
1185 | bool name_only) | |
8ad8db37 | 1186 | { |
1dc12760 | 1187 | unsigned i, printed = 0; |
947b4ad1 | 1188 | char name[MAX_NAME_LEN]; |
8ad8db37 | 1189 | |
1dc12760 | 1190 | for (i = 0; i < max; i++, syms++) { |
668b8788 ACM |
1191 | |
1192 | if (event_glob != NULL && | |
1193 | !(strglobmatch(syms->symbol, event_glob) || | |
1194 | (syms->alias && strglobmatch(syms->alias, event_glob)))) | |
1195 | continue; | |
8ad8db37 | 1196 | |
b41f1cec NK |
1197 | if (!is_event_supported(type, i)) |
1198 | continue; | |
1199 | ||
a3277d2d FW |
1200 | if (name_only) { |
1201 | printf("%s ", syms->symbol); | |
1202 | continue; | |
1203 | } | |
1204 | ||
74d5b588 | 1205 | if (strlen(syms->alias)) |
947b4ad1 | 1206 | snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias); |
74d5b588 | 1207 | else |
947b4ad1 | 1208 | strncpy(name, syms->symbol, MAX_NAME_LEN); |
8ad8db37 | 1209 | |
1dc12760 JO |
1210 | printf(" %-50s [%s]\n", name, event_type_descriptors[type]); |
1211 | ||
1212 | printed++; | |
8ad8db37 IM |
1213 | } |
1214 | ||
1dc12760 | 1215 | if (printed) |
668b8788 | 1216 | printf("\n"); |
1dc12760 JO |
1217 | } |
1218 | ||
1219 | /* | |
1220 | * Print the help text for the event symbols: | |
1221 | */ | |
a3277d2d | 1222 | void print_events(const char *event_glob, bool name_only) |
1dc12760 | 1223 | { |
a3277d2d FW |
1224 | if (!name_only) { |
1225 | printf("\n"); | |
1226 | printf("List of pre-defined events (to be used in -e):\n"); | |
1227 | } | |
1dc12760 JO |
1228 | |
1229 | print_symbol_events(event_glob, PERF_TYPE_HARDWARE, | |
a3277d2d | 1230 | event_symbols_hw, PERF_COUNT_HW_MAX, name_only); |
1dc12760 JO |
1231 | |
1232 | print_symbol_events(event_glob, PERF_TYPE_SOFTWARE, | |
a3277d2d | 1233 | event_symbols_sw, PERF_COUNT_SW_MAX, name_only); |
1dc12760 | 1234 | |
a3277d2d | 1235 | print_hwcache_events(event_glob, name_only); |
668b8788 | 1236 | |
dc098b35 AK |
1237 | print_pmu_events(event_glob, name_only); |
1238 | ||
668b8788 ACM |
1239 | if (event_glob != NULL) |
1240 | return; | |
73c24cb8 | 1241 | |
a3277d2d | 1242 | if (!name_only) { |
a3277d2d FW |
1243 | printf(" %-50s [%s]\n", |
1244 | "rNNN", | |
1245 | event_type_descriptors[PERF_TYPE_RAW]); | |
1246 | printf(" %-50s [%s]\n", | |
1247 | "cpu/t1=v1[,t2=v2,t3 ...]/modifier", | |
1248 | event_type_descriptors[PERF_TYPE_RAW]); | |
af3df2cf | 1249 | printf(" (see 'man perf-list' on how to encode it)\n"); |
a3277d2d FW |
1250 | printf("\n"); |
1251 | ||
1252 | printf(" %-50s [%s]\n", | |
1253 | "mem:<addr>[:access]", | |
41bdcb23 | 1254 | event_type_descriptors[PERF_TYPE_BREAKPOINT]); |
a3277d2d FW |
1255 | printf("\n"); |
1256 | } | |
1b290d67 | 1257 | |
a3277d2d | 1258 | print_tracepoint_events(NULL, NULL, name_only); |
8ad8db37 | 1259 | } |
8f707d84 | 1260 | |
6cee6cd3 | 1261 | int parse_events__is_hardcoded_term(struct parse_events_term *term) |
8f707d84 | 1262 | { |
16fa7e82 | 1263 | return term->type_term != PARSE_EVENTS__TERM_TYPE_USER; |
8f707d84 JO |
1264 | } |
1265 | ||
6cee6cd3 | 1266 | static int new_term(struct parse_events_term **_term, int type_val, |
16fa7e82 | 1267 | int type_term, char *config, |
b527bab5 | 1268 | char *str, u64 num) |
8f707d84 | 1269 | { |
6cee6cd3 | 1270 | struct parse_events_term *term; |
8f707d84 JO |
1271 | |
1272 | term = zalloc(sizeof(*term)); | |
1273 | if (!term) | |
1274 | return -ENOMEM; | |
1275 | ||
1276 | INIT_LIST_HEAD(&term->list); | |
16fa7e82 JO |
1277 | term->type_val = type_val; |
1278 | term->type_term = type_term; | |
8f707d84 JO |
1279 | term->config = config; |
1280 | ||
16fa7e82 | 1281 | switch (type_val) { |
8f707d84 JO |
1282 | case PARSE_EVENTS__TERM_TYPE_NUM: |
1283 | term->val.num = num; | |
1284 | break; | |
1285 | case PARSE_EVENTS__TERM_TYPE_STR: | |
1286 | term->val.str = str; | |
1287 | break; | |
1288 | default: | |
4be8be6b | 1289 | free(term); |
8f707d84 JO |
1290 | return -EINVAL; |
1291 | } | |
1292 | ||
1293 | *_term = term; | |
1294 | return 0; | |
1295 | } | |
1296 | ||
6cee6cd3 | 1297 | int parse_events_term__num(struct parse_events_term **term, |
b527bab5 | 1298 | int type_term, char *config, u64 num) |
16fa7e82 JO |
1299 | { |
1300 | return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term, | |
1301 | config, NULL, num); | |
1302 | } | |
1303 | ||
6cee6cd3 | 1304 | int parse_events_term__str(struct parse_events_term **term, |
16fa7e82 JO |
1305 | int type_term, char *config, char *str) |
1306 | { | |
1307 | return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term, | |
1308 | config, str, 0); | |
1309 | } | |
1310 | ||
6cee6cd3 | 1311 | int parse_events_term__sym_hw(struct parse_events_term **term, |
1d33d6dc JO |
1312 | char *config, unsigned idx) |
1313 | { | |
1314 | struct event_symbol *sym; | |
1315 | ||
1316 | BUG_ON(idx >= PERF_COUNT_HW_MAX); | |
1317 | sym = &event_symbols_hw[idx]; | |
1318 | ||
1319 | if (config) | |
1320 | return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, | |
1321 | PARSE_EVENTS__TERM_TYPE_USER, config, | |
1322 | (char *) sym->symbol, 0); | |
1323 | else | |
1324 | return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, | |
1325 | PARSE_EVENTS__TERM_TYPE_USER, | |
1326 | (char *) "event", (char *) sym->symbol, 0); | |
1327 | } | |
1328 | ||
6cee6cd3 ACM |
1329 | int parse_events_term__clone(struct parse_events_term **new, |
1330 | struct parse_events_term *term) | |
a6146d50 ZY |
1331 | { |
1332 | return new_term(new, term->type_val, term->type_term, term->config, | |
1333 | term->val.str, term->val.num); | |
1334 | } | |
1335 | ||
8f707d84 JO |
1336 | void parse_events__free_terms(struct list_head *terms) |
1337 | { | |
6cee6cd3 | 1338 | struct parse_events_term *term, *h; |
8f707d84 JO |
1339 | |
1340 | list_for_each_entry_safe(term, h, terms, list) | |
1341 | free(term); | |
8f707d84 | 1342 | } |