1 | /*
|
---|
2 | * Copyright (c) 2023 Jiří Zárevúcky
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | #ifndef DWARFS_CONSTANTS_H_
|
---|
30 | #define DWARFS_CONSTANTS_H_
|
---|
31 |
|
---|
32 | enum {
|
---|
33 | DW_SECT_INFO = 1, // .debug_info.dwo
|
---|
34 | DW_SECT_ABBREV = 3, // .debug_abbrev.dwo
|
---|
35 | DW_SECT_LINE = 4, // .debug_line.dwo
|
---|
36 | DW_SECT_LOCLISTS = 5, // .debug_loclists.dwo
|
---|
37 | DW_SECT_STR_OFFSETS = 6, // .debug_str_offsets.dwo
|
---|
38 | DW_SECT_MACRO = 7, // .debug_macro.dwo
|
---|
39 | DW_SECT_RNGLISTS = 8, // .debug_rnglists.dwo
|
---|
40 |
|
---|
41 | DW_SECT_MAX,
|
---|
42 | };
|
---|
43 |
|
---|
44 | enum {
|
---|
45 | DW_ACCESS_public = 0x01,
|
---|
46 | DW_ACCESS_protected = 0x02,
|
---|
47 | DW_ACCESS_private = 0x03,
|
---|
48 |
|
---|
49 | DW_ACCESS_MAX,
|
---|
50 | };
|
---|
51 |
|
---|
52 | enum {
|
---|
53 | DW_AT_sibling = 0x01,
|
---|
54 | DW_AT_location = 0x02,
|
---|
55 | DW_AT_name = 0x03,
|
---|
56 | DW_AT_reserved_0x04 = 0x04,
|
---|
57 | DW_AT_fund_type = 0x05,
|
---|
58 | DW_AT_mod_fund_type = 0x06,
|
---|
59 | DW_AT_user_def_type = 0x07,
|
---|
60 | DW_AT_mod_u_d_type = 0x08,
|
---|
61 | DW_AT_ordering = 0x09,
|
---|
62 | DW_AT_subscr_data = 0x0a,
|
---|
63 | DW_AT_byte_size = 0x0b,
|
---|
64 | DW_AT_bit_offset = 0x0c,
|
---|
65 | DW_AT_bit_size = 0x0d,
|
---|
66 | DW_AT_reserved_0x0e = 0x0e,
|
---|
67 | DW_AT_unused8 = 0x0f,
|
---|
68 | DW_AT_stmt_list = 0x10,
|
---|
69 | DW_AT_low_pc = 0x11,
|
---|
70 | DW_AT_high_pc = 0x12,
|
---|
71 | DW_AT_language = 0x13,
|
---|
72 | DW_AT_member = 0x14,
|
---|
73 | DW_AT_discr = 0x15,
|
---|
74 | DW_AT_discr_value = 0x16,
|
---|
75 | DW_AT_visibility = 0x17,
|
---|
76 | DW_AT_import = 0x18,
|
---|
77 | DW_AT_string_length = 0x19,
|
---|
78 | DW_AT_common_reference = 0x1a,
|
---|
79 | DW_AT_comp_dir = 0x1b,
|
---|
80 | DW_AT_const_value = 0x1c,
|
---|
81 | DW_AT_containing_type = 0x1d,
|
---|
82 | DW_AT_default_value = 0x1e,
|
---|
83 | DW_AT_reserved_0x1f = 0x1f,
|
---|
84 | DW_AT_inline = 0x20,
|
---|
85 | DW_AT_is_optional = 0x21,
|
---|
86 | DW_AT_lower_bound = 0x22,
|
---|
87 | DW_AT_reserved_0x23 = 0x23,
|
---|
88 | DW_AT_reserved_0x24 = 0x24,
|
---|
89 | DW_AT_producer = 0x25,
|
---|
90 | DW_AT_reserved_0x26 = 0x26,
|
---|
91 | DW_AT_prototyped = 0x27,
|
---|
92 | DW_AT_reserved_0x28 = 0x28,
|
---|
93 | DW_AT_reserved_0x29 = 0x29,
|
---|
94 | DW_AT_return_addr = 0x2a,
|
---|
95 | DW_AT_reserved_0x2b = 0x2b,
|
---|
96 | DW_AT_start_scope = 0x2c,
|
---|
97 | DW_AT_reserved_0x2d = 0x2d,
|
---|
98 | DW_AT_bit_stride = 0x2e,
|
---|
99 | DW_AT_upper_bound = 0x2f,
|
---|
100 | DW_AT_virtual = 0x30,
|
---|
101 | DW_AT_abstract_origin = 0x31,
|
---|
102 | DW_AT_accessibility = 0x32,
|
---|
103 | DW_AT_address_class = 0x33,
|
---|
104 | DW_AT_artificial = 0x34,
|
---|
105 | DW_AT_base_types = 0x35,
|
---|
106 | DW_AT_calling_convention = 0x36,
|
---|
107 | DW_AT_count = 0x37,
|
---|
108 | DW_AT_data_member_location = 0x38,
|
---|
109 | DW_AT_decl_column = 0x39,
|
---|
110 | DW_AT_decl_file = 0x3a,
|
---|
111 | DW_AT_decl_line = 0x3b,
|
---|
112 | DW_AT_declaration = 0x3c,
|
---|
113 | DW_AT_discr_list = 0x3d,
|
---|
114 | DW_AT_encoding = 0x3e,
|
---|
115 | DW_AT_external = 0x3f,
|
---|
116 | DW_AT_frame_base = 0x40,
|
---|
117 | DW_AT_friend = 0x41,
|
---|
118 | DW_AT_identifier_case = 0x42,
|
---|
119 | DW_AT_macro_info = 0x43,
|
---|
120 | DW_AT_namelist_item = 0x44,
|
---|
121 | DW_AT_priority = 0x45,
|
---|
122 | DW_AT_segment = 0x46,
|
---|
123 | DW_AT_specification = 0x47,
|
---|
124 | DW_AT_static_link = 0x48,
|
---|
125 | DW_AT_type = 0x49,
|
---|
126 | DW_AT_use_location = 0x4a,
|
---|
127 | DW_AT_variable_parameter = 0x4b,
|
---|
128 | DW_AT_virtuality = 0x4c,
|
---|
129 | DW_AT_vtable_elem_location = 0x4d,
|
---|
130 | DW_AT_allocated = 0x4e,
|
---|
131 | DW_AT_associated = 0x4f,
|
---|
132 | DW_AT_data_location = 0x50,
|
---|
133 | DW_AT_byte_stride = 0x51,
|
---|
134 | DW_AT_entry_pc = 0x52,
|
---|
135 | DW_AT_use_UTF8 = 0x53,
|
---|
136 | DW_AT_extension = 0x54,
|
---|
137 | DW_AT_ranges = 0x55,
|
---|
138 | DW_AT_trampoline = 0x56,
|
---|
139 | DW_AT_call_column = 0x57,
|
---|
140 | DW_AT_call_file = 0x58,
|
---|
141 | DW_AT_call_line = 0x59,
|
---|
142 | DW_AT_description = 0x5a,
|
---|
143 | DW_AT_binary_scale = 0x5b,
|
---|
144 | DW_AT_decimal_scale = 0x5c,
|
---|
145 | DW_AT_small = 0x5d,
|
---|
146 | DW_AT_decimal_sign = 0x5e,
|
---|
147 | DW_AT_digit_count = 0x5f,
|
---|
148 | DW_AT_picture_string = 0x60,
|
---|
149 | DW_AT_mutable = 0x61,
|
---|
150 | DW_AT_threads_scaled = 0x62,
|
---|
151 | DW_AT_explicit = 0x63,
|
---|
152 | DW_AT_object_pointer = 0x64,
|
---|
153 | DW_AT_endianity = 0x65,
|
---|
154 | DW_AT_elemental = 0x66,
|
---|
155 | DW_AT_pure = 0x67,
|
---|
156 | DW_AT_recursive = 0x68,
|
---|
157 | DW_AT_signature = 0x69,
|
---|
158 | DW_AT_main_subprogram = 0x6a,
|
---|
159 | DW_AT_data_bit_offset = 0x6b,
|
---|
160 | DW_AT_const_expr = 0x6c,
|
---|
161 | DW_AT_enum_class = 0x6d,
|
---|
162 | DW_AT_linkage_name = 0x6e,
|
---|
163 | DW_AT_string_length_bit_size = 0x6f,
|
---|
164 | DW_AT_string_length_byte_size = 0x70,
|
---|
165 | DW_AT_rank = 0x71,
|
---|
166 | DW_AT_str_offsets_base = 0x72,
|
---|
167 | DW_AT_addr_base = 0x73,
|
---|
168 | DW_AT_rnglists_base = 0x74,
|
---|
169 | DW_AT_dwo_id = 0x75,
|
---|
170 | DW_AT_dwo_name = 0x76,
|
---|
171 | DW_AT_reference = 0x77,
|
---|
172 | DW_AT_rvalue_reference = 0x78,
|
---|
173 | DW_AT_macros = 0x79,
|
---|
174 | DW_AT_call_all_calls = 0x7a,
|
---|
175 | DW_AT_call_all_source_calls = 0x7b,
|
---|
176 | DW_AT_call_all_tail_calls = 0x7c,
|
---|
177 | DW_AT_call_return_pc = 0x7d,
|
---|
178 | DW_AT_call_value = 0x7e,
|
---|
179 | DW_AT_call_origin = 0x7f,
|
---|
180 | DW_AT_call_parameter = 0x80,
|
---|
181 | DW_AT_call_pc = 0x81,
|
---|
182 | DW_AT_call_tail_call = 0x82,
|
---|
183 | DW_AT_call_target = 0x83,
|
---|
184 | DW_AT_call_target_clobbered = 0x84,
|
---|
185 | DW_AT_call_data_location = 0x85,
|
---|
186 | DW_AT_call_data_value = 0x86,
|
---|
187 | DW_AT_noreturn = 0x87,
|
---|
188 | DW_AT_alignment = 0x88,
|
---|
189 | DW_AT_export_symbols = 0x89,
|
---|
190 | DW_AT_deleted = 0x8a,
|
---|
191 | DW_AT_defaulted = 0x8b,
|
---|
192 | DW_AT_loclists_base = 0x8c,
|
---|
193 |
|
---|
194 | DW_AT_MAX,
|
---|
195 |
|
---|
196 | DW_AT_lo_user = 0x2000,
|
---|
197 | DW_AT_hi_user = 0x3fff,
|
---|
198 | };
|
---|
199 |
|
---|
200 | enum {
|
---|
201 | DW_ATE_address = 0x01,
|
---|
202 | DW_ATE_boolean = 0x02,
|
---|
203 | DW_ATE_complex_float = 0x03,
|
---|
204 | DW_ATE_float = 0x04,
|
---|
205 | DW_ATE_signed = 0x05,
|
---|
206 | DW_ATE_signed_char = 0x06,
|
---|
207 | DW_ATE_unsigned = 0x07,
|
---|
208 | DW_ATE_unsigned_char = 0x08,
|
---|
209 | DW_ATE_imaginary_float = 0x09,
|
---|
210 | DW_ATE_packed_decimal = 0x0a,
|
---|
211 | DW_ATE_numeric_string = 0x0b,
|
---|
212 | DW_ATE_edited = 0x0c,
|
---|
213 | DW_ATE_signed_fixed = 0x0d,
|
---|
214 | DW_ATE_unsigned_fixed = 0x0e,
|
---|
215 | DW_ATE_decimal_float = 0x0f,
|
---|
216 | DW_ATE_UTF = 0x10,
|
---|
217 | DW_ATE_UCS = 0x11,
|
---|
218 | DW_ATE_ASCII = 0x12,
|
---|
219 |
|
---|
220 | DW_ATE_MAX,
|
---|
221 |
|
---|
222 | DW_ATE_lo_user = 0x80,
|
---|
223 | DW_ATE_hi_user = 0xff,
|
---|
224 | };
|
---|
225 |
|
---|
226 | enum {
|
---|
227 | DW_CC_normal = 0x01,
|
---|
228 | DW_CC_program = 0x02,
|
---|
229 | DW_CC_nocall = 0x03,
|
---|
230 | DW_CC_pass_by_reference = 0x04,
|
---|
231 | DW_CC_pass_by_value = 0x05,
|
---|
232 |
|
---|
233 | DW_CC_MAX,
|
---|
234 |
|
---|
235 | DW_CC_lo_user = 0x40,
|
---|
236 | DW_CC_hi_user = 0xff,
|
---|
237 | };
|
---|
238 |
|
---|
239 | enum {
|
---|
240 | DW_UT_compile = 1,
|
---|
241 | DW_UT_type = 2,
|
---|
242 | DW_UT_partial = 3,
|
---|
243 | DW_UT_skeleton = 4,
|
---|
244 | DW_UT_split_compile = 5,
|
---|
245 | DW_UT_split_type = 6,
|
---|
246 |
|
---|
247 | DW_UT_MAX,
|
---|
248 |
|
---|
249 | DW_UT_lo_user = 0x80,
|
---|
250 | DW_UT_hi_user = 0xff,
|
---|
251 | };
|
---|
252 |
|
---|
253 | enum {
|
---|
254 | DW_TAG_array_type = 0x01,
|
---|
255 | DW_TAG_class_type = 0x02,
|
---|
256 | DW_TAG_entry_point = 0x03,
|
---|
257 | DW_TAG_enumeration_type = 0x04,
|
---|
258 | DW_TAG_formal_parameter = 0x05,
|
---|
259 | DW_TAG_global_subroutine = 0x06,
|
---|
260 | DW_TAG_global_variable = 0x07,
|
---|
261 | DW_TAG_imported_declaration = 0x08,
|
---|
262 | DW_TAG_reserved_0x09 = 0x09,
|
---|
263 | DW_TAG_label = 0x0a,
|
---|
264 | DW_TAG_lexical_block = 0x0b,
|
---|
265 | DW_TAG_local_variable = 0x0c,
|
---|
266 | DW_TAG_member = 0x0d,
|
---|
267 | DW_TAG_reserved_0x0e = 0x0e,
|
---|
268 | DW_TAG_pointer_type = 0x0f,
|
---|
269 | DW_TAG_reference_type = 0x10,
|
---|
270 | DW_TAG_compile_unit = 0x11,
|
---|
271 | DW_TAG_string_type = 0x12,
|
---|
272 | DW_TAG_structure_type = 0x13,
|
---|
273 | DW_TAG_subroutine = 0x14,
|
---|
274 | DW_TAG_subroutine_type = 0x15,
|
---|
275 | DW_TAG_typedef = 0x16,
|
---|
276 | DW_TAG_union_type = 0x17,
|
---|
277 | DW_TAG_unspecified_parameters = 0x18,
|
---|
278 | DW_TAG_variant = 0x19,
|
---|
279 | DW_TAG_common_block = 0x1a,
|
---|
280 | DW_TAG_common_inclusion = 0x1b,
|
---|
281 | DW_TAG_inheritance = 0x1c,
|
---|
282 | DW_TAG_inlined_subroutine = 0x1d,
|
---|
283 | DW_TAG_module = 0x1e,
|
---|
284 | DW_TAG_ptr_to_member_type = 0x1f,
|
---|
285 | DW_TAG_set_type = 0x20,
|
---|
286 | DW_TAG_subrange_type = 0x21,
|
---|
287 | DW_TAG_with_stmt = 0x22,
|
---|
288 | DW_TAG_access_declaration = 0x23,
|
---|
289 | DW_TAG_base_type = 0x24,
|
---|
290 | DW_TAG_catch_block = 0x25,
|
---|
291 | DW_TAG_const_type = 0x26,
|
---|
292 | DW_TAG_constant = 0x27,
|
---|
293 | DW_TAG_enumerator = 0x28,
|
---|
294 | DW_TAG_file_type = 0x29,
|
---|
295 | DW_TAG_friend = 0x2a,
|
---|
296 | DW_TAG_namelist = 0x2b,
|
---|
297 | DW_TAG_namelist_item = 0x2c,
|
---|
298 | DW_TAG_packed_type = 0x2d,
|
---|
299 | DW_TAG_subprogram = 0x2e,
|
---|
300 | DW_TAG_template_type_parameter = 0x2f,
|
---|
301 | DW_TAG_template_value_parameter = 0x30,
|
---|
302 | DW_TAG_thrown_type = 0x31,
|
---|
303 | DW_TAG_try_block = 0x32,
|
---|
304 | DW_TAG_variant_part = 0x33,
|
---|
305 | DW_TAG_variable = 0x34,
|
---|
306 | DW_TAG_volatile_type = 0x35,
|
---|
307 | DW_TAG_dwarf_procedure = 0x36,
|
---|
308 | DW_TAG_restrict_type = 0x37,
|
---|
309 | DW_TAG_interface_type = 0x38,
|
---|
310 | DW_TAG_namespace = 0x39,
|
---|
311 | DW_TAG_imported_module = 0x3a,
|
---|
312 | DW_TAG_unspecified_type = 0x3b,
|
---|
313 | DW_TAG_partial_unit = 0x3c,
|
---|
314 | DW_TAG_imported_unit = 0x3d,
|
---|
315 | DW_TAG_mutable_type = 0x3e,
|
---|
316 | DW_TAG_condition = 0x3f,
|
---|
317 | DW_TAG_shared_type = 0x40,
|
---|
318 | DW_TAG_type_unit = 0x41,
|
---|
319 | DW_TAG_rvalue_reference_type = 0x42,
|
---|
320 | DW_TAG_template_alias = 0x43,
|
---|
321 | DW_TAG_coarray_type = 0x44,
|
---|
322 | DW_TAG_generic_subrange = 0x45,
|
---|
323 | DW_TAG_dynamic_type = 0x46,
|
---|
324 | DW_TAG_atomic_type = 0x47,
|
---|
325 | DW_TAG_call_site = 0x48,
|
---|
326 | DW_TAG_call_site_parameter = 0x49,
|
---|
327 | DW_TAG_skeleton_unit = 0x4a,
|
---|
328 | DW_TAG_immutable_type = 0x4b,
|
---|
329 |
|
---|
330 | DW_TAG_MAX,
|
---|
331 |
|
---|
332 | DW_TAG_lo_user = 0x4080,
|
---|
333 | DW_TAG_hi_user = 0xffff,
|
---|
334 | };
|
---|
335 |
|
---|
336 | enum {
|
---|
337 | DW_FORM_addr = 0x01,
|
---|
338 | DW_FORM_reserved_0x02 = 0x02,
|
---|
339 | DW_FORM_block2 = 0x03,
|
---|
340 | DW_FORM_block4 = 0x04,
|
---|
341 | DW_FORM_data2 = 0x05,
|
---|
342 | DW_FORM_data4 = 0x06,
|
---|
343 | DW_FORM_data8 = 0x07,
|
---|
344 | DW_FORM_string = 0x08,
|
---|
345 | DW_FORM_block = 0x09,
|
---|
346 | DW_FORM_block1 = 0x0a,
|
---|
347 | DW_FORM_data1 = 0x0b,
|
---|
348 | DW_FORM_flag = 0x0c,
|
---|
349 | DW_FORM_sdata = 0x0d,
|
---|
350 | DW_FORM_strp = 0x0e,
|
---|
351 | DW_FORM_udata = 0x0f,
|
---|
352 | DW_FORM_ref_addr = 0x10,
|
---|
353 | DW_FORM_ref1 = 0x11,
|
---|
354 | DW_FORM_ref2 = 0x12,
|
---|
355 | DW_FORM_ref4 = 0x13,
|
---|
356 | DW_FORM_ref8 = 0x14,
|
---|
357 | DW_FORM_ref_udata = 0x15,
|
---|
358 | DW_FORM_indirect = 0x16,
|
---|
359 | DW_FORM_sec_offset = 0x17,
|
---|
360 | DW_FORM_exprloc = 0x18,
|
---|
361 | DW_FORM_flag_present = 0x19,
|
---|
362 | DW_FORM_strx = 0x1a,
|
---|
363 | DW_FORM_addrx = 0x1b,
|
---|
364 | DW_FORM_ref_sup4 = 0x1c,
|
---|
365 | DW_FORM_strp_sup = 0x1d,
|
---|
366 | DW_FORM_data16 = 0x1e,
|
---|
367 | DW_FORM_line_strp = 0x1f,
|
---|
368 | DW_FORM_ref_sig8 = 0x20,
|
---|
369 | DW_FORM_implicit_const = 0x21,
|
---|
370 | DW_FORM_loclistx = 0x22,
|
---|
371 | DW_FORM_rnglistx = 0x23,
|
---|
372 | DW_FORM_ref_sup8 = 0x24,
|
---|
373 | DW_FORM_strx1 = 0x25,
|
---|
374 | DW_FORM_strx2 = 0x26,
|
---|
375 | DW_FORM_strx3 = 0x27,
|
---|
376 | DW_FORM_strx4 = 0x28,
|
---|
377 | DW_FORM_addrx1 = 0x29,
|
---|
378 | DW_FORM_addrx2 = 0x2a,
|
---|
379 | DW_FORM_addrx3 = 0x2b,
|
---|
380 | DW_FORM_addrx4 = 0x2c,
|
---|
381 |
|
---|
382 | DW_FORM_MAX,
|
---|
383 | };
|
---|
384 |
|
---|
385 | enum {
|
---|
386 | DW_OP_reg = 0x01,
|
---|
387 | DW_OP_basereg = 0x02,
|
---|
388 | DW_OP_addr = 0x03,
|
---|
389 | DW_OP_const = 0x04,
|
---|
390 | DW_OP_deref2 = 0x05,
|
---|
391 | DW_OP_deref = 0x06,
|
---|
392 | DW_OP_add = 0x07,
|
---|
393 | DW_OP_const1u = 0x08,
|
---|
394 | DW_OP_const1s = 0x09,
|
---|
395 | DW_OP_const2u = 0x0a,
|
---|
396 | DW_OP_const2s = 0x0b,
|
---|
397 | DW_OP_const4u = 0x0c,
|
---|
398 | DW_OP_const4s = 0x0d,
|
---|
399 | DW_OP_const8u = 0x0e,
|
---|
400 | DW_OP_const8s = 0x0f,
|
---|
401 | DW_OP_constu = 0x10,
|
---|
402 | DW_OP_consts = 0x11,
|
---|
403 | DW_OP_dup = 0x12,
|
---|
404 | DW_OP_drop = 0x13,
|
---|
405 | DW_OP_over = 0x14,
|
---|
406 | DW_OP_pick = 0x15,
|
---|
407 | DW_OP_swap = 0x16,
|
---|
408 | DW_OP_rot = 0x17,
|
---|
409 | DW_OP_xderef = 0x18,
|
---|
410 | DW_OP_abs = 0x19,
|
---|
411 | DW_OP_and = 0x1a,
|
---|
412 | DW_OP_div = 0x1b,
|
---|
413 | DW_OP_minus = 0x1c,
|
---|
414 | DW_OP_mod = 0x1d,
|
---|
415 | DW_OP_mul = 0x1e,
|
---|
416 | DW_OP_neg = 0x1f,
|
---|
417 | DW_OP_not = 0x20,
|
---|
418 | DW_OP_or = 0x21,
|
---|
419 | DW_OP_plus = 0x22,
|
---|
420 | DW_OP_plus_uconst = 0x23,
|
---|
421 | DW_OP_shl = 0x24,
|
---|
422 | DW_OP_shr = 0x25,
|
---|
423 | DW_OP_shra = 0x26,
|
---|
424 | DW_OP_xor = 0x27,
|
---|
425 | DW_OP_bra = 0x28,
|
---|
426 | DW_OP_eq = 0x29,
|
---|
427 | DW_OP_ge = 0x2a,
|
---|
428 | DW_OP_gt = 0x2b,
|
---|
429 | DW_OP_le = 0x2c,
|
---|
430 | DW_OP_lt = 0x2d,
|
---|
431 | DW_OP_ne = 0x2e,
|
---|
432 | DW_OP_skip = 0x2f,
|
---|
433 | DW_OP_lit0 = 0x30,
|
---|
434 | DW_OP_lit1 = 0x31,
|
---|
435 | DW_OP_lit2 = 0x32,
|
---|
436 | DW_OP_lit3 = 0x33,
|
---|
437 | DW_OP_lit4 = 0x34,
|
---|
438 | DW_OP_lit5 = 0x35,
|
---|
439 | DW_OP_lit6 = 0x36,
|
---|
440 | DW_OP_lit7 = 0x37,
|
---|
441 | DW_OP_lit8 = 0x38,
|
---|
442 | DW_OP_lit9 = 0x39,
|
---|
443 | DW_OP_lit10 = 0x3a,
|
---|
444 | DW_OP_lit11 = 0x3b,
|
---|
445 | DW_OP_lit12 = 0x3c,
|
---|
446 | DW_OP_lit13 = 0x3d,
|
---|
447 | DW_OP_lit14 = 0x3e,
|
---|
448 | DW_OP_lit15 = 0x3f,
|
---|
449 | DW_OP_lit16 = 0x40,
|
---|
450 | DW_OP_lit17 = 0x41,
|
---|
451 | DW_OP_lit18 = 0x42,
|
---|
452 | DW_OP_lit19 = 0x43,
|
---|
453 | DW_OP_lit20 = 0x44,
|
---|
454 | DW_OP_lit21 = 0x45,
|
---|
455 | DW_OP_lit22 = 0x46,
|
---|
456 | DW_OP_lit23 = 0x47,
|
---|
457 | DW_OP_lit24 = 0x48,
|
---|
458 | DW_OP_lit25 = 0x49,
|
---|
459 | DW_OP_lit26 = 0x4a,
|
---|
460 | DW_OP_lit27 = 0x4b,
|
---|
461 | DW_OP_lit28 = 0x4c,
|
---|
462 | DW_OP_lit29 = 0x4d,
|
---|
463 | DW_OP_lit30 = 0x4e,
|
---|
464 | DW_OP_lit31 = 0x4f,
|
---|
465 | DW_OP_reg0 = 0x50,
|
---|
466 | DW_OP_reg1 = 0x51,
|
---|
467 | DW_OP_reg2 = 0x52,
|
---|
468 | DW_OP_reg3 = 0x53,
|
---|
469 | DW_OP_reg4 = 0x54,
|
---|
470 | DW_OP_reg5 = 0x55,
|
---|
471 | DW_OP_reg6 = 0x56,
|
---|
472 | DW_OP_reg7 = 0x57,
|
---|
473 | DW_OP_reg8 = 0x58,
|
---|
474 | DW_OP_reg9 = 0x59,
|
---|
475 | DW_OP_reg10 = 0x5a,
|
---|
476 | DW_OP_reg11 = 0x5b,
|
---|
477 | DW_OP_reg12 = 0x5c,
|
---|
478 | DW_OP_reg13 = 0x5d,
|
---|
479 | DW_OP_reg14 = 0x5e,
|
---|
480 | DW_OP_reg15 = 0x5f,
|
---|
481 | DW_OP_reg16 = 0x60,
|
---|
482 | DW_OP_reg17 = 0x61,
|
---|
483 | DW_OP_reg18 = 0x62,
|
---|
484 | DW_OP_reg19 = 0x63,
|
---|
485 | DW_OP_reg20 = 0x64,
|
---|
486 | DW_OP_reg21 = 0x65,
|
---|
487 | DW_OP_reg22 = 0x66,
|
---|
488 | DW_OP_reg23 = 0x67,
|
---|
489 | DW_OP_reg24 = 0x68,
|
---|
490 | DW_OP_reg25 = 0x69,
|
---|
491 | DW_OP_reg26 = 0x6a,
|
---|
492 | DW_OP_reg27 = 0x6b,
|
---|
493 | DW_OP_reg28 = 0x6c,
|
---|
494 | DW_OP_reg29 = 0x6d,
|
---|
495 | DW_OP_reg30 = 0x6e,
|
---|
496 | DW_OP_reg31 = 0x6f,
|
---|
497 | DW_OP_breg0 = 0x70,
|
---|
498 | DW_OP_breg1 = 0x71,
|
---|
499 | DW_OP_breg2 = 0x72,
|
---|
500 | DW_OP_breg3 = 0x73,
|
---|
501 | DW_OP_breg4 = 0x74,
|
---|
502 | DW_OP_breg5 = 0x75,
|
---|
503 | DW_OP_breg6 = 0x76,
|
---|
504 | DW_OP_breg7 = 0x77,
|
---|
505 | DW_OP_breg8 = 0x78,
|
---|
506 | DW_OP_breg9 = 0x79,
|
---|
507 | DW_OP_breg10 = 0x7a,
|
---|
508 | DW_OP_breg11 = 0x7b,
|
---|
509 | DW_OP_breg12 = 0x7c,
|
---|
510 | DW_OP_breg13 = 0x7d,
|
---|
511 | DW_OP_breg14 = 0x7e,
|
---|
512 | DW_OP_breg15 = 0x7f,
|
---|
513 | DW_OP_breg16 = 0x80,
|
---|
514 | DW_OP_breg17 = 0x81,
|
---|
515 | DW_OP_breg18 = 0x82,
|
---|
516 | DW_OP_breg19 = 0x83,
|
---|
517 | DW_OP_breg20 = 0x84,
|
---|
518 | DW_OP_breg21 = 0x85,
|
---|
519 | DW_OP_breg22 = 0x86,
|
---|
520 | DW_OP_breg23 = 0x87,
|
---|
521 | DW_OP_breg24 = 0x88,
|
---|
522 | DW_OP_breg25 = 0x89,
|
---|
523 | DW_OP_breg26 = 0x8a,
|
---|
524 | DW_OP_breg27 = 0x8b,
|
---|
525 | DW_OP_breg28 = 0x8c,
|
---|
526 | DW_OP_breg29 = 0x8d,
|
---|
527 | DW_OP_breg30 = 0x8e,
|
---|
528 | DW_OP_breg31 = 0x8f,
|
---|
529 | DW_OP_regx = 0x90,
|
---|
530 | DW_OP_fbreg = 0x91,
|
---|
531 | DW_OP_bregx = 0x92,
|
---|
532 | DW_OP_piece = 0x93,
|
---|
533 | DW_OP_deref_size = 0x94,
|
---|
534 | DW_OP_xderef_size = 0x95,
|
---|
535 | DW_OP_nop = 0x96,
|
---|
536 | DW_OP_push_object_address = 0x97,
|
---|
537 | DW_OP_call2 = 0x98,
|
---|
538 | DW_OP_call4 = 0x99,
|
---|
539 | DW_OP_call_ref = 0x9a,
|
---|
540 | DW_OP_form_tls_address = 0x9b,
|
---|
541 | DW_OP_call_frame_cfa = 0x9c,
|
---|
542 | DW_OP_bit_piece = 0x9d,
|
---|
543 | DW_OP_implicit_value = 0x9e,
|
---|
544 | DW_OP_stack_value = 0x9f,
|
---|
545 | DW_OP_implicit_pointer = 0xa0,
|
---|
546 | DW_OP_addrx = 0xa1,
|
---|
547 | DW_OP_constx = 0xa2,
|
---|
548 | DW_OP_entry_value = 0xa3,
|
---|
549 | DW_OP_const_type = 0xa4,
|
---|
550 | DW_OP_regval_type = 0xa5,
|
---|
551 | DW_OP_deref_type = 0xa6,
|
---|
552 | DW_OP_xderef_type = 0xa7,
|
---|
553 | DW_OP_convert = 0xa8,
|
---|
554 | DW_OP_reinterpret = 0xa9,
|
---|
555 |
|
---|
556 | DW_OP_MAX,
|
---|
557 |
|
---|
558 | DW_OP_lo_user = 0xe0,
|
---|
559 | DW_OP_hi_user = 0xff,
|
---|
560 | };
|
---|
561 |
|
---|
562 | enum {
|
---|
563 | DW_LLE_end_of_list = 0x00,
|
---|
564 | DW_LLE_base_addressx = 0x01,
|
---|
565 | DW_LLE_startx_endx = 0x02,
|
---|
566 | DW_LLE_startx_length = 0x03,
|
---|
567 | DW_LLE_offset_pair = 0x04,
|
---|
568 | DW_LLE_default_location = 0x05,
|
---|
569 | DW_LLE_base_address = 0x06,
|
---|
570 | DW_LLE_start_end = 0x07,
|
---|
571 | DW_LLE_start_length = 0x08,
|
---|
572 |
|
---|
573 | DW_LLE_MAX,
|
---|
574 | };
|
---|
575 |
|
---|
576 | enum {
|
---|
577 | DW_DS_unsigned = 0x01,
|
---|
578 | DW_DS_leading_overpunch = 0x02,
|
---|
579 | DW_DS_trailing_overpunch = 0x03,
|
---|
580 | DW_DS_leading_separate = 0x04,
|
---|
581 | DW_DS_trailing_separate = 0x05,
|
---|
582 |
|
---|
583 | DW_DS_MAX,
|
---|
584 | };
|
---|
585 |
|
---|
586 | enum {
|
---|
587 | DW_END_default = 0x00,
|
---|
588 | DW_END_big = 0x01,
|
---|
589 | DW_END_little = 0x02,
|
---|
590 |
|
---|
591 | DW_END_MAX,
|
---|
592 |
|
---|
593 | DW_END_lo_user = 0x40,
|
---|
594 | DW_END_hi_user = 0xff,
|
---|
595 | };
|
---|
596 |
|
---|
597 | enum {
|
---|
598 | DW_VIS_local = 0x01,
|
---|
599 | DW_VIS_exported = 0x02,
|
---|
600 | DW_VIS_qualified = 0x03,
|
---|
601 |
|
---|
602 | DW_VIS_MAX,
|
---|
603 | };
|
---|
604 |
|
---|
605 | enum {
|
---|
606 | DW_VIRTUALITY_none = 0x00,
|
---|
607 | DW_VIRTUALITY_virtual = 0x01,
|
---|
608 | DW_VIRTUALITY_pure_virtual = 0x02,
|
---|
609 |
|
---|
610 | DW_VIRTUALITY_MAX,
|
---|
611 | };
|
---|
612 |
|
---|
613 | enum {
|
---|
614 | DW_LANG_C89 = 0x01,
|
---|
615 | DW_LANG_C = 0x02,
|
---|
616 | DW_LANG_Ada83 = 0x03,
|
---|
617 | DW_LANG_C_plus_plus = 0x04,
|
---|
618 | DW_LANG_Cobol74 = 0x05,
|
---|
619 | DW_LANG_Cobol85 = 0x06,
|
---|
620 | DW_LANG_Fortran77 = 0x07,
|
---|
621 | DW_LANG_Fortran90 = 0x08,
|
---|
622 | DW_LANG_Pascal83 = 0x09,
|
---|
623 | DW_LANG_Modula2 = 0x0a,
|
---|
624 | DW_LANG_Java = 0x0b,
|
---|
625 | DW_LANG_C99 = 0x0c,
|
---|
626 | DW_LANG_Ada95 = 0x0d,
|
---|
627 | DW_LANG_Fortran95 = 0x0e,
|
---|
628 | DW_LANG_PLI = 0x0f,
|
---|
629 | DW_LANG_ObjC = 0x10,
|
---|
630 | DW_LANG_ObjC_plus_plus = 0x11,
|
---|
631 | DW_LANG_UPC = 0x12,
|
---|
632 | DW_LANG_D = 0x13,
|
---|
633 | DW_LANG_Python = 0x14,
|
---|
634 | DW_LANG_OpenCL = 0x15,
|
---|
635 | DW_LANG_Go = 0x16,
|
---|
636 | DW_LANG_Modula3 = 0x17,
|
---|
637 | DW_LANG_Haskell = 0x18,
|
---|
638 | DW_LANG_C_plus_plus_03 = 0x19,
|
---|
639 | DW_LANG_C_plus_plus_11 = 0x1a,
|
---|
640 | DW_LANG_OCaml = 0x1b,
|
---|
641 | DW_LANG_Rust = 0x1c,
|
---|
642 | DW_LANG_C11 = 0x1d,
|
---|
643 | DW_LANG_Swift = 0x1e,
|
---|
644 | DW_LANG_Julia = 0x1f,
|
---|
645 | DW_LANG_Dylan = 0x20,
|
---|
646 | DW_LANG_C_plus_plus_14 = 0x21,
|
---|
647 | DW_LANG_Fortran03 = 0x22,
|
---|
648 | DW_LANG_Fortran08 = 0x23,
|
---|
649 | DW_LANG_RenderScript = 0x24,
|
---|
650 | DW_LANG_BLISS = 0x25,
|
---|
651 |
|
---|
652 | DW_LANG_MAX,
|
---|
653 |
|
---|
654 | DW_LANG_lo_user = 0x8000,
|
---|
655 | DW_LANG_hi_user = 0xffff,
|
---|
656 | };
|
---|
657 |
|
---|
658 | enum {
|
---|
659 | DW_ADDR_none = 0,
|
---|
660 | };
|
---|
661 |
|
---|
662 | enum {
|
---|
663 | DW_ID_case_sensitive = 0x00,
|
---|
664 | DW_ID_up_case = 0x01,
|
---|
665 | DW_ID_down_case = 0x02,
|
---|
666 | DW_ID_case_insensitive = 0x03,
|
---|
667 |
|
---|
668 | DW_ID_MAX,
|
---|
669 | };
|
---|
670 |
|
---|
671 | enum {
|
---|
672 | DW_LNS_copy = 0x01,
|
---|
673 | DW_LNS_advance_pc = 0x02,
|
---|
674 | DW_LNS_advance_line = 0x03,
|
---|
675 | DW_LNS_set_file = 0x04,
|
---|
676 | DW_LNS_set_column = 0x05,
|
---|
677 | DW_LNS_negate_stmt = 0x06,
|
---|
678 | DW_LNS_set_basic_block = 0x07,
|
---|
679 | DW_LNS_const_add_pc = 0x08,
|
---|
680 | DW_LNS_fixed_advance_pc = 0x09,
|
---|
681 | DW_LNS_set_prologue_end = 0x0a,
|
---|
682 | DW_LNS_set_epilogue_begin = 0x0b,
|
---|
683 | DW_LNS_set_isa = 0x0c,
|
---|
684 |
|
---|
685 | DW_LNS_MAX,
|
---|
686 | };
|
---|
687 |
|
---|
688 | enum {
|
---|
689 | DW_LNE_end_sequence = 0x01,
|
---|
690 | DW_LNE_set_address = 0x02,
|
---|
691 | DW_LNE_define_file = 0x03,
|
---|
692 | DW_LNE_set_discriminator = 0x04,
|
---|
693 |
|
---|
694 | DW_LNE_MAX,
|
---|
695 |
|
---|
696 | DW_LNE_lo_user = 0x80,
|
---|
697 | DW_LNE_hi_user = 0xff,
|
---|
698 | };
|
---|
699 |
|
---|
700 | enum {
|
---|
701 | DW_LNCT_path = 0x1,
|
---|
702 | DW_LNCT_directory_index = 0x2,
|
---|
703 | DW_LNCT_timestamp = 0x3,
|
---|
704 | DW_LNCT_size = 0x4,
|
---|
705 | DW_LNCT_MD5 = 0x5,
|
---|
706 |
|
---|
707 | DW_LNCT_MAX,
|
---|
708 |
|
---|
709 | DW_LNCT_lo_user = 0x2000,
|
---|
710 | DW_LNCT_hi_user = 0x3fff,
|
---|
711 | };
|
---|
712 |
|
---|
713 | enum {
|
---|
714 | DW_INL_not_inlined = 0x00,
|
---|
715 | DW_INL_inlined = 0x01,
|
---|
716 | DW_INL_declared_not_inlined = 0x02,
|
---|
717 | DW_INL_declared_inlined = 0x03,
|
---|
718 |
|
---|
719 | DW_INL_MAX,
|
---|
720 | };
|
---|
721 |
|
---|
722 | enum {
|
---|
723 | DW_ORD_row_major = 0x00,
|
---|
724 | DW_ORD_col_major = 0x01,
|
---|
725 |
|
---|
726 | DW_ORD_MAX,
|
---|
727 | };
|
---|
728 |
|
---|
729 | enum {
|
---|
730 | DW_DSC_label = 0x00,
|
---|
731 | DW_DSC_range = 0x01,
|
---|
732 |
|
---|
733 | DW_DSC_MAX,
|
---|
734 | };
|
---|
735 |
|
---|
736 | enum {
|
---|
737 | DW_IDX_compile_unit = 1,
|
---|
738 | DW_IDX_type_unit = 2,
|
---|
739 | DW_IDX_die_offset = 3,
|
---|
740 | DW_IDX_parent = 4,
|
---|
741 | DW_IDX_type_hash = 5,
|
---|
742 |
|
---|
743 | DW_IDX_MAX,
|
---|
744 |
|
---|
745 | DW_IDX_lo_user = 0x2000,
|
---|
746 | DW_IDX_hi_user = 0x3fff,
|
---|
747 | };
|
---|
748 |
|
---|
749 | enum {
|
---|
750 | DW_DEFAULTED_no = 0x00,
|
---|
751 | DW_DEFAULTED_in_class = 0x01,
|
---|
752 | DW_DEFAULTED_out_of_class = 0x02,
|
---|
753 |
|
---|
754 | DW_DEFAULTED_MAX,
|
---|
755 | };
|
---|
756 |
|
---|
757 | enum {
|
---|
758 | DW_MACRO_define = 0x01,
|
---|
759 | DW_MACRO_undef = 0x02,
|
---|
760 | DW_MACRO_start_file = 0x03,
|
---|
761 | DW_MACRO_end_file = 0x04,
|
---|
762 | DW_MACRO_define_strp = 0x05,
|
---|
763 | DW_MACRO_undef_strp = 0x06,
|
---|
764 | DW_MACRO_import = 0x07,
|
---|
765 | DW_MACRO_define_sup = 0x08,
|
---|
766 | DW_MACRO_undef_sup = 0x09,
|
---|
767 | DW_MACRO_import_sup = 0x0a,
|
---|
768 | DW_MACRO_define_strx = 0x0b,
|
---|
769 | DW_MACRO_undef_strx = 0x0c,
|
---|
770 |
|
---|
771 | DW_MACRO_MAX,
|
---|
772 |
|
---|
773 | DW_MACRO_lo_user = 0xe0,
|
---|
774 | DW_MACRO_hi_user = 0xff,
|
---|
775 | };
|
---|
776 |
|
---|
777 | enum {
|
---|
778 | DW_CFA_nop = 0,
|
---|
779 | DW_CFA_set_loc = 0x01,
|
---|
780 | DW_CFA_advance_loc1 = 0x02,
|
---|
781 | DW_CFA_advance_loc2 = 0x03,
|
---|
782 | DW_CFA_advance_loc4 = 0x04,
|
---|
783 | DW_CFA_offset_extended = 0x05,
|
---|
784 | DW_CFA_restore_extended = 0x06,
|
---|
785 | DW_CFA_undefined = 0x07,
|
---|
786 | DW_CFA_same_value = 0x08,
|
---|
787 | DW_CFA_register = 0x09,
|
---|
788 | DW_CFA_remember_state = 0x0a,
|
---|
789 | DW_CFA_restore_state = 0x0b,
|
---|
790 | DW_CFA_def_cfa = 0x0c,
|
---|
791 | DW_CFA_def_cfa_register = 0x0d,
|
---|
792 | DW_CFA_def_cfa_offset = 0x0e,
|
---|
793 | DW_CFA_def_cfa_expression = 0x0f,
|
---|
794 | DW_CFA_expression = 0x10,
|
---|
795 | DW_CFA_offset_extended_sf = 0x11,
|
---|
796 | DW_CFA_def_cfa_sf = 0x12,
|
---|
797 | DW_CFA_def_cfa_offset_sf = 0x13,
|
---|
798 | DW_CFA_val_offset = 0x14,
|
---|
799 | DW_CFA_val_offset_sf = 0x15,
|
---|
800 | DW_CFA_val_expression = 0x16,
|
---|
801 |
|
---|
802 | DW_CFA_MAX,
|
---|
803 |
|
---|
804 | DW_CFA_lo_user = 0x1c,
|
---|
805 | DW_CFA_hi_user = 0x3f,
|
---|
806 |
|
---|
807 | /* These hold extra data in the 6 low-order bits. */
|
---|
808 | DW_CFA_advance_loc = 0x40,
|
---|
809 | DW_CFA_offset = 0x80,
|
---|
810 | DW_CFA_restore = 0xc0,
|
---|
811 | };
|
---|
812 |
|
---|
813 | enum {
|
---|
814 | DW_RLE_end_of_list = 0x00,
|
---|
815 | DW_RLE_base_addressx = 0x01,
|
---|
816 | DW_RLE_startx_endx = 0x02,
|
---|
817 | DW_RLE_startx_length = 0x03,
|
---|
818 | DW_RLE_offset_pair = 0x04,
|
---|
819 | DW_RLE_base_address = 0x05,
|
---|
820 | DW_RLE_start_end = 0x06,
|
---|
821 | DW_RLE_start_length = 0x07,
|
---|
822 |
|
---|
823 | DW_RLE_MAX,
|
---|
824 | };
|
---|
825 |
|
---|
826 | #endif /* DWARFS_CONSTANTS_H_ */
|
---|