Jiri Olsa | 71ad0f5 | 2012-08-07 15:20:46 +0200 | [diff] [blame] | 1 | #ifndef __UNWIND_H |
| 2 | #define __UNWIND_H |
| 3 | |
Borislav Petkov | d944c4e | 2014-04-25 21:31:02 +0200 | [diff] [blame] | 4 | #include <linux/types.h> |
Jiri Olsa | 71ad0f5 | 2012-08-07 15:20:46 +0200 | [diff] [blame] | 5 | #include "event.h" |
| 6 | #include "symbol.h" |
Namhyung Kim | 66f066d8 | 2014-10-06 09:46:00 +0900 | [diff] [blame] | 7 | #include "thread.h" |
Jiri Olsa | 71ad0f5 | 2012-08-07 15:20:46 +0200 | [diff] [blame] | 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 | |
He Kuang | f83c041 | 2016-06-03 03:33:12 +0000 | [diff] [blame] | 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 | |
Jiri Olsa | 9ff125d | 2014-01-07 13:47:28 +0100 | [diff] [blame] | 26 | #ifdef HAVE_DWARF_UNWIND_SUPPORT |
Jiri Olsa | 71ad0f5 | 2012-08-07 15:20:46 +0200 | [diff] [blame] | 27 | int unwind__get_entries(unwind_entry_cb_t cb, void *arg, |
Jiri Olsa | 71ad0f5 | 2012-08-07 15:20:46 +0200 | [diff] [blame] | 28 | struct thread *thread, |
Arnaldo Carvalho de Melo | 37676af | 2013-11-13 17:40:36 -0300 | [diff] [blame] | 29 | struct perf_sample *data, int max_stack); |
Jiri Olsa | 9ff125d | 2014-01-07 13:47:28 +0100 | [diff] [blame] | 30 | /* libunwind specific */ |
| 31 | #ifdef HAVE_LIBUNWIND_SUPPORT |
He Kuang | eeb118c | 2016-06-03 03:33:20 +0000 | [diff] [blame] | 32 | #ifndef LIBUNWIND__ARCH_REG_ID |
| 33 | #define LIBUNWIND__ARCH_REG_ID(regnum) libunwind__arch_reg_id(regnum) |
| 34 | #endif |
He Kuang | 78ff1d6 | 2016-06-22 06:57:02 +0000 | [diff] [blame] | 35 | |
| 36 | #ifndef LIBUNWIND__ARCH_REG_SP |
| 37 | #define LIBUNWIND__ARCH_REG_SP PERF_REG_SP |
| 38 | #endif |
| 39 | |
| 40 | #ifndef LIBUNWIND__ARCH_REG_IP |
| 41 | #define LIBUNWIND__ARCH_REG_IP PERF_REG_IP |
| 42 | #endif |
| 43 | |
He Kuang | eeb118c | 2016-06-03 03:33:20 +0000 | [diff] [blame] | 44 | int LIBUNWIND__ARCH_REG_ID(int regnum); |
Jiri Olsa | a287332 | 2016-07-04 14:16:22 +0200 | [diff] [blame] | 45 | int unwind__prepare_access(struct thread *thread, struct map *map, |
| 46 | bool *initialized); |
Namhyung Kim | 380b514 | 2014-10-06 09:46:01 +0900 | [diff] [blame] | 47 | void unwind__flush_access(struct thread *thread); |
Namhyung Kim | 66f066d8 | 2014-10-06 09:46:00 +0900 | [diff] [blame] | 48 | void unwind__finish_access(struct thread *thread); |
| 49 | #else |
He Kuang | d64ec10 | 2016-06-03 03:33:19 +0000 | [diff] [blame] | 50 | static inline int unwind__prepare_access(struct thread *thread __maybe_unused, |
Jiri Olsa | a287332 | 2016-07-04 14:16:22 +0200 | [diff] [blame] | 51 | struct map *map __maybe_unused, |
| 52 | bool *initialized __maybe_unused) |
Namhyung Kim | 66f066d8 | 2014-10-06 09:46:00 +0900 | [diff] [blame] | 53 | { |
| 54 | return 0; |
| 55 | } |
| 56 | |
Namhyung Kim | 380b514 | 2014-10-06 09:46:01 +0900 | [diff] [blame] | 57 | static inline void unwind__flush_access(struct thread *thread __maybe_unused) {} |
Namhyung Kim | 66f066d8 | 2014-10-06 09:46:00 +0900 | [diff] [blame] | 58 | static inline void unwind__finish_access(struct thread *thread __maybe_unused) {} |
Jiri Olsa | 9ff125d | 2014-01-07 13:47:28 +0100 | [diff] [blame] | 59 | #endif |
Jiri Olsa | 71ad0f5 | 2012-08-07 15:20:46 +0200 | [diff] [blame] | 60 | #else |
| 61 | static inline int |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 62 | unwind__get_entries(unwind_entry_cb_t cb __maybe_unused, |
| 63 | void *arg __maybe_unused, |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 64 | struct thread *thread __maybe_unused, |
Arnaldo Carvalho de Melo | 37676af | 2013-11-13 17:40:36 -0300 | [diff] [blame] | 65 | struct perf_sample *data __maybe_unused, |
| 66 | int max_stack __maybe_unused) |
Jiri Olsa | 71ad0f5 | 2012-08-07 15:20:46 +0200 | [diff] [blame] | 67 | { |
| 68 | return 0; |
| 69 | } |
Namhyung Kim | 66f066d8 | 2014-10-06 09:46:00 +0900 | [diff] [blame] | 70 | |
He Kuang | d64ec10 | 2016-06-03 03:33:19 +0000 | [diff] [blame] | 71 | static inline int unwind__prepare_access(struct thread *thread __maybe_unused, |
Jiri Olsa | a287332 | 2016-07-04 14:16:22 +0200 | [diff] [blame] | 72 | struct map *map __maybe_unused, |
| 73 | bool *initialized __maybe_unused) |
Namhyung Kim | 66f066d8 | 2014-10-06 09:46:00 +0900 | [diff] [blame] | 74 | { |
| 75 | return 0; |
| 76 | } |
| 77 | |
Namhyung Kim | 380b514 | 2014-10-06 09:46:01 +0900 | [diff] [blame] | 78 | static inline void unwind__flush_access(struct thread *thread __maybe_unused) {} |
Namhyung Kim | 66f066d8 | 2014-10-06 09:46:00 +0900 | [diff] [blame] | 79 | static inline void unwind__finish_access(struct thread *thread __maybe_unused) {} |
Jiri Olsa | 9ff125d | 2014-01-07 13:47:28 +0100 | [diff] [blame] | 80 | #endif /* HAVE_DWARF_UNWIND_SUPPORT */ |
Jiri Olsa | 71ad0f5 | 2012-08-07 15:20:46 +0200 | [diff] [blame] | 81 | #endif /* __UNWIND_H */ |