dwarf.h revision 2
1N/A/*
2N/A * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
1N/A */
1N/A
1N/A/*
1N/A Copyright (C) 2000, 2001 Silicon Graphics, Inc. All Rights Reserved.
1N/A
1N/A This program is free software; you can redistribute it and/or modify it
1N/A under the terms of version 2.1 of the GNU Lesser General Public License
1N/A as published by the Free Software Foundation.
1N/A
1N/A This program is distributed in the hope that it would be useful, but
1N/A WITHOUT ANY WARRANTY; without even the implied warranty of
1N/A MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1N/A
1N/A Further, this software is distributed without any warranty that it is
1N/A free of the rightful claim of any third person regarding infringement
1N/A or the like. Any license provided herein, whether implied or
1N/A otherwise, applies only to this software file. Patent licenses, if
1N/A any, provided herein do not apply to combinations of this program with
1N/A other software, or any other product whatsoever.
1N/A
1N/A You should have received a copy of the GNU Lesser General Public
1N/A License along with this program; if not, write the Free Software
1N/A Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307,
1N/A USA.
1N/A
1N/A Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pky,
1N/A Mountain View, CA 94043, or:
1N/A
1N/A http://www.sgi.com
1N/A
1N/A For further information regarding this notice, see:
1N/A
1N/A http://oss.sgi.com/projects/GenInfo/NoticeExplan
1N/A
1N/A*/
1N/A
1N/A
1N/A#ifndef __DWARF_H
1N/A#define __DWARF_H
1N/A#ifdef __cplusplus
1N/Aextern "C" {
1N/A#endif
1N/A
1N/A/*
1N/A dwarf.h DWARF debugging information values
1N/A $Revision: 1.24 $ $Date: 2001/05/23 23:34:51 $
1N/A
1N/A*/
1N/A
1N/A
1N/A#define DW_TAG_array_type 0x01
1N/A#define DW_TAG_class_type 0x02
1N/A#define DW_TAG_entry_point 0x03
1N/A#define DW_TAG_enumeration_type 0x04
1N/A#define DW_TAG_formal_parameter 0x05
1N/A#define DW_TAG_imported_declaration 0x08
1N/A#define DW_TAG_label 0x0a
1N/A#define DW_TAG_lexical_block 0x0b
1N/A#define DW_TAG_member 0x0d
1N/A#define DW_TAG_pointer_type 0x0f
1N/A#define DW_TAG_reference_type 0x10
1N/A#define DW_TAG_compile_unit 0x11
1N/A#define DW_TAG_string_type 0x12
1N/A#define DW_TAG_structure_type 0x13
1N/A#define DW_TAG_subroutine_type 0x15
1N/A#define DW_TAG_typedef 0x16
1N/A#define DW_TAG_union_type 0x17
1N/A#define DW_TAG_unspecified_parameters 0x18
1N/A#define DW_TAG_variant 0x19
1N/A#define DW_TAG_common_block 0x1a
1N/A#define DW_TAG_common_inclusion 0x1b
1N/A#define DW_TAG_inheritance 0x1c
1N/A#define DW_TAG_inlined_subroutine 0x1d
1N/A#define DW_TAG_module 0x1e
1N/A#define DW_TAG_ptr_to_member_type 0x1f
1N/A#define DW_TAG_set_type 0x20
1N/A#define DW_TAG_subrange_type 0x21
1N/A#define DW_TAG_with_stmt 0x22
1N/A#define DW_TAG_access_declaration 0x23
1N/A#define DW_TAG_base_type 0x24
1N/A#define DW_TAG_catch_block 0x25
1N/A#define DW_TAG_const_type 0x26
1N/A#define DW_TAG_constant 0x27
1N/A#define DW_TAG_enumerator 0x28
1N/A#define DW_TAG_file_type 0x29
1N/A#define DW_TAG_friend 0x2a
1N/A#define DW_TAG_namelist 0x2b
1N/A#define DW_TAG_namelist_item 0x2c
1N/A#define DW_TAG_packed_type 0x2d
1N/A#define DW_TAG_subprogram 0x2e
1N/A#define DW_TAG_template_type_param 0x2f
1N/A#define DW_TAG_template_value_param 0x30
1N/A#define DW_TAG_thrown_type 0x31
1N/A#define DW_TAG_try_block 0x32
1N/A#define DW_TAG_variant_part 0x33
1N/A#define DW_TAG_variable 0x34
1N/A#define DW_TAG_volatile_type 0x35
1N/A#define DW_TAG_dwarf_procedure 0x36
1N/A#define DW_TAG_restrict_type 0x37
1N/A#define DW_TAG_interface_type 0x38
1N/A#define DW_TAG_namespace 0x39
1N/A#define DW_TAG_imported_module 0x3a
1N/A#define DW_TAG_unspecified_type 0x3b
1N/A#define DW_TAG_partial_unit 0x3c
1N/A#define DW_TAG_imported_unit 0x3d
1N/A#define DW_TAG_mutable_type 0x3e
1N/A#define DW_TAG_lo_user 0x4080
1N/A#define DW_TAG_MIPS_loop 0x4081
1N/A#define DW_TAG_hi_user 0xffff
1N/A
1N/A/* The following 3 are GNU extensions
1N/A The TAG names are as if the extensions were dwarf standard,
1N/A not extensions.
1N/A*/
1N/A#define DW_TAG_format_label 0x4101 /* for FORTRAN 77, Fortran 90 */
1N/A#define DW_TAG_function_template 0x4102 /* for C++ */
1N/A#define DW_TAG_class_template 0x4103 /* for C++ */
1N/A
1N/A/* The following are SUN extensions */
1N/A#define DW_TAG_SUN_function_template 0x4201
1N/A#define DW_TAG_SUN_class_template 0x4202
1N/A#define DW_TAG_SUN_struct_template 0x4203
1N/A#define DW_TAG_SUN_union_template 0x4204
1N/A#define DW_TAG_SUN_virtual_inheritance 0x4205
1N/A#define DW_TAG_SUN_codeflags 0x4206
1N/A#define DW_TAG_SUN_memop_info 0x4207
1N/A#define DW_TAG_SUN_omp_child_func 0x4208
1N/A
1N/A
1N/A#define DW_children_no 0
1N/A#define DW_children_yes 1
1N/A
1N/A
1N/A
1N/A#define DW_FORM_addr 0x01
1N/A#define DW_FORM_block2 0x03
1N/A#define DW_FORM_block4 0x04
1N/A#define DW_FORM_data2 0x05
1N/A#define DW_FORM_data4 0x06
1N/A#define DW_FORM_data8 0x07
1N/A#define DW_FORM_string 0x08
1N/A#define DW_FORM_block 0x09
1N/A#define DW_FORM_block1 0x0a
1N/A#define DW_FORM_data1 0x0b
1N/A#define DW_FORM_flag 0x0c
1N/A#define DW_FORM_sdata 0x0d
1N/A#define DW_FORM_strp 0x0e
1N/A#define DW_FORM_udata 0x0f
1N/A#define DW_FORM_ref_addr 0x10
1N/A#define DW_FORM_ref1 0x11
1N/A#define DW_FORM_ref2 0x12
1N/A#define DW_FORM_ref4 0x13
1N/A#define DW_FORM_ref8 0x14
1N/A#define DW_FORM_ref_udata 0x15
1N/A#define DW_FORM_indirect 0x16
2N/A#define DW_FORM_exprloc 0x17
2N/A/* This gap intentionally left blank. */
2N/A#define DW_FORM_ref_sig8 0x20
1N/A
1N/A#define DW_AT_sibling 0x01
1N/A#define DW_AT_location 0x02
1N/A#define DW_AT_name 0x03
1N/A#define DW_AT_ordering 0x09
1N/A#define DW_AT_subscr_data 0x0a
1N/A#define DW_AT_byte_size 0x0b
1N/A#define DW_AT_bit_offset 0x0c
1N/A#define DW_AT_bit_size 0x0d
1N/A#define DW_AT_element_list 0x0f
1N/A#define DW_AT_stmt_list 0x10
1N/A#define DW_AT_low_pc 0x11
1N/A#define DW_AT_high_pc 0x12
1N/A#define DW_AT_language 0x13
1N/A#define DW_AT_member 0x14
1N/A#define DW_AT_discr 0x15
1N/A#define DW_AT_discr_value 0x16
1N/A#define DW_AT_visibility 0x17
1N/A#define DW_AT_import 0x18
1N/A#define DW_AT_string_length 0x19
1N/A#define DW_AT_common_reference 0x1a
1N/A#define DW_AT_comp_dir 0x1b
1N/A#define DW_AT_const_value 0x1c
1N/A#define DW_AT_containing_type 0x1d
1N/A#define DW_AT_default_value 0x1e
1N/A#define DW_AT_inline 0x20
1N/A#define DW_AT_is_optional 0x21
1N/A#define DW_AT_lower_bound 0x22
1N/A#define DW_AT_producer 0x25
1N/A#define DW_AT_prototyped 0x27
1N/A#define DW_AT_return_addr 0x2a
1N/A#define DW_AT_start_scope 0x2c
1N/A#define DW_AT_stride_size 0x2e
1N/A#define DW_AT_upper_bound 0x2f
1N/A#define DW_AT_abstract_origin 0x31
1N/A#define DW_AT_accessibility 0x32
1N/A#define DW_AT_address_class 0x33
1N/A#define DW_AT_artificial 0x34
1N/A#define DW_AT_base_types 0x35
1N/A#define DW_AT_calling_convention 0x36
1N/A#define DW_AT_count 0x37
1N/A#define DW_AT_data_member_location 0x38
1N/A#define DW_AT_decl_column 0x39
1N/A#define DW_AT_decl_file 0x3a
1N/A#define DW_AT_decl_line 0x3b
1N/A#define DW_AT_declaration 0x3c
1N/A#define DW_AT_discr_list 0x3d
1N/A#define DW_AT_encoding 0x3e
1N/A#define DW_AT_external 0x3f
1N/A#define DW_AT_frame_base 0x40
1N/A#define DW_AT_friend 0x41
1N/A#define DW_AT_identifier_case 0x42
1N/A#define DW_AT_macro_info 0x43
1N/A#define DW_AT_namelist_item 0x44
1N/A#define DW_AT_priority 0x45
1N/A#define DW_AT_segment 0x46
1N/A#define DW_AT_specification 0x47
1N/A#define DW_AT_static_link 0x48
1N/A#define DW_AT_type 0x49
1N/A#define DW_AT_use_location 0x4a
1N/A#define DW_AT_variable_parameter 0x4b
1N/A#define DW_AT_virtuality 0x4c
1N/A#define DW_AT_vtable_elem_location 0x4d
1N/A#define DW_AT_allocated 0x4e
1N/A#define DW_AT_associated 0x4f
1N/A#define DW_AT_data_location 0x50
1N/A#define DW_AT_stride 0x51
1N/A#define DW_AT_entry_pc 0x52
1N/A#define DW_AT_use_UTF8 0x53
1N/A#define DW_AT_extension 0x54
1N/A#define DW_AT_ranges 0x55
1N/A#define DW_AT_trampoline 0x56
1N/A#define DW_AT_call_column 0x57
1N/A#define DW_AT_call_file 0x58
1N/A#define DW_AT_call_line 0x59
1N/A#define DW_AT_description 0x5a
1N/A#define DW_AT_lo_user 0x2000
1N/A#define DW_AT_MIPS_fde 0x2001
1N/A#define DW_AT_MIPS_loop_begin 0x2002
1N/A#define DW_AT_MIPS_tail_loop_begin 0x2003
1N/A#define DW_AT_MIPS_epilog_begin 0x2004
1N/A#define DW_AT_MIPS_loop_unroll_factor 0x2005
1N/A#define DW_AT_MIPS_software_pipeline_depth 0x2006
1N/A#define DW_AT_MIPS_linkage_name 0x2007
1N/A#define DW_AT_MIPS_stride 0x2008
1N/A#define DW_AT_MIPS_abstract_name 0x2009
1N/A#define DW_AT_MIPS_clone_origin 0x200a
1N/A#define DW_AT_MIPS_has_inlines 0x200b
1N/A#define DW_AT_MIPS_stride_byte 0x200c
1N/A#define DW_AT_MIPS_stride_elem 0x200d
1N/A#define DW_AT_MIPS_ptr_dopetype 0x200e
1N/A#define DW_AT_MIPS_allocatable_dopetype 0x200f
1N/A#define DW_AT_MIPS_assumed_shape_dopetype 0x2010
1N/A#define DW_AT_MIPS_assumed_size 0x2011
1N/A
1N/A
1N/A/* GNU extensions, currently not used in dwarf2 by egcs
1N/A Mostly dwarf1 extensions not needed in dwarf2?
1N/A*/
1N/A#define DW_AT_sf_names 0x2101
1N/A#define DW_AT_src_info 0x2102
1N/A#define DW_AT_mac_info 0x2103
1N/A#define DW_AT_src_coords 0x2104
1N/A#define DW_AT_body_begin 0x2105
1N/A#define DW_AT_body_end 0x2106
1N/A
1N/A/* Sun extensions */
1N/A#define DW_AT_SUN_template 0x2201
1N/A#define DW_AT_SUN_alignment 0x2202
1N/A#define DW_AT_SUN_vtable 0x2203
1N/A#define DW_AT_SUN_count_guarantee 0x2204
1N/A#define DW_AT_SUN_command_line 0x2205
1N/A#define DW_AT_SUN_vbase 0x2206
1N/A#define DW_AT_SUN_compile_options 0x2207
1N/A#define DW_AT_SUN_language 0x2208
1N/A#define DW_AT_SUN_browser_file 0x2209
1N/A#define DW_AT_SUN_vtable_abi 0x2210
1N/A#define DW_AT_SUN_func_offsets 0x2211
1N/A#define DW_AT_SUN_cf_kind 0x2212
1N/A#define DW_AT_SUN_vtable_index 0x2213
1N/A#define DW_AT_SUN_omp_tpriv_addr 0x2214
1N/A#define DW_AT_SUN_omp_child_func 0x2215
1N/A#define DW_AT_SUN_func_offset 0x2216
1N/A#define DW_AT_SUN_memop_type_ref 0x2217
1N/A#define DW_AT_SUN_profile_id 0x2218
1N/A#define DW_AT_SUN_memop_signature 0x2219
1N/A#define DW_AT_SUN_obj_dir 0x2220
1N/A#define DW_AT_SUN_obj_file 0x2221
1N/A#define DW_AT_SUN_original_name 0x2222
1N/A
1N/A
1N/A#define DW_AT_hi_user 0x3fff
1N/A
1N/A#define DW_OP_addr 0x03
1N/A#define DW_OP_deref 0x06
1N/A#define DW_OP_const1u 0x08
1N/A#define DW_OP_const1s 0x09
1N/A#define DW_OP_const2u 0x0a
1N/A#define DW_OP_const2s 0x0b
1N/A#define DW_OP_const4u 0x0c
1N/A#define DW_OP_const4s 0x0d
1N/A#define DW_OP_const8u 0x0e
1N/A#define DW_OP_const8s 0x0f
1N/A#define DW_OP_constu 0x10
1N/A#define DW_OP_consts 0x11
1N/A#define DW_OP_dup 0x12
1N/A#define DW_OP_drop 0x13
1N/A#define DW_OP_over 0x14
1N/A#define DW_OP_pick 0x15
1N/A#define DW_OP_swap 0x16
1N/A#define DW_OP_rot 0x17
1N/A#define DW_OP_xderef 0x18
1N/A#define DW_OP_abs 0x19
1N/A#define DW_OP_and 0x1a
1N/A#define DW_OP_div 0x1b
1N/A#define DW_OP_minus 0x1c
1N/A#define DW_OP_mod 0x1d
1N/A#define DW_OP_mul 0x1e
1N/A#define DW_OP_neg 0x1f
1N/A#define DW_OP_not 0x20
1N/A#define DW_OP_or 0x21
1N/A#define DW_OP_plus 0x22
1N/A#define DW_OP_plus_uconst 0x23
1N/A#define DW_OP_shl 0x24
1N/A#define DW_OP_shr 0x25
1N/A#define DW_OP_shra 0x26
1N/A#define DW_OP_xor 0x27
1N/A#define DW_OP_bra 0x28
1N/A#define DW_OP_eq 0x29
1N/A#define DW_OP_ge 0x2a
1N/A#define DW_OP_gt 0x2b
1N/A#define DW_OP_le 0x2c
1N/A#define DW_OP_lt 0x2d
1N/A#define DW_OP_ne 0x2e
1N/A#define DW_OP_skip 0x2f
1N/A#define DW_OP_lit0 0x30
1N/A#define DW_OP_lit1 0x31
1N/A#define DW_OP_lit2 0x32
1N/A#define DW_OP_lit3 0x33
1N/A#define DW_OP_lit4 0x34
1N/A#define DW_OP_lit5 0x35
1N/A#define DW_OP_lit6 0x36
1N/A#define DW_OP_lit7 0x37
1N/A#define DW_OP_lit8 0x38
1N/A#define DW_OP_lit9 0x39
1N/A#define DW_OP_lit10 0x3a
1N/A#define DW_OP_lit11 0x3b
1N/A#define DW_OP_lit12 0x3c
1N/A#define DW_OP_lit13 0x3d
1N/A#define DW_OP_lit14 0x3e
1N/A#define DW_OP_lit15 0x3f
1N/A#define DW_OP_lit16 0x40
1N/A#define DW_OP_lit17 0x41
1N/A#define DW_OP_lit18 0x42
1N/A#define DW_OP_lit19 0x43
1N/A#define DW_OP_lit20 0x44
1N/A#define DW_OP_lit21 0x45
1N/A#define DW_OP_lit22 0x46
1N/A#define DW_OP_lit23 0x47
1N/A#define DW_OP_lit24 0x48
1N/A#define DW_OP_lit25 0x49
1N/A#define DW_OP_lit26 0x4a
1N/A#define DW_OP_lit27 0x4b
1N/A#define DW_OP_lit28 0x4c
1N/A#define DW_OP_lit29 0x4d
1N/A#define DW_OP_lit30 0x4e
1N/A#define DW_OP_lit31 0x4f
1N/A#define DW_OP_reg0 0x50
1N/A#define DW_OP_reg1 0x51
1N/A#define DW_OP_reg2 0x52
1N/A#define DW_OP_reg3 0x53
1N/A#define DW_OP_reg4 0x54
1N/A#define DW_OP_reg5 0x55
1N/A#define DW_OP_reg6 0x56
1N/A#define DW_OP_reg7 0x57
1N/A#define DW_OP_reg8 0x58
1N/A#define DW_OP_reg9 0x59
1N/A#define DW_OP_reg10 0x5a
1N/A#define DW_OP_reg11 0x5b
1N/A#define DW_OP_reg12 0x5c
1N/A#define DW_OP_reg13 0x5d
1N/A#define DW_OP_reg14 0x5e
1N/A#define DW_OP_reg15 0x5f
1N/A#define DW_OP_reg16 0x60
1N/A#define DW_OP_reg17 0x61
1N/A#define DW_OP_reg18 0x62
1N/A#define DW_OP_reg19 0x63
1N/A#define DW_OP_reg20 0x64
1N/A#define DW_OP_reg21 0x65
1N/A#define DW_OP_reg22 0x66
1N/A#define DW_OP_reg23 0x67
1N/A#define DW_OP_reg24 0x68
1N/A#define DW_OP_reg25 0x69
1N/A#define DW_OP_reg26 0x6a
1N/A#define DW_OP_reg27 0x6b
1N/A#define DW_OP_reg28 0x6c
1N/A#define DW_OP_reg29 0x6d
1N/A#define DW_OP_reg30 0x6e
1N/A#define DW_OP_reg31 0x6f
1N/A#define DW_OP_breg0 0x70
1N/A#define DW_OP_breg1 0x71
1N/A#define DW_OP_breg2 0x72
1N/A#define DW_OP_breg3 0x73
1N/A#define DW_OP_breg4 0x74
1N/A#define DW_OP_breg5 0x75
1N/A#define DW_OP_breg6 0x76
1N/A#define DW_OP_breg7 0x77
1N/A#define DW_OP_breg8 0x78
1N/A#define DW_OP_breg9 0x79
1N/A#define DW_OP_breg10 0x7a
1N/A#define DW_OP_breg11 0x7b
1N/A#define DW_OP_breg12 0x7c
1N/A#define DW_OP_breg13 0x7d
1N/A#define DW_OP_breg14 0x7e
1N/A#define DW_OP_breg15 0x7f
1N/A#define DW_OP_breg16 0x80
1N/A#define DW_OP_breg17 0x81
1N/A#define DW_OP_breg18 0x82
1N/A#define DW_OP_breg19 0x83
1N/A#define DW_OP_breg20 0x84
1N/A#define DW_OP_breg21 0x85
1N/A#define DW_OP_breg22 0x86
1N/A#define DW_OP_breg23 0x87
1N/A#define DW_OP_breg24 0x88
1N/A#define DW_OP_breg25 0x89
1N/A#define DW_OP_breg26 0x8a
1N/A#define DW_OP_breg27 0x8b
1N/A#define DW_OP_breg28 0x8c
1N/A#define DW_OP_breg29 0x8d
1N/A#define DW_OP_breg30 0x8e
1N/A#define DW_OP_breg31 0x8f
1N/A#define DW_OP_regx 0x90
1N/A#define DW_OP_fbreg 0x91
1N/A#define DW_OP_bregx 0x92
1N/A#define DW_OP_piece 0x93
1N/A#define DW_OP_deref_size 0x94
1N/A#define DW_OP_xderef_size 0x95
1N/A#define DW_OP_nop 0x96
1N/A#define DW_OP_lo_user 0xe0
1N/A#define DW_OP_hi_user 0xff
1N/A
1N/A#define DW_ATE_address 0x1
1N/A#define DW_ATE_boolean 0x2
1N/A#define DW_ATE_complex_float 0x3
1N/A#define DW_ATE_float 0x4
1N/A#define DW_ATE_signed 0x5
1N/A#define DW_ATE_signed_char 0x6
1N/A#define DW_ATE_unsigned 0x7
1N/A#define DW_ATE_unsigned_char 0x8
1N/A#define DW_ATE_imaginary_float 0x9
1N/A#define DW_ATE_lo_user 0x80
1N/A
1N/A/* Sun extensions */
1N/A#define DW_ATE_SUN_interval_float 0x91
1N/A#define DW_ATE_SUN_imaginary_float 0x92 /* Obsolete: See DW_ATE_imaginary_float */
1N/A
1N/A#define DW_ATE_hi_user 0xff
1N/A
1N/A/* for use with DW_TAG_SUN_codeflags
1N/A * If DW_TAG_SUN_codeflags is accepted as a dwarf standard, then
1N/A * standard dwarf ATCF entries start at 0x01
1N/A */
1N/A#define DW_ATCF_lo_user 0x40
1N/A#define DW_ATCF_SUN_mop_bitfield 0x41
1N/A#define DW_ATCF_SUN_mop_spill 0x42
1N/A#define DW_ATCF_SUN_mop_scopy 0x43
1N/A#define DW_ATCF_SUN_func_start 0x44
1N/A#define DW_ATCF_SUN_end_ctors 0x45
1N/A#define DW_ATCF_SUN_branch_target 0x46
1N/A#define DW_ATCF_SUN_mop_stack_probe 0x47
1N/A#define DW_ATCF_hi_user 0xff
1N/A
1N/A#define DW_ACCESS_public 1
1N/A#define DW_ACCESS_protected 2
1N/A#define DW_ACCESS_private 3
1N/A
1N/A#define DW_VIS_local 1
1N/A#define DW_VIS_exported 2
1N/A#define DW_VIS_qualified 3
1N/A
1N/A#define DW_VIRTUALITY_none 0
1N/A#define DW_VIRTUALITY_virtual 1
1N/A#define DW_VIRTUALITY_pure_virtual 2
1N/A
1N/A#define DW_LANG_C89 0x0001
1N/A#define DW_LANG_C 0x0002
1N/A#define DW_LANG_Ada83 0x0003
1N/A#define DW_LANG_C_plus_plus 0x0004
1N/A#define DW_LANG_Cobol74 0x0005
1N/A#define DW_LANG_Cobol85 0x0006
1N/A#define DW_LANG_Fortran77 0x0007
1N/A#define DW_LANG_Fortran90 0x0008
1N/A#define DW_LANG_Pascal83 0x0009
1N/A#define DW_LANG_Modula2 0x000a
1N/A#define DW_LANG_Java 0x000b
1N/A#define DW_LANG_C99 0x000c
1N/A#define DW_LANG_Ada95 0x000d
1N/A#define DW_LANG_Fortran95 0x000e
1N/A#define DW_LANG_lo_user 0x8000
1N/A#define DW_LANG_Mips_Assembler 0x8001
1N/A
1N/A/* Sun extensions */
1N/A#define DW_LANG_SUN_Assembler 0x9001
1N/A
1N/A#define DW_LANG_hi_user 0xffff
1N/A
1N/A
1N/A#define DW_ID_case_sensitive 0
1N/A#define DW_ID_up_case 1
1N/A#define DW_ID_down_case 2
1N/A#define DW_ID_case_insensitive 3
1N/A
1N/A#define DW_CC_normal 0x1
1N/A#define DW_CC_program 0x2
1N/A#define DW_CC_nocall 0x3
1N/A#define DW_CC_lo_user 0x40
1N/A#define DW_CC_hi_user 0xff
1N/A
1N/A#define DW_INL_not_inlined 0
1N/A#define DW_INL_inlined 1
1N/A#define DW_INL_declared_not_inlined 2
1N/A#define DW_INL_declared_inlined 3
1N/A
1N/A#define DW_ORD_row_major 0
1N/A#define DW_ORD_col_major 1
1N/A
1N/A#define DW_DSC_label 0
1N/A#define DW_DSC_range 1
1N/A
1N/A#define DW_LNS_copy 1
1N/A#define DW_LNS_advance_pc 2
1N/A#define DW_LNS_advance_line 3
1N/A#define DW_LNS_set_file 4
1N/A#define DW_LNS_set_column 5
1N/A#define DW_LNS_negate_stmt 6
1N/A#define DW_LNS_set_basic_block 7
1N/A#define DW_LNS_const_add_pc 8
1N/A#define DW_LNS_fixed_advance_pc 9
1N/A
1N/A#define DW_LNE_end_sequence 1
1N/A#define DW_LNE_set_address 2
1N/A#define DW_LNE_define_file 3
1N/A
1N/A#define DW_LNE_lo_user 128
1N/A#define DW_LNE_hi_user 255
1N/A
1N/A#define DW_MACINFO_define 1
1N/A#define DW_MACINFO_undef 2
1N/A#define DW_MACINFO_start_file 3
1N/A#define DW_MACINFO_end_file 4
1N/A#define DW_MACINFO_vendor_ext 255
1N/A
1N/A#define DW_CFA_advance_loc 0x40
1N/A#define DW_CFA_offset 0x80
1N/A#define DW_CFA_restore 0xc0
1N/A#define DW_CFA_extended 0
1N/A
1N/A#define DW_CFA_nop 0x00
1N/A#define DW_CFA_set_loc 0x01
1N/A#define DW_CFA_advance_loc1 0x02
1N/A#define DW_CFA_advance_loc2 0x03
1N/A#define DW_CFA_advance_loc4 0x04
1N/A#define DW_CFA_offset_extended 0x05
1N/A#define DW_CFA_restore_extended 0x06
1N/A#define DW_CFA_undefined 0x07
1N/A#define DW_CFA_same_value 0x08
1N/A#define DW_CFA_register 0x09
1N/A#define DW_CFA_remember_state 0x0a
1N/A#define DW_CFA_restore_state 0x0b
1N/A#define DW_CFA_def_cfa 0x0c
1N/A#define DW_CFA_def_cfa_register 0x0d
1N/A#define DW_CFA_def_cfa_offset 0x0e
1N/A#define DW_CFA_def_cfa_expression 0x0f /* dwarf 2.1 */
1N/A#define DW_CFA_expression 0x10 /* dwarf 2.1 */
1N/A#define DW_CFA_cfa_offset_extended_sf 0x11 /* dwarf 2.1 */
1N/A#define DW_CFA_def_cfa_sf 0x12 /* dwarf 2.1 */
1N/A#define DW_CFA_def_cfa_offset_sf 0x13 /* dwarf 2.1 */
1N/A
1N/A#define DW_CFA_low_user 0x1c
1N/A#define DW_CFA_MIPS_advance_loc8 0x1d
1N/A
1N/A/* the following two from egcs-1.1.2 */
1N/A#define DW_CFA_GNU_window_save 0x2d
1N/A#define DW_CFA_GNU_args_size 0x2e
1N/A
1N/A#define DW_CFA_high_user 0x3f
1N/A
1N/A
1N/A/* Mapping from machine registers and pseudo-regs into the .debug_frame table.
1N/A DW_FRAME entries are machine specific. These describe
1N/A MIPS/SGI R3000, R4K, R4400.
1N/A And (simultaneously) a mapping from hardware register number to
1N/A the number used in the table to identify that register.
1N/A
1N/A The CFA (Canonical Frame Address) described in DWARF is called
1N/A the Virtual Frame Pointer on MIPS/SGI machines.
1N/A
1N/A Rule describes:
1N/A*/
1N/A#define DW_FRAME_CFA_COL 0 /* column used for CFA */
1N/A#define DW_FRAME_REG1 1 /* integer reg 1 */
1N/A#define DW_FRAME_REG2 2 /* integer reg 2 */
1N/A#define DW_FRAME_REG3 3 /* integer reg 3 */
1N/A#define DW_FRAME_REG4 4 /* integer reg 4 */
1N/A#define DW_FRAME_REG5 5 /* integer reg 5 */
1N/A#define DW_FRAME_REG6 6 /* integer reg 6 */
1N/A#define DW_FRAME_REG7 7 /* integer reg 7 */
1N/A#define DW_FRAME_REG8 8 /* integer reg 8 */
1N/A#define DW_FRAME_REG9 9 /* integer reg 9 */
1N/A#define DW_FRAME_REG10 10 /* integer reg 10 */
1N/A#define DW_FRAME_REG11 11 /* integer reg 11 */
1N/A#define DW_FRAME_REG12 12 /* integer reg 12 */
1N/A#define DW_FRAME_REG13 13 /* integer reg 13 */
1N/A#define DW_FRAME_REG14 14 /* integer reg 14 */
1N/A#define DW_FRAME_REG15 15 /* integer reg 15 */
1N/A#define DW_FRAME_REG16 16 /* integer reg 16 */
1N/A#define DW_FRAME_REG17 17 /* integer reg 17 */
1N/A#define DW_FRAME_REG18 18 /* integer reg 18 */
1N/A#define DW_FRAME_REG19 19 /* integer reg 19 */
1N/A#define DW_FRAME_REG20 20 /* integer reg 20 */
1N/A#define DW_FRAME_REG21 21 /* integer reg 21 */
1N/A#define DW_FRAME_REG22 22 /* integer reg 22 */
1N/A#define DW_FRAME_REG23 23 /* integer reg 23 */
1N/A#define DW_FRAME_REG24 24 /* integer reg 24 */
1N/A#define DW_FRAME_REG25 25 /* integer reg 25 */
1N/A#define DW_FRAME_REG26 26 /* integer reg 26 */
1N/A#define DW_FRAME_REG27 27 /* integer reg 27 */
1N/A#define DW_FRAME_REG28 28 /* integer reg 28 */
1N/A#define DW_FRAME_REG29 29 /* integer reg 29 */
1N/A#define DW_FRAME_REG30 30 /* integer reg 30 */
1N/A#define DW_FRAME_REG31 31 /* integer reg 31, aka ra */
1N/A
1N/A /* MIPS1, 2 have only some of these 64-bit registers.
1N/A ** MIPS1 save/restore takes 2 instructions per 64-bit reg, and
1N/A ** in that case, the register is considered stored after the second
1N/A ** swc1.
1N/A */
1N/A#define DW_FRAME_FREG0 32 /* 64-bit floating point reg 0 */
1N/A#define DW_FRAME_FREG1 33 /* 64-bit floating point reg 1 */
1N/A#define DW_FRAME_FREG2 34 /* 64-bit floating point reg 2 */
1N/A#define DW_FRAME_FREG3 35 /* 64-bit floating point reg 3 */
1N/A#define DW_FRAME_FREG4 36 /* 64-bit floating point reg 4 */
1N/A#define DW_FRAME_FREG5 37 /* 64-bit floating point reg 5 */
1N/A#define DW_FRAME_FREG6 38 /* 64-bit floating point reg 6 */
1N/A#define DW_FRAME_FREG7 39 /* 64-bit floating point reg 7 */
1N/A#define DW_FRAME_FREG8 40 /* 64-bit floating point reg 8 */
1N/A#define DW_FRAME_FREG9 41 /* 64-bit floating point reg 9 */
1N/A#define DW_FRAME_FREG10 42 /* 64-bit floating point reg 10 */
1N/A#define DW_FRAME_FREG11 43 /* 64-bit floating point reg 11 */
1N/A#define DW_FRAME_FREG12 44 /* 64-bit floating point reg 12 */
1N/A#define DW_FRAME_FREG13 45 /* 64-bit floating point reg 13 */
1N/A#define DW_FRAME_FREG14 46 /* 64-bit floating point reg 14 */
1N/A#define DW_FRAME_FREG15 47 /* 64-bit floating point reg 15 */
1N/A#define DW_FRAME_FREG16 48 /* 64-bit floating point reg 16 */
1N/A#define DW_FRAME_FREG17 49 /* 64-bit floating point reg 17 */
1N/A#define DW_FRAME_FREG18 50 /* 64-bit floating point reg 18 */
1N/A#define DW_FRAME_FREG19 51 /* 64-bit floating point reg 19 */
1N/A#define DW_FRAME_FREG20 52 /* 64-bit floating point reg 20 */
1N/A#define DW_FRAME_FREG21 53 /* 64-bit floating point reg 21 */
1N/A#define DW_FRAME_FREG22 54 /* 64-bit floating point reg 22 */
1N/A#define DW_FRAME_FREG23 55 /* 64-bit floating point reg 23 */
1N/A#define DW_FRAME_FREG24 56 /* 64-bit floating point reg 24 */
1N/A#define DW_FRAME_FREG25 57 /* 64-bit floating point reg 25 */
1N/A#define DW_FRAME_FREG26 58 /* 64-bit floating point reg 26 */
1N/A#define DW_FRAME_FREG27 59 /* 64-bit floating point reg 27 */
1N/A#define DW_FRAME_FREG28 60 /* 64-bit floating point reg 28 */
1N/A#define DW_FRAME_FREG29 61 /* 64-bit floating point reg 29 */
1N/A#define DW_FRAME_FREG30 62 /* 64-bit floating point reg 30 */
1N/A#define DW_FRAME_FREG31 63 /* 64-bit floating point reg 31 */
1N/A
1N/A#define DW_FRAME_RA_COL 64 /* column recording ra */
1N/A
1N/A#define DW_FRAME_STATIC_LINK 65 /* column recording static link*/
1N/A /* applicable to up-level */
1N/A /* addressing, as in mp code, */
1N/A /* pascal, etc */
1N/A
1N/A/* This is the number of columns in the Frame Table. This constant should
1N/A be kept in sync with DW_REG_TABLE_SIZE defined in libdwarf.h */
1N/A#define DW_FRAME_LAST_REG_NUM (DW_FRAME_STATIC_LINK + 1)
1N/A
1N/A
1N/A/*
1N/A DW_FRAME_UNDEFINED_VAL and DW_FRAME_SAME_VAL are
1N/A never on disk, just generated by libdwarf. See libdwarf.h
1N/A for their values.
1N/A*/
1N/A
1N/A
1N/A
1N/A#define DW_CHILDREN_no 0x00
1N/A#define DW_CHILDREN_yes 0x01
1N/A
1N/A#define DW_ADDR_none 0
1N/A
1N/A#ifdef __cplusplus
1N/A}
1N/A#endif
1N/A#endif /* __DWARF_H */