perf hists: Resort hist entries using group members for output
[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
f35488f9
JO
383static int add_tracepoint_multi_event(struct list_head **list, int *idx,
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
0bd3f084 411 closedir(evt_dir);
89812fc8 412 return ret;
bcd3279f
FW
413}
414
f35488f9
JO
415static int add_tracepoint_event(struct list_head **list, int *idx,
416 char *sys_name, char *evt_name)
417{
418 return strpbrk(evt_name, "*?") ?
419 add_tracepoint_multi_event(list, idx, sys_name, evt_name) :
420 add_tracepoint(list, idx, sys_name, evt_name);
421}
422
423static int add_tracepoint_multi_sys(struct list_head **list, int *idx,
424 char *sys_name, char *evt_name)
425{
426 struct dirent *events_ent;
427 DIR *events_dir;
428 int ret = 0;
429
430 events_dir = opendir(tracing_events_path);
431 if (!events_dir) {
432 perror("Can't open event dir");
433 return -1;
434 }
435
436 while (!ret && (events_ent = readdir(events_dir))) {
437 if (!strcmp(events_ent->d_name, ".")
438 || !strcmp(events_ent->d_name, "..")
439 || !strcmp(events_ent->d_name, "enable")
440 || !strcmp(events_ent->d_name, "header_event")
441 || !strcmp(events_ent->d_name, "header_page"))
442 continue;
443
444 if (!strglobmatch(events_ent->d_name, sys_name))
445 continue;
446
447 ret = add_tracepoint_event(list, idx, events_ent->d_name,
448 evt_name);
449 }
450
451 closedir(events_dir);
452 return ret;
453}
454
b847cbdc 455int parse_events_add_tracepoint(struct list_head **list, int *idx,
89812fc8 456 char *sys, char *event)
f6bdafef 457{
89812fc8 458 int ret;
f6bdafef 459
89812fc8
JO
460 ret = debugfs_valid_mountpoint(tracing_events_path);
461 if (ret)
462 return ret;
f6bdafef 463
f35488f9
JO
464 if (strpbrk(sys, "*?"))
465 return add_tracepoint_multi_sys(list, idx, sys, event);
466 else
467 return add_tracepoint_event(list, idx, sys, event);
f6bdafef
JB
468}
469
89812fc8
JO
470static int
471parse_breakpoint_type(const char *type, struct perf_event_attr *attr)
1b290d67
FW
472{
473 int i;
474
475 for (i = 0; i < 3; i++) {
89812fc8 476 if (!type || !type[i])
1b290d67
FW
477 break;
478
7582732f
JO
479#define CHECK_SET_TYPE(bit) \
480do { \
481 if (attr->bp_type & bit) \
482 return -EINVAL; \
483 else \
484 attr->bp_type |= bit; \
485} while (0)
486
1b290d67
FW
487 switch (type[i]) {
488 case 'r':
7582732f 489 CHECK_SET_TYPE(HW_BREAKPOINT_R);
1b290d67
FW
490 break;
491 case 'w':
7582732f 492 CHECK_SET_TYPE(HW_BREAKPOINT_W);
1b290d67
FW
493 break;
494 case 'x':
7582732f 495 CHECK_SET_TYPE(HW_BREAKPOINT_X);
1b290d67
FW
496 break;
497 default:
89812fc8 498 return -EINVAL;
1b290d67
FW
499 }
500 }
89812fc8 501
7582732f
JO
502#undef CHECK_SET_TYPE
503
1b290d67
FW
504 if (!attr->bp_type) /* Default */
505 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
506
89812fc8 507 return 0;
1b290d67
FW
508}
509
b847cbdc 510int parse_events_add_breakpoint(struct list_head **list, int *idx,
89812fc8 511 void *ptr, char *type)
1b290d67 512{
89812fc8 513 struct perf_event_attr attr;
1b290d67 514
89812fc8 515 memset(&attr, 0, sizeof(attr));
9fafd98f 516 attr.bp_addr = (unsigned long) ptr;
1b290d67 517
89812fc8
JO
518 if (parse_breakpoint_type(type, &attr))
519 return -EINVAL;
1b290d67 520
aa59a485
FW
521 /*
522 * We should find a nice way to override the access length
523 * Provide some defaults for now
524 */
89812fc8
JO
525 if (attr.bp_type == HW_BREAKPOINT_X)
526 attr.bp_len = sizeof(long);
aa59a485 527 else
89812fc8 528 attr.bp_len = HW_BREAKPOINT_LEN_4;
61c45981 529
89812fc8 530 attr.type = PERF_TYPE_BREAKPOINT;
4a841d65 531 attr.sample_period = 1;
b908debd 532
287e74aa 533 return add_event(list, idx, &attr, NULL);
74d5b588
JSR
534}
535
8f707d84 536static int config_term(struct perf_event_attr *attr,
6cee6cd3 537 struct parse_events_term *term)
8f707d84 538{
16fa7e82
JO
539#define CHECK_TYPE_VAL(type) \
540do { \
541 if (PARSE_EVENTS__TERM_TYPE_ ## type != term->type_val) \
542 return -EINVAL; \
543} while (0)
544
545 switch (term->type_term) {
8f707d84 546 case PARSE_EVENTS__TERM_TYPE_CONFIG:
16fa7e82 547 CHECK_TYPE_VAL(NUM);
8f707d84
JO
548 attr->config = term->val.num;
549 break;
550 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
16fa7e82 551 CHECK_TYPE_VAL(NUM);
8f707d84
JO
552 attr->config1 = term->val.num;
553 break;
554 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
16fa7e82 555 CHECK_TYPE_VAL(NUM);
8f707d84
JO
556 attr->config2 = term->val.num;
557 break;
558 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
16fa7e82 559 CHECK_TYPE_VAL(NUM);
8f707d84
JO
560 attr->sample_period = term->val.num;
561 break;
562 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
563 /*
564 * TODO uncomment when the field is available
565 * attr->branch_sample_type = term->val.num;
566 */
567 break;
6b5fc39b
JO
568 case PARSE_EVENTS__TERM_TYPE_NAME:
569 CHECK_TYPE_VAL(STR);
570 break;
8f707d84
JO
571 default:
572 return -EINVAL;
573 }
16fa7e82 574
8f707d84 575 return 0;
16fa7e82 576#undef CHECK_TYPE_VAL
8f707d84
JO
577}
578
579static int config_attr(struct perf_event_attr *attr,
580 struct list_head *head, int fail)
581{
6cee6cd3 582 struct parse_events_term *term;
8f707d84
JO
583
584 list_for_each_entry(term, head, list)
585 if (config_term(attr, term) && fail)
586 return -EINVAL;
587
588 return 0;
589}
590
b847cbdc 591int parse_events_add_numeric(struct list_head **list, int *idx,
b527bab5 592 u32 type, u64 config,
8f707d84 593 struct list_head *head_config)
8ad8db37 594{
89812fc8 595 struct perf_event_attr attr;
61c45981 596
89812fc8
JO
597 memset(&attr, 0, sizeof(attr));
598 attr.type = type;
599 attr.config = config;
8f707d84
JO
600
601 if (head_config &&
602 config_attr(&attr, head_config, 1))
603 return -EINVAL;
604
9db1763c 605 return add_event(list, idx, &attr, NULL);
61c45981 606}
8ad8db37 607
6cee6cd3 608static int parse_events__is_name_term(struct parse_events_term *term)
6b5fc39b
JO
609{
610 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
611}
612
9db1763c 613static char *pmu_event_name(struct list_head *head_terms)
6b5fc39b 614{
6cee6cd3 615 struct parse_events_term *term;
6b5fc39b
JO
616
617 list_for_each_entry(term, head_terms, list)
618 if (parse_events__is_name_term(term))
619 return term->val.str;
620
9db1763c 621 return NULL;
6b5fc39b
JO
622}
623
b847cbdc 624int parse_events_add_pmu(struct list_head **list, int *idx,
5f537a26
JO
625 char *name, struct list_head *head_config)
626{
627 struct perf_event_attr attr;
628 struct perf_pmu *pmu;
629
630 pmu = perf_pmu__find(name);
631 if (!pmu)
632 return -EINVAL;
633
634 memset(&attr, 0, sizeof(attr));
635
a6146d50
ZY
636 if (perf_pmu__check_alias(pmu, head_config))
637 return -EINVAL;
638
5f537a26
JO
639 /*
640 * Configure hardcoded terms first, no need to check
641 * return value when called with fail == 0 ;)
642 */
643 config_attr(&attr, head_config, 0);
644
645 if (perf_pmu__config(pmu, &attr, head_config))
646 return -EINVAL;
647
7ae92e74
YZ
648 return __add_event(list, idx, &attr, pmu_event_name(head_config),
649 pmu->cpus);
5f537a26
JO
650}
651
6a4bb04c
JO
652int parse_events__modifier_group(struct list_head *list,
653 char *event_mod)
89efb029 654{
6a4bb04c
JO
655 return parse_events__modifier_event(list, event_mod, true);
656}
657
63dab225 658void parse_events__set_leader(char *name, struct list_head *list)
6a4bb04c
JO
659{
660 struct perf_evsel *leader;
661
63dab225
ACM
662 __perf_evlist__set_leader(list);
663 leader = list_entry(list->next, struct perf_evsel, node);
6a4bb04c 664 leader->group_name = name ? strdup(name) : NULL;
89efb029
JO
665}
666
5d7be90e
JO
667void parse_events_update_lists(struct list_head *list_event,
668 struct list_head *list_all)
669{
670 /*
671 * Called for single event definition. Update the
89efb029 672 * 'all event' list, and reinit the 'single event'
5d7be90e
JO
673 * list, for next event definition.
674 */
675 list_splice_tail(list_event, list_all);
b847cbdc 676 free(list_event);
5d7be90e
JO
677}
678
f5b1135b
JO
679struct event_modifier {
680 int eu;
681 int ek;
682 int eh;
683 int eH;
684 int eG;
685 int precise;
686 int exclude_GH;
687};
688
689static int get_event_modifier(struct event_modifier *mod, char *str,
690 struct perf_evsel *evsel)
61c45981 691{
f5b1135b
JO
692 int eu = evsel ? evsel->attr.exclude_user : 0;
693 int ek = evsel ? evsel->attr.exclude_kernel : 0;
694 int eh = evsel ? evsel->attr.exclude_hv : 0;
695 int eH = evsel ? evsel->attr.exclude_host : 0;
696 int eG = evsel ? evsel->attr.exclude_guest : 0;
697 int precise = evsel ? evsel->attr.precise_ip : 0;
a21ca2ca 698
f5b1135b
JO
699 int exclude = eu | ek | eh;
700 int exclude_GH = evsel ? evsel->exclude_GH : 0;
701
702 /*
703 * We are here for group and 'GH' was not set as event
704 * modifier and whatever event/group modifier override
705 * default 'GH' setup.
706 */
707 if (evsel && !exclude_GH)
708 eH = eG = 0;
709
710 memset(mod, 0, sizeof(*mod));
ceb53fbf 711
61c45981 712 while (*str) {
ab608344
PZ
713 if (*str == 'u') {
714 if (!exclude)
715 exclude = eu = ek = eh = 1;
61c45981 716 eu = 0;
ab608344
PZ
717 } else if (*str == 'k') {
718 if (!exclude)
719 exclude = eu = ek = eh = 1;
61c45981 720 ek = 0;
ab608344
PZ
721 } else if (*str == 'h') {
722 if (!exclude)
723 exclude = eu = ek = eh = 1;
61c45981 724 eh = 0;
99320cc8
JR
725 } else if (*str == 'G') {
726 if (!exclude_GH)
727 exclude_GH = eG = eH = 1;
728 eG = 0;
729 } else if (*str == 'H') {
730 if (!exclude_GH)
731 exclude_GH = eG = eH = 1;
732 eH = 0;
ab608344
PZ
733 } else if (*str == 'p') {
734 precise++;
1342798c
DA
735 /* use of precise requires exclude_guest */
736 if (!exclude_GH)
737 eG = 1;
ab608344 738 } else
61c45981 739 break;
ab608344 740
61c45981 741 ++str;
5242519b 742 }
ceb53fbf 743
89812fc8
JO
744 /*
745 * precise ip:
746 *
747 * 0 - SAMPLE_IP can have arbitrary skid
748 * 1 - SAMPLE_IP must have constant skid
749 * 2 - SAMPLE_IP requested to have 0 skid
750 * 3 - SAMPLE_IP must have 0 skid
751 *
752 * See also PERF_RECORD_MISC_EXACT_IP
753 */
754 if (precise > 3)
755 return -EINVAL;
ceb53fbf 756
f5b1135b
JO
757 mod->eu = eu;
758 mod->ek = ek;
759 mod->eh = eh;
760 mod->eH = eH;
761 mod->eG = eG;
762 mod->precise = precise;
763 mod->exclude_GH = exclude_GH;
764 return 0;
765}
766
534123f4
JO
767/*
768 * Basic modifier sanity check to validate it contains only one
769 * instance of any modifier (apart from 'p') present.
770 */
771static int check_modifier(char *str)
772{
773 char *p = str;
774
775 /* The sizeof includes 0 byte as well. */
776 if (strlen(str) > (sizeof("ukhGHppp") - 1))
777 return -1;
778
779 while (*p) {
780 if (*p != 'p' && strchr(p + 1, *p))
781 return -1;
782 p++;
783 }
784
785 return 0;
786}
787
f5b1135b
JO
788int parse_events__modifier_event(struct list_head *list, char *str, bool add)
789{
790 struct perf_evsel *evsel;
791 struct event_modifier mod;
792
793 if (str == NULL)
794 return 0;
795
534123f4
JO
796 if (check_modifier(str))
797 return -EINVAL;
798
f5b1135b
JO
799 if (!add && get_event_modifier(&mod, str, NULL))
800 return -EINVAL;
801
89812fc8 802 list_for_each_entry(evsel, list, node) {
f5b1135b
JO
803
804 if (add && get_event_modifier(&mod, str, evsel))
805 return -EINVAL;
806
807 evsel->attr.exclude_user = mod.eu;
808 evsel->attr.exclude_kernel = mod.ek;
809 evsel->attr.exclude_hv = mod.eh;
810 evsel->attr.precise_ip = mod.precise;
811 evsel->attr.exclude_host = mod.eH;
812 evsel->attr.exclude_guest = mod.eG;
813 evsel->exclude_GH = mod.exclude_GH;
89812fc8 814 }
ceb53fbf 815
61c45981
PM
816 return 0;
817}
8ad8db37 818
ac2ba9f3
RR
819int parse_events_name(struct list_head *list, char *name)
820{
821 struct perf_evsel *evsel;
822
823 list_for_each_entry(evsel, list, node) {
824 if (!evsel->name)
825 evsel->name = strdup(name);
826 }
827
828 return 0;
829}
830
90e2b22d 831static int parse_events__scanner(const char *str, void *data, int start_token)
61c45981 832{
89812fc8 833 YY_BUFFER_STATE buffer;
ac20de6f 834 void *scanner;
46010ab2 835 int ret;
bcd3279f 836
90e2b22d 837 ret = parse_events_lex_init_extra(start_token, &scanner);
ac20de6f
ZY
838 if (ret)
839 return ret;
840
841 buffer = parse_events__scan_string(str, scanner);
a21ca2ca 842
82ba1f2f
JO
843#ifdef PARSER_DEBUG
844 parse_events_debug = 1;
845#endif
ac20de6f
ZY
846 ret = parse_events_parse(data, scanner);
847
848 parse_events__flush_buffer(buffer, scanner);
849 parse_events__delete_buffer(buffer, scanner);
850 parse_events_lex_destroy(scanner);
851 return ret;
852}
bcd3279f 853
90e2b22d
JO
854/*
855 * parse event config string, return a list of event terms.
856 */
857int parse_events_terms(struct list_head *terms, const char *str)
858{
23b6339b 859 struct parse_events_terms data = {
90e2b22d
JO
860 .terms = NULL,
861 };
862 int ret;
863
864 ret = parse_events__scanner(str, &data, PE_START_TERMS);
865 if (!ret) {
866 list_splice(data.terms, terms);
867 free(data.terms);
868 return 0;
869 }
870
871 parse_events__free_terms(data.terms);
872 return ret;
873}
874
d8f7bbc9 875int parse_events(struct perf_evlist *evlist, const char *str)
ac20de6f 876{
23b6339b 877 struct parse_events_evlist data = {
ac20de6f
ZY
878 .list = LIST_HEAD_INIT(data.list),
879 .idx = evlist->nr_entries,
880 };
881 int ret;
bcd3279f 882
90e2b22d 883 ret = parse_events__scanner(str, &data, PE_START_EVENTS);
89812fc8 884 if (!ret) {
46010ab2
JO
885 int entries = data.idx - evlist->nr_entries;
886 perf_evlist__splice_list_tail(evlist, &data.list, entries);
97f63e4a 887 evlist->nr_groups += data.nr_groups;
89812fc8
JO
888 return 0;
889 }
bcd3279f 890
5d7be90e
JO
891 /*
892 * There are 2 users - builtin-record and builtin-test objects.
893 * Both call perf_evlist__delete in case of error, so we dont
894 * need to bother.
895 */
bcd3279f 896 return ret;
8ad8db37
IM
897}
898
f120f9d5 899int parse_events_option(const struct option *opt, const char *str,
1d037ca1 900 int unset __maybe_unused)
f120f9d5
JO
901{
902 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
d8f7bbc9 903 int ret = parse_events(evlist, str);
9175ce1f
AK
904
905 if (ret) {
906 fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
907 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
908 }
909 return ret;
f120f9d5
JO
910}
911
361c99a6 912int parse_filter(const struct option *opt, const char *str,
1d037ca1 913 int unset __maybe_unused)
c171b552 914{
361c99a6 915 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
69aad6f1 916 struct perf_evsel *last = NULL;
c171b552 917
361c99a6 918 if (evlist->nr_entries > 0)
0c21f736 919 last = perf_evlist__last(evlist);
69aad6f1
ACM
920
921 if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
c171b552
LZ
922 fprintf(stderr,
923 "-F option should follow a -e tracepoint option\n");
924 return -1;
925 }
926
69aad6f1
ACM
927 last->filter = strdup(str);
928 if (last->filter == NULL) {
c171b552
LZ
929 fprintf(stderr, "not enough memory to hold filter string\n");
930 return -1;
931 }
c171b552
LZ
932
933 return 0;
934}
935
86847b62 936static const char * const event_type_descriptors[] = {
86847b62
TG
937 "Hardware event",
938 "Software event",
939 "Tracepoint event",
940 "Hardware cache event",
41bdcb23
LW
941 "Raw hardware event descriptor",
942 "Hardware breakpoint",
86847b62
TG
943};
944
f6bdafef
JB
945/*
946 * Print the events from <debugfs_mount_point>/tracing/events
947 */
948
a3277d2d
FW
949void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
950 bool name_only)
f6bdafef
JB
951{
952 DIR *sys_dir, *evt_dir;
953 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
f6bdafef 954 char evt_path[MAXPATHLEN];
725b1368 955 char dir_path[MAXPATHLEN];
f6bdafef 956
ebf294bf 957 if (debugfs_valid_mountpoint(tracing_events_path))
f6bdafef
JB
958 return;
959
ebf294bf 960 sys_dir = opendir(tracing_events_path);
f6bdafef 961 if (!sys_dir)
725b1368 962 return;
6b58e7f1
UD
963
964 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
668b8788
ACM
965 if (subsys_glob != NULL &&
966 !strglobmatch(sys_dirent.d_name, subsys_glob))
967 continue;
725b1368 968
ebf294bf 969 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
725b1368
ED
970 sys_dirent.d_name);
971 evt_dir = opendir(dir_path);
972 if (!evt_dir)
6b58e7f1 973 continue;
725b1368 974
6b58e7f1 975 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
668b8788
ACM
976 if (event_glob != NULL &&
977 !strglobmatch(evt_dirent.d_name, event_glob))
978 continue;
979
a3277d2d
FW
980 if (name_only) {
981 printf("%s:%s ", sys_dirent.d_name, evt_dirent.d_name);
982 continue;
983 }
984
f6bdafef
JB
985 snprintf(evt_path, MAXPATHLEN, "%s:%s",
986 sys_dirent.d_name, evt_dirent.d_name);
947b4ad1 987 printf(" %-50s [%s]\n", evt_path,
41bdcb23 988 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
f6bdafef
JB
989 }
990 closedir(evt_dir);
991 }
f6bdafef
JB
992 closedir(sys_dir);
993}
994
20c457b8
TR
995/*
996 * Check whether event is in <debugfs_mount_point>/tracing/events
997 */
998
999int is_valid_tracepoint(const char *event_string)
1000{
1001 DIR *sys_dir, *evt_dir;
1002 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
1003 char evt_path[MAXPATHLEN];
1004 char dir_path[MAXPATHLEN];
1005
ebf294bf 1006 if (debugfs_valid_mountpoint(tracing_events_path))
20c457b8
TR
1007 return 0;
1008
ebf294bf 1009 sys_dir = opendir(tracing_events_path);
20c457b8
TR
1010 if (!sys_dir)
1011 return 0;
1012
1013 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
1014
ebf294bf 1015 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
20c457b8
TR
1016 sys_dirent.d_name);
1017 evt_dir = opendir(dir_path);
1018 if (!evt_dir)
1019 continue;
1020
1021 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
1022 snprintf(evt_path, MAXPATHLEN, "%s:%s",
1023 sys_dirent.d_name, evt_dirent.d_name);
1024 if (!strcmp(evt_path, event_string)) {
1025 closedir(evt_dir);
1026 closedir(sys_dir);
1027 return 1;
1028 }
1029 }
1030 closedir(evt_dir);
1031 }
1032 closedir(sys_dir);
1033 return 0;
1034}
1035
1dc12760
JO
1036static void __print_events_type(u8 type, struct event_symbol *syms,
1037 unsigned max)
668b8788 1038{
668b8788 1039 char name[64];
1dc12760 1040 unsigned i;
668b8788 1041
1dc12760 1042 for (i = 0; i < max ; i++, syms++) {
668b8788
ACM
1043 if (strlen(syms->alias))
1044 snprintf(name, sizeof(name), "%s OR %s",
1045 syms->symbol, syms->alias);
1046 else
1047 snprintf(name, sizeof(name), "%s", syms->symbol);
1048
947b4ad1 1049 printf(" %-50s [%s]\n", name,
668b8788
ACM
1050 event_type_descriptors[type]);
1051 }
1052}
1053
1dc12760
JO
1054void print_events_type(u8 type)
1055{
1056 if (type == PERF_TYPE_SOFTWARE)
1057 __print_events_type(type, event_symbols_sw, PERF_COUNT_SW_MAX);
1058 else
1059 __print_events_type(type, event_symbols_hw, PERF_COUNT_HW_MAX);
1060}
1061
a3277d2d 1062int print_hwcache_events(const char *event_glob, bool name_only)
668b8788
ACM
1063{
1064 unsigned int type, op, i, printed = 0;
0b668bc9 1065 char name[64];
668b8788
ACM
1066
1067 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
1068 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
1069 /* skip invalid cache type */
0b668bc9 1070 if (!perf_evsel__is_cache_op_valid(type, op))
668b8788
ACM
1071 continue;
1072
1073 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
0b668bc9
ACM
1074 __perf_evsel__hw_cache_type_op_res_name(type, op, i,
1075 name, sizeof(name));
947b4ad1 1076 if (event_glob != NULL && !strglobmatch(name, event_glob))
668b8788
ACM
1077 continue;
1078
a3277d2d
FW
1079 if (name_only)
1080 printf("%s ", name);
1081 else
1082 printf(" %-50s [%s]\n", name,
1083 event_type_descriptors[PERF_TYPE_HW_CACHE]);
668b8788
ACM
1084 ++printed;
1085 }
1086 }
1087 }
1088
1089 return printed;
1090}
1091
1dc12760 1092static void print_symbol_events(const char *event_glob, unsigned type,
a3277d2d
FW
1093 struct event_symbol *syms, unsigned max,
1094 bool name_only)
8ad8db37 1095{
1dc12760 1096 unsigned i, printed = 0;
947b4ad1 1097 char name[MAX_NAME_LEN];
8ad8db37 1098
1dc12760 1099 for (i = 0; i < max; i++, syms++) {
668b8788
ACM
1100
1101 if (event_glob != NULL &&
1102 !(strglobmatch(syms->symbol, event_glob) ||
1103 (syms->alias && strglobmatch(syms->alias, event_glob))))
1104 continue;
8ad8db37 1105
a3277d2d
FW
1106 if (name_only) {
1107 printf("%s ", syms->symbol);
1108 continue;
1109 }
1110
74d5b588 1111 if (strlen(syms->alias))
947b4ad1 1112 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
74d5b588 1113 else
947b4ad1 1114 strncpy(name, syms->symbol, MAX_NAME_LEN);
8ad8db37 1115
1dc12760
JO
1116 printf(" %-50s [%s]\n", name, event_type_descriptors[type]);
1117
1118 printed++;
8ad8db37
IM
1119 }
1120
1dc12760 1121 if (printed)
668b8788 1122 printf("\n");
1dc12760
JO
1123}
1124
1125/*
1126 * Print the help text for the event symbols:
1127 */
a3277d2d 1128void print_events(const char *event_glob, bool name_only)
1dc12760 1129{
a3277d2d
FW
1130 if (!name_only) {
1131 printf("\n");
1132 printf("List of pre-defined events (to be used in -e):\n");
1133 }
1dc12760
JO
1134
1135 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
a3277d2d 1136 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
1dc12760
JO
1137
1138 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
a3277d2d 1139 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
1dc12760 1140
a3277d2d 1141 print_hwcache_events(event_glob, name_only);
668b8788
ACM
1142
1143 if (event_glob != NULL)
1144 return;
73c24cb8 1145
a3277d2d
FW
1146 if (!name_only) {
1147 printf("\n");
1148 printf(" %-50s [%s]\n",
1149 "rNNN",
1150 event_type_descriptors[PERF_TYPE_RAW]);
1151 printf(" %-50s [%s]\n",
1152 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
1153 event_type_descriptors[PERF_TYPE_RAW]);
af3df2cf 1154 printf(" (see 'man perf-list' on how to encode it)\n");
a3277d2d
FW
1155 printf("\n");
1156
1157 printf(" %-50s [%s]\n",
1158 "mem:<addr>[:access]",
41bdcb23 1159 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
a3277d2d
FW
1160 printf("\n");
1161 }
1b290d67 1162
a3277d2d 1163 print_tracepoint_events(NULL, NULL, name_only);
8ad8db37 1164}
8f707d84 1165
6cee6cd3 1166int parse_events__is_hardcoded_term(struct parse_events_term *term)
8f707d84 1167{
16fa7e82 1168 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
8f707d84
JO
1169}
1170
6cee6cd3 1171static int new_term(struct parse_events_term **_term, int type_val,
16fa7e82 1172 int type_term, char *config,
b527bab5 1173 char *str, u64 num)
8f707d84 1174{
6cee6cd3 1175 struct parse_events_term *term;
8f707d84
JO
1176
1177 term = zalloc(sizeof(*term));
1178 if (!term)
1179 return -ENOMEM;
1180
1181 INIT_LIST_HEAD(&term->list);
16fa7e82
JO
1182 term->type_val = type_val;
1183 term->type_term = type_term;
8f707d84
JO
1184 term->config = config;
1185
16fa7e82 1186 switch (type_val) {
8f707d84
JO
1187 case PARSE_EVENTS__TERM_TYPE_NUM:
1188 term->val.num = num;
1189 break;
1190 case PARSE_EVENTS__TERM_TYPE_STR:
1191 term->val.str = str;
1192 break;
1193 default:
1194 return -EINVAL;
1195 }
1196
1197 *_term = term;
1198 return 0;
1199}
1200
6cee6cd3 1201int parse_events_term__num(struct parse_events_term **term,
b527bab5 1202 int type_term, char *config, u64 num)
16fa7e82
JO
1203{
1204 return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term,
1205 config, NULL, num);
1206}
1207
6cee6cd3 1208int parse_events_term__str(struct parse_events_term **term,
16fa7e82
JO
1209 int type_term, char *config, char *str)
1210{
1211 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term,
1212 config, str, 0);
1213}
1214
6cee6cd3 1215int parse_events_term__sym_hw(struct parse_events_term **term,
1d33d6dc
JO
1216 char *config, unsigned idx)
1217{
1218 struct event_symbol *sym;
1219
1220 BUG_ON(idx >= PERF_COUNT_HW_MAX);
1221 sym = &event_symbols_hw[idx];
1222
1223 if (config)
1224 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1225 PARSE_EVENTS__TERM_TYPE_USER, config,
1226 (char *) sym->symbol, 0);
1227 else
1228 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1229 PARSE_EVENTS__TERM_TYPE_USER,
1230 (char *) "event", (char *) sym->symbol, 0);
1231}
1232
6cee6cd3
ACM
1233int parse_events_term__clone(struct parse_events_term **new,
1234 struct parse_events_term *term)
a6146d50
ZY
1235{
1236 return new_term(new, term->type_val, term->type_term, term->config,
1237 term->val.str, term->val.num);
1238}
1239
8f707d84
JO
1240void parse_events__free_terms(struct list_head *terms)
1241{
6cee6cd3 1242 struct parse_events_term *term, *h;
8f707d84
JO
1243
1244 list_for_each_entry_safe(term, h, terms, list)
1245 free(term);
1246
1247 free(terms);
1248}
This page took 5.13562 seconds and 5 git commands to generate.