evlist.h 4.8 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 77
struct perf_evsel *
perf_evlist__find_tracepoint_by_id(struct perf_evlist *evlist, int id);

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

81
void perf_evlist__add_pollfd(struct perf_evlist *evlist, int fd);
82

83 84
struct perf_evsel *perf_evlist__id2evsel(struct perf_evlist *evlist, u64 id);

85
union perf_event *perf_evlist__mmap_read(struct perf_evlist *self, int idx);
86

87
int perf_evlist__open(struct perf_evlist *evlist);
88

89 90 91
void perf_evlist__config_attrs(struct perf_evlist *evlist,
			       struct perf_record_opts *opts);

92 93 94 95 96
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);

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

101
void perf_evlist__disable(struct perf_evlist *evlist);
102
void perf_evlist__enable(struct perf_evlist *evlist);
103

104 105 106
void perf_evlist__set_selected(struct perf_evlist *evlist,
			       struct perf_evsel *evsel);

107 108 109 110 111 112 113 114
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;
}

115 116
int perf_evlist__create_maps(struct perf_evlist *evlist,
			     struct perf_target *target);
117
void perf_evlist__delete_maps(struct perf_evlist *evlist);
118
int perf_evlist__set_filters(struct perf_evlist *evlist);
119

120 121 122
void __perf_evlist__set_leader(struct list_head *list);
void perf_evlist__set_leader(struct perf_evlist *evlist);

123 124 125
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);
126

127
int perf_evlist__parse_sample(struct perf_evlist *evlist, union perf_event *event,
128 129
			      struct perf_sample *sample, bool swapped);

130 131
bool perf_evlist__valid_sample_type(struct perf_evlist *evlist);
bool perf_evlist__valid_sample_id_all(struct perf_evlist *evlist);
132 133 134 135

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

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);
}
146 147

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