Merge tag 'perf-core-for-mingo-20160615' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / tools / perf / util / unwind.h
CommitLineData
71ad0f5e
JO
1#ifndef __UNWIND_H
2#define __UNWIND_H
3
d944c4ee 4#include <linux/types.h>
71ad0f5e
JO
5#include "event.h"
6#include "symbol.h"
66f066d8 7#include "thread.h"
71ad0f5e
JO
8
9struct unwind_entry {
10 struct map *map;
11 struct symbol *sym;
12 u64 ip;
13};
14
15typedef int (*unwind_entry_cb_t)(struct unwind_entry *entry, void *arg);
16
f83c0415
HK
17struct unwind_libunwind_ops {
18 int (*prepare_access)(struct thread *thread);
19 void (*flush_access)(struct thread *thread);
20 void (*finish_access)(struct thread *thread);
21 int (*get_entries)(unwind_entry_cb_t cb, void *arg,
22 struct thread *thread,
23 struct perf_sample *data, int max_stack);
24};
25
9ff125d1 26#ifdef HAVE_DWARF_UNWIND_SUPPORT
71ad0f5e 27int unwind__get_entries(unwind_entry_cb_t cb, void *arg,
71ad0f5e 28 struct thread *thread,
37676af1 29 struct perf_sample *data, int max_stack);
9ff125d1
JO
30/* libunwind specific */
31#ifdef HAVE_LIBUNWIND_SUPPORT
eeb118c5
HK
32#ifndef LIBUNWIND__ARCH_REG_ID
33#define LIBUNWIND__ARCH_REG_ID(regnum) libunwind__arch_reg_id(regnum)
34#endif
35int LIBUNWIND__ARCH_REG_ID(int regnum);
d64ec10e 36int unwind__prepare_access(struct thread *thread, struct map *map);
380b5143 37void unwind__flush_access(struct thread *thread);
66f066d8
NK
38void unwind__finish_access(struct thread *thread);
39#else
d64ec10e
HK
40static inline int unwind__prepare_access(struct thread *thread __maybe_unused,
41 struct map *map __maybe_unused)
66f066d8
NK
42{
43 return 0;
44}
45
380b5143 46static inline void unwind__flush_access(struct thread *thread __maybe_unused) {}
66f066d8 47static inline void unwind__finish_access(struct thread *thread __maybe_unused) {}
9ff125d1 48#endif
71ad0f5e
JO
49#else
50static inline int
1d037ca1
IT
51unwind__get_entries(unwind_entry_cb_t cb __maybe_unused,
52 void *arg __maybe_unused,
1d037ca1 53 struct thread *thread __maybe_unused,
37676af1
ACM
54 struct perf_sample *data __maybe_unused,
55 int max_stack __maybe_unused)
71ad0f5e
JO
56{
57 return 0;
58}
66f066d8 59
d64ec10e
HK
60static inline int unwind__prepare_access(struct thread *thread __maybe_unused,
61 struct map *map __maybe_unused)
66f066d8
NK
62{
63 return 0;
64}
65
380b5143 66static inline void unwind__flush_access(struct thread *thread __maybe_unused) {}
66f066d8 67static inline void unwind__finish_access(struct thread *thread __maybe_unused) {}
9ff125d1 68#endif /* HAVE_DWARF_UNWIND_SUPPORT */
71ad0f5e 69#endif /* __UNWIND_H */
This page took 0.172316 seconds and 5 git commands to generate.