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