1 #include <linux/hw_breakpoint.h>
6 #include "parse-options.h"
7 #include "parse-events.h"
9 #include "linux/string.h"
13 #include <api/fs/debugfs.h>
14 #include "parse-events-bison.h"
15 #define YY_EXTRA_TYPE int
16 #include "parse-events-flex.h"
18 #include "thread_map.h"
20 #define MAX_NAME_LEN 100
28 extern int parse_events_debug;
30 int parse_events_parse(void *data, void *scanner);
32 static struct event_symbol event_symbols_hw[PERF_COUNT_HW_MAX] = {
33 [PERF_COUNT_HW_CPU_CYCLES] = {
34 .symbol = "cpu-cycles",
37 [PERF_COUNT_HW_INSTRUCTIONS] = {
38 .symbol = "instructions",
41 [PERF_COUNT_HW_CACHE_REFERENCES] = {
42 .symbol = "cache-references",
45 [PERF_COUNT_HW_CACHE_MISSES] = {
46 .symbol = "cache-misses",
49 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = {
50 .symbol = "branch-instructions",
53 [PERF_COUNT_HW_BRANCH_MISSES] = {
54 .symbol = "branch-misses",
57 [PERF_COUNT_HW_BUS_CYCLES] = {
58 .symbol = "bus-cycles",
61 [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = {
62 .symbol = "stalled-cycles-frontend",
63 .alias = "idle-cycles-frontend",
65 [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = {
66 .symbol = "stalled-cycles-backend",
67 .alias = "idle-cycles-backend",
69 [PERF_COUNT_HW_REF_CPU_CYCLES] = {
70 .symbol = "ref-cycles",
75 static struct event_symbol event_symbols_sw[PERF_COUNT_SW_MAX] = {
76 [PERF_COUNT_SW_CPU_CLOCK] = {
77 .symbol = "cpu-clock",
80 [PERF_COUNT_SW_TASK_CLOCK] = {
81 .symbol = "task-clock",
84 [PERF_COUNT_SW_PAGE_FAULTS] = {
85 .symbol = "page-faults",
88 [PERF_COUNT_SW_CONTEXT_SWITCHES] = {
89 .symbol = "context-switches",
92 [PERF_COUNT_SW_CPU_MIGRATIONS] = {
93 .symbol = "cpu-migrations",
94 .alias = "migrations",
96 [PERF_COUNT_SW_PAGE_FAULTS_MIN] = {
97 .symbol = "minor-faults",
100 [PERF_COUNT_SW_PAGE_FAULTS_MAJ] = {
101 .symbol = "major-faults",
104 [PERF_COUNT_SW_ALIGNMENT_FAULTS] = {
105 .symbol = "alignment-faults",
108 [PERF_COUNT_SW_EMULATION_FAULTS] = {
109 .symbol = "emulation-faults",
112 [PERF_COUNT_SW_DUMMY] = {
118 #define __PERF_EVENT_FIELD(config, name) \
119 ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
121 #define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW)
122 #define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG)
123 #define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE)
124 #define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT)
126 #define for_each_subsystem(sys_dir, sys_dirent, sys_next) \
127 while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next) \
128 if (sys_dirent.d_type == DT_DIR && \
129 (strcmp(sys_dirent.d_name, ".")) && \
130 (strcmp(sys_dirent.d_name, "..")))
132 static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
134 char evt_path[MAXPATHLEN];
137 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", tracing_events_path,
138 sys_dir->d_name, evt_dir->d_name);
139 fd = open(evt_path, O_RDONLY);
147 #define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) \
148 while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next) \
149 if (evt_dirent.d_type == DT_DIR && \
150 (strcmp(evt_dirent.d_name, ".")) && \
151 (strcmp(evt_dirent.d_name, "..")) && \
152 (!tp_event_has_id(&sys_dirent, &evt_dirent)))
154 #define MAX_EVENT_LENGTH 512
157 struct tracepoint_path *tracepoint_id_to_path(u64 config)
159 struct tracepoint_path *path = NULL;
160 DIR *sys_dir, *evt_dir;
161 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
165 char evt_path[MAXPATHLEN];
166 char dir_path[MAXPATHLEN];
168 if (debugfs_valid_mountpoint(tracing_events_path))
171 sys_dir = opendir(tracing_events_path);
175 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
177 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
179 evt_dir = opendir(dir_path);
183 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
185 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
187 fd = open(evt_path, O_RDONLY);
190 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
199 path = zalloc(sizeof(*path));
200 path->system = malloc(MAX_EVENT_LENGTH);
205 path->name = malloc(MAX_EVENT_LENGTH);
207 zfree(&path->system);
211 strncpy(path->system, sys_dirent.d_name,
213 strncpy(path->name, evt_dirent.d_name,
225 struct tracepoint_path *tracepoint_name_to_path(const char *name)
227 struct tracepoint_path *path = zalloc(sizeof(*path));
228 char *str = strchr(name, ':');
230 if (path == NULL || str == NULL) {
235 path->system = strndup(name, str - name);
236 path->name = strdup(str+1);
238 if (path->system == NULL || path->name == NULL) {
239 zfree(&path->system);
248 const char *event_type(int type)
251 case PERF_TYPE_HARDWARE:
254 case PERF_TYPE_SOFTWARE:
257 case PERF_TYPE_TRACEPOINT:
260 case PERF_TYPE_HW_CACHE:
261 return "hardware-cache";
272 static struct perf_evsel *
273 __add_event(struct list_head *list, int *idx,
274 struct perf_event_attr *attr,
275 char *name, struct cpu_map *cpus)
277 struct perf_evsel *evsel;
279 event_attr_init(attr);
281 evsel = perf_evsel__new_idx(attr, (*idx)++);
287 evsel->name = strdup(name);
288 list_add_tail(&evsel->node, list);
292 static int add_event(struct list_head *list, int *idx,
293 struct perf_event_attr *attr, char *name)
295 return __add_event(list, idx, attr, name, NULL) ? 0 : -ENOMEM;
298 static int parse_aliases(char *str, const char *names[][PERF_EVSEL__MAX_ALIASES], int size)
303 for (i = 0; i < size; i++) {
304 for (j = 0; j < PERF_EVSEL__MAX_ALIASES && names[i][j]; j++) {
305 n = strlen(names[i][j]);
306 if (n > longest && !strncasecmp(str, names[i][j], n))
316 int parse_events_add_cache(struct list_head *list, int *idx,
317 char *type, char *op_result1, char *op_result2)
319 struct perf_event_attr attr;
320 char name[MAX_NAME_LEN];
321 int cache_type = -1, cache_op = -1, cache_result = -1;
322 char *op_result[2] = { op_result1, op_result2 };
326 * No fallback - if we cannot get a clear cache type
329 cache_type = parse_aliases(type, perf_evsel__hw_cache,
330 PERF_COUNT_HW_CACHE_MAX);
331 if (cache_type == -1)
334 n = snprintf(name, MAX_NAME_LEN, "%s", type);
336 for (i = 0; (i < 2) && (op_result[i]); i++) {
337 char *str = op_result[i];
339 n += snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
341 if (cache_op == -1) {
342 cache_op = parse_aliases(str, perf_evsel__hw_cache_op,
343 PERF_COUNT_HW_CACHE_OP_MAX);
345 if (!perf_evsel__is_cache_op_valid(cache_type, cache_op))
351 if (cache_result == -1) {
352 cache_result = parse_aliases(str, perf_evsel__hw_cache_result,
353 PERF_COUNT_HW_CACHE_RESULT_MAX);
354 if (cache_result >= 0)
360 * Fall back to reads:
363 cache_op = PERF_COUNT_HW_CACHE_OP_READ;
366 * Fall back to accesses:
368 if (cache_result == -1)
369 cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;
371 memset(&attr, 0, sizeof(attr));
372 attr.config = cache_type | (cache_op << 8) | (cache_result << 16);
373 attr.type = PERF_TYPE_HW_CACHE;
374 return add_event(list, idx, &attr, name);
377 static int add_tracepoint(struct list_head *list, int *idx,
378 char *sys_name, char *evt_name)
380 struct perf_evsel *evsel;
382 evsel = perf_evsel__newtp_idx(sys_name, evt_name, (*idx)++);
386 list_add_tail(&evsel->node, list);
391 static int add_tracepoint_multi_event(struct list_head *list, int *idx,
392 char *sys_name, char *evt_name)
394 char evt_path[MAXPATHLEN];
395 struct dirent *evt_ent;
399 snprintf(evt_path, MAXPATHLEN, "%s/%s", tracing_events_path, sys_name);
400 evt_dir = opendir(evt_path);
402 perror("Can't open event dir");
406 while (!ret && (evt_ent = readdir(evt_dir))) {
407 if (!strcmp(evt_ent->d_name, ".")
408 || !strcmp(evt_ent->d_name, "..")
409 || !strcmp(evt_ent->d_name, "enable")
410 || !strcmp(evt_ent->d_name, "filter"))
413 if (!strglobmatch(evt_ent->d_name, evt_name))
416 ret = add_tracepoint(list, idx, sys_name, evt_ent->d_name);
423 static int add_tracepoint_event(struct list_head *list, int *idx,
424 char *sys_name, char *evt_name)
426 return strpbrk(evt_name, "*?") ?
427 add_tracepoint_multi_event(list, idx, sys_name, evt_name) :
428 add_tracepoint(list, idx, sys_name, evt_name);
431 static int add_tracepoint_multi_sys(struct list_head *list, int *idx,
432 char *sys_name, char *evt_name)
434 struct dirent *events_ent;
438 events_dir = opendir(tracing_events_path);
440 perror("Can't open event dir");
444 while (!ret && (events_ent = readdir(events_dir))) {
445 if (!strcmp(events_ent->d_name, ".")
446 || !strcmp(events_ent->d_name, "..")
447 || !strcmp(events_ent->d_name, "enable")
448 || !strcmp(events_ent->d_name, "header_event")
449 || !strcmp(events_ent->d_name, "header_page"))
452 if (!strglobmatch(events_ent->d_name, sys_name))
455 ret = add_tracepoint_event(list, idx, events_ent->d_name,
459 closedir(events_dir);
463 int parse_events_add_tracepoint(struct list_head *list, int *idx,
464 char *sys, char *event)
468 ret = debugfs_valid_mountpoint(tracing_events_path);
472 if (strpbrk(sys, "*?"))
473 return add_tracepoint_multi_sys(list, idx, sys, event);
475 return add_tracepoint_event(list, idx, sys, event);
479 parse_breakpoint_type(const char *type, struct perf_event_attr *attr)
483 for (i = 0; i < 3; i++) {
484 if (!type || !type[i])
487 #define CHECK_SET_TYPE(bit) \
489 if (attr->bp_type & bit) \
492 attr->bp_type |= bit; \
497 CHECK_SET_TYPE(HW_BREAKPOINT_R);
500 CHECK_SET_TYPE(HW_BREAKPOINT_W);
503 CHECK_SET_TYPE(HW_BREAKPOINT_X);
510 #undef CHECK_SET_TYPE
512 if (!attr->bp_type) /* Default */
513 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
518 int parse_events_add_breakpoint(struct list_head *list, int *idx,
519 void *ptr, char *type)
521 struct perf_event_attr attr;
523 memset(&attr, 0, sizeof(attr));
524 attr.bp_addr = (unsigned long) ptr;
526 if (parse_breakpoint_type(type, &attr))
530 * We should find a nice way to override the access length
531 * Provide some defaults for now
533 if (attr.bp_type == HW_BREAKPOINT_X)
534 attr.bp_len = sizeof(long);
536 attr.bp_len = HW_BREAKPOINT_LEN_4;
538 attr.type = PERF_TYPE_BREAKPOINT;
539 attr.sample_period = 1;
541 return add_event(list, idx, &attr, NULL);
544 static int config_term(struct perf_event_attr *attr,
545 struct parse_events_term *term)
547 #define CHECK_TYPE_VAL(type) \
549 if (PARSE_EVENTS__TERM_TYPE_ ## type != term->type_val) \
553 switch (term->type_term) {
554 case PARSE_EVENTS__TERM_TYPE_CONFIG:
556 attr->config = term->val.num;
558 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
560 attr->config1 = term->val.num;
562 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
564 attr->config2 = term->val.num;
566 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
568 attr->sample_period = term->val.num;
570 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
572 * TODO uncomment when the field is available
573 * attr->branch_sample_type = term->val.num;
576 case PARSE_EVENTS__TERM_TYPE_NAME:
584 #undef CHECK_TYPE_VAL
587 static int config_attr(struct perf_event_attr *attr,
588 struct list_head *head, int fail)
590 struct parse_events_term *term;
592 list_for_each_entry(term, head, list)
593 if (config_term(attr, term) && fail)
599 int parse_events_add_numeric(struct list_head *list, int *idx,
600 u32 type, u64 config,
601 struct list_head *head_config)
603 struct perf_event_attr attr;
605 memset(&attr, 0, sizeof(attr));
607 attr.config = config;
610 config_attr(&attr, head_config, 1))
613 return add_event(list, idx, &attr, NULL);
616 static int parse_events__is_name_term(struct parse_events_term *term)
618 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
621 static char *pmu_event_name(struct list_head *head_terms)
623 struct parse_events_term *term;
625 list_for_each_entry(term, head_terms, list)
626 if (parse_events__is_name_term(term))
627 return term->val.str;
632 int parse_events_add_pmu(struct list_head *list, int *idx,
633 char *name, struct list_head *head_config)
635 struct perf_event_attr attr;
636 struct perf_pmu *pmu;
637 struct perf_evsel *evsel;
641 pmu = perf_pmu__find(name);
645 memset(&attr, 0, sizeof(attr));
647 if (perf_pmu__check_alias(pmu, head_config, &unit, &scale))
651 * Configure hardcoded terms first, no need to check
652 * return value when called with fail == 0 ;)
654 config_attr(&attr, head_config, 0);
656 if (perf_pmu__config(pmu, &attr, head_config))
659 evsel = __add_event(list, idx, &attr, pmu_event_name(head_config),
663 evsel->scale = scale;
666 return evsel ? 0 : -ENOMEM;
669 int parse_events__modifier_group(struct list_head *list,
672 return parse_events__modifier_event(list, event_mod, true);
675 void parse_events__set_leader(char *name, struct list_head *list)
677 struct perf_evsel *leader;
679 __perf_evlist__set_leader(list);
680 leader = list_entry(list->next, struct perf_evsel, node);
681 leader->group_name = name ? strdup(name) : NULL;
684 /* list_event is assumed to point to malloc'ed memory */
685 void parse_events_update_lists(struct list_head *list_event,
686 struct list_head *list_all)
689 * Called for single event definition. Update the
690 * 'all event' list, and reinit the 'single event'
691 * list, for next event definition.
693 list_splice_tail(list_event, list_all);
697 struct event_modifier {
709 static int get_event_modifier(struct event_modifier *mod, char *str,
710 struct perf_evsel *evsel)
712 int eu = evsel ? evsel->attr.exclude_user : 0;
713 int ek = evsel ? evsel->attr.exclude_kernel : 0;
714 int eh = evsel ? evsel->attr.exclude_hv : 0;
715 int eH = evsel ? evsel->attr.exclude_host : 0;
716 int eG = evsel ? evsel->attr.exclude_guest : 0;
717 int precise = evsel ? evsel->attr.precise_ip : 0;
719 int pinned = evsel ? evsel->attr.pinned : 0;
721 int exclude = eu | ek | eh;
722 int exclude_GH = evsel ? evsel->exclude_GH : 0;
724 memset(mod, 0, sizeof(*mod));
729 exclude = eu = ek = eh = 1;
731 } else if (*str == 'k') {
733 exclude = eu = ek = eh = 1;
735 } else if (*str == 'h') {
737 exclude = eu = ek = eh = 1;
739 } else if (*str == 'G') {
741 exclude_GH = eG = eH = 1;
743 } else if (*str == 'H') {
745 exclude_GH = eG = eH = 1;
747 } else if (*str == 'p') {
749 /* use of precise requires exclude_guest */
752 } else if (*str == 'S') {
754 } else if (*str == 'D') {
765 * 0 - SAMPLE_IP can have arbitrary skid
766 * 1 - SAMPLE_IP must have constant skid
767 * 2 - SAMPLE_IP requested to have 0 skid
768 * 3 - SAMPLE_IP must have 0 skid
770 * See also PERF_RECORD_MISC_EXACT_IP
780 mod->precise = precise;
781 mod->exclude_GH = exclude_GH;
782 mod->sample_read = sample_read;
783 mod->pinned = pinned;
789 * Basic modifier sanity check to validate it contains only one
790 * instance of any modifier (apart from 'p') present.
792 static int check_modifier(char *str)
796 /* The sizeof includes 0 byte as well. */
797 if (strlen(str) > (sizeof("ukhGHpppSD") - 1))
801 if (*p != 'p' && strchr(p + 1, *p))
809 int parse_events__modifier_event(struct list_head *list, char *str, bool add)
811 struct perf_evsel *evsel;
812 struct event_modifier mod;
817 if (check_modifier(str))
820 if (!add && get_event_modifier(&mod, str, NULL))
823 list_for_each_entry(evsel, list, node) {
825 if (add && get_event_modifier(&mod, str, evsel))
828 evsel->attr.exclude_user = mod.eu;
829 evsel->attr.exclude_kernel = mod.ek;
830 evsel->attr.exclude_hv = mod.eh;
831 evsel->attr.precise_ip = mod.precise;
832 evsel->attr.exclude_host = mod.eH;
833 evsel->attr.exclude_guest = mod.eG;
834 evsel->exclude_GH = mod.exclude_GH;
835 evsel->sample_read = mod.sample_read;
837 if (perf_evsel__is_group_leader(evsel))
838 evsel->attr.pinned = mod.pinned;
844 int parse_events_name(struct list_head *list, char *name)
846 struct perf_evsel *evsel;
848 list_for_each_entry(evsel, list, node) {
850 evsel->name = strdup(name);
856 static int parse_events__scanner(const char *str, void *data, int start_token);
858 static int parse_events_fixup(int ret, const char *str, void *data,
861 char *o = strdup(str);
869 while ((p = strsep(&t, ",")) != NULL) {
871 str_append(&s, &len, ",");
872 str_append(&s, &len, "cpu/");
873 str_append(&s, &len, p);
874 str_append(&s, &len, "/");
879 return parse_events__scanner(s, data, start_token);
882 static int parse_events__scanner(const char *str, void *data, int start_token)
884 YY_BUFFER_STATE buffer;
888 ret = parse_events_lex_init_extra(start_token, &scanner);
892 buffer = parse_events__scan_string(str, scanner);
895 parse_events_debug = 1;
897 ret = parse_events_parse(data, scanner);
899 parse_events__flush_buffer(buffer, scanner);
900 parse_events__delete_buffer(buffer, scanner);
901 parse_events_lex_destroy(scanner);
902 if (ret && !strchr(str, '/'))
903 ret = parse_events_fixup(ret, str, data, start_token);
908 * parse event config string, return a list of event terms.
910 int parse_events_terms(struct list_head *terms, const char *str)
912 struct parse_events_terms data = {
917 ret = parse_events__scanner(str, &data, PE_START_TERMS);
919 list_splice(data.terms, terms);
925 parse_events__free_terms(data.terms);
929 int parse_events(struct perf_evlist *evlist, const char *str)
931 struct parse_events_evlist data = {
932 .list = LIST_HEAD_INIT(data.list),
933 .idx = evlist->nr_entries,
937 ret = parse_events__scanner(str, &data, PE_START_EVENTS);
939 int entries = data.idx - evlist->nr_entries;
940 perf_evlist__splice_list_tail(evlist, &data.list, entries);
941 evlist->nr_groups += data.nr_groups;
946 * There are 2 users - builtin-record and builtin-test objects.
947 * Both call perf_evlist__delete in case of error, so we dont
953 int parse_events_option(const struct option *opt, const char *str,
954 int unset __maybe_unused)
956 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
957 int ret = parse_events(evlist, str);
960 fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
961 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
966 int parse_filter(const struct option *opt, const char *str,
967 int unset __maybe_unused)
969 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
970 struct perf_evsel *last = NULL;
972 if (evlist->nr_entries > 0)
973 last = perf_evlist__last(evlist);
975 if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
977 "-F option should follow a -e tracepoint option\n");
981 last->filter = strdup(str);
982 if (last->filter == NULL) {
983 fprintf(stderr, "not enough memory to hold filter string\n");
990 static const char * const event_type_descriptors[] = {
994 "Hardware cache event",
995 "Raw hardware event descriptor",
996 "Hardware breakpoint",
1000 * Print the events from <debugfs_mount_point>/tracing/events
1003 void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
1006 DIR *sys_dir, *evt_dir;
1007 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
1008 char evt_path[MAXPATHLEN];
1009 char dir_path[MAXPATHLEN];
1011 if (debugfs_valid_mountpoint(tracing_events_path)) {
1012 printf(" [ Tracepoints not available: %s ]\n", strerror(errno));
1016 sys_dir = opendir(tracing_events_path);
1020 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
1021 if (subsys_glob != NULL &&
1022 !strglobmatch(sys_dirent.d_name, subsys_glob))
1025 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
1027 evt_dir = opendir(dir_path);
1031 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
1032 if (event_glob != NULL &&
1033 !strglobmatch(evt_dirent.d_name, event_glob))
1037 printf("%s:%s ", sys_dirent.d_name, evt_dirent.d_name);
1041 snprintf(evt_path, MAXPATHLEN, "%s:%s",
1042 sys_dirent.d_name, evt_dirent.d_name);
1043 printf(" %-50s [%s]\n", evt_path,
1044 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
1052 * Check whether event is in <debugfs_mount_point>/tracing/events
1055 int is_valid_tracepoint(const char *event_string)
1057 DIR *sys_dir, *evt_dir;
1058 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
1059 char evt_path[MAXPATHLEN];
1060 char dir_path[MAXPATHLEN];
1062 if (debugfs_valid_mountpoint(tracing_events_path))
1065 sys_dir = opendir(tracing_events_path);
1069 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
1071 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
1073 evt_dir = opendir(dir_path);
1077 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
1078 snprintf(evt_path, MAXPATHLEN, "%s:%s",
1079 sys_dirent.d_name, evt_dirent.d_name);
1080 if (!strcmp(evt_path, event_string)) {
1092 static bool is_event_supported(u8 type, unsigned config)
1095 struct perf_evsel *evsel;
1096 struct perf_event_attr attr = {
1100 .exclude_kernel = 1,
1103 struct thread_map map;
1110 evsel = perf_evsel__new(&attr);
1112 ret = perf_evsel__open(evsel, NULL, &tmap.map) >= 0;
1113 perf_evsel__delete(evsel);
1119 static void __print_events_type(u8 type, struct event_symbol *syms,
1125 for (i = 0; i < max ; i++, syms++) {
1126 if (!is_event_supported(type, i))
1129 if (strlen(syms->alias))
1130 snprintf(name, sizeof(name), "%s OR %s",
1131 syms->symbol, syms->alias);
1133 snprintf(name, sizeof(name), "%s", syms->symbol);
1135 printf(" %-50s [%s]\n", name, event_type_descriptors[type]);
1139 void print_events_type(u8 type)
1141 if (type == PERF_TYPE_SOFTWARE)
1142 __print_events_type(type, event_symbols_sw, PERF_COUNT_SW_MAX);
1144 __print_events_type(type, event_symbols_hw, PERF_COUNT_HW_MAX);
1147 int print_hwcache_events(const char *event_glob, bool name_only)
1149 unsigned int type, op, i, printed = 0;
1152 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
1153 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
1154 /* skip invalid cache type */
1155 if (!perf_evsel__is_cache_op_valid(type, op))
1158 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
1159 __perf_evsel__hw_cache_type_op_res_name(type, op, i,
1160 name, sizeof(name));
1161 if (event_glob != NULL && !strglobmatch(name, event_glob))
1164 if (!is_event_supported(PERF_TYPE_HW_CACHE,
1165 type | (op << 8) | (i << 16)))
1169 printf("%s ", name);
1171 printf(" %-50s [%s]\n", name,
1172 event_type_descriptors[PERF_TYPE_HW_CACHE]);
1183 static void print_symbol_events(const char *event_glob, unsigned type,
1184 struct event_symbol *syms, unsigned max,
1187 unsigned i, printed = 0;
1188 char name[MAX_NAME_LEN];
1190 for (i = 0; i < max; i++, syms++) {
1192 if (event_glob != NULL &&
1193 !(strglobmatch(syms->symbol, event_glob) ||
1194 (syms->alias && strglobmatch(syms->alias, event_glob))))
1197 if (!is_event_supported(type, i))
1201 printf("%s ", syms->symbol);
1205 if (strlen(syms->alias))
1206 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
1208 strncpy(name, syms->symbol, MAX_NAME_LEN);
1210 printf(" %-50s [%s]\n", name, event_type_descriptors[type]);
1220 * Print the help text for the event symbols:
1222 void print_events(const char *event_glob, bool name_only)
1226 printf("List of pre-defined events (to be used in -e):\n");
1229 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
1230 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
1232 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
1233 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
1235 print_hwcache_events(event_glob, name_only);
1237 print_pmu_events(event_glob, name_only);
1239 if (event_glob != NULL)
1243 printf(" %-50s [%s]\n",
1245 event_type_descriptors[PERF_TYPE_RAW]);
1246 printf(" %-50s [%s]\n",
1247 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
1248 event_type_descriptors[PERF_TYPE_RAW]);
1249 printf(" (see 'man perf-list' on how to encode it)\n");
1252 printf(" %-50s [%s]\n",
1253 "mem:<addr>[:access]",
1254 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
1258 print_tracepoint_events(NULL, NULL, name_only);
1261 int parse_events__is_hardcoded_term(struct parse_events_term *term)
1263 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
1266 static int new_term(struct parse_events_term **_term, int type_val,
1267 int type_term, char *config,
1270 struct parse_events_term *term;
1272 term = zalloc(sizeof(*term));
1276 INIT_LIST_HEAD(&term->list);
1277 term->type_val = type_val;
1278 term->type_term = type_term;
1279 term->config = config;
1282 case PARSE_EVENTS__TERM_TYPE_NUM:
1283 term->val.num = num;
1285 case PARSE_EVENTS__TERM_TYPE_STR:
1286 term->val.str = str;
1297 int parse_events_term__num(struct parse_events_term **term,
1298 int type_term, char *config, u64 num)
1300 return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term,
1304 int parse_events_term__str(struct parse_events_term **term,
1305 int type_term, char *config, char *str)
1307 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term,
1311 int parse_events_term__sym_hw(struct parse_events_term **term,
1312 char *config, unsigned idx)
1314 struct event_symbol *sym;
1316 BUG_ON(idx >= PERF_COUNT_HW_MAX);
1317 sym = &event_symbols_hw[idx];
1320 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1321 PARSE_EVENTS__TERM_TYPE_USER, config,
1322 (char *) sym->symbol, 0);
1324 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1325 PARSE_EVENTS__TERM_TYPE_USER,
1326 (char *) "event", (char *) sym->symbol, 0);
1329 int parse_events_term__clone(struct parse_events_term **new,
1330 struct parse_events_term *term)
1332 return new_term(new, term->type_val, term->type_term, term->config,
1333 term->val.str, term->val.num);
1336 void parse_events__free_terms(struct list_head *terms)
1338 struct parse_events_term *term, *h;
1340 list_for_each_entry_safe(term, h, terms, list)