trace-event.h 2.9 KB
Newer Older
1 2
#ifndef _PERF_UTIL_TRACE_EVENT_H
#define _PERF_UTIL_TRACE_EVENT_H
3

4
#include "parse-events.h"
5
#include "event-parse.h"
6
#include "session.h"
7 8 9 10

struct machine;
struct perf_sample;
union perf_event;
11
struct perf_tool;
12

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
extern int header_page_size_size;
extern int header_page_ts_size;
extern int header_page_data_offset;

extern bool latency_format;
extern struct pevent *perf_pevent;

enum {
	RINGBUF_TYPE_PADDING		= 29,
	RINGBUF_TYPE_TIME_EXTEND	= 30,
	RINGBUF_TYPE_TIME_STAMP		= 31,
};

#ifndef TS_SHIFT
#define TS_SHIFT		27
#endif

int bigendian(void);

32
struct pevent *read_trace_init(int file_bigendian, int host_bigendian);
33 34
void event_format__print(struct event_format *event,
			 int cpu, void *data, int size);
35

36 37 38
int parse_ftrace_file(struct pevent *pevent, char *buf, unsigned long size);
int parse_event_file(struct pevent *pevent,
		     char *buf, unsigned long size, char *sys);
39

40
struct pevent_record *trace_peek_data(struct pevent *pevent, int cpu);
41 42 43 44 45

unsigned long long
raw_field_value(struct event_format *event, const char *name, void *data);
void *raw_field_ptr(struct event_format *event, const char *name, void *data);

46 47
void parse_proc_kallsyms(struct pevent *pevent, char *file, unsigned int size);
void parse_ftrace_printk(struct pevent *pevent, char *file, unsigned int size);
48

49
ssize_t trace_report(int fd, struct pevent **pevent, bool repipe);
50

51 52
int trace_parse_common_type(struct pevent *pevent, void *data);
int trace_parse_common_pid(struct pevent *pevent, void *data);
53

54 55
struct event_format *trace_find_next_event(struct pevent *pevent,
					   struct event_format *event);
56
unsigned long long read_size(struct event_format *event, void *ptr, int size);
57 58
unsigned long long eval_flag(const char *flag);

59
struct pevent_record *trace_read_data(struct pevent *pevent, int cpu);
60
int read_tracing_data(int fd, struct list_head *pattrs);
J
Jiri Olsa 已提交
61 62 63 64 65 66 67 68 69 70

struct tracing_data {
	/* size is only valid if temp is 'true' */
	ssize_t size;
	bool temp;
	char temp_file[50];
};

struct tracing_data *tracing_data_get(struct list_head *pattrs,
				      int fd, bool temp);
71
int tracing_data_put(struct tracing_data *tdata);
J
Jiri Olsa 已提交
72

73

74 75
struct addr_location;

76 77
struct perf_session;

T
Tom Zanussi 已提交
78 79
struct scripting_ops {
	const char *name;
80
	int (*start_script) (const char *script, int argc, const char **argv);
T
Tom Zanussi 已提交
81
	int (*stop_script) (void);
82 83
	void (*process_event) (union perf_event *event,
			       struct perf_sample *sample,
84
			       struct perf_evsel *evsel,
85
			       struct machine *machine,
86
			       struct addr_location *al);
87
	int (*generate_script) (struct pevent *pevent, const char *outfile);
T
Tom Zanussi 已提交
88 89 90 91
};

int script_spec_register(const char *spec, struct scripting_ops *ops);

92
void setup_perl_scripting(void);
93
void setup_python_scripting(void);
94

95
struct scripting_context {
96
	struct pevent *pevent;
97 98 99 100 101 102 103
	void *event_data;
};

int common_pc(struct scripting_context *context);
int common_flags(struct scripting_context *context);
int common_lock_depth(struct scripting_context *context);

104
#endif /* _PERF_UTIL_TRACE_EVENT_H */