event.h 3.5 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 82 83 84
#define BUILD_ID_SIZE 20

struct build_id_event {
	struct perf_event_header header;
	u8			 build_id[ALIGN(BUILD_ID_SIZE, sizeof(u64))];
	char			 filename[];
};
85

86
enum perf_header_event_type { /* above any possible kernel type */
87
	PERF_RECORD_HEADER_ATTR			= 64,
88
	PERF_RECORD_HEADER_EVENT_TYPE		= 65,
89
	PERF_RECORD_HEADER_TRACING_DATA		= 66,
90 91 92 93 94 95 96
	PERF_RECORD_HEADER_MAX
};

struct attr_event {
	struct perf_event_header header;
	struct perf_event_attr attr;
	u64 id[];
97 98
};

99 100 101 102 103 104 105 106 107 108 109 110
#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;
};

111 112 113 114 115
struct tracing_data_event {
	struct perf_event_header header;
	u32 size;
};

116 117 118 119 120 121 122 123
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;
124
	struct sample_event		sample;
125
	struct attr_event		attr;
126
	struct event_type_event		event_type;
127
	struct tracing_data_event	tracing_data;
128
} event_t;
129

130
struct events_stats {
131 132
	u64 total;
	u64 lost;
133 134
};

135 136 137 138 139 140 141 142 143
struct event_stat_id {
	struct rb_node		rb_node;
	struct rb_root		hists;
	struct events_stats	stats;
	u64			config;
	u64			event_stream;
	u32			type;
};

144 145
void event__print_totals(void);

146 147
struct perf_session;

148 149 150
typedef int (*event__handler_t)(event_t *event, struct perf_session *session);

int event__synthesize_thread(pid_t pid, event__handler_t process,
151
			     struct perf_session *session);
152
void event__synthesize_threads(event__handler_t process,
153
			       struct perf_session *session);
154
int event__synthesize_kernel_mmap(event__handler_t process,
155 156
				  struct perf_session *session,
				  const char *symbol_name);
157 158
int event__synthesize_modules(event__handler_t process,
			      struct perf_session *session);
159

160 161 162 163
int event__process_comm(event_t *self, struct perf_session *session);
int event__process_lost(event_t *self, struct perf_session *session);
int event__process_mmap(event_t *self, struct perf_session *session);
int event__process_task(event_t *self, struct perf_session *session);
164

165
struct addr_location;
166 167
int event__preprocess_sample(const event_t *self, struct perf_session *session,
			     struct addr_location *al, symbol_filter_t filter);
168
int event__parse_sample(event_t *event, u64 type, struct sample_data *data);
169

170
#endif /* __PERF_RECORD_H */