perf annotate: Set the machines symbol filter
[deliverable/linux.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
18408ddc
PZ
11/*
12 * PERF_SAMPLE_IP | PERF_SAMPLE_TID | *
13 */
1fe2c106
FW
14struct ip_event {
15 struct perf_event_header header;
16 u64 ip;
17 u32 pid, tid;
18 unsigned char __more_data[];
19};
20
21struct mmap_event {
22 struct perf_event_header header;
23 u32 pid, tid;
24 u64 start;
25 u64 len;
26 u64 pgoff;
27 char filename[PATH_MAX];
28};
29
30struct comm_event {
31 struct perf_event_header header;
32 u32 pid, tid;
33 char comm[16];
34};
35
36struct fork_event {
37 struct perf_event_header header;
38 u32 pid, ppid;
39 u32 tid, ptid;
393b2ad8 40 u64 time;
1fe2c106
FW
41};
42
43struct lost_event {
44 struct perf_event_header header;
45 u64 id;
46 u64 lost;
47};
48
18408ddc
PZ
49/*
50 * PERF_FORMAT_ENABLED | PERF_FORMAT_RUNNING | PERF_FORMAT_ID
51 */
1fe2c106
FW
52struct read_event {
53 struct perf_event_header header;
dc02bf71 54 u32 pid, tid;
1fe2c106
FW
55 u64 value;
56 u64 time_enabled;
57 u64 time_running;
58 u64 id;
59};
60
a2854124
FW
61
62#define PERF_SAMPLE_MASK \
63 (PERF_SAMPLE_IP | PERF_SAMPLE_TID | \
64 PERF_SAMPLE_TIME | PERF_SAMPLE_ADDR | \
65 PERF_SAMPLE_ID | PERF_SAMPLE_STREAM_ID | \
66 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD)
67
180f95e2 68struct sample_event {
fd39e055
AV
69 struct perf_event_header header;
70 u64 array[];
71};
72
0f6a3015
JO
73struct regs_dump {
74 u64 *regs;
75};
76
77struct stack_dump {
78 u16 offset;
79 u64 size;
80 char *data;
81};
82
9ede473c
JO
83struct sample_read_value {
84 u64 value;
85 u64 id;
86};
87
88struct sample_read {
89 u64 time_enabled;
90 u64 time_running;
91 union {
92 struct {
93 u64 nr;
94 struct sample_read_value *values;
95 } group;
96 struct sample_read_value one;
97 };
98};
99
8d50e5b4 100struct perf_sample {
180f95e2
OH
101 u64 ip;
102 u32 pid, tid;
103 u64 time;
104 u64 addr;
105 u64 id;
106 u64 stream_id;
180f95e2 107 u64 period;
05484298 108 u64 weight;
eed05fe7 109 u32 cpu;
180f95e2 110 u32 raw_size;
98a3b32c 111 u64 data_src;
180f95e2 112 void *raw_data;
eed05fe7 113 struct ip_callchain *callchain;
b5387528 114 struct branch_stack *branch_stack;
0f6a3015
JO
115 struct regs_dump user_regs;
116 struct stack_dump user_stack;
9ede473c 117 struct sample_read read;
180f95e2
OH
118};
119
98a3b32c
SE
120#define PERF_MEM_DATA_SRC_NONE \
121 (PERF_MEM_S(OP, NA) |\
122 PERF_MEM_S(LVL, NA) |\
123 PERF_MEM_S(SNOOP, NA) |\
124 PERF_MEM_S(LOCK, NA) |\
125 PERF_MEM_S(TLB, NA))
126
8d06367f
ACM
127struct build_id_event {
128 struct perf_event_header header;
a1645ce1 129 pid_t pid;
9ac3e487 130 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
8d06367f
ACM
131 char filename[];
132};
fd39e055 133
98402807 134enum perf_user_event_type { /* above any possible kernel type */
9aefcab0 135 PERF_RECORD_USER_TYPE_START = 64,
2c46dbb5 136 PERF_RECORD_HEADER_ATTR = 64,
6065210d 137 PERF_RECORD_HEADER_EVENT_TYPE = 65, /* depreceated */
9215545e 138 PERF_RECORD_HEADER_TRACING_DATA = 66,
c7929e47 139 PERF_RECORD_HEADER_BUILD_ID = 67,
98402807 140 PERF_RECORD_FINISHED_ROUND = 68,
2c46dbb5
TZ
141 PERF_RECORD_HEADER_MAX
142};
143
144struct attr_event {
145 struct perf_event_header header;
146 struct perf_event_attr attr;
147 u64 id[];
8dc58101
TZ
148};
149
cd19a035
TZ
150#define MAX_EVENT_NAME 64
151
152struct perf_trace_event_type {
153 u64 event_id;
154 char name[MAX_EVENT_NAME];
155};
156
157struct event_type_event {
158 struct perf_event_header header;
159 struct perf_trace_event_type event_type;
160};
161
9215545e
TZ
162struct tracing_data_event {
163 struct perf_event_header header;
164 u32 size;
165};
166
8115d60c 167union perf_event {
1fe2c106
FW
168 struct perf_event_header header;
169 struct ip_event ip;
170 struct mmap_event mmap;
171 struct comm_event comm;
172 struct fork_event fork;
173 struct lost_event lost;
174 struct read_event read;
fd39e055 175 struct sample_event sample;
2c46dbb5 176 struct attr_event attr;
cd19a035 177 struct event_type_event event_type;
9215545e 178 struct tracing_data_event tracing_data;
c7929e47 179 struct build_id_event build_id;
8115d60c 180};
66e274f3 181
8115d60c 182void perf_event__print_totals(void);
62daacb5 183
45694aa7 184struct perf_tool;
401b8e13 185struct thread_map;
4aa65636 186
45694aa7 187typedef int (*perf_event__handler_t)(struct perf_tool *tool,
d20deb64 188 union perf_event *event,
8115d60c 189 struct perf_sample *sample,
743eb868 190 struct machine *machine);
cf553114 191
45694aa7 192int perf_event__synthesize_thread_map(struct perf_tool *tool,
d20deb64 193 struct thread_map *threads,
7c940c18 194 perf_event__handler_t process,
743eb868 195 struct machine *machine);
45694aa7 196int perf_event__synthesize_threads(struct perf_tool *tool,
d20deb64 197 perf_event__handler_t process,
743eb868 198 struct machine *machine);
45694aa7 199int perf_event__synthesize_kernel_mmap(struct perf_tool *tool,
d20deb64 200 perf_event__handler_t process,
8115d60c
ACM
201 struct machine *machine,
202 const char *symbol_name);
203
45694aa7 204int perf_event__synthesize_modules(struct perf_tool *tool,
d20deb64 205 perf_event__handler_t process,
8115d60c
ACM
206 struct machine *machine);
207
45694aa7 208int perf_event__process_comm(struct perf_tool *tool,
d20deb64
ACM
209 union perf_event *event,
210 struct perf_sample *sample,
743eb868 211 struct machine *machine);
45694aa7 212int perf_event__process_lost(struct perf_tool *tool,
d20deb64
ACM
213 union perf_event *event,
214 struct perf_sample *sample,
743eb868 215 struct machine *machine);
45694aa7 216int perf_event__process_mmap(struct perf_tool *tool,
d20deb64
ACM
217 union perf_event *event,
218 struct perf_sample *sample,
743eb868 219 struct machine *machine);
f62d3f0f
ACM
220int perf_event__process_fork(struct perf_tool *tool,
221 union perf_event *event,
222 struct perf_sample *sample,
223 struct machine *machine);
224int perf_event__process_exit(struct perf_tool *tool,
d20deb64
ACM
225 union perf_event *event,
226 struct perf_sample *sample,
743eb868 227 struct machine *machine);
45694aa7 228int perf_event__process(struct perf_tool *tool,
d20deb64
ACM
229 union perf_event *event,
230 struct perf_sample *sample,
743eb868 231 struct machine *machine);
62daacb5 232
1ed091c4 233struct addr_location;
8115d60c 234int perf_event__preprocess_sample(const union perf_event *self,
743eb868 235 struct machine *machine,
8115d60c
ACM
236 struct addr_location *al,
237 struct perf_sample *sample,
238 symbol_filter_t filter);
1ed091c4 239
8115d60c 240const char *perf_event__name(unsigned int id);
c8446b9b 241
74eec26f
AV
242int perf_event__synthesize_sample(union perf_event *event, u64 type,
243 const struct perf_sample *sample,
244 bool swapped);
d0dd74e8 245
482ad897
ACM
246size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp);
247size_t perf_event__fprintf_mmap(union perf_event *event, FILE *fp);
248size_t perf_event__fprintf_task(union perf_event *event, FILE *fp);
249size_t perf_event__fprintf(union perf_event *event, FILE *fp);
250
8b40f521 251#endif /* __PERF_RECORD_H */
This page took 0.186768 seconds and 5 git commands to generate.