2009-09-24 20:02:18 +04:00
|
|
|
#ifndef __PERF_SYMBOL
|
|
|
|
#define __PERF_SYMBOL 1
|
2009-05-28 21:55:04 +04:00
|
|
|
|
|
|
|
#include <linux/types.h>
|
2009-10-20 20:25:40 +04:00
|
|
|
#include <stdbool.h>
|
2010-03-26 01:59:00 +03:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "map.h"
|
2012-02-10 02:21:01 +04:00
|
|
|
#include "../perf.h"
|
2009-07-01 21:46:08 +04:00
|
|
|
#include <linux/list.h>
|
2009-07-01 19:28:37 +04:00
|
|
|
#include <linux/rbtree.h>
|
2010-03-26 01:59:00 +03:00
|
|
|
#include <stdio.h>
|
2012-05-30 16:23:42 +04:00
|
|
|
#include <byteswap.h>
|
2012-09-08 04:43:17 +04:00
|
|
|
#include <libgen.h>
|
2012-10-28 01:18:29 +04:00
|
|
|
#include "build-id.h"
|
2009-05-28 21:55:04 +04:00
|
|
|
|
2012-09-28 13:31:59 +04:00
|
|
|
#ifdef LIBELF_SUPPORT
|
2012-08-11 02:22:57 +04:00
|
|
|
#include <libelf.h>
|
|
|
|
#include <gelf.h>
|
|
|
|
#endif
|
2012-12-28 11:16:49 +04:00
|
|
|
#include <elf.h>
|
2012-08-11 02:22:57 +04:00
|
|
|
|
2012-10-28 01:18:32 +04:00
|
|
|
#include "dso.h"
|
|
|
|
|
2009-08-11 23:22:11 +04:00
|
|
|
#ifdef HAVE_CPLUS_DEMANGLE
|
|
|
|
extern char *cplus_demangle(const char *, int);
|
|
|
|
|
2012-09-11 02:15:03 +04:00
|
|
|
static inline char *bfd_demangle(void __maybe_unused *v, const char *c, int i)
|
2009-08-11 23:22:11 +04:00
|
|
|
{
|
|
|
|
return cplus_demangle(c, i);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#ifdef NO_DEMANGLE
|
2012-09-11 02:15:03 +04:00
|
|
|
static inline char *bfd_demangle(void __maybe_unused *v,
|
|
|
|
const char __maybe_unused *c,
|
|
|
|
int __maybe_unused i)
|
2009-08-11 23:22:11 +04:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#else
|
2012-09-19 11:29:02 +04:00
|
|
|
#define PACKAGE 'perf'
|
2009-08-11 23:22:11 +04:00
|
|
|
#include <bfd.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2009-10-24 20:10:36 +04:00
|
|
|
/*
|
|
|
|
* libelf 0.8.x and earlier do not support ELF_C_READ_MMAP;
|
|
|
|
* for newer versions we can use mmap to reduce memory usage:
|
|
|
|
*/
|
2012-09-28 13:31:59 +04:00
|
|
|
#ifdef LIBELF_MMAP
|
2009-10-24 20:10:36 +04:00
|
|
|
# define PERF_ELF_C_READ_MMAP ELF_C_READ_MMAP
|
2012-09-28 13:31:59 +04:00
|
|
|
#else
|
|
|
|
# define PERF_ELF_C_READ_MMAP ELF_C_READ
|
2009-10-24 20:10:36 +04:00
|
|
|
#endif
|
|
|
|
|
2009-08-11 23:22:11 +04:00
|
|
|
#ifndef DMGL_PARAMS
|
|
|
|
#define DMGL_PARAMS (1 << 0) /* Include function args */
|
|
|
|
#define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */
|
|
|
|
#endif
|
|
|
|
|
2011-03-11 19:36:01 +03:00
|
|
|
/** struct symbol - symtab entry
|
|
|
|
*
|
|
|
|
* @ignore - resolvable but tools ignore it (e.g. idle routines)
|
|
|
|
*/
|
2009-05-28 21:55:04 +04:00
|
|
|
struct symbol {
|
|
|
|
struct rb_node rb_node;
|
perf_counter tools: Define and use our own u64, s64 etc. definitions
On 64-bit powerpc, __u64 is defined to be unsigned long rather than
unsigned long long. This causes compiler warnings every time we
print a __u64 value with %Lx.
Rather than changing __u64, we define our own u64 to be unsigned long
long on all architectures, and similarly s64 as signed long long.
For consistency we also define u32, s32, u16, s16, u8 and s8. These
definitions are put in a new header, types.h, because these definitions
are needed in util/string.h and util/symbol.h.
The main change here is the mechanical change of __[us]{64,32,16,8}
to remove the "__". The other changes are:
* Create types.h
* Include types.h in perf.h, util/string.h and util/symbol.h
* Add types.h to the LIB_H definition in Makefile
* Added (u64) casts in process_overflow_event() and print_sym_table()
to kill two remaining warnings.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: benh@kernel.crashing.org
LKML-Reference: <19003.33494.495844.956580@cargo.ozlabs.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-06-19 16:21:42 +04:00
|
|
|
u64 start;
|
|
|
|
u64 end;
|
2010-05-10 20:57:51 +04:00
|
|
|
u16 namelen;
|
2010-08-05 19:59:47 +04:00
|
|
|
u8 binding;
|
2011-03-11 19:36:01 +03:00
|
|
|
bool ignore;
|
2009-05-28 21:55:04 +04:00
|
|
|
char name[0];
|
|
|
|
};
|
|
|
|
|
2011-03-31 17:56:28 +04:00
|
|
|
void symbol__delete(struct symbol *sym);
|
2012-10-28 01:18:32 +04:00
|
|
|
void symbols__delete(struct rb_root *symbols);
|
2010-02-25 18:57:40 +03:00
|
|
|
|
2012-04-19 17:57:06 +04:00
|
|
|
static inline size_t symbol__size(const struct symbol *sym)
|
|
|
|
{
|
|
|
|
return sym->end - sym->start + 1;
|
|
|
|
}
|
|
|
|
|
2009-12-16 01:04:40 +03:00
|
|
|
struct strlist;
|
|
|
|
|
2009-11-24 17:05:15 +03:00
|
|
|
struct symbol_conf {
|
|
|
|
unsigned short priv_size;
|
2011-11-12 04:17:32 +04:00
|
|
|
unsigned short nr_events;
|
2009-11-24 17:05:15 +03:00
|
|
|
bool try_vmlinux_path,
|
2012-01-30 08:43:20 +04:00
|
|
|
show_kernel_path,
|
perf symbols: Allow lookups by symbol name too
Configurable via symbol_conf.sort_by_name, so that the cost of an
extra rb_node on all 'struct symbol' instances is not paid by tools
that only want to decode addresses.
How to use it:
symbol_conf.sort_by_name = true;
symbol_init(&symbol_conf);
struct map *map = map_groups__find_by_name(kmaps, MAP__VARIABLE, "[kernel.kallsyms]");
if (map == NULL) {
pr_err("couldn't find map!\n");
kernel_maps__fprintf(stdout);
} else {
struct symbol *sym = map__find_symbol_by_name(map, sym_filter, NULL);
if (sym == NULL)
pr_err("couldn't find symbol %s!\n", sym_filter);
else
pr_info("symbol %s: %#Lx-%#Lx \n", sym_filter, sym->start, sym->end);
}
Looking over the vmlinux/kallsyms is common enough that I'll add a
variable to the upcoming struct perf_session to avoid the need to
use map_groups__find_by_name to get the main vmlinux/kallsyms map.
The above example looks on the 'variable' symtab, but it is just
like that for the functions one.
Also the sort operation is done when we first use
map__find_symbol_by_name, in a lazy way.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Masami Hiramatsu <mhiramat@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1260564622-12392-1-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-11 23:50:22 +03:00
|
|
|
use_modules,
|
2009-12-16 01:04:42 +03:00
|
|
|
sort_by_name,
|
|
|
|
show_nr_samples,
|
2011-10-05 23:10:06 +04:00
|
|
|
show_total_period,
|
2009-12-16 01:04:42 +03:00
|
|
|
use_callchain,
|
2009-12-28 02:37:04 +03:00
|
|
|
exclude_other,
|
2010-09-09 20:30:59 +04:00
|
|
|
show_cpu_utilization,
|
perf symbols: Handle /proc/sys/kernel/kptr_restrict
Perf uses /proc/modules to figure out where kernel modules are loaded.
With the advent of kptr_restrict, non root users get zeroes for all module
start addresses.
So check if kptr_restrict is non zero and don't generate the syntethic
PERF_RECORD_MMAP events for them.
Warn the user about it in perf record and in perf report.
In perf report the reference relocation symbol being zero means that
kptr_restrict was set, thus /proc/kallsyms has only zeroed addresses, so don't
use it to fixup symbol addresses when using a valid kallsyms (in the buildid
cache) or vmlinux (in the vmlinux path) build-id located automatically or
specified by the user.
Provide an explanation about it in 'perf report' if kernel samples were taken,
checking if a suitable vmlinux or kallsyms was found/specified.
Restricted /proc/kallsyms don't go to the buildid cache anymore.
Example:
[acme@emilia ~]$ perf record -F 100000 sleep 1
WARNING: Kernel address maps (/proc/{kallsyms,modules}) are restricted, check
/proc/sys/kernel/kptr_restrict.
Samples in kernel functions may not be resolved if a suitable vmlinux file is
not found in the buildid cache or in the vmlinux path.
Samples in kernel modules won't be resolved at all.
If some relocation was applied (e.g. kexec) symbols may be misresolved even
with a suitable vmlinux or kallsyms file.
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.005 MB perf.data (~231 samples) ]
[acme@emilia ~]$
[acme@emilia ~]$ perf report --stdio
Kernel address maps (/proc/{kallsyms,modules}) were restricted,
check /proc/sys/kernel/kptr_restrict before running 'perf record'.
If some relocation was applied (e.g. kexec) symbols may be misresolved.
Samples in kernel modules can't be resolved as well.
# Events: 13 cycles
#
# Overhead Command Shared Object Symbol
# ........ ....... ................. .....................
#
20.24% sleep [kernel.kallsyms] [k] page_fault
20.04% sleep [kernel.kallsyms] [k] filemap_fault
19.78% sleep [kernel.kallsyms] [k] __lru_cache_add
19.69% sleep ld-2.12.so [.] memcpy
14.71% sleep [kernel.kallsyms] [k] dput
4.70% sleep [kernel.kallsyms] [k] flush_signal_handlers
0.73% sleep [kernel.kallsyms] [k] perf_event_comm
0.11% sleep [kernel.kallsyms] [k] native_write_msr_safe
#
# (For a higher level overview, try: perf report --sort comm,dso)
#
[acme@emilia ~]$
This is because it found a suitable vmlinux (build-id checked) in
/lib/modules/2.6.39-rc7+/build/vmlinux (use -v in perf report to see the long
file name).
If we remove that file from the vmlinux path:
[root@emilia ~]# mv /lib/modules/2.6.39-rc7+/build/vmlinux \
/lib/modules/2.6.39-rc7+/build/vmlinux.OFF
[acme@emilia ~]$ perf report --stdio
[kernel.kallsyms] with build id 57298cdbe0131f6871667ec0eaab4804dcf6f562
not found, continuing without symbols
Kernel address maps (/proc/{kallsyms,modules}) were restricted, check
/proc/sys/kernel/kptr_restrict before running 'perf record'.
As no suitable kallsyms nor vmlinux was found, kernel samples can't be
resolved.
Samples in kernel modules can't be resolved as well.
# Events: 13 cycles
#
# Overhead Command Shared Object Symbol
# ........ ....... ................. ......
#
80.31% sleep [kernel.kallsyms] [k] 0xffffffff8103425a
19.69% sleep ld-2.12.so [.] memcpy
#
# (For a higher level overview, try: perf report --sort comm,dso)
#
[acme@emilia ~]$
Reported-by: Stephane Eranian <eranian@google.com>
Suggested-by: David Miller <davem@davemloft.net>
Cc: Dave Jones <davej@redhat.com>
Cc: David Miller <davem@davemloft.net>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Kees Cook <kees.cook@canonical.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
Link: http://lkml.kernel.org/n/tip-mt512joaxxbhhp1odop04yit@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2011-05-26 16:53:51 +04:00
|
|
|
initialized,
|
2011-05-17 19:32:07 +04:00
|
|
|
kptr_restrict,
|
|
|
|
annotate_asm_raw,
|
2013-01-22 13:09:32 +04:00
|
|
|
annotate_src,
|
2013-03-25 13:18:18 +04:00
|
|
|
event_group,
|
|
|
|
demangle;
|
2009-12-16 01:04:41 +03:00
|
|
|
const char *vmlinux_name,
|
2010-12-08 05:39:46 +03:00
|
|
|
*kallsyms_name,
|
2010-06-14 23:26:30 +04:00
|
|
|
*source_prefix,
|
2009-12-16 01:04:41 +03:00
|
|
|
*field_sep;
|
2010-04-19 09:32:50 +04:00
|
|
|
const char *default_guest_vmlinux_name,
|
|
|
|
*default_guest_kallsyms,
|
|
|
|
*default_guest_modules;
|
|
|
|
const char *guestmount;
|
2010-05-17 23:22:41 +04:00
|
|
|
const char *dso_list_str,
|
2009-12-16 01:04:40 +03:00
|
|
|
*comm_list_str,
|
|
|
|
*sym_list_str,
|
|
|
|
*col_width_list_str;
|
|
|
|
struct strlist *dso_list,
|
|
|
|
*comm_list,
|
2012-03-09 02:47:48 +04:00
|
|
|
*sym_list,
|
|
|
|
*dso_from_list,
|
|
|
|
*dso_to_list,
|
|
|
|
*sym_from_list,
|
|
|
|
*sym_to_list;
|
2010-12-09 23:27:07 +03:00
|
|
|
const char *symfs;
|
2009-11-24 17:05:15 +03:00
|
|
|
};
|
|
|
|
|
2009-12-16 01:04:39 +03:00
|
|
|
extern struct symbol_conf symbol_conf;
|
2012-12-08 00:39:39 +04:00
|
|
|
extern int vmlinux_path__nr_entries;
|
|
|
|
extern char **vmlinux_path;
|
2009-10-30 21:28:24 +03:00
|
|
|
|
2011-03-31 17:56:28 +04:00
|
|
|
static inline void *symbol__priv(struct symbol *sym)
|
2009-10-30 21:28:24 +03:00
|
|
|
{
|
2011-03-31 17:56:28 +04:00
|
|
|
return ((void *)sym) - symbol_conf.priv_size;
|
2009-10-30 21:28:24 +03:00
|
|
|
}
|
|
|
|
|
2010-02-03 21:52:00 +03:00
|
|
|
struct ref_reloc_sym {
|
|
|
|
const char *name;
|
|
|
|
u64 addr;
|
|
|
|
u64 unrelocated_addr;
|
|
|
|
};
|
|
|
|
|
2010-03-24 22:40:17 +03:00
|
|
|
struct map_symbol {
|
|
|
|
struct map *map;
|
|
|
|
struct symbol *sym;
|
2010-07-27 00:13:40 +04:00
|
|
|
bool unfolded;
|
|
|
|
bool has_children;
|
2010-03-24 22:40:17 +03:00
|
|
|
};
|
|
|
|
|
2012-02-10 02:21:01 +04:00
|
|
|
struct addr_map_symbol {
|
|
|
|
struct map *map;
|
|
|
|
struct symbol *sym;
|
|
|
|
u64 addr;
|
2012-03-09 02:47:48 +04:00
|
|
|
u64 al_addr;
|
2012-02-10 02:21:01 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct branch_info {
|
|
|
|
struct addr_map_symbol from;
|
|
|
|
struct addr_map_symbol to;
|
|
|
|
struct branch_flags flags;
|
|
|
|
};
|
|
|
|
|
2013-01-24 19:10:35 +04:00
|
|
|
struct mem_info {
|
|
|
|
struct addr_map_symbol iaddr;
|
|
|
|
struct addr_map_symbol daddr;
|
|
|
|
union perf_mem_data_src data_src;
|
|
|
|
};
|
|
|
|
|
perf tools: Consolidate symbol resolving across all tools
Now we have a very high level routine for simple tools to
process IP sample events:
int event__preprocess_sample(const event_t *self,
struct addr_location *al,
symbol_filter_t filter)
It receives the event itself and will insert new threads in the
global threads list and resolve the map and symbol, filling all
this info into the new addr_location struct, so that tools like
annotate and report can further process the event by creating
hist_entries in their specific way (with or without callgraphs,
etc).
It in turn uses the new next layer function:
void thread__find_addr_location(struct thread *self, u8 cpumode,
enum map_type type, u64 addr,
struct addr_location *al,
symbol_filter_t filter)
This one will, given a thread (userspace or the kernel kthread
one), will find the given type (MAP__FUNCTION now, MAP__VARIABLE
too in the near future) at the given cpumode, taking vdsos into
account (userspace hit, but kernel symbol) and will fill all
these details in the addr_location given.
Tools that need a more compact API for plain function
resolution, like 'kmem', can use this other one:
struct symbol *thread__find_function(struct thread *self, u64 addr,
symbol_filter_t filter)
So, to resolve a kernel symbol, that is all the 'kmem' tool
needs, its just a matter of calling:
sym = thread__find_function(kthread, addr, NULL);
The 'filter' parameter is needed because we do lazy
parsing/loading of ELF symtabs or /proc/kallsyms.
With this we remove more code duplication all around, which is
always good, huh? :-)
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: John Kacur <jkacur@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1259346563-12568-12-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-11-27 21:29:23 +03:00
|
|
|
struct addr_location {
|
|
|
|
struct thread *thread;
|
|
|
|
struct map *map;
|
|
|
|
struct symbol *sym;
|
|
|
|
u64 addr;
|
|
|
|
char level;
|
2009-12-16 01:04:41 +03:00
|
|
|
bool filtered;
|
2010-06-04 18:27:10 +04:00
|
|
|
u8 cpumode;
|
|
|
|
s32 cpu;
|
2010-04-19 09:32:50 +04:00
|
|
|
};
|
|
|
|
|
2012-08-11 02:22:57 +04:00
|
|
|
struct symsrc {
|
|
|
|
char *name;
|
|
|
|
int fd;
|
|
|
|
enum dso_binary_type type;
|
|
|
|
|
2012-09-28 13:31:59 +04:00
|
|
|
#ifdef LIBELF_SUPPORT
|
2012-08-11 02:22:57 +04:00
|
|
|
Elf *elf;
|
|
|
|
GElf_Ehdr ehdr;
|
|
|
|
|
|
|
|
Elf_Scn *opdsec;
|
|
|
|
size_t opdidx;
|
|
|
|
GElf_Shdr opdshdr;
|
|
|
|
|
|
|
|
Elf_Scn *symtab;
|
|
|
|
GElf_Shdr symshdr;
|
|
|
|
|
|
|
|
Elf_Scn *dynsym;
|
|
|
|
size_t dynsym_idx;
|
|
|
|
GElf_Shdr dynshdr;
|
|
|
|
|
|
|
|
bool adjust_symbols;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
void symsrc__destroy(struct symsrc *ss);
|
|
|
|
int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
|
|
|
|
enum dso_binary_type type);
|
2012-08-11 02:23:00 +04:00
|
|
|
bool symsrc__has_symtab(struct symsrc *ss);
|
2012-08-11 02:23:02 +04:00
|
|
|
bool symsrc__possibly_runtime(struct symsrc *ss);
|
2012-08-11 02:22:57 +04:00
|
|
|
|
2011-03-31 17:56:28 +04:00
|
|
|
int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter);
|
|
|
|
int dso__load_vmlinux(struct dso *dso, struct map *map,
|
2010-12-10 16:06:03 +03:00
|
|
|
const char *vmlinux, symbol_filter_t filter);
|
2011-03-31 17:56:28 +04:00
|
|
|
int dso__load_vmlinux_path(struct dso *dso, struct map *map,
|
2010-02-03 21:52:00 +03:00
|
|
|
symbol_filter_t filter);
|
2011-03-31 17:56:28 +04:00
|
|
|
int dso__load_kallsyms(struct dso *dso, const char *filename, struct map *map,
|
2010-02-03 21:52:00 +03:00
|
|
|
symbol_filter_t filter);
|
2012-10-28 01:18:32 +04:00
|
|
|
|
2011-03-31 17:56:28 +04:00
|
|
|
struct symbol *dso__find_symbol(struct dso *dso, enum map_type type,
|
|
|
|
u64 addr);
|
|
|
|
struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type,
|
perf symbols: Allow lookups by symbol name too
Configurable via symbol_conf.sort_by_name, so that the cost of an
extra rb_node on all 'struct symbol' instances is not paid by tools
that only want to decode addresses.
How to use it:
symbol_conf.sort_by_name = true;
symbol_init(&symbol_conf);
struct map *map = map_groups__find_by_name(kmaps, MAP__VARIABLE, "[kernel.kallsyms]");
if (map == NULL) {
pr_err("couldn't find map!\n");
kernel_maps__fprintf(stdout);
} else {
struct symbol *sym = map__find_symbol_by_name(map, sym_filter, NULL);
if (sym == NULL)
pr_err("couldn't find symbol %s!\n", sym_filter);
else
pr_info("symbol %s: %#Lx-%#Lx \n", sym_filter, sym->start, sym->end);
}
Looking over the vmlinux/kallsyms is common enough that I'll add a
variable to the upcoming struct perf_session to avoid the need to
use map_groups__find_by_name to get the main vmlinux/kallsyms map.
The above example looks on the 'variable' symtab, but it is just
like that for the functions one.
Also the sort operation is done when we first use
map__find_symbol_by_name, in a lazy way.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Masami Hiramatsu <mhiramat@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1260564622-12392-1-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-11 23:50:22 +03:00
|
|
|
const char *name);
|
2009-05-28 21:55:04 +04:00
|
|
|
|
2009-11-04 02:46:10 +03:00
|
|
|
int filename__read_build_id(const char *filename, void *bf, size_t size);
|
2009-11-19 01:20:52 +03:00
|
|
|
int sysfs__read_build_id(const char *filename, void *bf, size_t size);
|
2010-01-14 23:30:06 +03:00
|
|
|
int kallsyms__parse(const char *filename, void *arg,
|
|
|
|
int (*process_symbol)(void *arg, const char *name,
|
2012-08-11 02:22:48 +04:00
|
|
|
char type, u64 start));
|
2012-08-06 08:41:20 +04:00
|
|
|
int filename__read_debuglink(const char *filename, char *debuglink,
|
|
|
|
size_t size);
|
2009-11-04 02:46:10 +03:00
|
|
|
|
2009-12-16 01:04:39 +03:00
|
|
|
int symbol__init(void);
|
2010-07-31 01:31:28 +04:00
|
|
|
void symbol__exit(void);
|
2012-08-06 08:41:19 +04:00
|
|
|
void symbol__elf_init(void);
|
2012-08-06 08:41:20 +04:00
|
|
|
struct symbol *symbol__new(u64 start, u64 len, u8 binding, const char *name);
|
2012-01-30 08:43:15 +04:00
|
|
|
size_t symbol__fprintf_symname_offs(const struct symbol *sym,
|
|
|
|
const struct addr_location *al, FILE *fp);
|
2012-01-30 08:42:57 +04:00
|
|
|
size_t symbol__fprintf_symname(const struct symbol *sym, FILE *fp);
|
2012-10-28 01:18:32 +04:00
|
|
|
size_t symbol__fprintf(struct symbol *sym, FILE *fp);
|
2010-01-04 21:19:27 +03:00
|
|
|
bool symbol_type__is_a(char symbol_type, enum map_type map_type);
|
2012-12-08 00:39:39 +04:00
|
|
|
bool symbol__restricted_filename(const char *filename,
|
|
|
|
const char *restricted_filename);
|
2010-01-04 21:19:27 +03:00
|
|
|
|
2012-08-11 02:23:01 +04:00
|
|
|
int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *syms_ss,
|
|
|
|
struct symsrc *runtime_ss, symbol_filter_t filter,
|
|
|
|
int kmodule);
|
2012-08-11 02:22:59 +04:00
|
|
|
int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss,
|
|
|
|
struct map *map, symbol_filter_t filter);
|
2012-08-06 08:41:20 +04:00
|
|
|
|
|
|
|
void symbols__insert(struct rb_root *symbols, struct symbol *sym);
|
|
|
|
void symbols__fixup_duplicate(struct rb_root *symbols);
|
|
|
|
void symbols__fixup_end(struct rb_root *symbols);
|
|
|
|
void __map_groups__fixup_end(struct map_groups *mg, enum map_type type);
|
|
|
|
|
2009-09-24 20:02:18 +04:00
|
|
|
#endif /* __PERF_SYMBOL */
|