header.h 4.3 KB
Newer Older
1 2
#ifndef __PERF_HEADER_H
#define __PERF_HEADER_H
3

4
#include <linux/perf_event.h>
5
#include <sys/types.h>
6
#include <stdbool.h>
7
#include "types.h"
8
#include "event.h"
9

10 11
#include <linux/bitmap.h>

12
enum {
13
	HEADER_RESERVED		= 0,	/* always cleared */
14
	HEADER_FIRST_FEATURE	= 1,
15
	HEADER_TRACING_DATA	= 1,
16
	HEADER_BUILD_ID,
17 18 19 20 21 22 23 24 25 26 27 28 29

	HEADER_HOSTNAME,
	HEADER_OSRELEASE,
	HEADER_VERSION,
	HEADER_ARCH,
	HEADER_NRCPUS,
	HEADER_CPUDESC,
	HEADER_CPUID,
	HEADER_TOTAL_MEM,
	HEADER_CMDLINE,
	HEADER_EVENT_DESC,
	HEADER_CPU_TOPOLOGY,
	HEADER_NUMA_TOPOLOGY,
30
	HEADER_BRANCH_STACK,
31
	HEADER_PMU_MAPPINGS,
32
	HEADER_GROUP_DESC,
33
	HEADER_LAST_FEATURE,
34
	HEADER_FEAT_BITS	= 256,
35
};
36

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
struct perf_file_section {
	u64 offset;
	u64 size;
};

struct perf_file_header {
	u64				magic;
	u64				size;
	u64				attr_size;
	struct perf_file_section	attrs;
	struct perf_file_section	data;
	struct perf_file_section	event_types;
	DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
};

52 53 54 55 56
struct perf_pipe_file_header {
	u64				magic;
	u64				size;
};

57 58
struct perf_header;

59
int perf_file_header__read(struct perf_file_header *header,
60 61
			   struct perf_header *ph, int fd);

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
struct perf_session_env {
	char			*hostname;
	char			*os_release;
	char			*version;
	char			*arch;
	int			nr_cpus_online;
	int			nr_cpus_avail;
	char			*cpu_desc;
	char			*cpuid;
	unsigned long long	total_mem;

	int			nr_cmdline;
	char			*cmdline;
	int			nr_sibling_cores;
	char			*sibling_cores;
	int			nr_sibling_threads;
	char			*sibling_threads;
	int			nr_numa_nodes;
	char			*numa_nodes;
	int			nr_pmu_mappings;
	char			*pmu_mappings;
83
	int			nr_groups;
84 85
};

86
struct perf_header {
87
	bool			needs_swap;
88 89 90 91 92
	s64			attr_offset;
	u64			data_offset;
	u64			data_size;
	u64			event_offset;
	u64			event_size;
93
	DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
94
	struct perf_session_env env;
95 96
};

97
struct perf_evlist;
98
struct perf_session;
99

100 101 102 103
int perf_session__read_header(struct perf_session *session, int fd);
int perf_session__write_header(struct perf_session *session,
			       struct perf_evlist *evlist,
			       int fd, bool at_exit);
104
int perf_header__write_pipe(int fd);
105

106
int perf_header__push_event(u64 id, const char *name);
107 108
char *perf_header__find_event(u64 id);

109 110 111
void perf_header__set_feat(struct perf_header *header, int feat);
void perf_header__clear_feat(struct perf_header *header, int feat);
bool perf_header__has_feat(const struct perf_header *header, int feat);
112

113 114
int perf_header__set_cmdline(int argc, const char **argv);

115
int perf_header__process_sections(struct perf_header *header, int fd,
116
				  void *data,
117
				  int (*process)(struct perf_file_section *section,
118 119 120 121
				  struct perf_header *ph,
				  int feat, int fd, void *data));

int perf_header__fprintf_info(struct perf_session *s, FILE *fp, bool full);
122

123
int build_id_cache__add_s(const char *sbuild_id, const char *debugdir,
124
			  const char *name, bool is_kallsyms, bool is_vdso);
125 126
int build_id_cache__remove_s(const char *sbuild_id, const char *debugdir);

127
int perf_event__synthesize_attr(struct perf_tool *tool,
128
				struct perf_event_attr *attr, u32 ids, u64 *id,
129
				perf_event__handler_t process);
130
int perf_event__synthesize_attrs(struct perf_tool *tool,
131 132
				 struct perf_session *session,
				 perf_event__handler_t process);
133 134
int perf_event__process_attr(struct perf_tool *tool, union perf_event *event,
			     struct perf_evlist **pevlist);
135

136
int perf_event__synthesize_event_type(struct perf_tool *tool,
137
				      u64 event_id, char *name,
138
				      perf_event__handler_t process,
139
				      struct machine *machine);
140
int perf_event__synthesize_event_types(struct perf_tool *tool,
141
				       perf_event__handler_t process,
142
				       struct machine *machine);
143
int perf_event__process_event_type(struct perf_tool *tool,
144
				   union perf_event *event);
145

146
int perf_event__synthesize_tracing_data(struct perf_tool *tool,
147
					int fd, struct perf_evlist *evlist,
148
					perf_event__handler_t process);
149 150
int perf_event__process_tracing_data(struct perf_tool *tool,
				     union perf_event *event,
151 152
				     struct perf_session *session);

153
int perf_event__synthesize_build_id(struct perf_tool *tool,
154
				    struct dso *pos, u16 misc,
155
				    perf_event__handler_t process,
156
				    struct machine *machine);
157
int perf_event__process_build_id(struct perf_tool *tool,
158
				 union perf_event *event,
159
				 struct perf_session *session);
F
Feng Tang 已提交
160
bool is_perf_magic(u64 magic);
161 162 163 164 165 166

/*
 * arch specific callback
 */
int get_cpuid(char *buffer, size_t sz);

167
#endif /* __PERF_HEADER_H */