perf unwind: Check the target platform before assigning unwind methods
[deliverable/linux.git] / tools / perf / util / unwind.h
1 #ifndef __UNWIND_H
2 #define __UNWIND_H
3
4 #include <linux/types.h>
5 #include "event.h"
6 #include "symbol.h"
7 #include "thread.h"
8
9 struct unwind_entry {
10 struct map *map;
11 struct symbol *sym;
12 u64 ip;
13 };
14
15 typedef int (*unwind_entry_cb_t)(struct unwind_entry *entry, void *arg);
16
17 struct 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
26 #ifdef HAVE_DWARF_UNWIND_SUPPORT
27 int unwind__get_entries(unwind_entry_cb_t cb, void *arg,
28 struct thread *thread,
29 struct perf_sample *data, int max_stack);
30 /* libunwind specific */
31 #ifdef HAVE_LIBUNWIND_SUPPORT
32 int libunwind__arch_reg_id(int regnum);
33 int unwind__prepare_access(struct thread *thread, struct map *map);
34 void unwind__flush_access(struct thread *thread);
35 void unwind__finish_access(struct thread *thread);
36 #else
37 static inline int unwind__prepare_access(struct thread *thread __maybe_unused,
38 struct map *map __maybe_unused)
39 {
40 return 0;
41 }
42
43 static inline void unwind__flush_access(struct thread *thread __maybe_unused) {}
44 static inline void unwind__finish_access(struct thread *thread __maybe_unused) {}
45 #endif
46 #else
47 static inline int
48 unwind__get_entries(unwind_entry_cb_t cb __maybe_unused,
49 void *arg __maybe_unused,
50 struct thread *thread __maybe_unused,
51 struct perf_sample *data __maybe_unused,
52 int max_stack __maybe_unused)
53 {
54 return 0;
55 }
56
57 static inline int unwind__prepare_access(struct thread *thread __maybe_unused,
58 struct map *map __maybe_unused)
59 {
60 return 0;
61 }
62
63 static inline void unwind__flush_access(struct thread *thread __maybe_unused) {}
64 static inline void unwind__finish_access(struct thread *thread __maybe_unused) {}
65 #endif /* HAVE_DWARF_UNWIND_SUPPORT */
66 #endif /* __UNWIND_H */
This page took 0.119803 seconds and 6 git commands to generate.