evlist.h 4.9 KB
Newer Older
1 2 3 4
#ifndef __PERF_EVLIST_H
#define __PERF_EVLIST_H 1

#include <linux/list.h>
5
#include <stdio.h>
6
#include "../perf.h"
7
#include "event.h"
8
#include "evsel.h"
9
#include "util.h"
10
#include <unistd.h>
11

12
struct pollfd;
13 14
struct thread_map;
struct cpu_map;
15
struct perf_record_opts;
16

17 18 19
#define PERF_EVLIST__HLIST_BITS 8
#define PERF_EVLIST__HLIST_SIZE (1 << PERF_EVLIST__HLIST_BITS)

20 21
struct perf_evlist {
	struct list_head entries;
22
	struct hlist_head heads[PERF_EVLIST__HLIST_SIZE];
23
	int		 nr_entries;
24
	int		 nr_fds;
25
	int		 nr_mmaps;
26
	int		 mmap_len;
27 28 29 30
	struct {
		int	cork_fd;
		pid_t	pid;
	} workload;
31
	bool		 overwrite;
32
	union perf_event event_copy;
33
	struct perf_mmap *mmap;
34
	struct pollfd	 *pollfd;
35 36
	struct thread_map *threads;
	struct cpu_map	  *cpus;
37
	struct perf_evsel *selected;
38 39
};

40 41 42 43 44
struct perf_evsel_str_handler {
	const char *name;
	void	   *handler;
};

45 46 47 48
struct perf_evlist *perf_evlist__new(struct cpu_map *cpus,
				     struct thread_map *threads);
void perf_evlist__init(struct perf_evlist *evlist, struct cpu_map *cpus,
		       struct thread_map *threads);
49
void perf_evlist__exit(struct perf_evlist *evlist);
50 51 52 53
void perf_evlist__delete(struct perf_evlist *evlist);

void perf_evlist__add(struct perf_evlist *evlist, struct perf_evsel *entry);
int perf_evlist__add_default(struct perf_evlist *evlist);
54 55
int perf_evlist__add_attrs(struct perf_evlist *evlist,
			   struct perf_event_attr *attrs, size_t nr_attrs);
56 57
int __perf_evlist__add_default_attrs(struct perf_evlist *evlist,
				     struct perf_event_attr *attrs, size_t nr_attrs);
58 59
int perf_evlist__add_tracepoints(struct perf_evlist *evlist,
				 const char *tracepoints[], size_t nr_tracepoints);
60 61 62
int perf_evlist__set_tracepoints_handlers(struct perf_evlist *evlist,
					  const struct perf_evsel_str_handler *assocs,
					  size_t nr_assocs);
63 64 65

#define perf_evlist__add_attrs_array(evlist, array) \
	perf_evlist__add_attrs(evlist, array, ARRAY_SIZE(array))
66 67
#define perf_evlist__add_default_attrs(evlist, array) \
	__perf_evlist__add_default_attrs(evlist, array, ARRAY_SIZE(array))
68

69 70 71
#define perf_evlist__add_tracepoints_array(evlist, array) \
	perf_evlist__add_tracepoints(evlist, array, ARRAY_SIZE(array))

72 73 74
#define perf_evlist__set_tracepoints_handlers_array(evlist, array) \
	perf_evlist__set_tracepoints_handlers(evlist, array, ARRAY_SIZE(array))

75 76
int perf_evlist__set_filter(struct perf_evlist *evlist, const char *filter);

77 78 79
struct perf_evsel *
perf_evlist__find_tracepoint_by_id(struct perf_evlist *evlist, int id);

80 81
void perf_evlist__id_add(struct perf_evlist *evlist, struct perf_evsel *evsel,
			 int cpu, int thread, u64 id);
82

83
void perf_evlist__add_pollfd(struct perf_evlist *evlist, int fd);
84

85 86
struct perf_evsel *perf_evlist__id2evsel(struct perf_evlist *evlist, u64 id);

87
union perf_event *perf_evlist__mmap_read(struct perf_evlist *self, int idx);
88

89
int perf_evlist__open(struct perf_evlist *evlist);
90

91 92 93
void perf_evlist__config_attrs(struct perf_evlist *evlist,
			       struct perf_record_opts *opts);

94 95 96 97 98
int perf_evlist__prepare_workload(struct perf_evlist *evlist,
				  struct perf_record_opts *opts,
				  const char *argv[]);
int perf_evlist__start_workload(struct perf_evlist *evlist);

99 100
int perf_evlist__mmap(struct perf_evlist *evlist, unsigned int pages,
		      bool overwrite);
101 102
void perf_evlist__munmap(struct perf_evlist *evlist);

103
void perf_evlist__disable(struct perf_evlist *evlist);
104
void perf_evlist__enable(struct perf_evlist *evlist);
105

106 107 108
void perf_evlist__set_selected(struct perf_evlist *evlist,
			       struct perf_evsel *evsel);

109 110 111 112 113 114 115 116
static inline void perf_evlist__set_maps(struct perf_evlist *evlist,
					 struct cpu_map *cpus,
					 struct thread_map *threads)
{
	evlist->cpus	= cpus;
	evlist->threads	= threads;
}

117 118
int perf_evlist__create_maps(struct perf_evlist *evlist,
			     struct perf_target *target);
119
void perf_evlist__delete_maps(struct perf_evlist *evlist);
120
int perf_evlist__apply_filters(struct perf_evlist *evlist);
121

122 123 124
void __perf_evlist__set_leader(struct list_head *list);
void perf_evlist__set_leader(struct perf_evlist *evlist);

125 126 127
u64 perf_evlist__sample_type(struct perf_evlist *evlist);
bool perf_evlist__sample_id_all(struct perf_evlist *evlist);
u16 perf_evlist__id_hdr_size(struct perf_evlist *evlist);
128

129
int perf_evlist__parse_sample(struct perf_evlist *evlist, union perf_event *event,
130
			      struct perf_sample *sample);
131

132 133
bool perf_evlist__valid_sample_type(struct perf_evlist *evlist);
bool perf_evlist__valid_sample_id_all(struct perf_evlist *evlist);
134 135 136 137

void perf_evlist__splice_list_tail(struct perf_evlist *evlist,
				   struct list_head *list,
				   int nr_entries);
138 139 140 141 142 143 144 145 146 147

static inline struct perf_evsel *perf_evlist__first(struct perf_evlist *evlist)
{
	return list_entry(evlist->entries.next, struct perf_evsel, node);
}

static inline struct perf_evsel *perf_evlist__last(struct perf_evlist *evlist)
{
	return list_entry(evlist->entries.prev, struct perf_evsel, node);
}
148 149

size_t perf_evlist__fprintf(struct perf_evlist *evlist, FILE *fp);
150
#endif /* __PERF_EVLIST_H */