]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/util/parse-events.c
perf Documentation: Remove Ruplicated docs for powerpc cpu specific events
[mirror_ubuntu-bionic-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;
46441bdc 637 struct perf_pmu_info info;
5f537a26 638 struct perf_pmu *pmu;
410136f5 639 struct perf_evsel *evsel;
5f537a26
JO
640
641 pmu = perf_pmu__find(name);
642 if (!pmu)
643 return -EINVAL;
644
dc0a6202
AH
645 if (pmu->default_config) {
646 memcpy(&attr, pmu->default_config,
647 sizeof(struct perf_event_attr));
648 } else {
649 memset(&attr, 0, sizeof(attr));
650 }
5f537a26 651
ad962273
AH
652 if (!head_config) {
653 attr.type = pmu->type;
654 evsel = __add_event(list, idx, &attr, NULL, pmu->cpus);
655 return evsel ? 0 : -ENOMEM;
656 }
657
46441bdc 658 if (perf_pmu__check_alias(pmu, head_config, &info))
a6146d50
ZY
659 return -EINVAL;
660
5f537a26
JO
661 /*
662 * Configure hardcoded terms first, no need to check
663 * return value when called with fail == 0 ;)
664 */
665 config_attr(&attr, head_config, 0);
666
667 if (perf_pmu__config(pmu, &attr, head_config))
668 return -EINVAL;
669
410136f5
SE
670 evsel = __add_event(list, idx, &attr, pmu_event_name(head_config),
671 pmu->cpus);
672 if (evsel) {
46441bdc
MF
673 evsel->unit = info.unit;
674 evsel->scale = info.scale;
410136f5
SE
675 }
676
677 return evsel ? 0 : -ENOMEM;
5f537a26
JO
678}
679
6a4bb04c
JO
680int parse_events__modifier_group(struct list_head *list,
681 char *event_mod)
89efb029 682{
6a4bb04c
JO
683 return parse_events__modifier_event(list, event_mod, true);
684}
685
63dab225 686void parse_events__set_leader(char *name, struct list_head *list)
6a4bb04c
JO
687{
688 struct perf_evsel *leader;
689
63dab225
ACM
690 __perf_evlist__set_leader(list);
691 leader = list_entry(list->next, struct perf_evsel, node);
6a4bb04c 692 leader->group_name = name ? strdup(name) : NULL;
89efb029
JO
693}
694
c5cd8ac0 695/* list_event is assumed to point to malloc'ed memory */
5d7be90e
JO
696void parse_events_update_lists(struct list_head *list_event,
697 struct list_head *list_all)
698{
699 /*
700 * Called for single event definition. Update the
89efb029 701 * 'all event' list, and reinit the 'single event'
5d7be90e
JO
702 * list, for next event definition.
703 */
704 list_splice_tail(list_event, list_all);
b847cbdc 705 free(list_event);
5d7be90e
JO
706}
707
f5b1135b
JO
708struct event_modifier {
709 int eu;
710 int ek;
711 int eh;
712 int eH;
713 int eG;
714 int precise;
715 int exclude_GH;
3c176311 716 int sample_read;
e9a7c414 717 int pinned;
f5b1135b
JO
718};
719
720static int get_event_modifier(struct event_modifier *mod, char *str,
721 struct perf_evsel *evsel)
61c45981 722{
f5b1135b
JO
723 int eu = evsel ? evsel->attr.exclude_user : 0;
724 int ek = evsel ? evsel->attr.exclude_kernel : 0;
725 int eh = evsel ? evsel->attr.exclude_hv : 0;
726 int eH = evsel ? evsel->attr.exclude_host : 0;
727 int eG = evsel ? evsel->attr.exclude_guest : 0;
728 int precise = evsel ? evsel->attr.precise_ip : 0;
3c176311 729 int sample_read = 0;
e9a7c414 730 int pinned = evsel ? evsel->attr.pinned : 0;
a21ca2ca 731
f5b1135b
JO
732 int exclude = eu | ek | eh;
733 int exclude_GH = evsel ? evsel->exclude_GH : 0;
734
f5b1135b 735 memset(mod, 0, sizeof(*mod));
ceb53fbf 736
61c45981 737 while (*str) {
ab608344
PZ
738 if (*str == 'u') {
739 if (!exclude)
740 exclude = eu = ek = eh = 1;
61c45981 741 eu = 0;
ab608344
PZ
742 } else if (*str == 'k') {
743 if (!exclude)
744 exclude = eu = ek = eh = 1;
61c45981 745 ek = 0;
ab608344
PZ
746 } else if (*str == 'h') {
747 if (!exclude)
748 exclude = eu = ek = eh = 1;
61c45981 749 eh = 0;
99320cc8
JR
750 } else if (*str == 'G') {
751 if (!exclude_GH)
752 exclude_GH = eG = eH = 1;
753 eG = 0;
754 } else if (*str == 'H') {
755 if (!exclude_GH)
756 exclude_GH = eG = eH = 1;
757 eH = 0;
ab608344
PZ
758 } else if (*str == 'p') {
759 precise++;
1342798c
DA
760 /* use of precise requires exclude_guest */
761 if (!exclude_GH)
762 eG = 1;
3c176311
JO
763 } else if (*str == 'S') {
764 sample_read = 1;
e9a7c414
ME
765 } else if (*str == 'D') {
766 pinned = 1;
ab608344 767 } else
61c45981 768 break;
ab608344 769
61c45981 770 ++str;
5242519b 771 }
ceb53fbf 772
89812fc8
JO
773 /*
774 * precise ip:
775 *
776 * 0 - SAMPLE_IP can have arbitrary skid
777 * 1 - SAMPLE_IP must have constant skid
778 * 2 - SAMPLE_IP requested to have 0 skid
779 * 3 - SAMPLE_IP must have 0 skid
780 *
781 * See also PERF_RECORD_MISC_EXACT_IP
782 */
783 if (precise > 3)
784 return -EINVAL;
ceb53fbf 785
f5b1135b
JO
786 mod->eu = eu;
787 mod->ek = ek;
788 mod->eh = eh;
789 mod->eH = eH;
790 mod->eG = eG;
791 mod->precise = precise;
792 mod->exclude_GH = exclude_GH;
3c176311 793 mod->sample_read = sample_read;
e9a7c414
ME
794 mod->pinned = pinned;
795
f5b1135b
JO
796 return 0;
797}
798
534123f4
JO
799/*
800 * Basic modifier sanity check to validate it contains only one
801 * instance of any modifier (apart from 'p') present.
802 */
803static int check_modifier(char *str)
804{
805 char *p = str;
806
807 /* The sizeof includes 0 byte as well. */
e9a7c414 808 if (strlen(str) > (sizeof("ukhGHpppSD") - 1))
534123f4
JO
809 return -1;
810
811 while (*p) {
812 if (*p != 'p' && strchr(p + 1, *p))
813 return -1;
814 p++;
815 }
816
817 return 0;
818}
819
f5b1135b
JO
820int parse_events__modifier_event(struct list_head *list, char *str, bool add)
821{
822 struct perf_evsel *evsel;
823 struct event_modifier mod;
824
825 if (str == NULL)
826 return 0;
827
534123f4
JO
828 if (check_modifier(str))
829 return -EINVAL;
830
f5b1135b
JO
831 if (!add && get_event_modifier(&mod, str, NULL))
832 return -EINVAL;
833
0050f7aa 834 __evlist__for_each(list, evsel) {
f5b1135b
JO
835 if (add && get_event_modifier(&mod, str, evsel))
836 return -EINVAL;
837
838 evsel->attr.exclude_user = mod.eu;
839 evsel->attr.exclude_kernel = mod.ek;
840 evsel->attr.exclude_hv = mod.eh;
841 evsel->attr.precise_ip = mod.precise;
842 evsel->attr.exclude_host = mod.eH;
843 evsel->attr.exclude_guest = mod.eG;
844 evsel->exclude_GH = mod.exclude_GH;
3c176311 845 evsel->sample_read = mod.sample_read;
e9a7c414
ME
846
847 if (perf_evsel__is_group_leader(evsel))
848 evsel->attr.pinned = mod.pinned;
89812fc8 849 }
ceb53fbf 850
61c45981
PM
851 return 0;
852}
8ad8db37 853
ac2ba9f3
RR
854int parse_events_name(struct list_head *list, char *name)
855{
856 struct perf_evsel *evsel;
857
0050f7aa 858 __evlist__for_each(list, evsel) {
ac2ba9f3
RR
859 if (!evsel->name)
860 evsel->name = strdup(name);
861 }
862
863 return 0;
864}
865
50e200f0
AK
866static int parse_events__scanner(const char *str, void *data, int start_token);
867
868static int parse_events_fixup(int ret, const char *str, void *data,
869 int start_token)
870{
871 char *o = strdup(str);
872 char *s = NULL;
873 char *t = o;
874 char *p;
875 int len = 0;
876
877 if (!o)
878 return ret;
879 while ((p = strsep(&t, ",")) != NULL) {
880 if (s)
881 str_append(&s, &len, ",");
882 str_append(&s, &len, "cpu/");
883 str_append(&s, &len, p);
884 str_append(&s, &len, "/");
885 }
886 free(o);
887 if (!s)
888 return -ENOMEM;
889 return parse_events__scanner(s, data, start_token);
890}
891
90e2b22d 892static int parse_events__scanner(const char *str, void *data, int start_token)
61c45981 893{
89812fc8 894 YY_BUFFER_STATE buffer;
ac20de6f 895 void *scanner;
46010ab2 896 int ret;
bcd3279f 897
90e2b22d 898 ret = parse_events_lex_init_extra(start_token, &scanner);
ac20de6f
ZY
899 if (ret)
900 return ret;
901
902 buffer = parse_events__scan_string(str, scanner);
a21ca2ca 903
82ba1f2f
JO
904#ifdef PARSER_DEBUG
905 parse_events_debug = 1;
906#endif
ac20de6f
ZY
907 ret = parse_events_parse(data, scanner);
908
909 parse_events__flush_buffer(buffer, scanner);
910 parse_events__delete_buffer(buffer, scanner);
911 parse_events_lex_destroy(scanner);
50e200f0
AK
912 if (ret && !strchr(str, '/'))
913 ret = parse_events_fixup(ret, str, data, start_token);
ac20de6f
ZY
914 return ret;
915}
bcd3279f 916
90e2b22d
JO
917/*
918 * parse event config string, return a list of event terms.
919 */
920int parse_events_terms(struct list_head *terms, const char *str)
921{
23b6339b 922 struct parse_events_terms data = {
90e2b22d
JO
923 .terms = NULL,
924 };
925 int ret;
926
927 ret = parse_events__scanner(str, &data, PE_START_TERMS);
928 if (!ret) {
929 list_splice(data.terms, terms);
74cf249d 930 zfree(&data.terms);
90e2b22d
JO
931 return 0;
932 }
933
b2c34fde
AH
934 if (data.terms)
935 parse_events__free_terms(data.terms);
90e2b22d
JO
936 return ret;
937}
938
d8f7bbc9 939int parse_events(struct perf_evlist *evlist, const char *str)
ac20de6f 940{
23b6339b 941 struct parse_events_evlist data = {
ac20de6f
ZY
942 .list = LIST_HEAD_INIT(data.list),
943 .idx = evlist->nr_entries,
944 };
945 int ret;
bcd3279f 946
90e2b22d 947 ret = parse_events__scanner(str, &data, PE_START_EVENTS);
89812fc8 948 if (!ret) {
46010ab2
JO
949 int entries = data.idx - evlist->nr_entries;
950 perf_evlist__splice_list_tail(evlist, &data.list, entries);
97f63e4a 951 evlist->nr_groups += data.nr_groups;
89812fc8
JO
952 return 0;
953 }
bcd3279f 954
5d7be90e
JO
955 /*
956 * There are 2 users - builtin-record and builtin-test objects.
957 * Both call perf_evlist__delete in case of error, so we dont
958 * need to bother.
959 */
bcd3279f 960 return ret;
8ad8db37
IM
961}
962
f120f9d5 963int parse_events_option(const struct option *opt, const char *str,
1d037ca1 964 int unset __maybe_unused)
f120f9d5
JO
965{
966 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
d8f7bbc9 967 int ret = parse_events(evlist, str);
9175ce1f
AK
968
969 if (ret) {
970 fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
971 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
972 }
973 return ret;
f120f9d5
JO
974}
975
361c99a6 976int parse_filter(const struct option *opt, const char *str,
1d037ca1 977 int unset __maybe_unused)
c171b552 978{
361c99a6 979 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
69aad6f1 980 struct perf_evsel *last = NULL;
c171b552 981
361c99a6 982 if (evlist->nr_entries > 0)
0c21f736 983 last = perf_evlist__last(evlist);
69aad6f1
ACM
984
985 if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
c171b552 986 fprintf(stderr,
281f92f2 987 "--filter option should follow a -e tracepoint option\n");
c171b552
LZ
988 return -1;
989 }
990
69aad6f1
ACM
991 last->filter = strdup(str);
992 if (last->filter == NULL) {
c171b552
LZ
993 fprintf(stderr, "not enough memory to hold filter string\n");
994 return -1;
995 }
c171b552
LZ
996
997 return 0;
998}
999
86847b62 1000static const char * const event_type_descriptors[] = {
86847b62
TG
1001 "Hardware event",
1002 "Software event",
1003 "Tracepoint event",
1004 "Hardware cache event",
41bdcb23
LW
1005 "Raw hardware event descriptor",
1006 "Hardware breakpoint",
86847b62
TG
1007};
1008
f6bdafef
JB
1009/*
1010 * Print the events from <debugfs_mount_point>/tracing/events
1011 */
1012
a3277d2d
FW
1013void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
1014 bool name_only)
f6bdafef
JB
1015{
1016 DIR *sys_dir, *evt_dir;
1017 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
f6bdafef 1018 char evt_path[MAXPATHLEN];
725b1368 1019 char dir_path[MAXPATHLEN];
6e81c74c 1020 char sbuf[STRERR_BUFSIZE];
f6bdafef 1021
f11cfc6f 1022 if (debugfs_valid_mountpoint(tracing_events_path)) {
6e81c74c
MH
1023 printf(" [ Tracepoints not available: %s ]\n",
1024 strerror_r(errno, sbuf, sizeof(sbuf)));
f6bdafef 1025 return;
f11cfc6f 1026 }
f6bdafef 1027
ebf294bf 1028 sys_dir = opendir(tracing_events_path);
f6bdafef 1029 if (!sys_dir)
725b1368 1030 return;
6b58e7f1
UD
1031
1032 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
668b8788
ACM
1033 if (subsys_glob != NULL &&
1034 !strglobmatch(sys_dirent.d_name, subsys_glob))
1035 continue;
725b1368 1036
ebf294bf 1037 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
725b1368
ED
1038 sys_dirent.d_name);
1039 evt_dir = opendir(dir_path);
1040 if (!evt_dir)
6b58e7f1 1041 continue;
725b1368 1042
6b58e7f1 1043 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
668b8788
ACM
1044 if (event_glob != NULL &&
1045 !strglobmatch(evt_dirent.d_name, event_glob))
1046 continue;
1047
a3277d2d
FW
1048 if (name_only) {
1049 printf("%s:%s ", sys_dirent.d_name, evt_dirent.d_name);
1050 continue;
1051 }
1052
f6bdafef
JB
1053 snprintf(evt_path, MAXPATHLEN, "%s:%s",
1054 sys_dirent.d_name, evt_dirent.d_name);
947b4ad1 1055 printf(" %-50s [%s]\n", evt_path,
41bdcb23 1056 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
f6bdafef
JB
1057 }
1058 closedir(evt_dir);
1059 }
f6bdafef
JB
1060 closedir(sys_dir);
1061}
1062
20c457b8
TR
1063/*
1064 * Check whether event is in <debugfs_mount_point>/tracing/events
1065 */
1066
1067int is_valid_tracepoint(const char *event_string)
1068{
1069 DIR *sys_dir, *evt_dir;
1070 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
1071 char evt_path[MAXPATHLEN];
1072 char dir_path[MAXPATHLEN];
1073
ebf294bf 1074 if (debugfs_valid_mountpoint(tracing_events_path))
20c457b8
TR
1075 return 0;
1076
ebf294bf 1077 sys_dir = opendir(tracing_events_path);
20c457b8
TR
1078 if (!sys_dir)
1079 return 0;
1080
1081 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
1082
ebf294bf 1083 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
20c457b8
TR
1084 sys_dirent.d_name);
1085 evt_dir = opendir(dir_path);
1086 if (!evt_dir)
1087 continue;
1088
1089 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
1090 snprintf(evt_path, MAXPATHLEN, "%s:%s",
1091 sys_dirent.d_name, evt_dirent.d_name);
1092 if (!strcmp(evt_path, event_string)) {
1093 closedir(evt_dir);
1094 closedir(sys_dir);
1095 return 1;
1096 }
1097 }
1098 closedir(evt_dir);
1099 }
1100 closedir(sys_dir);
1101 return 0;
1102}
1103
b41f1cec
NK
1104static bool is_event_supported(u8 type, unsigned config)
1105{
1106 bool ret = true;
88fee52e 1107 int open_return;
b41f1cec
NK
1108 struct perf_evsel *evsel;
1109 struct perf_event_attr attr = {
1110 .type = type,
1111 .config = config,
1112 .disabled = 1,
b41f1cec
NK
1113 };
1114 struct {
1115 struct thread_map map;
1116 int threads[1];
1117 } tmap = {
1118 .map.nr = 1,
1119 .threads = { 0 },
1120 };
1121
ef503831 1122 evsel = perf_evsel__new(&attr);
b41f1cec 1123 if (evsel) {
88fee52e
VW
1124 open_return = perf_evsel__open(evsel, NULL, &tmap.map);
1125 ret = open_return >= 0;
1126
1127 if (open_return == -EACCES) {
1128 /*
1129 * This happens if the paranoid value
1130 * /proc/sys/kernel/perf_event_paranoid is set to 2
1131 * Re-run with exclude_kernel set; we don't do that
1132 * by default as some ARM machines do not support it.
1133 *
1134 */
1135 evsel->attr.exclude_kernel = 1;
1136 ret = perf_evsel__open(evsel, NULL, &tmap.map) >= 0;
1137 }
b41f1cec
NK
1138 perf_evsel__delete(evsel);
1139 }
1140
1141 return ret;
1142}
1143
1dc12760
JO
1144static void __print_events_type(u8 type, struct event_symbol *syms,
1145 unsigned max)
668b8788 1146{
668b8788 1147 char name[64];
1dc12760 1148 unsigned i;
668b8788 1149
1dc12760 1150 for (i = 0; i < max ; i++, syms++) {
b41f1cec
NK
1151 if (!is_event_supported(type, i))
1152 continue;
1153
668b8788
ACM
1154 if (strlen(syms->alias))
1155 snprintf(name, sizeof(name), "%s OR %s",
1156 syms->symbol, syms->alias);
1157 else
1158 snprintf(name, sizeof(name), "%s", syms->symbol);
1159
b41f1cec 1160 printf(" %-50s [%s]\n", name, event_type_descriptors[type]);
668b8788
ACM
1161 }
1162}
1163
1dc12760
JO
1164void print_events_type(u8 type)
1165{
1166 if (type == PERF_TYPE_SOFTWARE)
1167 __print_events_type(type, event_symbols_sw, PERF_COUNT_SW_MAX);
1168 else
1169 __print_events_type(type, event_symbols_hw, PERF_COUNT_HW_MAX);
1170}
1171
a3277d2d 1172int print_hwcache_events(const char *event_glob, bool name_only)
668b8788
ACM
1173{
1174 unsigned int type, op, i, printed = 0;
0b668bc9 1175 char name[64];
668b8788
ACM
1176
1177 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
1178 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
1179 /* skip invalid cache type */
0b668bc9 1180 if (!perf_evsel__is_cache_op_valid(type, op))
668b8788
ACM
1181 continue;
1182
1183 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
0b668bc9
ACM
1184 __perf_evsel__hw_cache_type_op_res_name(type, op, i,
1185 name, sizeof(name));
947b4ad1 1186 if (event_glob != NULL && !strglobmatch(name, event_glob))
668b8788
ACM
1187 continue;
1188
b41f1cec
NK
1189 if (!is_event_supported(PERF_TYPE_HW_CACHE,
1190 type | (op << 8) | (i << 16)))
1191 continue;
1192
a3277d2d
FW
1193 if (name_only)
1194 printf("%s ", name);
1195 else
1196 printf(" %-50s [%s]\n", name,
1197 event_type_descriptors[PERF_TYPE_HW_CACHE]);
668b8788
ACM
1198 ++printed;
1199 }
1200 }
1201 }
1202
dc098b35
AK
1203 if (printed)
1204 printf("\n");
668b8788
ACM
1205 return printed;
1206}
1207
1dc12760 1208static void print_symbol_events(const char *event_glob, unsigned type,
a3277d2d
FW
1209 struct event_symbol *syms, unsigned max,
1210 bool name_only)
8ad8db37 1211{
1dc12760 1212 unsigned i, printed = 0;
947b4ad1 1213 char name[MAX_NAME_LEN];
8ad8db37 1214
1dc12760 1215 for (i = 0; i < max; i++, syms++) {
668b8788
ACM
1216
1217 if (event_glob != NULL &&
1218 !(strglobmatch(syms->symbol, event_glob) ||
1219 (syms->alias && strglobmatch(syms->alias, event_glob))))
1220 continue;
8ad8db37 1221
b41f1cec
NK
1222 if (!is_event_supported(type, i))
1223 continue;
1224
a3277d2d
FW
1225 if (name_only) {
1226 printf("%s ", syms->symbol);
1227 continue;
1228 }
1229
74d5b588 1230 if (strlen(syms->alias))
947b4ad1 1231 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
74d5b588 1232 else
947b4ad1 1233 strncpy(name, syms->symbol, MAX_NAME_LEN);
8ad8db37 1234
1dc12760
JO
1235 printf(" %-50s [%s]\n", name, event_type_descriptors[type]);
1236
1237 printed++;
8ad8db37
IM
1238 }
1239
1dc12760 1240 if (printed)
668b8788 1241 printf("\n");
1dc12760
JO
1242}
1243
1244/*
1245 * Print the help text for the event symbols:
1246 */
a3277d2d 1247void print_events(const char *event_glob, bool name_only)
1dc12760 1248{
a3277d2d
FW
1249 if (!name_only) {
1250 printf("\n");
1251 printf("List of pre-defined events (to be used in -e):\n");
1252 }
1dc12760
JO
1253
1254 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
a3277d2d 1255 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
1dc12760
JO
1256
1257 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
a3277d2d 1258 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
1dc12760 1259
a3277d2d 1260 print_hwcache_events(event_glob, name_only);
668b8788 1261
dc098b35
AK
1262 print_pmu_events(event_glob, name_only);
1263
668b8788
ACM
1264 if (event_glob != NULL)
1265 return;
73c24cb8 1266
a3277d2d 1267 if (!name_only) {
a3277d2d
FW
1268 printf(" %-50s [%s]\n",
1269 "rNNN",
1270 event_type_descriptors[PERF_TYPE_RAW]);
1271 printf(" %-50s [%s]\n",
1272 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
1273 event_type_descriptors[PERF_TYPE_RAW]);
af3df2cf 1274 printf(" (see 'man perf-list' on how to encode it)\n");
a3277d2d
FW
1275 printf("\n");
1276
1277 printf(" %-50s [%s]\n",
1278 "mem:<addr>[:access]",
41bdcb23 1279 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
a3277d2d
FW
1280 printf("\n");
1281 }
1b290d67 1282
a3277d2d 1283 print_tracepoint_events(NULL, NULL, name_only);
8ad8db37 1284}
8f707d84 1285
6cee6cd3 1286int parse_events__is_hardcoded_term(struct parse_events_term *term)
8f707d84 1287{
16fa7e82 1288 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
8f707d84
JO
1289}
1290
6cee6cd3 1291static int new_term(struct parse_events_term **_term, int type_val,
16fa7e82 1292 int type_term, char *config,
b527bab5 1293 char *str, u64 num)
8f707d84 1294{
6cee6cd3 1295 struct parse_events_term *term;
8f707d84
JO
1296
1297 term = zalloc(sizeof(*term));
1298 if (!term)
1299 return -ENOMEM;
1300
1301 INIT_LIST_HEAD(&term->list);
16fa7e82
JO
1302 term->type_val = type_val;
1303 term->type_term = type_term;
8f707d84
JO
1304 term->config = config;
1305
16fa7e82 1306 switch (type_val) {
8f707d84
JO
1307 case PARSE_EVENTS__TERM_TYPE_NUM:
1308 term->val.num = num;
1309 break;
1310 case PARSE_EVENTS__TERM_TYPE_STR:
1311 term->val.str = str;
1312 break;
1313 default:
4be8be6b 1314 free(term);
8f707d84
JO
1315 return -EINVAL;
1316 }
1317
1318 *_term = term;
1319 return 0;
1320}
1321
6cee6cd3 1322int parse_events_term__num(struct parse_events_term **term,
b527bab5 1323 int type_term, char *config, u64 num)
16fa7e82
JO
1324{
1325 return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term,
1326 config, NULL, num);
1327}
1328
6cee6cd3 1329int parse_events_term__str(struct parse_events_term **term,
16fa7e82
JO
1330 int type_term, char *config, char *str)
1331{
1332 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term,
1333 config, str, 0);
1334}
1335
6cee6cd3 1336int parse_events_term__sym_hw(struct parse_events_term **term,
1d33d6dc
JO
1337 char *config, unsigned idx)
1338{
1339 struct event_symbol *sym;
1340
1341 BUG_ON(idx >= PERF_COUNT_HW_MAX);
1342 sym = &event_symbols_hw[idx];
1343
1344 if (config)
1345 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1346 PARSE_EVENTS__TERM_TYPE_USER, config,
1347 (char *) sym->symbol, 0);
1348 else
1349 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1350 PARSE_EVENTS__TERM_TYPE_USER,
1351 (char *) "event", (char *) sym->symbol, 0);
1352}
1353
6cee6cd3
ACM
1354int parse_events_term__clone(struct parse_events_term **new,
1355 struct parse_events_term *term)
a6146d50
ZY
1356{
1357 return new_term(new, term->type_val, term->type_term, term->config,
1358 term->val.str, term->val.num);
1359}
1360
8f707d84
JO
1361void parse_events__free_terms(struct list_head *terms)
1362{
6cee6cd3 1363 struct parse_events_term *term, *h;
8f707d84
JO
1364
1365 list_for_each_entry_safe(term, h, terms, list)
1366 free(term);
8f707d84 1367}