1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/hw_breakpoint.h>
4 #include <linux/zalloc.h>
11 #include <sys/param.h>
16 #include <subcmd/pager.h>
17 #include <subcmd/parse-options.h>
18 #include "parse-events.h"
19 #include <subcmd/exec-cmd.h>
24 #include "bpf-loader.h"
26 #include <api/fs/tracing_path.h>
27 #include <perf/cpumap.h>
28 #include "parse-events-bison.h"
29 #define YY_EXTRA_TYPE void*
30 #include "parse-events-flex.h"
32 #include "thread_map.h"
33 #include "probe-file.h"
35 #include "util/parse-branch-options.h"
36 #include "metricgroup.h"
37 #include "util/evsel_config.h"
38 #include "util/event.h"
40 #include "util/parse-events-hybrid.h"
41 #include "util/pmu-hybrid.h"
44 #define MAX_NAME_LEN 100
47 extern int parse_events_debug;
49 int parse_events_parse(void *parse_state, void *scanner);
50 static int get_config_terms(struct list_head *head_config,
51 struct list_head *head_terms __maybe_unused);
52 static int parse_events__with_hybrid_pmu(struct parse_events_state *parse_state,
53 const char *str, char *pmu_name,
54 struct list_head *list);
56 static struct perf_pmu_event_symbol *perf_pmu_events_list;
58 * The variable indicates the number of supported pmu event symbols.
59 * 0 means not initialized and ready to init
60 * -1 means failed to init, don't try anymore
61 * >0 is the number of supported pmu event symbols
63 static int perf_pmu_events_list_num;
65 struct event_symbol event_symbols_hw[PERF_COUNT_HW_MAX] = {
66 [PERF_COUNT_HW_CPU_CYCLES] = {
67 .symbol = "cpu-cycles",
70 [PERF_COUNT_HW_INSTRUCTIONS] = {
71 .symbol = "instructions",
74 [PERF_COUNT_HW_CACHE_REFERENCES] = {
75 .symbol = "cache-references",
78 [PERF_COUNT_HW_CACHE_MISSES] = {
79 .symbol = "cache-misses",
82 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = {
83 .symbol = "branch-instructions",
86 [PERF_COUNT_HW_BRANCH_MISSES] = {
87 .symbol = "branch-misses",
90 [PERF_COUNT_HW_BUS_CYCLES] = {
91 .symbol = "bus-cycles",
94 [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = {
95 .symbol = "stalled-cycles-frontend",
96 .alias = "idle-cycles-frontend",
98 [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = {
99 .symbol = "stalled-cycles-backend",
100 .alias = "idle-cycles-backend",
102 [PERF_COUNT_HW_REF_CPU_CYCLES] = {
103 .symbol = "ref-cycles",
108 struct event_symbol event_symbols_sw[PERF_COUNT_SW_MAX] = {
109 [PERF_COUNT_SW_CPU_CLOCK] = {
110 .symbol = "cpu-clock",
113 [PERF_COUNT_SW_TASK_CLOCK] = {
114 .symbol = "task-clock",
117 [PERF_COUNT_SW_PAGE_FAULTS] = {
118 .symbol = "page-faults",
121 [PERF_COUNT_SW_CONTEXT_SWITCHES] = {
122 .symbol = "context-switches",
125 [PERF_COUNT_SW_CPU_MIGRATIONS] = {
126 .symbol = "cpu-migrations",
127 .alias = "migrations",
129 [PERF_COUNT_SW_PAGE_FAULTS_MIN] = {
130 .symbol = "minor-faults",
133 [PERF_COUNT_SW_PAGE_FAULTS_MAJ] = {
134 .symbol = "major-faults",
137 [PERF_COUNT_SW_ALIGNMENT_FAULTS] = {
138 .symbol = "alignment-faults",
141 [PERF_COUNT_SW_EMULATION_FAULTS] = {
142 .symbol = "emulation-faults",
145 [PERF_COUNT_SW_DUMMY] = {
149 [PERF_COUNT_SW_BPF_OUTPUT] = {
150 .symbol = "bpf-output",
153 [PERF_COUNT_SW_CGROUP_SWITCHES] = {
154 .symbol = "cgroup-switches",
159 #define __PERF_EVENT_FIELD(config, name) \
160 ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
162 #define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW)
163 #define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG)
164 #define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE)
165 #define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT)
167 #define for_each_subsystem(sys_dir, sys_dirent) \
168 while ((sys_dirent = readdir(sys_dir)) != NULL) \
169 if (sys_dirent->d_type == DT_DIR && \
170 (strcmp(sys_dirent->d_name, ".")) && \
171 (strcmp(sys_dirent->d_name, "..")))
173 static int tp_event_has_id(const char *dir_path, struct dirent *evt_dir)
175 char evt_path[MAXPATHLEN];
178 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path, evt_dir->d_name);
179 fd = open(evt_path, O_RDONLY);
187 #define for_each_event(dir_path, evt_dir, evt_dirent) \
188 while ((evt_dirent = readdir(evt_dir)) != NULL) \
189 if (evt_dirent->d_type == DT_DIR && \
190 (strcmp(evt_dirent->d_name, ".")) && \
191 (strcmp(evt_dirent->d_name, "..")) && \
192 (!tp_event_has_id(dir_path, evt_dirent)))
194 #define MAX_EVENT_LENGTH 512
196 void parse_events__handle_error(struct parse_events_error *err, int idx,
197 char *str, char *help)
199 if (WARN(!str, "WARNING: failed to provide error string\n")) {
203 switch (err->num_errors) {
210 err->first_idx = err->idx;
212 err->first_str = err->str;
214 err->first_help = err->help;
218 pr_debug("Multiple errors dropping message: %s (%s)\n",
219 err->str, err->help);
229 struct tracepoint_path *tracepoint_id_to_path(u64 config)
231 struct tracepoint_path *path = NULL;
232 DIR *sys_dir, *evt_dir;
233 struct dirent *sys_dirent, *evt_dirent;
237 char evt_path[MAXPATHLEN];
240 sys_dir = tracing_events__opendir();
244 for_each_subsystem(sys_dir, sys_dirent) {
245 dir_path = get_events_file(sys_dirent->d_name);
248 evt_dir = opendir(dir_path);
252 for_each_event(dir_path, evt_dir, evt_dirent) {
254 scnprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
256 fd = open(evt_path, O_RDONLY);
259 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
266 put_events_file(dir_path);
269 path = zalloc(sizeof(*path));
272 if (asprintf(&path->system, "%.*s", MAX_EVENT_LENGTH, sys_dirent->d_name) < 0) {
276 if (asprintf(&path->name, "%.*s", MAX_EVENT_LENGTH, evt_dirent->d_name) < 0) {
277 zfree(&path->system);
286 put_events_file(dir_path);
293 struct tracepoint_path *tracepoint_name_to_path(const char *name)
295 struct tracepoint_path *path = zalloc(sizeof(*path));
296 char *str = strchr(name, ':');
298 if (path == NULL || str == NULL) {
303 path->system = strndup(name, str - name);
304 path->name = strdup(str+1);
306 if (path->system == NULL || path->name == NULL) {
307 zfree(&path->system);
315 const char *event_type(int type)
318 case PERF_TYPE_HARDWARE:
321 case PERF_TYPE_SOFTWARE:
324 case PERF_TYPE_TRACEPOINT:
327 case PERF_TYPE_HW_CACHE:
328 return "hardware-cache";
337 static int parse_events__is_name_term(struct parse_events_term *term)
339 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
342 static char *get_config_name(struct list_head *head_terms)
344 struct parse_events_term *term;
349 list_for_each_entry(term, head_terms, list)
350 if (parse_events__is_name_term(term))
351 return term->val.str;
356 static struct evsel *
357 __add_event(struct list_head *list, int *idx,
358 struct perf_event_attr *attr,
360 char *name, struct perf_pmu *pmu,
361 struct list_head *config_terms, bool auto_merge_stats,
362 const char *cpu_list)
365 struct perf_cpu_map *cpus = pmu ? perf_cpu_map__get(pmu->cpus) :
366 cpu_list ? perf_cpu_map__new(cpu_list) : NULL;
368 if (pmu && attr->type == PERF_TYPE_RAW)
369 perf_pmu__warn_invalid_config(pmu, attr->config, name);
372 event_attr_init(attr);
374 evsel = evsel__new_idx(attr, *idx);
376 perf_cpu_map__put(cpus);
381 evsel->core.cpus = cpus;
382 evsel->core.own_cpus = perf_cpu_map__get(cpus);
383 evsel->core.system_wide = pmu ? pmu->is_uncore : false;
384 evsel->auto_merge_stats = auto_merge_stats;
387 evsel->name = strdup(name);
390 list_splice_init(config_terms, &evsel->config_terms);
393 list_add_tail(&evsel->core.node, list);
398 struct evsel *parse_events__add_event(int idx, struct perf_event_attr *attr,
399 char *name, struct perf_pmu *pmu)
401 return __add_event(NULL, &idx, attr, false, name, pmu, NULL, false,
405 static int add_event(struct list_head *list, int *idx,
406 struct perf_event_attr *attr, char *name,
407 struct list_head *config_terms)
409 return __add_event(list, idx, attr, true, name, NULL, config_terms,
410 false, NULL) ? 0 : -ENOMEM;
413 static int add_event_tool(struct list_head *list, int *idx,
414 enum perf_tool_event tool_event)
417 struct perf_event_attr attr = {
418 .type = PERF_TYPE_SOFTWARE,
419 .config = PERF_COUNT_SW_DUMMY,
422 evsel = __add_event(list, idx, &attr, true, NULL, NULL, NULL, false,
426 evsel->tool_event = tool_event;
427 if (tool_event == PERF_TOOL_DURATION_TIME)
432 static int parse_aliases(char *str, const char *names[][EVSEL__MAX_ALIASES], int size)
437 for (i = 0; i < size; i++) {
438 for (j = 0; j < EVSEL__MAX_ALIASES && names[i][j]; j++) {
439 n = strlen(names[i][j]);
440 if (n > longest && !strncasecmp(str, names[i][j], n))
450 typedef int config_term_func_t(struct perf_event_attr *attr,
451 struct parse_events_term *term,
452 struct parse_events_error *err);
453 static int config_term_common(struct perf_event_attr *attr,
454 struct parse_events_term *term,
455 struct parse_events_error *err);
456 static int config_attr(struct perf_event_attr *attr,
457 struct list_head *head,
458 struct parse_events_error *err,
459 config_term_func_t config_term);
461 int parse_events_add_cache(struct list_head *list, int *idx,
462 char *type, char *op_result1, char *op_result2,
463 struct parse_events_error *err,
464 struct list_head *head_config,
465 struct parse_events_state *parse_state)
467 struct perf_event_attr attr;
468 LIST_HEAD(config_terms);
469 char name[MAX_NAME_LEN], *config_name;
470 int cache_type = -1, cache_op = -1, cache_result = -1;
471 char *op_result[2] = { op_result1, op_result2 };
476 * No fallback - if we cannot get a clear cache type
479 cache_type = parse_aliases(type, evsel__hw_cache, PERF_COUNT_HW_CACHE_MAX);
480 if (cache_type == -1)
483 config_name = get_config_name(head_config);
484 n = snprintf(name, MAX_NAME_LEN, "%s", type);
486 for (i = 0; (i < 2) && (op_result[i]); i++) {
487 char *str = op_result[i];
489 n += snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
491 if (cache_op == -1) {
492 cache_op = parse_aliases(str, evsel__hw_cache_op,
493 PERF_COUNT_HW_CACHE_OP_MAX);
495 if (!evsel__is_cache_op_valid(cache_type, cache_op))
501 if (cache_result == -1) {
502 cache_result = parse_aliases(str, evsel__hw_cache_result,
503 PERF_COUNT_HW_CACHE_RESULT_MAX);
504 if (cache_result >= 0)
510 * Fall back to reads:
513 cache_op = PERF_COUNT_HW_CACHE_OP_READ;
516 * Fall back to accesses:
518 if (cache_result == -1)
519 cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;
521 memset(&attr, 0, sizeof(attr));
522 attr.config = cache_type | (cache_op << 8) | (cache_result << 16);
523 attr.type = PERF_TYPE_HW_CACHE;
526 if (config_attr(&attr, head_config, err,
530 if (get_config_terms(head_config, &config_terms))
534 ret = parse_events__add_cache_hybrid(list, idx, &attr,
535 config_name ? : name, &config_terms,
536 &hybrid, parse_state);
540 ret = add_event(list, idx, &attr, config_name ? : name, &config_terms);
542 free_config_terms(&config_terms);
546 static void tracepoint_error(struct parse_events_error *e, int err,
547 const char *sys, const char *name)
556 * We get error directly from syscall errno ( > 0),
557 * or from encoded pointer's error ( < 0).
563 str = "can't access trace events";
566 str = "unknown tracepoint";
569 str = "failed to add tracepoint";
573 tracing_path__strerror_open_tp(err, help, sizeof(help), sys, name);
574 parse_events__handle_error(e, 0, strdup(str), strdup(help));
577 static int add_tracepoint(struct list_head *list, int *idx,
578 const char *sys_name, const char *evt_name,
579 struct parse_events_error *err,
580 struct list_head *head_config)
582 struct evsel *evsel = evsel__newtp_idx(sys_name, evt_name, (*idx)++);
585 tracepoint_error(err, PTR_ERR(evsel), sys_name, evt_name);
586 return PTR_ERR(evsel);
590 LIST_HEAD(config_terms);
592 if (get_config_terms(head_config, &config_terms))
594 list_splice(&config_terms, &evsel->config_terms);
597 list_add_tail(&evsel->core.node, list);
601 static int add_tracepoint_multi_event(struct list_head *list, int *idx,
602 const char *sys_name, const char *evt_name,
603 struct parse_events_error *err,
604 struct list_head *head_config)
607 struct dirent *evt_ent;
609 int ret = 0, found = 0;
611 evt_path = get_events_file(sys_name);
613 tracepoint_error(err, errno, sys_name, evt_name);
616 evt_dir = opendir(evt_path);
618 put_events_file(evt_path);
619 tracepoint_error(err, errno, sys_name, evt_name);
623 while (!ret && (evt_ent = readdir(evt_dir))) {
624 if (!strcmp(evt_ent->d_name, ".")
625 || !strcmp(evt_ent->d_name, "..")
626 || !strcmp(evt_ent->d_name, "enable")
627 || !strcmp(evt_ent->d_name, "filter"))
630 if (!strglobmatch(evt_ent->d_name, evt_name))
635 ret = add_tracepoint(list, idx, sys_name, evt_ent->d_name,
640 tracepoint_error(err, ENOENT, sys_name, evt_name);
644 put_events_file(evt_path);
649 static int add_tracepoint_event(struct list_head *list, int *idx,
650 const char *sys_name, const char *evt_name,
651 struct parse_events_error *err,
652 struct list_head *head_config)
654 return strpbrk(evt_name, "*?") ?
655 add_tracepoint_multi_event(list, idx, sys_name, evt_name,
657 add_tracepoint(list, idx, sys_name, evt_name,
661 static int add_tracepoint_multi_sys(struct list_head *list, int *idx,
662 const char *sys_name, const char *evt_name,
663 struct parse_events_error *err,
664 struct list_head *head_config)
666 struct dirent *events_ent;
670 events_dir = tracing_events__opendir();
672 tracepoint_error(err, errno, sys_name, evt_name);
676 while (!ret && (events_ent = readdir(events_dir))) {
677 if (!strcmp(events_ent->d_name, ".")
678 || !strcmp(events_ent->d_name, "..")
679 || !strcmp(events_ent->d_name, "enable")
680 || !strcmp(events_ent->d_name, "header_event")
681 || !strcmp(events_ent->d_name, "header_page"))
684 if (!strglobmatch(events_ent->d_name, sys_name))
687 ret = add_tracepoint_event(list, idx, events_ent->d_name,
688 evt_name, err, head_config);
691 closedir(events_dir);
695 #ifdef HAVE_LIBBPF_SUPPORT
696 struct __add_bpf_event_param {
697 struct parse_events_state *parse_state;
698 struct list_head *list;
699 struct list_head *head_config;
702 static int add_bpf_event(const char *group, const char *event, int fd, struct bpf_object *obj,
705 LIST_HEAD(new_evsels);
706 struct __add_bpf_event_param *param = _param;
707 struct parse_events_state *parse_state = param->parse_state;
708 struct list_head *list = param->list;
712 * Check if we should add the event, i.e. if it is a TP but starts with a '!',
713 * then don't add the tracepoint, this will be used for something else, like
714 * adding to a BPF_MAP_TYPE_PROG_ARRAY.
716 * See tools/perf/examples/bpf/augmented_raw_syscalls.c
721 pr_debug("add bpf event %s:%s and attach bpf program %d\n",
724 err = parse_events_add_tracepoint(&new_evsels, &parse_state->idx, group,
725 event, parse_state->error,
728 struct evsel *evsel, *tmp;
730 pr_debug("Failed to add BPF event %s:%s\n",
732 list_for_each_entry_safe(evsel, tmp, &new_evsels, core.node) {
733 list_del_init(&evsel->core.node);
734 evsel__delete(evsel);
738 pr_debug("adding %s:%s\n", group, event);
740 list_for_each_entry(pos, &new_evsels, core.node) {
741 pr_debug("adding %s:%s to %p\n",
746 list_splice(&new_evsels, list);
750 int parse_events_load_bpf_obj(struct parse_events_state *parse_state,
751 struct list_head *list,
752 struct bpf_object *obj,
753 struct list_head *head_config)
757 struct __add_bpf_event_param param = {parse_state, list, head_config};
758 static bool registered_unprobe_atexit = false;
760 if (IS_ERR(obj) || !obj) {
761 snprintf(errbuf, sizeof(errbuf),
762 "Internal error: load bpf obj with NULL");
768 * Register atexit handler before calling bpf__probe() so
769 * bpf__probe() don't need to unprobe probe points its already
770 * created when failure.
772 if (!registered_unprobe_atexit) {
774 registered_unprobe_atexit = true;
777 err = bpf__probe(obj);
779 bpf__strerror_probe(obj, err, errbuf, sizeof(errbuf));
783 err = bpf__load(obj);
785 bpf__strerror_load(obj, err, errbuf, sizeof(errbuf));
789 err = bpf__foreach_event(obj, add_bpf_event, ¶m);
791 snprintf(errbuf, sizeof(errbuf),
792 "Attach events in BPF object failed");
798 parse_events__handle_error(parse_state->error, 0,
799 strdup(errbuf), strdup("(add -v to see detail)"));
804 parse_events_config_bpf(struct parse_events_state *parse_state,
805 struct bpf_object *obj,
806 struct list_head *head_config)
808 struct parse_events_term *term;
811 if (!head_config || list_empty(head_config))
814 list_for_each_entry(term, head_config, list) {
817 if (term->type_term != PARSE_EVENTS__TERM_TYPE_USER) {
818 parse_events__handle_error(parse_state->error, term->err_term,
819 strdup("Invalid config term for BPF object"),
824 err = bpf__config_obj(obj, term, parse_state->evlist, &error_pos);
829 bpf__strerror_config_obj(obj, term, parse_state->evlist,
830 &error_pos, err, errbuf,
833 if (err == -BPF_LOADER_ERRNO__OBJCONF_MAP_VALUE)
836 idx = term->err_term + error_pos;
838 parse_events__handle_error(parse_state->error, idx,
841 "Hint:\tValid config terms:\n"
842 " \tmap:[<arraymap>].value<indices>=[value]\n"
843 " \tmap:[<eventmap>].event<indices>=[event]\n"
845 " \twhere <indices> is something like [0,3...5] or [all]\n"
846 " \t(add -v to see detail)"));
854 * Split config terms:
855 * perf record -e bpf.c/call-graph=fp,map:array.value[0]=1/ ...
856 * 'call-graph=fp' is 'evt config', should be applied to each
858 * 'map:array.value[0]=1' is 'obj config', should be processed
859 * with parse_events_config_bpf.
861 * Move object config terms from the first list to obj_head_config.
864 split_bpf_config_terms(struct list_head *evt_head_config,
865 struct list_head *obj_head_config)
867 struct parse_events_term *term, *temp;
870 * Currently, all possible user config term
871 * belong to bpf object. parse_events__is_hardcoded_term()
872 * happens to be a good flag.
874 * See parse_events_config_bpf() and
875 * config_term_tracepoint().
877 list_for_each_entry_safe(term, temp, evt_head_config, list)
878 if (!parse_events__is_hardcoded_term(term))
879 list_move_tail(&term->list, obj_head_config);
882 int parse_events_load_bpf(struct parse_events_state *parse_state,
883 struct list_head *list,
886 struct list_head *head_config)
889 struct bpf_object *obj;
890 LIST_HEAD(obj_head_config);
893 split_bpf_config_terms(head_config, &obj_head_config);
895 obj = bpf__prepare_load(bpf_file_name, source);
902 snprintf(errbuf, sizeof(errbuf),
903 "BPF support is not compiled");
905 bpf__strerror_prepare_load(bpf_file_name,
910 parse_events__handle_error(parse_state->error, 0,
911 strdup(errbuf), strdup("(add -v to see detail)"));
915 err = parse_events_load_bpf_obj(parse_state, list, obj, head_config);
918 err = parse_events_config_bpf(parse_state, obj, &obj_head_config);
921 * Caller doesn't know anything about obj_head_config,
922 * so combine them together again before returning.
925 list_splice_tail(&obj_head_config, head_config);
928 #else // HAVE_LIBBPF_SUPPORT
929 int parse_events_load_bpf_obj(struct parse_events_state *parse_state,
930 struct list_head *list __maybe_unused,
931 struct bpf_object *obj __maybe_unused,
932 struct list_head *head_config __maybe_unused)
934 parse_events__handle_error(parse_state->error, 0,
935 strdup("BPF support is not compiled"),
936 strdup("Make sure libbpf-devel is available at build time."));
940 int parse_events_load_bpf(struct parse_events_state *parse_state,
941 struct list_head *list __maybe_unused,
942 char *bpf_file_name __maybe_unused,
943 bool source __maybe_unused,
944 struct list_head *head_config __maybe_unused)
946 parse_events__handle_error(parse_state->error, 0,
947 strdup("BPF support is not compiled"),
948 strdup("Make sure libbpf-devel is available at build time."));
951 #endif // HAVE_LIBBPF_SUPPORT
954 parse_breakpoint_type(const char *type, struct perf_event_attr *attr)
958 for (i = 0; i < 3; i++) {
959 if (!type || !type[i])
962 #define CHECK_SET_TYPE(bit) \
964 if (attr->bp_type & bit) \
967 attr->bp_type |= bit; \
972 CHECK_SET_TYPE(HW_BREAKPOINT_R);
975 CHECK_SET_TYPE(HW_BREAKPOINT_W);
978 CHECK_SET_TYPE(HW_BREAKPOINT_X);
985 #undef CHECK_SET_TYPE
987 if (!attr->bp_type) /* Default */
988 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
993 int parse_events_add_breakpoint(struct list_head *list, int *idx,
994 u64 addr, char *type, u64 len)
996 struct perf_event_attr attr;
998 memset(&attr, 0, sizeof(attr));
1001 if (parse_breakpoint_type(type, &attr))
1004 /* Provide some defaults if len is not specified */
1006 if (attr.bp_type == HW_BREAKPOINT_X)
1009 len = HW_BREAKPOINT_LEN_4;
1014 attr.type = PERF_TYPE_BREAKPOINT;
1015 attr.sample_period = 1;
1017 return add_event(list, idx, &attr, NULL, NULL);
1020 static int check_type_val(struct parse_events_term *term,
1021 struct parse_events_error *err,
1024 if (type == term->type_val)
1028 parse_events__handle_error(err, term->err_val,
1029 type == PARSE_EVENTS__TERM_TYPE_NUM
1030 ? strdup("expected numeric value")
1031 : strdup("expected string value"),
1038 * Update according to parse-events.l
1040 static const char *config_term_names[__PARSE_EVENTS__TERM_TYPE_NR] = {
1041 [PARSE_EVENTS__TERM_TYPE_USER] = "<sysfs term>",
1042 [PARSE_EVENTS__TERM_TYPE_CONFIG] = "config",
1043 [PARSE_EVENTS__TERM_TYPE_CONFIG1] = "config1",
1044 [PARSE_EVENTS__TERM_TYPE_CONFIG2] = "config2",
1045 [PARSE_EVENTS__TERM_TYPE_NAME] = "name",
1046 [PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD] = "period",
1047 [PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ] = "freq",
1048 [PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE] = "branch_type",
1049 [PARSE_EVENTS__TERM_TYPE_TIME] = "time",
1050 [PARSE_EVENTS__TERM_TYPE_CALLGRAPH] = "call-graph",
1051 [PARSE_EVENTS__TERM_TYPE_STACKSIZE] = "stack-size",
1052 [PARSE_EVENTS__TERM_TYPE_NOINHERIT] = "no-inherit",
1053 [PARSE_EVENTS__TERM_TYPE_INHERIT] = "inherit",
1054 [PARSE_EVENTS__TERM_TYPE_MAX_STACK] = "max-stack",
1055 [PARSE_EVENTS__TERM_TYPE_MAX_EVENTS] = "nr",
1056 [PARSE_EVENTS__TERM_TYPE_OVERWRITE] = "overwrite",
1057 [PARSE_EVENTS__TERM_TYPE_NOOVERWRITE] = "no-overwrite",
1058 [PARSE_EVENTS__TERM_TYPE_DRV_CFG] = "driver-config",
1059 [PARSE_EVENTS__TERM_TYPE_PERCORE] = "percore",
1060 [PARSE_EVENTS__TERM_TYPE_AUX_OUTPUT] = "aux-output",
1061 [PARSE_EVENTS__TERM_TYPE_AUX_SAMPLE_SIZE] = "aux-sample-size",
1064 static bool config_term_shrinked;
1067 config_term_avail(int term_type, struct parse_events_error *err)
1071 if (term_type < 0 || term_type >= __PARSE_EVENTS__TERM_TYPE_NR) {
1072 parse_events__handle_error(err, -1,
1073 strdup("Invalid term_type"), NULL);
1076 if (!config_term_shrinked)
1079 switch (term_type) {
1080 case PARSE_EVENTS__TERM_TYPE_CONFIG:
1081 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
1082 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
1083 case PARSE_EVENTS__TERM_TYPE_NAME:
1084 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
1085 case PARSE_EVENTS__TERM_TYPE_PERCORE:
1091 /* term_type is validated so indexing is safe */
1092 if (asprintf(&err_str, "'%s' is not usable in 'perf stat'",
1093 config_term_names[term_type]) >= 0)
1094 parse_events__handle_error(err, -1, err_str, NULL);
1099 void parse_events__shrink_config_terms(void)
1101 config_term_shrinked = true;
1104 static int config_term_common(struct perf_event_attr *attr,
1105 struct parse_events_term *term,
1106 struct parse_events_error *err)
1108 #define CHECK_TYPE_VAL(type) \
1110 if (check_type_val(term, err, PARSE_EVENTS__TERM_TYPE_ ## type)) \
1114 switch (term->type_term) {
1115 case PARSE_EVENTS__TERM_TYPE_CONFIG:
1116 CHECK_TYPE_VAL(NUM);
1117 attr->config = term->val.num;
1119 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
1120 CHECK_TYPE_VAL(NUM);
1121 attr->config1 = term->val.num;
1123 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
1124 CHECK_TYPE_VAL(NUM);
1125 attr->config2 = term->val.num;
1127 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
1128 CHECK_TYPE_VAL(NUM);
1130 case PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ:
1131 CHECK_TYPE_VAL(NUM);
1133 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
1134 CHECK_TYPE_VAL(STR);
1135 if (strcmp(term->val.str, "no") &&
1136 parse_branch_str(term->val.str,
1137 &attr->branch_sample_type)) {
1138 parse_events__handle_error(err, term->err_val,
1139 strdup("invalid branch sample type"),
1144 case PARSE_EVENTS__TERM_TYPE_TIME:
1145 CHECK_TYPE_VAL(NUM);
1146 if (term->val.num > 1) {
1147 parse_events__handle_error(err, term->err_val,
1148 strdup("expected 0 or 1"),
1153 case PARSE_EVENTS__TERM_TYPE_CALLGRAPH:
1154 CHECK_TYPE_VAL(STR);
1156 case PARSE_EVENTS__TERM_TYPE_STACKSIZE:
1157 CHECK_TYPE_VAL(NUM);
1159 case PARSE_EVENTS__TERM_TYPE_INHERIT:
1160 CHECK_TYPE_VAL(NUM);
1162 case PARSE_EVENTS__TERM_TYPE_NOINHERIT:
1163 CHECK_TYPE_VAL(NUM);
1165 case PARSE_EVENTS__TERM_TYPE_OVERWRITE:
1166 CHECK_TYPE_VAL(NUM);
1168 case PARSE_EVENTS__TERM_TYPE_NOOVERWRITE:
1169 CHECK_TYPE_VAL(NUM);
1171 case PARSE_EVENTS__TERM_TYPE_NAME:
1172 CHECK_TYPE_VAL(STR);
1174 case PARSE_EVENTS__TERM_TYPE_MAX_STACK:
1175 CHECK_TYPE_VAL(NUM);
1177 case PARSE_EVENTS__TERM_TYPE_MAX_EVENTS:
1178 CHECK_TYPE_VAL(NUM);
1180 case PARSE_EVENTS__TERM_TYPE_PERCORE:
1181 CHECK_TYPE_VAL(NUM);
1182 if ((unsigned int)term->val.num > 1) {
1183 parse_events__handle_error(err, term->err_val,
1184 strdup("expected 0 or 1"),
1189 case PARSE_EVENTS__TERM_TYPE_AUX_OUTPUT:
1190 CHECK_TYPE_VAL(NUM);
1192 case PARSE_EVENTS__TERM_TYPE_AUX_SAMPLE_SIZE:
1193 CHECK_TYPE_VAL(NUM);
1194 if (term->val.num > UINT_MAX) {
1195 parse_events__handle_error(err, term->err_val,
1202 parse_events__handle_error(err, term->err_term,
1203 strdup("unknown term"),
1204 parse_events_formats_error_string(NULL));
1209 * Check term availability after basic checking so
1210 * PARSE_EVENTS__TERM_TYPE_USER can be found and filtered.
1212 * If check availability at the entry of this function,
1213 * user will see "'<sysfs term>' is not usable in 'perf stat'"
1214 * if an invalid config term is provided for legacy events
1215 * (for example, instructions/badterm/...), which is confusing.
1217 if (!config_term_avail(term->type_term, err))
1220 #undef CHECK_TYPE_VAL
1223 static int config_term_pmu(struct perf_event_attr *attr,
1224 struct parse_events_term *term,
1225 struct parse_events_error *err)
1227 if (term->type_term == PARSE_EVENTS__TERM_TYPE_USER ||
1228 term->type_term == PARSE_EVENTS__TERM_TYPE_DRV_CFG)
1230 * Always succeed for sysfs terms, as we dont know
1231 * at this point what type they need to have.
1235 return config_term_common(attr, term, err);
1238 static int config_term_tracepoint(struct perf_event_attr *attr,
1239 struct parse_events_term *term,
1240 struct parse_events_error *err)
1242 switch (term->type_term) {
1243 case PARSE_EVENTS__TERM_TYPE_CALLGRAPH:
1244 case PARSE_EVENTS__TERM_TYPE_STACKSIZE:
1245 case PARSE_EVENTS__TERM_TYPE_INHERIT:
1246 case PARSE_EVENTS__TERM_TYPE_NOINHERIT:
1247 case PARSE_EVENTS__TERM_TYPE_MAX_STACK:
1248 case PARSE_EVENTS__TERM_TYPE_MAX_EVENTS:
1249 case PARSE_EVENTS__TERM_TYPE_OVERWRITE:
1250 case PARSE_EVENTS__TERM_TYPE_NOOVERWRITE:
1251 case PARSE_EVENTS__TERM_TYPE_AUX_OUTPUT:
1252 case PARSE_EVENTS__TERM_TYPE_AUX_SAMPLE_SIZE:
1253 return config_term_common(attr, term, err);
1256 parse_events__handle_error(err, term->err_term,
1257 strdup("unknown term"),
1258 strdup("valid terms: call-graph,stack-size\n"));
1266 static int config_attr(struct perf_event_attr *attr,
1267 struct list_head *head,
1268 struct parse_events_error *err,
1269 config_term_func_t config_term)
1271 struct parse_events_term *term;
1273 list_for_each_entry(term, head, list)
1274 if (config_term(attr, term, err))
1280 static int get_config_terms(struct list_head *head_config,
1281 struct list_head *head_terms __maybe_unused)
1283 #define ADD_CONFIG_TERM(__type, __weak) \
1284 struct evsel_config_term *__t; \
1286 __t = zalloc(sizeof(*__t)); \
1290 INIT_LIST_HEAD(&__t->list); \
1291 __t->type = EVSEL__CONFIG_TERM_ ## __type; \
1292 __t->weak = __weak; \
1293 list_add_tail(&__t->list, head_terms)
1295 #define ADD_CONFIG_TERM_VAL(__type, __name, __val, __weak) \
1297 ADD_CONFIG_TERM(__type, __weak); \
1298 __t->val.__name = __val; \
1301 #define ADD_CONFIG_TERM_STR(__type, __val, __weak) \
1303 ADD_CONFIG_TERM(__type, __weak); \
1304 __t->val.str = strdup(__val); \
1305 if (!__t->val.str) { \
1309 __t->free_str = true; \
1312 struct parse_events_term *term;
1314 list_for_each_entry(term, head_config, list) {
1315 switch (term->type_term) {
1316 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
1317 ADD_CONFIG_TERM_VAL(PERIOD, period, term->val.num, term->weak);
1319 case PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ:
1320 ADD_CONFIG_TERM_VAL(FREQ, freq, term->val.num, term->weak);
1322 case PARSE_EVENTS__TERM_TYPE_TIME:
1323 ADD_CONFIG_TERM_VAL(TIME, time, term->val.num, term->weak);
1325 case PARSE_EVENTS__TERM_TYPE_CALLGRAPH:
1326 ADD_CONFIG_TERM_STR(CALLGRAPH, term->val.str, term->weak);
1328 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
1329 ADD_CONFIG_TERM_STR(BRANCH, term->val.str, term->weak);
1331 case PARSE_EVENTS__TERM_TYPE_STACKSIZE:
1332 ADD_CONFIG_TERM_VAL(STACK_USER, stack_user,
1333 term->val.num, term->weak);
1335 case PARSE_EVENTS__TERM_TYPE_INHERIT:
1336 ADD_CONFIG_TERM_VAL(INHERIT, inherit,
1337 term->val.num ? 1 : 0, term->weak);
1339 case PARSE_EVENTS__TERM_TYPE_NOINHERIT:
1340 ADD_CONFIG_TERM_VAL(INHERIT, inherit,
1341 term->val.num ? 0 : 1, term->weak);
1343 case PARSE_EVENTS__TERM_TYPE_MAX_STACK:
1344 ADD_CONFIG_TERM_VAL(MAX_STACK, max_stack,
1345 term->val.num, term->weak);
1347 case PARSE_EVENTS__TERM_TYPE_MAX_EVENTS:
1348 ADD_CONFIG_TERM_VAL(MAX_EVENTS, max_events,
1349 term->val.num, term->weak);
1351 case PARSE_EVENTS__TERM_TYPE_OVERWRITE:
1352 ADD_CONFIG_TERM_VAL(OVERWRITE, overwrite,
1353 term->val.num ? 1 : 0, term->weak);
1355 case PARSE_EVENTS__TERM_TYPE_NOOVERWRITE:
1356 ADD_CONFIG_TERM_VAL(OVERWRITE, overwrite,
1357 term->val.num ? 0 : 1, term->weak);
1359 case PARSE_EVENTS__TERM_TYPE_DRV_CFG:
1360 ADD_CONFIG_TERM_STR(DRV_CFG, term->val.str, term->weak);
1362 case PARSE_EVENTS__TERM_TYPE_PERCORE:
1363 ADD_CONFIG_TERM_VAL(PERCORE, percore,
1364 term->val.num ? true : false, term->weak);
1366 case PARSE_EVENTS__TERM_TYPE_AUX_OUTPUT:
1367 ADD_CONFIG_TERM_VAL(AUX_OUTPUT, aux_output,
1368 term->val.num ? 1 : 0, term->weak);
1370 case PARSE_EVENTS__TERM_TYPE_AUX_SAMPLE_SIZE:
1371 ADD_CONFIG_TERM_VAL(AUX_SAMPLE_SIZE, aux_sample_size,
1372 term->val.num, term->weak);
1382 * Add EVSEL__CONFIG_TERM_CFG_CHG where cfg_chg will have a bit set for
1383 * each bit of attr->config that the user has changed.
1385 static int get_config_chgs(struct perf_pmu *pmu, struct list_head *head_config,
1386 struct list_head *head_terms)
1388 struct parse_events_term *term;
1392 list_for_each_entry(term, head_config, list) {
1393 switch (term->type_term) {
1394 case PARSE_EVENTS__TERM_TYPE_USER:
1395 type = perf_pmu__format_type(&pmu->format, term->config);
1396 if (type != PERF_PMU_FORMAT_VALUE_CONFIG)
1398 bits |= perf_pmu__format_bits(&pmu->format, term->config);
1400 case PARSE_EVENTS__TERM_TYPE_CONFIG:
1409 ADD_CONFIG_TERM_VAL(CFG_CHG, cfg_chg, bits, false);
1411 #undef ADD_CONFIG_TERM
1415 int parse_events_add_tracepoint(struct list_head *list, int *idx,
1416 const char *sys, const char *event,
1417 struct parse_events_error *err,
1418 struct list_head *head_config)
1421 struct perf_event_attr attr;
1423 if (config_attr(&attr, head_config, err,
1424 config_term_tracepoint))
1428 if (strpbrk(sys, "*?"))
1429 return add_tracepoint_multi_sys(list, idx, sys, event,
1432 return add_tracepoint_event(list, idx, sys, event,
1436 int parse_events_add_numeric(struct parse_events_state *parse_state,
1437 struct list_head *list,
1438 u32 type, u64 config,
1439 struct list_head *head_config)
1441 struct perf_event_attr attr;
1442 LIST_HEAD(config_terms);
1446 memset(&attr, 0, sizeof(attr));
1448 attr.config = config;
1451 if (config_attr(&attr, head_config, parse_state->error,
1452 config_term_common))
1455 if (get_config_terms(head_config, &config_terms))
1459 ret = parse_events__add_numeric_hybrid(parse_state, list, &attr,
1460 get_config_name(head_config),
1461 &config_terms, &hybrid);
1463 goto out_free_terms;
1465 ret = add_event(list, &parse_state->idx, &attr,
1466 get_config_name(head_config), &config_terms);
1468 free_config_terms(&config_terms);
1472 int parse_events_add_tool(struct parse_events_state *parse_state,
1473 struct list_head *list,
1474 enum perf_tool_event tool_event)
1476 return add_event_tool(list, &parse_state->idx, tool_event);
1479 static bool config_term_percore(struct list_head *config_terms)
1481 struct evsel_config_term *term;
1483 list_for_each_entry(term, config_terms, list) {
1484 if (term->type == EVSEL__CONFIG_TERM_PERCORE)
1485 return term->val.percore;
1491 static int parse_events__inside_hybrid_pmu(struct parse_events_state *parse_state,
1492 struct list_head *list, char *name,
1493 struct list_head *head_config)
1495 struct parse_events_term *term;
1498 if (parse_state->fake_pmu || !head_config || list_empty(head_config) ||
1499 !perf_pmu__is_hybrid(name)) {
1504 * More than one term in list.
1506 if (head_config->next && head_config->next->next != head_config)
1509 term = list_first_entry(head_config, struct parse_events_term, list);
1510 if (term && term->config && strcmp(term->config, "event")) {
1511 ret = parse_events__with_hybrid_pmu(parse_state, term->config,
1518 int parse_events_add_pmu(struct parse_events_state *parse_state,
1519 struct list_head *list, char *name,
1520 struct list_head *head_config,
1521 bool auto_merge_stats,
1524 struct perf_event_attr attr;
1525 struct perf_pmu_info info;
1526 struct perf_pmu *pmu;
1527 struct evsel *evsel;
1528 struct parse_events_error *err = parse_state->error;
1529 bool use_uncore_alias;
1530 LIST_HEAD(config_terms);
1533 fprintf(stderr, "Attempting to add event pmu '%s' with '",
1536 struct parse_events_term *term;
1538 list_for_each_entry(term, head_config, list) {
1539 fprintf(stderr, "%s,", term->config);
1542 fprintf(stderr, "' that may result in non-fatal errors\n");
1545 pmu = parse_state->fake_pmu ?: perf_pmu__find(name);
1549 if (asprintf(&err_str,
1550 "Cannot find PMU `%s'. Missing kernel support?",
1552 parse_events__handle_error(err, 0, err_str, NULL);
1556 if (pmu->default_config) {
1557 memcpy(&attr, pmu->default_config,
1558 sizeof(struct perf_event_attr));
1560 memset(&attr, 0, sizeof(attr));
1563 use_uncore_alias = (pmu->is_uncore && use_alias);
1566 attr.type = pmu->type;
1567 evsel = __add_event(list, &parse_state->idx, &attr, true, NULL,
1568 pmu, NULL, auto_merge_stats, NULL);
1570 evsel->pmu_name = name ? strdup(name) : NULL;
1571 evsel->use_uncore_alias = use_uncore_alias;
1578 if (!parse_state->fake_pmu && perf_pmu__check_alias(pmu, head_config, &info))
1582 fprintf(stderr, "After aliases, add event pmu '%s' with '",
1585 struct parse_events_term *term;
1587 list_for_each_entry(term, head_config, list) {
1588 fprintf(stderr, "%s,", term->config);
1591 fprintf(stderr, "' that may result in non-fatal errors\n");
1595 * Configure hardcoded terms first, no need to check
1596 * return value when called with fail == 0 ;)
1598 if (config_attr(&attr, head_config, parse_state->error, config_term_pmu))
1601 if (get_config_terms(head_config, &config_terms))
1605 * When using default config, record which bits of attr->config were
1606 * changed by the user.
1608 if (pmu->default_config && get_config_chgs(pmu, head_config, &config_terms))
1611 if (!parse_events__inside_hybrid_pmu(parse_state, list, name,
1616 if (!parse_state->fake_pmu && perf_pmu__config(pmu, &attr, head_config, parse_state->error)) {
1617 free_config_terms(&config_terms);
1621 evsel = __add_event(list, &parse_state->idx, &attr, true,
1622 get_config_name(head_config), pmu,
1623 &config_terms, auto_merge_stats, NULL);
1628 evsel->use_config_name = true;
1630 evsel->pmu_name = name ? strdup(name) : NULL;
1631 evsel->use_uncore_alias = use_uncore_alias;
1632 evsel->percore = config_term_percore(&evsel->config_terms);
1634 if (parse_state->fake_pmu)
1637 evsel->unit = info.unit;
1638 evsel->scale = info.scale;
1639 evsel->per_pkg = info.per_pkg;
1640 evsel->snapshot = info.snapshot;
1641 evsel->metric_expr = info.metric_expr;
1642 evsel->metric_name = info.metric_name;
1646 int parse_events_multi_pmu_add(struct parse_events_state *parse_state,
1647 char *str, struct list_head **listp)
1649 struct parse_events_term *term;
1650 struct list_head *list;
1651 struct perf_pmu *pmu = NULL;
1655 /* Add it for all PMUs that support the alias */
1656 list = malloc(sizeof(struct list_head));
1659 INIT_LIST_HEAD(list);
1660 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1661 struct perf_pmu_alias *alias;
1663 list_for_each_entry(alias, &pmu->aliases, list) {
1664 if (!strcasecmp(alias->name, str)) {
1665 struct list_head *head;
1668 head = malloc(sizeof(struct list_head));
1671 INIT_LIST_HEAD(head);
1672 config = strdup(str);
1675 if (parse_events_term__num(&term,
1676 PARSE_EVENTS__TERM_TYPE_USER,
1677 config, 1, false, &config,
1683 list_add_tail(&term->list, head);
1685 if (!parse_events_add_pmu(parse_state, list,
1688 pr_debug("%s -> %s/%s/\n", str,
1689 pmu->name, alias->str);
1693 parse_events_terms__delete(head);
1705 int parse_events__modifier_group(struct list_head *list,
1708 return parse_events__modifier_event(list, event_mod, true);
1712 * Check if the two uncore PMUs are from the same uncore block
1713 * The format of the uncore PMU name is uncore_#blockname_#pmuidx
1715 static bool is_same_uncore_block(const char *pmu_name_a, const char *pmu_name_b)
1717 char *end_a, *end_b;
1719 end_a = strrchr(pmu_name_a, '_');
1720 end_b = strrchr(pmu_name_b, '_');
1722 if (!end_a || !end_b)
1725 if ((end_a - pmu_name_a) != (end_b - pmu_name_b))
1728 return (strncmp(pmu_name_a, pmu_name_b, end_a - pmu_name_a) == 0);
1732 parse_events__set_leader_for_uncore_aliase(char *name, struct list_head *list,
1733 struct parse_events_state *parse_state)
1735 struct evsel *evsel, *leader;
1737 bool is_leader = true;
1738 int i, nr_pmu = 0, total_members, ret = 0;
1740 leader = list_first_entry(list, struct evsel, core.node);
1741 evsel = list_last_entry(list, struct evsel, core.node);
1742 total_members = evsel->core.idx - leader->core.idx + 1;
1744 leaders = calloc(total_members, sizeof(uintptr_t));
1745 if (WARN_ON(!leaders))
1749 * Going through the whole group and doing sanity check.
1750 * All members must use alias, and be from the same uncore block.
1751 * Also, storing the leader events in an array.
1753 __evlist__for_each_entry(list, evsel) {
1755 /* Only split the uncore group which members use alias */
1756 if (!evsel->use_uncore_alias)
1759 /* The events must be from the same uncore block */
1760 if (!is_same_uncore_block(leader->pmu_name, evsel->pmu_name))
1766 * If the event's PMU name starts to repeat, it must be a new
1767 * event. That can be used to distinguish the leader from
1768 * other members, even they have the same event name.
1770 if ((leader != evsel) &&
1771 !strcmp(leader->pmu_name, evsel->pmu_name)) {
1776 /* Store the leader event for each PMU */
1777 leaders[nr_pmu++] = (uintptr_t) evsel;
1780 /* only one event alias */
1781 if (nr_pmu == total_members) {
1782 parse_state->nr_groups--;
1787 * An uncore event alias is a joint name which means the same event
1788 * runs on all PMUs of a block.
1789 * Perf doesn't support mixed events from different PMUs in the same
1790 * group. The big group has to be split into multiple small groups
1791 * which only include the events from the same PMU.
1793 * Here the uncore event aliases must be from the same uncore block.
1794 * The number of PMUs must be same for each alias. The number of new
1795 * small groups equals to the number of PMUs.
1796 * Setting the leader event for corresponding members in each group.
1799 __evlist__for_each_entry(list, evsel) {
1802 evsel__set_leader(evsel, (struct evsel *) leaders[i++]);
1805 /* The number of members and group name are same for each group */
1806 for (i = 0; i < nr_pmu; i++) {
1807 evsel = (struct evsel *) leaders[i];
1808 evsel->core.nr_members = total_members / nr_pmu;
1809 evsel->group_name = name ? strdup(name) : NULL;
1812 /* Take the new small groups into account */
1813 parse_state->nr_groups += nr_pmu - 1;
1822 void parse_events__set_leader(char *name, struct list_head *list,
1823 struct parse_events_state *parse_state)
1825 struct evsel *leader;
1827 if (list_empty(list)) {
1828 WARN_ONCE(true, "WARNING: failed to set leader: empty list");
1832 if (parse_events__set_leader_for_uncore_aliase(name, list, parse_state))
1835 __perf_evlist__set_leader(list);
1836 leader = list_entry(list->next, struct evsel, core.node);
1837 leader->group_name = name ? strdup(name) : NULL;
1840 /* list_event is assumed to point to malloc'ed memory */
1841 void parse_events_update_lists(struct list_head *list_event,
1842 struct list_head *list_all)
1845 * Called for single event definition. Update the
1846 * 'all event' list, and reinit the 'single event'
1847 * list, for next event definition.
1849 list_splice_tail(list_event, list_all);
1853 struct event_modifier {
1870 static int get_event_modifier(struct event_modifier *mod, char *str,
1871 struct evsel *evsel)
1873 int eu = evsel ? evsel->core.attr.exclude_user : 0;
1874 int ek = evsel ? evsel->core.attr.exclude_kernel : 0;
1875 int eh = evsel ? evsel->core.attr.exclude_hv : 0;
1876 int eH = evsel ? evsel->core.attr.exclude_host : 0;
1877 int eG = evsel ? evsel->core.attr.exclude_guest : 0;
1878 int eI = evsel ? evsel->core.attr.exclude_idle : 0;
1879 int precise = evsel ? evsel->core.attr.precise_ip : 0;
1880 int precise_max = 0;
1881 int sample_read = 0;
1882 int pinned = evsel ? evsel->core.attr.pinned : 0;
1883 int exclusive = evsel ? evsel->core.attr.exclusive : 0;
1885 int exclude = eu | ek | eh;
1886 int exclude_GH = evsel ? evsel->exclude_GH : 0;
1888 int bpf_counter = 0;
1890 memset(mod, 0, sizeof(*mod));
1895 exclude = eu = ek = eh = 1;
1896 if (!exclude_GH && !perf_guest)
1899 } else if (*str == 'k') {
1901 exclude = eu = ek = eh = 1;
1903 } else if (*str == 'h') {
1905 exclude = eu = ek = eh = 1;
1907 } else if (*str == 'G') {
1909 exclude_GH = eG = eH = 1;
1911 } else if (*str == 'H') {
1913 exclude_GH = eG = eH = 1;
1915 } else if (*str == 'I') {
1917 } else if (*str == 'p') {
1919 /* use of precise requires exclude_guest */
1922 } else if (*str == 'P') {
1924 } else if (*str == 'S') {
1926 } else if (*str == 'D') {
1928 } else if (*str == 'e') {
1930 } else if (*str == 'W') {
1932 } else if (*str == 'b') {
1943 * 0 - SAMPLE_IP can have arbitrary skid
1944 * 1 - SAMPLE_IP must have constant skid
1945 * 2 - SAMPLE_IP requested to have 0 skid
1946 * 3 - SAMPLE_IP must have 0 skid
1948 * See also PERF_RECORD_MISC_EXACT_IP
1959 mod->precise = precise;
1960 mod->precise_max = precise_max;
1961 mod->exclude_GH = exclude_GH;
1962 mod->sample_read = sample_read;
1963 mod->pinned = pinned;
1965 mod->bpf_counter = bpf_counter;
1966 mod->exclusive = exclusive;
1972 * Basic modifier sanity check to validate it contains only one
1973 * instance of any modifier (apart from 'p') present.
1975 static int check_modifier(char *str)
1979 /* The sizeof includes 0 byte as well. */
1980 if (strlen(str) > (sizeof("ukhGHpppPSDIWeb") - 1))
1984 if (*p != 'p' && strchr(p + 1, *p))
1992 int parse_events__modifier_event(struct list_head *list, char *str, bool add)
1994 struct evsel *evsel;
1995 struct event_modifier mod;
2000 if (check_modifier(str))
2003 if (!add && get_event_modifier(&mod, str, NULL))
2006 __evlist__for_each_entry(list, evsel) {
2007 if (add && get_event_modifier(&mod, str, evsel))
2010 evsel->core.attr.exclude_user = mod.eu;
2011 evsel->core.attr.exclude_kernel = mod.ek;
2012 evsel->core.attr.exclude_hv = mod.eh;
2013 evsel->core.attr.precise_ip = mod.precise;
2014 evsel->core.attr.exclude_host = mod.eH;
2015 evsel->core.attr.exclude_guest = mod.eG;
2016 evsel->core.attr.exclude_idle = mod.eI;
2017 evsel->exclude_GH = mod.exclude_GH;
2018 evsel->sample_read = mod.sample_read;
2019 evsel->precise_max = mod.precise_max;
2020 evsel->weak_group = mod.weak;
2021 evsel->bpf_counter = mod.bpf_counter;
2023 if (evsel__is_group_leader(evsel)) {
2024 evsel->core.attr.pinned = mod.pinned;
2025 evsel->core.attr.exclusive = mod.exclusive;
2032 int parse_events_name(struct list_head *list, char *name)
2034 struct evsel *evsel;
2036 __evlist__for_each_entry(list, evsel) {
2038 evsel->name = strdup(name);
2045 comp_pmu(const void *p1, const void *p2)
2047 struct perf_pmu_event_symbol *pmu1 = (struct perf_pmu_event_symbol *) p1;
2048 struct perf_pmu_event_symbol *pmu2 = (struct perf_pmu_event_symbol *) p2;
2050 return strcasecmp(pmu1->symbol, pmu2->symbol);
2053 static void perf_pmu__parse_cleanup(void)
2055 if (perf_pmu_events_list_num > 0) {
2056 struct perf_pmu_event_symbol *p;
2059 for (i = 0; i < perf_pmu_events_list_num; i++) {
2060 p = perf_pmu_events_list + i;
2063 zfree(&perf_pmu_events_list);
2064 perf_pmu_events_list_num = 0;
2068 #define SET_SYMBOL(str, stype) \
2077 * Read the pmu events list from sysfs
2078 * Save it into perf_pmu_events_list
2080 static void perf_pmu__parse_init(void)
2083 struct perf_pmu *pmu = NULL;
2084 struct perf_pmu_alias *alias;
2088 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
2089 list_for_each_entry(alias, &pmu->aliases, list) {
2090 if (strchr(alias->name, '-'))
2097 perf_pmu_events_list_num = -1;
2100 perf_pmu_events_list = malloc(sizeof(struct perf_pmu_event_symbol) * len);
2101 if (!perf_pmu_events_list)
2103 perf_pmu_events_list_num = len;
2107 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
2108 list_for_each_entry(alias, &pmu->aliases, list) {
2109 struct perf_pmu_event_symbol *p = perf_pmu_events_list + len;
2110 char *tmp = strchr(alias->name, '-');
2113 SET_SYMBOL(strndup(alias->name, tmp - alias->name),
2114 PMU_EVENT_SYMBOL_PREFIX);
2116 SET_SYMBOL(strdup(++tmp), PMU_EVENT_SYMBOL_SUFFIX);
2119 SET_SYMBOL(strdup(alias->name), PMU_EVENT_SYMBOL);
2124 qsort(perf_pmu_events_list, len,
2125 sizeof(struct perf_pmu_event_symbol), comp_pmu);
2129 perf_pmu__parse_cleanup();
2133 * This function injects special term in
2134 * perf_pmu_events_list so the test code
2135 * can check on this functionality.
2137 int perf_pmu__test_parse_init(void)
2139 struct perf_pmu_event_symbol *list;
2141 list = malloc(sizeof(*list) * 1);
2145 list->type = PMU_EVENT_SYMBOL;
2146 list->symbol = strdup("read");
2148 if (!list->symbol) {
2153 perf_pmu_events_list = list;
2154 perf_pmu_events_list_num = 1;
2158 enum perf_pmu_event_symbol_type
2159 perf_pmu__parse_check(const char *name)
2161 struct perf_pmu_event_symbol p, *r;
2163 /* scan kernel pmu events from sysfs if needed */
2164 if (perf_pmu_events_list_num == 0)
2165 perf_pmu__parse_init();
2167 * name "cpu" could be prefix of cpu-cycles or cpu// events.
2168 * cpu-cycles has been handled by hardcode.
2169 * So it must be cpu// events, not kernel pmu event.
2171 if ((perf_pmu_events_list_num <= 0) || !strcmp(name, "cpu"))
2172 return PMU_EVENT_SYMBOL_ERR;
2174 p.symbol = strdup(name);
2175 r = bsearch(&p, perf_pmu_events_list,
2176 (size_t) perf_pmu_events_list_num,
2177 sizeof(struct perf_pmu_event_symbol), comp_pmu);
2179 return r ? r->type : PMU_EVENT_SYMBOL_ERR;
2182 static int parse_events__scanner(const char *str,
2183 struct parse_events_state *parse_state)
2185 YY_BUFFER_STATE buffer;
2189 ret = parse_events_lex_init_extra(parse_state, &scanner);
2193 buffer = parse_events__scan_string(str, scanner);
2196 parse_events_debug = 1;
2197 parse_events_set_debug(1, scanner);
2199 ret = parse_events_parse(parse_state, scanner);
2201 parse_events__flush_buffer(buffer, scanner);
2202 parse_events__delete_buffer(buffer, scanner);
2203 parse_events_lex_destroy(scanner);
2208 * parse event config string, return a list of event terms.
2210 int parse_events_terms(struct list_head *terms, const char *str)
2212 struct parse_events_state parse_state = {
2214 .stoken = PE_START_TERMS,
2218 ret = parse_events__scanner(str, &parse_state);
2219 perf_pmu__parse_cleanup();
2222 list_splice(parse_state.terms, terms);
2223 zfree(&parse_state.terms);
2227 parse_events_terms__delete(parse_state.terms);
2231 static int parse_events__with_hybrid_pmu(struct parse_events_state *parse_state,
2232 const char *str, char *pmu_name,
2233 struct list_head *list)
2235 struct parse_events_state ps = {
2236 .list = LIST_HEAD_INIT(ps.list),
2237 .stoken = PE_START_EVENTS,
2238 .hybrid_pmu_name = pmu_name,
2239 .idx = parse_state->idx,
2243 ret = parse_events__scanner(str, &ps);
2244 perf_pmu__parse_cleanup();
2247 if (!list_empty(&ps.list)) {
2248 list_splice(&ps.list, list);
2249 parse_state->idx = ps.idx;
2258 int __parse_events(struct evlist *evlist, const char *str,
2259 struct parse_events_error *err, struct perf_pmu *fake_pmu)
2261 struct parse_events_state parse_state = {
2262 .list = LIST_HEAD_INIT(parse_state.list),
2263 .idx = evlist->core.nr_entries,
2266 .stoken = PE_START_EVENTS,
2267 .fake_pmu = fake_pmu,
2271 ret = parse_events__scanner(str, &parse_state);
2272 perf_pmu__parse_cleanup();
2274 if (!ret && list_empty(&parse_state.list)) {
2275 WARN_ONCE(true, "WARNING: event parser found nothing\n");
2280 * Add list to the evlist even with errors to allow callers to clean up.
2282 evlist__splice_list_tail(evlist, &parse_state.list);
2287 evlist->core.nr_groups += parse_state.nr_groups;
2288 last = evlist__last(evlist);
2289 last->cmdline_group_boundary = true;
2295 * There are 2 users - builtin-record and builtin-test objects.
2296 * Both call evlist__delete in case of error, so we dont
2302 #define MAX_WIDTH 1000
2303 static int get_term_width(void)
2307 get_term_dimensions(&ws);
2308 return ws.ws_col > MAX_WIDTH ? MAX_WIDTH : ws.ws_col;
2311 static void __parse_events_print_error(int err_idx, const char *err_str,
2312 const char *err_help, const char *event)
2314 const char *str = "invalid or unsupported event: ";
2315 char _buf[MAX_WIDTH];
2316 char *buf = (char *) event;
2319 /* -2 for extra '' in the final fprintf */
2320 int width = get_term_width() - 2;
2321 int len_event = strlen(event);
2322 int len_str, max_len, cut = 0;
2325 * Maximum error index indent, we will cut
2326 * the event string if it's bigger.
2328 int max_err_idx = 13;
2331 * Let's be specific with the message when
2332 * we have the precise error.
2334 str = "event syntax error: ";
2335 len_str = strlen(str);
2336 max_len = width - len_str;
2340 /* We're cutting from the beginning. */
2341 if (err_idx > max_err_idx)
2342 cut = err_idx - max_err_idx;
2344 strncpy(buf, event + cut, max_len);
2346 /* Mark cut parts with '..' on both sides. */
2348 buf[0] = buf[1] = '.';
2350 if ((len_event - cut) > max_len) {
2351 buf[max_len - 1] = buf[max_len - 2] = '.';
2355 idx = len_str + err_idx - cut;
2358 fprintf(stderr, "%s'%s'\n", str, buf);
2360 fprintf(stderr, "%*s\\___ %s\n", idx + 1, "", err_str);
2362 fprintf(stderr, "\n%s\n", err_help);
2366 void parse_events_print_error(struct parse_events_error *err,
2369 if (!err->num_errors)
2372 __parse_events_print_error(err->idx, err->str, err->help, event);
2376 if (err->num_errors > 1) {
2377 fputs("\nInitial error:\n", stderr);
2378 __parse_events_print_error(err->first_idx, err->first_str,
2379 err->first_help, event);
2380 zfree(&err->first_str);
2381 zfree(&err->first_help);
2387 int parse_events_option(const struct option *opt, const char *str,
2388 int unset __maybe_unused)
2390 struct evlist *evlist = *(struct evlist **)opt->value;
2391 struct parse_events_error err;
2394 bzero(&err, sizeof(err));
2395 ret = parse_events(evlist, str, &err);
2398 parse_events_print_error(&err, str);
2399 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
2405 int parse_events_option_new_evlist(const struct option *opt, const char *str, int unset)
2407 struct evlist **evlistp = opt->value;
2410 if (*evlistp == NULL) {
2411 *evlistp = evlist__new();
2413 if (*evlistp == NULL) {
2414 fprintf(stderr, "Not enough memory to create evlist\n");
2419 ret = parse_events_option(opt, str, unset);
2421 evlist__delete(*evlistp);
2429 foreach_evsel_in_last_glob(struct evlist *evlist,
2430 int (*func)(struct evsel *evsel,
2434 struct evsel *last = NULL;
2438 * Don't return when list_empty, give func a chance to report
2439 * error when it found last == NULL.
2441 * So no need to WARN here, let *func do this.
2443 if (evlist->core.nr_entries > 0)
2444 last = evlist__last(evlist);
2447 err = (*func)(last, arg);
2453 if (last->core.node.prev == &evlist->core.entries)
2455 last = list_entry(last->core.node.prev, struct evsel, core.node);
2456 } while (!last->cmdline_group_boundary);
2461 static int set_filter(struct evsel *evsel, const void *arg)
2463 const char *str = arg;
2465 int nr_addr_filters = 0;
2466 struct perf_pmu *pmu = NULL;
2468 if (evsel == NULL) {
2470 "--filter option should follow a -e tracepoint or HW tracer option\n");
2474 if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT) {
2475 if (evsel__append_tp_filter(evsel, str) < 0) {
2477 "not enough memory to hold filter string\n");
2484 while ((pmu = perf_pmu__scan(pmu)) != NULL)
2485 if (pmu->type == evsel->core.attr.type) {
2491 perf_pmu__scan_file(pmu, "nr_addr_filters",
2492 "%d", &nr_addr_filters);
2494 if (!nr_addr_filters) {
2496 "This CPU does not support address filtering\n");
2500 if (evsel__append_addr_filter(evsel, str) < 0) {
2502 "not enough memory to hold filter string\n");
2509 int parse_filter(const struct option *opt, const char *str,
2510 int unset __maybe_unused)
2512 struct evlist *evlist = *(struct evlist **)opt->value;
2514 return foreach_evsel_in_last_glob(evlist, set_filter,
2518 static int add_exclude_perf_filter(struct evsel *evsel,
2519 const void *arg __maybe_unused)
2521 char new_filter[64];
2523 if (evsel == NULL || evsel->core.attr.type != PERF_TYPE_TRACEPOINT) {
2525 "--exclude-perf option should follow a -e tracepoint option\n");
2529 snprintf(new_filter, sizeof(new_filter), "common_pid != %d", getpid());
2531 if (evsel__append_tp_filter(evsel, new_filter) < 0) {
2533 "not enough memory to hold filter string\n");
2540 int exclude_perf(const struct option *opt,
2541 const char *arg __maybe_unused,
2542 int unset __maybe_unused)
2544 struct evlist *evlist = *(struct evlist **)opt->value;
2546 return foreach_evsel_in_last_glob(evlist, add_exclude_perf_filter,
2550 static const char * const event_type_descriptors[] = {
2554 "Hardware cache event",
2555 "Raw hardware event descriptor",
2556 "Hardware breakpoint",
2559 static int cmp_string(const void *a, const void *b)
2561 const char * const *as = a;
2562 const char * const *bs = b;
2564 return strcmp(*as, *bs);
2568 * Print the events from <debugfs_mount_point>/tracing/events
2571 void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
2574 DIR *sys_dir, *evt_dir;
2575 struct dirent *sys_dirent, *evt_dirent;
2576 char evt_path[MAXPATHLEN];
2578 char **evt_list = NULL;
2579 unsigned int evt_i = 0, evt_num = 0;
2580 bool evt_num_known = false;
2583 sys_dir = tracing_events__opendir();
2587 if (evt_num_known) {
2588 evt_list = zalloc(sizeof(char *) * evt_num);
2590 goto out_close_sys_dir;
2593 for_each_subsystem(sys_dir, sys_dirent) {
2594 if (subsys_glob != NULL &&
2595 !strglobmatch(sys_dirent->d_name, subsys_glob))
2598 dir_path = get_events_file(sys_dirent->d_name);
2601 evt_dir = opendir(dir_path);
2605 for_each_event(dir_path, evt_dir, evt_dirent) {
2606 if (event_glob != NULL &&
2607 !strglobmatch(evt_dirent->d_name, event_glob))
2610 if (!evt_num_known) {
2615 snprintf(evt_path, MAXPATHLEN, "%s:%s",
2616 sys_dirent->d_name, evt_dirent->d_name);
2618 evt_list[evt_i] = strdup(evt_path);
2619 if (evt_list[evt_i] == NULL) {
2620 put_events_file(dir_path);
2621 goto out_close_evt_dir;
2627 put_events_file(dir_path);
2631 if (!evt_num_known) {
2632 evt_num_known = true;
2635 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2637 while (evt_i < evt_num) {
2639 printf("%s ", evt_list[evt_i++]);
2642 printf(" %-50s [%s]\n", evt_list[evt_i++],
2643 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
2645 if (evt_num && pager_in_use())
2650 for (evt_i = 0; evt_i < evt_num; evt_i++)
2651 zfree(&evt_list[evt_i]);
2660 printf("FATAL: not enough memory to print %s\n",
2661 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
2667 * Check whether event is in <debugfs_mount_point>/tracing/events
2670 int is_valid_tracepoint(const char *event_string)
2672 DIR *sys_dir, *evt_dir;
2673 struct dirent *sys_dirent, *evt_dirent;
2674 char evt_path[MAXPATHLEN];
2677 sys_dir = tracing_events__opendir();
2681 for_each_subsystem(sys_dir, sys_dirent) {
2682 dir_path = get_events_file(sys_dirent->d_name);
2685 evt_dir = opendir(dir_path);
2689 for_each_event(dir_path, evt_dir, evt_dirent) {
2690 snprintf(evt_path, MAXPATHLEN, "%s:%s",
2691 sys_dirent->d_name, evt_dirent->d_name);
2692 if (!strcmp(evt_path, event_string)) {
2700 put_events_file(dir_path);
2706 static bool is_event_supported(u8 type, unsigned config)
2710 struct evsel *evsel;
2711 struct perf_event_attr attr = {
2716 struct perf_thread_map *tmap = thread_map__new_by_tid(0);
2721 evsel = evsel__new(&attr);
2723 open_return = evsel__open(evsel, NULL, tmap);
2724 ret = open_return >= 0;
2726 if (open_return == -EACCES) {
2728 * This happens if the paranoid value
2729 * /proc/sys/kernel/perf_event_paranoid is set to 2
2730 * Re-run with exclude_kernel set; we don't do that
2731 * by default as some ARM machines do not support it.
2734 evsel->core.attr.exclude_kernel = 1;
2735 ret = evsel__open(evsel, NULL, tmap) >= 0;
2737 evsel__delete(evsel);
2740 perf_thread_map__put(tmap);
2744 void print_sdt_events(const char *subsys_glob, const char *event_glob,
2747 struct probe_cache *pcache;
2748 struct probe_cache_entry *ent;
2749 struct strlist *bidlist, *sdtlist;
2750 struct strlist_config cfg = {.dont_dupstr = true};
2751 struct str_node *nd, *nd2;
2752 char *buf, *path, *ptr = NULL;
2753 bool show_detail = false;
2756 sdtlist = strlist__new(NULL, &cfg);
2758 pr_debug("Failed to allocate new strlist for SDT\n");
2761 bidlist = build_id_cache__list_all(true);
2763 pr_debug("Failed to get buildids: %d\n", errno);
2766 strlist__for_each_entry(nd, bidlist) {
2767 pcache = probe_cache__new(nd->s, NULL);
2770 list_for_each_entry(ent, &pcache->entries, node) {
2774 !strglobmatch(ent->pev.group, subsys_glob))
2777 !strglobmatch(ent->pev.event, event_glob))
2779 ret = asprintf(&buf, "%s:%s@%s", ent->pev.group,
2780 ent->pev.event, nd->s);
2782 strlist__add(sdtlist, buf);
2784 probe_cache__delete(pcache);
2786 strlist__delete(bidlist);
2788 strlist__for_each_entry(nd, sdtlist) {
2789 buf = strchr(nd->s, '@');
2793 printf("%s ", nd->s);
2796 nd2 = strlist__next(nd);
2798 ptr = strchr(nd2->s, '@');
2801 if (strcmp(nd->s, nd2->s) == 0)
2805 path = build_id_cache__origname(buf);
2806 ret = asprintf(&buf, "%s@%s(%.12s)", nd->s, path, buf);
2808 printf(" %-50s [%s]\n", buf, "SDT event");
2813 printf(" %-50s [%s]\n", nd->s, "SDT event");
2815 if (strcmp(nd->s, nd2->s) != 0)
2816 show_detail = false;
2821 strlist__delete(sdtlist);
2824 int print_hwcache_events(const char *event_glob, bool name_only)
2826 unsigned int type, op, i, evt_i = 0, evt_num = 0;
2828 char **evt_list = NULL;
2829 bool evt_num_known = false;
2832 if (evt_num_known) {
2833 evt_list = zalloc(sizeof(char *) * evt_num);
2838 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
2839 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
2840 /* skip invalid cache type */
2841 if (!evsel__is_cache_op_valid(type, op))
2844 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
2845 __evsel__hw_cache_type_op_res_name(type, op, i, name, sizeof(name));
2846 if (event_glob != NULL && !strglobmatch(name, event_glob))
2849 if (!is_event_supported(PERF_TYPE_HW_CACHE,
2850 type | (op << 8) | (i << 16)))
2853 if (!evt_num_known) {
2858 evt_list[evt_i] = strdup(name);
2859 if (evt_list[evt_i] == NULL)
2866 if (!evt_num_known) {
2867 evt_num_known = true;
2870 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2872 while (evt_i < evt_num) {
2874 printf("%s ", evt_list[evt_i++]);
2877 printf(" %-50s [%s]\n", evt_list[evt_i++],
2878 event_type_descriptors[PERF_TYPE_HW_CACHE]);
2880 if (evt_num && pager_in_use())
2885 for (evt_i = 0; evt_i < evt_num; evt_i++)
2886 zfree(&evt_list[evt_i]);
2891 printf("FATAL: not enough memory to print %s\n", event_type_descriptors[PERF_TYPE_HW_CACHE]);
2897 static void print_tool_event(const char *name, const char *event_glob,
2900 if (event_glob && !strglobmatch(name, event_glob))
2903 printf("%s ", name);
2905 printf(" %-50s [%s]\n", name, "Tool event");
2909 void print_tool_events(const char *event_glob, bool name_only)
2911 print_tool_event("duration_time", event_glob, name_only);
2916 void print_symbol_events(const char *event_glob, unsigned type,
2917 struct event_symbol *syms, unsigned max,
2920 unsigned int i, evt_i = 0, evt_num = 0;
2921 char name[MAX_NAME_LEN];
2922 char **evt_list = NULL;
2923 bool evt_num_known = false;
2926 if (evt_num_known) {
2927 evt_list = zalloc(sizeof(char *) * evt_num);
2933 for (i = 0; i < max; i++, syms++) {
2935 * New attr.config still not supported here, the latest
2936 * example was PERF_COUNT_SW_CGROUP_SWITCHES
2938 if (syms->symbol == NULL)
2941 if (event_glob != NULL && !(strglobmatch(syms->symbol, event_glob) ||
2942 (syms->alias && strglobmatch(syms->alias, event_glob))))
2945 if (!is_event_supported(type, i))
2948 if (!evt_num_known) {
2953 if (!name_only && strlen(syms->alias))
2954 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
2956 strlcpy(name, syms->symbol, MAX_NAME_LEN);
2958 evt_list[evt_i] = strdup(name);
2959 if (evt_list[evt_i] == NULL)
2964 if (!evt_num_known) {
2965 evt_num_known = true;
2968 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2970 while (evt_i < evt_num) {
2972 printf("%s ", evt_list[evt_i++]);
2975 printf(" %-50s [%s]\n", evt_list[evt_i++], event_type_descriptors[type]);
2977 if (evt_num && pager_in_use())
2982 for (evt_i = 0; evt_i < evt_num; evt_i++)
2983 zfree(&evt_list[evt_i]);
2988 printf("FATAL: not enough memory to print %s\n", event_type_descriptors[type]);
2994 * Print the help text for the event symbols:
2996 void print_events(const char *event_glob, bool name_only, bool quiet_flag,
2997 bool long_desc, bool details_flag, bool deprecated)
2999 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
3000 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
3002 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
3003 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
3004 print_tool_events(event_glob, name_only);
3006 print_hwcache_events(event_glob, name_only);
3008 print_pmu_events(event_glob, name_only, quiet_flag, long_desc,
3009 details_flag, deprecated);
3011 if (event_glob != NULL)
3015 printf(" %-50s [%s]\n",
3017 event_type_descriptors[PERF_TYPE_RAW]);
3018 printf(" %-50s [%s]\n",
3019 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
3020 event_type_descriptors[PERF_TYPE_RAW]);
3022 printf(" (see 'man perf-list' on how to encode it)\n\n");
3024 printf(" %-50s [%s]\n",
3025 "mem:<addr>[/len][:access]",
3026 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
3031 print_tracepoint_events(NULL, NULL, name_only);
3033 print_sdt_events(NULL, NULL, name_only);
3035 metricgroup__print(true, true, NULL, name_only, details_flag);
3037 print_libpfm_events(name_only, long_desc);
3040 int parse_events__is_hardcoded_term(struct parse_events_term *term)
3042 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
3045 static int new_term(struct parse_events_term **_term,
3046 struct parse_events_term *temp,
3049 struct parse_events_term *term;
3051 term = malloc(sizeof(*term));
3056 INIT_LIST_HEAD(&term->list);
3059 switch (term->type_val) {
3060 case PARSE_EVENTS__TERM_TYPE_NUM:
3061 term->val.num = num;
3063 case PARSE_EVENTS__TERM_TYPE_STR:
3064 term->val.str = str;
3075 int parse_events_term__num(struct parse_events_term **term,
3076 int type_term, char *config, u64 num,
3078 void *loc_term_, void *loc_val_)
3080 YYLTYPE *loc_term = loc_term_;
3081 YYLTYPE *loc_val = loc_val_;
3083 struct parse_events_term temp = {
3084 .type_val = PARSE_EVENTS__TERM_TYPE_NUM,
3085 .type_term = type_term,
3087 .no_value = no_value,
3088 .err_term = loc_term ? loc_term->first_column : 0,
3089 .err_val = loc_val ? loc_val->first_column : 0,
3092 return new_term(term, &temp, NULL, num);
3095 int parse_events_term__str(struct parse_events_term **term,
3096 int type_term, char *config, char *str,
3097 void *loc_term_, void *loc_val_)
3099 YYLTYPE *loc_term = loc_term_;
3100 YYLTYPE *loc_val = loc_val_;
3102 struct parse_events_term temp = {
3103 .type_val = PARSE_EVENTS__TERM_TYPE_STR,
3104 .type_term = type_term,
3106 .err_term = loc_term ? loc_term->first_column : 0,
3107 .err_val = loc_val ? loc_val->first_column : 0,
3110 return new_term(term, &temp, str, 0);
3113 int parse_events_term__sym_hw(struct parse_events_term **term,
3114 char *config, unsigned idx)
3116 struct event_symbol *sym;
3118 struct parse_events_term temp = {
3119 .type_val = PARSE_EVENTS__TERM_TYPE_STR,
3120 .type_term = PARSE_EVENTS__TERM_TYPE_USER,
3125 temp.config = strdup("event");
3129 BUG_ON(idx >= PERF_COUNT_HW_MAX);
3130 sym = &event_symbols_hw[idx];
3132 str = strdup(sym->symbol);
3135 return new_term(term, &temp, str, 0);
3138 int parse_events_term__clone(struct parse_events_term **new,
3139 struct parse_events_term *term)
3142 struct parse_events_term temp = {
3143 .type_val = term->type_val,
3144 .type_term = term->type_term,
3146 .err_term = term->err_term,
3147 .err_val = term->err_val,
3151 temp.config = strdup(term->config);
3155 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM)
3156 return new_term(new, &temp, NULL, term->val.num);
3158 str = strdup(term->val.str);
3161 return new_term(new, &temp, str, 0);
3164 void parse_events_term__delete(struct parse_events_term *term)
3166 if (term->array.nr_ranges)
3167 zfree(&term->array.ranges);
3169 if (term->type_val != PARSE_EVENTS__TERM_TYPE_NUM)
3170 zfree(&term->val.str);
3172 zfree(&term->config);
3176 int parse_events_copy_term_list(struct list_head *old,
3177 struct list_head **new)
3179 struct parse_events_term *term, *n;
3187 *new = malloc(sizeof(struct list_head));
3190 INIT_LIST_HEAD(*new);
3192 list_for_each_entry (term, old, list) {
3193 ret = parse_events_term__clone(&n, term);
3196 list_add_tail(&n->list, *new);
3201 void parse_events_terms__purge(struct list_head *terms)
3203 struct parse_events_term *term, *h;
3205 list_for_each_entry_safe(term, h, terms, list) {
3206 list_del_init(&term->list);
3207 parse_events_term__delete(term);
3211 void parse_events_terms__delete(struct list_head *terms)
3215 parse_events_terms__purge(terms);
3219 void parse_events__clear_array(struct parse_events_array *a)
3224 void parse_events_evlist_error(struct parse_events_state *parse_state,
3225 int idx, const char *str)
3227 if (!parse_state->error)
3230 parse_events__handle_error(parse_state->error, idx, strdup(str), NULL);
3233 static void config_terms_list(char *buf, size_t buf_sz)
3239 for (i = 0; i < __PARSE_EVENTS__TERM_TYPE_NR; i++) {
3240 const char *name = config_term_names[i];
3242 if (!config_term_avail(i, NULL))
3249 if (strlen(buf) + strlen(name) + 2 >= buf_sz)
3261 * Return string contains valid config terms of an event.
3262 * @additional_terms: For terms such as PMU sysfs terms.
3264 char *parse_events_formats_error_string(char *additional_terms)
3267 /* "no-overwrite" is the longest name */
3268 char static_terms[__PARSE_EVENTS__TERM_TYPE_NR *
3269 (sizeof("no-overwrite") - 1)];
3271 config_terms_list(static_terms, sizeof(static_terms));
3273 if (additional_terms) {
3274 if (asprintf(&str, "valid terms: %s,%s",
3275 additional_terms, static_terms) < 0)
3278 if (asprintf(&str, "valid terms: %s", static_terms) < 0)
3287 struct evsel *parse_events__add_event_hybrid(struct list_head *list, int *idx,
3288 struct perf_event_attr *attr,
3289 char *name, struct perf_pmu *pmu,
3290 struct list_head *config_terms)
3292 return __add_event(list, idx, attr, true, name, pmu,
3293 config_terms, false, NULL);