1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __UNWIND_H 2 #ifndef __UNWIND_H 3 #define __UNWIND_H 3 #define __UNWIND_H 4 4 5 #include <linux/compiler.h> 5 #include <linux/compiler.h> 6 #include <linux/types.h> 6 #include <linux/types.h> 7 #include "util/map_symbol.h" << 8 7 9 struct maps; !! 8 struct map; >> 9 struct map_groups; 10 struct perf_sample; 10 struct perf_sample; >> 11 struct symbol; 11 struct thread; 12 struct thread; 12 13 13 struct unwind_entry { 14 struct unwind_entry { 14 struct map_symbol ms; !! 15 struct map *map; 15 u64 ip; !! 16 struct symbol *sym; >> 17 u64 ip; 16 }; 18 }; 17 19 18 typedef int (*unwind_entry_cb_t)(struct unwind 20 typedef int (*unwind_entry_cb_t)(struct unwind_entry *entry, void *arg); 19 21 20 struct unwind_libunwind_ops { 22 struct unwind_libunwind_ops { 21 int (*prepare_access)(struct maps *map !! 23 int (*prepare_access)(struct map_groups *mg); 22 void (*flush_access)(struct maps *maps !! 24 void (*flush_access)(struct map_groups *mg); 23 void (*finish_access)(struct maps *map !! 25 void (*finish_access)(struct map_groups *mg); 24 int (*get_entries)(unwind_entry_cb_t c 26 int (*get_entries)(unwind_entry_cb_t cb, void *arg, 25 struct thread *thre 27 struct thread *thread, 26 struct perf_sample !! 28 struct perf_sample *data, int max_stack); 27 }; 29 }; 28 30 29 #ifdef HAVE_DWARF_UNWIND_SUPPORT 31 #ifdef HAVE_DWARF_UNWIND_SUPPORT 30 /* << 31 * When best_effort is set, don't report error << 32 * be expanded in the future to be more permis << 33 * error messages. << 34 */ << 35 int unwind__get_entries(unwind_entry_cb_t cb, 32 int unwind__get_entries(unwind_entry_cb_t cb, void *arg, 36 struct thread *thread, 33 struct thread *thread, 37 struct perf_sample *da !! 34 struct perf_sample *data, int max_stack); 38 bool best_effort); << 39 /* libunwind specific */ 35 /* libunwind specific */ 40 #ifdef HAVE_LIBUNWIND_SUPPORT 36 #ifdef HAVE_LIBUNWIND_SUPPORT 41 #ifndef LIBUNWIND__ARCH_REG_ID 37 #ifndef LIBUNWIND__ARCH_REG_ID 42 #define LIBUNWIND__ARCH_REG_ID(regnum) libunwi 38 #define LIBUNWIND__ARCH_REG_ID(regnum) libunwind__arch_reg_id(regnum) 43 #endif 39 #endif 44 40 >> 41 #ifndef LIBUNWIND__ARCH_REG_SP >> 42 #define LIBUNWIND__ARCH_REG_SP PERF_REG_SP >> 43 #endif >> 44 >> 45 #ifndef LIBUNWIND__ARCH_REG_IP >> 46 #define LIBUNWIND__ARCH_REG_IP PERF_REG_IP >> 47 #endif >> 48 45 int LIBUNWIND__ARCH_REG_ID(int regnum); 49 int LIBUNWIND__ARCH_REG_ID(int regnum); 46 int unwind__prepare_access(struct maps *maps, !! 50 int unwind__prepare_access(struct map_groups *mg, struct map *map, 47 void unwind__flush_access(struct maps *maps); !! 51 bool *initialized); 48 void unwind__finish_access(struct maps *maps); !! 52 void unwind__flush_access(struct map_groups *mg); >> 53 void unwind__finish_access(struct map_groups *mg); 49 #else 54 #else 50 static inline int unwind__prepare_access(struc !! 55 static inline int unwind__prepare_access(struct map_groups *mg __maybe_unused, 51 struc 56 struct map *map __maybe_unused, 52 bool 57 bool *initialized __maybe_unused) 53 { 58 { 54 return 0; 59 return 0; 55 } 60 } 56 61 57 static inline void unwind__flush_access(struct !! 62 static inline void unwind__flush_access(struct map_groups *mg __maybe_unused) {} 58 static inline void unwind__finish_access(struc !! 63 static inline void unwind__finish_access(struct map_groups *mg __maybe_unused) {} 59 #endif 64 #endif 60 #else 65 #else 61 static inline int 66 static inline int 62 unwind__get_entries(unwind_entry_cb_t cb __may 67 unwind__get_entries(unwind_entry_cb_t cb __maybe_unused, 63 void *arg __maybe_unused, 68 void *arg __maybe_unused, 64 struct thread *thread __ma 69 struct thread *thread __maybe_unused, 65 struct perf_sample *data _ 70 struct perf_sample *data __maybe_unused, 66 int max_stack __maybe_unus !! 71 int max_stack __maybe_unused) 67 bool best_effort __maybe_u << 68 { 72 { 69 return 0; 73 return 0; 70 } 74 } 71 75 72 static inline int unwind__prepare_access(struc !! 76 static inline int unwind__prepare_access(struct map_groups *mg __maybe_unused, 73 struc 77 struct map *map __maybe_unused, 74 bool 78 bool *initialized __maybe_unused) 75 { 79 { 76 return 0; 80 return 0; 77 } 81 } 78 82 79 static inline void unwind__flush_access(struct !! 83 static inline void unwind__flush_access(struct map_groups *mg __maybe_unused) {} 80 static inline void unwind__finish_access(struc !! 84 static inline void unwind__finish_access(struct map_groups *mg __maybe_unused) {} 81 #endif /* HAVE_DWARF_UNWIND_SUPPORT */ 85 #endif /* HAVE_DWARF_UNWIND_SUPPORT */ 82 #endif /* __UNWIND_H */ 86 #endif /* __UNWIND_H */ 83 87
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.