1 #include "../../../include/linux/hw_breakpoint.h"
6 #include "parse-options.h"
7 #include "parse-events.h"
14 #include "parse-events-bison.h"
15 #define YY_EXTRA_TYPE int
16 #include "parse-events-flex.h"
19 #define MAX_NAME_LEN 100
27 extern int parse_events_debug;
29 int parse_events_parse(void *data, void *scanner);
31 static struct event_symbol event_symbols_hw[PERF_COUNT_HW_MAX] = {
32 [PERF_COUNT_HW_CPU_CYCLES] = {
33 .symbol = "cpu-cycles",
36 [PERF_COUNT_HW_INSTRUCTIONS] = {
37 .symbol = "instructions",
40 [PERF_COUNT_HW_CACHE_REFERENCES] = {
41 .symbol = "cache-references",
44 [PERF_COUNT_HW_CACHE_MISSES] = {
45 .symbol = "cache-misses",
48 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = {
49 .symbol = "branch-instructions",
52 [PERF_COUNT_HW_BRANCH_MISSES] = {
53 .symbol = "branch-misses",
56 [PERF_COUNT_HW_BUS_CYCLES] = {
57 .symbol = "bus-cycles",
60 [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = {
61 .symbol = "stalled-cycles-frontend",
62 .alias = "idle-cycles-frontend",
64 [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = {
65 .symbol = "stalled-cycles-backend",
66 .alias = "idle-cycles-backend",
68 [PERF_COUNT_HW_REF_CPU_CYCLES] = {
69 .symbol = "ref-cycles",
74 static struct event_symbol event_symbols_sw[PERF_COUNT_SW_MAX] = {
75 [PERF_COUNT_SW_CPU_CLOCK] = {
76 .symbol = "cpu-clock",
79 [PERF_COUNT_SW_TASK_CLOCK] = {
80 .symbol = "task-clock",
83 [PERF_COUNT_SW_PAGE_FAULTS] = {
84 .symbol = "page-faults",
87 [PERF_COUNT_SW_CONTEXT_SWITCHES] = {
88 .symbol = "context-switches",
91 [PERF_COUNT_SW_CPU_MIGRATIONS] = {
92 .symbol = "cpu-migrations",
93 .alias = "migrations",
95 [PERF_COUNT_SW_PAGE_FAULTS_MIN] = {
96 .symbol = "minor-faults",
99 [PERF_COUNT_SW_PAGE_FAULTS_MAJ] = {
100 .symbol = "major-faults",
103 [PERF_COUNT_SW_ALIGNMENT_FAULTS] = {
104 .symbol = "alignment-faults",
107 [PERF_COUNT_SW_EMULATION_FAULTS] = {
108 .symbol = "emulation-faults",
113 #define __PERF_EVENT_FIELD(config, name) \
114 ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
116 #define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW)
117 #define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG)
118 #define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE)
119 #define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT)
121 #define for_each_subsystem(sys_dir, sys_dirent, sys_next) \
122 while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next) \
123 if (sys_dirent.d_type == DT_DIR && \
124 (strcmp(sys_dirent.d_name, ".")) && \
125 (strcmp(sys_dirent.d_name, "..")))
127 static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
129 char evt_path[MAXPATHLEN];
132 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", tracing_events_path,
133 sys_dir->d_name, evt_dir->d_name);
134 fd = open(evt_path, O_RDONLY);
142 #define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) \
143 while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next) \
144 if (evt_dirent.d_type == DT_DIR && \
145 (strcmp(evt_dirent.d_name, ".")) && \
146 (strcmp(evt_dirent.d_name, "..")) && \
147 (!tp_event_has_id(&sys_dirent, &evt_dirent)))
149 #define MAX_EVENT_LENGTH 512
152 struct tracepoint_path *tracepoint_id_to_path(u64 config)
154 struct tracepoint_path *path = NULL;
155 DIR *sys_dir, *evt_dir;
156 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
160 char evt_path[MAXPATHLEN];
161 char dir_path[MAXPATHLEN];
163 if (debugfs_valid_mountpoint(tracing_events_path))
166 sys_dir = opendir(tracing_events_path);
170 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
172 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
174 evt_dir = opendir(dir_path);
178 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
180 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
182 fd = open(evt_path, O_RDONLY);
185 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
194 path = zalloc(sizeof(*path));
195 path->system = malloc(MAX_EVENT_LENGTH);
200 path->name = malloc(MAX_EVENT_LENGTH);
206 strncpy(path->system, sys_dirent.d_name,
208 strncpy(path->name, evt_dirent.d_name,
220 const char *event_type(int type)
223 case PERF_TYPE_HARDWARE:
226 case PERF_TYPE_SOFTWARE:
229 case PERF_TYPE_TRACEPOINT:
232 case PERF_TYPE_HW_CACHE:
233 return "hardware-cache";
244 static int __add_event(struct list_head **_list, int *idx,
245 struct perf_event_attr *attr,
246 char *name, struct cpu_map *cpus)
248 struct perf_evsel *evsel;
249 struct list_head *list = *_list;
252 list = malloc(sizeof(*list));
255 INIT_LIST_HEAD(list);
258 event_attr_init(attr);
260 evsel = perf_evsel__new(attr, (*idx)++);
268 evsel->name = strdup(name);
269 list_add_tail(&evsel->node, list);
274 static int add_event(struct list_head **_list, int *idx,
275 struct perf_event_attr *attr, char *name)
277 return __add_event(_list, idx, attr, name, NULL);
280 static int parse_aliases(char *str, const char *names[][PERF_EVSEL__MAX_ALIASES], int size)
285 for (i = 0; i < size; i++) {
286 for (j = 0; j < PERF_EVSEL__MAX_ALIASES && names[i][j]; j++) {
287 n = strlen(names[i][j]);
288 if (n > longest && !strncasecmp(str, names[i][j], n))
298 int parse_events_add_cache(struct list_head **list, int *idx,
299 char *type, char *op_result1, char *op_result2)
301 struct perf_event_attr attr;
302 char name[MAX_NAME_LEN];
303 int cache_type = -1, cache_op = -1, cache_result = -1;
304 char *op_result[2] = { op_result1, op_result2 };
308 * No fallback - if we cannot get a clear cache type
311 cache_type = parse_aliases(type, perf_evsel__hw_cache,
312 PERF_COUNT_HW_CACHE_MAX);
313 if (cache_type == -1)
316 n = snprintf(name, MAX_NAME_LEN, "%s", type);
318 for (i = 0; (i < 2) && (op_result[i]); i++) {
319 char *str = op_result[i];
321 n += snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
323 if (cache_op == -1) {
324 cache_op = parse_aliases(str, perf_evsel__hw_cache_op,
325 PERF_COUNT_HW_CACHE_OP_MAX);
327 if (!perf_evsel__is_cache_op_valid(cache_type, cache_op))
333 if (cache_result == -1) {
334 cache_result = parse_aliases(str, perf_evsel__hw_cache_result,
335 PERF_COUNT_HW_CACHE_RESULT_MAX);
336 if (cache_result >= 0)
342 * Fall back to reads:
345 cache_op = PERF_COUNT_HW_CACHE_OP_READ;
348 * Fall back to accesses:
350 if (cache_result == -1)
351 cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;
353 memset(&attr, 0, sizeof(attr));
354 attr.config = cache_type | (cache_op << 8) | (cache_result << 16);
355 attr.type = PERF_TYPE_HW_CACHE;
356 return add_event(list, idx, &attr, name);
359 static int add_tracepoint(struct list_head **listp, int *idx,
360 char *sys_name, char *evt_name)
362 struct perf_evsel *evsel;
363 struct list_head *list = *listp;
366 list = malloc(sizeof(*list));
369 INIT_LIST_HEAD(list);
372 evsel = perf_evsel__newtp(sys_name, evt_name, (*idx)++);
378 list_add_tail(&evsel->node, list);
383 static int add_tracepoint_multi(struct list_head **list, int *idx,
384 char *sys_name, char *evt_name)
386 char evt_path[MAXPATHLEN];
387 struct dirent *evt_ent;
391 snprintf(evt_path, MAXPATHLEN, "%s/%s", tracing_events_path, sys_name);
392 evt_dir = opendir(evt_path);
394 perror("Can't open event dir");
398 while (!ret && (evt_ent = readdir(evt_dir))) {
399 if (!strcmp(evt_ent->d_name, ".")
400 || !strcmp(evt_ent->d_name, "..")
401 || !strcmp(evt_ent->d_name, "enable")
402 || !strcmp(evt_ent->d_name, "filter"))
405 if (!strglobmatch(evt_ent->d_name, evt_name))
408 ret = add_tracepoint(list, idx, sys_name, evt_ent->d_name);
414 int parse_events_add_tracepoint(struct list_head **list, int *idx,
415 char *sys, char *event)
419 ret = debugfs_valid_mountpoint(tracing_events_path);
423 return strpbrk(event, "*?") ?
424 add_tracepoint_multi(list, idx, sys, event) :
425 add_tracepoint(list, idx, sys, event);
429 parse_breakpoint_type(const char *type, struct perf_event_attr *attr)
433 for (i = 0; i < 3; i++) {
434 if (!type || !type[i])
437 #define CHECK_SET_TYPE(bit) \
439 if (attr->bp_type & bit) \
442 attr->bp_type |= bit; \
447 CHECK_SET_TYPE(HW_BREAKPOINT_R);
450 CHECK_SET_TYPE(HW_BREAKPOINT_W);
453 CHECK_SET_TYPE(HW_BREAKPOINT_X);
460 #undef CHECK_SET_TYPE
462 if (!attr->bp_type) /* Default */
463 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
468 int parse_events_add_breakpoint(struct list_head **list, int *idx,
469 void *ptr, char *type)
471 struct perf_event_attr attr;
473 memset(&attr, 0, sizeof(attr));
474 attr.bp_addr = (unsigned long) ptr;
476 if (parse_breakpoint_type(type, &attr))
480 * We should find a nice way to override the access length
481 * Provide some defaults for now
483 if (attr.bp_type == HW_BREAKPOINT_X)
484 attr.bp_len = sizeof(long);
486 attr.bp_len = HW_BREAKPOINT_LEN_4;
488 attr.type = PERF_TYPE_BREAKPOINT;
489 attr.sample_period = 1;
491 return add_event(list, idx, &attr, NULL);
494 static int config_term(struct perf_event_attr *attr,
495 struct parse_events__term *term)
497 #define CHECK_TYPE_VAL(type) \
499 if (PARSE_EVENTS__TERM_TYPE_ ## type != term->type_val) \
503 switch (term->type_term) {
504 case PARSE_EVENTS__TERM_TYPE_CONFIG:
506 attr->config = term->val.num;
508 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
510 attr->config1 = term->val.num;
512 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
514 attr->config2 = term->val.num;
516 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
518 attr->sample_period = term->val.num;
520 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
522 * TODO uncomment when the field is available
523 * attr->branch_sample_type = term->val.num;
526 case PARSE_EVENTS__TERM_TYPE_NAME:
534 #undef CHECK_TYPE_VAL
537 static int config_attr(struct perf_event_attr *attr,
538 struct list_head *head, int fail)
540 struct parse_events__term *term;
542 list_for_each_entry(term, head, list)
543 if (config_term(attr, term) && fail)
549 int parse_events_add_numeric(struct list_head **list, int *idx,
550 u32 type, u64 config,
551 struct list_head *head_config)
553 struct perf_event_attr attr;
555 memset(&attr, 0, sizeof(attr));
557 attr.config = config;
560 config_attr(&attr, head_config, 1))
563 return add_event(list, idx, &attr, NULL);
566 static int parse_events__is_name_term(struct parse_events__term *term)
568 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
571 static char *pmu_event_name(struct list_head *head_terms)
573 struct parse_events__term *term;
575 list_for_each_entry(term, head_terms, list)
576 if (parse_events__is_name_term(term))
577 return term->val.str;
582 int parse_events_add_pmu(struct list_head **list, int *idx,
583 char *name, struct list_head *head_config)
585 struct perf_event_attr attr;
586 struct perf_pmu *pmu;
588 pmu = perf_pmu__find(name);
592 memset(&attr, 0, sizeof(attr));
594 if (perf_pmu__check_alias(pmu, head_config))
598 * Configure hardcoded terms first, no need to check
599 * return value when called with fail == 0 ;)
601 config_attr(&attr, head_config, 0);
603 if (perf_pmu__config(pmu, &attr, head_config))
606 return __add_event(list, idx, &attr, pmu_event_name(head_config),
610 int parse_events__modifier_group(struct list_head *list,
613 return parse_events__modifier_event(list, event_mod, true);
616 void parse_events__set_leader(char *name, struct list_head *list)
618 struct perf_evsel *leader;
620 __perf_evlist__set_leader(list);
621 leader = list_entry(list->next, struct perf_evsel, node);
622 leader->group_name = name ? strdup(name) : NULL;
625 void parse_events_update_lists(struct list_head *list_event,
626 struct list_head *list_all)
629 * Called for single event definition. Update the
630 * 'all event' list, and reinit the 'single event'
631 * list, for next event definition.
633 list_splice_tail(list_event, list_all);
637 struct event_modifier {
647 static int get_event_modifier(struct event_modifier *mod, char *str,
648 struct perf_evsel *evsel)
650 int eu = evsel ? evsel->attr.exclude_user : 0;
651 int ek = evsel ? evsel->attr.exclude_kernel : 0;
652 int eh = evsel ? evsel->attr.exclude_hv : 0;
653 int eH = evsel ? evsel->attr.exclude_host : 0;
654 int eG = evsel ? evsel->attr.exclude_guest : 0;
655 int precise = evsel ? evsel->attr.precise_ip : 0;
657 int exclude = eu | ek | eh;
658 int exclude_GH = evsel ? evsel->exclude_GH : 0;
661 * We are here for group and 'GH' was not set as event
662 * modifier and whatever event/group modifier override
663 * default 'GH' setup.
665 if (evsel && !exclude_GH)
668 memset(mod, 0, sizeof(*mod));
673 exclude = eu = ek = eh = 1;
675 } else if (*str == 'k') {
677 exclude = eu = ek = eh = 1;
679 } else if (*str == 'h') {
681 exclude = eu = ek = eh = 1;
683 } else if (*str == 'G') {
685 exclude_GH = eG = eH = 1;
687 } else if (*str == 'H') {
689 exclude_GH = eG = eH = 1;
691 } else if (*str == 'p') {
702 * 0 - SAMPLE_IP can have arbitrary skid
703 * 1 - SAMPLE_IP must have constant skid
704 * 2 - SAMPLE_IP requested to have 0 skid
705 * 3 - SAMPLE_IP must have 0 skid
707 * See also PERF_RECORD_MISC_EXACT_IP
717 mod->precise = precise;
718 mod->exclude_GH = exclude_GH;
722 int parse_events__modifier_event(struct list_head *list, char *str, bool add)
724 struct perf_evsel *evsel;
725 struct event_modifier mod;
730 if (!add && get_event_modifier(&mod, str, NULL))
733 list_for_each_entry(evsel, list, node) {
735 if (add && get_event_modifier(&mod, str, evsel))
738 evsel->attr.exclude_user = mod.eu;
739 evsel->attr.exclude_kernel = mod.ek;
740 evsel->attr.exclude_hv = mod.eh;
741 evsel->attr.precise_ip = mod.precise;
742 evsel->attr.exclude_host = mod.eH;
743 evsel->attr.exclude_guest = mod.eG;
744 evsel->exclude_GH = mod.exclude_GH;
750 int parse_events_name(struct list_head *list, char *name)
752 struct perf_evsel *evsel;
754 list_for_each_entry(evsel, list, node) {
756 evsel->name = strdup(name);
762 static int parse_events__scanner(const char *str, void *data, int start_token)
764 YY_BUFFER_STATE buffer;
768 ret = parse_events_lex_init_extra(start_token, &scanner);
772 buffer = parse_events__scan_string(str, scanner);
775 parse_events_debug = 1;
777 ret = parse_events_parse(data, scanner);
779 parse_events__flush_buffer(buffer, scanner);
780 parse_events__delete_buffer(buffer, scanner);
781 parse_events_lex_destroy(scanner);
786 * parse event config string, return a list of event terms.
788 int parse_events_terms(struct list_head *terms, const char *str)
790 struct parse_events_data__terms data = {
795 ret = parse_events__scanner(str, &data, PE_START_TERMS);
797 list_splice(data.terms, terms);
802 parse_events__free_terms(data.terms);
806 int parse_events(struct perf_evlist *evlist, const char *str,
807 int unset __maybe_unused)
809 struct parse_events_data__events data = {
810 .list = LIST_HEAD_INIT(data.list),
811 .idx = evlist->nr_entries,
815 ret = parse_events__scanner(str, &data, PE_START_EVENTS);
817 int entries = data.idx - evlist->nr_entries;
818 perf_evlist__splice_list_tail(evlist, &data.list, entries);
823 * There are 2 users - builtin-record and builtin-test objects.
824 * Both call perf_evlist__delete in case of error, so we dont
827 fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
828 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
832 int parse_events_option(const struct option *opt, const char *str,
833 int unset __maybe_unused)
835 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
836 return parse_events(evlist, str, unset);
839 int parse_filter(const struct option *opt, const char *str,
840 int unset __maybe_unused)
842 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
843 struct perf_evsel *last = NULL;
845 if (evlist->nr_entries > 0)
846 last = perf_evlist__last(evlist);
848 if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
850 "-F option should follow a -e tracepoint option\n");
854 last->filter = strdup(str);
855 if (last->filter == NULL) {
856 fprintf(stderr, "not enough memory to hold filter string\n");
863 static const char * const event_type_descriptors[] = {
867 "Hardware cache event",
868 "Raw hardware event descriptor",
869 "Hardware breakpoint",
873 * Print the events from <debugfs_mount_point>/tracing/events
876 void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
879 DIR *sys_dir, *evt_dir;
880 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
881 char evt_path[MAXPATHLEN];
882 char dir_path[MAXPATHLEN];
884 if (debugfs_valid_mountpoint(tracing_events_path))
887 sys_dir = opendir(tracing_events_path);
891 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
892 if (subsys_glob != NULL &&
893 !strglobmatch(sys_dirent.d_name, subsys_glob))
896 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
898 evt_dir = opendir(dir_path);
902 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
903 if (event_glob != NULL &&
904 !strglobmatch(evt_dirent.d_name, event_glob))
908 printf("%s:%s ", sys_dirent.d_name, evt_dirent.d_name);
912 snprintf(evt_path, MAXPATHLEN, "%s:%s",
913 sys_dirent.d_name, evt_dirent.d_name);
914 printf(" %-50s [%s]\n", evt_path,
915 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
923 * Check whether event is in <debugfs_mount_point>/tracing/events
926 int is_valid_tracepoint(const char *event_string)
928 DIR *sys_dir, *evt_dir;
929 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
930 char evt_path[MAXPATHLEN];
931 char dir_path[MAXPATHLEN];
933 if (debugfs_valid_mountpoint(tracing_events_path))
936 sys_dir = opendir(tracing_events_path);
940 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
942 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
944 evt_dir = opendir(dir_path);
948 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
949 snprintf(evt_path, MAXPATHLEN, "%s:%s",
950 sys_dirent.d_name, evt_dirent.d_name);
951 if (!strcmp(evt_path, event_string)) {
963 static void __print_events_type(u8 type, struct event_symbol *syms,
969 for (i = 0; i < max ; i++, syms++) {
970 if (strlen(syms->alias))
971 snprintf(name, sizeof(name), "%s OR %s",
972 syms->symbol, syms->alias);
974 snprintf(name, sizeof(name), "%s", syms->symbol);
976 printf(" %-50s [%s]\n", name,
977 event_type_descriptors[type]);
981 void print_events_type(u8 type)
983 if (type == PERF_TYPE_SOFTWARE)
984 __print_events_type(type, event_symbols_sw, PERF_COUNT_SW_MAX);
986 __print_events_type(type, event_symbols_hw, PERF_COUNT_HW_MAX);
989 int print_hwcache_events(const char *event_glob, bool name_only)
991 unsigned int type, op, i, printed = 0;
994 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
995 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
996 /* skip invalid cache type */
997 if (!perf_evsel__is_cache_op_valid(type, op))
1000 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
1001 __perf_evsel__hw_cache_type_op_res_name(type, op, i,
1002 name, sizeof(name));
1003 if (event_glob != NULL && !strglobmatch(name, event_glob))
1007 printf("%s ", name);
1009 printf(" %-50s [%s]\n", name,
1010 event_type_descriptors[PERF_TYPE_HW_CACHE]);
1019 static void print_symbol_events(const char *event_glob, unsigned type,
1020 struct event_symbol *syms, unsigned max,
1023 unsigned i, printed = 0;
1024 char name[MAX_NAME_LEN];
1026 for (i = 0; i < max; i++, syms++) {
1028 if (event_glob != NULL &&
1029 !(strglobmatch(syms->symbol, event_glob) ||
1030 (syms->alias && strglobmatch(syms->alias, event_glob))))
1034 printf("%s ", syms->symbol);
1038 if (strlen(syms->alias))
1039 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
1041 strncpy(name, syms->symbol, MAX_NAME_LEN);
1043 printf(" %-50s [%s]\n", name, event_type_descriptors[type]);
1053 * Print the help text for the event symbols:
1055 void print_events(const char *event_glob, bool name_only)
1059 printf("List of pre-defined events (to be used in -e):\n");
1062 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
1063 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
1065 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
1066 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
1068 print_hwcache_events(event_glob, name_only);
1070 if (event_glob != NULL)
1075 printf(" %-50s [%s]\n",
1077 event_type_descriptors[PERF_TYPE_RAW]);
1078 printf(" %-50s [%s]\n",
1079 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
1080 event_type_descriptors[PERF_TYPE_RAW]);
1081 printf(" (see 'perf list --help' on how to encode it)\n");
1084 printf(" %-50s [%s]\n",
1085 "mem:<addr>[:access]",
1086 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
1090 print_tracepoint_events(NULL, NULL, name_only);
1093 int parse_events__is_hardcoded_term(struct parse_events__term *term)
1095 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
1098 static int new_term(struct parse_events__term **_term, int type_val,
1099 int type_term, char *config,
1102 struct parse_events__term *term;
1104 term = zalloc(sizeof(*term));
1108 INIT_LIST_HEAD(&term->list);
1109 term->type_val = type_val;
1110 term->type_term = type_term;
1111 term->config = config;
1114 case PARSE_EVENTS__TERM_TYPE_NUM:
1115 term->val.num = num;
1117 case PARSE_EVENTS__TERM_TYPE_STR:
1118 term->val.str = str;
1128 int parse_events__term_num(struct parse_events__term **term,
1129 int type_term, char *config, u64 num)
1131 return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term,
1135 int parse_events__term_str(struct parse_events__term **term,
1136 int type_term, char *config, char *str)
1138 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term,
1142 int parse_events__term_clone(struct parse_events__term **new,
1143 struct parse_events__term *term)
1145 return new_term(new, term->type_val, term->type_term, term->config,
1146 term->val.str, term->val.num);
1149 void parse_events__free_terms(struct list_head *terms)
1151 struct parse_events__term *term, *h;
1153 list_for_each_entry_safe(term, h, terms, list)