xref: /illumos-gate/usr/src/lib/libdwarf/common/dwarf.h (revision 7c478bd95313f5f23a4c958a745db2134aa0324)
1 /*
2  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
3  * Use is subject to license terms.
4  */
5 
6 #pragma ident	"%Z%%M%	%I%	%E% SMI"
7 
8 /*
9   Copyright (C) 2000, 2001 Silicon Graphics, Inc.  All Rights Reserved.
10 
11   This program is free software; you can redistribute it and/or modify it
12   under the terms of version 2.1 of the GNU Lesser General Public License
13   as published by the Free Software Foundation.
14 
15   This program is distributed in the hope that it would be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 
19   Further, this software is distributed without any warranty that it is
20   free of the rightful claim of any third person regarding infringement
21   or the like.  Any license provided herein, whether implied or
22   otherwise, applies only to this software file.  Patent licenses, if
23   any, provided herein do not apply to combinations of this program with
24   other software, or any other product whatsoever.
25 
26   You should have received a copy of the GNU Lesser General Public
27   License along with this program; if not, write the Free Software
28   Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307,
29   USA.
30 
31   Contact information:  Silicon Graphics, Inc., 1600 Amphitheatre Pky,
32   Mountain View, CA 94043, or:
33 
34   http://www.sgi.com
35 
36   For further information regarding this notice, see:
37 
38   http://oss.sgi.com/projects/GenInfo/NoticeExplan
39 
40 */
41 
42 
43 #ifndef __DWARF_H
44 #define __DWARF_H
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48 
49 /*
50 	dwarf.h   DWARF  debugging information values
51 	$Revision: 1.24 $    $Date: 2001/05/23 23:34:51 $
52 
53 */
54 
55 
56 #define DW_TAG_array_type		0x01
57 #define DW_TAG_class_type		0x02
58 #define DW_TAG_entry_point		0x03
59 #define DW_TAG_enumeration_type		0x04
60 #define DW_TAG_formal_parameter		0x05
61 #define DW_TAG_imported_declaration	0x08
62 #define DW_TAG_label			0x0a
63 #define DW_TAG_lexical_block		0x0b
64 #define DW_TAG_member			0x0d
65 #define DW_TAG_pointer_type		0x0f
66 #define DW_TAG_reference_type		0x10
67 #define DW_TAG_compile_unit		0x11
68 #define DW_TAG_string_type		0x12
69 #define DW_TAG_structure_type		0x13
70 #define DW_TAG_subroutine_type		0x15
71 #define DW_TAG_typedef			0x16
72 #define DW_TAG_union_type		0x17
73 #define DW_TAG_unspecified_parameters	0x18
74 #define DW_TAG_variant			0x19
75 #define DW_TAG_common_block		0x1a
76 #define DW_TAG_common_inclusion		0x1b
77 #define DW_TAG_inheritance		0x1c
78 #define DW_TAG_inlined_subroutine	0x1d
79 #define DW_TAG_module			0x1e
80 #define DW_TAG_ptr_to_member_type	0x1f
81 #define DW_TAG_set_type			0x20
82 #define DW_TAG_subrange_type		0x21
83 #define DW_TAG_with_stmt		0x22
84 #define DW_TAG_access_declaration	0x23
85 #define DW_TAG_base_type		0x24
86 #define DW_TAG_catch_block		0x25
87 #define DW_TAG_const_type		0x26
88 #define DW_TAG_constant			0x27
89 #define DW_TAG_enumerator		0x28
90 #define DW_TAG_file_type		0x29
91 #define DW_TAG_friend			0x2a
92 #define DW_TAG_namelist			0x2b
93 #define DW_TAG_namelist_item		0x2c
94 #define DW_TAG_packed_type		0x2d
95 #define DW_TAG_subprogram		0x2e
96 #define DW_TAG_template_type_param	0x2f
97 #define DW_TAG_template_value_param	0x30
98 #define DW_TAG_thrown_type		0x31
99 #define DW_TAG_try_block		0x32
100 #define DW_TAG_variant_part		0x33
101 #define DW_TAG_variable			0x34
102 #define DW_TAG_volatile_type		0x35
103 #define DW_TAG_dwarf_procedure		0x36
104 #define DW_TAG_restrict_type		0x37
105 #define DW_TAG_interface_type		0x38
106 #define DW_TAG_namespace		0x39
107 #define DW_TAG_imported_module		0x3a
108 #define DW_TAG_unspecified_type		0x3b
109 #define DW_TAG_partial_unit		0x3c
110 #define DW_TAG_imported_unit		0x3d
111 #define DW_TAG_mutable_type		0x3e
112 #define DW_TAG_lo_user			0x4080
113 #define DW_TAG_MIPS_loop		0x4081
114 #define DW_TAG_hi_user			0xffff
115 
116 /* The following 3 are GNU extensions
117    The TAG names are as if the extensions were dwarf standard,
118    not extensions.
119 */
120 #define DW_TAG_format_label             0x4101 /* for FORTRAN 77, Fortran 90 */
121 #define DW_TAG_function_template        0x4102 /* for C++ */
122 #define DW_TAG_class_template           0x4103 /* for C++ */
123 
124 /* The following are SUN extensions */
125 #define DW_TAG_SUN_function_template	0x4201
126 #define DW_TAG_SUN_class_template	0x4202
127 #define DW_TAG_SUN_struct_template	0x4203
128 #define DW_TAG_SUN_union_template	0x4204
129 #define DW_TAG_SUN_virtual_inheritance	0x4205
130 #define DW_TAG_SUN_codeflags            0x4206
131 #define DW_TAG_SUN_memop_info           0x4207
132 #define DW_TAG_SUN_omp_child_func       0x4208
133 
134 
135 #define DW_children_no			0
136 #define DW_children_yes			1
137 
138 
139 
140 #define DW_FORM_addr			0x01
141 #define DW_FORM_block2			0x03
142 #define DW_FORM_block4			0x04
143 #define DW_FORM_data2			0x05
144 #define DW_FORM_data4			0x06
145 #define DW_FORM_data8			0x07
146 #define DW_FORM_string			0x08
147 #define DW_FORM_block			0x09
148 #define DW_FORM_block1			0x0a
149 #define DW_FORM_data1			0x0b
150 #define DW_FORM_flag			0x0c
151 #define DW_FORM_sdata			0x0d
152 #define DW_FORM_strp			0x0e
153 #define DW_FORM_udata			0x0f
154 #define DW_FORM_ref_addr		0x10
155 #define DW_FORM_ref1			0x11
156 #define DW_FORM_ref2			0x12
157 #define DW_FORM_ref4			0x13
158 #define DW_FORM_ref8 			0x14
159 #define DW_FORM_ref_udata		0x15
160 #define DW_FORM_indirect		0x16
161 
162 #define DW_AT_sibling				0x01
163 #define DW_AT_location				0x02
164 #define DW_AT_name				0x03
165 #define DW_AT_ordering				0x09
166 #define DW_AT_subscr_data			0x0a
167 #define DW_AT_byte_size				0x0b
168 #define DW_AT_bit_offset			0x0c
169 #define DW_AT_bit_size				0x0d
170 #define DW_AT_element_list			0x0f
171 #define DW_AT_stmt_list				0x10
172 #define DW_AT_low_pc				0x11
173 #define DW_AT_high_pc				0x12
174 #define DW_AT_language				0x13
175 #define DW_AT_member				0x14
176 #define DW_AT_discr				0x15
177 #define DW_AT_discr_value			0x16
178 #define DW_AT_visibility			0x17
179 #define DW_AT_import				0x18
180 #define DW_AT_string_length			0x19
181 #define DW_AT_common_reference			0x1a
182 #define DW_AT_comp_dir				0x1b
183 #define DW_AT_const_value			0x1c
184 #define DW_AT_containing_type			0x1d
185 #define DW_AT_default_value			0x1e
186 #define DW_AT_inline				0x20
187 #define DW_AT_is_optional			0x21
188 #define DW_AT_lower_bound			0x22
189 #define DW_AT_producer				0x25
190 #define DW_AT_prototyped			0x27
191 #define DW_AT_return_addr			0x2a
192 #define DW_AT_start_scope			0x2c
193 #define DW_AT_stride_size			0x2e
194 #define DW_AT_upper_bound			0x2f
195 #define DW_AT_abstract_origin			0x31
196 #define DW_AT_accessibility			0x32
197 #define DW_AT_address_class			0x33
198 #define DW_AT_artificial			0x34
199 #define DW_AT_base_types			0x35
200 #define DW_AT_calling_convention		0x36
201 #define DW_AT_count				0x37
202 #define DW_AT_data_member_location		0x38
203 #define DW_AT_decl_column			0x39
204 #define DW_AT_decl_file				0x3a
205 #define DW_AT_decl_line				0x3b
206 #define DW_AT_declaration			0x3c
207 #define DW_AT_discr_list			0x3d
208 #define DW_AT_encoding				0x3e
209 #define DW_AT_external				0x3f
210 #define DW_AT_frame_base			0x40
211 #define DW_AT_friend				0x41
212 #define DW_AT_identifier_case			0x42
213 #define DW_AT_macro_info			0x43
214 #define DW_AT_namelist_item			0x44
215 #define DW_AT_priority				0x45
216 #define DW_AT_segment				0x46
217 #define DW_AT_specification			0x47
218 #define DW_AT_static_link			0x48
219 #define DW_AT_type				0x49
220 #define DW_AT_use_location			0x4a
221 #define DW_AT_variable_parameter		0x4b
222 #define DW_AT_virtuality			0x4c
223 #define DW_AT_vtable_elem_location		0x4d
224 #define DW_AT_allocated				0x4e
225 #define DW_AT_associated			0x4f
226 #define DW_AT_data_location			0x50
227 #define DW_AT_stride				0x51
228 #define DW_AT_entry_pc				0x52
229 #define DW_AT_use_UTF8				0x53
230 #define DW_AT_extension				0x54
231 #define DW_AT_ranges				0x55
232 #define DW_AT_trampoline			0x56
233 #define DW_AT_call_column			0x57
234 #define DW_AT_call_file				0x58
235 #define DW_AT_call_line				0x59
236 #define DW_AT_description			0x5a
237 #define DW_AT_lo_user				0x2000
238 #define DW_AT_MIPS_fde				0x2001
239 #define DW_AT_MIPS_loop_begin			0x2002
240 #define DW_AT_MIPS_tail_loop_begin		0x2003
241 #define DW_AT_MIPS_epilog_begin			0x2004
242 #define DW_AT_MIPS_loop_unroll_factor		0x2005
243 #define DW_AT_MIPS_software_pipeline_depth	0x2006
244 #define DW_AT_MIPS_linkage_name			0x2007
245 #define DW_AT_MIPS_stride		        0x2008
246 #define DW_AT_MIPS_abstract_name	        0x2009
247 #define DW_AT_MIPS_clone_origin		        0x200a
248 #define DW_AT_MIPS_has_inlines		        0x200b
249 #define DW_AT_MIPS_stride_byte		        0x200c
250 #define DW_AT_MIPS_stride_elem		        0x200d
251 #define DW_AT_MIPS_ptr_dopetype			0x200e
252 #define DW_AT_MIPS_allocatable_dopetype		0x200f
253 #define DW_AT_MIPS_assumed_shape_dopetype	0x2010
254 #define DW_AT_MIPS_assumed_size			0x2011
255 
256 
257 /* GNU extensions, currently not used in dwarf2 by egcs
258    Mostly dwarf1 extensions not needed in dwarf2?
259 */
260 #define DW_AT_sf_names                          0x2101
261 #define DW_AT_src_info                          0x2102
262 #define DW_AT_mac_info                          0x2103
263 #define DW_AT_src_coords                        0x2104
264 #define DW_AT_body_begin                        0x2105
265 #define DW_AT_body_end                          0x2106
266 
267 /* Sun extensions */
268 #define DW_AT_SUN_template			0x2201
269 #define DW_AT_SUN_alignment			0x2202
270 #define DW_AT_SUN_vtable			0x2203
271 #define DW_AT_SUN_count_guarantee		0x2204
272 #define DW_AT_SUN_command_line			0x2205
273 #define DW_AT_SUN_vbase				0x2206
274 #define DW_AT_SUN_compile_options		0x2207
275 #define DW_AT_SUN_language			0x2208
276 #define DW_AT_SUN_browser_file			0x2209
277 #define DW_AT_SUN_vtable_abi                    0x2210
278 #define DW_AT_SUN_func_offsets                  0x2211
279 #define DW_AT_SUN_cf_kind                       0x2212
280 #define DW_AT_SUN_vtable_index                  0x2213
281 #define DW_AT_SUN_omp_tpriv_addr                0x2214
282 #define DW_AT_SUN_omp_child_func                0x2215
283 #define DW_AT_SUN_func_offset                   0x2216
284 #define DW_AT_SUN_memop_type_ref                0x2217
285 #define DW_AT_SUN_profile_id                    0x2218
286 #define DW_AT_SUN_memop_signature               0x2219
287 #define DW_AT_SUN_obj_dir                       0x2220
288 #define DW_AT_SUN_obj_file                      0x2221
289 #define DW_AT_SUN_original_name                 0x2222
290 
291 
292 #define DW_AT_hi_user				0x3fff
293 
294 #define DW_OP_addr			0x03
295 #define DW_OP_deref			0x06
296 #define DW_OP_const1u			0x08
297 #define DW_OP_const1s			0x09
298 #define DW_OP_const2u			0x0a
299 #define DW_OP_const2s			0x0b
300 #define DW_OP_const4u			0x0c
301 #define DW_OP_const4s			0x0d
302 #define DW_OP_const8u			0x0e
303 #define DW_OP_const8s			0x0f
304 #define DW_OP_constu			0x10
305 #define DW_OP_consts			0x11
306 #define DW_OP_dup			0x12
307 #define DW_OP_drop			0x13
308 #define DW_OP_over			0x14
309 #define DW_OP_pick			0x15
310 #define DW_OP_swap			0x16
311 #define DW_OP_rot			0x17
312 #define DW_OP_xderef			0x18
313 #define DW_OP_abs			0x19
314 #define DW_OP_and			0x1a
315 #define DW_OP_div			0x1b
316 #define DW_OP_minus			0x1c
317 #define DW_OP_mod			0x1d
318 #define DW_OP_mul			0x1e
319 #define DW_OP_neg			0x1f
320 #define DW_OP_not			0x20
321 #define DW_OP_or			0x21
322 #define DW_OP_plus			0x22
323 #define DW_OP_plus_uconst		0x23
324 #define DW_OP_shl			0x24
325 #define DW_OP_shr			0x25
326 #define DW_OP_shra			0x26
327 #define DW_OP_xor			0x27
328 #define DW_OP_bra			0x28
329 #define DW_OP_eq			0x29
330 #define DW_OP_ge			0x2a
331 #define DW_OP_gt			0x2b
332 #define DW_OP_le			0x2c
333 #define DW_OP_lt			0x2d
334 #define DW_OP_ne			0x2e
335 #define DW_OP_skip			0x2f
336 #define DW_OP_lit0			0x30
337 #define DW_OP_lit1			0x31
338 #define DW_OP_lit2			0x32
339 #define DW_OP_lit3			0x33
340 #define DW_OP_lit4			0x34
341 #define DW_OP_lit5			0x35
342 #define DW_OP_lit6			0x36
343 #define DW_OP_lit7			0x37
344 #define DW_OP_lit8			0x38
345 #define DW_OP_lit9			0x39
346 #define DW_OP_lit10			0x3a
347 #define DW_OP_lit11			0x3b
348 #define DW_OP_lit12			0x3c
349 #define DW_OP_lit13			0x3d
350 #define DW_OP_lit14			0x3e
351 #define DW_OP_lit15			0x3f
352 #define DW_OP_lit16			0x40
353 #define DW_OP_lit17			0x41
354 #define DW_OP_lit18			0x42
355 #define DW_OP_lit19			0x43
356 #define DW_OP_lit20			0x44
357 #define DW_OP_lit21			0x45
358 #define DW_OP_lit22			0x46
359 #define DW_OP_lit23			0x47
360 #define DW_OP_lit24			0x48
361 #define DW_OP_lit25			0x49
362 #define DW_OP_lit26			0x4a
363 #define DW_OP_lit27			0x4b
364 #define DW_OP_lit28			0x4c
365 #define DW_OP_lit29			0x4d
366 #define DW_OP_lit30			0x4e
367 #define DW_OP_lit31			0x4f
368 #define DW_OP_reg0			0x50
369 #define DW_OP_reg1			0x51
370 #define DW_OP_reg2			0x52
371 #define DW_OP_reg3			0x53
372 #define DW_OP_reg4			0x54
373 #define DW_OP_reg5			0x55
374 #define DW_OP_reg6			0x56
375 #define DW_OP_reg7			0x57
376 #define DW_OP_reg8			0x58
377 #define DW_OP_reg9			0x59
378 #define DW_OP_reg10			0x5a
379 #define DW_OP_reg11			0x5b
380 #define DW_OP_reg12			0x5c
381 #define DW_OP_reg13			0x5d
382 #define DW_OP_reg14			0x5e
383 #define DW_OP_reg15			0x5f
384 #define DW_OP_reg16			0x60
385 #define DW_OP_reg17			0x61
386 #define DW_OP_reg18			0x62
387 #define DW_OP_reg19			0x63
388 #define DW_OP_reg20			0x64
389 #define DW_OP_reg21			0x65
390 #define DW_OP_reg22			0x66
391 #define DW_OP_reg23			0x67
392 #define DW_OP_reg24			0x68
393 #define DW_OP_reg25			0x69
394 #define DW_OP_reg26			0x6a
395 #define DW_OP_reg27			0x6b
396 #define DW_OP_reg28			0x6c
397 #define DW_OP_reg29			0x6d
398 #define DW_OP_reg30			0x6e
399 #define DW_OP_reg31			0x6f
400 #define DW_OP_breg0			0x70
401 #define DW_OP_breg1			0x71
402 #define DW_OP_breg2			0x72
403 #define DW_OP_breg3			0x73
404 #define DW_OP_breg4			0x74
405 #define DW_OP_breg5			0x75
406 #define DW_OP_breg6			0x76
407 #define DW_OP_breg7			0x77
408 #define DW_OP_breg8			0x78
409 #define DW_OP_breg9			0x79
410 #define DW_OP_breg10			0x7a
411 #define DW_OP_breg11			0x7b
412 #define DW_OP_breg12			0x7c
413 #define DW_OP_breg13			0x7d
414 #define DW_OP_breg14			0x7e
415 #define DW_OP_breg15			0x7f
416 #define DW_OP_breg16			0x80
417 #define DW_OP_breg17			0x81
418 #define DW_OP_breg18			0x82
419 #define DW_OP_breg19			0x83
420 #define DW_OP_breg20			0x84
421 #define DW_OP_breg21			0x85
422 #define DW_OP_breg22			0x86
423 #define DW_OP_breg23			0x87
424 #define DW_OP_breg24			0x88
425 #define DW_OP_breg25			0x89
426 #define DW_OP_breg26			0x8a
427 #define DW_OP_breg27			0x8b
428 #define DW_OP_breg28			0x8c
429 #define DW_OP_breg29			0x8d
430 #define DW_OP_breg30			0x8e
431 #define DW_OP_breg31			0x8f
432 #define DW_OP_regx			0x90
433 #define DW_OP_fbreg			0x91
434 #define DW_OP_bregx			0x92
435 #define DW_OP_piece			0x93
436 #define DW_OP_deref_size		0x94
437 #define DW_OP_xderef_size		0x95
438 #define DW_OP_nop			0x96
439 #define DW_OP_lo_user			0xe0
440 #define DW_OP_hi_user			0xff
441 
442 #define DW_ATE_address			0x1
443 #define DW_ATE_boolean			0x2
444 #define DW_ATE_complex_float		0x3
445 #define DW_ATE_float			0x4
446 #define DW_ATE_signed			0x5
447 #define DW_ATE_signed_char		0x6
448 #define DW_ATE_unsigned			0x7
449 #define DW_ATE_unsigned_char		0x8
450 #define DW_ATE_imaginary_float		0x9
451 #define DW_ATE_lo_user			0x80
452 
453 /* Sun extensions */
454 #define DW_ATE_SUN_interval_float       0x91
455 #define DW_ATE_SUN_imaginary_float      0x92 /* Obsolete: See DW_ATE_imaginary_float */
456 
457 #define DW_ATE_hi_user			0xff
458 
459 /* for use with DW_TAG_SUN_codeflags
460  * If DW_TAG_SUN_codeflags is accepted as a dwarf standard, then
461  * standard dwarf ATCF entries start at 0x01
462  */
463 #define DW_ATCF_lo_user                 0x40
464 #define DW_ATCF_SUN_mop_bitfield        0x41
465 #define DW_ATCF_SUN_mop_spill           0x42
466 #define DW_ATCF_SUN_mop_scopy           0x43
467 #define DW_ATCF_SUN_func_start          0x44
468 #define DW_ATCF_SUN_end_ctors           0x45
469 #define DW_ATCF_SUN_branch_target       0x46
470 #define DW_ATCF_SUN_mop_stack_probe     0x47
471 #define DW_ATCF_hi_user                 0xff
472 
473 #define DW_ACCESS_public		1
474 #define DW_ACCESS_protected		2
475 #define DW_ACCESS_private		3
476 
477 #define DW_VIS_local			1
478 #define DW_VIS_exported			2
479 #define DW_VIS_qualified		3
480 
481 #define DW_VIRTUALITY_none		0
482 #define DW_VIRTUALITY_virtual 		1
483 #define DW_VIRTUALITY_pure_virtual 	2
484 
485 #define DW_LANG_C89			0x0001
486 #define DW_LANG_C			0x0002
487 #define DW_LANG_Ada83			0x0003
488 #define DW_LANG_C_plus_plus		0x0004
489 #define DW_LANG_Cobol74			0x0005
490 #define DW_LANG_Cobol85			0x0006
491 #define DW_LANG_Fortran77		0x0007
492 #define DW_LANG_Fortran90		0x0008
493 #define DW_LANG_Pascal83		0x0009
494 #define DW_LANG_Modula2			0x000a
495 #define DW_LANG_Java			0x000b
496 #define DW_LANG_C99			0x000c
497 #define DW_LANG_Ada95			0x000d
498 #define DW_LANG_Fortran95		0x000e
499 #define DW_LANG_lo_user			0x8000
500 #define DW_LANG_Mips_Assembler		0x8001
501 
502 /* Sun extensions */
503 #define DW_LANG_SUN_Assembler           0x9001
504 
505 #define DW_LANG_hi_user			0xffff
506 
507 
508 #define DW_ID_case_sensitive		0
509 #define DW_ID_up_case			1
510 #define DW_ID_down_case			2
511 #define DW_ID_case_insensitive		3
512 
513 #define DW_CC_normal			0x1
514 #define DW_CC_program			0x2
515 #define DW_CC_nocall			0x3
516 #define DW_CC_lo_user			0x40
517 #define DW_CC_hi_user			0xff
518 
519 #define DW_INL_not_inlined		0
520 #define DW_INL_inlined			1
521 #define DW_INL_declared_not_inlined	2
522 #define DW_INL_declared_inlined		3
523 
524 #define DW_ORD_row_major		0
525 #define DW_ORD_col_major		1
526 
527 #define DW_DSC_label			0
528 #define DW_DSC_range			1
529 
530 #define DW_LNS_copy			1
531 #define DW_LNS_advance_pc		2
532 #define DW_LNS_advance_line		3
533 #define DW_LNS_set_file			4
534 #define DW_LNS_set_column		5
535 #define DW_LNS_negate_stmt		6
536 #define DW_LNS_set_basic_block		7
537 #define DW_LNS_const_add_pc		8
538 #define DW_LNS_fixed_advance_pc		9
539 
540 #define DW_LNE_end_sequence		1
541 #define DW_LNE_set_address		2
542 #define DW_LNE_define_file		3
543 
544 #define DW_LNE_lo_user			128
545 #define DW_LNE_hi_user			255
546 
547 #define DW_MACINFO_define		1
548 #define DW_MACINFO_undef		2
549 #define DW_MACINFO_start_file		3
550 #define DW_MACINFO_end_file		4
551 #define DW_MACINFO_vendor_ext		255
552 
553 #define DW_CFA_advance_loc        0x40
554 #define DW_CFA_offset             0x80
555 #define DW_CFA_restore            0xc0
556 #define DW_CFA_extended           0
557 
558 #define DW_CFA_nop              0x00
559 #define DW_CFA_set_loc          0x01
560 #define DW_CFA_advance_loc1     0x02
561 #define DW_CFA_advance_loc2     0x03
562 #define DW_CFA_advance_loc4     0x04
563 #define DW_CFA_offset_extended  0x05
564 #define DW_CFA_restore_extended 0x06
565 #define DW_CFA_undefined        0x07
566 #define DW_CFA_same_value       0x08
567 #define DW_CFA_register         0x09
568 #define DW_CFA_remember_state   0x0a
569 #define DW_CFA_restore_state    0x0b
570 #define DW_CFA_def_cfa          0x0c
571 #define DW_CFA_def_cfa_register 0x0d
572 #define DW_CFA_def_cfa_offset   0x0e
573 #define DW_CFA_def_cfa_expression 0x0f     /* dwarf 2.1 */
574 #define DW_CFA_expression       0x10       /* dwarf 2.1 */
575 #define DW_CFA_cfa_offset_extended_sf 0x11 /* dwarf 2.1 */
576 #define DW_CFA_def_cfa_sf       0x12       /* dwarf 2.1 */
577 #define DW_CFA_def_cfa_offset_sf 0x13      /* dwarf 2.1 */
578 
579 #define DW_CFA_low_user          0x1c
580 #define DW_CFA_MIPS_advance_loc8 0x1d
581 
582 /* the following two from egcs-1.1.2 */
583 #define DW_CFA_GNU_window_save   0x2d
584 #define DW_CFA_GNU_args_size     0x2e
585 
586 #define DW_CFA_high_user         0x3f
587 
588 
589 /* Mapping from machine registers and pseudo-regs into the .debug_frame table.
590    DW_FRAME entries are machine specific. These describe
591    MIPS/SGI R3000, R4K, R4400.
592    And (simultaneously) a mapping from hardware register number to
593    the number used in the table to identify that register.
594 
595    The CFA (Canonical Frame Address) described in DWARF is called
596    the Virtual Frame Pointer on MIPS/SGI machines.
597 
598 	                     Rule describes:
599 */
600 #define DW_FRAME_CFA_COL 0  /* column used for CFA */
601 #define DW_FRAME_REG1	1  /* integer reg 1 */
602 #define DW_FRAME_REG2	2  /* integer reg 2 */
603 #define DW_FRAME_REG3	3  /* integer reg 3 */
604 #define DW_FRAME_REG4	4  /* integer reg 4 */
605 #define DW_FRAME_REG5	5  /* integer reg 5 */
606 #define DW_FRAME_REG6	6  /* integer reg 6 */
607 #define DW_FRAME_REG7	7  /* integer reg 7 */
608 #define DW_FRAME_REG8	8  /* integer reg 8 */
609 #define DW_FRAME_REG9	9  /* integer reg 9 */
610 #define DW_FRAME_REG10	10 /* integer reg 10 */
611 #define DW_FRAME_REG11	11 /* integer reg 11 */
612 #define DW_FRAME_REG12	12 /* integer reg 12 */
613 #define DW_FRAME_REG13	13 /* integer reg 13 */
614 #define DW_FRAME_REG14	14 /* integer reg 14 */
615 #define DW_FRAME_REG15	15 /* integer reg 15 */
616 #define DW_FRAME_REG16	16 /* integer reg 16 */
617 #define DW_FRAME_REG17	17 /* integer reg 17 */
618 #define DW_FRAME_REG18	18 /* integer reg 18 */
619 #define DW_FRAME_REG19	19 /* integer reg 19 */
620 #define DW_FRAME_REG20	20 /* integer reg 20 */
621 #define DW_FRAME_REG21	21 /* integer reg 21 */
622 #define DW_FRAME_REG22	22 /* integer reg 22 */
623 #define DW_FRAME_REG23	23 /* integer reg 23 */
624 #define DW_FRAME_REG24	24 /* integer reg 24 */
625 #define DW_FRAME_REG25	25 /* integer reg 25 */
626 #define DW_FRAME_REG26	26 /* integer reg 26 */
627 #define DW_FRAME_REG27	27 /* integer reg 27 */
628 #define DW_FRAME_REG28	28 /* integer reg 28 */
629 #define DW_FRAME_REG29	29 /* integer reg 29 */
630 #define DW_FRAME_REG30	30 /* integer reg 30 */
631 #define DW_FRAME_REG31	31 /* integer reg 31, aka ra */
632 
633 	/* MIPS1, 2 have only some of these 64-bit registers.
634 	** MIPS1  save/restore takes 2 instructions per 64-bit reg, and
635 	** in that case, the register is considered stored after the second
636 	** swc1.
637 	*/
638 #define DW_FRAME_FREG0  32 /* 64-bit floating point reg 0 */
639 #define DW_FRAME_FREG1  33 /* 64-bit floating point reg 1 */
640 #define DW_FRAME_FREG2  34 /* 64-bit floating point reg 2 */
641 #define DW_FRAME_FREG3  35 /* 64-bit floating point reg 3 */
642 #define DW_FRAME_FREG4  36 /* 64-bit floating point reg 4 */
643 #define DW_FRAME_FREG5  37 /* 64-bit floating point reg 5 */
644 #define DW_FRAME_FREG6  38 /* 64-bit floating point reg 6 */
645 #define DW_FRAME_FREG7  39 /* 64-bit floating point reg 7 */
646 #define DW_FRAME_FREG8  40 /* 64-bit floating point reg 8 */
647 #define DW_FRAME_FREG9  41 /* 64-bit floating point reg 9 */
648 #define DW_FRAME_FREG10 42 /* 64-bit floating point reg 10 */
649 #define DW_FRAME_FREG11 43 /* 64-bit floating point reg 11 */
650 #define DW_FRAME_FREG12 44 /* 64-bit floating point reg 12 */
651 #define DW_FRAME_FREG13 45 /* 64-bit floating point reg 13 */
652 #define DW_FRAME_FREG14 46 /* 64-bit floating point reg 14 */
653 #define DW_FRAME_FREG15 47 /* 64-bit floating point reg 15 */
654 #define DW_FRAME_FREG16 48 /* 64-bit floating point reg 16 */
655 #define DW_FRAME_FREG17 49 /* 64-bit floating point reg 17 */
656 #define DW_FRAME_FREG18 50 /* 64-bit floating point reg 18 */
657 #define DW_FRAME_FREG19 51 /* 64-bit floating point reg 19 */
658 #define DW_FRAME_FREG20 52 /* 64-bit floating point reg 20 */
659 #define DW_FRAME_FREG21 53 /* 64-bit floating point reg 21 */
660 #define DW_FRAME_FREG22 54 /* 64-bit floating point reg 22 */
661 #define DW_FRAME_FREG23 55 /* 64-bit floating point reg 23 */
662 #define DW_FRAME_FREG24 56 /* 64-bit floating point reg 24 */
663 #define DW_FRAME_FREG25 57 /* 64-bit floating point reg 25 */
664 #define DW_FRAME_FREG26 58 /* 64-bit floating point reg 26 */
665 #define DW_FRAME_FREG27 59 /* 64-bit floating point reg 27 */
666 #define DW_FRAME_FREG28 60 /* 64-bit floating point reg 28 */
667 #define DW_FRAME_FREG29 61 /* 64-bit floating point reg 29 */
668 #define DW_FRAME_FREG30 62 /* 64-bit floating point reg 30 */
669 #define DW_FRAME_FREG31 63 /* 64-bit floating point reg 31 */
670 
671 #define DW_FRAME_RA_COL	64 /* column recording ra */
672 
673 #define DW_FRAME_STATIC_LINK 65 /* column recording static link*/
674 				/* applicable to up-level      */
675 				/* addressing, as in mp code,  */
676 				/* pascal, etc */
677 
678 /* This is the number of columns in the Frame Table. This constant should
679    be kept in sync with DW_REG_TABLE_SIZE defined in libdwarf.h */
680 #define DW_FRAME_LAST_REG_NUM   (DW_FRAME_STATIC_LINK + 1)
681 
682 
683 /*
684   DW_FRAME_UNDEFINED_VAL and  DW_FRAME_SAME_VAL  are
685   never on disk, just generated by libdwarf. See libdwarf.h
686   for their values.
687 */
688 
689 
690 
691 #define DW_CHILDREN_no		     0x00
692 #define DW_CHILDREN_yes		     0x01
693 
694 #define DW_ADDR_none		0
695 
696 #ifdef __cplusplus
697 }
698 #endif
699 #endif /* __DWARF_H */
700