probe-finder.h 3.2 KB
Newer Older
1 2 3
#ifndef _PROBE_FINDER_H
#define _PROBE_FINDER_H

4
#include <stdbool.h>
5
#include "util.h"
6
#include "intlist.h"
7
#include "probe-event.h"
8

9 10
#define MAX_PROBE_BUFFER	1024
#define MAX_PROBES		 128
11
#define MAX_PROBE_ARGS		 128
12

13 14 15
#define PROBE_ARG_VARS		"$vars"
#define PROBE_ARG_PARAMS	"$params"

16 17 18 19 20 21
static inline int is_c_varname(const char *name)
{
	/* TODO */
	return isalpha(name[0]) || name[0] == '_';
}

22
#ifdef HAVE_DWARF_SUPPORT
23 24 25 26 27 28 29 30

#include "dwarf-aux.h"

/* TODO: export debuginfo data structure even if no dwarf support */

/* debug information structure */
struct debuginfo {
	Dwarf		*dbg;
31
	Dwfl_Module	*mod;
32 33 34 35
	Dwfl		*dwfl;
	Dwarf_Addr	bias;
};

36
/* This also tries to open distro debuginfo */
37 38
struct debuginfo *debuginfo__new(const char *path);
void debuginfo__delete(struct debuginfo *dbg);
39

40
/* Find probe_trace_events specified by perf_probe_event from debuginfo */
41 42 43
int debuginfo__find_trace_events(struct debuginfo *dbg,
				 struct perf_probe_event *pev,
				 struct probe_trace_event **tevs);
44

45
/* Find a perf_probe_point from debuginfo */
46 47
int debuginfo__find_probe_point(struct debuginfo *dbg, unsigned long addr,
				struct perf_probe_point *ppt);
48

49
/* Find a line range */
50
int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr);
51

52
/* Find available variables */
53 54 55
int debuginfo__find_available_vars_at(struct debuginfo *dbg,
				      struct perf_probe_event *pev,
				      struct variable_list **vls);
56

57 58 59 60
/* Find a src file from a DWARF tag path */
int get_real_path(const char *raw_path, const char *comp_dir,
			 char **new_path);

61
struct probe_finder {
62
	struct perf_probe_event	*pev;		/* Target probe event */
63 64

	/* Callback when a probe point is found */
65
	int (*callback)(Dwarf_Die *sc_die, struct probe_finder *pf);
66 67

	/* For function searching */
68
	int			lno;		/* Line number */
69
	Dwarf_Addr		addr;		/* Address */
70
	const char		*fname;		/* Real file name */
71
	Dwarf_Die		cu_die;		/* Current CU */
72
	Dwarf_Die		sp_die;
73
	struct intlist		*lcache;	/* Line cache for lazy match */
74 75

	/* For variable searching */
76
#if _ELFUTILS_PREREQ(0, 142)
77 78 79 80
	/* Call Frame Information from .eh_frame */
	Dwarf_CFI		*cfi_eh;
	/* Call Frame Information from .debug_frame */
	Dwarf_CFI		*cfi_dbg;
81
#endif
82
	Dwarf_Op		*fb_ops;	/* Frame base attribute */
83
	struct perf_probe_arg	*pvar;		/* Current target variable */
84
	struct probe_trace_arg	*tvar;		/* Current result variable */
85
};
86

87 88
struct trace_event_finder {
	struct probe_finder	pf;
89
	Dwfl_Module		*mod;		/* For solving symbols */
90 91 92 93 94 95 96
	struct probe_trace_event *tevs;		/* Found trace events */
	int			ntevs;		/* Number of trace events */
	int			max_tevs;	/* Max number of trace events */
};

struct available_var_finder {
	struct probe_finder	pf;
97
	Dwfl_Module		*mod;		/* For solving symbols */
98 99 100
	struct variable_list	*vls;		/* Found variable lists */
	int			nvls;		/* Number of variable lists */
	int			max_vls;	/* Max no. of variable lists */
101
	bool			child;		/* Search child scopes */
102 103
};

104
struct line_finder {
105 106 107 108 109 110
	struct line_range	*lr;		/* Target line range */

	const char		*fname;		/* File name */
	int			lno_s;		/* Start line number */
	int			lno_e;		/* End line number */
	Dwarf_Die		cu_die;		/* Current CU */
111
	Dwarf_Die		sp_die;
112 113 114
	int			found;
};

115
#endif /* HAVE_DWARF_SUPPORT */
116 117

#endif /*_PROBE_FINDER_H */