blob: da10d9fb04f52b5b86b416613334c2d1bf972bbf [file] [log] [blame]
Roland McGrath3c84db32009-06-24 17:41:40 -07001/* Find EH CFI for a module in libdwfl.
Roland McGrath1743d7f2010-11-12 16:46:47 -08002 Copyright (C) 2009-2010 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02003 This file is part of elfutils.
Roland McGrath3c84db32009-06-24 17:41:40 -07004
Mark Wielaardde2ed972012-06-05 17:15:16 +02005 This file is free software; you can redistribute it and/or modify
6 it under the terms of either
Roland McGrath3c84db32009-06-24 17:41:40 -07007
Mark Wielaardde2ed972012-06-05 17:15:16 +02008 * 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
11
12 or
13
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
17
18 or both in parallel, as here.
19
20 elfutils is distributed in the hope that it will be useful, but
Roland McGrath3c84db32009-06-24 17:41:40 -070021 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.
24
Mark Wielaardde2ed972012-06-05 17:15:16 +020025 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/>. */
Roland McGrath3c84db32009-06-24 17:41:40 -070028
29#include "libdwflP.h"
30#include "../libdw/cfi.h"
31
32Dwarf_CFI *
33dwfl_module_eh_cfi (mod, bias)
34 Dwfl_Module *mod;
35 Dwarf_Addr *bias;
36{
37 if (mod == NULL)
38 return NULL;
39
40 if (mod->eh_cfi != NULL)
Mark Wielaardeacdcf32010-02-02 15:45:24 +010041 {
Roland McGrath1743d7f2010-11-12 16:46:47 -080042 *bias = dwfl_adjusted_address (mod, 0);
Mark Wielaardeacdcf32010-02-02 15:45:24 +010043 return mod->eh_cfi;
44 }
Roland McGrath3c84db32009-06-24 17:41:40 -070045
46 __libdwfl_getelf (mod);
47 if (mod->elferr != DWFL_E_NOERROR)
48 {
49 __libdwfl_seterrno (mod->elferr);
50 return NULL;
51 }
52
Roland McGrath1743d7f2010-11-12 16:46:47 -080053 *bias = dwfl_adjusted_address (mod, 0);
Roland McGrath3c84db32009-06-24 17:41:40 -070054 return __libdwfl_set_cfi (mod, &mod->eh_cfi,
55 INTUSE(dwarf_getcfi_elf) (mod->main.elf));
56}
57INTDEF (dwfl_module_eh_cfi)