faebaacfd7d713041f7498fcf244fca541091b64
[oota-llvm.git] / lib / CodeGen / DwarfWriter.cpp
1 //===-- 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 info into asm files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/DwarfWriter.h"
15
16 #include "llvm/ADT/DenseMap.h"
17 #include "llvm/ADT/FoldingSet.h"
18 #include "llvm/ADT/StringExtras.h"
19 #include "llvm/ADT/UniqueVector.h"
20 #include "llvm/Module.h"
21 #include "llvm/Type.h"
22 #include "llvm/CodeGen/AsmPrinter.h"
23 #include "llvm/CodeGen/MachineModuleInfo.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/MachineLocation.h"
26 #include "llvm/Support/Debug.h"
27 #include "llvm/Support/Dwarf.h"
28 #include "llvm/Support/CommandLine.h"
29 #include "llvm/Support/DataTypes.h"
30 #include "llvm/Support/Mangler.h"
31 #include "llvm/System/Path.h"
32 #include "llvm/Target/TargetAsmInfo.h"
33 #include "llvm/Target/MRegisterInfo.h"
34 #include "llvm/Target/TargetData.h"
35 #include "llvm/Target/TargetFrameInfo.h"
36 #include "llvm/Target/TargetInstrInfo.h"
37 #include "llvm/Target/TargetMachine.h"
38 #include "llvm/Target/TargetOptions.h"
39 #include <ostream>
40 #include <string>
41 using namespace llvm;
42 using namespace llvm::dwarf;
43
44 namespace llvm {
45   
46 //===----------------------------------------------------------------------===//
47
48 /// Configuration values for initial hash set sizes (log2).
49 ///
50 static const unsigned InitDiesSetSize          = 9; // 512
51 static const unsigned InitAbbreviationsSetSize = 9; // 512
52 static const unsigned InitValuesSetSize        = 9; // 512
53
54 //===----------------------------------------------------------------------===//
55 /// Forward declarations.
56 ///
57 class DIE;
58 class DIEValue;
59
60 //===----------------------------------------------------------------------===//
61 /// DWLabel - Labels are used to track locations in the assembler file.
62 /// Labels appear in the form @verbatim <prefix><Tag><Number> @endverbatim, 
63 /// where the tag is a category of label (Ex. location) and number is a value 
64 /// unique in that category.
65 class DWLabel {
66 public:
67   /// Tag - Label category tag. Should always be a staticly declared C string.
68   ///
69   const char *Tag;
70   
71   /// Number - Value to make label unique.
72   ///
73   unsigned    Number;
74
75   DWLabel(const char *T, unsigned N) : Tag(T), Number(N) {}
76   
77   void Profile(FoldingSetNodeID &ID) const {
78     ID.AddString(std::string(Tag));
79     ID.AddInteger(Number);
80   }
81   
82 #ifndef NDEBUG
83   void print(std::ostream *O) const {
84     if (O) print(*O);
85   }
86   void print(std::ostream &O) const {
87     O << "." << Tag;
88     if (Number) O << Number;
89   }
90 #endif
91 };
92
93 //===----------------------------------------------------------------------===//
94 /// DIEAbbrevData - Dwarf abbreviation data, describes the one attribute of a
95 /// Dwarf abbreviation.
96 class DIEAbbrevData {
97 private:
98   /// Attribute - Dwarf attribute code.
99   ///
100   unsigned Attribute;
101   
102   /// Form - Dwarf form code.
103   ///              
104   unsigned Form;                      
105   
106 public:
107   DIEAbbrevData(unsigned A, unsigned F)
108   : Attribute(A)
109   , Form(F)
110   {}
111   
112   // Accessors.
113   unsigned getAttribute() const { return Attribute; }
114   unsigned getForm()      const { return Form; }
115
116   /// Profile - Used to gather unique data for the abbreviation folding set.
117   ///
118   void Profile(FoldingSetNodeID &ID)const  {
119     ID.AddInteger(Attribute);
120     ID.AddInteger(Form);
121   }
122 };
123
124 //===----------------------------------------------------------------------===//
125 /// DIEAbbrev - Dwarf abbreviation, describes the organization of a debug
126 /// information object.
127 class DIEAbbrev : public FoldingSetNode {
128 private:
129   /// Tag - Dwarf tag code.
130   ///
131   unsigned Tag;
132   
133   /// Unique number for node.
134   ///
135   unsigned Number;
136
137   /// ChildrenFlag - Dwarf children flag.
138   ///
139   unsigned ChildrenFlag;
140
141   /// Data - Raw data bytes for abbreviation.
142   ///
143   std::vector<DIEAbbrevData> Data;
144
145 public:
146
147   DIEAbbrev(unsigned T, unsigned C)
148   : Tag(T)
149   , ChildrenFlag(C)
150   , Data()
151   {}
152   ~DIEAbbrev() {}
153   
154   // Accessors.
155   unsigned getTag()                           const { return Tag; }
156   unsigned getNumber()                        const { return Number; }
157   unsigned getChildrenFlag()                  const { return ChildrenFlag; }
158   const std::vector<DIEAbbrevData> &getData() const { return Data; }
159   void setTag(unsigned T)                           { Tag = T; }
160   void setChildrenFlag(unsigned CF)                 { ChildrenFlag = CF; }
161   void setNumber(unsigned N)                        { Number = N; }
162   
163   /// AddAttribute - Adds another set of attribute information to the
164   /// abbreviation.
165   void AddAttribute(unsigned Attribute, unsigned Form) {
166     Data.push_back(DIEAbbrevData(Attribute, Form));
167   }
168   
169   /// AddFirstAttribute - Adds a set of attribute information to the front
170   /// of the abbreviation.
171   void AddFirstAttribute(unsigned Attribute, unsigned Form) {
172     Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form));
173   }
174   
175   /// Profile - Used to gather unique data for the abbreviation folding set.
176   ///
177   void Profile(FoldingSetNodeID &ID) {
178     ID.AddInteger(Tag);
179     ID.AddInteger(ChildrenFlag);
180     
181     // For each attribute description.
182     for (unsigned i = 0, N = Data.size(); i < N; ++i)
183       Data[i].Profile(ID);
184   }
185   
186   /// Emit - Print the abbreviation using the specified Dwarf writer.
187   ///
188   void Emit(const DwarfDebug &DD) const; 
189       
190 #ifndef NDEBUG
191   void print(std::ostream *O) {
192     if (O) print(*O);
193   }
194   void print(std::ostream &O);
195   void dump();
196 #endif
197 };
198
199 //===----------------------------------------------------------------------===//
200 /// DIE - A structured debug information entry.  Has an abbreviation which
201 /// describes it's organization.
202 class DIE : public FoldingSetNode {
203 protected:
204   /// Abbrev - Buffer for constructing abbreviation.
205   ///
206   DIEAbbrev Abbrev;
207   
208   /// Offset - Offset in debug info section.
209   ///
210   unsigned Offset;
211   
212   /// Size - Size of instance + children.
213   ///
214   unsigned Size;
215   
216   /// Children DIEs.
217   ///
218   std::vector<DIE *> Children;
219   
220   /// Attributes values.
221   ///
222   std::vector<DIEValue *> Values;
223   
224 public:
225   explicit DIE(unsigned Tag)
226   : Abbrev(Tag, DW_CHILDREN_no)
227   , Offset(0)
228   , Size(0)
229   , Children()
230   , Values()
231   {}
232   virtual ~DIE();
233   
234   // Accessors.
235   DIEAbbrev &getAbbrev()                           { return Abbrev; }
236   unsigned   getAbbrevNumber()               const {
237     return Abbrev.getNumber();
238   }
239   unsigned getTag()                          const { return Abbrev.getTag(); }
240   unsigned getOffset()                       const { return Offset; }
241   unsigned getSize()                         const { return Size; }
242   const std::vector<DIE *> &getChildren()    const { return Children; }
243   std::vector<DIEValue *> &getValues()       { return Values; }
244   void setTag(unsigned Tag)                  { Abbrev.setTag(Tag); }
245   void setOffset(unsigned O)                 { Offset = O; }
246   void setSize(unsigned S)                   { Size = S; }
247   
248   /// AddValue - Add a value and attributes to a DIE.
249   ///
250   void AddValue(unsigned Attribute, unsigned Form, DIEValue *Value) {
251     Abbrev.AddAttribute(Attribute, Form);
252     Values.push_back(Value);
253   }
254   
255   /// SiblingOffset - Return the offset of the debug information entry's
256   /// sibling.
257   unsigned SiblingOffset() const { return Offset + Size; }
258   
259   /// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
260   ///
261   void AddSiblingOffset();
262
263   /// AddChild - Add a child to the DIE.
264   ///
265   void AddChild(DIE *Child) {
266     Abbrev.setChildrenFlag(DW_CHILDREN_yes);
267     Children.push_back(Child);
268   }
269   
270   /// Detach - Detaches objects connected to it after copying.
271   ///
272   void Detach() {
273     Children.clear();
274   }
275   
276   /// Profile - Used to gather unique data for the value folding set.
277   ///
278   void Profile(FoldingSetNodeID &ID) ;
279       
280 #ifndef NDEBUG
281   void print(std::ostream *O, unsigned IncIndent = 0) {
282     if (O) print(*O, IncIndent);
283   }
284   void print(std::ostream &O, unsigned IncIndent = 0);
285   void dump();
286 #endif
287 };
288
289 //===----------------------------------------------------------------------===//
290 /// DIEValue - A debug information entry value.
291 ///
292 class DIEValue : public FoldingSetNode {
293 public:
294   enum {
295     isInteger,
296     isString,
297     isLabel,
298     isAsIsLabel,
299     isDelta,
300     isEntry,
301     isBlock
302   };
303   
304   /// Type - Type of data stored in the value.
305   ///
306   unsigned Type;
307   
308   explicit DIEValue(unsigned T)
309   : Type(T)
310   {}
311   virtual ~DIEValue() {}
312   
313   // Accessors
314   unsigned getType()  const { return Type; }
315   
316   // Implement isa/cast/dyncast.
317   static bool classof(const DIEValue *) { return true; }
318   
319   /// EmitValue - Emit value via the Dwarf writer.
320   ///
321   virtual void EmitValue(DwarfDebug &DD, unsigned Form) = 0;
322   
323   /// SizeOf - Return the size of a value in bytes.
324   ///
325   virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const = 0;
326   
327   /// Profile - Used to gather unique data for the value folding set.
328   ///
329   virtual void Profile(FoldingSetNodeID &ID) = 0;
330       
331 #ifndef NDEBUG
332   void print(std::ostream *O) {
333     if (O) print(*O);
334   }
335   virtual void print(std::ostream &O) = 0;
336   void dump();
337 #endif
338 };
339
340 //===----------------------------------------------------------------------===//
341 /// DWInteger - An integer value DIE.
342 /// 
343 class DIEInteger : public DIEValue {
344 private:
345   uint64_t Integer;
346   
347 public:
348   explicit DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {}
349
350   // Implement isa/cast/dyncast.
351   static bool classof(const DIEInteger *) { return true; }
352   static bool classof(const DIEValue *I)  { return I->Type == isInteger; }
353   
354   /// BestForm - Choose the best form for integer.
355   ///
356   static unsigned BestForm(bool IsSigned, uint64_t Integer) {
357     if (IsSigned) {
358       if ((char)Integer == (signed)Integer)   return DW_FORM_data1;
359       if ((short)Integer == (signed)Integer)  return DW_FORM_data2;
360       if ((int)Integer == (signed)Integer)    return DW_FORM_data4;
361     } else {
362       if ((unsigned char)Integer == Integer)  return DW_FORM_data1;
363       if ((unsigned short)Integer == Integer) return DW_FORM_data2;
364       if ((unsigned int)Integer == Integer)   return DW_FORM_data4;
365     }
366     return DW_FORM_data8;
367   }
368     
369   /// EmitValue - Emit integer of appropriate size.
370   ///
371   virtual void EmitValue(DwarfDebug &DD, unsigned Form);
372   
373   /// SizeOf - Determine size of integer value in bytes.
374   ///
375   virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
376   
377   /// Profile - Used to gather unique data for the value folding set.
378   ///
379   static void Profile(FoldingSetNodeID &ID, unsigned Integer) {
380     ID.AddInteger(isInteger);
381     ID.AddInteger(Integer);
382   }
383   virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Integer); }
384   
385 #ifndef NDEBUG
386   virtual void print(std::ostream &O) {
387     O << "Int: " << (int64_t)Integer
388       << "  0x" << std::hex << Integer << std::dec;
389   }
390 #endif
391 };
392
393 //===----------------------------------------------------------------------===//
394 /// DIEString - A string value DIE.
395 /// 
396 class DIEString : public DIEValue {
397 public:
398   const std::string String;
399   
400   explicit DIEString(const std::string &S) : DIEValue(isString), String(S) {}
401
402   // Implement isa/cast/dyncast.
403   static bool classof(const DIEString *) { return true; }
404   static bool classof(const DIEValue *S) { return S->Type == isString; }
405   
406   /// EmitValue - Emit string value.
407   ///
408   virtual void EmitValue(DwarfDebug &DD, unsigned Form);
409   
410   /// SizeOf - Determine size of string value in bytes.
411   ///
412   virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const {
413     return String.size() + sizeof(char); // sizeof('\0');
414   }
415   
416   /// Profile - Used to gather unique data for the value folding set.
417   ///
418   static void Profile(FoldingSetNodeID &ID, const std::string &String) {
419     ID.AddInteger(isString);
420     ID.AddString(String);
421   }
422   virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, String); }
423   
424 #ifndef NDEBUG
425   virtual void print(std::ostream &O) {
426     O << "Str: \"" << String << "\"";
427   }
428 #endif
429 };
430
431 //===----------------------------------------------------------------------===//
432 /// DIEDwarfLabel - A Dwarf internal label expression DIE.
433 //
434 class DIEDwarfLabel : public DIEValue {
435 public:
436
437   const DWLabel Label;
438   
439   explicit DIEDwarfLabel(const DWLabel &L) : DIEValue(isLabel), Label(L) {}
440
441   // Implement isa/cast/dyncast.
442   static bool classof(const DIEDwarfLabel *)  { return true; }
443   static bool classof(const DIEValue *L) { return L->Type == isLabel; }
444   
445   /// EmitValue - Emit label value.
446   ///
447   virtual void EmitValue(DwarfDebug &DD, unsigned Form);
448   
449   /// SizeOf - Determine size of label value in bytes.
450   ///
451   virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
452   
453   /// Profile - Used to gather unique data for the value folding set.
454   ///
455   static void Profile(FoldingSetNodeID &ID, const DWLabel &Label) {
456     ID.AddInteger(isLabel);
457     Label.Profile(ID);
458   }
459   virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label); }
460   
461 #ifndef NDEBUG
462   virtual void print(std::ostream &O) {
463     O << "Lbl: ";
464     Label.print(O);
465   }
466 #endif
467 };
468
469
470 //===----------------------------------------------------------------------===//
471 /// DIEObjectLabel - A label to an object in code or data.
472 //
473 class DIEObjectLabel : public DIEValue {
474 public:
475   const std::string Label;
476   
477   explicit DIEObjectLabel(const std::string &L)
478   : DIEValue(isAsIsLabel), Label(L) {}
479
480   // Implement isa/cast/dyncast.
481   static bool classof(const DIEObjectLabel *) { return true; }
482   static bool classof(const DIEValue *L)    { return L->Type == isAsIsLabel; }
483   
484   /// EmitValue - Emit label value.
485   ///
486   virtual void EmitValue(DwarfDebug &DD, unsigned Form);
487   
488   /// SizeOf - Determine size of label value in bytes.
489   ///
490   virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
491   
492   /// Profile - Used to gather unique data for the value folding set.
493   ///
494   static void Profile(FoldingSetNodeID &ID, const std::string &Label) {
495     ID.AddInteger(isAsIsLabel);
496     ID.AddString(Label);
497   }
498   virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label); }
499
500 #ifndef NDEBUG
501   virtual void print(std::ostream &O) {
502     O << "Obj: " << Label;
503   }
504 #endif
505 };
506
507 //===----------------------------------------------------------------------===//
508 /// DIEDelta - A simple label difference DIE.
509 /// 
510 class DIEDelta : public DIEValue {
511 public:
512   const DWLabel LabelHi;
513   const DWLabel LabelLo;
514   
515   DIEDelta(const DWLabel &Hi, const DWLabel &Lo)
516   : DIEValue(isDelta), LabelHi(Hi), LabelLo(Lo) {}
517
518   // Implement isa/cast/dyncast.
519   static bool classof(const DIEDelta *)  { return true; }
520   static bool classof(const DIEValue *D) { return D->Type == isDelta; }
521   
522   /// EmitValue - Emit delta value.
523   ///
524   virtual void EmitValue(DwarfDebug &DD, unsigned Form);
525   
526   /// SizeOf - Determine size of delta value in bytes.
527   ///
528   virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
529   
530   /// Profile - Used to gather unique data for the value folding set.
531   ///
532   static void Profile(FoldingSetNodeID &ID, const DWLabel &LabelHi,
533                                             const DWLabel &LabelLo) {
534     ID.AddInteger(isDelta);
535     LabelHi.Profile(ID);
536     LabelLo.Profile(ID);
537   }
538   virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, LabelHi, LabelLo); }
539
540 #ifndef NDEBUG
541   virtual void print(std::ostream &O) {
542     O << "Del: ";
543     LabelHi.print(O);
544     O << "-";
545     LabelLo.print(O);
546   }
547 #endif
548 };
549
550 //===----------------------------------------------------------------------===//
551 /// DIEntry - A pointer to another debug information entry.  An instance of this
552 /// class can also be used as a proxy for a debug information entry not yet
553 /// defined (ie. types.)
554 class DIEntry : public DIEValue {
555 public:
556   DIE *Entry;
557   
558   explicit DIEntry(DIE *E) : DIEValue(isEntry), Entry(E) {}
559   
560   // Implement isa/cast/dyncast.
561   static bool classof(const DIEntry *)   { return true; }
562   static bool classof(const DIEValue *E) { return E->Type == isEntry; }
563   
564   /// EmitValue - Emit debug information entry offset.
565   ///
566   virtual void EmitValue(DwarfDebug &DD, unsigned Form);
567   
568   /// SizeOf - Determine size of debug information entry in bytes.
569   ///
570   virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const {
571     return sizeof(int32_t);
572   }
573   
574   /// Profile - Used to gather unique data for the value folding set.
575   ///
576   static void Profile(FoldingSetNodeID &ID, DIE *Entry) {
577     ID.AddInteger(isEntry);
578     ID.AddPointer(Entry);
579   }
580   virtual void Profile(FoldingSetNodeID &ID) {
581     ID.AddInteger(isEntry);
582     
583     if (Entry) {
584       ID.AddPointer(Entry);
585     } else {
586       ID.AddPointer(this);
587     }
588   }
589   
590 #ifndef NDEBUG
591   virtual void print(std::ostream &O) {
592     O << "Die: 0x" << std::hex << (intptr_t)Entry << std::dec;
593   }
594 #endif
595 };
596
597 //===----------------------------------------------------------------------===//
598 /// DIEBlock - A block of values.  Primarily used for location expressions.
599 //
600 class DIEBlock : public DIEValue, public DIE {
601 public:
602   unsigned Size;                        // Size in bytes excluding size header.
603   
604   DIEBlock()
605   : DIEValue(isBlock)
606   , DIE(0)
607   , Size(0)
608   {}
609   ~DIEBlock()  {
610   }
611   
612   // Implement isa/cast/dyncast.
613   static bool classof(const DIEBlock *)  { return true; }
614   static bool classof(const DIEValue *E) { return E->Type == isBlock; }
615   
616   /// ComputeSize - calculate the size of the block.
617   ///
618   unsigned ComputeSize(DwarfDebug &DD);
619   
620   /// BestForm - Choose the best form for data.
621   ///
622   unsigned BestForm() const {
623     if ((unsigned char)Size == Size)  return DW_FORM_block1;
624     if ((unsigned short)Size == Size) return DW_FORM_block2;
625     if ((unsigned int)Size == Size)   return DW_FORM_block4;
626     return DW_FORM_block;
627   }
628
629   /// EmitValue - Emit block data.
630   ///
631   virtual void EmitValue(DwarfDebug &DD, unsigned Form);
632   
633   /// SizeOf - Determine size of block data in bytes.
634   ///
635   virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
636   
637
638   /// Profile - Used to gather unique data for the value folding set.
639   ///
640   virtual void Profile(FoldingSetNodeID &ID) {
641     ID.AddInteger(isBlock);
642     DIE::Profile(ID);
643   }
644   
645 #ifndef NDEBUG
646   virtual void print(std::ostream &O) {
647     O << "Blk: ";
648     DIE::print(O, 5);
649   }
650 #endif
651 };
652
653 //===----------------------------------------------------------------------===//
654 /// CompileUnit - This dwarf writer support class manages information associate
655 /// with a source file.
656 class CompileUnit {
657 private:
658   /// Desc - Compile unit debug descriptor.
659   ///
660   CompileUnitDesc *Desc;
661   
662   /// ID - File identifier for source.
663   ///
664   unsigned ID;
665   
666   /// Die - Compile unit debug information entry.
667   ///
668   DIE *Die;
669   
670   /// DescToDieMap - Tracks the mapping of unit level debug informaton
671   /// descriptors to debug information entries.
672   std::map<DebugInfoDesc *, DIE *> DescToDieMap;
673
674   /// DescToDIEntryMap - Tracks the mapping of unit level debug informaton
675   /// descriptors to debug information entries using a DIEntry proxy.
676   std::map<DebugInfoDesc *, DIEntry *> DescToDIEntryMap;
677
678   /// Globals - A map of globally visible named entities for this unit.
679   ///
680   std::map<std::string, DIE *> Globals;
681
682   /// DiesSet - Used to uniquely define dies within the compile unit.
683   ///
684   FoldingSet<DIE> DiesSet;
685   
686   /// Dies - List of all dies in the compile unit.
687   ///
688   std::vector<DIE *> Dies;
689   
690 public:
691   CompileUnit(CompileUnitDesc *CUD, unsigned I, DIE *D)
692   : Desc(CUD)
693   , ID(I)
694   , Die(D)
695   , DescToDieMap()
696   , DescToDIEntryMap()
697   , Globals()
698   , DiesSet(InitDiesSetSize)
699   , Dies()
700   {}
701   
702   ~CompileUnit() {
703     delete Die;
704     
705     for (unsigned i = 0, N = Dies.size(); i < N; ++i)
706       delete Dies[i];
707   }
708   
709   // Accessors.
710   CompileUnitDesc *getDesc() const { return Desc; }
711   unsigned getID()           const { return ID; }
712   DIE* getDie()              const { return Die; }
713   std::map<std::string, DIE *> &getGlobals() { return Globals; }
714
715   /// hasContent - Return true if this compile unit has something to write out.
716   ///
717   bool hasContent() const {
718     return !Die->getChildren().empty();
719   }
720
721   /// AddGlobal - Add a new global entity to the compile unit.
722   ///
723   void AddGlobal(const std::string &Name, DIE *Die) {
724     Globals[Name] = Die;
725   }
726   
727   /// getDieMapSlotFor - Returns the debug information entry map slot for the
728   /// specified debug descriptor.
729   DIE *&getDieMapSlotFor(DebugInfoDesc *DID) {
730     return DescToDieMap[DID];
731   }
732   
733   /// getDIEntrySlotFor - Returns the debug information entry proxy slot for the
734   /// specified debug descriptor.
735   DIEntry *&getDIEntrySlotFor(DebugInfoDesc *DID) {
736     return DescToDIEntryMap[DID];
737   }
738   
739   /// AddDie - Adds or interns the DIE to the compile unit.
740   ///
741   DIE *AddDie(DIE &Buffer) {
742     FoldingSetNodeID ID;
743     Buffer.Profile(ID);
744     void *Where;
745     DIE *Die = DiesSet.FindNodeOrInsertPos(ID, Where);
746     
747     if (!Die) {
748       Die = new DIE(Buffer);
749       DiesSet.InsertNode(Die, Where);
750       this->Die->AddChild(Die);
751       Buffer.Detach();
752     }
753     
754     return Die;
755   }
756 };
757
758 //===----------------------------------------------------------------------===//
759 /// Dwarf - Emits general Dwarf directives. 
760 ///
761 class Dwarf {
762
763 protected:
764
765   //===--------------------------------------------------------------------===//
766   // Core attributes used by the Dwarf writer.
767   //
768   
769   //
770   /// O - Stream to .s file.
771   ///
772   std::ostream &O;
773
774   /// Asm - Target of Dwarf emission.
775   ///
776   AsmPrinter *Asm;
777   
778   /// TAI - Target Asm Printer.
779   const TargetAsmInfo *TAI;
780   
781   /// TD - Target data.
782   const TargetData *TD;
783   
784   /// RI - Register Information.
785   const MRegisterInfo *RI;
786   
787   /// M - Current module.
788   ///
789   Module *M;
790   
791   /// MF - Current machine function.
792   ///
793   MachineFunction *MF;
794   
795   /// MMI - Collected machine module information.
796   ///
797   MachineModuleInfo *MMI;
798   
799   /// SubprogramCount - The running count of functions being compiled.
800   ///
801   unsigned SubprogramCount;
802   
803   /// Flavor - A unique string indicating what dwarf producer this is, used to
804   /// unique labels.
805   const char * const Flavor;
806
807   unsigned SetCounter;
808   Dwarf(std::ostream &OS, AsmPrinter *A, const TargetAsmInfo *T,
809         const char *flavor)
810   : O(OS)
811   , Asm(A)
812   , TAI(T)
813   , TD(Asm->TM.getTargetData())
814   , RI(Asm->TM.getRegisterInfo())
815   , M(NULL)
816   , MF(NULL)
817   , MMI(NULL)
818   , SubprogramCount(0)
819   , Flavor(flavor)
820   , SetCounter(1)
821   {
822   }
823
824 public:
825
826   //===--------------------------------------------------------------------===//
827   // Accessors.
828   //
829   AsmPrinter *getAsm() const { return Asm; }
830   MachineModuleInfo *getMMI() const { return MMI; }
831   const TargetAsmInfo *getTargetAsmInfo() const { return TAI; }
832   const TargetData *getTargetData() const { return TD; }
833
834   void PrintRelDirective(bool Force32Bit = false, bool isInSection = false)
835                                                                          const {
836     if (isInSection && TAI->getDwarfSectionOffsetDirective())
837       O << TAI->getDwarfSectionOffsetDirective();
838     else if (Force32Bit || TD->getPointerSize() == sizeof(int32_t))
839       O << TAI->getData32bitsDirective();
840     else
841       O << TAI->getData64bitsDirective();
842   }
843   
844   /// PrintLabelName - Print label name in form used by Dwarf writer.
845   ///
846   void PrintLabelName(DWLabel Label) const {
847     PrintLabelName(Label.Tag, Label.Number);
848   }
849   void PrintLabelName(const char *Tag, unsigned Number) const {
850     O << TAI->getPrivateGlobalPrefix() << Tag;
851     if (Number) O << Number;
852   }
853   
854   void PrintLabelName(const char *Tag, unsigned Number,
855                       const char *Suffix) const {
856     O << TAI->getPrivateGlobalPrefix() << Tag;
857     if (Number) O << Number;
858     O << Suffix;
859   }
860   
861   /// EmitLabel - Emit location label for internal use by Dwarf.
862   ///
863   void EmitLabel(DWLabel Label) const {
864     EmitLabel(Label.Tag, Label.Number);
865   }
866   void EmitLabel(const char *Tag, unsigned Number) const {
867     PrintLabelName(Tag, Number);
868     O << ":\n";
869   }
870   
871   /// EmitReference - Emit a reference to a label.
872   ///
873   void EmitReference(DWLabel Label, bool IsPCRelative = false,
874                      bool Force32Bit = false) const {
875     EmitReference(Label.Tag, Label.Number, IsPCRelative, Force32Bit);
876   }
877   void EmitReference(const char *Tag, unsigned Number,
878                      bool IsPCRelative = false, bool Force32Bit = false) const {
879     PrintRelDirective(Force32Bit);
880     PrintLabelName(Tag, Number);
881     
882     if (IsPCRelative) O << "-" << TAI->getPCSymbol();
883   }
884   void EmitReference(const std::string &Name, bool IsPCRelative = false,
885                      bool Force32Bit = false) const {
886     PrintRelDirective(Force32Bit);
887     
888     O << Name;
889     
890     if (IsPCRelative) O << "-" << TAI->getPCSymbol();
891   }
892
893   /// EmitDifference - Emit the difference between two labels.  Some
894   /// assemblers do not behave with absolute expressions with data directives,
895   /// so there is an option (needsSet) to use an intermediary set expression.
896   void EmitDifference(DWLabel LabelHi, DWLabel LabelLo,
897                       bool IsSmall = false) {
898     EmitDifference(LabelHi.Tag, LabelHi.Number,
899                    LabelLo.Tag, LabelLo.Number,
900                    IsSmall);
901   }
902   void EmitDifference(const char *TagHi, unsigned NumberHi,
903                       const char *TagLo, unsigned NumberLo,
904                       bool IsSmall = false) {
905     if (TAI->needsSet()) {
906       O << "\t.set\t";
907       PrintLabelName("set", SetCounter, Flavor);
908       O << ",";
909       PrintLabelName(TagHi, NumberHi);
910       O << "-";
911       PrintLabelName(TagLo, NumberLo);
912       O << "\n";
913
914       PrintRelDirective(IsSmall);
915       PrintLabelName("set", SetCounter, Flavor);
916       ++SetCounter;
917     } else {
918       PrintRelDirective(IsSmall);
919         
920       PrintLabelName(TagHi, NumberHi);
921       O << "-";
922       PrintLabelName(TagLo, NumberLo);
923     }
924   }
925
926   void EmitSectionOffset(const char* Label, const char* Section,
927                          unsigned LabelNumber, unsigned SectionNumber,
928                          bool IsSmall = false, bool isEH = false) {
929     bool printAbsolute = false;
930     if (TAI->needsSet()) {
931       O << "\t.set\t";
932       PrintLabelName("set", SetCounter, Flavor);
933       O << ",";
934       PrintLabelName(Label, LabelNumber);
935
936       if (isEH)
937         printAbsolute = TAI->isAbsoluteEHSectionOffsets();
938       else
939         printAbsolute = TAI->isAbsoluteDebugSectionOffsets();
940       
941       if (!printAbsolute) {
942         O << "-";
943         PrintLabelName(Section, SectionNumber);
944       }      
945       O << "\n";
946
947       PrintRelDirective(IsSmall);
948         
949       PrintLabelName("set", SetCounter, Flavor);
950       ++SetCounter;
951     } else {
952       PrintRelDirective(IsSmall, true);
953         
954       PrintLabelName(Label, LabelNumber);
955
956       if (isEH)
957         printAbsolute = TAI->isAbsoluteEHSectionOffsets();
958       else
959         printAbsolute = TAI->isAbsoluteDebugSectionOffsets();
960
961       if (!printAbsolute) {
962         O << "-";
963         PrintLabelName(Section, SectionNumber);
964       }
965     }    
966   }
967   
968   /// EmitFrameMoves - Emit frame instructions to describe the layout of the
969   /// frame.
970   void EmitFrameMoves(const char *BaseLabel, unsigned BaseLabelID,
971                       const std::vector<MachineMove> &Moves) {
972     int stackGrowth =
973         Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
974           TargetFrameInfo::StackGrowsUp ?
975             TD->getPointerSize() : -TD->getPointerSize();
976     bool IsLocal = BaseLabel && strcmp(BaseLabel, "label") == 0;
977
978     for (unsigned i = 0, N = Moves.size(); i < N; ++i) {
979       const MachineMove &Move = Moves[i];
980       unsigned LabelID = Move.getLabelID();
981       
982       if (LabelID) {
983         LabelID = MMI->MappedLabel(LabelID);
984       
985         // Throw out move if the label is invalid.
986         if (!LabelID) continue;
987       }
988       
989       const MachineLocation &Dst = Move.getDestination();
990       const MachineLocation &Src = Move.getSource();
991       
992       // Advance row if new location.
993       if (BaseLabel && LabelID && (BaseLabelID != LabelID || !IsLocal)) {
994         Asm->EmitInt8(DW_CFA_advance_loc4);
995         Asm->EOL("DW_CFA_advance_loc4");
996         EmitDifference("label", LabelID, BaseLabel, BaseLabelID, true);
997         Asm->EOL();
998         
999         BaseLabelID = LabelID;
1000         BaseLabel = "label";
1001         IsLocal = true;
1002       }
1003       
1004       // If advancing cfa.
1005       if (Dst.isRegister() && Dst.getRegister() == MachineLocation::VirtualFP) {
1006         if (!Src.isRegister()) {
1007           if (Src.getRegister() == MachineLocation::VirtualFP) {
1008             Asm->EmitInt8(DW_CFA_def_cfa_offset);
1009             Asm->EOL("DW_CFA_def_cfa_offset");
1010           } else {
1011             Asm->EmitInt8(DW_CFA_def_cfa);
1012             Asm->EOL("DW_CFA_def_cfa");
1013             Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Src.getRegister()));
1014             Asm->EOL("Register");
1015           }
1016           
1017           int Offset = -Src.getOffset();
1018           
1019           Asm->EmitULEB128Bytes(Offset);
1020           Asm->EOL("Offset");
1021         } else {
1022           assert(0 && "Machine move no supported yet.");
1023         }
1024       } else if (Src.isRegister() &&
1025         Src.getRegister() == MachineLocation::VirtualFP) {
1026         if (Dst.isRegister()) {
1027           Asm->EmitInt8(DW_CFA_def_cfa_register);
1028           Asm->EOL("DW_CFA_def_cfa_register");
1029           Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Dst.getRegister()));
1030           Asm->EOL("Register");
1031         } else {
1032           assert(0 && "Machine move no supported yet.");
1033         }
1034       } else {
1035         unsigned Reg = RI->getDwarfRegNum(Src.getRegister());
1036         int Offset = Dst.getOffset() / stackGrowth;
1037         
1038         if (Offset < 0) {
1039           Asm->EmitInt8(DW_CFA_offset_extended_sf);
1040           Asm->EOL("DW_CFA_offset_extended_sf");
1041           Asm->EmitULEB128Bytes(Reg);
1042           Asm->EOL("Reg");
1043           Asm->EmitSLEB128Bytes(Offset);
1044           Asm->EOL("Offset");
1045         } else if (Reg < 64) {
1046           Asm->EmitInt8(DW_CFA_offset + Reg);
1047           Asm->EOL("DW_CFA_offset + Reg (" + utostr(Reg) + ")");
1048           Asm->EmitULEB128Bytes(Offset);
1049           Asm->EOL("Offset");
1050         } else {
1051           Asm->EmitInt8(DW_CFA_offset_extended);
1052           Asm->EOL("DW_CFA_offset_extended");
1053           Asm->EmitULEB128Bytes(Reg);
1054           Asm->EOL("Reg");
1055           Asm->EmitULEB128Bytes(Offset);
1056           Asm->EOL("Offset");
1057         }
1058       }
1059     }
1060   }
1061
1062 };
1063
1064 //===----------------------------------------------------------------------===//
1065 /// DwarfDebug - Emits Dwarf debug directives. 
1066 ///
1067 class DwarfDebug : public Dwarf {
1068
1069 private:
1070   //===--------------------------------------------------------------------===//
1071   // Attributes used to construct specific Dwarf sections.
1072   //
1073   
1074   /// CompileUnits - All the compile units involved in this build.  The index
1075   /// of each entry in this vector corresponds to the sources in MMI.
1076   std::vector<CompileUnit *> CompileUnits;
1077   
1078   /// AbbreviationsSet - Used to uniquely define abbreviations.
1079   ///
1080   FoldingSet<DIEAbbrev> AbbreviationsSet;
1081
1082   /// Abbreviations - A list of all the unique abbreviations in use.
1083   ///
1084   std::vector<DIEAbbrev *> Abbreviations;
1085   
1086   /// ValuesSet - Used to uniquely define values.
1087   ///
1088   FoldingSet<DIEValue> ValuesSet;
1089   
1090   /// Values - A list of all the unique values in use.
1091   ///
1092   std::vector<DIEValue *> Values;
1093   
1094   /// StringPool - A UniqueVector of strings used by indirect references.
1095   ///
1096   UniqueVector<std::string> StringPool;
1097
1098   /// UnitMap - Map debug information descriptor to compile unit.
1099   ///
1100   std::map<DebugInfoDesc *, CompileUnit *> DescToUnitMap;
1101   
1102   /// SectionMap - Provides a unique id per text section.
1103   ///
1104   UniqueVector<std::string> SectionMap;
1105   
1106   /// SectionSourceLines - Tracks line numbers per text section.
1107   ///
1108   std::vector<std::vector<SourceLineInfo> > SectionSourceLines;
1109
1110   /// didInitial - Flag to indicate if initial emission has been done.
1111   ///
1112   bool didInitial;
1113   
1114   /// shouldEmit - Flag to indicate if debug information should be emitted.
1115   ///
1116   bool shouldEmit;
1117
1118   struct FunctionDebugFrameInfo {
1119     unsigned Number;
1120     std::vector<MachineMove> Moves;
1121
1122     FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M):
1123       Number(Num), Moves(M) { }
1124   };
1125
1126   std::vector<FunctionDebugFrameInfo> DebugFrames;
1127   
1128 public:
1129   
1130   /// ShouldEmitDwarf - Returns true if Dwarf declarations should be made.
1131   ///
1132   bool ShouldEmitDwarf() const { return shouldEmit; }
1133
1134   /// AssignAbbrevNumber - Define a unique number for the abbreviation.
1135   ///  
1136   void AssignAbbrevNumber(DIEAbbrev &Abbrev) {
1137     // Profile the node so that we can make it unique.
1138     FoldingSetNodeID ID;
1139     Abbrev.Profile(ID);
1140     
1141     // Check the set for priors.
1142     DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
1143     
1144     // If it's newly added.
1145     if (InSet == &Abbrev) {
1146       // Add to abbreviation list. 
1147       Abbreviations.push_back(&Abbrev);
1148       // Assign the vector position + 1 as its number.
1149       Abbrev.setNumber(Abbreviations.size());
1150     } else {
1151       // Assign existing abbreviation number.
1152       Abbrev.setNumber(InSet->getNumber());
1153     }
1154   }
1155
1156   /// NewString - Add a string to the constant pool and returns a label.
1157   ///
1158   DWLabel NewString(const std::string &String) {
1159     unsigned StringID = StringPool.insert(String);
1160     return DWLabel("string", StringID);
1161   }
1162   
1163   /// NewDIEntry - Creates a new DIEntry to be a proxy for a debug information
1164   /// entry.
1165   DIEntry *NewDIEntry(DIE *Entry = NULL) {
1166     DIEntry *Value;
1167     
1168     if (Entry) {
1169       FoldingSetNodeID ID;
1170       DIEntry::Profile(ID, Entry);
1171       void *Where;
1172       Value = static_cast<DIEntry *>(ValuesSet.FindNodeOrInsertPos(ID, Where));
1173       
1174       if (Value) return Value;
1175       
1176       Value = new DIEntry(Entry);
1177       ValuesSet.InsertNode(Value, Where);
1178     } else {
1179       Value = new DIEntry(Entry);
1180     }
1181     
1182     Values.push_back(Value);
1183     return Value;
1184   }
1185   
1186   /// SetDIEntry - Set a DIEntry once the debug information entry is defined.
1187   ///
1188   void SetDIEntry(DIEntry *Value, DIE *Entry) {
1189     Value->Entry = Entry;
1190     // Add to values set if not already there.  If it is, we merely have a
1191     // duplicate in the values list (no harm.)
1192     ValuesSet.GetOrInsertNode(Value);
1193   }
1194
1195   /// AddUInt - Add an unsigned integer attribute data and value.
1196   ///
1197   void AddUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer) {
1198     if (!Form) Form = DIEInteger::BestForm(false, Integer);
1199
1200     FoldingSetNodeID ID;
1201     DIEInteger::Profile(ID, Integer);
1202     void *Where;
1203     DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1204     if (!Value) {
1205       Value = new DIEInteger(Integer);
1206       ValuesSet.InsertNode(Value, Where);
1207       Values.push_back(Value);
1208     }
1209   
1210     Die->AddValue(Attribute, Form, Value);
1211   }
1212       
1213   /// AddSInt - Add an signed integer attribute data and value.
1214   ///
1215   void AddSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer) {
1216     if (!Form) Form = DIEInteger::BestForm(true, Integer);
1217
1218     FoldingSetNodeID ID;
1219     DIEInteger::Profile(ID, (uint64_t)Integer);
1220     void *Where;
1221     DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1222     if (!Value) {
1223       Value = new DIEInteger(Integer);
1224       ValuesSet.InsertNode(Value, Where);
1225       Values.push_back(Value);
1226     }
1227   
1228     Die->AddValue(Attribute, Form, Value);
1229   }
1230       
1231   /// AddString - Add a std::string attribute data and value.
1232   ///
1233   void AddString(DIE *Die, unsigned Attribute, unsigned Form,
1234                  const std::string &String) {
1235     FoldingSetNodeID ID;
1236     DIEString::Profile(ID, String);
1237     void *Where;
1238     DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1239     if (!Value) {
1240       Value = new DIEString(String);
1241       ValuesSet.InsertNode(Value, Where);
1242       Values.push_back(Value);
1243     }
1244   
1245     Die->AddValue(Attribute, Form, Value);
1246   }
1247       
1248   /// AddLabel - Add a Dwarf label attribute data and value.
1249   ///
1250   void AddLabel(DIE *Die, unsigned Attribute, unsigned Form,
1251                      const DWLabel &Label) {
1252     FoldingSetNodeID ID;
1253     DIEDwarfLabel::Profile(ID, Label);
1254     void *Where;
1255     DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1256     if (!Value) {
1257       Value = new DIEDwarfLabel(Label);
1258       ValuesSet.InsertNode(Value, Where);
1259       Values.push_back(Value);
1260     }
1261   
1262     Die->AddValue(Attribute, Form, Value);
1263   }
1264       
1265   /// AddObjectLabel - Add an non-Dwarf label attribute data and value.
1266   ///
1267   void AddObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
1268                       const std::string &Label) {
1269     FoldingSetNodeID ID;
1270     DIEObjectLabel::Profile(ID, Label);
1271     void *Where;
1272     DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1273     if (!Value) {
1274       Value = new DIEObjectLabel(Label);
1275       ValuesSet.InsertNode(Value, Where);
1276       Values.push_back(Value);
1277     }
1278   
1279     Die->AddValue(Attribute, Form, Value);
1280   }
1281       
1282   /// AddDelta - Add a label delta attribute data and value.
1283   ///
1284   void AddDelta(DIE *Die, unsigned Attribute, unsigned Form,
1285                           const DWLabel &Hi, const DWLabel &Lo) {
1286     FoldingSetNodeID ID;
1287     DIEDelta::Profile(ID, Hi, Lo);
1288     void *Where;
1289     DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1290     if (!Value) {
1291       Value = new DIEDelta(Hi, Lo);
1292       ValuesSet.InsertNode(Value, Where);
1293       Values.push_back(Value);
1294     }
1295   
1296     Die->AddValue(Attribute, Form, Value);
1297   }
1298       
1299   /// AddDIEntry - Add a DIE attribute data and value.
1300   ///
1301   void AddDIEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) {
1302     Die->AddValue(Attribute, Form, NewDIEntry(Entry));
1303   }
1304
1305   /// AddBlock - Add block data.
1306   ///
1307   void AddBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block) {
1308     Block->ComputeSize(*this);
1309     FoldingSetNodeID ID;
1310     Block->Profile(ID);
1311     void *Where;
1312     DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1313     if (!Value) {
1314       Value = Block;
1315       ValuesSet.InsertNode(Value, Where);
1316       Values.push_back(Value);
1317     } else {
1318       // Already exists, reuse the previous one.
1319       delete Block;
1320       Block = cast<DIEBlock>(Value);
1321     }
1322   
1323     Die->AddValue(Attribute, Block->BestForm(), Value);
1324   }
1325
1326 private:
1327
1328   /// AddSourceLine - Add location information to specified debug information
1329   /// entry.
1330   void AddSourceLine(DIE *Die, CompileUnitDesc *File, unsigned Line) {
1331     if (File && Line) {
1332       CompileUnit *FileUnit = FindCompileUnit(File);
1333       unsigned FileID = FileUnit->getID();
1334       AddUInt(Die, DW_AT_decl_file, 0, FileID);
1335       AddUInt(Die, DW_AT_decl_line, 0, Line);
1336     }
1337   }
1338
1339   /// AddAddress - Add an address attribute to a die based on the location
1340   /// provided.
1341   void AddAddress(DIE *Die, unsigned Attribute,
1342                             const MachineLocation &Location) {
1343     unsigned Reg = RI->getDwarfRegNum(Location.getRegister());
1344     DIEBlock *Block = new DIEBlock();
1345     
1346     if (Location.isRegister()) {
1347       if (Reg < 32) {
1348         AddUInt(Block, 0, DW_FORM_data1, DW_OP_reg0 + Reg);
1349       } else {
1350         AddUInt(Block, 0, DW_FORM_data1, DW_OP_regx);
1351         AddUInt(Block, 0, DW_FORM_udata, Reg);
1352       }
1353     } else {
1354       if (Reg < 32) {
1355         AddUInt(Block, 0, DW_FORM_data1, DW_OP_breg0 + Reg);
1356       } else {
1357         AddUInt(Block, 0, DW_FORM_data1, DW_OP_bregx);
1358         AddUInt(Block, 0, DW_FORM_udata, Reg);
1359       }
1360       AddUInt(Block, 0, DW_FORM_sdata, Location.getOffset());
1361     }
1362     
1363     AddBlock(Die, Attribute, 0, Block);
1364   }
1365   
1366   /// AddBasicType - Add a new basic type attribute to the specified entity.
1367   ///
1368   void AddBasicType(DIE *Entity, CompileUnit *Unit,
1369                     const std::string &Name,
1370                     unsigned Encoding, unsigned Size) {
1371     DIE *Die = ConstructBasicType(Unit, Name, Encoding, Size);
1372     AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, Die);
1373   }
1374   
1375   /// ConstructBasicType - Construct a new basic type.
1376   ///
1377   DIE *ConstructBasicType(CompileUnit *Unit,
1378                           const std::string &Name,
1379                           unsigned Encoding, unsigned Size) {
1380     DIE Buffer(DW_TAG_base_type);
1381     AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1382     AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, Encoding);
1383     if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1384     return Unit->AddDie(Buffer);
1385   }
1386   
1387   /// AddPointerType - Add a new pointer type attribute to the specified entity.
1388   ///
1389   void AddPointerType(DIE *Entity, CompileUnit *Unit, const std::string &Name) {
1390     DIE *Die = ConstructPointerType(Unit, Name);
1391     AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, Die);
1392   }
1393   
1394   /// ConstructPointerType - Construct a new pointer type.
1395   ///
1396   DIE *ConstructPointerType(CompileUnit *Unit, const std::string &Name) {
1397     DIE Buffer(DW_TAG_pointer_type);
1398     AddUInt(&Buffer, DW_AT_byte_size, 0, TD->getPointerSize());
1399     if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1400     return Unit->AddDie(Buffer);
1401   }
1402   
1403   /// AddType - Add a new type attribute to the specified entity.
1404   ///
1405   void AddType(DIE *Entity, TypeDesc *TyDesc, CompileUnit *Unit) {
1406     if (!TyDesc) {
1407       AddBasicType(Entity, Unit, "", DW_ATE_signed, sizeof(int32_t));
1408     } else {
1409       // Check for pre-existence.
1410       DIEntry *&Slot = Unit->getDIEntrySlotFor(TyDesc);
1411       
1412       // If it exists then use the existing value.
1413       if (Slot) {
1414         Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1415         return;
1416       }
1417       
1418       if (SubprogramDesc *SubprogramTy = dyn_cast<SubprogramDesc>(TyDesc)) {
1419         // FIXME - Not sure why programs and variables are coming through here.
1420         // Short cut for handling subprogram types (not really a TyDesc.)
1421         AddPointerType(Entity, Unit, SubprogramTy->getName());
1422       } else if (GlobalVariableDesc *GlobalTy =
1423                                          dyn_cast<GlobalVariableDesc>(TyDesc)) {
1424         // FIXME - Not sure why programs and variables are coming through here.
1425         // Short cut for handling global variable types (not really a TyDesc.)
1426         AddPointerType(Entity, Unit, GlobalTy->getName());
1427       } else {  
1428         // Set up proxy.
1429         Slot = NewDIEntry();
1430         
1431         // Construct type.
1432         DIE Buffer(DW_TAG_base_type);
1433         ConstructType(Buffer, TyDesc, Unit);
1434         
1435         // Add debug information entry to entity and unit.
1436         DIE *Die = Unit->AddDie(Buffer);
1437         SetDIEntry(Slot, Die);
1438         Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1439       }
1440     }
1441   }
1442   
1443   /// ConstructType - Adds all the required attributes to the type.
1444   ///
1445   void ConstructType(DIE &Buffer, TypeDesc *TyDesc, CompileUnit *Unit) {
1446     // Get core information.
1447     const std::string &Name = TyDesc->getName();
1448     uint64_t Size = TyDesc->getSize() >> 3;
1449     
1450     if (BasicTypeDesc *BasicTy = dyn_cast<BasicTypeDesc>(TyDesc)) {
1451       // Fundamental types like int, float, bool
1452       Buffer.setTag(DW_TAG_base_type);
1453       AddUInt(&Buffer, DW_AT_encoding,  DW_FORM_data1, BasicTy->getEncoding());
1454     } else if (DerivedTypeDesc *DerivedTy = dyn_cast<DerivedTypeDesc>(TyDesc)) {
1455       // Fetch tag.
1456       unsigned Tag = DerivedTy->getTag();
1457       // FIXME - Workaround for templates.
1458       if (Tag == DW_TAG_inheritance) Tag = DW_TAG_reference_type;
1459       // Pointers, typedefs et al. 
1460       Buffer.setTag(Tag);
1461       // Map to main type, void will not have a type.
1462       if (TypeDesc *FromTy = DerivedTy->getFromType())
1463         AddType(&Buffer, FromTy, Unit);
1464     } else if (CompositeTypeDesc *CompTy = dyn_cast<CompositeTypeDesc>(TyDesc)){
1465       // Fetch tag.
1466       unsigned Tag = CompTy->getTag();
1467       
1468       // Set tag accordingly.
1469       if (Tag == DW_TAG_vector_type)
1470         Buffer.setTag(DW_TAG_array_type);
1471       else 
1472         Buffer.setTag(Tag);
1473
1474       std::vector<DebugInfoDesc *> &Elements = CompTy->getElements();
1475       
1476       switch (Tag) {
1477       case DW_TAG_vector_type:
1478         AddUInt(&Buffer, DW_AT_GNU_vector, DW_FORM_flag, 1);
1479         // Fall thru
1480       case DW_TAG_array_type: {
1481         // Add element type.
1482         if (TypeDesc *FromTy = CompTy->getFromType())
1483           AddType(&Buffer, FromTy, Unit);
1484         
1485         // Don't emit size attribute.
1486         Size = 0;
1487         
1488         // Construct an anonymous type for index type.
1489         DIE *IndexTy = ConstructBasicType(Unit, "", DW_ATE_signed,
1490                                           sizeof(int32_t));
1491       
1492         // Add subranges to array type.
1493         for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1494           SubrangeDesc *SRD = cast<SubrangeDesc>(Elements[i]);
1495           int64_t Lo = SRD->getLo();
1496           int64_t Hi = SRD->getHi();
1497           DIE *Subrange = new DIE(DW_TAG_subrange_type);
1498           
1499           // If a range is available.
1500           if (Lo != Hi) {
1501             AddDIEntry(Subrange, DW_AT_type, DW_FORM_ref4, IndexTy);
1502             // Only add low if non-zero.
1503             if (Lo) AddSInt(Subrange, DW_AT_lower_bound, 0, Lo);
1504             AddSInt(Subrange, DW_AT_upper_bound, 0, Hi);
1505           }
1506           
1507           Buffer.AddChild(Subrange);
1508         }
1509         break;
1510       }
1511       case DW_TAG_structure_type:
1512       case DW_TAG_union_type: {
1513         // Add elements to structure type.
1514         for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1515           DebugInfoDesc *Element = Elements[i];
1516           
1517           if (DerivedTypeDesc *MemberDesc = dyn_cast<DerivedTypeDesc>(Element)){
1518             // Add field or base class.
1519             
1520             unsigned Tag = MemberDesc->getTag();
1521           
1522             // Extract the basic information.
1523             const std::string &Name = MemberDesc->getName();
1524             uint64_t Size = MemberDesc->getSize();
1525             uint64_t Align = MemberDesc->getAlign();
1526             uint64_t Offset = MemberDesc->getOffset();
1527        
1528             // Construct member debug information entry.
1529             DIE *Member = new DIE(Tag);
1530             
1531             // Add name if not "".
1532             if (!Name.empty())
1533               AddString(Member, DW_AT_name, DW_FORM_string, Name);
1534             // Add location if available.
1535             AddSourceLine(Member, MemberDesc->getFile(), MemberDesc->getLine());
1536             
1537             // Most of the time the field info is the same as the members.
1538             uint64_t FieldSize = Size;
1539             uint64_t FieldAlign = Align;
1540             uint64_t FieldOffset = Offset;
1541             
1542             // Set the member type.
1543             TypeDesc *FromTy = MemberDesc->getFromType();
1544             AddType(Member, FromTy, Unit);
1545             
1546             // Walk up typedefs until a real size is found.
1547             while (FromTy) {
1548               if (FromTy->getTag() != DW_TAG_typedef) {
1549                 FieldSize = FromTy->getSize();
1550                 FieldAlign = FromTy->getSize();
1551                 break;
1552               }
1553               
1554               FromTy = cast<DerivedTypeDesc>(FromTy)->getFromType();
1555             }
1556             
1557             // Unless we have a bit field.
1558             if (Tag == DW_TAG_member && FieldSize != Size) {
1559               // Construct the alignment mask.
1560               uint64_t AlignMask = ~(FieldAlign - 1);
1561               // Determine the high bit + 1 of the declared size.
1562               uint64_t HiMark = (Offset + FieldSize) & AlignMask;
1563               // Work backwards to determine the base offset of the field.
1564               FieldOffset = HiMark - FieldSize;
1565               // Now normalize offset to the field.
1566               Offset -= FieldOffset;
1567               
1568               // Maybe we need to work from the other end.
1569               if (TD->isLittleEndian()) Offset = FieldSize - (Offset + Size);
1570               
1571               // Add size and offset.
1572               AddUInt(Member, DW_AT_byte_size, 0, FieldSize >> 3);
1573               AddUInt(Member, DW_AT_bit_size, 0, Size);
1574               AddUInt(Member, DW_AT_bit_offset, 0, Offset);
1575             }
1576             
1577             // Add computation for offset.
1578             DIEBlock *Block = new DIEBlock();
1579             AddUInt(Block, 0, DW_FORM_data1, DW_OP_plus_uconst);
1580             AddUInt(Block, 0, DW_FORM_udata, FieldOffset >> 3);
1581             AddBlock(Member, DW_AT_data_member_location, 0, Block);
1582
1583             // Add accessibility (public default unless is base class.
1584             if (MemberDesc->isProtected()) {
1585               AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_protected);
1586             } else if (MemberDesc->isPrivate()) {
1587               AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_private);
1588             } else if (Tag == DW_TAG_inheritance) {
1589               AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_public);
1590             }
1591             
1592             Buffer.AddChild(Member);
1593           } else if (GlobalVariableDesc *StaticDesc =
1594                                         dyn_cast<GlobalVariableDesc>(Element)) {
1595             // Add static member.
1596             
1597             // Construct member debug information entry.
1598             DIE *Static = new DIE(DW_TAG_variable);
1599             
1600             // Add name and mangled name.
1601             const std::string &Name = StaticDesc->getName();
1602             const std::string &LinkageName = StaticDesc->getLinkageName();
1603             AddString(Static, DW_AT_name, DW_FORM_string, Name);
1604             if (!LinkageName.empty()) {
1605               AddString(Static, DW_AT_MIPS_linkage_name, DW_FORM_string,
1606                                 LinkageName);
1607             }
1608             
1609             // Add location.
1610             AddSourceLine(Static, StaticDesc->getFile(), StaticDesc->getLine());
1611            
1612             // Add type.
1613             if (TypeDesc *StaticTy = StaticDesc->getType())
1614               AddType(Static, StaticTy, Unit);
1615             
1616             // Add flags.
1617             if (!StaticDesc->isStatic())
1618               AddUInt(Static, DW_AT_external, DW_FORM_flag, 1);
1619             AddUInt(Static, DW_AT_declaration, DW_FORM_flag, 1);
1620             
1621             Buffer.AddChild(Static);
1622           } else if (SubprogramDesc *MethodDesc =
1623                                             dyn_cast<SubprogramDesc>(Element)) {
1624             // Add member function.
1625             
1626             // Construct member debug information entry.
1627             DIE *Method = new DIE(DW_TAG_subprogram);
1628            
1629             // Add name and mangled name.
1630             const std::string &Name = MethodDesc->getName();
1631             const std::string &LinkageName = MethodDesc->getLinkageName();
1632             
1633             AddString(Method, DW_AT_name, DW_FORM_string, Name);            
1634             bool IsCTor = TyDesc->getName() == Name;
1635             
1636             if (!LinkageName.empty()) {
1637               AddString(Method, DW_AT_MIPS_linkage_name, DW_FORM_string,
1638                                 LinkageName);
1639             }
1640             
1641             // Add location.
1642             AddSourceLine(Method, MethodDesc->getFile(), MethodDesc->getLine());
1643            
1644             // Add type.
1645             if (CompositeTypeDesc *MethodTy =
1646                    dyn_cast_or_null<CompositeTypeDesc>(MethodDesc->getType())) {
1647               // Get argument information.
1648               std::vector<DebugInfoDesc *> &Args = MethodTy->getElements();
1649              
1650               // If not a ctor.
1651               if (!IsCTor) {
1652                 // Add return type.
1653                 AddType(Method, dyn_cast<TypeDesc>(Args[0]), Unit);
1654               }
1655               
1656               // Add arguments.
1657               for(unsigned i = 1, N = Args.size(); i < N; ++i) {
1658                 DIE *Arg = new DIE(DW_TAG_formal_parameter);
1659                 AddType(Arg, cast<TypeDesc>(Args[i]), Unit);
1660                 AddUInt(Arg, DW_AT_artificial, DW_FORM_flag, 1);
1661                 Method->AddChild(Arg);
1662               }
1663             }
1664
1665             // Add flags.
1666             if (!MethodDesc->isStatic())
1667               AddUInt(Method, DW_AT_external, DW_FORM_flag, 1);
1668             AddUInt(Method, DW_AT_declaration, DW_FORM_flag, 1);
1669               
1670             Buffer.AddChild(Method);
1671           }
1672         }
1673         break;
1674       }
1675       case DW_TAG_enumeration_type: {
1676         // Add enumerators to enumeration type.
1677         for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1678           EnumeratorDesc *ED = cast<EnumeratorDesc>(Elements[i]);
1679           const std::string &Name = ED->getName();
1680           int64_t Value = ED->getValue();
1681           DIE *Enumerator = new DIE(DW_TAG_enumerator);
1682           AddString(Enumerator, DW_AT_name, DW_FORM_string, Name);
1683           AddSInt(Enumerator, DW_AT_const_value, DW_FORM_sdata, Value);
1684           Buffer.AddChild(Enumerator);
1685         }
1686
1687         break;
1688       }
1689       case DW_TAG_subroutine_type: {
1690         // Add prototype flag.
1691         AddUInt(&Buffer, DW_AT_prototyped, DW_FORM_flag, 1);
1692         // Add return type.
1693         AddType(&Buffer, dyn_cast<TypeDesc>(Elements[0]), Unit);
1694         
1695         // Add arguments.
1696         for(unsigned i = 1, N = Elements.size(); i < N; ++i) {
1697           DIE *Arg = new DIE(DW_TAG_formal_parameter);
1698           AddType(Arg, cast<TypeDesc>(Elements[i]), Unit);
1699           Buffer.AddChild(Arg);
1700         }
1701         
1702         break;
1703       }
1704       default: break;
1705       }
1706     }
1707    
1708     // Add size if non-zero (derived types don't have a size.)
1709     if (Size) AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1710     // Add name if not anonymous or intermediate type.
1711     if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1712     // Add source line info if available.
1713     AddSourceLine(&Buffer, TyDesc->getFile(), TyDesc->getLine());
1714   }
1715
1716   /// NewCompileUnit - Create new compile unit and it's debug information entry.
1717   ///
1718   CompileUnit *NewCompileUnit(CompileUnitDesc *UnitDesc, unsigned ID) {
1719     // Construct debug information entry.
1720     DIE *Die = new DIE(DW_TAG_compile_unit);
1721     if (TAI->isAbsoluteDebugSectionOffsets())
1722       AddLabel(Die, DW_AT_stmt_list, DW_FORM_data4, DWLabel("section_line", 0));
1723     else
1724       AddDelta(Die, DW_AT_stmt_list, DW_FORM_data4, DWLabel("section_line", 0),
1725                DWLabel("section_line", 0));      
1726     AddString(Die, DW_AT_producer,  DW_FORM_string, UnitDesc->getProducer());
1727     AddUInt  (Die, DW_AT_language,  DW_FORM_data1,  UnitDesc->getLanguage());
1728     AddString(Die, DW_AT_name,      DW_FORM_string, UnitDesc->getFileName());
1729     AddString(Die, DW_AT_comp_dir,  DW_FORM_string, UnitDesc->getDirectory());
1730     
1731     // Construct compile unit.
1732     CompileUnit *Unit = new CompileUnit(UnitDesc, ID, Die);
1733     
1734     // Add Unit to compile unit map.
1735     DescToUnitMap[UnitDesc] = Unit;
1736     
1737     return Unit;
1738   }
1739
1740   /// GetBaseCompileUnit - Get the main compile unit.
1741   ///
1742   CompileUnit *GetBaseCompileUnit() const {
1743     CompileUnit *Unit = CompileUnits[0];
1744     assert(Unit && "Missing compile unit.");
1745     return Unit;
1746   }
1747
1748   /// FindCompileUnit - Get the compile unit for the given descriptor.
1749   ///
1750   CompileUnit *FindCompileUnit(CompileUnitDesc *UnitDesc) {
1751     CompileUnit *Unit = DescToUnitMap[UnitDesc];
1752     assert(Unit && "Missing compile unit.");
1753     return Unit;
1754   }
1755
1756   /// NewGlobalVariable - Add a new global variable DIE.
1757   ///
1758   DIE *NewGlobalVariable(GlobalVariableDesc *GVD) {
1759     // Get the compile unit context.
1760     CompileUnitDesc *UnitDesc =
1761       static_cast<CompileUnitDesc *>(GVD->getContext());
1762     CompileUnit *Unit = GetBaseCompileUnit();
1763
1764     // Check for pre-existence.
1765     DIE *&Slot = Unit->getDieMapSlotFor(GVD);
1766     if (Slot) return Slot;
1767     
1768     // Get the global variable itself.
1769     GlobalVariable *GV = GVD->getGlobalVariable();
1770
1771     const std::string &Name = GVD->getName();
1772     const std::string &FullName = GVD->getFullName();
1773     const std::string &LinkageName = GVD->getLinkageName();
1774     // Create the global's variable DIE.
1775     DIE *VariableDie = new DIE(DW_TAG_variable);
1776     AddString(VariableDie, DW_AT_name, DW_FORM_string, Name);
1777     if (!LinkageName.empty()) {
1778       AddString(VariableDie, DW_AT_MIPS_linkage_name, DW_FORM_string,
1779                              LinkageName);
1780     }
1781     AddType(VariableDie, GVD->getType(), Unit);
1782     if (!GVD->isStatic())
1783       AddUInt(VariableDie, DW_AT_external, DW_FORM_flag, 1);
1784     
1785     // Add source line info if available.
1786     AddSourceLine(VariableDie, UnitDesc, GVD->getLine());
1787     
1788     // Add address.
1789     DIEBlock *Block = new DIEBlock();
1790     AddUInt(Block, 0, DW_FORM_data1, DW_OP_addr);
1791     AddObjectLabel(Block, 0, DW_FORM_udata, Asm->getGlobalLinkName(GV));
1792     AddBlock(VariableDie, DW_AT_location, 0, Block);
1793     
1794     // Add to map.
1795     Slot = VariableDie;
1796    
1797     // Add to context owner.
1798     Unit->getDie()->AddChild(VariableDie);
1799     
1800     // Expose as global.
1801     // FIXME - need to check external flag.
1802     Unit->AddGlobal(FullName, VariableDie);
1803     
1804     return VariableDie;
1805   }
1806
1807   /// NewSubprogram - Add a new subprogram DIE.
1808   ///
1809   DIE *NewSubprogram(SubprogramDesc *SPD) {
1810     // Get the compile unit context.
1811     CompileUnitDesc *UnitDesc =
1812       static_cast<CompileUnitDesc *>(SPD->getContext());
1813     CompileUnit *Unit = GetBaseCompileUnit();
1814
1815     // Check for pre-existence.
1816     DIE *&Slot = Unit->getDieMapSlotFor(SPD);
1817     if (Slot) return Slot;
1818     
1819     // Gather the details (simplify add attribute code.)
1820     const std::string &Name = SPD->getName();
1821     const std::string &FullName = SPD->getFullName();
1822     const std::string &LinkageName = SPD->getLinkageName();
1823                                       
1824     DIE *SubprogramDie = new DIE(DW_TAG_subprogram);
1825     AddString(SubprogramDie, DW_AT_name, DW_FORM_string, Name);
1826     if (!LinkageName.empty()) {
1827       AddString(SubprogramDie, DW_AT_MIPS_linkage_name, DW_FORM_string,
1828                                LinkageName);
1829     }
1830     if (SPD->getType()) AddType(SubprogramDie, SPD->getType(), Unit);
1831     if (!SPD->isStatic())
1832       AddUInt(SubprogramDie, DW_AT_external, DW_FORM_flag, 1);
1833     AddUInt(SubprogramDie, DW_AT_prototyped, DW_FORM_flag, 1);
1834     
1835     // Add source line info if available.
1836     AddSourceLine(SubprogramDie, UnitDesc, SPD->getLine());
1837
1838     // Add to map.
1839     Slot = SubprogramDie;
1840    
1841     // Add to context owner.
1842     Unit->getDie()->AddChild(SubprogramDie);
1843     
1844     // Expose as global.
1845     Unit->AddGlobal(FullName, SubprogramDie);
1846     
1847     return SubprogramDie;
1848   }
1849
1850   /// NewScopeVariable - Create a new scope variable.
1851   ///
1852   DIE *NewScopeVariable(DebugVariable *DV, CompileUnit *Unit) {
1853     // Get the descriptor.
1854     VariableDesc *VD = DV->getDesc();
1855
1856     // Translate tag to proper Dwarf tag.  The result variable is dropped for
1857     // now.
1858     unsigned Tag;
1859     switch (VD->getTag()) {
1860     case DW_TAG_return_variable:  return NULL;
1861     case DW_TAG_arg_variable:     Tag = DW_TAG_formal_parameter; break;
1862     case DW_TAG_auto_variable:    // fall thru
1863     default:                      Tag = DW_TAG_variable; break;
1864     }
1865
1866     // Define variable debug information entry.
1867     DIE *VariableDie = new DIE(Tag);
1868     AddString(VariableDie, DW_AT_name, DW_FORM_string, VD->getName());
1869
1870     // Add source line info if available.
1871     AddSourceLine(VariableDie, VD->getFile(), VD->getLine());
1872     
1873     // Add variable type.
1874     AddType(VariableDie, VD->getType(), Unit); 
1875     
1876     // Add variable address.
1877     MachineLocation Location;
1878     RI->getLocation(*MF, DV->getFrameIndex(), Location);
1879     AddAddress(VariableDie, DW_AT_location, Location);
1880
1881     return VariableDie;
1882   }
1883
1884   /// ConstructScope - Construct the components of a scope.
1885   ///
1886   void ConstructScope(DebugScope *ParentScope,
1887                       unsigned ParentStartID, unsigned ParentEndID,
1888                       DIE *ParentDie, CompileUnit *Unit) {
1889     // Add variables to scope.
1890     std::vector<DebugVariable *> &Variables = ParentScope->getVariables();
1891     for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
1892       DIE *VariableDie = NewScopeVariable(Variables[i], Unit);
1893       if (VariableDie) ParentDie->AddChild(VariableDie);
1894     }
1895     
1896     // Add nested scopes.
1897     std::vector<DebugScope *> &Scopes = ParentScope->getScopes();
1898     for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
1899       // Define the Scope debug information entry.
1900       DebugScope *Scope = Scopes[j];
1901       // FIXME - Ignore inlined functions for the time being.
1902       if (!Scope->getParent()) continue;
1903       
1904       unsigned StartID = MMI->MappedLabel(Scope->getStartLabelID());
1905       unsigned EndID = MMI->MappedLabel(Scope->getEndLabelID());
1906
1907       // Ignore empty scopes.
1908       if (StartID == EndID && StartID != 0) continue;
1909       if (Scope->getScopes().empty() && Scope->getVariables().empty()) continue;
1910       
1911       if (StartID == ParentStartID && EndID == ParentEndID) {
1912         // Just add stuff to the parent scope.
1913         ConstructScope(Scope, ParentStartID, ParentEndID, ParentDie, Unit);
1914       } else {
1915         DIE *ScopeDie = new DIE(DW_TAG_lexical_block);
1916         
1917         // Add the scope bounds.
1918         if (StartID) {
1919           AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
1920                              DWLabel("label", StartID));
1921         } else {
1922           AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
1923                              DWLabel("func_begin", SubprogramCount));
1924         }
1925         if (EndID) {
1926           AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
1927                              DWLabel("label", EndID));
1928         } else {
1929           AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
1930                              DWLabel("func_end", SubprogramCount));
1931         }
1932                            
1933         // Add the scope contents.
1934         ConstructScope(Scope, StartID, EndID, ScopeDie, Unit);
1935         ParentDie->AddChild(ScopeDie);
1936       }
1937     }
1938   }
1939
1940   /// ConstructRootScope - Construct the scope for the subprogram.
1941   ///
1942   void ConstructRootScope(DebugScope *RootScope) {
1943     // Exit if there is no root scope.
1944     if (!RootScope) return;
1945     
1946     // Get the subprogram debug information entry. 
1947     SubprogramDesc *SPD = cast<SubprogramDesc>(RootScope->getDesc());
1948     
1949     // Get the compile unit context.
1950     CompileUnit *Unit = GetBaseCompileUnit();
1951     
1952     // Get the subprogram die.
1953     DIE *SPDie = Unit->getDieMapSlotFor(SPD);
1954     assert(SPDie && "Missing subprogram descriptor");
1955     
1956     // Add the function bounds.
1957     AddLabel(SPDie, DW_AT_low_pc, DW_FORM_addr,
1958                     DWLabel("func_begin", SubprogramCount));
1959     AddLabel(SPDie, DW_AT_high_pc, DW_FORM_addr,
1960                     DWLabel("func_end", SubprogramCount));
1961     MachineLocation Location(RI->getFrameRegister(*MF));
1962     AddAddress(SPDie, DW_AT_frame_base, Location);
1963
1964     ConstructScope(RootScope, 0, 0, SPDie, Unit);
1965   }
1966
1967   /// EmitInitial - Emit initial Dwarf declarations.  This is necessary for cc
1968   /// tools to recognize the object file contains Dwarf information.
1969   void EmitInitial() {
1970     // Check to see if we already emitted intial headers.
1971     if (didInitial) return;
1972     didInitial = true;
1973     
1974     // Print out .file directives to specify files for .loc directives.
1975     if (TAI->hasDotLocAndDotFile()) {
1976       const UniqueVector<SourceFileInfo> &SourceFiles = MMI->getSourceFiles();
1977       const UniqueVector<std::string> &Directories = MMI->getDirectories();
1978       for (unsigned i = 1, e = SourceFiles.size(); i <= e; ++i) {
1979         sys::Path FullPath(Directories[SourceFiles[i].getDirectoryID()]);
1980         bool AppendOk = FullPath.appendComponent(SourceFiles[i].getName());
1981         assert(AppendOk && "Could not append filename to directory!");
1982         Asm->EmitFile(i, FullPath.toString());
1983         Asm->EOL();
1984       }
1985     }
1986
1987     // Dwarf sections base addresses.
1988     if (TAI->doesDwarfRequireFrameSection()) {
1989       Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
1990       EmitLabel("section_debug_frame", 0);
1991     }
1992     Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
1993     EmitLabel("section_info", 0);
1994     Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
1995     EmitLabel("section_abbrev", 0);
1996     Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
1997     EmitLabel("section_aranges", 0);
1998     Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
1999     EmitLabel("section_macinfo", 0);
2000     Asm->SwitchToDataSection(TAI->getDwarfLineSection());
2001     EmitLabel("section_line", 0);
2002     Asm->SwitchToDataSection(TAI->getDwarfLocSection());
2003     EmitLabel("section_loc", 0);
2004     Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
2005     EmitLabel("section_pubnames", 0);
2006     Asm->SwitchToDataSection(TAI->getDwarfStrSection());
2007     EmitLabel("section_str", 0);
2008     Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
2009     EmitLabel("section_ranges", 0);
2010
2011     Asm->SwitchToTextSection(TAI->getTextSection());
2012     EmitLabel("text_begin", 0);
2013     Asm->SwitchToDataSection(TAI->getDataSection());
2014     EmitLabel("data_begin", 0);
2015   }
2016
2017   /// EmitDIE - Recusively Emits a debug information entry.
2018   ///
2019   void EmitDIE(DIE *Die) {
2020     // Get the abbreviation for this DIE.
2021     unsigned AbbrevNumber = Die->getAbbrevNumber();
2022     const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2023     
2024     Asm->EOL();
2025
2026     // Emit the code (index) for the abbreviation.
2027     Asm->EmitULEB128Bytes(AbbrevNumber);
2028     Asm->EOL(std::string("Abbrev [" +
2029              utostr(AbbrevNumber) +
2030              "] 0x" + utohexstr(Die->getOffset()) +
2031              ":0x" + utohexstr(Die->getSize()) + " " +
2032              TagString(Abbrev->getTag())));
2033     
2034     std::vector<DIEValue *> &Values = Die->getValues();
2035     const std::vector<DIEAbbrevData> &AbbrevData = Abbrev->getData();
2036     
2037     // Emit the DIE attribute values.
2038     for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2039       unsigned Attr = AbbrevData[i].getAttribute();
2040       unsigned Form = AbbrevData[i].getForm();
2041       assert(Form && "Too many attributes for DIE (check abbreviation)");
2042       
2043       switch (Attr) {
2044       case DW_AT_sibling: {
2045         Asm->EmitInt32(Die->SiblingOffset());
2046         break;
2047       }
2048       default: {
2049         // Emit an attribute using the defined form.
2050         Values[i]->EmitValue(*this, Form);
2051         break;
2052       }
2053       }
2054       
2055       Asm->EOL(AttributeString(Attr));
2056     }
2057     
2058     // Emit the DIE children if any.
2059     if (Abbrev->getChildrenFlag() == DW_CHILDREN_yes) {
2060       const std::vector<DIE *> &Children = Die->getChildren();
2061       
2062       for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2063         EmitDIE(Children[j]);
2064       }
2065       
2066       Asm->EmitInt8(0); Asm->EOL("End Of Children Mark");
2067     }
2068   }
2069
2070   /// SizeAndOffsetDie - Compute the size and offset of a DIE.
2071   ///
2072   unsigned SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last) {
2073     // Get the children.
2074     const std::vector<DIE *> &Children = Die->getChildren();
2075     
2076     // If not last sibling and has children then add sibling offset attribute.
2077     if (!Last && !Children.empty()) Die->AddSiblingOffset();
2078
2079     // Record the abbreviation.
2080     AssignAbbrevNumber(Die->getAbbrev());
2081    
2082     // Get the abbreviation for this DIE.
2083     unsigned AbbrevNumber = Die->getAbbrevNumber();
2084     const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2085
2086     // Set DIE offset
2087     Die->setOffset(Offset);
2088     
2089     // Start the size with the size of abbreviation code.
2090     Offset += Asm->SizeULEB128(AbbrevNumber);
2091     
2092     const std::vector<DIEValue *> &Values = Die->getValues();
2093     const std::vector<DIEAbbrevData> &AbbrevData = Abbrev->getData();
2094
2095     // Size the DIE attribute values.
2096     for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2097       // Size attribute value.
2098       Offset += Values[i]->SizeOf(*this, AbbrevData[i].getForm());
2099     }
2100     
2101     // Size the DIE children if any.
2102     if (!Children.empty()) {
2103       assert(Abbrev->getChildrenFlag() == DW_CHILDREN_yes &&
2104              "Children flag not set");
2105       
2106       for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2107         Offset = SizeAndOffsetDie(Children[j], Offset, (j + 1) == M);
2108       }
2109       
2110       // End of children marker.
2111       Offset += sizeof(int8_t);
2112     }
2113
2114     Die->setSize(Offset - Die->getOffset());
2115     return Offset;
2116   }
2117
2118   /// SizeAndOffsets - Compute the size and offset of all the DIEs.
2119   ///
2120   void SizeAndOffsets() {
2121     // Process base compile unit.
2122     CompileUnit *Unit = GetBaseCompileUnit();
2123     // Compute size of compile unit header
2124     unsigned Offset = sizeof(int32_t) + // Length of Compilation Unit Info
2125                       sizeof(int16_t) + // DWARF version number
2126                       sizeof(int32_t) + // Offset Into Abbrev. Section
2127                       sizeof(int8_t);   // Pointer Size (in bytes)
2128     SizeAndOffsetDie(Unit->getDie(), Offset, true);
2129   }
2130
2131   /// EmitDebugInfo - Emit the debug info section.
2132   ///
2133   void EmitDebugInfo() {
2134     // Start debug info section.
2135     Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
2136     
2137     CompileUnit *Unit = GetBaseCompileUnit();
2138     DIE *Die = Unit->getDie();
2139     // Emit the compile units header.
2140     EmitLabel("info_begin", Unit->getID());
2141     // Emit size of content not including length itself
2142     unsigned ContentSize = Die->getSize() +
2143                            sizeof(int16_t) + // DWARF version number
2144                            sizeof(int32_t) + // Offset Into Abbrev. Section
2145                            sizeof(int8_t) +  // Pointer Size (in bytes)
2146                            sizeof(int32_t);  // FIXME - extra pad for gdb bug.
2147                            
2148     Asm->EmitInt32(ContentSize);  Asm->EOL("Length of Compilation Unit Info");
2149     Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF version number");
2150     EmitSectionOffset("abbrev_begin", "section_abbrev", 0, 0, true, false);
2151     Asm->EOL("Offset Into Abbrev. Section");
2152     Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)");
2153   
2154     EmitDIE(Die);
2155     // FIXME - extra padding for gdb bug.
2156     Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2157     Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2158     Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2159     Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2160     EmitLabel("info_end", Unit->getID());
2161     
2162     Asm->EOL();
2163   }
2164
2165   /// EmitAbbreviations - Emit the abbreviation section.
2166   ///
2167   void EmitAbbreviations() const {
2168     // Check to see if it is worth the effort.
2169     if (!Abbreviations.empty()) {
2170       // Start the debug abbrev section.
2171       Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
2172       
2173       EmitLabel("abbrev_begin", 0);
2174       
2175       // For each abbrevation.
2176       for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2177         // Get abbreviation data
2178         const DIEAbbrev *Abbrev = Abbreviations[i];
2179         
2180         // Emit the abbrevations code (base 1 index.)
2181         Asm->EmitULEB128Bytes(Abbrev->getNumber());
2182         Asm->EOL("Abbreviation Code");
2183         
2184         // Emit the abbreviations data.
2185         Abbrev->Emit(*this);
2186     
2187         Asm->EOL();
2188       }
2189       
2190       // Mark end of abbreviations.
2191       Asm->EmitULEB128Bytes(0); Asm->EOL("EOM(3)");
2192
2193       EmitLabel("abbrev_end", 0);
2194     
2195       Asm->EOL();
2196     }
2197   }
2198
2199   /// EmitDebugLines - Emit source line information.
2200   ///
2201   void EmitDebugLines() {
2202     // If there are no lines to emit (such as when we're using .loc directives
2203     // to emit .debug_line information) don't emit a .debug_line header.
2204     if (SectionSourceLines.empty())
2205       return;
2206
2207     // Minimum line delta, thus ranging from -10..(255-10).
2208     const int MinLineDelta = -(DW_LNS_fixed_advance_pc + 1);
2209     // Maximum line delta, thus ranging from -10..(255-10).
2210     const int MaxLineDelta = 255 + MinLineDelta;
2211
2212     // Start the dwarf line section.
2213     Asm->SwitchToDataSection(TAI->getDwarfLineSection());
2214     
2215     // Construct the section header.
2216     
2217     EmitDifference("line_end", 0, "line_begin", 0, true);
2218     Asm->EOL("Length of Source Line Info");
2219     EmitLabel("line_begin", 0);
2220     
2221     Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF version number");
2222     
2223     EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0, true);
2224     Asm->EOL("Prolog Length");
2225     EmitLabel("line_prolog_begin", 0);
2226     
2227     Asm->EmitInt8(1); Asm->EOL("Minimum Instruction Length");
2228
2229     Asm->EmitInt8(1); Asm->EOL("Default is_stmt_start flag");
2230
2231     Asm->EmitInt8(MinLineDelta); Asm->EOL("Line Base Value (Special Opcodes)");
2232     
2233     Asm->EmitInt8(MaxLineDelta); Asm->EOL("Line Range Value (Special Opcodes)");
2234
2235     Asm->EmitInt8(-MinLineDelta); Asm->EOL("Special Opcode Base");
2236     
2237     // Line number standard opcode encodings argument count
2238     Asm->EmitInt8(0); Asm->EOL("DW_LNS_copy arg count");
2239     Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_pc arg count");
2240     Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_line arg count");
2241     Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_file arg count");
2242     Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_column arg count");
2243     Asm->EmitInt8(0); Asm->EOL("DW_LNS_negate_stmt arg count");
2244     Asm->EmitInt8(0); Asm->EOL("DW_LNS_set_basic_block arg count");
2245     Asm->EmitInt8(0); Asm->EOL("DW_LNS_const_add_pc arg count");
2246     Asm->EmitInt8(1); Asm->EOL("DW_LNS_fixed_advance_pc arg count");
2247
2248     const UniqueVector<std::string> &Directories = MMI->getDirectories();
2249     const UniqueVector<SourceFileInfo>
2250       &SourceFiles = MMI->getSourceFiles();
2251
2252     // Emit directories.
2253     for (unsigned DirectoryID = 1, NDID = Directories.size();
2254                   DirectoryID <= NDID; ++DirectoryID) {
2255       Asm->EmitString(Directories[DirectoryID]); Asm->EOL("Directory");
2256     }
2257     Asm->EmitInt8(0); Asm->EOL("End of directories");
2258     
2259     // Emit files.
2260     for (unsigned SourceID = 1, NSID = SourceFiles.size();
2261                  SourceID <= NSID; ++SourceID) {
2262       const SourceFileInfo &SourceFile = SourceFiles[SourceID];
2263       Asm->EmitString(SourceFile.getName());
2264       Asm->EOL("Source");
2265       Asm->EmitULEB128Bytes(SourceFile.getDirectoryID());
2266       Asm->EOL("Directory #");
2267       Asm->EmitULEB128Bytes(0);
2268       Asm->EOL("Mod date");
2269       Asm->EmitULEB128Bytes(0);
2270       Asm->EOL("File size");
2271     }
2272     Asm->EmitInt8(0); Asm->EOL("End of files");
2273     
2274     EmitLabel("line_prolog_end", 0);
2275     
2276     // A sequence for each text section.
2277     for (unsigned j = 0, M = SectionSourceLines.size(); j < M; ++j) {
2278       // Isolate current sections line info.
2279       const std::vector<SourceLineInfo> &LineInfos = SectionSourceLines[j];
2280       
2281       Asm->EOL(std::string("Section ") + SectionMap[j + 1]);
2282
2283       // Dwarf assumes we start with first line of first source file.
2284       unsigned Source = 1;
2285       unsigned Line = 1;
2286       
2287       // Construct rows of the address, source, line, column matrix.
2288       for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
2289         const SourceLineInfo &LineInfo = LineInfos[i];
2290         unsigned LabelID = MMI->MappedLabel(LineInfo.getLabelID());
2291         if (!LabelID) continue;
2292         
2293         unsigned SourceID = LineInfo.getSourceID();
2294         const SourceFileInfo &SourceFile = SourceFiles[SourceID];
2295         unsigned DirectoryID = SourceFile.getDirectoryID();
2296         Asm->EOL(Directories[DirectoryID]
2297           + SourceFile.getName()
2298           + ":"
2299           + utostr_32(LineInfo.getLine()));
2300
2301         // Define the line address.
2302         Asm->EmitInt8(0); Asm->EOL("Extended Op");
2303         Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
2304         Asm->EmitInt8(DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2305         EmitReference("label",  LabelID); Asm->EOL("Location label");
2306         
2307         // If change of source, then switch to the new source.
2308         if (Source != LineInfo.getSourceID()) {
2309           Source = LineInfo.getSourceID();
2310           Asm->EmitInt8(DW_LNS_set_file); Asm->EOL("DW_LNS_set_file");
2311           Asm->EmitULEB128Bytes(Source); Asm->EOL("New Source");
2312         }
2313         
2314         // If change of line.
2315         if (Line != LineInfo.getLine()) {
2316           // Determine offset.
2317           int Offset = LineInfo.getLine() - Line;
2318           int Delta = Offset - MinLineDelta;
2319           
2320           // Update line.
2321           Line = LineInfo.getLine();
2322           
2323           // If delta is small enough and in range...
2324           if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
2325             // ... then use fast opcode.
2326             Asm->EmitInt8(Delta - MinLineDelta); Asm->EOL("Line Delta");
2327           } else {
2328             // ... otherwise use long hand.
2329             Asm->EmitInt8(DW_LNS_advance_line); Asm->EOL("DW_LNS_advance_line");
2330             Asm->EmitSLEB128Bytes(Offset); Asm->EOL("Line Offset");
2331             Asm->EmitInt8(DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2332           }
2333         } else {
2334           // Copy the previous row (different address or source)
2335           Asm->EmitInt8(DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2336         }
2337       }
2338
2339       // Define last address of section.
2340       Asm->EmitInt8(0); Asm->EOL("Extended Op");
2341       Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
2342       Asm->EmitInt8(DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2343       EmitReference("section_end", j + 1); Asm->EOL("Section end label");
2344
2345       // Mark end of matrix.
2346       Asm->EmitInt8(0); Asm->EOL("DW_LNE_end_sequence");
2347       Asm->EmitULEB128Bytes(1); Asm->EOL();
2348       Asm->EmitInt8(1); Asm->EOL();
2349     }
2350     
2351     EmitLabel("line_end", 0);
2352     
2353     Asm->EOL();
2354   }
2355     
2356   /// EmitCommonDebugFrame - Emit common frame info into a debug frame section.
2357   ///
2358   void EmitCommonDebugFrame() {
2359     if (!TAI->doesDwarfRequireFrameSection())
2360       return;
2361
2362     int stackGrowth =
2363         Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2364           TargetFrameInfo::StackGrowsUp ?
2365         TD->getPointerSize() : -TD->getPointerSize();
2366
2367     // Start the dwarf frame section.
2368     Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2369
2370     EmitLabel("debug_frame_common", 0);
2371     EmitDifference("debug_frame_common_end", 0,
2372                    "debug_frame_common_begin", 0, true);
2373     Asm->EOL("Length of Common Information Entry");
2374
2375     EmitLabel("debug_frame_common_begin", 0);
2376     Asm->EmitInt32((int)DW_CIE_ID);
2377     Asm->EOL("CIE Identifier Tag");
2378     Asm->EmitInt8(DW_CIE_VERSION);
2379     Asm->EOL("CIE Version");
2380     Asm->EmitString("");
2381     Asm->EOL("CIE Augmentation");
2382     Asm->EmitULEB128Bytes(1);
2383     Asm->EOL("CIE Code Alignment Factor");
2384     Asm->EmitSLEB128Bytes(stackGrowth);
2385     Asm->EOL("CIE Data Alignment Factor");   
2386     Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister()));
2387     Asm->EOL("CIE RA Column");
2388     
2389     std::vector<MachineMove> Moves;
2390     RI->getInitialFrameState(Moves);
2391
2392     EmitFrameMoves(NULL, 0, Moves);
2393
2394     Asm->EmitAlignment(2);
2395     EmitLabel("debug_frame_common_end", 0);
2396     
2397     Asm->EOL();
2398   }
2399
2400   /// EmitFunctionDebugFrame - Emit per function frame info into a debug frame
2401   /// section.
2402   void EmitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo) {
2403     if (!TAI->doesDwarfRequireFrameSection())
2404       return;
2405        
2406     // Start the dwarf frame section.
2407     Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2408     
2409     EmitDifference("debug_frame_end", DebugFrameInfo.Number,
2410                    "debug_frame_begin", DebugFrameInfo.Number, true);
2411     Asm->EOL("Length of Frame Information Entry");
2412     
2413     EmitLabel("debug_frame_begin", DebugFrameInfo.Number);
2414
2415     EmitSectionOffset("debug_frame_common", "section_debug_frame",
2416                       0, 0, true, false);
2417     Asm->EOL("FDE CIE offset");
2418
2419     EmitReference("func_begin", DebugFrameInfo.Number);
2420     Asm->EOL("FDE initial location");
2421     EmitDifference("func_end", DebugFrameInfo.Number,
2422                    "func_begin", DebugFrameInfo.Number);
2423     Asm->EOL("FDE address range");
2424     
2425     EmitFrameMoves("func_begin", DebugFrameInfo.Number, DebugFrameInfo.Moves);
2426     
2427     Asm->EmitAlignment(2);
2428     EmitLabel("debug_frame_end", DebugFrameInfo.Number);
2429
2430     Asm->EOL();
2431   }
2432
2433   /// EmitDebugPubNames - Emit visible names into a debug pubnames section.
2434   ///
2435   void EmitDebugPubNames() {
2436     // Start the dwarf pubnames section.
2437     Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
2438       
2439     CompileUnit *Unit = GetBaseCompileUnit(); 
2440  
2441     EmitDifference("pubnames_end", Unit->getID(),
2442                    "pubnames_begin", Unit->getID(), true);
2443     Asm->EOL("Length of Public Names Info");
2444     
2445     EmitLabel("pubnames_begin", Unit->getID());
2446     
2447     Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF Version");
2448
2449     EmitSectionOffset("info_begin", "section_info",
2450                       Unit->getID(), 0, true, false);
2451     Asm->EOL("Offset of Compilation Unit Info");
2452
2453     EmitDifference("info_end", Unit->getID(), "info_begin", Unit->getID(),true);
2454     Asm->EOL("Compilation Unit Length");
2455     
2456     std::map<std::string, DIE *> &Globals = Unit->getGlobals();
2457     
2458     for (std::map<std::string, DIE *>::iterator GI = Globals.begin(),
2459                                                 GE = Globals.end();
2460          GI != GE; ++GI) {
2461       const std::string &Name = GI->first;
2462       DIE * Entity = GI->second;
2463       
2464       Asm->EmitInt32(Entity->getOffset()); Asm->EOL("DIE offset");
2465       Asm->EmitString(Name); Asm->EOL("External Name");
2466     }
2467   
2468     Asm->EmitInt32(0); Asm->EOL("End Mark");
2469     EmitLabel("pubnames_end", Unit->getID());
2470   
2471     Asm->EOL();
2472   }
2473
2474   /// EmitDebugStr - Emit visible names into a debug str section.
2475   ///
2476   void EmitDebugStr() {
2477     // Check to see if it is worth the effort.
2478     if (!StringPool.empty()) {
2479       // Start the dwarf str section.
2480       Asm->SwitchToDataSection(TAI->getDwarfStrSection());
2481       
2482       // For each of strings in the string pool.
2483       for (unsigned StringID = 1, N = StringPool.size();
2484            StringID <= N; ++StringID) {
2485         // Emit a label for reference from debug information entries.
2486         EmitLabel("string", StringID);
2487         // Emit the string itself.
2488         const std::string &String = StringPool[StringID];
2489         Asm->EmitString(String); Asm->EOL();
2490       }
2491     
2492       Asm->EOL();
2493     }
2494   }
2495
2496   /// EmitDebugLoc - Emit visible names into a debug loc section.
2497   ///
2498   void EmitDebugLoc() {
2499     // Start the dwarf loc section.
2500     Asm->SwitchToDataSection(TAI->getDwarfLocSection());
2501     
2502     Asm->EOL();
2503   }
2504
2505   /// EmitDebugARanges - Emit visible names into a debug aranges section.
2506   ///
2507   void EmitDebugARanges() {
2508     // Start the dwarf aranges section.
2509     Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
2510     
2511     // FIXME - Mock up
2512   #if 0
2513     CompileUnit *Unit = GetBaseCompileUnit(); 
2514       
2515     // Don't include size of length
2516     Asm->EmitInt32(0x1c); Asm->EOL("Length of Address Ranges Info");
2517     
2518     Asm->EmitInt16(DWARF_VERSION); Asm->EOL("Dwarf Version");
2519     
2520     EmitReference("info_begin", Unit->getID());
2521     Asm->EOL("Offset of Compilation Unit Info");
2522
2523     Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Size of Address");
2524
2525     Asm->EmitInt8(0); Asm->EOL("Size of Segment Descriptor");
2526
2527     Asm->EmitInt16(0);  Asm->EOL("Pad (1)");
2528     Asm->EmitInt16(0);  Asm->EOL("Pad (2)");
2529
2530     // Range 1
2531     EmitReference("text_begin", 0); Asm->EOL("Address");
2532     EmitDifference("text_end", 0, "text_begin", 0, true); Asm->EOL("Length");
2533
2534     Asm->EmitInt32(0); Asm->EOL("EOM (1)");
2535     Asm->EmitInt32(0); Asm->EOL("EOM (2)");
2536   #endif
2537     
2538     Asm->EOL();
2539   }
2540
2541   /// EmitDebugRanges - Emit visible names into a debug ranges section.
2542   ///
2543   void EmitDebugRanges() {
2544     // Start the dwarf ranges section.
2545     Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
2546     
2547     Asm->EOL();
2548   }
2549
2550   /// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
2551   ///
2552   void EmitDebugMacInfo() {
2553     // Start the dwarf macinfo section.
2554     Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
2555     
2556     Asm->EOL();
2557   }
2558
2559   /// ConstructCompileUnitDIEs - Create a compile unit DIE for each source and
2560   /// header file.
2561   void ConstructCompileUnitDIEs() {
2562     const UniqueVector<CompileUnitDesc *> CUW = MMI->getCompileUnits();
2563     
2564     for (unsigned i = 1, N = CUW.size(); i <= N; ++i) {
2565       unsigned ID = MMI->RecordSource(CUW[i]);
2566       CompileUnit *Unit = NewCompileUnit(CUW[i], ID);
2567       CompileUnits.push_back(Unit);
2568     }
2569   }
2570
2571   /// ConstructGlobalDIEs - Create DIEs for each of the externally visible
2572   /// global variables.
2573   void ConstructGlobalDIEs() {
2574     std::vector<GlobalVariableDesc *> GlobalVariables =
2575         MMI->getAnchoredDescriptors<GlobalVariableDesc>(*M);
2576     
2577     for (unsigned i = 0, N = GlobalVariables.size(); i < N; ++i) {
2578       GlobalVariableDesc *GVD = GlobalVariables[i];
2579       NewGlobalVariable(GVD);
2580     }
2581   }
2582
2583   /// ConstructSubprogramDIEs - Create DIEs for each of the externally visible
2584   /// subprograms.
2585   void ConstructSubprogramDIEs() {
2586     std::vector<SubprogramDesc *> Subprograms =
2587         MMI->getAnchoredDescriptors<SubprogramDesc>(*M);
2588     
2589     for (unsigned i = 0, N = Subprograms.size(); i < N; ++i) {
2590       SubprogramDesc *SPD = Subprograms[i];
2591       NewSubprogram(SPD);
2592     }
2593   }
2594
2595 public:
2596   //===--------------------------------------------------------------------===//
2597   // Main entry points.
2598   //
2599   DwarfDebug(std::ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
2600   : Dwarf(OS, A, T, "dbg")
2601   , CompileUnits()
2602   , AbbreviationsSet(InitAbbreviationsSetSize)
2603   , Abbreviations()
2604   , ValuesSet(InitValuesSetSize)
2605   , Values()
2606   , StringPool()
2607   , DescToUnitMap()
2608   , SectionMap()
2609   , SectionSourceLines()
2610   , didInitial(false)
2611   , shouldEmit(false)
2612   {
2613   }
2614   virtual ~DwarfDebug() {
2615     for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i)
2616       delete CompileUnits[i];
2617     for (unsigned j = 0, M = Values.size(); j < M; ++j)
2618       delete Values[j];
2619   }
2620
2621   /// SetModuleInfo - Set machine module information when it's known that pass
2622   /// manager has created it.  Set by the target AsmPrinter.
2623   void SetModuleInfo(MachineModuleInfo *mmi) {
2624     // Make sure initial declarations are made.
2625     if (!MMI && mmi->hasDebugInfo()) {
2626       MMI = mmi;
2627       shouldEmit = true;
2628       
2629       // Emit initial sections
2630       EmitInitial();
2631     
2632       // Create all the compile unit DIEs.
2633       ConstructCompileUnitDIEs();
2634       
2635       // Create DIEs for each of the externally visible global variables.
2636       ConstructGlobalDIEs();
2637
2638       // Create DIEs for each of the externally visible subprograms.
2639       ConstructSubprogramDIEs();
2640       
2641       // Prime section data.
2642       SectionMap.insert(TAI->getTextSection());
2643     }
2644   }
2645
2646   /// BeginModule - Emit all Dwarf sections that should come prior to the
2647   /// content.
2648   void BeginModule(Module *M) {
2649     this->M = M;
2650     
2651     if (!ShouldEmitDwarf()) return;
2652   }
2653
2654   /// EndModule - Emit all Dwarf sections that should come after the content.
2655   ///
2656   void EndModule() {
2657     if (!ShouldEmitDwarf()) return;
2658     
2659     // Standard sections final addresses.
2660     Asm->SwitchToTextSection(TAI->getTextSection());
2661     EmitLabel("text_end", 0);
2662     Asm->SwitchToDataSection(TAI->getDataSection());
2663     EmitLabel("data_end", 0);
2664     
2665     // End text sections.
2666     for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
2667       Asm->SwitchToTextSection(SectionMap[i].c_str());
2668       EmitLabel("section_end", i);
2669     }
2670
2671     // Emit common frame information.
2672     EmitCommonDebugFrame();
2673
2674     // Emit function debug frame information
2675     for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(),
2676            E = DebugFrames.end(); I != E; ++I)
2677       EmitFunctionDebugFrame(*I);
2678
2679     // Compute DIE offsets and sizes.
2680     SizeAndOffsets();
2681     
2682     // Emit all the DIEs into a debug info section
2683     EmitDebugInfo();
2684     
2685     // Corresponding abbreviations into a abbrev section.
2686     EmitAbbreviations();
2687     
2688     // Emit source line correspondence into a debug line section.
2689     EmitDebugLines();
2690     
2691     // Emit info into a debug pubnames section.
2692     EmitDebugPubNames();
2693     
2694     // Emit info into a debug str section.
2695     EmitDebugStr();
2696     
2697     // Emit info into a debug loc section.
2698     EmitDebugLoc();
2699     
2700     // Emit info into a debug aranges section.
2701     EmitDebugARanges();
2702     
2703     // Emit info into a debug ranges section.
2704     EmitDebugRanges();
2705     
2706     // Emit info into a debug macinfo section.
2707     EmitDebugMacInfo();
2708   }
2709
2710   /// BeginFunction - Gather pre-function debug information.  Assumes being 
2711   /// emitted immediately after the function entry point.
2712   void BeginFunction(MachineFunction *MF) {
2713     this->MF = MF;
2714     
2715     if (!ShouldEmitDwarf()) return;
2716
2717     // Begin accumulating function debug information.
2718     MMI->BeginFunction(MF);
2719     
2720     // Assumes in correct section after the entry point.
2721     EmitLabel("func_begin", ++SubprogramCount);
2722   }
2723   
2724   /// EndFunction - Gather and emit post-function debug information.
2725   ///
2726   void EndFunction() {
2727     if (!ShouldEmitDwarf()) return;
2728     
2729     // Define end label for subprogram.
2730     EmitLabel("func_end", SubprogramCount);
2731       
2732     // Get function line info.
2733     const std::vector<SourceLineInfo> &LineInfos = MMI->getSourceLines();
2734
2735     if (!LineInfos.empty()) {
2736       // Get section line info.
2737       unsigned ID = SectionMap.insert(Asm->CurrentSection);
2738       if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID);
2739       std::vector<SourceLineInfo> &SectionLineInfos = SectionSourceLines[ID-1];
2740       // Append the function info to section info.
2741       SectionLineInfos.insert(SectionLineInfos.end(),
2742                               LineInfos.begin(), LineInfos.end());
2743     }
2744     
2745     // Construct scopes for subprogram.
2746     ConstructRootScope(MMI->getRootScope());
2747
2748     DebugFrames.push_back(FunctionDebugFrameInfo(SubprogramCount,
2749                                                  MMI->getFrameMoves()));
2750   }
2751 };
2752
2753 //===----------------------------------------------------------------------===//
2754 /// DwarfException - Emits Dwarf exception handling directives. 
2755 ///
2756 class DwarfException : public Dwarf  {
2757
2758 private:
2759   struct FunctionEHFrameInfo {
2760     std::string FnName;
2761     unsigned Number;
2762     unsigned PersonalityIndex;
2763     bool hasCalls;
2764     bool hasLandingPads;
2765     std::vector<MachineMove> Moves;
2766
2767     FunctionEHFrameInfo(const std::string &FN, unsigned Num, unsigned P,
2768                         bool hC, bool hL,
2769                         const std::vector<MachineMove> &M):
2770       FnName(FN), Number(Num), PersonalityIndex(P),
2771       hasCalls(hC), hasLandingPads(hL), Moves(M) { }
2772   };
2773
2774   std::vector<FunctionEHFrameInfo> EHFrames;
2775     
2776   /// shouldEmit - Flag to indicate if debug information should be emitted.
2777   ///
2778   bool shouldEmit;
2779   
2780   /// EmitCommonEHFrame - Emit the common eh unwind frame.
2781   ///
2782   void EmitCommonEHFrame(const Function *Personality, unsigned Index) {
2783     // Size and sign of stack growth.
2784     int stackGrowth =
2785         Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2786           TargetFrameInfo::StackGrowsUp ?
2787         TD->getPointerSize() : -TD->getPointerSize();
2788
2789     // Begin eh frame section.
2790     Asm->SwitchToTextSection(TAI->getDwarfEHFrameSection());
2791     O << "EH_frame" << Index << ":\n";
2792     EmitLabel("section_eh_frame", Index);
2793
2794     // Define base labels.
2795     EmitLabel("eh_frame_common", Index);
2796     
2797     // Define the eh frame length.
2798     EmitDifference("eh_frame_common_end", Index,
2799                    "eh_frame_common_begin", Index, true);
2800     Asm->EOL("Length of Common Information Entry");
2801
2802     // EH frame header.
2803     EmitLabel("eh_frame_common_begin", Index);
2804     Asm->EmitInt32((int)0);
2805     Asm->EOL("CIE Identifier Tag");
2806     Asm->EmitInt8(DW_CIE_VERSION);
2807     Asm->EOL("CIE Version");
2808     
2809     // The personality presence indicates that language specific information
2810     // will show up in the eh frame.
2811     Asm->EmitString(Personality ? "zPLR" : "zR");
2812     Asm->EOL("CIE Augmentation");
2813     
2814     // Round out reader.
2815     Asm->EmitULEB128Bytes(1);
2816     Asm->EOL("CIE Code Alignment Factor");
2817     Asm->EmitSLEB128Bytes(stackGrowth);
2818     Asm->EOL("CIE Data Alignment Factor");   
2819     Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister()));
2820     Asm->EOL("CIE RA Column");
2821     
2822     // If there is a personality, we need to indicate the functions location.
2823     if (Personality) {
2824       Asm->EmitULEB128Bytes(7);
2825       Asm->EOL("Augmentation Size");
2826
2827       if (TAI->getNeedsIndirectEncoding())
2828         Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4 | DW_EH_PE_indirect);
2829       else
2830         Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
2831
2832       Asm->EOL("Personality (pcrel sdata4 indirect)");
2833       
2834       PrintRelDirective();
2835       O << TAI->getPersonalityPrefix();
2836       Asm->EmitExternalGlobal((const GlobalVariable *)(Personality));
2837       O << TAI->getPersonalitySuffix();
2838       O << "-" << TAI->getPCSymbol();
2839       Asm->EOL("Personality");
2840
2841       Asm->EmitULEB128Bytes(DW_EH_PE_pcrel);
2842       Asm->EOL("LSDA Encoding (pcrel)");
2843       Asm->EmitULEB128Bytes(DW_EH_PE_pcrel);
2844       Asm->EOL("FDE Encoding (pcrel)");
2845    } else {
2846       Asm->EmitULEB128Bytes(1);
2847       Asm->EOL("Augmentation Size");
2848       Asm->EmitULEB128Bytes(DW_EH_PE_pcrel);
2849       Asm->EOL("FDE Encoding (pcrel)");
2850     }
2851
2852     // Indicate locations of general callee saved registers in frame.
2853     std::vector<MachineMove> Moves;
2854     RI->getInitialFrameState(Moves);
2855     EmitFrameMoves(NULL, 0, Moves);
2856
2857     Asm->EmitAlignment(2);
2858     EmitLabel("eh_frame_common_end", Index);
2859     
2860     Asm->EOL();
2861   }
2862   
2863   /// EmitEHFrame - Emit function exception frame information.
2864   ///
2865   void EmitEHFrame(const FunctionEHFrameInfo &EHFrameInfo) {
2866     Asm->SwitchToTextSection(TAI->getDwarfEHFrameSection());
2867
2868     // Externally visible entry into the functions eh frame info.
2869     if (const char *GlobalDirective = TAI->getGlobalDirective())
2870       O << GlobalDirective << EHFrameInfo.FnName << "\n";
2871     
2872     // If there are no calls then you can't unwind.
2873     if (!EHFrameInfo.hasCalls) { 
2874       O << EHFrameInfo.FnName << " = 0\n";
2875     } else {
2876       O << EHFrameInfo.FnName << ":\n";
2877       
2878       // EH frame header.
2879       EmitDifference("eh_frame_end", EHFrameInfo.Number,
2880                      "eh_frame_begin", EHFrameInfo.Number, true);
2881       Asm->EOL("Length of Frame Information Entry");
2882       
2883       EmitLabel("eh_frame_begin", EHFrameInfo.Number);
2884
2885       EmitSectionOffset("eh_frame_begin", "eh_frame_common",
2886                         EHFrameInfo.Number, EHFrameInfo.PersonalityIndex,
2887                         true, true);
2888       Asm->EOL("FDE CIE offset");
2889
2890       EmitReference("eh_func_begin", EHFrameInfo.Number, true);
2891       Asm->EOL("FDE initial location");
2892       EmitDifference("eh_func_end", EHFrameInfo.Number,
2893                      "eh_func_begin", EHFrameInfo.Number);
2894       Asm->EOL("FDE address range");
2895       
2896       // If there is a personality and landing pads then point to the language
2897       // specific data area in the exception table.
2898       if (EHFrameInfo.PersonalityIndex) {
2899         Asm->EmitULEB128Bytes(4);
2900         Asm->EOL("Augmentation size");
2901         
2902         if (EHFrameInfo.hasLandingPads) {
2903           EmitReference("exception", EHFrameInfo.Number, true);
2904         } else if (TD->getPointerSize() == 8) {
2905           Asm->EmitInt64((int)0);
2906         } else {
2907           Asm->EmitInt32((int)0);
2908         }
2909         Asm->EOL("Language Specific Data Area");
2910       } else {
2911         Asm->EmitULEB128Bytes(0);
2912         Asm->EOL("Augmentation size");
2913       }
2914       
2915       // Indicate locations of function specific  callee saved registers in
2916       // frame.
2917       EmitFrameMoves("eh_func_begin", EHFrameInfo.Number, EHFrameInfo.Moves);
2918       
2919       Asm->EmitAlignment(2);
2920       EmitLabel("eh_frame_end", EHFrameInfo.Number);
2921     }
2922     
2923     if (const char *UsedDirective = TAI->getUsedDirective())
2924       O << UsedDirective << EHFrameInfo.FnName << "\n\n";
2925   }
2926
2927   /// EmitExceptionTable - Emit landing pads and actions.
2928   ///
2929   /// The general organization of the table is complex, but the basic concepts
2930   /// are easy.  First there is a header which describes the location and
2931   /// organization of the three components that follow.
2932   ///  1. The landing pad site information describes the range of code covered
2933   ///     by the try.  In our case it's an accumulation of the ranges covered
2934   ///     by the invokes in the try.  There is also a reference to the landing
2935   ///     pad that handles the exception once processed.  Finally an index into
2936   ///     the actions table.
2937   ///  2. The action table, in our case, is composed of pairs of type ids
2938   ///     and next action offset.  Starting with the action index from the
2939   ///     landing pad site, each type Id is checked for a match to the current
2940   ///     exception.  If it matches then the exception and type id are passed
2941   ///     on to the landing pad.  Otherwise the next action is looked up.  This
2942   ///     chain is terminated with a next action of zero.  If no type id is
2943   ///     found the the frame is unwound and handling continues.
2944   ///  3. Type id table contains references to all the C++ typeinfo for all
2945   ///     catches in the function.  This tables is reversed indexed base 1.
2946
2947   /// SharedTypeIds - How many leading type ids two landing pads have in common.
2948   static unsigned SharedTypeIds(const LandingPadInfo *L,
2949                                 const LandingPadInfo *R) {
2950     const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
2951     unsigned LSize = LIds.size(), RSize = RIds.size();
2952     unsigned MinSize = LSize < RSize ? LSize : RSize;
2953     unsigned Count = 0;
2954
2955     for (; Count != MinSize; ++Count)
2956       if (LIds[Count] != RIds[Count])
2957         return Count;
2958
2959     return Count;
2960   }
2961
2962   /// PadLT - Order landing pads lexicographically by type id.
2963   static bool PadLT(const LandingPadInfo *L, const LandingPadInfo *R) {
2964     const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
2965     unsigned LSize = LIds.size(), RSize = RIds.size();
2966     unsigned MinSize = LSize < RSize ? LSize : RSize;
2967
2968     for (unsigned i = 0; i != MinSize; ++i)
2969       if (LIds[i] != RIds[i])
2970         return LIds[i] < RIds[i];
2971
2972     return LSize < RSize;
2973   }
2974
2975   struct KeyInfo {
2976     static inline unsigned getEmptyKey() { return -1U; }
2977     static inline unsigned getTombstoneKey() { return -2U; }
2978     static unsigned getHashValue(const unsigned &Key) { return Key; }
2979     static bool isEqual(unsigned LHS, unsigned RHS) { return LHS == RHS; }
2980     static bool isPod() { return true; }
2981   };
2982
2983   /// ActionEntry - Structure describing an entry in the actions table.
2984   struct ActionEntry {
2985     int ValueForTypeID; // The value to write - may not be equal to the type id.
2986     int NextAction;
2987     struct ActionEntry *Previous;
2988   };
2989
2990   /// PadRange - Structure holding a try-range and the associated landing pad.
2991   struct PadRange {
2992     // The index of the landing pad.
2993     unsigned PadIndex;
2994     // The index of the begin and end labels in the landing pad's label lists.
2995     unsigned RangeIndex;
2996   };
2997
2998   typedef DenseMap<unsigned, PadRange, KeyInfo> RangeMapType;
2999
3000   /// CallSiteEntry - Structure describing an entry in the call-site table.
3001   struct CallSiteEntry {
3002     unsigned BeginLabel; // zero indicates the start of the function.
3003     unsigned EndLabel;   // zero indicates the end of the function.
3004     unsigned PadLabel;   // zero indicates that there is no landing pad.
3005     unsigned Action;
3006   };
3007
3008   void EmitExceptionTable() {
3009     // Map all labels and get rid of any dead landing pads.
3010     MMI->TidyLandingPads();
3011
3012     const std::vector<GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
3013     const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
3014     const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
3015     if (PadInfos.empty()) return;
3016
3017     // Sort the landing pads in order of their type ids.  This is used to fold
3018     // duplicate actions.
3019     SmallVector<const LandingPadInfo *, 64> LandingPads;
3020     LandingPads.reserve(PadInfos.size());
3021     for (unsigned i = 0, N = PadInfos.size(); i != N; ++i)
3022       LandingPads.push_back(&PadInfos[i]);
3023     std::sort(LandingPads.begin(), LandingPads.end(), PadLT);
3024
3025     // Negative type ids index into FilterIds, positive type ids index into
3026     // TypeInfos.  The value written for a positive type id is just the type
3027     // id itself.  For a negative type id, however, the value written is the
3028     // (negative) byte offset of the corresponding FilterIds entry.  The byte
3029     // offset is usually equal to the type id, because the FilterIds entries
3030     // are written using a variable width encoding which outputs one byte per
3031     // entry as long as the value written is not too large, but can differ.
3032     // This kind of complication does not occur for positive type ids because
3033     // type infos are output using a fixed width encoding.
3034     // FilterOffsets[i] holds the byte offset corresponding to FilterIds[i].
3035     SmallVector<int, 16> FilterOffsets;
3036     FilterOffsets.reserve(FilterIds.size());
3037     int Offset = -1;
3038     for(std::vector<unsigned>::const_iterator I = FilterIds.begin(),
3039         E = FilterIds.end(); I != E; ++I) {
3040       FilterOffsets.push_back(Offset);
3041       Offset -= Asm->SizeULEB128(*I);
3042     }
3043
3044     // Compute the actions table and gather the first action index for each
3045     // landing pad site.
3046     SmallVector<ActionEntry, 32> Actions;
3047     SmallVector<unsigned, 64> FirstActions;
3048     FirstActions.reserve(LandingPads.size());
3049
3050     int FirstAction = 0;
3051     unsigned SizeActions = 0;
3052     for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
3053       const LandingPadInfo *LP = LandingPads[i];
3054       const std::vector<int> &TypeIds = LP->TypeIds;
3055       const unsigned NumShared = i ? SharedTypeIds(LP, LandingPads[i-1]) : 0;
3056       unsigned SizeSiteActions = 0;
3057
3058       if (NumShared < TypeIds.size()) {
3059         unsigned SizeAction = 0;
3060         ActionEntry *PrevAction = 0;
3061
3062         if (NumShared) {
3063           const unsigned SizePrevIds = LandingPads[i-1]->TypeIds.size();
3064           assert(Actions.size());
3065           PrevAction = &Actions.back();
3066           SizeAction = Asm->SizeSLEB128(PrevAction->NextAction) +
3067             Asm->SizeSLEB128(PrevAction->ValueForTypeID);
3068           for (unsigned j = NumShared; j != SizePrevIds; ++j) {
3069             SizeAction -= Asm->SizeSLEB128(PrevAction->ValueForTypeID);
3070             SizeAction += -PrevAction->NextAction;
3071             PrevAction = PrevAction->Previous;
3072           }
3073         }
3074
3075         // Compute the actions.
3076         for (unsigned I = NumShared, M = TypeIds.size(); I != M; ++I) {
3077           int TypeID = TypeIds[I];
3078           assert(-1-TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
3079           int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
3080           unsigned SizeTypeID = Asm->SizeSLEB128(ValueForTypeID);
3081
3082           int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0;
3083           SizeAction = SizeTypeID + Asm->SizeSLEB128(NextAction);
3084           SizeSiteActions += SizeAction;
3085
3086           ActionEntry Action = {ValueForTypeID, NextAction, PrevAction};
3087           Actions.push_back(Action);
3088
3089           PrevAction = &Actions.back();
3090         }
3091
3092         // Record the first action of the landing pad site.
3093         FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
3094       } // else identical - re-use previous FirstAction
3095
3096       FirstActions.push_back(FirstAction);
3097
3098       // Compute this sites contribution to size.
3099       SizeActions += SizeSiteActions;
3100     }
3101
3102     // Compute the call-site table.  Entries must be ordered by address.
3103     SmallVector<CallSiteEntry, 64> CallSites;
3104
3105     RangeMapType PadMap;
3106     for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
3107       const LandingPadInfo *LandingPad = LandingPads[i];
3108       for (unsigned j=0, E = LandingPad->BeginLabels.size(); j != E; ++j) {
3109         unsigned BeginLabel = LandingPad->BeginLabels[j];
3110         assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
3111         PadRange P = { i, j };
3112         PadMap[BeginLabel] = P;
3113       }
3114     }
3115
3116     bool MayThrow = false;
3117     unsigned LastLabel = 0;
3118     const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
3119     for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
3120          I != E; ++I) {
3121       for (MachineBasicBlock::const_iterator MI = I->begin(), E = I->end();
3122            MI != E; ++MI) {
3123         if (MI->getOpcode() != TargetInstrInfo::LABEL) {
3124           MayThrow |= TII->isCall(MI->getOpcode());
3125           continue;
3126         }
3127
3128         unsigned BeginLabel = MI->getOperand(0).getImmedValue();
3129         assert(BeginLabel && "Invalid label!");
3130
3131         if (BeginLabel == LastLabel)
3132           MayThrow = false;
3133
3134         RangeMapType::iterator L = PadMap.find(BeginLabel);
3135
3136         if (L == PadMap.end())
3137           continue;
3138
3139         PadRange P = L->second;
3140         const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
3141
3142         assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
3143                "Inconsistent landing pad map!");
3144
3145         // If some instruction between the previous try-range and this one may
3146         // throw, create a call-site entry with no landing pad for the region
3147         // between the try-ranges.
3148         if (MayThrow) {
3149           CallSiteEntry Site = {LastLabel, BeginLabel, 0, 0};
3150           CallSites.push_back(Site);
3151         }
3152
3153         LastLabel = LandingPad->EndLabels[P.RangeIndex];
3154         CallSiteEntry Site = {BeginLabel, LastLabel,
3155           LandingPad->LandingPadLabel, FirstActions[P.PadIndex]};
3156
3157         assert(Site.BeginLabel && Site.EndLabel && Site.PadLabel &&
3158                "Invalid landing pad!");
3159
3160         // Try to merge with the previous call-site.
3161         if (CallSites.size()) {
3162           CallSiteEntry &Prev = CallSites[CallSites.size()-1];
3163           if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
3164             // Extend the range of the previous entry.
3165             Prev.EndLabel = Site.EndLabel;
3166             continue;
3167           }
3168         }
3169
3170         // Otherwise, create a new call-site.
3171         CallSites.push_back(Site);
3172       }
3173     }
3174     // If some instruction between the previous try-range and the end of the
3175     // function may throw, create a call-site entry with no landing pad for the
3176     // region following the try-range.
3177     if (MayThrow) {
3178       CallSiteEntry Site = {LastLabel, 0, 0, 0};
3179       CallSites.push_back(Site);
3180     }
3181
3182     // Final tallies.
3183     unsigned SizeSites = CallSites.size() * (sizeof(int32_t) + // Site start.
3184                                              sizeof(int32_t) + // Site length.
3185                                              sizeof(int32_t)); // Landing pad.
3186     for (unsigned i = 0, e = CallSites.size(); i < e; ++i)
3187       SizeSites += Asm->SizeULEB128(CallSites[i].Action);
3188
3189     unsigned SizeTypes = TypeInfos.size() * TD->getPointerSize();
3190
3191     unsigned TypeOffset = sizeof(int8_t) + // Call site format
3192                           Asm->SizeULEB128(SizeSites) + // Call-site table length
3193                           SizeSites + SizeActions + SizeTypes;
3194
3195     unsigned TotalSize = sizeof(int8_t) + // LPStart format
3196                          sizeof(int8_t) + // TType format
3197                          Asm->SizeULEB128(TypeOffset) + // TType base offset
3198                          TypeOffset;
3199
3200     unsigned SizeAlign = (4 - TotalSize) & 3;
3201
3202     // Begin the exception table.
3203     Asm->SwitchToDataSection(TAI->getDwarfExceptionSection());
3204     O << "GCC_except_table" << SubprogramCount << ":\n";
3205     Asm->EmitAlignment(2);
3206     for (unsigned i = 0; i != SizeAlign; ++i) {
3207       Asm->EmitInt8(0);
3208       Asm->EOL("Padding");
3209     }
3210     EmitLabel("exception", SubprogramCount);
3211
3212     // Emit the header.
3213     Asm->EmitInt8(DW_EH_PE_omit);
3214     Asm->EOL("LPStart format (DW_EH_PE_omit)");
3215     Asm->EmitInt8(DW_EH_PE_absptr);
3216     Asm->EOL("TType format (DW_EH_PE_absptr)");
3217     Asm->EmitULEB128Bytes(TypeOffset);
3218     Asm->EOL("TType base offset");
3219     Asm->EmitInt8(DW_EH_PE_udata4);
3220     Asm->EOL("Call site format (DW_EH_PE_udata4)");
3221     Asm->EmitULEB128Bytes(SizeSites);
3222     Asm->EOL("Call-site table length");
3223
3224     // Emit the landing pad site information.
3225     for (unsigned i = 0; i < CallSites.size(); ++i) {
3226       CallSiteEntry &S = CallSites[i];
3227       const char *BeginTag;
3228       unsigned BeginNumber;
3229
3230       if (!S.BeginLabel) {
3231         BeginTag = "eh_func_begin";
3232         BeginNumber = SubprogramCount;
3233       } else {
3234         BeginTag = "label";
3235         BeginNumber = S.BeginLabel;
3236       }
3237
3238       EmitSectionOffset(BeginTag, "eh_func_begin", BeginNumber, SubprogramCount,
3239                         false, true);
3240       Asm->EOL("Region start");
3241
3242       if (!S.EndLabel) {
3243         EmitDifference("eh_func_end", SubprogramCount, BeginTag, BeginNumber);
3244       } else {
3245         EmitDifference("label", S.EndLabel, BeginTag, BeginNumber);
3246       }
3247       Asm->EOL("Region length");
3248
3249       if (!S.PadLabel) {
3250         if (TD->getPointerSize() == sizeof(int32_t))
3251           Asm->EmitInt32(0);
3252         else
3253           Asm->EmitInt64(0);
3254       } else {
3255         EmitSectionOffset("label", "eh_func_begin", S.PadLabel, SubprogramCount,
3256                           false, true);
3257       }
3258       Asm->EOL("Landing pad");
3259
3260       Asm->EmitULEB128Bytes(S.Action);
3261       Asm->EOL("Action");
3262     }
3263
3264     // Emit the actions.
3265     for (unsigned I = 0, N = Actions.size(); I != N; ++I) {
3266       ActionEntry &Action = Actions[I];
3267
3268       Asm->EmitSLEB128Bytes(Action.ValueForTypeID);
3269       Asm->EOL("TypeInfo index");
3270       Asm->EmitSLEB128Bytes(Action.NextAction);
3271       Asm->EOL("Next action");
3272     }
3273
3274     // Emit the type ids.
3275     for (unsigned M = TypeInfos.size(); M; --M) {
3276       GlobalVariable *GV = TypeInfos[M - 1];
3277
3278       PrintRelDirective();
3279
3280       if (GV)
3281         O << Asm->getGlobalLinkName(GV);
3282       else
3283         O << "0";
3284
3285       Asm->EOL("TypeInfo");
3286     }
3287
3288     // Emit the filter typeids.
3289     for (unsigned j = 0, M = FilterIds.size(); j < M; ++j) {
3290       unsigned TypeID = FilterIds[j];
3291       Asm->EmitULEB128Bytes(TypeID);
3292       Asm->EOL("Filter TypeInfo index");
3293     }
3294
3295     Asm->EmitAlignment(2);
3296   }
3297
3298 public:
3299   //===--------------------------------------------------------------------===//
3300   // Main entry points.
3301   //
3302   DwarfException(std::ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
3303   : Dwarf(OS, A, T, "eh")
3304   , shouldEmit(false)
3305   {}
3306   
3307   virtual ~DwarfException() {}
3308
3309   /// SetModuleInfo - Set machine module information when it's known that pass
3310   /// manager has created it.  Set by the target AsmPrinter.
3311   void SetModuleInfo(MachineModuleInfo *mmi) {
3312     MMI = mmi;
3313   }
3314
3315   /// BeginModule - Emit all exception information that should come prior to the
3316   /// content.
3317   void BeginModule(Module *M) {
3318     this->M = M;
3319   }
3320
3321   /// EndModule - Emit all exception information that should come after the
3322   /// content.
3323   void EndModule() {
3324     if (!shouldEmit) return;
3325
3326     const std::vector<Function *> Personalities = MMI->getPersonalities();
3327     for (unsigned i =0; i < Personalities.size(); ++i)
3328       EmitCommonEHFrame(Personalities[i], i);
3329
3330     for (std::vector<FunctionEHFrameInfo>::iterator I = EHFrames.begin(),
3331            E = EHFrames.end(); I != E; ++I)
3332       EmitEHFrame(*I);
3333   }
3334
3335   /// BeginFunction - Gather pre-function exception information.  Assumes being 
3336   /// emitted immediately after the function entry point.
3337   void BeginFunction(MachineFunction *MF) {
3338     this->MF = MF;
3339     
3340     if (MMI &&
3341         ExceptionHandling &&
3342         TAI->doesSupportExceptionHandling()) {
3343       shouldEmit = true;
3344       // Assumes in correct section after the entry point.
3345       EmitLabel("eh_func_begin", ++SubprogramCount);
3346     }
3347   }
3348
3349   /// EndFunction - Gather and emit post-function exception information.
3350   ///
3351   void EndFunction() {
3352     if (!shouldEmit) return;
3353
3354     EmitLabel("eh_func_end", SubprogramCount);
3355     EmitExceptionTable();
3356
3357     // Save EH frame information
3358     EHFrames.
3359       push_back(FunctionEHFrameInfo(getAsm()->getCurrentFunctionEHName(MF),
3360                                     SubprogramCount,
3361                                     MMI->getPersonalityIndex(),
3362                                     MF->getFrameInfo()->hasCalls(),
3363                                     !MMI->getLandingPads().empty(),
3364                                     MMI->getFrameMoves()));
3365   }
3366 };
3367
3368 } // End of namespace llvm
3369
3370 //===----------------------------------------------------------------------===//
3371
3372 /// Emit - Print the abbreviation using the specified Dwarf writer.
3373 ///
3374 void DIEAbbrev::Emit(const DwarfDebug &DD) const {
3375   // Emit its Dwarf tag type.
3376   DD.getAsm()->EmitULEB128Bytes(Tag);
3377   DD.getAsm()->EOL(TagString(Tag));
3378   
3379   // Emit whether it has children DIEs.
3380   DD.getAsm()->EmitULEB128Bytes(ChildrenFlag);
3381   DD.getAsm()->EOL(ChildrenString(ChildrenFlag));
3382   
3383   // For each attribute description.
3384   for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3385     const DIEAbbrevData &AttrData = Data[i];
3386     
3387     // Emit attribute type.
3388     DD.getAsm()->EmitULEB128Bytes(AttrData.getAttribute());
3389     DD.getAsm()->EOL(AttributeString(AttrData.getAttribute()));
3390     
3391     // Emit form type.
3392     DD.getAsm()->EmitULEB128Bytes(AttrData.getForm());
3393     DD.getAsm()->EOL(FormEncodingString(AttrData.getForm()));
3394   }
3395
3396   // Mark end of abbreviation.
3397   DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(1)");
3398   DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(2)");
3399 }
3400
3401 #ifndef NDEBUG
3402 void DIEAbbrev::print(std::ostream &O) {
3403   O << "Abbreviation @"
3404     << std::hex << (intptr_t)this << std::dec
3405     << "  "
3406     << TagString(Tag)
3407     << " "
3408     << ChildrenString(ChildrenFlag)
3409     << "\n";
3410   
3411   for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3412     O << "  "
3413       << AttributeString(Data[i].getAttribute())
3414       << "  "
3415       << FormEncodingString(Data[i].getForm())
3416       << "\n";
3417   }
3418 }
3419 void DIEAbbrev::dump() { print(cerr); }
3420 #endif
3421
3422 //===----------------------------------------------------------------------===//
3423
3424 #ifndef NDEBUG
3425 void DIEValue::dump() {
3426   print(cerr);
3427 }
3428 #endif
3429
3430 //===----------------------------------------------------------------------===//
3431
3432 /// EmitValue - Emit integer of appropriate size.
3433 ///
3434 void DIEInteger::EmitValue(DwarfDebug &DD, unsigned Form) {
3435   switch (Form) {
3436   case DW_FORM_flag:  // Fall thru
3437   case DW_FORM_ref1:  // Fall thru
3438   case DW_FORM_data1: DD.getAsm()->EmitInt8(Integer);         break;
3439   case DW_FORM_ref2:  // Fall thru
3440   case DW_FORM_data2: DD.getAsm()->EmitInt16(Integer);        break;
3441   case DW_FORM_ref4:  // Fall thru
3442   case DW_FORM_data4: DD.getAsm()->EmitInt32(Integer);        break;
3443   case DW_FORM_ref8:  // Fall thru
3444   case DW_FORM_data8: DD.getAsm()->EmitInt64(Integer);        break;
3445   case DW_FORM_udata: DD.getAsm()->EmitULEB128Bytes(Integer); break;
3446   case DW_FORM_sdata: DD.getAsm()->EmitSLEB128Bytes(Integer); break;
3447   default: assert(0 && "DIE Value form not supported yet");   break;
3448   }
3449 }
3450
3451 /// SizeOf - Determine size of integer value in bytes.
3452 ///
3453 unsigned DIEInteger::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3454   switch (Form) {
3455   case DW_FORM_flag:  // Fall thru
3456   case DW_FORM_ref1:  // Fall thru
3457   case DW_FORM_data1: return sizeof(int8_t);
3458   case DW_FORM_ref2:  // Fall thru
3459   case DW_FORM_data2: return sizeof(int16_t);
3460   case DW_FORM_ref4:  // Fall thru
3461   case DW_FORM_data4: return sizeof(int32_t);
3462   case DW_FORM_ref8:  // Fall thru
3463   case DW_FORM_data8: return sizeof(int64_t);
3464   case DW_FORM_udata: return DD.getAsm()->SizeULEB128(Integer);
3465   case DW_FORM_sdata: return DD.getAsm()->SizeSLEB128(Integer);
3466   default: assert(0 && "DIE Value form not supported yet"); break;
3467   }
3468   return 0;
3469 }
3470
3471 //===----------------------------------------------------------------------===//
3472
3473 /// EmitValue - Emit string value.
3474 ///
3475 void DIEString::EmitValue(DwarfDebug &DD, unsigned Form) {
3476   DD.getAsm()->EmitString(String);
3477 }
3478
3479 //===----------------------------------------------------------------------===//
3480
3481 /// EmitValue - Emit label value.
3482 ///
3483 void DIEDwarfLabel::EmitValue(DwarfDebug &DD, unsigned Form) {
3484   DD.EmitReference(Label, false, Form == DW_FORM_data4);
3485 }
3486
3487 /// SizeOf - Determine size of label value in bytes.
3488 ///
3489 unsigned DIEDwarfLabel::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3490   return DD.getTargetData()->getPointerSize();
3491 }
3492
3493 //===----------------------------------------------------------------------===//
3494
3495 /// EmitValue - Emit label value.
3496 ///
3497 void DIEObjectLabel::EmitValue(DwarfDebug &DD, unsigned Form) {
3498   DD.EmitReference(Label, false, Form == DW_FORM_data4);
3499 }
3500
3501 /// SizeOf - Determine size of label value in bytes.
3502 ///
3503 unsigned DIEObjectLabel::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3504   return DD.getTargetData()->getPointerSize();
3505 }
3506     
3507 //===----------------------------------------------------------------------===//
3508
3509 /// EmitValue - Emit delta value.
3510 ///
3511 void DIEDelta::EmitValue(DwarfDebug &DD, unsigned Form) {
3512   bool IsSmall = Form == DW_FORM_data4;
3513   DD.EmitDifference(LabelHi, LabelLo, IsSmall);
3514 }
3515
3516 /// SizeOf - Determine size of delta value in bytes.
3517 ///
3518 unsigned DIEDelta::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3519   if (Form == DW_FORM_data4) return 4;
3520   return DD.getTargetData()->getPointerSize();
3521 }
3522
3523 //===----------------------------------------------------------------------===//
3524
3525 /// EmitValue - Emit debug information entry offset.
3526 ///
3527 void DIEntry::EmitValue(DwarfDebug &DD, unsigned Form) {
3528   DD.getAsm()->EmitInt32(Entry->getOffset());
3529 }
3530     
3531 //===----------------------------------------------------------------------===//
3532
3533 /// ComputeSize - calculate the size of the block.
3534 ///
3535 unsigned DIEBlock::ComputeSize(DwarfDebug &DD) {
3536   if (!Size) {
3537     const std::vector<DIEAbbrevData> &AbbrevData = Abbrev.getData();
3538     
3539     for (unsigned i = 0, N = Values.size(); i < N; ++i) {
3540       Size += Values[i]->SizeOf(DD, AbbrevData[i].getForm());
3541     }
3542   }
3543   return Size;
3544 }
3545
3546 /// EmitValue - Emit block data.
3547 ///
3548 void DIEBlock::EmitValue(DwarfDebug &DD, unsigned Form) {
3549   switch (Form) {
3550   case DW_FORM_block1: DD.getAsm()->EmitInt8(Size);         break;
3551   case DW_FORM_block2: DD.getAsm()->EmitInt16(Size);        break;
3552   case DW_FORM_block4: DD.getAsm()->EmitInt32(Size);        break;
3553   case DW_FORM_block:  DD.getAsm()->EmitULEB128Bytes(Size); break;
3554   default: assert(0 && "Improper form for block");          break;
3555   }
3556   
3557   const std::vector<DIEAbbrevData> &AbbrevData = Abbrev.getData();
3558
3559   for (unsigned i = 0, N = Values.size(); i < N; ++i) {
3560     DD.getAsm()->EOL();
3561     Values[i]->EmitValue(DD, AbbrevData[i].getForm());
3562   }
3563 }
3564
3565 /// SizeOf - Determine size of block data in bytes.
3566 ///
3567 unsigned DIEBlock::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3568   switch (Form) {
3569   case DW_FORM_block1: return Size + sizeof(int8_t);
3570   case DW_FORM_block2: return Size + sizeof(int16_t);
3571   case DW_FORM_block4: return Size + sizeof(int32_t);
3572   case DW_FORM_block: return Size + DD.getAsm()->SizeULEB128(Size);
3573   default: assert(0 && "Improper form for block"); break;
3574   }
3575   return 0;
3576 }
3577
3578 //===----------------------------------------------------------------------===//
3579 /// DIE Implementation
3580
3581 DIE::~DIE() {
3582   for (unsigned i = 0, N = Children.size(); i < N; ++i)
3583     delete Children[i];
3584 }
3585   
3586 /// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
3587 ///
3588 void DIE::AddSiblingOffset() {
3589   DIEInteger *DI = new DIEInteger(0);
3590   Values.insert(Values.begin(), DI);
3591   Abbrev.AddFirstAttribute(DW_AT_sibling, DW_FORM_ref4);
3592 }
3593
3594 /// Profile - Used to gather unique data for the value folding set.
3595 ///
3596 void DIE::Profile(FoldingSetNodeID &ID) {
3597   Abbrev.Profile(ID);
3598   
3599   for (unsigned i = 0, N = Children.size(); i < N; ++i)
3600     ID.AddPointer(Children[i]);
3601
3602   for (unsigned j = 0, M = Values.size(); j < M; ++j)
3603     ID.AddPointer(Values[j]);
3604 }
3605
3606 #ifndef NDEBUG
3607 void DIE::print(std::ostream &O, unsigned IncIndent) {
3608   static unsigned IndentCount = 0;
3609   IndentCount += IncIndent;
3610   const std::string Indent(IndentCount, ' ');
3611   bool isBlock = Abbrev.getTag() == 0;
3612   
3613   if (!isBlock) {
3614     O << Indent
3615       << "Die: "
3616       << "0x" << std::hex << (intptr_t)this << std::dec
3617       << ", Offset: " << Offset
3618       << ", Size: " << Size
3619       << "\n"; 
3620     
3621     O << Indent
3622       << TagString(Abbrev.getTag())
3623       << " "
3624       << ChildrenString(Abbrev.getChildrenFlag());
3625   } else {
3626     O << "Size: " << Size;
3627   }
3628   O << "\n";
3629
3630   const std::vector<DIEAbbrevData> &Data = Abbrev.getData();
3631   
3632   IndentCount += 2;
3633   for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3634     O << Indent;
3635     if (!isBlock) {
3636       O << AttributeString(Data[i].getAttribute());
3637     } else {
3638       O << "Blk[" << i << "]";
3639     }
3640     O <<  "  "
3641       << FormEncodingString(Data[i].getForm())
3642       << " ";
3643     Values[i]->print(O);
3644     O << "\n";
3645   }
3646   IndentCount -= 2;
3647
3648   for (unsigned j = 0, M = Children.size(); j < M; ++j) {
3649     Children[j]->print(O, 4);
3650   }
3651   
3652   if (!isBlock) O << "\n";
3653   IndentCount -= IncIndent;
3654 }
3655
3656 void DIE::dump() {
3657   print(cerr);
3658 }
3659 #endif
3660
3661 //===----------------------------------------------------------------------===//
3662 /// DwarfWriter Implementation
3663 ///
3664
3665 DwarfWriter::DwarfWriter(std::ostream &OS, AsmPrinter *A,
3666                          const TargetAsmInfo *T) {
3667   DE = new DwarfException(OS, A, T);
3668   DD = new DwarfDebug(OS, A, T);
3669 }
3670
3671 DwarfWriter::~DwarfWriter() {
3672   delete DE;
3673   delete DD;
3674 }
3675
3676 /// SetModuleInfo - Set machine module info when it's known that pass manager
3677 /// has created it.  Set by the target AsmPrinter.
3678 void DwarfWriter::SetModuleInfo(MachineModuleInfo *MMI) {
3679   DD->SetModuleInfo(MMI);
3680   DE->SetModuleInfo(MMI);
3681 }
3682
3683 /// BeginModule - Emit all Dwarf sections that should come prior to the
3684 /// content.
3685 void DwarfWriter::BeginModule(Module *M) {
3686   DE->BeginModule(M);
3687   DD->BeginModule(M);
3688 }
3689
3690 /// EndModule - Emit all Dwarf sections that should come after the content.
3691 ///
3692 void DwarfWriter::EndModule() {
3693   DE->EndModule();
3694   DD->EndModule();
3695 }
3696
3697 /// BeginFunction - Gather pre-function debug information.  Assumes being 
3698 /// emitted immediately after the function entry point.
3699 void DwarfWriter::BeginFunction(MachineFunction *MF) {
3700   DE->BeginFunction(MF);
3701   DD->BeginFunction(MF);
3702 }
3703
3704 /// EndFunction - Gather and emit post-function debug information.
3705 ///
3706 void DwarfWriter::EndFunction() {
3707   DD->EndFunction();
3708   DE->EndFunction();
3709   
3710   if (MachineModuleInfo *MMI = DD->getMMI() ? DD->getMMI() : DE->getMMI()) {
3711     // Clear function debug information.
3712     MMI->EndFunction();
3713   }
3714 }