xref: /openbmc/linux/tools/perf/util/dwarf-aux.c (revision db0d2c6420eeb8fd669bac84d72f1ab828bbaa64)
1e0d153c6SMasami Hiramatsu /*
2e0d153c6SMasami Hiramatsu  * dwarf-aux.c : libdw auxiliary interfaces
3e0d153c6SMasami Hiramatsu  *
4e0d153c6SMasami Hiramatsu  * This program is free software; you can redistribute it and/or modify
5e0d153c6SMasami Hiramatsu  * it under the terms of the GNU General Public License as published by
6e0d153c6SMasami Hiramatsu  * the Free Software Foundation; either version 2 of the License, or
7e0d153c6SMasami Hiramatsu  * (at your option) any later version.
8e0d153c6SMasami Hiramatsu  *
9e0d153c6SMasami Hiramatsu  * This program is distributed in the hope that it will be useful,
10e0d153c6SMasami Hiramatsu  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11e0d153c6SMasami Hiramatsu  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12e0d153c6SMasami Hiramatsu  * GNU General Public License for more details.
13e0d153c6SMasami Hiramatsu  *
14e0d153c6SMasami Hiramatsu  * You should have received a copy of the GNU General Public License
15e0d153c6SMasami Hiramatsu  * along with this program; if not, write to the Free Software
16e0d153c6SMasami Hiramatsu  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17e0d153c6SMasami Hiramatsu  *
18e0d153c6SMasami Hiramatsu  */
19e0d153c6SMasami Hiramatsu 
20e0d153c6SMasami Hiramatsu #include <stdbool.h>
21e0d153c6SMasami Hiramatsu #include "util.h"
22e0d153c6SMasami Hiramatsu #include "debug.h"
23e0d153c6SMasami Hiramatsu #include "dwarf-aux.h"
24e0d153c6SMasami Hiramatsu 
25e0d153c6SMasami Hiramatsu /**
26e0d153c6SMasami Hiramatsu  * cu_find_realpath - Find the realpath of the target file
27e0d153c6SMasami Hiramatsu  * @cu_die: A DIE(dwarf information entry) of CU(compilation Unit)
28e0d153c6SMasami Hiramatsu  * @fname:  The tail filename of the target file
29e0d153c6SMasami Hiramatsu  *
30e0d153c6SMasami Hiramatsu  * Find the real(long) path of @fname in @cu_die.
31e0d153c6SMasami Hiramatsu  */
32e0d153c6SMasami Hiramatsu const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname)
33e0d153c6SMasami Hiramatsu {
34e0d153c6SMasami Hiramatsu 	Dwarf_Files *files;
35e0d153c6SMasami Hiramatsu 	size_t nfiles, i;
36e0d153c6SMasami Hiramatsu 	const char *src = NULL;
37e0d153c6SMasami Hiramatsu 	int ret;
38e0d153c6SMasami Hiramatsu 
39e0d153c6SMasami Hiramatsu 	if (!fname)
40e0d153c6SMasami Hiramatsu 		return NULL;
41e0d153c6SMasami Hiramatsu 
42e0d153c6SMasami Hiramatsu 	ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
43e0d153c6SMasami Hiramatsu 	if (ret != 0)
44e0d153c6SMasami Hiramatsu 		return NULL;
45e0d153c6SMasami Hiramatsu 
46e0d153c6SMasami Hiramatsu 	for (i = 0; i < nfiles; i++) {
47e0d153c6SMasami Hiramatsu 		src = dwarf_filesrc(files, i, NULL, NULL);
48e0d153c6SMasami Hiramatsu 		if (strtailcmp(src, fname) == 0)
49e0d153c6SMasami Hiramatsu 			break;
50e0d153c6SMasami Hiramatsu 	}
51e0d153c6SMasami Hiramatsu 	if (i == nfiles)
52e0d153c6SMasami Hiramatsu 		return NULL;
53e0d153c6SMasami Hiramatsu 	return src;
54e0d153c6SMasami Hiramatsu }
55e0d153c6SMasami Hiramatsu 
56e0d153c6SMasami Hiramatsu /**
57e0d153c6SMasami Hiramatsu  * cu_get_comp_dir - Get the path of compilation directory
58e0d153c6SMasami Hiramatsu  * @cu_die: a CU DIE
59e0d153c6SMasami Hiramatsu  *
60e0d153c6SMasami Hiramatsu  * Get the path of compilation directory of given @cu_die.
61e0d153c6SMasami Hiramatsu  * Since this depends on DW_AT_comp_dir, older gcc will not
62e0d153c6SMasami Hiramatsu  * embedded it. In that case, this returns NULL.
63e0d153c6SMasami Hiramatsu  */
64e0d153c6SMasami Hiramatsu const char *cu_get_comp_dir(Dwarf_Die *cu_die)
65e0d153c6SMasami Hiramatsu {
66e0d153c6SMasami Hiramatsu 	Dwarf_Attribute attr;
67e0d153c6SMasami Hiramatsu 	if (dwarf_attr(cu_die, DW_AT_comp_dir, &attr) == NULL)
68e0d153c6SMasami Hiramatsu 		return NULL;
69e0d153c6SMasami Hiramatsu 	return dwarf_formstring(&attr);
70e0d153c6SMasami Hiramatsu }
71e0d153c6SMasami Hiramatsu 
72e0d153c6SMasami Hiramatsu /**
73e0d153c6SMasami Hiramatsu  * cu_find_lineinfo - Get a line number and file name for given address
74e0d153c6SMasami Hiramatsu  * @cu_die: a CU DIE
75e0d153c6SMasami Hiramatsu  * @addr: An address
76e0d153c6SMasami Hiramatsu  * @fname: a pointer which returns the file name string
77e0d153c6SMasami Hiramatsu  * @lineno: a pointer which returns the line number
78e0d153c6SMasami Hiramatsu  *
79e0d153c6SMasami Hiramatsu  * Find a line number and file name for @addr in @cu_die.
80e0d153c6SMasami Hiramatsu  */
81e0d153c6SMasami Hiramatsu int cu_find_lineinfo(Dwarf_Die *cu_die, unsigned long addr,
82e0d153c6SMasami Hiramatsu 		    const char **fname, int *lineno)
83e0d153c6SMasami Hiramatsu {
84e0d153c6SMasami Hiramatsu 	Dwarf_Line *line;
85e0d153c6SMasami Hiramatsu 	Dwarf_Addr laddr;
86e0d153c6SMasami Hiramatsu 
87e0d153c6SMasami Hiramatsu 	line = dwarf_getsrc_die(cu_die, (Dwarf_Addr)addr);
88e0d153c6SMasami Hiramatsu 	if (line && dwarf_lineaddr(line, &laddr) == 0 &&
89e0d153c6SMasami Hiramatsu 	    addr == (unsigned long)laddr && dwarf_lineno(line, lineno) == 0) {
90e0d153c6SMasami Hiramatsu 		*fname = dwarf_linesrc(line, NULL, NULL);
91e0d153c6SMasami Hiramatsu 		if (!*fname)
92e0d153c6SMasami Hiramatsu 			/* line number is useless without filename */
93e0d153c6SMasami Hiramatsu 			*lineno = 0;
94e0d153c6SMasami Hiramatsu 	}
95e0d153c6SMasami Hiramatsu 
96e0d153c6SMasami Hiramatsu 	return *lineno ?: -ENOENT;
97e0d153c6SMasami Hiramatsu }
98e0d153c6SMasami Hiramatsu 
99221d0611SMasami Hiramatsu static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data);
100221d0611SMasami Hiramatsu 
101221d0611SMasami Hiramatsu /**
102221d0611SMasami Hiramatsu  * cu_walk_functions_at - Walk on function DIEs at given address
103221d0611SMasami Hiramatsu  * @cu_die: A CU DIE
104221d0611SMasami Hiramatsu  * @addr: An address
105221d0611SMasami Hiramatsu  * @callback: A callback which called with found DIEs
106221d0611SMasami Hiramatsu  * @data: A user data
107221d0611SMasami Hiramatsu  *
108221d0611SMasami Hiramatsu  * Walk on function DIEs at given @addr in @cu_die. Passed DIEs
109221d0611SMasami Hiramatsu  * should be subprogram or inlined-subroutines.
110221d0611SMasami Hiramatsu  */
111221d0611SMasami Hiramatsu int cu_walk_functions_at(Dwarf_Die *cu_die, Dwarf_Addr addr,
112221d0611SMasami Hiramatsu 		    int (*callback)(Dwarf_Die *, void *), void *data)
113221d0611SMasami Hiramatsu {
114221d0611SMasami Hiramatsu 	Dwarf_Die die_mem;
115221d0611SMasami Hiramatsu 	Dwarf_Die *sc_die;
116221d0611SMasami Hiramatsu 	int ret = -ENOENT;
117221d0611SMasami Hiramatsu 
118221d0611SMasami Hiramatsu 	/* Inlined function could be recursive. Trace it until fail */
119221d0611SMasami Hiramatsu 	for (sc_die = die_find_realfunc(cu_die, addr, &die_mem);
120221d0611SMasami Hiramatsu 	     sc_die != NULL;
121221d0611SMasami Hiramatsu 	     sc_die = die_find_child(sc_die, __die_find_inline_cb, &addr,
122221d0611SMasami Hiramatsu 				     &die_mem)) {
123221d0611SMasami Hiramatsu 		ret = callback(sc_die, data);
124221d0611SMasami Hiramatsu 		if (ret)
125221d0611SMasami Hiramatsu 			break;
126221d0611SMasami Hiramatsu 	}
127221d0611SMasami Hiramatsu 
128221d0611SMasami Hiramatsu 	return ret;
129221d0611SMasami Hiramatsu 
130221d0611SMasami Hiramatsu }
131221d0611SMasami Hiramatsu 
132e0d153c6SMasami Hiramatsu /**
133e0d153c6SMasami Hiramatsu  * die_compare_name - Compare diename and tname
134e0d153c6SMasami Hiramatsu  * @dw_die: a DIE
135e0d153c6SMasami Hiramatsu  * @tname: a string of target name
136e0d153c6SMasami Hiramatsu  *
137e0d153c6SMasami Hiramatsu  * Compare the name of @dw_die and @tname. Return false if @dw_die has no name.
138e0d153c6SMasami Hiramatsu  */
139e0d153c6SMasami Hiramatsu bool die_compare_name(Dwarf_Die *dw_die, const char *tname)
140e0d153c6SMasami Hiramatsu {
141e0d153c6SMasami Hiramatsu 	const char *name;
142e0d153c6SMasami Hiramatsu 	name = dwarf_diename(dw_die);
143e0d153c6SMasami Hiramatsu 	return name ? (strcmp(tname, name) == 0) : false;
144e0d153c6SMasami Hiramatsu }
145e0d153c6SMasami Hiramatsu 
146e0d153c6SMasami Hiramatsu /**
147e0d153c6SMasami Hiramatsu  * die_get_call_lineno - Get callsite line number of inline-function instance
148e0d153c6SMasami Hiramatsu  * @in_die: a DIE of an inlined function instance
149e0d153c6SMasami Hiramatsu  *
150e0d153c6SMasami Hiramatsu  * Get call-site line number of @in_die. This means from where the inline
151e0d153c6SMasami Hiramatsu  * function is called.
152e0d153c6SMasami Hiramatsu  */
153e0d153c6SMasami Hiramatsu int die_get_call_lineno(Dwarf_Die *in_die)
154e0d153c6SMasami Hiramatsu {
155e0d153c6SMasami Hiramatsu 	Dwarf_Attribute attr;
156e0d153c6SMasami Hiramatsu 	Dwarf_Word ret;
157e0d153c6SMasami Hiramatsu 
158e0d153c6SMasami Hiramatsu 	if (!dwarf_attr(in_die, DW_AT_call_line, &attr))
159e0d153c6SMasami Hiramatsu 		return -ENOENT;
160e0d153c6SMasami Hiramatsu 
161e0d153c6SMasami Hiramatsu 	dwarf_formudata(&attr, &ret);
162e0d153c6SMasami Hiramatsu 	return (int)ret;
163e0d153c6SMasami Hiramatsu }
164e0d153c6SMasami Hiramatsu 
165e0d153c6SMasami Hiramatsu /**
166e0d153c6SMasami Hiramatsu  * die_get_type - Get type DIE
167e0d153c6SMasami Hiramatsu  * @vr_die: a DIE of a variable
168e0d153c6SMasami Hiramatsu  * @die_mem: where to store a type DIE
169e0d153c6SMasami Hiramatsu  *
170e0d153c6SMasami Hiramatsu  * Get a DIE of the type of given variable (@vr_die), and store
171e0d153c6SMasami Hiramatsu  * it to die_mem. Return NULL if fails to get a type DIE.
172e0d153c6SMasami Hiramatsu  */
173e0d153c6SMasami Hiramatsu Dwarf_Die *die_get_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
174e0d153c6SMasami Hiramatsu {
175e0d153c6SMasami Hiramatsu 	Dwarf_Attribute attr;
176e0d153c6SMasami Hiramatsu 
177e0d153c6SMasami Hiramatsu 	if (dwarf_attr_integrate(vr_die, DW_AT_type, &attr) &&
178e0d153c6SMasami Hiramatsu 	    dwarf_formref_die(&attr, die_mem))
179e0d153c6SMasami Hiramatsu 		return die_mem;
180e0d153c6SMasami Hiramatsu 	else
181e0d153c6SMasami Hiramatsu 		return NULL;
182e0d153c6SMasami Hiramatsu }
183e0d153c6SMasami Hiramatsu 
184e0d153c6SMasami Hiramatsu /* Get a type die, but skip qualifiers */
185e0d153c6SMasami Hiramatsu static Dwarf_Die *__die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
186e0d153c6SMasami Hiramatsu {
187e0d153c6SMasami Hiramatsu 	int tag;
188e0d153c6SMasami Hiramatsu 
189e0d153c6SMasami Hiramatsu 	do {
190e0d153c6SMasami Hiramatsu 		vr_die = die_get_type(vr_die, die_mem);
191e0d153c6SMasami Hiramatsu 		if (!vr_die)
192e0d153c6SMasami Hiramatsu 			break;
193e0d153c6SMasami Hiramatsu 		tag = dwarf_tag(vr_die);
194e0d153c6SMasami Hiramatsu 	} while (tag == DW_TAG_const_type ||
195e0d153c6SMasami Hiramatsu 		 tag == DW_TAG_restrict_type ||
196e0d153c6SMasami Hiramatsu 		 tag == DW_TAG_volatile_type ||
197e0d153c6SMasami Hiramatsu 		 tag == DW_TAG_shared_type);
198e0d153c6SMasami Hiramatsu 
199e0d153c6SMasami Hiramatsu 	return vr_die;
200e0d153c6SMasami Hiramatsu }
201e0d153c6SMasami Hiramatsu 
202e0d153c6SMasami Hiramatsu /**
203e0d153c6SMasami Hiramatsu  * die_get_real_type - Get a type die, but skip qualifiers and typedef
204e0d153c6SMasami Hiramatsu  * @vr_die: a DIE of a variable
205e0d153c6SMasami Hiramatsu  * @die_mem: where to store a type DIE
206e0d153c6SMasami Hiramatsu  *
207e0d153c6SMasami Hiramatsu  * Get a DIE of the type of given variable (@vr_die), and store
208e0d153c6SMasami Hiramatsu  * it to die_mem. Return NULL if fails to get a type DIE.
209e0d153c6SMasami Hiramatsu  * If the type is qualifiers (e.g. const) or typedef, this skips it
210e0d153c6SMasami Hiramatsu  * and tries to find real type (structure or basic types, e.g. int).
211e0d153c6SMasami Hiramatsu  */
212e0d153c6SMasami Hiramatsu Dwarf_Die *die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
213e0d153c6SMasami Hiramatsu {
214e0d153c6SMasami Hiramatsu 	do {
215e0d153c6SMasami Hiramatsu 		vr_die = __die_get_real_type(vr_die, die_mem);
216e0d153c6SMasami Hiramatsu 	} while (vr_die && dwarf_tag(vr_die) == DW_TAG_typedef);
217e0d153c6SMasami Hiramatsu 
218e0d153c6SMasami Hiramatsu 	return vr_die;
219e0d153c6SMasami Hiramatsu }
220e0d153c6SMasami Hiramatsu 
221e0d153c6SMasami Hiramatsu /* Get attribute and translate it as a udata */
222e0d153c6SMasami Hiramatsu static int die_get_attr_udata(Dwarf_Die *tp_die, unsigned int attr_name,
223e0d153c6SMasami Hiramatsu 			      Dwarf_Word *result)
224e0d153c6SMasami Hiramatsu {
225e0d153c6SMasami Hiramatsu 	Dwarf_Attribute attr;
226e0d153c6SMasami Hiramatsu 
227e0d153c6SMasami Hiramatsu 	if (dwarf_attr(tp_die, attr_name, &attr) == NULL ||
228e0d153c6SMasami Hiramatsu 	    dwarf_formudata(&attr, result) != 0)
229e0d153c6SMasami Hiramatsu 		return -ENOENT;
230e0d153c6SMasami Hiramatsu 
231e0d153c6SMasami Hiramatsu 	return 0;
232e0d153c6SMasami Hiramatsu }
233e0d153c6SMasami Hiramatsu 
234b0e9cb28SMasami Hiramatsu /* Get attribute and translate it as a sdata */
235b0e9cb28SMasami Hiramatsu static int die_get_attr_sdata(Dwarf_Die *tp_die, unsigned int attr_name,
236b0e9cb28SMasami Hiramatsu 			      Dwarf_Sword *result)
237b0e9cb28SMasami Hiramatsu {
238b0e9cb28SMasami Hiramatsu 	Dwarf_Attribute attr;
239b0e9cb28SMasami Hiramatsu 
240b0e9cb28SMasami Hiramatsu 	if (dwarf_attr(tp_die, attr_name, &attr) == NULL ||
241b0e9cb28SMasami Hiramatsu 	    dwarf_formsdata(&attr, result) != 0)
242b0e9cb28SMasami Hiramatsu 		return -ENOENT;
243b0e9cb28SMasami Hiramatsu 
244b0e9cb28SMasami Hiramatsu 	return 0;
245b0e9cb28SMasami Hiramatsu }
246b0e9cb28SMasami Hiramatsu 
247e0d153c6SMasami Hiramatsu /**
248e0d153c6SMasami Hiramatsu  * die_is_signed_type - Check whether a type DIE is signed or not
249e0d153c6SMasami Hiramatsu  * @tp_die: a DIE of a type
250e0d153c6SMasami Hiramatsu  *
251e0d153c6SMasami Hiramatsu  * Get the encoding of @tp_die and return true if the encoding
252e0d153c6SMasami Hiramatsu  * is signed.
253e0d153c6SMasami Hiramatsu  */
254e0d153c6SMasami Hiramatsu bool die_is_signed_type(Dwarf_Die *tp_die)
255e0d153c6SMasami Hiramatsu {
256e0d153c6SMasami Hiramatsu 	Dwarf_Word ret;
257e0d153c6SMasami Hiramatsu 
258e0d153c6SMasami Hiramatsu 	if (die_get_attr_udata(tp_die, DW_AT_encoding, &ret))
259e0d153c6SMasami Hiramatsu 		return false;
260e0d153c6SMasami Hiramatsu 
261e0d153c6SMasami Hiramatsu 	return (ret == DW_ATE_signed_char || ret == DW_ATE_signed ||
262e0d153c6SMasami Hiramatsu 		ret == DW_ATE_signed_fixed);
263e0d153c6SMasami Hiramatsu }
264e0d153c6SMasami Hiramatsu 
265e0d153c6SMasami Hiramatsu /**
266e0d153c6SMasami Hiramatsu  * die_get_data_member_location - Get the data-member offset
267e0d153c6SMasami Hiramatsu  * @mb_die: a DIE of a member of a data structure
268e0d153c6SMasami Hiramatsu  * @offs: The offset of the member in the data structure
269e0d153c6SMasami Hiramatsu  *
270e0d153c6SMasami Hiramatsu  * Get the offset of @mb_die in the data structure including @mb_die, and
271e0d153c6SMasami Hiramatsu  * stores result offset to @offs. If any error occurs this returns errno.
272e0d153c6SMasami Hiramatsu  */
273e0d153c6SMasami Hiramatsu int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs)
274e0d153c6SMasami Hiramatsu {
275e0d153c6SMasami Hiramatsu 	Dwarf_Attribute attr;
276e0d153c6SMasami Hiramatsu 	Dwarf_Op *expr;
277e0d153c6SMasami Hiramatsu 	size_t nexpr;
278e0d153c6SMasami Hiramatsu 	int ret;
279e0d153c6SMasami Hiramatsu 
280e0d153c6SMasami Hiramatsu 	if (dwarf_attr(mb_die, DW_AT_data_member_location, &attr) == NULL)
281e0d153c6SMasami Hiramatsu 		return -ENOENT;
282e0d153c6SMasami Hiramatsu 
283e0d153c6SMasami Hiramatsu 	if (dwarf_formudata(&attr, offs) != 0) {
284e0d153c6SMasami Hiramatsu 		/* DW_AT_data_member_location should be DW_OP_plus_uconst */
285e0d153c6SMasami Hiramatsu 		ret = dwarf_getlocation(&attr, &expr, &nexpr);
286e0d153c6SMasami Hiramatsu 		if (ret < 0 || nexpr == 0)
287e0d153c6SMasami Hiramatsu 			return -ENOENT;
288e0d153c6SMasami Hiramatsu 
289e0d153c6SMasami Hiramatsu 		if (expr[0].atom != DW_OP_plus_uconst || nexpr != 1) {
290e0d153c6SMasami Hiramatsu 			pr_debug("Unable to get offset:Unexpected OP %x (%zd)\n",
291e0d153c6SMasami Hiramatsu 				 expr[0].atom, nexpr);
292e0d153c6SMasami Hiramatsu 			return -ENOTSUP;
293e0d153c6SMasami Hiramatsu 		}
294e0d153c6SMasami Hiramatsu 		*offs = (Dwarf_Word)expr[0].number;
295e0d153c6SMasami Hiramatsu 	}
296e0d153c6SMasami Hiramatsu 	return 0;
297e0d153c6SMasami Hiramatsu }
298e0d153c6SMasami Hiramatsu 
299b0e9cb28SMasami Hiramatsu /* Get the call file index number in CU DIE */
300b0e9cb28SMasami Hiramatsu static int die_get_call_fileno(Dwarf_Die *in_die)
301b0e9cb28SMasami Hiramatsu {
302b0e9cb28SMasami Hiramatsu 	Dwarf_Sword idx;
303b0e9cb28SMasami Hiramatsu 
304b0e9cb28SMasami Hiramatsu 	if (die_get_attr_sdata(in_die, DW_AT_call_file, &idx) == 0)
305b0e9cb28SMasami Hiramatsu 		return (int)idx;
306b0e9cb28SMasami Hiramatsu 	else
307b0e9cb28SMasami Hiramatsu 		return -ENOENT;
308b0e9cb28SMasami Hiramatsu }
309b0e9cb28SMasami Hiramatsu 
310b0e9cb28SMasami Hiramatsu /**
311b0e9cb28SMasami Hiramatsu  * die_get_call_file - Get callsite file name of inlined function instance
312b0e9cb28SMasami Hiramatsu  * @in_die: a DIE of an inlined function instance
313b0e9cb28SMasami Hiramatsu  *
314b0e9cb28SMasami Hiramatsu  * Get call-site file name of @in_die. This means from which file the inline
315b0e9cb28SMasami Hiramatsu  * function is called.
316b0e9cb28SMasami Hiramatsu  */
317b0e9cb28SMasami Hiramatsu const char *die_get_call_file(Dwarf_Die *in_die)
318b0e9cb28SMasami Hiramatsu {
319b0e9cb28SMasami Hiramatsu 	Dwarf_Die cu_die;
320b0e9cb28SMasami Hiramatsu 	Dwarf_Files *files;
321b0e9cb28SMasami Hiramatsu 	int idx;
322b0e9cb28SMasami Hiramatsu 
323b0e9cb28SMasami Hiramatsu 	idx = die_get_call_fileno(in_die);
324b0e9cb28SMasami Hiramatsu 	if (idx < 0 || !dwarf_diecu(in_die, &cu_die, NULL, NULL) ||
325b0e9cb28SMasami Hiramatsu 	    dwarf_getsrcfiles(&cu_die, &files, NULL) != 0)
326b0e9cb28SMasami Hiramatsu 		return NULL;
327b0e9cb28SMasami Hiramatsu 
328b0e9cb28SMasami Hiramatsu 	return dwarf_filesrc(files, idx, NULL, NULL);
329b0e9cb28SMasami Hiramatsu }
330b0e9cb28SMasami Hiramatsu 
331b0e9cb28SMasami Hiramatsu 
332e0d153c6SMasami Hiramatsu /**
333e0d153c6SMasami Hiramatsu  * die_find_child - Generic DIE search function in DIE tree
334e0d153c6SMasami Hiramatsu  * @rt_die: a root DIE
335e0d153c6SMasami Hiramatsu  * @callback: a callback function
336e0d153c6SMasami Hiramatsu  * @data: a user data passed to the callback function
337e0d153c6SMasami Hiramatsu  * @die_mem: a buffer for result DIE
338e0d153c6SMasami Hiramatsu  *
339e0d153c6SMasami Hiramatsu  * Trace DIE tree from @rt_die and call @callback for each child DIE.
340e0d153c6SMasami Hiramatsu  * If @callback returns DIE_FIND_CB_END, this stores the DIE into
341e0d153c6SMasami Hiramatsu  * @die_mem and returns it. If @callback returns DIE_FIND_CB_CONTINUE,
342e0d153c6SMasami Hiramatsu  * this continues to trace the tree. Optionally, @callback can return
343e0d153c6SMasami Hiramatsu  * DIE_FIND_CB_CHILD and DIE_FIND_CB_SIBLING, those means trace only
344e0d153c6SMasami Hiramatsu  * the children and trace only the siblings respectively.
345e0d153c6SMasami Hiramatsu  * Returns NULL if @callback can't find any appropriate DIE.
346e0d153c6SMasami Hiramatsu  */
347e0d153c6SMasami Hiramatsu Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
348e0d153c6SMasami Hiramatsu 			  int (*callback)(Dwarf_Die *, void *),
349e0d153c6SMasami Hiramatsu 			  void *data, Dwarf_Die *die_mem)
350e0d153c6SMasami Hiramatsu {
351e0d153c6SMasami Hiramatsu 	Dwarf_Die child_die;
352e0d153c6SMasami Hiramatsu 	int ret;
353e0d153c6SMasami Hiramatsu 
354e0d153c6SMasami Hiramatsu 	ret = dwarf_child(rt_die, die_mem);
355e0d153c6SMasami Hiramatsu 	if (ret != 0)
356e0d153c6SMasami Hiramatsu 		return NULL;
357e0d153c6SMasami Hiramatsu 
358e0d153c6SMasami Hiramatsu 	do {
359e0d153c6SMasami Hiramatsu 		ret = callback(die_mem, data);
360e0d153c6SMasami Hiramatsu 		if (ret == DIE_FIND_CB_END)
361e0d153c6SMasami Hiramatsu 			return die_mem;
362e0d153c6SMasami Hiramatsu 
363e0d153c6SMasami Hiramatsu 		if ((ret & DIE_FIND_CB_CHILD) &&
364e0d153c6SMasami Hiramatsu 		    die_find_child(die_mem, callback, data, &child_die)) {
365e0d153c6SMasami Hiramatsu 			memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
366e0d153c6SMasami Hiramatsu 			return die_mem;
367e0d153c6SMasami Hiramatsu 		}
368e0d153c6SMasami Hiramatsu 	} while ((ret & DIE_FIND_CB_SIBLING) &&
369e0d153c6SMasami Hiramatsu 		 dwarf_siblingof(die_mem, die_mem) == 0);
370e0d153c6SMasami Hiramatsu 
371e0d153c6SMasami Hiramatsu 	return NULL;
372e0d153c6SMasami Hiramatsu }
373e0d153c6SMasami Hiramatsu 
374e0d153c6SMasami Hiramatsu struct __addr_die_search_param {
375e0d153c6SMasami Hiramatsu 	Dwarf_Addr	addr;
376e0d153c6SMasami Hiramatsu 	Dwarf_Die	*die_mem;
377e0d153c6SMasami Hiramatsu };
378e0d153c6SMasami Hiramatsu 
379e0d153c6SMasami Hiramatsu /* die_find callback for non-inlined function search */
380e0d153c6SMasami Hiramatsu static int __die_search_func_cb(Dwarf_Die *fn_die, void *data)
381e0d153c6SMasami Hiramatsu {
382e0d153c6SMasami Hiramatsu 	struct __addr_die_search_param *ad = data;
383e0d153c6SMasami Hiramatsu 
384e0d153c6SMasami Hiramatsu 	if (dwarf_tag(fn_die) == DW_TAG_subprogram &&
385e0d153c6SMasami Hiramatsu 	    dwarf_haspc(fn_die, ad->addr)) {
386e0d153c6SMasami Hiramatsu 		memcpy(ad->die_mem, fn_die, sizeof(Dwarf_Die));
387e0d153c6SMasami Hiramatsu 		return DWARF_CB_ABORT;
388e0d153c6SMasami Hiramatsu 	}
389e0d153c6SMasami Hiramatsu 	return DWARF_CB_OK;
390e0d153c6SMasami Hiramatsu }
391e0d153c6SMasami Hiramatsu 
392e0d153c6SMasami Hiramatsu /**
393e0d153c6SMasami Hiramatsu  * die_find_realfunc - Search a non-inlined function at given address
394e0d153c6SMasami Hiramatsu  * @cu_die: a CU DIE which including @addr
395e0d153c6SMasami Hiramatsu  * @addr: target address
396e0d153c6SMasami Hiramatsu  * @die_mem: a buffer for result DIE
397e0d153c6SMasami Hiramatsu  *
398e0d153c6SMasami Hiramatsu  * Search a non-inlined function DIE which includes @addr. Stores the
399e0d153c6SMasami Hiramatsu  * DIE to @die_mem and returns it if found. Returns NULl if failed.
400e0d153c6SMasami Hiramatsu  */
401e0d153c6SMasami Hiramatsu Dwarf_Die *die_find_realfunc(Dwarf_Die *cu_die, Dwarf_Addr addr,
402e0d153c6SMasami Hiramatsu 				    Dwarf_Die *die_mem)
403e0d153c6SMasami Hiramatsu {
404e0d153c6SMasami Hiramatsu 	struct __addr_die_search_param ad;
405e0d153c6SMasami Hiramatsu 	ad.addr = addr;
406e0d153c6SMasami Hiramatsu 	ad.die_mem = die_mem;
407e0d153c6SMasami Hiramatsu 	/* dwarf_getscopes can't find subprogram. */
408e0d153c6SMasami Hiramatsu 	if (!dwarf_getfuncs(cu_die, __die_search_func_cb, &ad, 0))
409e0d153c6SMasami Hiramatsu 		return NULL;
410e0d153c6SMasami Hiramatsu 	else
411e0d153c6SMasami Hiramatsu 		return die_mem;
412e0d153c6SMasami Hiramatsu }
413e0d153c6SMasami Hiramatsu 
414e0d153c6SMasami Hiramatsu /* die_find callback for inline function search */
415e0d153c6SMasami Hiramatsu static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data)
416e0d153c6SMasami Hiramatsu {
417e0d153c6SMasami Hiramatsu 	Dwarf_Addr *addr = data;
418e0d153c6SMasami Hiramatsu 
419e0d153c6SMasami Hiramatsu 	if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
420e0d153c6SMasami Hiramatsu 	    dwarf_haspc(die_mem, *addr))
421e0d153c6SMasami Hiramatsu 		return DIE_FIND_CB_END;
422e0d153c6SMasami Hiramatsu 
423e0d153c6SMasami Hiramatsu 	return DIE_FIND_CB_CONTINUE;
424e0d153c6SMasami Hiramatsu }
425e0d153c6SMasami Hiramatsu 
426e0d153c6SMasami Hiramatsu /**
427e0d153c6SMasami Hiramatsu  * die_find_inlinefunc - Search an inlined function at given address
428e0d153c6SMasami Hiramatsu  * @cu_die: a CU DIE which including @addr
429e0d153c6SMasami Hiramatsu  * @addr: target address
430e0d153c6SMasami Hiramatsu  * @die_mem: a buffer for result DIE
431e0d153c6SMasami Hiramatsu  *
432e0d153c6SMasami Hiramatsu  * Search an inlined function DIE which includes @addr. Stores the
433e0d153c6SMasami Hiramatsu  * DIE to @die_mem and returns it if found. Returns NULl if failed.
434e0d153c6SMasami Hiramatsu  * If several inlined functions are expanded recursively, this trace
435e0d153c6SMasami Hiramatsu  * it and returns deepest one.
436e0d153c6SMasami Hiramatsu  */
437e0d153c6SMasami Hiramatsu Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
438e0d153c6SMasami Hiramatsu 			       Dwarf_Die *die_mem)
439e0d153c6SMasami Hiramatsu {
440e0d153c6SMasami Hiramatsu 	Dwarf_Die tmp_die;
441e0d153c6SMasami Hiramatsu 
442e0d153c6SMasami Hiramatsu 	sp_die = die_find_child(sp_die, __die_find_inline_cb, &addr, &tmp_die);
443e0d153c6SMasami Hiramatsu 	if (!sp_die)
444e0d153c6SMasami Hiramatsu 		return NULL;
445e0d153c6SMasami Hiramatsu 
446e0d153c6SMasami Hiramatsu 	/* Inlined function could be recursive. Trace it until fail */
447e0d153c6SMasami Hiramatsu 	while (sp_die) {
448e0d153c6SMasami Hiramatsu 		memcpy(die_mem, sp_die, sizeof(Dwarf_Die));
449e0d153c6SMasami Hiramatsu 		sp_die = die_find_child(sp_die, __die_find_inline_cb, &addr,
450e0d153c6SMasami Hiramatsu 					&tmp_die);
451e0d153c6SMasami Hiramatsu 	}
452e0d153c6SMasami Hiramatsu 
453e0d153c6SMasami Hiramatsu 	return die_mem;
454e0d153c6SMasami Hiramatsu }
455e0d153c6SMasami Hiramatsu 
456*db0d2c64SMasami Hiramatsu struct __instance_walk_param {
457*db0d2c64SMasami Hiramatsu 	void    *addr;
458*db0d2c64SMasami Hiramatsu 	int	(*callback)(Dwarf_Die *, void *);
459*db0d2c64SMasami Hiramatsu 	void    *data;
460*db0d2c64SMasami Hiramatsu 	int	retval;
461*db0d2c64SMasami Hiramatsu };
462*db0d2c64SMasami Hiramatsu 
463*db0d2c64SMasami Hiramatsu static int __die_walk_instances_cb(Dwarf_Die *inst, void *data)
464*db0d2c64SMasami Hiramatsu {
465*db0d2c64SMasami Hiramatsu 	struct __instance_walk_param *iwp = data;
466*db0d2c64SMasami Hiramatsu 	Dwarf_Attribute attr_mem;
467*db0d2c64SMasami Hiramatsu 	Dwarf_Die origin_mem;
468*db0d2c64SMasami Hiramatsu 	Dwarf_Attribute *attr;
469*db0d2c64SMasami Hiramatsu 	Dwarf_Die *origin;
470*db0d2c64SMasami Hiramatsu 
471*db0d2c64SMasami Hiramatsu 	attr = dwarf_attr(inst, DW_AT_abstract_origin, &attr_mem);
472*db0d2c64SMasami Hiramatsu 	if (attr == NULL)
473*db0d2c64SMasami Hiramatsu 		return DIE_FIND_CB_CONTINUE;
474*db0d2c64SMasami Hiramatsu 
475*db0d2c64SMasami Hiramatsu 	origin = dwarf_formref_die(attr, &origin_mem);
476*db0d2c64SMasami Hiramatsu 	if (origin == NULL || origin->addr != iwp->addr)
477*db0d2c64SMasami Hiramatsu 		return DIE_FIND_CB_CONTINUE;
478*db0d2c64SMasami Hiramatsu 
479*db0d2c64SMasami Hiramatsu 	iwp->retval = iwp->callback(inst, iwp->data);
480*db0d2c64SMasami Hiramatsu 
481*db0d2c64SMasami Hiramatsu 	return (iwp->retval) ? DIE_FIND_CB_END : DIE_FIND_CB_CONTINUE;
482*db0d2c64SMasami Hiramatsu }
483*db0d2c64SMasami Hiramatsu 
484*db0d2c64SMasami Hiramatsu /**
485*db0d2c64SMasami Hiramatsu  * die_walk_instances - Walk on instances of given DIE
486*db0d2c64SMasami Hiramatsu  * @or_die: an abstract original DIE
487*db0d2c64SMasami Hiramatsu  * @callback: a callback function which is called with instance DIE
488*db0d2c64SMasami Hiramatsu  * @data: user data
489*db0d2c64SMasami Hiramatsu  *
490*db0d2c64SMasami Hiramatsu  * Walk on the instances of give @in_die. @in_die must be an inlined function
491*db0d2c64SMasami Hiramatsu  * declartion. This returns the return value of @callback if it returns
492*db0d2c64SMasami Hiramatsu  * non-zero value, or -ENOENT if there is no instance.
493*db0d2c64SMasami Hiramatsu  */
494*db0d2c64SMasami Hiramatsu int die_walk_instances(Dwarf_Die *or_die, int (*callback)(Dwarf_Die *, void *),
495*db0d2c64SMasami Hiramatsu 		       void *data)
496*db0d2c64SMasami Hiramatsu {
497*db0d2c64SMasami Hiramatsu 	Dwarf_Die cu_die;
498*db0d2c64SMasami Hiramatsu 	Dwarf_Die die_mem;
499*db0d2c64SMasami Hiramatsu 	struct __instance_walk_param iwp = {
500*db0d2c64SMasami Hiramatsu 		.addr = or_die->addr,
501*db0d2c64SMasami Hiramatsu 		.callback = callback,
502*db0d2c64SMasami Hiramatsu 		.data = data,
503*db0d2c64SMasami Hiramatsu 		.retval = -ENOENT,
504*db0d2c64SMasami Hiramatsu 	};
505*db0d2c64SMasami Hiramatsu 
506*db0d2c64SMasami Hiramatsu 	if (dwarf_diecu(or_die, &cu_die, NULL, NULL) == NULL)
507*db0d2c64SMasami Hiramatsu 		return -ENOENT;
508*db0d2c64SMasami Hiramatsu 
509*db0d2c64SMasami Hiramatsu 	die_find_child(&cu_die, __die_walk_instances_cb, &iwp, &die_mem);
510*db0d2c64SMasami Hiramatsu 
511*db0d2c64SMasami Hiramatsu 	return iwp.retval;
512*db0d2c64SMasami Hiramatsu }
513*db0d2c64SMasami Hiramatsu 
514e0d153c6SMasami Hiramatsu /* Line walker internal parameters */
515e0d153c6SMasami Hiramatsu struct __line_walk_param {
516b0e9cb28SMasami Hiramatsu 	bool recursive;
517e0d153c6SMasami Hiramatsu 	line_walk_callback_t callback;
518e0d153c6SMasami Hiramatsu 	void *data;
519e0d153c6SMasami Hiramatsu 	int retval;
520e0d153c6SMasami Hiramatsu };
521e0d153c6SMasami Hiramatsu 
522e0d153c6SMasami Hiramatsu static int __die_walk_funclines_cb(Dwarf_Die *in_die, void *data)
523e0d153c6SMasami Hiramatsu {
524e0d153c6SMasami Hiramatsu 	struct __line_walk_param *lw = data;
525b0e9cb28SMasami Hiramatsu 	Dwarf_Addr addr = 0;
526b0e9cb28SMasami Hiramatsu 	const char *fname;
527e0d153c6SMasami Hiramatsu 	int lineno;
528e0d153c6SMasami Hiramatsu 
529e0d153c6SMasami Hiramatsu 	if (dwarf_tag(in_die) == DW_TAG_inlined_subroutine) {
530b0e9cb28SMasami Hiramatsu 		fname = die_get_call_file(in_die);
531e0d153c6SMasami Hiramatsu 		lineno = die_get_call_lineno(in_die);
532b0e9cb28SMasami Hiramatsu 		if (fname && lineno > 0 && dwarf_entrypc(in_die, &addr) == 0) {
533b0e9cb28SMasami Hiramatsu 			lw->retval = lw->callback(fname, lineno, addr, lw->data);
534e0d153c6SMasami Hiramatsu 			if (lw->retval != 0)
535e0d153c6SMasami Hiramatsu 				return DIE_FIND_CB_END;
536e0d153c6SMasami Hiramatsu 		}
537e0d153c6SMasami Hiramatsu 	}
538b0e9cb28SMasami Hiramatsu 	if (!lw->recursive)
539b0e9cb28SMasami Hiramatsu 		/* Don't need to search recursively */
540e0d153c6SMasami Hiramatsu 		return DIE_FIND_CB_SIBLING;
541b0e9cb28SMasami Hiramatsu 
542b0e9cb28SMasami Hiramatsu 	if (addr) {
543b0e9cb28SMasami Hiramatsu 		fname = dwarf_decl_file(in_die);
544b0e9cb28SMasami Hiramatsu 		if (fname && dwarf_decl_line(in_die, &lineno) == 0) {
545b0e9cb28SMasami Hiramatsu 			lw->retval = lw->callback(fname, lineno, addr, lw->data);
546b0e9cb28SMasami Hiramatsu 			if (lw->retval != 0)
547b0e9cb28SMasami Hiramatsu 				return DIE_FIND_CB_END;
548b0e9cb28SMasami Hiramatsu 		}
549b0e9cb28SMasami Hiramatsu 	}
550b0e9cb28SMasami Hiramatsu 
551b0e9cb28SMasami Hiramatsu 	/* Continue to search nested inlined function call-sites */
552b0e9cb28SMasami Hiramatsu 	return DIE_FIND_CB_CONTINUE;
553e0d153c6SMasami Hiramatsu }
554e0d153c6SMasami Hiramatsu 
555e0d153c6SMasami Hiramatsu /* Walk on lines of blocks included in given DIE */
556b0e9cb28SMasami Hiramatsu static int __die_walk_funclines(Dwarf_Die *sp_die, bool recursive,
557e0d153c6SMasami Hiramatsu 				line_walk_callback_t callback, void *data)
558e0d153c6SMasami Hiramatsu {
559e0d153c6SMasami Hiramatsu 	struct __line_walk_param lw = {
560b0e9cb28SMasami Hiramatsu 		.recursive = recursive,
561e0d153c6SMasami Hiramatsu 		.callback = callback,
562e0d153c6SMasami Hiramatsu 		.data = data,
563e0d153c6SMasami Hiramatsu 		.retval = 0,
564e0d153c6SMasami Hiramatsu 	};
565e0d153c6SMasami Hiramatsu 	Dwarf_Die die_mem;
566e0d153c6SMasami Hiramatsu 	Dwarf_Addr addr;
567b0e9cb28SMasami Hiramatsu 	const char *fname;
568e0d153c6SMasami Hiramatsu 	int lineno;
569e0d153c6SMasami Hiramatsu 
570e0d153c6SMasami Hiramatsu 	/* Handle function declaration line */
571b0e9cb28SMasami Hiramatsu 	fname = dwarf_decl_file(sp_die);
572b0e9cb28SMasami Hiramatsu 	if (fname && dwarf_decl_line(sp_die, &lineno) == 0 &&
573e0d153c6SMasami Hiramatsu 	    dwarf_entrypc(sp_die, &addr) == 0) {
574b0e9cb28SMasami Hiramatsu 		lw.retval = callback(fname, lineno, addr, data);
575e0d153c6SMasami Hiramatsu 		if (lw.retval != 0)
576e0d153c6SMasami Hiramatsu 			goto done;
577e0d153c6SMasami Hiramatsu 	}
578e0d153c6SMasami Hiramatsu 	die_find_child(sp_die, __die_walk_funclines_cb, &lw, &die_mem);
579e0d153c6SMasami Hiramatsu done:
580e0d153c6SMasami Hiramatsu 	return lw.retval;
581e0d153c6SMasami Hiramatsu }
582e0d153c6SMasami Hiramatsu 
583e0d153c6SMasami Hiramatsu static int __die_walk_culines_cb(Dwarf_Die *sp_die, void *data)
584e0d153c6SMasami Hiramatsu {
585e0d153c6SMasami Hiramatsu 	struct __line_walk_param *lw = data;
586e0d153c6SMasami Hiramatsu 
587b0e9cb28SMasami Hiramatsu 	lw->retval = __die_walk_funclines(sp_die, true, lw->callback, lw->data);
588e0d153c6SMasami Hiramatsu 	if (lw->retval != 0)
589e0d153c6SMasami Hiramatsu 		return DWARF_CB_ABORT;
590e0d153c6SMasami Hiramatsu 
591e0d153c6SMasami Hiramatsu 	return DWARF_CB_OK;
592e0d153c6SMasami Hiramatsu }
593e0d153c6SMasami Hiramatsu 
594e0d153c6SMasami Hiramatsu /**
595e0d153c6SMasami Hiramatsu  * die_walk_lines - Walk on lines inside given DIE
596a128405cSMasami Hiramatsu  * @rt_die: a root DIE (CU, subprogram or inlined_subroutine)
597e0d153c6SMasami Hiramatsu  * @callback: callback routine
598e0d153c6SMasami Hiramatsu  * @data: user data
599e0d153c6SMasami Hiramatsu  *
600e0d153c6SMasami Hiramatsu  * Walk on all lines inside given @rt_die and call @callback on each line.
601e0d153c6SMasami Hiramatsu  * If the @rt_die is a function, walk only on the lines inside the function,
602e0d153c6SMasami Hiramatsu  * otherwise @rt_die must be a CU DIE.
603e0d153c6SMasami Hiramatsu  * Note that this walks not only dwarf line list, but also function entries
604e0d153c6SMasami Hiramatsu  * and inline call-site.
605e0d153c6SMasami Hiramatsu  */
606e0d153c6SMasami Hiramatsu int die_walk_lines(Dwarf_Die *rt_die, line_walk_callback_t callback, void *data)
607e0d153c6SMasami Hiramatsu {
608e0d153c6SMasami Hiramatsu 	Dwarf_Lines *lines;
609e0d153c6SMasami Hiramatsu 	Dwarf_Line *line;
610e0d153c6SMasami Hiramatsu 	Dwarf_Addr addr;
611e0d153c6SMasami Hiramatsu 	const char *fname;
612e0d153c6SMasami Hiramatsu 	int lineno, ret = 0;
613e0d153c6SMasami Hiramatsu 	Dwarf_Die die_mem, *cu_die;
614e0d153c6SMasami Hiramatsu 	size_t nlines, i;
615e0d153c6SMasami Hiramatsu 
616e0d153c6SMasami Hiramatsu 	/* Get the CU die */
617a128405cSMasami Hiramatsu 	if (dwarf_tag(rt_die) != DW_TAG_compile_unit)
618e0d153c6SMasami Hiramatsu 		cu_die = dwarf_diecu(rt_die, &die_mem, NULL, NULL);
619e0d153c6SMasami Hiramatsu 	else
620e0d153c6SMasami Hiramatsu 		cu_die = rt_die;
621e0d153c6SMasami Hiramatsu 	if (!cu_die) {
622a128405cSMasami Hiramatsu 		pr_debug2("Failed to get CU from given DIE.\n");
623e0d153c6SMasami Hiramatsu 		return -EINVAL;
624e0d153c6SMasami Hiramatsu 	}
625e0d153c6SMasami Hiramatsu 
626e0d153c6SMasami Hiramatsu 	/* Get lines list in the CU */
627e0d153c6SMasami Hiramatsu 	if (dwarf_getsrclines(cu_die, &lines, &nlines) != 0) {
628e0d153c6SMasami Hiramatsu 		pr_debug2("Failed to get source lines on this CU.\n");
629e0d153c6SMasami Hiramatsu 		return -ENOENT;
630e0d153c6SMasami Hiramatsu 	}
631e0d153c6SMasami Hiramatsu 	pr_debug2("Get %zd lines from this CU\n", nlines);
632e0d153c6SMasami Hiramatsu 
633e0d153c6SMasami Hiramatsu 	/* Walk on the lines on lines list */
634e0d153c6SMasami Hiramatsu 	for (i = 0; i < nlines; i++) {
635e0d153c6SMasami Hiramatsu 		line = dwarf_onesrcline(lines, i);
636e0d153c6SMasami Hiramatsu 		if (line == NULL ||
637e0d153c6SMasami Hiramatsu 		    dwarf_lineno(line, &lineno) != 0 ||
638e0d153c6SMasami Hiramatsu 		    dwarf_lineaddr(line, &addr) != 0) {
639e0d153c6SMasami Hiramatsu 			pr_debug2("Failed to get line info. "
640e0d153c6SMasami Hiramatsu 				  "Possible error in debuginfo.\n");
641e0d153c6SMasami Hiramatsu 			continue;
642e0d153c6SMasami Hiramatsu 		}
643e0d153c6SMasami Hiramatsu 		/* Filter lines based on address */
644e0d153c6SMasami Hiramatsu 		if (rt_die != cu_die)
645e0d153c6SMasami Hiramatsu 			/*
646e0d153c6SMasami Hiramatsu 			 * Address filtering
647e0d153c6SMasami Hiramatsu 			 * The line is included in given function, and
648e0d153c6SMasami Hiramatsu 			 * no inline block includes it.
649e0d153c6SMasami Hiramatsu 			 */
650e0d153c6SMasami Hiramatsu 			if (!dwarf_haspc(rt_die, addr) ||
651e0d153c6SMasami Hiramatsu 			    die_find_inlinefunc(rt_die, addr, &die_mem))
652e0d153c6SMasami Hiramatsu 				continue;
653e0d153c6SMasami Hiramatsu 		/* Get source line */
654e0d153c6SMasami Hiramatsu 		fname = dwarf_linesrc(line, NULL, NULL);
655e0d153c6SMasami Hiramatsu 
656e0d153c6SMasami Hiramatsu 		ret = callback(fname, lineno, addr, data);
657e0d153c6SMasami Hiramatsu 		if (ret != 0)
658e0d153c6SMasami Hiramatsu 			return ret;
659e0d153c6SMasami Hiramatsu 	}
660e0d153c6SMasami Hiramatsu 
661e0d153c6SMasami Hiramatsu 	/*
662e0d153c6SMasami Hiramatsu 	 * Dwarf lines doesn't include function declarations and inlined
663e0d153c6SMasami Hiramatsu 	 * subroutines. We have to check functions list or given function.
664e0d153c6SMasami Hiramatsu 	 */
665e0d153c6SMasami Hiramatsu 	if (rt_die != cu_die)
666b0e9cb28SMasami Hiramatsu 		/*
667b0e9cb28SMasami Hiramatsu 		 * Don't need walk functions recursively, because nested
668b0e9cb28SMasami Hiramatsu 		 * inlined functions don't have lines of the specified DIE.
669b0e9cb28SMasami Hiramatsu 		 */
670b0e9cb28SMasami Hiramatsu 		ret = __die_walk_funclines(rt_die, false, callback, data);
671e0d153c6SMasami Hiramatsu 	else {
672e0d153c6SMasami Hiramatsu 		struct __line_walk_param param = {
673e0d153c6SMasami Hiramatsu 			.callback = callback,
674e0d153c6SMasami Hiramatsu 			.data = data,
675e0d153c6SMasami Hiramatsu 			.retval = 0,
676e0d153c6SMasami Hiramatsu 		};
677e0d153c6SMasami Hiramatsu 		dwarf_getfuncs(cu_die, __die_walk_culines_cb, &param, 0);
678e0d153c6SMasami Hiramatsu 		ret = param.retval;
679e0d153c6SMasami Hiramatsu 	}
680e0d153c6SMasami Hiramatsu 
681e0d153c6SMasami Hiramatsu 	return ret;
682e0d153c6SMasami Hiramatsu }
683e0d153c6SMasami Hiramatsu 
684e0d153c6SMasami Hiramatsu struct __find_variable_param {
685e0d153c6SMasami Hiramatsu 	const char *name;
686e0d153c6SMasami Hiramatsu 	Dwarf_Addr addr;
687e0d153c6SMasami Hiramatsu };
688e0d153c6SMasami Hiramatsu 
689e0d153c6SMasami Hiramatsu static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data)
690e0d153c6SMasami Hiramatsu {
691e0d153c6SMasami Hiramatsu 	struct __find_variable_param *fvp = data;
692e0d153c6SMasami Hiramatsu 	int tag;
693e0d153c6SMasami Hiramatsu 
694e0d153c6SMasami Hiramatsu 	tag = dwarf_tag(die_mem);
695e0d153c6SMasami Hiramatsu 	if ((tag == DW_TAG_formal_parameter ||
696e0d153c6SMasami Hiramatsu 	     tag == DW_TAG_variable) &&
697e0d153c6SMasami Hiramatsu 	    die_compare_name(die_mem, fvp->name))
698e0d153c6SMasami Hiramatsu 		return DIE_FIND_CB_END;
699e0d153c6SMasami Hiramatsu 
700e0d153c6SMasami Hiramatsu 	if (dwarf_haspc(die_mem, fvp->addr))
701e0d153c6SMasami Hiramatsu 		return DIE_FIND_CB_CONTINUE;
702e0d153c6SMasami Hiramatsu 	else
703e0d153c6SMasami Hiramatsu 		return DIE_FIND_CB_SIBLING;
704e0d153c6SMasami Hiramatsu }
705e0d153c6SMasami Hiramatsu 
706e0d153c6SMasami Hiramatsu /**
707e0d153c6SMasami Hiramatsu  * die_find_variable_at - Find a given name variable at given address
708e0d153c6SMasami Hiramatsu  * @sp_die: a function DIE
709e0d153c6SMasami Hiramatsu  * @name: variable name
710e0d153c6SMasami Hiramatsu  * @addr: address
711e0d153c6SMasami Hiramatsu  * @die_mem: a buffer for result DIE
712e0d153c6SMasami Hiramatsu  *
713e0d153c6SMasami Hiramatsu  * Find a variable DIE called @name at @addr in @sp_die.
714e0d153c6SMasami Hiramatsu  */
715e0d153c6SMasami Hiramatsu Dwarf_Die *die_find_variable_at(Dwarf_Die *sp_die, const char *name,
716e0d153c6SMasami Hiramatsu 				Dwarf_Addr addr, Dwarf_Die *die_mem)
717e0d153c6SMasami Hiramatsu {
718e0d153c6SMasami Hiramatsu 	struct __find_variable_param fvp = { .name = name, .addr = addr};
719e0d153c6SMasami Hiramatsu 
720e0d153c6SMasami Hiramatsu 	return die_find_child(sp_die, __die_find_variable_cb, (void *)&fvp,
721e0d153c6SMasami Hiramatsu 			      die_mem);
722e0d153c6SMasami Hiramatsu }
723e0d153c6SMasami Hiramatsu 
724e0d153c6SMasami Hiramatsu static int __die_find_member_cb(Dwarf_Die *die_mem, void *data)
725e0d153c6SMasami Hiramatsu {
726e0d153c6SMasami Hiramatsu 	const char *name = data;
727e0d153c6SMasami Hiramatsu 
728e0d153c6SMasami Hiramatsu 	if ((dwarf_tag(die_mem) == DW_TAG_member) &&
729e0d153c6SMasami Hiramatsu 	    die_compare_name(die_mem, name))
730e0d153c6SMasami Hiramatsu 		return DIE_FIND_CB_END;
731e0d153c6SMasami Hiramatsu 
732e0d153c6SMasami Hiramatsu 	return DIE_FIND_CB_SIBLING;
733e0d153c6SMasami Hiramatsu }
734e0d153c6SMasami Hiramatsu 
735e0d153c6SMasami Hiramatsu /**
736e0d153c6SMasami Hiramatsu  * die_find_member - Find a given name member in a data structure
737e0d153c6SMasami Hiramatsu  * @st_die: a data structure type DIE
738e0d153c6SMasami Hiramatsu  * @name: member name
739e0d153c6SMasami Hiramatsu  * @die_mem: a buffer for result DIE
740e0d153c6SMasami Hiramatsu  *
741e0d153c6SMasami Hiramatsu  * Find a member DIE called @name in @st_die.
742e0d153c6SMasami Hiramatsu  */
743e0d153c6SMasami Hiramatsu Dwarf_Die *die_find_member(Dwarf_Die *st_die, const char *name,
744e0d153c6SMasami Hiramatsu 			   Dwarf_Die *die_mem)
745e0d153c6SMasami Hiramatsu {
746e0d153c6SMasami Hiramatsu 	return die_find_child(st_die, __die_find_member_cb, (void *)name,
747e0d153c6SMasami Hiramatsu 			      die_mem);
748e0d153c6SMasami Hiramatsu }
749e0d153c6SMasami Hiramatsu 
750e0d153c6SMasami Hiramatsu /**
751e0d153c6SMasami Hiramatsu  * die_get_typename - Get the name of given variable DIE
752e0d153c6SMasami Hiramatsu  * @vr_die: a variable DIE
753e0d153c6SMasami Hiramatsu  * @buf: a buffer for result type name
754e0d153c6SMasami Hiramatsu  * @len: a max-length of @buf
755e0d153c6SMasami Hiramatsu  *
756e0d153c6SMasami Hiramatsu  * Get the name of @vr_die and stores it to @buf. Return the actual length
757e0d153c6SMasami Hiramatsu  * of type name if succeeded. Return -E2BIG if @len is not enough long, and
758e0d153c6SMasami Hiramatsu  * Return -ENOENT if failed to find type name.
759e0d153c6SMasami Hiramatsu  * Note that the result will stores typedef name if possible, and stores
760e0d153c6SMasami Hiramatsu  * "*(function_type)" if the type is a function pointer.
761e0d153c6SMasami Hiramatsu  */
762e0d153c6SMasami Hiramatsu int die_get_typename(Dwarf_Die *vr_die, char *buf, int len)
763e0d153c6SMasami Hiramatsu {
764e0d153c6SMasami Hiramatsu 	Dwarf_Die type;
765e0d153c6SMasami Hiramatsu 	int tag, ret, ret2;
766e0d153c6SMasami Hiramatsu 	const char *tmp = "";
767e0d153c6SMasami Hiramatsu 
768e0d153c6SMasami Hiramatsu 	if (__die_get_real_type(vr_die, &type) == NULL)
769e0d153c6SMasami Hiramatsu 		return -ENOENT;
770e0d153c6SMasami Hiramatsu 
771e0d153c6SMasami Hiramatsu 	tag = dwarf_tag(&type);
772e0d153c6SMasami Hiramatsu 	if (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)
773e0d153c6SMasami Hiramatsu 		tmp = "*";
774e0d153c6SMasami Hiramatsu 	else if (tag == DW_TAG_subroutine_type) {
775e0d153c6SMasami Hiramatsu 		/* Function pointer */
776e0d153c6SMasami Hiramatsu 		ret = snprintf(buf, len, "(function_type)");
777e0d153c6SMasami Hiramatsu 		return (ret >= len) ? -E2BIG : ret;
778e0d153c6SMasami Hiramatsu 	} else {
779e0d153c6SMasami Hiramatsu 		if (!dwarf_diename(&type))
780e0d153c6SMasami Hiramatsu 			return -ENOENT;
781e0d153c6SMasami Hiramatsu 		if (tag == DW_TAG_union_type)
782e0d153c6SMasami Hiramatsu 			tmp = "union ";
783e0d153c6SMasami Hiramatsu 		else if (tag == DW_TAG_structure_type)
784e0d153c6SMasami Hiramatsu 			tmp = "struct ";
785e0d153c6SMasami Hiramatsu 		/* Write a base name */
786e0d153c6SMasami Hiramatsu 		ret = snprintf(buf, len, "%s%s", tmp, dwarf_diename(&type));
787e0d153c6SMasami Hiramatsu 		return (ret >= len) ? -E2BIG : ret;
788e0d153c6SMasami Hiramatsu 	}
789e0d153c6SMasami Hiramatsu 	ret = die_get_typename(&type, buf, len);
790e0d153c6SMasami Hiramatsu 	if (ret > 0) {
791e0d153c6SMasami Hiramatsu 		ret2 = snprintf(buf + ret, len - ret, "%s", tmp);
792e0d153c6SMasami Hiramatsu 		ret = (ret2 >= len - ret) ? -E2BIG : ret2 + ret;
793e0d153c6SMasami Hiramatsu 	}
794e0d153c6SMasami Hiramatsu 	return ret;
795e0d153c6SMasami Hiramatsu }
796e0d153c6SMasami Hiramatsu 
797e0d153c6SMasami Hiramatsu /**
798e0d153c6SMasami Hiramatsu  * die_get_varname - Get the name and type of given variable DIE
799e0d153c6SMasami Hiramatsu  * @vr_die: a variable DIE
800e0d153c6SMasami Hiramatsu  * @buf: a buffer for type and variable name
801e0d153c6SMasami Hiramatsu  * @len: the max-length of @buf
802e0d153c6SMasami Hiramatsu  *
803e0d153c6SMasami Hiramatsu  * Get the name and type of @vr_die and stores it in @buf as "type\tname".
804e0d153c6SMasami Hiramatsu  */
805e0d153c6SMasami Hiramatsu int die_get_varname(Dwarf_Die *vr_die, char *buf, int len)
806e0d153c6SMasami Hiramatsu {
807e0d153c6SMasami Hiramatsu 	int ret, ret2;
808e0d153c6SMasami Hiramatsu 
809e0d153c6SMasami Hiramatsu 	ret = die_get_typename(vr_die, buf, len);
810e0d153c6SMasami Hiramatsu 	if (ret < 0) {
811e0d153c6SMasami Hiramatsu 		pr_debug("Failed to get type, make it unknown.\n");
812e0d153c6SMasami Hiramatsu 		ret = snprintf(buf, len, "(unknown_type)");
813e0d153c6SMasami Hiramatsu 	}
814e0d153c6SMasami Hiramatsu 	if (ret > 0) {
815e0d153c6SMasami Hiramatsu 		ret2 = snprintf(buf + ret, len - ret, "\t%s",
816e0d153c6SMasami Hiramatsu 				dwarf_diename(vr_die));
817e0d153c6SMasami Hiramatsu 		ret = (ret2 >= len - ret) ? -E2BIG : ret2 + ret;
818e0d153c6SMasami Hiramatsu 	}
819e0d153c6SMasami Hiramatsu 	return ret;
820e0d153c6SMasami Hiramatsu }
821e0d153c6SMasami Hiramatsu 
822