blob: a90a13a07641cffe836a9d0d5df4b3bff26f332e [file] [log] [blame]
Jim Laskeye5032892005-12-21 19:48:16 +00001//===-- llvm/CodeGen/DwarfWriter.cpp - Dwarf Framework ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by James M. Laskey and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf debug info into asm files.
11//
12//===----------------------------------------------------------------------===//
13
Jim Laskeyb2efb852006-01-04 22:28:25 +000014#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskeye5032892005-12-21 19:48:16 +000015
Jim Laskey063e7652006-01-17 17:31:53 +000016#include "llvm/ADT/StringExtras.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000017#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeyb2efb852006-01-04 22:28:25 +000018#include "llvm/CodeGen/MachineDebugInfo.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000019#include "llvm/Support/CommandLine.h"
20
Jim Laskeyb2efb852006-01-04 22:28:25 +000021#include <iostream>
Jim Laskeya7cea6f2006-01-04 13:52:30 +000022
Jim Laskeyb2efb852006-01-04 22:28:25 +000023using namespace llvm;
Jim Laskeya7cea6f2006-01-04 13:52:30 +000024
25static cl::opt<bool>
26DwarfVerbose("dwarf-verbose", cl::Hidden,
Jim Laskey063e7652006-01-17 17:31:53 +000027 cl::desc("Add comments to Dwarf directives."));
28
29//===----------------------------------------------------------------------===//
Jim Laskey063e7652006-01-17 17:31:53 +000030
31/// TagString - Return the string for the specified tag.
32///
33static const char *TagString(unsigned Tag) {
34 switch(Tag) {
35 case DW_TAG_array_type: return "TAG_array_type";
36 case DW_TAG_class_type: return "TAG_class_type";
37 case DW_TAG_entry_point: return "TAG_entry_point";
38 case DW_TAG_enumeration_type: return "TAG_enumeration_type";
39 case DW_TAG_formal_parameter: return "TAG_formal_parameter";
40 case DW_TAG_imported_declaration: return "TAG_imported_declaration";
41 case DW_TAG_label: return "TAG_label";
42 case DW_TAG_lexical_block: return "TAG_lexical_block";
43 case DW_TAG_member: return "TAG_member";
44 case DW_TAG_pointer_type: return "TAG_pointer_type";
45 case DW_TAG_reference_type: return "TAG_reference_type";
46 case DW_TAG_compile_unit: return "TAG_compile_unit";
47 case DW_TAG_string_type: return "TAG_string_type";
48 case DW_TAG_structure_type: return "TAG_structure_type";
49 case DW_TAG_subroutine_type: return "TAG_subroutine_type";
50 case DW_TAG_typedef: return "TAG_typedef";
51 case DW_TAG_union_type: return "TAG_union_type";
52 case DW_TAG_unspecified_parameters: return "TAG_unspecified_parameters";
53 case DW_TAG_variant: return "TAG_variant";
54 case DW_TAG_common_block: return "TAG_common_block";
55 case DW_TAG_common_inclusion: return "TAG_common_inclusion";
56 case DW_TAG_inheritance: return "TAG_inheritance";
57 case DW_TAG_inlined_subroutine: return "TAG_inlined_subroutine";
58 case DW_TAG_module: return "TAG_module";
59 case DW_TAG_ptr_to_member_type: return "TAG_ptr_to_member_type";
60 case DW_TAG_set_type: return "TAG_set_type";
61 case DW_TAG_subrange_type: return "TAG_subrange_type";
62 case DW_TAG_with_stmt: return "TAG_with_stmt";
63 case DW_TAG_access_declaration: return "TAG_access_declaration";
64 case DW_TAG_base_type: return "TAG_base_type";
65 case DW_TAG_catch_block: return "TAG_catch_block";
66 case DW_TAG_const_type: return "TAG_const_type";
67 case DW_TAG_constant: return "TAG_constant";
68 case DW_TAG_enumerator: return "TAG_enumerator";
69 case DW_TAG_file_type: return "TAG_file_type";
70 case DW_TAG_friend: return "TAG_friend";
71 case DW_TAG_namelist: return "TAG_namelist";
72 case DW_TAG_namelist_item: return "TAG_namelist_item";
73 case DW_TAG_packed_type: return "TAG_packed_type";
74 case DW_TAG_subprogram: return "TAG_subprogram";
75 case DW_TAG_template_type_parameter: return "TAG_template_type_parameter";
76 case DW_TAG_template_value_parameter: return "TAG_template_value_parameter";
77 case DW_TAG_thrown_type: return "TAG_thrown_type";
78 case DW_TAG_try_block: return "TAG_try_block";
79 case DW_TAG_variant_part: return "TAG_variant_part";
80 case DW_TAG_variable: return "TAG_variable";
81 case DW_TAG_volatile_type: return "TAG_volatile_type";
82 case DW_TAG_dwarf_procedure: return "TAG_dwarf_procedure";
83 case DW_TAG_restrict_type: return "TAG_restrict_type";
84 case DW_TAG_interface_type: return "TAG_interface_type";
85 case DW_TAG_namespace: return "TAG_namespace";
86 case DW_TAG_imported_module: return "TAG_imported_module";
87 case DW_TAG_unspecified_type: return "TAG_unspecified_type";
88 case DW_TAG_partial_unit: return "TAG_partial_unit";
89 case DW_TAG_imported_unit: return "TAG_imported_unit";
90 case DW_TAG_condition: return "TAG_condition";
91 case DW_TAG_shared_type: return "TAG_shared_type";
92 case DW_TAG_lo_user: return "TAG_lo_user";
93 case DW_TAG_hi_user: return "TAG_hi_user";
94 }
95 assert(0 && "Unknown Dwarf Tag");
96 return "";
97}
98
99/// ChildrenString - Return the string for the specified children flag.
100///
101static const char *ChildrenString(unsigned Children) {
102 switch(Children) {
103 case DW_CHILDREN_no: return "CHILDREN_no";
104 case DW_CHILDREN_yes: return "CHILDREN_yes";
105 }
106 assert(0 && "Unknown Dwarf ChildrenFlag");
107 return "";
108}
109
110/// AttributeString - Return the string for the specified attribute.
111///
112static const char *AttributeString(unsigned Attribute) {
113 switch(Attribute) {
114 case DW_AT_sibling: return "AT_sibling";
115 case DW_AT_location: return "AT_location";
116 case DW_AT_name: return "AT_name";
117 case DW_AT_ordering: return "AT_ordering";
118 case DW_AT_byte_size: return "AT_byte_size";
119 case DW_AT_bit_offset: return "AT_bit_offset";
120 case DW_AT_bit_size: return "AT_bit_size";
121 case DW_AT_stmt_list: return "AT_stmt_list";
122 case DW_AT_low_pc: return "AT_low_pc";
123 case DW_AT_high_pc: return "AT_high_pc";
124 case DW_AT_language: return "AT_language";
125 case DW_AT_discr: return "AT_discr";
126 case DW_AT_discr_value: return "AT_discr_value";
127 case DW_AT_visibility: return "AT_visibility";
128 case DW_AT_import: return "AT_import";
129 case DW_AT_string_length: return "AT_string_length";
130 case DW_AT_common_reference: return "AT_common_reference";
131 case DW_AT_comp_dir: return "AT_comp_dir";
132 case DW_AT_const_value: return "AT_const_value";
133 case DW_AT_containing_type: return "AT_containing_type";
134 case DW_AT_default_value: return "AT_default_value";
135 case DW_AT_inline: return "AT_inline";
136 case DW_AT_is_optional: return "AT_is_optional";
137 case DW_AT_lower_bound: return "AT_lower_bound";
138 case DW_AT_producer: return "AT_producer";
139 case DW_AT_prototyped: return "AT_prototyped";
140 case DW_AT_return_addr: return "AT_return_addr";
141 case DW_AT_start_scope: return "AT_start_scope";
142 case DW_AT_bit_stride: return "AT_bit_stride";
143 case DW_AT_upper_bound: return "AT_upper_bound";
144 case DW_AT_abstract_origin: return "AT_abstract_origin";
145 case DW_AT_accessibility: return "AT_accessibility";
146 case DW_AT_address_class: return "AT_address_class";
147 case DW_AT_artificial: return "AT_artificial";
148 case DW_AT_base_types: return "AT_base_types";
149 case DW_AT_calling_convention: return "AT_calling_convention";
150 case DW_AT_count: return "AT_count";
151 case DW_AT_data_member_location: return "AT_data_member_location";
152 case DW_AT_decl_column: return "AT_decl_column";
153 case DW_AT_decl_file: return "AT_decl_file";
154 case DW_AT_decl_line: return "AT_decl_line";
155 case DW_AT_declaration: return "AT_declaration";
156 case DW_AT_discr_list: return "AT_discr_list";
157 case DW_AT_encoding: return "AT_encoding";
158 case DW_AT_external: return "AT_external";
159 case DW_AT_frame_base: return "AT_frame_base";
160 case DW_AT_friend: return "AT_friend";
161 case DW_AT_identifier_case: return "AT_identifier_case";
162 case DW_AT_macro_info: return "AT_macro_info";
163 case DW_AT_namelist_item: return "AT_namelist_item";
164 case DW_AT_priority: return "AT_priority";
165 case DW_AT_segment: return "AT_segment";
166 case DW_AT_specification: return "AT_specification";
167 case DW_AT_static_link: return "AT_static_link";
168 case DW_AT_type: return "AT_type";
169 case DW_AT_use_location: return "AT_use_location";
170 case DW_AT_variable_parameter: return "AT_variable_parameter";
171 case DW_AT_virtuality: return "AT_virtuality";
172 case DW_AT_vtable_elem_location: return "AT_vtable_elem_location";
173 case DW_AT_allocated: return "AT_allocated";
174 case DW_AT_associated: return "AT_associated";
175 case DW_AT_data_location: return "AT_data_location";
176 case DW_AT_byte_stride: return "AT_byte_stride";
177 case DW_AT_entry_pc: return "AT_entry_pc";
178 case DW_AT_use_UTF8: return "AT_use_UTF8";
179 case DW_AT_extension: return "AT_extension";
180 case DW_AT_ranges: return "AT_ranges";
181 case DW_AT_trampoline: return "AT_trampoline";
182 case DW_AT_call_column: return "AT_call_column";
183 case DW_AT_call_file: return "AT_call_file";
184 case DW_AT_call_line: return "AT_call_line";
185 case DW_AT_description: return "AT_description";
186 case DW_AT_binary_scale: return "AT_binary_scale";
187 case DW_AT_decimal_scale: return "AT_decimal_scale";
188 case DW_AT_small: return "AT_small";
189 case DW_AT_decimal_sign: return "AT_decimal_sign";
190 case DW_AT_digit_count: return "AT_digit_count";
191 case DW_AT_picture_string: return "AT_picture_string";
192 case DW_AT_mutable: return "AT_mutable";
193 case DW_AT_threads_scaled: return "AT_threads_scaled";
194 case DW_AT_explicit: return "AT_explicit";
195 case DW_AT_object_pointer: return "AT_object_pointer";
196 case DW_AT_endianity: return "AT_endianity";
197 case DW_AT_elemental: return "AT_elemental";
198 case DW_AT_pure: return "AT_pure";
199 case DW_AT_recursive: return "AT_recursive";
200 case DW_AT_lo_user: return "AT_lo_user";
201 case DW_AT_hi_user: return "AT_hi_user";
202 }
203 assert(0 && "Unknown Dwarf Attribute");
204 return "";
205}
206
207/// FormEncodingString - Return the string for the specified form encoding.
208///
209static const char *FormEncodingString(unsigned Encoding) {
210 switch(Encoding) {
211 case DW_FORM_addr: return "FORM_addr";
212 case DW_FORM_block2: return "FORM_block2";
213 case DW_FORM_block4: return "FORM_block4";
214 case DW_FORM_data2: return "FORM_data2";
215 case DW_FORM_data4: return "FORM_data4";
216 case DW_FORM_data8: return "FORM_data8";
217 case DW_FORM_string: return "FORM_string";
218 case DW_FORM_block: return "FORM_block";
219 case DW_FORM_block1: return "FORM_block1";
220 case DW_FORM_data1: return "FORM_data1";
221 case DW_FORM_flag: return "FORM_flag";
222 case DW_FORM_sdata: return "FORM_sdata";
223 case DW_FORM_strp: return "FORM_strp";
224 case DW_FORM_udata: return "FORM_udata";
225 case DW_FORM_ref_addr: return "FORM_ref_addr";
226 case DW_FORM_ref1: return "FORM_ref1";
227 case DW_FORM_ref2: return "FORM_ref2";
228 case DW_FORM_ref4: return "FORM_ref4";
229 case DW_FORM_ref8: return "FORM_ref8";
230 case DW_FORM_ref_udata: return "FORM_ref_udata";
231 case DW_FORM_indirect: return "FORM_indirect";
232 }
233 assert(0 && "Unknown Dwarf Form Encoding");
234 return "";
235}
236
237/// OperationEncodingString - Return the string for the specified operation
238/// encoding.
239static const char *OperationEncodingString(unsigned Encoding) {
240 switch(Encoding) {
241 case DW_OP_addr: return "OP_addr";
242 case DW_OP_deref: return "OP_deref";
243 case DW_OP_const1u: return "OP_const1u";
244 case DW_OP_const1s: return "OP_const1s";
245 case DW_OP_const2u: return "OP_const2u";
246 case DW_OP_const2s: return "OP_const2s";
247 case DW_OP_const4u: return "OP_const4u";
248 case DW_OP_const4s: return "OP_const4s";
249 case DW_OP_const8u: return "OP_const8u";
250 case DW_OP_const8s: return "OP_const8s";
251 case DW_OP_constu: return "OP_constu";
252 case DW_OP_consts: return "OP_consts";
253 case DW_OP_dup: return "OP_dup";
254 case DW_OP_drop: return "OP_drop";
255 case DW_OP_over: return "OP_over";
256 case DW_OP_pick: return "OP_pick";
257 case DW_OP_swap: return "OP_swap";
258 case DW_OP_rot: return "OP_rot";
259 case DW_OP_xderef: return "OP_xderef";
260 case DW_OP_abs: return "OP_abs";
261 case DW_OP_and: return "OP_and";
262 case DW_OP_div: return "OP_div";
263 case DW_OP_minus: return "OP_minus";
264 case DW_OP_mod: return "OP_mod";
265 case DW_OP_mul: return "OP_mul";
266 case DW_OP_neg: return "OP_neg";
267 case DW_OP_not: return "OP_not";
268 case DW_OP_or: return "OP_or";
269 case DW_OP_plus: return "OP_plus";
270 case DW_OP_plus_uconst: return "OP_plus_uconst";
271 case DW_OP_shl: return "OP_shl";
272 case DW_OP_shr: return "OP_shr";
273 case DW_OP_shra: return "OP_shra";
274 case DW_OP_xor: return "OP_xor";
275 case DW_OP_skip: return "OP_skip";
276 case DW_OP_bra: return "OP_bra";
277 case DW_OP_eq: return "OP_eq";
278 case DW_OP_ge: return "OP_ge";
279 case DW_OP_gt: return "OP_gt";
280 case DW_OP_le: return "OP_le";
281 case DW_OP_lt: return "OP_lt";
282 case DW_OP_ne: return "OP_ne";
283 case DW_OP_lit0: return "OP_lit0";
284 case DW_OP_lit1: return "OP_lit1";
285 case DW_OP_lit31: return "OP_lit31";
286 case DW_OP_reg0: return "OP_reg0";
287 case DW_OP_reg1: return "OP_reg1";
288 case DW_OP_reg31: return "OP_reg31";
289 case DW_OP_breg0: return "OP_breg0";
290 case DW_OP_breg1: return "OP_breg1";
291 case DW_OP_breg31: return "OP_breg31";
292 case DW_OP_regx: return "OP_regx";
293 case DW_OP_fbreg: return "OP_fbreg";
294 case DW_OP_bregx: return "OP_bregx";
295 case DW_OP_piece: return "OP_piece";
296 case DW_OP_deref_size: return "OP_deref_size";
297 case DW_OP_xderef_size: return "OP_xderef_size";
298 case DW_OP_nop: return "OP_nop";
299 case DW_OP_push_object_address: return "OP_push_object_address";
300 case DW_OP_call2: return "OP_call2";
301 case DW_OP_call4: return "OP_call4";
302 case DW_OP_call_ref: return "OP_call_ref";
303 case DW_OP_form_tls_address: return "OP_form_tls_address";
304 case DW_OP_call_frame_cfa: return "OP_call_frame_cfa";
305 case DW_OP_lo_user: return "OP_lo_user";
306 case DW_OP_hi_user: return "OP_hi_user";
307 }
308 assert(0 && "Unknown Dwarf Operation Encoding");
309 return "";
310}
311
312/// AttributeEncodingString - Return the string for the specified attribute
313/// encoding.
314static const char *AttributeEncodingString(unsigned Encoding) {
315 switch(Encoding) {
316 case DW_ATE_address: return "ATE_address";
317 case DW_ATE_boolean: return "ATE_boolean";
318 case DW_ATE_complex_float: return "ATE_complex_float";
319 case DW_ATE_float: return "ATE_float";
320 case DW_ATE_signed: return "ATE_signed";
321 case DW_ATE_signed_char: return "ATE_signed_char";
322 case DW_ATE_unsigned: return "ATE_unsigned";
323 case DW_ATE_unsigned_char: return "ATE_unsigned_char";
324 case DW_ATE_imaginary_float: return "ATE_imaginary_float";
325 case DW_ATE_packed_decimal: return "ATE_packed_decimal";
326 case DW_ATE_numeric_string: return "ATE_numeric_string";
327 case DW_ATE_edited: return "ATE_edited";
328 case DW_ATE_signed_fixed: return "ATE_signed_fixed";
329 case DW_ATE_unsigned_fixed: return "ATE_unsigned_fixed";
330 case DW_ATE_decimal_float: return "ATE_decimal_float";
331 case DW_ATE_lo_user: return "ATE_lo_user";
332 case DW_ATE_hi_user: return "ATE_hi_user";
333 }
334 assert(0 && "Unknown Dwarf Attribute Encoding");
335 return "";
336}
337
338/// DecimalSignString - Return the string for the specified decimal sign
339/// attribute.
340static const char *DecimalSignString(unsigned Sign) {
341 switch(Sign) {
342 case DW_DS_unsigned: return "DS_unsigned";
343 case DW_DS_leading_overpunch: return "DS_leading_overpunch";
344 case DW_DS_trailing_overpunch: return "DS_trailing_overpunch";
345 case DW_DS_leading_separate: return "DS_leading_separate";
346 case DW_DS_trailing_separate: return "DS_trailing_separate";
347 }
348 assert(0 && "Unknown Dwarf Decimal Sign Attribute");
349 return "";
350}
351
352/// EndianityString - Return the string for the specified endianity.
353///
354static const char *EndianityString(unsigned Endian) {
355 switch(Endian) {
356 case DW_END_default: return "END_default";
357 case DW_END_big: return "END_big";
358 case DW_END_little: return "END_little";
359 case DW_END_lo_user: return "END_lo_user";
360 case DW_END_hi_user: return "END_hi_user";
361 }
362 assert(0 && "Unknown Dwarf Endianity");
363 return "";
364}
365
366/// AccessibilityString - Return the string for the specified accessibility.
367///
368static const char *AccessibilityString(unsigned Access) {
369 switch(Access) {
370 // Accessibility codes
371 case DW_ACCESS_public: return "ACCESS_public";
372 case DW_ACCESS_protected: return "ACCESS_protected";
373 case DW_ACCESS_private: return "ACCESS_private";
374 }
375 assert(0 && "Unknown Dwarf Accessibility");
376 return "";
377}
378
379/// VisibilityString - Return the string for the specified visibility.
380///
381static const char *VisibilityString(unsigned Visibility) {
382 switch(Visibility) {
383 case DW_VIS_local: return "VIS_local";
384 case DW_VIS_exported: return "VIS_exported";
385 case DW_VIS_qualified: return "VIS_qualified";
386 }
387 assert(0 && "Unknown Dwarf Visibility");
388 return "";
389}
390
391/// VirtualityString - Return the string for the specified virtuality.
392///
393static const char *VirtualityString(unsigned Virtuality) {
394 switch(Virtuality) {
395 case DW_VIRTUALITY_none: return "VIRTUALITY_none";
396 case DW_VIRTUALITY_virtual: return "VIRTUALITY_virtual";
397 case DW_VIRTUALITY_pure_virtual: return "VIRTUALITY_pure_virtual";
398 }
399 assert(0 && "Unknown Dwarf Virtuality");
400 return "";
401}
402
403/// LanguageString - Return the string for the specified language.
404///
405static const char *LanguageString(unsigned Language) {
406 switch(Language) {
407 case DW_LANG_C89: return "LANG_C89";
408 case DW_LANG_C: return "LANG_C";
409 case DW_LANG_Ada83: return "LANG_Ada83";
410 case DW_LANG_C_plus_plus: return "LANG_C_plus_plus";
411 case DW_LANG_Cobol74: return "LANG_Cobol74";
412 case DW_LANG_Cobol85: return "LANG_Cobol85";
413 case DW_LANG_Fortran77: return "LANG_Fortran77";
414 case DW_LANG_Fortran90: return "LANG_Fortran90";
415 case DW_LANG_Pascal83: return "LANG_Pascal83";
416 case DW_LANG_Modula2: return "LANG_Modula2";
417 case DW_LANG_Java: return "LANG_Java";
418 case DW_LANG_C99: return "LANG_C99";
419 case DW_LANG_Ada95: return "LANG_Ada95";
420 case DW_LANG_Fortran95: return "LANG_Fortran95";
421 case DW_LANG_PLI: return "LANG_PLI";
422 case DW_LANG_ObjC: return "LANG_ObjC";
423 case DW_LANG_ObjC_plus_plus: return "LANG_ObjC_plus_plus";
424 case DW_LANG_UPC: return "LANG_UPC";
425 case DW_LANG_D: return "LANG_D";
426 case DW_LANG_lo_user: return "LANG_lo_user";
427 case DW_LANG_hi_user: return "LANG_hi_user";
428 }
429 assert(0 && "Unknown Dwarf Language");
430 return "";
431}
432
433/// CaseString - Return the string for the specified identifier case.
434///
435static const char *CaseString(unsigned Case) {
436 switch(Case) {
437 case DW_ID_case_sensitive: return "ID_case_sensitive";
438 case DW_ID_up_case: return "ID_up_case";
439 case DW_ID_down_case: return "ID_down_case";
440 case DW_ID_case_insensitive: return "ID_case_insensitive";
441 }
442 assert(0 && "Unknown Dwarf Identifier Case");
443 return "";
444}
445
446/// ConventionString - Return the string for the specified calling convention.
447///
448static const char *ConventionString(unsigned Convention) {
449 switch(Convention) {
450 case DW_CC_normal: return "CC_normal";
451 case DW_CC_program: return "CC_program";
452 case DW_CC_nocall: return "CC_nocall";
453 case DW_CC_lo_user: return "CC_lo_user";
454 case DW_CC_hi_user: return "CC_hi_user";
455 }
456 assert(0 && "Unknown Dwarf Calling Convention");
457 return "";
458}
459
460/// InlineCodeString - Return the string for the specified inline code.
461///
462static const char *InlineCodeString(unsigned Code) {
463 switch(Code) {
464 case DW_INL_not_inlined: return "INL_not_inlined";
465 case DW_INL_inlined: return "INL_inlined";
466 case DW_INL_declared_not_inlined: return "INL_declared_not_inlined";
467 case DW_INL_declared_inlined: return "INL_declared_inlined";
468 }
469 assert(0 && "Unknown Dwarf Inline Code");
470 return "";
471}
472
473/// ArrayOrderString - Return the string for the specified array order.
474///
475static const char *ArrayOrderString(unsigned Order) {
476 switch(Order) {
477 case DW_ORD_row_major: return "ORD_row_major";
478 case DW_ORD_col_major: return "ORD_col_major";
479 }
480 assert(0 && "Unknown Dwarf Array Order");
481 return "";
482}
483
484/// DiscriminantString - Return the string for the specified discriminant
485/// descriptor.
486static const char *DiscriminantString(unsigned Discriminant) {
487 switch(Discriminant) {
488 case DW_DSC_label: return "DSC_label";
489 case DW_DSC_range: return "DSC_range";
490 }
491 assert(0 && "Unknown Dwarf Discriminant Descriptor");
492 return "";
493}
494
495/// LNStandardString - Return the string for the specified line number standard.
496///
497static const char *LNStandardString(unsigned Standard) {
498 switch(Standard) {
499 case DW_LNS_copy: return "LNS_copy";
500 case DW_LNS_advance_pc: return "LNS_advance_pc";
501 case DW_LNS_advance_line: return "LNS_advance_line";
502 case DW_LNS_set_file: return "LNS_set_file";
503 case DW_LNS_set_column: return "LNS_set_column";
504 case DW_LNS_negate_stmt: return "LNS_negate_stmt";
505 case DW_LNS_set_basic_block: return "LNS_set_basic_block";
506 case DW_LNS_const_add_pc: return "LNS_const_add_pc";
507 case DW_LNS_fixed_advance_pc: return "LNS_fixed_advance_pc";
508 case DW_LNS_set_prologue_end: return "LNS_set_prologue_end";
509 case DW_LNS_set_epilogue_begin: return "LNS_set_epilogue_begin";
510 case DW_LNS_set_isa: return "LNS_set_isa";
511 }
512 assert(0 && "Unknown Dwarf Line Number Standard");
513 return "";
514}
515
516/// LNExtendedString - Return the string for the specified line number extended
517/// opcode encodings.
518static const char *LNExtendedString(unsigned Encoding) {
519 switch(Encoding) {
520 // Line Number Extended Opcode Encodings
521 case DW_LNE_end_sequence: return "LNE_end_sequence";
522 case DW_LNE_set_address: return "LNE_set_address";
523 case DW_LNE_define_file: return "LNE_define_file";
524 case DW_LNE_lo_user: return "LNE_lo_user";
525 case DW_LNE_hi_user: return "LNE_hi_user";
526 }
527 assert(0 && "Unknown Dwarf Line Number Extended Opcode Encoding");
528 return "";
529}
530
531/// MacinfoString - Return the string for the specified macinfo type encodings.
532///
533static const char *MacinfoString(unsigned Encoding) {
534 switch(Encoding) {
535 // Macinfo Type Encodings
536 case DW_MACINFO_define: return "MACINFO_define";
537 case DW_MACINFO_undef: return "MACINFO_undef";
538 case DW_MACINFO_start_file: return "MACINFO_start_file";
539 case DW_MACINFO_end_file: return "MACINFO_end_file";
540 case DW_MACINFO_vendor_ext: return "MACINFO_vendor_ext";
541 }
542 assert(0 && "Unknown Dwarf Macinfo Type Encodings");
543 return "";
544}
545
546/// CallFrameString - Return the string for the specified call frame instruction
547/// encodings.
548static const char *CallFrameString(unsigned Encoding) {
549 switch(Encoding) {
550 case DW_CFA_advance_loc: return "CFA_advance_loc";
551 case DW_CFA_offset: return "CFA_offset";
552 case DW_CFA_restore: return "CFA_restore";
553 case DW_CFA_set_loc: return "CFA_set_loc";
554 case DW_CFA_advance_loc1: return "CFA_advance_loc1";
555 case DW_CFA_advance_loc2: return "CFA_advance_loc2";
556 case DW_CFA_advance_loc4: return "CFA_advance_loc4";
557 case DW_CFA_offset_extended: return "CFA_offset_extended";
558 case DW_CFA_restore_extended: return "CFA_restore_extended";
559 case DW_CFA_undefined: return "CFA_undefined";
560 case DW_CFA_same_value: return "CFA_same_value";
561 case DW_CFA_register: return "CFA_register";
562 case DW_CFA_remember_state: return "CFA_remember_state";
563 case DW_CFA_restore_state: return "CFA_restore_state";
564 case DW_CFA_def_cfa: return "CFA_def_cfa";
565 case DW_CFA_def_cfa_register: return "CFA_def_cfa_register";
566 case DW_CFA_def_cfa_offset: return "CFA_def_cfa_offset";
567 case DW_CFA_def_cfa_expression: return "CFA_def_cfa_expression";
568 case DW_CFA_expression: return "CFA_expression";
569 case DW_CFA_offset_extended_sf: return "CFA_offset_extended_sf";
570 case DW_CFA_def_cfa_sf: return "CFA_def_cfa_sf";
571 case DW_CFA_def_cfa_offset_sf: return "CFA_def_cfa_offset_sf";
572 case DW_CFA_val_offset: return "CFA_val_offset";
573 case DW_CFA_val_offset_sf: return "CFA_val_offset_sf";
574 case DW_CFA_val_expression: return "CFA_val_expression";
575 case DW_CFA_lo_user: return "CFA_lo_user";
576 case DW_CFA_hi_user: return "CFA_hi_user";
577 }
578 assert(0 && "Unknown Dwarf Call Frame Instruction Encodings");
579 return "";
580}
581
582//===----------------------------------------------------------------------===//
583
Jim Laskeyd18e2892006-01-20 20:34:06 +0000584/// operator== - Used by UniqueVector to locate entry.
585///
586bool DIEAbbrev::operator==(const DIEAbbrev &DA) const {
587 if (Tag != DA.Tag) return false;
588 if (ChildrenFlag != DA.ChildrenFlag) return false;
589 if (Data.size() != DA.Data.size()) return false;
590
591 for (unsigned i = 0, N = Data.size(); i < N; i++) {
592 const DIEAbbrevData &AttrData = Data[i];
593 const DIEAbbrevData &DAAttrData = Data[i];
594 if (AttrData.getAttribute() != DAAttrData.getAttribute()) return false;
595 if (AttrData.getForm() != DAAttrData.getForm()) return false;
596 }
597
598 return true;
599}
600
601/// operator< - Used by UniqueVector to locate entry.
602///
603bool DIEAbbrev::operator<(const DIEAbbrev &DA) const {
604 if (Tag != DA.Tag) return Tag < DA.Tag;
605 if (ChildrenFlag != DA.ChildrenFlag) return ChildrenFlag < DA.ChildrenFlag;
606 if (Data.size() != DA.Data.size()) return Data.size() < DA.Data.size();
607
608 for (unsigned i = 0, N = Data.size(); i < N; i++) {
609 const DIEAbbrevData &AttrData = Data[i];
610 const DIEAbbrevData &DAAttrData = DA.Data[i];
611 if (AttrData.getAttribute() != DAAttrData.getAttribute())
612 return AttrData.getAttribute() < DAAttrData.getAttribute();
613 if (AttrData.getForm() != DAAttrData.getForm())
614 return AttrData.getForm() < DAAttrData.getForm();
615 }
616
617 return false;
618}
619
620/// Emit - Print the abbreviation using the specified Dwarf writer.
621///
622void DIEAbbrev::Emit(const DwarfWriter &DW) const {
623 // Emit its Dwarf tag type.
624 DW.EmitULEB128Bytes(Tag);
625 DW.EOL(TagString(Tag));
626
627 // Emit whether it has children DIEs.
628 DW.EmitULEB128Bytes(ChildrenFlag);
629 DW.EOL(ChildrenString(ChildrenFlag));
630
631 // For each attribute description.
632 for (unsigned i = 0, N = Data.size(); i < N; i++) {
633 const DIEAbbrevData &AttrData = Data[i];
634
635 // Emit attribute type.
636 DW.EmitULEB128Bytes(AttrData.getAttribute());
637 DW.EOL(AttributeString(AttrData.getAttribute()));
638
639 // Emit form type.
640 DW.EmitULEB128Bytes(AttrData.getForm());
641 DW.EOL(FormEncodingString(AttrData.getForm()));
642 }
643
644 // Mark end of abbreviation.
645 DW.EmitULEB128Bytes(0); DW.EOL("EOM(1)");
646 DW.EmitULEB128Bytes(0); DW.EOL("EOM(2)");
647}
648
649#ifndef NDEBUG
650 void DIEAbbrev::print(std::ostream &O) {
651 O << "Abbreviation @"
652 << std::hex << (unsigned)this << std::dec
653 << " "
654 << TagString(Tag)
655 << " "
656 << ChildrenString(ChildrenFlag)
657 << "\n";
658
659 for (unsigned i = 0, N = Data.size(); i < N; i++) {
660 O << " "
661 << AttributeString(Data[i].getAttribute())
662 << " "
663 << FormEncodingString(Data[i].getForm())
664 << "\n";
665 }
666 }
667 void DIEAbbrev::dump() { print(std::cerr); }
668#endif
669
670//===----------------------------------------------------------------------===//
671
Jim Laskey063e7652006-01-17 17:31:53 +0000672/// EmitValue - Emit integer of appropriate size.
673///
674void DIEInteger::EmitValue(const DwarfWriter &DW, unsigned Form) const {
675 switch (Form) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000676 case DW_FORM_data1: // Fall thru
677 case DW_FORM_flag: DW.EmitByte(Integer); break;
678 case DW_FORM_data2: DW.EmitShort(Integer); break;
679 case DW_FORM_data4: DW.EmitLong(Integer); break;
Jim Laskey063e7652006-01-17 17:31:53 +0000680 default: assert(0 && "DIE Value form not supported yet"); break;
681 }
682}
683
684/// SizeOf - Determine size of integer value in bytes.
685///
686unsigned DIEInteger::SizeOf(const DwarfWriter &DW, unsigned Form) const {
687 switch (Form) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000688 case DW_FORM_flag: // Fall thru
Jim Laskey063e7652006-01-17 17:31:53 +0000689 case DW_FORM_data1: return sizeof(int8_t);
690 case DW_FORM_data2: return sizeof(int16_t);
691 case DW_FORM_data4: return sizeof(int32_t);
692 default: assert(0 && "DIE Value form not supported yet"); break;
693 }
694 return 0;
695}
696
697//===----------------------------------------------------------------------===//
698
699/// EmitValue - Emit string value.
700///
701void DIEString::EmitValue(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000702 DW.EmitString(String);
Jim Laskey063e7652006-01-17 17:31:53 +0000703}
704
705/// SizeOf - Determine size of string value in bytes.
706///
707unsigned DIEString::SizeOf(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000708 return String.size() + sizeof('\0');
Jim Laskey063e7652006-01-17 17:31:53 +0000709}
710
711//===----------------------------------------------------------------------===//
712
713/// EmitValue - Emit label value.
714///
715void DIELabel::EmitValue(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000716 DW.EmitReference(Label);
Jim Laskey063e7652006-01-17 17:31:53 +0000717}
718
719/// SizeOf - Determine size of label value in bytes.
720///
721unsigned DIELabel::SizeOf(const DwarfWriter &DW, unsigned Form) const {
722 return DW.getAddressSize();
723}
724
725//===----------------------------------------------------------------------===//
726
Jim Laskeyd18e2892006-01-20 20:34:06 +0000727/// EmitValue - Emit label value.
728///
729void DIEAsIsLabel::EmitValue(const DwarfWriter &DW, unsigned Form) const {
730 DW.EmitReference(Label);
731}
732
733/// SizeOf - Determine size of label value in bytes.
734///
735unsigned DIEAsIsLabel::SizeOf(const DwarfWriter &DW, unsigned Form) const {
736 return DW.getAddressSize();
737}
738
739//===----------------------------------------------------------------------===//
740
Jim Laskey063e7652006-01-17 17:31:53 +0000741/// EmitValue - Emit delta value.
742///
743void DIEDelta::EmitValue(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000744 DW.EmitDifference(LabelHi, LabelLo);
Jim Laskey063e7652006-01-17 17:31:53 +0000745}
746
747/// SizeOf - Determine size of delta value in bytes.
748///
749unsigned DIEDelta::SizeOf(const DwarfWriter &DW, unsigned Form) const {
750 return DW.getAddressSize();
751}
752
753//===----------------------------------------------------------------------===//
Jim Laskeyd18e2892006-01-20 20:34:06 +0000754/// EmitValue - Emit extry offset.
755///
756void DIEntry::EmitValue(const DwarfWriter &DW, unsigned Form) const {
757 DW.EmitLong(Entry->getOffset());
758}
759
760/// SizeOf - Determine size of label value in bytes.
761///
762unsigned DIEntry::SizeOf(const DwarfWriter &DW, unsigned Form) const {
763 return sizeof(int32_t);
764}
765
766//===----------------------------------------------------------------------===//
767
768DIE::DIE(unsigned Tag, unsigned ChildrenFlag)
769: Abbrev(new DIEAbbrev(Tag, ChildrenFlag))
770, AbbrevID(0)
771, Offset(0)
772, Size(0)
773, Context(NULL)
774, Children()
775, Values()
776{}
777
778DIE::~DIE() {
779 if (Abbrev) delete Abbrev;
780
781 for (unsigned i = 0, N = Children.size(); i < N; i++) {
782 delete Children[i];
783 }
784
785 for (unsigned j = 0, M = Values.size(); j < M; j++) {
786 delete Values[j];
787 }
788
789 if (Context) delete Context;
790}
791
792/// AddInt - Add a simple integer attribute data and value.
793///
794void DIE::AddInt(unsigned Attribute, unsigned Form,
795 int Integer) {
796 Abbrev->AddAttribute(Attribute, Form);
797 Values.push_back(new DIEInteger(Integer));
798}
799
800/// AddString - Add a std::string attribute data and value.
801///
802void DIE::AddString(unsigned Attribute, unsigned Form,
803 const std::string &String) {
804 Abbrev->AddAttribute(Attribute, Form);
805 Values.push_back(new DIEString(String));
806}
807
808/// AddLabel - Add a Dwarf label attribute data and value.
809///
810void DIE::AddLabel(unsigned Attribute, unsigned Form,
811 const DWLabel &Label) {
812 Abbrev->AddAttribute(Attribute, Form);
813 Values.push_back(new DIELabel(Label));
814}
815
816/// AddAsIsLabel - Add an non-Dwarf label attribute data and value.
817///
818void DIE::AddAsIsLabel(unsigned Attribute, unsigned Form,
819 const std::string &Label) {
820 Abbrev->AddAttribute(Attribute, Form);
821 Values.push_back(new DIEAsIsLabel(Label));
822}
823
824/// AddDelta - Add a label delta attribute data and value.
825///
826void DIE::AddDelta(unsigned Attribute, unsigned Form,
827 const DWLabel &Hi, const DWLabel &Lo) {
828 Abbrev->AddAttribute(Attribute, Form);
829 Values.push_back(new DIEDelta(Hi, Lo));
830}
831
832/// AddDIEntry - Add a DIE attribute data and value.
833///
834void DIE::AddDIEntry(unsigned Attribute,
835 unsigned Form, DIE *Entry) {
836 Abbrev->AddAttribute(Attribute, Form);
837 Values.push_back(new DIEntry(Entry));
838}
839
840/// Complete - Indicate that all attributes have been added and ready to get an
841/// abbreviation ID.
842void DIE::Complete(DwarfWriter &DW) {
843 AbbrevID = DW.NewAbbreviation(Abbrev);
844 delete Abbrev;
845 Abbrev = NULL;
846}
847
848/// AddChild - Add a child to the DIE.
849///
850void DIE::AddChild(DIE *Child) {
851 Children.push_back(Child);
852}
853
854//===----------------------------------------------------------------------===//
855
856/// NewBasicType - Creates a new basic type if necessary, then adds in the
857/// context and owner.
858DIE *DWContext::NewBasicType(const std::string &Name, unsigned Size,
859 unsigned Encoding) {
860 // FIXME - Just a prototype.
861 DIE *Type = Types[Name];
862
863 // If first occurance of type.
864 if (!Type) {
865 // construct the type DIE.
866 Type = new DIE(DW_TAG_base_type, DW_CHILDREN_no);
867 Type->AddString(DW_AT_name, DW_FORM_string, Name);
868 Type->AddInt (DW_AT_byte_size, DW_FORM_data1, Size);
869 Type->AddInt (DW_AT_encoding, DW_FORM_data1, Encoding);
870 Type->Complete(DW);
871
872 // Add to context owner.
873 Owner->AddChild(Type);
874
875 // Add to map.
876 Types[Name] = Type;
877 }
878
879 return Type;
880}
881
882/// NewVariable - Creates a basic variable, if necessary, then adds in the
883/// context and owner.
884DIE *DWContext::NewVariable(const std::string &Name,
885 unsigned SourceFileID, unsigned Line,
886 DIE *Type, bool IsExternal) {
887 // FIXME - Just a prototype.
888 DIE *Variable = Variables[Name];
889
890 // If first occurance of variable.
891 if (!Variable) {
892 assert(IsExternal && "Internal variables not handled yet");
893 Variable = new DIE(DW_TAG_variable, DW_CHILDREN_no);
894 Variable->AddString (DW_AT_name, DW_FORM_string, Name);
895 Variable->AddInt (DW_AT_decl_file, DW_FORM_data1, SourceFileID);
896 Variable->AddInt (DW_AT_decl_line, DW_FORM_data1, Line);
897 Variable->AddDIEntry (DW_AT_type, DW_FORM_ref4, Type);
898 Variable->AddInt (DW_AT_external, DW_FORM_flag, (int)IsExternal);
899 Variable->AddAsIsLabel(DW_AT_location, DW_FORM_block1,
900 std::string("_")+Name+".b");
901 Variable->Complete(DW);
902
903 // Add to context owner.
904 Owner->AddChild(Variable);
905
906 // Add to map.
907 Variables[Name] = Variable;
908
909 // If external add to visible names.
910 if (IsExternal) {
911 DW.NewGlobalEntity(Name, Variable);
912 }
913 }
914
915 return Variable;
916}
917
918//===----------------------------------------------------------------------===//
Jim Laskey063e7652006-01-17 17:31:53 +0000919
920/// PrintHex - Print a value as a hexidecimal value.
921///
922void DwarfWriter::PrintHex(int Value) const {
923 O << "0x" << std::hex << Value << std::dec;
924}
925
926/// EOL - Print a newline character to asm stream. If a comment is present
927/// then it will be printed first. Comments should not contain '\n'.
928void DwarfWriter::EOL(const std::string &Comment) const {
929 if (DwarfVerbose) {
930 O << "\t"
931 << Asm->CommentString
932 << " "
933 << Comment;
934 }
935 O << "\n";
936}
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000937
938/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
Jim Laskey063e7652006-01-17 17:31:53 +0000939/// unsigned leb128 value.
940void DwarfWriter::EmitULEB128Bytes(unsigned Value) const {
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000941 if (hasLEB128) {
942 O << "\t.uleb128\t"
943 << Value;
944 } else {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000945 O << Asm->Data8bitsDirective;
Jim Laskey063e7652006-01-17 17:31:53 +0000946 PrintULEB128(Value);
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000947 }
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000948}
949
950/// EmitSLEB128Bytes - Emit an assembler byte data directive to compose a
Jim Laskey063e7652006-01-17 17:31:53 +0000951/// signed leb128 value.
952void DwarfWriter::EmitSLEB128Bytes(int Value) const {
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000953 if (hasLEB128) {
954 O << "\t.sleb128\t"
955 << Value;
956 } else {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000957 O << Asm->Data8bitsDirective;
Jim Laskey063e7652006-01-17 17:31:53 +0000958 PrintSLEB128(Value);
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000959 }
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000960}
961
Jim Laskey063e7652006-01-17 17:31:53 +0000962/// PrintULEB128 - Print a series of hexidecimal values (separated by commas)
Jim Laskeyb2efb852006-01-04 22:28:25 +0000963/// representing an unsigned leb128 value.
Jim Laskey063e7652006-01-17 17:31:53 +0000964void DwarfWriter::PrintULEB128(unsigned Value) const {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000965 do {
966 unsigned Byte = Value & 0x7f;
967 Value >>= 7;
968 if (Value) Byte |= 0x80;
Jim Laskey063e7652006-01-17 17:31:53 +0000969 PrintHex(Byte);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000970 if (Value) O << ", ";
971 } while (Value);
972}
973
Jim Laskey063e7652006-01-17 17:31:53 +0000974/// SizeULEB128 - Compute the number of bytes required for an unsigned leb128
975/// value.
976unsigned DwarfWriter::SizeULEB128(unsigned Value) {
977 unsigned Size = 0;
978 do {
979 Value >>= 7;
980 Size += sizeof(int8_t);
981 } while (Value);
982 return Size;
983}
984
985/// PrintSLEB128 - Print a series of hexidecimal values (separated by commas)
Jim Laskeyb2efb852006-01-04 22:28:25 +0000986/// representing a signed leb128 value.
Jim Laskey063e7652006-01-17 17:31:53 +0000987void DwarfWriter::PrintSLEB128(int Value) const {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000988 int Sign = Value >> (8 * sizeof(Value) - 1);
989 bool IsMore;
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000990
Jim Laskeyb2efb852006-01-04 22:28:25 +0000991 do {
992 unsigned Byte = Value & 0x7f;
993 Value >>= 7;
994 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
995 if (IsMore) Byte |= 0x80;
Jim Laskey063e7652006-01-17 17:31:53 +0000996 PrintHex(Byte);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000997 if (IsMore) O << ", ";
998 } while (IsMore);
999}
1000
Jim Laskey063e7652006-01-17 17:31:53 +00001001/// SizeSLEB128 - Compute the number of bytes required for a signed leb128
1002/// value.
1003unsigned DwarfWriter::SizeSLEB128(int Value) {
1004 unsigned Size = 0;
1005 int Sign = Value >> (8 * sizeof(Value) - 1);
1006 bool IsMore;
1007
1008 do {
1009 unsigned Byte = Value & 0x7f;
1010 Value >>= 7;
1011 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
1012 Size += sizeof(int8_t);
1013 } while (IsMore);
1014 return Size;
1015}
1016
1017/// EmitByte - Emit a byte directive and value.
Jim Laskeyb2efb852006-01-04 22:28:25 +00001018///
Jim Laskey063e7652006-01-17 17:31:53 +00001019void DwarfWriter::EmitByte(int Value) const {
1020 O << Asm->Data8bitsDirective;
1021 PrintHex(Value);
1022}
1023
1024/// EmitShort - Emit a short directive and value.
1025///
1026void DwarfWriter::EmitShort(int Value) const {
1027 O << Asm->Data16bitsDirective;
1028 PrintHex(Value);
1029}
1030
1031/// EmitLong - Emit a long directive and value.
1032///
1033void DwarfWriter::EmitLong(int Value) const {
1034 O << Asm->Data32bitsDirective;
1035 PrintHex(Value);
1036}
1037
1038/// EmitString - Emit a string with quotes and a null terminator.
1039/// Special characters are emitted properly. (Eg. '\t')
1040void DwarfWriter::EmitString(const std::string &String) const {
1041 O << Asm->AsciiDirective
1042 << "\"";
1043 for (unsigned i = 0, N = String.size(); i < N; i++) {
1044 unsigned char C = String[i];
1045
1046 if (!isascii(C) || iscntrl(C)) {
1047 switch(C) {
1048 case '\b': O << "\\b"; break;
1049 case '\f': O << "\\f"; break;
1050 case '\n': O << "\\n"; break;
1051 case '\r': O << "\\r"; break;
1052 case '\t': O << "\\t"; break;
1053 default:
1054 O << '\\';
1055 O << char('0' + (C >> 6));
1056 O << char('0' + (C >> 3));
1057 O << char('0' + (C >> 0));
1058 break;
1059 }
1060 } else if (C == '\"') {
1061 O << "\\\"";
1062 } else if (C == '\'') {
1063 O << "\\\'";
1064 } else {
1065 O << C;
1066 }
1067 }
1068 O << "\\0\"";
1069}
1070
1071/// PrintLabelName - Print label name in form used by Dwarf writer.
1072///
1073void DwarfWriter::PrintLabelName(const char *Tag, unsigned Number) const {
Jim Laskeyb2efb852006-01-04 22:28:25 +00001074 O << Asm->PrivateGlobalPrefix
1075 << "debug_"
1076 << Tag
Jim Laskey063e7652006-01-17 17:31:53 +00001077 << Number;
Jim Laskeyb2efb852006-01-04 22:28:25 +00001078}
1079
Jim Laskey063e7652006-01-17 17:31:53 +00001080/// EmitLabel - Emit location label for internal use by Dwarf.
Jim Laskeyb2efb852006-01-04 22:28:25 +00001081///
Jim Laskey063e7652006-01-17 17:31:53 +00001082void DwarfWriter::EmitLabel(const char *Tag, unsigned Number) const {
1083 PrintLabelName(Tag, Number);
Jim Laskeyb2efb852006-01-04 22:28:25 +00001084 O << ":\n";
1085}
1086
Jim Laskeye719a7c2006-01-18 16:54:26 +00001087/// EmitReference - Emit a reference to a label.
Jim Laskey063e7652006-01-17 17:31:53 +00001088///
Jim Laskeye719a7c2006-01-18 16:54:26 +00001089void DwarfWriter::EmitReference(const char *Tag, unsigned Number) const {
Jim Laskey063e7652006-01-17 17:31:53 +00001090 if (AddressSize == 4)
1091 O << Asm->Data32bitsDirective;
1092 else
1093 O << Asm->Data64bitsDirective;
1094
1095 PrintLabelName(Tag, Number);
1096}
Jim Laskeyd18e2892006-01-20 20:34:06 +00001097void DwarfWriter::EmitReference(const std::string Name) const {
1098 if (AddressSize == 4)
1099 O << Asm->Data32bitsDirective;
1100 else
1101 O << Asm->Data64bitsDirective;
1102
1103 O << Name;
1104}
Jim Laskey063e7652006-01-17 17:31:53 +00001105
1106/// EmitDifference - Emit an label difference as sizeof(pointer) value. Some
1107/// assemblers do not accept absolute expressions with data directives, so there
1108/// is an option (needsSet) to use an intermediary 'set' expression.
Jim Laskeyd18e2892006-01-20 20:34:06 +00001109void DwarfWriter::EmitDifference(const char *TagHi, unsigned NumberHi,
1110 const char *TagLo, unsigned NumberLo) const {
Jim Laskey063e7652006-01-17 17:31:53 +00001111 if (needsSet) {
1112 static unsigned SetCounter = 0;
Jim Laskeyd18e2892006-01-20 20:34:06 +00001113
Jim Laskey063e7652006-01-17 17:31:53 +00001114 O << "\t.set\t";
1115 PrintLabelName("set", SetCounter);
1116 O << ",";
Jim Laskeyd18e2892006-01-20 20:34:06 +00001117 PrintLabelName(TagHi, NumberHi);
Jim Laskey063e7652006-01-17 17:31:53 +00001118 O << "-";
Jim Laskeyd18e2892006-01-20 20:34:06 +00001119 PrintLabelName(TagLo, NumberLo);
Jim Laskey063e7652006-01-17 17:31:53 +00001120 O << "\n";
1121
1122 if (AddressSize == sizeof(int32_t))
1123 O << Asm->Data32bitsDirective;
1124 else
1125 O << Asm->Data64bitsDirective;
1126
1127 PrintLabelName("set", SetCounter);
1128
1129 SetCounter++;
1130 } else {
1131 if (AddressSize == sizeof(int32_t))
1132 O << Asm->Data32bitsDirective;
1133 else
1134 O << Asm->Data64bitsDirective;
1135
Jim Laskeyd18e2892006-01-20 20:34:06 +00001136 PrintLabelName(TagHi, NumberHi);
Jim Laskey063e7652006-01-17 17:31:53 +00001137 O << "-";
Jim Laskeyd18e2892006-01-20 20:34:06 +00001138 PrintLabelName(TagLo, NumberLo);
Jim Laskey063e7652006-01-17 17:31:53 +00001139 }
1140}
1141
Jim Laskeyd18e2892006-01-20 20:34:06 +00001142/// NewAbbreviation - Add the abbreviation to the Abbreviation vector.
Jim Laskey063e7652006-01-17 17:31:53 +00001143///
Jim Laskeyd18e2892006-01-20 20:34:06 +00001144unsigned DwarfWriter::NewAbbreviation(DIEAbbrev *Abbrev) {
1145 return Abbreviations.insert(*Abbrev);
1146}
1147
1148/// NewString - Add a string to the constant pool and returns a label.
1149///
1150DWLabel DwarfWriter::NewString(const std::string &String) {
1151 unsigned StringID = StringPool.insert(String);
1152 return DWLabel("string", StringID);
1153}
1154
1155/// NewGlobalType - Make the type visible globally using the given name.
1156///
1157void DwarfWriter::NewGlobalType(const std::string &Name, DIE *Type) {
1158 // FIXME - check for duplication.
1159 GlobalTypes[Name] = Type;
1160}
1161
1162/// NewGlobalEntity - Make the entity visible globally using the given name.
1163///
1164void DwarfWriter::NewGlobalEntity(const std::string &Name, DIE *Entity) {
1165 // FIXME - check for duplication.
1166 GlobalEntities[Name] = Entity;
Jim Laskey063e7652006-01-17 17:31:53 +00001167}
1168
1169/// NewCompileUnit - Create new compile unit information.
1170///
1171DIE *DwarfWriter::NewCompileUnit(const std::string &Directory,
1172 const std::string &SourceName) {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001173 DIE *Unit = new DIE(DW_TAG_compile_unit, DW_CHILDREN_yes);
Jim Laskey063e7652006-01-17 17:31:53 +00001174 // FIXME - use the correct line set.
Jim Laskeyd18e2892006-01-20 20:34:06 +00001175 Unit->AddLabel (DW_AT_stmt_list, DW_FORM_data4, DWLabel("line", 0));
1176 Unit->AddLabel (DW_AT_high_pc, DW_FORM_addr, DWLabel("text_end", 0));
1177 Unit->AddLabel (DW_AT_low_pc, DW_FORM_addr, DWLabel("text_begin", 0));
Jim Laskey063e7652006-01-17 17:31:53 +00001178 // FIXME - The producer needs to be in this form, but should come from
1179 // an appropriate source.
Jim Laskeyd18e2892006-01-20 20:34:06 +00001180 Unit->AddString(DW_AT_producer, DW_FORM_string,
1181 "llvm 3.4.x (LLVM Research Group)");
1182 Unit->AddInt (DW_AT_language, DW_FORM_data1, DW_LANG_C89);
1183 Unit->AddString(DW_AT_name, DW_FORM_string, SourceName);
1184 Unit->AddString(DW_AT_comp_dir, DW_FORM_string, Directory);
1185 Unit->Complete(*this);
Jim Laskey063e7652006-01-17 17:31:53 +00001186
Jim Laskeyd18e2892006-01-20 20:34:06 +00001187 return Unit;
Jim Laskey063e7652006-01-17 17:31:53 +00001188}
1189
1190/// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc
1191/// tools to recognize the object file contains Dwarf information.
Jim Laskeyb2efb852006-01-04 22:28:25 +00001192///
1193void DwarfWriter::EmitInitial() const {
Jim Laskey063e7652006-01-17 17:31:53 +00001194 // Dwarf sections base addresses.
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001195 Asm->SwitchSection(DwarfAbbrevSection, 0);
1196 EmitLabel("abbrev", 0);
1197 Asm->SwitchSection(DwarfInfoSection, 0);
1198 EmitLabel("info", 0);
1199 Asm->SwitchSection(DwarfLineSection, 0);
1200 EmitLabel("line", 0);
Jim Laskey063e7652006-01-17 17:31:53 +00001201
1202 // Standard sections base addresses.
1203 Asm->SwitchSection(TextSection, 0);
1204 EmitLabel("text_begin", 0);
1205 Asm->SwitchSection(DataSection, 0);
1206 EmitLabel("data_begin", 0);
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001207}
1208
Jim Laskey063e7652006-01-17 17:31:53 +00001209/// EmitDIE - Recusively Emits a debug information entry.
1210///
1211void DwarfWriter::EmitDIE(DIE *Die) const {
1212 // Get the abbreviation for this DIE.
1213 unsigned AbbrevID = Die->getAbbrevID();
1214 const DIEAbbrev &Abbrev = Abbreviations[AbbrevID];
1215
1216 // Emit the code (index) for the abbreviation.
1217 EmitULEB128Bytes(AbbrevID);
1218 EOL(std::string("Abbrev [" +
1219 utostr(AbbrevID) +
1220 TagString(Abbrev.getTag())) +
1221 " ");
1222
1223 const std::vector<DIEValue *> &Values = Die->getValues();
Jim Laskeyd18e2892006-01-20 20:34:06 +00001224 const std::vector<DIEAbbrevData> &AbbrevData = Abbrev.getData();
Jim Laskey063e7652006-01-17 17:31:53 +00001225
1226 // Emit the DIE attribute values.
1227 for (unsigned i = 0, N = Values.size(); i < N; i++) {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001228 unsigned Attr = AbbrevData[i].getAttribute();
1229 unsigned Form = AbbrevData[i].getForm();
Jim Laskey063e7652006-01-17 17:31:53 +00001230 assert(Form && "Too many attributes for DIE (check abbreviation)");
1231
1232 switch (Attr) {
1233 case DW_AT_sibling: {
1234 EmitLong(Die->SiblingOffset());
1235 break;
1236 }
1237 default: {
1238 // Emit an attribute using the defined form.
1239 Values[i]->EmitValue(*this, Form);
1240 break;
1241 }
1242 }
1243
1244 EOL(AttributeString(Attr));
1245 }
1246
1247 // Emit the DIE children if any.
1248 if (Abbrev.getChildrenFlag() == DW_CHILDREN_yes) {
1249 const std::vector<DIE *> &Children = Die->getChildren();
1250
1251 for (unsigned j = 0, M = Children.size(); j < M; j++) {
1252 // FIXME - handle sibling offsets.
1253 // FIXME - handle all DIE types.
1254 EmitDIE(Children[j]);
1255 }
1256
1257 EmitByte(0); EOL("End Of Children Mark");
1258 }
1259}
1260
1261/// SizeAndOffsetDie - Compute the size and offset of a DIE.
1262///
1263unsigned DwarfWriter::SizeAndOffsetDie(DIE *Die, unsigned Offset) const {
1264 // Get the abbreviation for this DIE.
1265 unsigned AbbrevID = Die->getAbbrevID();
1266 const DIEAbbrev &Abbrev = Abbreviations[AbbrevID];
1267
1268 // Set DIE offset
1269 Die->setOffset(Offset);
1270
1271 // Start the size with the size of abbreviation code.
1272 Offset += SizeULEB128(AbbrevID);
1273
1274 const std::vector<DIEValue *> &Values = Die->getValues();
Jim Laskeyd18e2892006-01-20 20:34:06 +00001275 const std::vector<DIEAbbrevData> &AbbrevData = Abbrev.getData();
Jim Laskey063e7652006-01-17 17:31:53 +00001276
1277 // Emit the DIE attribute values.
1278 for (unsigned i = 0, N = Values.size(); i < N; i++) {
1279 // Size attribute value.
Jim Laskeyd18e2892006-01-20 20:34:06 +00001280 Offset += Values[i]->SizeOf(*this, AbbrevData[i].getForm());
Jim Laskey063e7652006-01-17 17:31:53 +00001281 }
1282
1283 // Emit the DIE children if any.
1284 if (Abbrev.getChildrenFlag() == DW_CHILDREN_yes) {
1285 const std::vector<DIE *> &Children = Die->getChildren();
1286
1287 for (unsigned j = 0, M = Children.size(); j < M; j++) {
1288 // FIXME - handle sibling offsets.
1289 // FIXME - handle all DIE types.
1290 Offset = SizeAndOffsetDie(Children[j], Offset);
1291 }
1292
1293 // End of children marker.
1294 Offset += sizeof(int8_t);
1295 }
1296
1297 Die->setSize(Offset - Die->getOffset());
1298 return Offset;
1299}
1300
1301/// SizeAndOffsets - Compute the size and offset of all the DIEs.
1302///
1303void DwarfWriter::SizeAndOffsets() {
1304 // Compute size of debug unit header
1305 unsigned Offset = sizeof(int32_t) + // Length of Compilation Unit Info
1306 sizeof(int16_t) + // DWARF version number
1307 sizeof(int32_t) + // Offset Into Abbrev. Section
Jim Laskeyd18e2892006-01-20 20:34:06 +00001308 sizeof(int8_t); // Pointer Size (in bytes)
Jim Laskey063e7652006-01-17 17:31:53 +00001309
1310 // Process each compile unit.
1311 for (unsigned i = 0, N = CompileUnits.size(); i < N; i++) {
1312 Offset = SizeAndOffsetDie(CompileUnits[i], Offset);
1313 }
1314}
1315
1316/// EmitDebugInfo - Emit the debug info section.
1317///
1318void DwarfWriter::EmitDebugInfo() const {
1319 // Start debug info section.
1320 Asm->SwitchSection(DwarfInfoSection, 0);
1321
1322 // Get the number of compile units.
1323 unsigned N = CompileUnits.size();
1324
1325 // If there are any compile units.
1326 if (N) {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001327 EmitLabel("info_begin", 0);
1328
Jim Laskey063e7652006-01-17 17:31:53 +00001329 // Emit the compile units header.
1330
1331 // Emit size of content not including length itself
1332 unsigned ContentSize = CompileUnits[N - 1]->SiblingOffset();
1333 EmitLong(ContentSize - sizeof(int32_t));
1334 EOL("Length of Compilation Unit Info");
1335
1336 EmitShort(DWARF_VERSION); EOL("DWARF version number");
1337
Jim Laskeyd18e2892006-01-20 20:34:06 +00001338 EmitReference("abbrev_begin", 0); EOL("Offset Into Abbrev. Section");
Jim Laskey063e7652006-01-17 17:31:53 +00001339
1340 EmitByte(AddressSize); EOL("Address Size (in bytes)");
1341
1342 // Process each compile unit.
1343 for (unsigned i = 0; i < N; i++) {
1344 EmitDIE(CompileUnits[i]);
1345 }
Jim Laskeyd18e2892006-01-20 20:34:06 +00001346
1347 EmitLabel("info_end", 0);
Jim Laskey063e7652006-01-17 17:31:53 +00001348 }
1349}
1350
1351/// EmitAbbreviations - Emit the abbreviation section.
1352///
1353void DwarfWriter::EmitAbbreviations() const {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001354 // Check to see if it is worth the effort.
1355 if (!Abbreviations.empty()) {
1356 // Start the debug abbrev section.
1357 Asm->SwitchSection(DwarfAbbrevSection, 0);
Jim Laskey063e7652006-01-17 17:31:53 +00001358
Jim Laskeyd18e2892006-01-20 20:34:06 +00001359 EmitLabel("abbrev_begin", 0);
Jim Laskey063e7652006-01-17 17:31:53 +00001360
Jim Laskeyd18e2892006-01-20 20:34:06 +00001361 // For each abbrevation.
1362 for (unsigned AbbrevID = 1, NAID = Abbreviations.size();
1363 AbbrevID <= NAID; AbbrevID++) {
1364 // Get abbreviation data
1365 const DIEAbbrev &Abbrev = Abbreviations[AbbrevID];
Jim Laskey063e7652006-01-17 17:31:53 +00001366
Jim Laskeyd18e2892006-01-20 20:34:06 +00001367 // Emit the abbrevations code (base 1 index.)
1368 EmitULEB128Bytes(AbbrevID); EOL("Abbreviation Code");
Jim Laskey063e7652006-01-17 17:31:53 +00001369
Jim Laskeyd18e2892006-01-20 20:34:06 +00001370 // Emit the abbreviations data.
1371 Abbrev.Emit(*this);
Jim Laskey063e7652006-01-17 17:31:53 +00001372 }
Jim Laskeyd18e2892006-01-20 20:34:06 +00001373
1374 EmitLabel("abbrev_end", 0);
Jim Laskey063e7652006-01-17 17:31:53 +00001375 }
1376}
1377
1378/// EmitDebugLines - Emit source line information.
1379///
1380void DwarfWriter::EmitDebugLines() const {
1381 // Minimum line delta, thus ranging from -10..(255-10).
1382 const int MinLineDelta = -(DW_LNS_fixed_advance_pc + 1);
1383 // Maximum line delta, thus ranging from -10..(255-10).
1384 const int MaxLineDelta = 255 + MinLineDelta;
1385
1386 // Start the dwarf line section.
1387 Asm->SwitchSection(DwarfLineSection, 0);
1388
1389 // Construct the section header.
1390
1391 EmitDifference("line_end", 0, "line_begin", 0);
1392 EOL("Length of Source Line Info");
1393 EmitLabel("line_begin", 0);
1394
1395 EmitShort(DWARF_VERSION); EOL("DWARF version number");
1396
1397 EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0);
1398 EOL("Prolog Length");
1399 EmitLabel("line_prolog_begin", 0);
1400
1401 EmitByte(1); EOL("Minimum Instruction Length");
1402
1403 EmitByte(1); EOL("Default is_stmt_start flag");
1404
1405 EmitByte(MinLineDelta); EOL("Line Base Value (Special Opcodes)");
1406
1407 EmitByte(MaxLineDelta); EOL("Line Range Value (Special Opcodes)");
1408
1409 EmitByte(-MinLineDelta); EOL("Special Opcode Base");
1410
1411 // Line number standard opcode encodings argument count
1412 EmitByte(0); EOL("DW_LNS_copy arg count");
1413 EmitByte(1); EOL("DW_LNS_advance_pc arg count");
1414 EmitByte(1); EOL("DW_LNS_advance_line arg count");
1415 EmitByte(1); EOL("DW_LNS_set_file arg count");
1416 EmitByte(1); EOL("DW_LNS_set_column arg count");
1417 EmitByte(0); EOL("DW_LNS_negate_stmt arg count");
1418 EmitByte(0); EOL("DW_LNS_set_basic_block arg count");
1419 EmitByte(0); EOL("DW_LNS_const_add_pc arg count");
1420 EmitByte(1); EOL("DW_LNS_fixed_advance_pc arg count");
1421
1422 const UniqueVector<std::string> &Directories = DebugInfo->getDirectories();
1423 const UniqueVector<SourceFileInfo> &SourceFiles = DebugInfo->getSourceFiles();
1424
1425 // Emit directories.
1426 for (unsigned DirectoryID = 1, NDID = Directories.size();
1427 DirectoryID <= NDID; DirectoryID++) {
1428 EmitString(Directories[DirectoryID]); EOL("Directory");
1429 }
1430 EmitByte(0); EOL("End of directories");
1431
1432 // Emit files.
1433 for (unsigned SourceID = 1, NSID = SourceFiles.size();
1434 SourceID <= NSID; SourceID++) {
1435 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
1436 EmitString(SourceFile.getName()); EOL("Source");
1437 EmitULEB128Bytes(SourceFile.getDirectoryID()); EOL("Directory #");
1438 EmitULEB128Bytes(0); EOL("Mod date");
1439 EmitULEB128Bytes(0); EOL("File size");
1440 }
1441 EmitByte(0); EOL("End of files");
1442
1443 EmitLabel("line_prolog_end", 0);
1444
1445 // Emit line information
1446 const std::vector<SourceLineInfo *> &LineInfos = DebugInfo->getSourceLines();
1447
1448 // Dwarf assumes we start with first line of first source file.
1449 unsigned Source = 1;
1450 unsigned Line = 1;
1451
1452 // Construct rows of the address, source, line, column matrix.
1453 for (unsigned i = 0, N = LineInfos.size(); i < N; i++) {
1454 SourceLineInfo *LineInfo = LineInfos[i];
1455
1456 // Define the line address.
1457 EmitByte(0); EOL("Extended Op");
1458 EmitByte(4 + 1); EOL("Op size");
1459 EmitByte(DW_LNE_set_address); EOL("DW_LNE_set_address");
Jim Laskeye719a7c2006-01-18 16:54:26 +00001460 EmitReference("loc", i + 1); EOL("Location label");
Jim Laskey063e7652006-01-17 17:31:53 +00001461
1462 // If change of source, then switch to the new source.
1463 if (Source != LineInfo->getSourceID()) {
1464 Source = LineInfo->getSourceID();
1465 EmitByte(DW_LNS_set_file); EOL("DW_LNS_set_file");
1466 EmitULEB128Bytes(0); EOL("New Source");
1467 }
1468
1469 // If change of line.
1470 if (Line != LineInfo->getLine()) {
1471 // Determine offset.
1472 int Offset = LineInfo->getLine() - Line;
1473 int Delta = Offset - MinLineDelta;
1474
1475 // Update line.
1476 Line = LineInfo->getLine();
1477
1478 // If delta is small enough and in range...
1479 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
1480 // ... then use fast opcode.
1481 EmitByte(Delta - MinLineDelta); EOL("Line Delta");
1482 } else {
1483 // ... otherwise use long hand.
1484 EmitByte(DW_LNS_advance_line); EOL("DW_LNS_advance_line");
1485 EmitSLEB128Bytes(Offset); EOL("Line Offset");
1486 EmitByte(DW_LNS_copy); EOL("DW_LNS_copy");
1487 }
1488 } else {
1489 // Copy the previous row (different address or source)
1490 EmitByte(DW_LNS_copy); EOL("DW_LNS_copy");
1491 }
1492 }
1493
1494 // Mark end of matrix.
1495 EmitByte(0); EOL("DW_LNE_end_sequence");
1496 EmitULEB128Bytes(1); O << "\n";
1497 EmitByte(1); O << "\n";
1498
1499 EmitLabel("line_end", 0);
1500}
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001501
1502/// EmitDebugFrame - Emit visible names into a debug frame section.
1503///
1504void DwarfWriter::EmitDebugFrame() {
Jim Laskeye719a7c2006-01-18 16:54:26 +00001505 // FIXME - Should be per frame
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001506}
1507
1508/// EmitDebugPubNames - Emit visible names into a debug pubnames section.
1509///
1510void DwarfWriter::EmitDebugPubNames() {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001511 // Check to see if it is worth the effort.
1512 if (!GlobalEntities.empty()) {
1513 // Start the dwarf pubnames section.
1514 Asm->SwitchSection(DwarfPubNamesSection, 0);
1515
1516 EmitDifference("pubnames_end", 0, "pubnames_begin", 0);
1517 EOL("Length of Public Names Info");
1518
1519 EmitLabel("pubnames_begin", 0);
1520
1521 EmitShort(DWARF_VERSION); EOL("DWARF Version");
1522
1523 EmitReference("info_begin", 0); EOL("Offset of Compilation Unit Info");
1524
1525 EmitDifference("info_end", 0, "info_begin", 0);
1526 EOL("Compilation Unit Length");
1527
1528 for (std::map<std::string, DIE *>::iterator G = GlobalTypes.begin(),
1529 GE = GlobalTypes.begin();
1530 G != GE; G++) {
1531 const std::string &Name = (*G).first;
1532 DIE * Entity = (*G).second;
1533
1534 EmitLong(Entity->getOffset()); EOL("DIE offset");
1535 EmitString(Name); EOL("External Name");
1536
1537 }
1538
1539 EmitLong(0); EOL("End Mark");
1540 EmitLabel("pubnames_end", 0);
1541 }
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001542}
1543
1544/// EmitDebugPubTypes - Emit visible names into a debug pubtypes section.
1545///
1546void DwarfWriter::EmitDebugPubTypes() {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001547 // Check to see if it is worth the effort.
1548 if (!GlobalTypes.empty()) {
1549 // Start the dwarf pubtypes section.
1550 Asm->SwitchSection(DwarfPubTypesSection, 0);
1551 }
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001552}
1553
1554/// EmitDebugStr - Emit visible names into a debug str section.
1555///
1556void DwarfWriter::EmitDebugStr() {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001557 // Check to see if it is worth the effort.
1558 if (!StringPool.empty()) {
1559 // Start the dwarf str section.
1560 Asm->SwitchSection(DwarfStrSection, 0);
1561
1562 // For each of strings in teh string pool.
1563 for (unsigned StringID = 1, N = StringPool.size();
1564 StringID <= N; StringID++) {
1565 // Emit a label for reference from debug information entries.
1566 EmitLabel("string", StringID);
1567 // Emit the string itself.
1568 const std::string &String = StringPool[StringID];
1569 EmitString(String); O << "\n";
1570 }
1571 }
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001572}
1573
1574/// EmitDebugLoc - Emit visible names into a debug loc section.
1575///
1576void DwarfWriter::EmitDebugLoc() {
Jim Laskeye719a7c2006-01-18 16:54:26 +00001577 // Start the dwarf loc section.
1578 Asm->SwitchSection(DwarfLocSection, 0);
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001579}
1580
1581/// EmitDebugARanges - Emit visible names into a debug aranges section.
1582///
1583void DwarfWriter::EmitDebugARanges() {
Jim Laskeye719a7c2006-01-18 16:54:26 +00001584 // Start the dwarf aranges section.
1585 Asm->SwitchSection(DwarfARangesSection, 0);
1586
1587 // FIXME - Mock up
1588
1589 // Don't include size of length
1590 EmitLong(0x1c); EOL("Length of Address Ranges Info");
1591
1592 EmitShort(DWARF_VERSION); EOL("Dwarf Version");
1593
Jim Laskeyd18e2892006-01-20 20:34:06 +00001594 EmitReference("info_begin", 0); EOL("Offset of Compilation Unit Info");
Jim Laskeye719a7c2006-01-18 16:54:26 +00001595
1596 EmitByte(AddressSize); EOL("Size of Address");
1597
1598 EmitByte(0); EOL("Size of Segment Descriptor");
1599
1600 EmitShort(0); EOL("Pad (1)");
1601 EmitShort(0); EOL("Pad (2)");
1602
1603 // Range 1
1604 EmitReference("text_begin", 0); EOL("Address");
1605 EmitDifference("text_end", 0, "text_begin", 0); EOL("Length");
1606
1607 EmitLong(0); EOL("EOM (1)");
1608 EmitLong(0); EOL("EOM (2)");
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001609}
1610
1611/// EmitDebugRanges - Emit visible names into a debug ranges section.
1612///
1613void DwarfWriter::EmitDebugRanges() {
Jim Laskeye719a7c2006-01-18 16:54:26 +00001614 // Start the dwarf ranges section.
1615 Asm->SwitchSection(DwarfRangesSection, 0);
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001616}
1617
1618/// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
1619///
1620void DwarfWriter::EmitDebugMacInfo() {
Jim Laskeye719a7c2006-01-18 16:54:26 +00001621 // Start the dwarf macinfo section.
1622 Asm->SwitchSection(DwarfMacInfoSection, 0);
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001623}
Jim Laskey063e7652006-01-17 17:31:53 +00001624
1625/// ShouldEmitDwarf - Determine if Dwarf declarations should be made.
Jim Laskeyb2efb852006-01-04 22:28:25 +00001626///
1627bool DwarfWriter::ShouldEmitDwarf() {
1628 // Check if debug info is present.
1629 if (!DebugInfo || !DebugInfo->hasInfo()) return false;
1630
1631 // Make sure initial declarations are made.
1632 if (!didInitial) {
1633 EmitInitial();
1634 didInitial = true;
1635 }
1636
1637 // Okay to emit.
1638 return true;
1639}
1640
Jim Laskey063e7652006-01-17 17:31:53 +00001641//===----------------------------------------------------------------------===//
Jim Laskeyd18e2892006-01-20 20:34:06 +00001642// Main entry points.
Jim Laskey063e7652006-01-17 17:31:53 +00001643//
1644
1645 DwarfWriter::DwarfWriter(std::ostream &o, AsmPrinter *ap)
1646 : O(o)
1647 , Asm(ap)
1648 , DebugInfo(NULL)
1649 , didInitial(false)
1650 , CompileUnits()
1651 , Abbreviations()
Jim Laskeyd18e2892006-01-20 20:34:06 +00001652 , GlobalTypes()
1653 , GlobalEntities()
1654 , StringPool()
Jim Laskey063e7652006-01-17 17:31:53 +00001655 , AddressSize(sizeof(int32_t))
1656 , hasLEB128(false)
1657 , hasDotLoc(false)
1658 , hasDotFile(false)
1659 , needsSet(false)
1660 , DwarfAbbrevSection(".debug_abbrev")
1661 , DwarfInfoSection(".debug_info")
1662 , DwarfLineSection(".debug_line")
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001663 , DwarfFrameSection(".debug_frame")
1664 , DwarfPubNamesSection(".debug_pubnames")
1665 , DwarfPubTypesSection(".debug_pubtypes")
1666 , DwarfStrSection(".debug_str")
1667 , DwarfLocSection(".debug_loc")
1668 , DwarfARangesSection(".debug_aranges")
1669 , DwarfRangesSection(".debug_ranges")
1670 , DwarfMacInfoSection(".debug_macinfo")
Jim Laskey063e7652006-01-17 17:31:53 +00001671 , TextSection(".text")
1672 , DataSection(".data")
1673 {}
1674 DwarfWriter::~DwarfWriter() {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001675 for (unsigned i = 0, N = CompileUnits.size(); i < N; i++) {
1676 delete CompileUnits[i];
1677 }
Jim Laskey063e7652006-01-17 17:31:53 +00001678 }
1679
1680/// BeginModule - Emit all Dwarf sections that should come prior to the content.
Jim Laskeyb2efb852006-01-04 22:28:25 +00001681///
1682void DwarfWriter::BeginModule() {
1683 if (!ShouldEmitDwarf()) return;
Jim Laskey063e7652006-01-17 17:31:53 +00001684 EOL("Dwarf Begin Module");
Jim Laskeyb2efb852006-01-04 22:28:25 +00001685}
1686
Jim Laskey063e7652006-01-17 17:31:53 +00001687/// EndModule - Emit all Dwarf sections that should come after the content.
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001688///
1689void DwarfWriter::EndModule() {
Jim Laskeyb2efb852006-01-04 22:28:25 +00001690 if (!ShouldEmitDwarf()) return;
Jim Laskey063e7652006-01-17 17:31:53 +00001691 EOL("Dwarf End Module");
1692
1693 // Standard sections final addresses.
Jim Laskeye719a7c2006-01-18 16:54:26 +00001694 Asm->SwitchSection(TextSection, 0);
Jim Laskey063e7652006-01-17 17:31:53 +00001695 EmitLabel("text_end", 0);
Jim Laskeye719a7c2006-01-18 16:54:26 +00001696 Asm->SwitchSection(DataSection, 0);
Jim Laskey063e7652006-01-17 17:31:53 +00001697 EmitLabel("data_end", 0);
Jim Laskeyd18e2892006-01-20 20:34:06 +00001698
Jim Laskey063e7652006-01-17 17:31:53 +00001699 // Get directory and source information.
1700 const UniqueVector<std::string> &Directories = DebugInfo->getDirectories();
1701 const UniqueVector<SourceFileInfo> &SourceFiles = DebugInfo->getSourceFiles();
1702
1703 // Construct compile unit DIEs for each source.
1704 for (unsigned SourceID = 1, NSID = SourceFiles.size();
1705 SourceID <= NSID; SourceID++) {
1706 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
1707 const std::string &Directory = Directories[SourceFile.getDirectoryID()];
1708 const std::string &SourceName = SourceFile.getName();
Jim Laskeyd18e2892006-01-20 20:34:06 +00001709 DIE *Unit = NewCompileUnit(Directory, SourceName);
1710
1711#if 0
1712 // FIXME - just testing.
1713 DWContext *Context = new DWContext(*this, Unit);
1714 DIE *TypeInt = Context->NewBasicType("int", sizeof(int32_t), DW_ATE_signed);
1715 Context->NewVariable("MyGlobal", SourceID, 1, TypeInt, true);
1716#endif
1717
1718 CompileUnits.push_back(Unit);
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001719 }
Jim Laskey063e7652006-01-17 17:31:53 +00001720
1721 // Compute DIE offsets and sizes.
1722 SizeAndOffsets();
1723
1724 // Emit all the DIEs into a debug info section
1725 EmitDebugInfo();
1726
1727 // Corresponding abbreviations into a abbrev section.
1728 EmitAbbreviations();
1729
1730 // Emit source line correspondence into a debug line section.
1731 EmitDebugLines();
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001732
1733 // Emit info into a debug frame section.
1734 EmitDebugFrame();
1735
1736 // Emit info into a debug pubnames section.
1737 EmitDebugPubNames();
1738
1739 // Emit info into a debug pubtypes section.
1740 EmitDebugPubTypes();
1741
1742 // Emit info into a debug str section.
1743 EmitDebugStr();
1744
1745 // Emit info into a debug loc section.
1746 EmitDebugLoc();
1747
1748 // Emit info into a debug aranges section.
1749 EmitDebugARanges();
1750
1751 // Emit info into a debug ranges section.
1752 EmitDebugRanges();
1753
1754 // Emit info into a debug macinfo section.
1755 EmitDebugMacInfo();
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001756}
1757
Jim Laskeye719a7c2006-01-18 16:54:26 +00001758/// BeginFunction - Gather pre-function debug information.
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001759///
1760void DwarfWriter::BeginFunction() {
Jim Laskeyb2efb852006-01-04 22:28:25 +00001761 if (!ShouldEmitDwarf()) return;
Jim Laskey063e7652006-01-17 17:31:53 +00001762 EOL("Dwarf Begin Function");
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001763}
1764
Jim Laskeye719a7c2006-01-18 16:54:26 +00001765/// EndFunction - Gather and emit post-function debug information.
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001766///
1767void DwarfWriter::EndFunction() {
Jim Laskeyb2efb852006-01-04 22:28:25 +00001768 if (!ShouldEmitDwarf()) return;
Jim Laskey063e7652006-01-17 17:31:53 +00001769 EOL("Dwarf End Function");
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001770}