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