blob: a2934bd8c75c8ff15be5005ec51800d80623dadd [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"
Devang Patelb3907da2009-01-05 23:03:32 +000021#include "llvm/DerivedTypes.h"
Devang Patel2da0cc42009-01-15 23:41:32 +000022#include "llvm/Constants.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include "llvm/CodeGen/AsmPrinter.h"
24#include "llvm/CodeGen/MachineModuleInfo.h"
25#include "llvm/CodeGen/MachineFrameInfo.h"
26#include "llvm/CodeGen/MachineLocation.h"
Devang Patelfc187162009-01-05 17:57:47 +000027#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/Support/Debug.h"
29#include "llvm/Support/Dwarf.h"
30#include "llvm/Support/CommandLine.h"
31#include "llvm/Support/DataTypes.h"
32#include "llvm/Support/Mangler.h"
Owen Anderson847b99b2008-08-21 00:14:44 +000033#include "llvm/Support/raw_ostream.h"
Dan Gohman80bbde72007-09-24 21:32:18 +000034#include "llvm/System/Path.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000036#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037#include "llvm/Target/TargetData.h"
38#include "llvm/Target/TargetFrameInfo.h"
39#include "llvm/Target/TargetInstrInfo.h"
40#include "llvm/Target/TargetMachine.h"
41#include "llvm/Target/TargetOptions.h"
42#include <ostream>
43#include <string>
44using namespace llvm;
45using namespace llvm::dwarf;
46
Devang Patelaa1e8432009-01-08 23:40:34 +000047static RegisterPass<DwarfWriter>
48X("dwarfwriter", "DWARF Information Writer");
49char DwarfWriter::ID = 0;
50
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051namespace llvm {
aslc200b112008-08-16 12:57:46 +000052
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053//===----------------------------------------------------------------------===//
54
55/// Configuration values for initial hash set sizes (log2).
56///
57static const unsigned InitDiesSetSize = 9; // 512
58static const unsigned InitAbbreviationsSetSize = 9; // 512
59static const unsigned InitValuesSetSize = 9; // 512
60
61//===----------------------------------------------------------------------===//
62/// Forward declarations.
63///
64class DIE;
65class DIEValue;
66
67//===----------------------------------------------------------------------===//
Devang Patelb3907da2009-01-05 23:03:32 +000068/// Utility routines.
69///
Devang Patelb28de842009-01-17 08:01:33 +000070/// getGlobalVariablesUsing - Return all of the GlobalVariables which have the
71/// specified value in their initializer somewhere.
Devang Patelb3907da2009-01-05 23:03:32 +000072static void
73getGlobalVariablesUsing(Value *V, std::vector<GlobalVariable*> &Result) {
Devang Patelb28de842009-01-17 08:01:33 +000074 // Scan though value users.
Devang Patelb3907da2009-01-05 23:03:32 +000075 for (Value::use_iterator I = V->use_begin(), E = V->use_end(); I != E; ++I) {
76 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(*I)) {
Devang Patelb28de842009-01-17 08:01:33 +000077 // If the user is a GlobalVariable then add to result.
Devang Patelb3907da2009-01-05 23:03:32 +000078 Result.push_back(GV);
79 } else if (Constant *C = dyn_cast<Constant>(*I)) {
Devang Patelb28de842009-01-17 08:01:33 +000080 // If the user is a constant variable then scan its users.
Devang Patelb3907da2009-01-05 23:03:32 +000081 getGlobalVariablesUsing(C, Result);
82 }
83 }
84}
85
Devang Patelb28de842009-01-17 08:01:33 +000086/// getGlobalVariablesUsing - Return all of the GlobalVariables that use the
87/// named GlobalVariable.
Devang Patelb3907da2009-01-05 23:03:32 +000088static void
89getGlobalVariablesUsing(Module &M, const std::string &RootName,
90 std::vector<GlobalVariable*> &Result) {
91 std::vector<const Type*> FieldTypes;
92 FieldTypes.push_back(Type::Int32Ty);
93 FieldTypes.push_back(Type::Int32Ty);
94
Devang Patelb28de842009-01-17 08:01:33 +000095 // Get the GlobalVariable root.
Devang Patelb3907da2009-01-05 23:03:32 +000096 GlobalVariable *UseRoot = M.getGlobalVariable(RootName,
97 StructType::get(FieldTypes));
98
Devang Patelb28de842009-01-17 08:01:33 +000099 // If present and linkonce then scan for users.
Devang Patelb3907da2009-01-05 23:03:32 +0000100 if (UseRoot && UseRoot->hasLinkOnceLinkage())
101 getGlobalVariablesUsing(UseRoot, Result);
102}
103
Devang Patel2da0cc42009-01-15 23:41:32 +0000104/// getGlobalVariable - Return either a direct or cast Global value.
105///
106static GlobalVariable *getGlobalVariable(Value *V) {
107 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
108 return GV;
109 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
110 if (CE->getOpcode() == Instruction::BitCast) {
111 return dyn_cast<GlobalVariable>(CE->getOperand(0));
112 } else if (CE->getOpcode() == Instruction::GetElementPtr) {
113 for (unsigned int i=1; i<CE->getNumOperands(); i++) {
114 if (!CE->getOperand(i)->isNullValue())
115 return NULL;
116 }
117 return dyn_cast<GlobalVariable>(CE->getOperand(0));
118 }
119 }
120 return NULL;
121}
122
Devang Patelb3907da2009-01-05 23:03:32 +0000123//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124/// DWLabel - Labels are used to track locations in the assembler file.
aslc200b112008-08-16 12:57:46 +0000125/// Labels appear in the form @verbatim <prefix><Tag><Number> @endverbatim,
126/// where the tag is a category of label (Ex. location) and number is a value
Reid Spencer37c7cea2007-08-05 20:06:04 +0000127/// unique in that category.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128class DWLabel {
129public:
130 /// Tag - Label category tag. Should always be a staticly declared C string.
131 ///
132 const char *Tag;
aslc200b112008-08-16 12:57:46 +0000133
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134 /// Number - Value to make label unique.
135 ///
136 unsigned Number;
137
138 DWLabel(const char *T, unsigned N) : Tag(T), Number(N) {}
aslc200b112008-08-16 12:57:46 +0000139
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000140 void Profile(FoldingSetNodeID &ID) const {
141 ID.AddString(std::string(Tag));
142 ID.AddInteger(Number);
143 }
aslc200b112008-08-16 12:57:46 +0000144
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145#ifndef NDEBUG
146 void print(std::ostream *O) const {
147 if (O) print(*O);
148 }
149 void print(std::ostream &O) const {
150 O << "." << Tag;
151 if (Number) O << Number;
152 }
153#endif
154};
155
156//===----------------------------------------------------------------------===//
157/// DIEAbbrevData - Dwarf abbreviation data, describes the one attribute of a
158/// Dwarf abbreviation.
159class DIEAbbrevData {
160private:
161 /// Attribute - Dwarf attribute code.
162 ///
163 unsigned Attribute;
aslc200b112008-08-16 12:57:46 +0000164
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165 /// Form - Dwarf form code.
aslc200b112008-08-16 12:57:46 +0000166 ///
167 unsigned Form;
168
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169public:
170 DIEAbbrevData(unsigned A, unsigned F)
171 : Attribute(A)
172 , Form(F)
173 {}
aslc200b112008-08-16 12:57:46 +0000174
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 // Accessors.
176 unsigned getAttribute() const { return Attribute; }
177 unsigned getForm() const { return Form; }
178
179 /// Profile - Used to gather unique data for the abbreviation folding set.
180 ///
181 void Profile(FoldingSetNodeID &ID)const {
182 ID.AddInteger(Attribute);
183 ID.AddInteger(Form);
184 }
185};
186
187//===----------------------------------------------------------------------===//
188/// DIEAbbrev - Dwarf abbreviation, describes the organization of a debug
189/// information object.
190class DIEAbbrev : public FoldingSetNode {
191private:
192 /// Tag - Dwarf tag code.
193 ///
194 unsigned Tag;
aslc200b112008-08-16 12:57:46 +0000195
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 /// Unique number for node.
197 ///
198 unsigned Number;
199
200 /// ChildrenFlag - Dwarf children flag.
201 ///
202 unsigned ChildrenFlag;
203
204 /// Data - Raw data bytes for abbreviation.
205 ///
Owen Anderson88dd6232008-06-24 21:44:59 +0000206 SmallVector<DIEAbbrevData, 8> Data;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207
208public:
209
210 DIEAbbrev(unsigned T, unsigned C)
211 : Tag(T)
212 , ChildrenFlag(C)
213 , Data()
214 {}
215 ~DIEAbbrev() {}
aslc200b112008-08-16 12:57:46 +0000216
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 // Accessors.
218 unsigned getTag() const { return Tag; }
219 unsigned getNumber() const { return Number; }
220 unsigned getChildrenFlag() const { return ChildrenFlag; }
Owen Anderson88dd6232008-06-24 21:44:59 +0000221 const SmallVector<DIEAbbrevData, 8> &getData() const { return Data; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000222 void setTag(unsigned T) { Tag = T; }
223 void setChildrenFlag(unsigned CF) { ChildrenFlag = CF; }
224 void setNumber(unsigned N) { Number = N; }
aslc200b112008-08-16 12:57:46 +0000225
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 /// AddAttribute - Adds another set of attribute information to the
227 /// abbreviation.
228 void AddAttribute(unsigned Attribute, unsigned Form) {
229 Data.push_back(DIEAbbrevData(Attribute, Form));
230 }
aslc200b112008-08-16 12:57:46 +0000231
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 /// AddFirstAttribute - Adds a set of attribute information to the front
233 /// of the abbreviation.
234 void AddFirstAttribute(unsigned Attribute, unsigned Form) {
235 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form));
236 }
aslc200b112008-08-16 12:57:46 +0000237
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 /// Profile - Used to gather unique data for the abbreviation folding set.
239 ///
240 void Profile(FoldingSetNodeID &ID) {
241 ID.AddInteger(Tag);
242 ID.AddInteger(ChildrenFlag);
aslc200b112008-08-16 12:57:46 +0000243
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 // For each attribute description.
245 for (unsigned i = 0, N = Data.size(); i < N; ++i)
246 Data[i].Profile(ID);
247 }
aslc200b112008-08-16 12:57:46 +0000248
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 /// Emit - Print the abbreviation using the specified Dwarf writer.
250 ///
aslc200b112008-08-16 12:57:46 +0000251 void Emit(const DwarfDebug &DD) const;
252
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253#ifndef NDEBUG
254 void print(std::ostream *O) {
255 if (O) print(*O);
256 }
257 void print(std::ostream &O);
258 void dump();
259#endif
260};
261
262//===----------------------------------------------------------------------===//
263/// DIE - A structured debug information entry. Has an abbreviation which
264/// describes it's organization.
265class DIE : public FoldingSetNode {
266protected:
267 /// Abbrev - Buffer for constructing abbreviation.
268 ///
269 DIEAbbrev Abbrev;
aslc200b112008-08-16 12:57:46 +0000270
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271 /// Offset - Offset in debug info section.
272 ///
273 unsigned Offset;
aslc200b112008-08-16 12:57:46 +0000274
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275 /// Size - Size of instance + children.
276 ///
277 unsigned Size;
aslc200b112008-08-16 12:57:46 +0000278
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279 /// Children DIEs.
280 ///
281 std::vector<DIE *> Children;
aslc200b112008-08-16 12:57:46 +0000282
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283 /// Attributes values.
284 ///
Owen Anderson88dd6232008-06-24 21:44:59 +0000285 SmallVector<DIEValue*, 32> Values;
aslc200b112008-08-16 12:57:46 +0000286
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287public:
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000288 explicit DIE(unsigned Tag)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289 : Abbrev(Tag, DW_CHILDREN_no)
290 , Offset(0)
291 , Size(0)
292 , Children()
293 , Values()
294 {}
295 virtual ~DIE();
aslc200b112008-08-16 12:57:46 +0000296
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297 // Accessors.
298 DIEAbbrev &getAbbrev() { return Abbrev; }
299 unsigned getAbbrevNumber() const {
300 return Abbrev.getNumber();
301 }
302 unsigned getTag() const { return Abbrev.getTag(); }
303 unsigned getOffset() const { return Offset; }
304 unsigned getSize() const { return Size; }
305 const std::vector<DIE *> &getChildren() const { return Children; }
Owen Anderson88dd6232008-06-24 21:44:59 +0000306 SmallVector<DIEValue*, 32> &getValues() { return Values; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307 void setTag(unsigned Tag) { Abbrev.setTag(Tag); }
308 void setOffset(unsigned O) { Offset = O; }
309 void setSize(unsigned S) { Size = S; }
aslc200b112008-08-16 12:57:46 +0000310
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311 /// AddValue - Add a value and attributes to a DIE.
312 ///
313 void AddValue(unsigned Attribute, unsigned Form, DIEValue *Value) {
314 Abbrev.AddAttribute(Attribute, Form);
315 Values.push_back(Value);
316 }
aslc200b112008-08-16 12:57:46 +0000317
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000318 /// SiblingOffset - Return the offset of the debug information entry's
319 /// sibling.
320 unsigned SiblingOffset() const { return Offset + Size; }
aslc200b112008-08-16 12:57:46 +0000321
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 /// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
323 ///
324 void AddSiblingOffset();
325
326 /// AddChild - Add a child to the DIE.
327 ///
328 void AddChild(DIE *Child) {
329 Abbrev.setChildrenFlag(DW_CHILDREN_yes);
330 Children.push_back(Child);
331 }
aslc200b112008-08-16 12:57:46 +0000332
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000333 /// Detach - Detaches objects connected to it after copying.
334 ///
335 void Detach() {
336 Children.clear();
337 }
aslc200b112008-08-16 12:57:46 +0000338
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339 /// Profile - Used to gather unique data for the value folding set.
340 ///
341 void Profile(FoldingSetNodeID &ID) ;
aslc200b112008-08-16 12:57:46 +0000342
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343#ifndef NDEBUG
344 void print(std::ostream *O, unsigned IncIndent = 0) {
345 if (O) print(*O, IncIndent);
346 }
347 void print(std::ostream &O, unsigned IncIndent = 0);
348 void dump();
349#endif
350};
351
352//===----------------------------------------------------------------------===//
353/// DIEValue - A debug information entry value.
354///
355class DIEValue : public FoldingSetNode {
356public:
357 enum {
358 isInteger,
359 isString,
360 isLabel,
361 isAsIsLabel,
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000362 isSectionOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 isDelta,
364 isEntry,
365 isBlock
366 };
aslc200b112008-08-16 12:57:46 +0000367
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 /// Type - Type of data stored in the value.
369 ///
370 unsigned Type;
aslc200b112008-08-16 12:57:46 +0000371
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000372 explicit DIEValue(unsigned T)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 : Type(T)
374 {}
375 virtual ~DIEValue() {}
aslc200b112008-08-16 12:57:46 +0000376
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377 // Accessors
378 unsigned getType() const { return Type; }
aslc200b112008-08-16 12:57:46 +0000379
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000380 // Implement isa/cast/dyncast.
381 static bool classof(const DIEValue *) { return true; }
aslc200b112008-08-16 12:57:46 +0000382
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383 /// EmitValue - Emit value via the Dwarf writer.
384 ///
385 virtual void EmitValue(DwarfDebug &DD, unsigned Form) = 0;
aslc200b112008-08-16 12:57:46 +0000386
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387 /// SizeOf - Return the size of a value in bytes.
388 ///
389 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const = 0;
aslc200b112008-08-16 12:57:46 +0000390
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391 /// Profile - Used to gather unique data for the value folding set.
392 ///
393 virtual void Profile(FoldingSetNodeID &ID) = 0;
aslc200b112008-08-16 12:57:46 +0000394
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395#ifndef NDEBUG
396 void print(std::ostream *O) {
397 if (O) print(*O);
398 }
399 virtual void print(std::ostream &O) = 0;
400 void dump();
401#endif
402};
403
404//===----------------------------------------------------------------------===//
405/// DWInteger - An integer value DIE.
aslc200b112008-08-16 12:57:46 +0000406///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407class DIEInteger : public DIEValue {
408private:
409 uint64_t Integer;
aslc200b112008-08-16 12:57:46 +0000410
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411public:
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000412 explicit DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413
414 // Implement isa/cast/dyncast.
415 static bool classof(const DIEInteger *) { return true; }
416 static bool classof(const DIEValue *I) { return I->Type == isInteger; }
aslc200b112008-08-16 12:57:46 +0000417
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 /// BestForm - Choose the best form for integer.
419 ///
420 static unsigned BestForm(bool IsSigned, uint64_t Integer) {
421 if (IsSigned) {
422 if ((char)Integer == (signed)Integer) return DW_FORM_data1;
423 if ((short)Integer == (signed)Integer) return DW_FORM_data2;
424 if ((int)Integer == (signed)Integer) return DW_FORM_data4;
425 } else {
426 if ((unsigned char)Integer == Integer) return DW_FORM_data1;
427 if ((unsigned short)Integer == Integer) return DW_FORM_data2;
428 if ((unsigned int)Integer == Integer) return DW_FORM_data4;
429 }
430 return DW_FORM_data8;
431 }
aslc200b112008-08-16 12:57:46 +0000432
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 /// EmitValue - Emit integer of appropriate size.
434 ///
435 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000436
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000437 /// SizeOf - Determine size of integer value in bytes.
438 ///
439 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000440
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441 /// Profile - Used to gather unique data for the value folding set.
442 ///
443 static void Profile(FoldingSetNodeID &ID, unsigned Integer) {
444 ID.AddInteger(isInteger);
445 ID.AddInteger(Integer);
446 }
447 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Integer); }
aslc200b112008-08-16 12:57:46 +0000448
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000449#ifndef NDEBUG
450 virtual void print(std::ostream &O) {
451 O << "Int: " << (int64_t)Integer
452 << " 0x" << std::hex << Integer << std::dec;
453 }
454#endif
455};
456
457//===----------------------------------------------------------------------===//
458/// DIEString - A string value DIE.
aslc200b112008-08-16 12:57:46 +0000459///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460class DIEString : public DIEValue {
461public:
462 const std::string String;
aslc200b112008-08-16 12:57:46 +0000463
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000464 explicit DIEString(const std::string &S) : DIEValue(isString), String(S) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465
466 // Implement isa/cast/dyncast.
467 static bool classof(const DIEString *) { return true; }
468 static bool classof(const DIEValue *S) { return S->Type == isString; }
aslc200b112008-08-16 12:57:46 +0000469
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000470 /// EmitValue - Emit string value.
471 ///
472 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000473
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000474 /// SizeOf - Determine size of string value in bytes.
475 ///
476 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const {
477 return String.size() + sizeof(char); // sizeof('\0');
478 }
aslc200b112008-08-16 12:57:46 +0000479
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 /// Profile - Used to gather unique data for the value folding set.
481 ///
482 static void Profile(FoldingSetNodeID &ID, const std::string &String) {
483 ID.AddInteger(isString);
484 ID.AddString(String);
485 }
486 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, String); }
aslc200b112008-08-16 12:57:46 +0000487
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488#ifndef NDEBUG
489 virtual void print(std::ostream &O) {
490 O << "Str: \"" << String << "\"";
491 }
492#endif
493};
494
495//===----------------------------------------------------------------------===//
496/// DIEDwarfLabel - A Dwarf internal label expression DIE.
497//
498class DIEDwarfLabel : public DIEValue {
499public:
500
501 const DWLabel Label;
aslc200b112008-08-16 12:57:46 +0000502
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000503 explicit DIEDwarfLabel(const DWLabel &L) : DIEValue(isLabel), Label(L) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504
505 // Implement isa/cast/dyncast.
506 static bool classof(const DIEDwarfLabel *) { return true; }
507 static bool classof(const DIEValue *L) { return L->Type == isLabel; }
aslc200b112008-08-16 12:57:46 +0000508
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509 /// EmitValue - Emit label value.
510 ///
511 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000512
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000513 /// SizeOf - Determine size of label value in bytes.
514 ///
515 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000516
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 /// Profile - Used to gather unique data for the value folding set.
518 ///
519 static void Profile(FoldingSetNodeID &ID, const DWLabel &Label) {
520 ID.AddInteger(isLabel);
521 Label.Profile(ID);
522 }
523 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label); }
aslc200b112008-08-16 12:57:46 +0000524
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525#ifndef NDEBUG
526 virtual void print(std::ostream &O) {
527 O << "Lbl: ";
528 Label.print(O);
529 }
530#endif
531};
532
533
534//===----------------------------------------------------------------------===//
535/// DIEObjectLabel - A label to an object in code or data.
536//
537class DIEObjectLabel : public DIEValue {
538public:
539 const std::string Label;
aslc200b112008-08-16 12:57:46 +0000540
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000541 explicit DIEObjectLabel(const std::string &L)
542 : DIEValue(isAsIsLabel), Label(L) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543
544 // Implement isa/cast/dyncast.
545 static bool classof(const DIEObjectLabel *) { return true; }
546 static bool classof(const DIEValue *L) { return L->Type == isAsIsLabel; }
aslc200b112008-08-16 12:57:46 +0000547
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 /// EmitValue - Emit label value.
549 ///
550 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000551
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000552 /// SizeOf - Determine size of label value in bytes.
553 ///
554 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000555
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556 /// Profile - Used to gather unique data for the value folding set.
557 ///
558 static void Profile(FoldingSetNodeID &ID, const std::string &Label) {
559 ID.AddInteger(isAsIsLabel);
560 ID.AddString(Label);
561 }
562 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label); }
563
564#ifndef NDEBUG
565 virtual void print(std::ostream &O) {
566 O << "Obj: " << Label;
567 }
568#endif
569};
570
571//===----------------------------------------------------------------------===//
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000572/// DIESectionOffset - A section offset DIE.
573//
574class DIESectionOffset : public DIEValue {
575public:
576 const DWLabel Label;
577 const DWLabel Section;
578 bool IsEH : 1;
579 bool UseSet : 1;
aslc200b112008-08-16 12:57:46 +0000580
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000581 DIESectionOffset(const DWLabel &Lab, const DWLabel &Sec,
582 bool isEH = false, bool useSet = true)
583 : DIEValue(isSectionOffset), Label(Lab), Section(Sec),
584 IsEH(isEH), UseSet(useSet) {}
585
586 // Implement isa/cast/dyncast.
587 static bool classof(const DIESectionOffset *) { return true; }
588 static bool classof(const DIEValue *D) { return D->Type == isSectionOffset; }
aslc200b112008-08-16 12:57:46 +0000589
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000590 /// EmitValue - Emit section offset.
591 ///
592 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000593
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000594 /// SizeOf - Determine size of section offset value in bytes.
595 ///
596 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000597
Argiris Kirtzidis03449652008-06-18 19:27:37 +0000598 /// Profile - Used to gather unique data for the value folding set.
599 ///
600 static void Profile(FoldingSetNodeID &ID, const DWLabel &Label,
601 const DWLabel &Section) {
602 ID.AddInteger(isSectionOffset);
603 Label.Profile(ID);
604 Section.Profile(ID);
605 // IsEH and UseSet are specific to the Label/Section that we will emit
606 // the offset for; so Label/Section are enough for uniqueness.
607 }
608 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label, Section); }
609
610#ifndef NDEBUG
611 virtual void print(std::ostream &O) {
612 O << "Off: ";
613 Label.print(O);
614 O << "-";
615 Section.print(O);
616 O << "-" << IsEH << "-" << UseSet;
617 }
618#endif
619};
620
621//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000622/// DIEDelta - A simple label difference DIE.
aslc200b112008-08-16 12:57:46 +0000623///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000624class DIEDelta : public DIEValue {
625public:
626 const DWLabel LabelHi;
627 const DWLabel LabelLo;
aslc200b112008-08-16 12:57:46 +0000628
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629 DIEDelta(const DWLabel &Hi, const DWLabel &Lo)
630 : DIEValue(isDelta), LabelHi(Hi), LabelLo(Lo) {}
631
632 // Implement isa/cast/dyncast.
633 static bool classof(const DIEDelta *) { return true; }
634 static bool classof(const DIEValue *D) { return D->Type == isDelta; }
aslc200b112008-08-16 12:57:46 +0000635
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636 /// EmitValue - Emit delta value.
637 ///
638 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000639
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000640 /// SizeOf - Determine size of delta value in bytes.
641 ///
642 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000643
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000644 /// Profile - Used to gather unique data for the value folding set.
645 ///
646 static void Profile(FoldingSetNodeID &ID, const DWLabel &LabelHi,
647 const DWLabel &LabelLo) {
648 ID.AddInteger(isDelta);
649 LabelHi.Profile(ID);
650 LabelLo.Profile(ID);
651 }
652 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, LabelHi, LabelLo); }
653
654#ifndef NDEBUG
655 virtual void print(std::ostream &O) {
656 O << "Del: ";
657 LabelHi.print(O);
658 O << "-";
659 LabelLo.print(O);
660 }
661#endif
662};
663
664//===----------------------------------------------------------------------===//
665/// DIEntry - A pointer to another debug information entry. An instance of this
666/// class can also be used as a proxy for a debug information entry not yet
667/// defined (ie. types.)
668class DIEntry : public DIEValue {
669public:
670 DIE *Entry;
aslc200b112008-08-16 12:57:46 +0000671
Dan Gohman9ba5d4d2007-08-27 14:50:10 +0000672 explicit DIEntry(DIE *E) : DIEValue(isEntry), Entry(E) {}
aslc200b112008-08-16 12:57:46 +0000673
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674 // Implement isa/cast/dyncast.
675 static bool classof(const DIEntry *) { return true; }
676 static bool classof(const DIEValue *E) { return E->Type == isEntry; }
aslc200b112008-08-16 12:57:46 +0000677
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 /// EmitValue - Emit debug information entry offset.
679 ///
680 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000681
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682 /// SizeOf - Determine size of debug information entry in bytes.
683 ///
684 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const {
685 return sizeof(int32_t);
686 }
aslc200b112008-08-16 12:57:46 +0000687
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688 /// Profile - Used to gather unique data for the value folding set.
689 ///
690 static void Profile(FoldingSetNodeID &ID, DIE *Entry) {
691 ID.AddInteger(isEntry);
692 ID.AddPointer(Entry);
693 }
694 virtual void Profile(FoldingSetNodeID &ID) {
695 ID.AddInteger(isEntry);
aslc200b112008-08-16 12:57:46 +0000696
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697 if (Entry) {
698 ID.AddPointer(Entry);
699 } else {
700 ID.AddPointer(this);
701 }
702 }
aslc200b112008-08-16 12:57:46 +0000703
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704#ifndef NDEBUG
705 virtual void print(std::ostream &O) {
706 O << "Die: 0x" << std::hex << (intptr_t)Entry << std::dec;
707 }
708#endif
709};
710
711//===----------------------------------------------------------------------===//
712/// DIEBlock - A block of values. Primarily used for location expressions.
713//
714class DIEBlock : public DIEValue, public DIE {
715public:
716 unsigned Size; // Size in bytes excluding size header.
aslc200b112008-08-16 12:57:46 +0000717
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718 DIEBlock()
719 : DIEValue(isBlock)
720 , DIE(0)
721 , Size(0)
722 {}
723 ~DIEBlock() {
724 }
aslc200b112008-08-16 12:57:46 +0000725
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726 // Implement isa/cast/dyncast.
727 static bool classof(const DIEBlock *) { return true; }
728 static bool classof(const DIEValue *E) { return E->Type == isBlock; }
aslc200b112008-08-16 12:57:46 +0000729
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000730 /// ComputeSize - calculate the size of the block.
731 ///
732 unsigned ComputeSize(DwarfDebug &DD);
aslc200b112008-08-16 12:57:46 +0000733
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000734 /// BestForm - Choose the best form for data.
735 ///
736 unsigned BestForm() const {
737 if ((unsigned char)Size == Size) return DW_FORM_block1;
738 if ((unsigned short)Size == Size) return DW_FORM_block2;
739 if ((unsigned int)Size == Size) return DW_FORM_block4;
740 return DW_FORM_block;
741 }
742
743 /// EmitValue - Emit block data.
744 ///
745 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
aslc200b112008-08-16 12:57:46 +0000746
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000747 /// SizeOf - Determine size of block data in bytes.
748 ///
749 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
aslc200b112008-08-16 12:57:46 +0000750
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000751
752 /// Profile - Used to gather unique data for the value folding set.
753 ///
754 virtual void Profile(FoldingSetNodeID &ID) {
755 ID.AddInteger(isBlock);
756 DIE::Profile(ID);
757 }
aslc200b112008-08-16 12:57:46 +0000758
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759#ifndef NDEBUG
760 virtual void print(std::ostream &O) {
761 O << "Blk: ";
762 DIE::print(O, 5);
763 }
764#endif
765};
766
767//===----------------------------------------------------------------------===//
768/// CompileUnit - This dwarf writer support class manages information associate
769/// with a source file.
770class CompileUnit {
771private:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 /// ID - File identifier for source.
773 ///
774 unsigned ID;
aslc200b112008-08-16 12:57:46 +0000775
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000776 /// Die - Compile unit debug information entry.
777 ///
778 DIE *Die;
aslc200b112008-08-16 12:57:46 +0000779
Devang Patel42f6bed2009-01-13 23:54:55 +0000780 /// GVToDieMap - Tracks the mapping of unit level debug informaton
781 /// variables to debug information entries.
Devang Patel56b1d132009-01-20 00:58:55 +0000782 std::map<GlobalVariable *, DIE *> GVToDieMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000783
Devang Patel42f6bed2009-01-13 23:54:55 +0000784 /// GVToDIEntryMap - Tracks the mapping of unit level debug informaton
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000785 /// descriptors to debug information entries using a DIEntry proxy.
Devang Patel56b1d132009-01-20 00:58:55 +0000786 std::map<GlobalVariable *, DIEntry *> GVToDIEntryMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000787
788 /// Globals - A map of globally visible named entities for this unit.
789 ///
790 std::map<std::string, DIE *> Globals;
791
792 /// DiesSet - Used to uniquely define dies within the compile unit.
793 ///
794 FoldingSet<DIE> DiesSet;
aslc200b112008-08-16 12:57:46 +0000795
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000796public:
Devang Patelb3907da2009-01-05 23:03:32 +0000797 CompileUnit(unsigned I, DIE *D)
Devang Patel42f6bed2009-01-13 23:54:55 +0000798 : ID(I), Die(D), GVToDieMap(),
Devang Patel5302e672009-01-17 06:51:37 +0000799 GVToDIEntryMap(), Globals(), DiesSet(InitDiesSetSize)
Devang Patelb3907da2009-01-05 23:03:32 +0000800 {}
801
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000802 ~CompileUnit() {
803 delete Die;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000804 }
aslc200b112008-08-16 12:57:46 +0000805
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000806 // Accessors.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000807 unsigned getID() const { return ID; }
808 DIE* getDie() const { return Die; }
809 std::map<std::string, DIE *> &getGlobals() { return Globals; }
810
811 /// hasContent - Return true if this compile unit has something to write out.
812 ///
813 bool hasContent() const {
814 return !Die->getChildren().empty();
815 }
816
817 /// AddGlobal - Add a new global entity to the compile unit.
818 ///
819 void AddGlobal(const std::string &Name, DIE *Die) {
820 Globals[Name] = Die;
821 }
aslc200b112008-08-16 12:57:46 +0000822
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000823 /// getDieMapSlotFor - Returns the debug information entry map slot for the
Devang Patel42f6bed2009-01-13 23:54:55 +0000824 /// specified debug variable.
Devang Patel4a4cbe72009-01-05 21:47:57 +0000825 DIE *&getDieMapSlotFor(GlobalVariable *GV) {
826 return GVToDieMap[GV];
827 }
aslc200b112008-08-16 12:57:46 +0000828
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 /// getDIEntrySlotFor - Returns the debug information entry proxy slot for the
Devang Patel42f6bed2009-01-13 23:54:55 +0000830 /// specified debug variable.
Devang Patel4a4cbe72009-01-05 21:47:57 +0000831 DIEntry *&getDIEntrySlotFor(GlobalVariable *GV) {
832 return GVToDIEntryMap[GV];
833 }
aslc200b112008-08-16 12:57:46 +0000834
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000835 /// AddDie - Adds or interns the DIE to the compile unit.
836 ///
837 DIE *AddDie(DIE &Buffer) {
838 FoldingSetNodeID ID;
839 Buffer.Profile(ID);
840 void *Where;
841 DIE *Die = DiesSet.FindNodeOrInsertPos(ID, Where);
aslc200b112008-08-16 12:57:46 +0000842
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843 if (!Die) {
844 Die = new DIE(Buffer);
845 DiesSet.InsertNode(Die, Where);
846 this->Die->AddChild(Die);
847 Buffer.Detach();
848 }
aslc200b112008-08-16 12:57:46 +0000849
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850 return Die;
851 }
852};
853
854//===----------------------------------------------------------------------===//
aslc200b112008-08-16 12:57:46 +0000855/// Dwarf - Emits general Dwarf directives.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000856///
857class Dwarf {
858
859protected:
860
861 //===--------------------------------------------------------------------===//
862 // Core attributes used by the Dwarf writer.
863 //
aslc200b112008-08-16 12:57:46 +0000864
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000865 //
866 /// O - Stream to .s file.
867 ///
Owen Anderson847b99b2008-08-21 00:14:44 +0000868 raw_ostream &O;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869
870 /// Asm - Target of Dwarf emission.
871 ///
872 AsmPrinter *Asm;
aslc200b112008-08-16 12:57:46 +0000873
Bill Wendlingac9639d2008-07-01 23:34:48 +0000874 /// TAI - Target asm information.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000875 const TargetAsmInfo *TAI;
aslc200b112008-08-16 12:57:46 +0000876
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877 /// TD - Target data.
878 const TargetData *TD;
aslc200b112008-08-16 12:57:46 +0000879
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 /// RI - Register Information.
Dan Gohman1e57df32008-02-10 18:45:23 +0000881 const TargetRegisterInfo *RI;
aslc200b112008-08-16 12:57:46 +0000882
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000883 /// M - Current module.
884 ///
885 Module *M;
aslc200b112008-08-16 12:57:46 +0000886
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000887 /// MF - Current machine function.
888 ///
889 MachineFunction *MF;
aslc200b112008-08-16 12:57:46 +0000890
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891 /// MMI - Collected machine module information.
892 ///
893 MachineModuleInfo *MMI;
aslc200b112008-08-16 12:57:46 +0000894
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000895 /// SubprogramCount - The running count of functions being compiled.
896 ///
897 unsigned SubprogramCount;
aslc200b112008-08-16 12:57:46 +0000898
Chris Lattnerb3876c72007-09-24 03:35:37 +0000899 /// Flavor - A unique string indicating what dwarf producer this is, used to
900 /// unique labels.
901 const char * const Flavor;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000902
903 unsigned SetCounter;
Owen Anderson847b99b2008-08-21 00:14:44 +0000904 Dwarf(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T,
Chris Lattnerb3876c72007-09-24 03:35:37 +0000905 const char *flavor)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000906 : O(OS)
907 , Asm(A)
908 , TAI(T)
909 , TD(Asm->TM.getTargetData())
910 , RI(Asm->TM.getRegisterInfo())
911 , M(NULL)
912 , MF(NULL)
913 , MMI(NULL)
914 , SubprogramCount(0)
Chris Lattnerb3876c72007-09-24 03:35:37 +0000915 , Flavor(flavor)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000916 , SetCounter(1)
917 {
918 }
919
920public:
921
922 //===--------------------------------------------------------------------===//
923 // Accessors.
924 //
925 AsmPrinter *getAsm() const { return Asm; }
926 MachineModuleInfo *getMMI() const { return MMI; }
927 const TargetAsmInfo *getTargetAsmInfo() const { return TAI; }
Dan Gohmancfb72b22007-09-27 23:12:31 +0000928 const TargetData *getTargetData() const { return TD; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000929
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000930 void PrintRelDirective(bool Force32Bit = false, bool isInSection = false)
931 const {
932 if (isInSection && TAI->getDwarfSectionOffsetDirective())
933 O << TAI->getDwarfSectionOffsetDirective();
Dan Gohmancfb72b22007-09-27 23:12:31 +0000934 else if (Force32Bit || TD->getPointerSize() == sizeof(int32_t))
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000935 O << TAI->getData32bitsDirective();
936 else
937 O << TAI->getData64bitsDirective();
938 }
aslc200b112008-08-16 12:57:46 +0000939
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940 /// PrintLabelName - Print label name in form used by Dwarf writer.
941 ///
942 void PrintLabelName(DWLabel Label) const {
943 PrintLabelName(Label.Tag, Label.Number);
944 }
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000945 void PrintLabelName(const char *Tag, unsigned Number) const {
Anton Korobeynikov5ef86702007-09-02 22:07:21 +0000946 O << TAI->getPrivateGlobalPrefix() << Tag;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000947 if (Number) O << Number;
948 }
aslc200b112008-08-16 12:57:46 +0000949
Chris Lattnerb3876c72007-09-24 03:35:37 +0000950 void PrintLabelName(const char *Tag, unsigned Number,
951 const char *Suffix) const {
952 O << TAI->getPrivateGlobalPrefix() << Tag;
953 if (Number) O << Number;
954 O << Suffix;
955 }
aslc200b112008-08-16 12:57:46 +0000956
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000957 /// EmitLabel - Emit location label for internal use by Dwarf.
958 ///
959 void EmitLabel(DWLabel Label) const {
960 EmitLabel(Label.Tag, Label.Number);
961 }
962 void EmitLabel(const char *Tag, unsigned Number) const {
963 PrintLabelName(Tag, Number);
964 O << ":\n";
965 }
aslc200b112008-08-16 12:57:46 +0000966
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000967 /// EmitReference - Emit a reference to a label.
968 ///
Dan Gohman4fd77742007-09-28 15:43:33 +0000969 void EmitReference(DWLabel Label, bool IsPCRelative = false,
970 bool Force32Bit = false) const {
971 EmitReference(Label.Tag, Label.Number, IsPCRelative, Force32Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000972 }
973 void EmitReference(const char *Tag, unsigned Number,
Dan Gohman4fd77742007-09-28 15:43:33 +0000974 bool IsPCRelative = false, bool Force32Bit = false) const {
975 PrintRelDirective(Force32Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 PrintLabelName(Tag, Number);
aslc200b112008-08-16 12:57:46 +0000977
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000978 if (IsPCRelative) O << "-" << TAI->getPCSymbol();
979 }
Dan Gohman4fd77742007-09-28 15:43:33 +0000980 void EmitReference(const std::string &Name, bool IsPCRelative = false,
981 bool Force32Bit = false) const {
982 PrintRelDirective(Force32Bit);
aslc200b112008-08-16 12:57:46 +0000983
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984 O << Name;
aslc200b112008-08-16 12:57:46 +0000985
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000986 if (IsPCRelative) O << "-" << TAI->getPCSymbol();
987 }
988
989 /// EmitDifference - Emit the difference between two labels. Some
990 /// assemblers do not behave with absolute expressions with data directives,
991 /// so there is an option (needsSet) to use an intermediary set expression.
992 void EmitDifference(DWLabel LabelHi, DWLabel LabelLo,
993 bool IsSmall = false) {
994 EmitDifference(LabelHi.Tag, LabelHi.Number,
995 LabelLo.Tag, LabelLo.Number,
996 IsSmall);
997 }
998 void EmitDifference(const char *TagHi, unsigned NumberHi,
999 const char *TagLo, unsigned NumberLo,
1000 bool IsSmall = false) {
1001 if (TAI->needsSet()) {
1002 O << "\t.set\t";
Chris Lattnerb3876c72007-09-24 03:35:37 +00001003 PrintLabelName("set", SetCounter, Flavor);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004 O << ",";
1005 PrintLabelName(TagHi, NumberHi);
1006 O << "-";
1007 PrintLabelName(TagLo, NumberLo);
1008 O << "\n";
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00001009
1010 PrintRelDirective(IsSmall);
Chris Lattnerb3876c72007-09-24 03:35:37 +00001011 PrintLabelName("set", SetCounter, Flavor);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012 ++SetCounter;
1013 } else {
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00001014 PrintRelDirective(IsSmall);
aslc200b112008-08-16 12:57:46 +00001015
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001016 PrintLabelName(TagHi, NumberHi);
1017 O << "-";
1018 PrintLabelName(TagLo, NumberLo);
1019 }
1020 }
1021
1022 void EmitSectionOffset(const char* Label, const char* Section,
1023 unsigned LabelNumber, unsigned SectionNumber,
Dale Johannesen0ebb2432008-03-26 23:31:39 +00001024 bool IsSmall = false, bool isEH = false,
1025 bool useSet = true) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001026 bool printAbsolute = false;
Dale Johannesen0ebb2432008-03-26 23:31:39 +00001027 if (isEH)
1028 printAbsolute = TAI->isAbsoluteEHSectionOffsets();
1029 else
1030 printAbsolute = TAI->isAbsoluteDebugSectionOffsets();
1031
1032 if (TAI->needsSet() && useSet) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001033 O << "\t.set\t";
Chris Lattnerb3876c72007-09-24 03:35:37 +00001034 PrintLabelName("set", SetCounter, Flavor);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035 O << ",";
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00001036 PrintLabelName(Label, LabelNumber);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 if (!printAbsolute) {
1039 O << "-";
1040 PrintLabelName(Section, SectionNumber);
aslc200b112008-08-16 12:57:46 +00001041 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042 O << "\n";
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00001043
1044 PrintRelDirective(IsSmall);
aslc200b112008-08-16 12:57:46 +00001045
Chris Lattnerb3876c72007-09-24 03:35:37 +00001046 PrintLabelName("set", SetCounter, Flavor);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047 ++SetCounter;
1048 } else {
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00001049 PrintRelDirective(IsSmall, true);
aslc200b112008-08-16 12:57:46 +00001050
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00001051 PrintLabelName(Label, LabelNumber);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001053 if (!printAbsolute) {
1054 O << "-";
1055 PrintLabelName(Section, SectionNumber);
1056 }
aslc200b112008-08-16 12:57:46 +00001057 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001058 }
aslc200b112008-08-16 12:57:46 +00001059
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060 /// EmitFrameMoves - Emit frame instructions to describe the layout of the
1061 /// frame.
1062 void EmitFrameMoves(const char *BaseLabel, unsigned BaseLabelID,
Dale Johannesenf5a11532007-11-13 19:13:01 +00001063 const std::vector<MachineMove> &Moves, bool isEH) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001064 int stackGrowth =
1065 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
1066 TargetFrameInfo::StackGrowsUp ?
Dan Gohmancfb72b22007-09-27 23:12:31 +00001067 TD->getPointerSize() : -TD->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001068 bool IsLocal = BaseLabel && strcmp(BaseLabel, "label") == 0;
1069
1070 for (unsigned i = 0, N = Moves.size(); i < N; ++i) {
1071 const MachineMove &Move = Moves[i];
1072 unsigned LabelID = Move.getLabelID();
aslc200b112008-08-16 12:57:46 +00001073
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074 if (LabelID) {
1075 LabelID = MMI->MappedLabel(LabelID);
aslc200b112008-08-16 12:57:46 +00001076
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001077 // Throw out move if the label is invalid.
1078 if (!LabelID) continue;
1079 }
aslc200b112008-08-16 12:57:46 +00001080
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001081 const MachineLocation &Dst = Move.getDestination();
1082 const MachineLocation &Src = Move.getSource();
aslc200b112008-08-16 12:57:46 +00001083
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084 // Advance row if new location.
1085 if (BaseLabel && LabelID && (BaseLabelID != LabelID || !IsLocal)) {
1086 Asm->EmitInt8(DW_CFA_advance_loc4);
1087 Asm->EOL("DW_CFA_advance_loc4");
1088 EmitDifference("label", LabelID, BaseLabel, BaseLabelID, true);
1089 Asm->EOL();
aslc200b112008-08-16 12:57:46 +00001090
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091 BaseLabelID = LabelID;
1092 BaseLabel = "label";
1093 IsLocal = true;
1094 }
aslc200b112008-08-16 12:57:46 +00001095
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096 // If advancing cfa.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00001097 if (Dst.isReg() && Dst.getReg() == MachineLocation::VirtualFP) {
1098 if (!Src.isReg()) {
1099 if (Src.getReg() == MachineLocation::VirtualFP) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001100 Asm->EmitInt8(DW_CFA_def_cfa_offset);
1101 Asm->EOL("DW_CFA_def_cfa_offset");
1102 } else {
1103 Asm->EmitInt8(DW_CFA_def_cfa);
1104 Asm->EOL("DW_CFA_def_cfa");
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00001105 Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Src.getReg(), isEH));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001106 Asm->EOL("Register");
1107 }
aslc200b112008-08-16 12:57:46 +00001108
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001109 int Offset = -Src.getOffset();
aslc200b112008-08-16 12:57:46 +00001110
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001111 Asm->EmitULEB128Bytes(Offset);
1112 Asm->EOL("Offset");
1113 } else {
1114 assert(0 && "Machine move no supported yet.");
1115 }
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00001116 } else if (Src.isReg() &&
1117 Src.getReg() == MachineLocation::VirtualFP) {
1118 if (Dst.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119 Asm->EmitInt8(DW_CFA_def_cfa_register);
1120 Asm->EOL("DW_CFA_def_cfa_register");
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00001121 Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Dst.getReg(), isEH));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 Asm->EOL("Register");
1123 } else {
1124 assert(0 && "Machine move no supported yet.");
1125 }
1126 } else {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00001127 unsigned Reg = RI->getDwarfRegNum(Src.getReg(), isEH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128 int Offset = Dst.getOffset() / stackGrowth;
aslc200b112008-08-16 12:57:46 +00001129
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001130 if (Offset < 0) {
1131 Asm->EmitInt8(DW_CFA_offset_extended_sf);
1132 Asm->EOL("DW_CFA_offset_extended_sf");
1133 Asm->EmitULEB128Bytes(Reg);
1134 Asm->EOL("Reg");
1135 Asm->EmitSLEB128Bytes(Offset);
1136 Asm->EOL("Offset");
1137 } else if (Reg < 64) {
1138 Asm->EmitInt8(DW_CFA_offset + Reg);
Evan Cheng6181e062008-07-09 21:53:02 +00001139 if (VerboseAsm)
1140 Asm->EOL("DW_CFA_offset + Reg (" + utostr(Reg) + ")");
1141 else
1142 Asm->EOL();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001143 Asm->EmitULEB128Bytes(Offset);
1144 Asm->EOL("Offset");
1145 } else {
1146 Asm->EmitInt8(DW_CFA_offset_extended);
1147 Asm->EOL("DW_CFA_offset_extended");
1148 Asm->EmitULEB128Bytes(Reg);
1149 Asm->EOL("Reg");
1150 Asm->EmitULEB128Bytes(Offset);
1151 Asm->EOL("Offset");
1152 }
1153 }
1154 }
1155 }
1156
1157};
1158
1159//===----------------------------------------------------------------------===//
Devang Patel35a078f2009-01-12 22:54:42 +00001160/// SrcLineInfo - This class is used to record source line correspondence.
Devang Patel7dd15a92009-01-08 17:19:22 +00001161///
1162class SrcLineInfo {
1163 unsigned Line; // Source line number.
1164 unsigned Column; // Source column.
1165 unsigned SourceID; // Source ID number.
1166 unsigned LabelID; // Label in code ID number.
1167public:
1168 SrcLineInfo(unsigned L, unsigned C, unsigned S, unsigned I)
1169 : Line(L), Column(C), SourceID(S), LabelID(I) {}
1170
1171 // Accessors
1172 unsigned getLine() const { return Line; }
1173 unsigned getColumn() const { return Column; }
1174 unsigned getSourceID() const { return SourceID; }
1175 unsigned getLabelID() const { return LabelID; }
1176};
1177
1178
1179//===----------------------------------------------------------------------===//
Devang Patel5f244e32009-01-05 22:35:52 +00001180/// SrcFileInfo - This class is used to track source information.
1181///
1182class SrcFileInfo {
1183 unsigned DirectoryID; // Directory ID number.
1184 std::string Name; // File name (not including directory.)
1185public:
1186 SrcFileInfo(unsigned D, const std::string &N) : DirectoryID(D), Name(N) {}
1187
1188 // Accessors
1189 unsigned getDirectoryID() const { return DirectoryID; }
1190 const std::string &getName() const { return Name; }
1191
1192 /// operator== - Used by UniqueVector to locate entry.
1193 ///
Devang Patel42f6bed2009-01-13 23:54:55 +00001194 bool operator==(const SrcFileInfo &SI) const {
Devang Patel5f244e32009-01-05 22:35:52 +00001195 return getDirectoryID() == SI.getDirectoryID() && getName() == SI.getName();
1196 }
1197
1198 /// operator< - Used by UniqueVector to locate entry.
1199 ///
1200 bool operator<(const SrcFileInfo &SI) const {
1201 return getDirectoryID() < SI.getDirectoryID() ||
1202 (getDirectoryID() == SI.getDirectoryID() && getName() < SI.getName());
1203 }
1204};
1205
1206//===----------------------------------------------------------------------===//
Devang Patel4d1709e2009-01-08 02:33:41 +00001207/// DbgVariable - This class is used to track local variable information.
1208///
1209class DbgVariable {
1210private:
Devang Patel7c8a2772009-01-16 19:28:14 +00001211 DIVariable Var; // Variable Descriptor.
Devang Patel4d1709e2009-01-08 02:33:41 +00001212 unsigned FrameIndex; // Variable frame index.
1213
1214public:
Devang Patel7c8a2772009-01-16 19:28:14 +00001215 DbgVariable(DIVariable V, unsigned I) : Var(V), FrameIndex(I) {}
Devang Patel4d1709e2009-01-08 02:33:41 +00001216
1217 // Accessors.
Devang Patel7c8a2772009-01-16 19:28:14 +00001218 DIVariable getVariable() const { return Var; }
Devang Patel4d1709e2009-01-08 02:33:41 +00001219 unsigned getFrameIndex() const { return FrameIndex; }
1220};
1221
1222//===----------------------------------------------------------------------===//
1223/// DbgScope - This class is used to track scope information.
1224///
1225class DbgScope {
1226private:
1227 DbgScope *Parent; // Parent to this scope.
Devang Patel49a3bd92009-01-16 18:01:58 +00001228 DIDescriptor Desc; // Debug info descriptor for scope.
Devang Patel4d1709e2009-01-08 02:33:41 +00001229 // Either subprogram or block.
1230 unsigned StartLabelID; // Label ID of the beginning of scope.
1231 unsigned EndLabelID; // Label ID of the end of scope.
Devang Patel49a3bd92009-01-16 18:01:58 +00001232 SmallVector<DbgScope *, 4> Scopes; // Scopes defined in scope.
Devang Patel63c22f42009-01-10 02:42:49 +00001233 SmallVector<DbgVariable *, 8> Variables;// Variables declared in scope.
Devang Patel4d1709e2009-01-08 02:33:41 +00001234
1235public:
Devang Patel2560d922009-01-15 18:25:17 +00001236 DbgScope(DbgScope *P, DIDescriptor D)
Devang Patel4d1709e2009-01-08 02:33:41 +00001237 : Parent(P), Desc(D), StartLabelID(0), EndLabelID(0), Scopes(), Variables()
1238 {}
Devang Patela4162952009-01-12 18:48:36 +00001239 ~DbgScope() {
1240 for (unsigned i = 0, N = Scopes.size(); i < N; ++i) delete Scopes[i];
1241 for (unsigned j = 0, M = Variables.size(); j < M; ++j) delete Variables[j];
1242 }
Devang Patel4d1709e2009-01-08 02:33:41 +00001243
1244 // Accessors.
Devang Patel49a3bd92009-01-16 18:01:58 +00001245 DbgScope *getParent() const { return Parent; }
1246 DIDescriptor getDesc() const { return Desc; }
Devang Patel4d1709e2009-01-08 02:33:41 +00001247 unsigned getStartLabelID() const { return StartLabelID; }
1248 unsigned getEndLabelID() const { return EndLabelID; }
Devang Patel63c22f42009-01-10 02:42:49 +00001249 SmallVector<DbgScope *, 4> &getScopes() { return Scopes; }
1250 SmallVector<DbgVariable *, 8> &getVariables() { return Variables; }
Devang Patel4d1709e2009-01-08 02:33:41 +00001251 void setStartLabelID(unsigned S) { StartLabelID = S; }
1252 void setEndLabelID(unsigned E) { EndLabelID = E; }
1253
1254 /// AddScope - Add a scope to the scope.
1255 ///
1256 void AddScope(DbgScope *S) { Scopes.push_back(S); }
1257
1258 /// AddVariable - Add a variable to the scope.
1259 ///
1260 void AddVariable(DbgVariable *V) { Variables.push_back(V); }
1261};
1262
1263//===----------------------------------------------------------------------===//
aslc200b112008-08-16 12:57:46 +00001264/// DwarfDebug - Emits Dwarf debug directives.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001265///
1266class DwarfDebug : public Dwarf {
1267
1268private:
1269 //===--------------------------------------------------------------------===//
1270 // Attributes used to construct specific Dwarf sections.
1271 //
aslc200b112008-08-16 12:57:46 +00001272
Devang Patel5302e672009-01-17 06:51:37 +00001273 /// DW_CUs - All the compile units involved in this build. The index
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001274 /// of each entry in this vector corresponds to the sources in MMI.
Devang Patel7dd15a92009-01-08 17:19:22 +00001275 DenseMap<Value *, CompileUnit *> DW_CUs;
aslc200b112008-08-16 12:57:46 +00001276
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001277 /// AbbreviationsSet - Used to uniquely define abbreviations.
1278 ///
1279 FoldingSet<DIEAbbrev> AbbreviationsSet;
1280
1281 /// Abbreviations - A list of all the unique abbreviations in use.
1282 ///
1283 std::vector<DIEAbbrev *> Abbreviations;
aslc200b112008-08-16 12:57:46 +00001284
Devang Patelb28de842009-01-17 08:01:33 +00001285 /// Directories - Uniquing vector for directories.
Devang Patel5f244e32009-01-05 22:35:52 +00001286 UniqueVector<std::string> Directories;
1287
Devang Patelb28de842009-01-17 08:01:33 +00001288 /// SourceFiles - Uniquing vector for source files.
Devang Patel5f244e32009-01-05 22:35:52 +00001289 UniqueVector<SrcFileInfo> SrcFiles;
1290
Devang Patel9b829452009-01-16 21:07:53 +00001291 /// Lines - List of of source line correspondence.
Devang Patel7dd15a92009-01-08 17:19:22 +00001292 std::vector<SrcLineInfo> Lines;
1293
Devang Patel9b829452009-01-16 21:07:53 +00001294 /// ValuesSet - Used to uniquely define values.
1295 ///
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296 FoldingSet<DIEValue> ValuesSet;
aslc200b112008-08-16 12:57:46 +00001297
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001298 /// Values - A list of all the unique values in use.
1299 ///
1300 std::vector<DIEValue *> Values;
aslc200b112008-08-16 12:57:46 +00001301
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001302 /// StringPool - A UniqueVector of strings used by indirect references.
1303 ///
1304 UniqueVector<std::string> StringPool;
1305
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001306 /// SectionMap - Provides a unique id per text section.
1307 ///
Anton Korobeynikov55b94962008-09-24 22:15:21 +00001308 UniqueVector<const Section*> SectionMap;
aslc200b112008-08-16 12:57:46 +00001309
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001310 /// SectionSourceLines - Tracks line numbers per text section.
1311 ///
Devang Patel35a078f2009-01-12 22:54:42 +00001312 std::vector<std::vector<SrcLineInfo> > SectionSourceLines;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001313
1314 /// didInitial - Flag to indicate if initial emission has been done.
1315 ///
1316 bool didInitial;
aslc200b112008-08-16 12:57:46 +00001317
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001318 /// shouldEmit - Flag to indicate if debug information should be emitted.
1319 ///
1320 bool shouldEmit;
1321
Devang Patel2560d922009-01-15 18:25:17 +00001322 // RootDbgScope - Top level scope for the current function.
Devang Patel4d1709e2009-01-08 02:33:41 +00001323 //
1324 DbgScope *RootDbgScope;
1325
1326 // DbgScopeMap - Tracks the scopes in the current function.
1327 DenseMap<GlobalVariable *, DbgScope *> DbgScopeMap;
1328
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001329 struct FunctionDebugFrameInfo {
1330 unsigned Number;
1331 std::vector<MachineMove> Moves;
1332
1333 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M):
Dan Gohman9ba5d4d2007-08-27 14:50:10 +00001334 Number(Num), Moves(M) { }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001335 };
1336
1337 std::vector<FunctionDebugFrameInfo> DebugFrames;
aslc200b112008-08-16 12:57:46 +00001338
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001339public:
aslc200b112008-08-16 12:57:46 +00001340
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001341 /// ShouldEmitDwarf - Returns true if Dwarf declarations should be made.
1342 ///
1343 bool ShouldEmitDwarf() const { return shouldEmit; }
1344
1345 /// AssignAbbrevNumber - Define a unique number for the abbreviation.
aslc200b112008-08-16 12:57:46 +00001346 ///
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001347 void AssignAbbrevNumber(DIEAbbrev &Abbrev) {
1348 // Profile the node so that we can make it unique.
1349 FoldingSetNodeID ID;
1350 Abbrev.Profile(ID);
aslc200b112008-08-16 12:57:46 +00001351
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001352 // Check the set for priors.
1353 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
aslc200b112008-08-16 12:57:46 +00001354
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001355 // If it's newly added.
1356 if (InSet == &Abbrev) {
aslc200b112008-08-16 12:57:46 +00001357 // Add to abbreviation list.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001358 Abbreviations.push_back(&Abbrev);
1359 // Assign the vector position + 1 as its number.
1360 Abbrev.setNumber(Abbreviations.size());
1361 } else {
1362 // Assign existing abbreviation number.
1363 Abbrev.setNumber(InSet->getNumber());
1364 }
1365 }
1366
1367 /// NewString - Add a string to the constant pool and returns a label.
1368 ///
1369 DWLabel NewString(const std::string &String) {
1370 unsigned StringID = StringPool.insert(String);
1371 return DWLabel("string", StringID);
1372 }
aslc200b112008-08-16 12:57:46 +00001373
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001374 /// NewDIEntry - Creates a new DIEntry to be a proxy for a debug information
1375 /// entry.
1376 DIEntry *NewDIEntry(DIE *Entry = NULL) {
1377 DIEntry *Value;
aslc200b112008-08-16 12:57:46 +00001378
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001379 if (Entry) {
1380 FoldingSetNodeID ID;
1381 DIEntry::Profile(ID, Entry);
1382 void *Where;
1383 Value = static_cast<DIEntry *>(ValuesSet.FindNodeOrInsertPos(ID, Where));
aslc200b112008-08-16 12:57:46 +00001384
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001385 if (Value) return Value;
aslc200b112008-08-16 12:57:46 +00001386
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001387 Value = new DIEntry(Entry);
1388 ValuesSet.InsertNode(Value, Where);
1389 } else {
1390 Value = new DIEntry(Entry);
1391 }
aslc200b112008-08-16 12:57:46 +00001392
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001393 Values.push_back(Value);
1394 return Value;
1395 }
aslc200b112008-08-16 12:57:46 +00001396
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001397 /// SetDIEntry - Set a DIEntry once the debug information entry is defined.
1398 ///
1399 void SetDIEntry(DIEntry *Value, DIE *Entry) {
1400 Value->Entry = Entry;
1401 // Add to values set if not already there. If it is, we merely have a
1402 // duplicate in the values list (no harm.)
1403 ValuesSet.GetOrInsertNode(Value);
1404 }
1405
1406 /// AddUInt - Add an unsigned integer attribute data and value.
1407 ///
1408 void AddUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer) {
1409 if (!Form) Form = DIEInteger::BestForm(false, Integer);
1410
1411 FoldingSetNodeID ID;
1412 DIEInteger::Profile(ID, Integer);
1413 void *Where;
1414 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1415 if (!Value) {
1416 Value = new DIEInteger(Integer);
1417 ValuesSet.InsertNode(Value, Where);
1418 Values.push_back(Value);
1419 }
aslc200b112008-08-16 12:57:46 +00001420
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001421 Die->AddValue(Attribute, Form, Value);
1422 }
aslc200b112008-08-16 12:57:46 +00001423
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001424 /// AddSInt - Add an signed integer attribute data and value.
1425 ///
1426 void AddSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer) {
1427 if (!Form) Form = DIEInteger::BestForm(true, Integer);
1428
1429 FoldingSetNodeID ID;
1430 DIEInteger::Profile(ID, (uint64_t)Integer);
1431 void *Where;
1432 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1433 if (!Value) {
1434 Value = new DIEInteger(Integer);
1435 ValuesSet.InsertNode(Value, Where);
1436 Values.push_back(Value);
1437 }
aslc200b112008-08-16 12:57:46 +00001438
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001439 Die->AddValue(Attribute, Form, Value);
1440 }
aslc200b112008-08-16 12:57:46 +00001441
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001442 /// AddString - Add a std::string attribute data and value.
1443 ///
1444 void AddString(DIE *Die, unsigned Attribute, unsigned Form,
1445 const std::string &String) {
1446 FoldingSetNodeID ID;
1447 DIEString::Profile(ID, String);
1448 void *Where;
1449 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1450 if (!Value) {
1451 Value = new DIEString(String);
1452 ValuesSet.InsertNode(Value, Where);
1453 Values.push_back(Value);
1454 }
aslc200b112008-08-16 12:57:46 +00001455
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001456 Die->AddValue(Attribute, Form, Value);
1457 }
aslc200b112008-08-16 12:57:46 +00001458
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001459 /// AddLabel - Add a Dwarf label attribute data and value.
1460 ///
1461 void AddLabel(DIE *Die, unsigned Attribute, unsigned Form,
1462 const DWLabel &Label) {
1463 FoldingSetNodeID ID;
1464 DIEDwarfLabel::Profile(ID, Label);
1465 void *Where;
1466 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1467 if (!Value) {
1468 Value = new DIEDwarfLabel(Label);
1469 ValuesSet.InsertNode(Value, Where);
1470 Values.push_back(Value);
1471 }
aslc200b112008-08-16 12:57:46 +00001472
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001473 Die->AddValue(Attribute, Form, Value);
1474 }
aslc200b112008-08-16 12:57:46 +00001475
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001476 /// AddObjectLabel - Add an non-Dwarf label attribute data and value.
1477 ///
1478 void AddObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
1479 const std::string &Label) {
1480 FoldingSetNodeID ID;
1481 DIEObjectLabel::Profile(ID, Label);
1482 void *Where;
1483 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1484 if (!Value) {
1485 Value = new DIEObjectLabel(Label);
1486 ValuesSet.InsertNode(Value, Where);
1487 Values.push_back(Value);
1488 }
aslc200b112008-08-16 12:57:46 +00001489
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001490 Die->AddValue(Attribute, Form, Value);
1491 }
aslc200b112008-08-16 12:57:46 +00001492
Argiris Kirtzidis03449652008-06-18 19:27:37 +00001493 /// AddSectionOffset - Add a section offset label attribute data and value.
1494 ///
1495 void AddSectionOffset(DIE *Die, unsigned Attribute, unsigned Form,
1496 const DWLabel &Label, const DWLabel &Section,
1497 bool isEH = false, bool useSet = true) {
1498 FoldingSetNodeID ID;
1499 DIESectionOffset::Profile(ID, Label, Section);
1500 void *Where;
1501 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1502 if (!Value) {
1503 Value = new DIESectionOffset(Label, Section, isEH, useSet);
1504 ValuesSet.InsertNode(Value, Where);
1505 Values.push_back(Value);
1506 }
aslc200b112008-08-16 12:57:46 +00001507
Argiris Kirtzidis03449652008-06-18 19:27:37 +00001508 Die->AddValue(Attribute, Form, Value);
1509 }
aslc200b112008-08-16 12:57:46 +00001510
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001511 /// AddDelta - Add a label delta attribute data and value.
1512 ///
1513 void AddDelta(DIE *Die, unsigned Attribute, unsigned Form,
1514 const DWLabel &Hi, const DWLabel &Lo) {
1515 FoldingSetNodeID ID;
1516 DIEDelta::Profile(ID, Hi, Lo);
1517 void *Where;
1518 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1519 if (!Value) {
1520 Value = new DIEDelta(Hi, Lo);
1521 ValuesSet.InsertNode(Value, Where);
1522 Values.push_back(Value);
1523 }
aslc200b112008-08-16 12:57:46 +00001524
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001525 Die->AddValue(Attribute, Form, Value);
1526 }
aslc200b112008-08-16 12:57:46 +00001527
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001528 /// AddDIEntry - Add a DIE attribute data and value.
1529 ///
1530 void AddDIEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) {
1531 Die->AddValue(Attribute, Form, NewDIEntry(Entry));
1532 }
1533
1534 /// AddBlock - Add block data.
1535 ///
1536 void AddBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block) {
1537 Block->ComputeSize(*this);
1538 FoldingSetNodeID ID;
1539 Block->Profile(ID);
1540 void *Where;
1541 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1542 if (!Value) {
1543 Value = Block;
1544 ValuesSet.InsertNode(Value, Where);
1545 Values.push_back(Value);
1546 } else {
Chris Lattner3de66892007-09-21 18:25:53 +00001547 // Already exists, reuse the previous one.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001548 delete Block;
Chris Lattner3de66892007-09-21 18:25:53 +00001549 Block = cast<DIEBlock>(Value);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001550 }
aslc200b112008-08-16 12:57:46 +00001551
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001552 Die->AddValue(Attribute, Block->BestForm(), Value);
1553 }
1554
1555private:
1556
1557 /// AddSourceLine - Add location information to specified debug information
1558 /// entry.
Devang Patel7c8a2772009-01-16 19:28:14 +00001559 void AddSourceLine(DIE *Die, const DIVariable *V) {
Devang Patel4d1709e2009-01-08 02:33:41 +00001560 unsigned FileID = 0;
1561 unsigned Line = V->getLineNumber();
Devang Patelb49710a2009-01-20 19:22:03 +00001562 if (V->getVersion() <= LLVMDebugVersion6) {
Devang Patel4d1709e2009-01-08 02:33:41 +00001563 // Version6 or earlier. Use compile unit info to get file id.
1564 CompileUnit *Unit = FindCompileUnit(V->getCompileUnit());
1565 FileID = Unit->getID();
1566 } else {
1567 // Version7 or newer, use filename and directory info from DIVariable
1568 // directly.
1569 unsigned DID = Directories.idFor(V->getDirectory());
1570 FileID = SrcFiles.idFor(SrcFileInfo(DID, V->getFilename()));
1571 }
1572 AddUInt(Die, DW_AT_decl_file, 0, FileID);
1573 AddUInt(Die, DW_AT_decl_line, 0, Line);
1574 }
1575
1576 /// AddSourceLine - Add location information to specified debug information
1577 /// entry.
Devang Patel7c8a2772009-01-16 19:28:14 +00001578 void AddSourceLine(DIE *Die, const DIGlobal *G) {
Devang Patel5f244e32009-01-05 22:35:52 +00001579 unsigned FileID = 0;
1580 unsigned Line = G->getLineNumber();
Devang Patelb49710a2009-01-20 19:22:03 +00001581 if (G->getVersion() < LLVMDebugVersion6) {
Devang Patel5f244e32009-01-05 22:35:52 +00001582 // Version6 or earlier. Use compile unit info to get file id.
1583 CompileUnit *Unit = FindCompileUnit(G->getCompileUnit());
1584 FileID = Unit->getID();
1585 } else {
1586 // Version7 or newer, use filename and directory info from DIGlobal
1587 // directly.
1588 unsigned DID = Directories.idFor(G->getDirectory());
1589 FileID = SrcFiles.idFor(SrcFileInfo(DID, G->getFilename()));
1590 }
1591 AddUInt(Die, DW_AT_decl_file, 0, FileID);
1592 AddUInt(Die, DW_AT_decl_line, 0, Line);
1593 }
1594
Devang Patel7c8a2772009-01-16 19:28:14 +00001595 void AddSourceLine(DIE *Die, const DIType *Ty) {
Devang Patel5f244e32009-01-05 22:35:52 +00001596 unsigned FileID = 0;
Devang Patel7c8a2772009-01-16 19:28:14 +00001597 unsigned Line = Ty->getLineNumber();
Devang Patelb49710a2009-01-20 19:22:03 +00001598 if (Ty->getVersion() <= LLVMDebugVersion6) {
Devang Patel5f244e32009-01-05 22:35:52 +00001599 // Version6 or earlier. Use compile unit info to get file id.
Devang Patel7c8a2772009-01-16 19:28:14 +00001600 CompileUnit *Unit = FindCompileUnit(Ty->getCompileUnit());
Devang Patel5f244e32009-01-05 22:35:52 +00001601 FileID = Unit->getID();
1602 } else {
Devang Patel7c8a2772009-01-16 19:28:14 +00001603 // Version7 or newer, use filename and directory info from DIType
Devang Patel5f244e32009-01-05 22:35:52 +00001604 // directly.
Devang Patel7c8a2772009-01-16 19:28:14 +00001605 unsigned DID = Directories.idFor(Ty->getDirectory());
1606 FileID = SrcFiles.idFor(SrcFileInfo(DID, Ty->getFilename()));
Devang Patel5f244e32009-01-05 22:35:52 +00001607 }
1608 AddUInt(Die, DW_AT_decl_file, 0, FileID);
1609 AddUInt(Die, DW_AT_decl_line, 0, Line);
1610 }
1611
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001612 /// AddAddress - Add an address attribute to a die based on the location
1613 /// provided.
1614 void AddAddress(DIE *Die, unsigned Attribute,
1615 const MachineLocation &Location) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00001616 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001617 DIEBlock *Block = new DIEBlock();
aslc200b112008-08-16 12:57:46 +00001618
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00001619 if (Location.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001620 if (Reg < 32) {
1621 AddUInt(Block, 0, DW_FORM_data1, DW_OP_reg0 + Reg);
1622 } else {
1623 AddUInt(Block, 0, DW_FORM_data1, DW_OP_regx);
1624 AddUInt(Block, 0, DW_FORM_udata, Reg);
1625 }
1626 } else {
1627 if (Reg < 32) {
1628 AddUInt(Block, 0, DW_FORM_data1, DW_OP_breg0 + Reg);
1629 } else {
1630 AddUInt(Block, 0, DW_FORM_data1, DW_OP_bregx);
1631 AddUInt(Block, 0, DW_FORM_udata, Reg);
1632 }
1633 AddUInt(Block, 0, DW_FORM_sdata, Location.getOffset());
1634 }
aslc200b112008-08-16 12:57:46 +00001635
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001636 AddBlock(Die, Attribute, 0, Block);
1637 }
aslc200b112008-08-16 12:57:46 +00001638
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001639 /// AddBasicType - Add a new basic type attribute to the specified entity.
1640 ///
1641 void AddBasicType(DIE *Entity, CompileUnit *Unit,
1642 const std::string &Name,
1643 unsigned Encoding, unsigned Size) {
aslc200b112008-08-16 12:57:46 +00001644
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001645 DIE Buffer(DW_TAG_base_type);
1646 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1647 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, Encoding);
1648 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
Devang Patelf49e13d2009-01-05 17:44:11 +00001649 DIE *BasicTypeDie = Unit->AddDie(Buffer);
1650 AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, BasicTypeDie);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001651 }
aslc200b112008-08-16 12:57:46 +00001652
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001653 /// AddPointerType - Add a new pointer type attribute to the specified entity.
1654 ///
1655 void AddPointerType(DIE *Entity, CompileUnit *Unit, const std::string &Name) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001656 DIE Buffer(DW_TAG_pointer_type);
Dan Gohmancfb72b22007-09-27 23:12:31 +00001657 AddUInt(&Buffer, DW_AT_byte_size, 0, TD->getPointerSize());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001658 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
Devang Patelbbca50b2009-01-05 17:45:59 +00001659 DIE *PointerTypeDie = Unit->AddDie(Buffer);
1660 AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, PointerTypeDie);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001661 }
aslc200b112008-08-16 12:57:46 +00001662
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001663 /// AddType - Add a new type attribute to the specified entity.
Devang Patel4a4cbe72009-01-05 21:47:57 +00001664 void AddType(CompileUnit *DW_Unit, DIE *Entity, DIType Ty) {
1665 if (Ty.isNull()) {
1666 AddBasicType(Entity, DW_Unit, "", DW_ATE_signed, sizeof(int32_t));
1667 return;
1668 }
1669
1670 // Check for pre-existence.
1671 DIEntry *&Slot = DW_Unit->getDIEntrySlotFor(Ty.getGV());
1672 // If it exists then use the existing value.
1673 if (Slot) {
1674 Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1675 return;
1676 }
1677
1678 // Set up proxy.
1679 Slot = NewDIEntry();
1680
1681 // Construct type.
1682 DIE Buffer(DW_TAG_base_type);
Devang Patelef4bf3b2009-01-15 19:26:23 +00001683 if (Ty.isBasicType(Ty.getTag()))
1684 ConstructTypeDIE(DW_Unit, Buffer, DIBasicType(Ty.getGV()));
1685 else if (Ty.isDerivedType(Ty.getTag()))
1686 ConstructTypeDIE(DW_Unit, Buffer, DIDerivedType(Ty.getGV()));
1687 else {
1688 assert (Ty.isCompositeType(Ty.getTag()) && "Unknown kind of DIType");
1689 ConstructTypeDIE(DW_Unit, Buffer, DICompositeType(Ty.getGV()));
1690 }
1691
Devang Patel4a4cbe72009-01-05 21:47:57 +00001692 // Add debug information entry to entity and unit.
1693 DIE *Die = DW_Unit->AddDie(Buffer);
1694 SetDIEntry(Slot, Die);
1695 Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1696 }
1697
Devang Patel46d13752009-01-05 19:07:53 +00001698 /// ConstructTypeDIE - Construct basic type die from DIBasicType.
1699 void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
Devang Patelef4bf3b2009-01-15 19:26:23 +00001700 DIBasicType BTy) {
Devang Patelfc187162009-01-05 17:57:47 +00001701
1702 // Get core information.
Devang Patelef4bf3b2009-01-15 19:26:23 +00001703 const std::string &Name = BTy.getName();
Devang Patelfc187162009-01-05 17:57:47 +00001704 Buffer.setTag(DW_TAG_base_type);
Devang Patelef4bf3b2009-01-15 19:26:23 +00001705 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, BTy.getEncoding());
Devang Patelfc187162009-01-05 17:57:47 +00001706 // Add name if not anonymous or intermediate type.
1707 if (!Name.empty())
1708 AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
Devang Patelef4bf3b2009-01-15 19:26:23 +00001709 uint64_t Size = BTy.getSizeInBits() >> 3;
Devang Patelfc187162009-01-05 17:57:47 +00001710 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1711 }
1712
Devang Patel46d13752009-01-05 19:07:53 +00001713 /// ConstructTypeDIE - Construct derived type die from DIDerivedType.
1714 void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
Devang Patelef4bf3b2009-01-15 19:26:23 +00001715 DIDerivedType DTy) {
Devang Patelfc187162009-01-05 17:57:47 +00001716
1717 // Get core information.
Devang Patelef4bf3b2009-01-15 19:26:23 +00001718 const std::string &Name = DTy.getName();
1719 uint64_t Size = DTy.getSizeInBits() >> 3;
1720 unsigned Tag = DTy.getTag();
Devang Patelfc187162009-01-05 17:57:47 +00001721 // FIXME - Workaround for templates.
1722 if (Tag == DW_TAG_inheritance) Tag = DW_TAG_reference_type;
1723
1724 Buffer.setTag(Tag);
1725 // Map to main type, void will not have a type.
Devang Patelef4bf3b2009-01-15 19:26:23 +00001726 DIType FromTy = DTy.getTypeDerivedFrom();
Devang Patel4a4cbe72009-01-05 21:47:57 +00001727 AddType(DW_Unit, &Buffer, FromTy);
Devang Patelfc187162009-01-05 17:57:47 +00001728
1729 // Add name if not anonymous or intermediate type.
1730 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1731
1732 // Add size if non-zero (derived types might be zero-sized.)
1733 if (Size)
1734 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1735
1736 // Add source line info if available and TyDesc is not a forward
1737 // declaration.
Devang Patelef4bf3b2009-01-15 19:26:23 +00001738 // FIXME - Enable this. if (!DTy.isForwardDecl())
Devang Patelfc187162009-01-05 17:57:47 +00001739 // FIXME - Enable this. AddSourceLine(&Buffer, *DTy);
1740 }
1741
Devang Patel30c01372009-01-05 19:55:51 +00001742 /// ConstructTypeDIE - Construct type DIE from DICompositeType.
1743 void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
Devang Patelef4bf3b2009-01-15 19:26:23 +00001744 DICompositeType CTy) {
Devang Patel30c01372009-01-05 19:55:51 +00001745
Devang Patelb28de842009-01-17 08:01:33 +00001746 // Get core information.
Devang Patelef4bf3b2009-01-15 19:26:23 +00001747 const std::string &Name = CTy.getName();
1748 uint64_t Size = CTy.getSizeInBits() >> 3;
1749 unsigned Tag = CTy.getTag();
Devang Patel30c01372009-01-05 19:55:51 +00001750 switch (Tag) {
1751 case DW_TAG_vector_type:
1752 case DW_TAG_array_type:
Devang Patelef4bf3b2009-01-15 19:26:23 +00001753 ConstructArrayTypeDIE(DW_Unit, Buffer, &CTy);
Devang Patel30c01372009-01-05 19:55:51 +00001754 break;
Devang Patel3798f492009-01-20 18:35:14 +00001755 case DW_TAG_enumeration_type:
1756 {
1757 DIArray Elements = CTy.getTypeArray();
1758 // Add enumerators to enumeration type.
1759 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
1760 DIE *ElemDie = NULL;
1761 DIEnumerator Enum(Elements.getElement(i).getGV());
1762 ElemDie = ConstructEnumTypeDIE(DW_Unit, &Enum);
1763 Buffer.AddChild(ElemDie);
1764 }
1765 }
1766 break;
Devang Patel30c01372009-01-05 19:55:51 +00001767 case DW_TAG_subroutine_type:
1768 {
1769 // Add prototype flag.
1770 AddUInt(&Buffer, DW_AT_prototyped, DW_FORM_flag, 1);
Devang Patelef4bf3b2009-01-15 19:26:23 +00001771 DIArray Elements = CTy.getTypeArray();
Devang Patel30c01372009-01-05 19:55:51 +00001772 // Add return type.
Devang Patel4a4cbe72009-01-05 21:47:57 +00001773 DIDescriptor RTy = Elements.getElement(0);
Devang Patelef4bf3b2009-01-15 19:26:23 +00001774 AddType(DW_Unit, &Buffer, DIType(RTy.getGV()));
Devang Patel4a4cbe72009-01-05 21:47:57 +00001775
Devang Patel30c01372009-01-05 19:55:51 +00001776 // Add arguments.
1777 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) {
1778 DIE *Arg = new DIE(DW_TAG_formal_parameter);
Devang Patel4a4cbe72009-01-05 21:47:57 +00001779 DIDescriptor Ty = Elements.getElement(i);
Devang Pateld40a7e52009-01-17 06:57:25 +00001780 AddType(DW_Unit, Arg, DIType(Ty.getGV()));
Devang Patel30c01372009-01-05 19:55:51 +00001781 Buffer.AddChild(Arg);
1782 }
1783 }
1784 break;
1785 case DW_TAG_structure_type:
1786 case DW_TAG_union_type:
1787 {
1788 // Add elements to structure type.
Devang Patelef4bf3b2009-01-15 19:26:23 +00001789 DIArray Elements = CTy.getTypeArray();
Devang Patelcf7acb12009-01-16 00:50:53 +00001790
1791 // A forward struct declared type may not have elements available.
1792 if (Elements.isNull())
1793 break;
1794
Devang Patel30c01372009-01-05 19:55:51 +00001795 // Add elements to structure type.
1796 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
1797 DIDescriptor Element = Elements.getElement(i);
Devang Patelb28de842009-01-17 08:01:33 +00001798 DIE *ElemDie = NULL;
Devang Patelef4bf3b2009-01-15 19:26:23 +00001799 if (Element.getTag() == dwarf::DW_TAG_subprogram)
Devang Patel245446c2009-01-17 08:05:14 +00001800 ElemDie = CreateSubprogramDIE(DW_Unit,
1801 DISubprogram(Element.getGV()));
Devang Patelb28de842009-01-17 08:01:33 +00001802 else if (Element.getTag() == dwarf::DW_TAG_variable) // ???
1803 ElemDie = CreateGlobalVariableDIE(DW_Unit,
1804 DIGlobalVariable(Element.getGV()));
Devang Patel5c643892009-01-20 21:02:02 +00001805 else
1806 ElemDie = CreateMemberDIE(DW_Unit,
1807 DIDerivedType(Element.getGV()));
Devang Patel245446c2009-01-17 08:05:14 +00001808 Buffer.AddChild(ElemDie);
Devang Patel30c01372009-01-05 19:55:51 +00001809 }
1810 }
1811 break;
1812 default:
1813 break;
1814 }
1815
1816 // Add name if not anonymous or intermediate type.
1817 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1818
1819 // Add size if non-zero (derived types might be zero-sized.)
1820 if (Size)
1821 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1822 else {
Devang Patel30b75bb2009-01-20 22:27:02 +00001823 // Add zero size if it is not a forward declaration.
1824 if (CTy.isForwardDecl())
1825 AddUInt(&Buffer, DW_AT_declaration, DW_FORM_flag, 1);
1826 else
1827 AddUInt(&Buffer, DW_AT_byte_size, 0, 0);
Devang Patel30c01372009-01-05 19:55:51 +00001828 }
1829
Devang Patel30b75bb2009-01-20 22:27:02 +00001830 // Add source line info if available.
1831 if (!CTy.isForwardDecl())
1832 AddSourceLine(&Buffer, &CTy);
Devang Patel30c01372009-01-05 19:55:51 +00001833 }
1834
Devang Patel6fb54132009-01-05 18:33:01 +00001835 // ConstructSubrangeDIE - Construct subrange DIE from DISubrange.
Devang Patelef4bf3b2009-01-15 19:26:23 +00001836 void ConstructSubrangeDIE (DIE &Buffer, DISubrange SR, DIE *IndexTy) {
1837 int64_t L = SR.getLo();
1838 int64_t H = SR.getHi();
Devang Patel6fb54132009-01-05 18:33:01 +00001839 DIE *DW_Subrange = new DIE(DW_TAG_subrange_type);
1840 if (L != H) {
1841 AddDIEntry(DW_Subrange, DW_AT_type, DW_FORM_ref4, IndexTy);
1842 if (L)
Devang Patel245446c2009-01-17 08:05:14 +00001843 AddSInt(DW_Subrange, DW_AT_lower_bound, 0, L);
1844 AddSInt(DW_Subrange, DW_AT_upper_bound, 0, H);
Devang Patel6fb54132009-01-05 18:33:01 +00001845 }
1846 Buffer.AddChild(DW_Subrange);
1847 }
1848
1849 /// ConstructArrayTypeDIE - Construct array type DIE from DICompositeType.
1850 void ConstructArrayTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
1851 DICompositeType *CTy) {
1852 Buffer.setTag(DW_TAG_array_type);
1853 if (CTy->getTag() == DW_TAG_vector_type)
1854 AddUInt(&Buffer, DW_AT_GNU_vector, DW_FORM_flag, 1);
1855
1856 DIArray Elements = CTy->getTypeArray();
Devang Patel4a4cbe72009-01-05 21:47:57 +00001857 AddType(DW_Unit, &Buffer, CTy->getTypeDerivedFrom());
Devang Patel6fb54132009-01-05 18:33:01 +00001858
1859 // Construct an anonymous type for index type.
1860 DIE IdxBuffer(DW_TAG_base_type);
1861 AddUInt(&IdxBuffer, DW_AT_byte_size, 0, sizeof(int32_t));
1862 AddUInt(&IdxBuffer, DW_AT_encoding, DW_FORM_data1, DW_ATE_signed);
1863 DIE *IndexTy = DW_Unit->AddDie(IdxBuffer);
1864
1865 // Add subranges to array type.
1866 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
Devang Patel30c01372009-01-05 19:55:51 +00001867 DIDescriptor Element = Elements.getElement(i);
Devang Patelef4bf3b2009-01-15 19:26:23 +00001868 if (Element.getTag() == dwarf::DW_TAG_subrange_type)
1869 ConstructSubrangeDIE(Buffer, DISubrange(Element.getGV()), IndexTy);
Devang Patel6fb54132009-01-05 18:33:01 +00001870 }
1871 }
1872
Devang Patela566e812009-01-05 18:38:38 +00001873 /// ConstructEnumTypeDIE - Construct enum type DIE from
1874 /// DIEnumerator.
Devang Patel3798f492009-01-20 18:35:14 +00001875 DIE *ConstructEnumTypeDIE(CompileUnit *DW_Unit, DIEnumerator *ETy) {
Devang Patela566e812009-01-05 18:38:38 +00001876
1877 DIE *Enumerator = new DIE(DW_TAG_enumerator);
1878 AddString(Enumerator, DW_AT_name, DW_FORM_string, ETy->getName());
1879 int64_t Value = ETy->getEnumValue();
1880 AddSInt(Enumerator, DW_AT_const_value, DW_FORM_sdata, Value);
Devang Patel3798f492009-01-20 18:35:14 +00001881 return Enumerator;
Devang Patela566e812009-01-05 18:38:38 +00001882 }
Devang Patel6fb54132009-01-05 18:33:01 +00001883
Devang Patelb28de842009-01-17 08:01:33 +00001884 /// CreateGlobalVariableDIE - Create new DIE using GV.
1885 DIE *CreateGlobalVariableDIE(CompileUnit *DW_Unit, const DIGlobalVariable &GV)
1886 {
1887 DIE *GVDie = new DIE(DW_TAG_variable);
1888 AddString(GVDie, DW_AT_name, DW_FORM_string, GV.getName());
1889 const std::string &LinkageName = GV.getLinkageName();
Devang Patel526b01d2009-01-05 18:59:44 +00001890 if (!LinkageName.empty())
Devang Patelb28de842009-01-17 08:01:33 +00001891 AddString(GVDie, DW_AT_MIPS_linkage_name, DW_FORM_string, LinkageName);
1892 AddType(DW_Unit, GVDie, GV.getType());
1893 if (!GV.isLocalToUnit())
1894 AddUInt(GVDie, DW_AT_external, DW_FORM_flag, 1);
1895 AddSourceLine(GVDie, &GV);
1896 return GVDie;
Devang Patel526b01d2009-01-05 18:59:44 +00001897 }
1898
Devang Patel5c643892009-01-20 21:02:02 +00001899 /// CreateMemberDIE - Create new member DIE.
1900 DIE *CreateMemberDIE(CompileUnit *DW_Unit, const DIDerivedType &DT) {
1901 DIE *MemberDie = new DIE(DT.getTag());
1902 std::string Name = DT.getName();
1903 if (!Name.empty())
1904 AddString(MemberDie, DW_AT_name, DW_FORM_string, Name);
1905
1906 AddType(DW_Unit, MemberDie, DT.getTypeDerivedFrom());
1907
1908 AddSourceLine(MemberDie, &DT);
1909
1910 AddUInt(MemberDie, DW_AT_bit_size, 0, DT.getSizeInBits());
1911 DIEBlock *Block = new DIEBlock();
1912 AddUInt(Block, 0, DW_FORM_data1, DW_OP_plus_uconst);
1913 AddUInt(Block, 0, DW_FORM_udata, DT.getOffsetInBits() >> 3);
1914 AddBlock(MemberDie, DW_AT_data_member_location, 0, Block);
1915
1916 // FIXME - Handle DW_AT_accessibility
1917 return MemberDie;
1918 }
1919
Devang Patelb28de842009-01-17 08:01:33 +00001920 /// CreateSubprogramDIE - Create new DIE using SP.
1921 DIE *CreateSubprogramDIE(CompileUnit *DW_Unit,
Devang Patel245446c2009-01-17 08:05:14 +00001922 const DISubprogram &SP,
1923 bool IsConstructor = false) {
Devang Patelb28de842009-01-17 08:01:33 +00001924 DIE *SPDie = new DIE(DW_TAG_subprogram);
1925 AddString(SPDie, DW_AT_name, DW_FORM_string, SP.getName());
Devang Patelef4bf3b2009-01-15 19:26:23 +00001926 const std::string &LinkageName = SP.getLinkageName();
Devang Patel526b01d2009-01-05 18:59:44 +00001927 if (!LinkageName.empty())
Devang Patelb28de842009-01-17 08:01:33 +00001928 AddString(SPDie, DW_AT_MIPS_linkage_name, DW_FORM_string,
Devang Patel245446c2009-01-17 08:05:14 +00001929 LinkageName);
Devang Patelb28de842009-01-17 08:01:33 +00001930 AddSourceLine(SPDie, &SP);
Devang Patel526b01d2009-01-05 18:59:44 +00001931
Devang Patelb28de842009-01-17 08:01:33 +00001932 DICompositeType SPTy = SP.getType();
1933 DIArray Args = SPTy.getTypeArray();
1934
Devang Patel526b01d2009-01-05 18:59:44 +00001935 // Add Return Type.
Devang Patelef4bf3b2009-01-15 19:26:23 +00001936 if (!IsConstructor)
Devang Patelb28de842009-01-17 08:01:33 +00001937 AddType(DW_Unit, SPDie, DIType(Args.getElement(0).getGV()));
1938
Devang Patel526b01d2009-01-05 18:59:44 +00001939 // Add arguments.
Devang Patelb28de842009-01-17 08:01:33 +00001940 if (!Args.isNull())
1941 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
Devang Patel245446c2009-01-17 08:05:14 +00001942 DIE *Arg = new DIE(DW_TAG_formal_parameter);
1943 AddType(DW_Unit, Arg, DIType(Args.getElement(i).getGV()));
1944 AddUInt(Arg, DW_AT_artificial, DW_FORM_flag, 1); // ???
1945 SPDie->AddChild(Arg);
Devang Patelb28de842009-01-17 08:01:33 +00001946 }
1947
Devang Patelef4bf3b2009-01-15 19:26:23 +00001948 if (!SP.isLocalToUnit())
Devang Patelb28de842009-01-17 08:01:33 +00001949 AddUInt(SPDie, DW_AT_external, DW_FORM_flag, 1);
1950 return SPDie;
Devang Patel526b01d2009-01-05 18:59:44 +00001951 }
1952
Devang Patelb28de842009-01-17 08:01:33 +00001953 /// FindCompileUnit - Get the compile unit for the given descriptor.
1954 ///
Devang Patel5f244e32009-01-05 22:35:52 +00001955 CompileUnit *FindCompileUnit(DICompileUnit Unit) {
1956 CompileUnit *DW_Unit = DW_CUs[Unit.getGV()];
1957 assert(DW_Unit && "Missing compile unit.");
1958 return DW_Unit;
1959 }
1960
Devang Patel42f6bed2009-01-13 23:54:55 +00001961 /// NewDbgScopeVariable - Create a new scope variable.
Devang Patel4d1709e2009-01-08 02:33:41 +00001962 ///
1963 DIE *NewDbgScopeVariable(DbgVariable *DV, CompileUnit *Unit) {
1964 // Get the descriptor.
Devang Patel7c8a2772009-01-16 19:28:14 +00001965 const DIVariable &VD = DV->getVariable();
Devang Patel4d1709e2009-01-08 02:33:41 +00001966
1967 // Translate tag to proper Dwarf tag. The result variable is dropped for
1968 // now.
1969 unsigned Tag;
Devang Patel7c8a2772009-01-16 19:28:14 +00001970 switch (VD.getTag()) {
Devang Patel4d1709e2009-01-08 02:33:41 +00001971 case DW_TAG_return_variable: return NULL;
1972 case DW_TAG_arg_variable: Tag = DW_TAG_formal_parameter; break;
1973 case DW_TAG_auto_variable: // fall thru
1974 default: Tag = DW_TAG_variable; break;
1975 }
1976
1977 // Define variable debug information entry.
1978 DIE *VariableDie = new DIE(Tag);
Devang Patel7c8a2772009-01-16 19:28:14 +00001979 AddString(VariableDie, DW_AT_name, DW_FORM_string, VD.getName());
Devang Patel4d1709e2009-01-08 02:33:41 +00001980
1981 // Add source line info if available.
Devang Patel7c8a2772009-01-16 19:28:14 +00001982 AddSourceLine(VariableDie, &VD);
Devang Patel4d1709e2009-01-08 02:33:41 +00001983
1984 // Add variable type.
Devang Patel7c8a2772009-01-16 19:28:14 +00001985 AddType(Unit, VariableDie, VD.getType());
Devang Patel4d1709e2009-01-08 02:33:41 +00001986
1987 // Add variable address.
1988 MachineLocation Location;
1989 Location.set(RI->getFrameRegister(*MF),
1990 RI->getFrameIndexOffset(*MF, DV->getFrameIndex()));
1991 AddAddress(VariableDie, DW_AT_location, Location);
1992
1993 return VariableDie;
1994 }
1995
Devang Patel4d1709e2009-01-08 02:33:41 +00001996 /// getOrCreateScope - Returns the scope associated with the given descriptor.
1997 ///
1998 DbgScope *getOrCreateScope(GlobalVariable *V) {
1999 DbgScope *&Slot = DbgScopeMap[V];
2000 if (!Slot) {
2001 // FIXME - breaks down when the context is an inlined function.
2002 DIDescriptor ParentDesc;
Devang Patel2560d922009-01-15 18:25:17 +00002003 DIDescriptor Desc(V);
2004 if (Desc.getTag() == dwarf::DW_TAG_lexical_block) {
2005 DIBlock Block(V);
2006 ParentDesc = Block.getContext();
Devang Patel4d1709e2009-01-08 02:33:41 +00002007 }
2008 DbgScope *Parent = ParentDesc.isNull() ?
Devang Pateldd49fbb2009-01-10 02:34:18 +00002009 NULL : getOrCreateScope(ParentDesc.getGV());
Devang Patel2560d922009-01-15 18:25:17 +00002010 Slot = new DbgScope(Parent, Desc);
Devang Patel4d1709e2009-01-08 02:33:41 +00002011 if (Parent) {
2012 Parent->AddScope(Slot);
2013 } else if (RootDbgScope) {
2014 // FIXME - Add inlined function scopes to the root so we can delete
2015 // them later. Long term, handle inlined functions properly.
2016 RootDbgScope->AddScope(Slot);
2017 } else {
2018 // First function is top level function.
2019 RootDbgScope = Slot;
2020 }
2021 }
2022 return Slot;
2023 }
2024
2025 /// ConstructDbgScope - Construct the components of a scope.
2026 ///
2027 void ConstructDbgScope(DbgScope *ParentScope,
2028 unsigned ParentStartID, unsigned ParentEndID,
2029 DIE *ParentDie, CompileUnit *Unit) {
2030 // Add variables to scope.
Devang Patel63c22f42009-01-10 02:42:49 +00002031 SmallVector<DbgVariable *, 8> &Variables = ParentScope->getVariables();
Devang Patel4d1709e2009-01-08 02:33:41 +00002032 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
2033 DIE *VariableDie = NewDbgScopeVariable(Variables[i], Unit);
2034 if (VariableDie) ParentDie->AddChild(VariableDie);
2035 }
2036
2037 // Add nested scopes.
Devang Patel63c22f42009-01-10 02:42:49 +00002038 SmallVector<DbgScope *, 4> &Scopes = ParentScope->getScopes();
Devang Patel4d1709e2009-01-08 02:33:41 +00002039 for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
2040 // Define the Scope debug information entry.
2041 DbgScope *Scope = Scopes[j];
2042 // FIXME - Ignore inlined functions for the time being.
2043 if (!Scope->getParent()) continue;
2044
Devang Patelb9224922009-01-12 18:41:00 +00002045 unsigned StartID = MMI->MappedLabel(Scope->getStartLabelID());
2046 unsigned EndID = MMI->MappedLabel(Scope->getEndLabelID());
Devang Patel4d1709e2009-01-08 02:33:41 +00002047
2048 // Ignore empty scopes.
2049 if (StartID == EndID && StartID != 0) continue;
2050 if (Scope->getScopes().empty() && Scope->getVariables().empty()) continue;
2051
2052 if (StartID == ParentStartID && EndID == ParentEndID) {
2053 // Just add stuff to the parent scope.
2054 ConstructDbgScope(Scope, ParentStartID, ParentEndID, ParentDie, Unit);
2055 } else {
2056 DIE *ScopeDie = new DIE(DW_TAG_lexical_block);
2057
2058 // Add the scope bounds.
2059 if (StartID) {
2060 AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
2061 DWLabel("label", StartID));
2062 } else {
2063 AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
2064 DWLabel("func_begin", SubprogramCount));
2065 }
2066 if (EndID) {
2067 AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
2068 DWLabel("label", EndID));
2069 } else {
2070 AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
2071 DWLabel("func_end", SubprogramCount));
2072 }
2073
2074 // Add the scope contents.
2075 ConstructDbgScope(Scope, StartID, EndID, ScopeDie, Unit);
2076 ParentDie->AddChild(ScopeDie);
2077 }
2078 }
2079 }
2080
2081 /// ConstructRootDbgScope - Construct the scope for the subprogram.
2082 ///
2083 void ConstructRootDbgScope(DbgScope *RootScope) {
2084 // Exit if there is no root scope.
2085 if (!RootScope) return;
Devang Patel2560d922009-01-15 18:25:17 +00002086 DIDescriptor Desc = RootScope->getDesc();
2087 if (Desc.isNull())
2088 return;
Devang Patel4d1709e2009-01-08 02:33:41 +00002089
2090 // Get the subprogram debug information entry.
Devang Patel2560d922009-01-15 18:25:17 +00002091 DISubprogram SPD(Desc.getGV());
Devang Patel4d1709e2009-01-08 02:33:41 +00002092
2093 // Get the compile unit context.
Devang Patel57ec9ac2009-01-12 22:58:14 +00002094 CompileUnit *Unit = FindCompileUnit(SPD.getCompileUnit());
Devang Patel4d1709e2009-01-08 02:33:41 +00002095
2096 // Get the subprogram die.
Devang Patel57ec9ac2009-01-12 22:58:14 +00002097 DIE *SPDie = Unit->getDieMapSlotFor(SPD.getGV());
Devang Patel4d1709e2009-01-08 02:33:41 +00002098 assert(SPDie && "Missing subprogram descriptor");
2099
2100 // Add the function bounds.
2101 AddLabel(SPDie, DW_AT_low_pc, DW_FORM_addr,
2102 DWLabel("func_begin", SubprogramCount));
2103 AddLabel(SPDie, DW_AT_high_pc, DW_FORM_addr,
2104 DWLabel("func_end", SubprogramCount));
2105 MachineLocation Location(RI->getFrameRegister(*MF));
2106 AddAddress(SPDie, DW_AT_frame_base, Location);
2107
2108 ConstructDbgScope(RootScope, 0, 0, SPDie, Unit);
2109 }
2110
2111 /// ConstructDefaultDbgScope - Construct a default scope for the subprogram.
2112 ///
2113 void ConstructDefaultDbgScope(MachineFunction *MF) {
2114 // Find the correct subprogram descriptor.
2115 std::string SPName = "llvm.dbg.subprograms";
2116 std::vector<GlobalVariable*> Result;
2117 getGlobalVariablesUsing(*M, SPName, Result);
2118 for (std::vector<GlobalVariable *>::iterator I = Result.begin(),
2119 E = Result.end(); I != E; ++I) {
2120
Devang Patel7c8a2772009-01-16 19:28:14 +00002121 DISubprogram SPD(*I);
Devang Patel4d1709e2009-01-08 02:33:41 +00002122
Devang Patel7c8a2772009-01-16 19:28:14 +00002123 if (SPD.getName() == MF->getFunction()->getName()) {
Devang Patel4d1709e2009-01-08 02:33:41 +00002124 // Get the compile unit context.
Devang Patel7c8a2772009-01-16 19:28:14 +00002125 CompileUnit *Unit = FindCompileUnit(SPD.getCompileUnit());
Devang Patel4d1709e2009-01-08 02:33:41 +00002126
2127 // Get the subprogram die.
Devang Patel7c8a2772009-01-16 19:28:14 +00002128 DIE *SPDie = Unit->getDieMapSlotFor(SPD.getGV());
Devang Patel4d1709e2009-01-08 02:33:41 +00002129 assert(SPDie && "Missing subprogram descriptor");
2130
2131 // Add the function bounds.
2132 AddLabel(SPDie, DW_AT_low_pc, DW_FORM_addr,
2133 DWLabel("func_begin", SubprogramCount));
2134 AddLabel(SPDie, DW_AT_high_pc, DW_FORM_addr,
2135 DWLabel("func_end", SubprogramCount));
2136
2137 MachineLocation Location(RI->getFrameRegister(*MF));
2138 AddAddress(SPDie, DW_AT_frame_base, Location);
2139 return;
2140 }
2141 }
2142#if 0
2143 // FIXME: This is causing an abort because C++ mangled names are compared
2144 // with their unmangled counterparts. See PR2885. Don't do this assert.
2145 assert(0 && "Couldn't find DIE for machine function!");
2146#endif
2147 }
2148
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002149 /// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc
2150 /// tools to recognize the object file contains Dwarf information.
2151 void EmitInitial() {
2152 // Check to see if we already emitted intial headers.
2153 if (didInitial) return;
2154 didInitial = true;
aslc200b112008-08-16 12:57:46 +00002155
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002156 // Dwarf sections base addresses.
2157 if (TAI->doesDwarfRequireFrameSection()) {
2158 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2159 EmitLabel("section_debug_frame", 0);
2160 }
2161 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
2162 EmitLabel("section_info", 0);
2163 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
2164 EmitLabel("section_abbrev", 0);
2165 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
2166 EmitLabel("section_aranges", 0);
2167 Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
2168 EmitLabel("section_macinfo", 0);
2169 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
2170 EmitLabel("section_line", 0);
2171 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
2172 EmitLabel("section_loc", 0);
2173 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
2174 EmitLabel("section_pubnames", 0);
2175 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
2176 EmitLabel("section_str", 0);
2177 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
2178 EmitLabel("section_ranges", 0);
2179
Anton Korobeynikov55b94962008-09-24 22:15:21 +00002180 Asm->SwitchToSection(TAI->getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002181 EmitLabel("text_begin", 0);
Anton Korobeynikovcca60fa2008-09-24 22:16:16 +00002182 Asm->SwitchToSection(TAI->getDataSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002183 EmitLabel("data_begin", 0);
2184 }
2185
2186 /// EmitDIE - Recusively Emits a debug information entry.
2187 ///
2188 void EmitDIE(DIE *Die) {
2189 // Get the abbreviation for this DIE.
2190 unsigned AbbrevNumber = Die->getAbbrevNumber();
2191 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
aslc200b112008-08-16 12:57:46 +00002192
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002193 Asm->EOL();
2194
2195 // Emit the code (index) for the abbreviation.
2196 Asm->EmitULEB128Bytes(AbbrevNumber);
Evan Cheng0eeed442008-07-01 23:18:29 +00002197
2198 if (VerboseAsm)
2199 Asm->EOL(std::string("Abbrev [" +
2200 utostr(AbbrevNumber) +
2201 "] 0x" + utohexstr(Die->getOffset()) +
2202 ":0x" + utohexstr(Die->getSize()) + " " +
2203 TagString(Abbrev->getTag())));
2204 else
2205 Asm->EOL();
aslc200b112008-08-16 12:57:46 +00002206
Owen Anderson88dd6232008-06-24 21:44:59 +00002207 SmallVector<DIEValue*, 32> &Values = Die->getValues();
2208 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
aslc200b112008-08-16 12:57:46 +00002209
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002210 // Emit the DIE attribute values.
2211 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2212 unsigned Attr = AbbrevData[i].getAttribute();
2213 unsigned Form = AbbrevData[i].getForm();
2214 assert(Form && "Too many attributes for DIE (check abbreviation)");
aslc200b112008-08-16 12:57:46 +00002215
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002216 switch (Attr) {
2217 case DW_AT_sibling: {
2218 Asm->EmitInt32(Die->SiblingOffset());
2219 break;
2220 }
2221 default: {
2222 // Emit an attribute using the defined form.
2223 Values[i]->EmitValue(*this, Form);
2224 break;
2225 }
2226 }
aslc200b112008-08-16 12:57:46 +00002227
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002228 Asm->EOL(AttributeString(Attr));
2229 }
aslc200b112008-08-16 12:57:46 +00002230
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002231 // Emit the DIE children if any.
2232 if (Abbrev->getChildrenFlag() == DW_CHILDREN_yes) {
2233 const std::vector<DIE *> &Children = Die->getChildren();
aslc200b112008-08-16 12:57:46 +00002234
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002235 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2236 EmitDIE(Children[j]);
2237 }
aslc200b112008-08-16 12:57:46 +00002238
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002239 Asm->EmitInt8(0); Asm->EOL("End Of Children Mark");
2240 }
2241 }
2242
2243 /// SizeAndOffsetDie - Compute the size and offset of a DIE.
2244 ///
2245 unsigned SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last) {
2246 // Get the children.
2247 const std::vector<DIE *> &Children = Die->getChildren();
aslc200b112008-08-16 12:57:46 +00002248
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002249 // If not last sibling and has children then add sibling offset attribute.
2250 if (!Last && !Children.empty()) Die->AddSiblingOffset();
2251
2252 // Record the abbreviation.
2253 AssignAbbrevNumber(Die->getAbbrev());
aslc200b112008-08-16 12:57:46 +00002254
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002255 // Get the abbreviation for this DIE.
2256 unsigned AbbrevNumber = Die->getAbbrevNumber();
2257 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2258
2259 // Set DIE offset
2260 Die->setOffset(Offset);
aslc200b112008-08-16 12:57:46 +00002261
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002262 // Start the size with the size of abbreviation code.
aslc200b112008-08-16 12:57:46 +00002263 Offset += TargetAsmInfo::getULEB128Size(AbbrevNumber);
2264
Owen Anderson88dd6232008-06-24 21:44:59 +00002265 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
2266 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002267
2268 // Size the DIE attribute values.
2269 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2270 // Size attribute value.
2271 Offset += Values[i]->SizeOf(*this, AbbrevData[i].getForm());
2272 }
aslc200b112008-08-16 12:57:46 +00002273
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002274 // Size the DIE children if any.
2275 if (!Children.empty()) {
2276 assert(Abbrev->getChildrenFlag() == DW_CHILDREN_yes &&
2277 "Children flag not set");
aslc200b112008-08-16 12:57:46 +00002278
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002279 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2280 Offset = SizeAndOffsetDie(Children[j], Offset, (j + 1) == M);
2281 }
aslc200b112008-08-16 12:57:46 +00002282
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002283 // End of children marker.
2284 Offset += sizeof(int8_t);
2285 }
2286
2287 Die->setSize(Offset - Die->getOffset());
2288 return Offset;
2289 }
2290
2291 /// SizeAndOffsets - Compute the size and offset of all the DIEs.
2292 ///
2293 void SizeAndOffsets() {
2294 // Process base compile unit.
Devang Patel6eae2832009-01-12 23:05:55 +00002295 for (DenseMap<Value *, CompileUnit *>::iterator CI = DW_CUs.begin(),
2296 CE = DW_CUs.end(); CI != CE; ++CI) {
2297 CompileUnit *Unit = CI->second;
2298 // Compute size of compile unit header
2299 unsigned Offset = sizeof(int32_t) + // Length of Compilation Unit Info
2300 sizeof(int16_t) + // DWARF version number
2301 sizeof(int32_t) + // Offset Into Abbrev. Section
2302 sizeof(int8_t); // Pointer Size (in bytes)
2303 SizeAndOffsetDie(Unit->getDie(), Offset, true);
2304 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002305 }
2306
2307 /// EmitDebugInfo - Emit the debug info section.
2308 ///
2309 void EmitDebugInfo() {
2310 // Start debug info section.
2311 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
aslc200b112008-08-16 12:57:46 +00002312
Devang Patel6eae2832009-01-12 23:05:55 +00002313 for (DenseMap<Value *, CompileUnit *>::iterator CI = DW_CUs.begin(),
2314 CE = DW_CUs.end(); CI != CE; ++CI) {
2315 CompileUnit *Unit = CI->second;
2316 DIE *Die = Unit->getDie();
2317 // Emit the compile units header.
2318 EmitLabel("info_begin", Unit->getID());
2319 // Emit size of content not including length itself
2320 unsigned ContentSize = Die->getSize() +
2321 sizeof(int16_t) + // DWARF version number
2322 sizeof(int32_t) + // Offset Into Abbrev. Section
2323 sizeof(int8_t) + // Pointer Size (in bytes)
2324 sizeof(int32_t); // FIXME - extra pad for gdb bug.
2325
2326 Asm->EmitInt32(ContentSize); Asm->EOL("Length of Compilation Unit Info");
2327 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF version number");
2328 EmitSectionOffset("abbrev_begin", "section_abbrev", 0, 0, true, false);
2329 Asm->EOL("Offset Into Abbrev. Section");
2330 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)");
2331
2332 EmitDIE(Die);
2333 // FIXME - extra padding for gdb bug.
2334 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2335 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2336 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2337 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2338 EmitLabel("info_end", Unit->getID());
2339
2340 Asm->EOL();
2341 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002342 }
2343
2344 /// EmitAbbreviations - Emit the abbreviation section.
2345 ///
2346 void EmitAbbreviations() const {
2347 // Check to see if it is worth the effort.
2348 if (!Abbreviations.empty()) {
2349 // Start the debug abbrev section.
2350 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
aslc200b112008-08-16 12:57:46 +00002351
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002352 EmitLabel("abbrev_begin", 0);
aslc200b112008-08-16 12:57:46 +00002353
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002354 // For each abbrevation.
2355 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2356 // Get abbreviation data
2357 const DIEAbbrev *Abbrev = Abbreviations[i];
aslc200b112008-08-16 12:57:46 +00002358
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002359 // Emit the abbrevations code (base 1 index.)
2360 Asm->EmitULEB128Bytes(Abbrev->getNumber());
2361 Asm->EOL("Abbreviation Code");
aslc200b112008-08-16 12:57:46 +00002362
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002363 // Emit the abbreviations data.
2364 Abbrev->Emit(*this);
aslc200b112008-08-16 12:57:46 +00002365
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002366 Asm->EOL();
2367 }
aslc200b112008-08-16 12:57:46 +00002368
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002369 // Mark end of abbreviations.
2370 Asm->EmitULEB128Bytes(0); Asm->EOL("EOM(3)");
2371
2372 EmitLabel("abbrev_end", 0);
aslc200b112008-08-16 12:57:46 +00002373
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002374 Asm->EOL();
2375 }
2376 }
2377
Bill Wendling1983a2a2008-07-20 00:11:19 +00002378 /// EmitEndOfLineMatrix - Emit the last address of the section and the end of
2379 /// the line matrix.
aslc200b112008-08-16 12:57:46 +00002380 ///
Bill Wendling1983a2a2008-07-20 00:11:19 +00002381 void EmitEndOfLineMatrix(unsigned SectionEnd) {
2382 // Define last address of section.
2383 Asm->EmitInt8(0); Asm->EOL("Extended Op");
2384 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
2385 Asm->EmitInt8(DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2386 EmitReference("section_end", SectionEnd); Asm->EOL("Section end label");
2387
2388 // Mark end of matrix.
2389 Asm->EmitInt8(0); Asm->EOL("DW_LNE_end_sequence");
2390 Asm->EmitULEB128Bytes(1); Asm->EOL();
2391 Asm->EmitInt8(1); Asm->EOL();
2392 }
2393
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002394 /// EmitDebugLines - Emit source line information.
2395 ///
2396 void EmitDebugLines() {
Bill Wendling1983a2a2008-07-20 00:11:19 +00002397 // If the target is using .loc/.file, the assembler will be emitting the
2398 // .debug_line table automatically.
2399 if (TAI->hasDotLocAndDotFile())
Dan Gohmanc55b34a2007-09-24 21:43:52 +00002400 return;
2401
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002402 // Minimum line delta, thus ranging from -10..(255-10).
2403 const int MinLineDelta = -(DW_LNS_fixed_advance_pc + 1);
2404 // Maximum line delta, thus ranging from -10..(255-10).
2405 const int MaxLineDelta = 255 + MinLineDelta;
2406
2407 // Start the dwarf line section.
2408 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
aslc200b112008-08-16 12:57:46 +00002409
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002410 // Construct the section header.
aslc200b112008-08-16 12:57:46 +00002411
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002412 EmitDifference("line_end", 0, "line_begin", 0, true);
2413 Asm->EOL("Length of Source Line Info");
2414 EmitLabel("line_begin", 0);
aslc200b112008-08-16 12:57:46 +00002415
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002416 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF version number");
aslc200b112008-08-16 12:57:46 +00002417
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002418 EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0, true);
2419 Asm->EOL("Prolog Length");
2420 EmitLabel("line_prolog_begin", 0);
aslc200b112008-08-16 12:57:46 +00002421
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002422 Asm->EmitInt8(1); Asm->EOL("Minimum Instruction Length");
2423
2424 Asm->EmitInt8(1); Asm->EOL("Default is_stmt_start flag");
2425
2426 Asm->EmitInt8(MinLineDelta); Asm->EOL("Line Base Value (Special Opcodes)");
aslc200b112008-08-16 12:57:46 +00002427
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002428 Asm->EmitInt8(MaxLineDelta); Asm->EOL("Line Range Value (Special Opcodes)");
2429
2430 Asm->EmitInt8(-MinLineDelta); Asm->EOL("Special Opcode Base");
aslc200b112008-08-16 12:57:46 +00002431
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002432 // Line number standard opcode encodings argument count
2433 Asm->EmitInt8(0); Asm->EOL("DW_LNS_copy arg count");
2434 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_pc arg count");
2435 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_line arg count");
2436 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_file arg count");
2437 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_column arg count");
2438 Asm->EmitInt8(0); Asm->EOL("DW_LNS_negate_stmt arg count");
2439 Asm->EmitInt8(0); Asm->EOL("DW_LNS_set_basic_block arg count");
2440 Asm->EmitInt8(0); Asm->EOL("DW_LNS_const_add_pc arg count");
2441 Asm->EmitInt8(1); Asm->EOL("DW_LNS_fixed_advance_pc arg count");
2442
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002443 // Emit directories.
2444 for (unsigned DirectoryID = 1, NDID = Directories.size();
2445 DirectoryID <= NDID; ++DirectoryID) {
2446 Asm->EmitString(Directories[DirectoryID]); Asm->EOL("Directory");
2447 }
2448 Asm->EmitInt8(0); Asm->EOL("End of directories");
aslc200b112008-08-16 12:57:46 +00002449
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002450 // Emit files.
Devang Patel6ccd57e2009-01-13 00:20:51 +00002451 for (unsigned SourceID = 1, NSID = SrcFiles.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002452 SourceID <= NSID; ++SourceID) {
Devang Patel6ccd57e2009-01-13 00:20:51 +00002453 const SrcFileInfo &SourceFile = SrcFiles[SourceID];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002454 Asm->EmitString(SourceFile.getName());
2455 Asm->EOL("Source");
2456 Asm->EmitULEB128Bytes(SourceFile.getDirectoryID());
2457 Asm->EOL("Directory #");
2458 Asm->EmitULEB128Bytes(0);
2459 Asm->EOL("Mod date");
2460 Asm->EmitULEB128Bytes(0);
2461 Asm->EOL("File size");
2462 }
2463 Asm->EmitInt8(0); Asm->EOL("End of files");
aslc200b112008-08-16 12:57:46 +00002464
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002465 EmitLabel("line_prolog_end", 0);
aslc200b112008-08-16 12:57:46 +00002466
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002467 // A sequence for each text section.
Bill Wendling1983a2a2008-07-20 00:11:19 +00002468 unsigned SecSrcLinesSize = SectionSourceLines.size();
2469
2470 for (unsigned j = 0; j < SecSrcLinesSize; ++j) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002471 // Isolate current sections line info.
Devang Patel35a078f2009-01-12 22:54:42 +00002472 const std::vector<SrcLineInfo> &LineInfos = SectionSourceLines[j];
Evan Cheng0eeed442008-07-01 23:18:29 +00002473
Anton Korobeynikov55b94962008-09-24 22:15:21 +00002474 if (VerboseAsm) {
2475 const Section* S = SectionMap[j + 1];
2476 Asm->EOL(std::string("Section ") + S->getName());
2477 } else
Evan Cheng0eeed442008-07-01 23:18:29 +00002478 Asm->EOL();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002479
2480 // Dwarf assumes we start with first line of first source file.
2481 unsigned Source = 1;
2482 unsigned Line = 1;
aslc200b112008-08-16 12:57:46 +00002483
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002484 // Construct rows of the address, source, line, column matrix.
2485 for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
Devang Patel35a078f2009-01-12 22:54:42 +00002486 const SrcLineInfo &LineInfo = LineInfos[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002487 unsigned LabelID = MMI->MappedLabel(LineInfo.getLabelID());
2488 if (!LabelID) continue;
aslc200b112008-08-16 12:57:46 +00002489
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002490 unsigned SourceID = LineInfo.getSourceID();
Devang Patel6ccd57e2009-01-13 00:20:51 +00002491 const SrcFileInfo &SourceFile = SrcFiles[SourceID];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002492 unsigned DirectoryID = SourceFile.getDirectoryID();
Evan Cheng0eeed442008-07-01 23:18:29 +00002493 if (VerboseAsm)
2494 Asm->EOL(Directories[DirectoryID]
2495 + SourceFile.getName()
2496 + ":"
2497 + utostr_32(LineInfo.getLine()));
2498 else
2499 Asm->EOL();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002500
2501 // Define the line address.
2502 Asm->EmitInt8(0); Asm->EOL("Extended Op");
Dan Gohmancfb72b22007-09-27 23:12:31 +00002503 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002504 Asm->EmitInt8(DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2505 EmitReference("label", LabelID); Asm->EOL("Location label");
aslc200b112008-08-16 12:57:46 +00002506
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002507 // If change of source, then switch to the new source.
2508 if (Source != LineInfo.getSourceID()) {
2509 Source = LineInfo.getSourceID();
2510 Asm->EmitInt8(DW_LNS_set_file); Asm->EOL("DW_LNS_set_file");
2511 Asm->EmitULEB128Bytes(Source); Asm->EOL("New Source");
2512 }
aslc200b112008-08-16 12:57:46 +00002513
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002514 // If change of line.
2515 if (Line != LineInfo.getLine()) {
2516 // Determine offset.
2517 int Offset = LineInfo.getLine() - Line;
2518 int Delta = Offset - MinLineDelta;
aslc200b112008-08-16 12:57:46 +00002519
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002520 // Update line.
2521 Line = LineInfo.getLine();
aslc200b112008-08-16 12:57:46 +00002522
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002523 // If delta is small enough and in range...
2524 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
2525 // ... then use fast opcode.
2526 Asm->EmitInt8(Delta - MinLineDelta); Asm->EOL("Line Delta");
2527 } else {
2528 // ... otherwise use long hand.
2529 Asm->EmitInt8(DW_LNS_advance_line); Asm->EOL("DW_LNS_advance_line");
2530 Asm->EmitSLEB128Bytes(Offset); Asm->EOL("Line Offset");
2531 Asm->EmitInt8(DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2532 }
2533 } else {
2534 // Copy the previous row (different address or source)
2535 Asm->EmitInt8(DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2536 }
2537 }
2538
Bill Wendling1983a2a2008-07-20 00:11:19 +00002539 EmitEndOfLineMatrix(j + 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002540 }
Bill Wendling1983a2a2008-07-20 00:11:19 +00002541
2542 if (SecSrcLinesSize == 0)
2543 // Because we're emitting a debug_line section, we still need a line
2544 // table. The linker and friends expect it to exist. If there's nothing to
2545 // put into it, emit an empty table.
2546 EmitEndOfLineMatrix(1);
aslc200b112008-08-16 12:57:46 +00002547
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002548 EmitLabel("line_end", 0);
aslc200b112008-08-16 12:57:46 +00002549
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002550 Asm->EOL();
2551 }
aslc200b112008-08-16 12:57:46 +00002552
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002553 /// EmitCommonDebugFrame - Emit common frame info into a debug frame section.
2554 ///
2555 void EmitCommonDebugFrame() {
2556 if (!TAI->doesDwarfRequireFrameSection())
2557 return;
2558
2559 int stackGrowth =
2560 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2561 TargetFrameInfo::StackGrowsUp ?
Dan Gohmancfb72b22007-09-27 23:12:31 +00002562 TD->getPointerSize() : -TD->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002563
2564 // Start the dwarf frame section.
2565 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2566
2567 EmitLabel("debug_frame_common", 0);
2568 EmitDifference("debug_frame_common_end", 0,
2569 "debug_frame_common_begin", 0, true);
2570 Asm->EOL("Length of Common Information Entry");
2571
2572 EmitLabel("debug_frame_common_begin", 0);
2573 Asm->EmitInt32((int)DW_CIE_ID);
2574 Asm->EOL("CIE Identifier Tag");
2575 Asm->EmitInt8(DW_CIE_VERSION);
2576 Asm->EOL("CIE Version");
2577 Asm->EmitString("");
2578 Asm->EOL("CIE Augmentation");
2579 Asm->EmitULEB128Bytes(1);
2580 Asm->EOL("CIE Code Alignment Factor");
2581 Asm->EmitSLEB128Bytes(stackGrowth);
aslc200b112008-08-16 12:57:46 +00002582 Asm->EOL("CIE Data Alignment Factor");
Dale Johannesenf5a11532007-11-13 19:13:01 +00002583 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002584 Asm->EOL("CIE RA Column");
aslc200b112008-08-16 12:57:46 +00002585
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002586 std::vector<MachineMove> Moves;
2587 RI->getInitialFrameState(Moves);
2588
Dale Johannesenf5a11532007-11-13 19:13:01 +00002589 EmitFrameMoves(NULL, 0, Moves, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002590
Evan Cheng7e7d1942008-02-29 19:36:59 +00002591 Asm->EmitAlignment(2, 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002592 EmitLabel("debug_frame_common_end", 0);
aslc200b112008-08-16 12:57:46 +00002593
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002594 Asm->EOL();
2595 }
2596
2597 /// EmitFunctionDebugFrame - Emit per function frame info into a debug frame
2598 /// section.
2599 void EmitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo) {
2600 if (!TAI->doesDwarfRequireFrameSection())
2601 return;
aslc200b112008-08-16 12:57:46 +00002602
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002603 // Start the dwarf frame section.
2604 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
aslc200b112008-08-16 12:57:46 +00002605
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002606 EmitDifference("debug_frame_end", DebugFrameInfo.Number,
2607 "debug_frame_begin", DebugFrameInfo.Number, true);
2608 Asm->EOL("Length of Frame Information Entry");
aslc200b112008-08-16 12:57:46 +00002609
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002610 EmitLabel("debug_frame_begin", DebugFrameInfo.Number);
2611
2612 EmitSectionOffset("debug_frame_common", "section_debug_frame",
2613 0, 0, true, false);
2614 Asm->EOL("FDE CIE offset");
2615
2616 EmitReference("func_begin", DebugFrameInfo.Number);
2617 Asm->EOL("FDE initial location");
2618 EmitDifference("func_end", DebugFrameInfo.Number,
2619 "func_begin", DebugFrameInfo.Number);
2620 Asm->EOL("FDE address range");
aslc200b112008-08-16 12:57:46 +00002621
Devang Patelb28de842009-01-17 08:01:33 +00002622 EmitFrameMoves("func_begin", DebugFrameInfo.Number, DebugFrameInfo.Moves,
Devang Patel245446c2009-01-17 08:05:14 +00002623 false);
aslc200b112008-08-16 12:57:46 +00002624
Evan Cheng7e7d1942008-02-29 19:36:59 +00002625 Asm->EmitAlignment(2, 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002626 EmitLabel("debug_frame_end", DebugFrameInfo.Number);
2627
2628 Asm->EOL();
2629 }
2630
2631 /// EmitDebugPubNames - Emit visible names into a debug pubnames section.
2632 ///
2633 void EmitDebugPubNames() {
2634 // Start the dwarf pubnames section.
2635 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
aslc200b112008-08-16 12:57:46 +00002636
Devang Patel6eae2832009-01-12 23:05:55 +00002637 for (DenseMap<Value *, CompileUnit *>::iterator CI = DW_CUs.begin(),
2638 CE = DW_CUs.end(); CI != CE; ++CI) {
2639 CompileUnit *Unit = CI->second;
aslc200b112008-08-16 12:57:46 +00002640
Devang Patel6eae2832009-01-12 23:05:55 +00002641 EmitDifference("pubnames_end", Unit->getID(),
2642 "pubnames_begin", Unit->getID(), true);
2643 Asm->EOL("Length of Public Names Info");
2644
2645 EmitLabel("pubnames_begin", Unit->getID());
2646
2647 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF Version");
2648
2649 EmitSectionOffset("info_begin", "section_info",
2650 Unit->getID(), 0, true, false);
2651 Asm->EOL("Offset of Compilation Unit Info");
2652
Devang Patelb28de842009-01-17 08:01:33 +00002653 EmitDifference("info_end", Unit->getID(), "info_begin", Unit->getID(),
Devang Patel245446c2009-01-17 08:05:14 +00002654 true);
Devang Patel6eae2832009-01-12 23:05:55 +00002655 Asm->EOL("Compilation Unit Length");
2656
2657 std::map<std::string, DIE *> &Globals = Unit->getGlobals();
2658
2659 for (std::map<std::string, DIE *>::iterator GI = Globals.begin(),
2660 GE = Globals.end();
2661 GI != GE; ++GI) {
2662 const std::string &Name = GI->first;
2663 DIE * Entity = GI->second;
2664
2665 Asm->EmitInt32(Entity->getOffset()); Asm->EOL("DIE offset");
2666 Asm->EmitString(Name); Asm->EOL("External Name");
2667 }
2668
2669 Asm->EmitInt32(0); Asm->EOL("End Mark");
2670 EmitLabel("pubnames_end", Unit->getID());
2671
2672 Asm->EOL();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002673 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002674 }
2675
2676 /// EmitDebugStr - Emit visible names into a debug str section.
2677 ///
2678 void EmitDebugStr() {
2679 // Check to see if it is worth the effort.
2680 if (!StringPool.empty()) {
2681 // Start the dwarf str section.
2682 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
aslc200b112008-08-16 12:57:46 +00002683
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002684 // For each of strings in the string pool.
2685 for (unsigned StringID = 1, N = StringPool.size();
2686 StringID <= N; ++StringID) {
2687 // Emit a label for reference from debug information entries.
2688 EmitLabel("string", StringID);
2689 // Emit the string itself.
2690 const std::string &String = StringPool[StringID];
2691 Asm->EmitString(String); Asm->EOL();
2692 }
aslc200b112008-08-16 12:57:46 +00002693
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002694 Asm->EOL();
2695 }
2696 }
2697
2698 /// EmitDebugLoc - Emit visible names into a debug loc section.
2699 ///
2700 void EmitDebugLoc() {
2701 // Start the dwarf loc section.
2702 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
aslc200b112008-08-16 12:57:46 +00002703
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002704 Asm->EOL();
2705 }
2706
2707 /// EmitDebugARanges - Emit visible names into a debug aranges section.
2708 ///
2709 void EmitDebugARanges() {
2710 // Start the dwarf aranges section.
2711 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
aslc200b112008-08-16 12:57:46 +00002712
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002713 // FIXME - Mock up
Bill Wendlingb22ae7d2008-09-26 00:28:12 +00002714#if 0
aslc200b112008-08-16 12:57:46 +00002715 CompileUnit *Unit = GetBaseCompileUnit();
2716
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002717 // Don't include size of length
2718 Asm->EmitInt32(0x1c); Asm->EOL("Length of Address Ranges Info");
aslc200b112008-08-16 12:57:46 +00002719
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002720 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("Dwarf Version");
aslc200b112008-08-16 12:57:46 +00002721
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002722 EmitReference("info_begin", Unit->getID());
2723 Asm->EOL("Offset of Compilation Unit Info");
2724
Dan Gohmancfb72b22007-09-27 23:12:31 +00002725 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Size of Address");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002726
2727 Asm->EmitInt8(0); Asm->EOL("Size of Segment Descriptor");
2728
2729 Asm->EmitInt16(0); Asm->EOL("Pad (1)");
2730 Asm->EmitInt16(0); Asm->EOL("Pad (2)");
2731
2732 // Range 1
2733 EmitReference("text_begin", 0); Asm->EOL("Address");
2734 EmitDifference("text_end", 0, "text_begin", 0, true); Asm->EOL("Length");
2735
2736 Asm->EmitInt32(0); Asm->EOL("EOM (1)");
2737 Asm->EmitInt32(0); Asm->EOL("EOM (2)");
Bill Wendlingb22ae7d2008-09-26 00:28:12 +00002738#endif
aslc200b112008-08-16 12:57:46 +00002739
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002740 Asm->EOL();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002741 }
2742
2743 /// EmitDebugRanges - Emit visible names into a debug ranges section.
2744 ///
2745 void EmitDebugRanges() {
2746 // Start the dwarf ranges section.
2747 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
aslc200b112008-08-16 12:57:46 +00002748
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002749 Asm->EOL();
2750 }
2751
2752 /// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
2753 ///
2754 void EmitDebugMacInfo() {
2755 // Start the dwarf macinfo section.
2756 Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
aslc200b112008-08-16 12:57:46 +00002757
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002758 Asm->EOL();
2759 }
2760
Devang Patel289f2362009-01-05 23:11:11 +00002761 /// ConstructCompileUnits - Create a compile unit DIEs.
Devang Patelb3907da2009-01-05 23:03:32 +00002762 void ConstructCompileUnits() {
2763 std::string CUName = "llvm.dbg.compile_units";
2764 std::vector<GlobalVariable*> Result;
2765 getGlobalVariablesUsing(*M, CUName, Result);
2766 for (std::vector<GlobalVariable *>::iterator RI = Result.begin(),
2767 RE = Result.end(); RI != RE; ++RI) {
Devang Patel7c8a2772009-01-16 19:28:14 +00002768 DICompileUnit DIUnit(*RI);
2769 unsigned ID = RecordSource(DIUnit.getDirectory(),
2770 DIUnit.getFilename());
Devang Patelb3907da2009-01-05 23:03:32 +00002771
2772 DIE *Die = new DIE(DW_TAG_compile_unit);
2773 AddSectionOffset(Die, DW_AT_stmt_list, DW_FORM_data4,
2774 DWLabel("section_line", 0), DWLabel("section_line", 0),
2775 false);
Devang Patel7c8a2772009-01-16 19:28:14 +00002776 AddString(Die, DW_AT_producer, DW_FORM_string, DIUnit.getProducer());
2777 AddUInt(Die, DW_AT_language, DW_FORM_data1, DIUnit.getLanguage());
2778 AddString(Die, DW_AT_name, DW_FORM_string, DIUnit.getFilename());
2779 if (!DIUnit.getDirectory().empty())
2780 AddString(Die, DW_AT_comp_dir, DW_FORM_string, DIUnit.getDirectory());
Devang Patelb3907da2009-01-05 23:03:32 +00002781
2782 CompileUnit *Unit = new CompileUnit(ID, Die);
Devang Patel7c8a2772009-01-16 19:28:14 +00002783 DW_CUs[DIUnit.getGV()] = Unit;
Devang Patelb3907da2009-01-05 23:03:32 +00002784 }
2785 }
2786
Devang Patel289f2362009-01-05 23:11:11 +00002787 /// ConstructGlobalVariableDIEs - Create DIEs for each of the externally
2788 /// visible global variables.
2789 void ConstructGlobalVariableDIEs() {
2790 std::string GVName = "llvm.dbg.global_variables";
2791 std::vector<GlobalVariable*> Result;
2792 getGlobalVariablesUsing(*M, GVName, Result);
2793 for (std::vector<GlobalVariable *>::iterator GVI = Result.begin(),
2794 GVE = Result.end(); GVI != GVE; ++GVI) {
Devang Patel7c8a2772009-01-16 19:28:14 +00002795 DIGlobalVariable DI_GV(*GVI);
2796 CompileUnit *DW_Unit = FindCompileUnit(DI_GV.getCompileUnit());
Devang Patel289f2362009-01-05 23:11:11 +00002797
2798 // Check for pre-existence.
Devang Patel7c8a2772009-01-16 19:28:14 +00002799 DIE *&Slot = DW_Unit->getDieMapSlotFor(DI_GV.getGV());
Devang Patel289f2362009-01-05 23:11:11 +00002800 if (Slot) continue;
2801
Devang Patelb28de842009-01-17 08:01:33 +00002802 DIE *VariableDie = CreateGlobalVariableDIE(DW_Unit, DI_GV);
Devang Patel289f2362009-01-05 23:11:11 +00002803
2804 // Add address.
2805 DIEBlock *Block = new DIEBlock();
2806 AddUInt(Block, 0, DW_FORM_data1, DW_OP_addr);
2807 AddObjectLabel(Block, 0, DW_FORM_udata,
Devang Patel2072db82009-01-20 18:55:39 +00002808 Asm->getGlobalLinkName(DI_GV.getGlobal()));
Devang Patel289f2362009-01-05 23:11:11 +00002809 AddBlock(VariableDie, DW_AT_location, 0, Block);
2810
2811 //Add to map.
2812 Slot = VariableDie;
2813
2814 //Add to context owner.
2815 DW_Unit->getDie()->AddChild(VariableDie);
2816
2817 //Expose as global. FIXME - need to check external flag.
Devang Patel7c8a2772009-01-16 19:28:14 +00002818 DW_Unit->AddGlobal(DI_GV.getName(), VariableDie);
Devang Patel289f2362009-01-05 23:11:11 +00002819 }
2820 }
2821
Devang Patele6caf012009-01-05 23:21:35 +00002822 /// ConstructSubprograms - Create DIEs for each of the externally visible
2823 /// subprograms.
2824 void ConstructSubprograms() {
2825
2826 std::string SPName = "llvm.dbg.subprograms";
2827 std::vector<GlobalVariable*> Result;
2828 getGlobalVariablesUsing(*M, SPName, Result);
2829 for (std::vector<GlobalVariable *>::iterator RI = Result.begin(),
2830 RE = Result.end(); RI != RE; ++RI) {
2831
Devang Patel7c8a2772009-01-16 19:28:14 +00002832 DISubprogram SP(*RI);
2833 CompileUnit *Unit = FindCompileUnit(SP.getCompileUnit());
Devang Patele6caf012009-01-05 23:21:35 +00002834
Devang Patelb28de842009-01-17 08:01:33 +00002835 // Check for pre-existence.
Devang Patel7c8a2772009-01-16 19:28:14 +00002836 DIE *&Slot = Unit->getDieMapSlotFor(SP.getGV());
Devang Patele6caf012009-01-05 23:21:35 +00002837 if (Slot) continue;
2838
Devang Patelb28de842009-01-17 08:01:33 +00002839 DIE *SubprogramDie = CreateSubprogramDIE(Unit, SP);
Devang Patele6caf012009-01-05 23:21:35 +00002840
Devang Patele6caf012009-01-05 23:21:35 +00002841 //Add to map.
2842 Slot = SubprogramDie;
2843 //Add to context owner.
2844 Unit->getDie()->AddChild(SubprogramDie);
2845 //Expose as global.
Devang Patel7c8a2772009-01-16 19:28:14 +00002846 Unit->AddGlobal(SP.getName(), SubprogramDie);
Devang Patele6caf012009-01-05 23:21:35 +00002847 }
2848 }
2849
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002850public:
2851 //===--------------------------------------------------------------------===//
2852 // Main entry points.
2853 //
Owen Anderson847b99b2008-08-21 00:14:44 +00002854 DwarfDebug(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
Chris Lattnerb3876c72007-09-24 03:35:37 +00002855 : Dwarf(OS, A, T, "dbg")
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002856 , AbbreviationsSet(InitAbbreviationsSetSize)
2857 , Abbreviations()
2858 , ValuesSet(InitValuesSetSize)
2859 , Values()
2860 , StringPool()
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002861 , SectionMap()
2862 , SectionSourceLines()
2863 , didInitial(false)
2864 , shouldEmit(false)
Devang Patel4d1709e2009-01-08 02:33:41 +00002865 , RootDbgScope(NULL)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002866 {
2867 }
2868 virtual ~DwarfDebug() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002869 for (unsigned j = 0, M = Values.size(); j < M; ++j)
2870 delete Values[j];
2871 }
2872
Devang Patel9304b382009-01-06 21:07:30 +00002873 /// SetDebugInfo - Create global DIEs and emit initial debug info sections.
2874 /// This is inovked by the target AsmPrinter.
Devang Patel91d27b02009-01-12 23:09:42 +00002875 void SetDebugInfo(MachineModuleInfo *mmi) {
2876
Devang Patel9304b382009-01-06 21:07:30 +00002877 // Create all the compile unit DIEs.
2878 ConstructCompileUnits();
Devang Patel91d27b02009-01-12 23:09:42 +00002879
2880 if (DW_CUs.empty())
2881 return;
2882
2883 MMI = mmi;
2884 shouldEmit = true;
Devang Patel86cfa402009-01-13 23:02:17 +00002885 MMI->setDebugInfoAvailability(true);
Devang Patel9304b382009-01-06 21:07:30 +00002886
2887 // Create DIEs for each of the externally visible global variables.
2888 ConstructGlobalVariableDIEs();
2889
2890 // Create DIEs for each of the externally visible subprograms.
2891 ConstructSubprograms();
2892
2893 // Prime section data.
2894 SectionMap.insert(TAI->getTextSection());
2895
2896 // Print out .file directives to specify files for .loc directives. These
2897 // are printed out early so that they precede any .loc directives.
2898 if (TAI->hasDotLocAndDotFile()) {
2899 for (unsigned i = 1, e = SrcFiles.size(); i <= e; ++i) {
2900 sys::Path FullPath(Directories[SrcFiles[i].getDirectoryID()]);
2901 bool AppendOk = FullPath.appendComponent(SrcFiles[i].getName());
2902 assert(AppendOk && "Could not append filename to directory!");
2903 AppendOk = false;
2904 Asm->EmitFile(i, FullPath.toString());
2905 Asm->EOL();
2906 }
2907 }
2908
2909 // Emit initial sections
2910 EmitInitial();
2911 }
2912
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002913 /// BeginModule - Emit all Dwarf sections that should come prior to the
2914 /// content.
2915 void BeginModule(Module *M) {
2916 this->M = M;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002917 }
2918
2919 /// EndModule - Emit all Dwarf sections that should come after the content.
2920 ///
2921 void EndModule() {
2922 if (!ShouldEmitDwarf()) return;
aslc200b112008-08-16 12:57:46 +00002923
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002924 // Standard sections final addresses.
Anton Korobeynikov55b94962008-09-24 22:15:21 +00002925 Asm->SwitchToSection(TAI->getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002926 EmitLabel("text_end", 0);
Anton Korobeynikovcca60fa2008-09-24 22:16:16 +00002927 Asm->SwitchToSection(TAI->getDataSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002928 EmitLabel("data_end", 0);
aslc200b112008-08-16 12:57:46 +00002929
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002930 // End text sections.
2931 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Anton Korobeynikov55b94962008-09-24 22:15:21 +00002932 Asm->SwitchToSection(SectionMap[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002933 EmitLabel("section_end", i);
2934 }
2935
2936 // Emit common frame information.
2937 EmitCommonDebugFrame();
2938
2939 // Emit function debug frame information
2940 for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(),
2941 E = DebugFrames.end(); I != E; ++I)
2942 EmitFunctionDebugFrame(*I);
2943
2944 // Compute DIE offsets and sizes.
2945 SizeAndOffsets();
aslc200b112008-08-16 12:57:46 +00002946
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002947 // Emit all the DIEs into a debug info section
2948 EmitDebugInfo();
aslc200b112008-08-16 12:57:46 +00002949
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002950 // Corresponding abbreviations into a abbrev section.
2951 EmitAbbreviations();
aslc200b112008-08-16 12:57:46 +00002952
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002953 // Emit source line correspondence into a debug line section.
2954 EmitDebugLines();
aslc200b112008-08-16 12:57:46 +00002955
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002956 // Emit info into a debug pubnames section.
2957 EmitDebugPubNames();
aslc200b112008-08-16 12:57:46 +00002958
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002959 // Emit info into a debug str section.
2960 EmitDebugStr();
aslc200b112008-08-16 12:57:46 +00002961
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002962 // Emit info into a debug loc section.
2963 EmitDebugLoc();
aslc200b112008-08-16 12:57:46 +00002964
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002965 // Emit info into a debug aranges section.
2966 EmitDebugARanges();
aslc200b112008-08-16 12:57:46 +00002967
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002968 // Emit info into a debug ranges section.
2969 EmitDebugRanges();
aslc200b112008-08-16 12:57:46 +00002970
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002971 // Emit info into a debug macinfo section.
2972 EmitDebugMacInfo();
2973 }
2974
aslc200b112008-08-16 12:57:46 +00002975 /// BeginFunction - Gather pre-function debug information. Assumes being
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002976 /// emitted immediately after the function entry point.
2977 void BeginFunction(MachineFunction *MF) {
2978 this->MF = MF;
aslc200b112008-08-16 12:57:46 +00002979
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002980 if (!ShouldEmitDwarf()) return;
2981
2982 // Begin accumulating function debug information.
2983 MMI->BeginFunction(MF);
aslc200b112008-08-16 12:57:46 +00002984
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002985 // Assumes in correct section after the entry point.
2986 EmitLabel("func_begin", ++SubprogramCount);
Evan Chenga53c40a2008-02-01 09:10:45 +00002987
2988 // Emit label for the implicitly defined dbg.stoppoint at the start of
2989 // the function.
Devang Patel35a078f2009-01-12 22:54:42 +00002990 if (!Lines.empty()) {
2991 const SrcLineInfo &LineInfo = Lines[0];
Andrew Lenharth42f91402008-04-03 17:37:43 +00002992 Asm->printLabel(LineInfo.getLabelID());
2993 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002994 }
aslc200b112008-08-16 12:57:46 +00002995
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002996 /// EndFunction - Gather and emit post-function debug information.
2997 ///
Bill Wendlingb22ae7d2008-09-26 00:28:12 +00002998 void EndFunction(MachineFunction *MF) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002999 if (!ShouldEmitDwarf()) return;
aslc200b112008-08-16 12:57:46 +00003000
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003001 // Define end label for subprogram.
3002 EmitLabel("func_end", SubprogramCount);
aslc200b112008-08-16 12:57:46 +00003003
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003004 // Get function line info.
Devang Patel35a078f2009-01-12 22:54:42 +00003005 if (!Lines.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003006 // Get section line info.
Anton Korobeynikov55b94962008-09-24 22:15:21 +00003007 unsigned ID = SectionMap.insert(Asm->CurrentSection_);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003008 if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID);
Devang Patel35a078f2009-01-12 22:54:42 +00003009 std::vector<SrcLineInfo> &SectionLineInfos = SectionSourceLines[ID-1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003010 // Append the function info to section info.
3011 SectionLineInfos.insert(SectionLineInfos.end(),
Devang Patel35a078f2009-01-12 22:54:42 +00003012 Lines.begin(), Lines.end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003013 }
aslc200b112008-08-16 12:57:46 +00003014
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003015 // Construct scopes for subprogram.
Devang Patel6ccd57e2009-01-13 00:20:51 +00003016 if (RootDbgScope)
3017 ConstructRootDbgScope(RootDbgScope);
Bill Wendlingb22ae7d2008-09-26 00:28:12 +00003018 else
3019 // FIXME: This is wrong. We are essentially getting past a problem with
3020 // debug information not being able to handle unreachable blocks that have
3021 // debug information in them. In particular, those unreachable blocks that
3022 // have "region end" info in them. That situation results in the "root
3023 // scope" not being created. If that's the case, then emit a "default"
3024 // scope, i.e., one that encompasses the whole function. This isn't
3025 // desirable. And a better way of handling this (and all of the debugging
3026 // information) needs to be explored.
Devang Patel6ccd57e2009-01-13 00:20:51 +00003027 ConstructDefaultDbgScope(MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003028
3029 DebugFrames.push_back(FunctionDebugFrameInfo(SubprogramCount,
3030 MMI->getFrameMoves()));
Devang Patela4162952009-01-12 18:48:36 +00003031
3032 // Clear debug info
3033 if (RootDbgScope) {
3034 delete RootDbgScope;
3035 DbgScopeMap.clear();
3036 RootDbgScope = NULL;
3037 }
3038 Lines.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003039 }
Devang Patelcb59fd42009-01-12 19:17:34 +00003040
3041public:
3042
Devang Patel2da0cc42009-01-15 23:41:32 +00003043 /// ValidDebugInfo - Return true if V represents valid debug info value.
3044 bool ValidDebugInfo(Value *V) {
Devang Patel4d92dded2009-01-16 01:49:46 +00003045
Devang Patel208098b2009-01-19 23:21:49 +00003046 if (!V)
3047 return false;
3048
Devang Patel4d92dded2009-01-16 01:49:46 +00003049 if (!shouldEmit)
3050 return false;
3051
Devang Patel2da0cc42009-01-15 23:41:32 +00003052 GlobalVariable *GV = getGlobalVariable(V);
3053 if (!GV)
3054 return false;
3055
3056 if (GV->getLinkage() != GlobalValue::InternalLinkage
3057 && GV->getLinkage() != GlobalValue::LinkOnceLinkage)
3058 return false;
3059
3060 DIDescriptor DI(GV);
3061 // Check current version. Allow Version6 for now.
3062 unsigned Version = DI.getVersion();
Devang Patelb49710a2009-01-20 19:22:03 +00003063 if (Version != LLVMDebugVersion && Version != LLVMDebugVersion6)
Devang Patel2da0cc42009-01-15 23:41:32 +00003064 return false;
3065
Devang Patel208098b2009-01-19 23:21:49 +00003066 unsigned Tag = DI.getTag();
3067 switch (Tag) {
3068 case DW_TAG_variable:
3069 assert (DIVariable(GV).Verify() && "Invalid DebugInfo value");
3070 break;
3071 case DW_TAG_compile_unit:
3072 assert (DICompileUnit(GV).Verify() && "Invalid DebugInfo value");
3073 break;
3074 case DW_TAG_subprogram:
3075 assert (DISubprogram(GV).Verify() && "Invalid DebugInfo value");
3076 break;
3077 default:
3078 break;
3079 }
3080
Devang Patel2da0cc42009-01-15 23:41:32 +00003081 return true;
3082 }
3083
Devang Patelcb59fd42009-01-12 19:17:34 +00003084 /// RecordSourceLine - Records location information and associates it with a
3085 /// label. Returns a unique label ID used to generate a label and provide
3086 /// correspondence to the source line list.
3087 unsigned RecordSourceLine(Value *V, unsigned Line, unsigned Col) {
3088 CompileUnit *Unit = DW_CUs[V];
3089 assert (Unit && "Unable to find CompileUnit");
3090 unsigned ID = MMI->NextLabelID();
3091 Lines.push_back(SrcLineInfo(Line, Col, Unit->getID(), ID));
3092 return ID;
3093 }
3094
3095 /// RecordSourceLine - Records location information and associates it with a
3096 /// label. Returns a unique label ID used to generate a label and provide
3097 /// correspondence to the source line list.
3098 unsigned RecordSourceLine(unsigned Line, unsigned Col, unsigned Src) {
3099 unsigned ID = MMI->NextLabelID();
3100 Lines.push_back(SrcLineInfo(Line, Col, Src, ID));
3101 return ID;
3102 }
3103
3104 unsigned getRecordSourceLineCount() {
3105 return Lines.size();
3106 }
3107
3108 /// RecordSource - Register a source file with debug info. Returns an source
3109 /// ID.
3110 unsigned RecordSource(const std::string &Directory,
3111 const std::string &File) {
3112 unsigned DID = Directories.insert(Directory);
3113 return SrcFiles.insert(SrcFileInfo(DID,File));
3114 }
3115
3116 /// RecordRegionStart - Indicate the start of a region.
3117 ///
3118 unsigned RecordRegionStart(GlobalVariable *V) {
3119 DbgScope *Scope = getOrCreateScope(V);
3120 unsigned ID = MMI->NextLabelID();
3121 if (!Scope->getStartLabelID()) Scope->setStartLabelID(ID);
3122 return ID;
3123 }
3124
3125 /// RecordRegionEnd - Indicate the end of a region.
3126 ///
3127 unsigned RecordRegionEnd(GlobalVariable *V) {
3128 DbgScope *Scope = getOrCreateScope(V);
3129 unsigned ID = MMI->NextLabelID();
3130 Scope->setEndLabelID(ID);
3131 return ID;
3132 }
3133
3134 /// RecordVariable - Indicate the declaration of a local variable.
3135 ///
3136 void RecordVariable(GlobalVariable *GV, unsigned FrameIndex) {
Devang Patel2560d922009-01-15 18:25:17 +00003137 DIDescriptor Desc(GV);
3138 DbgScope *Scope = NULL;
3139 if (Desc.getTag() == DW_TAG_variable) {
3140 // GV is a global variable.
3141 DIGlobalVariable DG(GV);
3142 Scope = getOrCreateScope(DG.getContext().getGV());
3143 } else {
3144 // or GV is a local variable.
3145 DIVariable DV(GV);
3146 Scope = getOrCreateScope(DV.getContext().getGV());
3147 }
3148 assert (Scope && "Unable to find variable' scope");
Devang Patel7c8a2772009-01-16 19:28:14 +00003149 DbgVariable *DV = new DbgVariable(DIVariable(GV), FrameIndex);
Devang Patelcb59fd42009-01-12 19:17:34 +00003150 Scope->AddVariable(DV);
3151 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003152};
3153
3154//===----------------------------------------------------------------------===//
aslc200b112008-08-16 12:57:46 +00003155/// DwarfException - Emits Dwarf exception handling directives.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003156///
3157class DwarfException : public Dwarf {
3158
3159private:
3160 struct FunctionEHFrameInfo {
3161 std::string FnName;
3162 unsigned Number;
3163 unsigned PersonalityIndex;
3164 bool hasCalls;
3165 bool hasLandingPads;
3166 std::vector<MachineMove> Moves;
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003167 const Function * function;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003168
3169 FunctionEHFrameInfo(const std::string &FN, unsigned Num, unsigned P,
3170 bool hC, bool hL,
Dale Johannesenfb3ac732007-11-20 23:24:42 +00003171 const std::vector<MachineMove> &M,
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003172 const Function *f):
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003173 FnName(FN), Number(Num), PersonalityIndex(P),
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003174 hasCalls(hC), hasLandingPads(hL), Moves(M), function (f) { }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003175 };
3176
3177 std::vector<FunctionEHFrameInfo> EHFrames;
Dale Johannesen85535762008-04-02 00:25:04 +00003178
3179 /// shouldEmitTable - Per-function flag to indicate if EH tables should
3180 /// be emitted.
3181 bool shouldEmitTable;
3182
3183 /// shouldEmitMoves - Per-function flag to indicate if frame moves info
3184 /// should be emitted.
3185 bool shouldEmitMoves;
3186
3187 /// shouldEmitTableModule - Per-module flag to indicate if EH tables
3188 /// should be emitted.
3189 bool shouldEmitTableModule;
3190
aslc200b112008-08-16 12:57:46 +00003191 /// shouldEmitFrameModule - Per-module flag to indicate if frame moves
Dale Johannesen85535762008-04-02 00:25:04 +00003192 /// should be emitted.
3193 bool shouldEmitMovesModule;
Duncan Sands96144f92008-05-07 19:11:09 +00003194
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003195 /// EmitCommonEHFrame - Emit the common eh unwind frame.
3196 ///
3197 void EmitCommonEHFrame(const Function *Personality, unsigned Index) {
3198 // Size and sign of stack growth.
3199 int stackGrowth =
3200 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
3201 TargetFrameInfo::StackGrowsUp ?
Dan Gohmancfb72b22007-09-27 23:12:31 +00003202 TD->getPointerSize() : -TD->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003203
3204 // Begin eh frame section.
3205 Asm->SwitchToTextSection(TAI->getDwarfEHFrameSection());
Bill Wendling189bde72008-12-24 08:05:17 +00003206
3207 if (!TAI->doesRequireNonLocalEHFrameLabel())
3208 O << TAI->getEHGlobalPrefix();
3209 O << "EH_frame" << Index << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003210 EmitLabel("section_eh_frame", Index);
3211
3212 // Define base labels.
3213 EmitLabel("eh_frame_common", Index);
Duncan Sands96144f92008-05-07 19:11:09 +00003214
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003215 // Define the eh frame length.
3216 EmitDifference("eh_frame_common_end", Index,
3217 "eh_frame_common_begin", Index, true);
3218 Asm->EOL("Length of Common Information Entry");
3219
3220 // EH frame header.
3221 EmitLabel("eh_frame_common_begin", Index);
3222 Asm->EmitInt32((int)0);
3223 Asm->EOL("CIE Identifier Tag");
3224 Asm->EmitInt8(DW_CIE_VERSION);
3225 Asm->EOL("CIE Version");
Duncan Sands96144f92008-05-07 19:11:09 +00003226
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003227 // The personality presence indicates that language specific information
3228 // will show up in the eh frame.
3229 Asm->EmitString(Personality ? "zPLR" : "zR");
3230 Asm->EOL("CIE Augmentation");
Duncan Sands96144f92008-05-07 19:11:09 +00003231
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003232 // Round out reader.
3233 Asm->EmitULEB128Bytes(1);
3234 Asm->EOL("CIE Code Alignment Factor");
3235 Asm->EmitSLEB128Bytes(stackGrowth);
Duncan Sands96144f92008-05-07 19:11:09 +00003236 Asm->EOL("CIE Data Alignment Factor");
Dale Johannesenf5a11532007-11-13 19:13:01 +00003237 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), true));
Duncan Sands96144f92008-05-07 19:11:09 +00003238 Asm->EOL("CIE Return Address Column");
3239
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003240 // If there is a personality, we need to indicate the functions location.
3241 if (Personality) {
3242 Asm->EmitULEB128Bytes(7);
3243 Asm->EOL("Augmentation Size");
Bill Wendling2d369922007-09-11 17:20:55 +00003244
Duncan Sands96144f92008-05-07 19:11:09 +00003245 if (TAI->getNeedsIndirectEncoding()) {
Bill Wendling2d369922007-09-11 17:20:55 +00003246 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4 | DW_EH_PE_indirect);
Duncan Sands96144f92008-05-07 19:11:09 +00003247 Asm->EOL("Personality (pcrel sdata4 indirect)");
3248 } else {
Bill Wendling2d369922007-09-11 17:20:55 +00003249 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
Duncan Sands96144f92008-05-07 19:11:09 +00003250 Asm->EOL("Personality (pcrel sdata4)");
3251 }
Bill Wendling2d369922007-09-11 17:20:55 +00003252
Duncan Sands96144f92008-05-07 19:11:09 +00003253 PrintRelDirective(true);
Bill Wendlingd1bda4f2007-09-11 08:27:17 +00003254 O << TAI->getPersonalityPrefix();
3255 Asm->EmitExternalGlobal((const GlobalVariable *)(Personality));
3256 O << TAI->getPersonalitySuffix();
Duncan Sands4cc39532008-05-08 12:33:11 +00003257 if (strcmp(TAI->getPersonalitySuffix(), "+4@GOTPCREL"))
3258 O << "-" << TAI->getPCSymbol();
Bill Wendlingd1bda4f2007-09-11 08:27:17 +00003259 Asm->EOL("Personality");
Bill Wendling38cb7c92007-08-25 00:51:55 +00003260
Duncan Sands96144f92008-05-07 19:11:09 +00003261 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
3262 Asm->EOL("LSDA Encoding (pcrel sdata4)");
Bill Wendling6bd1b792008-12-24 05:25:49 +00003263
Bill Wendlingedc2dbe2009-01-05 22:53:45 +00003264 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
3265 Asm->EOL("FDE Encoding (pcrel sdata4)");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003266 } else {
3267 Asm->EmitULEB128Bytes(1);
3268 Asm->EOL("Augmentation Size");
Bill Wendling6bd1b792008-12-24 05:25:49 +00003269
Bill Wendlingedc2dbe2009-01-05 22:53:45 +00003270 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
3271 Asm->EOL("FDE Encoding (pcrel sdata4)");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003272 }
3273
3274 // Indicate locations of general callee saved registers in frame.
3275 std::vector<MachineMove> Moves;
3276 RI->getInitialFrameState(Moves);
Dale Johannesenf5a11532007-11-13 19:13:01 +00003277 EmitFrameMoves(NULL, 0, Moves, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003278
Dale Johannesen388f20f2008-04-30 00:43:29 +00003279 // On Darwin the linker honors the alignment of eh_frame, which means it
3280 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise
3281 // you get holes which confuse readers of eh_frame.
aslc200b112008-08-16 12:57:46 +00003282 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
Dale Johannesen837d7ab2008-04-29 22:58:20 +00003283 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003284 EmitLabel("eh_frame_common_end", Index);
Duncan Sands96144f92008-05-07 19:11:09 +00003285
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003286 Asm->EOL();
3287 }
Duncan Sands96144f92008-05-07 19:11:09 +00003288
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003289 /// EmitEHFrame - Emit function exception frame information.
3290 ///
3291 void EmitEHFrame(const FunctionEHFrameInfo &EHFrameInfo) {
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003292 Function::LinkageTypes linkage = EHFrameInfo.function->getLinkage();
3293
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003294 Asm->SwitchToTextSection(TAI->getDwarfEHFrameSection());
3295
3296 // Externally visible entry into the functions eh frame info.
Dale Johannesenfb3ac732007-11-20 23:24:42 +00003297 // If the corresponding function is static, this should not be
3298 // externally visible.
Rafael Espindolaa168fc92009-01-15 20:18:42 +00003299 if (linkage != Function::InternalLinkage &&
Devang Patel245446c2009-01-17 08:05:14 +00003300 linkage != Function::PrivateLinkage) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00003301 if (const char *GlobalEHDirective = TAI->getGlobalEHDirective())
3302 O << GlobalEHDirective << EHFrameInfo.FnName << "\n";
3303 }
3304
Dale Johannesenf09b5992008-01-10 02:03:30 +00003305 // If corresponding function is weak definition, this should be too.
aslc200b112008-08-16 12:57:46 +00003306 if ((linkage == Function::WeakLinkage ||
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003307 linkage == Function::LinkOnceLinkage) &&
Dale Johannesenf09b5992008-01-10 02:03:30 +00003308 TAI->getWeakDefDirective())
3309 O << TAI->getWeakDefDirective() << EHFrameInfo.FnName << "\n";
3310
3311 // If there are no calls then you can't unwind. This may mean we can
3312 // omit the EH Frame, but some environments do not handle weak absolute
aslc200b112008-08-16 12:57:46 +00003313 // symbols.
Dale Johannesenb369e8d2008-04-14 17:54:17 +00003314 // If UnwindTablesMandatory is set we cannot do this optimization; the
Dale Johannesena9b3e482008-04-08 00:10:24 +00003315 // unwind info is to be available for non-EH uses.
Dale Johannesenf09b5992008-01-10 02:03:30 +00003316 if (!EHFrameInfo.hasCalls &&
Dale Johannesenb369e8d2008-04-14 17:54:17 +00003317 !UnwindTablesMandatory &&
aslc200b112008-08-16 12:57:46 +00003318 ((linkage != Function::WeakLinkage &&
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003319 linkage != Function::LinkOnceLinkage) ||
Dale Johannesenf09b5992008-01-10 02:03:30 +00003320 !TAI->getWeakDefDirective() ||
3321 TAI->getSupportsWeakOmittedEHFrame()))
aslc200b112008-08-16 12:57:46 +00003322 {
Bill Wendlingef9211a2007-09-18 01:47:22 +00003323 O << EHFrameInfo.FnName << " = 0\n";
aslc200b112008-08-16 12:57:46 +00003324 // This name has no connection to the function, so it might get
3325 // dead-stripped when the function is not, erroneously. Prohibit
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003326 // dead-stripping unconditionally.
3327 if (const char *UsedDirective = TAI->getUsedDirective())
3328 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003329 } else {
Bill Wendlingef9211a2007-09-18 01:47:22 +00003330 O << EHFrameInfo.FnName << ":\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +00003331
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003332 // EH frame header.
3333 EmitDifference("eh_frame_end", EHFrameInfo.Number,
3334 "eh_frame_begin", EHFrameInfo.Number, true);
3335 Asm->EOL("Length of Frame Information Entry");
aslc200b112008-08-16 12:57:46 +00003336
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003337 EmitLabel("eh_frame_begin", EHFrameInfo.Number);
3338
Bill Wendling189bde72008-12-24 08:05:17 +00003339 if (TAI->doesRequireNonLocalEHFrameLabel()) {
3340 PrintRelDirective(true, true);
3341 PrintLabelName("eh_frame_begin", EHFrameInfo.Number);
3342
3343 if (!TAI->isAbsoluteEHSectionOffsets())
3344 O << "-EH_frame" << EHFrameInfo.PersonalityIndex;
3345 } else {
3346 EmitSectionOffset("eh_frame_begin", "eh_frame_common",
3347 EHFrameInfo.Number, EHFrameInfo.PersonalityIndex,
3348 true, true, false);
3349 }
3350
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003351 Asm->EOL("FDE CIE offset");
3352
Bill Wendlingdd9127d2009-01-06 19:13:55 +00003353 EmitReference("eh_func_begin", EHFrameInfo.Number, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003354 Asm->EOL("FDE initial location");
3355 EmitDifference("eh_func_end", EHFrameInfo.Number,
Bill Wendlingdd9127d2009-01-06 19:13:55 +00003356 "eh_func_begin", EHFrameInfo.Number, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003357 Asm->EOL("FDE address range");
Duncan Sands96144f92008-05-07 19:11:09 +00003358
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003359 // If there is a personality and landing pads then point to the language
3360 // specific data area in the exception table.
3361 if (EHFrameInfo.PersonalityIndex) {
Duncan Sands96144f92008-05-07 19:11:09 +00003362 Asm->EmitULEB128Bytes(4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003363 Asm->EOL("Augmentation size");
Duncan Sands96144f92008-05-07 19:11:09 +00003364
3365 if (EHFrameInfo.hasLandingPads)
3366 EmitReference("exception", EHFrameInfo.Number, true, true);
3367 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003368 Asm->EmitInt32((int)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003369 Asm->EOL("Language Specific Data Area");
3370 } else {
3371 Asm->EmitULEB128Bytes(0);
3372 Asm->EOL("Augmentation size");
3373 }
Duncan Sands96144f92008-05-07 19:11:09 +00003374
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003375 // Indicate locations of function specific callee saved registers in
3376 // frame.
Devang Patelb28de842009-01-17 08:01:33 +00003377 EmitFrameMoves("eh_func_begin", EHFrameInfo.Number, EHFrameInfo.Moves,
Devang Patel245446c2009-01-17 08:05:14 +00003378 true);
aslc200b112008-08-16 12:57:46 +00003379
Dale Johannesen388f20f2008-04-30 00:43:29 +00003380 // On Darwin the linker honors the alignment of eh_frame, which means it
3381 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise
3382 // you get holes which confuse readers of eh_frame.
aslc200b112008-08-16 12:57:46 +00003383 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
Dale Johannesen837d7ab2008-04-29 22:58:20 +00003384 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003385 EmitLabel("eh_frame_end", EHFrameInfo.Number);
aslc200b112008-08-16 12:57:46 +00003386
3387 // If the function is marked used, this table should be also. We cannot
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003388 // make the mark unconditional in this case, since retaining the table
aslc200b112008-08-16 12:57:46 +00003389 // also retains the function in this case, and there is code around
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003390 // that depends on unused functions (calling undefined externals) being
3391 // dead-stripped to link correctly. Yes, there really is.
3392 if (MMI->getUsedFunctions().count(EHFrameInfo.function))
3393 if (const char *UsedDirective = TAI->getUsedDirective())
3394 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
3395 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003396 }
3397
Duncan Sands241a0c92007-09-05 11:27:52 +00003398 /// EmitExceptionTable - Emit landing pads and actions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003399 ///
3400 /// The general organization of the table is complex, but the basic concepts
3401 /// are easy. First there is a header which describes the location and
3402 /// organization of the three components that follow.
3403 /// 1. The landing pad site information describes the range of code covered
3404 /// by the try. In our case it's an accumulation of the ranges covered
3405 /// by the invokes in the try. There is also a reference to the landing
3406 /// pad that handles the exception once processed. Finally an index into
3407 /// the actions table.
3408 /// 2. The action table, in our case, is composed of pairs of type ids
3409 /// and next action offset. Starting with the action index from the
3410 /// landing pad site, each type Id is checked for a match to the current
3411 /// exception. If it matches then the exception and type id are passed
3412 /// on to the landing pad. Otherwise the next action is looked up. This
3413 /// chain is terminated with a next action of zero. If no type id is
3414 /// found the the frame is unwound and handling continues.
3415 /// 3. Type id table contains references to all the C++ typeinfo for all
3416 /// catches in the function. This tables is reversed indexed base 1.
3417
3418 /// SharedTypeIds - How many leading type ids two landing pads have in common.
3419 static unsigned SharedTypeIds(const LandingPadInfo *L,
3420 const LandingPadInfo *R) {
3421 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
3422 unsigned LSize = LIds.size(), RSize = RIds.size();
3423 unsigned MinSize = LSize < RSize ? LSize : RSize;
3424 unsigned Count = 0;
3425
3426 for (; Count != MinSize; ++Count)
3427 if (LIds[Count] != RIds[Count])
3428 return Count;
3429
3430 return Count;
3431 }
3432
3433 /// PadLT - Order landing pads lexicographically by type id.
3434 static bool PadLT(const LandingPadInfo *L, const LandingPadInfo *R) {
3435 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
3436 unsigned LSize = LIds.size(), RSize = RIds.size();
3437 unsigned MinSize = LSize < RSize ? LSize : RSize;
3438
3439 for (unsigned i = 0; i != MinSize; ++i)
3440 if (LIds[i] != RIds[i])
3441 return LIds[i] < RIds[i];
3442
3443 return LSize < RSize;
3444 }
3445
3446 struct KeyInfo {
3447 static inline unsigned getEmptyKey() { return -1U; }
3448 static inline unsigned getTombstoneKey() { return -2U; }
3449 static unsigned getHashValue(const unsigned &Key) { return Key; }
Chris Lattner92eea072007-09-17 18:34:04 +00003450 static bool isEqual(unsigned LHS, unsigned RHS) { return LHS == RHS; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003451 static bool isPod() { return true; }
3452 };
3453
Duncan Sands241a0c92007-09-05 11:27:52 +00003454 /// ActionEntry - Structure describing an entry in the actions table.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003455 struct ActionEntry {
3456 int ValueForTypeID; // The value to write - may not be equal to the type id.
3457 int NextAction;
3458 struct ActionEntry *Previous;
3459 };
3460
Duncan Sands241a0c92007-09-05 11:27:52 +00003461 /// PadRange - Structure holding a try-range and the associated landing pad.
3462 struct PadRange {
3463 // The index of the landing pad.
3464 unsigned PadIndex;
3465 // The index of the begin and end labels in the landing pad's label lists.
3466 unsigned RangeIndex;
3467 };
3468
3469 typedef DenseMap<unsigned, PadRange, KeyInfo> RangeMapType;
3470
3471 /// CallSiteEntry - Structure describing an entry in the call-site table.
3472 struct CallSiteEntry {
Duncan Sands4ff179f2007-12-19 07:36:31 +00003473 // The 'try-range' is BeginLabel .. EndLabel.
Duncan Sands241a0c92007-09-05 11:27:52 +00003474 unsigned BeginLabel; // zero indicates the start of the function.
3475 unsigned EndLabel; // zero indicates the end of the function.
Duncan Sands4ff179f2007-12-19 07:36:31 +00003476 // The landing pad starts at PadLabel.
Duncan Sands241a0c92007-09-05 11:27:52 +00003477 unsigned PadLabel; // zero indicates that there is no landing pad.
3478 unsigned Action;
3479 };
3480
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003481 void EmitExceptionTable() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003482 const std::vector<GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
3483 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
3484 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
3485 if (PadInfos.empty()) return;
3486
3487 // Sort the landing pads in order of their type ids. This is used to fold
3488 // duplicate actions.
3489 SmallVector<const LandingPadInfo *, 64> LandingPads;
3490 LandingPads.reserve(PadInfos.size());
3491 for (unsigned i = 0, N = PadInfos.size(); i != N; ++i)
3492 LandingPads.push_back(&PadInfos[i]);
3493 std::sort(LandingPads.begin(), LandingPads.end(), PadLT);
3494
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003495 // Negative type ids index into FilterIds, positive type ids index into
3496 // TypeInfos. The value written for a positive type id is just the type
3497 // id itself. For a negative type id, however, the value written is the
3498 // (negative) byte offset of the corresponding FilterIds entry. The byte
3499 // offset is usually equal to the type id, because the FilterIds entries
3500 // are written using a variable width encoding which outputs one byte per
3501 // entry as long as the value written is not too large, but can differ.
3502 // This kind of complication does not occur for positive type ids because
3503 // type infos are output using a fixed width encoding.
3504 // FilterOffsets[i] holds the byte offset corresponding to FilterIds[i].
3505 SmallVector<int, 16> FilterOffsets;
3506 FilterOffsets.reserve(FilterIds.size());
3507 int Offset = -1;
3508 for(std::vector<unsigned>::const_iterator I = FilterIds.begin(),
3509 E = FilterIds.end(); I != E; ++I) {
3510 FilterOffsets.push_back(Offset);
aslc200b112008-08-16 12:57:46 +00003511 Offset -= TargetAsmInfo::getULEB128Size(*I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003512 }
3513
Duncan Sands241a0c92007-09-05 11:27:52 +00003514 // Compute the actions table and gather the first action index for each
3515 // landing pad site.
3516 SmallVector<ActionEntry, 32> Actions;
3517 SmallVector<unsigned, 64> FirstActions;
3518 FirstActions.reserve(LandingPads.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003519
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003520 int FirstAction = 0;
Duncan Sands241a0c92007-09-05 11:27:52 +00003521 unsigned SizeActions = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003522 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
3523 const LandingPadInfo *LP = LandingPads[i];
3524 const std::vector<int> &TypeIds = LP->TypeIds;
3525 const unsigned NumShared = i ? SharedTypeIds(LP, LandingPads[i-1]) : 0;
3526 unsigned SizeSiteActions = 0;
3527
3528 if (NumShared < TypeIds.size()) {
3529 unsigned SizeAction = 0;
3530 ActionEntry *PrevAction = 0;
3531
3532 if (NumShared) {
3533 const unsigned SizePrevIds = LandingPads[i-1]->TypeIds.size();
3534 assert(Actions.size());
3535 PrevAction = &Actions.back();
aslc200b112008-08-16 12:57:46 +00003536 SizeAction = TargetAsmInfo::getSLEB128Size(PrevAction->NextAction) +
3537 TargetAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003538 for (unsigned j = NumShared; j != SizePrevIds; ++j) {
aslc200b112008-08-16 12:57:46 +00003539 SizeAction -=
3540 TargetAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003541 SizeAction += -PrevAction->NextAction;
3542 PrevAction = PrevAction->Previous;
3543 }
3544 }
3545
3546 // Compute the actions.
3547 for (unsigned I = NumShared, M = TypeIds.size(); I != M; ++I) {
3548 int TypeID = TypeIds[I];
3549 assert(-1-TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
3550 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
aslc200b112008-08-16 12:57:46 +00003551 unsigned SizeTypeID = TargetAsmInfo::getSLEB128Size(ValueForTypeID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003552
3553 int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0;
aslc200b112008-08-16 12:57:46 +00003554 SizeAction = SizeTypeID + TargetAsmInfo::getSLEB128Size(NextAction);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003555 SizeSiteActions += SizeAction;
3556
3557 ActionEntry Action = {ValueForTypeID, NextAction, PrevAction};
3558 Actions.push_back(Action);
3559
3560 PrevAction = &Actions.back();
3561 }
3562
3563 // Record the first action of the landing pad site.
3564 FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
3565 } // else identical - re-use previous FirstAction
3566
3567 FirstActions.push_back(FirstAction);
3568
3569 // Compute this sites contribution to size.
3570 SizeActions += SizeSiteActions;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003571 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003572
Duncan Sands4ff179f2007-12-19 07:36:31 +00003573 // Compute the call-site table. The entry for an invoke has a try-range
3574 // containing the call, a non-zero landing pad and an appropriate action.
3575 // The entry for an ordinary call has a try-range containing the call and
3576 // zero for the landing pad and the action. Calls marked 'nounwind' have
3577 // no entry and must not be contained in the try-range of any entry - they
3578 // form gaps in the table. Entries must be ordered by try-range address.
Duncan Sands241a0c92007-09-05 11:27:52 +00003579 SmallVector<CallSiteEntry, 64> CallSites;
3580
3581 RangeMapType PadMap;
Duncan Sands4ff179f2007-12-19 07:36:31 +00003582 // Invokes and nounwind calls have entries in PadMap (due to being bracketed
3583 // by try-range labels when lowered). Ordinary calls do not, so appropriate
3584 // try-ranges for them need be deduced.
Duncan Sands241a0c92007-09-05 11:27:52 +00003585 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
3586 const LandingPadInfo *LandingPad = LandingPads[i];
Duncan Sands4ff179f2007-12-19 07:36:31 +00003587 for (unsigned j = 0, E = LandingPad->BeginLabels.size(); j != E; ++j) {
Duncan Sands241a0c92007-09-05 11:27:52 +00003588 unsigned BeginLabel = LandingPad->BeginLabels[j];
3589 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
3590 PadRange P = { i, j };
3591 PadMap[BeginLabel] = P;
3592 }
3593 }
3594
Duncan Sands4ff179f2007-12-19 07:36:31 +00003595 // The end label of the previous invoke or nounwind try-range.
Duncan Sands241a0c92007-09-05 11:27:52 +00003596 unsigned LastLabel = 0;
Duncan Sands4ff179f2007-12-19 07:36:31 +00003597
3598 // Whether there is a potentially throwing instruction (currently this means
3599 // an ordinary call) between the end of the previous try-range and now.
3600 bool SawPotentiallyThrowing = false;
3601
3602 // Whether the last callsite entry was for an invoke.
3603 bool PreviousIsInvoke = false;
3604
Duncan Sands4ff179f2007-12-19 07:36:31 +00003605 // Visit all instructions in order of address.
Duncan Sands241a0c92007-09-05 11:27:52 +00003606 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
3607 I != E; ++I) {
3608 for (MachineBasicBlock::const_iterator MI = I->begin(), E = I->end();
3609 MI != E; ++MI) {
Dan Gohmanfa607c92008-07-01 00:05:16 +00003610 if (!MI->isLabel()) {
Chris Lattner5b930372008-01-07 07:27:27 +00003611 SawPotentiallyThrowing |= MI->getDesc().isCall();
Duncan Sands241a0c92007-09-05 11:27:52 +00003612 continue;
3613 }
3614
Chris Lattnerda4cff12007-12-30 20:50:28 +00003615 unsigned BeginLabel = MI->getOperand(0).getImm();
Duncan Sands241a0c92007-09-05 11:27:52 +00003616 assert(BeginLabel && "Invalid label!");
Duncan Sands89372f62007-09-05 14:12:46 +00003617
Duncan Sands4ff179f2007-12-19 07:36:31 +00003618 // End of the previous try-range?
Duncan Sands89372f62007-09-05 14:12:46 +00003619 if (BeginLabel == LastLabel)
Duncan Sands4ff179f2007-12-19 07:36:31 +00003620 SawPotentiallyThrowing = false;
Duncan Sands241a0c92007-09-05 11:27:52 +00003621
Duncan Sands4ff179f2007-12-19 07:36:31 +00003622 // Beginning of a new try-range?
Duncan Sands241a0c92007-09-05 11:27:52 +00003623 RangeMapType::iterator L = PadMap.find(BeginLabel);
Duncan Sands241a0c92007-09-05 11:27:52 +00003624 if (L == PadMap.end())
Duncan Sands4ff179f2007-12-19 07:36:31 +00003625 // Nope, it was just some random label.
Duncan Sands241a0c92007-09-05 11:27:52 +00003626 continue;
3627
3628 PadRange P = L->second;
3629 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
3630
3631 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
3632 "Inconsistent landing pad map!");
3633
3634 // If some instruction between the previous try-range and this one may
3635 // throw, create a call-site entry with no landing pad for the region
3636 // between the try-ranges.
Duncan Sands4ff179f2007-12-19 07:36:31 +00003637 if (SawPotentiallyThrowing) {
Duncan Sands241a0c92007-09-05 11:27:52 +00003638 CallSiteEntry Site = {LastLabel, BeginLabel, 0, 0};
3639 CallSites.push_back(Site);
Duncan Sands4ff179f2007-12-19 07:36:31 +00003640 PreviousIsInvoke = false;
Duncan Sands241a0c92007-09-05 11:27:52 +00003641 }
3642
3643 LastLabel = LandingPad->EndLabels[P.RangeIndex];
Duncan Sands4ff179f2007-12-19 07:36:31 +00003644 assert(BeginLabel && LastLabel && "Invalid landing pad!");
Duncan Sands241a0c92007-09-05 11:27:52 +00003645
Duncan Sands4ff179f2007-12-19 07:36:31 +00003646 if (LandingPad->LandingPadLabel) {
3647 // This try-range is for an invoke.
3648 CallSiteEntry Site = {BeginLabel, LastLabel,
3649 LandingPad->LandingPadLabel, FirstActions[P.PadIndex]};
Duncan Sands241a0c92007-09-05 11:27:52 +00003650
Duncan Sands4ff179f2007-12-19 07:36:31 +00003651 // Try to merge with the previous call-site.
3652 if (PreviousIsInvoke) {
Dan Gohman3d436002008-06-21 22:00:54 +00003653 CallSiteEntry &Prev = CallSites.back();
Duncan Sands4ff179f2007-12-19 07:36:31 +00003654 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
3655 // Extend the range of the previous entry.
3656 Prev.EndLabel = Site.EndLabel;
3657 continue;
3658 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003659 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003660
Duncan Sands4ff179f2007-12-19 07:36:31 +00003661 // Otherwise, create a new call-site.
3662 CallSites.push_back(Site);
3663 PreviousIsInvoke = true;
3664 } else {
3665 // Create a gap.
3666 PreviousIsInvoke = false;
3667 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003668 }
3669 }
3670 // If some instruction between the previous try-range and the end of the
3671 // function may throw, create a call-site entry with no landing pad for the
3672 // region following the try-range.
Duncan Sands4ff179f2007-12-19 07:36:31 +00003673 if (SawPotentiallyThrowing) {
Duncan Sands241a0c92007-09-05 11:27:52 +00003674 CallSiteEntry Site = {LastLabel, 0, 0, 0};
3675 CallSites.push_back(Site);
3676 }
3677
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003678 // Final tallies.
Duncan Sands96144f92008-05-07 19:11:09 +00003679
3680 // Call sites.
3681 const unsigned SiteStartSize = sizeof(int32_t); // DW_EH_PE_udata4
3682 const unsigned SiteLengthSize = sizeof(int32_t); // DW_EH_PE_udata4
3683 const unsigned LandingPadSize = sizeof(int32_t); // DW_EH_PE_udata4
3684 unsigned SizeSites = CallSites.size() * (SiteStartSize +
3685 SiteLengthSize +
3686 LandingPadSize);
Duncan Sands241a0c92007-09-05 11:27:52 +00003687 for (unsigned i = 0, e = CallSites.size(); i < e; ++i)
aslc200b112008-08-16 12:57:46 +00003688 SizeSites += TargetAsmInfo::getULEB128Size(CallSites[i].Action);
Duncan Sands241a0c92007-09-05 11:27:52 +00003689
Duncan Sands96144f92008-05-07 19:11:09 +00003690 // Type infos.
3691 const unsigned TypeInfoSize = TD->getPointerSize(); // DW_EH_PE_absptr
3692 unsigned SizeTypes = TypeInfos.size() * TypeInfoSize;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003693
3694 unsigned TypeOffset = sizeof(int8_t) + // Call site format
aslc200b112008-08-16 12:57:46 +00003695 TargetAsmInfo::getULEB128Size(SizeSites) + // Call-site table length
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003696 SizeSites + SizeActions + SizeTypes;
3697
3698 unsigned TotalSize = sizeof(int8_t) + // LPStart format
3699 sizeof(int8_t) + // TType format
aslc200b112008-08-16 12:57:46 +00003700 TargetAsmInfo::getULEB128Size(TypeOffset) + // TType base offset
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003701 TypeOffset;
3702
3703 unsigned SizeAlign = (4 - TotalSize) & 3;
3704
3705 // Begin the exception table.
3706 Asm->SwitchToDataSection(TAI->getDwarfExceptionSection());
Evan Cheng7e7d1942008-02-29 19:36:59 +00003707 Asm->EmitAlignment(2, 0, 0, false);
Dale Johannesen841e4982008-10-08 21:50:21 +00003708 O << "GCC_except_table" << SubprogramCount << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003709 for (unsigned i = 0; i != SizeAlign; ++i) {
3710 Asm->EmitInt8(0);
3711 Asm->EOL("Padding");
3712 }
3713 EmitLabel("exception", SubprogramCount);
3714
3715 // Emit the header.
3716 Asm->EmitInt8(DW_EH_PE_omit);
3717 Asm->EOL("LPStart format (DW_EH_PE_omit)");
3718 Asm->EmitInt8(DW_EH_PE_absptr);
3719 Asm->EOL("TType format (DW_EH_PE_absptr)");
3720 Asm->EmitULEB128Bytes(TypeOffset);
3721 Asm->EOL("TType base offset");
3722 Asm->EmitInt8(DW_EH_PE_udata4);
3723 Asm->EOL("Call site format (DW_EH_PE_udata4)");
3724 Asm->EmitULEB128Bytes(SizeSites);
3725 Asm->EOL("Call-site table length");
3726
Duncan Sands241a0c92007-09-05 11:27:52 +00003727 // Emit the landing pad site information.
3728 for (unsigned i = 0; i < CallSites.size(); ++i) {
3729 CallSiteEntry &S = CallSites[i];
3730 const char *BeginTag;
3731 unsigned BeginNumber;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003732
Duncan Sands241a0c92007-09-05 11:27:52 +00003733 if (!S.BeginLabel) {
3734 BeginTag = "eh_func_begin";
3735 BeginNumber = SubprogramCount;
3736 } else {
3737 BeginTag = "label";
3738 BeginNumber = S.BeginLabel;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003739 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003740
Duncan Sands241a0c92007-09-05 11:27:52 +00003741 EmitSectionOffset(BeginTag, "eh_func_begin", BeginNumber, SubprogramCount,
Duncan Sands96144f92008-05-07 19:11:09 +00003742 true, true);
Duncan Sands241a0c92007-09-05 11:27:52 +00003743 Asm->EOL("Region start");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003744
Duncan Sands241a0c92007-09-05 11:27:52 +00003745 if (!S.EndLabel) {
Dale Johannesen4670be42008-01-15 23:24:56 +00003746 EmitDifference("eh_func_end", SubprogramCount, BeginTag, BeginNumber,
Duncan Sands96144f92008-05-07 19:11:09 +00003747 true);
Duncan Sands241a0c92007-09-05 11:27:52 +00003748 } else {
Duncan Sands96144f92008-05-07 19:11:09 +00003749 EmitDifference("label", S.EndLabel, BeginTag, BeginNumber, true);
Duncan Sands241a0c92007-09-05 11:27:52 +00003750 }
3751 Asm->EOL("Region length");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003752
Duncan Sands96144f92008-05-07 19:11:09 +00003753 if (!S.PadLabel)
3754 Asm->EmitInt32(0);
3755 else
Duncan Sands241a0c92007-09-05 11:27:52 +00003756 EmitSectionOffset("label", "eh_func_begin", S.PadLabel, SubprogramCount,
Duncan Sands96144f92008-05-07 19:11:09 +00003757 true, true);
Duncan Sands241a0c92007-09-05 11:27:52 +00003758 Asm->EOL("Landing pad");
3759
3760 Asm->EmitULEB128Bytes(S.Action);
3761 Asm->EOL("Action");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003762 }
3763
3764 // Emit the actions.
3765 for (unsigned I = 0, N = Actions.size(); I != N; ++I) {
3766 ActionEntry &Action = Actions[I];
3767
3768 Asm->EmitSLEB128Bytes(Action.ValueForTypeID);
3769 Asm->EOL("TypeInfo index");
3770 Asm->EmitSLEB128Bytes(Action.NextAction);
3771 Asm->EOL("Next action");
3772 }
3773
3774 // Emit the type ids.
3775 for (unsigned M = TypeInfos.size(); M; --M) {
3776 GlobalVariable *GV = TypeInfos[M - 1];
Anton Korobeynikov5ef86702007-09-02 22:07:21 +00003777
3778 PrintRelDirective();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003779
3780 if (GV)
3781 O << Asm->getGlobalLinkName(GV);
3782 else
3783 O << "0";
Duncan Sands241a0c92007-09-05 11:27:52 +00003784
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003785 Asm->EOL("TypeInfo");
3786 }
3787
3788 // Emit the filter typeids.
3789 for (unsigned j = 0, M = FilterIds.size(); j < M; ++j) {
3790 unsigned TypeID = FilterIds[j];
3791 Asm->EmitULEB128Bytes(TypeID);
3792 Asm->EOL("Filter TypeInfo index");
3793 }
Duncan Sands241a0c92007-09-05 11:27:52 +00003794
Evan Cheng7e7d1942008-02-29 19:36:59 +00003795 Asm->EmitAlignment(2, 0, 0, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003796 }
3797
3798public:
3799 //===--------------------------------------------------------------------===//
3800 // Main entry points.
3801 //
Owen Anderson847b99b2008-08-21 00:14:44 +00003802 DwarfException(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
Chris Lattnerb3876c72007-09-24 03:35:37 +00003803 : Dwarf(OS, A, T, "eh")
Dale Johannesen85535762008-04-02 00:25:04 +00003804 , shouldEmitTable(false)
3805 , shouldEmitMoves(false)
3806 , shouldEmitTableModule(false)
3807 , shouldEmitMovesModule(false)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003808 {}
aslc200b112008-08-16 12:57:46 +00003809
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003810 virtual ~DwarfException() {}
3811
3812 /// SetModuleInfo - Set machine module information when it's known that pass
3813 /// manager has created it. Set by the target AsmPrinter.
3814 void SetModuleInfo(MachineModuleInfo *mmi) {
3815 MMI = mmi;
3816 }
3817
3818 /// BeginModule - Emit all exception information that should come prior to the
3819 /// content.
3820 void BeginModule(Module *M) {
3821 this->M = M;
3822 }
3823
3824 /// EndModule - Emit all exception information that should come after the
3825 /// content.
3826 void EndModule() {
Dale Johannesen85535762008-04-02 00:25:04 +00003827 if (shouldEmitMovesModule || shouldEmitTableModule) {
3828 const std::vector<Function *> Personalities = MMI->getPersonalities();
3829 for (unsigned i =0; i < Personalities.size(); ++i)
3830 EmitCommonEHFrame(Personalities[i], i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003831
Dale Johannesen85535762008-04-02 00:25:04 +00003832 for (std::vector<FunctionEHFrameInfo>::iterator I = EHFrames.begin(),
3833 E = EHFrames.end(); I != E; ++I)
3834 EmitEHFrame(*I);
3835 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003836 }
3837
aslc200b112008-08-16 12:57:46 +00003838 /// BeginFunction - Gather pre-function exception information. Assumes being
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003839 /// emitted immediately after the function entry point.
3840 void BeginFunction(MachineFunction *MF) {
3841 this->MF = MF;
Dale Johannesen85535762008-04-02 00:25:04 +00003842 shouldEmitTable = shouldEmitMoves = false;
Dale Johannesen62f0a6d2008-04-02 17:04:45 +00003843 if (MMI && TAI->doesSupportExceptionHandling()) {
Dale Johannesen85535762008-04-02 00:25:04 +00003844
3845 // Map all labels and get rid of any dead landing pads.
3846 MMI->TidyLandingPads();
3847 // If any landing pads survive, we need an EH table.
3848 if (MMI->getLandingPads().size())
3849 shouldEmitTable = true;
3850
3851 // See if we need frame move info.
Duncan Sandscbc28b12008-07-04 09:55:48 +00003852 if (!MF->getFunction()->doesNotThrow() || UnwindTablesMandatory)
Dale Johannesen85535762008-04-02 00:25:04 +00003853 shouldEmitMoves = true;
3854
3855 if (shouldEmitMoves || shouldEmitTable)
3856 // Assumes in correct section after the entry point.
3857 EmitLabel("eh_func_begin", ++SubprogramCount);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003858 }
Dale Johannesen85535762008-04-02 00:25:04 +00003859 shouldEmitTableModule |= shouldEmitTable;
3860 shouldEmitMovesModule |= shouldEmitMoves;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003861 }
3862
3863 /// EndFunction - Gather and emit post-function exception information.
3864 ///
3865 void EndFunction() {
Dale Johannesen85535762008-04-02 00:25:04 +00003866 if (shouldEmitMoves || shouldEmitTable) {
3867 EmitLabel("eh_func_end", SubprogramCount);
3868 EmitExceptionTable();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003869
Dale Johannesen85535762008-04-02 00:25:04 +00003870 // Save EH frame information
3871 EHFrames.
3872 push_back(FunctionEHFrameInfo(getAsm()->getCurrentFunctionEHName(MF),
Bill Wendlingef9211a2007-09-18 01:47:22 +00003873 SubprogramCount,
3874 MMI->getPersonalityIndex(),
3875 MF->getFrameInfo()->hasCalls(),
3876 !MMI->getLandingPads().empty(),
Dale Johannesenfb3ac732007-11-20 23:24:42 +00003877 MMI->getFrameMoves(),
Dale Johannesen3dadeb32008-01-16 19:59:28 +00003878 MF->getFunction()));
Dale Johannesen85535762008-04-02 00:25:04 +00003879 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003880 }
3881};
3882
3883} // End of namespace llvm
3884
3885//===----------------------------------------------------------------------===//
3886
3887/// Emit - Print the abbreviation using the specified Dwarf writer.
3888///
3889void DIEAbbrev::Emit(const DwarfDebug &DD) const {
3890 // Emit its Dwarf tag type.
3891 DD.getAsm()->EmitULEB128Bytes(Tag);
3892 DD.getAsm()->EOL(TagString(Tag));
aslc200b112008-08-16 12:57:46 +00003893
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003894 // Emit whether it has children DIEs.
3895 DD.getAsm()->EmitULEB128Bytes(ChildrenFlag);
3896 DD.getAsm()->EOL(ChildrenString(ChildrenFlag));
aslc200b112008-08-16 12:57:46 +00003897
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003898 // For each attribute description.
3899 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3900 const DIEAbbrevData &AttrData = Data[i];
aslc200b112008-08-16 12:57:46 +00003901
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003902 // Emit attribute type.
3903 DD.getAsm()->EmitULEB128Bytes(AttrData.getAttribute());
3904 DD.getAsm()->EOL(AttributeString(AttrData.getAttribute()));
aslc200b112008-08-16 12:57:46 +00003905
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003906 // Emit form type.
3907 DD.getAsm()->EmitULEB128Bytes(AttrData.getForm());
3908 DD.getAsm()->EOL(FormEncodingString(AttrData.getForm()));
3909 }
3910
3911 // Mark end of abbreviation.
3912 DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(1)");
3913 DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(2)");
3914}
3915
3916#ifndef NDEBUG
3917void DIEAbbrev::print(std::ostream &O) {
3918 O << "Abbreviation @"
3919 << std::hex << (intptr_t)this << std::dec
3920 << " "
3921 << TagString(Tag)
3922 << " "
3923 << ChildrenString(ChildrenFlag)
3924 << "\n";
aslc200b112008-08-16 12:57:46 +00003925
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003926 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3927 O << " "
3928 << AttributeString(Data[i].getAttribute())
3929 << " "
3930 << FormEncodingString(Data[i].getForm())
3931 << "\n";
3932 }
3933}
3934void DIEAbbrev::dump() { print(cerr); }
3935#endif
3936
3937//===----------------------------------------------------------------------===//
3938
3939#ifndef NDEBUG
3940void DIEValue::dump() {
3941 print(cerr);
3942}
3943#endif
3944
3945//===----------------------------------------------------------------------===//
3946
3947/// EmitValue - Emit integer of appropriate size.
3948///
3949void DIEInteger::EmitValue(DwarfDebug &DD, unsigned Form) {
3950 switch (Form) {
3951 case DW_FORM_flag: // Fall thru
3952 case DW_FORM_ref1: // Fall thru
3953 case DW_FORM_data1: DD.getAsm()->EmitInt8(Integer); break;
3954 case DW_FORM_ref2: // Fall thru
3955 case DW_FORM_data2: DD.getAsm()->EmitInt16(Integer); break;
3956 case DW_FORM_ref4: // Fall thru
3957 case DW_FORM_data4: DD.getAsm()->EmitInt32(Integer); break;
3958 case DW_FORM_ref8: // Fall thru
3959 case DW_FORM_data8: DD.getAsm()->EmitInt64(Integer); break;
3960 case DW_FORM_udata: DD.getAsm()->EmitULEB128Bytes(Integer); break;
3961 case DW_FORM_sdata: DD.getAsm()->EmitSLEB128Bytes(Integer); break;
3962 default: assert(0 && "DIE Value form not supported yet"); break;
3963 }
3964}
3965
3966/// SizeOf - Determine size of integer value in bytes.
3967///
3968unsigned DIEInteger::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3969 switch (Form) {
3970 case DW_FORM_flag: // Fall thru
3971 case DW_FORM_ref1: // Fall thru
3972 case DW_FORM_data1: return sizeof(int8_t);
3973 case DW_FORM_ref2: // Fall thru
3974 case DW_FORM_data2: return sizeof(int16_t);
3975 case DW_FORM_ref4: // Fall thru
3976 case DW_FORM_data4: return sizeof(int32_t);
3977 case DW_FORM_ref8: // Fall thru
3978 case DW_FORM_data8: return sizeof(int64_t);
aslc200b112008-08-16 12:57:46 +00003979 case DW_FORM_udata: return TargetAsmInfo::getULEB128Size(Integer);
3980 case DW_FORM_sdata: return TargetAsmInfo::getSLEB128Size(Integer);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003981 default: assert(0 && "DIE Value form not supported yet"); break;
3982 }
3983 return 0;
3984}
3985
3986//===----------------------------------------------------------------------===//
3987
3988/// EmitValue - Emit string value.
3989///
3990void DIEString::EmitValue(DwarfDebug &DD, unsigned Form) {
3991 DD.getAsm()->EmitString(String);
3992}
3993
3994//===----------------------------------------------------------------------===//
3995
3996/// EmitValue - Emit label value.
3997///
3998void DIEDwarfLabel::EmitValue(DwarfDebug &DD, unsigned Form) {
Dan Gohman597b4842007-09-28 16:50:28 +00003999 bool IsSmall = Form == DW_FORM_data4;
4000 DD.EmitReference(Label, false, IsSmall);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004001}
4002
4003/// SizeOf - Determine size of label value in bytes.
4004///
4005unsigned DIEDwarfLabel::SizeOf(const DwarfDebug &DD, unsigned Form) const {
Dan Gohman597b4842007-09-28 16:50:28 +00004006 if (Form == DW_FORM_data4) return 4;
Dan Gohmancfb72b22007-09-27 23:12:31 +00004007 return DD.getTargetData()->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004008}
4009
4010//===----------------------------------------------------------------------===//
4011
4012/// EmitValue - Emit label value.
4013///
4014void DIEObjectLabel::EmitValue(DwarfDebug &DD, unsigned Form) {
Dan Gohman597b4842007-09-28 16:50:28 +00004015 bool IsSmall = Form == DW_FORM_data4;
4016 DD.EmitReference(Label, false, IsSmall);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004017}
4018
4019/// SizeOf - Determine size of label value in bytes.
4020///
4021unsigned DIEObjectLabel::SizeOf(const DwarfDebug &DD, unsigned Form) const {
Dan Gohman597b4842007-09-28 16:50:28 +00004022 if (Form == DW_FORM_data4) return 4;
Dan Gohmancfb72b22007-09-27 23:12:31 +00004023 return DD.getTargetData()->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004024}
aslc200b112008-08-16 12:57:46 +00004025
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004026//===----------------------------------------------------------------------===//
4027
4028/// EmitValue - Emit delta value.
4029///
Argiris Kirtzidis03449652008-06-18 19:27:37 +00004030void DIESectionOffset::EmitValue(DwarfDebug &DD, unsigned Form) {
4031 bool IsSmall = Form == DW_FORM_data4;
4032 DD.EmitSectionOffset(Label.Tag, Section.Tag,
4033 Label.Number, Section.Number, IsSmall, IsEH, UseSet);
4034}
4035
4036/// SizeOf - Determine size of delta value in bytes.
4037///
4038unsigned DIESectionOffset::SizeOf(const DwarfDebug &DD, unsigned Form) const {
4039 if (Form == DW_FORM_data4) return 4;
4040 return DD.getTargetData()->getPointerSize();
4041}
aslc200b112008-08-16 12:57:46 +00004042
Argiris Kirtzidis03449652008-06-18 19:27:37 +00004043//===----------------------------------------------------------------------===//
4044
4045/// EmitValue - Emit delta value.
4046///
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004047void DIEDelta::EmitValue(DwarfDebug &DD, unsigned Form) {
4048 bool IsSmall = Form == DW_FORM_data4;
4049 DD.EmitDifference(LabelHi, LabelLo, IsSmall);
4050}
4051
4052/// SizeOf - Determine size of delta value in bytes.
4053///
4054unsigned DIEDelta::SizeOf(const DwarfDebug &DD, unsigned Form) const {
4055 if (Form == DW_FORM_data4) return 4;
Dan Gohmancfb72b22007-09-27 23:12:31 +00004056 return DD.getTargetData()->getPointerSize();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004057}
4058
4059//===----------------------------------------------------------------------===//
4060
4061/// EmitValue - Emit debug information entry offset.
4062///
4063void DIEntry::EmitValue(DwarfDebug &DD, unsigned Form) {
4064 DD.getAsm()->EmitInt32(Entry->getOffset());
4065}
aslc200b112008-08-16 12:57:46 +00004066
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004067//===----------------------------------------------------------------------===//
4068
4069/// ComputeSize - calculate the size of the block.
4070///
4071unsigned DIEBlock::ComputeSize(DwarfDebug &DD) {
4072 if (!Size) {
Owen Anderson88dd6232008-06-24 21:44:59 +00004073 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData();
aslc200b112008-08-16 12:57:46 +00004074
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004075 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
4076 Size += Values[i]->SizeOf(DD, AbbrevData[i].getForm());
4077 }
4078 }
4079 return Size;
4080}
4081
4082/// EmitValue - Emit block data.
4083///
4084void DIEBlock::EmitValue(DwarfDebug &DD, unsigned Form) {
4085 switch (Form) {
4086 case DW_FORM_block1: DD.getAsm()->EmitInt8(Size); break;
4087 case DW_FORM_block2: DD.getAsm()->EmitInt16(Size); break;
4088 case DW_FORM_block4: DD.getAsm()->EmitInt32(Size); break;
4089 case DW_FORM_block: DD.getAsm()->EmitULEB128Bytes(Size); break;
4090 default: assert(0 && "Improper form for block"); break;
4091 }
aslc200b112008-08-16 12:57:46 +00004092
Owen Anderson88dd6232008-06-24 21:44:59 +00004093 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004094
4095 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
4096 DD.getAsm()->EOL();
4097 Values[i]->EmitValue(DD, AbbrevData[i].getForm());
4098 }
4099}
4100
4101/// SizeOf - Determine size of block data in bytes.
4102///
4103unsigned DIEBlock::SizeOf(const DwarfDebug &DD, unsigned Form) const {
4104 switch (Form) {
4105 case DW_FORM_block1: return Size + sizeof(int8_t);
4106 case DW_FORM_block2: return Size + sizeof(int16_t);
4107 case DW_FORM_block4: return Size + sizeof(int32_t);
aslc200b112008-08-16 12:57:46 +00004108 case DW_FORM_block: return Size + TargetAsmInfo::getULEB128Size(Size);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004109 default: assert(0 && "Improper form for block"); break;
4110 }
4111 return 0;
4112}
4113
4114//===----------------------------------------------------------------------===//
4115/// DIE Implementation
4116
4117DIE::~DIE() {
4118 for (unsigned i = 0, N = Children.size(); i < N; ++i)
4119 delete Children[i];
4120}
aslc200b112008-08-16 12:57:46 +00004121
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004122/// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
4123///
4124void DIE::AddSiblingOffset() {
4125 DIEInteger *DI = new DIEInteger(0);
4126 Values.insert(Values.begin(), DI);
4127 Abbrev.AddFirstAttribute(DW_AT_sibling, DW_FORM_ref4);
4128}
4129
4130/// Profile - Used to gather unique data for the value folding set.
4131///
4132void DIE::Profile(FoldingSetNodeID &ID) {
4133 Abbrev.Profile(ID);
aslc200b112008-08-16 12:57:46 +00004134
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004135 for (unsigned i = 0, N = Children.size(); i < N; ++i)
4136 ID.AddPointer(Children[i]);
4137
4138 for (unsigned j = 0, M = Values.size(); j < M; ++j)
4139 ID.AddPointer(Values[j]);
4140}
4141
4142#ifndef NDEBUG
4143void DIE::print(std::ostream &O, unsigned IncIndent) {
4144 static unsigned IndentCount = 0;
4145 IndentCount += IncIndent;
4146 const std::string Indent(IndentCount, ' ');
4147 bool isBlock = Abbrev.getTag() == 0;
aslc200b112008-08-16 12:57:46 +00004148
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004149 if (!isBlock) {
4150 O << Indent
4151 << "Die: "
4152 << "0x" << std::hex << (intptr_t)this << std::dec
4153 << ", Offset: " << Offset
4154 << ", Size: " << Size
aslc200b112008-08-16 12:57:46 +00004155 << "\n";
4156
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004157 O << Indent
4158 << TagString(Abbrev.getTag())
4159 << " "
4160 << ChildrenString(Abbrev.getChildrenFlag());
4161 } else {
4162 O << "Size: " << Size;
4163 }
4164 O << "\n";
4165
Owen Anderson88dd6232008-06-24 21:44:59 +00004166 const SmallVector<DIEAbbrevData, 8> &Data = Abbrev.getData();
aslc200b112008-08-16 12:57:46 +00004167
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004168 IndentCount += 2;
4169 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
4170 O << Indent;
Bill Wendlingdc7b5a52008-07-22 00:28:47 +00004171
4172 if (!isBlock)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004173 O << AttributeString(Data[i].getAttribute());
Bill Wendlingdc7b5a52008-07-22 00:28:47 +00004174 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004175 O << "Blk[" << i << "]";
Bill Wendlingdc7b5a52008-07-22 00:28:47 +00004176
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004177 O << " "
4178 << FormEncodingString(Data[i].getForm())
4179 << " ";
4180 Values[i]->print(O);
4181 O << "\n";
4182 }
4183 IndentCount -= 2;
4184
4185 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
4186 Children[j]->print(O, 4);
4187 }
aslc200b112008-08-16 12:57:46 +00004188
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004189 if (!isBlock) O << "\n";
4190 IndentCount -= IncIndent;
4191}
4192
4193void DIE::dump() {
4194 print(cerr);
4195}
4196#endif
4197
4198//===----------------------------------------------------------------------===//
4199/// DwarfWriter Implementation
4200///
4201
Devang Patelaa1e8432009-01-08 23:40:34 +00004202DwarfWriter::DwarfWriter() : ImmutablePass(&ID), DD(NULL), DE(NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004203}
4204
4205DwarfWriter::~DwarfWriter() {
4206 delete DE;
4207 delete DD;
4208}
4209
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004210/// BeginModule - Emit all Dwarf sections that should come prior to the
4211/// content.
Devang Patelaa1e8432009-01-08 23:40:34 +00004212void DwarfWriter::BeginModule(Module *M,
4213 MachineModuleInfo *MMI,
4214 raw_ostream &OS, AsmPrinter *A,
4215 const TargetAsmInfo *T) {
4216 DE = new DwarfException(OS, A, T);
4217 DD = new DwarfDebug(OS, A, T);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004218 DE->BeginModule(M);
4219 DD->BeginModule(M);
Devang Patel6ccd57e2009-01-13 00:20:51 +00004220 DD->SetDebugInfo(MMI);
Devang Patelaa1e8432009-01-08 23:40:34 +00004221 DE->SetModuleInfo(MMI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004222}
4223
4224/// EndModule - Emit all Dwarf sections that should come after the content.
4225///
4226void DwarfWriter::EndModule() {
4227 DE->EndModule();
4228 DD->EndModule();
4229}
4230
aslc200b112008-08-16 12:57:46 +00004231/// BeginFunction - Gather pre-function debug information. Assumes being
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004232/// emitted immediately after the function entry point.
4233void DwarfWriter::BeginFunction(MachineFunction *MF) {
4234 DE->BeginFunction(MF);
4235 DD->BeginFunction(MF);
4236}
4237
4238/// EndFunction - Gather and emit post-function debug information.
4239///
Bill Wendlingb22ae7d2008-09-26 00:28:12 +00004240void DwarfWriter::EndFunction(MachineFunction *MF) {
4241 DD->EndFunction(MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004242 DE->EndFunction();
aslc200b112008-08-16 12:57:46 +00004243
Bill Wendling5b4796a2008-07-22 00:53:37 +00004244 if (MachineModuleInfo *MMI = DD->getMMI() ? DD->getMMI() : DE->getMMI())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004245 // Clear function debug information.
4246 MMI->EndFunction();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004247}
Devang Patelcb59fd42009-01-12 19:17:34 +00004248
Devang Patel2da0cc42009-01-15 23:41:32 +00004249/// ValidDebugInfo - Return true if V represents valid debug info value.
4250bool DwarfWriter::ValidDebugInfo(Value *V) {
Devang Patel943af622009-01-16 02:15:14 +00004251 return DD && DD->ValidDebugInfo(V);
Devang Patel2da0cc42009-01-15 23:41:32 +00004252}
4253
Devang Patelcb59fd42009-01-12 19:17:34 +00004254/// RecordSourceLine - Records location information and associates it with a
4255/// label. Returns a unique label ID used to generate a label and provide
4256/// correspondence to the source line list.
4257unsigned DwarfWriter::RecordSourceLine(unsigned Line, unsigned Col,
4258 unsigned Src) {
4259 return DD->RecordSourceLine(Line, Col, Src);
4260}
4261
4262/// RecordSource - Register a source file with debug info. Returns an source
4263/// ID.
4264unsigned DwarfWriter::RecordSource(const std::string &Dir,
4265 const std::string &File) {
4266 return DD->RecordSource(Dir, File);
4267}
4268
4269/// RecordRegionStart - Indicate the start of a region.
4270unsigned DwarfWriter::RecordRegionStart(GlobalVariable *V) {
4271 return DD->RecordRegionStart(V);
4272}
4273
4274/// RecordRegionEnd - Indicate the end of a region.
4275unsigned DwarfWriter::RecordRegionEnd(GlobalVariable *V) {
4276 return DD->RecordRegionEnd(V);
4277}
4278
4279/// getRecordSourceLineCount - Count source lines.
4280unsigned DwarfWriter::getRecordSourceLineCount() {
4281 return DD->getRecordSourceLineCount();
4282}
Devang Patel70190872009-01-13 21:25:00 +00004283
Devang Patelfe359e72009-01-13 21:44:10 +00004284/// RecordVariable - Indicate the declaration of a local variable.
4285///
4286void DwarfWriter::RecordVariable(GlobalVariable *GV, unsigned FrameIndex) {
4287 DD->RecordVariable(GV, FrameIndex);
4288}
Devang Patel42f6bed2009-01-13 23:54:55 +00004289