blob: 17e94d0c36f981dbf8dbc245410b9a4aa511d16c [file] [log] [blame]
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001#ifndef _PROBE_FINDER_H
2#define _PROBE_FINDER_H
3
Masami Hiramatsu804b3602010-02-25 08:35:42 -05004#include <stdbool.h>
Arnaldo Carvalho de Melo4a58e612009-12-27 21:37:00 -02005#include "util.h"
Masami Hiramatsu4235b042010-03-16 18:06:12 -04006#include "probe-event.h"
Arnaldo Carvalho de Melo4a58e612009-12-27 21:37:00 -02007
Masami Hiramatsu27f3b242009-12-16 17:16:19 -05008#define MAX_PROBE_BUFFER 1024
9#define MAX_PROBES 128
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040010
11static inline int is_c_varname(const char *name)
12{
13 /* TODO */
14 return isalpha(name[0]) || name[0] == '_';
15}
16
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -030017#ifdef DWARF_SUPPORT
Masami Hiramatsuff741782011-06-27 16:27:39 +090018
19#include "dwarf-aux.h"
20
21/* TODO: export debuginfo data structure even if no dwarf support */
22
23/* debug information structure */
24struct debuginfo {
25 Dwarf *dbg;
26 Dwfl *dwfl;
27 Dwarf_Addr bias;
28};
29
30extern struct debuginfo *debuginfo__new(const char *path);
31extern struct debuginfo *debuginfo__new_online_kernel(unsigned long addr);
32extern void debuginfo__delete(struct debuginfo *self);
33
Srikar Dronamraju0e608362010-07-29 19:43:51 +053034/* Find probe_trace_events specified by perf_probe_event from debuginfo */
Masami Hiramatsuff741782011-06-27 16:27:39 +090035extern int debuginfo__find_trace_events(struct debuginfo *self,
36 struct perf_probe_event *pev,
37 struct probe_trace_event **tevs,
38 int max_tevs);
Masami Hiramatsu4235b042010-03-16 18:06:12 -040039
Masami Hiramatsufb1587d2010-03-16 18:06:19 -040040/* Find a perf_probe_point from debuginfo */
Masami Hiramatsuff741782011-06-27 16:27:39 +090041extern int debuginfo__find_probe_point(struct debuginfo *self,
42 unsigned long addr,
43 struct perf_probe_point *ppt);
Masami Hiramatsufb1587d2010-03-16 18:06:19 -040044
Masami Hiramatsucf6eb482010-10-21 19:13:23 +090045/* Find a line range */
Masami Hiramatsuff741782011-06-27 16:27:39 +090046extern int debuginfo__find_line_range(struct debuginfo *self,
47 struct line_range *lr);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040048
Masami Hiramatsucf6eb482010-10-21 19:13:23 +090049/* Find available variables */
Masami Hiramatsuff741782011-06-27 16:27:39 +090050extern int debuginfo__find_available_vars_at(struct debuginfo *self,
51 struct perf_probe_event *pev,
52 struct variable_list **vls,
53 int max_points, bool externs);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040054
55struct probe_finder {
Masami Hiramatsu4235b042010-03-16 18:06:12 -040056 struct perf_probe_event *pev; /* Target probe event */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +090057
58 /* Callback when a probe point is found */
Masami Hiramatsu221d0612011-08-11 20:02:59 +090059 int (*callback)(Dwarf_Die *sc_die, struct probe_finder *pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040060
61 /* For function searching */
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -030062 int lno; /* Line number */
Masami Hiramatsu804b3602010-02-25 08:35:42 -050063 Dwarf_Addr addr; /* Address */
Masami Hiramatsu4235b042010-03-16 18:06:12 -040064 const char *fname; /* Real file name */
Masami Hiramatsu804b3602010-02-25 08:35:42 -050065 Dwarf_Die cu_die; /* Current CU */
Lin Mingcd25f8b2011-03-25 16:27:48 +080066 Dwarf_Die sp_die;
Masami Hiramatsu4235b042010-03-16 18:06:12 -040067 struct list_head lcache; /* Line cache for lazy match */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040068
69 /* For variable searching */
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -040070#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -040071 Dwarf_CFI *cfi; /* Call Frame Information */
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -040072#endif
Masami Hiramatsu804b3602010-02-25 08:35:42 -050073 Dwarf_Op *fb_ops; /* Frame base attribute */
Masami Hiramatsu4235b042010-03-16 18:06:12 -040074 struct perf_probe_arg *pvar; /* Current target variable */
Srikar Dronamraju0e608362010-07-29 19:43:51 +053075 struct probe_trace_arg *tvar; /* Current result variable */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040076};
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050077
Masami Hiramatsucf6eb482010-10-21 19:13:23 +090078struct trace_event_finder {
79 struct probe_finder pf;
80 struct probe_trace_event *tevs; /* Found trace events */
81 int ntevs; /* Number of trace events */
82 int max_tevs; /* Max number of trace events */
83};
84
85struct available_var_finder {
86 struct probe_finder pf;
87 struct variable_list *vls; /* Found variable lists */
88 int nvls; /* Number of variable lists */
89 int max_vls; /* Max no. of variable lists */
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +090090 bool externs; /* Find external vars too */
91 bool child; /* Search child scopes */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +090092};
93
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050094struct line_finder {
Masami Hiramatsu804b3602010-02-25 08:35:42 -050095 struct line_range *lr; /* Target line range */
Masami Hiramatsu631c9de2010-01-06 09:45:34 -050096
Masami Hiramatsu804b3602010-02-25 08:35:42 -050097 const char *fname; /* File name */
98 int lno_s; /* Start line number */
99 int lno_e; /* End line number */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500100 Dwarf_Die cu_die; /* Current CU */
Lin Mingcd25f8b2011-03-25 16:27:48 +0800101 Dwarf_Die sp_die;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500102 int found;
103};
104
Masami Hiramatsu4b4da7f2010-03-22 13:10:26 -0300105#endif /* DWARF_SUPPORT */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400106
107#endif /*_PROBE_FINDER_H */