Line data Source code
1 : /* Get CFI from DWARF file.
2 : Copyright (C) 2009 Red Hat, Inc.
3 : This file is part of elfutils.
4 :
5 : This file is free software; you can redistribute it and/or modify
6 : it under the terms of either
7 :
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
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
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.
24 :
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/>. */
28 :
29 : #ifdef HAVE_CONFIG_H
30 : # include <config.h>
31 : #endif
32 :
33 : #include "libdwP.h"
34 : #include "cfi.h"
35 : #include <dwarf.h>
36 :
37 : Dwarf_CFI *
38 1832 : dwarf_getcfi (Dwarf *dbg)
39 : {
40 1832 : if (dbg == NULL)
41 : return NULL;
42 :
43 1795 : if (dbg->cfi == NULL && dbg->sectiondata[IDX_debug_frame] != NULL)
44 : {
45 17 : Dwarf_CFI *cfi = libdw_typed_alloc (dbg, Dwarf_CFI);
46 :
47 17 : cfi->dbg = dbg;
48 17 : cfi->data = (Elf_Data_Scn *) dbg->sectiondata[IDX_debug_frame];
49 :
50 17 : cfi->search_table = NULL;
51 17 : cfi->search_table_vaddr = 0;
52 17 : cfi->search_table_entries = 0;
53 17 : cfi->search_table_encoding = DW_EH_PE_omit;
54 :
55 17 : cfi->frame_vaddr = 0;
56 17 : cfi->textrel = 0;
57 17 : cfi->datarel = 0;
58 :
59 17 : cfi->e_ident = (unsigned char *) elf_getident (dbg->elf, NULL);
60 17 : cfi->other_byte_order = dbg->other_byte_order;
61 :
62 17 : cfi->next_offset = 0;
63 17 : cfi->cie_tree = cfi->fde_tree = cfi->expr_tree = NULL;
64 :
65 17 : cfi->ebl = NULL;
66 :
67 17 : dbg->cfi = cfi;
68 : }
69 :
70 1795 : return dbg->cfi;
71 : }
72 : INTDEF (dwarf_getcfi)
|