trace-event.h 2.3 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
#include "session.h"
7 8 9 10

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

14 15
int bigendian(void);

16
struct pevent *read_trace_init(int file_bigendian, int host_bigendian);
17 18
void event_format__print(struct event_format *event,
			 int cpu, void *data, int size);
19

20 21 22
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);
23 24 25 26

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

27 28
void parse_proc_kallsyms(struct pevent *pevent, char *file, unsigned int size);
void parse_ftrace_printk(struct pevent *pevent, char *file, unsigned int size);
29

30
ssize_t trace_report(int fd, struct pevent **pevent, bool repipe);
31

32 33
struct event_format *trace_find_next_event(struct pevent *pevent,
					   struct event_format *event);
34
unsigned long long read_size(struct event_format *event, void *ptr, int size);
35 36
unsigned long long eval_flag(const char *flag);

37
int read_tracing_data(int fd, struct list_head *pattrs);
J
Jiri Olsa 已提交
38 39 40 41 42 43 44 45 46 47

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

50

51 52
struct addr_location;

53 54
struct perf_session;

T
Tom Zanussi 已提交
55 56
struct scripting_ops {
	const char *name;
57
	int (*start_script) (const char *script, int argc, const char **argv);
T
Tom Zanussi 已提交
58
	int (*stop_script) (void);
59 60
	void (*process_event) (union perf_event *event,
			       struct perf_sample *sample,
61
			       struct perf_evsel *evsel,
62
			       struct machine *machine,
63 64
			       struct thread *thread,
				   struct addr_location *al);
65
	int (*generate_script) (struct pevent *pevent, const char *outfile);
T
Tom Zanussi 已提交
66 67 68 69
};

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

70
void setup_perl_scripting(void);
71
void setup_python_scripting(void);
72

73
struct scripting_context {
74
	struct pevent *pevent;
75 76 77 78 79 80 81
	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);

82
#endif /* _PERF_UTIL_TRACE_EVENT_H */