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