1 /*
2
3 Copyright (C) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
4 Portions Copyright (C) 2009-2010 David Anderson. All Rights Reserved.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of version 2.1 of the GNU Lesser General Public License
8 as published by the Free Software Foundation.
9
10 This program is distributed in the hope that it would be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
14 Further, this software is distributed without any warranty that it is
15 free of the rightful claim of any third person regarding infringement
16 or the like. Any license provided herein, whether implied or
17 otherwise, applies only to this software file. Patent licenses, if
18 any, provided herein do not apply to combinations of this program with
19 other software, or any other product whatsoever.
20
21 You should have received a copy of the GNU Lesser General Public
22 License along with this program; if not, write the Free Software
23 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301,
24 USA.
25
26 */
27
28 #include "config.h"
29 #include "dwarf_incl.h"
30 #include <stdio.h>
31 #include "dwarf_weaks.h"
32 #include "dwarf_global.h"
33
34 int
dwarf_get_weaks(Dwarf_Debug dbg,Dwarf_Weak ** weaks,Dwarf_Signed * ret_weak_count,Dwarf_Error * error)35 dwarf_get_weaks(Dwarf_Debug dbg,
36 Dwarf_Weak ** weaks,
37 Dwarf_Signed * ret_weak_count, Dwarf_Error * error)
38 {
39 int res = _dwarf_load_section(dbg, &dbg->de_debug_weaknames,error);
40 if (res != DW_DLV_OK) {
41 return res;
42 }
43 if (!dbg->de_debug_weaknames.dss_size) {
44 return (DW_DLV_NO_ENTRY);
45 }
46
47
48 return _dwarf_internal_get_pubnames_like_data(dbg,
49 dbg->de_debug_weaknames.dss_data,
50 dbg->de_debug_weaknames.dss_size,
51 (Dwarf_Global **) weaks, /* Type punning for sections
52 with identical format. */
53 ret_weak_count,
54 error,
55 DW_DLA_WEAK_CONTEXT,
56 DW_DLA_WEAK,
57 DW_DLE_DEBUG_WEAKNAMES_LENGTH_BAD,
58 DW_DLE_DEBUG_WEAKNAMES_VERSION_ERROR);
59 }
60
61 /* Deallocating fully requires deallocating the list
62 and all entries. But some internal data is
63 not exposed, so we need a function with internal knowledge.
64 */
65
66 void
dwarf_weaks_dealloc(Dwarf_Debug dbg,Dwarf_Weak * dwgl,Dwarf_Signed count)67 dwarf_weaks_dealloc(Dwarf_Debug dbg, Dwarf_Weak * dwgl,
68 Dwarf_Signed count)
69 {
70 _dwarf_internal_globals_dealloc(dbg, (Dwarf_Global *) dwgl,
71 count,
72 DW_DLA_WEAK_CONTEXT,
73 DW_DLA_WEAK, DW_DLA_LIST);
74 return;
75 }
76
77
78
79 int
dwarf_weakname(Dwarf_Weak weak_in,char ** ret_name,Dwarf_Error * error)80 dwarf_weakname(Dwarf_Weak weak_in, char **ret_name, Dwarf_Error * error)
81 {
82 Dwarf_Global weak = (Dwarf_Global) weak_in;
83
84 if (weak == NULL) {
85 _dwarf_error(NULL, error, DW_DLE_WEAK_NULL);
86 return (DW_DLV_ERROR);
87 }
88 *ret_name = (char *) (weak->gl_name);
89 return DW_DLV_OK;
90 }
91
92
93 int
dwarf_weak_die_offset(Dwarf_Weak weak_in,Dwarf_Off * weak_off,Dwarf_Error * error)94 dwarf_weak_die_offset(Dwarf_Weak weak_in,
95 Dwarf_Off * weak_off, Dwarf_Error * error)
96 {
97 Dwarf_Global weak = (Dwarf_Global) weak_in;
98
99 return dwarf_global_die_offset(weak, weak_off, error);
100 }
101
102
103 int
dwarf_weak_cu_offset(Dwarf_Weak weak_in,Dwarf_Off * weak_off,Dwarf_Error * error)104 dwarf_weak_cu_offset(Dwarf_Weak weak_in,
105 Dwarf_Off * weak_off, Dwarf_Error * error)
106 {
107 Dwarf_Global weak = (Dwarf_Global) weak_in;
108
109 return dwarf_global_cu_offset(weak, weak_off, error);
110 }
111
112
113 int
dwarf_weak_name_offsets(Dwarf_Weak weak_in,char ** weak_name,Dwarf_Off * die_offset,Dwarf_Off * cu_offset,Dwarf_Error * error)114 dwarf_weak_name_offsets(Dwarf_Weak weak_in,
115 char **weak_name,
116 Dwarf_Off * die_offset,
117 Dwarf_Off * cu_offset, Dwarf_Error * error)
118 {
119 Dwarf_Global weak = (Dwarf_Global) weak_in;
120
121 return dwarf_global_name_offsets(weak,
122 weak_name, die_offset, cu_offset, error);
123 }
124