Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / perf / util / probe-finder.h
blob11be100806136c246e0829e36a304372eaa91c2c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _PROBE_FINDER_H
3 #define _PROBE_FINDER_H
5 #include <stdbool.h>
6 #include "intlist.h"
7 #include "probe-event.h"
8 #include <linux/ctype.h>
10 #define MAX_PROBE_BUFFER 1024
11 #define MAX_PROBES 128
12 #define MAX_PROBE_ARGS 128
14 #define PROBE_ARG_VARS "$vars"
15 #define PROBE_ARG_PARAMS "$params"
17 static inline int is_c_varname(const char *name)
19 /* TODO */
20 return isalpha(name[0]) || name[0] == '_';
23 #ifdef HAVE_DWARF_SUPPORT
25 #include "dwarf-aux.h"
27 /* TODO: export debuginfo data structure even if no dwarf support */
29 /* debug information structure */
30 struct debuginfo {
31 Dwarf *dbg;
32 Dwfl_Module *mod;
33 Dwfl *dwfl;
34 Dwarf_Addr bias;
37 /* This also tries to open distro debuginfo */
38 struct debuginfo *debuginfo__new(const char *path);
39 void debuginfo__delete(struct debuginfo *dbg);
41 /* Find probe_trace_events specified by perf_probe_event from debuginfo */
42 int debuginfo__find_trace_events(struct debuginfo *dbg,
43 struct perf_probe_event *pev,
44 struct probe_trace_event **tevs);
46 /* Find a perf_probe_point from debuginfo */
47 int debuginfo__find_probe_point(struct debuginfo *dbg, unsigned long addr,
48 struct perf_probe_point *ppt);
50 int debuginfo__get_text_offset(struct debuginfo *dbg, Dwarf_Addr *offs,
51 bool adjust_offset);
53 /* Find a line range */
54 int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr);
56 /* Find available variables */
57 int debuginfo__find_available_vars_at(struct debuginfo *dbg,
58 struct perf_probe_event *pev,
59 struct variable_list **vls);
61 /* Find a src file from a DWARF tag path */
62 int get_real_path(const char *raw_path, const char *comp_dir,
63 char **new_path);
65 struct probe_finder {
66 struct perf_probe_event *pev; /* Target probe event */
68 /* Callback when a probe point is found */
69 int (*callback)(Dwarf_Die *sc_die, struct probe_finder *pf);
71 /* For function searching */
72 int lno; /* Line number */
73 Dwarf_Addr addr; /* Address */
74 const char *fname; /* Real file name */
75 Dwarf_Die cu_die; /* Current CU */
76 Dwarf_Die sp_die;
77 struct intlist *lcache; /* Line cache for lazy match */
79 /* For variable searching */
80 #if _ELFUTILS_PREREQ(0, 142)
81 /* Call Frame Information from .eh_frame */
82 Dwarf_CFI *cfi_eh;
83 /* Call Frame Information from .debug_frame */
84 Dwarf_CFI *cfi_dbg;
85 #endif
86 Dwarf_Op *fb_ops; /* Frame base attribute */
87 unsigned int machine; /* Target machine arch */
88 struct perf_probe_arg *pvar; /* Current target variable */
89 struct probe_trace_arg *tvar; /* Current result variable */
90 bool skip_empty_arg; /* Skip non-exist args */
93 struct trace_event_finder {
94 struct probe_finder pf;
95 Dwfl_Module *mod; /* For solving symbols */
96 struct probe_trace_event *tevs; /* Found trace events */
97 int ntevs; /* Number of trace events */
98 int max_tevs; /* Max number of trace events */
101 struct available_var_finder {
102 struct probe_finder pf;
103 Dwfl_Module *mod; /* For solving symbols */
104 struct variable_list *vls; /* Found variable lists */
105 int nvls; /* Number of variable lists */
106 int max_vls; /* Max no. of variable lists */
107 bool child; /* Search child scopes */
110 struct line_finder {
111 struct line_range *lr; /* Target line range */
113 const char *fname; /* File name */
114 int lno_s; /* Start line number */
115 int lno_e; /* End line number */
116 Dwarf_Die cu_die; /* Current CU */
117 Dwarf_Die sp_die;
118 int found;
121 #endif /* HAVE_DWARF_SUPPORT */
123 #endif /*_PROBE_FINDER_H */