perf/scripts: Move common code out of Perl-specific files
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / tools / perf / util / trace-event.h
blobaaf2da2d21e5abcde203db224e5156c6dd80f4f6
1 #ifndef __PERF_TRACE_EVENTS_H
2 #define __PERF_TRACE_EVENTS_H
4 #include "parse-events.h"
6 #define __unused __attribute__((unused))
9 #ifndef PAGE_MASK
10 #define PAGE_MASK (page_size - 1)
11 #endif
13 enum {
14 RINGBUF_TYPE_PADDING = 29,
15 RINGBUF_TYPE_TIME_EXTEND = 30,
16 RINGBUF_TYPE_TIME_STAMP = 31,
19 #ifndef TS_SHIFT
20 #define TS_SHIFT 27
21 #endif
23 #define NSECS_PER_SEC 1000000000ULL
24 #define NSECS_PER_USEC 1000ULL
26 enum format_flags {
27 FIELD_IS_ARRAY = 1,
28 FIELD_IS_POINTER = 2,
29 FIELD_IS_SIGNED = 4,
30 FIELD_IS_STRING = 8,
31 FIELD_IS_DYNAMIC = 16,
32 FIELD_IS_FLAG = 32,
33 FIELD_IS_SYMBOLIC = 64,
36 struct format_field {
37 struct format_field *next;
38 char *type;
39 char *name;
40 int offset;
41 int size;
42 unsigned long flags;
45 struct format {
46 int nr_common;
47 int nr_fields;
48 struct format_field *common_fields;
49 struct format_field *fields;
52 struct print_arg_atom {
53 char *atom;
56 struct print_arg_string {
57 char *string;
58 int offset;
61 struct print_arg_field {
62 char *name;
63 struct format_field *field;
66 struct print_flag_sym {
67 struct print_flag_sym *next;
68 char *value;
69 char *str;
72 struct print_arg_typecast {
73 char *type;
74 struct print_arg *item;
77 struct print_arg_flags {
78 struct print_arg *field;
79 char *delim;
80 struct print_flag_sym *flags;
83 struct print_arg_symbol {
84 struct print_arg *field;
85 struct print_flag_sym *symbols;
88 struct print_arg;
90 struct print_arg_op {
91 char *op;
92 int prio;
93 struct print_arg *left;
94 struct print_arg *right;
97 struct print_arg_func {
98 char *name;
99 struct print_arg *args;
102 enum print_arg_type {
103 PRINT_NULL,
104 PRINT_ATOM,
105 PRINT_FIELD,
106 PRINT_FLAGS,
107 PRINT_SYMBOL,
108 PRINT_TYPE,
109 PRINT_STRING,
110 PRINT_OP,
113 struct print_arg {
114 struct print_arg *next;
115 enum print_arg_type type;
116 union {
117 struct print_arg_atom atom;
118 struct print_arg_field field;
119 struct print_arg_typecast typecast;
120 struct print_arg_flags flags;
121 struct print_arg_symbol symbol;
122 struct print_arg_func func;
123 struct print_arg_string string;
124 struct print_arg_op op;
128 struct print_fmt {
129 char *format;
130 struct print_arg *args;
133 struct event {
134 struct event *next;
135 char *name;
136 int id;
137 int flags;
138 struct format format;
139 struct print_fmt print_fmt;
140 char *system;
143 enum {
144 EVENT_FL_ISFTRACE = 0x01,
145 EVENT_FL_ISPRINT = 0x02,
146 EVENT_FL_ISBPRINT = 0x04,
147 EVENT_FL_ISFUNC = 0x08,
148 EVENT_FL_ISFUNCENT = 0x10,
149 EVENT_FL_ISFUNCRET = 0x20,
151 EVENT_FL_FAILED = 0x80000000
154 struct record {
155 unsigned long long ts;
156 int size;
157 void *data;
160 struct record *trace_peek_data(int cpu);
161 struct record *trace_read_data(int cpu);
163 void parse_set_info(int nr_cpus, int long_sz);
165 void trace_report(int fd);
167 void *malloc_or_die(unsigned int size);
169 void parse_cmdlines(char *file, int size);
170 void parse_proc_kallsyms(char *file, unsigned int size);
171 void parse_ftrace_printk(char *file, unsigned int size);
173 void print_funcs(void);
174 void print_printk(void);
176 int parse_ftrace_file(char *buf, unsigned long size);
177 int parse_event_file(char *buf, unsigned long size, char *sys);
178 void print_event(int cpu, void *data, int size, unsigned long long nsecs,
179 char *comm);
181 extern int file_bigendian;
182 extern int host_bigendian;
184 int bigendian(void);
186 static inline unsigned short __data2host2(unsigned short data)
188 unsigned short swap;
190 if (host_bigendian == file_bigendian)
191 return data;
193 swap = ((data & 0xffULL) << 8) |
194 ((data & (0xffULL << 8)) >> 8);
196 return swap;
199 static inline unsigned int __data2host4(unsigned int data)
201 unsigned int swap;
203 if (host_bigendian == file_bigendian)
204 return data;
206 swap = ((data & 0xffULL) << 24) |
207 ((data & (0xffULL << 8)) << 8) |
208 ((data & (0xffULL << 16)) >> 8) |
209 ((data & (0xffULL << 24)) >> 24);
211 return swap;
214 static inline unsigned long long __data2host8(unsigned long long data)
216 unsigned long long swap;
218 if (host_bigendian == file_bigendian)
219 return data;
221 swap = ((data & 0xffULL) << 56) |
222 ((data & (0xffULL << 8)) << 40) |
223 ((data & (0xffULL << 16)) << 24) |
224 ((data & (0xffULL << 24)) << 8) |
225 ((data & (0xffULL << 32)) >> 8) |
226 ((data & (0xffULL << 40)) >> 24) |
227 ((data & (0xffULL << 48)) >> 40) |
228 ((data & (0xffULL << 56)) >> 56);
230 return swap;
233 #define data2host2(ptr) __data2host2(*(unsigned short *)ptr)
234 #define data2host4(ptr) __data2host4(*(unsigned int *)ptr)
235 #define data2host8(ptr) __data2host8(*(unsigned long long *)ptr)
237 extern int header_page_ts_offset;
238 extern int header_page_ts_size;
239 extern int header_page_size_offset;
240 extern int header_page_size_size;
241 extern int header_page_data_offset;
242 extern int header_page_data_size;
244 extern int latency_format;
246 int parse_header_page(char *buf, unsigned long size);
247 int trace_parse_common_type(void *data);
248 int trace_parse_common_pid(void *data);
249 int parse_common_pc(void *data);
250 int parse_common_flags(void *data);
251 int parse_common_lock_depth(void *data);
252 struct event *trace_find_event(int id);
253 struct event *trace_find_next_event(struct event *event);
254 unsigned long long read_size(void *ptr, int size);
255 unsigned long long
256 raw_field_value(struct event *event, const char *name, void *data);
257 void *raw_field_ptr(struct event *event, const char *name, void *data);
258 unsigned long long eval_flag(const char *flag);
260 int read_tracing_data(int fd, struct perf_event_attr *pattrs, int nb_events);
262 /* taken from kernel/trace/trace.h */
263 enum trace_flag_type {
264 TRACE_FLAG_IRQS_OFF = 0x01,
265 TRACE_FLAG_IRQS_NOSUPPORT = 0x02,
266 TRACE_FLAG_NEED_RESCHED = 0x04,
267 TRACE_FLAG_HARDIRQ = 0x08,
268 TRACE_FLAG_SOFTIRQ = 0x10,
271 struct scripting_ops {
272 const char *name;
273 int (*start_script) (const char *script, int argc, const char **argv);
274 int (*stop_script) (void);
275 void (*process_event) (int cpu, void *data, int size,
276 unsigned long long nsecs, char *comm);
277 int (*generate_script) (const char *outfile);
280 int script_spec_register(const char *spec, struct scripting_ops *ops);
282 void setup_perl_scripting(void);
284 struct scripting_context {
285 void *event_data;
288 int common_pc(struct scripting_context *context);
289 int common_flags(struct scripting_context *context);
290 int common_lock_depth(struct scripting_context *context);
292 #endif /* __PERF_TRACE_EVENTS_H */