-
Notifications
You must be signed in to change notification settings - Fork 9
/
dwarf_dealloc.c
117 lines (106 loc) · 3.68 KB
/
dwarf_dealloc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*-
* Copyright (c) 2007 John Birrell ([email protected])
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "_libdwarf.h"
CGCEFTC_VCSID("$Id: dwarf_dealloc.c 2073 2011-10-27 03:30:47Z jkoshy $");
void
dwarf_dealloc(Dwarf_Debug dbg, Dwarf_Ptr p, Dwarf_Unsigned alloc_type)
{
Dwarf_Abbrev ab;
Dwarf_AttrDef ad, tad;
Dwarf_Attribute at, tat;
Dwarf_Die die;
/*
* This libdwarf implementation does not use the SGI/libdwarf
* style of memory allocation. In most cases it does not copy
* things to return to the client, so the client does not need
* to remember to free them. The remaining cases are handled
* below.
*/
(void) dbg;
if (alloc_type == DW_DLA_LIST || alloc_type == DW_DLA_FRAME_BLOCK ||
alloc_type == DW_DLA_LOC_BLOCK || alloc_type == DW_DLA_LOCDESC)
free(p);
else if (alloc_type == DW_DLA_ABBREV) {
ab = p;
STAILQ_FOREACH_SAFE(ad, &ab->ab_attrdef, ad_next, tad) {
STAILQ_REMOVE(&ab->ab_attrdef, ad, _Dwarf_AttrDef,
ad_next);
free(ad);
}
free(ab);
} else if (alloc_type == DW_DLA_DIE) {
die = p;
STAILQ_FOREACH_SAFE(at, &die->die_attr, at_next, tat) {
STAILQ_REMOVE(&die->die_attr, at,
_Dwarf_Attribute, at_next);
if (at->at_ld != NULL)
free(at->at_ld);
free(at);
}
if (die->die_attrarray)
free(die->die_attrarray);
free(die);
}
}
void
dwarf_srclines_dealloc(Dwarf_Debug dbg, Dwarf_Line *linebuf,
Dwarf_Signed count)
{
/*
* In this libdwarf implementation, line information remains
* associated with the DIE for a compilation unit for the
* lifetime of the DIE. The client does not need to free
* the memory returned by `dwarf_srclines()`.
*/
(void) dbg; (void) linebuf; (void) count;
}
void
dwarf_ranges_dealloc(Dwarf_Debug dbg, Dwarf_Ranges *ranges,
Dwarf_Signed range_count)
{
/*
* In this libdwarf implementation, ranges information is
* kept by a STAILQ inside Dwarf_Debug object. The client
* does not need to free the memory returned by
* `dwarf_get_ranges()` or `dwarf_get_ranges_a()`.
*/
(void) dbg; (void) ranges; (void) range_count;
}
void
dwarf_fde_cie_list_dealloc(Dwarf_Debug dbg, Dwarf_Cie *cie_list,
Dwarf_Signed cie_count, Dwarf_Fde *fde_list, Dwarf_Signed fde_count)
{
/*
* In this implementation, FDE and CIE information is managed
* as part of the Dwarf_Debug object. The client does not need
* to explicitly free these memory arenas.
*/
(void) dbg;
(void) cie_list;
(void) cie_count;
(void) fde_list;
(void) fde_count;
}