parse-events.h 1.9 KB
Newer Older
1 2
#ifndef __PERF_PARSE_EVENTS_H
#define __PERF_PARSE_EVENTS_H
3 4 5 6
/*
 * Parse symbolic events/counts passed in as options:
 */

7
#include "../../../include/linux/perf_event.h"
8 9 10

struct list_head;
struct perf_evsel;
11
struct perf_evlist;
12

13 14
struct option;

15 16 17 18 19 20 21
struct tracepoint_path {
	char *system;
	char *name;
	struct tracepoint_path *next;
};

extern struct tracepoint_path *tracepoint_id_to_path(u64 config);
22
extern bool have_tracepoints(struct list_head *evlist);
23

24
const char *event_type(int type);
25
const char *event_name(struct perf_evsel *event);
26
extern const char *__event_name(int type, u64 config);
27

28 29 30 31
extern int parse_events_option(const struct option *opt, const char *str,
			       int unset);
extern int parse_events(struct perf_evlist *evlist, const char *str,
			int unset);
L
Li Zefan 已提交
32
extern int parse_filter(const struct option *opt, const char *str, int unset);
33 34 35

#define EVENTS_HELP_MAX (128*1024)

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
int parse_events_modifier(struct list_head *list __used, char *str __used);
int parse_events_add_tracepoint(struct list_head *list, int *idx,
				char *sys, char *event);
int parse_events_add_raw(struct perf_evlist *evlist, unsigned long config,
			 unsigned long config1, unsigned long config2,
			 char *mod);
int parse_events_add_numeric(struct list_head *list, int *idx,
			     unsigned long type, unsigned long config);
int parse_events_add_cache(struct list_head *list, int *idx,
			   char *type, char *op_result1, char *op_result2);
int parse_events_add_breakpoint(struct list_head *list, int *idx,
				void *ptr, char *type);
void parse_events_error(struct list_head *list, int *idx,
			char const *msg);

51 52 53 54
void print_events(const char *event_glob);
void print_events_type(u8 type);
void print_tracepoint_events(const char *subsys_glob, const char *event_glob);
int print_hwcache_events(const char *event_glob);
55
extern int is_valid_tracepoint(const char *event_string);
56

57 58
extern int valid_debugfs_mount(const char *debugfs);

59
#endif /* __PERF_PARSE_EVENTS_H */