perf_counter tools: Add 'perf annotate' feature
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / Documentation / perf_counter / util / symbol.h
blob4839d68f14f08a79fe39ff5ace0986b2fbb8ce46
1 #ifndef _PERF_SYMBOL_
2 #define _PERF_SYMBOL_ 1
4 #include <linux/types.h>
5 #include "list.h"
6 #include "rbtree.h"
8 struct symbol {
9 struct rb_node rb_node;
10 __u64 start;
11 __u64 end;
12 __u64 obj_start;
13 __u64 hist_sum;
14 __u64 *hist;
15 char name[0];
18 struct dso {
19 struct list_head node;
20 struct rb_root syms;
21 unsigned int sym_priv_size;
22 struct symbol *(*find_symbol)(struct dso *, uint64_t ip);
23 char name[0];
26 const char *sym_hist_filter;
28 typedef int (*symbol_filter_t)(struct dso *self, struct symbol *sym);
30 struct dso *dso__new(const char *name, unsigned int sym_priv_size);
31 void dso__delete(struct dso *self);
33 static inline void *dso__sym_priv(struct dso *self, struct symbol *sym)
35 return ((void *)sym) - self->sym_priv_size;
38 struct symbol *dso__find_symbol(struct dso *self, uint64_t ip);
40 int dso__load_kernel(struct dso *self, const char *vmlinux,
41 symbol_filter_t filter, int verbose);
42 int dso__load(struct dso *self, symbol_filter_t filter, int verbose);
44 size_t dso__fprintf(struct dso *self, FILE *fp);
46 void symbol__init(void);
47 #endif /* _PERF_SYMBOL_ */