]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/perf/util/evsel.h
Merge remote-tracking branch 'asoc/topic/pcm512x' into asoc-next
[mirror_ubuntu-focal-kernel.git] / tools / perf / util / evsel.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
69aad6f1
ACM
2#ifndef __PERF_EVSEL_H
3#define __PERF_EVSEL_H 1
4
5#include <linux/list.h>
c52b12ed 6#include <stdbool.h>
07ac002f 7#include <stddef.h>
d2709c7c 8#include <linux/perf_event.h>
d944c4ee 9#include <linux/types.h>
69aad6f1 10#include "xyarray.h"
759ff497 11#include "symbol.h"
a22e99cd 12#include "cpumap.h"
d809560b 13#include "counts.h"
69aad6f1 14
70db7533
ACM
15struct perf_evsel;
16
17/*
18 * Per fd, to map back from PERF_SAMPLE_ID to evsel, only used when there are
19 * more than one entry in the evlist.
20 */
21struct perf_sample_id {
22 struct hlist_node node;
23 u64 id;
24 struct perf_evsel *evsel;
3c659eed
AH
25 int idx;
26 int cpu;
27 pid_t tid;
e4caec0d
JO
28
29 /* Holds total ID period value for PERF_SAMPLE_READ processing. */
30 u64 period;
70db7533
ACM
31};
32
f14d5707
ACM
33struct cgroup_sel;
34
930a2e29
JO
35/*
36 * The 'struct perf_evsel_config_term' is used to pass event
37 * specific configuration data to perf_evsel__config routine.
38 * It is allocated within event parsing and attached to
39 * perf_evsel::config_terms list head.
40*/
41enum {
ee4c7588 42 PERF_EVSEL__CONFIG_TERM_PERIOD,
09af2a55 43 PERF_EVSEL__CONFIG_TERM_FREQ,
32067712 44 PERF_EVSEL__CONFIG_TERM_TIME,
d457c963
KL
45 PERF_EVSEL__CONFIG_TERM_CALLGRAPH,
46 PERF_EVSEL__CONFIG_TERM_STACK_USER,
374ce938 47 PERF_EVSEL__CONFIG_TERM_INHERIT,
792d48b4 48 PERF_EVSEL__CONFIG_TERM_MAX_STACK,
626a6b78 49 PERF_EVSEL__CONFIG_TERM_OVERWRITE,
dd60fba7 50 PERF_EVSEL__CONFIG_TERM_DRV_CFG,
ac12f676 51 PERF_EVSEL__CONFIG_TERM_BRANCH,
930a2e29
JO
52 PERF_EVSEL__CONFIG_TERM_MAX,
53};
54
55struct perf_evsel_config_term {
56 struct list_head list;
57 int type;
58 union {
59 u64 period;
09af2a55 60 u64 freq;
32067712 61 bool time;
d457c963 62 char *callgraph;
dd60fba7 63 char *drv_cfg;
d457c963 64 u64 stack_user;
792d48b4 65 int max_stack;
374ce938 66 bool inherit;
626a6b78 67 bool overwrite;
ac12f676 68 char *branch;
930a2e29 69 } val;
59622fd4 70 bool weak;
930a2e29
JO
71};
72
e669e833
ACM
73struct perf_stat_evsel;
74
f0c55bcf
SE
75/** struct perf_evsel - event selector
76 *
d49e4695
ACM
77 * @evlist - evlist this evsel is in, if it is in one.
78 * @node - To insert it into evlist->entries or in other list_heads, say in
79 * the event parsing routines.
f0c55bcf
SE
80 * @name - Can be set to retain the original event name passed by the user,
81 * so that when showing results in tools such as 'perf stat', we
82 * show the name used, not some alias.
75562573
AH
83 * @id_pos: the position of the event id (PERF_SAMPLE_ID or
84 * PERF_SAMPLE_IDENTIFIER) in a sample event i.e. in the array of
85 * struct sample_event
86 * @is_pos: the position (counting backwards) of the event id (PERF_SAMPLE_ID or
87 * PERF_SAMPLE_IDENTIFIER) in a non-sample event i.e. if sample_id_all
88 * is used there is an id sample appended to non-sample events
0db15b1e 89 * @priv: And what is in its containing unnamed union are tool specific
f0c55bcf 90 */
69aad6f1
ACM
91struct perf_evsel {
92 struct list_head node;
d49e4695 93 struct perf_evlist *evlist;
69aad6f1
ACM
94 struct perf_event_attr attr;
95 char *filter;
96 struct xyarray *fd;
a91e5431
ACM
97 struct xyarray *sample_id;
98 u64 *id;
c52b12ed 99 struct perf_counts *counts;
c7a79c47 100 struct perf_counts *prev_raw_counts;
69aad6f1 101 int idx;
f4d83436 102 u32 ids;
f0c55bcf 103 char *name;
410136f5
SE
104 double scale;
105 const char *unit;
fcf65bf1 106 struct event_format *tp_format;
af339981 107 off_t id_offset;
e669e833 108 struct perf_stat_evsel *stats;
616df645
CP
109 void *priv;
110 u64 db_id;
023695d9 111 struct cgroup_sel *cgrp;
744a9719 112 void *handler;
7ae92e74 113 struct cpu_map *cpus;
fce4d296 114 struct cpu_map *own_cpus;
578e91ec 115 struct thread_map *threads;
bde09467 116 unsigned int sample_size;
75562573
AH
117 int id_pos;
118 int is_pos;
86066064 119 bool snapshot;
2cee77c4 120 bool supported;
0807d2d8 121 bool needs_swap;
6ff1ce76 122 bool no_aux_samples;
2afd2bcf 123 bool immediate;
bf8e8f4b 124 bool system_wide;
60b0896c 125 bool tracking;
044330c1 126 bool per_pkg;
7f94af7a 127 bool precise_max;
a359c17a 128 bool ignore_missing_thread;
f5b1135b
JO
129 /* parse modifier helper */
130 int exclude_GH;
97f63e4a 131 int nr_members;
3c176311 132 int sample_read;
86066064 133 unsigned long *per_pkg_mask;
6a4bb04c
JO
134 struct perf_evsel *leader;
135 char *group_name;
15bfd2cc 136 bool cmdline_group_boundary;
930a2e29 137 struct list_head config_terms;
1f45b1d4 138 int bpf_fd;
63ce8449 139 bool auto_merge_stats;
430daf2d 140 bool merged_stat;
37932c18 141 const char * metric_expr;
96284814 142 const char * metric_name;
37932c18
AK
143 struct perf_evsel **metric_events;
144 bool collect_stat;
5a5dfe4b 145 bool weak_group;
69aad6f1
ACM
146};
147
88080ce7
BP
148union u64_swap {
149 u64 val64;
150 u32 val32[2];
151};
152
86bd5e86 153struct cpu_map;
80b2210c 154struct target;
86bd5e86 155struct thread_map;
b4006796 156struct record_opts;
86bd5e86 157
a22e99cd
JO
158static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
159{
160 return evsel->cpus;
161}
162
163static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
164{
165 return perf_evsel__cpus(evsel)->nr;
166}
167
13112bbf
JO
168void perf_counts_values__scale(struct perf_counts_values *count,
169 bool scale, s8 *pscaled);
170
a6fa0038 171void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu, int thread,
857a94a2
JO
172 struct perf_counts_values *count);
173
ce8ccff5
ACM
174int perf_evsel__object_config(size_t object_size,
175 int (*init)(struct perf_evsel *evsel),
176 void (*fini)(struct perf_evsel *evsel));
177
ef503831
ACM
178struct perf_evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx);
179
180static inline struct perf_evsel *perf_evsel__new(struct perf_event_attr *attr)
181{
182 return perf_evsel__new_idx(attr, 0);
183}
184
185struct perf_evsel *perf_evsel__newtp_idx(const char *sys, const char *name, int idx);
186
8dd2a131
JO
187/*
188 * Returns pointer with encoded error via <linux/err.h> interface.
189 */
ef503831
ACM
190static inline struct perf_evsel *perf_evsel__newtp(const char *sys, const char *name)
191{
192 return perf_evsel__newtp_idx(sys, name, 0);
193}
201b7334 194
30269dc1 195struct perf_evsel *perf_evsel__new_cycles(bool precise);
7c48dcfd 196
201b7334
ACM
197struct event_format *event_format__new(const char *sys, const char *name);
198
ef1d1af2
ACM
199void perf_evsel__init(struct perf_evsel *evsel,
200 struct perf_event_attr *attr, int idx);
201void perf_evsel__exit(struct perf_evsel *evsel);
69aad6f1
ACM
202void perf_evsel__delete(struct perf_evsel *evsel);
203
e68ae9cf
ACM
204struct callchain_param;
205
0f82ebc4 206void perf_evsel__config(struct perf_evsel *evsel,
e68ae9cf
ACM
207 struct record_opts *opts,
208 struct callchain_param *callchain);
01e0d50c
ACM
209void perf_evsel__config_callchain(struct perf_evsel *evsel,
210 struct record_opts *opts,
211 struct callchain_param *callchain);
0f82ebc4 212
75562573
AH
213int __perf_evsel__sample_size(u64 sample_type);
214void perf_evsel__calc_id_pos(struct perf_evsel *evsel);
215
0b668bc9
ACM
216bool perf_evsel__is_cache_op_valid(u8 type, u8 op);
217
218#define PERF_EVSEL__MAX_ALIASES 8
219
220extern const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
221 [PERF_EVSEL__MAX_ALIASES];
222extern const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
223 [PERF_EVSEL__MAX_ALIASES];
8ad7013b
ACM
224extern const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
225 [PERF_EVSEL__MAX_ALIASES];
226extern const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX];
227extern const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX];
0b668bc9
ACM
228int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
229 char *bf, size_t size);
7289f83c 230const char *perf_evsel__name(struct perf_evsel *evsel);
410136f5 231
717e263f
NK
232const char *perf_evsel__group_name(struct perf_evsel *evsel);
233int perf_evsel__group_desc(struct perf_evsel *evsel, char *buf, size_t size);
c410431c 234
70db7533 235int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads);
475fb533 236void perf_evsel__close_fd(struct perf_evsel *evsel);
69aad6f1 237
7be5ebe8
ACM
238void __perf_evsel__set_sample_bit(struct perf_evsel *evsel,
239 enum perf_event_sample_format bit);
240void __perf_evsel__reset_sample_bit(struct perf_evsel *evsel,
241 enum perf_event_sample_format bit);
242
243#define perf_evsel__set_sample_bit(evsel, bit) \
244 __perf_evsel__set_sample_bit(evsel, PERF_SAMPLE_##bit)
245
246#define perf_evsel__reset_sample_bit(evsel, bit) \
247 __perf_evsel__reset_sample_bit(evsel, PERF_SAMPLE_##bit)
248
75562573
AH
249void perf_evsel__set_sample_id(struct perf_evsel *evsel,
250 bool use_sample_identifier);
7a5a5ca5 251
12467ae4 252int perf_evsel__set_filter(struct perf_evsel *evsel, const char *filter);
3541c034 253int perf_evsel__append_tp_filter(struct perf_evsel *evsel, const char *filter);
1e857484
MP
254int perf_evsel__append_addr_filter(struct perf_evsel *evsel,
255 const char *filter);
475fb533 256int perf_evsel__apply_filter(struct perf_evsel *evsel, const char *filter);
5cd95fc3 257int perf_evsel__enable(struct perf_evsel *evsel);
e98a4cbb 258int perf_evsel__disable(struct perf_evsel *evsel);
745cefc5 259
f08199d3 260int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
6a4bb04c 261 struct cpu_map *cpus);
f08199d3 262int perf_evsel__open_per_thread(struct perf_evsel *evsel,
6a4bb04c 263 struct thread_map *threads);
f08199d3 264int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
6a4bb04c 265 struct thread_map *threads);
475fb533 266void perf_evsel__close(struct perf_evsel *evsel);
48290609 267
5555ded4
ACM
268struct perf_sample;
269
5d2074ea 270void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample,
5555ded4
ACM
271 const char *name);
272u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample,
273 const char *name);
274
5d2074ea
ACM
275static inline char *perf_evsel__strval(struct perf_evsel *evsel,
276 struct perf_sample *sample,
277 const char *name)
278{
279 return perf_evsel__rawptr(evsel, sample, name);
280}
281
efd2b924
ACM
282struct format_field;
283
90525176
ACM
284u64 format_field__intval(struct format_field *field, struct perf_sample *sample, bool needs_swap);
285
efd2b924
ACM
286struct format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name);
287
daec78a0
ACM
288#define perf_evsel__match(evsel, t, c) \
289 (evsel->attr.type == PERF_TYPE_##t && \
290 evsel->attr.config == PERF_COUNT_##c)
291
863e451f
JO
292static inline bool perf_evsel__match2(struct perf_evsel *e1,
293 struct perf_evsel *e2)
294{
295 return (e1->attr.type == e2->attr.type) &&
296 (e1->attr.config == e2->attr.config);
297}
298
4cabc3d1
AK
299#define perf_evsel__cmp(a, b) \
300 ((a) && \
301 (b) && \
302 (a)->attr.type == (b)->attr.type && \
303 (a)->attr.config == (b)->attr.config)
304
f99f4719
JO
305int perf_evsel__read(struct perf_evsel *evsel, int cpu, int thread,
306 struct perf_counts_values *count);
307
f7794d52
JO
308int perf_evsel__read_counter(struct perf_evsel *evsel, int cpu, int thread);
309
c52b12ed
ACM
310int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
311 int cpu, int thread, bool scale);
312
313/**
314 * perf_evsel__read_on_cpu - Read out the results on a CPU and thread
315 *
316 * @evsel - event selector to read value
317 * @cpu - CPU of interest
318 * @thread - thread of interest
319 */
320static inline int perf_evsel__read_on_cpu(struct perf_evsel *evsel,
321 int cpu, int thread)
322{
323 return __perf_evsel__read_on_cpu(evsel, cpu, thread, false);
324}
325
326/**
327 * perf_evsel__read_on_cpu_scaled - Read out the results on a CPU and thread, scaled
328 *
329 * @evsel - event selector to read value
330 * @cpu - CPU of interest
331 * @thread - thread of interest
332 */
333static inline int perf_evsel__read_on_cpu_scaled(struct perf_evsel *evsel,
334 int cpu, int thread)
335{
336 return __perf_evsel__read_on_cpu(evsel, cpu, thread, true);
337}
338
a3f698fe 339int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
0807d2d8 340 struct perf_sample *sample);
0c21f736
ACM
341
342static inline struct perf_evsel *perf_evsel__next(struct perf_evsel *evsel)
343{
344 return list_entry(evsel->node.next, struct perf_evsel, node);
345}
07ac002f 346
d87fcb4a
ACM
347static inline struct perf_evsel *perf_evsel__prev(struct perf_evsel *evsel)
348{
349 return list_entry(evsel->node.prev, struct perf_evsel, node);
350}
351
759ff497
NK
352/**
353 * perf_evsel__is_group_leader - Return whether given evsel is a leader event
354 *
355 * @evsel - evsel selector to be tested
356 *
357 * Return %true if @evsel is a group leader or a stand-alone event
358 */
823254ed 359static inline bool perf_evsel__is_group_leader(const struct perf_evsel *evsel)
07ac002f 360{
823254ed 361 return evsel->leader == evsel;
07ac002f 362}
0698aedd 363
759ff497
NK
364/**
365 * perf_evsel__is_group_event - Return whether given evsel is a group event
366 *
367 * @evsel - evsel selector to be tested
368 *
369 * Return %true iff event group view is enabled and @evsel is a actual group
370 * leader which has other members in the group
371 */
372static inline bool perf_evsel__is_group_event(struct perf_evsel *evsel)
373{
374 if (!symbol_conf.event_group)
375 return false;
376
377 return perf_evsel__is_group_leader(evsel) && evsel->nr_members > 1;
378}
379
5496bc0c 380bool perf_evsel__is_function_event(struct perf_evsel *evsel);
6bedfab6 381
03e0a7df
WN
382static inline bool perf_evsel__is_bpf_output(struct perf_evsel *evsel)
383{
384 struct perf_event_attr *attr = &evsel->attr;
385
386 return (attr->config == PERF_COUNT_SW_BPF_OUTPUT) &&
387 (attr->type == PERF_TYPE_SOFTWARE);
388}
389
0698aedd
ACM
390struct perf_attr_details {
391 bool freq;
392 bool verbose;
e35ef355 393 bool event_group;
9e3b6ec1 394 bool force;
775d8a1b 395 bool trace_fields;
0698aedd
ACM
396};
397
398int perf_evsel__fprintf(struct perf_evsel *evsel,
399 struct perf_attr_details *details, FILE *fp);
c0a54341 400
e20ab86e
ACM
401#define EVSEL__PRINT_IP (1<<0)
402#define EVSEL__PRINT_SYM (1<<1)
403#define EVSEL__PRINT_DSO (1<<2)
404#define EVSEL__PRINT_SYMOFFSET (1<<3)
405#define EVSEL__PRINT_ONELINE (1<<4)
406#define EVSEL__PRINT_SRCLINE (1<<5)
407#define EVSEL__PRINT_UNKNOWN_AS_ADDR (1<<6)
69b7e480 408#define EVSEL__PRINT_CALLCHAIN_ARROW (1<<7)
2d9bbf6e 409#define EVSEL__PRINT_SKIP_IGNORED (1<<8)
e20ab86e 410
6f736735
ACM
411struct callchain_cursor;
412
d327e60c
ACM
413int sample__fprintf_callchain(struct perf_sample *sample, int left_alignment,
414 unsigned int print_opts,
6f736735
ACM
415 struct callchain_cursor *cursor, FILE *fp);
416
417int sample__fprintf_sym(struct perf_sample *sample, struct addr_location *al,
418 int left_alignment, unsigned int print_opts,
419 struct callchain_cursor *cursor, FILE *fp);
e20ab86e 420
c0a54341
ACM
421bool perf_evsel__fallback(struct perf_evsel *evsel, int err,
422 char *msg, size_t msgsize);
602ad878 423int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target,
56e52e85 424 int err, char *msg, size_t size);
97f63e4a
NK
425
426static inline int perf_evsel__group_idx(struct perf_evsel *evsel)
427{
428 return evsel->idx - evsel->leader->idx;
429}
717e263f
NK
430
431#define for_each_group_member(_evsel, _leader) \
432for ((_evsel) = list_entry((_leader)->node.next, struct perf_evsel, node); \
433 (_evsel) && (_evsel)->leader == (_leader); \
434 (_evsel) = list_entry((_evsel)->node.next, struct perf_evsel, node))
435
acf2abbd 436static inline bool perf_evsel__has_branch_callstack(const struct perf_evsel *evsel)
384b6055
KL
437{
438 return evsel->attr.branch_sample_type & PERF_SAMPLE_BRANCH_CALL_STACK;
439}
2c5e8c52
PZ
440
441typedef int (*attr__fprintf_f)(FILE *, const char *, const char *, void *);
442
443int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr,
444 attr__fprintf_f attr__fprintf, void *priv);
445
f4e47f9f 446char *perf_evsel__env_arch(struct perf_evsel *evsel);
69fb09f6 447char *perf_evsel__env_cpuid(struct perf_evsel *evsel);
f4e47f9f 448
69aad6f1 449#endif /* __PERF_EVSEL_H */