/src/elfutils/libdw/dwarf_getcfi.c
Line | Count | Source (jump to first uncovered line) |
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 | | dwarf_getcfi (Dwarf *dbg) |
39 | 0 | { |
40 | 0 | if (dbg == NULL) |
41 | 0 | return NULL; |
42 | | |
43 | 0 | if (dbg->cfi == NULL && dbg->sectiondata[IDX_debug_frame] != NULL) |
44 | 0 | { |
45 | 0 | Dwarf_CFI *cfi = libdw_typed_alloc (dbg, Dwarf_CFI); |
46 | |
|
47 | 0 | cfi->dbg = dbg; |
48 | 0 | cfi->data = (Elf_Data_Scn *) dbg->sectiondata[IDX_debug_frame]; |
49 | |
|
50 | 0 | cfi->search_table = NULL; |
51 | 0 | cfi->search_table_vaddr = 0; |
52 | 0 | cfi->search_table_entries = 0; |
53 | 0 | cfi->search_table_encoding = DW_EH_PE_omit; |
54 | |
|
55 | 0 | cfi->frame_vaddr = 0; |
56 | 0 | cfi->textrel = 0; |
57 | 0 | cfi->datarel = 0; |
58 | |
|
59 | 0 | cfi->e_ident = (unsigned char *) elf_getident (dbg->elf, NULL); |
60 | |
|
61 | 0 | GElf_Ehdr ehdr; |
62 | 0 | gelf_getehdr (dbg->elf, &ehdr); |
63 | 0 | cfi->e_machine = ehdr.e_machine; |
64 | |
|
65 | 0 | cfi->other_byte_order = dbg->other_byte_order; |
66 | 0 | cfi->default_same_value = false; |
67 | |
|
68 | 0 | cfi->next_offset = 0; |
69 | |
|
70 | 0 | eu_search_tree_init (&cfi->cie_tree); |
71 | 0 | eu_search_tree_init (&cfi->fde_tree); |
72 | 0 | eu_search_tree_init (&cfi->expr_tree); |
73 | 0 | mutex_init (cfi->lock); |
74 | |
|
75 | 0 | cfi->ebl = NULL; |
76 | |
|
77 | 0 | dbg->cfi = cfi; |
78 | 0 | } |
79 | |
|
80 | 0 | return dbg->cfi; |
81 | 0 | } |
82 | | INTDEF (dwarf_getcfi) |