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);
1532 pmu = parse_state->fake_pmu ?: perf_pmu__find(name);
1534 if (verbose > 1 && !(pmu && pmu->selectable)) {
1535 fprintf(stderr, "Attempting to add event pmu '%s' with '",
1538 struct parse_events_term *term;
1540 list_for_each_entry(term, head_config, list) {
1541 fprintf(stderr, "%s,", term->config);
1544 fprintf(stderr, "' that may result in non-fatal errors\n");
1550 if (asprintf(&err_str,
1551 "Cannot find PMU `%s'. Missing kernel support?",
1553 parse_events__handle_error(err, 0, err_str, NULL);
1557 if (pmu->default_config) {
1558 memcpy(&attr, pmu->default_config,
1559 sizeof(struct perf_event_attr));
1561 memset(&attr, 0, sizeof(attr));
1564 use_uncore_alias = (pmu->is_uncore && use_alias);
1567 attr.type = pmu->type;
1568 evsel = __add_event(list, &parse_state->idx, &attr, true, NULL,
1569 pmu, NULL, auto_merge_stats, NULL);
1571 evsel->pmu_name = name ? strdup(name) : NULL;
1572 evsel->use_uncore_alias = use_uncore_alias;
1579 if (!parse_state->fake_pmu && perf_pmu__check_alias(pmu, head_config, &info))
1583 fprintf(stderr, "After aliases, add event pmu '%s' with '",
1586 struct parse_events_term *term;
1588 list_for_each_entry(term, head_config, list) {
1589 fprintf(stderr, "%s,", term->config);
1592 fprintf(stderr, "' that may result in non-fatal errors\n");
1596 * Configure hardcoded terms first, no need to check
1597 * return value when called with fail == 0 ;)
1599 if (config_attr(&attr, head_config, parse_state->error, config_term_pmu))
1602 if (get_config_terms(head_config, &config_terms))
1606 * When using default config, record which bits of attr->config were
1607 * changed by the user.
1609 if (pmu->default_config && get_config_chgs(pmu, head_config, &config_terms))
1612 if (!parse_events__inside_hybrid_pmu(parse_state, list, name,
1617 if (!parse_state->fake_pmu && perf_pmu__config(pmu, &attr, head_config, parse_state->error)) {
1618 free_config_terms(&config_terms);
1622 evsel = __add_event(list, &parse_state->idx, &attr, true,
1623 get_config_name(head_config), pmu,
1624 &config_terms, auto_merge_stats, NULL);
1629 evsel->use_config_name = true;
1631 evsel->pmu_name = name ? strdup(name) : NULL;
1632 evsel->use_uncore_alias = use_uncore_alias;
1633 evsel->percore = config_term_percore(&evsel->config_terms);
1635 if (parse_state->fake_pmu)
1638 evsel->unit = info.unit;
1639 evsel->scale = info.scale;
1640 evsel->per_pkg = info.per_pkg;
1641 evsel->snapshot = info.snapshot;
1642 evsel->metric_expr = info.metric_expr;
1643 evsel->metric_name = info.metric_name;
1647 int parse_events_multi_pmu_add(struct parse_events_state *parse_state,
1648 char *str, struct list_head **listp)
1650 struct parse_events_term *term;
1651 struct list_head *list;
1652 struct perf_pmu *pmu = NULL;
1656 /* Add it for all PMUs that support the alias */
1657 list = malloc(sizeof(struct list_head));
1660 INIT_LIST_HEAD(list);
1661 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
1662 struct perf_pmu_alias *alias;
1664 list_for_each_entry(alias, &pmu->aliases, list) {
1665 if (!strcasecmp(alias->name, str)) {
1666 struct list_head *head;
1669 head = malloc(sizeof(struct list_head));
1672 INIT_LIST_HEAD(head);
1673 config = strdup(str);
1676 if (parse_events_term__num(&term,
1677 PARSE_EVENTS__TERM_TYPE_USER,
1678 config, 1, false, &config,
1684 list_add_tail(&term->list, head);
1686 if (!parse_events_add_pmu(parse_state, list,
1689 pr_debug("%s -> %s/%s/\n", str,
1690 pmu->name, alias->str);
1694 parse_events_terms__delete(head);
1706 int parse_events__modifier_group(struct list_head *list,
1709 return parse_events__modifier_event(list, event_mod, true);
1713 * Check if the two uncore PMUs are from the same uncore block
1714 * The format of the uncore PMU name is uncore_#blockname_#pmuidx
1716 static bool is_same_uncore_block(const char *pmu_name_a, const char *pmu_name_b)
1718 char *end_a, *end_b;
1720 end_a = strrchr(pmu_name_a, '_');
1721 end_b = strrchr(pmu_name_b, '_');
1723 if (!end_a || !end_b)
1726 if ((end_a - pmu_name_a) != (end_b - pmu_name_b))
1729 return (strncmp(pmu_name_a, pmu_name_b, end_a - pmu_name_a) == 0);
1733 parse_events__set_leader_for_uncore_aliase(char *name, struct list_head *list,
1734 struct parse_events_state *parse_state)
1736 struct evsel *evsel, *leader;
1738 bool is_leader = true;
1739 int i, nr_pmu = 0, total_members, ret = 0;
1741 leader = list_first_entry(list, struct evsel, core.node);
1742 evsel = list_last_entry(list, struct evsel, core.node);
1743 total_members = evsel->core.idx - leader->core.idx + 1;
1745 leaders = calloc(total_members, sizeof(uintptr_t));
1746 if (WARN_ON(!leaders))
1750 * Going through the whole group and doing sanity check.
1751 * All members must use alias, and be from the same uncore block.
1752 * Also, storing the leader events in an array.
1754 __evlist__for_each_entry(list, evsel) {
1756 /* Only split the uncore group which members use alias */
1757 if (!evsel->use_uncore_alias)
1760 /* The events must be from the same uncore block */
1761 if (!is_same_uncore_block(leader->pmu_name, evsel->pmu_name))
1767 * If the event's PMU name starts to repeat, it must be a new
1768 * event. That can be used to distinguish the leader from
1769 * other members, even they have the same event name.
1771 if ((leader != evsel) &&
1772 !strcmp(leader->pmu_name, evsel->pmu_name)) {
1777 /* Store the leader event for each PMU */
1778 leaders[nr_pmu++] = (uintptr_t) evsel;
1781 /* only one event alias */
1782 if (nr_pmu == total_members) {
1783 parse_state->nr_groups--;
1788 * An uncore event alias is a joint name which means the same event
1789 * runs on all PMUs of a block.
1790 * Perf doesn't support mixed events from different PMUs in the same
1791 * group. The big group has to be split into multiple small groups
1792 * which only include the events from the same PMU.
1794 * Here the uncore event aliases must be from the same uncore block.
1795 * The number of PMUs must be same for each alias. The number of new
1796 * small groups equals to the number of PMUs.
1797 * Setting the leader event for corresponding members in each group.
1800 __evlist__for_each_entry(list, evsel) {
1803 evsel__set_leader(evsel, (struct evsel *) leaders[i++]);
1806 /* The number of members and group name are same for each group */
1807 for (i = 0; i < nr_pmu; i++) {
1808 evsel = (struct evsel *) leaders[i];
1809 evsel->core.nr_members = total_members / nr_pmu;
1810 evsel->group_name = name ? strdup(name) : NULL;
1813 /* Take the new small groups into account */
1814 parse_state->nr_groups += nr_pmu - 1;
1823 void parse_events__set_leader(char *name, struct list_head *list,
1824 struct parse_events_state *parse_state)
1826 struct evsel *leader;
1828 if (list_empty(list)) {
1829 WARN_ONCE(true, "WARNING: failed to set leader: empty list");
1833 if (parse_events__set_leader_for_uncore_aliase(name, list, parse_state))
1836 __perf_evlist__set_leader(list);
1837 leader = list_entry(list->next, struct evsel, core.node);
1838 leader->group_name = name ? strdup(name) : NULL;
1841 /* list_event is assumed to point to malloc'ed memory */
1842 void parse_events_update_lists(struct list_head *list_event,
1843 struct list_head *list_all)
1846 * Called for single event definition. Update the
1847 * 'all event' list, and reinit the 'single event'
1848 * list, for next event definition.
1850 list_splice_tail(list_event, list_all);
1854 struct event_modifier {
1871 static int get_event_modifier(struct event_modifier *mod, char *str,
1872 struct evsel *evsel)
1874 int eu = evsel ? evsel->core.attr.exclude_user : 0;
1875 int ek = evsel ? evsel->core.attr.exclude_kernel : 0;
1876 int eh = evsel ? evsel->core.attr.exclude_hv : 0;
1877 int eH = evsel ? evsel->core.attr.exclude_host : 0;
1878 int eG = evsel ? evsel->core.attr.exclude_guest : 0;
1879 int eI = evsel ? evsel->core.attr.exclude_idle : 0;
1880 int precise = evsel ? evsel->core.attr.precise_ip : 0;
1881 int precise_max = 0;
1882 int sample_read = 0;
1883 int pinned = evsel ? evsel->core.attr.pinned : 0;
1884 int exclusive = evsel ? evsel->core.attr.exclusive : 0;
1886 int exclude = eu | ek | eh;
1887 int exclude_GH = evsel ? evsel->exclude_GH : 0;
1889 int bpf_counter = 0;
1891 memset(mod, 0, sizeof(*mod));
1896 exclude = eu = ek = eh = 1;
1897 if (!exclude_GH && !perf_guest)
1900 } else if (*str == 'k') {
1902 exclude = eu = ek = eh = 1;
1904 } else if (*str == 'h') {
1906 exclude = eu = ek = eh = 1;
1908 } else if (*str == 'G') {
1910 exclude_GH = eG = eH = 1;
1912 } else if (*str == 'H') {
1914 exclude_GH = eG = eH = 1;
1916 } else if (*str == 'I') {
1918 } else if (*str == 'p') {
1920 /* use of precise requires exclude_guest */
1923 } else if (*str == 'P') {
1925 } else if (*str == 'S') {
1927 } else if (*str == 'D') {
1929 } else if (*str == 'e') {
1931 } else if (*str == 'W') {
1933 } else if (*str == 'b') {
1944 * 0 - SAMPLE_IP can have arbitrary skid
1945 * 1 - SAMPLE_IP must have constant skid
1946 * 2 - SAMPLE_IP requested to have 0 skid
1947 * 3 - SAMPLE_IP must have 0 skid
1949 * See also PERF_RECORD_MISC_EXACT_IP
1960 mod->precise = precise;
1961 mod->precise_max = precise_max;
1962 mod->exclude_GH = exclude_GH;
1963 mod->sample_read = sample_read;
1964 mod->pinned = pinned;
1966 mod->bpf_counter = bpf_counter;
1967 mod->exclusive = exclusive;
1973 * Basic modifier sanity check to validate it contains only one
1974 * instance of any modifier (apart from 'p') present.
1976 static int check_modifier(char *str)
1980 /* The sizeof includes 0 byte as well. */
1981 if (strlen(str) > (sizeof("ukhGHpppPSDIWeb") - 1))
1985 if (*p != 'p' && strchr(p + 1, *p))
1993 int parse_events__modifier_event(struct list_head *list, char *str, bool add)
1995 struct evsel *evsel;
1996 struct event_modifier mod;
2001 if (check_modifier(str))
2004 if (!add && get_event_modifier(&mod, str, NULL))
2007 __evlist__for_each_entry(list, evsel) {
2008 if (add && get_event_modifier(&mod, str, evsel))
2011 evsel->core.attr.exclude_user = mod.eu;
2012 evsel->core.attr.exclude_kernel = mod.ek;
2013 evsel->core.attr.exclude_hv = mod.eh;
2014 evsel->core.attr.precise_ip = mod.precise;
2015 evsel->core.attr.exclude_host = mod.eH;
2016 evsel->core.attr.exclude_guest = mod.eG;
2017 evsel->core.attr.exclude_idle = mod.eI;
2018 evsel->exclude_GH = mod.exclude_GH;
2019 evsel->sample_read = mod.sample_read;
2020 evsel->precise_max = mod.precise_max;
2021 evsel->weak_group = mod.weak;
2022 evsel->bpf_counter = mod.bpf_counter;
2024 if (evsel__is_group_leader(evsel)) {
2025 evsel->core.attr.pinned = mod.pinned;
2026 evsel->core.attr.exclusive = mod.exclusive;
2033 int parse_events_name(struct list_head *list, char *name)
2035 struct evsel *evsel;
2037 __evlist__for_each_entry(list, evsel) {
2039 evsel->name = strdup(name);
2046 comp_pmu(const void *p1, const void *p2)
2048 struct perf_pmu_event_symbol *pmu1 = (struct perf_pmu_event_symbol *) p1;
2049 struct perf_pmu_event_symbol *pmu2 = (struct perf_pmu_event_symbol *) p2;
2051 return strcasecmp(pmu1->symbol, pmu2->symbol);
2054 static void perf_pmu__parse_cleanup(void)
2056 if (perf_pmu_events_list_num > 0) {
2057 struct perf_pmu_event_symbol *p;
2060 for (i = 0; i < perf_pmu_events_list_num; i++) {
2061 p = perf_pmu_events_list + i;
2064 zfree(&perf_pmu_events_list);
2065 perf_pmu_events_list_num = 0;
2069 #define SET_SYMBOL(str, stype) \
2078 * Read the pmu events list from sysfs
2079 * Save it into perf_pmu_events_list
2081 static void perf_pmu__parse_init(void)
2084 struct perf_pmu *pmu = NULL;
2085 struct perf_pmu_alias *alias;
2089 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
2090 list_for_each_entry(alias, &pmu->aliases, list) {
2091 if (strchr(alias->name, '-'))
2098 perf_pmu_events_list_num = -1;
2101 perf_pmu_events_list = malloc(sizeof(struct perf_pmu_event_symbol) * len);
2102 if (!perf_pmu_events_list)
2104 perf_pmu_events_list_num = len;
2108 while ((pmu = perf_pmu__scan(pmu)) != NULL) {
2109 list_for_each_entry(alias, &pmu->aliases, list) {
2110 struct perf_pmu_event_symbol *p = perf_pmu_events_list + len;
2111 char *tmp = strchr(alias->name, '-');
2114 SET_SYMBOL(strndup(alias->name, tmp - alias->name),
2115 PMU_EVENT_SYMBOL_PREFIX);
2117 SET_SYMBOL(strdup(++tmp), PMU_EVENT_SYMBOL_SUFFIX);
2120 SET_SYMBOL(strdup(alias->name), PMU_EVENT_SYMBOL);
2125 qsort(perf_pmu_events_list, len,
2126 sizeof(struct perf_pmu_event_symbol), comp_pmu);
2130 perf_pmu__parse_cleanup();
2134 * This function injects special term in
2135 * perf_pmu_events_list so the test code
2136 * can check on this functionality.
2138 int perf_pmu__test_parse_init(void)
2140 struct perf_pmu_event_symbol *list;
2142 list = malloc(sizeof(*list) * 1);
2146 list->type = PMU_EVENT_SYMBOL;
2147 list->symbol = strdup("read");
2149 if (!list->symbol) {
2154 perf_pmu_events_list = list;
2155 perf_pmu_events_list_num = 1;
2159 enum perf_pmu_event_symbol_type
2160 perf_pmu__parse_check(const char *name)
2162 struct perf_pmu_event_symbol p, *r;
2164 /* scan kernel pmu events from sysfs if needed */
2165 if (perf_pmu_events_list_num == 0)
2166 perf_pmu__parse_init();
2168 * name "cpu" could be prefix of cpu-cycles or cpu// events.
2169 * cpu-cycles has been handled by hardcode.
2170 * So it must be cpu// events, not kernel pmu event.
2172 if ((perf_pmu_events_list_num <= 0) || !strcmp(name, "cpu"))
2173 return PMU_EVENT_SYMBOL_ERR;
2175 p.symbol = strdup(name);
2176 r = bsearch(&p, perf_pmu_events_list,
2177 (size_t) perf_pmu_events_list_num,
2178 sizeof(struct perf_pmu_event_symbol), comp_pmu);
2180 return r ? r->type : PMU_EVENT_SYMBOL_ERR;
2183 static int parse_events__scanner(const char *str,
2184 struct parse_events_state *parse_state)
2186 YY_BUFFER_STATE buffer;
2190 ret = parse_events_lex_init_extra(parse_state, &scanner);
2194 buffer = parse_events__scan_string(str, scanner);
2197 parse_events_debug = 1;
2198 parse_events_set_debug(1, scanner);
2200 ret = parse_events_parse(parse_state, scanner);
2202 parse_events__flush_buffer(buffer, scanner);
2203 parse_events__delete_buffer(buffer, scanner);
2204 parse_events_lex_destroy(scanner);
2209 * parse event config string, return a list of event terms.
2211 int parse_events_terms(struct list_head *terms, const char *str)
2213 struct parse_events_state parse_state = {
2215 .stoken = PE_START_TERMS,
2219 ret = parse_events__scanner(str, &parse_state);
2220 perf_pmu__parse_cleanup();
2223 list_splice(parse_state.terms, terms);
2224 zfree(&parse_state.terms);
2228 parse_events_terms__delete(parse_state.terms);
2232 static int parse_events__with_hybrid_pmu(struct parse_events_state *parse_state,
2233 const char *str, char *pmu_name,
2234 struct list_head *list)
2236 struct parse_events_state ps = {
2237 .list = LIST_HEAD_INIT(ps.list),
2238 .stoken = PE_START_EVENTS,
2239 .hybrid_pmu_name = pmu_name,
2240 .idx = parse_state->idx,
2244 ret = parse_events__scanner(str, &ps);
2245 perf_pmu__parse_cleanup();
2248 if (!list_empty(&ps.list)) {
2249 list_splice(&ps.list, list);
2250 parse_state->idx = ps.idx;
2259 int __parse_events(struct evlist *evlist, const char *str,
2260 struct parse_events_error *err, struct perf_pmu *fake_pmu)
2262 struct parse_events_state parse_state = {
2263 .list = LIST_HEAD_INIT(parse_state.list),
2264 .idx = evlist->core.nr_entries,
2267 .stoken = PE_START_EVENTS,
2268 .fake_pmu = fake_pmu,
2272 ret = parse_events__scanner(str, &parse_state);
2273 perf_pmu__parse_cleanup();
2275 if (!ret && list_empty(&parse_state.list)) {
2276 WARN_ONCE(true, "WARNING: event parser found nothing\n");
2281 * Add list to the evlist even with errors to allow callers to clean up.
2283 evlist__splice_list_tail(evlist, &parse_state.list);
2288 evlist->core.nr_groups += parse_state.nr_groups;
2289 last = evlist__last(evlist);
2290 last->cmdline_group_boundary = true;
2296 * There are 2 users - builtin-record and builtin-test objects.
2297 * Both call evlist__delete in case of error, so we dont
2303 #define MAX_WIDTH 1000
2304 static int get_term_width(void)
2308 get_term_dimensions(&ws);
2309 return ws.ws_col > MAX_WIDTH ? MAX_WIDTH : ws.ws_col;
2312 static void __parse_events_print_error(int err_idx, const char *err_str,
2313 const char *err_help, const char *event)
2315 const char *str = "invalid or unsupported event: ";
2316 char _buf[MAX_WIDTH];
2317 char *buf = (char *) event;
2320 /* -2 for extra '' in the final fprintf */
2321 int width = get_term_width() - 2;
2322 int len_event = strlen(event);
2323 int len_str, max_len, cut = 0;
2326 * Maximum error index indent, we will cut
2327 * the event string if it's bigger.
2329 int max_err_idx = 13;
2332 * Let's be specific with the message when
2333 * we have the precise error.
2335 str = "event syntax error: ";
2336 len_str = strlen(str);
2337 max_len = width - len_str;
2341 /* We're cutting from the beginning. */
2342 if (err_idx > max_err_idx)
2343 cut = err_idx - max_err_idx;
2345 strncpy(buf, event + cut, max_len);
2347 /* Mark cut parts with '..' on both sides. */
2349 buf[0] = buf[1] = '.';
2351 if ((len_event - cut) > max_len) {
2352 buf[max_len - 1] = buf[max_len - 2] = '.';
2356 idx = len_str + err_idx - cut;
2359 fprintf(stderr, "%s'%s'\n", str, buf);
2361 fprintf(stderr, "%*s\\___ %s\n", idx + 1, "", err_str);
2363 fprintf(stderr, "\n%s\n", err_help);
2367 void parse_events_print_error(struct parse_events_error *err,
2370 if (!err->num_errors)
2373 __parse_events_print_error(err->idx, err->str, err->help, event);
2377 if (err->num_errors > 1) {
2378 fputs("\nInitial error:\n", stderr);
2379 __parse_events_print_error(err->first_idx, err->first_str,
2380 err->first_help, event);
2381 zfree(&err->first_str);
2382 zfree(&err->first_help);
2388 int parse_events_option(const struct option *opt, const char *str,
2389 int unset __maybe_unused)
2391 struct evlist *evlist = *(struct evlist **)opt->value;
2392 struct parse_events_error err;
2395 bzero(&err, sizeof(err));
2396 ret = parse_events(evlist, str, &err);
2399 parse_events_print_error(&err, str);
2400 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
2406 int parse_events_option_new_evlist(const struct option *opt, const char *str, int unset)
2408 struct evlist **evlistp = opt->value;
2411 if (*evlistp == NULL) {
2412 *evlistp = evlist__new();
2414 if (*evlistp == NULL) {
2415 fprintf(stderr, "Not enough memory to create evlist\n");
2420 ret = parse_events_option(opt, str, unset);
2422 evlist__delete(*evlistp);
2430 foreach_evsel_in_last_glob(struct evlist *evlist,
2431 int (*func)(struct evsel *evsel,
2435 struct evsel *last = NULL;
2439 * Don't return when list_empty, give func a chance to report
2440 * error when it found last == NULL.
2442 * So no need to WARN here, let *func do this.
2444 if (evlist->core.nr_entries > 0)
2445 last = evlist__last(evlist);
2448 err = (*func)(last, arg);
2454 if (last->core.node.prev == &evlist->core.entries)
2456 last = list_entry(last->core.node.prev, struct evsel, core.node);
2457 } while (!last->cmdline_group_boundary);
2462 static int set_filter(struct evsel *evsel, const void *arg)
2464 const char *str = arg;
2466 int nr_addr_filters = 0;
2467 struct perf_pmu *pmu = NULL;
2469 if (evsel == NULL) {
2471 "--filter option should follow a -e tracepoint or HW tracer option\n");
2475 if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT) {
2476 if (evsel__append_tp_filter(evsel, str) < 0) {
2478 "not enough memory to hold filter string\n");
2485 while ((pmu = perf_pmu__scan(pmu)) != NULL)
2486 if (pmu->type == evsel->core.attr.type) {
2492 perf_pmu__scan_file(pmu, "nr_addr_filters",
2493 "%d", &nr_addr_filters);
2495 if (!nr_addr_filters) {
2497 "This CPU does not support address filtering\n");
2501 if (evsel__append_addr_filter(evsel, str) < 0) {
2503 "not enough memory to hold filter string\n");
2510 int parse_filter(const struct option *opt, const char *str,
2511 int unset __maybe_unused)
2513 struct evlist *evlist = *(struct evlist **)opt->value;
2515 return foreach_evsel_in_last_glob(evlist, set_filter,
2519 static int add_exclude_perf_filter(struct evsel *evsel,
2520 const void *arg __maybe_unused)
2522 char new_filter[64];
2524 if (evsel == NULL || evsel->core.attr.type != PERF_TYPE_TRACEPOINT) {
2526 "--exclude-perf option should follow a -e tracepoint option\n");
2530 snprintf(new_filter, sizeof(new_filter), "common_pid != %d", getpid());
2532 if (evsel__append_tp_filter(evsel, new_filter) < 0) {
2534 "not enough memory to hold filter string\n");
2541 int exclude_perf(const struct option *opt,
2542 const char *arg __maybe_unused,
2543 int unset __maybe_unused)
2545 struct evlist *evlist = *(struct evlist **)opt->value;
2547 return foreach_evsel_in_last_glob(evlist, add_exclude_perf_filter,
2551 static const char * const event_type_descriptors[] = {
2555 "Hardware cache event",
2556 "Raw hardware event descriptor",
2557 "Hardware breakpoint",
2560 static int cmp_string(const void *a, const void *b)
2562 const char * const *as = a;
2563 const char * const *bs = b;
2565 return strcmp(*as, *bs);
2569 * Print the events from <debugfs_mount_point>/tracing/events
2572 void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
2575 DIR *sys_dir, *evt_dir;
2576 struct dirent *sys_dirent, *evt_dirent;
2577 char evt_path[MAXPATHLEN];
2579 char **evt_list = NULL;
2580 unsigned int evt_i = 0, evt_num = 0;
2581 bool evt_num_known = false;
2584 sys_dir = tracing_events__opendir();
2588 if (evt_num_known) {
2589 evt_list = zalloc(sizeof(char *) * evt_num);
2591 goto out_close_sys_dir;
2594 for_each_subsystem(sys_dir, sys_dirent) {
2595 if (subsys_glob != NULL &&
2596 !strglobmatch(sys_dirent->d_name, subsys_glob))
2599 dir_path = get_events_file(sys_dirent->d_name);
2602 evt_dir = opendir(dir_path);
2606 for_each_event(dir_path, evt_dir, evt_dirent) {
2607 if (event_glob != NULL &&
2608 !strglobmatch(evt_dirent->d_name, event_glob))
2611 if (!evt_num_known) {
2616 snprintf(evt_path, MAXPATHLEN, "%s:%s",
2617 sys_dirent->d_name, evt_dirent->d_name);
2619 evt_list[evt_i] = strdup(evt_path);
2620 if (evt_list[evt_i] == NULL) {
2621 put_events_file(dir_path);
2622 goto out_close_evt_dir;
2628 put_events_file(dir_path);
2632 if (!evt_num_known) {
2633 evt_num_known = true;
2636 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2638 while (evt_i < evt_num) {
2640 printf("%s ", evt_list[evt_i++]);
2643 printf(" %-50s [%s]\n", evt_list[evt_i++],
2644 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
2646 if (evt_num && pager_in_use())
2651 for (evt_i = 0; evt_i < evt_num; evt_i++)
2652 zfree(&evt_list[evt_i]);
2661 printf("FATAL: not enough memory to print %s\n",
2662 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
2668 * Check whether event is in <debugfs_mount_point>/tracing/events
2671 int is_valid_tracepoint(const char *event_string)
2673 DIR *sys_dir, *evt_dir;
2674 struct dirent *sys_dirent, *evt_dirent;
2675 char evt_path[MAXPATHLEN];
2678 sys_dir = tracing_events__opendir();
2682 for_each_subsystem(sys_dir, sys_dirent) {
2683 dir_path = get_events_file(sys_dirent->d_name);
2686 evt_dir = opendir(dir_path);
2690 for_each_event(dir_path, evt_dir, evt_dirent) {
2691 snprintf(evt_path, MAXPATHLEN, "%s:%s",
2692 sys_dirent->d_name, evt_dirent->d_name);
2693 if (!strcmp(evt_path, event_string)) {
2701 put_events_file(dir_path);
2707 static bool is_event_supported(u8 type, unsigned config)
2711 struct evsel *evsel;
2712 struct perf_event_attr attr = {
2717 struct perf_thread_map *tmap = thread_map__new_by_tid(0);
2722 evsel = evsel__new(&attr);
2724 open_return = evsel__open(evsel, NULL, tmap);
2725 ret = open_return >= 0;
2727 if (open_return == -EACCES) {
2729 * This happens if the paranoid value
2730 * /proc/sys/kernel/perf_event_paranoid is set to 2
2731 * Re-run with exclude_kernel set; we don't do that
2732 * by default as some ARM machines do not support it.
2735 evsel->core.attr.exclude_kernel = 1;
2736 ret = evsel__open(evsel, NULL, tmap) >= 0;
2738 evsel__delete(evsel);
2741 perf_thread_map__put(tmap);
2745 void print_sdt_events(const char *subsys_glob, const char *event_glob,
2748 struct probe_cache *pcache;
2749 struct probe_cache_entry *ent;
2750 struct strlist *bidlist, *sdtlist;
2751 struct strlist_config cfg = {.dont_dupstr = true};
2752 struct str_node *nd, *nd2;
2753 char *buf, *path, *ptr = NULL;
2754 bool show_detail = false;
2757 sdtlist = strlist__new(NULL, &cfg);
2759 pr_debug("Failed to allocate new strlist for SDT\n");
2762 bidlist = build_id_cache__list_all(true);
2764 pr_debug("Failed to get buildids: %d\n", errno);
2767 strlist__for_each_entry(nd, bidlist) {
2768 pcache = probe_cache__new(nd->s, NULL);
2771 list_for_each_entry(ent, &pcache->entries, node) {
2775 !strglobmatch(ent->pev.group, subsys_glob))
2778 !strglobmatch(ent->pev.event, event_glob))
2780 ret = asprintf(&buf, "%s:%s@%s", ent->pev.group,
2781 ent->pev.event, nd->s);
2783 strlist__add(sdtlist, buf);
2785 probe_cache__delete(pcache);
2787 strlist__delete(bidlist);
2789 strlist__for_each_entry(nd, sdtlist) {
2790 buf = strchr(nd->s, '@');
2794 printf("%s ", nd->s);
2797 nd2 = strlist__next(nd);
2799 ptr = strchr(nd2->s, '@');
2802 if (strcmp(nd->s, nd2->s) == 0)
2806 path = build_id_cache__origname(buf);
2807 ret = asprintf(&buf, "%s@%s(%.12s)", nd->s, path, buf);
2809 printf(" %-50s [%s]\n", buf, "SDT event");
2814 printf(" %-50s [%s]\n", nd->s, "SDT event");
2816 if (strcmp(nd->s, nd2->s) != 0)
2817 show_detail = false;
2822 strlist__delete(sdtlist);
2825 int print_hwcache_events(const char *event_glob, bool name_only)
2827 unsigned int type, op, i, evt_i = 0, evt_num = 0;
2829 char **evt_list = NULL;
2830 bool evt_num_known = false;
2833 if (evt_num_known) {
2834 evt_list = zalloc(sizeof(char *) * evt_num);
2839 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
2840 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
2841 /* skip invalid cache type */
2842 if (!evsel__is_cache_op_valid(type, op))
2845 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
2846 __evsel__hw_cache_type_op_res_name(type, op, i, name, sizeof(name));
2847 if (event_glob != NULL && !strglobmatch(name, event_glob))
2850 if (!is_event_supported(PERF_TYPE_HW_CACHE,
2851 type | (op << 8) | (i << 16)))
2854 if (!evt_num_known) {
2859 evt_list[evt_i] = strdup(name);
2860 if (evt_list[evt_i] == NULL)
2867 if (!evt_num_known) {
2868 evt_num_known = true;
2871 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2873 while (evt_i < evt_num) {
2875 printf("%s ", evt_list[evt_i++]);
2878 printf(" %-50s [%s]\n", evt_list[evt_i++],
2879 event_type_descriptors[PERF_TYPE_HW_CACHE]);
2881 if (evt_num && pager_in_use())
2886 for (evt_i = 0; evt_i < evt_num; evt_i++)
2887 zfree(&evt_list[evt_i]);
2892 printf("FATAL: not enough memory to print %s\n", event_type_descriptors[PERF_TYPE_HW_CACHE]);
2898 static void print_tool_event(const char *name, const char *event_glob,
2901 if (event_glob && !strglobmatch(name, event_glob))
2904 printf("%s ", name);
2906 printf(" %-50s [%s]\n", name, "Tool event");
2910 void print_tool_events(const char *event_glob, bool name_only)
2912 print_tool_event("duration_time", event_glob, name_only);
2917 void print_symbol_events(const char *event_glob, unsigned type,
2918 struct event_symbol *syms, unsigned max,
2921 unsigned int i, evt_i = 0, evt_num = 0;
2922 char name[MAX_NAME_LEN];
2923 char **evt_list = NULL;
2924 bool evt_num_known = false;
2927 if (evt_num_known) {
2928 evt_list = zalloc(sizeof(char *) * evt_num);
2934 for (i = 0; i < max; i++, syms++) {
2936 * New attr.config still not supported here, the latest
2937 * example was PERF_COUNT_SW_CGROUP_SWITCHES
2939 if (syms->symbol == NULL)
2942 if (event_glob != NULL && !(strglobmatch(syms->symbol, event_glob) ||
2943 (syms->alias && strglobmatch(syms->alias, event_glob))))
2946 if (!is_event_supported(type, i))
2949 if (!evt_num_known) {
2954 if (!name_only && strlen(syms->alias))
2955 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
2957 strlcpy(name, syms->symbol, MAX_NAME_LEN);
2959 evt_list[evt_i] = strdup(name);
2960 if (evt_list[evt_i] == NULL)
2965 if (!evt_num_known) {
2966 evt_num_known = true;
2969 qsort(evt_list, evt_num, sizeof(char *), cmp_string);
2971 while (evt_i < evt_num) {
2973 printf("%s ", evt_list[evt_i++]);
2976 printf(" %-50s [%s]\n", evt_list[evt_i++], event_type_descriptors[type]);
2978 if (evt_num && pager_in_use())
2983 for (evt_i = 0; evt_i < evt_num; evt_i++)
2984 zfree(&evt_list[evt_i]);
2989 printf("FATAL: not enough memory to print %s\n", event_type_descriptors[type]);
2995 * Print the help text for the event symbols:
2997 void print_events(const char *event_glob, bool name_only, bool quiet_flag,
2998 bool long_desc, bool details_flag, bool deprecated)
3000 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
3001 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
3003 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
3004 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
3005 print_tool_events(event_glob, name_only);
3007 print_hwcache_events(event_glob, name_only);
3009 print_pmu_events(event_glob, name_only, quiet_flag, long_desc,
3010 details_flag, deprecated);
3012 if (event_glob != NULL)
3016 printf(" %-50s [%s]\n",
3018 event_type_descriptors[PERF_TYPE_RAW]);
3019 printf(" %-50s [%s]\n",
3020 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
3021 event_type_descriptors[PERF_TYPE_RAW]);
3023 printf(" (see 'man perf-list' on how to encode it)\n\n");
3025 printf(" %-50s [%s]\n",
3026 "mem:<addr>[/len][:access]",
3027 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
3032 print_tracepoint_events(NULL, NULL, name_only);
3034 print_sdt_events(NULL, NULL, name_only);
3036 metricgroup__print(true, true, NULL, name_only, details_flag);
3038 print_libpfm_events(name_only, long_desc);
3041 int parse_events__is_hardcoded_term(struct parse_events_term *term)
3043 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
3046 static int new_term(struct parse_events_term **_term,
3047 struct parse_events_term *temp,
3050 struct parse_events_term *term;
3052 term = malloc(sizeof(*term));
3057 INIT_LIST_HEAD(&term->list);
3060 switch (term->type_val) {
3061 case PARSE_EVENTS__TERM_TYPE_NUM:
3062 term->val.num = num;
3064 case PARSE_EVENTS__TERM_TYPE_STR:
3065 term->val.str = str;
3076 int parse_events_term__num(struct parse_events_term **term,
3077 int type_term, char *config, u64 num,
3079 void *loc_term_, void *loc_val_)
3081 YYLTYPE *loc_term = loc_term_;
3082 YYLTYPE *loc_val = loc_val_;
3084 struct parse_events_term temp = {
3085 .type_val = PARSE_EVENTS__TERM_TYPE_NUM,
3086 .type_term = type_term,
3088 .no_value = no_value,
3089 .err_term = loc_term ? loc_term->first_column : 0,
3090 .err_val = loc_val ? loc_val->first_column : 0,
3093 return new_term(term, &temp, NULL, num);
3096 int parse_events_term__str(struct parse_events_term **term,
3097 int type_term, char *config, char *str,
3098 void *loc_term_, void *loc_val_)
3100 YYLTYPE *loc_term = loc_term_;
3101 YYLTYPE *loc_val = loc_val_;
3103 struct parse_events_term temp = {
3104 .type_val = PARSE_EVENTS__TERM_TYPE_STR,
3105 .type_term = type_term,
3107 .err_term = loc_term ? loc_term->first_column : 0,
3108 .err_val = loc_val ? loc_val->first_column : 0,
3111 return new_term(term, &temp, str, 0);
3114 int parse_events_term__sym_hw(struct parse_events_term **term,
3115 char *config, unsigned idx)
3117 struct event_symbol *sym;
3119 struct parse_events_term temp = {
3120 .type_val = PARSE_EVENTS__TERM_TYPE_STR,
3121 .type_term = PARSE_EVENTS__TERM_TYPE_USER,
3126 temp.config = strdup("event");
3130 BUG_ON(idx >= PERF_COUNT_HW_MAX);
3131 sym = &event_symbols_hw[idx];
3133 str = strdup(sym->symbol);
3136 return new_term(term, &temp, str, 0);
3139 int parse_events_term__clone(struct parse_events_term **new,
3140 struct parse_events_term *term)
3143 struct parse_events_term temp = {
3144 .type_val = term->type_val,
3145 .type_term = term->type_term,
3147 .err_term = term->err_term,
3148 .err_val = term->err_val,
3152 temp.config = strdup(term->config);
3156 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM)
3157 return new_term(new, &temp, NULL, term->val.num);
3159 str = strdup(term->val.str);
3162 return new_term(new, &temp, str, 0);
3165 void parse_events_term__delete(struct parse_events_term *term)
3167 if (term->array.nr_ranges)
3168 zfree(&term->array.ranges);
3170 if (term->type_val != PARSE_EVENTS__TERM_TYPE_NUM)
3171 zfree(&term->val.str);
3173 zfree(&term->config);
3177 int parse_events_copy_term_list(struct list_head *old,
3178 struct list_head **new)
3180 struct parse_events_term *term, *n;
3188 *new = malloc(sizeof(struct list_head));
3191 INIT_LIST_HEAD(*new);
3193 list_for_each_entry (term, old, list) {
3194 ret = parse_events_term__clone(&n, term);
3197 list_add_tail(&n->list, *new);
3202 void parse_events_terms__purge(struct list_head *terms)
3204 struct parse_events_term *term, *h;
3206 list_for_each_entry_safe(term, h, terms, list) {
3207 list_del_init(&term->list);
3208 parse_events_term__delete(term);
3212 void parse_events_terms__delete(struct list_head *terms)
3216 parse_events_terms__purge(terms);
3220 void parse_events__clear_array(struct parse_events_array *a)
3225 void parse_events_evlist_error(struct parse_events_state *parse_state,
3226 int idx, const char *str)
3228 if (!parse_state->error)
3231 parse_events__handle_error(parse_state->error, idx, strdup(str), NULL);
3234 static void config_terms_list(char *buf, size_t buf_sz)
3240 for (i = 0; i < __PARSE_EVENTS__TERM_TYPE_NR; i++) {
3241 const char *name = config_term_names[i];
3243 if (!config_term_avail(i, NULL))
3250 if (strlen(buf) + strlen(name) + 2 >= buf_sz)
3262 * Return string contains valid config terms of an event.
3263 * @additional_terms: For terms such as PMU sysfs terms.
3265 char *parse_events_formats_error_string(char *additional_terms)
3268 /* "no-overwrite" is the longest name */
3269 char static_terms[__PARSE_EVENTS__TERM_TYPE_NR *
3270 (sizeof("no-overwrite") - 1)];
3272 config_terms_list(static_terms, sizeof(static_terms));
3274 if (additional_terms) {
3275 if (asprintf(&str, "valid terms: %s,%s",
3276 additional_terms, static_terms) < 0)
3279 if (asprintf(&str, "valid terms: %s", static_terms) < 0)
3288 struct evsel *parse_events__add_event_hybrid(struct list_head *list, int *idx,
3289 struct perf_event_attr *attr,
3290 char *name, struct perf_pmu *pmu,
3291 struct list_head *config_terms)
3293 return __add_event(list, idx, attr, true, name, pmu,
3294 config_terms, false, NULL);