xref: /illumos-gate/usr/src/lib/libdwarf/common/dwarf.h (revision 4d9fdb46)
1 /*
2   Copyright (C) 2000-2006 Silicon Graphics, Inc.  All Rights Reserved.
3   Portions Copyright 2002-2010 Sun Microsystems, Inc. All rights reserved.
4   Portions Copyright 2007-2017 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 
29 #ifndef __DWARF_H
30 #define __DWARF_H
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
35 /*
36     dwarf.h   DWARF  debugging information values
37     $Revision: 1.41 $    $Date: 2006/04/17 00:09:56 $
38 
39     The comment "DWARF3" appears where there are
40     new entries from DWARF3 as of 2004, "DWARF3f"
41     where there are new entries as of the November 2005
42     public review document and other comments apply
43     where extension entries appear.
44 
45     Extensions part of DWARF4 are marked DWARF4.
46 
47     A few extension names have omitted the 'vendor id'
48     (See chapter 7, "Vendor Extensibility"). Please
49     always use a 'vendor id' string in extension names.
50 
51     Vendors should use a vendor string in names and
52     whereever possible avoid duplicating values used by
53     other vendor extensions
54 
55     The DWARF1 comments indicate values unused in
56     DWARF2 and later but used or reserved in DWARF1.
57 */
58 
59 
60 #define DW_TAG_array_type               0x01
61 #define DW_TAG_class_type               0x02
62 #define DW_TAG_entry_point              0x03
63 #define DW_TAG_enumeration_type         0x04
64 #define DW_TAG_formal_parameter         0x05
65 /*  TAG_global_subroutine               0x06 DWARF1 only */
66 /*  TAG_global_variable                 0x07 DWARF1 only */
67 #define DW_TAG_imported_declaration     0x08
68 /*  reserved by DWARF1                  0x09 DWARF1 only */
69 #define DW_TAG_label                    0x0a
70 #define DW_TAG_lexical_block            0x0b
71 /*  TAG_local_variable                  0x0c DWARF1 only. */
72 #define DW_TAG_member                   0x0d
73 /*  reserved by DWARF1                  0x0e DWARF1 only */
74 #define DW_TAG_pointer_type             0x0f
75 #define DW_TAG_reference_type           0x10
76 #define DW_TAG_compile_unit             0x11
77 #define DW_TAG_string_type              0x12
78 #define DW_TAG_structure_type           0x13
79 /* TAG_subroutine                       0x14 DWARF1 only */
80 #define DW_TAG_subroutine_type          0x15
81 #define DW_TAG_typedef                  0x16
82 #define DW_TAG_union_type               0x17
83 #define DW_TAG_unspecified_parameters   0x18
84 #define DW_TAG_variant                  0x19
85 #define DW_TAG_common_block             0x1a
86 #define DW_TAG_common_inclusion         0x1b
87 #define DW_TAG_inheritance              0x1c
88 #define DW_TAG_inlined_subroutine       0x1d
89 #define DW_TAG_module                   0x1e
90 #define DW_TAG_ptr_to_member_type       0x1f
91 #define DW_TAG_set_type                 0x20
92 #define DW_TAG_subrange_type            0x21
93 #define DW_TAG_with_stmt                0x22
94 #define DW_TAG_access_declaration       0x23
95 #define DW_TAG_base_type                0x24
96 #define DW_TAG_catch_block              0x25
97 #define DW_TAG_const_type               0x26
98 #define DW_TAG_constant                 0x27
99 #define DW_TAG_enumerator               0x28
100 #define DW_TAG_file_type                0x29
101 #define DW_TAG_friend                   0x2a
102 #define DW_TAG_namelist                 0x2b
103         /*  Early releases of this header had the following
104             misspelled with a trailing 's' */
105 #define DW_TAG_namelist_item            0x2c /* DWARF3/2 spelling */
106 #define DW_TAG_namelist_items           0x2c /* SGI misspelling/typo */
107 #define DW_TAG_packed_type              0x2d
108 #define DW_TAG_subprogram               0x2e
109         /*  The DWARF2 document had two spellings of the following
110             two TAGs, DWARF3 specifies the longer spelling. */
111 #define DW_TAG_template_type_parameter  0x2f /* DWARF3/2 spelling*/
112 #define DW_TAG_template_type_param      0x2f /* DWARF2   spelling*/
113 #define DW_TAG_template_value_parameter 0x30 /* DWARF3/2 spelling*/
114 #define DW_TAG_template_value_param     0x30 /* DWARF2   spelling*/
115 #define DW_TAG_thrown_type              0x31
116 #define DW_TAG_try_block                0x32
117 #define DW_TAG_variant_part             0x33
118 #define DW_TAG_variable                 0x34
119 #define DW_TAG_volatile_type            0x35
120 #define DW_TAG_dwarf_procedure          0x36  /* DWARF3 */
121 #define DW_TAG_restrict_type            0x37  /* DWARF3 */
122 #define DW_TAG_interface_type           0x38  /* DWARF3 */
123 #define DW_TAG_namespace                0x39  /* DWARF3 */
124 #define DW_TAG_imported_module          0x3a  /* DWARF3 */
125 #define DW_TAG_unspecified_type         0x3b  /* DWARF3 */
126 #define DW_TAG_partial_unit             0x3c  /* DWARF3 */
127 #define DW_TAG_imported_unit            0x3d  /* DWARF3 */
128         /*  Do not use DW_TAG_mutable_type */
129 #define DW_TAG_mutable_type 0x3e /* Withdrawn from DWARF3 by DWARF3f. */
130 #define DW_TAG_condition                0x3f  /* DWARF3f */
131 #define DW_TAG_shared_type              0x40  /* DWARF3f */
132 #define DW_TAG_type_unit                0x41  /* DWARF4 */
133 #define DW_TAG_rvalue_reference_type    0x42  /* DWARF4 */
134 #define DW_TAG_template_alias           0x43  /* DWARF4 */
135 #define DW_TAG_coarray_type             0x44  /* DWARF5 */
136 #define DW_TAG_generic_subrange         0x45  /* DWARF5 */
137 #define DW_TAG_dynamic_type             0x46  /* DWARF5 */
138 #define DW_TAG_atomic_type              0x47  /* DWARF5 */
139 #define DW_TAG_call_site                0x48  /* DWARF5 */
140 #define DW_TAG_call_site_parameter      0x49  /* DWARF5 */
141 #define DW_TAG_skeleton_unit            0x4a  /* DWARF5 */
142 #define DW_TAG_immutable_type           0x4b  /* DWARF5 */
143 #define DW_TAG_lo_user                  0x4080
144 
145 #define DW_TAG_MIPS_loop                0x4081
146 
147 /* HP extensions: ftp://ftp.hp.com/pub/lang/tools/WDB/wdb-4.0.tar.gz  */
148 #define DW_TAG_HP_array_descriptor      0x4090 /* HP */
149 
150 /* GNU extensions.  The first 3 missing the GNU_. */
151 #define DW_TAG_format_label             0x4101 /* GNU. Fortran. */
152 #define DW_TAG_function_template        0x4102 /* GNU. For C++ */
153 #define DW_TAG_class_template           0x4103 /* GNU. For C++ */
154 #define DW_TAG_GNU_BINCL                0x4104 /* GNU */
155 #define DW_TAG_GNU_EINCL                0x4105 /* GNU */
156 
157 /* GNU extension. http://gcc.gnu.org/wiki/TemplateParmsDwarf */
158 #define DW_TAG_GNU_template_template_parameter  0x4106 /* GNU */
159 #define DW_TAG_GNU_template_template_param      0x4106 /* GNU */
160 #define DW_TAG_GNU_template_parameter_pack      0x4107 /* GNU */
161 #define DW_TAG_GNU_formal_parameter_pack        0x4108 /* GNU */
162 
163 #define DW_TAG_GNU_call_site                    0x4109 /* GNU */
164 #define DW_TAG_GNU_call_site_parameter          0x410a /* GNU */
165 
166 /* ALTIUM extensions */
167     /* DSP-C/Starcore __circ qualifier */
168 #define DW_TAG_ALTIUM_circ_type         0x5101 /* ALTIUM */
169     /* Starcore __mwa_circ qualifier */
170 #define DW_TAG_ALTIUM_mwa_circ_type     0x5102 /* ALTIUM */
171     /* Starcore __rev_carry qualifier */
172 #define DW_TAG_ALTIUM_rev_carry_type    0x5103 /* ALTIUM */
173     /* M16 __rom qualifier */
174 #define DW_TAG_ALTIUM_rom               0x5111 /* ALTIUM */
175 
176 /* The following 3 are extensions to support UPC */
177 #define DW_TAG_upc_shared_type          0x8765 /* UPC */
178 #define DW_TAG_upc_strict_type          0x8766 /* UPC */
179 #define DW_TAG_upc_relaxed_type         0x8767 /* UPC */
180 
181 /* PGI (STMicroelectronics) extensions. */
182 #define DW_TAG_PGI_kanji_type           0xa000 /* PGI */
183 #define DW_TAG_PGI_interface_block      0xa020 /* PGI */
184 /* The following are SUN extensions */
185 #define DW_TAG_SUN_function_template    0x4201 /* SUN */
186 #define DW_TAG_SUN_class_template       0x4202 /* SUN */
187 #define DW_TAG_SUN_struct_template      0x4203 /* SUN */
188 #define DW_TAG_SUN_union_template       0x4204 /* SUN */
189 #define DW_TAG_SUN_indirect_inheritance 0x4205 /* SUN */
190 #define DW_TAG_SUN_codeflags            0x4206 /* SUN */
191 #define DW_TAG_SUN_memop_info           0x4207 /* SUN */
192 #define DW_TAG_SUN_omp_child_func       0x4208 /* SUN */
193 #define DW_TAG_SUN_rtti_descriptor      0x4209 /* SUN */
194 #define DW_TAG_SUN_dtor_info            0x420a /* SUN */
195 #define DW_TAG_SUN_dtor                 0x420b /* SUN */
196 #define DW_TAG_SUN_f90_interface        0x420c /* SUN */
197 #define DW_TAG_SUN_fortran_vax_structure 0x420d /* SUN */
198 #define DW_TAG_SUN_hi                   0x42ff /* SUN */
199 
200 #define DW_TAG_hi_user                  0xffff
201 
202 /*  The following two are non-standard. Use DW_CHILDREN_yes
203     and DW_CHILDREN_no instead.  These could
204     probably be deleted, but someone might be using them,
205     so they remain.  */
206 #define DW_children_no                  0
207 #define DW_children_yes                 1
208 
209 #define DW_FORM_addr                    0x01
210 /* FORM_REF                             0x02 DWARF1 only */
211 #define DW_FORM_block2                  0x03
212 #define DW_FORM_block4                  0x04
213 #define DW_FORM_data2                   0x05
214 #define DW_FORM_data4                   0x06
215 #define DW_FORM_data8                   0x07
216 #define DW_FORM_string                  0x08
217 #define DW_FORM_block                   0x09
218 #define DW_FORM_block1                  0x0a
219 #define DW_FORM_data1                   0x0b
220 #define DW_FORM_flag                    0x0c
221 #define DW_FORM_sdata                   0x0d
222 #define DW_FORM_strp                    0x0e
223 #define DW_FORM_udata                   0x0f
224 #define DW_FORM_ref_addr                0x10
225 #define DW_FORM_ref1                    0x11
226 #define DW_FORM_ref2                    0x12
227 #define DW_FORM_ref4                    0x13
228 #define DW_FORM_ref8                    0x14
229 #define DW_FORM_ref_udata               0x15
230 #define DW_FORM_indirect                0x16
231 #define DW_FORM_sec_offset              0x17 /* DWARF4 */
232 #define DW_FORM_exprloc                 0x18 /* DWARF4 */
233 #define DW_FORM_flag_present            0x19 /* DWARF4 */
234 #define DW_FORM_strx                    0x1a /* DWARF5 */
235 #define DW_FORM_addrx                   0x1b /* DWARF5 */
236 #define DW_FORM_ref_sup4                0x1c /* DWARF5 */
237 #define DW_FORM_strp_sup                0x1d /* DWARF5 */
238 #define DW_FORM_data16                  0x1e /* DWARF5 */
239 #define DW_FORM_line_strp               0x1f /* DWARF5 */
240 #define DW_FORM_ref_sig8                0x20 /* DWARF4 */
241 #define DW_FORM_implicit_const          0x21 /* DWARF5 */
242 #define DW_FORM_loclistx                0x22 /* DWARF5 */
243 #define DW_FORM_rnglistx                0x23 /* DWARF5 */
244 #define DW_FORM_ref_sup8                0x24 /* DWARF5 */
245 #define DW_FORM_strx1                   0x25 /* DWARF5 */
246 #define DW_FORM_strx2                   0x26 /* DWARF5 */
247 #define DW_FORM_strx3                   0x27 /* DWARF5 */
248 #define DW_FORM_strx4                   0x28 /* DWARF5 */
249 #define DW_FORM_addrx1                  0x29 /* DWARF5 */
250 #define DW_FORM_addrx2                  0x2a /* DWARF5 */
251 #define DW_FORM_addrx3                  0x2b /* DWARF5 */
252 #define DW_FORM_addrx4                  0x2c /* DWARF5 */
253 
254 #define DW_FORM_GNU_addr_index          0x1f01 /* GNU extension in debug_info.dwo.*/
255 #define DW_FORM_GNU_str_index           0x1f02 /* GNU extension, somewhat like DW_FORM_strp */
256 #define DW_FORM_GNU_ref_alt             0x1f20 /* GNU extension. Offset in .debug_info. */
257 #define DW_FORM_GNU_strp_alt            0x1f21 /* GNU extension. Offset in .debug_str of another object file. */
258 
259 #define DW_AT_sibling                           0x01
260 #define DW_AT_location                          0x02
261 #define DW_AT_name                              0x03
262 /* reserved DWARF1                              0x04, DWARF1 only */
263 /* AT_fund_type                                 0x05, DWARF1 only */
264 /* AT_mod_fund_type                             0x06, DWARF1 only */
265 /* AT_user_def_type                             0x07, DWARF1 only */
266 /* AT_mod_u_d_type                              0x08, DWARF1 only */
267 #define DW_AT_ordering                          0x09
268 #define DW_AT_subscr_data                       0x0a
269 #define DW_AT_byte_size                         0x0b
270 #define DW_AT_bit_offset                        0x0c
271 #define DW_AT_bit_size                          0x0d
272 /* reserved DWARF1                              0x0d, DWARF1 only */
273 #define DW_AT_element_list                      0x0f
274 #define DW_AT_stmt_list                         0x10
275 #define DW_AT_low_pc                            0x11
276 #define DW_AT_high_pc                           0x12
277 #define DW_AT_language                          0x13
278 #define DW_AT_member                            0x14
279 #define DW_AT_discr                             0x15
280 #define DW_AT_discr_value                       0x16
281 #define DW_AT_visibility                        0x17
282 #define DW_AT_import                            0x18
283 #define DW_AT_string_length                     0x19
284 #define DW_AT_common_reference                  0x1a
285 #define DW_AT_comp_dir                          0x1b
286 #define DW_AT_const_value                       0x1c
287 #define DW_AT_containing_type                   0x1d
288 #define DW_AT_default_value                     0x1e
289 /*  reserved                                    0x1f */
290 #define DW_AT_inline                            0x20
291 #define DW_AT_is_optional                       0x21
292 #define DW_AT_lower_bound                       0x22
293 /*  reserved                                    0x23 */
294 /*  reserved                                    0x24 */
295 #define DW_AT_producer                          0x25
296 /*  reserved                                    0x26 */
297 #define DW_AT_prototyped                        0x27
298 /*  reserved                                    0x28 */
299 /*  reserved                                    0x29 */
300 #define DW_AT_return_addr                       0x2a
301 /*  reserved                                    0x2b */
302 #define DW_AT_start_scope                       0x2c
303 /*  reserved                                    0x2d */
304 #define DW_AT_bit_stride                        0x2e /* DWARF3 name */
305 #define DW_AT_stride_size                       0x2e /* DWARF2 name */
306 #define DW_AT_upper_bound                       0x2f
307 /* AT_virtual                                   0x30, DWARF1 only */
308 #define DW_AT_abstract_origin                   0x31
309 #define DW_AT_accessibility                     0x32
310 #define DW_AT_address_class                     0x33
311 #define DW_AT_artificial                        0x34
312 #define DW_AT_base_types                        0x35
313 #define DW_AT_calling_convention                0x36
314 #define DW_AT_count                             0x37
315 #define DW_AT_data_member_location              0x38
316 #define DW_AT_decl_column                       0x39
317 #define DW_AT_decl_file                         0x3a
318 #define DW_AT_decl_line                         0x3b
319 #define DW_AT_declaration                       0x3c
320 #define DW_AT_discr_list                        0x3d /* DWARF2 */
321 #define DW_AT_encoding                          0x3e
322 #define DW_AT_external                          0x3f
323 #define DW_AT_frame_base                        0x40
324 #define DW_AT_friend                            0x41
325 #define DW_AT_identifier_case                   0x42
326 #define DW_AT_macro_info                        0x43 /* DWARF{234} not DWARF5 */
327 #define DW_AT_namelist_item                     0x44
328 #define DW_AT_priority                          0x45
329 #define DW_AT_segment                           0x46
330 #define DW_AT_specification                     0x47
331 #define DW_AT_static_link                       0x48
332 #define DW_AT_type                              0x49
333 #define DW_AT_use_location                      0x4a
334 #define DW_AT_variable_parameter                0x4b
335 #define DW_AT_virtuality                        0x4c
336 #define DW_AT_vtable_elem_location              0x4d
337 #define DW_AT_allocated                         0x4e /* DWARF3 */
338 #define DW_AT_associated                        0x4f /* DWARF3 */
339 #define DW_AT_data_location                     0x50 /* DWARF3 */
340 #define DW_AT_byte_stride                       0x51 /* DWARF3f */
341 #define DW_AT_stride                            0x51 /* DWARF3 (do not use) */
342 #define DW_AT_entry_pc                          0x52 /* DWARF3 */
343 #define DW_AT_use_UTF8                          0x53 /* DWARF3 */
344 #define DW_AT_extension                         0x54 /* DWARF3 */
345 #define DW_AT_ranges                            0x55 /* DWARF3 */
346 #define DW_AT_trampoline                        0x56 /* DWARF3 */
347 #define DW_AT_call_column                       0x57 /* DWARF3 */
348 #define DW_AT_call_file                         0x58 /* DWARF3 */
349 #define DW_AT_call_line                         0x59 /* DWARF3 */
350 #define DW_AT_description                       0x5a /* DWARF3 */
351 #define DW_AT_binary_scale                      0x5b /* DWARF3f */
352 #define DW_AT_decimal_scale                     0x5c /* DWARF3f */
353 #define DW_AT_small                             0x5d /* DWARF3f */
354 #define DW_AT_decimal_sign                      0x5e /* DWARF3f */
355 #define DW_AT_digit_count                       0x5f /* DWARF3f */
356 #define DW_AT_picture_string                    0x60 /* DWARF3f */
357 #define DW_AT_mutable                           0x61 /* DWARF3f */
358 #define DW_AT_threads_scaled                    0x62 /* DWARF3f */
359 #define DW_AT_explicit                          0x63 /* DWARF3f */
360 #define DW_AT_object_pointer                    0x64 /* DWARF3f */
361 #define DW_AT_endianity                         0x65 /* DWARF3f */
362 #define DW_AT_elemental                         0x66 /* DWARF3f */
363 #define DW_AT_pure                              0x67 /* DWARF3f */
364 #define DW_AT_recursive                         0x68 /* DWARF3f */
365 #define DW_AT_signature                         0x69 /* DWARF4 */
366 #define DW_AT_main_subprogram                   0x6a /* DWARF4 */
367 #define DW_AT_data_bit_offset                   0x6b /* DWARF4 */
368 #define DW_AT_const_expr                        0x6c /* DWARF4 */
369 #define DW_AT_enum_class                        0x6d /* DWARF4 */
370 #define DW_AT_linkage_name                      0x6e /* DWARF4 */
371 #define DW_AT_string_length_bit_size            0x6f /* DWARF5 */
372 #define DW_AT_string_length_byte_size           0x70 /* DWARF5 */
373 #define DW_AT_rank                              0x71 /* DWARF5 */
374 #define DW_AT_str_offsets_base                  0x72 /* DWARF5 */
375 #define DW_AT_addr_base                         0x73 /* DWARF5 */
376   /* Use DW_AT_rnglists_base, DW_AT_ranges_base is obsolete as */
377   /* it was only used in some DWARF5 drafts, not the final DWARF5. */
378 #define DW_AT_rnglists_base                     0x74 /* DWARF5 */
379   /*  DW_AT_dwo_id, an experiment in some DWARF4+. Not DWARF5! */
380 #define DW_AT_dwo_id                            0x75 /* DWARF4!*/
381 #define DW_AT_dwo_name                          0x76 /* DWARF5 */
382 #define DW_AT_reference                         0x77 /* DWARF5 */
383 #define DW_AT_rvalue_reference                  0x78 /* DWARF5 */
384 #define DW_AT_macros                            0x79 /* DWARF5 */
385 #define DW_AT_call_all_calls                    0x7a /* DWARF5 */
386 #define DW_AT_call_all_source_calls             0x7b /* DWARF5 */
387 #define DW_AT_call_all_tail_calls               0x7c /* DWARF5 */
388 #define DW_AT_call_return_pc                    0x7d /* DWARF5 */
389 #define DW_AT_call_value                        0x7e /* DWARF5 */
390 #define DW_AT_call_origin                       0x7f /* DWARF5 */
391 #define DW_AT_call_parameter                    0x80 /* DWARF5 */
392 #define DW_AT_call_pc                           0x81 /* DWARF5 */
393 #define DW_AT_call_tail_call                    0x82 /* DWARF5 */
394 #define DW_AT_call_target                       0x83 /* DWARF5 */
395 #define DW_AT_call_target_clobbered             0x84 /* DWARF5 */
396 #define DW_AT_call_data_location                0x85 /* DWARF5 */
397 #define DW_AT_call_data_value                   0x86 /* DWARF5 */
398 #define DW_AT_noreturn                          0x87 /* DWARF5 */
399 #define DW_AT_alignment                         0x88 /* DWARF5 */
400 #define DW_AT_export_symbols                    0x89 /* DWARF5 */
401 #define DW_AT_deleted                           0x8a /* DWARF5 */
402 #define DW_AT_defaulted                         0x8b /* DWARF5 */
403 #define DW_AT_loclists_base                     0x8c /* DWARF5 */
404 
405 /* In extensions, we attempt to include the vendor extension
406    in the name even when the vendor leaves it out. */
407 
408 /* HP extensions. */
409 #define DW_AT_HP_block_index                    0x2000  /* HP */
410 
411 /* Follows extension so dwarfdump prints the most-likely-useful name. */
412 #define DW_AT_lo_user                           0x2000
413 
414 #define DW_AT_MIPS_fde                          0x2001 /* MIPS/SGI */
415 #define DW_AT_MIPS_loop_begin                   0x2002 /* MIPS/SGI */
416 #define DW_AT_MIPS_tail_loop_begin              0x2003 /* MIPS/SGI */
417 #define DW_AT_MIPS_epilog_begin                 0x2004 /* MIPS/SGI */
418 #define DW_AT_MIPS_loop_unroll_factor           0x2005 /* MIPS/SGI */
419 #define DW_AT_MIPS_software_pipeline_depth      0x2006 /* MIPS/SGI */
420 #define DW_AT_MIPS_linkage_name                 0x2007 /* MIPS/SGI, GNU, and others.*/
421 #define DW_AT_MIPS_stride                       0x2008 /* MIPS/SGI */
422 #define DW_AT_MIPS_abstract_name                0x2009 /* MIPS/SGI */
423 #define DW_AT_MIPS_clone_origin                 0x200a /* MIPS/SGI */
424 #define DW_AT_MIPS_has_inlines                  0x200b /* MIPS/SGI */
425 #define DW_AT_MIPS_stride_byte                  0x200c /* MIPS/SGI */
426 #define DW_AT_MIPS_stride_elem                  0x200d /* MIPS/SGI */
427 #define DW_AT_MIPS_ptr_dopetype                 0x200e /* MIPS/SGI */
428 #define DW_AT_MIPS_allocatable_dopetype         0x200f /* MIPS/SGI */
429 #define DW_AT_MIPS_assumed_shape_dopetype       0x2010 /* MIPS/SGI */
430 #define DW_AT_MIPS_assumed_size                 0x2011 /* MIPS/SGI */
431 
432 /* HP extensions. */
433 #define DW_AT_HP_unmodifiable                   0x2001 /* conflict: MIPS */
434 #define DW_AT_HP_actuals_stmt_list              0x2010 /* conflict: MIPS */
435 #define DW_AT_HP_proc_per_section               0x2011 /* conflict: MIPS */
436 #define DW_AT_HP_raw_data_ptr                   0x2012 /* HP */
437 #define DW_AT_HP_pass_by_reference              0x2013 /* HP */
438 #define DW_AT_HP_opt_level                      0x2014 /* HP */
439 #define DW_AT_HP_prof_version_id                0x2015 /* HP */
440 #define DW_AT_HP_opt_flags                      0x2016 /* HP */
441 #define DW_AT_HP_cold_region_low_pc             0x2017 /* HP */
442 #define DW_AT_HP_cold_region_high_pc            0x2018 /* HP */
443 #define DW_AT_HP_all_variables_modifiable       0x2019 /* HP */
444 #define DW_AT_HP_linkage_name                   0x201a /* HP */
445 #define DW_AT_HP_prof_flags                     0x201b /* HP */
446 
447 #define DW_AT_CPQ_discontig_ranges              0x2001 /* COMPAQ/HP */
448 #define DW_AT_CPQ_semantic_events               0x2002 /* COMPAQ/HP */
449 #define DW_AT_CPQ_split_lifetimes_var           0x2003 /* COMPAQ/HP */
450 #define DW_AT_CPQ_split_lifetimes_rtn           0x2004 /* COMPAQ/HP */
451 #define DW_AT_CPQ_prologue_length               0x2005 /* COMPAQ/HP */
452 
453 #define DW_AT_INTEL_other_endian                0x2026 /* Intel, 1 if byte swapped. */
454 
455 /* GNU extensions. */
456 #define DW_AT_sf_names                          0x2101 /* GNU */
457 #define DW_AT_src_info                          0x2102 /* GNU */
458 #define DW_AT_mac_info                          0x2103 /* GNU */
459 #define DW_AT_src_coords                        0x2104 /* GNU */
460 #define DW_AT_body_begin                        0x2105 /* GNU */
461 #define DW_AT_body_end                          0x2106 /* GNU */
462 #define DW_AT_GNU_vector                        0x2107 /* GNU */
463 
464 /*  Thread safety, see http://gcc.gnu.org/wiki/ThreadSafetyAnnotation .  */
465 /*  The values here are from gcc-4.6.2 include/dwarf2.h.  The
466     values are not given on the web page at all, nor on web pages
467     it refers to. */
468 #define DW_AT_GNU_guarded_by                    0x2108 /* GNU */
469 #define DW_AT_GNU_pt_guarded_by                 0x2109 /* GNU */
470 #define DW_AT_GNU_guarded                       0x210a /* GNU */
471 #define DW_AT_GNU_pt_guarded                    0x210b /* GNU */
472 #define DW_AT_GNU_locks_excluded                0x210c /* GNU */
473 #define DW_AT_GNU_exclusive_locks_required      0x210d /* GNU */
474 #define DW_AT_GNU_shared_locks_required         0x210e /* GNU */
475 
476 /* See http://gcc.gnu.org/wiki/DwarfSeparateTypeInfo */
477 #define DW_AT_GNU_odr_signature                 0x210f /* GNU */
478 
479 /*  See  See http://gcc.gnu.org/wiki/TemplateParmsDwarf */
480 /*  The value here is from gcc-4.6.2 include/dwarf2.h.  The value is
481     not consistent with the web page as of December 2011. */
482 #define DW_AT_GNU_template_name                 0x2110 /* GNU */
483 /*  The GNU call site extension.
484     See http://www.dwarfstd.org/ShowIssue.php?issue=100909.2&type=open .  */
485 #define DW_AT_GNU_call_site_value               0x2111 /* GNU */
486 #define DW_AT_GNU_call_site_data_value          0x2112 /* GNU */
487 #define DW_AT_GNU_call_site_target              0x2113 /* GNU */
488 #define DW_AT_GNU_call_site_target_clobbered    0x2114 /* GNU */
489 #define DW_AT_GNU_tail_call                     0x2115 /* GNU */
490 #define DW_AT_GNU_all_tail_call_sites           0x2116 /* GNU */
491 #define DW_AT_GNU_all_call_sites                0x2117 /* GNU */
492 #define DW_AT_GNU_all_source_call_sites         0x2118 /* GNU */
493 /*  Section offset to .debug_macro section. */
494 #define DW_AT_GNU_macros                        0x2119 /* GNU */
495 /* The GNU DebugFission project: http://gcc.gnu.org/wiki/DebugFission */
496 #define DW_AT_GNU_dwo_name                      0x2130 /* GNU */
497 #define DW_AT_GNU_dwo_id                        0x2131 /* GNU */
498 
499 #define DW_AT_GNU_ranges_base                   0x2132 /* GNU */
500 #define DW_AT_GNU_addr_base                     0x2133 /* GNU */
501 #define DW_AT_GNU_pubnames                      0x2134 /* GNU */
502 #define DW_AT_GNU_pubtypes                      0x2135 /* GNU */
503 
504 /* To distinguish distinct basic blocks in a single source line. */
505 #define DW_AT_GNU_discriminator                 0x2136 /* GNU */
506 /*  Ada GNAT gcc attributes. constant integer forms. */
507 #define DW_AT_GNU_numerator                     0x2303 /* GNU */
508 #define DW_AT_GNU_denominator                   0x2304 /* GNU */
509 #define DW_AT_GNU_bias                          0x2305 /* GNU */
510 
511 
512 
513 /* ALTIUM extension: ALTIUM Compliant location lists (flag) */
514 #define DW_AT_ALTIUM_loclist    0x2300          /* ALTIUM  */
515 
516 /* Sun extensions */
517 #define DW_AT_SUN_template                      0x2201 /* SUN */
518 #define DW_AT_VMS_rtnbeg_pd_address             0x2201 /* VMS */
519 #define DW_AT_SUN_alignment                     0x2202 /* SUN */
520 #define DW_AT_SUN_vtable                        0x2203 /* SUN */
521 #define DW_AT_SUN_count_guarantee               0x2204 /* SUN */
522 #define DW_AT_SUN_command_line                  0x2205 /* SUN */
523 #define DW_AT_SUN_vbase                         0x2206 /* SUN */
524 #define DW_AT_SUN_compile_options               0x2207 /* SUN */
525 #define DW_AT_SUN_language                      0x2208 /* SUN */
526 #define DW_AT_SUN_browser_file                  0x2209 /* SUN */
527 #define DW_AT_SUN_vtable_abi                    0x2210 /* SUN */
528 #define DW_AT_SUN_func_offsets                  0x2211 /* SUN */
529 #define DW_AT_SUN_cf_kind                       0x2212 /* SUN */
530 #define DW_AT_SUN_vtable_index                  0x2213 /* SUN */
531 #define DW_AT_SUN_omp_tpriv_addr                0x2214 /* SUN */
532 #define DW_AT_SUN_omp_child_func                0x2215 /* SUN */
533 #define DW_AT_SUN_func_offset                   0x2216 /* SUN */
534 #define DW_AT_SUN_memop_type_ref                0x2217 /* SUN */
535 #define DW_AT_SUN_profile_id                    0x2218 /* SUN */
536 #define DW_AT_SUN_memop_signature               0x2219 /* SUN */
537 #define DW_AT_SUN_obj_dir                       0x2220 /* SUN */
538 #define DW_AT_SUN_obj_file                      0x2221 /* SUN */
539 #define DW_AT_SUN_original_name                 0x2222 /* SUN */
540 #define DW_AT_SUN_hwcprof_signature             0x2223 /* SUN */
541 #define DW_AT_SUN_amd64_parmdump                0x2224 /* SUN */
542 #define DW_AT_SUN_part_link_name                0x2225 /* SUN */
543 #define DW_AT_SUN_link_name                     0x2226 /* SUN */
544 #define DW_AT_SUN_pass_with_const               0x2227 /* SUN */
545 #define DW_AT_SUN_return_with_const             0x2228 /* SUN */
546 #define DW_AT_SUN_import_by_name                0x2229 /* SUN */
547 #define DW_AT_SUN_f90_pointer                   0x222a /* SUN */
548 #define DW_AT_SUN_pass_by_ref                   0x222b /* SUN */
549 #define DW_AT_SUN_f90_allocatable               0x222c /* SUN */
550 #define DW_AT_SUN_f90_assumed_shape_array       0x222d /* SUN */
551 #define DW_AT_SUN_c_vla                         0x222e /* SUN */
552 #define DW_AT_SUN_return_value_ptr              0x2230 /* SUN */
553 #define DW_AT_SUN_dtor_start                    0x2231 /* SUN */
554 #define DW_AT_SUN_dtor_length                   0x2232 /* SUN */
555 #define DW_AT_SUN_dtor_state_initial            0x2233 /* SUN */
556 #define DW_AT_SUN_dtor_state_final              0x2234 /* SUN */
557 #define DW_AT_SUN_dtor_state_deltas             0x2235 /* SUN */
558 #define DW_AT_SUN_import_by_lname               0x2236 /* SUN */
559 #define DW_AT_SUN_f90_use_only                  0x2237 /* SUN */
560 #define DW_AT_SUN_namelist_spec                 0x2238 /* SUN */
561 #define DW_AT_SUN_is_omp_child_func             0x2239 /* SUN */
562 #define DW_AT_SUN_fortran_main_alias            0x223a /* SUN */
563 #define DW_AT_SUN_fortran_based                 0x223b /* SUN */
564 
565 /*   See http://gcc.gnu.org/wiki/DW_AT_GNAT_descriptive_type .  */
566 #define DW_AT_use_GNAT_descriptive_type         0x2301 /* GNAT */
567 #define DW_AT_GNAT_descriptive_type             0x2302 /* GNAT */
568 
569 /* Go-specific type attributes */
570 #define DW_AT_go_kind                           0x2900
571 #define DW_AT_go_key                            0x2901
572 #define DW_AT_go_elem                           0x2902
573 #define DW_AT_go_embedded_field                 0x2903 /* Attribute for DW_TAG_member of a struct type. Nonzero value indicates the struct field is an embedded field. */
574 #define DW_AT_go_runtime_type                   0x2904
575 
576 /* UPC extension */
577 #define DW_AT_upc_threads_scaled                0x3210 /* UPC */
578 
579 /* PGI (STMicroelectronics) extensions. */
580 #define DW_AT_PGI_lbase                         0x3a00 /* PGI. Block, constant, reference. This attribute is an ASTPLAB extension used to describe the array local base.  */
581 #define DW_AT_PGI_soffset                       0x3a01  /* PGI. Block, constant, reference. ASTPLAB adds this attribute to describe the section offset, or the offset to the first element in the dimension. */
582 #define DW_AT_PGI_lstride                       0x3a02  /* PGI. Block, constant, reference. ASTPLAB adds this attribute to describe the linear stride or the distance between elements in the dimension. */
583 
584 /* There are two groups of Apple extensions here, it is
585    unclear what exactly is correct.  */
586 #define DW_AT_APPLE_optimized                   0x3fe1 /* Apple */
587 #define DW_AT_APPLE_flags                       0x3fe2 /* Apple */
588 #define DW_AT_APPLE_isa                         0x3fe3 /* Apple */
589 #define DW_AT_APPLE_block                       0x3fe4 /* Apple */
590 #define DW_AT_APPLE_major_runtime_vers          0x3fe5 /* Apple */
591 #define DW_AT_APPLE_runtime_class               0x3fe6 /* Apple */
592 #define DW_AT_APPLE_omit_frame_ptr              0x3fe7 /* Apple */
593 
594 /* Apple Extensions for closures  */
595 #define DW_AT_APPLE_closure                     0x3fe4 /* Apple */
596 /* Apple Extensions for Objective-C runtime info */
597 #define DW_AT_APPLE_major_runtime_vers          0x3fe5 /* Apple */
598 #define DW_AT_APPLE_runtime_class               0x3fe6 /* Apple */
599 
600 
601 #define DW_AT_hi_user                           0x3fff
602 
603 /* OP values 0x01,0x02,0x04,0x05,0x07 are DWARF1 only */
604 #define DW_OP_addr                      0x03
605 #define DW_OP_deref                     0x06
606 #define DW_OP_const1u                   0x08
607 #define DW_OP_const1s                   0x09
608 #define DW_OP_const2u                   0x0a
609 #define DW_OP_const2s                   0x0b
610 #define DW_OP_const4u                   0x0c
611 #define DW_OP_const4s                   0x0d
612 #define DW_OP_const8u                   0x0e
613 #define DW_OP_const8s                   0x0f
614 #define DW_OP_constu                    0x10
615 #define DW_OP_consts                    0x11
616 #define DW_OP_dup                       0x12
617 #define DW_OP_drop                      0x13
618 #define DW_OP_over                      0x14
619 #define DW_OP_pick                      0x15
620 #define DW_OP_swap                      0x16
621 #define DW_OP_rot                       0x17
622 #define DW_OP_xderef                    0x18
623 #define DW_OP_abs                       0x19
624 #define DW_OP_and                       0x1a
625 #define DW_OP_div                       0x1b
626 #define DW_OP_minus                     0x1c
627 #define DW_OP_mod                       0x1d
628 #define DW_OP_mul                       0x1e
629 #define DW_OP_neg                       0x1f
630 #define DW_OP_not                       0x20
631 #define DW_OP_or                        0x21
632 #define DW_OP_plus                      0x22
633 #define DW_OP_plus_uconst               0x23
634 #define DW_OP_shl                       0x24
635 #define DW_OP_shr                       0x25
636 #define DW_OP_shra                      0x26
637 #define DW_OP_xor                       0x27
638 #define DW_OP_bra                       0x28
639 #define DW_OP_eq                        0x29
640 #define DW_OP_ge                        0x2a
641 #define DW_OP_gt                        0x2b
642 #define DW_OP_le                        0x2c
643 #define DW_OP_lt                        0x2d
644 #define DW_OP_ne                        0x2e
645 #define DW_OP_skip                      0x2f
646 #define DW_OP_lit0                      0x30
647 #define DW_OP_lit1                      0x31
648 #define DW_OP_lit2                      0x32
649 #define DW_OP_lit3                      0x33
650 #define DW_OP_lit4                      0x34
651 #define DW_OP_lit5                      0x35
652 #define DW_OP_lit6                      0x36
653 #define DW_OP_lit7                      0x37
654 #define DW_OP_lit8                      0x38
655 #define DW_OP_lit9                      0x39
656 #define DW_OP_lit10                     0x3a
657 #define DW_OP_lit11                     0x3b
658 #define DW_OP_lit12                     0x3c
659 #define DW_OP_lit13                     0x3d
660 #define DW_OP_lit14                     0x3e
661 #define DW_OP_lit15                     0x3f
662 #define DW_OP_lit16                     0x40
663 #define DW_OP_lit17                     0x41
664 #define DW_OP_lit18                     0x42
665 #define DW_OP_lit19                     0x43
666 #define DW_OP_lit20                     0x44
667 #define DW_OP_lit21                     0x45
668 #define DW_OP_lit22                     0x46
669 #define DW_OP_lit23                     0x47
670 #define DW_OP_lit24                     0x48
671 #define DW_OP_lit25                     0x49
672 #define DW_OP_lit26                     0x4a
673 #define DW_OP_lit27                     0x4b
674 #define DW_OP_lit28                     0x4c
675 #define DW_OP_lit29                     0x4d
676 #define DW_OP_lit30                     0x4e
677 #define DW_OP_lit31                     0x4f
678 #define DW_OP_reg0                      0x50
679 #define DW_OP_reg1                      0x51
680 #define DW_OP_reg2                      0x52
681 #define DW_OP_reg3                      0x53
682 #define DW_OP_reg4                      0x54
683 #define DW_OP_reg5                      0x55
684 #define DW_OP_reg6                      0x56
685 #define DW_OP_reg7                      0x57
686 #define DW_OP_reg8                      0x58
687 #define DW_OP_reg9                      0x59
688 #define DW_OP_reg10                     0x5a
689 #define DW_OP_reg11                     0x5b
690 #define DW_OP_reg12                     0x5c
691 #define DW_OP_reg13                     0x5d
692 #define DW_OP_reg14                     0x5e
693 #define DW_OP_reg15                     0x5f
694 #define DW_OP_reg16                     0x60
695 #define DW_OP_reg17                     0x61
696 #define DW_OP_reg18                     0x62
697 #define DW_OP_reg19                     0x63
698 #define DW_OP_reg20                     0x64
699 #define DW_OP_reg21                     0x65
700 #define DW_OP_reg22                     0x66
701 #define DW_OP_reg23                     0x67
702 #define DW_OP_reg24                     0x68
703 #define DW_OP_reg25                     0x69
704 #define DW_OP_reg26                     0x6a
705 #define DW_OP_reg27                     0x6b
706 #define DW_OP_reg28                     0x6c
707 #define DW_OP_reg29                     0x6d
708 #define DW_OP_reg30                     0x6e
709 #define DW_OP_reg31                     0x6f
710 #define DW_OP_breg0                     0x70
711 #define DW_OP_breg1                     0x71
712 #define DW_OP_breg2                     0x72
713 #define DW_OP_breg3                     0x73
714 #define DW_OP_breg4                     0x74
715 #define DW_OP_breg5                     0x75
716 #define DW_OP_breg6                     0x76
717 #define DW_OP_breg7                     0x77
718 #define DW_OP_breg8                     0x78
719 #define DW_OP_breg9                     0x79
720 #define DW_OP_breg10                    0x7a
721 #define DW_OP_breg11                    0x7b
722 #define DW_OP_breg12                    0x7c
723 #define DW_OP_breg13                    0x7d
724 #define DW_OP_breg14                    0x7e
725 #define DW_OP_breg15                    0x7f
726 #define DW_OP_breg16                    0x80
727 #define DW_OP_breg17                    0x81
728 #define DW_OP_breg18                    0x82
729 #define DW_OP_breg19                    0x83
730 #define DW_OP_breg20                    0x84
731 #define DW_OP_breg21                    0x85
732 #define DW_OP_breg22                    0x86
733 #define DW_OP_breg23                    0x87
734 #define DW_OP_breg24                    0x88
735 #define DW_OP_breg25                    0x89
736 #define DW_OP_breg26                    0x8a
737 #define DW_OP_breg27                    0x8b
738 #define DW_OP_breg28                    0x8c
739 #define DW_OP_breg29                    0x8d
740 #define DW_OP_breg30                    0x8e
741 #define DW_OP_breg31                    0x8f
742 #define DW_OP_regx                      0x90
743 #define DW_OP_fbreg                     0x91
744 #define DW_OP_bregx                     0x92
745 #define DW_OP_piece                     0x93
746 #define DW_OP_deref_size                0x94
747 #define DW_OP_xderef_size               0x95
748 #define DW_OP_nop                       0x96
749 #define DW_OP_push_object_address       0x97 /* DWARF3 */
750 #define DW_OP_call2                     0x98 /* DWARF3 */
751 #define DW_OP_call4                     0x99 /* DWARF3 */
752 #define DW_OP_call_ref                  0x9a /* DWARF3 */
753 #define DW_OP_form_tls_address          0x9b /* DWARF3f */
754 #define DW_OP_call_frame_cfa            0x9c /* DWARF3f */
755 #define DW_OP_bit_piece                 0x9d /* DWARF3f */
756 #define DW_OP_implicit_value            0x9e /* DWARF4 */
757 #define DW_OP_stack_value               0x9f /* DWARF4 */
758 #define DW_OP_implicit_pointer          0xa0 /* DWARF5 */
759 #define DW_OP_addrx                     0xa1 /* DWARF5 */
760 #define DW_OP_constx                    0xa2 /* DWARF5 */
761 #define DW_OP_entry_value               0xa3 /* DWARF5 */
762 #define DW_OP_const_type                0xa4 /* DWARF5 */
763 #define DW_OP_regval_type               0xa5 /* DWARF5 */
764 #define DW_OP_deref_type                0xa6 /* DWARF5 */
765 #define DW_OP_xderef_type               0xa7 /* DWARF5 */
766 #define DW_OP_convert                   0xa8 /* DWARF5 */
767 #define DW_OP_reinterpret               0xa9 /* DWARF5 */
768 
769 
770     /* GNU extensions. */
771 #define DW_OP_GNU_push_tls_address      0xe0 /* GNU */
772 
773 /* Follows extension so dwarfdump prints the most-likely-useful name. */
774 #define DW_OP_lo_user                   0xe0
775 
776 
777 #define DW_OP_GNU_uninit                0xf0 /* GNU */
778 #define DW_OP_GNU_encoded_addr          0xf1 /* GNU */
779 #define DW_OP_GNU_implicit_pointer      0xf2 /* GNU */
780 #define DW_OP_GNU_entry_value           0xf3 /* GNU */
781 #define DW_OP_GNU_const_type            0xf4 /* GNU */
782 #define DW_OP_GNU_regval_type           0xf5 /* GNU */
783 #define DW_OP_GNU_deref_type            0xf6 /* GNU */
784 #define DW_OP_GNU_convert               0xf7 /* GNU */
785 #define DW_OP_GNU_reinterpret           0xf9 /* GNU */
786 #define DW_OP_GNU_parameter_ref         0xfa /* GNU */
787 #define DW_OP_GNU_addr_index            0xfb /* GNU DebugFission */
788 #define DW_OP_GNU_const_index           0xfc /* GNU DebugFission */
789 
790     /* HP extensions. */
791 #define DW_OP_HP_unknown                0xe0 /* HP conflict: GNU */
792 #define DW_OP_HP_is_value               0xe1 /* HP */
793 #define DW_OP_HP_fltconst4              0xe2 /* HP */
794 #define DW_OP_HP_fltconst8              0xe3 /* HP */
795 #define DW_OP_HP_mod_range              0xe4 /* HP */
796 #define DW_OP_HP_unmod_range            0xe5 /* HP */
797 #define DW_OP_HP_tls                    0xe6 /* HP */
798 
799 #define DW_OP_INTEL_bit_piece           0xe8 /* Intel: made obsolete by DW_OP_bit_piece above. */
800 
801    /* Apple extension. */
802 #define DW_OP_APPLE_uninit              0xf0 /* Apple */
803 #define DW_OP_PGI_omp_thread_num        0xf8 /* PGI (STMicroelectronics) */
804 
805 #define DW_OP_hi_user                   0xff
806 
807 #define DW_ATE_address                0x01
808 #define DW_ATE_boolean                0x02
809 #define DW_ATE_complex_float          0x03
810 #define DW_ATE_float                  0x04
811 #define DW_ATE_signed                 0x05
812 #define DW_ATE_signed_char            0x06
813 #define DW_ATE_unsigned               0x07
814 #define DW_ATE_unsigned_char          0x08
815 #define DW_ATE_imaginary_float        0x09  /* DWARF3 */
816 #define DW_ATE_packed_decimal         0x0a  /* DWARF3f */
817 #define DW_ATE_numeric_string         0x0b  /* DWARF3f */
818 #define DW_ATE_edited                 0x0c  /* DWARF3f */
819 #define DW_ATE_signed_fixed           0x0d  /* DWARF3f */
820 #define DW_ATE_unsigned_fixed         0x0e  /* DWARF3f */
821 #define DW_ATE_decimal_float          0x0f  /* DWARF3f */
822 #define DW_ATE_UTF                    0x10  /* DWARF4 */
823 #define DW_ATE_UCS                    0x11  /* DWARF5 */
824 #define DW_ATE_ASCII                  0x12  /* DWARF5 */
825 
826 
827 /* ALTIUM extensions. x80, x81 */
828 #define DW_ATE_ALTIUM_fract           0x80 /* ALTIUM __fract type */
829 
830 /* Follows extension so dwarfdump prints the most-likely-useful name. */
831 #define DW_ATE_lo_user                0x80
832 
833 /* Shown here to help dwarfdump build script. */
834 #define DW_ATE_ALTIUM_accum           0x81 /* ALTIUM __accum type */
835 
836 /* HP Floating point extensions. */
837 #define DW_ATE_HP_float80             0x80 /* (80 bit). HP */
838 
839 
840 #define DW_ATE_HP_complex_float80     0x81 /* Complex (80 bit). HP  */
841 #define DW_ATE_HP_float128            0x82 /* (128 bit). HP */
842 #define DW_ATE_HP_complex_float128    0x83 /* Complex (128 bit). HP */
843 #define DW_ATE_HP_floathpintel        0x84 /* (82 bit IA64). HP */
844 #define DW_ATE_HP_imaginary_float80   0x85 /* HP */
845 #define DW_ATE_HP_imaginary_float128  0x86 /* HP */
846 
847 /* Sun extensions */
848 #define DW_ATE_SUN_interval_float     0x91
849 #define DW_ATE_SUN_imaginary_float    0x92 /* Obsolete: See DW_ATE_imaginary_float */
850 #define DW_ATE_hi_user                0xff
851 
852 /*   DWARF5  Defaulted Member Encodings. */
853 #define DW_DEFAULTED_no             0x0      /* DWARF5 */
854 #define DW_DEFAULTED_in_class       0x1      /* DWARF5 */
855 #define DW_DEFAULTED_out_of_class   0x2      /* DWARF5 */
856 
857 #define DW_IDX_compile_unit         0x1      /* DWARF5 */
858 #define DW_IDX_type_unit            0x2      /* DWARF5 */
859 #define DW_IDX_die_offset           0x3      /* DWARF5 */
860 #define DW_IDX_parent               0x4      /* DWARF5 */
861 #define DW_IDX_type_hash            0x5      /* DWARF5 */
862 #define DW_IDX_lo_user              0x2000   /* DWARF5 */
863 #define DW_IDX_hi_user              0x0fff   /* DWARF5 */
864 
865 /* These with not-quite-the-same-names were used in DWARF4
866    and never official and should not be used by anyone. */
867 #define DW_LLEX_end_of_list_entry   0x0      /* DWARF4 experimental */
868 #define DW_LLEX_base_address_selection_entry 0x01 /* DWARF4 experimental */
869 #define DW_LLEX_start_end_entry     0x02     /* DWARF4 experimental */
870 #define DW_LLEX_start_length_entry  0x03     /* DWARF4 experimental */
871 #define DW_LLEX_offset_pair_entry   0x04     /* DWARF4 experimental */
872 
873 /* DWARF5 Location List Entries in Split Objects */
874 #define DW_LLE_end_of_list          0x0      /* DWARF5 */
875 #define DW_LLE_base_addressx        0x01     /* DWARF5 */
876 #define DW_LLE_startx_endx          0x02     /* DWARF5 */
877 #define DW_LLE_startx_length        0x03     /* DWARF5 */
878 #define DW_LLE_offset_pair          0x04     /* DWARF5 */
879 #define DW_LLE_default_location     0x05     /* DWARF5 */
880 #define DW_LLE_base_address         0x06     /* DWARF5 */
881 #define DW_LLE_start_end            0x07     /* DWARF5 */
882 #define DW_LLE_start_length         0x08     /* DWARF5 */
883 
884 /* DWARF5 Range List Entries */
885 #define DW_RLE_end_of_list          0x00     /* DWARF5 */
886 #define DW_RLE_base_addressx        0x01     /* DWARF5 */
887 #define DW_RLE_startx_endx          0x02     /* DWARF5 */
888 #define DW_RLE_startx_length        0x03     /* DWARF5 */
889 #define DW_RLE_offset_pair          0x04     /* DWARF5 */
890 #define DW_RLE_base_address         0x05     /* DWARF5 */
891 #define DW_RLE_start_end            0x06     /* DWARF5 */
892 #define DW_RLE_start_length         0x07     /* DWARF5 */
893 
894 /* DWARF5 Unit header unit type encodings */
895 #define DW_UT_compile               0x01  /* DWARF5 */
896 #define DW_UT_type                  0x02  /* DWARF5 */
897 #define DW_UT_partial               0x03  /* DWARF5 */
898 #define DW_UT_skeleton              0x04  /* DWARF5 */
899 #define DW_UT_split_compile         0x05  /* DWARF5 */
900 #define DW_UT_split_type            0x06  /* DWARF5 */
901 #define DW_UT_lo_user               0x80  /* DWARF5 */
902 #define DW_UT_hi_user               0xff  /* DWARF5 */
903 
904 
905 /*  DWARF5 DebugFission object section id values
906     for  .dwp object section offsets hash table.
907     0 is reserved, not used.
908     2 is actually reserved, not used in DWARF5.
909     But 2 may be seen in some DWARF4 objects.
910 */
911 #define DW_SECT_INFO        1  /* .debug_info.dwo        DWARF5 */
912 #define DW_SECT_TYPES       2  /* .debug_types.dwo   pre-DWARF5 */
913 #define DW_SECT_ABBREV      3  /* .debug_abbrev.dwo      DWARF5 */
914 #define DW_SECT_LINE        4  /* .debug_line.dwo        DWARF5 */
915 #define DW_SECT_LOCLISTS    5  /* .debug_loclists.dwo    DWARF5 */
916 #define DW_SECT_STR_OFFSETS 6  /* .debug_str_offsets.dwo DWARF5 */
917 #define DW_SECT_MACRO       7  /* .debug_macro.dwo       DWARF5 */
918 #define DW_SECT_RNGLISTS    8  /* .debug_rnglists.dwo    DWARF5 */
919 
920 
921 /* Decimal Sign codes. */
922 #define DW_DS_unsigned                  0x01 /* DWARF3f */
923 #define DW_DS_leading_overpunch         0x02 /* DWARF3f */
924 #define DW_DS_trailing_overpunch        0x03 /* DWARF3f */
925 #define DW_DS_leading_separate          0x04 /* DWARF3f */
926 #define DW_DS_trailing_separate         0x05 /* DWARF3f */
927 
928 /* Endian code name. */
929 #define DW_END_default                  0x00 /* DWARF3f */
930 #define DW_END_big                      0x01 /* DWARF3f */
931 #define DW_END_little                   0x02 /* DWARF3f */
932 
933 #define DW_END_lo_user                  0x40 /* DWARF3f */
934 #define DW_END_hi_user                  0xff /* DWARF3f */
935 
936 /*  For use with DW_TAG_SUN_codeflags
937     If DW_TAG_SUN_codeflags is accepted as a dwarf standard, then
938     standard dwarf ATCF entries start at 0x01 */
939 #define DW_ATCF_lo_user                 0x40 /* SUN */
940 #define DW_ATCF_SUN_mop_bitfield        0x41 /* SUN */
941 #define DW_ATCF_SUN_mop_spill           0x42 /* SUN */
942 #define DW_ATCF_SUN_mop_scopy           0x43 /* SUN */
943 #define DW_ATCF_SUN_func_start          0x44 /* SUN */
944 #define DW_ATCF_SUN_end_ctors           0x45 /* SUN */
945 #define DW_ATCF_SUN_branch_target       0x46 /* SUN */
946 #define DW_ATCF_SUN_mop_stack_probe     0x47 /* SUN */
947 #define DW_ATCF_SUN_func_epilog         0x48 /* SUN */
948 #define DW_ATCF_hi_user                 0xff /* SUN */
949 
950 /* Accessibility code name. */
951 #define DW_ACCESS_public                0x01
952 #define DW_ACCESS_protected             0x02
953 #define DW_ACCESS_private               0x03
954 
955 /* Visibility code name. */
956 #define DW_VIS_local                    0x01
957 #define DW_VIS_exported                 0x02
958 #define DW_VIS_qualified                0x03
959 
960 /* Virtuality code name. */
961 #define DW_VIRTUALITY_none              0x00
962 #define DW_VIRTUALITY_virtual           0x01
963 #define DW_VIRTUALITY_pure_virtual      0x02
964 
965 #define DW_LANG_C89                     0x0001
966 #define DW_LANG_C                       0x0002
967 #define DW_LANG_Ada83                   0x0003
968 #define DW_LANG_C_plus_plus             0x0004
969 #define DW_LANG_Cobol74                 0x0005
970 #define DW_LANG_Cobol85                 0x0006
971 #define DW_LANG_Fortran77               0x0007
972 #define DW_LANG_Fortran90               0x0008
973 #define DW_LANG_Pascal83                0x0009
974 #define DW_LANG_Modula2                 0x000a
975 #define DW_LANG_Java                    0x000b /* DWARF3 */
976 #define DW_LANG_C99                     0x000c /* DWARF3 */
977 #define DW_LANG_Ada95                   0x000d /* DWARF3 */
978 #define DW_LANG_Fortran95               0x000e /* DWARF3 */
979 #define DW_LANG_PLI                     0x000f /* DWARF3 */
980 #define DW_LANG_ObjC                    0x0010 /* DWARF3f */
981 #define DW_LANG_ObjC_plus_plus          0x0011 /* DWARF3f */
982 #define DW_LANG_UPC                     0x0012 /* DWARF3f */
983 #define DW_LANG_D                       0x0013 /* DWARF3f */
984 #define DW_LANG_Python                  0x0014 /* DWARF4 */
985 /* The following 2 are not yet formally approved October 2010, but
986    it seems extremely likely they will be approved as the committee
987    chair agrees these should be ok and no one on the committee
988    has objected. */
989 #define DW_LANG_OpenCL                  0x0015 /* DWARF5 */
990 #define DW_LANG_Go                      0x0016 /* DWARF5 */
991 #define DW_LANG_Modula3                 0x0017 /* DWARF5 */
992 #define DW_LANG_Haskel                  0x0018 /* DWARF5 */
993 #define DW_LANG_C_plus_plus_03          0x0019 /* DWARF5 */
994 #define DW_LANG_C_plus_plus_11          0x001a /* DWARF5 */
995 #define DW_LANG_OCaml                   0x001b /* DWARF5 */
996 #define DW_LANG_Rust                    0x001c /* DWARF5 */
997 #define DW_LANG_C11                     0x001d /* DWARF5 */
998 #define DW_LANG_Swift                   0x001e /* DWARF5 */
999 #define DW_LANG_Julia                   0x001f /* DWARF5 */
1000 #define DW_LANG_Dylan                   0x0020 /* DWARF5 */
1001 #define DW_LANG_C_plus_plus_14          0x0021 /* DWARF5 */
1002 #define DW_LANG_Fortran03               0x0022 /* DWARF5 */
1003 #define DW_LANG_Fortran08               0x0023 /* DWARF5 */
1004 #define DW_LANG_RenderScript            0x0024 /* DWARF5 */
1005 #define DW_LANG_BLISS                   0x0025 /* DWARF5 */
1006 #define DW_LANG_lo_user                 0x8000
1007 #define DW_LANG_Mips_Assembler          0x8001 /* MIPS   */
1008 #define DW_LANG_Upc                     0x8765 /* UPC, use
1009                                         DW_LANG_UPC instead. */
1010 /* ALTIUM extension */
1011 #define DW_LANG_ALTIUM_Assembler        0x9101  /* ALTIUM */
1012 
1013 /* Sun extensions */
1014 #define DW_LANG_SUN_Assembler           0x9001 /* SUN */
1015 
1016 #define DW_LANG_hi_user                 0xffff
1017 
1018 /* Identifier case name. */
1019 #define DW_ID_case_sensitive            0x00
1020 #define DW_ID_up_case                   0x01
1021 #define DW_ID_down_case                 0x02
1022 #define DW_ID_case_insensitive          0x03
1023 
1024 /* Calling Convention Name. */
1025 #define DW_CC_normal                    0x01
1026 #define DW_CC_program                   0x02
1027 #define DW_CC_nocall                    0x03
1028 #define DW_CC_pass_by_reference         0x04 /* DWARF5 */
1029 #define DW_CC_pass_by_value             0x05 /* DWARF5 */
1030 #define DW_CC_lo_user                   0x40
1031 
1032 #define DW_CC_GNU_renesas_sh            0x40 /* GNU */
1033 #define DW_CC_GNU_borland_fastcall_i386 0x41 /* GNU */
1034 
1035 
1036 
1037 /* ALTIUM extensions. */
1038 /* Function is an interrupt handler, return address on system stack. */
1039 #define DW_CC_ALTIUM_interrupt          0x65  /* ALTIUM*/
1040 
1041 /* Near function model, return address on system stack. */
1042 #define DW_CC_ALTIUM_near_system_stack  0x66  /*ALTIUM */
1043 
1044 /* Near function model, return address on user stack. */
1045 #define DW_CC_ALTIUM_near_user_stack    0x67  /* ALTIUM */
1046 
1047 /* Huge function model, return address on user stack.  */
1048 #define DW_CC_ALTIUM_huge_user_stack    0x68  /* ALTIUM */
1049 
1050 
1051 #define DW_CC_hi_user                   0xff
1052 
1053 /* Inline Code Name. */
1054 #define DW_INL_not_inlined              0x00
1055 #define DW_INL_inlined                  0x01
1056 #define DW_INL_declared_not_inlined     0x02
1057 #define DW_INL_declared_inlined         0x03
1058 
1059 /* Ordering Name. */
1060 #define DW_ORD_row_major                0x00
1061 #define DW_ORD_col_major                0x01
1062 
1063 /* Discriminant Descriptor Name. */
1064 #define DW_DSC_label                    0x00
1065 #define DW_DSC_range                    0x01
1066 
1067 /*  Line number header entry format encodings. DWARF5 */
1068 #define DW_LNCT_path                    0x1 /* DWARF5 */
1069 #define DW_LNCT_directory_index         0x2 /* DWARF5 */
1070 #define DW_LNCT_timestamp               0x3 /* DWARF5 */
1071 #define DW_LNCT_size                    0x4 /* DWARF5 */
1072 #define DW_LNCT_MD5                     0x5 /* DWARF5 */
1073 /* Experimental two-level line tables. Non standard */
1074 #define DW_LNCT_GNU_subprogram_name     0x6
1075 #define DW_LNCT_GNU_decl_file           0x7
1076 #define DW_LNCT_GNU_decl_line           0x8
1077 #define DW_LNCT_lo_user                 0x2000 /* DWARF5 */
1078 #define DW_LNCT_hi_user                 0x3fff /* DWARF5 */
1079 
1080 /* Line number standard opcode name. */
1081 #define DW_LNS_copy                     0x01
1082 #define DW_LNS_advance_pc               0x02
1083 #define DW_LNS_advance_line             0x03
1084 #define DW_LNS_set_file                 0x04
1085 #define DW_LNS_set_column               0x05
1086 #define DW_LNS_negate_stmt              0x06
1087 #define DW_LNS_set_basic_block          0x07
1088 #define DW_LNS_const_add_pc             0x08
1089 #define DW_LNS_fixed_advance_pc         0x09
1090 #define DW_LNS_set_prologue_end         0x0a /* DWARF3 */
1091 #define DW_LNS_set_epilogue_begin       0x0b /* DWARF3 */
1092 #define DW_LNS_set_isa                  0x0c /* DWARF3 */
1093 
1094 /*  Experimental two-level line tables. NOT STD DWARF5 */
1095 /*  Not saying GNU or anything. There are no
1096     DW_LNS_lo_user or DW_LNS_hi_user values though.
1097     DW_LNS_set_address_from_logical and
1098     DW_LNS_set_subprogram being both 0xd
1099     to avoid using up more space in the special opcode table.
1100     EXPERIMENTAL DW_LNS follow.
1101 */
1102 #define DW_LNS_set_address_from_logical 0x0d /* Actuals table only */
1103 #define DW_LNS_set_subprogram           0x0d /* Logicals table only */
1104 #define DW_LNS_inlined_call             0x0e /* Logicals table only */
1105 #define DW_LNS_pop_context              0x0f /* Logicals table only */
1106 
1107 /* Line number extended opcode name. */
1108 #define DW_LNE_end_sequence             0x01
1109 #define DW_LNE_set_address              0x02
1110 #define DW_LNE_define_file              0x03  /* DWARF4 and earlier only */
1111 #define DW_LNE_set_discriminator        0x04  /* DWARF4 */
1112 
1113 /* HP extensions. */
1114 #define DW_LNE_HP_negate_is_UV_update       0x11 /* 17 HP */
1115 #define DW_LNE_HP_push_context              0x12 /* 18 HP */
1116 #define DW_LNE_HP_pop_context               0x13 /* 19 HP */
1117 #define DW_LNE_HP_set_file_line_column      0x14 /* 20 HP */
1118 #define DW_LNE_HP_set_routine_name          0x15 /* 21 HP */
1119 #define DW_LNE_HP_set_sequence              0x16 /* 22 HP */
1120 #define DW_LNE_HP_negate_post_semantics     0x17 /* 23 HP */
1121 #define DW_LNE_HP_negate_function_exit      0x18 /* 24 HP */
1122 #define DW_LNE_HP_negate_front_end_logical  0x19 /* 25 HP */
1123 #define DW_LNE_HP_define_proc               0x20 /* 32 HP */
1124 
1125 #define DW_LNE_HP_source_file_correlation   0x80 /* HP */
1126 #define DW_LNE_lo_user                  0x80 /* DWARF3 */
1127 #define DW_LNE_hi_user                  0xff /* DWARF3 */
1128 
1129 /* These are known values for DW_LNS_set_isa. */
1130 /* These identifiers are not defined by any DWARFn standard. */
1131 #define DW_ISA_UNKNOWN   0
1132 /* The following two are ARM specific. */
1133 #define DW_ISA_ARM_thumb 1 /* ARM ISA */
1134 #define DW_ISA_ARM_arm   2 /* ARM ISA */
1135 
1136 
1137 /* Macro information, DWARF5 */
1138 #define DW_MACRO_define                  0x01 /* DWARF5 */
1139 #define DW_MACRO_undef                   0x02 /* DWARF5 */
1140 #define DW_MACRO_start_file              0x03 /* DWARF5 */
1141 #define DW_MACRO_end_file                0x04 /* DWARF5 */
1142 #define DW_MACRO_define_strp             0x05 /* DWARF5 */
1143 #define DW_MACRO_undef_strp              0x06 /* DWARF5 */
1144 #define DW_MACRO_import                  0x07 /* DWARF5 */
1145 #define DW_MACRO_define_sup              0x08 /* DWARF5 */
1146 #define DW_MACRO_undef_sup               0x09 /* DWARF5 */
1147 #define DW_MACRO_import_sup              0x0a /* DWARF5 */
1148 #define DW_MACRO_define_strx             0x0b /* DWARF5 */
1149 #define DW_MACRO_undef_strx              0x0c /* DWARF5 */
1150 #define DW_MACRO_lo_user                 0xe0
1151 #define DW_MACRO_hi_user                 0xff
1152 
1153 /* Macro information, DWARF2-DWARF4. */
1154 #define DW_MACINFO_define               0x01
1155 #define DW_MACINFO_undef                0x02
1156 #define DW_MACINFO_start_file           0x03
1157 #define DW_MACINFO_end_file             0x04
1158 #define DW_MACINFO_vendor_ext           0xff
1159 
1160 /* CFA operator compaction (a space saving measure, see
1161    the DWARF standard) means DW_CFA_extended and DW_CFA_nop
1162    have the same value here.  */
1163 #define DW_CFA_advance_loc        0x40
1164 #define DW_CFA_offset             0x80
1165 #define DW_CFA_restore            0xc0
1166 #define DW_CFA_extended           0
1167 
1168 #define DW_CFA_nop              0x00
1169 #define DW_CFA_set_loc          0x01
1170 #define DW_CFA_advance_loc1     0x02
1171 #define DW_CFA_advance_loc2     0x03
1172 #define DW_CFA_advance_loc4     0x04
1173 #define DW_CFA_offset_extended  0x05
1174 #define DW_CFA_restore_extended 0x06
1175 #define DW_CFA_undefined        0x07
1176 #define DW_CFA_same_value       0x08
1177 #define DW_CFA_register         0x09
1178 #define DW_CFA_remember_state   0x0a
1179 #define DW_CFA_restore_state    0x0b
1180 #define DW_CFA_def_cfa          0x0c
1181 #define DW_CFA_def_cfa_register 0x0d
1182 #define DW_CFA_def_cfa_offset   0x0e
1183 #define DW_CFA_def_cfa_expression 0x0f     /* DWARF3 */
1184 #define DW_CFA_expression       0x10       /* DWARF3 */
1185 #define DW_CFA_offset_extended_sf 0x11     /* DWARF3 */
1186 #define DW_CFA_def_cfa_sf       0x12       /* DWARF3 */
1187 #define DW_CFA_def_cfa_offset_sf 0x13      /* DWARF3 */
1188 #define DW_CFA_val_offset        0x14      /* DWARF3f */
1189 #define DW_CFA_val_offset_sf     0x15      /* DWARF3f */
1190 #define DW_CFA_val_expression    0x16      /* DWARF3f */
1191 #define DW_CFA_lo_user           0x1c
1192 #define DW_CFA_low_user          0x1c  /* Incorrect spelling, do not use. */
1193 
1194 /* SGI/MIPS extension. */
1195 #define DW_CFA_MIPS_advance_loc8 0x1d   /* MIPS */
1196 
1197 /* GNU extensions. */
1198 #define DW_CFA_GNU_window_save   0x2d  /* GNU */
1199 #define DW_CFA_GNU_args_size     0x2e /* GNU  */
1200 #define DW_CFA_GNU_negative_offset_extended  0x2f /* GNU */
1201 
1202 /* Metaware if HC is augmentation, apparently meaning High C
1203    and the op has a single uleb operand.
1204    See http://sourceforge.net/p/elftoolchain/tickets/397/  */
1205 #define DW_CFA_METAWARE_info     0x34
1206 
1207 #define DW_CFA_high_user         0x3f
1208 
1209 /* GNU exception header encoding.  See the Generic
1210    Elf Specification of the Linux Standard Base (LSB).
1211    http://refspecs.freestandards.org/LSB_3.0.0/LSB-Core-generic/LSB-Core-generic/dwarfext.html
1212    The upper 4 bits indicate how the value is to be applied.
1213    The lower 4 bits indicate the format of the data.
1214    These identifiers are not defined by any DWARFn standard.
1215 */
1216 #define DW_EH_PE_absptr   0x00  /* GNU */
1217 #define DW_EH_PE_uleb128  0x01  /* GNU */
1218 #define DW_EH_PE_udata2   0x02  /* GNU */
1219 #define DW_EH_PE_udata4   0x03  /* GNU */
1220 #define DW_EH_PE_udata8   0x04  /* GNU */
1221 #define DW_EH_PE_sleb128  0x09  /* GNU */
1222 #define DW_EH_PE_sdata2   0x0A  /* GNU */
1223 #define DW_EH_PE_sdata4   0x0B  /* GNU */
1224 #define DW_EH_PE_sdata8   0x0C  /* GNU */
1225 
1226 #define DW_EH_PE_pcrel    0x10  /* GNU */
1227 #define DW_EH_PE_textrel  0x20  /* GNU */
1228 #define DW_EH_PE_datarel  0x30  /* GNU */
1229 #define DW_EH_PE_funcrel  0x40  /* GNU */
1230 #define DW_EH_PE_aligned  0x50  /* GNU */
1231 
1232 #define DW_EH_PE_omit     0xff  /* GNU.  Means no value present. */
1233 
1234 
1235 /* Mapping from machine registers and pseudo-regs into the
1236    .debug_frame table.  DW_FRAME entries are machine specific.
1237    These describe MIPS/SGI R3000, R4K, R4400 and all later
1238    MIPS/SGI IRIX machines.  They describe a mapping from
1239    hardware register number to the number used in the table
1240    to identify that register.
1241 
1242    The CFA (Canonical Frame Address) described in DWARF is
1243    called the Virtual Frame Pointer on MIPS/SGI machines.
1244 
1245    The DW_FRAME* names here are MIPS/SGI specific.
1246    Libdwarf interfaces defined in 2008 make the
1247    frame definitions here (and the fixed table sizes
1248    they imply) obsolete.  They are left here for compatibility.
1249 */
1250 /* Default column used for CFA in the libdwarf reader client.
1251    Assumes reg 0 never appears as
1252    a register in DWARF information. Usable for MIPS,
1253    but never a good idea, really.    */
1254 /*  These identifiers are not defined by any DWARFn standard. */
1255 #define DW_FRAME_CFA_COL 0
1256 
1257 #define DW_FRAME_REG1   1  /* integer reg 1 */
1258 #define DW_FRAME_REG2   2  /* integer reg 2 */
1259 #define DW_FRAME_REG3   3  /* integer reg 3 */
1260 #define DW_FRAME_REG4   4  /* integer reg 4 */
1261 #define DW_FRAME_REG5   5  /* integer reg 5 */
1262 #define DW_FRAME_REG6   6  /* integer reg 6 */
1263 #define DW_FRAME_REG7   7  /* integer reg 7 */
1264 #define DW_FRAME_REG8   8  /* integer reg 8 */
1265 #define DW_FRAME_REG9   9  /* integer reg 9 */
1266 #define DW_FRAME_REG10  10 /* integer reg 10 */
1267 #define DW_FRAME_REG11  11 /* integer reg 11 */
1268 #define DW_FRAME_REG12  12 /* integer reg 12 */
1269 #define DW_FRAME_REG13  13 /* integer reg 13 */
1270 #define DW_FRAME_REG14  14 /* integer reg 14 */
1271 #define DW_FRAME_REG15  15 /* integer reg 15 */
1272 #define DW_FRAME_REG16  16 /* integer reg 16 */
1273 #define DW_FRAME_REG17  17 /* integer reg 17 */
1274 #define DW_FRAME_REG18  18 /* integer reg 18 */
1275 #define DW_FRAME_REG19  19 /* integer reg 19 */
1276 #define DW_FRAME_REG20  20 /* integer reg 20 */
1277 #define DW_FRAME_REG21  21 /* integer reg 21 */
1278 #define DW_FRAME_REG22  22 /* integer reg 22 */
1279 #define DW_FRAME_REG23  23 /* integer reg 23 */
1280 #define DW_FRAME_REG24  24 /* integer reg 24 */
1281 #define DW_FRAME_REG25  25 /* integer reg 25 */
1282 #define DW_FRAME_REG26  26 /* integer reg 26 */
1283 #define DW_FRAME_REG27  27 /* integer reg 27 */
1284 #define DW_FRAME_REG28  28 /* integer reg 28 */
1285 #define DW_FRAME_REG29  29 /* integer reg 29 */
1286 #define DW_FRAME_REG30  30 /* integer reg 30 */
1287 #define DW_FRAME_REG31  31 /* integer reg 31, aka ra */
1288 
1289         /* MIPS1, 2 have only some of these 64-bit registers.
1290         ** MIPS1  save/restore takes 2 instructions per 64-bit reg, and
1291         ** in that case, the register is considered stored after the second
1292         ** swc1.
1293         */
1294 #define DW_FRAME_FREG0  32 /* 64-bit floating point reg 0 */
1295 #define DW_FRAME_FREG1  33 /* 64-bit floating point reg 1 */
1296 #define DW_FRAME_FREG2  34 /* 64-bit floating point reg 2 */
1297 #define DW_FRAME_FREG3  35 /* 64-bit floating point reg 3 */
1298 #define DW_FRAME_FREG4  36 /* 64-bit floating point reg 4 */
1299 #define DW_FRAME_FREG5  37 /* 64-bit floating point reg 5 */
1300 #define DW_FRAME_FREG6  38 /* 64-bit floating point reg 6 */
1301 #define DW_FRAME_FREG7  39 /* 64-bit floating point reg 7 */
1302 #define DW_FRAME_FREG8  40 /* 64-bit floating point reg 8 */
1303 #define DW_FRAME_FREG9  41 /* 64-bit floating point reg 9 */
1304 #define DW_FRAME_FREG10 42 /* 64-bit floating point reg 10 */
1305 #define DW_FRAME_FREG11 43 /* 64-bit floating point reg 11 */
1306 #define DW_FRAME_FREG12 44 /* 64-bit floating point reg 12 */
1307 #define DW_FRAME_FREG13 45 /* 64-bit floating point reg 13 */
1308 #define DW_FRAME_FREG14 46 /* 64-bit floating point reg 14 */
1309 #define DW_FRAME_FREG15 47 /* 64-bit floating point reg 15 */
1310 #define DW_FRAME_FREG16 48 /* 64-bit floating point reg 16 */
1311 #define DW_FRAME_FREG17 49 /* 64-bit floating point reg 17 */
1312 #define DW_FRAME_FREG18 50 /* 64-bit floating point reg 18 */
1313 #define DW_FRAME_FREG19 51 /* 64-bit floating point reg 19 */
1314 #define DW_FRAME_FREG20 52 /* 64-bit floating point reg 20 */
1315 #define DW_FRAME_FREG21 53 /* 64-bit floating point reg 21 */
1316 #define DW_FRAME_FREG22 54 /* 64-bit floating point reg 22 */
1317 #define DW_FRAME_FREG23 55 /* 64-bit floating point reg 23 */
1318 #define DW_FRAME_FREG24 56 /* 64-bit floating point reg 24 */
1319 #define DW_FRAME_FREG25 57 /* 64-bit floating point reg 25 */
1320 #define DW_FRAME_FREG26 58 /* 64-bit floating point reg 26 */
1321 #define DW_FRAME_FREG27 59 /* 64-bit floating point reg 27 */
1322 #define DW_FRAME_FREG28 60 /* 64-bit floating point reg 28 */
1323 #define DW_FRAME_FREG29 61 /* 64-bit floating point reg 29 */
1324 #define DW_FRAME_FREG30 62 /* 64-bit floating point reg 30 */
1325 #define DW_FRAME_FREG31 63 /* 64-bit floating point reg 31 */
1326 
1327 #define DW_FRAME_FREG32 64 /* 64-bit floating point reg 32 */
1328 #define DW_FRAME_FREG33 65 /* 64-bit floating point reg 33 */
1329 #define DW_FRAME_FREG34 66 /* 64-bit floating point reg 34 */
1330 #define DW_FRAME_FREG35 67 /* 64-bit floating point reg 35 */
1331 #define DW_FRAME_FREG36 68 /* 64-bit floating point reg 36 */
1332 #define DW_FRAME_FREG37 69 /* 64-bit floating point reg 37 */
1333 #define DW_FRAME_FREG38 70 /* 64-bit floating point reg 38 */
1334 #define DW_FRAME_FREG39 71 /* 64-bit floating point reg 39 */
1335 #define DW_FRAME_FREG40 72 /* 64-bit floating point reg 40 */
1336 #define DW_FRAME_FREG41 73 /* 64-bit floating point reg 41 */
1337 #define DW_FRAME_FREG42 74 /* 64-bit floating point reg 42 */
1338 #define DW_FRAME_FREG43 75 /* 64-bit floating point reg 43 */
1339 #define DW_FRAME_FREG44 76 /* 64-bit floating point reg 44 */
1340 #define DW_FRAME_FREG45 77 /* 64-bit floating point reg 45 */
1341 #define DW_FRAME_FREG46 78 /* 64-bit floating point reg 46 */
1342 #define DW_FRAME_FREG47 79 /* 64-bit floating point reg 47 */
1343 #define DW_FRAME_FREG48 80 /* 64-bit floating point reg 48 */
1344 #define DW_FRAME_FREG49 81 /* 64-bit floating point reg 49 */
1345 #define DW_FRAME_FREG50 82 /* 64-bit floating point reg 50 */
1346 #define DW_FRAME_FREG51 83 /* 64-bit floating point reg 51 */
1347 #define DW_FRAME_FREG52 84 /* 64-bit floating point reg 52 */
1348 #define DW_FRAME_FREG53 85 /* 64-bit floating point reg 53 */
1349 #define DW_FRAME_FREG54 86 /* 64-bit floating point reg 54 */
1350 #define DW_FRAME_FREG55 87 /* 64-bit floating point reg 55 */
1351 #define DW_FRAME_FREG56 88 /* 64-bit floating point reg 56 */
1352 #define DW_FRAME_FREG57 89 /* 64-bit floating point reg 57 */
1353 #define DW_FRAME_FREG58 90 /* 64-bit floating point reg 58 */
1354 #define DW_FRAME_FREG59 91 /* 64-bit floating point reg 59 */
1355 #define DW_FRAME_FREG60 92 /* 64-bit floating point reg 60 */
1356 #define DW_FRAME_FREG61 93 /* 64-bit floating point reg 61 */
1357 #define DW_FRAME_FREG62 94 /* 64-bit floating point reg 62 */
1358 #define DW_FRAME_FREG63 95 /* 64-bit floating point reg 63 */
1359 #define DW_FRAME_FREG64 96 /* 64-bit floating point reg 64 */
1360 #define DW_FRAME_FREG65 97 /* 64-bit floating point reg 65 */
1361 #define DW_FRAME_FREG66 98 /* 64-bit floating point reg 66 */
1362 #define DW_FRAME_FREG67 99 /* 64-bit floating point reg 67 */
1363 #define DW_FRAME_FREG68 100 /* 64-bit floating point reg 68 */
1364 #define DW_FRAME_FREG69 101 /* 64-bit floating point reg 69 */
1365 #define DW_FRAME_FREG70 102 /* 64-bit floating point reg 70 */
1366 #define DW_FRAME_FREG71 103 /* 64-bit floating point reg 71 */
1367 #define DW_FRAME_FREG72 104 /* 64-bit floating point reg 72 */
1368 #define DW_FRAME_FREG73 105 /* 64-bit floating point reg 73 */
1369 #define DW_FRAME_FREG74 106 /* 64-bit floating point reg 74 */
1370 #define DW_FRAME_FREG75 107 /* 64-bit floating point reg 75 */
1371 #define DW_FRAME_FREG76 108 /* 64-bit floating point reg 76 */
1372 
1373 /*  ***IMPORTANT NOTE, TARGET DEPENDENCY ****
1374     The following 4 #defines are dependent on
1375     the target cpu(s) that you apply libdwarf to.
1376     Ensure that DW_FRAME_UNDEFINED_VAL  and DW_FRAME_SAME_VAL
1377     do not conflict with the range [0-DW_FRAME_STATIC_LINK].
1378     The value 63 works for MIPS cpus at least up to the R16000.
1379 
1380     For a cpu with more than 63 real registers
1381     DW_FRAME_HIGHEST_NORMAL_REGISTER
1382     must be increased for things to work properly!
1383     Also ensure that DW_FRAME_UNDEFINED_VAL DW_FRAME_SAME_VAL
1384     are not in the range [0-DW_FRAME_STATIC_LINK]
1385 
1386     Having DW_FRAME_HIGHEST_NORMAL_REGISTER be higher than
1387     is strictly needed is safe.
1388 
1389 */
1390 
1391 #ifndef DW_FRAME_HIGHEST_NORMAL_REGISTER
1392 #define DW_FRAME_HIGHEST_NORMAL_REGISTER 188
1393 #endif
1394 /* This is the number of columns in the Frame Table.
1395    This constant should
1396    be kept in sync with DW_REG_TABLE_SIZE defined in libdwarf.h
1397    It must also be large enough to be beyond the highest
1398    compiler-defined-register (meaning DW_FRAME_RA_COL DW_FRAME_STATIC_LINK
1399    in the MIPS/IRIX case */
1400 #ifndef DW_FRAME_LAST_REG_NUM
1401 #define DW_FRAME_LAST_REG_NUM   (DW_FRAME_HIGHEST_NORMAL_REGISTER + 3)
1402 #endif
1403 
1404 
1405 /* Column recording ra (return address from a function call).
1406    This is common to many architectures, but as a 'simple register'
1407    is not necessarily adequate for all architectures.
1408    For MIPS/IRIX this register number is actually recorded on disk
1409    in the .debug_frame section.
1410    */
1411 #define DW_FRAME_RA_COL  (DW_FRAME_HIGHEST_NORMAL_REGISTER + 1)
1412 
1413 /* Column recording static link applicable to up-level
1414    addressing, as in IRIX mp code, pascal, etc.
1415    This is common to many architectures but
1416    is not necessarily adequate for all architectures.
1417    For MIPS/IRIX this register number is actually recorded on disk
1418    in the .debug_frame section.
1419 */
1420 #define DW_FRAME_STATIC_LINK (DW_FRAME_HIGHEST_NORMAL_REGISTER + 2)
1421 
1422 
1423 
1424 /*
1425   DW_FRAME_UNDEFINED_VAL and  DW_FRAME_SAME_VAL  are
1426   never on disk, just generated by libdwarf. See libdwarf.h
1427   for their values.
1428 */
1429 
1430 
1431 
1432 #define DW_CHILDREN_no               0x00
1433 #define DW_CHILDREN_yes              0x01
1434 
1435 #define DW_ADDR_none            0
1436 
1437 #ifdef __cplusplus
1438 }
1439 #endif
1440 #endif /* __DWARF_H */
1441