1da0c48c4Sopenharmony_ci/* Find line information for address. 2da0c48c4Sopenharmony_ci Copyright (C) 2004, 2005, 2014 Red Hat, Inc. 3da0c48c4Sopenharmony_ci This file is part of elfutils. 4da0c48c4Sopenharmony_ci Written by Ulrich Drepper <drepper@redhat.com>, 2004. 5da0c48c4Sopenharmony_ci 6da0c48c4Sopenharmony_ci This file is free software; you can redistribute it and/or modify 7da0c48c4Sopenharmony_ci it under the terms of either 8da0c48c4Sopenharmony_ci 9da0c48c4Sopenharmony_ci * the GNU Lesser General Public License as published by the Free 10da0c48c4Sopenharmony_ci Software Foundation; either version 3 of the License, or (at 11da0c48c4Sopenharmony_ci your option) any later version 12da0c48c4Sopenharmony_ci 13da0c48c4Sopenharmony_ci or 14da0c48c4Sopenharmony_ci 15da0c48c4Sopenharmony_ci * the GNU General Public License as published by the Free 16da0c48c4Sopenharmony_ci Software Foundation; either version 2 of the License, or (at 17da0c48c4Sopenharmony_ci your option) any later version 18da0c48c4Sopenharmony_ci 19da0c48c4Sopenharmony_ci or both in parallel, as here. 20da0c48c4Sopenharmony_ci 21da0c48c4Sopenharmony_ci elfutils is distributed in the hope that it will be useful, but 22da0c48c4Sopenharmony_ci WITHOUT ANY WARRANTY; without even the implied warranty of 23da0c48c4Sopenharmony_ci MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 24da0c48c4Sopenharmony_ci General Public License for more details. 25da0c48c4Sopenharmony_ci 26da0c48c4Sopenharmony_ci You should have received copies of the GNU General Public License and 27da0c48c4Sopenharmony_ci the GNU Lesser General Public License along with this program. If 28da0c48c4Sopenharmony_ci not, see <http://www.gnu.org/licenses/>. */ 29da0c48c4Sopenharmony_ci 30da0c48c4Sopenharmony_ci#ifdef HAVE_CONFIG_H 31da0c48c4Sopenharmony_ci# include <config.h> 32da0c48c4Sopenharmony_ci#endif 33da0c48c4Sopenharmony_ci 34da0c48c4Sopenharmony_ci#include "libdwP.h" 35da0c48c4Sopenharmony_ci#include <assert.h> 36da0c48c4Sopenharmony_ci 37da0c48c4Sopenharmony_ci 38da0c48c4Sopenharmony_ciDwarf_Line * 39da0c48c4Sopenharmony_cidwarf_getsrc_die (Dwarf_Die *cudie, Dwarf_Addr addr) 40da0c48c4Sopenharmony_ci{ 41da0c48c4Sopenharmony_ci Dwarf_Lines *lines; 42da0c48c4Sopenharmony_ci size_t nlines; 43da0c48c4Sopenharmony_ci 44da0c48c4Sopenharmony_ci if (INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines) != 0) 45da0c48c4Sopenharmony_ci return NULL; 46da0c48c4Sopenharmony_ci 47da0c48c4Sopenharmony_ci /* The lines are sorted by address, so we can use binary search. */ 48da0c48c4Sopenharmony_ci if (nlines > 0) 49da0c48c4Sopenharmony_ci { 50da0c48c4Sopenharmony_ci size_t l = 0, u = nlines - 1; 51da0c48c4Sopenharmony_ci while (l < u) 52da0c48c4Sopenharmony_ci { 53da0c48c4Sopenharmony_ci size_t idx = u - (u - l) / 2; 54da0c48c4Sopenharmony_ci Dwarf_Line *line = &lines->info[idx]; 55da0c48c4Sopenharmony_ci if (addr < line->addr) 56da0c48c4Sopenharmony_ci u = idx - 1; 57da0c48c4Sopenharmony_ci else 58da0c48c4Sopenharmony_ci l = idx; 59da0c48c4Sopenharmony_ci } 60da0c48c4Sopenharmony_ci 61da0c48c4Sopenharmony_ci /* This is guaranteed for us by libdw read_srclines. */ 62da0c48c4Sopenharmony_ci assert (lines->info[nlines - 1].end_sequence); 63da0c48c4Sopenharmony_ci 64da0c48c4Sopenharmony_ci /* The last line which is less than or equal to addr is what we 65da0c48c4Sopenharmony_ci want, unless it is the end_sequence which is after the 66da0c48c4Sopenharmony_ci current line sequence. */ 67da0c48c4Sopenharmony_ci Dwarf_Line *line = &lines->info[l]; 68da0c48c4Sopenharmony_ci if (! line->end_sequence && line->addr <= addr) 69da0c48c4Sopenharmony_ci return &lines->info[l]; 70da0c48c4Sopenharmony_ci } 71da0c48c4Sopenharmony_ci 72da0c48c4Sopenharmony_ci __libdw_seterrno (DWARF_E_ADDR_OUTOFRANGE); 73da0c48c4Sopenharmony_ci return NULL; 74da0c48c4Sopenharmony_ci} 75