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

4
#include <traceevent/event-parse.h>
5
#include "parse-events.h"
6 7 8 9

struct machine;
struct perf_sample;
union perf_event;
10
struct perf_tool;
11
struct thread;
J
Jiri Olsa 已提交
12 13 14 15 16 17 18 19 20
struct plugin_list;

struct trace_event {
	struct pevent		*pevent;
	struct plugin_list	*plugin_list;
};

int trace_event__init(struct trace_event *t);
void trace_event__cleanup(struct trace_event *t);
21

22 23
int bigendian(void);

24 25
void event_format__print(struct event_format *event,
			 int cpu, void *data, int size);
26

27 28 29
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);
30 31 32 33

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

34 35
void parse_proc_kallsyms(struct pevent *pevent, char *file, unsigned int size);
void parse_ftrace_printk(struct pevent *pevent, char *file, unsigned int size);
36

J
Jiri Olsa 已提交
37
ssize_t trace_report(int fd, struct trace_event *tevent, bool repipe);
38

39 40
struct event_format *trace_find_next_event(struct pevent *pevent,
					   struct event_format *event);
41
unsigned long long read_size(struct event_format *event, void *ptr, int size);
42 43
unsigned long long eval_flag(const char *flag);

44
int read_tracing_data(int fd, struct list_head *pattrs);
J
Jiri Olsa 已提交
45 46 47 48 49 50 51 52 53 54

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);
55
int tracing_data_put(struct tracing_data *tdata);
J
Jiri Olsa 已提交
56

57

58 59
struct addr_location;

60 61
struct perf_session;

T
Tom Zanussi 已提交
62 63
struct scripting_ops {
	const char *name;
64
	int (*start_script) (const char *script, int argc, const char **argv);
T
Tom Zanussi 已提交
65
	int (*stop_script) (void);
66 67
	void (*process_event) (union perf_event *event,
			       struct perf_sample *sample,
68
			       struct perf_evsel *evsel,
69
			       struct machine *machine,
70 71
			       struct thread *thread,
				   struct addr_location *al);
72
	int (*generate_script) (struct pevent *pevent, const char *outfile);
T
Tom Zanussi 已提交
73 74 75 76
};

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

77
void setup_perl_scripting(void);
78
void setup_python_scripting(void);
79

80
struct scripting_context {
81
	struct pevent *pevent;
82 83 84 85 86 87 88
	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);

89
#endif /* _PERF_UTIL_TRACE_EVENT_H */