Remove building with NOCRYPTO option
[minix3.git] / external / bsd / elftoolchain / dist / libdwarf / dwarf_attrlist.3
blob888a3fe39867340f8a4e24213b18d4af62dbe145
1 .\"     $NetBSD: dwarf_attrlist.3,v 1.2 2014/03/09 16:58:03 christos Exp $
2 .\"
3 .\" Copyright (c) 2010 Kai Wang
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" SUCH DAMAGE.
26 .\"
27 .\" Id: dwarf_attrlist.3 2122 2011-11-09 15:35:14Z jkoshy 
28 .\"
29 .Dd November 9, 2011
30 .Os
31 .Dt DWARF_ATTRLIST 3
32 .Sh NAME
33 .Nm dwarf_attrlist
34 .Nd retrieve DWARF attribute descriptors
35 .Sh LIBRARY
36 .Lb libdwarf
37 .Sh SYNOPSIS
38 .In libdwarf.h
39 .Ft int
40 .Fo dwarf_attrlist
41 .Fa "Dwarf_Die die"
42 .Fa "Dwarf_Attribute **attrbuf"
43 .Fa "Dwarf_Signed *attrcount"
44 .Fa "Dwarf_Error *err"
45 .Fc
46 .Sh DESCRIPTION
47 Function
48 .Fn dwarf_attrlist
49 retrieves the DWARF attribute descriptors associated with a
50 debugging information entry descriptor in argument
51 .Ar die .
52 The descriptors are returned as an array of values of the opaque type
53 .Vt Dwarf_Attribute .
54 The data associated with each returned attribute descriptor may be
55 queried using the form query functions in the
56 .Xr dwarf 3
57 API set.
58 .Pp
59 Argument
60 .Ar attrbuf
61 points to a location that will hold a pointer to the returned
62 array of DWARF attribute descriptors.
63 Argument
64 .Ar attrcount
65 points to a location that will hold the number of descriptors in
66 the returned array.
67 .Pp
68 If argument
69 .Ar err
70 is non-NULL, it is used to return an error descriptor in case of an
71 error.
72 .Ss Memory Management
73 In the current implementation, the memory allocated for each DWARF
74 attribute descriptor and for the returned array of descriptors is
75 managed by the library and the application does not need to explicitly
76 free the returned pointers.
77 However, for compatibility with other implementations of the
78 .Xr dwarf 3
79 API, the application is permitted to pass the pointers returned by to
80 the
81 .Fn dwarf_dealloc
82 function.
83 .Sh RETURN VALUES
84 Function
85 .Fn dwarf_attrlist
86 returns
87 .Dv DW_DLV_OK on success.
88 .Pp
89 If the debugging information entry descriptor denoted by argument
90 .Ar die
91 does not contain any attribute, the function returns
92 .Dv DW_DLV_NO_ENTRY
93 and sets argument
94 .Ar err .
95 For other errors, it returns
96 .Dv DW_DLV_ERROR
97 and sets argument
98 .Ar err .
99 .Sh EXAMPLES
100 To retrieve the attribute list for a DWARF debugging information
101 entry use:
102 .Bd -literal -offset indent
103 Dwarf_Die dw_die;
104 Dwarf_Error dw_e;
105 Dwarf_Unsigned dw_count;
106 Dwarf_Attribute *dw_attributes;
107 int error, i;
109 \&... variable dw_die contains a reference to the DIE of interest ...
111 /* Retrieve the attribute list from the DIE. */
112 if ((error = dwarf_attrlist(dw_die, &dw_attributes, &dw_count,
113         &dw_e)) != DW_DLV_OK)
114         errx(EXIT_FAILURE, "dwarf_attrlist: %s", dwarf_errmsg(dw_e));
116 /* Process the attribute list. */
117 for (i = 0; i < dw_count; ++i) {
118         /* Use the returned pointers in dw_attributes[i] here. */
121 .Sh ERRORS
122 Function
123 .Fn dwarf_diename
124 can fail with the following errors:
125 .Bl -tag -width ".Bq Er DW_DLE_ARGUMENT"
126 .It Bq Er DW_DLE_ARGUMENT
127 Arguments
128 .Ar die ,
129 .Ar attrbuf ,
131 .Ar attrcount
132 were NULL.
133 .It Bq Er DW_DLE_NO_ENTRY
134 Argument
135 .Ar die
136 had no attributes.
137 .It Bq Er DW_DLE_MEMORY
138 An out of memory condition was encountered during the execution of the
139 function.
141 .Sh SEE ALSO
142 .Xr dwarf 3 ,
143 .Xr dwarf_attr 3 ,
144 .Xr dwarf_dealloc 3 ,
145 .Xr dwarf_hasattr 3 ,
146 .Xr dwarf_hasform 3 ,
147 .Xr dwarf_whatattr 3 ,
148 .Xr dwarf_whatform 3