1 #ifndef _TRACE_EVENTS_H
2 #define _TRACE_EVENTS_H
4 #include "parse-events.h"
6 #define __unused __attribute__((unused))
10 #define PAGE_MASK (page_size - 1)
14 RINGBUF_TYPE_PADDING
= 29,
15 RINGBUF_TYPE_TIME_EXTEND
= 30,
16 RINGBUF_TYPE_TIME_STAMP
= 31,
23 #define NSECS_PER_SEC 1000000000ULL
24 #define NSECS_PER_USEC 1000ULL
32 struct format_field
*next
;
43 struct format_field
*common_fields
;
44 struct format_field
*fields
;
47 struct print_arg_atom
{
51 struct print_arg_string
{
56 struct print_arg_field
{
58 struct format_field
*field
;
61 struct print_flag_sym
{
62 struct print_flag_sym
*next
;
67 struct print_arg_typecast
{
69 struct print_arg
*item
;
72 struct print_arg_flags
{
73 struct print_arg
*field
;
75 struct print_flag_sym
*flags
;
78 struct print_arg_symbol
{
79 struct print_arg
*field
;
80 struct print_flag_sym
*symbols
;
88 struct print_arg
*left
;
89 struct print_arg
*right
;
92 struct print_arg_func
{
94 struct print_arg
*args
;
109 struct print_arg
*next
;
110 enum print_arg_type type
;
112 struct print_arg_atom atom
;
113 struct print_arg_field field
;
114 struct print_arg_typecast typecast
;
115 struct print_arg_flags flags
;
116 struct print_arg_symbol symbol
;
117 struct print_arg_func func
;
118 struct print_arg_string string
;
119 struct print_arg_op op
;
125 struct print_arg
*args
;
133 struct format format
;
134 struct print_fmt print_fmt
;
138 EVENT_FL_ISFTRACE
= 1,
139 EVENT_FL_ISPRINT
= 2,
140 EVENT_FL_ISBPRINT
= 4,
142 EVENT_FL_ISFUNCENT
= 16,
143 EVENT_FL_ISFUNCRET
= 32,
147 unsigned long long ts
;
152 struct record
*trace_peek_data(int cpu
);
153 struct record
*trace_read_data(int cpu
);
155 void parse_set_info(int nr_cpus
, int long_sz
);
157 void trace_report(void);
159 void *malloc_or_die(unsigned int size
);
161 void parse_cmdlines(char *file
, int size
);
162 void parse_proc_kallsyms(char *file
, unsigned int size
);
163 void parse_ftrace_printk(char *file
, unsigned int size
);
165 void print_funcs(void);
166 void print_printk(void);
168 int parse_ftrace_file(char *buf
, unsigned long size
);
169 int parse_event_file(char *buf
, unsigned long size
, char *system
);
170 void print_event(int cpu
, void *data
, int size
, unsigned long long nsecs
,
173 extern int file_bigendian
;
174 extern int host_bigendian
;
178 static inline unsigned short __data2host2(unsigned short data
)
182 if (host_bigendian
== file_bigendian
)
185 swap
= ((data
& 0xffULL
) << 8) |
186 ((data
& (0xffULL
<< 8)) >> 8);
191 static inline unsigned int __data2host4(unsigned int data
)
195 if (host_bigendian
== file_bigendian
)
198 swap
= ((data
& 0xffULL
) << 24) |
199 ((data
& (0xffULL
<< 8)) << 8) |
200 ((data
& (0xffULL
<< 16)) >> 8) |
201 ((data
& (0xffULL
<< 24)) >> 24);
206 static inline unsigned long long __data2host8(unsigned long long data
)
208 unsigned long long swap
;
210 if (host_bigendian
== file_bigendian
)
213 swap
= ((data
& 0xffULL
) << 56) |
214 ((data
& (0xffULL
<< 8)) << 40) |
215 ((data
& (0xffULL
<< 16)) << 24) |
216 ((data
& (0xffULL
<< 24)) << 8) |
217 ((data
& (0xffULL
<< 32)) >> 8) |
218 ((data
& (0xffULL
<< 40)) >> 24) |
219 ((data
& (0xffULL
<< 48)) >> 40) |
220 ((data
& (0xffULL
<< 56)) >> 56);
225 #define data2host2(ptr) __data2host2(*(unsigned short *)ptr)
226 #define data2host4(ptr) __data2host4(*(unsigned int *)ptr)
227 #define data2host8(ptr) __data2host8(*(unsigned long long *)ptr)
229 extern int header_page_ts_offset
;
230 extern int header_page_ts_size
;
231 extern int header_page_size_offset
;
232 extern int header_page_size_size
;
233 extern int header_page_data_offset
;
234 extern int header_page_data_size
;
236 int parse_header_page(char *buf
, unsigned long size
);
237 int trace_parse_common_type(void *data
);
238 struct event
*trace_find_event(int id
);
240 void read_tracing_data(struct perf_counter_attr
*pattrs
, int nb_counters
);
242 #endif /* _TRACE_EVENTS_H */