blob: 5d6acc30ba812041e1e2640aeec47775383a6420 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- llvm/CodeGen/DwarfWriter.cpp - Dwarf Framework ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf info into asm files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/DwarfWriter.h"
15
16#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/FoldingSet.h"
18#include "llvm/ADT/StringExtras.h"
19#include "llvm/ADT/UniqueVector.h"
20#include "llvm/Module.h"
21#include "llvm/Type.h"
22#include "llvm/CodeGen/AsmPrinter.h"
23#include "llvm/CodeGen/MachineModuleInfo.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineLocation.h"
26#include "llvm/Support/Debug.h"
27#include "llvm/Support/Dwarf.h"
28#include "llvm/Support/CommandLine.h"
29#include "llvm/Support/DataTypes.h"
30#include "llvm/Support/Mangler.h"
Dan Gohman80bbde72007-09-24 21:32:18 +000031#include "llvm/System/Path.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000033#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include "llvm/Target/TargetData.h"
35#include "llvm/Target/TargetFrameInfo.h"
36#include "llvm/Target/TargetInstrInfo.h"
37#include "llvm/Target/TargetMachine.h"
38#include "llvm/Target/TargetOptions.h"
39#include <ostream>
40#include <string>
41using namespace llvm;
42using namespace llvm::dwarf;
43
44namespace llvm {
aslc200b112008-08-16 12:57:46 +000045
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046//===----------------------------------------------------------------------===//
47
48/// Configuration values for initial hash set sizes (log2).
49///
50static const unsigned InitDiesSetSize = 9; // 512
51static const unsigned InitAbbreviationsSetSize = 9; // 512
52static const unsigned InitValuesSetSize = 9; // 512
53
54//===----------------------------------------------------------------------===//
55/// Forward declarations.
56///
57class DIE;
58class DIEValue;
59
60//===----------------------------------------------------------------------===//
61/// DWLabel - Labels are used to track locations in the assembler file.
aslc200b112008-08-16 12:57:46 +000062/// Labels appear in the form @verbatim <prefix><Tag><Number> @endverbatim,
63/// where the tag is a category of label (Ex. location) and number is a value
Reid Spencer37c7cea2007-08-05 20:06:04 +000064/// unique in that category.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065class DWLabel {
66public:
67 /// Tag - Label category tag. Should always be a staticly declared C string.
68 ///
69 const char *Tag;
aslc200b112008-08-16 12:57:46 +000070
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071 /// Number - Value to make label unique.
72 ///
73 unsigned Number;
74
75 DWLabel(const char *T, unsigned N) : Tag(T), Number(N) {}
aslc200b112008-08-16 12:57:46 +000076
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077 void Profile(FoldingSetNodeID &ID) const {
78 ID.AddString(std::string(Tag));
79 ID.AddInteger(Number);
80 }
aslc200b112008-08-16 12:57:46 +000081
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082#ifndef NDEBUG
83 void print(std::ostream *O) const {
84 if (O) print(*O);
85 }
86 void print(std::ostream &O) const {
87 O << "." << Tag;
88 if (Number) O << Number;
89 }
90#endif
91};
92
93//===----------------------------------------------------------------------===//
94/// DIEAbbrevData - Dwarf abbreviation data, describes the one attribute of a
95/// Dwarf abbreviation.
96class DIEAbbrevData {
97private:
98 /// Attribute - Dwarf attribute code.
99 ///
100 unsigned Attribute;
aslc200b112008-08-16 12:57:46 +0000101
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102 /// Form - Dwarf form code.
aslc200b112008-08-16 12:57:46 +0000103 ///
104 unsigned Form;
105
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106public:
107 DIEAbbrevData(unsigned A, unsigned F)
108 : Attribute(A)
109 , Form(F)
110 {}
aslc200b112008-08-16 12:57:46 +0000111
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112 // Accessors.
113 unsigned getAttribute() const { return Attribute; }
114 unsigned getForm() const { return Form; }
115
116 /// Profile - Used to gather unique data for the abbreviation folding set.
117 ///
118 void Profile(FoldingSetNodeID &ID)const {
119 ID.AddInteger(Attribute);
120 ID.AddInteger(Form);
121 }
122};
123
124//===----------------------------------------------------------------------===//
125/// DIEAbbrev - Dwarf abbreviation, describes the organization of a debug
126/// information object.
127class DIEAbbrev : public FoldingSetNode {
128private:
129 /// Tag - Dwarf tag code.
130 ///
131 unsigned Tag;
aslc200b112008-08-16 12:57:46 +0000132
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 /// Unique number for node.
134 ///
135 unsigned Number;
136
137 /// ChildrenFlag - Dwarf children flag.
138 ///
139 unsigned ChildrenFlag;
140
141 /// Data - Raw data bytes for abbreviation.
142 ///
Owen Anderson88dd6232008-06-24 21:44:59 +0000143 SmallVector<DIEAbbrevData, 8> Data;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000144
145public:
146
147 DIEAbbrev(unsigned T, unsigned C)
148 : Tag(T)
149 , ChildrenFlag(C)
150 , Data()
151 {}
152 ~DIEAbbrev() {}
aslc200b112008-08-16 12:57:46 +0000153
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 // Accessors.
155 unsigned getTag() const { return Tag; }
156 unsigned getNumber() const { return Number; }
157 unsigned getChildrenFlag() const { return ChildrenFlag; }
Owen Anderson88dd6232008-06-24 21:44:59 +0000158 const SmallVector<DIEAbbrevData, 8> &getData() const { return Data; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159 void setTag(unsigned T) { Tag = T; }
160 void setChildrenFlag(unsigned CF) { ChildrenFlag = CF; }
161 void setNumber(unsigned N) { Number = N; }
aslc200b112008-08-16 12:57:46 +0000162
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 /// AddAttribute - Adds another set of attribute information to the
164 /// abbreviation.
165 void AddAttribute(unsigned Attribute, unsigned Form) {
166 Data.push_back(DIEAbbrevData(Attribute, Form));
167 }
aslc200b112008-08-16 12:57:46 +0000168
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169 /// AddFirstAttribute - Adds a set of attribute information to the front
170 /// of the abbreviation.
171 void AddFirstAttribute(unsigned Attribute, unsigned Form) {
172 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form));
173 }
aslc200b112008-08-16 12:57:46 +0000174
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 /// Profile - Used to gather unique data for the abbreviation folding set.
176 ///
177 void Profile(FoldingSetNodeID &ID) {
178 ID.AddInteger(Tag);
179 ID.AddInteger(ChildrenFlag);
aslc200b112008-08-16 12:57:46 +0000180
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 // For each attribute description.
182 for (unsigned i = 0, N = Data.size(); i < N; ++i)
183 Data[i].Profile(ID);
184 }
aslc200b112008-08-16 12:57:46 +0000185
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 /// Emit - Print the abbreviation using the specified Dwarf writer.
187 ///
aslc200b112008-08-16 12:57:46 +0000188 void Emit(const DwarfDebug &DD) const;
189
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190#ifndef NDEBUG
191 void print(std::ostream *O) {
192 if (O) print(*O);
193 }
194 void print(std::ostream &O);
195 void dump();
196#endif
197};
198
199//===----------------------------------------------------------------------===//
200/// DIE - A structured debug information entry. Has an abbreviation which
201/// describes it's organization.
202class DIE : public FoldingSetNode {
203protected:
204 /// Abbrev - Buffer for constructing abbreviation.
205 ///
206 DIEAbbrev Abbrev;
aslc200b112008-08-16 12:57:46 +0000207
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 /// Offset - Offset in debug info section.
209 ///
210 unsigned Offset;
aslc200b112008-08-16 12:57:46 +0000211
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 /// Size - Size of instance + children.
213 ///
214 unsigned Size;
aslc200b112008-08-16 12:57:46 +0000215
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 /// Children DIEs.
217 ///
218 std::vector<DIE *> Children;
aslc200b112008-08-16 12:57:46 +0000219
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220 /// Attributes values.
221 ///
Owen Anderson88dd6232008-06-24 21:44:59 +0000222 SmallVector<DIEValue*, 32> Values;
aslc200b112008-08-16 12:57:46 +0000223
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224public:
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000225 explicit DIE(unsigned Tag)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 : Abbrev(Tag, DW_CHILDREN_no)
227 , Offset(0)
228 , Size(0)
229 , Children()
230 , Values()
231 {}
232 virtual ~DIE();
aslc200b112008-08-16 12:57:46 +0000233
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 // Accessors.
235 DIEAbbrev &getAbbrev() { return Abbrev; }
236 unsigned getAbbrevNumber() const {
237 return Abbrev.getNumber();
238 }
239 unsigned getTag() const { return Abbrev.getTag(); }
240 unsigned getOffset() const { return Offset; }
241 unsigned getSize() const { return Size; }
242 const std::vector<DIE *> &getChildren() const { return Children; }
Owen Anderson88dd6232008-06-24 21:44:59 +0000243 SmallVector<DIEValue*, 32> &getValues() { return Values; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 void setTag(unsigned Tag) { Abbrev.setTag(Tag); }
245 void setOffset(unsigned O) { Offset = O; }
246 void setSize(unsigned S) { Size = S; }
aslc200b112008-08-16 12:57:46 +0000247
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000248 /// AddValue - Add a value and attributes to a DIE.
249 ///
250 void AddValue(unsigned Attribute, unsigned Form, DIEValue *Value) {
251 Abbrev.AddAttribute(Attribute, Form);
252 Values.push_back(Value);
253 }
aslc200b112008-08-16 12:57:46 +0000254
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 /// SiblingOffset - Return the offset of the debug information entry's
256 /// sibling.
257 unsigned SiblingOffset() const { return Offset + Size; }
aslc200b112008-08-16 12:57:46 +0000258
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259 /// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
260 ///
261 void AddSiblingOffset();
262
263 /// AddChild - Add a child to the DIE.
264 ///
265 void AddChild(DIE *Child) {
266 Abbrev.setChildrenFlag(DW_CHILDREN_yes);
267 Children.push_back(Child);
268 }
aslc200b112008-08-16 12:57:46 +0000269
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 /// Detach - Detaches objects connected to it after copying.
271 ///
272 void Detach() {
273 Children.clear();
274 }
aslc200b112008-08-16 12:57:46 +0000275
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276 /// Profile - Used to gather unique data for the value folding set.
277 ///
278 void Profile(FoldingSetNodeID &ID) ;
aslc200b112008-08-16 12:57:46 +0000279
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000280#ifndef NDEBUG
281 void print(std::ostream *O, unsigned IncIndent = 0) {
282 if (O) print(*O, IncIndent);
283 }
284 void print(std::ostream &O, unsigned IncIndent = 0);
285 void dump();
286#endif
287};
288
289//===----------------------------------------------------------------------===//
290/// DIEValue - A debug information entry value.
291///
292class DIEValue : public FoldingSetNode {
293public:
294 enum {
295 isInteger,
296 isString,
297 isLabel,
298 isAsIsLabel,
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000299 isSectionOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300 isDelta,
301 isEntry,
302 isBlock
303 };
aslc200b112008-08-16 12:57:46 +0000304
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000305 /// Type - Type of data stored in the value.
306 ///
307 unsigned Type;
aslc200b112008-08-16 12:57:46 +0000308
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000309 explicit DIEValue(unsigned T)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000310 : Type(T)
311 {}
312 virtual ~DIEValue() {}
aslc200b112008-08-16 12:57:46 +0000313
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000314 // Accessors
315 unsigned getType() const { return Type; }
aslc200b112008-08-16 12:57:46 +0000316
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 // Implement isa/cast/dyncast.
318 static bool classof(const DIEValue *) { return true; }
aslc200b112008-08-16 12:57:46 +0000319
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000320 /// EmitValue - Emit value via the Dwarf writer.
321 ///
322 virtual void EmitValue(DwarfDebug &DD, unsigned Form) = 0;
aslc200b112008-08-16 12:57:46 +0000323
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000324 /// SizeOf - Return the size of a value in bytes.
325 ///
326 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const = 0;
aslc200b112008-08-16 12:57:46 +0000327
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 /// Profile - Used to gather unique data for the value folding set.
329 ///
330 virtual void Profile(FoldingSetNodeID &ID) = 0;
aslc200b112008-08-16 12:57:46 +0000331
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000332#ifndef NDEBUG
333 void print(std::ostream *O) {
334 if (O) print(*O);
335 }
336 virtual void print(std::ostream &O) = 0;
337 void dump();
338#endif
339};
340
341//===----------------------------------------------------------------------===//
342/// DWInteger - An integer value DIE.
aslc200b112008-08-16 12:57:46 +0000343///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344class DIEInteger : public DIEValue {
345private:
346 uint64_t Integer;
aslc200b112008-08-16 12:57:46 +0000347
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000348public:
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000349 explicit DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350
351 // Implement isa/cast/dyncast.
352 static bool classof(const DIEInteger *) { return true; }
353 static bool classof(const DIEValue *I) { return I->Type == isInteger; }
aslc200b112008-08-16 12:57:46 +0000354
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355 /// BestForm - Choose the best form for integer.
356 ///
357 static unsigned BestForm(bool IsSigned, uint64_t Integer) {
358 if (IsSigned) {
359 if ((char)Integer == (signed)Integer) return DW_FORM_data1;
360 if ((short)Integer == (signed)Integer) return DW_FORM_data2;
361 if ((int)Integer == (signed)Integer) return DW_FORM_data4;
362 } else {
363 if ((unsigned char)Integer == Integer) return DW_FORM_data1;
364 if ((unsigned short)Integer == Integer) return DW_FORM_data2;
365 if ((unsigned int)Integer == Integer) return DW_FORM_data4;
366 }
367 return DW_FORM_data8;
368 }
aslc200b112008-08-16 12:57:46 +0000369
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370 /// EmitValue - Emit integer of appropriate size.
371 ///
372 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000373
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374 /// SizeOf - Determine size of integer value in bytes.
375 ///
376 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000377
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378 /// Profile - Used to gather unique data for the value folding set.
379 ///
380 static void Profile(FoldingSetNodeID &ID, unsigned Integer) {
381 ID.AddInteger(isInteger);
382 ID.AddInteger(Integer);
383 }
384 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Integer); }
aslc200b112008-08-16 12:57:46 +0000385
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386#ifndef NDEBUG
387 virtual void print(std::ostream &O) {
388 O << "Int: " << (int64_t)Integer
389 << " 0x" << std::hex << Integer << std::dec;
390 }
391#endif
392};
393
394//===----------------------------------------------------------------------===//
395/// DIEString - A string value DIE.
aslc200b112008-08-16 12:57:46 +0000396///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000397class DIEString : public DIEValue {
398public:
399 const std::string String;
aslc200b112008-08-16 12:57:46 +0000400
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000401 explicit DIEString(const std::string &S) : DIEValue(isString), String(S) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402
403 // Implement isa/cast/dyncast.
404 static bool classof(const DIEString *) { return true; }
405 static bool classof(const DIEValue *S) { return S->Type == isString; }
aslc200b112008-08-16 12:57:46 +0000406
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407 /// EmitValue - Emit string value.
408 ///
409 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000410
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 /// SizeOf - Determine size of string value in bytes.
412 ///
413 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const {
414 return String.size() + sizeof(char); // sizeof('\0');
415 }
aslc200b112008-08-16 12:57:46 +0000416
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 /// Profile - Used to gather unique data for the value folding set.
418 ///
419 static void Profile(FoldingSetNodeID &ID, const std::string &String) {
420 ID.AddInteger(isString);
421 ID.AddString(String);
422 }
423 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, String); }
aslc200b112008-08-16 12:57:46 +0000424
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425#ifndef NDEBUG
426 virtual void print(std::ostream &O) {
427 O << "Str: \"" << String << "\"";
428 }
429#endif
430};
431
432//===----------------------------------------------------------------------===//
433/// DIEDwarfLabel - A Dwarf internal label expression DIE.
434//
435class DIEDwarfLabel : public DIEValue {
436public:
437
438 const DWLabel Label;
aslc200b112008-08-16 12:57:46 +0000439
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000440 explicit DIEDwarfLabel(const DWLabel &L) : DIEValue(isLabel), Label(L) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441
442 // Implement isa/cast/dyncast.
443 static bool classof(const DIEDwarfLabel *) { return true; }
444 static bool classof(const DIEValue *L) { return L->Type == isLabel; }
aslc200b112008-08-16 12:57:46 +0000445
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446 /// EmitValue - Emit label value.
447 ///
448 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000449
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 /// SizeOf - Determine size of label value in bytes.
451 ///
452 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000453
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000454 /// Profile - Used to gather unique data for the value folding set.
455 ///
456 static void Profile(FoldingSetNodeID &ID, const DWLabel &Label) {
457 ID.AddInteger(isLabel);
458 Label.Profile(ID);
459 }
460 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label); }
aslc200b112008-08-16 12:57:46 +0000461
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462#ifndef NDEBUG
463 virtual void print(std::ostream &O) {
464 O << "Lbl: ";
465 Label.print(O);
466 }
467#endif
468};
469
470
471//===----------------------------------------------------------------------===//
472/// DIEObjectLabel - A label to an object in code or data.
473//
474class DIEObjectLabel : public DIEValue {
475public:
476 const std::string Label;
aslc200b112008-08-16 12:57:46 +0000477
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000478 explicit DIEObjectLabel(const std::string &L)
479 : DIEValue(isAsIsLabel), Label(L) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480
481 // Implement isa/cast/dyncast.
482 static bool classof(const DIEObjectLabel *) { return true; }
483 static bool classof(const DIEValue *L) { return L->Type == isAsIsLabel; }
aslc200b112008-08-16 12:57:46 +0000484
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000485 /// EmitValue - Emit label value.
486 ///
487 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000488
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 /// SizeOf - Determine size of label value in bytes.
490 ///
491 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000492
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 /// Profile - Used to gather unique data for the value folding set.
494 ///
495 static void Profile(FoldingSetNodeID &ID, const std::string &Label) {
496 ID.AddInteger(isAsIsLabel);
497 ID.AddString(Label);
498 }
499 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label); }
500
501#ifndef NDEBUG
502 virtual void print(std::ostream &O) {
503 O << "Obj: " << Label;
504 }
505#endif
506};
507
508//===----------------------------------------------------------------------===//
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000509/// DIESectionOffset - A section offset DIE.
510//
511class DIESectionOffset : public DIEValue {
512public:
513 const DWLabel Label;
514 const DWLabel Section;
515 bool IsEH : 1;
516 bool UseSet : 1;
aslc200b112008-08-16 12:57:46 +0000517
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000518 DIESectionOffset(const DWLabel &Lab, const DWLabel &Sec,
519 bool isEH = false, bool useSet = true)
520 : DIEValue(isSectionOffset), Label(Lab), Section(Sec),
521 IsEH(isEH), UseSet(useSet) {}
522
523 // Implement isa/cast/dyncast.
524 static bool classof(const DIESectionOffset *) { return true; }
525 static bool classof(const DIEValue *D) { return D->Type == isSectionOffset; }
aslc200b112008-08-16 12:57:46 +0000526
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000527 /// EmitValue - Emit section offset.
528 ///
529 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000530
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000531 /// SizeOf - Determine size of section offset value in bytes.
532 ///
533 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000534
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000535 /// Profile - Used to gather unique data for the value folding set.
536 ///
537 static void Profile(FoldingSetNodeID &ID, const DWLabel &Label,
538 const DWLabel &Section) {
539 ID.AddInteger(isSectionOffset);
540 Label.Profile(ID);
541 Section.Profile(ID);
542 // IsEH and UseSet are specific to the Label/Section that we will emit
543 // the offset for; so Label/Section are enough for uniqueness.
544 }
545 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label, Section); }
546
547#ifndef NDEBUG
548 virtual void print(std::ostream &O) {
549 O << "Off: ";
550 Label.print(O);
551 O << "-";
552 Section.print(O);
553 O << "-" << IsEH << "-" << UseSet;
554 }
555#endif
556};
557
558//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000559/// DIEDelta - A simple label difference DIE.
aslc200b112008-08-16 12:57:46 +0000560///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561class DIEDelta : public DIEValue {
562public:
563 const DWLabel LabelHi;
564 const DWLabel LabelLo;
aslc200b112008-08-16 12:57:46 +0000565
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566 DIEDelta(const DWLabel &Hi, const DWLabel &Lo)
567 : DIEValue(isDelta), LabelHi(Hi), LabelLo(Lo) {}
568
569 // Implement isa/cast/dyncast.
570 static bool classof(const DIEDelta *) { return true; }
571 static bool classof(const DIEValue *D) { return D->Type == isDelta; }
aslc200b112008-08-16 12:57:46 +0000572
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573 /// EmitValue - Emit delta value.
574 ///
575 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000576
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 /// SizeOf - Determine size of delta value in bytes.
578 ///
579 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000580
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 /// Profile - Used to gather unique data for the value folding set.
582 ///
583 static void Profile(FoldingSetNodeID &ID, const DWLabel &LabelHi,
584 const DWLabel &LabelLo) {
585 ID.AddInteger(isDelta);
586 LabelHi.Profile(ID);
587 LabelLo.Profile(ID);
588 }
589 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, LabelHi, LabelLo); }
590
591#ifndef NDEBUG
592 virtual void print(std::ostream &O) {
593 O << "Del: ";
594 LabelHi.print(O);
595 O << "-";
596 LabelLo.print(O);
597 }
598#endif
599};
600
601//===----------------------------------------------------------------------===//
602/// DIEntry - A pointer to another debug information entry. An instance of this
603/// class can also be used as a proxy for a debug information entry not yet
604/// defined (ie. types.)
605class DIEntry : public DIEValue {
606public:
607 DIE *Entry;
aslc200b112008-08-16 12:57:46 +0000608
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000609 explicit DIEntry(DIE *E) : DIEValue(isEntry), Entry(E) {}
aslc200b112008-08-16 12:57:46 +0000610
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611 // Implement isa/cast/dyncast.
612 static bool classof(const DIEntry *) { return true; }
613 static bool classof(const DIEValue *E) { return E->Type == isEntry; }
aslc200b112008-08-16 12:57:46 +0000614
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615 /// EmitValue - Emit debug information entry offset.
616 ///
617 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000618
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 /// SizeOf - Determine size of debug information entry in bytes.
620 ///
621 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const {
622 return sizeof(int32_t);
623 }
aslc200b112008-08-16 12:57:46 +0000624
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 /// Profile - Used to gather unique data for the value folding set.
626 ///
627 static void Profile(FoldingSetNodeID &ID, DIE *Entry) {
628 ID.AddInteger(isEntry);
629 ID.AddPointer(Entry);
630 }
631 virtual void Profile(FoldingSetNodeID &ID) {
632 ID.AddInteger(isEntry);
aslc200b112008-08-16 12:57:46 +0000633
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634 if (Entry) {
635 ID.AddPointer(Entry);
636 } else {
637 ID.AddPointer(this);
638 }
639 }
aslc200b112008-08-16 12:57:46 +0000640
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641#ifndef NDEBUG
642 virtual void print(std::ostream &O) {
643 O << "Die: 0x" << std::hex << (intptr_t)Entry << std::dec;
644 }
645#endif
646};
647
648//===----------------------------------------------------------------------===//
649/// DIEBlock - A block of values. Primarily used for location expressions.
650//
651class DIEBlock : public DIEValue, public DIE {
652public:
653 unsigned Size; // Size in bytes excluding size header.
aslc200b112008-08-16 12:57:46 +0000654
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655 DIEBlock()
656 : DIEValue(isBlock)
657 , DIE(0)
658 , Size(0)
659 {}
660 ~DIEBlock() {
661 }
aslc200b112008-08-16 12:57:46 +0000662
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 // Implement isa/cast/dyncast.
664 static bool classof(const DIEBlock *) { return true; }
665 static bool classof(const DIEValue *E) { return E->Type == isBlock; }
aslc200b112008-08-16 12:57:46 +0000666
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667 /// ComputeSize - calculate the size of the block.
668 ///
669 unsigned ComputeSize(DwarfDebug &DD);
aslc200b112008-08-16 12:57:46 +0000670
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000671 /// BestForm - Choose the best form for data.
672 ///
673 unsigned BestForm() const {
674 if ((unsigned char)Size == Size) return DW_FORM_block1;
675 if ((unsigned short)Size == Size) return DW_FORM_block2;
676 if ((unsigned int)Size == Size) return DW_FORM_block4;
677 return DW_FORM_block;
678 }
679
680 /// EmitValue - Emit block data.
681 ///
682 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000683
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000684 /// SizeOf - Determine size of block data in bytes.
685 ///
686 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000687
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688
689 /// Profile - Used to gather unique data for the value folding set.
690 ///
691 virtual void Profile(FoldingSetNodeID &ID) {
692 ID.AddInteger(isBlock);
693 DIE::Profile(ID);
694 }
aslc200b112008-08-16 12:57:46 +0000695
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696#ifndef NDEBUG
697 virtual void print(std::ostream &O) {
698 O << "Blk: ";
699 DIE::print(O, 5);
700 }
701#endif
702};
703
704//===----------------------------------------------------------------------===//
705/// CompileUnit - This dwarf writer support class manages information associate
706/// with a source file.
707class CompileUnit {
708private:
709 /// Desc - Compile unit debug descriptor.
710 ///
711 CompileUnitDesc *Desc;
aslc200b112008-08-16 12:57:46 +0000712
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713 /// ID - File identifier for source.
714 ///
715 unsigned ID;
aslc200b112008-08-16 12:57:46 +0000716
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717 /// Die - Compile unit debug information entry.
718 ///
719 DIE *Die;
aslc200b112008-08-16 12:57:46 +0000720
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000721 /// DescToDieMap - Tracks the mapping of unit level debug informaton
722 /// descriptors to debug information entries.
723 std::map<DebugInfoDesc *, DIE *> DescToDieMap;
724
725 /// DescToDIEntryMap - Tracks the mapping of unit level debug informaton
726 /// descriptors to debug information entries using a DIEntry proxy.
727 std::map<DebugInfoDesc *, DIEntry *> DescToDIEntryMap;
728
729 /// Globals - A map of globally visible named entities for this unit.
730 ///
731 std::map<std::string, DIE *> Globals;
732
733 /// DiesSet - Used to uniquely define dies within the compile unit.
734 ///
735 FoldingSet<DIE> DiesSet;
aslc200b112008-08-16 12:57:46 +0000736
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000737 /// Dies - List of all dies in the compile unit.
738 ///
739 std::vector<DIE *> Dies;
aslc200b112008-08-16 12:57:46 +0000740
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741public:
742 CompileUnit(CompileUnitDesc *CUD, unsigned I, DIE *D)
743 : Desc(CUD)
744 , ID(I)
745 , Die(D)
746 , DescToDieMap()
747 , DescToDIEntryMap()
748 , Globals()
749 , DiesSet(InitDiesSetSize)
750 , Dies()
751 {}
aslc200b112008-08-16 12:57:46 +0000752
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000753 ~CompileUnit() {
754 delete Die;
aslc200b112008-08-16 12:57:46 +0000755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756 for (unsigned i = 0, N = Dies.size(); i < N; ++i)
757 delete Dies[i];
758 }
aslc200b112008-08-16 12:57:46 +0000759
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000760 // Accessors.
761 CompileUnitDesc *getDesc() const { return Desc; }
762 unsigned getID() const { return ID; }
763 DIE* getDie() const { return Die; }
764 std::map<std::string, DIE *> &getGlobals() { return Globals; }
765
766 /// hasContent - Return true if this compile unit has something to write out.
767 ///
768 bool hasContent() const {
769 return !Die->getChildren().empty();
770 }
771
772 /// AddGlobal - Add a new global entity to the compile unit.
773 ///
774 void AddGlobal(const std::string &Name, DIE *Die) {
775 Globals[Name] = Die;
776 }
aslc200b112008-08-16 12:57:46 +0000777
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 /// getDieMapSlotFor - Returns the debug information entry map slot for the
779 /// specified debug descriptor.
780 DIE *&getDieMapSlotFor(DebugInfoDesc *DID) {
781 return DescToDieMap[DID];
782 }
aslc200b112008-08-16 12:57:46 +0000783
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784 /// getDIEntrySlotFor - Returns the debug information entry proxy slot for the
785 /// specified debug descriptor.
786 DIEntry *&getDIEntrySlotFor(DebugInfoDesc *DID) {
787 return DescToDIEntryMap[DID];
788 }
aslc200b112008-08-16 12:57:46 +0000789
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000790 /// AddDie - Adds or interns the DIE to the compile unit.
791 ///
792 DIE *AddDie(DIE &Buffer) {
793 FoldingSetNodeID ID;
794 Buffer.Profile(ID);
795 void *Where;
796 DIE *Die = DiesSet.FindNodeOrInsertPos(ID, Where);
aslc200b112008-08-16 12:57:46 +0000797
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000798 if (!Die) {
799 Die = new DIE(Buffer);
800 DiesSet.InsertNode(Die, Where);
801 this->Die->AddChild(Die);
802 Buffer.Detach();
803 }
aslc200b112008-08-16 12:57:46 +0000804
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805 return Die;
806 }
807};
808
809//===----------------------------------------------------------------------===//
aslc200b112008-08-16 12:57:46 +0000810/// Dwarf - Emits general Dwarf directives.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811///
812class Dwarf {
813
814protected:
815
816 //===--------------------------------------------------------------------===//
817 // Core attributes used by the Dwarf writer.
818 //
aslc200b112008-08-16 12:57:46 +0000819
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000820 //
821 /// O - Stream to .s file.
822 ///
823 std::ostream &O;
824
825 /// Asm - Target of Dwarf emission.
826 ///
827 AsmPrinter *Asm;
aslc200b112008-08-16 12:57:46 +0000828
Bill Wendlingac9639d2008-07-01 23:34:48 +0000829 /// TAI - Target asm information.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000830 const TargetAsmInfo *TAI;
aslc200b112008-08-16 12:57:46 +0000831
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000832 /// TD - Target data.
833 const TargetData *TD;
aslc200b112008-08-16 12:57:46 +0000834
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000835 /// RI - Register Information.
Dan Gohman1e57df32008-02-10 18:45:23 +0000836 const TargetRegisterInfo *RI;
aslc200b112008-08-16 12:57:46 +0000837
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 /// M - Current module.
839 ///
840 Module *M;
aslc200b112008-08-16 12:57:46 +0000841
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842 /// MF - Current machine function.
843 ///
844 MachineFunction *MF;
aslc200b112008-08-16 12:57:46 +0000845
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000846 /// MMI - Collected machine module information.
847 ///
848 MachineModuleInfo *MMI;
aslc200b112008-08-16 12:57:46 +0000849
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850 /// SubprogramCount - The running count of functions being compiled.
851 ///
852 unsigned SubprogramCount;
aslc200b112008-08-16 12:57:46 +0000853
Chris Lattnerb3876c72007-09-24 03:35:37 +0000854 /// Flavor - A unique string indicating what dwarf producer this is, used to
855 /// unique labels.
856 const char * const Flavor;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000857
858 unsigned SetCounter;
Chris Lattnerb3876c72007-09-24 03:35:37 +0000859 Dwarf(std::ostream &OS, AsmPrinter *A, const TargetAsmInfo *T,
860 const char *flavor)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000861 : O(OS)
862 , Asm(A)
863 , TAI(T)
864 , TD(Asm->TM.getTargetData())
865 , RI(Asm->TM.getRegisterInfo())
866 , M(NULL)
867 , MF(NULL)
868 , MMI(NULL)
869 , SubprogramCount(0)
Chris Lattnerb3876c72007-09-24 03:35:37 +0000870 , Flavor(flavor)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 , SetCounter(1)
872 {
873 }
874
875public:
876
877 //===--------------------------------------------------------------------===//
878 // Accessors.
879 //
880 AsmPrinter *getAsm() const { return Asm; }
881 MachineModuleInfo *getMMI() const { return MMI; }
882 const TargetAsmInfo *getTargetAsmInfo() const { return TAI; }
Dan Gohmancfb72b22007-09-27 23:12:31 +0000883 const TargetData *getTargetData() const { return TD; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000885 void PrintRelDirective(bool Force32Bit = false, bool isInSection = false)
886 const {
887 if (isInSection && TAI->getDwarfSectionOffsetDirective())
888 O << TAI->getDwarfSectionOffsetDirective();
Dan Gohmancfb72b22007-09-27 23:12:31 +0000889 else if (Force32Bit || TD->getPointerSize() == sizeof(int32_t))
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000890 O << TAI->getData32bitsDirective();
891 else
892 O << TAI->getData64bitsDirective();
893 }
aslc200b112008-08-16 12:57:46 +0000894
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000895 /// PrintLabelName - Print label name in form used by Dwarf writer.
896 ///
897 void PrintLabelName(DWLabel Label) const {
898 PrintLabelName(Label.Tag, Label.Number);
899 }
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000900 void PrintLabelName(const char *Tag, unsigned Number) const {
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000901 O << TAI->getPrivateGlobalPrefix() << Tag;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000902 if (Number) O << Number;
903 }
aslc200b112008-08-16 12:57:46 +0000904
Chris Lattnerb3876c72007-09-24 03:35:37 +0000905 void PrintLabelName(const char *Tag, unsigned Number,
906 const char *Suffix) const {
907 O << TAI->getPrivateGlobalPrefix() << Tag;
908 if (Number) O << Number;
909 O << Suffix;
910 }
aslc200b112008-08-16 12:57:46 +0000911
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000912 /// EmitLabel - Emit location label for internal use by Dwarf.
913 ///
914 void EmitLabel(DWLabel Label) const {
915 EmitLabel(Label.Tag, Label.Number);
916 }
917 void EmitLabel(const char *Tag, unsigned Number) const {
918 PrintLabelName(Tag, Number);
919 O << ":\n";
920 }
aslc200b112008-08-16 12:57:46 +0000921
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000922 /// EmitReference - Emit a reference to a label.
923 ///
Dan Gohman4fd77742007-09-28 15:43:33 +0000924 void EmitReference(DWLabel Label, bool IsPCRelative = false,
925 bool Force32Bit = false) const {
926 EmitReference(Label.Tag, Label.Number, IsPCRelative, Force32Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927 }
928 void EmitReference(const char *Tag, unsigned Number,
Dan Gohman4fd77742007-09-28 15:43:33 +0000929 bool IsPCRelative = false, bool Force32Bit = false) const {
930 PrintRelDirective(Force32Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931 PrintLabelName(Tag, Number);
aslc200b112008-08-16 12:57:46 +0000932
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000933 if (IsPCRelative) O << "-" << TAI->getPCSymbol();
934 }
Dan Gohman4fd77742007-09-28 15:43:33 +0000935 void EmitReference(const std::string &Name, bool IsPCRelative = false,
936 bool Force32Bit = false) const {
937 PrintRelDirective(Force32Bit);
aslc200b112008-08-16 12:57:46 +0000938
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 O << Name;
aslc200b112008-08-16 12:57:46 +0000940
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000941 if (IsPCRelative) O << "-" << TAI->getPCSymbol();
942 }
943
944 /// EmitDifference - Emit the difference between two labels. Some
945 /// assemblers do not behave with absolute expressions with data directives,
946 /// so there is an option (needsSet) to use an intermediary set expression.
947 void EmitDifference(DWLabel LabelHi, DWLabel LabelLo,
948 bool IsSmall = false) {
949 EmitDifference(LabelHi.Tag, LabelHi.Number,
950 LabelLo.Tag, LabelLo.Number,
951 IsSmall);
952 }
953 void EmitDifference(const char *TagHi, unsigned NumberHi,
954 const char *TagLo, unsigned NumberLo,
955 bool IsSmall = false) {
956 if (TAI->needsSet()) {
957 O << "\t.set\t";
Chris Lattnerb3876c72007-09-24 03:35:37 +0000958 PrintLabelName("set", SetCounter, Flavor);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000959 O << ",";
960 PrintLabelName(TagHi, NumberHi);
961 O << "-";
962 PrintLabelName(TagLo, NumberLo);
963 O << "\n";
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000964
965 PrintRelDirective(IsSmall);
Chris Lattnerb3876c72007-09-24 03:35:37 +0000966 PrintLabelName("set", SetCounter, Flavor);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000967 ++SetCounter;
968 } else {
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000969 PrintRelDirective(IsSmall);
aslc200b112008-08-16 12:57:46 +0000970
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971 PrintLabelName(TagHi, NumberHi);
972 O << "-";
973 PrintLabelName(TagLo, NumberLo);
974 }
975 }
976
977 void EmitSectionOffset(const char* Label, const char* Section,
978 unsigned LabelNumber, unsigned SectionNumber,
Dale Johannesen0ebb2432008-03-26 23:31:39 +0000979 bool IsSmall = false, bool isEH = false,
980 bool useSet = true) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000981 bool printAbsolute = false;
Dale Johannesen0ebb2432008-03-26 23:31:39 +0000982 if (isEH)
983 printAbsolute = TAI->isAbsoluteEHSectionOffsets();
984 else
985 printAbsolute = TAI->isAbsoluteDebugSectionOffsets();
986
987 if (TAI->needsSet() && useSet) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000988 O << "\t.set\t";
Chris Lattnerb3876c72007-09-24 03:35:37 +0000989 PrintLabelName("set", SetCounter, Flavor);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000990 O << ",";
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000991 PrintLabelName(Label, LabelNumber);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000993 if (!printAbsolute) {
994 O << "-";
995 PrintLabelName(Section, SectionNumber);
aslc200b112008-08-16 12:57:46 +0000996 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000997 O << "\n";
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000998
999 PrintRelDirective(IsSmall);
aslc200b112008-08-16 12:57:46 +00001000
Chris Lattnerb3876c72007-09-24 03:35:37 +00001001 PrintLabelName("set", SetCounter, Flavor);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001002 ++SetCounter;
1003 } else {
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00001004 PrintRelDirective(IsSmall, true);
aslc200b112008-08-16 12:57:46 +00001005
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00001006 PrintLabelName(Label, LabelNumber);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001007
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 if (!printAbsolute) {
1009 O << "-";
1010 PrintLabelName(Section, SectionNumber);
1011 }
aslc200b112008-08-16 12:57:46 +00001012 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001013 }
aslc200b112008-08-16 12:57:46 +00001014
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001015 /// EmitFrameMoves - Emit frame instructions to describe the layout of the
1016 /// frame.
1017 void EmitFrameMoves(const char *BaseLabel, unsigned BaseLabelID,
Dale Johannesenf5a11532007-11-13 19:13:01 +00001018 const std::vector<MachineMove> &Moves, bool isEH) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019 int stackGrowth =
1020 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
1021 TargetFrameInfo::StackGrowsUp ?
Dan Gohmancfb72b22007-09-27 23:12:31 +00001022 TD->getPointerSize() : -TD->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001023 bool IsLocal = BaseLabel && strcmp(BaseLabel, "label") == 0;
1024
1025 for (unsigned i = 0, N = Moves.size(); i < N; ++i) {
1026 const MachineMove &Move = Moves[i];
1027 unsigned LabelID = Move.getLabelID();
aslc200b112008-08-16 12:57:46 +00001028
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001029 if (LabelID) {
1030 LabelID = MMI->MappedLabel(LabelID);
aslc200b112008-08-16 12:57:46 +00001031
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001032 // Throw out move if the label is invalid.
1033 if (!LabelID) continue;
1034 }
aslc200b112008-08-16 12:57:46 +00001035
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001036 const MachineLocation &Dst = Move.getDestination();
1037 const MachineLocation &Src = Move.getSource();
aslc200b112008-08-16 12:57:46 +00001038
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001039 // Advance row if new location.
1040 if (BaseLabel && LabelID && (BaseLabelID != LabelID || !IsLocal)) {
1041 Asm->EmitInt8(DW_CFA_advance_loc4);
1042 Asm->EOL("DW_CFA_advance_loc4");
1043 EmitDifference("label", LabelID, BaseLabel, BaseLabelID, true);
1044 Asm->EOL();
aslc200b112008-08-16 12:57:46 +00001045
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046 BaseLabelID = LabelID;
1047 BaseLabel = "label";
1048 IsLocal = true;
1049 }
aslc200b112008-08-16 12:57:46 +00001050
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 // If advancing cfa.
1052 if (Dst.isRegister() && Dst.getRegister() == MachineLocation::VirtualFP) {
1053 if (!Src.isRegister()) {
1054 if (Src.getRegister() == MachineLocation::VirtualFP) {
1055 Asm->EmitInt8(DW_CFA_def_cfa_offset);
1056 Asm->EOL("DW_CFA_def_cfa_offset");
1057 } else {
1058 Asm->EmitInt8(DW_CFA_def_cfa);
1059 Asm->EOL("DW_CFA_def_cfa");
Dale Johannesenf5a11532007-11-13 19:13:01 +00001060 Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Src.getRegister(), isEH));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001061 Asm->EOL("Register");
1062 }
aslc200b112008-08-16 12:57:46 +00001063
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001064 int Offset = -Src.getOffset();
aslc200b112008-08-16 12:57:46 +00001065
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001066 Asm->EmitULEB128Bytes(Offset);
1067 Asm->EOL("Offset");
1068 } else {
1069 assert(0 && "Machine move no supported yet.");
1070 }
1071 } else if (Src.isRegister() &&
1072 Src.getRegister() == MachineLocation::VirtualFP) {
1073 if (Dst.isRegister()) {
1074 Asm->EmitInt8(DW_CFA_def_cfa_register);
1075 Asm->EOL("DW_CFA_def_cfa_register");
Dale Johannesenf5a11532007-11-13 19:13:01 +00001076 Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Dst.getRegister(), isEH));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001077 Asm->EOL("Register");
1078 } else {
1079 assert(0 && "Machine move no supported yet.");
1080 }
1081 } else {
Dale Johannesenf5a11532007-11-13 19:13:01 +00001082 unsigned Reg = RI->getDwarfRegNum(Src.getRegister(), isEH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001083 int Offset = Dst.getOffset() / stackGrowth;
aslc200b112008-08-16 12:57:46 +00001084
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 if (Offset < 0) {
1086 Asm->EmitInt8(DW_CFA_offset_extended_sf);
1087 Asm->EOL("DW_CFA_offset_extended_sf");
1088 Asm->EmitULEB128Bytes(Reg);
1089 Asm->EOL("Reg");
1090 Asm->EmitSLEB128Bytes(Offset);
1091 Asm->EOL("Offset");
1092 } else if (Reg < 64) {
1093 Asm->EmitInt8(DW_CFA_offset + Reg);
Evan Cheng6181e062008-07-09 21:53:02 +00001094 if (VerboseAsm)
1095 Asm->EOL("DW_CFA_offset + Reg (" + utostr(Reg) + ")");
1096 else
1097 Asm->EOL();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098 Asm->EmitULEB128Bytes(Offset);
1099 Asm->EOL("Offset");
1100 } else {
1101 Asm->EmitInt8(DW_CFA_offset_extended);
1102 Asm->EOL("DW_CFA_offset_extended");
1103 Asm->EmitULEB128Bytes(Reg);
1104 Asm->EOL("Reg");
1105 Asm->EmitULEB128Bytes(Offset);
1106 Asm->EOL("Offset");
1107 }
1108 }
1109 }
1110 }
1111
1112};
1113
1114//===----------------------------------------------------------------------===//
aslc200b112008-08-16 12:57:46 +00001115/// DwarfDebug - Emits Dwarf debug directives.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001116///
1117class DwarfDebug : public Dwarf {
1118
1119private:
1120 //===--------------------------------------------------------------------===//
1121 // Attributes used to construct specific Dwarf sections.
1122 //
aslc200b112008-08-16 12:57:46 +00001123
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001124 /// CompileUnits - All the compile units involved in this build. The index
1125 /// of each entry in this vector corresponds to the sources in MMI.
1126 std::vector<CompileUnit *> CompileUnits;
aslc200b112008-08-16 12:57:46 +00001127
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128 /// AbbreviationsSet - Used to uniquely define abbreviations.
1129 ///
1130 FoldingSet<DIEAbbrev> AbbreviationsSet;
1131
1132 /// Abbreviations - A list of all the unique abbreviations in use.
1133 ///
1134 std::vector<DIEAbbrev *> Abbreviations;
aslc200b112008-08-16 12:57:46 +00001135
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001136 /// ValuesSet - Used to uniquely define values.
1137 ///
1138 FoldingSet<DIEValue> ValuesSet;
aslc200b112008-08-16 12:57:46 +00001139
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001140 /// Values - A list of all the unique values in use.
1141 ///
1142 std::vector<DIEValue *> Values;
aslc200b112008-08-16 12:57:46 +00001143
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144 /// StringPool - A UniqueVector of strings used by indirect references.
1145 ///
1146 UniqueVector<std::string> StringPool;
1147
1148 /// UnitMap - Map debug information descriptor to compile unit.
1149 ///
1150 std::map<DebugInfoDesc *, CompileUnit *> DescToUnitMap;
aslc200b112008-08-16 12:57:46 +00001151
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001152 /// SectionMap - Provides a unique id per text section.
1153 ///
1154 UniqueVector<std::string> SectionMap;
aslc200b112008-08-16 12:57:46 +00001155
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 /// SectionSourceLines - Tracks line numbers per text section.
1157 ///
1158 std::vector<std::vector<SourceLineInfo> > SectionSourceLines;
1159
1160 /// didInitial - Flag to indicate if initial emission has been done.
1161 ///
1162 bool didInitial;
aslc200b112008-08-16 12:57:46 +00001163
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001164 /// shouldEmit - Flag to indicate if debug information should be emitted.
1165 ///
1166 bool shouldEmit;
1167
1168 struct FunctionDebugFrameInfo {
1169 unsigned Number;
1170 std::vector<MachineMove> Moves;
1171
1172 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M):
Dan Gohman9ba5d4d2007-08-27 14:50:10 +00001173 Number(Num), Moves(M) { }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001174 };
1175
1176 std::vector<FunctionDebugFrameInfo> DebugFrames;
aslc200b112008-08-16 12:57:46 +00001177
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001178public:
aslc200b112008-08-16 12:57:46 +00001179
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001180 /// ShouldEmitDwarf - Returns true if Dwarf declarations should be made.
1181 ///
1182 bool ShouldEmitDwarf() const { return shouldEmit; }
1183
1184 /// AssignAbbrevNumber - Define a unique number for the abbreviation.
aslc200b112008-08-16 12:57:46 +00001185 ///
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001186 void AssignAbbrevNumber(DIEAbbrev &Abbrev) {
1187 // Profile the node so that we can make it unique.
1188 FoldingSetNodeID ID;
1189 Abbrev.Profile(ID);
aslc200b112008-08-16 12:57:46 +00001190
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001191 // Check the set for priors.
1192 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
aslc200b112008-08-16 12:57:46 +00001193
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001194 // If it's newly added.
1195 if (InSet == &Abbrev) {
aslc200b112008-08-16 12:57:46 +00001196 // Add to abbreviation list.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001197 Abbreviations.push_back(&Abbrev);
1198 // Assign the vector position + 1 as its number.
1199 Abbrev.setNumber(Abbreviations.size());
1200 } else {
1201 // Assign existing abbreviation number.
1202 Abbrev.setNumber(InSet->getNumber());
1203 }
1204 }
1205
1206 /// NewString - Add a string to the constant pool and returns a label.
1207 ///
1208 DWLabel NewString(const std::string &String) {
1209 unsigned StringID = StringPool.insert(String);
1210 return DWLabel("string", StringID);
1211 }
aslc200b112008-08-16 12:57:46 +00001212
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001213 /// NewDIEntry - Creates a new DIEntry to be a proxy for a debug information
1214 /// entry.
1215 DIEntry *NewDIEntry(DIE *Entry = NULL) {
1216 DIEntry *Value;
aslc200b112008-08-16 12:57:46 +00001217
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001218 if (Entry) {
1219 FoldingSetNodeID ID;
1220 DIEntry::Profile(ID, Entry);
1221 void *Where;
1222 Value = static_cast<DIEntry *>(ValuesSet.FindNodeOrInsertPos(ID, Where));
aslc200b112008-08-16 12:57:46 +00001223
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001224 if (Value) return Value;
aslc200b112008-08-16 12:57:46 +00001225
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001226 Value = new DIEntry(Entry);
1227 ValuesSet.InsertNode(Value, Where);
1228 } else {
1229 Value = new DIEntry(Entry);
1230 }
aslc200b112008-08-16 12:57:46 +00001231
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001232 Values.push_back(Value);
1233 return Value;
1234 }
aslc200b112008-08-16 12:57:46 +00001235
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001236 /// SetDIEntry - Set a DIEntry once the debug information entry is defined.
1237 ///
1238 void SetDIEntry(DIEntry *Value, DIE *Entry) {
1239 Value->Entry = Entry;
1240 // Add to values set if not already there. If it is, we merely have a
1241 // duplicate in the values list (no harm.)
1242 ValuesSet.GetOrInsertNode(Value);
1243 }
1244
1245 /// AddUInt - Add an unsigned integer attribute data and value.
1246 ///
1247 void AddUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer) {
1248 if (!Form) Form = DIEInteger::BestForm(false, Integer);
1249
1250 FoldingSetNodeID ID;
1251 DIEInteger::Profile(ID, Integer);
1252 void *Where;
1253 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1254 if (!Value) {
1255 Value = new DIEInteger(Integer);
1256 ValuesSet.InsertNode(Value, Where);
1257 Values.push_back(Value);
1258 }
aslc200b112008-08-16 12:57:46 +00001259
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001260 Die->AddValue(Attribute, Form, Value);
1261 }
aslc200b112008-08-16 12:57:46 +00001262
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001263 /// AddSInt - Add an signed integer attribute data and value.
1264 ///
1265 void AddSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer) {
1266 if (!Form) Form = DIEInteger::BestForm(true, Integer);
1267
1268 FoldingSetNodeID ID;
1269 DIEInteger::Profile(ID, (uint64_t)Integer);
1270 void *Where;
1271 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1272 if (!Value) {
1273 Value = new DIEInteger(Integer);
1274 ValuesSet.InsertNode(Value, Where);
1275 Values.push_back(Value);
1276 }
aslc200b112008-08-16 12:57:46 +00001277
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278 Die->AddValue(Attribute, Form, Value);
1279 }
aslc200b112008-08-16 12:57:46 +00001280
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001281 /// AddString - Add a std::string attribute data and value.
1282 ///
1283 void AddString(DIE *Die, unsigned Attribute, unsigned Form,
1284 const std::string &String) {
1285 FoldingSetNodeID ID;
1286 DIEString::Profile(ID, String);
1287 void *Where;
1288 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1289 if (!Value) {
1290 Value = new DIEString(String);
1291 ValuesSet.InsertNode(Value, Where);
1292 Values.push_back(Value);
1293 }
aslc200b112008-08-16 12:57:46 +00001294
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001295 Die->AddValue(Attribute, Form, Value);
1296 }
aslc200b112008-08-16 12:57:46 +00001297
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001298 /// AddLabel - Add a Dwarf label attribute data and value.
1299 ///
1300 void AddLabel(DIE *Die, unsigned Attribute, unsigned Form,
1301 const DWLabel &Label) {
1302 FoldingSetNodeID ID;
1303 DIEDwarfLabel::Profile(ID, Label);
1304 void *Where;
1305 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1306 if (!Value) {
1307 Value = new DIEDwarfLabel(Label);
1308 ValuesSet.InsertNode(Value, Where);
1309 Values.push_back(Value);
1310 }
aslc200b112008-08-16 12:57:46 +00001311
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001312 Die->AddValue(Attribute, Form, Value);
1313 }
aslc200b112008-08-16 12:57:46 +00001314
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001315 /// AddObjectLabel - Add an non-Dwarf label attribute data and value.
1316 ///
1317 void AddObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
1318 const std::string &Label) {
1319 FoldingSetNodeID ID;
1320 DIEObjectLabel::Profile(ID, Label);
1321 void *Where;
1322 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1323 if (!Value) {
1324 Value = new DIEObjectLabel(Label);
1325 ValuesSet.InsertNode(Value, Where);
1326 Values.push_back(Value);
1327 }
aslc200b112008-08-16 12:57:46 +00001328
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001329 Die->AddValue(Attribute, Form, Value);
1330 }
aslc200b112008-08-16 12:57:46 +00001331
Argiris Kirtzidis03449652008-06-18 19:27:37 +00001332 /// AddSectionOffset - Add a section offset label attribute data and value.
1333 ///
1334 void AddSectionOffset(DIE *Die, unsigned Attribute, unsigned Form,
1335 const DWLabel &Label, const DWLabel &Section,
1336 bool isEH = false, bool useSet = true) {
1337 FoldingSetNodeID ID;
1338 DIESectionOffset::Profile(ID, Label, Section);
1339 void *Where;
1340 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1341 if (!Value) {
1342 Value = new DIESectionOffset(Label, Section, isEH, useSet);
1343 ValuesSet.InsertNode(Value, Where);
1344 Values.push_back(Value);
1345 }
aslc200b112008-08-16 12:57:46 +00001346
Argiris Kirtzidis03449652008-06-18 19:27:37 +00001347 Die->AddValue(Attribute, Form, Value);
1348 }
aslc200b112008-08-16 12:57:46 +00001349
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001350 /// AddDelta - Add a label delta attribute data and value.
1351 ///
1352 void AddDelta(DIE *Die, unsigned Attribute, unsigned Form,
1353 const DWLabel &Hi, const DWLabel &Lo) {
1354 FoldingSetNodeID ID;
1355 DIEDelta::Profile(ID, Hi, Lo);
1356 void *Where;
1357 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1358 if (!Value) {
1359 Value = new DIEDelta(Hi, Lo);
1360 ValuesSet.InsertNode(Value, Where);
1361 Values.push_back(Value);
1362 }
aslc200b112008-08-16 12:57:46 +00001363
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001364 Die->AddValue(Attribute, Form, Value);
1365 }
aslc200b112008-08-16 12:57:46 +00001366
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001367 /// AddDIEntry - Add a DIE attribute data and value.
1368 ///
1369 void AddDIEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) {
1370 Die->AddValue(Attribute, Form, NewDIEntry(Entry));
1371 }
1372
1373 /// AddBlock - Add block data.
1374 ///
1375 void AddBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block) {
1376 Block->ComputeSize(*this);
1377 FoldingSetNodeID ID;
1378 Block->Profile(ID);
1379 void *Where;
1380 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1381 if (!Value) {
1382 Value = Block;
1383 ValuesSet.InsertNode(Value, Where);
1384 Values.push_back(Value);
1385 } else {
Chris Lattner3de66892007-09-21 18:25:53 +00001386 // Already exists, reuse the previous one.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001387 delete Block;
Chris Lattner3de66892007-09-21 18:25:53 +00001388 Block = cast<DIEBlock>(Value);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001389 }
aslc200b112008-08-16 12:57:46 +00001390
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001391 Die->AddValue(Attribute, Block->BestForm(), Value);
1392 }
1393
1394private:
1395
1396 /// AddSourceLine - Add location information to specified debug information
1397 /// entry.
1398 void AddSourceLine(DIE *Die, CompileUnitDesc *File, unsigned Line) {
1399 if (File && Line) {
1400 CompileUnit *FileUnit = FindCompileUnit(File);
1401 unsigned FileID = FileUnit->getID();
1402 AddUInt(Die, DW_AT_decl_file, 0, FileID);
1403 AddUInt(Die, DW_AT_decl_line, 0, Line);
1404 }
1405 }
1406
1407 /// AddAddress - Add an address attribute to a die based on the location
1408 /// provided.
1409 void AddAddress(DIE *Die, unsigned Attribute,
1410 const MachineLocation &Location) {
Dale Johannesenf5a11532007-11-13 19:13:01 +00001411 unsigned Reg = RI->getDwarfRegNum(Location.getRegister(), false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001412 DIEBlock *Block = new DIEBlock();
aslc200b112008-08-16 12:57:46 +00001413
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001414 if (Location.isRegister()) {
1415 if (Reg < 32) {
1416 AddUInt(Block, 0, DW_FORM_data1, DW_OP_reg0 + Reg);
1417 } else {
1418 AddUInt(Block, 0, DW_FORM_data1, DW_OP_regx);
1419 AddUInt(Block, 0, DW_FORM_udata, Reg);
1420 }
1421 } else {
1422 if (Reg < 32) {
1423 AddUInt(Block, 0, DW_FORM_data1, DW_OP_breg0 + Reg);
1424 } else {
1425 AddUInt(Block, 0, DW_FORM_data1, DW_OP_bregx);
1426 AddUInt(Block, 0, DW_FORM_udata, Reg);
1427 }
1428 AddUInt(Block, 0, DW_FORM_sdata, Location.getOffset());
1429 }
aslc200b112008-08-16 12:57:46 +00001430
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001431 AddBlock(Die, Attribute, 0, Block);
1432 }
aslc200b112008-08-16 12:57:46 +00001433
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001434 /// AddBasicType - Add a new basic type attribute to the specified entity.
1435 ///
1436 void AddBasicType(DIE *Entity, CompileUnit *Unit,
1437 const std::string &Name,
1438 unsigned Encoding, unsigned Size) {
1439 DIE *Die = ConstructBasicType(Unit, Name, Encoding, Size);
1440 AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, Die);
1441 }
aslc200b112008-08-16 12:57:46 +00001442
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001443 /// ConstructBasicType - Construct a new basic type.
1444 ///
1445 DIE *ConstructBasicType(CompileUnit *Unit,
1446 const std::string &Name,
1447 unsigned Encoding, unsigned Size) {
1448 DIE Buffer(DW_TAG_base_type);
1449 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1450 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, Encoding);
1451 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1452 return Unit->AddDie(Buffer);
1453 }
aslc200b112008-08-16 12:57:46 +00001454
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001455 /// AddPointerType - Add a new pointer type attribute to the specified entity.
1456 ///
1457 void AddPointerType(DIE *Entity, CompileUnit *Unit, const std::string &Name) {
1458 DIE *Die = ConstructPointerType(Unit, Name);
1459 AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, Die);
1460 }
aslc200b112008-08-16 12:57:46 +00001461
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001462 /// ConstructPointerType - Construct a new pointer type.
1463 ///
1464 DIE *ConstructPointerType(CompileUnit *Unit, const std::string &Name) {
1465 DIE Buffer(DW_TAG_pointer_type);
Dan Gohmancfb72b22007-09-27 23:12:31 +00001466 AddUInt(&Buffer, DW_AT_byte_size, 0, TD->getPointerSize());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001467 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1468 return Unit->AddDie(Buffer);
1469 }
aslc200b112008-08-16 12:57:46 +00001470
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001471 /// AddType - Add a new type attribute to the specified entity.
1472 ///
1473 void AddType(DIE *Entity, TypeDesc *TyDesc, CompileUnit *Unit) {
1474 if (!TyDesc) {
1475 AddBasicType(Entity, Unit, "", DW_ATE_signed, sizeof(int32_t));
1476 } else {
1477 // Check for pre-existence.
1478 DIEntry *&Slot = Unit->getDIEntrySlotFor(TyDesc);
aslc200b112008-08-16 12:57:46 +00001479
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001480 // If it exists then use the existing value.
1481 if (Slot) {
1482 Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1483 return;
1484 }
aslc200b112008-08-16 12:57:46 +00001485
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001486 if (SubprogramDesc *SubprogramTy = dyn_cast<SubprogramDesc>(TyDesc)) {
1487 // FIXME - Not sure why programs and variables are coming through here.
1488 // Short cut for handling subprogram types (not really a TyDesc.)
1489 AddPointerType(Entity, Unit, SubprogramTy->getName());
1490 } else if (GlobalVariableDesc *GlobalTy =
1491 dyn_cast<GlobalVariableDesc>(TyDesc)) {
1492 // FIXME - Not sure why programs and variables are coming through here.
1493 // Short cut for handling global variable types (not really a TyDesc.)
1494 AddPointerType(Entity, Unit, GlobalTy->getName());
aslc200b112008-08-16 12:57:46 +00001495 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001496 // Set up proxy.
1497 Slot = NewDIEntry();
aslc200b112008-08-16 12:57:46 +00001498
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001499 // Construct type.
1500 DIE Buffer(DW_TAG_base_type);
1501 ConstructType(Buffer, TyDesc, Unit);
aslc200b112008-08-16 12:57:46 +00001502
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001503 // Add debug information entry to entity and unit.
1504 DIE *Die = Unit->AddDie(Buffer);
1505 SetDIEntry(Slot, Die);
1506 Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1507 }
1508 }
1509 }
aslc200b112008-08-16 12:57:46 +00001510
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001511 /// ConstructType - Adds all the required attributes to the type.
1512 ///
1513 void ConstructType(DIE &Buffer, TypeDesc *TyDesc, CompileUnit *Unit) {
1514 // Get core information.
1515 const std::string &Name = TyDesc->getName();
1516 uint64_t Size = TyDesc->getSize() >> 3;
aslc200b112008-08-16 12:57:46 +00001517
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001518 if (BasicTypeDesc *BasicTy = dyn_cast<BasicTypeDesc>(TyDesc)) {
1519 // Fundamental types like int, float, bool
1520 Buffer.setTag(DW_TAG_base_type);
1521 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, BasicTy->getEncoding());
1522 } else if (DerivedTypeDesc *DerivedTy = dyn_cast<DerivedTypeDesc>(TyDesc)) {
1523 // Fetch tag.
1524 unsigned Tag = DerivedTy->getTag();
1525 // FIXME - Workaround for templates.
1526 if (Tag == DW_TAG_inheritance) Tag = DW_TAG_reference_type;
aslc200b112008-08-16 12:57:46 +00001527 // Pointers, typedefs et al.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001528 Buffer.setTag(Tag);
1529 // Map to main type, void will not have a type.
1530 if (TypeDesc *FromTy = DerivedTy->getFromType())
1531 AddType(&Buffer, FromTy, Unit);
1532 } else if (CompositeTypeDesc *CompTy = dyn_cast<CompositeTypeDesc>(TyDesc)){
1533 // Fetch tag.
1534 unsigned Tag = CompTy->getTag();
aslc200b112008-08-16 12:57:46 +00001535
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001536 // Set tag accordingly.
1537 if (Tag == DW_TAG_vector_type)
1538 Buffer.setTag(DW_TAG_array_type);
aslc200b112008-08-16 12:57:46 +00001539 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001540 Buffer.setTag(Tag);
1541
1542 std::vector<DebugInfoDesc *> &Elements = CompTy->getElements();
aslc200b112008-08-16 12:57:46 +00001543
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001544 switch (Tag) {
1545 case DW_TAG_vector_type:
1546 AddUInt(&Buffer, DW_AT_GNU_vector, DW_FORM_flag, 1);
1547 // Fall thru
1548 case DW_TAG_array_type: {
1549 // Add element type.
1550 if (TypeDesc *FromTy = CompTy->getFromType())
1551 AddType(&Buffer, FromTy, Unit);
aslc200b112008-08-16 12:57:46 +00001552
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001553 // Don't emit size attribute.
1554 Size = 0;
aslc200b112008-08-16 12:57:46 +00001555
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001556 // Construct an anonymous type for index type.
1557 DIE *IndexTy = ConstructBasicType(Unit, "", DW_ATE_signed,
1558 sizeof(int32_t));
aslc200b112008-08-16 12:57:46 +00001559
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001560 // Add subranges to array type.
1561 for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1562 SubrangeDesc *SRD = cast<SubrangeDesc>(Elements[i]);
1563 int64_t Lo = SRD->getLo();
1564 int64_t Hi = SRD->getHi();
1565 DIE *Subrange = new DIE(DW_TAG_subrange_type);
aslc200b112008-08-16 12:57:46 +00001566
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001567 // If a range is available.
1568 if (Lo != Hi) {
1569 AddDIEntry(Subrange, DW_AT_type, DW_FORM_ref4, IndexTy);
1570 // Only add low if non-zero.
1571 if (Lo) AddSInt(Subrange, DW_AT_lower_bound, 0, Lo);
1572 AddSInt(Subrange, DW_AT_upper_bound, 0, Hi);
1573 }
aslc200b112008-08-16 12:57:46 +00001574
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001575 Buffer.AddChild(Subrange);
1576 }
1577 break;
1578 }
1579 case DW_TAG_structure_type:
1580 case DW_TAG_union_type: {
1581 // Add elements to structure type.
1582 for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1583 DebugInfoDesc *Element = Elements[i];
aslc200b112008-08-16 12:57:46 +00001584
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001585 if (DerivedTypeDesc *MemberDesc = dyn_cast<DerivedTypeDesc>(Element)){
1586 // Add field or base class.
aslc200b112008-08-16 12:57:46 +00001587
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001588 unsigned Tag = MemberDesc->getTag();
aslc200b112008-08-16 12:57:46 +00001589
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001590 // Extract the basic information.
1591 const std::string &Name = MemberDesc->getName();
1592 uint64_t Size = MemberDesc->getSize();
1593 uint64_t Align = MemberDesc->getAlign();
1594 uint64_t Offset = MemberDesc->getOffset();
aslc200b112008-08-16 12:57:46 +00001595
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001596 // Construct member debug information entry.
1597 DIE *Member = new DIE(Tag);
aslc200b112008-08-16 12:57:46 +00001598
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001599 // Add name if not "".
1600 if (!Name.empty())
1601 AddString(Member, DW_AT_name, DW_FORM_string, Name);
1602 // Add location if available.
1603 AddSourceLine(Member, MemberDesc->getFile(), MemberDesc->getLine());
aslc200b112008-08-16 12:57:46 +00001604
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001605 // Most of the time the field info is the same as the members.
1606 uint64_t FieldSize = Size;
1607 uint64_t FieldAlign = Align;
1608 uint64_t FieldOffset = Offset;
aslc200b112008-08-16 12:57:46 +00001609
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001610 // Set the member type.
1611 TypeDesc *FromTy = MemberDesc->getFromType();
1612 AddType(Member, FromTy, Unit);
aslc200b112008-08-16 12:57:46 +00001613
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001614 // Walk up typedefs until a real size is found.
1615 while (FromTy) {
1616 if (FromTy->getTag() != DW_TAG_typedef) {
1617 FieldSize = FromTy->getSize();
1618 FieldAlign = FromTy->getSize();
1619 break;
1620 }
aslc200b112008-08-16 12:57:46 +00001621
Dan Gohman53491e92007-07-23 20:24:29 +00001622 FromTy = cast<DerivedTypeDesc>(FromTy)->getFromType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001623 }
aslc200b112008-08-16 12:57:46 +00001624
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001625 // Unless we have a bit field.
1626 if (Tag == DW_TAG_member && FieldSize != Size) {
1627 // Construct the alignment mask.
1628 uint64_t AlignMask = ~(FieldAlign - 1);
1629 // Determine the high bit + 1 of the declared size.
1630 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
1631 // Work backwards to determine the base offset of the field.
1632 FieldOffset = HiMark - FieldSize;
1633 // Now normalize offset to the field.
1634 Offset -= FieldOffset;
aslc200b112008-08-16 12:57:46 +00001635
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001636 // Maybe we need to work from the other end.
1637 if (TD->isLittleEndian()) Offset = FieldSize - (Offset + Size);
aslc200b112008-08-16 12:57:46 +00001638
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001639 // Add size and offset.
1640 AddUInt(Member, DW_AT_byte_size, 0, FieldSize >> 3);
1641 AddUInt(Member, DW_AT_bit_size, 0, Size);
1642 AddUInt(Member, DW_AT_bit_offset, 0, Offset);
1643 }
aslc200b112008-08-16 12:57:46 +00001644
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001645 // Add computation for offset.
1646 DIEBlock *Block = new DIEBlock();
1647 AddUInt(Block, 0, DW_FORM_data1, DW_OP_plus_uconst);
1648 AddUInt(Block, 0, DW_FORM_udata, FieldOffset >> 3);
1649 AddBlock(Member, DW_AT_data_member_location, 0, Block);
1650
1651 // Add accessibility (public default unless is base class.
1652 if (MemberDesc->isProtected()) {
1653 AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_protected);
1654 } else if (MemberDesc->isPrivate()) {
1655 AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_private);
1656 } else if (Tag == DW_TAG_inheritance) {
1657 AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_public);
1658 }
aslc200b112008-08-16 12:57:46 +00001659
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001660 Buffer.AddChild(Member);
1661 } else if (GlobalVariableDesc *StaticDesc =
1662 dyn_cast<GlobalVariableDesc>(Element)) {
1663 // Add static member.
aslc200b112008-08-16 12:57:46 +00001664
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001665 // Construct member debug information entry.
1666 DIE *Static = new DIE(DW_TAG_variable);
aslc200b112008-08-16 12:57:46 +00001667
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001668 // Add name and mangled name.
1669 const std::string &Name = StaticDesc->getName();
1670 const std::string &LinkageName = StaticDesc->getLinkageName();
1671 AddString(Static, DW_AT_name, DW_FORM_string, Name);
1672 if (!LinkageName.empty()) {
1673 AddString(Static, DW_AT_MIPS_linkage_name, DW_FORM_string,
1674 LinkageName);
1675 }
aslc200b112008-08-16 12:57:46 +00001676
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001677 // Add location.
1678 AddSourceLine(Static, StaticDesc->getFile(), StaticDesc->getLine());
aslc200b112008-08-16 12:57:46 +00001679
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001680 // Add type.
1681 if (TypeDesc *StaticTy = StaticDesc->getType())
1682 AddType(Static, StaticTy, Unit);
aslc200b112008-08-16 12:57:46 +00001683
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001684 // Add flags.
1685 if (!StaticDesc->isStatic())
1686 AddUInt(Static, DW_AT_external, DW_FORM_flag, 1);
1687 AddUInt(Static, DW_AT_declaration, DW_FORM_flag, 1);
aslc200b112008-08-16 12:57:46 +00001688
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001689 Buffer.AddChild(Static);
1690 } else if (SubprogramDesc *MethodDesc =
1691 dyn_cast<SubprogramDesc>(Element)) {
1692 // Add member function.
aslc200b112008-08-16 12:57:46 +00001693
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001694 // Construct member debug information entry.
1695 DIE *Method = new DIE(DW_TAG_subprogram);
aslc200b112008-08-16 12:57:46 +00001696
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001697 // Add name and mangled name.
1698 const std::string &Name = MethodDesc->getName();
1699 const std::string &LinkageName = MethodDesc->getLinkageName();
aslc200b112008-08-16 12:57:46 +00001700
1701 AddString(Method, DW_AT_name, DW_FORM_string, Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001702 bool IsCTor = TyDesc->getName() == Name;
aslc200b112008-08-16 12:57:46 +00001703
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001704 if (!LinkageName.empty()) {
1705 AddString(Method, DW_AT_MIPS_linkage_name, DW_FORM_string,
1706 LinkageName);
1707 }
aslc200b112008-08-16 12:57:46 +00001708
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001709 // Add location.
1710 AddSourceLine(Method, MethodDesc->getFile(), MethodDesc->getLine());
aslc200b112008-08-16 12:57:46 +00001711
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001712 // Add type.
1713 if (CompositeTypeDesc *MethodTy =
1714 dyn_cast_or_null<CompositeTypeDesc>(MethodDesc->getType())) {
1715 // Get argument information.
1716 std::vector<DebugInfoDesc *> &Args = MethodTy->getElements();
aslc200b112008-08-16 12:57:46 +00001717
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001718 // If not a ctor.
1719 if (!IsCTor) {
1720 // Add return type.
1721 AddType(Method, dyn_cast<TypeDesc>(Args[0]), Unit);
1722 }
aslc200b112008-08-16 12:57:46 +00001723
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001724 // Add arguments.
1725 for(unsigned i = 1, N = Args.size(); i < N; ++i) {
1726 DIE *Arg = new DIE(DW_TAG_formal_parameter);
1727 AddType(Arg, cast<TypeDesc>(Args[i]), Unit);
1728 AddUInt(Arg, DW_AT_artificial, DW_FORM_flag, 1);
1729 Method->AddChild(Arg);
1730 }
1731 }
1732
1733 // Add flags.
1734 if (!MethodDesc->isStatic())
1735 AddUInt(Method, DW_AT_external, DW_FORM_flag, 1);
1736 AddUInt(Method, DW_AT_declaration, DW_FORM_flag, 1);
aslc200b112008-08-16 12:57:46 +00001737
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001738 Buffer.AddChild(Method);
1739 }
1740 }
1741 break;
1742 }
1743 case DW_TAG_enumeration_type: {
1744 // Add enumerators to enumeration type.
1745 for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1746 EnumeratorDesc *ED = cast<EnumeratorDesc>(Elements[i]);
1747 const std::string &Name = ED->getName();
1748 int64_t Value = ED->getValue();
1749 DIE *Enumerator = new DIE(DW_TAG_enumerator);
1750 AddString(Enumerator, DW_AT_name, DW_FORM_string, Name);
1751 AddSInt(Enumerator, DW_AT_const_value, DW_FORM_sdata, Value);
1752 Buffer.AddChild(Enumerator);
1753 }
1754
1755 break;
1756 }
1757 case DW_TAG_subroutine_type: {
1758 // Add prototype flag.
1759 AddUInt(&Buffer, DW_AT_prototyped, DW_FORM_flag, 1);
1760 // Add return type.
1761 AddType(&Buffer, dyn_cast<TypeDesc>(Elements[0]), Unit);
aslc200b112008-08-16 12:57:46 +00001762
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001763 // Add arguments.
1764 for(unsigned i = 1, N = Elements.size(); i < N; ++i) {
1765 DIE *Arg = new DIE(DW_TAG_formal_parameter);
1766 AddType(Arg, cast<TypeDesc>(Elements[i]), Unit);
1767 Buffer.AddChild(Arg);
1768 }
aslc200b112008-08-16 12:57:46 +00001769
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001770 break;
1771 }
1772 default: break;
1773 }
1774 }
aslc200b112008-08-16 12:57:46 +00001775
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001776 // Add size if non-zero (derived types don't have a size.)
1777 if (Size) AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1778 // Add name if not anonymous or intermediate type.
1779 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1780 // Add source line info if available.
1781 AddSourceLine(&Buffer, TyDesc->getFile(), TyDesc->getLine());
1782 }
1783
1784 /// NewCompileUnit - Create new compile unit and it's debug information entry.
1785 ///
1786 CompileUnit *NewCompileUnit(CompileUnitDesc *UnitDesc, unsigned ID) {
1787 // Construct debug information entry.
1788 DIE *Die = new DIE(DW_TAG_compile_unit);
Argiris Kirtzidis03449652008-06-18 19:27:37 +00001789 AddSectionOffset(Die, DW_AT_stmt_list, DW_FORM_data4,
1790 DWLabel("section_line", 0), DWLabel("section_line", 0), false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001791 AddString(Die, DW_AT_producer, DW_FORM_string, UnitDesc->getProducer());
1792 AddUInt (Die, DW_AT_language, DW_FORM_data1, UnitDesc->getLanguage());
1793 AddString(Die, DW_AT_name, DW_FORM_string, UnitDesc->getFileName());
1794 AddString(Die, DW_AT_comp_dir, DW_FORM_string, UnitDesc->getDirectory());
aslc200b112008-08-16 12:57:46 +00001795
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001796 // Construct compile unit.
1797 CompileUnit *Unit = new CompileUnit(UnitDesc, ID, Die);
aslc200b112008-08-16 12:57:46 +00001798
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001799 // Add Unit to compile unit map.
1800 DescToUnitMap[UnitDesc] = Unit;
aslc200b112008-08-16 12:57:46 +00001801
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001802 return Unit;
1803 }
1804
1805 /// GetBaseCompileUnit - Get the main compile unit.
1806 ///
1807 CompileUnit *GetBaseCompileUnit() const {
1808 CompileUnit *Unit = CompileUnits[0];
1809 assert(Unit && "Missing compile unit.");
1810 return Unit;
1811 }
1812
1813 /// FindCompileUnit - Get the compile unit for the given descriptor.
1814 ///
1815 CompileUnit *FindCompileUnit(CompileUnitDesc *UnitDesc) {
1816 CompileUnit *Unit = DescToUnitMap[UnitDesc];
1817 assert(Unit && "Missing compile unit.");
1818 return Unit;
1819 }
1820
1821 /// NewGlobalVariable - Add a new global variable DIE.
1822 ///
1823 DIE *NewGlobalVariable(GlobalVariableDesc *GVD) {
1824 // Get the compile unit context.
1825 CompileUnitDesc *UnitDesc =
1826 static_cast<CompileUnitDesc *>(GVD->getContext());
1827 CompileUnit *Unit = GetBaseCompileUnit();
1828
1829 // Check for pre-existence.
1830 DIE *&Slot = Unit->getDieMapSlotFor(GVD);
1831 if (Slot) return Slot;
aslc200b112008-08-16 12:57:46 +00001832
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001833 // Get the global variable itself.
1834 GlobalVariable *GV = GVD->getGlobalVariable();
1835
1836 const std::string &Name = GVD->getName();
1837 const std::string &FullName = GVD->getFullName();
1838 const std::string &LinkageName = GVD->getLinkageName();
1839 // Create the global's variable DIE.
1840 DIE *VariableDie = new DIE(DW_TAG_variable);
1841 AddString(VariableDie, DW_AT_name, DW_FORM_string, Name);
1842 if (!LinkageName.empty()) {
1843 AddString(VariableDie, DW_AT_MIPS_linkage_name, DW_FORM_string,
1844 LinkageName);
1845 }
1846 AddType(VariableDie, GVD->getType(), Unit);
1847 if (!GVD->isStatic())
1848 AddUInt(VariableDie, DW_AT_external, DW_FORM_flag, 1);
aslc200b112008-08-16 12:57:46 +00001849
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001850 // Add source line info if available.
1851 AddSourceLine(VariableDie, UnitDesc, GVD->getLine());
aslc200b112008-08-16 12:57:46 +00001852
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001853 // Add address.
1854 DIEBlock *Block = new DIEBlock();
1855 AddUInt(Block, 0, DW_FORM_data1, DW_OP_addr);
1856 AddObjectLabel(Block, 0, DW_FORM_udata, Asm->getGlobalLinkName(GV));
1857 AddBlock(VariableDie, DW_AT_location, 0, Block);
aslc200b112008-08-16 12:57:46 +00001858
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001859 // Add to map.
1860 Slot = VariableDie;
aslc200b112008-08-16 12:57:46 +00001861
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001862 // Add to context owner.
1863 Unit->getDie()->AddChild(VariableDie);
aslc200b112008-08-16 12:57:46 +00001864
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001865 // Expose as global.
1866 // FIXME - need to check external flag.
1867 Unit->AddGlobal(FullName, VariableDie);
aslc200b112008-08-16 12:57:46 +00001868
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001869 return VariableDie;
1870 }
1871
1872 /// NewSubprogram - Add a new subprogram DIE.
1873 ///
1874 DIE *NewSubprogram(SubprogramDesc *SPD) {
1875 // Get the compile unit context.
1876 CompileUnitDesc *UnitDesc =
1877 static_cast<CompileUnitDesc *>(SPD->getContext());
1878 CompileUnit *Unit = GetBaseCompileUnit();
1879
1880 // Check for pre-existence.
1881 DIE *&Slot = Unit->getDieMapSlotFor(SPD);
1882 if (Slot) return Slot;
aslc200b112008-08-16 12:57:46 +00001883
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001884 // Gather the details (simplify add attribute code.)
1885 const std::string &Name = SPD->getName();
1886 const std::string &FullName = SPD->getFullName();
1887 const std::string &LinkageName = SPD->getLinkageName();
aslc200b112008-08-16 12:57:46 +00001888
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001889 DIE *SubprogramDie = new DIE(DW_TAG_subprogram);
1890 AddString(SubprogramDie, DW_AT_name, DW_FORM_string, Name);
1891 if (!LinkageName.empty()) {
1892 AddString(SubprogramDie, DW_AT_MIPS_linkage_name, DW_FORM_string,
1893 LinkageName);
1894 }
1895 if (SPD->getType()) AddType(SubprogramDie, SPD->getType(), Unit);
1896 if (!SPD->isStatic())
1897 AddUInt(SubprogramDie, DW_AT_external, DW_FORM_flag, 1);
1898 AddUInt(SubprogramDie, DW_AT_prototyped, DW_FORM_flag, 1);
aslc200b112008-08-16 12:57:46 +00001899
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001900 // Add source line info if available.
1901 AddSourceLine(SubprogramDie, UnitDesc, SPD->getLine());
1902
1903 // Add to map.
1904 Slot = SubprogramDie;
aslc200b112008-08-16 12:57:46 +00001905
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001906 // Add to context owner.
1907 Unit->getDie()->AddChild(SubprogramDie);
aslc200b112008-08-16 12:57:46 +00001908
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001909 // Expose as global.
1910 Unit->AddGlobal(FullName, SubprogramDie);
aslc200b112008-08-16 12:57:46 +00001911
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001912 return SubprogramDie;
1913 }
1914
1915 /// NewScopeVariable - Create a new scope variable.
1916 ///
1917 DIE *NewScopeVariable(DebugVariable *DV, CompileUnit *Unit) {
1918 // Get the descriptor.
1919 VariableDesc *VD = DV->getDesc();
1920
1921 // Translate tag to proper Dwarf tag. The result variable is dropped for
1922 // now.
1923 unsigned Tag;
1924 switch (VD->getTag()) {
1925 case DW_TAG_return_variable: return NULL;
1926 case DW_TAG_arg_variable: Tag = DW_TAG_formal_parameter; break;
1927 case DW_TAG_auto_variable: // fall thru
1928 default: Tag = DW_TAG_variable; break;
1929 }
1930
1931 // Define variable debug information entry.
1932 DIE *VariableDie = new DIE(Tag);
1933 AddString(VariableDie, DW_AT_name, DW_FORM_string, VD->getName());
1934
1935 // Add source line info if available.
1936 AddSourceLine(VariableDie, VD->getFile(), VD->getLine());
aslc200b112008-08-16 12:57:46 +00001937
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001938 // Add variable type.
aslc200b112008-08-16 12:57:46 +00001939 AddType(VariableDie, VD->getType(), Unit);
1940
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001941 // Add variable address.
1942 MachineLocation Location;
Evan Cheng38948832008-01-31 03:37:28 +00001943 Location.set(RI->getFrameRegister(*MF),
1944 RI->getFrameIndexOffset(*MF, DV->getFrameIndex()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001945 AddAddress(VariableDie, DW_AT_location, Location);
1946
1947 return VariableDie;
1948 }
1949
1950 /// ConstructScope - Construct the components of a scope.
1951 ///
1952 void ConstructScope(DebugScope *ParentScope,
1953 unsigned ParentStartID, unsigned ParentEndID,
1954 DIE *ParentDie, CompileUnit *Unit) {
1955 // Add variables to scope.
1956 std::vector<DebugVariable *> &Variables = ParentScope->getVariables();
1957 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
1958 DIE *VariableDie = NewScopeVariable(Variables[i], Unit);
1959 if (VariableDie) ParentDie->AddChild(VariableDie);
1960 }
aslc200b112008-08-16 12:57:46 +00001961
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001962 // Add nested scopes.
1963 std::vector<DebugScope *> &Scopes = ParentScope->getScopes();
1964 for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
1965 // Define the Scope debug information entry.
1966 DebugScope *Scope = Scopes[j];
1967 // FIXME - Ignore inlined functions for the time being.
1968 if (!Scope->getParent()) continue;
aslc200b112008-08-16 12:57:46 +00001969
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001970 unsigned StartID = MMI->MappedLabel(Scope->getStartLabelID());
1971 unsigned EndID = MMI->MappedLabel(Scope->getEndLabelID());
1972
1973 // Ignore empty scopes.
1974 if (StartID == EndID && StartID != 0) continue;
1975 if (Scope->getScopes().empty() && Scope->getVariables().empty()) continue;
aslc200b112008-08-16 12:57:46 +00001976
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001977 if (StartID == ParentStartID && EndID == ParentEndID) {
1978 // Just add stuff to the parent scope.
1979 ConstructScope(Scope, ParentStartID, ParentEndID, ParentDie, Unit);
1980 } else {
1981 DIE *ScopeDie = new DIE(DW_TAG_lexical_block);
aslc200b112008-08-16 12:57:46 +00001982
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001983 // Add the scope bounds.
1984 if (StartID) {
1985 AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
1986 DWLabel("label", StartID));
1987 } else {
1988 AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
1989 DWLabel("func_begin", SubprogramCount));
1990 }
1991 if (EndID) {
1992 AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
1993 DWLabel("label", EndID));
1994 } else {
1995 AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
1996 DWLabel("func_end", SubprogramCount));
1997 }
aslc200b112008-08-16 12:57:46 +00001998
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001999 // Add the scope contents.
2000 ConstructScope(Scope, StartID, EndID, ScopeDie, Unit);
2001 ParentDie->AddChild(ScopeDie);
2002 }
2003 }
2004 }
2005
2006 /// ConstructRootScope - Construct the scope for the subprogram.
2007 ///
2008 void ConstructRootScope(DebugScope *RootScope) {
2009 // Exit if there is no root scope.
2010 if (!RootScope) return;
aslc200b112008-08-16 12:57:46 +00002011
2012 // Get the subprogram debug information entry.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002013 SubprogramDesc *SPD = cast<SubprogramDesc>(RootScope->getDesc());
aslc200b112008-08-16 12:57:46 +00002014
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002015 // Get the compile unit context.
2016 CompileUnit *Unit = GetBaseCompileUnit();
aslc200b112008-08-16 12:57:46 +00002017
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002018 // Get the subprogram die.
2019 DIE *SPDie = Unit->getDieMapSlotFor(SPD);
2020 assert(SPDie && "Missing subprogram descriptor");
aslc200b112008-08-16 12:57:46 +00002021
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002022 // Add the function bounds.
2023 AddLabel(SPDie, DW_AT_low_pc, DW_FORM_addr,
2024 DWLabel("func_begin", SubprogramCount));
2025 AddLabel(SPDie, DW_AT_high_pc, DW_FORM_addr,
2026 DWLabel("func_end", SubprogramCount));
2027 MachineLocation Location(RI->getFrameRegister(*MF));
2028 AddAddress(SPDie, DW_AT_frame_base, Location);
2029
2030 ConstructScope(RootScope, 0, 0, SPDie, Unit);
2031 }
2032
2033 /// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc
2034 /// tools to recognize the object file contains Dwarf information.
2035 void EmitInitial() {
2036 // Check to see if we already emitted intial headers.
2037 if (didInitial) return;
2038 didInitial = true;
aslc200b112008-08-16 12:57:46 +00002039
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002040 // Dwarf sections base addresses.
2041 if (TAI->doesDwarfRequireFrameSection()) {
2042 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2043 EmitLabel("section_debug_frame", 0);
2044 }
2045 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
2046 EmitLabel("section_info", 0);
2047 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
2048 EmitLabel("section_abbrev", 0);
2049 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
2050 EmitLabel("section_aranges", 0);
2051 Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
2052 EmitLabel("section_macinfo", 0);
2053 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
2054 EmitLabel("section_line", 0);
2055 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
2056 EmitLabel("section_loc", 0);
2057 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
2058 EmitLabel("section_pubnames", 0);
2059 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
2060 EmitLabel("section_str", 0);
2061 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
2062 EmitLabel("section_ranges", 0);
2063
2064 Asm->SwitchToTextSection(TAI->getTextSection());
2065 EmitLabel("text_begin", 0);
2066 Asm->SwitchToDataSection(TAI->getDataSection());
2067 EmitLabel("data_begin", 0);
2068 }
2069
2070 /// EmitDIE - Recusively Emits a debug information entry.
2071 ///
2072 void EmitDIE(DIE *Die) {
2073 // Get the abbreviation for this DIE.
2074 unsigned AbbrevNumber = Die->getAbbrevNumber();
2075 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
aslc200b112008-08-16 12:57:46 +00002076
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002077 Asm->EOL();
2078
2079 // Emit the code (index) for the abbreviation.
2080 Asm->EmitULEB128Bytes(AbbrevNumber);
Evan Cheng0eeed442008-07-01 23:18:29 +00002081
2082 if (VerboseAsm)
2083 Asm->EOL(std::string("Abbrev [" +
2084 utostr(AbbrevNumber) +
2085 "] 0x" + utohexstr(Die->getOffset()) +
2086 ":0x" + utohexstr(Die->getSize()) + " " +
2087 TagString(Abbrev->getTag())));
2088 else
2089 Asm->EOL();
aslc200b112008-08-16 12:57:46 +00002090
Owen Anderson88dd6232008-06-24 21:44:59 +00002091 SmallVector<DIEValue*, 32> &Values = Die->getValues();
2092 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
aslc200b112008-08-16 12:57:46 +00002093
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002094 // Emit the DIE attribute values.
2095 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2096 unsigned Attr = AbbrevData[i].getAttribute();
2097 unsigned Form = AbbrevData[i].getForm();
2098 assert(Form && "Too many attributes for DIE (check abbreviation)");
aslc200b112008-08-16 12:57:46 +00002099
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002100 switch (Attr) {
2101 case DW_AT_sibling: {
2102 Asm->EmitInt32(Die->SiblingOffset());
2103 break;
2104 }
2105 default: {
2106 // Emit an attribute using the defined form.
2107 Values[i]->EmitValue(*this, Form);
2108 break;
2109 }
2110 }
aslc200b112008-08-16 12:57:46 +00002111
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002112 Asm->EOL(AttributeString(Attr));
2113 }
aslc200b112008-08-16 12:57:46 +00002114
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002115 // Emit the DIE children if any.
2116 if (Abbrev->getChildrenFlag() == DW_CHILDREN_yes) {
2117 const std::vector<DIE *> &Children = Die->getChildren();
aslc200b112008-08-16 12:57:46 +00002118
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002119 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2120 EmitDIE(Children[j]);
2121 }
aslc200b112008-08-16 12:57:46 +00002122
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002123 Asm->EmitInt8(0); Asm->EOL("End Of Children Mark");
2124 }
2125 }
2126
2127 /// SizeAndOffsetDie - Compute the size and offset of a DIE.
2128 ///
2129 unsigned SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last) {
2130 // Get the children.
2131 const std::vector<DIE *> &Children = Die->getChildren();
aslc200b112008-08-16 12:57:46 +00002132
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002133 // If not last sibling and has children then add sibling offset attribute.
2134 if (!Last && !Children.empty()) Die->AddSiblingOffset();
2135
2136 // Record the abbreviation.
2137 AssignAbbrevNumber(Die->getAbbrev());
aslc200b112008-08-16 12:57:46 +00002138
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002139 // Get the abbreviation for this DIE.
2140 unsigned AbbrevNumber = Die->getAbbrevNumber();
2141 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2142
2143 // Set DIE offset
2144 Die->setOffset(Offset);
aslc200b112008-08-16 12:57:46 +00002145
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002146 // Start the size with the size of abbreviation code.
aslc200b112008-08-16 12:57:46 +00002147 Offset += TargetAsmInfo::getULEB128Size(AbbrevNumber);
2148
Owen Anderson88dd6232008-06-24 21:44:59 +00002149 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
2150 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002151
2152 // Size the DIE attribute values.
2153 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2154 // Size attribute value.
2155 Offset += Values[i]->SizeOf(*this, AbbrevData[i].getForm());
2156 }
aslc200b112008-08-16 12:57:46 +00002157
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002158 // Size the DIE children if any.
2159 if (!Children.empty()) {
2160 assert(Abbrev->getChildrenFlag() == DW_CHILDREN_yes &&
2161 "Children flag not set");
aslc200b112008-08-16 12:57:46 +00002162
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002163 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2164 Offset = SizeAndOffsetDie(Children[j], Offset, (j + 1) == M);
2165 }
aslc200b112008-08-16 12:57:46 +00002166
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002167 // End of children marker.
2168 Offset += sizeof(int8_t);
2169 }
2170
2171 Die->setSize(Offset - Die->getOffset());
2172 return Offset;
2173 }
2174
2175 /// SizeAndOffsets - Compute the size and offset of all the DIEs.
2176 ///
2177 void SizeAndOffsets() {
2178 // Process base compile unit.
2179 CompileUnit *Unit = GetBaseCompileUnit();
2180 // Compute size of compile unit header
2181 unsigned Offset = sizeof(int32_t) + // Length of Compilation Unit Info
2182 sizeof(int16_t) + // DWARF version number
2183 sizeof(int32_t) + // Offset Into Abbrev. Section
2184 sizeof(int8_t); // Pointer Size (in bytes)
2185 SizeAndOffsetDie(Unit->getDie(), Offset, true);
2186 }
2187
2188 /// EmitDebugInfo - Emit the debug info section.
2189 ///
2190 void EmitDebugInfo() {
2191 // Start debug info section.
2192 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
aslc200b112008-08-16 12:57:46 +00002193
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002194 CompileUnit *Unit = GetBaseCompileUnit();
2195 DIE *Die = Unit->getDie();
2196 // Emit the compile units header.
2197 EmitLabel("info_begin", Unit->getID());
2198 // Emit size of content not including length itself
2199 unsigned ContentSize = Die->getSize() +
2200 sizeof(int16_t) + // DWARF version number
2201 sizeof(int32_t) + // Offset Into Abbrev. Section
2202 sizeof(int8_t) + // Pointer Size (in bytes)
2203 sizeof(int32_t); // FIXME - extra pad for gdb bug.
aslc200b112008-08-16 12:57:46 +00002204
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002205 Asm->EmitInt32(ContentSize); Asm->EOL("Length of Compilation Unit Info");
2206 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF version number");
2207 EmitSectionOffset("abbrev_begin", "section_abbrev", 0, 0, true, false);
2208 Asm->EOL("Offset Into Abbrev. Section");
Dan Gohmancfb72b22007-09-27 23:12:31 +00002209 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)");
aslc200b112008-08-16 12:57:46 +00002210
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002211 EmitDIE(Die);
2212 // FIXME - extra padding for gdb bug.
2213 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2214 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2215 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2216 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2217 EmitLabel("info_end", Unit->getID());
aslc200b112008-08-16 12:57:46 +00002218
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002219 Asm->EOL();
2220 }
2221
2222 /// EmitAbbreviations - Emit the abbreviation section.
2223 ///
2224 void EmitAbbreviations() const {
2225 // Check to see if it is worth the effort.
2226 if (!Abbreviations.empty()) {
2227 // Start the debug abbrev section.
2228 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
aslc200b112008-08-16 12:57:46 +00002229
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002230 EmitLabel("abbrev_begin", 0);
aslc200b112008-08-16 12:57:46 +00002231
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002232 // For each abbrevation.
2233 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2234 // Get abbreviation data
2235 const DIEAbbrev *Abbrev = Abbreviations[i];
aslc200b112008-08-16 12:57:46 +00002236
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002237 // Emit the abbrevations code (base 1 index.)
2238 Asm->EmitULEB128Bytes(Abbrev->getNumber());
2239 Asm->EOL("Abbreviation Code");
aslc200b112008-08-16 12:57:46 +00002240
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002241 // Emit the abbreviations data.
2242 Abbrev->Emit(*this);
aslc200b112008-08-16 12:57:46 +00002243
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002244 Asm->EOL();
2245 }
aslc200b112008-08-16 12:57:46 +00002246
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002247 // Mark end of abbreviations.
2248 Asm->EmitULEB128Bytes(0); Asm->EOL("EOM(3)");
2249
2250 EmitLabel("abbrev_end", 0);
aslc200b112008-08-16 12:57:46 +00002251
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002252 Asm->EOL();
2253 }
2254 }
2255
Bill Wendling1983a2a2008-07-20 00:11:19 +00002256 /// EmitEndOfLineMatrix - Emit the last address of the section and the end of
2257 /// the line matrix.
aslc200b112008-08-16 12:57:46 +00002258 ///
Bill Wendling1983a2a2008-07-20 00:11:19 +00002259 void EmitEndOfLineMatrix(unsigned SectionEnd) {
2260 // Define last address of section.
2261 Asm->EmitInt8(0); Asm->EOL("Extended Op");
2262 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
2263 Asm->EmitInt8(DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2264 EmitReference("section_end", SectionEnd); Asm->EOL("Section end label");
2265
2266 // Mark end of matrix.
2267 Asm->EmitInt8(0); Asm->EOL("DW_LNE_end_sequence");
2268 Asm->EmitULEB128Bytes(1); Asm->EOL();
2269 Asm->EmitInt8(1); Asm->EOL();
2270 }
2271
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002272 /// EmitDebugLines - Emit source line information.
2273 ///
2274 void EmitDebugLines() {
Bill Wendling1983a2a2008-07-20 00:11:19 +00002275 // If the target is using .loc/.file, the assembler will be emitting the
2276 // .debug_line table automatically.
2277 if (TAI->hasDotLocAndDotFile())
Dan Gohmanc55b34a2007-09-24 21:43:52 +00002278 return;
2279
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002280 // Minimum line delta, thus ranging from -10..(255-10).
2281 const int MinLineDelta = -(DW_LNS_fixed_advance_pc + 1);
2282 // Maximum line delta, thus ranging from -10..(255-10).
2283 const int MaxLineDelta = 255 + MinLineDelta;
2284
2285 // Start the dwarf line section.
2286 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
aslc200b112008-08-16 12:57:46 +00002287
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002288 // Construct the section header.
aslc200b112008-08-16 12:57:46 +00002289
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002290 EmitDifference("line_end", 0, "line_begin", 0, true);
2291 Asm->EOL("Length of Source Line Info");
2292 EmitLabel("line_begin", 0);
aslc200b112008-08-16 12:57:46 +00002293
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002294 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF version number");
aslc200b112008-08-16 12:57:46 +00002295
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002296 EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0, true);
2297 Asm->EOL("Prolog Length");
2298 EmitLabel("line_prolog_begin", 0);
aslc200b112008-08-16 12:57:46 +00002299
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002300 Asm->EmitInt8(1); Asm->EOL("Minimum Instruction Length");
2301
2302 Asm->EmitInt8(1); Asm->EOL("Default is_stmt_start flag");
2303
2304 Asm->EmitInt8(MinLineDelta); Asm->EOL("Line Base Value (Special Opcodes)");
aslc200b112008-08-16 12:57:46 +00002305
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002306 Asm->EmitInt8(MaxLineDelta); Asm->EOL("Line Range Value (Special Opcodes)");
2307
2308 Asm->EmitInt8(-MinLineDelta); Asm->EOL("Special Opcode Base");
aslc200b112008-08-16 12:57:46 +00002309
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002310 // Line number standard opcode encodings argument count
2311 Asm->EmitInt8(0); Asm->EOL("DW_LNS_copy arg count");
2312 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_pc arg count");
2313 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_line arg count");
2314 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_file arg count");
2315 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_column arg count");
2316 Asm->EmitInt8(0); Asm->EOL("DW_LNS_negate_stmt arg count");
2317 Asm->EmitInt8(0); Asm->EOL("DW_LNS_set_basic_block arg count");
2318 Asm->EmitInt8(0); Asm->EOL("DW_LNS_const_add_pc arg count");
2319 Asm->EmitInt8(1); Asm->EOL("DW_LNS_fixed_advance_pc arg count");
2320
2321 const UniqueVector<std::string> &Directories = MMI->getDirectories();
Evan Cheng0eeed442008-07-01 23:18:29 +00002322 const UniqueVector<SourceFileInfo> &SourceFiles = MMI->getSourceFiles();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002323
2324 // Emit directories.
2325 for (unsigned DirectoryID = 1, NDID = Directories.size();
2326 DirectoryID <= NDID; ++DirectoryID) {
2327 Asm->EmitString(Directories[DirectoryID]); Asm->EOL("Directory");
2328 }
2329 Asm->EmitInt8(0); Asm->EOL("End of directories");
aslc200b112008-08-16 12:57:46 +00002330
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002331 // Emit files.
2332 for (unsigned SourceID = 1, NSID = SourceFiles.size();
2333 SourceID <= NSID; ++SourceID) {
2334 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
2335 Asm->EmitString(SourceFile.getName());
2336 Asm->EOL("Source");
2337 Asm->EmitULEB128Bytes(SourceFile.getDirectoryID());
2338 Asm->EOL("Directory #");
2339 Asm->EmitULEB128Bytes(0);
2340 Asm->EOL("Mod date");
2341 Asm->EmitULEB128Bytes(0);
2342 Asm->EOL("File size");
2343 }
2344 Asm->EmitInt8(0); Asm->EOL("End of files");
aslc200b112008-08-16 12:57:46 +00002345
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002346 EmitLabel("line_prolog_end", 0);
aslc200b112008-08-16 12:57:46 +00002347
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002348 // A sequence for each text section.
Bill Wendling1983a2a2008-07-20 00:11:19 +00002349 unsigned SecSrcLinesSize = SectionSourceLines.size();
2350
2351 for (unsigned j = 0; j < SecSrcLinesSize; ++j) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002352 // Isolate current sections line info.
2353 const std::vector<SourceLineInfo> &LineInfos = SectionSourceLines[j];
Evan Cheng0eeed442008-07-01 23:18:29 +00002354
2355 if (VerboseAsm)
2356 Asm->EOL(std::string("Section ") + SectionMap[j + 1]);
2357 else
2358 Asm->EOL();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002359
2360 // Dwarf assumes we start with first line of first source file.
2361 unsigned Source = 1;
2362 unsigned Line = 1;
aslc200b112008-08-16 12:57:46 +00002363
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002364 // Construct rows of the address, source, line, column matrix.
2365 for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
2366 const SourceLineInfo &LineInfo = LineInfos[i];
2367 unsigned LabelID = MMI->MappedLabel(LineInfo.getLabelID());
2368 if (!LabelID) continue;
aslc200b112008-08-16 12:57:46 +00002369
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002370 unsigned SourceID = LineInfo.getSourceID();
2371 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
2372 unsigned DirectoryID = SourceFile.getDirectoryID();
Evan Cheng0eeed442008-07-01 23:18:29 +00002373 if (VerboseAsm)
2374 Asm->EOL(Directories[DirectoryID]
2375 + SourceFile.getName()
2376 + ":"
2377 + utostr_32(LineInfo.getLine()));
2378 else
2379 Asm->EOL();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002380
2381 // Define the line address.
2382 Asm->EmitInt8(0); Asm->EOL("Extended Op");
Dan Gohmancfb72b22007-09-27 23:12:31 +00002383 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002384 Asm->EmitInt8(DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2385 EmitReference("label", LabelID); Asm->EOL("Location label");
aslc200b112008-08-16 12:57:46 +00002386
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002387 // If change of source, then switch to the new source.
2388 if (Source != LineInfo.getSourceID()) {
2389 Source = LineInfo.getSourceID();
2390 Asm->EmitInt8(DW_LNS_set_file); Asm->EOL("DW_LNS_set_file");
2391 Asm->EmitULEB128Bytes(Source); Asm->EOL("New Source");
2392 }
aslc200b112008-08-16 12:57:46 +00002393
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002394 // If change of line.
2395 if (Line != LineInfo.getLine()) {
2396 // Determine offset.
2397 int Offset = LineInfo.getLine() - Line;
2398 int Delta = Offset - MinLineDelta;
aslc200b112008-08-16 12:57:46 +00002399
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002400 // Update line.
2401 Line = LineInfo.getLine();
aslc200b112008-08-16 12:57:46 +00002402
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002403 // If delta is small enough and in range...
2404 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
2405 // ... then use fast opcode.
2406 Asm->EmitInt8(Delta - MinLineDelta); Asm->EOL("Line Delta");
2407 } else {
2408 // ... otherwise use long hand.
2409 Asm->EmitInt8(DW_LNS_advance_line); Asm->EOL("DW_LNS_advance_line");
2410 Asm->EmitSLEB128Bytes(Offset); Asm->EOL("Line Offset");
2411 Asm->EmitInt8(DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2412 }
2413 } else {
2414 // Copy the previous row (different address or source)
2415 Asm->EmitInt8(DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2416 }
2417 }
2418
Bill Wendling1983a2a2008-07-20 00:11:19 +00002419 EmitEndOfLineMatrix(j + 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002420 }
Bill Wendling1983a2a2008-07-20 00:11:19 +00002421
2422 if (SecSrcLinesSize == 0)
2423 // Because we're emitting a debug_line section, we still need a line
2424 // table. The linker and friends expect it to exist. If there's nothing to
2425 // put into it, emit an empty table.
2426 EmitEndOfLineMatrix(1);
aslc200b112008-08-16 12:57:46 +00002427
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002428 EmitLabel("line_end", 0);
aslc200b112008-08-16 12:57:46 +00002429
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002430 Asm->EOL();
2431 }
aslc200b112008-08-16 12:57:46 +00002432
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002433 /// EmitCommonDebugFrame - Emit common frame info into a debug frame section.
2434 ///
2435 void EmitCommonDebugFrame() {
2436 if (!TAI->doesDwarfRequireFrameSection())
2437 return;
2438
2439 int stackGrowth =
2440 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2441 TargetFrameInfo::StackGrowsUp ?
Dan Gohmancfb72b22007-09-27 23:12:31 +00002442 TD->getPointerSize() : -TD->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002443
2444 // Start the dwarf frame section.
2445 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2446
2447 EmitLabel("debug_frame_common", 0);
2448 EmitDifference("debug_frame_common_end", 0,
2449 "debug_frame_common_begin", 0, true);
2450 Asm->EOL("Length of Common Information Entry");
2451
2452 EmitLabel("debug_frame_common_begin", 0);
2453 Asm->EmitInt32((int)DW_CIE_ID);
2454 Asm->EOL("CIE Identifier Tag");
2455 Asm->EmitInt8(DW_CIE_VERSION);
2456 Asm->EOL("CIE Version");
2457 Asm->EmitString("");
2458 Asm->EOL("CIE Augmentation");
2459 Asm->EmitULEB128Bytes(1);
2460 Asm->EOL("CIE Code Alignment Factor");
2461 Asm->EmitSLEB128Bytes(stackGrowth);
aslc200b112008-08-16 12:57:46 +00002462 Asm->EOL("CIE Data Alignment Factor");
Dale Johannesenf5a11532007-11-13 19:13:01 +00002463 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002464 Asm->EOL("CIE RA Column");
aslc200b112008-08-16 12:57:46 +00002465
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002466 std::vector<MachineMove> Moves;
2467 RI->getInitialFrameState(Moves);
2468
Dale Johannesenf5a11532007-11-13 19:13:01 +00002469 EmitFrameMoves(NULL, 0, Moves, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002470
Evan Cheng7e7d1942008-02-29 19:36:59 +00002471 Asm->EmitAlignment(2, 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002472 EmitLabel("debug_frame_common_end", 0);
aslc200b112008-08-16 12:57:46 +00002473
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002474 Asm->EOL();
2475 }
2476
2477 /// EmitFunctionDebugFrame - Emit per function frame info into a debug frame
2478 /// section.
2479 void EmitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo) {
2480 if (!TAI->doesDwarfRequireFrameSection())
2481 return;
aslc200b112008-08-16 12:57:46 +00002482
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002483 // Start the dwarf frame section.
2484 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
aslc200b112008-08-16 12:57:46 +00002485
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002486 EmitDifference("debug_frame_end", DebugFrameInfo.Number,
2487 "debug_frame_begin", DebugFrameInfo.Number, true);
2488 Asm->EOL("Length of Frame Information Entry");
aslc200b112008-08-16 12:57:46 +00002489
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002490 EmitLabel("debug_frame_begin", DebugFrameInfo.Number);
2491
2492 EmitSectionOffset("debug_frame_common", "section_debug_frame",
2493 0, 0, true, false);
2494 Asm->EOL("FDE CIE offset");
2495
2496 EmitReference("func_begin", DebugFrameInfo.Number);
2497 Asm->EOL("FDE initial location");
2498 EmitDifference("func_end", DebugFrameInfo.Number,
2499 "func_begin", DebugFrameInfo.Number);
2500 Asm->EOL("FDE address range");
aslc200b112008-08-16 12:57:46 +00002501
Dale Johannesenf5a11532007-11-13 19:13:01 +00002502 EmitFrameMoves("func_begin", DebugFrameInfo.Number, DebugFrameInfo.Moves, false);
aslc200b112008-08-16 12:57:46 +00002503
Evan Cheng7e7d1942008-02-29 19:36:59 +00002504 Asm->EmitAlignment(2, 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002505 EmitLabel("debug_frame_end", DebugFrameInfo.Number);
2506
2507 Asm->EOL();
2508 }
2509
2510 /// EmitDebugPubNames - Emit visible names into a debug pubnames section.
2511 ///
2512 void EmitDebugPubNames() {
2513 // Start the dwarf pubnames section.
2514 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
aslc200b112008-08-16 12:57:46 +00002515
2516 CompileUnit *Unit = GetBaseCompileUnit();
2517
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002518 EmitDifference("pubnames_end", Unit->getID(),
2519 "pubnames_begin", Unit->getID(), true);
2520 Asm->EOL("Length of Public Names Info");
aslc200b112008-08-16 12:57:46 +00002521
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002522 EmitLabel("pubnames_begin", Unit->getID());
aslc200b112008-08-16 12:57:46 +00002523
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002524 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF Version");
2525
2526 EmitSectionOffset("info_begin", "section_info",
2527 Unit->getID(), 0, true, false);
2528 Asm->EOL("Offset of Compilation Unit Info");
2529
2530 EmitDifference("info_end", Unit->getID(), "info_begin", Unit->getID(),true);
2531 Asm->EOL("Compilation Unit Length");
aslc200b112008-08-16 12:57:46 +00002532
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002533 std::map<std::string, DIE *> &Globals = Unit->getGlobals();
aslc200b112008-08-16 12:57:46 +00002534
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002535 for (std::map<std::string, DIE *>::iterator GI = Globals.begin(),
2536 GE = Globals.end();
2537 GI != GE; ++GI) {
2538 const std::string &Name = GI->first;
2539 DIE * Entity = GI->second;
aslc200b112008-08-16 12:57:46 +00002540
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002541 Asm->EmitInt32(Entity->getOffset()); Asm->EOL("DIE offset");
2542 Asm->EmitString(Name); Asm->EOL("External Name");
2543 }
aslc200b112008-08-16 12:57:46 +00002544
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002545 Asm->EmitInt32(0); Asm->EOL("End Mark");
2546 EmitLabel("pubnames_end", Unit->getID());
aslc200b112008-08-16 12:57:46 +00002547
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002548 Asm->EOL();
2549 }
2550
2551 /// EmitDebugStr - Emit visible names into a debug str section.
2552 ///
2553 void EmitDebugStr() {
2554 // Check to see if it is worth the effort.
2555 if (!StringPool.empty()) {
2556 // Start the dwarf str section.
2557 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
aslc200b112008-08-16 12:57:46 +00002558
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002559 // For each of strings in the string pool.
2560 for (unsigned StringID = 1, N = StringPool.size();
2561 StringID <= N; ++StringID) {
2562 // Emit a label for reference from debug information entries.
2563 EmitLabel("string", StringID);
2564 // Emit the string itself.
2565 const std::string &String = StringPool[StringID];
2566 Asm->EmitString(String); Asm->EOL();
2567 }
aslc200b112008-08-16 12:57:46 +00002568
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002569 Asm->EOL();
2570 }
2571 }
2572
2573 /// EmitDebugLoc - Emit visible names into a debug loc section.
2574 ///
2575 void EmitDebugLoc() {
2576 // Start the dwarf loc section.
2577 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
aslc200b112008-08-16 12:57:46 +00002578
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002579 Asm->EOL();
2580 }
2581
2582 /// EmitDebugARanges - Emit visible names into a debug aranges section.
2583 ///
2584 void EmitDebugARanges() {
2585 // Start the dwarf aranges section.
2586 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
aslc200b112008-08-16 12:57:46 +00002587
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002588 // FIXME - Mock up
2589 #if 0
aslc200b112008-08-16 12:57:46 +00002590 CompileUnit *Unit = GetBaseCompileUnit();
2591
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002592 // Don't include size of length
2593 Asm->EmitInt32(0x1c); Asm->EOL("Length of Address Ranges Info");
aslc200b112008-08-16 12:57:46 +00002594
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002595 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("Dwarf Version");
aslc200b112008-08-16 12:57:46 +00002596
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002597 EmitReference("info_begin", Unit->getID());
2598 Asm->EOL("Offset of Compilation Unit Info");
2599
Dan Gohmancfb72b22007-09-27 23:12:31 +00002600 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Size of Address");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002601
2602 Asm->EmitInt8(0); Asm->EOL("Size of Segment Descriptor");
2603
2604 Asm->EmitInt16(0); Asm->EOL("Pad (1)");
2605 Asm->EmitInt16(0); Asm->EOL("Pad (2)");
2606
2607 // Range 1
2608 EmitReference("text_begin", 0); Asm->EOL("Address");
2609 EmitDifference("text_end", 0, "text_begin", 0, true); Asm->EOL("Length");
2610
2611 Asm->EmitInt32(0); Asm->EOL("EOM (1)");
2612 Asm->EmitInt32(0); Asm->EOL("EOM (2)");
Dan Gohman111540b2007-09-24 21:36:21 +00002613 #endif
aslc200b112008-08-16 12:57:46 +00002614
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002615 Asm->EOL();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002616 }
2617
2618 /// EmitDebugRanges - Emit visible names into a debug ranges section.
2619 ///
2620 void EmitDebugRanges() {
2621 // Start the dwarf ranges section.
2622 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
aslc200b112008-08-16 12:57:46 +00002623
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002624 Asm->EOL();
2625 }
2626
2627 /// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
2628 ///
2629 void EmitDebugMacInfo() {
2630 // Start the dwarf macinfo section.
2631 Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
aslc200b112008-08-16 12:57:46 +00002632
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002633 Asm->EOL();
2634 }
2635
2636 /// ConstructCompileUnitDIEs - Create a compile unit DIE for each source and
2637 /// header file.
2638 void ConstructCompileUnitDIEs() {
2639 const UniqueVector<CompileUnitDesc *> CUW = MMI->getCompileUnits();
aslc200b112008-08-16 12:57:46 +00002640
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002641 for (unsigned i = 1, N = CUW.size(); i <= N; ++i) {
2642 unsigned ID = MMI->RecordSource(CUW[i]);
2643 CompileUnit *Unit = NewCompileUnit(CUW[i], ID);
2644 CompileUnits.push_back(Unit);
2645 }
2646 }
2647
2648 /// ConstructGlobalDIEs - Create DIEs for each of the externally visible
2649 /// global variables.
2650 void ConstructGlobalDIEs() {
Bill Wendling75091f92008-07-03 23:13:02 +00002651 std::vector<GlobalVariableDesc *> GlobalVariables;
2652 MMI->getAnchoredDescriptors<GlobalVariableDesc>(*M, GlobalVariables);
aslc200b112008-08-16 12:57:46 +00002653
Bill Wendling4de8de52008-07-03 22:53:42 +00002654 for (unsigned i = 0, N = GlobalVariables.size(); i < N; ++i) {
2655 GlobalVariableDesc *GVD = GlobalVariables[i];
2656 NewGlobalVariable(GVD);
2657 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002658 }
2659
2660 /// ConstructSubprogramDIEs - Create DIEs for each of the externally visible
2661 /// subprograms.
2662 void ConstructSubprogramDIEs() {
Bill Wendling75091f92008-07-03 23:13:02 +00002663 std::vector<SubprogramDesc *> Subprograms;
2664 MMI->getAnchoredDescriptors<SubprogramDesc>(*M, Subprograms);
aslc200b112008-08-16 12:57:46 +00002665
Bill Wendling4de8de52008-07-03 22:53:42 +00002666 for (unsigned i = 0, N = Subprograms.size(); i < N; ++i) {
2667 SubprogramDesc *SPD = Subprograms[i];
2668 NewSubprogram(SPD);
2669 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002670 }
2671
2672public:
2673 //===--------------------------------------------------------------------===//
2674 // Main entry points.
2675 //
2676 DwarfDebug(std::ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
Chris Lattnerb3876c72007-09-24 03:35:37 +00002677 : Dwarf(OS, A, T, "dbg")
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002678 , CompileUnits()
2679 , AbbreviationsSet(InitAbbreviationsSetSize)
2680 , Abbreviations()
2681 , ValuesSet(InitValuesSetSize)
2682 , Values()
2683 , StringPool()
2684 , DescToUnitMap()
2685 , SectionMap()
2686 , SectionSourceLines()
2687 , didInitial(false)
2688 , shouldEmit(false)
2689 {
2690 }
2691 virtual ~DwarfDebug() {
2692 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i)
2693 delete CompileUnits[i];
2694 for (unsigned j = 0, M = Values.size(); j < M; ++j)
2695 delete Values[j];
2696 }
2697
2698 /// SetModuleInfo - Set machine module information when it's known that pass
2699 /// manager has created it. Set by the target AsmPrinter.
2700 void SetModuleInfo(MachineModuleInfo *mmi) {
2701 // Make sure initial declarations are made.
2702 if (!MMI && mmi->hasDebugInfo()) {
2703 MMI = mmi;
2704 shouldEmit = true;
aslc200b112008-08-16 12:57:46 +00002705
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002706 // Create all the compile unit DIEs.
2707 ConstructCompileUnitDIEs();
aslc200b112008-08-16 12:57:46 +00002708
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002709 // Create DIEs for each of the externally visible global variables.
2710 ConstructGlobalDIEs();
2711
2712 // Create DIEs for each of the externally visible subprograms.
2713 ConstructSubprogramDIEs();
aslc200b112008-08-16 12:57:46 +00002714
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002715 // Prime section data.
2716 SectionMap.insert(TAI->getTextSection());
Dan Gohman6d6c2402007-10-01 22:40:20 +00002717
2718 // Print out .file directives to specify files for .loc directives. These
2719 // are printed out early so that they precede any .loc directives.
2720 if (TAI->hasDotLocAndDotFile()) {
2721 const UniqueVector<SourceFileInfo> &SourceFiles = MMI->getSourceFiles();
2722 const UniqueVector<std::string> &Directories = MMI->getDirectories();
2723 for (unsigned i = 1, e = SourceFiles.size(); i <= e; ++i) {
2724 sys::Path FullPath(Directories[SourceFiles[i].getDirectoryID()]);
2725 bool AppendOk = FullPath.appendComponent(SourceFiles[i].getName());
2726 assert(AppendOk && "Could not append filename to directory!");
2727 Asm->EmitFile(i, FullPath.toString());
2728 Asm->EOL();
2729 }
2730 }
2731
2732 // Emit initial sections
2733 EmitInitial();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002734 }
2735 }
2736
2737 /// BeginModule - Emit all Dwarf sections that should come prior to the
2738 /// content.
2739 void BeginModule(Module *M) {
2740 this->M = M;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002741 }
2742
2743 /// EndModule - Emit all Dwarf sections that should come after the content.
2744 ///
2745 void EndModule() {
2746 if (!ShouldEmitDwarf()) return;
aslc200b112008-08-16 12:57:46 +00002747
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002748 // Standard sections final addresses.
2749 Asm->SwitchToTextSection(TAI->getTextSection());
2750 EmitLabel("text_end", 0);
2751 Asm->SwitchToDataSection(TAI->getDataSection());
2752 EmitLabel("data_end", 0);
aslc200b112008-08-16 12:57:46 +00002753
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002754 // End text sections.
2755 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
2756 Asm->SwitchToTextSection(SectionMap[i].c_str());
2757 EmitLabel("section_end", i);
2758 }
2759
2760 // Emit common frame information.
2761 EmitCommonDebugFrame();
2762
2763 // Emit function debug frame information
2764 for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(),
2765 E = DebugFrames.end(); I != E; ++I)
2766 EmitFunctionDebugFrame(*I);
2767
2768 // Compute DIE offsets and sizes.
2769 SizeAndOffsets();
aslc200b112008-08-16 12:57:46 +00002770
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002771 // Emit all the DIEs into a debug info section
2772 EmitDebugInfo();
aslc200b112008-08-16 12:57:46 +00002773
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002774 // Corresponding abbreviations into a abbrev section.
2775 EmitAbbreviations();
aslc200b112008-08-16 12:57:46 +00002776
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002777 // Emit source line correspondence into a debug line section.
2778 EmitDebugLines();
aslc200b112008-08-16 12:57:46 +00002779
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002780 // Emit info into a debug pubnames section.
2781 EmitDebugPubNames();
aslc200b112008-08-16 12:57:46 +00002782
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002783 // Emit info into a debug str section.
2784 EmitDebugStr();
aslc200b112008-08-16 12:57:46 +00002785
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002786 // Emit info into a debug loc section.
2787 EmitDebugLoc();
aslc200b112008-08-16 12:57:46 +00002788
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002789 // Emit info into a debug aranges section.
2790 EmitDebugARanges();
aslc200b112008-08-16 12:57:46 +00002791
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002792 // Emit info into a debug ranges section.
2793 EmitDebugRanges();
aslc200b112008-08-16 12:57:46 +00002794
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002795 // Emit info into a debug macinfo section.
2796 EmitDebugMacInfo();
2797 }
2798
aslc200b112008-08-16 12:57:46 +00002799 /// BeginFunction - Gather pre-function debug information. Assumes being
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002800 /// emitted immediately after the function entry point.
2801 void BeginFunction(MachineFunction *MF) {
2802 this->MF = MF;
aslc200b112008-08-16 12:57:46 +00002803
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002804 if (!ShouldEmitDwarf()) return;
2805
2806 // Begin accumulating function debug information.
2807 MMI->BeginFunction(MF);
aslc200b112008-08-16 12:57:46 +00002808
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002809 // Assumes in correct section after the entry point.
2810 EmitLabel("func_begin", ++SubprogramCount);
Evan Chenga53c40a2008-02-01 09:10:45 +00002811
2812 // Emit label for the implicitly defined dbg.stoppoint at the start of
2813 // the function.
Andrew Lenharth42f91402008-04-03 17:37:43 +00002814 const std::vector<SourceLineInfo> &LineInfos = MMI->getSourceLines();
2815 if (!LineInfos.empty()) {
2816 const SourceLineInfo &LineInfo = LineInfos[0];
2817 Asm->printLabel(LineInfo.getLabelID());
2818 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002819 }
aslc200b112008-08-16 12:57:46 +00002820
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002821 /// EndFunction - Gather and emit post-function debug information.
2822 ///
2823 void EndFunction() {
2824 if (!ShouldEmitDwarf()) return;
aslc200b112008-08-16 12:57:46 +00002825
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002826 // Define end label for subprogram.
2827 EmitLabel("func_end", SubprogramCount);
aslc200b112008-08-16 12:57:46 +00002828
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002829 // Get function line info.
2830 const std::vector<SourceLineInfo> &LineInfos = MMI->getSourceLines();
2831
2832 if (!LineInfos.empty()) {
2833 // Get section line info.
2834 unsigned ID = SectionMap.insert(Asm->CurrentSection);
2835 if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID);
2836 std::vector<SourceLineInfo> &SectionLineInfos = SectionSourceLines[ID-1];
2837 // Append the function info to section info.
2838 SectionLineInfos.insert(SectionLineInfos.end(),
2839 LineInfos.begin(), LineInfos.end());
2840 }
aslc200b112008-08-16 12:57:46 +00002841
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002842 // Construct scopes for subprogram.
2843 ConstructRootScope(MMI->getRootScope());
2844
2845 DebugFrames.push_back(FunctionDebugFrameInfo(SubprogramCount,
2846 MMI->getFrameMoves()));
2847 }
2848};
2849
2850//===----------------------------------------------------------------------===//
aslc200b112008-08-16 12:57:46 +00002851/// DwarfException - Emits Dwarf exception handling directives.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002852///
2853class DwarfException : public Dwarf {
2854
2855private:
2856 struct FunctionEHFrameInfo {
2857 std::string FnName;
2858 unsigned Number;
2859 unsigned PersonalityIndex;
2860 bool hasCalls;
2861 bool hasLandingPads;
2862 std::vector<MachineMove> Moves;
Dale Johannesen3dadeb32008-01-16 19:59:28 +00002863 const Function * function;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002864
2865 FunctionEHFrameInfo(const std::string &FN, unsigned Num, unsigned P,
2866 bool hC, bool hL,
Dale Johannesenfb3ac732007-11-20 23:24:42 +00002867 const std::vector<MachineMove> &M,
Dale Johannesen3dadeb32008-01-16 19:59:28 +00002868 const Function *f):
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002869 FnName(FN), Number(Num), PersonalityIndex(P),
Dale Johannesen3dadeb32008-01-16 19:59:28 +00002870 hasCalls(hC), hasLandingPads(hL), Moves(M), function (f) { }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002871 };
2872
2873 std::vector<FunctionEHFrameInfo> EHFrames;
Dale Johannesen85535762008-04-02 00:25:04 +00002874
2875 /// shouldEmitTable - Per-function flag to indicate if EH tables should
2876 /// be emitted.
2877 bool shouldEmitTable;
2878
2879 /// shouldEmitMoves - Per-function flag to indicate if frame moves info
2880 /// should be emitted.
2881 bool shouldEmitMoves;
2882
2883 /// shouldEmitTableModule - Per-module flag to indicate if EH tables
2884 /// should be emitted.
2885 bool shouldEmitTableModule;
2886
aslc200b112008-08-16 12:57:46 +00002887 /// shouldEmitFrameModule - Per-module flag to indicate if frame moves
Dale Johannesen85535762008-04-02 00:25:04 +00002888 /// should be emitted.
2889 bool shouldEmitMovesModule;
Duncan Sands96144f92008-05-07 19:11:09 +00002890
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002891 /// EmitCommonEHFrame - Emit the common eh unwind frame.
2892 ///
2893 void EmitCommonEHFrame(const Function *Personality, unsigned Index) {
2894 // Size and sign of stack growth.
2895 int stackGrowth =
2896 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2897 TargetFrameInfo::StackGrowsUp ?
Dan Gohmancfb72b22007-09-27 23:12:31 +00002898 TD->getPointerSize() : -TD->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002899
2900 // Begin eh frame section.
2901 Asm->SwitchToTextSection(TAI->getDwarfEHFrameSection());
2902 O << "EH_frame" << Index << ":\n";
2903 EmitLabel("section_eh_frame", Index);
2904
2905 // Define base labels.
2906 EmitLabel("eh_frame_common", Index);
Duncan Sands96144f92008-05-07 19:11:09 +00002907
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002908 // Define the eh frame length.
2909 EmitDifference("eh_frame_common_end", Index,
2910 "eh_frame_common_begin", Index, true);
2911 Asm->EOL("Length of Common Information Entry");
2912
2913 // EH frame header.
2914 EmitLabel("eh_frame_common_begin", Index);
2915 Asm->EmitInt32((int)0);
2916 Asm->EOL("CIE Identifier Tag");
2917 Asm->EmitInt8(DW_CIE_VERSION);
2918 Asm->EOL("CIE Version");
Duncan Sands96144f92008-05-07 19:11:09 +00002919
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002920 // The personality presence indicates that language specific information
2921 // will show up in the eh frame.
2922 Asm->EmitString(Personality ? "zPLR" : "zR");
2923 Asm->EOL("CIE Augmentation");
Duncan Sands96144f92008-05-07 19:11:09 +00002924
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002925 // Round out reader.
2926 Asm->EmitULEB128Bytes(1);
2927 Asm->EOL("CIE Code Alignment Factor");
2928 Asm->EmitSLEB128Bytes(stackGrowth);
Duncan Sands96144f92008-05-07 19:11:09 +00002929 Asm->EOL("CIE Data Alignment Factor");
Dale Johannesenf5a11532007-11-13 19:13:01 +00002930 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), true));
Duncan Sands96144f92008-05-07 19:11:09 +00002931 Asm->EOL("CIE Return Address Column");
2932
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002933 // If there is a personality, we need to indicate the functions location.
2934 if (Personality) {
2935 Asm->EmitULEB128Bytes(7);
2936 Asm->EOL("Augmentation Size");
Bill Wendling2d369922007-09-11 17:20:55 +00002937
Duncan Sands96144f92008-05-07 19:11:09 +00002938 if (TAI->getNeedsIndirectEncoding()) {
Bill Wendling2d369922007-09-11 17:20:55 +00002939 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4 | DW_EH_PE_indirect);
Duncan Sands96144f92008-05-07 19:11:09 +00002940 Asm->EOL("Personality (pcrel sdata4 indirect)");
2941 } else {
Bill Wendling2d369922007-09-11 17:20:55 +00002942 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
Duncan Sands96144f92008-05-07 19:11:09 +00002943 Asm->EOL("Personality (pcrel sdata4)");
2944 }
Bill Wendling2d369922007-09-11 17:20:55 +00002945
Duncan Sands96144f92008-05-07 19:11:09 +00002946 PrintRelDirective(true);
Bill Wendlingd1bda4f2007-09-11 08:27:17 +00002947 O << TAI->getPersonalityPrefix();
2948 Asm->EmitExternalGlobal((const GlobalVariable *)(Personality));
2949 O << TAI->getPersonalitySuffix();
Duncan Sands4cc39532008-05-08 12:33:11 +00002950 if (strcmp(TAI->getPersonalitySuffix(), "+4@GOTPCREL"))
2951 O << "-" << TAI->getPCSymbol();
Bill Wendlingd1bda4f2007-09-11 08:27:17 +00002952 Asm->EOL("Personality");
Bill Wendling38cb7c92007-08-25 00:51:55 +00002953
Duncan Sands96144f92008-05-07 19:11:09 +00002954 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
2955 Asm->EOL("LSDA Encoding (pcrel sdata4)");
2956 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
2957 Asm->EOL("FDE Encoding (pcrel sdata4)");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002958 } else {
2959 Asm->EmitULEB128Bytes(1);
2960 Asm->EOL("Augmentation Size");
Duncan Sands96144f92008-05-07 19:11:09 +00002961 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
2962 Asm->EOL("FDE Encoding (pcrel sdata4)");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002963 }
2964
2965 // Indicate locations of general callee saved registers in frame.
2966 std::vector<MachineMove> Moves;
2967 RI->getInitialFrameState(Moves);
Dale Johannesenf5a11532007-11-13 19:13:01 +00002968 EmitFrameMoves(NULL, 0, Moves, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002969
Dale Johannesen388f20f2008-04-30 00:43:29 +00002970 // On Darwin the linker honors the alignment of eh_frame, which means it
2971 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise
2972 // you get holes which confuse readers of eh_frame.
aslc200b112008-08-16 12:57:46 +00002973 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
Dale Johannesen837d7ab2008-04-29 22:58:20 +00002974 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002975 EmitLabel("eh_frame_common_end", Index);
Duncan Sands96144f92008-05-07 19:11:09 +00002976
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002977 Asm->EOL();
2978 }
Duncan Sands96144f92008-05-07 19:11:09 +00002979
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002980 /// EmitEHFrame - Emit function exception frame information.
2981 ///
2982 void EmitEHFrame(const FunctionEHFrameInfo &EHFrameInfo) {
Dale Johannesen3dadeb32008-01-16 19:59:28 +00002983 Function::LinkageTypes linkage = EHFrameInfo.function->getLinkage();
2984
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002985 Asm->SwitchToTextSection(TAI->getDwarfEHFrameSection());
2986
2987 // Externally visible entry into the functions eh frame info.
Dale Johannesenfb3ac732007-11-20 23:24:42 +00002988 // If the corresponding function is static, this should not be
2989 // externally visible.
Dale Johannesen3dadeb32008-01-16 19:59:28 +00002990 if (linkage != Function::InternalLinkage) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00002991 if (const char *GlobalEHDirective = TAI->getGlobalEHDirective())
2992 O << GlobalEHDirective << EHFrameInfo.FnName << "\n";
2993 }
2994
Dale Johannesenf09b5992008-01-10 02:03:30 +00002995 // If corresponding function is weak definition, this should be too.
aslc200b112008-08-16 12:57:46 +00002996 if ((linkage == Function::WeakLinkage ||
Dale Johannesen3dadeb32008-01-16 19:59:28 +00002997 linkage == Function::LinkOnceLinkage) &&
Dale Johannesenf09b5992008-01-10 02:03:30 +00002998 TAI->getWeakDefDirective())
2999 O << TAI->getWeakDefDirective() << EHFrameInfo.FnName << "\n";
3000
3001 // If there are no calls then you can't unwind. This may mean we can
3002 // omit the EH Frame, but some environments do not handle weak absolute
aslc200b112008-08-16 12:57:46 +00003003 // symbols.
Dale Johannesenb369e8d2008-04-14 17:54:17 +00003004 // If UnwindTablesMandatory is set we cannot do this optimization; the
Dale Johannesena9b3e482008-04-08 00:10:24 +00003005 // unwind info is to be available for non-EH uses.
Dale Johannesenf09b5992008-01-10 02:03:30 +00003006 if (!EHFrameInfo.hasCalls &&
Dale Johannesenb369e8d2008-04-14 17:54:17 +00003007 !UnwindTablesMandatory &&
aslc200b112008-08-16 12:57:46 +00003008 ((linkage != Function::WeakLinkage &&
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003009 linkage != Function::LinkOnceLinkage) ||
Dale Johannesenf09b5992008-01-10 02:03:30 +00003010 !TAI->getWeakDefDirective() ||
3011 TAI->getSupportsWeakOmittedEHFrame()))
aslc200b112008-08-16 12:57:46 +00003012 {
Bill Wendlingef9211a2007-09-18 01:47:22 +00003013 O << EHFrameInfo.FnName << " = 0\n";
aslc200b112008-08-16 12:57:46 +00003014 // This name has no connection to the function, so it might get
3015 // dead-stripped when the function is not, erroneously. Prohibit
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003016 // dead-stripping unconditionally.
3017 if (const char *UsedDirective = TAI->getUsedDirective())
3018 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003019 } else {
Bill Wendlingef9211a2007-09-18 01:47:22 +00003020 O << EHFrameInfo.FnName << ":\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +00003021
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003022 // EH frame header.
3023 EmitDifference("eh_frame_end", EHFrameInfo.Number,
3024 "eh_frame_begin", EHFrameInfo.Number, true);
3025 Asm->EOL("Length of Frame Information Entry");
aslc200b112008-08-16 12:57:46 +00003026
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003027 EmitLabel("eh_frame_begin", EHFrameInfo.Number);
3028
3029 EmitSectionOffset("eh_frame_begin", "eh_frame_common",
3030 EHFrameInfo.Number, EHFrameInfo.PersonalityIndex,
Dale Johannesen0ebb2432008-03-26 23:31:39 +00003031 true, true, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003032 Asm->EOL("FDE CIE offset");
3033
Duncan Sands96144f92008-05-07 19:11:09 +00003034 EmitReference("eh_func_begin", EHFrameInfo.Number, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003035 Asm->EOL("FDE initial location");
3036 EmitDifference("eh_func_end", EHFrameInfo.Number,
Duncan Sands96144f92008-05-07 19:11:09 +00003037 "eh_func_begin", EHFrameInfo.Number, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003038 Asm->EOL("FDE address range");
Duncan Sands96144f92008-05-07 19:11:09 +00003039
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003040 // If there is a personality and landing pads then point to the language
3041 // specific data area in the exception table.
3042 if (EHFrameInfo.PersonalityIndex) {
Duncan Sands96144f92008-05-07 19:11:09 +00003043 Asm->EmitULEB128Bytes(4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003044 Asm->EOL("Augmentation size");
Duncan Sands96144f92008-05-07 19:11:09 +00003045
3046 if (EHFrameInfo.hasLandingPads)
3047 EmitReference("exception", EHFrameInfo.Number, true, true);
3048 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003049 Asm->EmitInt32((int)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003050 Asm->EOL("Language Specific Data Area");
3051 } else {
3052 Asm->EmitULEB128Bytes(0);
3053 Asm->EOL("Augmentation size");
3054 }
Duncan Sands96144f92008-05-07 19:11:09 +00003055
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003056 // Indicate locations of function specific callee saved registers in
3057 // frame.
Dale Johannesenf5a11532007-11-13 19:13:01 +00003058 EmitFrameMoves("eh_func_begin", EHFrameInfo.Number, EHFrameInfo.Moves, true);
aslc200b112008-08-16 12:57:46 +00003059
Dale Johannesen388f20f2008-04-30 00:43:29 +00003060 // On Darwin the linker honors the alignment of eh_frame, which means it
3061 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise
3062 // you get holes which confuse readers of eh_frame.
aslc200b112008-08-16 12:57:46 +00003063 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
Dale Johannesen837d7ab2008-04-29 22:58:20 +00003064 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003065 EmitLabel("eh_frame_end", EHFrameInfo.Number);
aslc200b112008-08-16 12:57:46 +00003066
3067 // If the function is marked used, this table should be also. We cannot
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003068 // make the mark unconditional in this case, since retaining the table
aslc200b112008-08-16 12:57:46 +00003069 // also retains the function in this case, and there is code around
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003070 // that depends on unused functions (calling undefined externals) being
3071 // dead-stripped to link correctly. Yes, there really is.
3072 if (MMI->getUsedFunctions().count(EHFrameInfo.function))
3073 if (const char *UsedDirective = TAI->getUsedDirective())
3074 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
3075 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003076 }
3077
Duncan Sands241a0c92007-09-05 11:27:52 +00003078 /// EmitExceptionTable - Emit landing pads and actions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003079 ///
3080 /// The general organization of the table is complex, but the basic concepts
3081 /// are easy. First there is a header which describes the location and
3082 /// organization of the three components that follow.
3083 /// 1. The landing pad site information describes the range of code covered
3084 /// by the try. In our case it's an accumulation of the ranges covered
3085 /// by the invokes in the try. There is also a reference to the landing
3086 /// pad that handles the exception once processed. Finally an index into
3087 /// the actions table.
3088 /// 2. The action table, in our case, is composed of pairs of type ids
3089 /// and next action offset. Starting with the action index from the
3090 /// landing pad site, each type Id is checked for a match to the current
3091 /// exception. If it matches then the exception and type id are passed
3092 /// on to the landing pad. Otherwise the next action is looked up. This
3093 /// chain is terminated with a next action of zero. If no type id is
3094 /// found the the frame is unwound and handling continues.
3095 /// 3. Type id table contains references to all the C++ typeinfo for all
3096 /// catches in the function. This tables is reversed indexed base 1.
3097
3098 /// SharedTypeIds - How many leading type ids two landing pads have in common.
3099 static unsigned SharedTypeIds(const LandingPadInfo *L,
3100 const LandingPadInfo *R) {
3101 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
3102 unsigned LSize = LIds.size(), RSize = RIds.size();
3103 unsigned MinSize = LSize < RSize ? LSize : RSize;
3104 unsigned Count = 0;
3105
3106 for (; Count != MinSize; ++Count)
3107 if (LIds[Count] != RIds[Count])
3108 return Count;
3109
3110 return Count;
3111 }
3112
3113 /// PadLT - Order landing pads lexicographically by type id.
3114 static bool PadLT(const LandingPadInfo *L, const LandingPadInfo *R) {
3115 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
3116 unsigned LSize = LIds.size(), RSize = RIds.size();
3117 unsigned MinSize = LSize < RSize ? LSize : RSize;
3118
3119 for (unsigned i = 0; i != MinSize; ++i)
3120 if (LIds[i] != RIds[i])
3121 return LIds[i] < RIds[i];
3122
3123 return LSize < RSize;
3124 }
3125
3126 struct KeyInfo {
3127 static inline unsigned getEmptyKey() { return -1U; }
3128 static inline unsigned getTombstoneKey() { return -2U; }
3129 static unsigned getHashValue(const unsigned &Key) { return Key; }
Chris Lattner92eea072007-09-17 18:34:04 +00003130 static bool isEqual(unsigned LHS, unsigned RHS) { return LHS == RHS; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003131 static bool isPod() { return true; }
3132 };
3133
Duncan Sands241a0c92007-09-05 11:27:52 +00003134 /// ActionEntry - Structure describing an entry in the actions table.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003135 struct ActionEntry {
3136 int ValueForTypeID; // The value to write - may not be equal to the type id.
3137 int NextAction;
3138 struct ActionEntry *Previous;
3139 };
3140
Duncan Sands241a0c92007-09-05 11:27:52 +00003141 /// PadRange - Structure holding a try-range and the associated landing pad.
3142 struct PadRange {
3143 // The index of the landing pad.
3144 unsigned PadIndex;
3145 // The index of the begin and end labels in the landing pad's label lists.
3146 unsigned RangeIndex;
3147 };
3148
3149 typedef DenseMap<unsigned, PadRange, KeyInfo> RangeMapType;
3150
3151 /// CallSiteEntry - Structure describing an entry in the call-site table.
3152 struct CallSiteEntry {
Duncan Sands4ff179f2007-12-19 07:36:31 +00003153 // The 'try-range' is BeginLabel .. EndLabel.
Duncan Sands241a0c92007-09-05 11:27:52 +00003154 unsigned BeginLabel; // zero indicates the start of the function.
3155 unsigned EndLabel; // zero indicates the end of the function.
Duncan Sands4ff179f2007-12-19 07:36:31 +00003156 // The landing pad starts at PadLabel.
Duncan Sands241a0c92007-09-05 11:27:52 +00003157 unsigned PadLabel; // zero indicates that there is no landing pad.
3158 unsigned Action;
3159 };
3160
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003161 void EmitExceptionTable() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003162 const std::vector<GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
3163 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
3164 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
3165 if (PadInfos.empty()) return;
3166
3167 // Sort the landing pads in order of their type ids. This is used to fold
3168 // duplicate actions.
3169 SmallVector<const LandingPadInfo *, 64> LandingPads;
3170 LandingPads.reserve(PadInfos.size());
3171 for (unsigned i = 0, N = PadInfos.size(); i != N; ++i)
3172 LandingPads.push_back(&PadInfos[i]);
3173 std::sort(LandingPads.begin(), LandingPads.end(), PadLT);
3174
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003175 // Negative type ids index into FilterIds, positive type ids index into
3176 // TypeInfos. The value written for a positive type id is just the type
3177 // id itself. For a negative type id, however, the value written is the
3178 // (negative) byte offset of the corresponding FilterIds entry. The byte
3179 // offset is usually equal to the type id, because the FilterIds entries
3180 // are written using a variable width encoding which outputs one byte per
3181 // entry as long as the value written is not too large, but can differ.
3182 // This kind of complication does not occur for positive type ids because
3183 // type infos are output using a fixed width encoding.
3184 // FilterOffsets[i] holds the byte offset corresponding to FilterIds[i].
3185 SmallVector<int, 16> FilterOffsets;
3186 FilterOffsets.reserve(FilterIds.size());
3187 int Offset = -1;
3188 for(std::vector<unsigned>::const_iterator I = FilterIds.begin(),
3189 E = FilterIds.end(); I != E; ++I) {
3190 FilterOffsets.push_back(Offset);
aslc200b112008-08-16 12:57:46 +00003191 Offset -= TargetAsmInfo::getULEB128Size(*I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003192 }
3193
Duncan Sands241a0c92007-09-05 11:27:52 +00003194 // Compute the actions table and gather the first action index for each
3195 // landing pad site.
3196 SmallVector<ActionEntry, 32> Actions;
3197 SmallVector<unsigned, 64> FirstActions;
3198 FirstActions.reserve(LandingPads.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003199
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003200 int FirstAction = 0;
Duncan Sands241a0c92007-09-05 11:27:52 +00003201 unsigned SizeActions = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003202 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
3203 const LandingPadInfo *LP = LandingPads[i];
3204 const std::vector<int> &TypeIds = LP->TypeIds;
3205 const unsigned NumShared = i ? SharedTypeIds(LP, LandingPads[i-1]) : 0;
3206 unsigned SizeSiteActions = 0;
3207
3208 if (NumShared < TypeIds.size()) {
3209 unsigned SizeAction = 0;
3210 ActionEntry *PrevAction = 0;
3211
3212 if (NumShared) {
3213 const unsigned SizePrevIds = LandingPads[i-1]->TypeIds.size();
3214 assert(Actions.size());
3215 PrevAction = &Actions.back();
aslc200b112008-08-16 12:57:46 +00003216 SizeAction = TargetAsmInfo::getSLEB128Size(PrevAction->NextAction) +
3217 TargetAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003218 for (unsigned j = NumShared; j != SizePrevIds; ++j) {
aslc200b112008-08-16 12:57:46 +00003219 SizeAction -=
3220 TargetAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003221 SizeAction += -PrevAction->NextAction;
3222 PrevAction = PrevAction->Previous;
3223 }
3224 }
3225
3226 // Compute the actions.
3227 for (unsigned I = NumShared, M = TypeIds.size(); I != M; ++I) {
3228 int TypeID = TypeIds[I];
3229 assert(-1-TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
3230 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
aslc200b112008-08-16 12:57:46 +00003231 unsigned SizeTypeID = TargetAsmInfo::getSLEB128Size(ValueForTypeID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003232
3233 int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0;
aslc200b112008-08-16 12:57:46 +00003234 SizeAction = SizeTypeID + TargetAsmInfo::getSLEB128Size(NextAction);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003235 SizeSiteActions += SizeAction;
3236
3237 ActionEntry Action = {ValueForTypeID, NextAction, PrevAction};
3238 Actions.push_back(Action);
3239
3240 PrevAction = &Actions.back();
3241 }
3242
3243 // Record the first action of the landing pad site.
3244 FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
3245 } // else identical - re-use previous FirstAction
3246
3247 FirstActions.push_back(FirstAction);
3248
3249 // Compute this sites contribution to size.
3250 SizeActions += SizeSiteActions;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003251 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003252
Duncan Sands4ff179f2007-12-19 07:36:31 +00003253 // Compute the call-site table. The entry for an invoke has a try-range
3254 // containing the call, a non-zero landing pad and an appropriate action.
3255 // The entry for an ordinary call has a try-range containing the call and
3256 // zero for the landing pad and the action. Calls marked 'nounwind' have
3257 // no entry and must not be contained in the try-range of any entry - they
3258 // form gaps in the table. Entries must be ordered by try-range address.
Duncan Sands241a0c92007-09-05 11:27:52 +00003259 SmallVector<CallSiteEntry, 64> CallSites;
3260
3261 RangeMapType PadMap;
Duncan Sands4ff179f2007-12-19 07:36:31 +00003262 // Invokes and nounwind calls have entries in PadMap (due to being bracketed
3263 // by try-range labels when lowered). Ordinary calls do not, so appropriate
3264 // try-ranges for them need be deduced.
Duncan Sands241a0c92007-09-05 11:27:52 +00003265 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
3266 const LandingPadInfo *LandingPad = LandingPads[i];
Duncan Sands4ff179f2007-12-19 07:36:31 +00003267 for (unsigned j = 0, E = LandingPad->BeginLabels.size(); j != E; ++j) {
Duncan Sands241a0c92007-09-05 11:27:52 +00003268 unsigned BeginLabel = LandingPad->BeginLabels[j];
3269 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
3270 PadRange P = { i, j };
3271 PadMap[BeginLabel] = P;
3272 }
3273 }
3274
Duncan Sands4ff179f2007-12-19 07:36:31 +00003275 // The end label of the previous invoke or nounwind try-range.
Duncan Sands241a0c92007-09-05 11:27:52 +00003276 unsigned LastLabel = 0;
Duncan Sands4ff179f2007-12-19 07:36:31 +00003277
3278 // Whether there is a potentially throwing instruction (currently this means
3279 // an ordinary call) between the end of the previous try-range and now.
3280 bool SawPotentiallyThrowing = false;
3281
3282 // Whether the last callsite entry was for an invoke.
3283 bool PreviousIsInvoke = false;
3284
Duncan Sands4ff179f2007-12-19 07:36:31 +00003285 // Visit all instructions in order of address.
Duncan Sands241a0c92007-09-05 11:27:52 +00003286 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
3287 I != E; ++I) {
3288 for (MachineBasicBlock::const_iterator MI = I->begin(), E = I->end();
3289 MI != E; ++MI) {
Dan Gohmanfa607c92008-07-01 00:05:16 +00003290 if (!MI->isLabel()) {
Chris Lattner5b930372008-01-07 07:27:27 +00003291 SawPotentiallyThrowing |= MI->getDesc().isCall();
Duncan Sands241a0c92007-09-05 11:27:52 +00003292 continue;
3293 }
3294
Chris Lattnerda4cff12007-12-30 20:50:28 +00003295 unsigned BeginLabel = MI->getOperand(0).getImm();
Duncan Sands241a0c92007-09-05 11:27:52 +00003296 assert(BeginLabel && "Invalid label!");
Duncan Sands89372f62007-09-05 14:12:46 +00003297
Duncan Sands4ff179f2007-12-19 07:36:31 +00003298 // End of the previous try-range?
Duncan Sands89372f62007-09-05 14:12:46 +00003299 if (BeginLabel == LastLabel)
Duncan Sands4ff179f2007-12-19 07:36:31 +00003300 SawPotentiallyThrowing = false;
Duncan Sands241a0c92007-09-05 11:27:52 +00003301
Duncan Sands4ff179f2007-12-19 07:36:31 +00003302 // Beginning of a new try-range?
Duncan Sands241a0c92007-09-05 11:27:52 +00003303 RangeMapType::iterator L = PadMap.find(BeginLabel);
Duncan Sands241a0c92007-09-05 11:27:52 +00003304 if (L == PadMap.end())
Duncan Sands4ff179f2007-12-19 07:36:31 +00003305 // Nope, it was just some random label.
Duncan Sands241a0c92007-09-05 11:27:52 +00003306 continue;
3307
3308 PadRange P = L->second;
3309 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
3310
3311 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
3312 "Inconsistent landing pad map!");
3313
3314 // If some instruction between the previous try-range and this one may
3315 // throw, create a call-site entry with no landing pad for the region
3316 // between the try-ranges.
Duncan Sands4ff179f2007-12-19 07:36:31 +00003317 if (SawPotentiallyThrowing) {
Duncan Sands241a0c92007-09-05 11:27:52 +00003318 CallSiteEntry Site = {LastLabel, BeginLabel, 0, 0};
3319 CallSites.push_back(Site);
Duncan Sands4ff179f2007-12-19 07:36:31 +00003320 PreviousIsInvoke = false;
Duncan Sands241a0c92007-09-05 11:27:52 +00003321 }
3322
3323 LastLabel = LandingPad->EndLabels[P.RangeIndex];
Duncan Sands4ff179f2007-12-19 07:36:31 +00003324 assert(BeginLabel && LastLabel && "Invalid landing pad!");
Duncan Sands241a0c92007-09-05 11:27:52 +00003325
Duncan Sands4ff179f2007-12-19 07:36:31 +00003326 if (LandingPad->LandingPadLabel) {
3327 // This try-range is for an invoke.
3328 CallSiteEntry Site = {BeginLabel, LastLabel,
3329 LandingPad->LandingPadLabel, FirstActions[P.PadIndex]};
Duncan Sands241a0c92007-09-05 11:27:52 +00003330
Duncan Sands4ff179f2007-12-19 07:36:31 +00003331 // Try to merge with the previous call-site.
3332 if (PreviousIsInvoke) {
Dan Gohman3d436002008-06-21 22:00:54 +00003333 CallSiteEntry &Prev = CallSites.back();
Duncan Sands4ff179f2007-12-19 07:36:31 +00003334 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
3335 // Extend the range of the previous entry.
3336 Prev.EndLabel = Site.EndLabel;
3337 continue;
3338 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003339 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003340
Duncan Sands4ff179f2007-12-19 07:36:31 +00003341 // Otherwise, create a new call-site.
3342 CallSites.push_back(Site);
3343 PreviousIsInvoke = true;
3344 } else {
3345 // Create a gap.
3346 PreviousIsInvoke = false;
3347 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003348 }
3349 }
3350 // If some instruction between the previous try-range and the end of the
3351 // function may throw, create a call-site entry with no landing pad for the
3352 // region following the try-range.
Duncan Sands4ff179f2007-12-19 07:36:31 +00003353 if (SawPotentiallyThrowing) {
Duncan Sands241a0c92007-09-05 11:27:52 +00003354 CallSiteEntry Site = {LastLabel, 0, 0, 0};
3355 CallSites.push_back(Site);
3356 }
3357
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003358 // Final tallies.
Duncan Sands96144f92008-05-07 19:11:09 +00003359
3360 // Call sites.
3361 const unsigned SiteStartSize = sizeof(int32_t); // DW_EH_PE_udata4
3362 const unsigned SiteLengthSize = sizeof(int32_t); // DW_EH_PE_udata4
3363 const unsigned LandingPadSize = sizeof(int32_t); // DW_EH_PE_udata4
3364 unsigned SizeSites = CallSites.size() * (SiteStartSize +
3365 SiteLengthSize +
3366 LandingPadSize);
Duncan Sands241a0c92007-09-05 11:27:52 +00003367 for (unsigned i = 0, e = CallSites.size(); i < e; ++i)
aslc200b112008-08-16 12:57:46 +00003368 SizeSites += TargetAsmInfo::getULEB128Size(CallSites[i].Action);
Duncan Sands241a0c92007-09-05 11:27:52 +00003369
Duncan Sands96144f92008-05-07 19:11:09 +00003370 // Type infos.
3371 const unsigned TypeInfoSize = TD->getPointerSize(); // DW_EH_PE_absptr
3372 unsigned SizeTypes = TypeInfos.size() * TypeInfoSize;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003373
3374 unsigned TypeOffset = sizeof(int8_t) + // Call site format
aslc200b112008-08-16 12:57:46 +00003375 TargetAsmInfo::getULEB128Size(SizeSites) + // Call-site table length
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003376 SizeSites + SizeActions + SizeTypes;
3377
3378 unsigned TotalSize = sizeof(int8_t) + // LPStart format
3379 sizeof(int8_t) + // TType format
aslc200b112008-08-16 12:57:46 +00003380 TargetAsmInfo::getULEB128Size(TypeOffset) + // TType base offset
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003381 TypeOffset;
3382
3383 unsigned SizeAlign = (4 - TotalSize) & 3;
3384
3385 // Begin the exception table.
3386 Asm->SwitchToDataSection(TAI->getDwarfExceptionSection());
3387 O << "GCC_except_table" << SubprogramCount << ":\n";
Evan Cheng7e7d1942008-02-29 19:36:59 +00003388 Asm->EmitAlignment(2, 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003389 for (unsigned i = 0; i != SizeAlign; ++i) {
3390 Asm->EmitInt8(0);
3391 Asm->EOL("Padding");
3392 }
3393 EmitLabel("exception", SubprogramCount);
3394
3395 // Emit the header.
3396 Asm->EmitInt8(DW_EH_PE_omit);
3397 Asm->EOL("LPStart format (DW_EH_PE_omit)");
3398 Asm->EmitInt8(DW_EH_PE_absptr);
3399 Asm->EOL("TType format (DW_EH_PE_absptr)");
3400 Asm->EmitULEB128Bytes(TypeOffset);
3401 Asm->EOL("TType base offset");
3402 Asm->EmitInt8(DW_EH_PE_udata4);
3403 Asm->EOL("Call site format (DW_EH_PE_udata4)");
3404 Asm->EmitULEB128Bytes(SizeSites);
3405 Asm->EOL("Call-site table length");
3406
Duncan Sands241a0c92007-09-05 11:27:52 +00003407 // Emit the landing pad site information.
3408 for (unsigned i = 0; i < CallSites.size(); ++i) {
3409 CallSiteEntry &S = CallSites[i];
3410 const char *BeginTag;
3411 unsigned BeginNumber;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003412
Duncan Sands241a0c92007-09-05 11:27:52 +00003413 if (!S.BeginLabel) {
3414 BeginTag = "eh_func_begin";
3415 BeginNumber = SubprogramCount;
3416 } else {
3417 BeginTag = "label";
3418 BeginNumber = S.BeginLabel;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003419 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003420
Duncan Sands241a0c92007-09-05 11:27:52 +00003421 EmitSectionOffset(BeginTag, "eh_func_begin", BeginNumber, SubprogramCount,
Duncan Sands96144f92008-05-07 19:11:09 +00003422 true, true);
Duncan Sands241a0c92007-09-05 11:27:52 +00003423 Asm->EOL("Region start");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003424
Duncan Sands241a0c92007-09-05 11:27:52 +00003425 if (!S.EndLabel) {
Dale Johannesen4670be42008-01-15 23:24:56 +00003426 EmitDifference("eh_func_end", SubprogramCount, BeginTag, BeginNumber,
Duncan Sands96144f92008-05-07 19:11:09 +00003427 true);
Duncan Sands241a0c92007-09-05 11:27:52 +00003428 } else {
Duncan Sands96144f92008-05-07 19:11:09 +00003429 EmitDifference("label", S.EndLabel, BeginTag, BeginNumber, true);
Duncan Sands241a0c92007-09-05 11:27:52 +00003430 }
3431 Asm->EOL("Region length");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003432
Duncan Sands96144f92008-05-07 19:11:09 +00003433 if (!S.PadLabel)
3434 Asm->EmitInt32(0);
3435 else
Duncan Sands241a0c92007-09-05 11:27:52 +00003436 EmitSectionOffset("label", "eh_func_begin", S.PadLabel, SubprogramCount,
Duncan Sands96144f92008-05-07 19:11:09 +00003437 true, true);
Duncan Sands241a0c92007-09-05 11:27:52 +00003438 Asm->EOL("Landing pad");
3439
3440 Asm->EmitULEB128Bytes(S.Action);
3441 Asm->EOL("Action");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003442 }
3443
3444 // Emit the actions.
3445 for (unsigned I = 0, N = Actions.size(); I != N; ++I) {
3446 ActionEntry &Action = Actions[I];
3447
3448 Asm->EmitSLEB128Bytes(Action.ValueForTypeID);
3449 Asm->EOL("TypeInfo index");
3450 Asm->EmitSLEB128Bytes(Action.NextAction);
3451 Asm->EOL("Next action");
3452 }
3453
3454 // Emit the type ids.
3455 for (unsigned M = TypeInfos.size(); M; --M) {
3456 GlobalVariable *GV = TypeInfos[M - 1];
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00003457
3458 PrintRelDirective();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003459
3460 if (GV)
3461 O << Asm->getGlobalLinkName(GV);
3462 else
3463 O << "0";
Duncan Sands241a0c92007-09-05 11:27:52 +00003464
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003465 Asm->EOL("TypeInfo");
3466 }
3467
3468 // Emit the filter typeids.
3469 for (unsigned j = 0, M = FilterIds.size(); j < M; ++j) {
3470 unsigned TypeID = FilterIds[j];
3471 Asm->EmitULEB128Bytes(TypeID);
3472 Asm->EOL("Filter TypeInfo index");
3473 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003474
Evan Cheng7e7d1942008-02-29 19:36:59 +00003475 Asm->EmitAlignment(2, 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003476 }
3477
3478public:
3479 //===--------------------------------------------------------------------===//
3480 // Main entry points.
3481 //
3482 DwarfException(std::ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
Chris Lattnerb3876c72007-09-24 03:35:37 +00003483 : Dwarf(OS, A, T, "eh")
Dale Johannesen85535762008-04-02 00:25:04 +00003484 , shouldEmitTable(false)
3485 , shouldEmitMoves(false)
3486 , shouldEmitTableModule(false)
3487 , shouldEmitMovesModule(false)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003488 {}
aslc200b112008-08-16 12:57:46 +00003489
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003490 virtual ~DwarfException() {}
3491
3492 /// SetModuleInfo - Set machine module information when it's known that pass
3493 /// manager has created it. Set by the target AsmPrinter.
3494 void SetModuleInfo(MachineModuleInfo *mmi) {
3495 MMI = mmi;
3496 }
3497
3498 /// BeginModule - Emit all exception information that should come prior to the
3499 /// content.
3500 void BeginModule(Module *M) {
3501 this->M = M;
3502 }
3503
3504 /// EndModule - Emit all exception information that should come after the
3505 /// content.
3506 void EndModule() {
Dale Johannesen85535762008-04-02 00:25:04 +00003507 if (shouldEmitMovesModule || shouldEmitTableModule) {
3508 const std::vector<Function *> Personalities = MMI->getPersonalities();
3509 for (unsigned i =0; i < Personalities.size(); ++i)
3510 EmitCommonEHFrame(Personalities[i], i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003511
Dale Johannesen85535762008-04-02 00:25:04 +00003512 for (std::vector<FunctionEHFrameInfo>::iterator I = EHFrames.begin(),
3513 E = EHFrames.end(); I != E; ++I)
3514 EmitEHFrame(*I);
3515 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003516 }
3517
aslc200b112008-08-16 12:57:46 +00003518 /// BeginFunction - Gather pre-function exception information. Assumes being
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003519 /// emitted immediately after the function entry point.
3520 void BeginFunction(MachineFunction *MF) {
3521 this->MF = MF;
Dale Johannesen85535762008-04-02 00:25:04 +00003522 shouldEmitTable = shouldEmitMoves = false;
Dale Johannesen62f0a6d2008-04-02 17:04:45 +00003523 if (MMI && TAI->doesSupportExceptionHandling()) {
Dale Johannesen85535762008-04-02 00:25:04 +00003524
3525 // Map all labels and get rid of any dead landing pads.
3526 MMI->TidyLandingPads();
3527 // If any landing pads survive, we need an EH table.
3528 if (MMI->getLandingPads().size())
3529 shouldEmitTable = true;
3530
3531 // See if we need frame move info.
Duncan Sandscbc28b12008-07-04 09:55:48 +00003532 if (!MF->getFunction()->doesNotThrow() || UnwindTablesMandatory)
Dale Johannesen85535762008-04-02 00:25:04 +00003533 shouldEmitMoves = true;
3534
3535 if (shouldEmitMoves || shouldEmitTable)
3536 // Assumes in correct section after the entry point.
3537 EmitLabel("eh_func_begin", ++SubprogramCount);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003538 }
Dale Johannesen85535762008-04-02 00:25:04 +00003539 shouldEmitTableModule |= shouldEmitTable;
3540 shouldEmitMovesModule |= shouldEmitMoves;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003541 }
3542
3543 /// EndFunction - Gather and emit post-function exception information.
3544 ///
3545 void EndFunction() {
Dale Johannesen85535762008-04-02 00:25:04 +00003546 if (shouldEmitMoves || shouldEmitTable) {
3547 EmitLabel("eh_func_end", SubprogramCount);
3548 EmitExceptionTable();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003549
Dale Johannesen85535762008-04-02 00:25:04 +00003550 // Save EH frame information
3551 EHFrames.
3552 push_back(FunctionEHFrameInfo(getAsm()->getCurrentFunctionEHName(MF),
Bill Wendlingef9211a2007-09-18 01:47:22 +00003553 SubprogramCount,
3554 MMI->getPersonalityIndex(),
3555 MF->getFrameInfo()->hasCalls(),
3556 !MMI->getLandingPads().empty(),
Dale Johannesenfb3ac732007-11-20 23:24:42 +00003557 MMI->getFrameMoves(),
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003558 MF->getFunction()));
Dale Johannesen85535762008-04-02 00:25:04 +00003559 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003560 }
3561};
3562
3563} // End of namespace llvm
3564
3565//===----------------------------------------------------------------------===//
3566
3567/// Emit - Print the abbreviation using the specified Dwarf writer.
3568///
3569void DIEAbbrev::Emit(const DwarfDebug &DD) const {
3570 // Emit its Dwarf tag type.
3571 DD.getAsm()->EmitULEB128Bytes(Tag);
3572 DD.getAsm()->EOL(TagString(Tag));
aslc200b112008-08-16 12:57:46 +00003573
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003574 // Emit whether it has children DIEs.
3575 DD.getAsm()->EmitULEB128Bytes(ChildrenFlag);
3576 DD.getAsm()->EOL(ChildrenString(ChildrenFlag));
aslc200b112008-08-16 12:57:46 +00003577
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003578 // For each attribute description.
3579 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3580 const DIEAbbrevData &AttrData = Data[i];
aslc200b112008-08-16 12:57:46 +00003581
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003582 // Emit attribute type.
3583 DD.getAsm()->EmitULEB128Bytes(AttrData.getAttribute());
3584 DD.getAsm()->EOL(AttributeString(AttrData.getAttribute()));
aslc200b112008-08-16 12:57:46 +00003585
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003586 // Emit form type.
3587 DD.getAsm()->EmitULEB128Bytes(AttrData.getForm());
3588 DD.getAsm()->EOL(FormEncodingString(AttrData.getForm()));
3589 }
3590
3591 // Mark end of abbreviation.
3592 DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(1)");
3593 DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(2)");
3594}
3595
3596#ifndef NDEBUG
3597void DIEAbbrev::print(std::ostream &O) {
3598 O << "Abbreviation @"
3599 << std::hex << (intptr_t)this << std::dec
3600 << " "
3601 << TagString(Tag)
3602 << " "
3603 << ChildrenString(ChildrenFlag)
3604 << "\n";
aslc200b112008-08-16 12:57:46 +00003605
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003606 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3607 O << " "
3608 << AttributeString(Data[i].getAttribute())
3609 << " "
3610 << FormEncodingString(Data[i].getForm())
3611 << "\n";
3612 }
3613}
3614void DIEAbbrev::dump() { print(cerr); }
3615#endif
3616
3617//===----------------------------------------------------------------------===//
3618
3619#ifndef NDEBUG
3620void DIEValue::dump() {
3621 print(cerr);
3622}
3623#endif
3624
3625//===----------------------------------------------------------------------===//
3626
3627/// EmitValue - Emit integer of appropriate size.
3628///
3629void DIEInteger::EmitValue(DwarfDebug &DD, unsigned Form) {
3630 switch (Form) {
3631 case DW_FORM_flag: // Fall thru
3632 case DW_FORM_ref1: // Fall thru
3633 case DW_FORM_data1: DD.getAsm()->EmitInt8(Integer); break;
3634 case DW_FORM_ref2: // Fall thru
3635 case DW_FORM_data2: DD.getAsm()->EmitInt16(Integer); break;
3636 case DW_FORM_ref4: // Fall thru
3637 case DW_FORM_data4: DD.getAsm()->EmitInt32(Integer); break;
3638 case DW_FORM_ref8: // Fall thru
3639 case DW_FORM_data8: DD.getAsm()->EmitInt64(Integer); break;
3640 case DW_FORM_udata: DD.getAsm()->EmitULEB128Bytes(Integer); break;
3641 case DW_FORM_sdata: DD.getAsm()->EmitSLEB128Bytes(Integer); break;
3642 default: assert(0 && "DIE Value form not supported yet"); break;
3643 }
3644}
3645
3646/// SizeOf - Determine size of integer value in bytes.
3647///
3648unsigned DIEInteger::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3649 switch (Form) {
3650 case DW_FORM_flag: // Fall thru
3651 case DW_FORM_ref1: // Fall thru
3652 case DW_FORM_data1: return sizeof(int8_t);
3653 case DW_FORM_ref2: // Fall thru
3654 case DW_FORM_data2: return sizeof(int16_t);
3655 case DW_FORM_ref4: // Fall thru
3656 case DW_FORM_data4: return sizeof(int32_t);
3657 case DW_FORM_ref8: // Fall thru
3658 case DW_FORM_data8: return sizeof(int64_t);
aslc200b112008-08-16 12:57:46 +00003659 case DW_FORM_udata: return TargetAsmInfo::getULEB128Size(Integer);
3660 case DW_FORM_sdata: return TargetAsmInfo::getSLEB128Size(Integer);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003661 default: assert(0 && "DIE Value form not supported yet"); break;
3662 }
3663 return 0;
3664}
3665
3666//===----------------------------------------------------------------------===//
3667
3668/// EmitValue - Emit string value.
3669///
3670void DIEString::EmitValue(DwarfDebug &DD, unsigned Form) {
3671 DD.getAsm()->EmitString(String);
3672}
3673
3674//===----------------------------------------------------------------------===//
3675
3676/// EmitValue - Emit label value.
3677///
3678void DIEDwarfLabel::EmitValue(DwarfDebug &DD, unsigned Form) {
Dan Gohman597b4842007-09-28 16:50:28 +00003679 bool IsSmall = Form == DW_FORM_data4;
3680 DD.EmitReference(Label, false, IsSmall);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003681}
3682
3683/// SizeOf - Determine size of label value in bytes.
3684///
3685unsigned DIEDwarfLabel::SizeOf(const DwarfDebug &DD, unsigned Form) const {
Dan Gohman597b4842007-09-28 16:50:28 +00003686 if (Form == DW_FORM_data4) return 4;
Dan Gohmancfb72b22007-09-27 23:12:31 +00003687 return DD.getTargetData()->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003688}
3689
3690//===----------------------------------------------------------------------===//
3691
3692/// EmitValue - Emit label value.
3693///
3694void DIEObjectLabel::EmitValue(DwarfDebug &DD, unsigned Form) {
Dan Gohman597b4842007-09-28 16:50:28 +00003695 bool IsSmall = Form == DW_FORM_data4;
3696 DD.EmitReference(Label, false, IsSmall);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003697}
3698
3699/// SizeOf - Determine size of label value in bytes.
3700///
3701unsigned DIEObjectLabel::SizeOf(const DwarfDebug &DD, unsigned Form) const {
Dan Gohman597b4842007-09-28 16:50:28 +00003702 if (Form == DW_FORM_data4) return 4;
Dan Gohmancfb72b22007-09-27 23:12:31 +00003703 return DD.getTargetData()->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003704}
aslc200b112008-08-16 12:57:46 +00003705
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003706//===----------------------------------------------------------------------===//
3707
3708/// EmitValue - Emit delta value.
3709///
Argiris Kirtzidis03449652008-06-18 19:27:37 +00003710void DIESectionOffset::EmitValue(DwarfDebug &DD, unsigned Form) {
3711 bool IsSmall = Form == DW_FORM_data4;
3712 DD.EmitSectionOffset(Label.Tag, Section.Tag,
3713 Label.Number, Section.Number, IsSmall, IsEH, UseSet);
3714}
3715
3716/// SizeOf - Determine size of delta value in bytes.
3717///
3718unsigned DIESectionOffset::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3719 if (Form == DW_FORM_data4) return 4;
3720 return DD.getTargetData()->getPointerSize();
3721}
aslc200b112008-08-16 12:57:46 +00003722
Argiris Kirtzidis03449652008-06-18 19:27:37 +00003723//===----------------------------------------------------------------------===//
3724
3725/// EmitValue - Emit delta value.
3726///
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003727void DIEDelta::EmitValue(DwarfDebug &DD, unsigned Form) {
3728 bool IsSmall = Form == DW_FORM_data4;
3729 DD.EmitDifference(LabelHi, LabelLo, IsSmall);
3730}
3731
3732/// SizeOf - Determine size of delta value in bytes.
3733///
3734unsigned DIEDelta::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3735 if (Form == DW_FORM_data4) return 4;
Dan Gohmancfb72b22007-09-27 23:12:31 +00003736 return DD.getTargetData()->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003737}
3738
3739//===----------------------------------------------------------------------===//
3740
3741/// EmitValue - Emit debug information entry offset.
3742///
3743void DIEntry::EmitValue(DwarfDebug &DD, unsigned Form) {
3744 DD.getAsm()->EmitInt32(Entry->getOffset());
3745}
aslc200b112008-08-16 12:57:46 +00003746
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003747//===----------------------------------------------------------------------===//
3748
3749/// ComputeSize - calculate the size of the block.
3750///
3751unsigned DIEBlock::ComputeSize(DwarfDebug &DD) {
3752 if (!Size) {
Owen Anderson88dd6232008-06-24 21:44:59 +00003753 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData();
aslc200b112008-08-16 12:57:46 +00003754
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003755 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
3756 Size += Values[i]->SizeOf(DD, AbbrevData[i].getForm());
3757 }
3758 }
3759 return Size;
3760}
3761
3762/// EmitValue - Emit block data.
3763///
3764void DIEBlock::EmitValue(DwarfDebug &DD, unsigned Form) {
3765 switch (Form) {
3766 case DW_FORM_block1: DD.getAsm()->EmitInt8(Size); break;
3767 case DW_FORM_block2: DD.getAsm()->EmitInt16(Size); break;
3768 case DW_FORM_block4: DD.getAsm()->EmitInt32(Size); break;
3769 case DW_FORM_block: DD.getAsm()->EmitULEB128Bytes(Size); break;
3770 default: assert(0 && "Improper form for block"); break;
3771 }
aslc200b112008-08-16 12:57:46 +00003772
Owen Anderson88dd6232008-06-24 21:44:59 +00003773 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003774
3775 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
3776 DD.getAsm()->EOL();
3777 Values[i]->EmitValue(DD, AbbrevData[i].getForm());
3778 }
3779}
3780
3781/// SizeOf - Determine size of block data in bytes.
3782///
3783unsigned DIEBlock::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3784 switch (Form) {
3785 case DW_FORM_block1: return Size + sizeof(int8_t);
3786 case DW_FORM_block2: return Size + sizeof(int16_t);
3787 case DW_FORM_block4: return Size + sizeof(int32_t);
aslc200b112008-08-16 12:57:46 +00003788 case DW_FORM_block: return Size + TargetAsmInfo::getULEB128Size(Size);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003789 default: assert(0 && "Improper form for block"); break;
3790 }
3791 return 0;
3792}
3793
3794//===----------------------------------------------------------------------===//
3795/// DIE Implementation
3796
3797DIE::~DIE() {
3798 for (unsigned i = 0, N = Children.size(); i < N; ++i)
3799 delete Children[i];
3800}
aslc200b112008-08-16 12:57:46 +00003801
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003802/// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
3803///
3804void DIE::AddSiblingOffset() {
3805 DIEInteger *DI = new DIEInteger(0);
3806 Values.insert(Values.begin(), DI);
3807 Abbrev.AddFirstAttribute(DW_AT_sibling, DW_FORM_ref4);
3808}
3809
3810/// Profile - Used to gather unique data for the value folding set.
3811///
3812void DIE::Profile(FoldingSetNodeID &ID) {
3813 Abbrev.Profile(ID);
aslc200b112008-08-16 12:57:46 +00003814
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003815 for (unsigned i = 0, N = Children.size(); i < N; ++i)
3816 ID.AddPointer(Children[i]);
3817
3818 for (unsigned j = 0, M = Values.size(); j < M; ++j)
3819 ID.AddPointer(Values[j]);
3820}
3821
3822#ifndef NDEBUG
3823void DIE::print(std::ostream &O, unsigned IncIndent) {
3824 static unsigned IndentCount = 0;
3825 IndentCount += IncIndent;
3826 const std::string Indent(IndentCount, ' ');
3827 bool isBlock = Abbrev.getTag() == 0;
aslc200b112008-08-16 12:57:46 +00003828
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003829 if (!isBlock) {
3830 O << Indent
3831 << "Die: "
3832 << "0x" << std::hex << (intptr_t)this << std::dec
3833 << ", Offset: " << Offset
3834 << ", Size: " << Size
aslc200b112008-08-16 12:57:46 +00003835 << "\n";
3836
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003837 O << Indent
3838 << TagString(Abbrev.getTag())
3839 << " "
3840 << ChildrenString(Abbrev.getChildrenFlag());
3841 } else {
3842 O << "Size: " << Size;
3843 }
3844 O << "\n";
3845
Owen Anderson88dd6232008-06-24 21:44:59 +00003846 const SmallVector<DIEAbbrevData, 8> &Data = Abbrev.getData();
aslc200b112008-08-16 12:57:46 +00003847
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003848 IndentCount += 2;
3849 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3850 O << Indent;
Bill Wendlingdc7b5a52008-07-22 00:28:47 +00003851
3852 if (!isBlock)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003853 O << AttributeString(Data[i].getAttribute());
Bill Wendlingdc7b5a52008-07-22 00:28:47 +00003854 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003855 O << "Blk[" << i << "]";
Bill Wendlingdc7b5a52008-07-22 00:28:47 +00003856
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003857 O << " "
3858 << FormEncodingString(Data[i].getForm())
3859 << " ";
3860 Values[i]->print(O);
3861 O << "\n";
3862 }
3863 IndentCount -= 2;
3864
3865 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
3866 Children[j]->print(O, 4);
3867 }
aslc200b112008-08-16 12:57:46 +00003868
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003869 if (!isBlock) O << "\n";
3870 IndentCount -= IncIndent;
3871}
3872
3873void DIE::dump() {
3874 print(cerr);
3875}
3876#endif
3877
3878//===----------------------------------------------------------------------===//
3879/// DwarfWriter Implementation
3880///
3881
3882DwarfWriter::DwarfWriter(std::ostream &OS, AsmPrinter *A,
3883 const TargetAsmInfo *T) {
3884 DE = new DwarfException(OS, A, T);
3885 DD = new DwarfDebug(OS, A, T);
3886}
3887
3888DwarfWriter::~DwarfWriter() {
3889 delete DE;
3890 delete DD;
3891}
3892
3893/// SetModuleInfo - Set machine module info when it's known that pass manager
3894/// has created it. Set by the target AsmPrinter.
3895void DwarfWriter::SetModuleInfo(MachineModuleInfo *MMI) {
3896 DD->SetModuleInfo(MMI);
3897 DE->SetModuleInfo(MMI);
3898}
3899
3900/// BeginModule - Emit all Dwarf sections that should come prior to the
3901/// content.
3902void DwarfWriter::BeginModule(Module *M) {
3903 DE->BeginModule(M);
3904 DD->BeginModule(M);
3905}
3906
3907/// EndModule - Emit all Dwarf sections that should come after the content.
3908///
3909void DwarfWriter::EndModule() {
3910 DE->EndModule();
3911 DD->EndModule();
3912}
3913
aslc200b112008-08-16 12:57:46 +00003914/// BeginFunction - Gather pre-function debug information. Assumes being
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003915/// emitted immediately after the function entry point.
3916void DwarfWriter::BeginFunction(MachineFunction *MF) {
3917 DE->BeginFunction(MF);
3918 DD->BeginFunction(MF);
3919}
3920
3921/// EndFunction - Gather and emit post-function debug information.
3922///
3923void DwarfWriter::EndFunction() {
3924 DD->EndFunction();
3925 DE->EndFunction();
aslc200b112008-08-16 12:57:46 +00003926
Bill Wendling5b4796a2008-07-22 00:53:37 +00003927 if (MachineModuleInfo *MMI = DD->getMMI() ? DD->getMMI() : DE->getMMI())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003928 // Clear function debug information.
3929 MMI->EndFunction();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003930}