perf: Pass protection and flags bits through mmap2 interface
[linux-2.6-block.git] / tools / perf / util / event.h
CommitLineData
cdd6c482
IM
1#ifndef __PERF_RECORD_H
2#define __PERF_RECORD_H
8b40f521 3
4a58e611 4#include <limits.h>
482ad897 5#include <stdio.h>
4a58e611 6
1fe2c106 7#include "../perf.h"
4a58e611 8#include "map.h"
4383db88 9#include "build-id.h"
1fe2c106 10
1fe2c106
FW
11struct 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
5c5e854b
SE
20struct 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
1fe2c106
FW
33struct comm_event {
34 struct perf_event_header header;
35 u32 pid, tid;
36 char comm[16];
37};
38
39struct fork_event {
40 struct perf_event_header header;
41 u32 pid, ppid;
42 u32 tid, ptid;
393b2ad8 43 u64 time;
1fe2c106
FW
44};
45
46struct lost_event {
47 struct perf_event_header header;
48 u64 id;
49 u64 lost;
50};
51
18408ddc
PZ
52/*
53 * PERF_FORMAT_ENABLED | PERF_FORMAT_RUNNING | PERF_FORMAT_ID
54 */
1fe2c106
FW
55struct read_event {
56 struct perf_event_header header;
dc02bf71 57 u32 pid, tid;
1fe2c106
FW
58 u64 value;
59 u64 time_enabled;
60 u64 time_running;
61 u64 id;
62};
63
dd96c46b
JO
64struct throttle_event {
65 struct perf_event_header header;
66 u64 time;
67 u64 id;
68 u64 stream_id;
69};
a2854124
FW
70
71#define PERF_SAMPLE_MASK \
72 (PERF_SAMPLE_IP | PERF_SAMPLE_TID | \
73 PERF_SAMPLE_TIME | PERF_SAMPLE_ADDR | \
74 PERF_SAMPLE_ID | PERF_SAMPLE_STREAM_ID | \
75562573
AH
75 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD | \
76 PERF_SAMPLE_IDENTIFIER)
a2854124 77
a65cb4b9
JO
78/* perf sample has 16 bits size limit */
79#define PERF_SAMPLE_MAX_SIZE (1 << 16)
80
180f95e2 81struct sample_event {
fd39e055
AV
82 struct perf_event_header header;
83 u64 array[];
84};
85
0f6a3015 86struct regs_dump {
5b95a4a3 87 u64 abi;
352ea45a 88 u64 mask;
0f6a3015
JO
89 u64 *regs;
90};
91
92struct stack_dump {
93 u16 offset;
94 u64 size;
95 char *data;
96};
97
9ede473c
JO
98struct sample_read_value {
99 u64 value;
100 u64 id;
101};
102
103struct sample_read {
104 u64 time_enabled;
105 u64 time_running;
106 union {
107 struct {
108 u64 nr;
109 struct sample_read_value *values;
110 } group;
111 struct sample_read_value one;
112 };
113};
114
0776eb59
JO
115struct ip_callchain {
116 u64 nr;
117 u64 ips[0];
118};
119
120struct branch_flags {
121 u64 mispred:1;
122 u64 predicted:1;
123 u64 in_tx:1;
124 u64 abort:1;
125 u64 reserved:60;
126};
127
128struct branch_entry {
129 u64 from;
130 u64 to;
131 struct branch_flags flags;
132};
133
134struct branch_stack {
135 u64 nr;
136 struct branch_entry entries[0];
137};
138
8d50e5b4 139struct perf_sample {
180f95e2
OH
140 u64 ip;
141 u32 pid, tid;
142 u64 time;
143 u64 addr;
144 u64 id;
145 u64 stream_id;
180f95e2 146 u64 period;
05484298 147 u64 weight;
475eeab9 148 u64 transaction;
eed05fe7 149 u32 cpu;
180f95e2 150 u32 raw_size;
98a3b32c 151 u64 data_src;
180f95e2 152 void *raw_data;
eed05fe7 153 struct ip_callchain *callchain;
b5387528 154 struct branch_stack *branch_stack;
0f6a3015
JO
155 struct regs_dump user_regs;
156 struct stack_dump user_stack;
9ede473c 157 struct sample_read read;
180f95e2
OH
158};
159
98a3b32c
SE
160#define PERF_MEM_DATA_SRC_NONE \
161 (PERF_MEM_S(OP, NA) |\
162 PERF_MEM_S(LVL, NA) |\
163 PERF_MEM_S(SNOOP, NA) |\
164 PERF_MEM_S(LOCK, NA) |\
165 PERF_MEM_S(TLB, NA))
166
8d06367f
ACM
167struct build_id_event {
168 struct perf_event_header header;
a1645ce1 169 pid_t pid;
9ac3e487 170 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
8d06367f
ACM
171 char filename[];
172};
fd39e055 173
98402807 174enum perf_user_event_type { /* above any possible kernel type */
9aefcab0 175 PERF_RECORD_USER_TYPE_START = 64,
2c46dbb5 176 PERF_RECORD_HEADER_ATTR = 64,
6065210d 177 PERF_RECORD_HEADER_EVENT_TYPE = 65, /* depreceated */
9215545e 178 PERF_RECORD_HEADER_TRACING_DATA = 66,
c7929e47 179 PERF_RECORD_HEADER_BUILD_ID = 67,
98402807 180 PERF_RECORD_FINISHED_ROUND = 68,
2c46dbb5
TZ
181 PERF_RECORD_HEADER_MAX
182};
183
184struct attr_event {
185 struct perf_event_header header;
186 struct perf_event_attr attr;
187 u64 id[];
8dc58101
TZ
188};
189
cd19a035
TZ
190#define MAX_EVENT_NAME 64
191
192struct perf_trace_event_type {
193 u64 event_id;
194 char name[MAX_EVENT_NAME];
195};
196
197struct event_type_event {
198 struct perf_event_header header;
199 struct perf_trace_event_type event_type;
200};
201
9215545e
TZ
202struct tracing_data_event {
203 struct perf_event_header header;
204 u32 size;
205};
206
8115d60c 207union perf_event {
1fe2c106 208 struct perf_event_header header;
1fe2c106 209 struct mmap_event mmap;
5c5e854b 210 struct mmap2_event mmap2;
1fe2c106
FW
211 struct comm_event comm;
212 struct fork_event fork;
213 struct lost_event lost;
214 struct read_event read;
dd96c46b 215 struct throttle_event throttle;
fd39e055 216 struct sample_event sample;
2c46dbb5 217 struct attr_event attr;
cd19a035 218 struct event_type_event event_type;
9215545e 219 struct tracing_data_event tracing_data;
c7929e47 220 struct build_id_event build_id;
8115d60c 221};
66e274f3 222
8115d60c 223void perf_event__print_totals(void);
62daacb5 224
45694aa7 225struct perf_tool;
401b8e13 226struct thread_map;
4aa65636 227
45694aa7 228typedef int (*perf_event__handler_t)(struct perf_tool *tool,
d20deb64 229 union perf_event *event,
8115d60c 230 struct perf_sample *sample,
743eb868 231 struct machine *machine);
cf553114 232
45694aa7 233int perf_event__synthesize_thread_map(struct perf_tool *tool,
d20deb64 234 struct thread_map *threads,
7c940c18 235 perf_event__handler_t process,
62605dc5 236 struct machine *machine, bool mmap_data);
45694aa7 237int perf_event__synthesize_threads(struct perf_tool *tool,
d20deb64 238 perf_event__handler_t process,
62605dc5 239 struct machine *machine, bool mmap_data);
45694aa7 240int perf_event__synthesize_kernel_mmap(struct perf_tool *tool,
d20deb64 241 perf_event__handler_t process,
0ae617be 242 struct machine *machine);
8115d60c 243
45694aa7 244int perf_event__synthesize_modules(struct perf_tool *tool,
d20deb64 245 perf_event__handler_t process,
8115d60c
ACM
246 struct machine *machine);
247
45694aa7 248int perf_event__process_comm(struct perf_tool *tool,
d20deb64
ACM
249 union perf_event *event,
250 struct perf_sample *sample,
743eb868 251 struct machine *machine);
45694aa7 252int perf_event__process_lost(struct perf_tool *tool,
d20deb64
ACM
253 union perf_event *event,
254 struct perf_sample *sample,
743eb868 255 struct machine *machine);
45694aa7 256int perf_event__process_mmap(struct perf_tool *tool,
d20deb64
ACM
257 union perf_event *event,
258 struct perf_sample *sample,
743eb868 259 struct machine *machine);
5c5e854b
SE
260int perf_event__process_mmap2(struct perf_tool *tool,
261 union perf_event *event,
262 struct perf_sample *sample,
263 struct machine *machine);
f62d3f0f
ACM
264int perf_event__process_fork(struct perf_tool *tool,
265 union perf_event *event,
266 struct perf_sample *sample,
267 struct machine *machine);
268int perf_event__process_exit(struct perf_tool *tool,
d20deb64
ACM
269 union perf_event *event,
270 struct perf_sample *sample,
743eb868 271 struct machine *machine);
45694aa7 272int perf_event__process(struct perf_tool *tool,
d20deb64
ACM
273 union perf_event *event,
274 struct perf_sample *sample,
743eb868 275 struct machine *machine);
62daacb5 276
1ed091c4 277struct addr_location;
316c7136
ACM
278
279int perf_event__preprocess_sample(const union perf_event *event,
743eb868 280 struct machine *machine,
8115d60c 281 struct addr_location *al,
e44baa3e 282 struct perf_sample *sample);
1ed091c4 283
8115d60c 284const char *perf_event__name(unsigned int id);
c8446b9b 285
b1cf6f65 286size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
352ea45a 287 u64 read_format);
74eec26f 288int perf_event__synthesize_sample(union perf_event *event, u64 type,
352ea45a 289 u64 read_format,
74eec26f
AV
290 const struct perf_sample *sample,
291 bool swapped);
d0dd74e8 292
a18382b6
JO
293int perf_event__synthesize_mmap_events(struct perf_tool *tool,
294 union perf_event *event,
295 pid_t pid, pid_t tgid,
296 perf_event__handler_t process,
297 struct machine *machine,
298 bool mmap_data);
299
482ad897
ACM
300size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp);
301size_t perf_event__fprintf_mmap(union perf_event *event, FILE *fp);
5c5e854b 302size_t perf_event__fprintf_mmap2(union perf_event *event, FILE *fp);
482ad897
ACM
303size_t perf_event__fprintf_task(union perf_event *event, FILE *fp);
304size_t perf_event__fprintf(union perf_event *event, FILE *fp);
305
29b596b5
AH
306u64 kallsyms__get_function_start(const char *kallsyms_filename,
307 const char *symbol_name);
308
8b40f521 309#endif /* __PERF_RECORD_H */