blob: 2b7e91902f105d5962a68254737ce21cfeef935c [file] [log] [blame]
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001#ifndef __PERF_RECORD_H
2#define __PERF_RECORD_H
John Kacur8b40f522009-09-24 18:02:18 +02003
Arnaldo Carvalho de Melo4a58e612009-12-27 21:37:00 -02004#include <limits.h>
5
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +02006#include "../perf.h"
Arnaldo Carvalho de Melo4a58e612009-12-27 21:37:00 -02007#include "map.h"
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +02008
Peter Zijlstra18408dd2009-08-13 11:47:55 +02009/*
10 * PERF_SAMPLE_IP | PERF_SAMPLE_TID | *
11 */
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020012struct ip_event {
13 struct perf_event_header header;
14 u64 ip;
15 u32 pid, tid;
16 unsigned char __more_data[];
17};
18
19struct mmap_event {
20 struct perf_event_header header;
21 u32 pid, tid;
22 u64 start;
23 u64 len;
24 u64 pgoff;
25 char filename[PATH_MAX];
26};
27
28struct comm_event {
29 struct perf_event_header header;
30 u32 pid, tid;
31 char comm[16];
32};
33
34struct fork_event {
35 struct perf_event_header header;
36 u32 pid, ppid;
37 u32 tid, ptid;
Arjan van de Ven393b2ad2009-09-12 07:52:47 +020038 u64 time;
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020039};
40
41struct lost_event {
42 struct perf_event_header header;
43 u64 id;
44 u64 lost;
45};
46
Peter Zijlstra18408dd2009-08-13 11:47:55 +020047/*
48 * PERF_FORMAT_ENABLED | PERF_FORMAT_RUNNING | PERF_FORMAT_ID
49 */
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020050struct read_event {
51 struct perf_event_header header;
Ingo Molnardc02bf72009-09-16 13:45:00 +020052 u32 pid, tid;
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020053 u64 value;
54 u64 time_enabled;
55 u64 time_running;
56 u64 id;
57};
58
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +090059struct sample_event {
Arjan van de Venfd39e052009-09-12 07:53:00 +020060 struct perf_event_header header;
61 u64 array[];
62};
63
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +090064struct sample_data {
65 u64 ip;
66 u32 pid, tid;
67 u64 time;
68 u64 addr;
69 u64 id;
70 u64 stream_id;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +090071 u64 period;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -030072 u32 cpu;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +090073 u32 raw_size;
74 void *raw_data;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -030075 struct ip_callchain *callchain;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +090076};
77
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020078#define BUILD_ID_SIZE 20
79
80struct build_id_event {
81 struct perf_event_header header;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080082 pid_t pid;
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020083 u8 build_id[ALIGN(BUILD_ID_SIZE, sizeof(u64))];
84 char filename[];
85};
Arjan van de Venfd39e052009-09-12 07:53:00 +020086
Frederic Weisbecker98402802010-05-02 22:05:29 +020087enum perf_user_event_type { /* above any possible kernel type */
Thomas Gleixner9aefcab2010-12-07 12:48:47 +000088 PERF_RECORD_USER_TYPE_START = 64,
Tom Zanussi2c46dbb2010-04-01 23:59:19 -050089 PERF_RECORD_HEADER_ATTR = 64,
Tom Zanussicd19a032010-04-01 23:59:20 -050090 PERF_RECORD_HEADER_EVENT_TYPE = 65,
Tom Zanussi92155452010-04-01 23:59:21 -050091 PERF_RECORD_HEADER_TRACING_DATA = 66,
Tom Zanussic7929e42010-04-01 23:59:22 -050092 PERF_RECORD_HEADER_BUILD_ID = 67,
Frederic Weisbecker98402802010-05-02 22:05:29 +020093 PERF_RECORD_FINISHED_ROUND = 68,
Tom Zanussi2c46dbb2010-04-01 23:59:19 -050094 PERF_RECORD_HEADER_MAX
95};
96
97struct attr_event {
98 struct perf_event_header header;
99 struct perf_event_attr attr;
100 u64 id[];
Tom Zanussi8dc58102010-04-01 23:59:15 -0500101};
102
Tom Zanussicd19a032010-04-01 23:59:20 -0500103#define MAX_EVENT_NAME 64
104
105struct perf_trace_event_type {
106 u64 event_id;
107 char name[MAX_EVENT_NAME];
108};
109
110struct event_type_event {
111 struct perf_event_header header;
112 struct perf_trace_event_type event_type;
113};
114
Tom Zanussi92155452010-04-01 23:59:21 -0500115struct tracing_data_event {
116 struct perf_event_header header;
117 u32 size;
118};
119
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +0200120typedef union event_union {
121 struct perf_event_header header;
122 struct ip_event ip;
123 struct mmap_event mmap;
124 struct comm_event comm;
125 struct fork_event fork;
126 struct lost_event lost;
127 struct read_event read;
Arjan van de Venfd39e052009-09-12 07:53:00 +0200128 struct sample_event sample;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500129 struct attr_event attr;
Tom Zanussicd19a032010-04-01 23:59:20 -0500130 struct event_type_event event_type;
Tom Zanussi92155452010-04-01 23:59:21 -0500131 struct tracing_data_event tracing_data;
Tom Zanussic7929e42010-04-01 23:59:22 -0500132 struct build_id_event build_id;
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +0200133} event_t;
Frederic Weisbecker66e274f2009-08-12 11:07:25 +0200134
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200135void event__print_totals(void);
136
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200137struct perf_session;
138
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200139typedef int (*event__handler_synth_t)(event_t *event,
140 struct perf_session *session);
141typedef int (*event__handler_t)(event_t *event, struct sample_data *sample,
142 struct perf_session *session);
Arnaldo Carvalho de Melocf553112010-01-07 19:59:40 -0200143
144int event__synthesize_thread(pid_t pid, event__handler_t process,
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200145 struct perf_session *session);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200146int event__synthesize_threads(event__handler_t process,
147 struct perf_session *session);
Arnaldo Carvalho de Melocf553112010-01-07 19:59:40 -0200148int event__synthesize_kernel_mmap(event__handler_t process,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800149 struct perf_session *session,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300150 struct machine *machine,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800151 const char *symbol_name);
152
Arnaldo Carvalho de Melob7cece72010-01-13 13:22:17 -0200153int event__synthesize_modules(event__handler_t process,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800154 struct perf_session *session,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300155 struct machine *machine);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200156
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200157int event__process_comm(event_t *self, struct sample_data *sample,
158 struct perf_session *session);
159int event__process_lost(event_t *self, struct sample_data *sample,
160 struct perf_session *session);
161int event__process_mmap(event_t *self, struct sample_data *sample,
162 struct perf_session *session);
163int event__process_task(event_t *self, struct sample_data *sample,
164 struct perf_session *session);
165int event__process(event_t *event, struct sample_data *sample,
166 struct perf_session *session);
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200167
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200168struct addr_location;
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200169int event__preprocess_sample(const event_t *self, struct perf_session *session,
Arnaldo Carvalho de Melo41a37e22010-06-04 08:02:07 -0300170 struct addr_location *al, struct sample_data *data,
171 symbol_filter_t filter);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200172int event__parse_sample(const event_t *event, struct perf_session *session,
173 struct sample_data *sample);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200174
Thomas Gleixner3835bc02010-12-07 12:48:42 +0000175const char *event__get_event_name(unsigned int id);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300176
John Kacur8b40f522009-09-24 18:02:18 +0200177#endif /* __PERF_RECORD_H */