1 /* Find entry breakpoint locations for a function.
2 Copyright (C) 2005-2009 Red Hat, Inc.
3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
6 it under the terms of either
8 * the GNU Lesser General Public License as published by the Free
9 Software Foundation; either version 3 of the License, or (at
10 your option) any later version
14 * the GNU General Public License as published by the Free
15 Software Foundation; either version 2 of the License, or (at
16 your option) any later version
18 or both in parallel, as here.
20 elfutils is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
25 You should have received copies of the GNU General Public License and
26 the GNU Lesser General Public License along with this program. If
27 not, see <http://www.gnu.org/licenses/>. */
37 /* Add one breakpoint location to the result vector. */
39 add_bkpt (Dwarf_Addr pc, Dwarf_Addr **bkpts, int *pnbkpts)
41 Dwarf_Addr *newlist = realloc (*bkpts, ++(*pnbkpts) * sizeof newlist[0]);
46 __libdw_seterrno (DWARF_E_NOMEM);
49 newlist[*pnbkpts - 1] = pc;
54 /* Fallback result, break at the entrypc/lowpc value. */
56 entrypc_bkpt (Dwarf_Die *die, Dwarf_Addr **bkpts, int *pnbkpts)
59 return INTUSE(dwarf_entrypc) (die, &pc) < 0 ? -1 : add_bkpt (pc, bkpts, pnbkpts);
62 /* Search a contiguous PC range for prologue-end markers.
63 If DWARF, look for proper markers.
64 Failing that, if ADHOC, look for the ad hoc convention. */
66 search_range (Dwarf_Addr low, Dwarf_Addr high,
67 bool dwarf, bool adhoc,
68 Dwarf_Lines *lines, size_t nlines,
69 Dwarf_Addr **bkpts, int *pnbkpts)
71 size_t l = 0, u = nlines;
74 size_t idx = (l + u) / 2;
75 if (lines->info[idx].addr < low)
77 else if (lines->info[idx].addr > low)
79 else if (lines->info[idx].end_sequence)
90 for (size_t i = l; i < u && lines->info[i].addr < high; ++i)
91 if (lines->info[i].prologue_end
92 && add_bkpt (lines->info[i].addr, bkpts, pnbkpts) < 0)
94 if (adhoc && *pnbkpts == 0)
95 while (++l < nlines && lines->info[l].addr < high)
96 if (!lines->info[l].end_sequence)
97 return add_bkpt (lines->info[l].addr, bkpts, pnbkpts);
100 __libdw_seterrno (DWARF_E_INVALID_DWARF);
105 dwarf_entry_breakpoints (Dwarf_Die *die, Dwarf_Addr **bkpts)
110 /* Fetch the CU's line records to look for this DIE's addresses. */
111 Dwarf_Die cudie = CUDIE (die->cu);
114 if (INTUSE(dwarf_getsrclines) (&cudie, &lines, &nlines) < 0)
116 int error = INTUSE (dwarf_errno) ();
117 if (error == 0) /* CU has no DW_AT_stmt_list. */
118 return entrypc_bkpt (die, bkpts, &nbkpts);
119 __libdw_seterrno (error);
123 /* Search each contiguous address range for DWARF prologue_end markers. */
128 ptrdiff_t offset = INTUSE(dwarf_ranges) (die, 0, &base, &begin, &end);
132 /* Most often there is a single contiguous PC range for the DIE. */
134 return search_range (begin, end, true, true, lines, nlines, bkpts, &nbkpts)
135 ?: entrypc_bkpt (die, bkpts, &nbkpts);
137 Dwarf_Addr lowpc = (Dwarf_Addr) -1l;
138 Dwarf_Addr highpc = (Dwarf_Addr) -1l;
141 /* We have an address range entry. */
142 if (search_range (begin, end, true, false,
143 lines, nlines, bkpts, &nbkpts) < 0)
152 offset = INTUSE(dwarf_ranges) (die, offset, &base, &begin, &end);
155 /* If we didn't find any proper DWARF markers, then look in the
156 lowest-addressed range for an ad hoc marker. Failing that,
157 fall back to just using the entrypc value. */
159 ?: (lowpc == (Dwarf_Addr) -1l ? 0
160 : search_range (lowpc, highpc, false, true,
161 lines, nlines, bkpts, &nbkpts))
162 ?: entrypc_bkpt (die, bkpts, &nbkpts));