session.h 4.1 KB
Newer Older
1 2 3
#ifndef __PERF_SESSION_H
#define __PERF_SESSION_H

J
Jiri Olsa 已提交
4
#include "trace-event.h"
5
#include "hist.h"
6
#include "event.h"
7
#include "header.h"
8
#include "machine.h"
9
#include "symbol.h"
10
#include "thread.h"
11
#include "data.h"
12
#include <linux/rbtree.h>
13
#include <linux/perf_event.h>
14

15
struct ordered_event;
16
struct ip_callchain;
17
struct thread;
18

19
struct ordered_events {
20
	u64			last_flush;
21 22
	u64			next_flush;
	u64			max_timestamp;
23 24
	u64			max_alloc_size;
	u64			cur_alloc_size;
25 26
	struct list_head	events;
	struct list_head	cache;
27
	struct list_head	to_free;
28 29 30 31
	struct ordered_event	*buffer;
	struct ordered_event	*last;
	int			buffer_idx;
	unsigned int		nr_events;
32 33
};

34 35
struct perf_session {
	struct perf_header	header;
36
	struct machines		machines;
37
	struct perf_evlist	*evlist;
J
Jiri Olsa 已提交
38
	struct trace_event	tevent;
39
	struct events_stats	stats;
T
Tom Zanussi 已提交
40
	bool			repipe;
41 42 43
	bool			one_mmap;
	void			*one_mmap_addr;
	u64			one_mmap_offset;
44
	struct ordered_events	ordered_events;
45
	struct perf_data_file	*file;
46 47
};

48 49 50 51
#define PRINT_IP_OPT_IP		(1<<0)
#define PRINT_IP_OPT_SYM		(1<<1)
#define PRINT_IP_OPT_DSO		(1<<2)
#define PRINT_IP_OPT_SYMOFFSET	(1<<3)
52
#define PRINT_IP_OPT_ONELINE	(1<<4)
53
#define PRINT_IP_OPT_SRCLINE	(1<<5)
54

55
struct perf_tool;
56

57 58
struct perf_session *perf_session__new(struct perf_data_file *file,
				       bool repipe, struct perf_tool *tool);
59
void perf_session__delete(struct perf_session *session);
60

61
void perf_event_header__bswap(struct perf_event_header *hdr);
62

63
int __perf_session__process_events(struct perf_session *session,
64
				   u64 data_offset, u64 data_size, u64 size,
65
				   struct perf_tool *tool);
66
int perf_session__process_events(struct perf_session *session,
67
				 struct perf_tool *tool);
68

69
int perf_session_queue_event(struct perf_session *s, union perf_event *event,
70 71
			     struct perf_tool *tool, struct perf_sample *sample,
			     u64 file_offset);
72 73 74

void perf_tool__fill_defaults(struct perf_tool *tool);

75 76 77 78 79
int perf_session__deliver_event(struct perf_session *session,
				union perf_event *event,
				struct perf_sample *sample,
				struct perf_tool *tool, u64 file_offset);

80 81
int perf_session__resolve_callchain(struct perf_session *session,
				    struct perf_evsel *evsel,
82 83 84
				    struct thread *thread,
				    struct ip_callchain *chain,
				    struct symbol **parent);
85

86
bool perf_session__has_traces(struct perf_session *session, const char *msg);
87

88
void perf_event__attr_swap(struct perf_event_attr *attr);
89

90
int perf_session__create_kernel_maps(struct perf_session *session);
91

92
void perf_session__set_id_hdr_size(struct perf_session *session);
93

94
static inline
95
struct machine *perf_session__find_machine(struct perf_session *session, pid_t pid)
96
{
97
	return machines__find(&session->machines, pid);
98 99 100
}

static inline
101
struct machine *perf_session__findnew_machine(struct perf_session *session, pid_t pid)
102
{
103
	return machines__findnew(&session->machines, pid);
104 105
}

106 107
struct thread *perf_session__findnew(struct perf_session *session, pid_t pid);
size_t perf_session__fprintf(struct perf_session *session, FILE *fp);
108

109
size_t perf_session__fprintf_dsos(struct perf_session *session, FILE *fp);
110

111 112
size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
					  bool (fn)(struct dso *dso, int parm), int parm);
113

114
size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp);
115

116 117 118
struct perf_evsel *perf_session__find_first_evtype(struct perf_session *session,
					    unsigned int type);

119
void perf_evsel__print_ip(struct perf_evsel *evsel, struct perf_sample *sample,
120
			  struct addr_location *al,
121
			  unsigned int print_opts, unsigned int stack_depth);
122

123 124 125
int perf_session__cpu_bitmap(struct perf_session *session,
			     const char *cpu_list, unsigned long *cpu_bitmap);

126
void perf_session__fprintf_info(struct perf_session *s, FILE *fp, bool full);
127 128 129 130 131 132 133 134 135

struct perf_evsel_str_handler;

int __perf_session__set_tracepoints_handlers(struct perf_session *session,
					     const struct perf_evsel_str_handler *assocs,
					     size_t nr_assocs);

#define perf_session__set_tracepoints_handlers(session, array) \
	__perf_session__set_tracepoints_handlers(session, array, ARRAY_SIZE(array))
136 137 138 139

extern volatile int session_done;

#define session_done()	(*(volatile int *)(&session_done))
140
#endif /* __PERF_SESSION_H */