perf tools: Move __used from perf.h to linux/compiler.h
[deliverable/linux.git] / tools / perf / util / symbol.h
CommitLineData
8b40f521
JK
1#ifndef __PERF_SYMBOL
2#define __PERF_SYMBOL 1
a2928c42
ACM
3
4#include <linux/types.h>
e4204992 5#include <stdbool.h>
7c6a1c65 6#include "types.h"
5da50258 7#include <linux/list.h>
43cbcd8a 8#include <linux/rbtree.h>
66e274f3 9#include "event.h"
a2928c42 10
4cf40131
ACM
11#define DEBUG_CACHE_DIR ".debug"
12
247648e3
ACM
13#ifdef HAVE_CPLUS_DEMANGLE
14extern char *cplus_demangle(const char *, int);
15
16static inline char *bfd_demangle(void __used *v, const char *c, int i)
17{
18 return cplus_demangle(c, i);
19}
20#else
21#ifdef NO_DEMANGLE
22static inline char *bfd_demangle(void __used *v, const char __used *c,
23 int __used i)
24{
25 return NULL;
26}
27#else
28#include <bfd.h>
29#endif
30#endif
31
84087126
MR
32/*
33 * libelf 0.8.x and earlier do not support ELF_C_READ_MMAP;
34 * for newer versions we can use mmap to reduce memory usage:
35 */
36#ifdef LIBELF_NO_MMAP
37# define PERF_ELF_C_READ_MMAP ELF_C_READ
38#else
39# define PERF_ELF_C_READ_MMAP ELF_C_READ_MMAP
40#endif
41
247648e3
ACM
42#ifndef DMGL_PARAMS
43#define DMGL_PARAMS (1 << 0) /* Include function args */
44#define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */
45#endif
46
a2928c42
ACM
47struct symbol {
48 struct rb_node rb_node;
9cffa8d5
PM
49 u64 start;
50 u64 end;
a2928c42
ACM
51 char name[0];
52};
53
628ada0c
ACM
54void symbol__delete(struct symbol *self);
55
655000e7
ACM
56struct strlist;
57
b32d133a
ACM
58struct symbol_conf {
59 unsigned short priv_size;
60 bool try_vmlinux_path,
79406cd7 61 use_modules,
d599db3f
ACM
62 sort_by_name,
63 show_nr_samples,
64 use_callchain,
f7d87444
ACM
65 exclude_other,
66 full_paths;
c410a338
ACM
67 const char *vmlinux_name,
68 *field_sep;
655000e7
ACM
69 char *dso_list_str,
70 *comm_list_str,
71 *sym_list_str,
72 *col_width_list_str;
73 struct strlist *dso_list,
74 *comm_list,
75 *sym_list;
b32d133a
ACM
76};
77
75be6cf4 78extern struct symbol_conf symbol_conf;
00a192b3
ACM
79
80static inline void *symbol__priv(struct symbol *self)
81{
75be6cf4 82 return ((void *)self) - symbol_conf.priv_size;
00a192b3
ACM
83}
84
9de89fe7
ACM
85struct ref_reloc_sym {
86 const char *name;
87 u64 addr;
88 u64 unrelocated_addr;
89};
90
59fd5306
ACM
91struct map_symbol {
92 struct map *map;
93 struct symbol *sym;
94};
95
1ed091c4
ACM
96struct addr_location {
97 struct thread *thread;
98 struct map *map;
99 struct symbol *sym;
100 u64 addr;
101 char level;
c410a338 102 bool filtered;
1ed091c4
ACM
103};
104
a2928c42
ACM
105struct dso {
106 struct list_head node;
6a4694a4 107 struct rb_root symbols[MAP__NR_TYPES];
79406cd7 108 struct rb_root symbol_names[MAP__NR_TYPES];
8d06367f
ACM
109 u8 adjust_symbols:1;
110 u8 slen_calculated:1;
8d06367f 111 u8 has_build_id:1;
c338aee8 112 u8 kernel:1;
88d3d9b7 113 u8 hit:1;
d06d92b7 114 u8 annotate_warned:1;
94cb9e38 115 unsigned char origin;
79406cd7 116 u8 sorted_by_name;
3610583c 117 u8 loaded;
8d06367f 118 u8 build_id[BUILD_ID_SIZE];
439d473b
ACM
119 const char *short_name;
120 char *long_name;
b63be8d7
ACM
121 u16 long_name_len;
122 u16 short_name_len;
a2928c42
ACM
123 char name[0];
124};
125
00a192b3 126struct dso *dso__new(const char *name);
fd1d908c 127struct dso *dso__new_kernel(const char *name);
a2928c42
ACM
128void dso__delete(struct dso *self);
129
3610583c 130bool dso__loaded(const struct dso *self, enum map_type type);
79406cd7
ACM
131bool dso__sorted_by_name(const struct dso *self, enum map_type type);
132
8d92c02a
ACM
133static inline void dso__set_loaded(struct dso *self, enum map_type type)
134{
135 self->loaded |= (1 << type);
136}
137
79406cd7 138void dso__sort_by_name(struct dso *self, enum map_type type);
3610583c 139
a89e5abe
ACM
140extern struct list_head dsos__user, dsos__kernel;
141
142struct dso *__dsos__findnew(struct list_head *head, const char *name);
143
144static inline struct dso *dsos__findnew(const char *name)
145{
146 return __dsos__findnew(&dsos__user, name);
147}
148
9de89fe7 149int dso__load(struct dso *self, struct map *map, symbol_filter_t filter);
a19afe46 150int dso__load_vmlinux_path(struct dso *self, struct map *map,
9de89fe7
ACM
151 symbol_filter_t filter);
152int dso__load_kallsyms(struct dso *self, const char *filename, struct map *map,
153 symbol_filter_t filter);
cd84c2ac 154void dsos__fprintf(FILE *fp);
88d3d9b7 155size_t dsos__fprintf_buildid(FILE *fp, bool with_hits);
a2928c42 156
9e03eb2d 157size_t dso__fprintf_buildid(struct dso *self, FILE *fp);
95011c60 158size_t dso__fprintf(struct dso *self, enum map_type type, FILE *fp);
b0a9ab62
ACM
159
160enum dso_origin {
161 DSO__ORIG_KERNEL = 0,
162 DSO__ORIG_JAVA_JIT,
163 DSO__ORIG_BUILD_ID_CACHE,
164 DSO__ORIG_FEDORA,
165 DSO__ORIG_UBUNTU,
166 DSO__ORIG_BUILDID,
167 DSO__ORIG_DSO,
168 DSO__ORIG_KMODULE,
169 DSO__ORIG_NOT_FOUND,
170};
171
94cb9e38 172char dso__symtab_origin(const struct dso *self);
b7cece76 173void dso__set_long_name(struct dso *self, char *name);
8d06367f 174void dso__set_build_id(struct dso *self, void *build_id);
fd1d908c 175void dso__read_running_kernel_build_id(struct dso *self);
ea08d8cb 176struct symbol *dso__find_symbol(struct dso *self, enum map_type type, u64 addr);
79406cd7
ACM
177struct symbol *dso__find_symbol_by_name(struct dso *self, enum map_type type,
178 const char *name);
a2928c42 179
2643ce11 180int filename__read_build_id(const char *filename, void *bf, size_t size);
f1617b40 181int sysfs__read_build_id(const char *filename, void *bf, size_t size);
6122e4e4 182bool dsos__read_build_ids(bool with_hits);
ef12a141 183int build_id__sprintf(const u8 *self, int len, char *bf);
9e201442
ACM
184int kallsyms__parse(const char *filename, void *arg,
185 int (*process_symbol)(void *arg, const char *name,
186 char type, u64 start));
2643ce11 187
75be6cf4 188int symbol__init(void);
36a3e646
ACM
189bool symbol_type__is_a(char symbol_type, enum map_type map_type);
190
b0a9ab62
ACM
191size_t vmlinux_path__fprintf(FILE *fp);
192
8b40f521 193#endif /* __PERF_SYMBOL */
This page took 0.07734 seconds and 5 git commands to generate.