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