1
2#ifndef _PROBE_FINDER_H
3#define _PROBE_FINDER_H
4
5#include <stdbool.h>
6#include "intlist.h"
7#include "probe-event.h"
8#include "sane_ctype.h"
9
10#define MAX_PROBE_BUFFER 1024
11#define MAX_PROBES 128
12#define MAX_PROBE_ARGS 128
13
14#define PROBE_ARG_VARS "$vars"
15#define PROBE_ARG_PARAMS "$params"
16
17static inline int is_c_varname(const char *name)
18{
19
20 return isalpha(name[0]) || name[0] == '_';
21}
22
23#ifdef HAVE_DWARF_SUPPORT
24
25#include "dwarf-aux.h"
26
27
28
29
30struct debuginfo {
31 Dwarf *dbg;
32 Dwfl_Module *mod;
33 Dwfl *dwfl;
34 Dwarf_Addr bias;
35};
36
37
38struct debuginfo *debuginfo__new(const char *path);
39void debuginfo__delete(struct debuginfo *dbg);
40
41
42int debuginfo__find_trace_events(struct debuginfo *dbg,
43 struct perf_probe_event *pev,
44 struct probe_trace_event **tevs);
45
46
47int debuginfo__find_probe_point(struct debuginfo *dbg, unsigned long addr,
48 struct perf_probe_point *ppt);
49
50int debuginfo__get_text_offset(struct debuginfo *dbg, Dwarf_Addr *offs,
51 bool adjust_offset);
52
53
54int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr);
55
56
57int debuginfo__find_available_vars_at(struct debuginfo *dbg,
58 struct perf_probe_event *pev,
59 struct variable_list **vls);
60
61
62int get_real_path(const char *raw_path, const char *comp_dir,
63 char **new_path);
64
65struct probe_finder {
66 struct perf_probe_event *pev;
67
68
69 int (*callback)(Dwarf_Die *sc_die, struct probe_finder *pf);
70
71
72 int lno;
73 Dwarf_Addr addr;
74 const char *fname;
75 Dwarf_Die cu_die;
76 Dwarf_Die sp_die;
77 struct intlist *lcache;
78
79
80#if _ELFUTILS_PREREQ(0, 142)
81
82 Dwarf_CFI *cfi_eh;
83
84 Dwarf_CFI *cfi_dbg;
85#endif
86 Dwarf_Op *fb_ops;
87 unsigned int machine;
88 struct perf_probe_arg *pvar;
89 struct probe_trace_arg *tvar;
90};
91
92struct trace_event_finder {
93 struct probe_finder pf;
94 Dwfl_Module *mod;
95 struct probe_trace_event *tevs;
96 int ntevs;
97 int max_tevs;
98};
99
100struct available_var_finder {
101 struct probe_finder pf;
102 Dwfl_Module *mod;
103 struct variable_list *vls;
104 int nvls;
105 int max_vls;
106 bool child;
107};
108
109struct line_finder {
110 struct line_range *lr;
111
112 const char *fname;
113 int lno_s;
114 int lno_e;
115 Dwarf_Die cu_die;
116 Dwarf_Die sp_die;
117 int found;
118};
119
120#endif
121
122#endif
123