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