blob: 81c8963e16d64acef682409248b3c9578e13c49f [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//===----------------------------------------------------------------------===//
Jim Laskey3ea0e0e2006-01-27 18:32:41 +000013
Jim Laskeyb2efb852006-01-04 22:28:25 +000014#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskeye5032892005-12-21 19:48:16 +000015
Jim Laskeya9c83fe2006-10-30 15:59:54 +000016#include "llvm/ADT/FoldingSet.h"
Jim Laskey063e7652006-01-17 17:31:53 +000017#include "llvm/ADT/StringExtras.h"
Jim Laskey65195462006-10-30 13:35:07 +000018#include "llvm/ADT/UniqueVector.h"
Jim Laskey52060a02006-01-24 00:49:18 +000019#include "llvm/Module.h"
20#include "llvm/Type.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000021#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeyb2efb852006-01-04 22:28:25 +000022#include "llvm/CodeGen/MachineDebugInfo.h"
Jim Laskey41886992006-04-07 16:34:46 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyb8509c52006-03-23 18:07:55 +000024#include "llvm/CodeGen/MachineLocation.h"
Jim Laskeyb3e789a2006-01-26 20:21:46 +000025#include "llvm/Support/Dwarf.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000026#include "llvm/Support/CommandLine.h"
Jim Laskey65195462006-10-30 13:35:07 +000027#include "llvm/Support/DataTypes.h"
Jim Laskey52060a02006-01-24 00:49:18 +000028#include "llvm/Support/Mangler.h"
Jim Laskey563321a2006-09-06 18:34:40 +000029#include "llvm/Target/TargetAsmInfo.h"
Jim Laskeyb8509c52006-03-23 18:07:55 +000030#include "llvm/Target/MRegisterInfo.h"
Owen Anderson07000c62006-05-12 06:33:49 +000031#include "llvm/Target/TargetData.h"
Jim Laskey52060a02006-01-24 00:49:18 +000032#include "llvm/Target/TargetMachine.h"
Jim Laskey1069fbd2006-04-10 23:09:19 +000033#include "llvm/Target/TargetFrameInfo.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000034
Jim Laskeyb2efb852006-01-04 22:28:25 +000035#include <iostream>
Jim Laskey65195462006-10-30 13:35:07 +000036#include <string>
Jim Laskeya7cea6f2006-01-04 13:52:30 +000037
Jim Laskeyb2efb852006-01-04 22:28:25 +000038using namespace llvm;
Jim Laskey9a777a32006-02-27 22:37:23 +000039using namespace llvm::dwarf;
Jim Laskeya7cea6f2006-01-04 13:52:30 +000040
41static cl::opt<bool>
42DwarfVerbose("dwarf-verbose", cl::Hidden,
Jim Laskeyce50a162006-08-29 16:24:26 +000043 cl::desc("Add comments to Dwarf directives."));
Jim Laskey063e7652006-01-17 17:31:53 +000044
Jim Laskey0d086af2006-02-27 12:43:29 +000045namespace llvm {
Jim Laskey65195462006-10-30 13:35:07 +000046
47//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +000048
49/// Configuration values for initial hash set sizes (log2).
50///
51static const unsigned InitDiesSetSize = 9; // 512
52static const unsigned InitAbbreviationsSetSize = 9; // 512
53static const unsigned InitValuesSetSize = 9; // 512
54
55//===----------------------------------------------------------------------===//
56/// Forward declarations.
57///
58class DIE;
59class DIEValue;
60
61//===----------------------------------------------------------------------===//
62/// LEB 128 number encoding.
63
64/// PrintULEB128 - Print a series of hexidecimal values (separated by commas)
65/// representing an unsigned leb128 value.
66static void PrintULEB128(std::ostream &O, unsigned Value) {
67 do {
68 unsigned Byte = Value & 0x7f;
69 Value >>= 7;
70 if (Value) Byte |= 0x80;
71 O << "0x" << std::hex << Byte << std::dec;
72 if (Value) O << ", ";
73 } while (Value);
74}
75
76/// SizeULEB128 - Compute the number of bytes required for an unsigned leb128
77/// value.
78static unsigned SizeULEB128(unsigned Value) {
79 unsigned Size = 0;
80 do {
81 Value >>= 7;
82 Size += sizeof(int8_t);
83 } while (Value);
84 return Size;
85}
86
87/// PrintSLEB128 - Print a series of hexidecimal values (separated by commas)
88/// representing a signed leb128 value.
89static void PrintSLEB128(std::ostream &O, int Value) {
90 int Sign = Value >> (8 * sizeof(Value) - 1);
91 bool IsMore;
92
93 do {
94 unsigned Byte = Value & 0x7f;
95 Value >>= 7;
96 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
97 if (IsMore) Byte |= 0x80;
98 O << "0x" << std::hex << Byte << std::dec;
99 if (IsMore) O << ", ";
100 } while (IsMore);
101}
102
103/// SizeSLEB128 - Compute the number of bytes required for a signed leb128
104/// value.
105static unsigned SizeSLEB128(int Value) {
106 unsigned Size = 0;
107 int Sign = Value >> (8 * sizeof(Value) - 1);
108 bool IsMore;
109
110 do {
111 unsigned Byte = Value & 0x7f;
112 Value >>= 7;
113 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
114 Size += sizeof(int8_t);
115 } while (IsMore);
116 return Size;
117}
118
119//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000120/// DWLabel - Labels are used to track locations in the assembler file.
121/// Labels appear in the form <prefix>debug_<Tag><Number>, where the tag is a
122/// category of label (Ex. location) and number is a value unique in that
123/// category.
Jim Laskey65195462006-10-30 13:35:07 +0000124class DWLabel {
125public:
Jim Laskeyef42a012006-11-02 20:12:39 +0000126 /// Tag - Label category tag. Should always be a staticly declared C string.
127 ///
128 const char *Tag;
129
130 /// Number - Value to make label unique.
131 ///
132 unsigned Number;
Jim Laskey65195462006-10-30 13:35:07 +0000133
134 DWLabel(const char *T, unsigned N) : Tag(T), Number(N) {}
Jim Laskeybd761842006-02-27 17:27:12 +0000135
Jim Laskeyef42a012006-11-02 20:12:39 +0000136 void Profile(FoldingSetNodeID &ID) const {
137 ID.AddString(std::string(Tag));
138 ID.AddInteger(Number);
Jim Laskey90c79d72006-03-23 23:02:34 +0000139 }
Jim Laskeyef42a012006-11-02 20:12:39 +0000140
141#ifndef NDEBUG
142 void print(std::ostream &O) const {
143 O << ".debug_" << Tag;
144 if (Number) O << Number;
145 }
146#endif
Jim Laskeybd761842006-02-27 17:27:12 +0000147};
148
149//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000150/// DIEAbbrevData - Dwarf abbreviation data, describes the one attribute of a
151/// Dwarf abbreviation.
Jim Laskey0d086af2006-02-27 12:43:29 +0000152class DIEAbbrevData {
153private:
Jim Laskeyef42a012006-11-02 20:12:39 +0000154 /// Attribute - Dwarf attribute code.
155 ///
156 unsigned Attribute;
157
158 /// Form - Dwarf form code.
159 ///
160 unsigned Form;
Jim Laskey0d086af2006-02-27 12:43:29 +0000161
162public:
163 DIEAbbrevData(unsigned A, unsigned F)
164 : Attribute(A)
165 , Form(F)
166 {}
167
Jim Laskeybd761842006-02-27 17:27:12 +0000168 // Accessors.
Jim Laskey0d086af2006-02-27 12:43:29 +0000169 unsigned getAttribute() const { return Attribute; }
170 unsigned getForm() const { return Form; }
Jim Laskey063e7652006-01-17 17:31:53 +0000171
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000172 /// Profile - Used to gather unique data for the abbreviation folding set.
Jim Laskey0d086af2006-02-27 12:43:29 +0000173 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000174 void Profile(FoldingSetNodeID &ID)const {
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000175 ID.AddInteger(Attribute);
176 ID.AddInteger(Form);
Jim Laskey0d086af2006-02-27 12:43:29 +0000177 }
178};
Jim Laskey063e7652006-01-17 17:31:53 +0000179
Jim Laskey0d086af2006-02-27 12:43:29 +0000180//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000181/// DIEAbbrev - Dwarf abbreviation, describes the organization of a debug
182/// information object.
183class DIEAbbrev : public FoldingSetNode {
Jim Laskey0d086af2006-02-27 12:43:29 +0000184private:
Jim Laskeyef42a012006-11-02 20:12:39 +0000185 /// Tag - Dwarf tag code.
186 ///
187 unsigned Tag;
188
189 /// Unique number for node.
190 ///
191 unsigned Number;
192
193 /// ChildrenFlag - Dwarf children flag.
194 ///
195 unsigned ChildrenFlag;
196
197 /// Data - Raw data bytes for abbreviation.
198 ///
199 std::vector<DIEAbbrevData> Data;
Jim Laskey063e7652006-01-17 17:31:53 +0000200
Jim Laskey0d086af2006-02-27 12:43:29 +0000201public:
Jim Laskey063e7652006-01-17 17:31:53 +0000202
Jim Laskey0d086af2006-02-27 12:43:29 +0000203 DIEAbbrev(unsigned T, unsigned C)
Jim Laskeyef42a012006-11-02 20:12:39 +0000204 : Tag(T)
Jim Laskey0d086af2006-02-27 12:43:29 +0000205 , ChildrenFlag(C)
206 , Data()
207 {}
208 ~DIEAbbrev() {}
209
Jim Laskeybd761842006-02-27 17:27:12 +0000210 // Accessors.
Jim Laskey0d086af2006-02-27 12:43:29 +0000211 unsigned getTag() const { return Tag; }
Jim Laskeyef42a012006-11-02 20:12:39 +0000212 unsigned getNumber() const { return Number; }
Jim Laskey0d086af2006-02-27 12:43:29 +0000213 unsigned getChildrenFlag() const { return ChildrenFlag; }
214 const std::vector<DIEAbbrevData> &getData() const { return Data; }
Jim Laskeyef42a012006-11-02 20:12:39 +0000215 void setTag(unsigned T) { Tag = T; }
Jim Laskey0d086af2006-02-27 12:43:29 +0000216 void setChildrenFlag(unsigned CF) { ChildrenFlag = CF; }
Jim Laskeyef42a012006-11-02 20:12:39 +0000217 void setNumber(unsigned N) { Number = N; }
218
Jim Laskey0d086af2006-02-27 12:43:29 +0000219 /// AddAttribute - Adds another set of attribute information to the
220 /// abbreviation.
221 void AddAttribute(unsigned Attribute, unsigned Form) {
222 Data.push_back(DIEAbbrevData(Attribute, Form));
Jim Laskey063e7652006-01-17 17:31:53 +0000223 }
Jim Laskey0d086af2006-02-27 12:43:29 +0000224
Jim Laskeyb8509c52006-03-23 18:07:55 +0000225 /// AddFirstAttribute - Adds a set of attribute information to the front
226 /// of the abbreviation.
227 void AddFirstAttribute(unsigned Attribute, unsigned Form) {
228 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form));
229 }
230
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000231 /// Profile - Used to gather unique data for the abbreviation folding set.
232 ///
233 void Profile(FoldingSetNodeID &ID) {
234 ID.AddInteger(Tag);
235 ID.AddInteger(ChildrenFlag);
236
237 // For each attribute description.
238 for (unsigned i = 0, N = Data.size(); i < N; ++i)
239 Data[i].Profile(ID);
240 }
241
Jim Laskey0d086af2006-02-27 12:43:29 +0000242 /// Emit - Print the abbreviation using the specified Dwarf writer.
243 ///
Jim Laskey65195462006-10-30 13:35:07 +0000244 void Emit(const Dwarf &DW) const;
Jim Laskey0d086af2006-02-27 12:43:29 +0000245
246#ifndef NDEBUG
247 void print(std::ostream &O);
248 void dump();
249#endif
250};
Jim Laskey063e7652006-01-17 17:31:53 +0000251
Jim Laskey0d086af2006-02-27 12:43:29 +0000252//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +0000253/// DIE - A structured debug information entry. Has an abbreviation which
254/// describes it's organization.
255class DIE : public FoldingSetNode {
256protected:
257 /// Abbrev - Buffer for constructing abbreviation.
258 ///
259 DIEAbbrev Abbrev;
260
261 /// Offset - Offset in debug info section.
262 ///
263 unsigned Offset;
264
265 /// Size - Size of instance + children.
266 ///
267 unsigned Size;
268
269 /// Children DIEs.
270 ///
271 std::vector<DIE *> Children;
272
273 /// Attributes values.
274 ///
275 std::vector<DIEValue *> Values;
276
277public:
278 DIE(unsigned Tag)
279 : Abbrev(Tag, DW_CHILDREN_no)
280 , Offset(0)
281 , Size(0)
282 , Children()
283 , Values()
284 {}
285 virtual ~DIE();
286
287 // Accessors.
288 DIEAbbrev &getAbbrev() { return Abbrev; }
289 unsigned getAbbrevNumber() const {
290 return Abbrev.getNumber();
291 }
292 unsigned getOffset() const { return Offset; }
293 unsigned getSize() const { return Size; }
294 const std::vector<DIE *> &getChildren() const { return Children; }
295 const std::vector<DIEValue *> &getValues() const { return Values; }
296 void setTag(unsigned Tag) { Abbrev.setTag(Tag); }
297 void setOffset(unsigned O) { Offset = O; }
298 void setSize(unsigned S) { Size = S; }
299
300 /// AddValue - Add a value and attributes to a DIE.
301 ///
302 void AddValue(unsigned Attribute, unsigned Form, DIEValue *Value) {
303 Abbrev.AddAttribute(Attribute, Form);
304 Values.push_back(Value);
305 }
306
307 /// SiblingOffset - Return the offset of the debug information entry's
308 /// sibling.
309 unsigned SiblingOffset() const { return Offset + Size; }
310
311 /// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
312 ///
313 void AddSiblingOffset();
314
315 /// AddChild - Add a child to the DIE.
316 ///
317 void AddChild(DIE *Child) {
318 Abbrev.setChildrenFlag(DW_CHILDREN_yes);
319 Children.push_back(Child);
320 }
321
322 /// Detach - Detaches objects connected to it after copying.
323 ///
324 void Detach() {
325 Children.clear();
326 }
327
328 /// Profile - Used to gather unique data for the value folding set.
329 ///
330 void Profile(FoldingSetNodeID &ID) ;
331
332#ifndef NDEBUG
333 void print(std::ostream &O, unsigned IncIndent = 0);
334 void dump();
335#endif
336};
337
338//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000339/// DIEValue - A debug information entry value.
Jim Laskeyef42a012006-11-02 20:12:39 +0000340///
341class DIEValue : public FoldingSetNode {
Jim Laskey0d086af2006-02-27 12:43:29 +0000342public:
343 enum {
344 isInteger,
345 isString,
346 isLabel,
347 isAsIsLabel,
348 isDelta,
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000349 isEntry,
350 isBlock
Jim Laskey0d086af2006-02-27 12:43:29 +0000351 };
352
Jim Laskeyef42a012006-11-02 20:12:39 +0000353 /// Type - Type of data stored in the value.
354 ///
355 unsigned Type;
Jim Laskey0d086af2006-02-27 12:43:29 +0000356
Jim Laskeyef42a012006-11-02 20:12:39 +0000357 DIEValue(unsigned T)
358 : Type(T)
Jim Laskeyef42a012006-11-02 20:12:39 +0000359 {}
Jim Laskey0d086af2006-02-27 12:43:29 +0000360 virtual ~DIEValue() {}
361
Jim Laskeyf6733882006-11-02 21:48:18 +0000362 // Accessors
Jim Laskeyef42a012006-11-02 20:12:39 +0000363 unsigned getType() const { return Type; }
Jim Laskeyef42a012006-11-02 20:12:39 +0000364
Jim Laskey0d086af2006-02-27 12:43:29 +0000365 // Implement isa/cast/dyncast.
366 static bool classof(const DIEValue *) { return true; }
367
368 /// EmitValue - Emit value via the Dwarf writer.
369 ///
Jim Laskey65195462006-10-30 13:35:07 +0000370 virtual void EmitValue(const Dwarf &DW, unsigned Form) const = 0;
Jim Laskey0d086af2006-02-27 12:43:29 +0000371
372 /// SizeOf - Return the size of a value in bytes.
373 ///
Jim Laskey65195462006-10-30 13:35:07 +0000374 virtual unsigned SizeOf(const Dwarf &DW, unsigned Form) const = 0;
Jim Laskeyef42a012006-11-02 20:12:39 +0000375
376 /// Profile - Used to gather unique data for the value folding set.
377 ///
378 virtual void Profile(FoldingSetNodeID &ID) = 0;
379
380#ifndef NDEBUG
381 virtual void print(std::ostream &O) = 0;
382 void dump();
383#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000384};
Jim Laskey063e7652006-01-17 17:31:53 +0000385
Jim Laskey0d086af2006-02-27 12:43:29 +0000386//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000387/// DWInteger - An integer value DIE.
388///
Jim Laskey0d086af2006-02-27 12:43:29 +0000389class DIEInteger : public DIEValue {
390private:
391 uint64_t Integer;
392
393public:
394 DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000395
Jim Laskey0d086af2006-02-27 12:43:29 +0000396 // Implement isa/cast/dyncast.
397 static bool classof(const DIEInteger *) { return true; }
398 static bool classof(const DIEValue *I) { return I->Type == isInteger; }
399
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000400 /// BestForm - Choose the best form for integer.
401 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000402 static unsigned BestForm(bool IsSigned, uint64_t Integer) {
403 if (IsSigned) {
404 if ((char)Integer == (signed)Integer) return DW_FORM_data1;
405 if ((short)Integer == (signed)Integer) return DW_FORM_data2;
406 if ((int)Integer == (signed)Integer) return DW_FORM_data4;
407 } else {
408 if ((unsigned char)Integer == Integer) return DW_FORM_data1;
409 if ((unsigned short)Integer == Integer) return DW_FORM_data2;
410 if ((unsigned int)Integer == Integer) return DW_FORM_data4;
411 }
412 return DW_FORM_data8;
413 }
414
Jim Laskey0d086af2006-02-27 12:43:29 +0000415 /// EmitValue - Emit integer of appropriate size.
416 ///
Jim Laskey65195462006-10-30 13:35:07 +0000417 virtual void EmitValue(const Dwarf &DW, unsigned Form) const;
Jim Laskey0d086af2006-02-27 12:43:29 +0000418
419 /// SizeOf - Determine size of integer value in bytes.
420 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000421 virtual unsigned SizeOf(const Dwarf &DW, unsigned Form) const {
422 switch (Form) {
423 case DW_FORM_flag: // Fall thru
424 case DW_FORM_ref1: // Fall thru
425 case DW_FORM_data1: return sizeof(int8_t);
426 case DW_FORM_ref2: // Fall thru
427 case DW_FORM_data2: return sizeof(int16_t);
428 case DW_FORM_ref4: // Fall thru
429 case DW_FORM_data4: return sizeof(int32_t);
430 case DW_FORM_ref8: // Fall thru
431 case DW_FORM_data8: return sizeof(int64_t);
432 case DW_FORM_udata: return SizeULEB128(Integer);
433 case DW_FORM_sdata: return SizeSLEB128(Integer);
434 default: assert(0 && "DIE Value form not supported yet"); break;
435 }
436 return 0;
437 }
438
439 /// Profile - Used to gather unique data for the value folding set.
440 ///
441 virtual void Profile(FoldingSetNodeID &ID) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000442 ID.AddInteger(isInteger);
Jim Laskeyef42a012006-11-02 20:12:39 +0000443 ID.AddInteger(Integer);
444 }
445
446#ifndef NDEBUG
447 virtual void print(std::ostream &O) {
448 O << "Int: " << (int64_t)Integer
449 << " 0x" << std::hex << Integer << std::dec;
450 }
451#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000452};
Jim Laskey063e7652006-01-17 17:31:53 +0000453
Jim Laskey0d086af2006-02-27 12:43:29 +0000454//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000455/// DIEString - A string value DIE.
456///
Jim Laskeyef42a012006-11-02 20:12:39 +0000457class DIEString : public DIEValue {
458public:
Jim Laskey0d086af2006-02-27 12:43:29 +0000459 const std::string String;
460
461 DIEString(const std::string &S) : DIEValue(isString), String(S) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000462
Jim Laskey0d086af2006-02-27 12:43:29 +0000463 // Implement isa/cast/dyncast.
464 static bool classof(const DIEString *) { return true; }
465 static bool classof(const DIEValue *S) { return S->Type == isString; }
466
467 /// EmitValue - Emit string value.
468 ///
Jim Laskey65195462006-10-30 13:35:07 +0000469 virtual void EmitValue(const Dwarf &DW, unsigned Form) const;
Jim Laskey0d086af2006-02-27 12:43:29 +0000470
471 /// SizeOf - Determine size of string value in bytes.
472 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000473 virtual unsigned SizeOf(const Dwarf &DW, unsigned Form) const {
474 return String.size() + sizeof(char); // sizeof('\0');
475 }
476
477 /// Profile - Used to gather unique data for the value folding set.
478 ///
479 virtual void Profile(FoldingSetNodeID &ID) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000480 ID.AddInteger(isString);
Jim Laskeyef42a012006-11-02 20:12:39 +0000481 ID.AddString(String);
482 }
483
484#ifndef NDEBUG
485 virtual void print(std::ostream &O) {
486 O << "Str: \"" << String << "\"";
487 }
488#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000489};
Jim Laskey063e7652006-01-17 17:31:53 +0000490
Jim Laskey0d086af2006-02-27 12:43:29 +0000491//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000492/// DIEDwarfLabel - A Dwarf internal label expression DIE.
Jim Laskey0d086af2006-02-27 12:43:29 +0000493//
Jim Laskeyef42a012006-11-02 20:12:39 +0000494class DIEDwarfLabel : public DIEValue {
495public:
496
Jim Laskey0d086af2006-02-27 12:43:29 +0000497 const DWLabel Label;
498
499 DIEDwarfLabel(const DWLabel &L) : DIEValue(isLabel), Label(L) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000500
Jim Laskey0d086af2006-02-27 12:43:29 +0000501 // Implement isa/cast/dyncast.
502 static bool classof(const DIEDwarfLabel *) { return true; }
503 static bool classof(const DIEValue *L) { return L->Type == isLabel; }
504
505 /// EmitValue - Emit label value.
506 ///
Jim Laskey65195462006-10-30 13:35:07 +0000507 virtual void EmitValue(const Dwarf &DW, unsigned Form) const;
Jim Laskey0d086af2006-02-27 12:43:29 +0000508
509 /// SizeOf - Determine size of label value in bytes.
510 ///
Jim Laskey65195462006-10-30 13:35:07 +0000511 virtual unsigned SizeOf(const Dwarf &DW, unsigned Form) const;
Jim Laskeyef42a012006-11-02 20:12:39 +0000512
513 /// Profile - Used to gather unique data for the value folding set.
514 ///
515 virtual void Profile(FoldingSetNodeID &ID) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000516 ID.AddInteger(isLabel);
Jim Laskeyef42a012006-11-02 20:12:39 +0000517 Label.Profile(ID);
518 }
519
520#ifndef NDEBUG
521 virtual void print(std::ostream &O) {
522 O << "Lbl: ";
523 Label.print(O);
524 }
525#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000526};
Jim Laskey063e7652006-01-17 17:31:53 +0000527
Jim Laskey063e7652006-01-17 17:31:53 +0000528
Jim Laskey0d086af2006-02-27 12:43:29 +0000529//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000530/// DIEObjectLabel - A label to an object in code or data.
Jim Laskey0d086af2006-02-27 12:43:29 +0000531//
Jim Laskeyef42a012006-11-02 20:12:39 +0000532class DIEObjectLabel : public DIEValue {
533public:
Jim Laskey0d086af2006-02-27 12:43:29 +0000534 const std::string Label;
535
536 DIEObjectLabel(const std::string &L) : DIEValue(isAsIsLabel), Label(L) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000537
Jim Laskey0d086af2006-02-27 12:43:29 +0000538 // Implement isa/cast/dyncast.
539 static bool classof(const DIEObjectLabel *) { return true; }
540 static bool classof(const DIEValue *L) { return L->Type == isAsIsLabel; }
541
542 /// EmitValue - Emit label value.
543 ///
Jim Laskey65195462006-10-30 13:35:07 +0000544 virtual void EmitValue(const Dwarf &DW, unsigned Form) const;
Jim Laskey0d086af2006-02-27 12:43:29 +0000545
546 /// SizeOf - Determine size of label value in bytes.
547 ///
Jim Laskey65195462006-10-30 13:35:07 +0000548 virtual unsigned SizeOf(const Dwarf &DW, unsigned Form) const;
Jim Laskeyef42a012006-11-02 20:12:39 +0000549
550 /// Profile - Used to gather unique data for the value folding set.
551 ///
552 virtual void Profile(FoldingSetNodeID &ID) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000553 ID.AddInteger(isAsIsLabel);
Jim Laskeyef42a012006-11-02 20:12:39 +0000554 ID.AddString(Label);
555 }
556
557#ifndef NDEBUG
558 virtual void print(std::ostream &O) {
559 O << "Obj: " << Label;
560 }
561#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000562};
Jim Laskey063e7652006-01-17 17:31:53 +0000563
Jim Laskey0d086af2006-02-27 12:43:29 +0000564//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000565/// DIEDelta - A simple label difference DIE.
566///
Jim Laskeyef42a012006-11-02 20:12:39 +0000567class DIEDelta : public DIEValue {
568public:
Jim Laskey0d086af2006-02-27 12:43:29 +0000569 const DWLabel LabelHi;
570 const DWLabel LabelLo;
571
572 DIEDelta(const DWLabel &Hi, const DWLabel &Lo)
573 : DIEValue(isDelta), LabelHi(Hi), LabelLo(Lo) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000574
Jim Laskey0d086af2006-02-27 12:43:29 +0000575 // Implement isa/cast/dyncast.
576 static bool classof(const DIEDelta *) { return true; }
577 static bool classof(const DIEValue *D) { return D->Type == isDelta; }
578
579 /// EmitValue - Emit delta value.
580 ///
Jim Laskey65195462006-10-30 13:35:07 +0000581 virtual void EmitValue(const Dwarf &DW, unsigned Form) const;
Jim Laskey0d086af2006-02-27 12:43:29 +0000582
583 /// SizeOf - Determine size of delta value in bytes.
584 ///
Jim Laskey65195462006-10-30 13:35:07 +0000585 virtual unsigned SizeOf(const Dwarf &DW, unsigned Form) const;
Jim Laskeyef42a012006-11-02 20:12:39 +0000586
587 /// Profile - Used to gather unique data for the value folding set.
588 ///
589 virtual void Profile(FoldingSetNodeID &ID){
Jim Laskeyf6733882006-11-02 21:48:18 +0000590 ID.AddInteger(isDelta);
Jim Laskeyef42a012006-11-02 20:12:39 +0000591 LabelHi.Profile(ID);
592 LabelLo.Profile(ID);
593 }
594
595#ifndef NDEBUG
596 virtual void print(std::ostream &O) {
597 O << "Del: ";
598 LabelHi.print(O);
599 O << "-";
600 LabelLo.print(O);
601 }
602#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000603};
Jim Laskey063e7652006-01-17 17:31:53 +0000604
Jim Laskey0d086af2006-02-27 12:43:29 +0000605//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +0000606/// DIEntry - A pointer to another debug information entry. An instance of this
607/// class can also be used as a proxy for a debug information entry not yet
608/// defined (ie. types.)
609class DIEntry : public DIEValue {
610public:
Jim Laskey0d086af2006-02-27 12:43:29 +0000611 DIE *Entry;
612
613 DIEntry(DIE *E) : DIEValue(isEntry), Entry(E) {}
Jim Laskeyef42a012006-11-02 20:12:39 +0000614
Jim Laskey0d086af2006-02-27 12:43:29 +0000615 // Implement isa/cast/dyncast.
616 static bool classof(const DIEntry *) { return true; }
617 static bool classof(const DIEValue *E) { return E->Type == isEntry; }
618
Jim Laskeyb8509c52006-03-23 18:07:55 +0000619 /// EmitValue - Emit debug information entry offset.
Jim Laskey0d086af2006-02-27 12:43:29 +0000620 ///
Jim Laskey65195462006-10-30 13:35:07 +0000621 virtual void EmitValue(const Dwarf &DW, unsigned Form) const;
Jim Laskey0d086af2006-02-27 12:43:29 +0000622
Jim Laskeyb8509c52006-03-23 18:07:55 +0000623 /// SizeOf - Determine size of debug information entry in bytes.
Jim Laskey0d086af2006-02-27 12:43:29 +0000624 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000625 virtual unsigned SizeOf(const Dwarf &DW, unsigned Form) const {
626 return sizeof(int32_t);
627 }
628
629 /// Profile - Used to gather unique data for the value folding set.
630 ///
631 virtual void Profile(FoldingSetNodeID &ID) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000632 ID.AddInteger(isEntry);
633
Jim Laskeyef42a012006-11-02 20:12:39 +0000634 if (Entry) {
635 ID.AddPointer(Entry);
636 } else {
637 ID.AddPointer(this);
638 }
639 }
640
641#ifndef NDEBUG
642 virtual void print(std::ostream &O) {
643 O << "Die: 0x" << std::hex << (intptr_t)Entry << std::dec;
644 }
645#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000646};
647
648//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000649/// DIEBlock - A block of values. Primarily used for location expressions.
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000650//
Jim Laskeyef42a012006-11-02 20:12:39 +0000651class DIEBlock : public DIEValue, public DIE {
652public:
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000653 unsigned Size; // Size in bytes excluding size header.
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000654
655 DIEBlock()
656 : DIEValue(isBlock)
Jim Laskeyef42a012006-11-02 20:12:39 +0000657 , DIE(0)
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000658 , Size(0)
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000659 {}
Jim Laskeyef42a012006-11-02 20:12:39 +0000660 ~DIEBlock() {
661 }
662
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000663 // Implement isa/cast/dyncast.
664 static bool classof(const DIEBlock *) { return true; }
665 static bool classof(const DIEValue *E) { return E->Type == isBlock; }
666
667 /// ComputeSize - calculate the size of the block.
668 ///
Jim Laskey65195462006-10-30 13:35:07 +0000669 unsigned ComputeSize(Dwarf &DW);
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000670
671 /// BestForm - Choose the best form for data.
672 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000673 unsigned BestForm() const {
674 if ((unsigned char)Size == Size) return DW_FORM_block1;
675 if ((unsigned short)Size == Size) return DW_FORM_block2;
676 if ((unsigned int)Size == Size) return DW_FORM_block4;
677 return DW_FORM_block;
678 }
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000679
680 /// EmitValue - Emit block data.
681 ///
Jim Laskey65195462006-10-30 13:35:07 +0000682 virtual void EmitValue(const Dwarf &DW, unsigned Form) const;
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000683
684 /// SizeOf - Determine size of block data in bytes.
685 ///
Jim Laskey65195462006-10-30 13:35:07 +0000686 virtual unsigned SizeOf(const Dwarf &DW, unsigned Form) const;
Jim Laskeyef42a012006-11-02 20:12:39 +0000687
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000688
Jim Laskeyef42a012006-11-02 20:12:39 +0000689 /// Profile - Used to gather unique data for the value folding set.
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000690 ///
Reid Spencer97821312006-11-02 23:56:21 +0000691 virtual void Profile(FoldingSetNodeID &ID) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000692 ID.AddInteger(isBlock);
Jim Laskeyef42a012006-11-02 20:12:39 +0000693 DIE::Profile(ID);
694 }
695
696#ifndef NDEBUG
697 virtual void print(std::ostream &O) {
698 O << "Blk: ";
699 DIE::print(O, 5);
700 }
701#endif
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000702};
703
704//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +0000705/// CompileUnit - This dwarf writer support class manages information associate
706/// with a source file.
707class CompileUnit {
Jim Laskey0d086af2006-02-27 12:43:29 +0000708private:
Jim Laskeyef42a012006-11-02 20:12:39 +0000709 /// Desc - Compile unit debug descriptor.
710 ///
711 CompileUnitDesc *Desc;
712
713 /// ID - File identifier for source.
714 ///
715 unsigned ID;
716
717 /// Die - Compile unit debug information entry.
718 ///
719 DIE *Die;
720
721 /// DescToDieMap - Tracks the mapping of unit level debug informaton
722 /// descriptors to debug information entries.
723 std::map<DebugInfoDesc *, DIE *> DescToDieMap;
724
725 /// DescToDIEntryMap - Tracks the mapping of unit level debug informaton
726 /// descriptors to debug information entries using a DIEntry proxy.
727 std::map<DebugInfoDesc *, DIEntry *> DescToDIEntryMap;
728
729 /// Globals - A map of globally visible named entities for this unit.
730 ///
731 std::map<std::string, DIE *> Globals;
732
733 /// DiesSet - Used to uniquely define dies within the compile unit.
734 ///
735 FoldingSet<DIE> DiesSet;
736
737 /// Dies - List of all dies in the compile unit.
738 ///
739 std::vector<DIE *> Dies;
Jim Laskey0d086af2006-02-27 12:43:29 +0000740
741public:
Jim Laskeyef42a012006-11-02 20:12:39 +0000742 CompileUnit(CompileUnitDesc *CUD, unsigned I, DIE *D)
743 : Desc(CUD)
744 , ID(I)
745 , Die(D)
746 , DescToDieMap()
747 , DescToDIEntryMap()
748 , Globals()
749 , DiesSet(InitDiesSetSize)
750 , Dies()
751 {}
752
753 ~CompileUnit() {
754 delete Die;
755
756 for (unsigned i = 0, N = Dies.size(); i < N; ++i)
757 delete Dies[i];
758 }
Jim Laskey0d086af2006-02-27 12:43:29 +0000759
Jim Laskeybd761842006-02-27 17:27:12 +0000760 // Accessors.
Jim Laskeyef42a012006-11-02 20:12:39 +0000761 CompileUnitDesc *getDesc() const { return Desc; }
762 unsigned getID() const { return ID; }
763 DIE* getDie() const { return Die; }
764 std::map<std::string, DIE *> &getGlobals() { return Globals; }
765
766 /// hasContent - Return true if this compile unit has something to write out.
767 ///
768 bool hasContent() const {
769 return !Die->getChildren().empty();
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000770 }
Jim Laskeyef42a012006-11-02 20:12:39 +0000771
772 /// AddGlobal - Add a new global entity to the compile unit.
773 ///
774 void AddGlobal(const std::string &Name, DIE *Die) {
775 Globals[Name] = Die;
776 }
Jim Laskey0d086af2006-02-27 12:43:29 +0000777
Jim Laskeyef42a012006-11-02 20:12:39 +0000778 /// getDieMapSlotFor - Returns the debug information entry map slot for the
779 /// specified debug descriptor.
780 DIE *&getDieMapSlotFor(DebugInfoDesc *DD) {
781 return DescToDieMap[DD];
782 }
Jim Laskeyb8509c52006-03-23 18:07:55 +0000783
Jim Laskeyef42a012006-11-02 20:12:39 +0000784 /// getDIEntrySlotFor - Returns the debug information entry proxy slot for the
785 /// specified debug descriptor.
786 DIEntry *&getDIEntrySlotFor(DebugInfoDesc *DD) {
787 return DescToDIEntryMap[DD];
788 }
Jim Laskey0d086af2006-02-27 12:43:29 +0000789
Jim Laskeyef42a012006-11-02 20:12:39 +0000790 /// AddDie - Adds or interns the DIE to the compile unit.
791 ///
792 DIE *AddDie(DIE &Buffer) {
793 FoldingSetNodeID ID;
794 Buffer.Profile(ID);
795 void *Where;
796 DIE *Die = DiesSet.FindNodeOrInsertPos(ID, Where);
797
798 if (!Die) {
799 Die = new DIE(Buffer);
800 DiesSet.InsertNode(Die, Where);
801 this->Die->AddChild(Die);
802 Buffer.Detach();
803 }
804
805 return Die;
806 }
Jim Laskey0d086af2006-02-27 12:43:29 +0000807};
808
Jim Laskey65195462006-10-30 13:35:07 +0000809//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +0000810/// Dwarf - Emits Dwarf debug and exception handling directives.
811///
Jim Laskey65195462006-10-30 13:35:07 +0000812class Dwarf {
813
814private:
815
816 //===--------------------------------------------------------------------===//
817 // Core attributes used by the Dwarf writer.
818 //
819
820 //
821 /// O - Stream to .s file.
822 ///
823 std::ostream &O;
824
825 /// Asm - Target of Dwarf emission.
826 ///
827 AsmPrinter *Asm;
828
829 /// TAI - Target Asm Printer.
830 const TargetAsmInfo *TAI;
831
832 /// TD - Target data.
833 const TargetData *TD;
834
835 /// RI - Register Information.
836 const MRegisterInfo *RI;
837
838 /// M - Current module.
839 ///
840 Module *M;
841
842 /// MF - Current machine function.
843 ///
844 MachineFunction *MF;
845
846 /// DebugInfo - Collected debug information.
847 ///
848 MachineDebugInfo *DebugInfo;
849
850 /// didInitial - Flag to indicate if initial emission has been done.
851 ///
852 bool didInitial;
853
854 /// shouldEmit - Flag to indicate if debug information should be emitted.
855 ///
856 bool shouldEmit;
857
858 /// SubprogramCount - The running count of functions being compiled.
859 ///
860 unsigned SubprogramCount;
861
862 //===--------------------------------------------------------------------===//
863 // Attributes used to construct specific Dwarf sections.
864 //
865
866 /// CompileUnits - All the compile units involved in this build. The index
867 /// of each entry in this vector corresponds to the sources in DebugInfo.
868 std::vector<CompileUnit *> CompileUnits;
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000869
Jim Laskeyef42a012006-11-02 20:12:39 +0000870 /// AbbreviationsSet - Used to uniquely define abbreviations.
Jim Laskey65195462006-10-30 13:35:07 +0000871 ///
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000872 FoldingSet<DIEAbbrev> AbbreviationsSet;
873
874 /// Abbreviations - A list of all the unique abbreviations in use.
875 ///
876 std::vector<DIEAbbrev *> Abbreviations;
Jim Laskey65195462006-10-30 13:35:07 +0000877
Jim Laskeyef42a012006-11-02 20:12:39 +0000878 /// ValuesSet - Used to uniquely define values.
879 ///
880 FoldingSet<DIEValue> ValuesSet;
881
882 /// Values - A list of all the unique values in use.
883 ///
884 std::vector<DIEValue *> Values;
885
Jim Laskey65195462006-10-30 13:35:07 +0000886 /// StringPool - A UniqueVector of strings used by indirect references.
Jim Laskeyef42a012006-11-02 20:12:39 +0000887 ///
Jim Laskey65195462006-10-30 13:35:07 +0000888 UniqueVector<std::string> StringPool;
889
890 /// UnitMap - Map debug information descriptor to compile unit.
891 ///
892 std::map<DebugInfoDesc *, CompileUnit *> DescToUnitMap;
893
Jim Laskey65195462006-10-30 13:35:07 +0000894 /// SectionMap - Provides a unique id per text section.
895 ///
896 UniqueVector<std::string> SectionMap;
897
898 /// SectionSourceLines - Tracks line numbers per text section.
899 ///
900 std::vector<std::vector<SourceLineInfo> > SectionSourceLines;
901
902
903public:
904
905 //===--------------------------------------------------------------------===//
906 // Emission and print routines
907 //
908
909 /// PrintHex - Print a value as a hexidecimal value.
910 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000911 void PrintHex(int Value) const {
912 O << "0x" << std::hex << Value << std::dec;
913 }
Jim Laskey65195462006-10-30 13:35:07 +0000914
915 /// EOL - Print a newline character to asm stream. If a comment is present
916 /// then it will be printed first. Comments should not contain '\n'.
Jim Laskeyef42a012006-11-02 20:12:39 +0000917 void EOL(const std::string &Comment) const {
918 if (DwarfVerbose && !Comment.empty()) {
919 O << "\t"
920 << TAI->getCommentString()
921 << " "
922 << Comment;
923 }
924 O << "\n";
925 }
Jim Laskey65195462006-10-30 13:35:07 +0000926
927 /// EmitAlign - Print a align directive.
928 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000929 void EmitAlign(unsigned Alignment) const {
930 O << TAI->getAlignDirective() << Alignment << "\n";
931 }
Jim Laskey65195462006-10-30 13:35:07 +0000932
933 /// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
934 /// unsigned leb128 value.
Jim Laskeyef42a012006-11-02 20:12:39 +0000935 void EmitULEB128Bytes(unsigned Value) const {
936 if (TAI->hasLEB128()) {
937 O << "\t.uleb128\t"
938 << Value;
939 } else {
940 O << TAI->getData8bitsDirective();
941 PrintULEB128(O, Value);
942 }
943 }
Jim Laskey65195462006-10-30 13:35:07 +0000944
945 /// EmitSLEB128Bytes - print an assembler byte data directive to compose a
946 /// signed leb128 value.
Jim Laskeyef42a012006-11-02 20:12:39 +0000947 void EmitSLEB128Bytes(int Value) const {
948 if (TAI->hasLEB128()) {
949 O << "\t.sleb128\t"
950 << Value;
951 } else {
952 O << TAI->getData8bitsDirective();
953 PrintSLEB128(O, Value);
954 }
955 }
Jim Laskey65195462006-10-30 13:35:07 +0000956
957 /// EmitInt8 - Emit a byte directive and value.
958 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000959 void EmitInt8(int Value) const {
960 O << TAI->getData8bitsDirective();
961 PrintHex(Value & 0xFF);
962 }
Jim Laskey65195462006-10-30 13:35:07 +0000963
964 /// EmitInt16 - Emit a short directive and value.
965 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000966 void EmitInt16(int Value) const {
967 O << TAI->getData16bitsDirective();
968 PrintHex(Value & 0xFFFF);
969 }
Jim Laskey65195462006-10-30 13:35:07 +0000970
971 /// EmitInt32 - Emit a long directive and value.
972 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000973 void EmitInt32(int Value) const {
974 O << TAI->getData32bitsDirective();
975 PrintHex(Value);
976 }
977
Jim Laskey65195462006-10-30 13:35:07 +0000978 /// EmitInt64 - Emit a long long directive and value.
979 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000980 void EmitInt64(uint64_t Value) const {
981 if (TAI->getData64bitsDirective()) {
982 O << TAI->getData64bitsDirective();
983 PrintHex(Value);
984 } else {
985 if (TD->isBigEndian()) {
986 EmitInt32(unsigned(Value >> 32)); O << "\n";
987 EmitInt32(unsigned(Value));
988 } else {
989 EmitInt32(unsigned(Value)); O << "\n";
990 EmitInt32(unsigned(Value >> 32));
991 }
992 }
993 }
994
Jim Laskey65195462006-10-30 13:35:07 +0000995 /// EmitString - Emit a string with quotes and a null terminator.
Jim Laskeyef42a012006-11-02 20:12:39 +0000996 /// Special characters are emitted properly.
Jim Laskey65195462006-10-30 13:35:07 +0000997 /// \literal (Eg. '\t') \endliteral
Jim Laskeyef42a012006-11-02 20:12:39 +0000998 void EmitString(const std::string &String) const {
999 O << TAI->getAsciiDirective()
1000 << "\"";
1001 for (unsigned i = 0, N = String.size(); i < N; ++i) {
1002 unsigned char C = String[i];
1003
1004 if (!isascii(C) || iscntrl(C)) {
1005 switch(C) {
1006 case '\b': O << "\\b"; break;
1007 case '\f': O << "\\f"; break;
1008 case '\n': O << "\\n"; break;
1009 case '\r': O << "\\r"; break;
1010 case '\t': O << "\\t"; break;
1011 default:
1012 O << '\\';
1013 O << char('0' + ((C >> 6) & 7));
1014 O << char('0' + ((C >> 3) & 7));
1015 O << char('0' + ((C >> 0) & 7));
1016 break;
1017 }
1018 } else if (C == '\"') {
1019 O << "\\\"";
1020 } else if (C == '\'') {
1021 O << "\\\'";
1022 } else {
1023 O << C;
1024 }
1025 }
1026 O << "\\0\"";
1027 }
Jim Laskey65195462006-10-30 13:35:07 +00001028
1029 /// PrintLabelName - Print label name in form used by Dwarf writer.
1030 ///
1031 void PrintLabelName(DWLabel Label) const {
1032 PrintLabelName(Label.Tag, Label.Number);
1033 }
Jim Laskeyef42a012006-11-02 20:12:39 +00001034 void PrintLabelName(const char *Tag, unsigned Number) const {
1035 O << TAI->getPrivateGlobalPrefix()
1036 << "debug_"
1037 << Tag;
1038 if (Number) O << Number;
1039 }
Jim Laskey65195462006-10-30 13:35:07 +00001040
1041 /// EmitLabel - Emit location label for internal use by Dwarf.
1042 ///
1043 void EmitLabel(DWLabel Label) const {
1044 EmitLabel(Label.Tag, Label.Number);
1045 }
Jim Laskeyef42a012006-11-02 20:12:39 +00001046 void EmitLabel(const char *Tag, unsigned Number) const {
1047 PrintLabelName(Tag, Number);
1048 O << ":\n";
1049 }
Jim Laskey65195462006-10-30 13:35:07 +00001050
1051 /// EmitReference - Emit a reference to a label.
1052 ///
1053 void EmitReference(DWLabel Label) const {
1054 EmitReference(Label.Tag, Label.Number);
1055 }
Jim Laskeyef42a012006-11-02 20:12:39 +00001056 void EmitReference(const char *Tag, unsigned Number) const {
1057 if (TAI->getAddressSize() == 4)
1058 O << TAI->getData32bitsDirective();
1059 else
1060 O << TAI->getData64bitsDirective();
1061
1062 PrintLabelName(Tag, Number);
1063 }
1064 void EmitReference(const std::string &Name) const {
1065 if (TAI->getAddressSize() == 4)
1066 O << TAI->getData32bitsDirective();
1067 else
1068 O << TAI->getData64bitsDirective();
1069
1070 O << Name;
1071 }
Jim Laskey65195462006-10-30 13:35:07 +00001072
1073 /// EmitDifference - Emit the difference between two labels. Some
1074 /// assemblers do not behave with absolute expressions with data directives,
1075 /// so there is an option (needsSet) to use an intermediary set expression.
1076 void EmitDifference(DWLabel LabelHi, DWLabel LabelLo) const {
1077 EmitDifference(LabelHi.Tag, LabelHi.Number, LabelLo.Tag, LabelLo.Number);
1078 }
1079 void EmitDifference(const char *TagHi, unsigned NumberHi,
Jim Laskeyef42a012006-11-02 20:12:39 +00001080 const char *TagLo, unsigned NumberLo) const {
1081 if (TAI->needsSet()) {
1082 static unsigned SetCounter = 0;
1083
1084 O << "\t.set\t";
1085 PrintLabelName("set", SetCounter);
1086 O << ",";
1087 PrintLabelName(TagHi, NumberHi);
1088 O << "-";
1089 PrintLabelName(TagLo, NumberLo);
1090 O << "\n";
1091
1092 if (TAI->getAddressSize() == sizeof(int32_t))
1093 O << TAI->getData32bitsDirective();
1094 else
1095 O << TAI->getData64bitsDirective();
1096
1097 PrintLabelName("set", SetCounter);
1098
1099 ++SetCounter;
1100 } else {
1101 if (TAI->getAddressSize() == sizeof(int32_t))
1102 O << TAI->getData32bitsDirective();
1103 else
1104 O << TAI->getData64bitsDirective();
1105
1106 PrintLabelName(TagHi, NumberHi);
1107 O << "-";
1108 PrintLabelName(TagLo, NumberLo);
1109 }
1110 }
Jim Laskey65195462006-10-30 13:35:07 +00001111
Jim Laskeya9c83fe2006-10-30 15:59:54 +00001112 /// AssignAbbrevNumber - Define a unique number for the abbreviation.
Jim Laskey65195462006-10-30 13:35:07 +00001113 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001114 void AssignAbbrevNumber(DIEAbbrev &Abbrev) {
1115 // Profile the node so that we can make it unique.
1116 FoldingSetNodeID ID;
1117 Abbrev.Profile(ID);
1118
1119 // Check the set for priors.
1120 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
1121
1122 // If it's newly added.
1123 if (InSet == &Abbrev) {
1124 // Add to abbreviation list.
1125 Abbreviations.push_back(&Abbrev);
1126 // Assign the vector position + 1 as its number.
1127 Abbrev.setNumber(Abbreviations.size());
1128 } else {
1129 // Assign existing abbreviation number.
1130 Abbrev.setNumber(InSet->getNumber());
1131 }
1132 }
1133
Jim Laskey65195462006-10-30 13:35:07 +00001134 /// NewString - Add a string to the constant pool and returns a label.
1135 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001136 DWLabel NewString(const std::string &String) {
1137 unsigned StringID = StringPool.insert(String);
1138 return DWLabel("string", StringID);
1139 }
Jim Laskey65195462006-10-30 13:35:07 +00001140
Jim Laskeyef42a012006-11-02 20:12:39 +00001141 /// NewDIEntry - Creates a new DIEntry to be a proxy for a debug information
1142 /// entry.
1143 DIEntry *NewDIEntry(DIE *Entry = NULL) {
1144 DIEntry *Value;
1145
1146 if (Entry) {
1147 FoldingSetNodeID ID;
1148 ID.AddPointer(Entry);
1149 void *Where;
1150 Value = static_cast<DIEntry *>(ValuesSet.FindNodeOrInsertPos(ID, Where));
1151
Jim Laskeyf6733882006-11-02 21:48:18 +00001152 if (Value) return Value;
Jim Laskeyef42a012006-11-02 20:12:39 +00001153
1154 Value = new DIEntry(Entry);
1155 ValuesSet.InsertNode(Value, Where);
1156 } else {
1157 Value = new DIEntry(Entry);
1158 }
1159
1160 Values.push_back(Value);
1161 return Value;
1162 }
1163
1164 /// SetDIEntry - Set a DIEntry once the debug information entry is defined.
1165 ///
1166 void SetDIEntry(DIEntry *Value, DIE *Entry) {
1167 Value->Entry = Entry;
1168 // Add to values set if not already there. If it is, we merely have a
1169 // duplicate in the values list (no harm.)
1170 ValuesSet.GetOrInsertNode(Value);
1171 }
1172
1173 /// AddUInt - Add an unsigned integer attribute data and value.
1174 ///
1175 void AddUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer) {
1176 if (!Form) Form = DIEInteger::BestForm(false, Integer);
1177
1178 FoldingSetNodeID ID;
1179 ID.AddInteger(Integer);
1180 void *Where;
1181 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1182 if (!Value) {
1183 Value = new DIEInteger(Integer);
1184 ValuesSet.InsertNode(Value, Where);
1185 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001186 }
1187
1188 Die->AddValue(Attribute, Form, Value);
1189 }
1190
1191 /// AddSInt - Add an signed integer attribute data and value.
1192 ///
1193 void AddSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer) {
1194 if (!Form) Form = DIEInteger::BestForm(true, Integer);
1195
1196 FoldingSetNodeID ID;
1197 ID.AddInteger((uint64_t)Integer);
1198 void *Where;
1199 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1200 if (!Value) {
1201 Value = new DIEInteger(Integer);
1202 ValuesSet.InsertNode(Value, Where);
1203 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001204 }
1205
1206 Die->AddValue(Attribute, Form, Value);
1207 }
1208
1209 /// AddString - Add a std::string attribute data and value.
1210 ///
1211 void AddString(DIE *Die, unsigned Attribute, unsigned Form,
1212 const std::string &String) {
1213 FoldingSetNodeID ID;
1214 ID.AddString(String);
1215 void *Where;
1216 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1217 if (!Value) {
1218 Value = new DIEString(String);
1219 ValuesSet.InsertNode(Value, Where);
1220 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001221 }
1222
1223 Die->AddValue(Attribute, Form, Value);
1224 }
1225
1226 /// AddLabel - Add a Dwarf label attribute data and value.
1227 ///
1228 void AddLabel(DIE *Die, unsigned Attribute, unsigned Form,
1229 const DWLabel &Label) {
1230 FoldingSetNodeID ID;
1231 Label.Profile(ID);
1232 void *Where;
1233 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1234 if (!Value) {
1235 Value = new DIEDwarfLabel(Label);
1236 ValuesSet.InsertNode(Value, Where);
1237 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001238 }
1239
1240 Die->AddValue(Attribute, Form, Value);
1241 }
1242
1243 /// AddObjectLabel - Add an non-Dwarf label attribute data and value.
1244 ///
1245 void AddObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
1246 const std::string &Label) {
1247 FoldingSetNodeID ID;
1248 ID.AddString(Label);
1249 void *Where;
1250 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1251 if (!Value) {
1252 Value = new DIEObjectLabel(Label);
1253 ValuesSet.InsertNode(Value, Where);
1254 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001255 }
1256
1257 Die->AddValue(Attribute, Form, Value);
1258 }
1259
1260 /// AddDelta - Add a label delta attribute data and value.
1261 ///
1262 void AddDelta(DIE *Die, unsigned Attribute, unsigned Form,
1263 const DWLabel &Hi, const DWLabel &Lo) {
1264 FoldingSetNodeID ID;
1265 Hi.Profile(ID);
1266 Lo.Profile(ID);
1267 void *Where;
1268 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1269 if (!Value) {
1270 Value = new DIEDelta(Hi, Lo);
1271 ValuesSet.InsertNode(Value, Where);
1272 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001273 }
1274
1275 Die->AddValue(Attribute, Form, Value);
1276 }
1277
1278 /// AddDIEntry - Add a DIE attribute data and value.
1279 ///
1280 void AddDIEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) {
1281 Die->AddValue(Attribute, Form, NewDIEntry(Entry));
1282 }
1283
1284 /// AddBlock - Add block data.
1285 ///
1286 void AddBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block) {
1287 Block->ComputeSize(*this);
1288 FoldingSetNodeID ID;
1289 Block->Profile(ID);
1290 void *Where;
1291 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1292 if (!Value) {
1293 Value = Block;
1294 ValuesSet.InsertNode(Value, Where);
1295 Values.push_back(Value);
1296 } else {
Jim Laskeyef42a012006-11-02 20:12:39 +00001297 delete Block;
1298 }
1299
1300 Die->AddValue(Attribute, Block->BestForm(), Value);
1301 }
1302
Jim Laskey65195462006-10-30 13:35:07 +00001303private:
1304
1305 /// AddSourceLine - Add location information to specified debug information
Jim Laskeyef42a012006-11-02 20:12:39 +00001306 /// entry.
1307 void AddSourceLine(DIE *Die, CompileUnitDesc *File, unsigned Line) {
1308 if (File && Line) {
1309 CompileUnit *FileUnit = FindCompileUnit(File);
1310 unsigned FileID = FileUnit->getID();
1311 AddUInt(Die, DW_AT_decl_file, 0, FileID);
1312 AddUInt(Die, DW_AT_decl_line, 0, Line);
1313 }
1314 }
Jim Laskey65195462006-10-30 13:35:07 +00001315
1316 /// AddAddress - Add an address attribute to a die based on the location
1317 /// provided.
1318 void AddAddress(DIE *Die, unsigned Attribute,
Jim Laskeyef42a012006-11-02 20:12:39 +00001319 const MachineLocation &Location) {
1320 unsigned Reg = RI->getDwarfRegNum(Location.getRegister());
1321 DIEBlock *Block = new DIEBlock();
1322
1323 if (Location.isRegister()) {
1324 if (Reg < 32) {
1325 AddUInt(Block, 0, DW_FORM_data1, DW_OP_reg0 + Reg);
1326 } else {
1327 AddUInt(Block, 0, DW_FORM_data1, DW_OP_regx);
1328 AddUInt(Block, 0, DW_FORM_udata, Reg);
1329 }
1330 } else {
1331 if (Reg < 32) {
1332 AddUInt(Block, 0, DW_FORM_data1, DW_OP_breg0 + Reg);
1333 } else {
1334 AddUInt(Block, 0, DW_FORM_data1, DW_OP_bregx);
1335 AddUInt(Block, 0, DW_FORM_udata, Reg);
1336 }
1337 AddUInt(Block, 0, DW_FORM_sdata, Location.getOffset());
1338 }
1339
1340 AddBlock(Die, Attribute, 0, Block);
1341 }
1342
1343 /// AddBasicType - Add a new basic type attribute to the specified entity.
1344 ///
1345 void AddBasicType(DIE *Entity, CompileUnit *Unit,
1346 const std::string &Name,
1347 unsigned Encoding, unsigned Size) {
1348 DIE *Die = ConstructBasicType(Unit, Name, Encoding, Size);
1349 AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, Die);
1350 }
1351
1352 /// ConstructBasicType - Construct a new basic type.
1353 ///
1354 DIE *ConstructBasicType(CompileUnit *Unit,
1355 const std::string &Name,
1356 unsigned Encoding, unsigned Size) {
1357 DIE Buffer(DW_TAG_base_type);
1358 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1359 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, Encoding);
1360 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1361 return Unit->AddDie(Buffer);
1362 }
1363
1364 /// AddPointerType - Add a new pointer type attribute to the specified entity.
1365 ///
1366 void AddPointerType(DIE *Entity, CompileUnit *Unit, const std::string &Name) {
1367 DIE *Die = ConstructPointerType(Unit, Name);
1368 AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, Die);
1369 }
1370
1371 /// ConstructPointerType - Construct a new pointer type.
1372 ///
1373 DIE *ConstructPointerType(CompileUnit *Unit, const std::string &Name) {
1374 DIE Buffer(DW_TAG_pointer_type);
1375 AddUInt(&Buffer, DW_AT_byte_size, 0, TAI->getAddressSize());
1376 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1377 return Unit->AddDie(Buffer);
1378 }
1379
1380 /// AddType - Add a new type attribute to the specified entity.
1381 ///
1382 void AddType(DIE *Entity, TypeDesc *TyDesc, CompileUnit *Unit) {
1383 if (!TyDesc) {
1384 AddBasicType(Entity, Unit, "", DW_ATE_signed, 4);
1385 } else {
1386 // Check for pre-existence.
1387 DIEntry *&Slot = Unit->getDIEntrySlotFor(TyDesc);
1388
1389 // If it exists then use the existing value.
1390 if (Slot) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001391 Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1392 return;
1393 }
1394
1395 if (SubprogramDesc *SubprogramTy = dyn_cast<SubprogramDesc>(TyDesc)) {
1396 // FIXME - Not sure why programs and variables are coming through here.
1397 // Short cut for handling subprogram types (not really a TyDesc.)
1398 AddPointerType(Entity, Unit, SubprogramTy->getName());
1399 } else if (GlobalVariableDesc *GlobalTy =
1400 dyn_cast<GlobalVariableDesc>(TyDesc)) {
1401 // FIXME - Not sure why programs and variables are coming through here.
1402 // Short cut for handling global variable types (not really a TyDesc.)
1403 AddPointerType(Entity, Unit, GlobalTy->getName());
1404 } else {
1405 // Set up proxy.
1406 Slot = NewDIEntry();
1407
1408 // Construct type.
1409 DIE Buffer(DW_TAG_base_type);
1410 ConstructType(Buffer, TyDesc, Unit);
1411
1412 // Add debug information entry to entity and unit.
1413 DIE *Die = Unit->AddDie(Buffer);
1414 SetDIEntry(Slot, Die);
1415 Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1416 }
1417 }
1418 }
1419
1420 /// ConstructType - Adds all the required attributes to the type.
1421 ///
1422 void ConstructType(DIE &Buffer, TypeDesc *TyDesc, CompileUnit *Unit) {
1423 // Get core information.
1424 const std::string &Name = TyDesc->getName();
1425 uint64_t Size = TyDesc->getSize() >> 3;
1426
1427 if (BasicTypeDesc *BasicTy = dyn_cast<BasicTypeDesc>(TyDesc)) {
1428 // Fundamental types like int, float, bool
1429 Buffer.setTag(DW_TAG_base_type);
1430 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, BasicTy->getEncoding());
1431 } else if (DerivedTypeDesc *DerivedTy = dyn_cast<DerivedTypeDesc>(TyDesc)) {
1432 // Pointers, tyepdefs et al.
1433 Buffer.setTag(DerivedTy->getTag());
1434 // Map to main type, void will not have a type.
1435 if (TypeDesc *FromTy = DerivedTy->getFromType())
1436 AddType(&Buffer, FromTy, Unit);
1437 } else if (CompositeTypeDesc *CompTy = dyn_cast<CompositeTypeDesc>(TyDesc)){
1438 // Fetch tag.
1439 unsigned Tag = CompTy->getTag();
1440
1441 // Set tag accordingly.
1442 if (Tag == DW_TAG_vector_type)
1443 Buffer.setTag(DW_TAG_array_type);
1444 else
1445 Buffer.setTag(Tag);
Jim Laskey65195462006-10-30 13:35:07 +00001446
Jim Laskeyef42a012006-11-02 20:12:39 +00001447 std::vector<DebugInfoDesc *> &Elements = CompTy->getElements();
1448
1449 switch (Tag) {
1450 case DW_TAG_vector_type:
1451 AddUInt(&Buffer, DW_AT_GNU_vector, DW_FORM_flag, 1);
1452 // Fall thru
1453 case DW_TAG_array_type: {
1454 // Add element type.
1455 if (TypeDesc *FromTy = CompTy->getFromType())
1456 AddType(&Buffer, FromTy, Unit);
1457
1458 // Don't emit size attribute.
1459 Size = 0;
1460
1461 // Construct an anonymous type for index type.
1462 DIE *IndexTy = ConstructBasicType(Unit, "", DW_ATE_signed, 4);
1463
1464 // Add subranges to array type.
1465 for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1466 SubrangeDesc *SRD = cast<SubrangeDesc>(Elements[i]);
1467 int64_t Lo = SRD->getLo();
1468 int64_t Hi = SRD->getHi();
1469 DIE *Subrange = new DIE(DW_TAG_subrange_type);
1470
1471 // If a range is available.
1472 if (Lo != Hi) {
1473 AddDIEntry(Subrange, DW_AT_type, DW_FORM_ref4, IndexTy);
1474 // Only add low if non-zero.
1475 if (Lo) AddSInt(Subrange, DW_AT_lower_bound, 0, Lo);
1476 AddSInt(Subrange, DW_AT_upper_bound, 0, Hi);
1477 }
1478
1479 Buffer.AddChild(Subrange);
1480 }
1481 break;
1482 }
1483 case DW_TAG_structure_type:
1484 case DW_TAG_union_type: {
1485 // Add elements to structure type.
1486 for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1487 DebugInfoDesc *Element = Elements[i];
1488
1489 if (DerivedTypeDesc *MemberDesc = dyn_cast<DerivedTypeDesc>(Element)){
1490 // Add field or base class.
1491
1492 unsigned Tag = MemberDesc->getTag();
1493
1494 // Extract the basic information.
1495 const std::string &Name = MemberDesc->getName();
Jim Laskeyef42a012006-11-02 20:12:39 +00001496 uint64_t Size = MemberDesc->getSize();
1497 uint64_t Align = MemberDesc->getAlign();
1498 uint64_t Offset = MemberDesc->getOffset();
1499
1500 // Construct member debug information entry.
1501 DIE *Member = new DIE(Tag);
1502
1503 // Add name if not "".
1504 if (!Name.empty())
1505 AddString(Member, DW_AT_name, DW_FORM_string, Name);
1506 // Add location if available.
1507 AddSourceLine(Member, MemberDesc->getFile(), MemberDesc->getLine());
1508
1509 // Most of the time the field info is the same as the members.
1510 uint64_t FieldSize = Size;
1511 uint64_t FieldAlign = Align;
1512 uint64_t FieldOffset = Offset;
1513
1514 if (TypeDesc *FromTy = MemberDesc->getFromType()) {
1515 AddType(Member, FromTy, Unit);
1516 FieldSize = FromTy->getSize();
1517 FieldAlign = FromTy->getSize();
1518 }
1519
1520 // Unless we have a bit field.
1521 if (Tag == DW_TAG_member && FieldSize != Size) {
1522 // Construct the alignment mask.
1523 uint64_t AlignMask = ~(FieldAlign - 1);
1524 // Determine the high bit + 1 of the declared size.
1525 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
1526 // Work backwards to determine the base offset of the field.
1527 FieldOffset = HiMark - FieldSize;
1528 // Now normalize offset to the field.
1529 Offset -= FieldOffset;
1530
1531 // Maybe we need to work from the other end.
1532 if (TD->isLittleEndian()) Offset = FieldSize - (Offset + Size);
1533
1534 // Add size and offset.
1535 AddUInt(Member, DW_AT_byte_size, 0, FieldSize >> 3);
1536 AddUInt(Member, DW_AT_bit_size, 0, Size);
1537 AddUInt(Member, DW_AT_bit_offset, 0, Offset);
1538 }
1539
1540 // Add computation for offset.
1541 DIEBlock *Block = new DIEBlock();
1542 AddUInt(Block, 0, DW_FORM_data1, DW_OP_plus_uconst);
1543 AddUInt(Block, 0, DW_FORM_udata, FieldOffset >> 3);
1544 AddBlock(Member, DW_AT_data_member_location, 0, Block);
1545
1546 // Add accessibility (public default unless is base class.
1547 if (MemberDesc->isProtected()) {
1548 AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_protected);
1549 } else if (MemberDesc->isPrivate()) {
1550 AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_private);
1551 } else if (Tag == DW_TAG_inheritance) {
1552 AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_public);
1553 }
1554
1555 Buffer.AddChild(Member);
1556 } else if (GlobalVariableDesc *StaticDesc =
1557 dyn_cast<GlobalVariableDesc>(Element)) {
1558 // Add static member.
1559
1560 // Construct member debug information entry.
1561 DIE *Static = new DIE(DW_TAG_variable);
1562
1563 // Add name and mangled name.
1564 const std::string &Name = StaticDesc->getDisplayName();
1565 const std::string &MangledName = StaticDesc->getName();
1566 AddString(Static, DW_AT_name, DW_FORM_string, Name);
1567 AddString(Static, DW_AT_MIPS_linkage_name, DW_FORM_string,
1568 MangledName);
1569
1570 // Add location.
1571 AddSourceLine(Static, StaticDesc->getFile(), StaticDesc->getLine());
1572
1573 // Add type.
1574 if (TypeDesc *StaticTy = StaticDesc->getType())
1575 AddType(Static, StaticTy, Unit);
1576
1577 // Add flags.
1578 AddUInt(Static, DW_AT_external, DW_FORM_flag, 1);
1579 AddUInt(Static, DW_AT_declaration, DW_FORM_flag, 1);
1580
1581 Buffer.AddChild(Static);
1582 } else if (SubprogramDesc *MethodDesc =
1583 dyn_cast<SubprogramDesc>(Element)) {
1584 // Add member function.
1585
1586 // Construct member debug information entry.
1587 DIE *Method = new DIE(DW_TAG_subprogram);
1588
1589 // Add name and mangled name.
1590 const std::string &Name = MethodDesc->getDisplayName();
1591 const std::string &MangledName = MethodDesc->getName();
1592 bool IsCTor = false;
1593
1594 if (Name.empty()) {
1595 AddString(Method, DW_AT_name, DW_FORM_string, MangledName);
1596 IsCTor = TyDesc->getName() == MangledName;
1597 } else {
1598 AddString(Method, DW_AT_name, DW_FORM_string, Name);
1599 AddString(Method, DW_AT_MIPS_linkage_name, DW_FORM_string,
1600 MangledName);
1601 }
1602
1603 // Add location.
1604 AddSourceLine(Method, MethodDesc->getFile(), MethodDesc->getLine());
1605
1606 // Add type.
1607 if (CompositeTypeDesc *MethodTy =
1608 dyn_cast_or_null<CompositeTypeDesc>(MethodDesc->getType())) {
1609 // Get argument information.
1610 std::vector<DebugInfoDesc *> &Args = MethodTy->getElements();
1611
1612 // If not a ctor.
1613 if (!IsCTor) {
1614 // Add return type.
1615 AddType(Method, dyn_cast<TypeDesc>(Args[0]), Unit);
1616 }
1617
1618 // Add arguments.
1619 for(unsigned i = 1, N = Args.size(); i < N; ++i) {
1620 DIE *Arg = new DIE(DW_TAG_formal_parameter);
1621 AddType(Arg, cast<TypeDesc>(Args[i]), Unit);
1622 AddUInt(Arg, DW_AT_artificial, DW_FORM_flag, 1);
1623 Method->AddChild(Arg);
1624 }
1625 }
1626
1627 // Add flags.
1628 AddUInt(Method, DW_AT_external, DW_FORM_flag, 1);
1629 AddUInt(Method, DW_AT_declaration, DW_FORM_flag, 1);
1630
1631 Buffer.AddChild(Method);
1632 }
1633 }
1634 break;
1635 }
1636 case DW_TAG_enumeration_type: {
1637 // Add enumerators to enumeration type.
1638 for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1639 EnumeratorDesc *ED = cast<EnumeratorDesc>(Elements[i]);
1640 const std::string &Name = ED->getName();
1641 int64_t Value = ED->getValue();
1642 DIE *Enumerator = new DIE(DW_TAG_enumerator);
1643 AddString(Enumerator, DW_AT_name, DW_FORM_string, Name);
1644 AddSInt(Enumerator, DW_AT_const_value, DW_FORM_sdata, Value);
1645 Buffer.AddChild(Enumerator);
1646 }
1647
1648 break;
1649 }
1650 case DW_TAG_subroutine_type: {
1651 // Add prototype flag.
1652 AddUInt(&Buffer, DW_AT_prototyped, DW_FORM_flag, 1);
1653 // Add return type.
1654 AddType(&Buffer, dyn_cast<TypeDesc>(Elements[0]), Unit);
1655
1656 // Add arguments.
1657 for(unsigned i = 1, N = Elements.size(); i < N; ++i) {
1658 DIE *Arg = new DIE(DW_TAG_formal_parameter);
1659 AddType(Arg, cast<TypeDesc>(Elements[i]), Unit);
1660 Buffer.AddChild(Arg);
1661 }
1662
1663 break;
1664 }
1665 default: break;
1666 }
1667 }
1668
1669 // Add size if non-zero (derived types don't have a size.)
1670 if (Size) AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1671 // Add name if not anonymous or intermediate type.
1672 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1673 // Add source line info if available.
1674 AddSourceLine(&Buffer, TyDesc->getFile(), TyDesc->getLine());
1675 }
1676
1677 /// NewCompileUnit - Create new compile unit and it's debug information entry.
Jim Laskey65195462006-10-30 13:35:07 +00001678 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001679 CompileUnit *NewCompileUnit(CompileUnitDesc *UnitDesc, unsigned ID) {
1680 // Construct debug information entry.
1681 DIE *Die = new DIE(DW_TAG_compile_unit);
1682 AddDelta(Die, DW_AT_stmt_list, DW_FORM_data4, DWLabel("section_line", 0),
1683 DWLabel("section_line", 0));
1684 AddString(Die, DW_AT_producer, DW_FORM_string, UnitDesc->getProducer());
1685 AddUInt (Die, DW_AT_language, DW_FORM_data1, UnitDesc->getLanguage());
1686 AddString(Die, DW_AT_name, DW_FORM_string, UnitDesc->getFileName());
1687 AddString(Die, DW_AT_comp_dir, DW_FORM_string, UnitDesc->getDirectory());
1688
1689 // Construct compile unit.
1690 CompileUnit *Unit = new CompileUnit(UnitDesc, ID, Die);
1691
1692 // Add Unit to compile unit map.
1693 DescToUnitMap[UnitDesc] = Unit;
1694
1695 return Unit;
1696 }
1697
Jim Laskey65195462006-10-30 13:35:07 +00001698 /// FindCompileUnit - Get the compile unit for the given descriptor.
1699 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001700 CompileUnit *FindCompileUnit(CompileUnitDesc *UnitDesc) {
1701#if 1
1702 // FIXME - Using only one compile unit. Needs to me fixed at the FE.
1703 CompileUnit *Unit = CompileUnits[0];
1704#else
1705 CompileUnit *Unit = DescToUnitMap[UnitDesc];
1706#endif
1707 assert(Unit && "Missing compile unit.");
1708 return Unit;
1709 }
1710
1711 /// NewGlobalVariable - Add a new global variable DIE.
Jim Laskey65195462006-10-30 13:35:07 +00001712 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001713 DIE *NewGlobalVariable(GlobalVariableDesc *GVD) {
1714 // Get the compile unit context.
1715 CompileUnitDesc *UnitDesc =
1716 static_cast<CompileUnitDesc *>(GVD->getContext());
1717 CompileUnit *Unit = FindCompileUnit(UnitDesc);
1718
1719 // Check for pre-existence.
1720 DIE *&Slot = Unit->getDieMapSlotFor(GVD);
1721 if (Slot) return Slot;
1722
1723 // Get the global variable itself.
1724 GlobalVariable *GV = GVD->getGlobalVariable();
1725
1726 const std::string &Name = GVD->hasMangledName() ? GVD->getDisplayName()
1727 : GVD->getName();
1728 const std::string &MangledName = GVD->hasMangledName() ? GVD->getName()
1729 : "";
1730 // Create the global's variable DIE.
1731 DIE *VariableDie = new DIE(DW_TAG_variable);
1732 AddString(VariableDie, DW_AT_name, DW_FORM_string, Name);
1733 if (!MangledName.empty()) {
1734 AddString(VariableDie, DW_AT_MIPS_linkage_name, DW_FORM_string,
1735 MangledName);
1736 }
1737 AddType(VariableDie, GVD->getType(), Unit);
1738 AddUInt(VariableDie, DW_AT_external, DW_FORM_flag, 1);
1739
1740 // Add source line info if available.
1741 AddSourceLine(VariableDie, UnitDesc, GVD->getLine());
1742
1743 // Work up linkage name.
1744 const std::string LinkageName = Asm->getGlobalLinkName(GV);
1745
1746 // Add address.
1747 DIEBlock *Block = new DIEBlock();
1748 AddUInt(Block, 0, DW_FORM_data1, DW_OP_addr);
1749 AddObjectLabel(Block, 0, DW_FORM_udata, LinkageName);
1750 AddBlock(VariableDie, DW_AT_location, 0, Block);
1751
1752 // Add to map.
1753 Slot = VariableDie;
1754
1755 // Add to context owner.
1756 Unit->getDie()->AddChild(VariableDie);
1757
1758 // Expose as global.
1759 // FIXME - need to check external flag.
1760 Unit->AddGlobal(Name, VariableDie);
1761
1762 return VariableDie;
1763 }
Jim Laskey65195462006-10-30 13:35:07 +00001764
1765 /// NewSubprogram - Add a new subprogram DIE.
1766 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001767 DIE *NewSubprogram(SubprogramDesc *SPD) {
1768 // Get the compile unit context.
1769 CompileUnitDesc *UnitDesc =
1770 static_cast<CompileUnitDesc *>(SPD->getContext());
1771 CompileUnit *Unit = FindCompileUnit(UnitDesc);
1772
1773 // Check for pre-existence.
1774 DIE *&Slot = Unit->getDieMapSlotFor(SPD);
1775 if (Slot) return Slot;
1776
1777 // Gather the details (simplify add attribute code.)
1778 const std::string &Name = SPD->hasMangledName() ? SPD->getDisplayName()
1779 : SPD->getName();
1780 const std::string &MangledName = SPD->hasMangledName() ? SPD->getName()
1781 : "";
1782 unsigned IsExternal = SPD->isStatic() ? 0 : 1;
1783
1784 DIE *SubprogramDie = new DIE(DW_TAG_subprogram);
1785 AddString(SubprogramDie, DW_AT_name, DW_FORM_string, Name);
1786 if (!MangledName.empty()) {
1787 AddString(SubprogramDie, DW_AT_MIPS_linkage_name, DW_FORM_string,
1788 MangledName);
1789 }
1790 if (SPD->getType()) AddType(SubprogramDie, SPD->getType(), Unit);
1791 AddUInt(SubprogramDie, DW_AT_external, DW_FORM_flag, IsExternal);
1792 AddUInt(SubprogramDie, DW_AT_prototyped, DW_FORM_flag, 1);
1793
1794 // Add source line info if available.
1795 AddSourceLine(SubprogramDie, UnitDesc, SPD->getLine());
1796
1797 // Add to map.
1798 Slot = SubprogramDie;
1799
1800 // Add to context owner.
1801 Unit->getDie()->AddChild(SubprogramDie);
1802
1803 // Expose as global.
1804 Unit->AddGlobal(Name, SubprogramDie);
1805
1806 return SubprogramDie;
1807 }
Jim Laskey65195462006-10-30 13:35:07 +00001808
1809 /// NewScopeVariable - Create a new scope variable.
1810 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001811 DIE *NewScopeVariable(DebugVariable *DV, CompileUnit *Unit) {
1812 // Get the descriptor.
1813 VariableDesc *VD = DV->getDesc();
1814
1815 // Translate tag to proper Dwarf tag. The result variable is dropped for
1816 // now.
1817 unsigned Tag;
1818 switch (VD->getTag()) {
1819 case DW_TAG_return_variable: return NULL;
1820 case DW_TAG_arg_variable: Tag = DW_TAG_formal_parameter; break;
1821 case DW_TAG_auto_variable: // fall thru
1822 default: Tag = DW_TAG_variable; break;
1823 }
1824
1825 // Define variable debug information entry.
1826 DIE *VariableDie = new DIE(Tag);
1827 AddString(VariableDie, DW_AT_name, DW_FORM_string, VD->getName());
1828
1829 // Add source line info if available.
1830 AddSourceLine(VariableDie, VD->getFile(), VD->getLine());
1831
1832 // Add variable type.
1833 AddType(VariableDie, VD->getType(), Unit);
1834
1835 // Add variable address.
1836 MachineLocation Location;
1837 RI->getLocation(*MF, DV->getFrameIndex(), Location);
1838 AddAddress(VariableDie, DW_AT_location, Location);
1839
1840 return VariableDie;
1841 }
Jim Laskey65195462006-10-30 13:35:07 +00001842
1843 /// ConstructScope - Construct the components of a scope.
1844 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001845 void ConstructScope(DebugScope *ParentScope,
1846 DIE *ParentDie, CompileUnit *Unit) {
1847 // Add variables to scope.
1848 std::vector<DebugVariable *> &Variables = ParentScope->getVariables();
1849 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
1850 DIE *VariableDie = NewScopeVariable(Variables[i], Unit);
1851 if (VariableDie) ParentDie->AddChild(VariableDie);
1852 }
1853
1854 // Add nested scopes.
1855 std::vector<DebugScope *> &Scopes = ParentScope->getScopes();
1856 for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
1857 // Define the Scope debug information entry.
1858 DebugScope *Scope = Scopes[j];
1859 // FIXME - Ignore inlined functions for the time being.
1860 if (!Scope->getParent()) continue;
1861
1862 unsigned StartID = Scope->getStartLabelID();
1863 unsigned EndID = Scope->getEndLabelID();
1864
Jim Laskey5cd496e2006-11-04 10:48:07 +00001865 // Widen scope if label is discarded.
1866 // FIXME - really need to find a GOOD label if a block is dead.
1867 if (StartID && !DebugInfo->isLabelValid(StartID)) StartID = 0;
1868 if (EndID && !DebugInfo->isLabelValid(EndID)) EndID = 0;
Jim Laskeyef42a012006-11-02 20:12:39 +00001869
1870 DIE *ScopeDie = new DIE(DW_TAG_lexical_block);
1871
1872 // Add the scope bounds.
1873 if (StartID) {
1874 AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
1875 DWLabel("loc", StartID));
1876 } else {
1877 AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
1878 DWLabel("func_begin", SubprogramCount));
1879 }
1880 if (EndID) {
1881 AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
1882 DWLabel("loc", EndID));
1883 } else {
1884 AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
1885 DWLabel("func_end", SubprogramCount));
1886 }
1887
1888 // Add the scope contents.
1889 ConstructScope(Scope, ScopeDie, Unit);
1890 ParentDie->AddChild(ScopeDie);
1891 }
1892 }
Jim Laskey65195462006-10-30 13:35:07 +00001893
1894 /// ConstructRootScope - Construct the scope for the subprogram.
1895 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001896 void ConstructRootScope(DebugScope *RootScope) {
1897 // Exit if there is no root scope.
1898 if (!RootScope) return;
1899
1900 // Get the subprogram debug information entry.
1901 SubprogramDesc *SPD = cast<SubprogramDesc>(RootScope->getDesc());
1902
1903 // Get the compile unit context.
1904 CompileUnitDesc *UnitDesc =
1905 static_cast<CompileUnitDesc *>(SPD->getContext());
1906 CompileUnit *Unit = FindCompileUnit(UnitDesc);
1907
1908 // Get the subprogram die.
1909 DIE *SPDie = Unit->getDieMapSlotFor(SPD);
1910 assert(SPDie && "Missing subprogram descriptor");
1911
1912 // Add the function bounds.
1913 AddLabel(SPDie, DW_AT_low_pc, DW_FORM_addr,
1914 DWLabel("func_begin", SubprogramCount));
1915 AddLabel(SPDie, DW_AT_high_pc, DW_FORM_addr,
1916 DWLabel("func_end", SubprogramCount));
1917 MachineLocation Location(RI->getFrameRegister(*MF));
1918 AddAddress(SPDie, DW_AT_frame_base, Location);
1919
1920 ConstructScope(RootScope, SPDie, Unit);
1921 }
Jim Laskey65195462006-10-30 13:35:07 +00001922
Jim Laskeyef42a012006-11-02 20:12:39 +00001923 /// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc
1924 /// tools to recognize the object file contains Dwarf information.
1925 void EmitInitial() {
1926 // Check to see if we already emitted intial headers.
1927 if (didInitial) return;
1928 didInitial = true;
1929
1930 // Dwarf sections base addresses.
1931 if (TAI->getDwarfRequiresFrameSection()) {
1932 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
1933 EmitLabel("section_frame", 0);
1934 }
1935 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
1936 EmitLabel("section_info", 0);
1937 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
1938 EmitLabel("section_abbrev", 0);
1939 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
1940 EmitLabel("section_aranges", 0);
1941 Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
1942 EmitLabel("section_macinfo", 0);
1943 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
1944 EmitLabel("section_line", 0);
1945 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
1946 EmitLabel("section_loc", 0);
1947 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
1948 EmitLabel("section_pubnames", 0);
1949 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
1950 EmitLabel("section_str", 0);
1951 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
1952 EmitLabel("section_ranges", 0);
1953
1954 Asm->SwitchToTextSection(TAI->getTextSection());
1955 EmitLabel("text_begin", 0);
1956 Asm->SwitchToDataSection(TAI->getDataSection());
1957 EmitLabel("data_begin", 0);
1958
1959 // Emit common frame information.
1960 EmitInitialDebugFrame();
1961 }
1962
Jim Laskey65195462006-10-30 13:35:07 +00001963 /// EmitDIE - Recusively Emits a debug information entry.
1964 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001965 void EmitDIE(DIE *Die) const {
1966 // Get the abbreviation for this DIE.
1967 unsigned AbbrevNumber = Die->getAbbrevNumber();
1968 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1969
1970 O << "\n";
1971
1972 // Emit the code (index) for the abbreviation.
1973 EmitULEB128Bytes(AbbrevNumber);
1974 EOL(std::string("Abbrev [" +
1975 utostr(AbbrevNumber) +
1976 "] 0x" + utohexstr(Die->getOffset()) +
1977 ":0x" + utohexstr(Die->getSize()) + " " +
1978 TagString(Abbrev->getTag())));
1979
1980 const std::vector<DIEValue *> &Values = Die->getValues();
1981 const std::vector<DIEAbbrevData> &AbbrevData = Abbrev->getData();
1982
1983 // Emit the DIE attribute values.
1984 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1985 unsigned Attr = AbbrevData[i].getAttribute();
1986 unsigned Form = AbbrevData[i].getForm();
1987 assert(Form && "Too many attributes for DIE (check abbreviation)");
1988
1989 switch (Attr) {
1990 case DW_AT_sibling: {
1991 EmitInt32(Die->SiblingOffset());
1992 break;
1993 }
1994 default: {
1995 // Emit an attribute using the defined form.
1996 Values[i]->EmitValue(*this, Form);
1997 break;
1998 }
1999 }
2000
2001 EOL(AttributeString(Attr));
2002 }
2003
2004 // Emit the DIE children if any.
2005 if (Abbrev->getChildrenFlag() == DW_CHILDREN_yes) {
2006 const std::vector<DIE *> &Children = Die->getChildren();
2007
2008 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2009 EmitDIE(Children[j]);
2010 }
2011
2012 EmitInt8(0); EOL("End Of Children Mark");
2013 }
2014 }
2015
Jim Laskey65195462006-10-30 13:35:07 +00002016 /// SizeAndOffsetDie - Compute the size and offset of a DIE.
2017 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002018 unsigned SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last) {
2019 // Get the children.
2020 const std::vector<DIE *> &Children = Die->getChildren();
2021
2022 // If not last sibling and has children then add sibling offset attribute.
2023 if (!Last && !Children.empty()) Die->AddSiblingOffset();
2024
2025 // Record the abbreviation.
2026 AssignAbbrevNumber(Die->getAbbrev());
2027
2028 // Get the abbreviation for this DIE.
2029 unsigned AbbrevNumber = Die->getAbbrevNumber();
2030 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2031
2032 // Set DIE offset
2033 Die->setOffset(Offset);
2034
2035 // Start the size with the size of abbreviation code.
2036 Offset += SizeULEB128(AbbrevNumber);
2037
2038 const std::vector<DIEValue *> &Values = Die->getValues();
2039 const std::vector<DIEAbbrevData> &AbbrevData = Abbrev->getData();
2040
2041 // Size the DIE attribute values.
2042 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2043 // Size attribute value.
2044 Offset += Values[i]->SizeOf(*this, AbbrevData[i].getForm());
2045 }
2046
2047 // Size the DIE children if any.
2048 if (!Children.empty()) {
2049 assert(Abbrev->getChildrenFlag() == DW_CHILDREN_yes &&
2050 "Children flag not set");
2051
2052 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2053 Offset = SizeAndOffsetDie(Children[j], Offset, (j + 1) == M);
2054 }
2055
2056 // End of children marker.
2057 Offset += sizeof(int8_t);
2058 }
2059
2060 Die->setSize(Offset - Die->getOffset());
2061 return Offset;
2062 }
Jim Laskey65195462006-10-30 13:35:07 +00002063
2064 /// SizeAndOffsets - Compute the size and offset of all the DIEs.
2065 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002066 void SizeAndOffsets() {
2067 // Process each compile unit.
2068 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i) {
2069 CompileUnit *Unit = CompileUnits[i];
2070 if (Unit->hasContent()) {
2071 // Compute size of compile unit header
2072 unsigned Offset = sizeof(int32_t) + // Length of Compilation Unit Info
2073 sizeof(int16_t) + // DWARF version number
2074 sizeof(int32_t) + // Offset Into Abbrev. Section
2075 sizeof(int8_t); // Pointer Size (in bytes)
2076 SizeAndOffsetDie(Unit->getDie(), Offset, (i + 1) == N);
2077 }
2078 }
2079 }
2080
Jim Laskey65195462006-10-30 13:35:07 +00002081 /// EmitFrameMoves - Emit frame instructions to describe the layout of the
2082 /// frame.
2083 void EmitFrameMoves(const char *BaseLabel, unsigned BaseLabelID,
Jim Laskeyef42a012006-11-02 20:12:39 +00002084 std::vector<MachineMove *> &Moves) {
2085 for (unsigned i = 0, N = Moves.size(); i < N; ++i) {
2086 MachineMove *Move = Moves[i];
2087 unsigned LabelID = Move->getLabelID();
2088
2089 // Throw out move if the label is invalid.
2090 if (LabelID && !DebugInfo->isLabelValid(LabelID)) continue;
2091
2092 const MachineLocation &Dst = Move->getDestination();
2093 const MachineLocation &Src = Move->getSource();
2094
2095 // Advance row if new location.
2096 if (BaseLabel && LabelID && BaseLabelID != LabelID) {
2097 EmitInt8(DW_CFA_advance_loc4);
2098 EOL("DW_CFA_advance_loc4");
2099 EmitDifference("loc", LabelID, BaseLabel, BaseLabelID);
2100 EOL("");
2101
2102 BaseLabelID = LabelID;
2103 BaseLabel = "loc";
2104 }
2105
2106 int stackGrowth =
2107 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2108 TargetFrameInfo::StackGrowsUp ?
2109 TAI->getAddressSize() : -TAI->getAddressSize();
2110
2111 // If advancing cfa.
2112 if (Dst.isRegister() && Dst.getRegister() == MachineLocation::VirtualFP) {
2113 if (!Src.isRegister()) {
2114 if (Src.getRegister() == MachineLocation::VirtualFP) {
2115 EmitInt8(DW_CFA_def_cfa_offset);
2116 EOL("DW_CFA_def_cfa_offset");
2117 } else {
2118 EmitInt8(DW_CFA_def_cfa);
2119 EOL("DW_CFA_def_cfa");
Jim Laskeyef42a012006-11-02 20:12:39 +00002120 EmitULEB128Bytes(RI->getDwarfRegNum(Src.getRegister()));
2121 EOL("Register");
2122 }
2123
2124 int Offset = Src.getOffset() / stackGrowth;
2125
2126 EmitULEB128Bytes(Offset);
2127 EOL("Offset");
2128 } else {
2129 assert(0 && "Machine move no supported yet.");
2130 }
2131 } else {
2132 unsigned Reg = RI->getDwarfRegNum(Src.getRegister());
2133 int Offset = Dst.getOffset() / stackGrowth;
2134
2135 if (Offset < 0) {
2136 EmitInt8(DW_CFA_offset_extended_sf);
2137 EOL("DW_CFA_offset_extended_sf");
2138 EmitULEB128Bytes(Reg);
2139 EOL("Reg");
2140 EmitSLEB128Bytes(Offset);
2141 EOL("Offset");
2142 } else if (Reg < 64) {
2143 EmitInt8(DW_CFA_offset + Reg);
2144 EOL("DW_CFA_offset + Reg");
2145 EmitULEB128Bytes(Offset);
2146 EOL("Offset");
2147 } else {
2148 EmitInt8(DW_CFA_offset_extended);
2149 EOL("DW_CFA_offset_extended");
2150 EmitULEB128Bytes(Reg);
2151 EOL("Reg");
2152 EmitULEB128Bytes(Offset);
2153 EOL("Offset");
2154 }
2155 }
2156 }
2157 }
Jim Laskey65195462006-10-30 13:35:07 +00002158
2159 /// EmitDebugInfo - Emit the debug info section.
2160 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002161 void EmitDebugInfo() const {
2162 // Start debug info section.
2163 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
2164
2165 // Process each compile unit.
2166 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i) {
2167 CompileUnit *Unit = CompileUnits[i];
2168
2169 if (Unit->hasContent()) {
2170 DIE *Die = Unit->getDie();
2171 // Emit the compile units header.
2172 EmitLabel("info_begin", Unit->getID());
2173 // Emit size of content not including length itself
2174 unsigned ContentSize = Die->getSize() +
2175 sizeof(int16_t) + // DWARF version number
2176 sizeof(int32_t) + // Offset Into Abbrev. Section
2177 sizeof(int8_t); // Pointer Size (in bytes)
2178
2179 EmitInt32(ContentSize); EOL("Length of Compilation Unit Info");
2180 EmitInt16(DWARF_VERSION); EOL("DWARF version number");
2181 EmitDifference("abbrev_begin", 0, "section_abbrev", 0);
2182 EOL("Offset Into Abbrev. Section");
2183 EmitInt8(TAI->getAddressSize()); EOL("Address Size (in bytes)");
2184
2185 EmitDIE(Die);
2186 EmitLabel("info_end", Unit->getID());
2187 }
2188
2189 O << "\n";
2190 }
2191 }
2192
Jim Laskey65195462006-10-30 13:35:07 +00002193 /// EmitAbbreviations - Emit the abbreviation section.
2194 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002195 void EmitAbbreviations() const {
2196 // Check to see if it is worth the effort.
2197 if (!Abbreviations.empty()) {
2198 // Start the debug abbrev section.
2199 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
2200
2201 EmitLabel("abbrev_begin", 0);
2202
2203 // For each abbrevation.
2204 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2205 // Get abbreviation data
2206 const DIEAbbrev *Abbrev = Abbreviations[i];
2207
2208 // Emit the abbrevations code (base 1 index.)
2209 EmitULEB128Bytes(Abbrev->getNumber()); EOL("Abbreviation Code");
2210
2211 // Emit the abbreviations data.
2212 Abbrev->Emit(*this);
2213
2214 O << "\n";
2215 }
2216
2217 EmitLabel("abbrev_end", 0);
2218
2219 O << "\n";
2220 }
2221 }
2222
Jim Laskey65195462006-10-30 13:35:07 +00002223 /// EmitDebugLines - Emit source line information.
2224 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002225 void EmitDebugLines() const {
2226 // Minimum line delta, thus ranging from -10..(255-10).
2227 const int MinLineDelta = -(DW_LNS_fixed_advance_pc + 1);
2228 // Maximum line delta, thus ranging from -10..(255-10).
2229 const int MaxLineDelta = 255 + MinLineDelta;
Jim Laskey65195462006-10-30 13:35:07 +00002230
Jim Laskeyef42a012006-11-02 20:12:39 +00002231 // Start the dwarf line section.
2232 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
2233
2234 // Construct the section header.
2235
2236 EmitDifference("line_end", 0, "line_begin", 0);
2237 EOL("Length of Source Line Info");
2238 EmitLabel("line_begin", 0);
2239
2240 EmitInt16(DWARF_VERSION); EOL("DWARF version number");
2241
2242 EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0);
2243 EOL("Prolog Length");
2244 EmitLabel("line_prolog_begin", 0);
2245
2246 EmitInt8(1); EOL("Minimum Instruction Length");
2247
2248 EmitInt8(1); EOL("Default is_stmt_start flag");
2249
2250 EmitInt8(MinLineDelta); EOL("Line Base Value (Special Opcodes)");
2251
2252 EmitInt8(MaxLineDelta); EOL("Line Range Value (Special Opcodes)");
2253
2254 EmitInt8(-MinLineDelta); EOL("Special Opcode Base");
2255
2256 // Line number standard opcode encodings argument count
2257 EmitInt8(0); EOL("DW_LNS_copy arg count");
2258 EmitInt8(1); EOL("DW_LNS_advance_pc arg count");
2259 EmitInt8(1); EOL("DW_LNS_advance_line arg count");
2260 EmitInt8(1); EOL("DW_LNS_set_file arg count");
2261 EmitInt8(1); EOL("DW_LNS_set_column arg count");
2262 EmitInt8(0); EOL("DW_LNS_negate_stmt arg count");
2263 EmitInt8(0); EOL("DW_LNS_set_basic_block arg count");
2264 EmitInt8(0); EOL("DW_LNS_const_add_pc arg count");
2265 EmitInt8(1); EOL("DW_LNS_fixed_advance_pc arg count");
2266
2267 const UniqueVector<std::string> &Directories = DebugInfo->getDirectories();
2268 const UniqueVector<SourceFileInfo>
2269 &SourceFiles = DebugInfo->getSourceFiles();
2270
2271 // Emit directories.
2272 for (unsigned DirectoryID = 1, NDID = Directories.size();
2273 DirectoryID <= NDID; ++DirectoryID) {
2274 EmitString(Directories[DirectoryID]); EOL("Directory");
2275 }
2276 EmitInt8(0); EOL("End of directories");
2277
2278 // Emit files.
2279 for (unsigned SourceID = 1, NSID = SourceFiles.size();
2280 SourceID <= NSID; ++SourceID) {
2281 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
2282 EmitString(SourceFile.getName()); EOL("Source");
2283 EmitULEB128Bytes(SourceFile.getDirectoryID()); EOL("Directory #");
2284 EmitULEB128Bytes(0); EOL("Mod date");
2285 EmitULEB128Bytes(0); EOL("File size");
2286 }
2287 EmitInt8(0); EOL("End of files");
2288
2289 EmitLabel("line_prolog_end", 0);
2290
2291 // A sequence for each text section.
2292 for (unsigned j = 0, M = SectionSourceLines.size(); j < M; ++j) {
2293 // Isolate current sections line info.
2294 const std::vector<SourceLineInfo> &LineInfos = SectionSourceLines[j];
2295
2296 if (DwarfVerbose) {
2297 O << "\t"
2298 << TAI->getCommentString() << " "
2299 << "Section "
2300 << SectionMap[j + 1].c_str() << "\n";
2301 }
2302
2303 // Dwarf assumes we start with first line of first source file.
2304 unsigned Source = 1;
2305 unsigned Line = 1;
2306
2307 // Construct rows of the address, source, line, column matrix.
2308 for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
2309 const SourceLineInfo &LineInfo = LineInfos[i];
2310 unsigned LabelID = LineInfo.getLabelID();
2311
2312 // Source line labels are validated at the MachineDebugInfo level.
2313
2314 if (DwarfVerbose) {
2315 unsigned SourceID = LineInfo.getSourceID();
2316 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
2317 unsigned DirectoryID = SourceFile.getDirectoryID();
2318 O << "\t"
2319 << TAI->getCommentString() << " "
2320 << Directories[DirectoryID]
2321 << SourceFile.getName() << ":"
2322 << LineInfo.getLine() << "\n";
2323 }
2324
2325 // Define the line address.
2326 EmitInt8(0); EOL("Extended Op");
2327 EmitInt8(4 + 1); EOL("Op size");
2328 EmitInt8(DW_LNE_set_address); EOL("DW_LNE_set_address");
2329 EmitReference("loc", LabelID); EOL("Location label");
2330
2331 // If change of source, then switch to the new source.
2332 if (Source != LineInfo.getSourceID()) {
2333 Source = LineInfo.getSourceID();
2334 EmitInt8(DW_LNS_set_file); EOL("DW_LNS_set_file");
2335 EmitULEB128Bytes(Source); EOL("New Source");
2336 }
2337
2338 // If change of line.
2339 if (Line != LineInfo.getLine()) {
2340 // Determine offset.
2341 int Offset = LineInfo.getLine() - Line;
2342 int Delta = Offset - MinLineDelta;
2343
2344 // Update line.
2345 Line = LineInfo.getLine();
2346
2347 // If delta is small enough and in range...
2348 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
2349 // ... then use fast opcode.
2350 EmitInt8(Delta - MinLineDelta); EOL("Line Delta");
2351 } else {
2352 // ... otherwise use long hand.
2353 EmitInt8(DW_LNS_advance_line); EOL("DW_LNS_advance_line");
2354 EmitSLEB128Bytes(Offset); EOL("Line Offset");
2355 EmitInt8(DW_LNS_copy); EOL("DW_LNS_copy");
2356 }
2357 } else {
2358 // Copy the previous row (different address or source)
2359 EmitInt8(DW_LNS_copy); EOL("DW_LNS_copy");
2360 }
2361 }
2362
2363 // Define last address of section.
2364 EmitInt8(0); EOL("Extended Op");
2365 EmitInt8(4 + 1); EOL("Op size");
2366 EmitInt8(DW_LNE_set_address); EOL("DW_LNE_set_address");
2367 EmitReference("section_end", j + 1); EOL("Section end label");
2368
2369 // Mark end of matrix.
2370 EmitInt8(0); EOL("DW_LNE_end_sequence");
2371 EmitULEB128Bytes(1); O << "\n";
2372 EmitInt8(1); O << "\n";
2373 }
2374
2375 EmitLabel("line_end", 0);
2376
2377 O << "\n";
2378 }
2379
Jim Laskey65195462006-10-30 13:35:07 +00002380 /// EmitInitialDebugFrame - Emit common frame info into a debug frame section.
2381 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002382 void EmitInitialDebugFrame() {
2383 if (!TAI->getDwarfRequiresFrameSection())
2384 return;
2385
2386 int stackGrowth =
2387 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2388 TargetFrameInfo::StackGrowsUp ?
2389 TAI->getAddressSize() : -TAI->getAddressSize();
2390
2391 // Start the dwarf frame section.
2392 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2393
2394 EmitLabel("frame_common", 0);
2395 EmitDifference("frame_common_end", 0,
2396 "frame_common_begin", 0);
2397 EOL("Length of Common Information Entry");
2398
2399 EmitLabel("frame_common_begin", 0);
2400 EmitInt32(DW_CIE_ID); EOL("CIE Identifier Tag");
2401 EmitInt8(DW_CIE_VERSION); EOL("CIE Version");
2402 EmitString(""); EOL("CIE Augmentation");
2403 EmitULEB128Bytes(1); EOL("CIE Code Alignment Factor");
2404 EmitSLEB128Bytes(stackGrowth); EOL("CIE Data Alignment Factor");
2405 EmitInt8(RI->getDwarfRegNum(RI->getRARegister())); EOL("CIE RA Column");
Jim Laskey65195462006-10-30 13:35:07 +00002406
Jim Laskeyef42a012006-11-02 20:12:39 +00002407 std::vector<MachineMove *> Moves;
2408 RI->getInitialFrameState(Moves);
2409 EmitFrameMoves(NULL, 0, Moves);
2410 for (unsigned i = 0, N = Moves.size(); i < N; ++i) delete Moves[i];
2411
2412 EmitAlign(2);
2413 EmitLabel("frame_common_end", 0);
2414
2415 O << "\n";
2416 }
2417
Jim Laskey65195462006-10-30 13:35:07 +00002418 /// EmitFunctionDebugFrame - Emit per function frame info into a debug frame
2419 /// section.
Jim Laskeyef42a012006-11-02 20:12:39 +00002420 void EmitFunctionDebugFrame() {
Reid Spencer5a4951e2006-11-07 06:36:36 +00002421 if (!TAI->getDwarfRequiresFrameSection())
2422 return;
Jim Laskeyef42a012006-11-02 20:12:39 +00002423 // Start the dwarf frame section.
2424 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2425
2426 EmitDifference("frame_end", SubprogramCount,
2427 "frame_begin", SubprogramCount);
2428 EOL("Length of Frame Information Entry");
2429
2430 EmitLabel("frame_begin", SubprogramCount);
2431
2432 EmitDifference("frame_common", 0, "section_frame", 0);
2433 EOL("FDE CIE offset");
Jim Laskey65195462006-10-30 13:35:07 +00002434
Jim Laskeyef42a012006-11-02 20:12:39 +00002435 EmitReference("func_begin", SubprogramCount); EOL("FDE initial location");
2436 EmitDifference("func_end", SubprogramCount,
2437 "func_begin", SubprogramCount);
2438 EOL("FDE address range");
2439
2440 std::vector<MachineMove *> &Moves = DebugInfo->getFrameMoves();
2441
2442 EmitFrameMoves("func_begin", SubprogramCount, Moves);
2443
2444 EmitAlign(2);
2445 EmitLabel("frame_end", SubprogramCount);
2446
2447 O << "\n";
2448 }
2449
2450 /// EmitDebugPubNames - Emit visible names into a debug pubnames section.
Jim Laskey65195462006-10-30 13:35:07 +00002451 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002452 void EmitDebugPubNames() {
2453 // Start the dwarf pubnames section.
2454 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
2455
2456 // Process each compile unit.
2457 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i) {
2458 CompileUnit *Unit = CompileUnits[i];
2459
2460 if (Unit->hasContent()) {
2461 EmitDifference("pubnames_end", Unit->getID(),
2462 "pubnames_begin", Unit->getID());
2463 EOL("Length of Public Names Info");
2464
2465 EmitLabel("pubnames_begin", Unit->getID());
2466
2467 EmitInt16(DWARF_VERSION); EOL("DWARF Version");
2468
2469 EmitDifference("info_begin", Unit->getID(), "section_info", 0);
2470 EOL("Offset of Compilation Unit Info");
2471
2472 EmitDifference("info_end", Unit->getID(), "info_begin", Unit->getID());
2473 EOL("Compilation Unit Length");
2474
2475 std::map<std::string, DIE *> &Globals = Unit->getGlobals();
2476
2477 for (std::map<std::string, DIE *>::iterator GI = Globals.begin(),
2478 GE = Globals.end();
2479 GI != GE; ++GI) {
2480 const std::string &Name = GI->first;
2481 DIE * Entity = GI->second;
2482
2483 EmitInt32(Entity->getOffset()); EOL("DIE offset");
2484 EmitString(Name); EOL("External Name");
2485 }
2486
2487 EmitInt32(0); EOL("End Mark");
2488 EmitLabel("pubnames_end", Unit->getID());
2489
2490 O << "\n";
2491 }
2492 }
2493 }
2494
2495 /// EmitDebugStr - Emit visible names into a debug str section.
Jim Laskey65195462006-10-30 13:35:07 +00002496 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002497 void EmitDebugStr() {
2498 // Check to see if it is worth the effort.
2499 if (!StringPool.empty()) {
2500 // Start the dwarf str section.
2501 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
2502
2503 // For each of strings in the string pool.
2504 for (unsigned StringID = 1, N = StringPool.size();
2505 StringID <= N; ++StringID) {
2506 // Emit a label for reference from debug information entries.
2507 EmitLabel("string", StringID);
2508 // Emit the string itself.
2509 const std::string &String = StringPool[StringID];
2510 EmitString(String); O << "\n";
2511 }
2512
2513 O << "\n";
2514 }
2515 }
2516
2517 /// EmitDebugLoc - Emit visible names into a debug loc section.
Jim Laskey65195462006-10-30 13:35:07 +00002518 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002519 void EmitDebugLoc() {
2520 // Start the dwarf loc section.
2521 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
2522
2523 O << "\n";
2524 }
2525
2526 /// EmitDebugARanges - Emit visible names into a debug aranges section.
Jim Laskey65195462006-10-30 13:35:07 +00002527 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002528 void EmitDebugARanges() {
2529 // Start the dwarf aranges section.
2530 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
2531
2532 // FIXME - Mock up
2533 #if 0
2534 // Process each compile unit.
2535 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i) {
2536 CompileUnit *Unit = CompileUnits[i];
2537
2538 if (Unit->hasContent()) {
2539 // Don't include size of length
2540 EmitInt32(0x1c); EOL("Length of Address Ranges Info");
2541
2542 EmitInt16(DWARF_VERSION); EOL("Dwarf Version");
2543
2544 EmitReference("info_begin", Unit->getID());
2545 EOL("Offset of Compilation Unit Info");
2546
2547 EmitInt8(TAI->getAddressSize()); EOL("Size of Address");
2548
2549 EmitInt8(0); EOL("Size of Segment Descriptor");
2550
2551 EmitInt16(0); EOL("Pad (1)");
2552 EmitInt16(0); EOL("Pad (2)");
2553
2554 // Range 1
2555 EmitReference("text_begin", 0); EOL("Address");
2556 EmitDifference("text_end", 0, "text_begin", 0); EOL("Length");
2557
2558 EmitInt32(0); EOL("EOM (1)");
2559 EmitInt32(0); EOL("EOM (2)");
2560
2561 O << "\n";
2562 }
2563 }
2564 #endif
2565 }
2566
2567 /// EmitDebugRanges - Emit visible names into a debug ranges section.
Jim Laskey65195462006-10-30 13:35:07 +00002568 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002569 void EmitDebugRanges() {
2570 // Start the dwarf ranges section.
2571 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
2572
2573 O << "\n";
2574 }
2575
2576 /// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
Jim Laskey65195462006-10-30 13:35:07 +00002577 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002578 void EmitDebugMacInfo() {
2579 // Start the dwarf macinfo section.
2580 Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
2581
2582 O << "\n";
2583 }
2584
Jim Laskey65195462006-10-30 13:35:07 +00002585 /// ConstructCompileUnitDIEs - Create a compile unit DIE for each source and
2586 /// header file.
Jim Laskeyef42a012006-11-02 20:12:39 +00002587 void ConstructCompileUnitDIEs() {
2588 const UniqueVector<CompileUnitDesc *> CUW = DebugInfo->getCompileUnits();
2589
2590 for (unsigned i = 1, N = CUW.size(); i <= N; ++i) {
2591 CompileUnit *Unit = NewCompileUnit(CUW[i], i);
2592 CompileUnits.push_back(Unit);
2593 }
2594 }
2595
Jim Laskey65195462006-10-30 13:35:07 +00002596 /// ConstructGlobalDIEs - Create DIEs for each of the externally visible
2597 /// global variables.
Jim Laskeyef42a012006-11-02 20:12:39 +00002598 void ConstructGlobalDIEs() {
2599 std::vector<GlobalVariableDesc *> GlobalVariables =
2600 DebugInfo->getAnchoredDescriptors<GlobalVariableDesc>(*M);
2601
2602 for (unsigned i = 0, N = GlobalVariables.size(); i < N; ++i) {
2603 GlobalVariableDesc *GVD = GlobalVariables[i];
2604 NewGlobalVariable(GVD);
2605 }
2606 }
Jim Laskey65195462006-10-30 13:35:07 +00002607
2608 /// ConstructSubprogramDIEs - Create DIEs for each of the externally visible
2609 /// subprograms.
Jim Laskeyef42a012006-11-02 20:12:39 +00002610 void ConstructSubprogramDIEs() {
2611 std::vector<SubprogramDesc *> Subprograms =
2612 DebugInfo->getAnchoredDescriptors<SubprogramDesc>(*M);
2613
2614 for (unsigned i = 0, N = Subprograms.size(); i < N; ++i) {
2615 SubprogramDesc *SPD = Subprograms[i];
2616 NewSubprogram(SPD);
2617 }
2618 }
Jim Laskey65195462006-10-30 13:35:07 +00002619
2620 /// ShouldEmitDwarf - Returns true if Dwarf declarations should be made.
2621 ///
2622 bool ShouldEmitDwarf() const { return shouldEmit; }
2623
2624public:
Jim Laskeyef42a012006-11-02 20:12:39 +00002625 //===--------------------------------------------------------------------===//
2626 // Main entry points.
2627 //
2628 Dwarf(std::ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
2629 : O(OS)
2630 , Asm(A)
2631 , TAI(T)
2632 , TD(Asm->TM.getTargetData())
2633 , RI(Asm->TM.getRegisterInfo())
2634 , M(NULL)
2635 , MF(NULL)
2636 , DebugInfo(NULL)
2637 , didInitial(false)
2638 , shouldEmit(false)
2639 , SubprogramCount(0)
2640 , CompileUnits()
2641 , AbbreviationsSet(InitAbbreviationsSetSize)
2642 , Abbreviations()
2643 , ValuesSet(InitValuesSetSize)
2644 , Values()
2645 , StringPool()
2646 , DescToUnitMap()
2647 , SectionMap()
2648 , SectionSourceLines()
2649 {
2650 }
2651 virtual ~Dwarf() {
2652 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i)
2653 delete CompileUnits[i];
2654 for (unsigned j = 0, M = Values.size(); j < M; ++j)
2655 delete Values[j];
2656 }
2657
Jim Laskey65195462006-10-30 13:35:07 +00002658 // Accessors.
2659 //
2660 const TargetAsmInfo *getTargetAsmInfo() const { return TAI; }
2661
2662 /// SetDebugInfo - Set DebugInfo when it's known that pass manager has
2663 /// created it. Set by the target AsmPrinter.
Jim Laskeyef42a012006-11-02 20:12:39 +00002664 void SetDebugInfo(MachineDebugInfo *DI) {
2665 // Make sure initial declarations are made.
2666 if (!DebugInfo && DI->hasInfo()) {
2667 DebugInfo = DI;
2668 shouldEmit = true;
2669
2670 // Emit initial sections
2671 EmitInitial();
2672
2673 // Create all the compile unit DIEs.
2674 ConstructCompileUnitDIEs();
2675
2676 // Create DIEs for each of the externally visible global variables.
2677 ConstructGlobalDIEs();
Jim Laskey65195462006-10-30 13:35:07 +00002678
Jim Laskeyef42a012006-11-02 20:12:39 +00002679 // Create DIEs for each of the externally visible subprograms.
2680 ConstructSubprogramDIEs();
2681
2682 // Prime section data.
Jim Laskeyf910a3f2006-11-06 16:23:59 +00002683 SectionMap.insert(TAI->getTextSection());
Jim Laskeyef42a012006-11-02 20:12:39 +00002684 }
2685 }
2686
Jim Laskey65195462006-10-30 13:35:07 +00002687 /// BeginModule - Emit all Dwarf sections that should come prior to the
2688 /// content.
Jim Laskeyef42a012006-11-02 20:12:39 +00002689 void BeginModule(Module *M) {
2690 this->M = M;
2691
2692 if (!ShouldEmitDwarf()) return;
2693 EOL("Dwarf Begin Module");
2694 }
2695
Jim Laskey65195462006-10-30 13:35:07 +00002696 /// EndModule - Emit all Dwarf sections that should come after the content.
2697 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002698 void EndModule() {
2699 if (!ShouldEmitDwarf()) return;
2700 EOL("Dwarf End Module");
2701
2702 // Standard sections final addresses.
2703 Asm->SwitchToTextSection(TAI->getTextSection());
2704 EmitLabel("text_end", 0);
2705 Asm->SwitchToDataSection(TAI->getDataSection());
2706 EmitLabel("data_end", 0);
2707
2708 // End text sections.
2709 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
2710 Asm->SwitchToTextSection(SectionMap[i].c_str());
2711 EmitLabel("section_end", i);
2712 }
2713
2714 // Compute DIE offsets and sizes.
2715 SizeAndOffsets();
2716
2717 // Emit all the DIEs into a debug info section
2718 EmitDebugInfo();
2719
2720 // Corresponding abbreviations into a abbrev section.
2721 EmitAbbreviations();
2722
2723 // Emit source line correspondence into a debug line section.
2724 EmitDebugLines();
2725
2726 // Emit info into a debug pubnames section.
2727 EmitDebugPubNames();
2728
2729 // Emit info into a debug str section.
2730 EmitDebugStr();
2731
2732 // Emit info into a debug loc section.
2733 EmitDebugLoc();
2734
2735 // Emit info into a debug aranges section.
2736 EmitDebugARanges();
2737
2738 // Emit info into a debug ranges section.
2739 EmitDebugRanges();
2740
2741 // Emit info into a debug macinfo section.
2742 EmitDebugMacInfo();
2743 }
2744
Jim Laskey65195462006-10-30 13:35:07 +00002745 /// BeginFunction - Gather pre-function debug information. Assumes being
2746 /// emitted immediately after the function entry point.
Jim Laskeyef42a012006-11-02 20:12:39 +00002747 void BeginFunction(MachineFunction *MF) {
2748 this->MF = MF;
2749
2750 if (!ShouldEmitDwarf()) return;
2751 EOL("Dwarf Begin Function");
2752
2753 // Begin accumulating function debug information.
2754 DebugInfo->BeginFunction(MF);
2755
2756 // Assumes in correct section after the entry point.
2757 EmitLabel("func_begin", ++SubprogramCount);
2758 }
2759
Jim Laskey65195462006-10-30 13:35:07 +00002760 /// EndFunction - Gather and emit post-function debug information.
2761 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002762 void EndFunction() {
2763 if (!ShouldEmitDwarf()) return;
2764 EOL("Dwarf End Function");
2765
2766 // Define end label for subprogram.
2767 EmitLabel("func_end", SubprogramCount);
2768
2769 // Get function line info.
2770 const std::vector<SourceLineInfo> &LineInfos = DebugInfo->getSourceLines();
2771
2772 if (!LineInfos.empty()) {
2773 // Get section line info.
2774 unsigned ID = SectionMap.insert(Asm->CurrentSection);
2775 if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID);
2776 std::vector<SourceLineInfo> &SectionLineInfos = SectionSourceLines[ID-1];
2777 // Append the function info to section info.
2778 SectionLineInfos.insert(SectionLineInfos.end(),
2779 LineInfos.begin(), LineInfos.end());
2780 }
2781
2782 // Construct scopes for subprogram.
2783 ConstructRootScope(DebugInfo->getRootScope());
2784
2785 // Emit function frame information.
2786 EmitFunctionDebugFrame();
2787
2788 // Reset the line numbers for the next function.
2789 DebugInfo->ClearLineInfo();
2790
2791 // Clear function debug information.
2792 DebugInfo->EndFunction();
2793 }
Jim Laskey65195462006-10-30 13:35:07 +00002794};
2795
Jim Laskey0d086af2006-02-27 12:43:29 +00002796} // End of namespace llvm
Jim Laskey063e7652006-01-17 17:31:53 +00002797
2798//===----------------------------------------------------------------------===//
2799
Jim Laskeyd18e2892006-01-20 20:34:06 +00002800/// Emit - Print the abbreviation using the specified Dwarf writer.
2801///
Jim Laskey65195462006-10-30 13:35:07 +00002802void DIEAbbrev::Emit(const Dwarf &DW) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +00002803 // Emit its Dwarf tag type.
2804 DW.EmitULEB128Bytes(Tag);
2805 DW.EOL(TagString(Tag));
2806
2807 // Emit whether it has children DIEs.
2808 DW.EmitULEB128Bytes(ChildrenFlag);
2809 DW.EOL(ChildrenString(ChildrenFlag));
2810
2811 // For each attribute description.
Jim Laskey52060a02006-01-24 00:49:18 +00002812 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
Jim Laskeyd18e2892006-01-20 20:34:06 +00002813 const DIEAbbrevData &AttrData = Data[i];
2814
2815 // Emit attribute type.
2816 DW.EmitULEB128Bytes(AttrData.getAttribute());
2817 DW.EOL(AttributeString(AttrData.getAttribute()));
2818
2819 // Emit form type.
2820 DW.EmitULEB128Bytes(AttrData.getForm());
2821 DW.EOL(FormEncodingString(AttrData.getForm()));
2822 }
2823
2824 // Mark end of abbreviation.
2825 DW.EmitULEB128Bytes(0); DW.EOL("EOM(1)");
2826 DW.EmitULEB128Bytes(0); DW.EOL("EOM(2)");
2827}
2828
2829#ifndef NDEBUG
Jim Laskeya0f3d172006-09-07 22:06:40 +00002830void DIEAbbrev::print(std::ostream &O) {
2831 O << "Abbreviation @"
2832 << std::hex << (intptr_t)this << std::dec
2833 << " "
2834 << TagString(Tag)
2835 << " "
2836 << ChildrenString(ChildrenFlag)
2837 << "\n";
2838
2839 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
2840 O << " "
2841 << AttributeString(Data[i].getAttribute())
Jim Laskeyd18e2892006-01-20 20:34:06 +00002842 << " "
Jim Laskeya0f3d172006-09-07 22:06:40 +00002843 << FormEncodingString(Data[i].getForm())
Jim Laskeyd18e2892006-01-20 20:34:06 +00002844 << "\n";
Jim Laskeyd18e2892006-01-20 20:34:06 +00002845 }
Jim Laskeya0f3d172006-09-07 22:06:40 +00002846}
2847void DIEAbbrev::dump() { print(std::cerr); }
Jim Laskeyd18e2892006-01-20 20:34:06 +00002848#endif
2849
2850//===----------------------------------------------------------------------===//
2851
Jim Laskeyef42a012006-11-02 20:12:39 +00002852#ifndef NDEBUG
2853void DIEValue::dump() {
2854 print(std::cerr);
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002855}
Jim Laskeyef42a012006-11-02 20:12:39 +00002856#endif
2857
2858//===----------------------------------------------------------------------===//
2859
Jim Laskey063e7652006-01-17 17:31:53 +00002860/// EmitValue - Emit integer of appropriate size.
2861///
Jim Laskey65195462006-10-30 13:35:07 +00002862void DIEInteger::EmitValue(const Dwarf &DW, unsigned Form) const {
Jim Laskey063e7652006-01-17 17:31:53 +00002863 switch (Form) {
Jim Laskey40020172006-01-20 21:02:36 +00002864 case DW_FORM_flag: // Fall thru
Jim Laskeyb8509c52006-03-23 18:07:55 +00002865 case DW_FORM_ref1: // Fall thru
Jim Laskeyda427fa2006-01-27 20:31:25 +00002866 case DW_FORM_data1: DW.EmitInt8(Integer); break;
Jim Laskeyb8509c52006-03-23 18:07:55 +00002867 case DW_FORM_ref2: // Fall thru
Jim Laskeyda427fa2006-01-27 20:31:25 +00002868 case DW_FORM_data2: DW.EmitInt16(Integer); break;
Jim Laskeyb8509c52006-03-23 18:07:55 +00002869 case DW_FORM_ref4: // Fall thru
Jim Laskeyda427fa2006-01-27 20:31:25 +00002870 case DW_FORM_data4: DW.EmitInt32(Integer); break;
Jim Laskeyb8509c52006-03-23 18:07:55 +00002871 case DW_FORM_ref8: // Fall thru
Jim Laskeyda427fa2006-01-27 20:31:25 +00002872 case DW_FORM_data8: DW.EmitInt64(Integer); break;
Jim Laskey40020172006-01-20 21:02:36 +00002873 case DW_FORM_udata: DW.EmitULEB128Bytes(Integer); break;
2874 case DW_FORM_sdata: DW.EmitSLEB128Bytes(Integer); break;
Jim Laskey063e7652006-01-17 17:31:53 +00002875 default: assert(0 && "DIE Value form not supported yet"); break;
2876 }
2877}
2878
Jim Laskey063e7652006-01-17 17:31:53 +00002879//===----------------------------------------------------------------------===//
2880
2881/// EmitValue - Emit string value.
2882///
Jim Laskey65195462006-10-30 13:35:07 +00002883void DIEString::EmitValue(const Dwarf &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +00002884 DW.EmitString(String);
Jim Laskey063e7652006-01-17 17:31:53 +00002885}
2886
Jim Laskey063e7652006-01-17 17:31:53 +00002887//===----------------------------------------------------------------------===//
2888
2889/// EmitValue - Emit label value.
2890///
Jim Laskey65195462006-10-30 13:35:07 +00002891void DIEDwarfLabel::EmitValue(const Dwarf &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +00002892 DW.EmitReference(Label);
Jim Laskey063e7652006-01-17 17:31:53 +00002893}
2894
2895/// SizeOf - Determine size of label value in bytes.
2896///
Jim Laskey65195462006-10-30 13:35:07 +00002897unsigned DIEDwarfLabel::SizeOf(const Dwarf &DW, unsigned Form) const {
Jim Laskey563321a2006-09-06 18:34:40 +00002898 return DW.getTargetAsmInfo()->getAddressSize();
Jim Laskey063e7652006-01-17 17:31:53 +00002899}
Jim Laskeyef42a012006-11-02 20:12:39 +00002900
Jim Laskey063e7652006-01-17 17:31:53 +00002901//===----------------------------------------------------------------------===//
2902
Jim Laskeyd18e2892006-01-20 20:34:06 +00002903/// EmitValue - Emit label value.
2904///
Jim Laskey65195462006-10-30 13:35:07 +00002905void DIEObjectLabel::EmitValue(const Dwarf &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +00002906 DW.EmitReference(Label);
2907}
2908
2909/// SizeOf - Determine size of label value in bytes.
2910///
Jim Laskey65195462006-10-30 13:35:07 +00002911unsigned DIEObjectLabel::SizeOf(const Dwarf &DW, unsigned Form) const {
Jim Laskey563321a2006-09-06 18:34:40 +00002912 return DW.getTargetAsmInfo()->getAddressSize();
Jim Laskeyd18e2892006-01-20 20:34:06 +00002913}
2914
2915//===----------------------------------------------------------------------===//
2916
Jim Laskey063e7652006-01-17 17:31:53 +00002917/// EmitValue - Emit delta value.
2918///
Jim Laskey65195462006-10-30 13:35:07 +00002919void DIEDelta::EmitValue(const Dwarf &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +00002920 DW.EmitDifference(LabelHi, LabelLo);
Jim Laskey063e7652006-01-17 17:31:53 +00002921}
2922
2923/// SizeOf - Determine size of delta value in bytes.
2924///
Jim Laskey65195462006-10-30 13:35:07 +00002925unsigned DIEDelta::SizeOf(const Dwarf &DW, unsigned Form) const {
Jim Laskey563321a2006-09-06 18:34:40 +00002926 return DW.getTargetAsmInfo()->getAddressSize();
Jim Laskey063e7652006-01-17 17:31:53 +00002927}
2928
2929//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +00002930
Jim Laskeyb8509c52006-03-23 18:07:55 +00002931/// EmitValue - Emit debug information entry offset.
Jim Laskeyd18e2892006-01-20 20:34:06 +00002932///
Jim Laskey65195462006-10-30 13:35:07 +00002933void DIEntry::EmitValue(const Dwarf &DW, unsigned Form) const {
Jim Laskeyda427fa2006-01-27 20:31:25 +00002934 DW.EmitInt32(Entry->getOffset());
Jim Laskeyd18e2892006-01-20 20:34:06 +00002935}
Jim Laskeyd18e2892006-01-20 20:34:06 +00002936
2937//===----------------------------------------------------------------------===//
2938
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002939/// ComputeSize - calculate the size of the block.
2940///
Jim Laskey65195462006-10-30 13:35:07 +00002941unsigned DIEBlock::ComputeSize(Dwarf &DW) {
Jim Laskeyef42a012006-11-02 20:12:39 +00002942 if (!Size) {
2943 const std::vector<DIEAbbrevData> &AbbrevData = Abbrev.getData();
2944
2945 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2946 Size += Values[i]->SizeOf(DW, AbbrevData[i].getForm());
2947 }
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002948 }
2949 return Size;
2950}
2951
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002952/// EmitValue - Emit block data.
2953///
Jim Laskey65195462006-10-30 13:35:07 +00002954void DIEBlock::EmitValue(const Dwarf &DW, unsigned Form) const {
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002955 switch (Form) {
2956 case DW_FORM_block1: DW.EmitInt8(Size); break;
2957 case DW_FORM_block2: DW.EmitInt16(Size); break;
2958 case DW_FORM_block4: DW.EmitInt32(Size); break;
2959 case DW_FORM_block: DW.EmitULEB128Bytes(Size); break;
2960 default: assert(0 && "Improper form for block"); break;
2961 }
Jim Laskeyef42a012006-11-02 20:12:39 +00002962
2963 const std::vector<DIEAbbrevData> &AbbrevData = Abbrev.getData();
2964
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002965 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2966 DW.EOL("");
Jim Laskeyef42a012006-11-02 20:12:39 +00002967 Values[i]->EmitValue(DW, AbbrevData[i].getForm());
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002968 }
2969}
2970
2971/// SizeOf - Determine size of block data in bytes.
2972///
Jim Laskey65195462006-10-30 13:35:07 +00002973unsigned DIEBlock::SizeOf(const Dwarf &DW, unsigned Form) const {
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002974 switch (Form) {
2975 case DW_FORM_block1: return Size + sizeof(int8_t);
2976 case DW_FORM_block2: return Size + sizeof(int16_t);
2977 case DW_FORM_block4: return Size + sizeof(int32_t);
Jim Laskeyef42a012006-11-02 20:12:39 +00002978 case DW_FORM_block: return Size + SizeULEB128(Size);
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002979 default: assert(0 && "Improper form for block"); break;
2980 }
2981 return 0;
2982}
2983
Jim Laskeyb80af6f2006-03-03 21:00:14 +00002984//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +00002985/// DIE Implementation
Jim Laskeyd18e2892006-01-20 20:34:06 +00002986
2987DIE::~DIE() {
Jim Laskeyef42a012006-11-02 20:12:39 +00002988 for (unsigned i = 0, N = Children.size(); i < N; ++i)
Jim Laskeyd18e2892006-01-20 20:34:06 +00002989 delete Children[i];
Jim Laskeyd18e2892006-01-20 20:34:06 +00002990}
Jim Laskeyef42a012006-11-02 20:12:39 +00002991
Jim Laskeyb8509c52006-03-23 18:07:55 +00002992/// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
2993///
2994void DIE::AddSiblingOffset() {
2995 DIEInteger *DI = new DIEInteger(0);
2996 Values.insert(Values.begin(), DI);
Jim Laskeya9c83fe2006-10-30 15:59:54 +00002997 Abbrev.AddFirstAttribute(DW_AT_sibling, DW_FORM_ref4);
Jim Laskeyb8509c52006-03-23 18:07:55 +00002998}
2999
Jim Laskeyef42a012006-11-02 20:12:39 +00003000/// Profile - Used to gather unique data for the value folding set.
Jim Laskeyd18e2892006-01-20 20:34:06 +00003001///
Jim Laskeyef42a012006-11-02 20:12:39 +00003002void DIE::Profile(FoldingSetNodeID &ID) {
3003 Abbrev.Profile(ID);
3004
3005 for (unsigned i = 0, N = Children.size(); i < N; ++i)
3006 ID.AddPointer(Children[i]);
3007
3008 for (unsigned j = 0, M = Values.size(); j < M; ++j)
3009 ID.AddPointer(Values[j]);
Jim Laskeyd8f77ba2006-01-27 15:20:54 +00003010}
Jim Laskeyef42a012006-11-02 20:12:39 +00003011
3012#ifndef NDEBUG
3013void DIE::print(std::ostream &O, unsigned IncIndent) {
3014 static unsigned IndentCount = 0;
3015 IndentCount += IncIndent;
3016 const std::string Indent(IndentCount, ' ');
3017 bool isBlock = Abbrev.getTag() == 0;
3018
3019 if (!isBlock) {
3020 O << Indent
3021 << "Die: "
3022 << "0x" << std::hex << (intptr_t)this << std::dec
3023 << ", Offset: " << Offset
3024 << ", Size: " << Size
3025 << "\n";
Jim Laskeyd8f77ba2006-01-27 15:20:54 +00003026
Jim Laskeyef42a012006-11-02 20:12:39 +00003027 O << Indent
3028 << TagString(Abbrev.getTag())
Jim Laskey063e7652006-01-17 17:31:53 +00003029 << " "
Jim Laskeyef42a012006-11-02 20:12:39 +00003030 << ChildrenString(Abbrev.getChildrenFlag());
3031 } else {
3032 O << "Size: " << Size;
Jim Laskey063e7652006-01-17 17:31:53 +00003033 }
3034 O << "\n";
Jim Laskeya7cea6f2006-01-04 13:52:30 +00003035
Jim Laskeyef42a012006-11-02 20:12:39 +00003036 const std::vector<DIEAbbrevData> &Data = Abbrev.getData();
Jim Laskeya7cea6f2006-01-04 13:52:30 +00003037
Jim Laskeyef42a012006-11-02 20:12:39 +00003038 IndentCount += 2;
3039 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3040 O << Indent;
3041 if (!isBlock) {
3042 O << AttributeString(Data[i].getAttribute());
Jim Laskeyd8f77ba2006-01-27 15:20:54 +00003043 } else {
Jim Laskeyef42a012006-11-02 20:12:39 +00003044 O << "Blk[" << i << "]";
Jim Laskeyd8f77ba2006-01-27 15:20:54 +00003045 }
Jim Laskeyef42a012006-11-02 20:12:39 +00003046 O << " "
3047 << FormEncodingString(Data[i].getForm())
3048 << " ";
3049 Values[i]->print(O);
Jim Laskey0d086af2006-02-27 12:43:29 +00003050 O << "\n";
Jim Laskey063e7652006-01-17 17:31:53 +00003051 }
Jim Laskeyef42a012006-11-02 20:12:39 +00003052 IndentCount -= 2;
Jim Laskey063e7652006-01-17 17:31:53 +00003053
Jim Laskeyef42a012006-11-02 20:12:39 +00003054 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
3055 Children[j]->print(O, 4);
Jim Laskey063e7652006-01-17 17:31:53 +00003056 }
Jim Laskey063e7652006-01-17 17:31:53 +00003057
Jim Laskeyef42a012006-11-02 20:12:39 +00003058 if (!isBlock) O << "\n";
3059 IndentCount -= IncIndent;
Jim Laskey19ef4ef2006-01-17 20:41:40 +00003060}
3061
Jim Laskeyef42a012006-11-02 20:12:39 +00003062void DIE::dump() {
3063 print(std::cerr);
Jim Laskey41886992006-04-07 16:34:46 +00003064}
Jim Laskeybd761842006-02-27 17:27:12 +00003065#endif
Jim Laskey65195462006-10-30 13:35:07 +00003066
3067//===----------------------------------------------------------------------===//
3068/// DwarfWriter Implementation
Jim Laskeyef42a012006-11-02 20:12:39 +00003069///
Jim Laskey65195462006-10-30 13:35:07 +00003070
3071DwarfWriter::DwarfWriter(std::ostream &OS, AsmPrinter *A,
3072 const TargetAsmInfo *T) {
3073 DW = new Dwarf(OS, A, T);
3074}
3075
3076DwarfWriter::~DwarfWriter() {
3077 delete DW;
3078}
3079
3080/// SetDebugInfo - Set DebugInfo when it's known that pass manager has
3081/// created it. Set by the target AsmPrinter.
3082void DwarfWriter::SetDebugInfo(MachineDebugInfo *DI) {
3083 DW->SetDebugInfo(DI);
3084}
3085
3086/// BeginModule - Emit all Dwarf sections that should come prior to the
3087/// content.
3088void DwarfWriter::BeginModule(Module *M) {
3089 DW->BeginModule(M);
3090}
3091
3092/// EndModule - Emit all Dwarf sections that should come after the content.
3093///
3094void DwarfWriter::EndModule() {
3095 DW->EndModule();
3096}
3097
3098/// BeginFunction - Gather pre-function debug information. Assumes being
3099/// emitted immediately after the function entry point.
3100void DwarfWriter::BeginFunction(MachineFunction *MF) {
3101 DW->BeginFunction(MF);
3102}
3103
3104/// EndFunction - Gather and emit post-function debug information.
3105///
3106void DwarfWriter::EndFunction() {
3107 DW->EndFunction();
3108}