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

4
#include "../../../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 13 14
enum {
	HEADER_TRACE_INFO = 1,
	HEADER_BUILD_ID,
15 16 17 18 19 20 21 22 23 24 25 26 27 28

	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,

29 30
	HEADER_LAST_FEATURE,
};
31 32 33

#define HEADER_FEAT_BITS			256

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
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);
};

49 50 51 52 53
struct perf_pipe_file_header {
	u64				magic;
	u64				size;
};

54 55
struct perf_header;

56
int perf_file_header__read(struct perf_file_header *header,
57 58
			   struct perf_header *ph, int fd);

59
struct perf_header {
60
	int			frozen;
61
	bool			needs_swap;
62 63 64 65 66
	s64			attr_offset;
	u64			data_offset;
	u64			data_size;
	u64			event_offset;
	u64			event_size;
67
	DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
68 69
};

70
struct perf_evlist;
71
struct perf_session;
72

73 74 75 76
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);
77
int perf_header__write_pipe(int fd);
78

79
int perf_header__push_event(u64 id, const char *name);
80 81
char *perf_header__find_event(u64 id);

82 83 84
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);
85

86 87
int perf_header__set_cmdline(int argc, const char **argv);

88
int perf_header__process_sections(struct perf_header *header, int fd,
89
				  void *data,
90
				  int (*process)(struct perf_file_section *section,
91 92 93 94
				  struct perf_header *ph,
				  int feat, int fd, void *data));

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

96 97 98 99
int build_id_cache__add_s(const char *sbuild_id, const char *debugdir,
			  const char *name, bool is_kallsyms);
int build_id_cache__remove_s(const char *sbuild_id, const char *debugdir);

100 101
int perf_event__synthesize_attr(struct perf_event_ops *ops,
				struct perf_event_attr *attr, u16 ids, u64 *id,
102
				perf_event__handler_t process);
103 104 105
int perf_event__synthesize_attrs(struct perf_event_ops *ops,
				 struct perf_session *session,
				 perf_event__handler_t process);
106
int perf_event__process_attr(union perf_event *event, struct perf_evlist **pevlist);
107

108 109
int perf_event__synthesize_event_type(struct perf_event_ops *ops,
				      u64 event_id, char *name,
110
				      perf_event__handler_t process,
111
				      struct machine *machine);
112 113
int perf_event__synthesize_event_types(struct perf_event_ops *ops,
				       perf_event__handler_t process,
114
				       struct machine *machine);
115
int perf_event__process_event_type(struct perf_event_ops *ops,
116
				   union perf_event *event);
117

118 119
int perf_event__synthesize_tracing_data(struct perf_event_ops *ops,
					int fd, struct perf_evlist *evlist,
120
					perf_event__handler_t process);
121 122 123
int perf_event__process_tracing_data(union perf_event *event,
				     struct perf_session *session);

124 125
int perf_event__synthesize_build_id(struct perf_event_ops *ops,
				    struct dso *pos, u16 misc,
126
				    perf_event__handler_t process,
127
				    struct machine *machine);
128 129
int perf_event__process_build_id(struct perf_event_ops *ops,
				 union perf_event *event,
130
				 struct perf_session *session);
131 132 133 134 135 136

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

137
#endif /* __PERF_HEADER_H */