perf tools: Unify page_size usage
[platform/adaptation/renesas_rcar/renesas_kernel.git] / tools / perf / util / event.h
1 #ifndef __PERF_RECORD_H
2 #define __PERF_RECORD_H
3
4 #include <limits.h>
5 #include <stdio.h>
6
7 #include "../perf.h"
8 #include "map.h"
9 #include "build-id.h"
10
11 struct mmap_event {
12         struct perf_event_header header;
13         u32 pid, tid;
14         u64 start;
15         u64 len;
16         u64 pgoff;
17         char filename[PATH_MAX];
18 };
19
20 struct mmap2_event {
21         struct perf_event_header header;
22         u32 pid, tid;
23         u64 start;
24         u64 len;
25         u64 pgoff;
26         u32 maj;
27         u32 min;
28         u64 ino;
29         u64 ino_generation;
30         char filename[PATH_MAX];
31 };
32
33 struct comm_event {
34         struct perf_event_header header;
35         u32 pid, tid;
36         char comm[16];
37 };
38
39 struct fork_event {
40         struct perf_event_header header;
41         u32 pid, ppid;
42         u32 tid, ptid;
43         u64 time;
44 };
45
46 struct lost_event {
47         struct perf_event_header header;
48         u64 id;
49         u64 lost;
50 };
51
52 /*
53  * PERF_FORMAT_ENABLED | PERF_FORMAT_RUNNING | PERF_FORMAT_ID
54  */
55 struct read_event {
56         struct perf_event_header header;
57         u32 pid, tid;
58         u64 value;
59         u64 time_enabled;
60         u64 time_running;
61         u64 id;
62 };
63
64
65 #define PERF_SAMPLE_MASK                                \
66         (PERF_SAMPLE_IP | PERF_SAMPLE_TID |             \
67          PERF_SAMPLE_TIME | PERF_SAMPLE_ADDR |          \
68         PERF_SAMPLE_ID | PERF_SAMPLE_STREAM_ID |        \
69          PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD |         \
70          PERF_SAMPLE_IDENTIFIER)
71
72 struct sample_event {
73         struct perf_event_header        header;
74         u64 array[];
75 };
76
77 struct regs_dump {
78         u64 abi;
79         u64 *regs;
80 };
81
82 struct stack_dump {
83         u16 offset;
84         u64 size;
85         char *data;
86 };
87
88 struct sample_read_value {
89         u64 value;
90         u64 id;
91 };
92
93 struct sample_read {
94         u64 time_enabled;
95         u64 time_running;
96         union {
97                 struct {
98                         u64 nr;
99                         struct sample_read_value *values;
100                 } group;
101                 struct sample_read_value one;
102         };
103 };
104
105 struct perf_sample {
106         u64 ip;
107         u32 pid, tid;
108         u64 time;
109         u64 addr;
110         u64 id;
111         u64 stream_id;
112         u64 period;
113         u64 weight;
114         u64 transaction;
115         u32 cpu;
116         u32 raw_size;
117         u64 data_src;
118         void *raw_data;
119         struct ip_callchain *callchain;
120         struct branch_stack *branch_stack;
121         struct regs_dump  user_regs;
122         struct stack_dump user_stack;
123         struct sample_read read;
124 };
125
126 #define PERF_MEM_DATA_SRC_NONE \
127         (PERF_MEM_S(OP, NA) |\
128          PERF_MEM_S(LVL, NA) |\
129          PERF_MEM_S(SNOOP, NA) |\
130          PERF_MEM_S(LOCK, NA) |\
131          PERF_MEM_S(TLB, NA))
132
133 struct build_id_event {
134         struct perf_event_header header;
135         pid_t                    pid;
136         u8                       build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
137         char                     filename[];
138 };
139
140 enum perf_user_event_type { /* above any possible kernel type */
141         PERF_RECORD_USER_TYPE_START             = 64,
142         PERF_RECORD_HEADER_ATTR                 = 64,
143         PERF_RECORD_HEADER_EVENT_TYPE           = 65, /* depreceated */
144         PERF_RECORD_HEADER_TRACING_DATA         = 66,
145         PERF_RECORD_HEADER_BUILD_ID             = 67,
146         PERF_RECORD_FINISHED_ROUND              = 68,
147         PERF_RECORD_HEADER_MAX
148 };
149
150 struct attr_event {
151         struct perf_event_header header;
152         struct perf_event_attr attr;
153         u64 id[];
154 };
155
156 #define MAX_EVENT_NAME 64
157
158 struct perf_trace_event_type {
159         u64     event_id;
160         char    name[MAX_EVENT_NAME];
161 };
162
163 struct event_type_event {
164         struct perf_event_header header;
165         struct perf_trace_event_type event_type;
166 };
167
168 struct tracing_data_event {
169         struct perf_event_header header;
170         u32 size;
171 };
172
173 union perf_event {
174         struct perf_event_header        header;
175         struct mmap_event               mmap;
176         struct mmap2_event              mmap2;
177         struct comm_event               comm;
178         struct fork_event               fork;
179         struct lost_event               lost;
180         struct read_event               read;
181         struct sample_event             sample;
182         struct attr_event               attr;
183         struct event_type_event         event_type;
184         struct tracing_data_event       tracing_data;
185         struct build_id_event           build_id;
186 };
187
188 void perf_event__print_totals(void);
189
190 struct perf_tool;
191 struct thread_map;
192
193 typedef int (*perf_event__handler_t)(struct perf_tool *tool,
194                                      union perf_event *event,
195                                      struct perf_sample *sample,
196                                      struct machine *machine);
197
198 int perf_event__synthesize_thread_map(struct perf_tool *tool,
199                                       struct thread_map *threads,
200                                       perf_event__handler_t process,
201                                       struct machine *machine);
202 int perf_event__synthesize_threads(struct perf_tool *tool,
203                                    perf_event__handler_t process,
204                                    struct machine *machine);
205 int perf_event__synthesize_kernel_mmap(struct perf_tool *tool,
206                                        perf_event__handler_t process,
207                                        struct machine *machine,
208                                        const char *symbol_name);
209
210 int perf_event__synthesize_modules(struct perf_tool *tool,
211                                    perf_event__handler_t process,
212                                    struct machine *machine);
213
214 int perf_event__process_comm(struct perf_tool *tool,
215                              union perf_event *event,
216                              struct perf_sample *sample,
217                              struct machine *machine);
218 int perf_event__process_lost(struct perf_tool *tool,
219                              union perf_event *event,
220                              struct perf_sample *sample,
221                              struct machine *machine);
222 int perf_event__process_mmap(struct perf_tool *tool,
223                              union perf_event *event,
224                              struct perf_sample *sample,
225                              struct machine *machine);
226 int perf_event__process_mmap2(struct perf_tool *tool,
227                              union perf_event *event,
228                              struct perf_sample *sample,
229                              struct machine *machine);
230 int perf_event__process_fork(struct perf_tool *tool,
231                              union perf_event *event,
232                              struct perf_sample *sample,
233                              struct machine *machine);
234 int perf_event__process_exit(struct perf_tool *tool,
235                              union perf_event *event,
236                              struct perf_sample *sample,
237                              struct machine *machine);
238 int perf_event__process(struct perf_tool *tool,
239                         union perf_event *event,
240                         struct perf_sample *sample,
241                         struct machine *machine);
242
243 struct addr_location;
244 int perf_event__preprocess_sample(const union perf_event *self,
245                                   struct machine *machine,
246                                   struct addr_location *al,
247                                   struct perf_sample *sample);
248
249 const char *perf_event__name(unsigned int id);
250
251 size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
252                                      u64 sample_regs_user, u64 read_format);
253 int perf_event__synthesize_sample(union perf_event *event, u64 type,
254                                   u64 sample_regs_user, u64 read_format,
255                                   const struct perf_sample *sample,
256                                   bool swapped);
257
258 size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp);
259 size_t perf_event__fprintf_mmap(union perf_event *event, FILE *fp);
260 size_t perf_event__fprintf_mmap2(union perf_event *event, FILE *fp);
261 size_t perf_event__fprintf_task(union perf_event *event, FILE *fp);
262 size_t perf_event__fprintf(union perf_event *event, FILE *fp);
263
264 #endif /* __PERF_RECORD_H */