]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libdwarf/libdwarf.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libdwarf / libdwarf.h
1 /*-
2  * Copyright (c) 2007 John Birrell (jb@freebsd.org)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #ifndef _LIBDWARF_H_
30 #define _LIBDWARF_H_
31
32 #include <libelf.h>
33
34 typedef int             Dwarf_Bool;
35 typedef off_t           Dwarf_Off;
36 typedef uint64_t        Dwarf_Unsigned;
37 typedef uint16_t        Dwarf_Half;
38 typedef uint8_t         Dwarf_Small;
39 typedef int64_t         Dwarf_Signed;
40 typedef uint64_t        Dwarf_Addr;
41 typedef void            *Dwarf_Ptr;
42
43 /* Forward definitions. */
44 typedef struct _Dwarf_Abbrev    *Dwarf_Abbrev;
45 typedef struct _Dwarf_Arange    *Dwarf_Arange;
46 typedef struct _Dwarf_Attribute *Dwarf_Attribute;
47 typedef struct _Dwarf_AttrValue *Dwarf_AttrValue;
48 typedef struct _Dwarf_CU        *Dwarf_CU;
49 typedef struct _Dwarf_Cie       *Dwarf_Cie;
50 typedef struct _Dwarf_Debug     *Dwarf_Debug;
51 typedef struct _Dwarf_Die       *Dwarf_Die;
52 typedef struct _Dwarf_Fde       *Dwarf_Fde;
53 typedef struct _Dwarf_Func      *Dwarf_Func;
54 typedef struct _Dwarf_Inlined_Func *Dwarf_Inlined_Func;
55 typedef struct _Dwarf_Global    *Dwarf_Global;
56 typedef struct _Dwarf_Line      *Dwarf_Line;
57 typedef struct _Dwarf_Type      *Dwarf_Type;
58 typedef struct _Dwarf_Var       *Dwarf_Var;
59 typedef struct _Dwarf_Weak      *Dwarf_Weak;
60
61 typedef struct {
62         Dwarf_Small     lr_atom;
63         Dwarf_Unsigned  lr_number;
64         Dwarf_Unsigned  lr_number2;
65         Dwarf_Unsigned  lr_offset;
66 } Dwarf_Loc;
67
68 typedef struct {
69         Dwarf_Addr      ld_lopc;
70         Dwarf_Addr      ld_hipc;
71         Dwarf_Half      ld_cents;
72         Dwarf_Loc       *ld_s;
73 } Dwarf_Locdesc;
74
75 /* receiver function for dwarf_function_iterate_inlined_instance() API */
76 typedef void (*Dwarf_Inlined_Callback)(Dwarf_Inlined_Func, void *);
77
78 /*
79  * Error numbers which are specific to this implementation.
80  */
81 enum {
82         DWARF_E_NONE,                   /* No error. */
83         DWARF_E_ERROR,                  /* An error! */
84         DWARF_E_NO_ENTRY,               /* No entry. */
85         DWARF_E_ARGUMENT,               /* Invalid argument. */
86         DWARF_E_DEBUG_INFO,             /* Debug info NULL. */
87         DWARF_E_MEMORY,                 /* Insufficient memory. */
88         DWARF_E_ELF,                    /* ELF error. */
89         DWARF_E_INVALID_CU,             /* Invalid compilation unit data. */
90         DWARF_E_CU_VERSION,             /* Wrong CU version. */
91         DWARF_E_MISSING_ABBREV,         /* Abbrev not found. */
92         DWARF_E_NOT_IMPLEMENTED,        /* Not implemented. */
93         DWARF_E_CU_CURRENT,             /* No current compilation unit. */
94         DWARF_E_BAD_FORM,               /* Wrong form type for attribute value. */
95         DWARF_E_INVALID_EXPR,           /* Invalid DWARF expression. */
96         DWARF_E_NUM                     /* Max error number. */
97 };
98
99 typedef struct _Dwarf_Error {
100         int             err_error;      /* DWARF error. */
101         int             elf_error;      /* ELF error. */
102         const char      *err_func;      /* Function name where error occurred. */
103         int             err_line;       /* Line number where error occurred. */
104         char            err_msg[1024];  /* Formatted error message. */
105 } Dwarf_Error;
106
107 /*
108  * Return values which have to be compatible with other
109  * implementations of libdwarf.
110  */
111 #define DW_DLV_NO_ENTRY         DWARF_E_NO_ENTRY
112 #define DW_DLV_OK               DWARF_E_NONE
113 #define DW_DLE_DEBUG_INFO_NULL  DWARF_E_DEBUG_INFO
114
115 #define DW_DLC_READ             0       /* read only access */
116
117 /* Function prototype definitions. */
118 __BEGIN_DECLS
119 Dwarf_Abbrev    dwarf_abbrev_find(Dwarf_CU, uint64_t);
120 Dwarf_AttrValue dwarf_attrval_find(Dwarf_Die, Dwarf_Half);
121 Dwarf_Die       dwarf_die_find(Dwarf_Die, Dwarf_Unsigned);
122 const char      *dwarf_errmsg(Dwarf_Error *);
123 const char      *get_sht_desc(uint32_t);
124 const char      *get_attr_desc(uint32_t);
125 const char      *get_form_desc(uint32_t);
126 const char      *get_tag_desc(uint32_t);
127 int             dwarf_abbrev_add(Dwarf_CU, uint64_t, uint64_t, uint8_t, Dwarf_Abbrev *, Dwarf_Error *);
128 int             dwarf_attr(Dwarf_Die, Dwarf_Half, Dwarf_Attribute *, Dwarf_Error *);
129 int             dwarf_attr_add(Dwarf_Abbrev, uint64_t, uint64_t, Dwarf_Attribute *, Dwarf_Error *);
130 int             dwarf_attrval(Dwarf_Die, Dwarf_Half, Dwarf_AttrValue *, Dwarf_Error *);
131 int             dwarf_attrval_add(Dwarf_Die, Dwarf_AttrValue, Dwarf_AttrValue *, Dwarf_Error *);
132 int             dwarf_attrval_flag(Dwarf_Die, uint64_t, Dwarf_Bool *, Dwarf_Error *);
133 int             dwarf_attrval_signed(Dwarf_Die, uint64_t, Dwarf_Signed *, Dwarf_Error *);
134 int             dwarf_attrval_string(Dwarf_Die, uint64_t, const char **, Dwarf_Error *);
135 int             dwarf_attrval_unsigned(Dwarf_Die, uint64_t, Dwarf_Unsigned *, Dwarf_Error *);
136 int             dwarf_child(Dwarf_Die, Dwarf_Die *, Dwarf_Error *);
137 int             dwarf_die_add(Dwarf_CU, int, uint64_t, uint64_t, Dwarf_Abbrev, Dwarf_Die *, Dwarf_Error *);
138 int             dwarf_dieoffset(Dwarf_Die, Dwarf_Off *, Dwarf_Error *);
139 int             dwarf_elf_init(Elf *, int, Dwarf_Debug *, Dwarf_Error *);
140 int             dwarf_errno(Dwarf_Error *);
141 int             dwarf_finish(Dwarf_Debug *, Dwarf_Error *);
142 int             dwarf_locdesc(Dwarf_Die, uint64_t, Dwarf_Locdesc **, Dwarf_Signed *, Dwarf_Error *);
143 int             dwarf_locdesc_free(Dwarf_Locdesc *, Dwarf_Error *);
144 int             dwarf_init(int, int, Dwarf_Debug *, Dwarf_Error *);
145 int             dwarf_next_cu_header(Dwarf_Debug, Dwarf_Unsigned *, Dwarf_Half *,
146                     Dwarf_Unsigned *, Dwarf_Half *, Dwarf_Unsigned *, Dwarf_Error *);
147 int             dwarf_op_num(uint8_t, uint8_t *, int);
148 int             dwarf_siblingof(Dwarf_Debug, Dwarf_Die, Dwarf_Die *, Dwarf_Error *);
149 int             dwarf_tag(Dwarf_Die, Dwarf_Half *, Dwarf_Error *);
150 int             dwarf_whatform(Dwarf_Attribute, Dwarf_Half *, Dwarf_Error *);
151 void            dwarf_dealloc(Dwarf_Debug, Dwarf_Ptr, Dwarf_Unsigned);
152 void            dwarf_dump(Dwarf_Debug);
153 void            dwarf_dump_abbrev(Dwarf_Debug);
154 void            dwarf_dump_av(Dwarf_Die, Dwarf_AttrValue);
155 void            dwarf_dump_dbgstr(Dwarf_Debug);
156 void            dwarf_dump_die(Dwarf_Die);
157 void            dwarf_dump_die_at_offset(Dwarf_Debug, Dwarf_Off);
158 void            dwarf_dump_info(Dwarf_Debug);
159 void            dwarf_dump_shstrtab(Dwarf_Debug);
160 void            dwarf_dump_strtab(Dwarf_Debug);
161 void            dwarf_dump_symtab(Dwarf_Debug);
162 void            dwarf_dump_raw(Dwarf_Debug);
163 void            dwarf_dump_tree(Dwarf_Debug);
164 Dwarf_Func      dwarf_find_function_by_offset(Dwarf_Debug dbg, Dwarf_Off off);
165 Dwarf_Func      dwarf_find_function_by_name(Dwarf_Debug dbg, const char *name);
166 int             dwarf_function_get_addr_range(Dwarf_Func f,
167                     Dwarf_Addr *low_pc, Dwarf_Addr *high_pc);
168 int             dwarf_function_is_inlined(Dwarf_Func f);
169 void            dwarf_function_iterate_inlined_instance(Dwarf_Func func,
170                     Dwarf_Inlined_Callback f, void *data);
171 int             dwarf_inlined_function_get_addr_range(Dwarf_Inlined_Func f,
172                     Dwarf_Addr *low_pc, Dwarf_Addr *high_pc);
173
174 __END_DECLS
175
176 #endif /* !_LIBDWARF_H_ */