1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_PARSE_EVENTS_H
3 #define __PERF_PARSE_EVENTS_H
5 * Parse symbolic events/counts passed in as options:
8 #include <linux/list.h>
10 #include <linux/types.h>
11 #include <linux/perf_event.h>
17 struct parse_events_error
;
22 struct tracepoint_path
{
25 struct tracepoint_path
*next
;
28 struct tracepoint_path
*tracepoint_id_to_path(u64 config
);
29 struct tracepoint_path
*tracepoint_name_to_path(const char *name
);
30 bool have_tracepoints(struct list_head
*evlist
);
32 const char *event_type(int type
);
34 int parse_events_option(const struct option
*opt
, const char *str
, int unset
);
35 int parse_events_option_new_evlist(const struct option
*opt
, const char *str
, int unset
);
36 int __parse_events(struct evlist
*evlist
, const char *str
, struct parse_events_error
*error
,
37 struct perf_pmu
*fake_pmu
);
39 static inline int parse_events(struct evlist
*evlist
, const char *str
,
40 struct parse_events_error
*err
)
42 return __parse_events(evlist
, str
, err
, NULL
);
45 int parse_events_terms(struct list_head
*terms
, const char *str
);
46 int parse_filter(const struct option
*opt
, const char *str
, int unset
);
47 int exclude_perf(const struct option
*opt
, const char *arg
, int unset
);
49 #define EVENTS_HELP_MAX (128*1024)
51 enum perf_pmu_event_symbol_type
{
52 PMU_EVENT_SYMBOL_ERR
, /* not a PMU EVENT */
53 PMU_EVENT_SYMBOL
, /* normal style PMU event */
54 PMU_EVENT_SYMBOL_PREFIX
, /* prefix of pre-suf style event */
55 PMU_EVENT_SYMBOL_SUFFIX
, /* suffix of pre-suf style event */
58 struct perf_pmu_event_symbol
{
60 enum perf_pmu_event_symbol_type type
;
64 PARSE_EVENTS__TERM_TYPE_NUM
,
65 PARSE_EVENTS__TERM_TYPE_STR
,
69 PARSE_EVENTS__TERM_TYPE_USER
,
70 PARSE_EVENTS__TERM_TYPE_CONFIG
,
71 PARSE_EVENTS__TERM_TYPE_CONFIG1
,
72 PARSE_EVENTS__TERM_TYPE_CONFIG2
,
73 PARSE_EVENTS__TERM_TYPE_NAME
,
74 PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD
,
75 PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ
,
76 PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE
,
77 PARSE_EVENTS__TERM_TYPE_TIME
,
78 PARSE_EVENTS__TERM_TYPE_CALLGRAPH
,
79 PARSE_EVENTS__TERM_TYPE_STACKSIZE
,
80 PARSE_EVENTS__TERM_TYPE_NOINHERIT
,
81 PARSE_EVENTS__TERM_TYPE_INHERIT
,
82 PARSE_EVENTS__TERM_TYPE_MAX_STACK
,
83 PARSE_EVENTS__TERM_TYPE_MAX_EVENTS
,
84 PARSE_EVENTS__TERM_TYPE_NOOVERWRITE
,
85 PARSE_EVENTS__TERM_TYPE_OVERWRITE
,
86 PARSE_EVENTS__TERM_TYPE_DRV_CFG
,
87 PARSE_EVENTS__TERM_TYPE_PERCORE
,
88 PARSE_EVENTS__TERM_TYPE_AUX_OUTPUT
,
89 PARSE_EVENTS__TERM_TYPE_AUX_SAMPLE_SIZE
,
90 __PARSE_EVENTS__TERM_TYPE_NR
,
93 struct parse_events_array
{
101 struct parse_events_term
{
103 struct parse_events_array array
;
110 struct list_head list
;
114 /* error string indexes for within parsed string */
118 /* Coming from implicit alias */
122 struct parse_events_error
{
123 int num_errors
; /* number of errors encountered */
124 int idx
; /* index in the parsed string */
125 char *str
; /* string to display at the index */
126 char *help
; /* optional help string */
127 int first_idx
;/* as above, but for the first encountered error */
132 struct parse_events_state
{
133 struct list_head list
;
136 struct parse_events_error
*error
;
137 struct evlist
*evlist
;
138 struct list_head
*terms
;
140 struct perf_pmu
*fake_pmu
;
143 void parse_events__handle_error(struct parse_events_error
*err
, int idx
,
144 char *str
, char *help
);
145 void parse_events__shrink_config_terms(void);
146 int parse_events__is_hardcoded_term(struct parse_events_term
*term
);
147 int parse_events_term__num(struct parse_events_term
**term
,
148 int type_term
, char *config
, u64 num
,
150 void *loc_term
, void *loc_val
);
151 int parse_events_term__str(struct parse_events_term
**term
,
152 int type_term
, char *config
, char *str
,
153 void *loc_term
, void *loc_val
);
154 int parse_events_term__sym_hw(struct parse_events_term
**term
,
155 char *config
, unsigned idx
);
156 int parse_events_term__clone(struct parse_events_term
**new,
157 struct parse_events_term
*term
);
158 void parse_events_term__delete(struct parse_events_term
*term
);
159 void parse_events_terms__delete(struct list_head
*terms
);
160 void parse_events_terms__purge(struct list_head
*terms
);
161 void parse_events__clear_array(struct parse_events_array
*a
);
162 int parse_events__modifier_event(struct list_head
*list
, char *str
, bool add
);
163 int parse_events__modifier_group(struct list_head
*list
, char *event_mod
);
164 int parse_events_name(struct list_head
*list
, char *name
);
165 int parse_events_add_tracepoint(struct list_head
*list
, int *idx
,
166 const char *sys
, const char *event
,
167 struct parse_events_error
*error
,
168 struct list_head
*head_config
);
169 int parse_events_load_bpf(struct parse_events_state
*parse_state
,
170 struct list_head
*list
,
173 struct list_head
*head_config
);
174 /* Provide this function for perf test */
176 int parse_events_load_bpf_obj(struct parse_events_state
*parse_state
,
177 struct list_head
*list
,
178 struct bpf_object
*obj
,
179 struct list_head
*head_config
);
180 int parse_events_add_numeric(struct parse_events_state
*parse_state
,
181 struct list_head
*list
,
182 u32 type
, u64 config
,
183 struct list_head
*head_config
);
184 enum perf_tool_event
;
185 int parse_events_add_tool(struct parse_events_state
*parse_state
,
186 struct list_head
*list
,
187 enum perf_tool_event tool_event
);
188 int parse_events_add_cache(struct list_head
*list
, int *idx
,
189 char *type
, char *op_result1
, char *op_result2
,
190 struct parse_events_error
*error
,
191 struct list_head
*head_config
);
192 int parse_events_add_breakpoint(struct list_head
*list
, int *idx
,
193 u64 addr
, char *type
, u64 len
);
194 int parse_events_add_pmu(struct parse_events_state
*parse_state
,
195 struct list_head
*list
, char *name
,
196 struct list_head
*head_config
,
197 bool auto_merge_stats
,
200 struct evsel
*parse_events__add_event(int idx
, struct perf_event_attr
*attr
,
201 char *name
, struct perf_pmu
*pmu
);
203 int parse_events_multi_pmu_add(struct parse_events_state
*parse_state
,
205 struct list_head
**listp
);
207 int parse_events_copy_term_list(struct list_head
*old
,
208 struct list_head
**new);
210 enum perf_pmu_event_symbol_type
211 perf_pmu__parse_check(const char *name
);
212 void parse_events__set_leader(char *name
, struct list_head
*list
,
213 struct parse_events_state
*parse_state
);
214 void parse_events_update_lists(struct list_head
*list_event
,
215 struct list_head
*list_all
);
216 void parse_events_evlist_error(struct parse_events_state
*parse_state
,
217 int idx
, const char *str
);
219 void print_events(const char *event_glob
, bool name_only
, bool quiet
,
220 bool long_desc
, bool details_flag
, bool deprecated
);
222 struct event_symbol
{
226 extern struct event_symbol event_symbols_hw
[];
227 extern struct event_symbol event_symbols_sw
[];
228 void print_symbol_events(const char *event_glob
, unsigned type
,
229 struct event_symbol
*syms
, unsigned max
,
231 void print_tool_events(const char *event_glob
, bool name_only
);
232 void print_tracepoint_events(const char *subsys_glob
, const char *event_glob
,
234 int print_hwcache_events(const char *event_glob
, bool name_only
);
235 void print_sdt_events(const char *subsys_glob
, const char *event_glob
,
237 int is_valid_tracepoint(const char *event_string
);
239 int valid_event_mount(const char *eventfs
);
240 char *parse_events_formats_error_string(char *additional_terms
);
242 void parse_events_print_error(struct parse_events_error
*err
,
245 #ifdef HAVE_LIBELF_SUPPORT
247 * If the probe point starts with '%',
248 * or starts with "sdt_" and has a ':' but no '=',
249 * then it should be a SDT/cached probe point.
251 static inline bool is_sdt_event(char *str
)
253 return (str
[0] == '%' ||
254 (!strncmp(str
, "sdt_", 4) &&
255 !!strchr(str
, ':') && !strchr(str
, '=')));
258 static inline bool is_sdt_event(char *str __maybe_unused
)
262 #endif /* HAVE_LIBELF_SUPPORT */
264 int perf_pmu__test_parse_init(void);
266 #endif /* __PERF_PARSE_EVENTS_H */