event.h 3.9 KB
Newer Older
1 2
#ifndef __PERF_RECORD_H
#define __PERF_RECORD_H
3

4 5
#include <limits.h>

6
#include "../perf.h"
7
#include "map.h"
8

9 10 11
/*
 * PERF_SAMPLE_IP | PERF_SAMPLE_TID | *
 */
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
struct ip_event {
	struct perf_event_header header;
	u64 ip;
	u32 pid, tid;
	unsigned char __more_data[];
};

struct mmap_event {
	struct perf_event_header header;
	u32 pid, tid;
	u64 start;
	u64 len;
	u64 pgoff;
	char filename[PATH_MAX];
};

struct comm_event {
	struct perf_event_header header;
	u32 pid, tid;
	char comm[16];
};

struct fork_event {
	struct perf_event_header header;
	u32 pid, ppid;
	u32 tid, ptid;
38
	u64 time;
39 40 41 42 43 44 45 46
};

struct lost_event {
	struct perf_event_header header;
	u64 id;
	u64 lost;
};

47 48 49
/*
 * PERF_FORMAT_ENABLED | PERF_FORMAT_RUNNING | PERF_FORMAT_ID
 */
50 51
struct read_event {
	struct perf_event_header header;
52
	u32 pid, tid;
53 54 55 56 57 58
	u64 value;
	u64 time_enabled;
	u64 time_running;
	u64 id;
};

59
struct sample_event {
60 61 62 63
	struct perf_event_header        header;
	u64 array[];
};

64 65 66 67 68 69 70 71
struct sample_data {
	u64 ip;
	u32 pid, tid;
	u64 time;
	u64 addr;
	u64 id;
	u64 stream_id;
	u64 period;
72
	u32 cpu;
73 74
	u32 raw_size;
	void *raw_data;
75
	struct ip_callchain *callchain;
76 77
};

78 79 80 81
#define BUILD_ID_SIZE 20

struct build_id_event {
	struct perf_event_header header;
82
	pid_t			 pid;
83 84 85
	u8			 build_id[ALIGN(BUILD_ID_SIZE, sizeof(u64))];
	char			 filename[];
};
86

87
enum perf_user_event_type { /* above any possible kernel type */
88
	PERF_RECORD_USER_TYPE_START		= 64,
89
	PERF_RECORD_HEADER_ATTR			= 64,
90
	PERF_RECORD_HEADER_EVENT_TYPE		= 65,
91
	PERF_RECORD_HEADER_TRACING_DATA		= 66,
92
	PERF_RECORD_HEADER_BUILD_ID		= 67,
93
	PERF_RECORD_FINISHED_ROUND		= 68,
94 95 96 97 98 99 100
	PERF_RECORD_HEADER_MAX
};

struct attr_event {
	struct perf_event_header header;
	struct perf_event_attr attr;
	u64 id[];
101 102
};

103 104 105 106 107 108 109 110 111 112 113 114
#define MAX_EVENT_NAME 64

struct perf_trace_event_type {
	u64	event_id;
	char	name[MAX_EVENT_NAME];
};

struct event_type_event {
	struct perf_event_header header;
	struct perf_trace_event_type event_type;
};

115 116 117 118 119
struct tracing_data_event {
	struct perf_event_header header;
	u32 size;
};

120 121 122 123 124 125 126 127
typedef union event_union {
	struct perf_event_header	header;
	struct ip_event			ip;
	struct mmap_event		mmap;
	struct comm_event		comm;
	struct fork_event		fork;
	struct lost_event		lost;
	struct read_event		read;
128
	struct sample_event		sample;
129
	struct attr_event		attr;
130
	struct event_type_event		event_type;
131
	struct tracing_data_event	tracing_data;
132
	struct build_id_event		build_id;
133
} event_t;
134

135 136
void event__print_totals(void);

137 138
struct perf_session;

139 140 141 142
typedef int (*event__handler_synth_t)(event_t *event, 
				      struct perf_session *session);
typedef int (*event__handler_t)(event_t *event, struct sample_data *sample,
				struct perf_session *session);
143 144

int event__synthesize_thread(pid_t pid, event__handler_t process,
145
			     struct perf_session *session);
146 147
int event__synthesize_threads(event__handler_t process,
			      struct perf_session *session);
148
int event__synthesize_kernel_mmap(event__handler_t process,
149
				struct perf_session *session,
150
				struct machine *machine,
151 152
				const char *symbol_name);

153
int event__synthesize_modules(event__handler_t process,
154
			      struct perf_session *session,
155
			      struct machine *machine);
156

157 158 159 160 161 162 163 164 165 166
int event__process_comm(event_t *self, struct sample_data *sample,
			struct perf_session *session);
int event__process_lost(event_t *self, struct sample_data *sample,
			struct perf_session *session);
int event__process_mmap(event_t *self, struct sample_data *sample,
			struct perf_session *session);
int event__process_task(event_t *self, struct sample_data *sample,
			struct perf_session *session);
int event__process(event_t *event, struct sample_data *sample,
		   struct perf_session *session);
167

168
struct addr_location;
169
int event__preprocess_sample(const event_t *self, struct perf_session *session,
170 171
			     struct addr_location *al, struct sample_data *data,
			     symbol_filter_t filter);
172

173
const char *event__get_event_name(unsigned int id);
174

175 176 177
int event__parse_sample(const event_t *event, u64 type, bool sample_id_all,
			struct sample_data *sample);

178
#endif /* __PERF_RECORD_H */