~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/util/unwind.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/perf/util/unwind.h (Version linux-6.12-rc7) and /tools/perf/util/unwind.h (Version linux-5.18.19)


  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"                        7 #include "util/map_symbol.h"
  8                                                     8 
  9 struct maps;                                        9 struct maps;
 10 struct perf_sample;                                10 struct perf_sample;
 11 struct thread;                                     11 struct thread;
 12                                                    12 
 13 struct unwind_entry {                              13 struct unwind_entry {
 14         struct map_symbol ms;                      14         struct map_symbol ms;
 15         u64               ip;                      15         u64               ip;
 16 };                                                 16 };
 17                                                    17 
 18 typedef int (*unwind_entry_cb_t)(struct unwind     18 typedef int (*unwind_entry_cb_t)(struct unwind_entry *entry, void *arg);
 19                                                    19 
 20 struct unwind_libunwind_ops {                      20 struct unwind_libunwind_ops {
 21         int (*prepare_access)(struct maps *map     21         int (*prepare_access)(struct maps *maps);
 22         void (*flush_access)(struct maps *maps     22         void (*flush_access)(struct maps *maps);
 23         void (*finish_access)(struct maps *map     23         void (*finish_access)(struct maps *maps);
 24         int (*get_entries)(unwind_entry_cb_t c     24         int (*get_entries)(unwind_entry_cb_t cb, void *arg,
 25                            struct thread *thre     25                            struct thread *thread,
 26                            struct perf_sample      26                            struct perf_sample *data, int max_stack, bool best_effort);
 27 };                                                 27 };
 28                                                    28 
 29 #ifdef HAVE_DWARF_UNWIND_SUPPORT                   29 #ifdef HAVE_DWARF_UNWIND_SUPPORT
 30 /*                                                 30 /*
 31  * When best_effort is set, don't report error     31  * When best_effort is set, don't report errors and fail silently. This could
 32  * be expanded in the future to be more permis     32  * be expanded in the future to be more permissive about things other than
 33  * error messages.                                 33  * error messages.
 34  */                                                34  */
 35 int unwind__get_entries(unwind_entry_cb_t cb,      35 int unwind__get_entries(unwind_entry_cb_t cb, void *arg,
 36                         struct thread *thread,     36                         struct thread *thread,
 37                         struct perf_sample *da     37                         struct perf_sample *data, int max_stack,
 38                         bool best_effort);         38                         bool best_effort);
 39 /* libunwind specific */                           39 /* libunwind specific */
 40 #ifdef HAVE_LIBUNWIND_SUPPORT                      40 #ifdef HAVE_LIBUNWIND_SUPPORT
 41 #ifndef LIBUNWIND__ARCH_REG_ID                     41 #ifndef LIBUNWIND__ARCH_REG_ID
 42 #define LIBUNWIND__ARCH_REG_ID(regnum) libunwi     42 #define LIBUNWIND__ARCH_REG_ID(regnum) libunwind__arch_reg_id(regnum)
 43 #endif                                             43 #endif
 44                                                    44 
                                                   >>  45 #ifndef LIBUNWIND__ARCH_REG_SP
                                                   >>  46 #define LIBUNWIND__ARCH_REG_SP PERF_REG_SP
                                                   >>  47 #endif
                                                   >>  48 
                                                   >>  49 #ifndef LIBUNWIND__ARCH_REG_IP
                                                   >>  50 #define LIBUNWIND__ARCH_REG_IP PERF_REG_IP
                                                   >>  51 #endif
                                                   >>  52 
 45 int LIBUNWIND__ARCH_REG_ID(int regnum);            53 int LIBUNWIND__ARCH_REG_ID(int regnum);
 46 int unwind__prepare_access(struct maps *maps,      54 int unwind__prepare_access(struct maps *maps, struct map *map, bool *initialized);
 47 void unwind__flush_access(struct maps *maps);      55 void unwind__flush_access(struct maps *maps);
 48 void unwind__finish_access(struct maps *maps);     56 void unwind__finish_access(struct maps *maps);
 49 #else                                              57 #else
 50 static inline int unwind__prepare_access(struc     58 static inline int unwind__prepare_access(struct maps *maps __maybe_unused,
 51                                          struc     59                                          struct map *map __maybe_unused,
 52                                          bool      60                                          bool *initialized __maybe_unused)
 53 {                                                  61 {
 54         return 0;                                  62         return 0;
 55 }                                                  63 }
 56                                                    64 
 57 static inline void unwind__flush_access(struct     65 static inline void unwind__flush_access(struct maps *maps __maybe_unused) {}
 58 static inline void unwind__finish_access(struc     66 static inline void unwind__finish_access(struct maps *maps __maybe_unused) {}
 59 #endif                                             67 #endif
 60 #else                                              68 #else
 61 static inline int                                  69 static inline int
 62 unwind__get_entries(unwind_entry_cb_t cb __may     70 unwind__get_entries(unwind_entry_cb_t cb __maybe_unused,
 63                     void *arg __maybe_unused,      71                     void *arg __maybe_unused,
 64                     struct thread *thread __ma     72                     struct thread *thread __maybe_unused,
 65                     struct perf_sample *data _     73                     struct perf_sample *data __maybe_unused,
 66                     int max_stack __maybe_unus     74                     int max_stack __maybe_unused,
 67                     bool best_effort __maybe_u     75                     bool best_effort __maybe_unused)
 68 {                                                  76 {
 69         return 0;                                  77         return 0;
 70 }                                                  78 }
 71                                                    79 
 72 static inline int unwind__prepare_access(struc     80 static inline int unwind__prepare_access(struct maps *maps __maybe_unused,
 73                                          struc     81                                          struct map *map __maybe_unused,
 74                                          bool      82                                          bool *initialized __maybe_unused)
 75 {                                                  83 {
 76         return 0;                                  84         return 0;
 77 }                                                  85 }
 78                                                    86 
 79 static inline void unwind__flush_access(struct     87 static inline void unwind__flush_access(struct maps *maps __maybe_unused) {}
 80 static inline void unwind__finish_access(struc     88 static inline void unwind__finish_access(struct maps *maps __maybe_unused) {}
 81 #endif /* HAVE_DWARF_UNWIND_SUPPORT */             89 #endif /* HAVE_DWARF_UNWIND_SUPPORT */
 82 #endif /* __UNWIND_H */                            90 #endif /* __UNWIND_H */
 83                                                    91 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php