]> bbs.cooldavid.org Git - net-next-2.6.git/blob - tools/perf/util/event.h
e5740ea140abfc319326f454ae814bf0dab5c45c
[net-next-2.6.git] / tools / perf / util / event.h
1 #ifndef __PERF_RECORD_H
2 #define __PERF_RECORD_H
3
4 #include <limits.h>
5
6 #include "../perf.h"
7 #include "map.h"
8
9 /*
10  * PERF_SAMPLE_IP | PERF_SAMPLE_TID | *
11  */
12 struct ip_event {
13         struct perf_event_header header;
14         u64 ip;
15         u32 pid, tid;
16         unsigned char __more_data[];
17 };
18
19 struct mmap_event {
20         struct perf_event_header header;
21         u32 pid, tid;
22         u64 start;
23         u64 len;
24         u64 pgoff;
25         char filename[PATH_MAX];
26 };
27
28 struct comm_event {
29         struct perf_event_header header;
30         u32 pid, tid;
31         char comm[16];
32 };
33
34 struct fork_event {
35         struct perf_event_header header;
36         u32 pid, ppid;
37         u32 tid, ptid;
38         u64 time;
39 };
40
41 struct lost_event {
42         struct perf_event_header header;
43         u64 id;
44         u64 lost;
45 };
46
47 /*
48  * PERF_FORMAT_ENABLED | PERF_FORMAT_RUNNING | PERF_FORMAT_ID
49  */
50 struct read_event {
51         struct perf_event_header header;
52         u32 pid, tid;
53         u64 value;
54         u64 time_enabled;
55         u64 time_running;
56         u64 id;
57 };
58
59 struct sample_event {
60         struct perf_event_header        header;
61         u64 array[];
62 };
63
64 struct sample_data {
65         u64 ip;
66         u32 pid, tid;
67         u64 time;
68         u64 addr;
69         u64 id;
70         u64 stream_id;
71         u64 period;
72         u32 cpu;
73         u32 raw_size;
74         void *raw_data;
75         struct ip_callchain *callchain;
76 };
77
78 #define BUILD_ID_SIZE 20
79
80 struct build_id_event {
81         struct perf_event_header header;
82         u8                       build_id[ALIGN(BUILD_ID_SIZE, sizeof(u64))];
83         char                     filename[];
84 };
85
86 enum perf_header_event_type { /* above any possible kernel type */
87         PERF_RECORD_HEADER_ATTR                 = 64,
88         PERF_RECORD_HEADER_EVENT_TYPE           = 65,
89         PERF_RECORD_HEADER_TRACING_DATA         = 66,
90         PERF_RECORD_HEADER_BUILD_ID             = 67,
91         PERF_RECORD_HEADER_MAX
92 };
93
94 struct attr_event {
95         struct perf_event_header header;
96         struct perf_event_attr attr;
97         u64 id[];
98 };
99
100 #define MAX_EVENT_NAME 64
101
102 struct perf_trace_event_type {
103         u64     event_id;
104         char    name[MAX_EVENT_NAME];
105 };
106
107 struct event_type_event {
108         struct perf_event_header header;
109         struct perf_trace_event_type event_type;
110 };
111
112 struct tracing_data_event {
113         struct perf_event_header header;
114         u32 size;
115 };
116
117 typedef union event_union {
118         struct perf_event_header        header;
119         struct ip_event                 ip;
120         struct mmap_event               mmap;
121         struct comm_event               comm;
122         struct fork_event               fork;
123         struct lost_event               lost;
124         struct read_event               read;
125         struct sample_event             sample;
126         struct attr_event               attr;
127         struct event_type_event         event_type;
128         struct tracing_data_event       tracing_data;
129         struct build_id_event           build_id;
130 } event_t;
131
132 struct events_stats {
133         u64 total;
134         u64 lost;
135 };
136
137 struct event_stat_id {
138         struct rb_node          rb_node;
139         struct rb_root          hists;
140         struct events_stats     stats;
141         u64                     config;
142         u64                     event_stream;
143         u32                     type;
144 };
145
146 void event__print_totals(void);
147
148 struct perf_session;
149
150 typedef int (*event__handler_t)(event_t *event, struct perf_session *session);
151
152 int event__synthesize_thread(pid_t pid, event__handler_t process,
153                              struct perf_session *session);
154 void event__synthesize_threads(event__handler_t process,
155                                struct perf_session *session);
156 int event__synthesize_kernel_mmap(event__handler_t process,
157                                   struct perf_session *session,
158                                   const char *symbol_name);
159 int event__synthesize_modules(event__handler_t process,
160                               struct perf_session *session);
161
162 int event__process_comm(event_t *self, struct perf_session *session);
163 int event__process_lost(event_t *self, struct perf_session *session);
164 int event__process_mmap(event_t *self, struct perf_session *session);
165 int event__process_task(event_t *self, struct perf_session *session);
166
167 struct addr_location;
168 int event__preprocess_sample(const event_t *self, struct perf_session *session,
169                              struct addr_location *al, symbol_filter_t filter);
170 int event__parse_sample(event_t *event, u64 type, struct sample_data *data);
171
172 #endif /* __PERF_RECORD_H */