perf tools: Add support to parse event group syntax
[deliverable/linux.git] / tools / perf / util / evsel.h
CommitLineData
69aad6f1
ACM
1#ifndef __PERF_EVSEL_H
2#define __PERF_EVSEL_H 1
3
4#include <linux/list.h>
c52b12ed 5#include <stdbool.h>
d030260a 6#include "../../../include/linux/perf_event.h"
69aad6f1
ACM
7#include "types.h"
8#include "xyarray.h"
023695d9 9#include "cgroup.h"
e248de33 10#include "hist.h"
c52b12ed
ACM
11
12struct perf_counts_values {
13 union {
14 struct {
15 u64 val;
16 u64 ena;
17 u64 run;
18 };
19 u64 values[3];
20 };
21};
22
23struct perf_counts {
24 s8 scaled;
25 struct perf_counts_values aggr;
26 struct perf_counts_values cpu[];
27};
69aad6f1 28
70db7533
ACM
29struct perf_evsel;
30
31/*
32 * Per fd, to map back from PERF_SAMPLE_ID to evsel, only used when there are
33 * more than one entry in the evlist.
34 */
35struct perf_sample_id {
36 struct hlist_node node;
37 u64 id;
38 struct perf_evsel *evsel;
39};
40
f0c55bcf
SE
41/** struct perf_evsel - event selector
42 *
43 * @name - Can be set to retain the original event name passed by the user,
44 * so that when showing results in tools such as 'perf stat', we
45 * show the name used, not some alias.
46 */
69aad6f1
ACM
47struct perf_evsel {
48 struct list_head node;
49 struct perf_event_attr attr;
50 char *filter;
51 struct xyarray *fd;
a91e5431
ACM
52 struct xyarray *sample_id;
53 u64 *id;
c52b12ed 54 struct perf_counts *counts;
69aad6f1 55 int idx;
a91e5431 56 int ids;
e248de33 57 struct hists hists;
f0c55bcf 58 char *name;
fcf65bf1 59 struct event_format *tp_format;
a91e5431
ACM
60 union {
61 void *priv;
62 off_t id_offset;
63 };
023695d9 64 struct cgroup_sel *cgrp;
ee29be62
ACM
65 struct {
66 void *func;
67 void *data;
68 } handler;
bde09467 69 unsigned int sample_size;
2cee77c4 70 bool supported;
69aad6f1
ACM
71};
72
86bd5e86
ACM
73struct cpu_map;
74struct thread_map;
70082dd9 75struct perf_evlist;
0f82ebc4 76struct perf_record_opts;
86bd5e86 77
23a2f3ab 78struct perf_evsel *perf_evsel__new(struct perf_event_attr *attr, int idx);
ef1d1af2
ACM
79void perf_evsel__init(struct perf_evsel *evsel,
80 struct perf_event_attr *attr, int idx);
81void perf_evsel__exit(struct perf_evsel *evsel);
69aad6f1
ACM
82void perf_evsel__delete(struct perf_evsel *evsel);
83
0f82ebc4 84void perf_evsel__config(struct perf_evsel *evsel,
5090c6ae
NK
85 struct perf_record_opts *opts,
86 struct perf_evsel *first);
0f82ebc4 87
0b668bc9
ACM
88bool perf_evsel__is_cache_op_valid(u8 type, u8 op);
89
90#define PERF_EVSEL__MAX_ALIASES 8
91
92extern const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
93 [PERF_EVSEL__MAX_ALIASES];
94extern const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
95 [PERF_EVSEL__MAX_ALIASES];
96const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
97 [PERF_EVSEL__MAX_ALIASES];
98int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
99 char *bf, size_t size);
7289f83c 100const char *perf_evsel__name(struct perf_evsel *evsel);
c410431c 101
69aad6f1 102int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads);
70db7533 103int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads);
c52b12ed 104int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus);
69aad6f1 105void perf_evsel__free_fd(struct perf_evsel *evsel);
70db7533 106void perf_evsel__free_id(struct perf_evsel *evsel);
c52b12ed 107void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads);
69aad6f1 108
f08199d3 109int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
727ab04e
ACM
110 struct cpu_map *cpus, bool group,
111 struct xyarray *group_fds);
f08199d3 112int perf_evsel__open_per_thread(struct perf_evsel *evsel,
727ab04e
ACM
113 struct thread_map *threads, bool group,
114 struct xyarray *group_fds);
f08199d3 115int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
727ab04e
ACM
116 struct thread_map *threads, bool group,
117 struct xyarray *group_fds);
118void perf_evsel__close(struct perf_evsel *evsel, int ncpus, int nthreads);
48290609 119
daec78a0
ACM
120#define perf_evsel__match(evsel, t, c) \
121 (evsel->attr.type == PERF_TYPE_##t && \
122 evsel->attr.config == PERF_COUNT_##c)
123
c52b12ed
ACM
124int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
125 int cpu, int thread, bool scale);
126
127/**
128 * perf_evsel__read_on_cpu - Read out the results on a CPU and thread
129 *
130 * @evsel - event selector to read value
131 * @cpu - CPU of interest
132 * @thread - thread of interest
133 */
134static inline int perf_evsel__read_on_cpu(struct perf_evsel *evsel,
135 int cpu, int thread)
136{
137 return __perf_evsel__read_on_cpu(evsel, cpu, thread, false);
138}
139
140/**
141 * perf_evsel__read_on_cpu_scaled - Read out the results on a CPU and thread, scaled
142 *
143 * @evsel - event selector to read value
144 * @cpu - CPU of interest
145 * @thread - thread of interest
146 */
147static inline int perf_evsel__read_on_cpu_scaled(struct perf_evsel *evsel,
148 int cpu, int thread)
149{
150 return __perf_evsel__read_on_cpu(evsel, cpu, thread, true);
151}
152
153int __perf_evsel__read(struct perf_evsel *evsel, int ncpus, int nthreads,
154 bool scale);
155
156/**
157 * perf_evsel__read - Read the aggregate results on all CPUs
158 *
159 * @evsel - event selector to read value
160 * @ncpus - Number of cpus affected, from zero
161 * @nthreads - Number of threads affected, from zero
162 */
163static inline int perf_evsel__read(struct perf_evsel *evsel,
164 int ncpus, int nthreads)
165{
166 return __perf_evsel__read(evsel, ncpus, nthreads, false);
167}
168
169/**
170 * perf_evsel__read_scaled - Read the aggregate results on all CPUs, scaled
171 *
172 * @evsel - event selector to read value
173 * @ncpus - Number of cpus affected, from zero
174 * @nthreads - Number of threads affected, from zero
175 */
176static inline int perf_evsel__read_scaled(struct perf_evsel *evsel,
177 int ncpus, int nthreads)
178{
179 return __perf_evsel__read(evsel, ncpus, nthreads, true);
180}
181
4bf9ce1b
JO
182void hists__init(struct hists *hists);
183
a3f698fe
ACM
184int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
185 struct perf_sample *sample, bool swapped);
69aad6f1 186#endif /* __PERF_EVSEL_H */
This page took 0.096907 seconds and 5 git commands to generate.