Bump minimal Python 2.x version to 2.7
[pyelftools.git] / elftools / dwarf / enums.py
1 #-------------------------------------------------------------------------------
2 # elftools: dwarf/enums.py
3 #
4 # Mappings of enum names to values
5 #
6 # Eli Bendersky (eliben@gmail.com)
7 # This code is in the public domain
8 #-------------------------------------------------------------------------------
9 from ..construct import Pass
10 from ..common.py3compat import iteritems
11
12
13 ENUM_DW_TAG = dict(
14 DW_TAG_null = 0x00,
15 DW_TAG_array_type = 0x01,
16 DW_TAG_class_type = 0x02,
17 DW_TAG_entry_point = 0x03,
18 DW_TAG_enumeration_type = 0x04,
19 DW_TAG_formal_parameter = 0x05,
20 DW_TAG_imported_declaration = 0x08,
21 DW_TAG_label = 0x0a,
22 DW_TAG_lexical_block = 0x0b,
23 DW_TAG_member = 0x0d,
24 DW_TAG_pointer_type = 0x0f,
25 DW_TAG_reference_type = 0x10,
26 DW_TAG_compile_unit = 0x11,
27 DW_TAG_string_type = 0x12,
28 DW_TAG_structure_type = 0x13,
29 DW_TAG_subroutine_type = 0x15,
30 DW_TAG_typedef = 0x16,
31 DW_TAG_union_type = 0x17,
32 DW_TAG_unspecified_parameters = 0x18,
33 DW_TAG_variant = 0x19,
34 DW_TAG_common_block = 0x1a,
35 DW_TAG_common_inclusion = 0x1b,
36 DW_TAG_inheritance = 0x1c,
37 DW_TAG_inlined_subroutine = 0x1d,
38 DW_TAG_module = 0x1e,
39 DW_TAG_ptr_to_member_type = 0x1f,
40 DW_TAG_set_type = 0x20,
41 DW_TAG_subrange_type = 0x21,
42 DW_TAG_with_stmt = 0x22,
43 DW_TAG_access_declaration = 0x23,
44 DW_TAG_base_type = 0x24,
45 DW_TAG_catch_block = 0x25,
46 DW_TAG_const_type = 0x26,
47 DW_TAG_constant = 0x27,
48 DW_TAG_enumerator = 0x28,
49 DW_TAG_file_type = 0x29,
50 DW_TAG_friend = 0x2a,
51 DW_TAG_namelist = 0x2b,
52 DW_TAG_namelist_item = 0x2c,
53 DW_TAG_namelist_items = 0x2c,
54 DW_TAG_packed_type = 0x2d,
55 DW_TAG_subprogram = 0x2e,
56
57 # The DWARF standard defines these as _parameter, not _param, but we
58 # maintain compatibility with readelf.
59 DW_TAG_template_type_param = 0x2f,
60 DW_TAG_template_value_param = 0x30,
61
62 DW_TAG_thrown_type = 0x31,
63 DW_TAG_try_block = 0x32,
64 DW_TAG_variant_part = 0x33,
65 DW_TAG_variable = 0x34,
66 DW_TAG_volatile_type = 0x35,
67 DW_TAG_dwarf_procedure = 0x36,
68 DW_TAG_restrict_type = 0x37,
69 DW_TAG_interface_type = 0x38,
70 DW_TAG_namespace = 0x39,
71 DW_TAG_imported_module = 0x3a,
72 DW_TAG_unspecified_type = 0x3b,
73 DW_TAG_partial_unit = 0x3c,
74 DW_TAG_imported_unit = 0x3d,
75 DW_TAG_mutable_type = 0x3e,
76 DW_TAG_condition = 0x3f,
77 DW_TAG_shared_type = 0x40,
78 DW_TAG_type_unit = 0x41,
79 DW_TAG_rvalue_reference_type = 0x42,
80
81 DW_TAG_lo_user = 0x4080,
82 DW_TAG_hi_user = 0xffff,
83
84 _default_ = Pass,
85 )
86
87
88 ENUM_DW_CHILDREN = dict(
89 DW_CHILDREN_no = 0x00,
90 DW_CHILDREN_yes = 0x01,
91 )
92
93
94 ENUM_DW_AT = dict(
95 DW_AT_null = 0x00,
96 DW_AT_sibling = 0x01,
97 DW_AT_location = 0x02,
98 DW_AT_name = 0x03,
99 DW_AT_ordering = 0x09,
100 DW_AT_subscr_data = 0x0a,
101 DW_AT_byte_size = 0x0b,
102 DW_AT_bit_offset = 0x0c,
103 DW_AT_bit_size = 0x0d,
104 DW_AT_element_list = 0x0f,
105 DW_AT_stmt_list = 0x10,
106 DW_AT_low_pc = 0x11,
107 DW_AT_high_pc = 0x12,
108 DW_AT_language = 0x13,
109 DW_AT_member = 0x14,
110 DW_AT_discr = 0x15,
111 DW_AT_discr_value = 0x16,
112 DW_AT_visibility = 0x17,
113 DW_AT_import = 0x18,
114 DW_AT_string_length = 0x19,
115 DW_AT_common_reference = 0x1a,
116 DW_AT_comp_dir = 0x1b,
117 DW_AT_const_value = 0x1c,
118 DW_AT_containing_type = 0x1d,
119 DW_AT_default_value = 0x1e,
120 DW_AT_inline = 0x20,
121 DW_AT_is_optional = 0x21,
122 DW_AT_lower_bound = 0x22,
123 DW_AT_producer = 0x25,
124 DW_AT_prototyped = 0x27,
125 DW_AT_return_addr = 0x2a,
126 DW_AT_start_scope = 0x2c,
127 DW_AT_bit_stride = 0x2e,
128 DW_AT_stride_size = 0x2e,
129 DW_AT_upper_bound = 0x2f,
130 DW_AT_abstract_origin = 0x31,
131 DW_AT_accessibility = 0x32,
132 DW_AT_address_class = 0x33,
133 DW_AT_artificial = 0x34,
134 DW_AT_base_types = 0x35,
135 DW_AT_calling_convention = 0x36,
136 DW_AT_count = 0x37,
137 DW_AT_data_member_location = 0x38,
138 DW_AT_decl_column = 0x39,
139 DW_AT_decl_file = 0x3a,
140 DW_AT_decl_line = 0x3b,
141 DW_AT_declaration = 0x3c,
142 DW_AT_discr_list = 0x3d,
143 DW_AT_encoding = 0x3e,
144 DW_AT_external = 0x3f,
145 DW_AT_frame_base = 0x40,
146 DW_AT_friend = 0x41,
147 DW_AT_identifier_case = 0x42,
148 DW_AT_macro_info = 0x43,
149 DW_AT_namelist_item = 0x44,
150 DW_AT_priority = 0x45,
151 DW_AT_segment = 0x46,
152 DW_AT_specification = 0x47,
153 DW_AT_static_link = 0x48,
154 DW_AT_type = 0x49,
155 DW_AT_use_location = 0x4a,
156 DW_AT_variable_parameter = 0x4b,
157 DW_AT_virtuality = 0x4c,
158 DW_AT_vtable_elem_location = 0x4d,
159 DW_AT_allocated = 0x4e,
160 DW_AT_associated = 0x4f,
161 DW_AT_data_location = 0x50,
162 DW_AT_byte_stride = 0x51,
163 DW_AT_stride = 0x51,
164 DW_AT_entry_pc = 0x52,
165 DW_AT_use_UTF8 = 0x53,
166 DW_AT_extension = 0x54,
167 DW_AT_ranges = 0x55,
168 DW_AT_trampoline = 0x56,
169 DW_AT_call_column = 0x57,
170 DW_AT_call_file = 0x58,
171 DW_AT_call_line = 0x59,
172 DW_AT_description = 0x5a,
173 DW_AT_binary_scale = 0x5b,
174 DW_AT_decimal_scale = 0x5c,
175 DW_AT_small = 0x5d,
176 DW_AT_decimal_sign = 0x5e,
177 DW_AT_digit_count = 0x5f,
178 DW_AT_picture_string = 0x60,
179 DW_AT_mutable = 0x61,
180 DW_AT_threads_scaled = 0x62,
181 DW_AT_explicit = 0x63,
182 DW_AT_object_pointer = 0x64,
183 DW_AT_endianity = 0x65,
184 DW_AT_elemental = 0x66,
185 DW_AT_pure = 0x67,
186 DW_AT_recursive = 0x68,
187 DW_AT_signature = 0x69,
188 DW_AT_main_subprogram = 0x6a,
189 DW_AT_data_bit_offset = 0x6b,
190 DW_AT_const_expr = 0x6c,
191 DW_AT_enum_class = 0x6d,
192 DW_AT_linkage_name = 0x6e,
193
194 DW_AT_MIPS_fde = 0x2001,
195 DW_AT_MIPS_loop_begin = 0x2002,
196 DW_AT_MIPS_tail_loop_begin = 0x2003,
197 DW_AT_MIPS_epilog_begin = 0x2004,
198 DW_AT_MIPS_loop_unroll_factor = 0x2005,
199 DW_AT_MIPS_software_pipeline_depth = 0x2006,
200 DW_AT_MIPS_linkage_name = 0x2007,
201 DW_AT_MIPS_stride = 0x2008,
202 DW_AT_MIPS_abstract_name = 0x2009,
203 DW_AT_MIPS_clone_origin = 0x200a,
204 DW_AT_MIPS_has_inlines = 0x200b,
205 DW_AT_MIPS_stride_byte = 0x200c,
206 DW_AT_MIPS_stride_elem = 0x200d,
207 DW_AT_MIPS_ptr_dopetype = 0x200e,
208 DW_AT_MIPS_allocatable_dopetype = 0x200f,
209 DW_AT_MIPS_assumed_shape_dopetype = 0x2010,
210 DW_AT_MIPS_assumed_size = 0x2011,
211
212 DW_AT_sf_names = 0x2101,
213 DW_AT_src_info = 0x2102,
214 DW_AT_mac_info = 0x2103,
215 DW_AT_src_coords = 0x2104,
216 DW_AT_body_begin = 0x2105,
217 DW_AT_body_end = 0x2106,
218 DW_AT_GNU_vector = 0x2107,
219 DW_AT_GNU_template_name = 0x2110,
220
221 DW_AT_GNU_call_site_value = 0x2111,
222 DW_AT_GNU_call_site_data_value = 0x2112,
223 DW_AT_GNU_call_site_target = 0x2113,
224 DW_AT_GNU_call_site_target_clobbered = 0x2114,
225 DW_AT_GNU_tail_call = 0x2115,
226 DW_AT_GNU_all_tail_call_sites = 0x2116,
227 DW_AT_GNU_all_call_sites = 0x2117,
228 DW_AT_GNU_all_source_call_sites = 0x2118,
229
230 DW_AT_APPLE_optimized = 0x3fe1,
231 DW_AT_APPLE_flags = 0x3fe2,
232 DW_AT_APPLE_isa = 0x3fe3,
233 DW_AT_APPLE_block = 0x3fe4,
234 DW_AT_APPLE_major_runtime_vers = 0x3fe5,
235 DW_AT_APPLE_runtime_class = 0x3fe6,
236 DW_AT_APPLE_omit_frame_ptr = 0x3fe7,
237 DW_AT_APPLE_property_name = 0x3fe8,
238 DW_AT_APPLE_property_getter = 0x3fe9,
239 DW_AT_APPLE_property_setter = 0x3fea,
240 DW_AT_APPLE_property_attribute = 0x3feb,
241 DW_AT_APPLE_objc_complete_type = 0x3fec,
242 DW_AT_APPLE_property = 0x3fed,
243
244 _default_ = Pass,
245 )
246
247
248 ENUM_DW_FORM = dict(
249 DW_FORM_null = 0x00,
250 DW_FORM_addr = 0x01,
251 DW_FORM_block2 = 0x03,
252 DW_FORM_block4 = 0x04,
253 DW_FORM_data2 = 0x05,
254 DW_FORM_data4 = 0x06,
255 DW_FORM_data8 = 0x07,
256 DW_FORM_string = 0x08,
257 DW_FORM_block = 0x09,
258 DW_FORM_block1 = 0x0a,
259 DW_FORM_data1 = 0x0b,
260 DW_FORM_flag = 0x0c,
261 DW_FORM_sdata = 0x0d,
262 DW_FORM_strp = 0x0e,
263 DW_FORM_udata = 0x0f,
264 DW_FORM_ref_addr = 0x10,
265 DW_FORM_ref1 = 0x11,
266 DW_FORM_ref2 = 0x12,
267 DW_FORM_ref4 = 0x13,
268 DW_FORM_ref8 = 0x14,
269 DW_FORM_ref_udata = 0x15,
270 DW_FORM_indirect = 0x16,
271 DW_FORM_sec_offset = 0x17,
272 DW_FORM_exprloc = 0x18,
273 DW_FORM_flag_present = 0x19,
274 DW_FORM_ref_sig8 = 0x20,
275
276 DW_FORM_GNU_strp_alt = 0x1f21,
277 DW_FORM_GNU_ref_alt = 0x1f20,
278 _default_ = Pass,
279 )
280
281 # Inverse mapping for ENUM_DW_FORM
282 DW_FORM_raw2name = dict((v, k) for k, v in iteritems(ENUM_DW_FORM))
283