2018-10-06 00:22:25 +08:00
|
|
|
// SPDX-License-Identifier: LGPL-2.1
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2009, 2010 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PARSE_EVENTS_INT_H
|
|
|
|
#define _PARSE_EVENTS_INT_H
|
|
|
|
|
2018-12-01 12:08:09 +08:00
|
|
|
struct tep_cmdline;
|
2018-10-06 00:22:25 +08:00
|
|
|
struct cmdline_list;
|
|
|
|
struct func_map;
|
|
|
|
struct func_list;
|
|
|
|
struct event_handler;
|
|
|
|
struct func_resolver;
|
|
|
|
|
|
|
|
struct tep_handle {
|
|
|
|
int ref_count;
|
|
|
|
|
|
|
|
int header_page_ts_offset;
|
|
|
|
int header_page_ts_size;
|
|
|
|
int header_page_size_offset;
|
|
|
|
int header_page_size_size;
|
|
|
|
int header_page_data_offset;
|
|
|
|
int header_page_data_size;
|
|
|
|
int header_page_overwrite;
|
|
|
|
|
|
|
|
enum tep_endian file_bigendian;
|
|
|
|
enum tep_endian host_bigendian;
|
|
|
|
|
|
|
|
int latency_format;
|
|
|
|
|
|
|
|
int old_format;
|
|
|
|
|
|
|
|
int cpus;
|
|
|
|
int long_size;
|
|
|
|
int page_size;
|
|
|
|
|
2018-12-01 12:08:09 +08:00
|
|
|
struct tep_cmdline *cmdlines;
|
2018-10-06 00:22:25 +08:00
|
|
|
struct cmdline_list *cmdlist;
|
|
|
|
int cmdline_count;
|
|
|
|
|
|
|
|
struct func_map *func_map;
|
|
|
|
struct func_resolver *func_resolver;
|
|
|
|
struct func_list *funclist;
|
|
|
|
unsigned int func_count;
|
|
|
|
|
|
|
|
struct printk_map *printk_map;
|
|
|
|
struct printk_list *printklist;
|
|
|
|
unsigned int printk_count;
|
|
|
|
|
|
|
|
|
2018-11-30 23:44:07 +08:00
|
|
|
struct tep_event **events;
|
2018-10-06 00:22:25 +08:00
|
|
|
int nr_events;
|
2018-11-30 23:44:07 +08:00
|
|
|
struct tep_event **sort_events;
|
2018-10-06 00:22:25 +08:00
|
|
|
enum tep_event_sort_type last_type;
|
|
|
|
|
|
|
|
int type_offset;
|
|
|
|
int type_size;
|
|
|
|
|
|
|
|
int pid_offset;
|
|
|
|
int pid_size;
|
|
|
|
|
|
|
|
int pc_offset;
|
|
|
|
int pc_size;
|
|
|
|
|
|
|
|
int flags_offset;
|
|
|
|
int flags_size;
|
|
|
|
|
|
|
|
int ld_offset;
|
|
|
|
int ld_size;
|
|
|
|
|
|
|
|
int print_raw;
|
|
|
|
|
|
|
|
int test_filters;
|
|
|
|
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
struct tep_format_field *bprint_ip_field;
|
|
|
|
struct tep_format_field *bprint_fmt_field;
|
|
|
|
struct tep_format_field *bprint_buf_field;
|
|
|
|
|
|
|
|
struct event_handler *handlers;
|
|
|
|
struct tep_function_handler *func_handlers;
|
|
|
|
|
|
|
|
/* cache */
|
2018-11-30 23:44:07 +08:00
|
|
|
struct tep_event *last_event;
|
2018-10-06 00:22:25 +08:00
|
|
|
|
|
|
|
char *trace_clock;
|
|
|
|
};
|
|
|
|
|
2018-11-30 23:44:10 +08:00
|
|
|
void tep_free_event(struct tep_event *event);
|
|
|
|
void tep_free_format_field(struct tep_format_field *field);
|
|
|
|
|
|
|
|
unsigned short tep_data2host2(struct tep_handle *pevent, unsigned short data);
|
|
|
|
unsigned int tep_data2host4(struct tep_handle *pevent, unsigned int data);
|
|
|
|
unsigned long long tep_data2host8(struct tep_handle *pevent, unsigned long long data);
|
|
|
|
|
2018-10-06 00:22:25 +08:00
|
|
|
#endif /* _PARSE_EVENTS_INT_H */
|