blob: e7aaf002e6679ec5599cfa6a39a09f3f6dbf7020 [file] [log] [blame]
John Kacur8b40f522009-09-24 18:02:18 +02001#ifndef __PERF_TRACE_EVENTS_H
2#define __PERF_TRACE_EVENTS_H
Steven Rostedt520509432009-08-17 16:18:05 +02003
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +02004#include "parse-events.h"
Steven Rostedt520509432009-08-17 16:18:05 +02005
6#define __unused __attribute__((unused))
7
8
9#ifndef PAGE_MASK
10#define PAGE_MASK (page_size - 1)
11#endif
12
13enum {
14 RINGBUF_TYPE_PADDING = 29,
15 RINGBUF_TYPE_TIME_EXTEND = 30,
16 RINGBUF_TYPE_TIME_STAMP = 31,
17};
18
19#ifndef TS_SHIFT
20#define TS_SHIFT 27
21#endif
22
23#define NSECS_PER_SEC 1000000000ULL
24#define NSECS_PER_USEC 1000ULL
25
26enum format_flags {
27 FIELD_IS_ARRAY = 1,
28 FIELD_IS_POINTER = 2,
Tom Zanussi26a50742009-10-06 01:09:50 -050029 FIELD_IS_SIGNED = 4,
Tom Zanussi064739b2009-10-06 01:09:52 -050030 FIELD_IS_STRING = 8,
31 FIELD_IS_DYNAMIC = 16,
Steven Rostedt520509432009-08-17 16:18:05 +020032};
33
34struct format_field {
35 struct format_field *next;
36 char *type;
37 char *name;
38 int offset;
39 int size;
40 unsigned long flags;
41};
42
43struct format {
44 int nr_common;
45 int nr_fields;
46 struct format_field *common_fields;
47 struct format_field *fields;
48};
49
50struct print_arg_atom {
51 char *atom;
52};
53
54struct print_arg_string {
55 char *string;
Frederic Weisbecker561f7322009-08-31 06:45:21 +020056 int offset;
Steven Rostedt520509432009-08-17 16:18:05 +020057};
58
59struct print_arg_field {
60 char *name;
61 struct format_field *field;
62};
63
64struct print_flag_sym {
65 struct print_flag_sym *next;
66 char *value;
67 char *str;
68};
69
70struct print_arg_typecast {
71 char *type;
72 struct print_arg *item;
73};
74
75struct print_arg_flags {
76 struct print_arg *field;
77 char *delim;
78 struct print_flag_sym *flags;
79};
80
81struct print_arg_symbol {
82 struct print_arg *field;
83 struct print_flag_sym *symbols;
84};
85
86struct print_arg;
87
88struct print_arg_op {
89 char *op;
90 int prio;
91 struct print_arg *left;
92 struct print_arg *right;
93};
94
95struct print_arg_func {
96 char *name;
97 struct print_arg *args;
98};
99
100enum print_arg_type {
101 PRINT_NULL,
102 PRINT_ATOM,
103 PRINT_FIELD,
104 PRINT_FLAGS,
105 PRINT_SYMBOL,
106 PRINT_TYPE,
107 PRINT_STRING,
108 PRINT_OP,
109};
110
111struct print_arg {
112 struct print_arg *next;
113 enum print_arg_type type;
114 union {
115 struct print_arg_atom atom;
116 struct print_arg_field field;
117 struct print_arg_typecast typecast;
118 struct print_arg_flags flags;
119 struct print_arg_symbol symbol;
120 struct print_arg_func func;
121 struct print_arg_string string;
122 struct print_arg_op op;
123 };
124};
125
126struct print_fmt {
127 char *format;
128 struct print_arg *args;
129};
130
131struct event {
132 struct event *next;
133 char *name;
134 int id;
135 int flags;
136 struct format format;
137 struct print_fmt print_fmt;
Tom Zanussi27746012009-10-06 01:09:51 -0500138 char *system;
Steven Rostedt520509432009-08-17 16:18:05 +0200139};
140
141enum {
Steven Rostedt07a4bdd2009-10-14 15:43:39 -0400142 EVENT_FL_ISFTRACE = 0x01,
143 EVENT_FL_ISPRINT = 0x02,
144 EVENT_FL_ISBPRINT = 0x04,
145 EVENT_FL_ISFUNC = 0x08,
146 EVENT_FL_ISFUNCENT = 0x10,
147 EVENT_FL_ISFUNCRET = 0x20,
148
149 EVENT_FL_FAILED = 0x80000000
Steven Rostedt520509432009-08-17 16:18:05 +0200150};
151
152struct record {
153 unsigned long long ts;
154 int size;
155 void *data;
156};
157
158struct record *trace_peek_data(int cpu);
159struct record *trace_read_data(int cpu);
160
161void parse_set_info(int nr_cpus, int long_sz);
162
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200163void trace_report(int fd);
Steven Rostedt520509432009-08-17 16:18:05 +0200164
165void *malloc_or_die(unsigned int size);
166
167void parse_cmdlines(char *file, int size);
168void parse_proc_kallsyms(char *file, unsigned int size);
169void parse_ftrace_printk(char *file, unsigned int size);
170
171void print_funcs(void);
172void print_printk(void);
173
174int parse_ftrace_file(char *buf, unsigned long size);
Tom Zanussi27746012009-10-06 01:09:51 -0500175int parse_event_file(char *buf, unsigned long size, char *sys);
Steven Rostedt520509432009-08-17 16:18:05 +0200176void print_event(int cpu, void *data, int size, unsigned long long nsecs,
177 char *comm);
178
179extern int file_bigendian;
180extern int host_bigendian;
181
182int bigendian(void);
183
184static inline unsigned short __data2host2(unsigned short data)
185{
186 unsigned short swap;
187
188 if (host_bigendian == file_bigendian)
189 return data;
190
191 swap = ((data & 0xffULL) << 8) |
192 ((data & (0xffULL << 8)) >> 8);
193
194 return swap;
195}
196
197static inline unsigned int __data2host4(unsigned int data)
198{
199 unsigned int swap;
200
201 if (host_bigendian == file_bigendian)
202 return data;
203
204 swap = ((data & 0xffULL) << 24) |
205 ((data & (0xffULL << 8)) << 8) |
206 ((data & (0xffULL << 16)) >> 8) |
207 ((data & (0xffULL << 24)) >> 24);
208
209 return swap;
210}
211
212static inline unsigned long long __data2host8(unsigned long long data)
213{
214 unsigned long long swap;
215
216 if (host_bigendian == file_bigendian)
217 return data;
218
219 swap = ((data & 0xffULL) << 56) |
220 ((data & (0xffULL << 8)) << 40) |
221 ((data & (0xffULL << 16)) << 24) |
222 ((data & (0xffULL << 24)) << 8) |
223 ((data & (0xffULL << 32)) >> 8) |
224 ((data & (0xffULL << 40)) >> 24) |
225 ((data & (0xffULL << 48)) >> 40) |
226 ((data & (0xffULL << 56)) >> 56);
227
228 return swap;
229}
230
231#define data2host2(ptr) __data2host2(*(unsigned short *)ptr)
232#define data2host4(ptr) __data2host4(*(unsigned int *)ptr)
233#define data2host8(ptr) __data2host8(*(unsigned long long *)ptr)
234
235extern int header_page_ts_offset;
236extern int header_page_ts_size;
237extern int header_page_size_offset;
238extern int header_page_size_size;
239extern int header_page_data_offset;
240extern int header_page_data_size;
241
Steven Rostedtcda48462009-10-14 15:43:42 -0400242extern int latency_format;
243
Steven Rostedt520509432009-08-17 16:18:05 +0200244int parse_header_page(char *buf, unsigned long size);
Ingo Molnarec156762009-09-11 12:12:54 +0200245int trace_parse_common_type(void *data);
246struct event *trace_find_event(int id);
Frederic Weisbecker46538812009-09-12 02:43:45 +0200247unsigned long long
248raw_field_value(struct event *event, const char *name, void *data);
249void *raw_field_ptr(struct event *event, const char *name, void *data);
Steven Rostedt520509432009-08-17 16:18:05 +0200250
Arnaldo Carvalho de Meloe2561362009-11-21 14:31:26 -0200251int read_tracing_data(int fd, struct perf_event_attr *pattrs, int nb_events);
Steven Rostedt520509432009-08-17 16:18:05 +0200252
Steven Rostedtcda48462009-10-14 15:43:42 -0400253/* taken from kernel/trace/trace.h */
254enum trace_flag_type {
255 TRACE_FLAG_IRQS_OFF = 0x01,
256 TRACE_FLAG_IRQS_NOSUPPORT = 0x02,
257 TRACE_FLAG_NEED_RESCHED = 0x04,
258 TRACE_FLAG_HARDIRQ = 0x08,
259 TRACE_FLAG_SOFTIRQ = 0x10,
260};
261
Tom Zanussi956ffd02009-11-25 01:15:46 -0600262struct scripting_ops {
263 const char *name;
264 int (*start_script) (const char *);
265 int (*stop_script) (void);
266 void (*process_event) (int cpu, void *data, int size,
267 unsigned long long nsecs, char *comm);
268 int (*generate_script) (const char *outfile);
269};
270
271int script_spec_register(const char *spec, struct scripting_ops *ops);
272
John Kacur8b40f522009-09-24 18:02:18 +0200273#endif /* __PERF_TRACE_EVENTS_H */