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