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

#include <linux/list.h>
5
#include "../perf.h"
6
#include "event.h"
7

8
struct pollfd;
9 10
struct thread_map;
struct cpu_map;
11

12 13 14
#define PERF_EVLIST__HLIST_BITS 8
#define PERF_EVLIST__HLIST_SIZE (1 << PERF_EVLIST__HLIST_BITS)

15 16
struct perf_evlist {
	struct list_head entries;
17
	struct hlist_head heads[PERF_EVLIST__HLIST_SIZE];
18
	int		 nr_entries;
19
	int		 nr_fds;
20
	int		 nr_mmaps;
21
	int		 mmap_len;
22
	bool		 overwrite;
23
	union perf_event event_copy;
24
	struct perf_mmap *mmap;
25
	struct pollfd	 *pollfd;
26 27
	struct thread_map *threads;
	struct cpu_map	  *cpus;
28
	struct perf_evsel *selected;
29 30 31 32
};

struct perf_evsel;

33 34 35 36
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);
37
void perf_evlist__exit(struct perf_evlist *evlist);
38 39 40 41 42
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);

43 44
void perf_evlist__id_add(struct perf_evlist *evlist, struct perf_evsel *evsel,
			 int cpu, int thread, u64 id);
45

46
int perf_evlist__alloc_pollfd(struct perf_evlist *evlist);
47
void perf_evlist__add_pollfd(struct perf_evlist *evlist, int fd);
48

49 50
struct perf_evsel *perf_evlist__id2evsel(struct perf_evlist *evlist, u64 id);

51
union perf_event *perf_evlist__mmap_read(struct perf_evlist *self, int idx);
52

53 54 55 56
int perf_evlist__alloc_mmap(struct perf_evlist *evlist);
int perf_evlist__mmap(struct perf_evlist *evlist, int pages, bool overwrite);
void perf_evlist__munmap(struct perf_evlist *evlist);

57
void perf_evlist__disable(struct perf_evlist *evlist);
58
void perf_evlist__enable(struct perf_evlist *evlist);
59

60 61 62
void perf_evlist__set_selected(struct perf_evlist *evlist,
			       struct perf_evsel *evsel);

63 64 65 66 67 68 69 70 71 72 73
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;
}

int perf_evlist__create_maps(struct perf_evlist *evlist, pid_t target_pid,
			     pid_t target_tid, const char *cpu_list);
void perf_evlist__delete_maps(struct perf_evlist *evlist);
74
int perf_evlist__set_filters(struct perf_evlist *evlist);
75

76 77
u64 perf_evlist__sample_type(const struct perf_evlist *evlist);
bool perf_evlist__sample_id_all(const const struct perf_evlist *evlist);
78

79 80
bool perf_evlist__valid_sample_type(const struct perf_evlist *evlist);
bool perf_evlist__valid_sample_id_all(const struct perf_evlist *evlist);
81
#endif /* __PERF_EVLIST_H */