blob: 79d13291bacb7a6872ba79a32ccb774936d2c372 [file] [log] [blame]
Bill Wendling0310d762009-05-15 09:23:25 +00001//===-- llvm/CodeGen/DwarfDebug.cpp - Dwarf Debug Framework ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf debug info into asm files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "DwarfDebug.h"
15#include "llvm/Module.h"
16#include "llvm/CodeGen/MachineModuleInfo.h"
17#include "llvm/Support/Timer.h"
18#include "llvm/System/Path.h"
19#include "llvm/Target/TargetAsmInfo.h"
20#include "llvm/Target/TargetRegisterInfo.h"
21#include "llvm/Target/TargetData.h"
22#include "llvm/Target/TargetFrameInfo.h"
Bill Wendling0310d762009-05-15 09:23:25 +000023using namespace llvm;
24
25static TimerGroup &getDwarfTimerGroup() {
26 static TimerGroup DwarfTimerGroup("Dwarf Debugging");
27 return DwarfTimerGroup;
28}
29
30//===----------------------------------------------------------------------===//
31
32/// Configuration values for initial hash set sizes (log2).
33///
34static const unsigned InitDiesSetSize = 9; // log2(512)
35static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
36static const unsigned InitValuesSetSize = 9; // log2(512)
37
38namespace llvm {
39
40//===----------------------------------------------------------------------===//
41/// CompileUnit - This dwarf writer support class manages information associate
42/// with a source file.
43class VISIBILITY_HIDDEN CompileUnit {
44 /// ID - File identifier for source.
45 ///
46 unsigned ID;
47
48 /// Die - Compile unit debug information entry.
49 ///
50 DIE *Die;
51
52 /// GVToDieMap - Tracks the mapping of unit level debug informaton
53 /// variables to debug information entries.
54 std::map<GlobalVariable *, DIE *> GVToDieMap;
55
56 /// GVToDIEEntryMap - Tracks the mapping of unit level debug informaton
57 /// descriptors to debug information entries using a DIEEntry proxy.
58 std::map<GlobalVariable *, DIEEntry *> GVToDIEEntryMap;
59
60 /// Globals - A map of globally visible named entities for this unit.
61 ///
62 StringMap<DIE*> Globals;
63
64 /// DiesSet - Used to uniquely define dies within the compile unit.
65 ///
66 FoldingSet<DIE> DiesSet;
67public:
68 CompileUnit(unsigned I, DIE *D)
Bill Wendling39dd6962009-05-20 23:31:45 +000069 : ID(I), Die(D), DiesSet(InitDiesSetSize) {}
70 ~CompileUnit() { delete Die; }
Bill Wendling0310d762009-05-15 09:23:25 +000071
72 // Accessors.
Bill Wendling39dd6962009-05-20 23:31:45 +000073 unsigned getID() const { return ID; }
74 DIE* getDie() const { return Die; }
Bill Wendling0310d762009-05-15 09:23:25 +000075 StringMap<DIE*> &getGlobals() { return Globals; }
76
77 /// hasContent - Return true if this compile unit has something to write out.
78 ///
Bill Wendling39dd6962009-05-20 23:31:45 +000079 bool hasContent() const { return !Die->getChildren().empty(); }
Bill Wendling0310d762009-05-15 09:23:25 +000080
81 /// AddGlobal - Add a new global entity to the compile unit.
82 ///
Bill Wendling39dd6962009-05-20 23:31:45 +000083 void AddGlobal(const std::string &Name, DIE *Die) { Globals[Name] = Die; }
Bill Wendling0310d762009-05-15 09:23:25 +000084
85 /// getDieMapSlotFor - Returns the debug information entry map slot for the
86 /// specified debug variable.
Bill Wendling39dd6962009-05-20 23:31:45 +000087 DIE *&getDieMapSlotFor(GlobalVariable *GV) { return GVToDieMap[GV]; }
Bill Wendling0310d762009-05-15 09:23:25 +000088
Chris Lattner1cda87c2009-07-14 04:50:12 +000089 /// getDIEEntrySlotFor - Returns the debug information entry proxy slot for
90 /// the specified debug variable.
Bill Wendling0310d762009-05-15 09:23:25 +000091 DIEEntry *&getDIEEntrySlotFor(GlobalVariable *GV) {
92 return GVToDIEEntryMap[GV];
93 }
94
95 /// AddDie - Adds or interns the DIE to the compile unit.
96 ///
97 DIE *AddDie(DIE &Buffer) {
98 FoldingSetNodeID ID;
99 Buffer.Profile(ID);
100 void *Where;
101 DIE *Die = DiesSet.FindNodeOrInsertPos(ID, Where);
102
103 if (!Die) {
104 Die = new DIE(Buffer);
105 DiesSet.InsertNode(Die, Where);
106 this->Die->AddChild(Die);
107 Buffer.Detach();
108 }
109
110 return Die;
111 }
112};
113
114//===----------------------------------------------------------------------===//
115/// DbgVariable - This class is used to track local variable information.
116///
117class VISIBILITY_HIDDEN DbgVariable {
118 DIVariable Var; // Variable Descriptor.
119 unsigned FrameIndex; // Variable frame index.
Bill Wendling1180c782009-05-18 23:08:55 +0000120 bool InlinedFnVar; // Variable for an inlined function.
Bill Wendling0310d762009-05-15 09:23:25 +0000121public:
Bill Wendling1180c782009-05-18 23:08:55 +0000122 DbgVariable(DIVariable V, unsigned I, bool IFV)
123 : Var(V), FrameIndex(I), InlinedFnVar(IFV) {}
Bill Wendling0310d762009-05-15 09:23:25 +0000124
125 // Accessors.
Bill Wendling1180c782009-05-18 23:08:55 +0000126 DIVariable getVariable() const { return Var; }
Bill Wendling0310d762009-05-15 09:23:25 +0000127 unsigned getFrameIndex() const { return FrameIndex; }
Bill Wendling1180c782009-05-18 23:08:55 +0000128 bool isInlinedFnVar() const { return InlinedFnVar; }
Bill Wendling0310d762009-05-15 09:23:25 +0000129};
130
131//===----------------------------------------------------------------------===//
132/// DbgScope - This class is used to track scope information.
133///
134class DbgConcreteScope;
135class VISIBILITY_HIDDEN DbgScope {
136 DbgScope *Parent; // Parent to this scope.
137 DIDescriptor Desc; // Debug info descriptor for scope.
138 // Either subprogram or block.
139 unsigned StartLabelID; // Label ID of the beginning of scope.
140 unsigned EndLabelID; // Label ID of the end of scope.
141 SmallVector<DbgScope *, 4> Scopes; // Scopes defined in scope.
142 SmallVector<DbgVariable *, 8> Variables;// Variables declared in scope.
143 SmallVector<DbgConcreteScope *, 8> ConcreteInsts;// Concrete insts of funcs.
Owen Anderson04c05f72009-06-24 22:53:20 +0000144
145 // Private state for dump()
146 mutable unsigned IndentLevel;
Bill Wendling0310d762009-05-15 09:23:25 +0000147public:
148 DbgScope(DbgScope *P, DIDescriptor D)
Owen Anderson04c05f72009-06-24 22:53:20 +0000149 : Parent(P), Desc(D), StartLabelID(0), EndLabelID(0), IndentLevel(0) {}
Bill Wendling0310d762009-05-15 09:23:25 +0000150 virtual ~DbgScope();
151
152 // Accessors.
153 DbgScope *getParent() const { return Parent; }
154 DIDescriptor getDesc() const { return Desc; }
155 unsigned getStartLabelID() const { return StartLabelID; }
156 unsigned getEndLabelID() const { return EndLabelID; }
157 SmallVector<DbgScope *, 4> &getScopes() { return Scopes; }
158 SmallVector<DbgVariable *, 8> &getVariables() { return Variables; }
159 SmallVector<DbgConcreteScope*,8> &getConcreteInsts() { return ConcreteInsts; }
160 void setStartLabelID(unsigned S) { StartLabelID = S; }
161 void setEndLabelID(unsigned E) { EndLabelID = E; }
162
163 /// AddScope - Add a scope to the scope.
164 ///
165 void AddScope(DbgScope *S) { Scopes.push_back(S); }
166
167 /// AddVariable - Add a variable to the scope.
168 ///
169 void AddVariable(DbgVariable *V) { Variables.push_back(V); }
170
171 /// AddConcreteInst - Add a concrete instance to the scope.
172 ///
173 void AddConcreteInst(DbgConcreteScope *C) { ConcreteInsts.push_back(C); }
174
175#ifndef NDEBUG
176 void dump() const;
177#endif
178};
179
180#ifndef NDEBUG
181void DbgScope::dump() const {
Bill Wendling0310d762009-05-15 09:23:25 +0000182 std::string Indent(IndentLevel, ' ');
183
184 cerr << Indent; Desc.dump();
185 cerr << " [" << StartLabelID << ", " << EndLabelID << "]\n";
186
187 IndentLevel += 2;
188
189 for (unsigned i = 0, e = Scopes.size(); i != e; ++i)
190 if (Scopes[i] != this)
191 Scopes[i]->dump();
192
193 IndentLevel -= 2;
194}
195#endif
196
197//===----------------------------------------------------------------------===//
198/// DbgConcreteScope - This class is used to track a scope that holds concrete
199/// instance information.
200///
201class VISIBILITY_HIDDEN DbgConcreteScope : public DbgScope {
202 CompileUnit *Unit;
203 DIE *Die; // Debug info for this concrete scope.
204public:
205 DbgConcreteScope(DIDescriptor D) : DbgScope(NULL, D) {}
206
207 // Accessors.
208 DIE *getDie() const { return Die; }
209 void setDie(DIE *D) { Die = D; }
210};
211
212DbgScope::~DbgScope() {
213 for (unsigned i = 0, N = Scopes.size(); i < N; ++i)
214 delete Scopes[i];
215 for (unsigned j = 0, M = Variables.size(); j < M; ++j)
216 delete Variables[j];
217 for (unsigned k = 0, O = ConcreteInsts.size(); k < O; ++k)
218 delete ConcreteInsts[k];
219}
220
221} // end llvm namespace
222
223DwarfDebug::DwarfDebug(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
Devang Patel1dbc7712009-06-29 20:45:18 +0000224 : Dwarf(OS, A, T, "dbg"), ModuleCU(0),
Bill Wendling0310d762009-05-15 09:23:25 +0000225 AbbreviationsSet(InitAbbreviationsSetSize), Abbreviations(),
226 ValuesSet(InitValuesSetSize), Values(), StringPool(), SectionMap(),
227 SectionSourceLines(), didInitial(false), shouldEmit(false),
Devang Patel43da8fb2009-07-13 21:26:33 +0000228 FunctionDbgScope(0), DebugTimer(0) {
Bill Wendling0310d762009-05-15 09:23:25 +0000229 if (TimePassesIsEnabled)
230 DebugTimer = new Timer("Dwarf Debug Writer",
231 getDwarfTimerGroup());
232}
233DwarfDebug::~DwarfDebug() {
234 for (unsigned j = 0, M = Values.size(); j < M; ++j)
235 delete Values[j];
236
237 for (DenseMap<const GlobalVariable *, DbgScope *>::iterator
238 I = AbstractInstanceRootMap.begin(),
239 E = AbstractInstanceRootMap.end(); I != E;++I)
240 delete I->second;
241
242 delete DebugTimer;
243}
244
245/// AssignAbbrevNumber - Define a unique number for the abbreviation.
246///
247void DwarfDebug::AssignAbbrevNumber(DIEAbbrev &Abbrev) {
248 // Profile the node so that we can make it unique.
249 FoldingSetNodeID ID;
250 Abbrev.Profile(ID);
251
252 // Check the set for priors.
253 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
254
255 // If it's newly added.
256 if (InSet == &Abbrev) {
257 // Add to abbreviation list.
258 Abbreviations.push_back(&Abbrev);
259
260 // Assign the vector position + 1 as its number.
261 Abbrev.setNumber(Abbreviations.size());
262 } else {
263 // Assign existing abbreviation number.
264 Abbrev.setNumber(InSet->getNumber());
265 }
266}
267
Bill Wendling995f80a2009-05-20 23:24:48 +0000268/// CreateDIEEntry - Creates a new DIEEntry to be a proxy for a debug
269/// information entry.
270DIEEntry *DwarfDebug::CreateDIEEntry(DIE *Entry) {
Bill Wendling0310d762009-05-15 09:23:25 +0000271 DIEEntry *Value;
272
273 if (Entry) {
274 FoldingSetNodeID ID;
275 DIEEntry::Profile(ID, Entry);
276 void *Where;
277 Value = static_cast<DIEEntry *>(ValuesSet.FindNodeOrInsertPos(ID, Where));
278
279 if (Value) return Value;
280
281 Value = new DIEEntry(Entry);
282 ValuesSet.InsertNode(Value, Where);
283 } else {
284 Value = new DIEEntry(Entry);
285 }
286
287 Values.push_back(Value);
288 return Value;
289}
290
291/// SetDIEEntry - Set a DIEEntry once the debug information entry is defined.
292///
293void DwarfDebug::SetDIEEntry(DIEEntry *Value, DIE *Entry) {
294 Value->setEntry(Entry);
295
296 // Add to values set if not already there. If it is, we merely have a
297 // duplicate in the values list (no harm.)
298 ValuesSet.GetOrInsertNode(Value);
299}
300
301/// AddUInt - Add an unsigned integer attribute data and value.
302///
303void DwarfDebug::AddUInt(DIE *Die, unsigned Attribute,
304 unsigned Form, uint64_t Integer) {
305 if (!Form) Form = DIEInteger::BestForm(false, Integer);
306
307 FoldingSetNodeID ID;
308 DIEInteger::Profile(ID, Integer);
309 void *Where;
310 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
311
312 if (!Value) {
313 Value = new DIEInteger(Integer);
314 ValuesSet.InsertNode(Value, Where);
315 Values.push_back(Value);
316 }
317
318 Die->AddValue(Attribute, Form, Value);
319}
320
321/// AddSInt - Add an signed integer attribute data and value.
322///
323void DwarfDebug::AddSInt(DIE *Die, unsigned Attribute,
324 unsigned Form, int64_t Integer) {
325 if (!Form) Form = DIEInteger::BestForm(true, Integer);
326
327 FoldingSetNodeID ID;
328 DIEInteger::Profile(ID, (uint64_t)Integer);
329 void *Where;
330 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
331
332 if (!Value) {
333 Value = new DIEInteger(Integer);
334 ValuesSet.InsertNode(Value, Where);
335 Values.push_back(Value);
336 }
337
338 Die->AddValue(Attribute, Form, Value);
339}
340
341/// AddString - Add a string attribute data and value.
342///
343void DwarfDebug::AddString(DIE *Die, unsigned Attribute, unsigned Form,
344 const std::string &String) {
345 FoldingSetNodeID ID;
346 DIEString::Profile(ID, String);
347 void *Where;
348 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
349
350 if (!Value) {
351 Value = new DIEString(String);
352 ValuesSet.InsertNode(Value, Where);
353 Values.push_back(Value);
354 }
355
356 Die->AddValue(Attribute, Form, Value);
357}
358
359/// AddLabel - Add a Dwarf label attribute data and value.
360///
361void DwarfDebug::AddLabel(DIE *Die, unsigned Attribute, unsigned Form,
362 const DWLabel &Label) {
363 FoldingSetNodeID ID;
364 DIEDwarfLabel::Profile(ID, Label);
365 void *Where;
366 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
367
368 if (!Value) {
369 Value = new DIEDwarfLabel(Label);
370 ValuesSet.InsertNode(Value, Where);
371 Values.push_back(Value);
372 }
373
374 Die->AddValue(Attribute, Form, Value);
375}
376
377/// AddObjectLabel - Add an non-Dwarf label attribute data and value.
378///
379void DwarfDebug::AddObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
380 const std::string &Label) {
381 FoldingSetNodeID ID;
382 DIEObjectLabel::Profile(ID, Label);
383 void *Where;
384 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
385
386 if (!Value) {
387 Value = new DIEObjectLabel(Label);
388 ValuesSet.InsertNode(Value, Where);
389 Values.push_back(Value);
390 }
391
392 Die->AddValue(Attribute, Form, Value);
393}
394
395/// AddSectionOffset - Add a section offset label attribute data and value.
396///
397void DwarfDebug::AddSectionOffset(DIE *Die, unsigned Attribute, unsigned Form,
398 const DWLabel &Label, const DWLabel &Section,
399 bool isEH, bool useSet) {
400 FoldingSetNodeID ID;
401 DIESectionOffset::Profile(ID, Label, Section);
402 void *Where;
403 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
404
405 if (!Value) {
406 Value = new DIESectionOffset(Label, Section, isEH, useSet);
407 ValuesSet.InsertNode(Value, Where);
408 Values.push_back(Value);
409 }
410
411 Die->AddValue(Attribute, Form, Value);
412}
413
414/// AddDelta - Add a label delta attribute data and value.
415///
416void DwarfDebug::AddDelta(DIE *Die, unsigned Attribute, unsigned Form,
417 const DWLabel &Hi, const DWLabel &Lo) {
418 FoldingSetNodeID ID;
419 DIEDelta::Profile(ID, Hi, Lo);
420 void *Where;
421 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
422
423 if (!Value) {
424 Value = new DIEDelta(Hi, Lo);
425 ValuesSet.InsertNode(Value, Where);
426 Values.push_back(Value);
427 }
428
429 Die->AddValue(Attribute, Form, Value);
430}
431
432/// AddBlock - Add block data.
433///
434void DwarfDebug::AddBlock(DIE *Die, unsigned Attribute, unsigned Form,
435 DIEBlock *Block) {
436 Block->ComputeSize(TD);
437 FoldingSetNodeID ID;
438 Block->Profile(ID);
439 void *Where;
440 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
441
442 if (!Value) {
443 Value = Block;
444 ValuesSet.InsertNode(Value, Where);
445 Values.push_back(Value);
446 } else {
447 // Already exists, reuse the previous one.
448 delete Block;
449 Block = cast<DIEBlock>(Value);
450 }
451
452 Die->AddValue(Attribute, Block->BestForm(), Value);
453}
454
455/// AddSourceLine - Add location information to specified debug information
456/// entry.
457void DwarfDebug::AddSourceLine(DIE *Die, const DIVariable *V) {
458 // If there is no compile unit specified, don't add a line #.
459 if (V->getCompileUnit().isNull())
460 return;
461
462 unsigned Line = V->getLineNumber();
463 unsigned FileID = FindCompileUnit(V->getCompileUnit()).getID();
464 assert(FileID && "Invalid file id");
465 AddUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
466 AddUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
467}
468
469/// AddSourceLine - Add location information to specified debug information
470/// entry.
471void DwarfDebug::AddSourceLine(DIE *Die, const DIGlobal *G) {
472 // If there is no compile unit specified, don't add a line #.
473 if (G->getCompileUnit().isNull())
474 return;
475
476 unsigned Line = G->getLineNumber();
477 unsigned FileID = FindCompileUnit(G->getCompileUnit()).getID();
478 assert(FileID && "Invalid file id");
479 AddUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
480 AddUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
481}
482void DwarfDebug::AddSourceLine(DIE *Die, const DIType *Ty) {
483 // If there is no compile unit specified, don't add a line #.
484 DICompileUnit CU = Ty->getCompileUnit();
485 if (CU.isNull())
486 return;
487
488 unsigned Line = Ty->getLineNumber();
489 unsigned FileID = FindCompileUnit(CU).getID();
490 assert(FileID && "Invalid file id");
491 AddUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
492 AddUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
493}
494
495/// AddAddress - Add an address attribute to a die based on the location
496/// provided.
497void DwarfDebug::AddAddress(DIE *Die, unsigned Attribute,
498 const MachineLocation &Location) {
499 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
500 DIEBlock *Block = new DIEBlock();
501
502 if (Location.isReg()) {
503 if (Reg < 32) {
504 AddUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
505 } else {
506 AddUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx);
507 AddUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
508 }
509 } else {
510 if (Reg < 32) {
511 AddUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
512 } else {
513 AddUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
514 AddUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
515 }
516
517 AddUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
518 }
519
520 AddBlock(Die, Attribute, 0, Block);
521}
522
523/// AddType - Add a new type attribute to the specified entity.
524void DwarfDebug::AddType(CompileUnit *DW_Unit, DIE *Entity, DIType Ty) {
525 if (Ty.isNull())
526 return;
527
528 // Check for pre-existence.
529 DIEEntry *&Slot = DW_Unit->getDIEEntrySlotFor(Ty.getGV());
530
531 // If it exists then use the existing value.
532 if (Slot) {
533 Entity->AddValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Slot);
534 return;
535 }
536
537 // Set up proxy.
Bill Wendling995f80a2009-05-20 23:24:48 +0000538 Slot = CreateDIEEntry();
Bill Wendling0310d762009-05-15 09:23:25 +0000539
540 // Construct type.
541 DIE Buffer(dwarf::DW_TAG_base_type);
542 if (Ty.isBasicType(Ty.getTag()))
543 ConstructTypeDIE(DW_Unit, Buffer, DIBasicType(Ty.getGV()));
544 else if (Ty.isDerivedType(Ty.getTag()))
545 ConstructTypeDIE(DW_Unit, Buffer, DIDerivedType(Ty.getGV()));
546 else {
547 assert(Ty.isCompositeType(Ty.getTag()) && "Unknown kind of DIType");
548 ConstructTypeDIE(DW_Unit, Buffer, DICompositeType(Ty.getGV()));
549 }
550
551 // Add debug information entry to entity and appropriate context.
552 DIE *Die = NULL;
553 DIDescriptor Context = Ty.getContext();
554 if (!Context.isNull())
555 Die = DW_Unit->getDieMapSlotFor(Context.getGV());
556
557 if (Die) {
558 DIE *Child = new DIE(Buffer);
559 Die->AddChild(Child);
560 Buffer.Detach();
561 SetDIEEntry(Slot, Child);
562 } else {
563 Die = DW_Unit->AddDie(Buffer);
564 SetDIEEntry(Slot, Die);
565 }
566
567 Entity->AddValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Slot);
568}
569
570/// ConstructTypeDIE - Construct basic type die from DIBasicType.
571void DwarfDebug::ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
572 DIBasicType BTy) {
573 // Get core information.
574 std::string Name;
575 BTy.getName(Name);
576 Buffer.setTag(dwarf::DW_TAG_base_type);
577 AddUInt(&Buffer, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
578 BTy.getEncoding());
579
580 // Add name if not anonymous or intermediate type.
581 if (!Name.empty())
582 AddString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
583 uint64_t Size = BTy.getSizeInBits() >> 3;
584 AddUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
585}
586
587/// ConstructTypeDIE - Construct derived type die from DIDerivedType.
588void DwarfDebug::ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
589 DIDerivedType DTy) {
590 // Get core information.
591 std::string Name;
592 DTy.getName(Name);
593 uint64_t Size = DTy.getSizeInBits() >> 3;
594 unsigned Tag = DTy.getTag();
595
596 // FIXME - Workaround for templates.
597 if (Tag == dwarf::DW_TAG_inheritance) Tag = dwarf::DW_TAG_reference_type;
598
599 Buffer.setTag(Tag);
600
601 // Map to main type, void will not have a type.
602 DIType FromTy = DTy.getTypeDerivedFrom();
603 AddType(DW_Unit, &Buffer, FromTy);
604
605 // Add name if not anonymous or intermediate type.
606 if (!Name.empty())
607 AddString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
608
609 // Add size if non-zero (derived types might be zero-sized.)
610 if (Size)
611 AddUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
612
613 // Add source line info if available and TyDesc is not a forward declaration.
614 if (!DTy.isForwardDecl())
615 AddSourceLine(&Buffer, &DTy);
616}
617
618/// ConstructTypeDIE - Construct type DIE from DICompositeType.
619void DwarfDebug::ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
620 DICompositeType CTy) {
621 // Get core information.
622 std::string Name;
623 CTy.getName(Name);
624
625 uint64_t Size = CTy.getSizeInBits() >> 3;
626 unsigned Tag = CTy.getTag();
627 Buffer.setTag(Tag);
628
629 switch (Tag) {
630 case dwarf::DW_TAG_vector_type:
631 case dwarf::DW_TAG_array_type:
632 ConstructArrayTypeDIE(DW_Unit, Buffer, &CTy);
633 break;
634 case dwarf::DW_TAG_enumeration_type: {
635 DIArray Elements = CTy.getTypeArray();
636
637 // Add enumerators to enumeration type.
638 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
639 DIE *ElemDie = NULL;
640 DIEnumerator Enum(Elements.getElement(i).getGV());
641 ElemDie = ConstructEnumTypeDIE(DW_Unit, &Enum);
642 Buffer.AddChild(ElemDie);
643 }
644 }
645 break;
646 case dwarf::DW_TAG_subroutine_type: {
647 // Add return type.
648 DIArray Elements = CTy.getTypeArray();
649 DIDescriptor RTy = Elements.getElement(0);
650 AddType(DW_Unit, &Buffer, DIType(RTy.getGV()));
651
652 // Add prototype flag.
653 AddUInt(&Buffer, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
654
655 // Add arguments.
656 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) {
657 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
658 DIDescriptor Ty = Elements.getElement(i);
659 AddType(DW_Unit, Arg, DIType(Ty.getGV()));
660 Buffer.AddChild(Arg);
661 }
662 }
663 break;
664 case dwarf::DW_TAG_structure_type:
665 case dwarf::DW_TAG_union_type:
666 case dwarf::DW_TAG_class_type: {
667 // Add elements to structure type.
668 DIArray Elements = CTy.getTypeArray();
669
670 // A forward struct declared type may not have elements available.
671 if (Elements.isNull())
672 break;
673
674 // Add elements to structure type.
675 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
676 DIDescriptor Element = Elements.getElement(i);
677 DIE *ElemDie = NULL;
678 if (Element.getTag() == dwarf::DW_TAG_subprogram)
679 ElemDie = CreateSubprogramDIE(DW_Unit,
680 DISubprogram(Element.getGV()));
Bill Wendling0310d762009-05-15 09:23:25 +0000681 else
682 ElemDie = CreateMemberDIE(DW_Unit,
683 DIDerivedType(Element.getGV()));
684 Buffer.AddChild(ElemDie);
685 }
686
687 // FIXME: We'd like an API to register additional attributes for the
688 // frontend to use while synthesizing, and then we'd use that api in clang
689 // instead of this.
690 if (Name == "__block_literal_generic")
691 AddUInt(&Buffer, dwarf::DW_AT_APPLE_block, dwarf::DW_FORM_flag, 1);
692
693 unsigned RLang = CTy.getRunTimeLang();
694 if (RLang)
695 AddUInt(&Buffer, dwarf::DW_AT_APPLE_runtime_class,
696 dwarf::DW_FORM_data1, RLang);
697 break;
698 }
699 default:
700 break;
701 }
702
703 // Add name if not anonymous or intermediate type.
704 if (!Name.empty())
705 AddString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
706
707 if (Tag == dwarf::DW_TAG_enumeration_type ||
708 Tag == dwarf::DW_TAG_structure_type || Tag == dwarf::DW_TAG_union_type) {
709 // Add size if non-zero (derived types might be zero-sized.)
710 if (Size)
711 AddUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
712 else {
713 // Add zero size if it is not a forward declaration.
714 if (CTy.isForwardDecl())
715 AddUInt(&Buffer, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
716 else
717 AddUInt(&Buffer, dwarf::DW_AT_byte_size, 0, 0);
718 }
719
720 // Add source line info if available.
721 if (!CTy.isForwardDecl())
722 AddSourceLine(&Buffer, &CTy);
723 }
724}
725
726/// ConstructSubrangeDIE - Construct subrange DIE from DISubrange.
727void DwarfDebug::ConstructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy){
728 int64_t L = SR.getLo();
729 int64_t H = SR.getHi();
730 DIE *DW_Subrange = new DIE(dwarf::DW_TAG_subrange_type);
731
732 if (L != H) {
733 AddDIEEntry(DW_Subrange, dwarf::DW_AT_type, dwarf::DW_FORM_ref4, IndexTy);
734 if (L)
735 AddSInt(DW_Subrange, dwarf::DW_AT_lower_bound, 0, L);
736 AddSInt(DW_Subrange, dwarf::DW_AT_upper_bound, 0, H);
737 }
738
739 Buffer.AddChild(DW_Subrange);
740}
741
742/// ConstructArrayTypeDIE - Construct array type DIE from DICompositeType.
743void DwarfDebug::ConstructArrayTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
744 DICompositeType *CTy) {
745 Buffer.setTag(dwarf::DW_TAG_array_type);
746 if (CTy->getTag() == dwarf::DW_TAG_vector_type)
747 AddUInt(&Buffer, dwarf::DW_AT_GNU_vector, dwarf::DW_FORM_flag, 1);
748
749 // Emit derived type.
750 AddType(DW_Unit, &Buffer, CTy->getTypeDerivedFrom());
751 DIArray Elements = CTy->getTypeArray();
752
753 // Construct an anonymous type for index type.
754 DIE IdxBuffer(dwarf::DW_TAG_base_type);
755 AddUInt(&IdxBuffer, dwarf::DW_AT_byte_size, 0, sizeof(int32_t));
756 AddUInt(&IdxBuffer, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
757 dwarf::DW_ATE_signed);
758 DIE *IndexTy = DW_Unit->AddDie(IdxBuffer);
759
760 // Add subranges to array type.
761 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
762 DIDescriptor Element = Elements.getElement(i);
763 if (Element.getTag() == dwarf::DW_TAG_subrange_type)
764 ConstructSubrangeDIE(Buffer, DISubrange(Element.getGV()), IndexTy);
765 }
766}
767
768/// ConstructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
769DIE *DwarfDebug::ConstructEnumTypeDIE(CompileUnit *DW_Unit, DIEnumerator *ETy) {
770 DIE *Enumerator = new DIE(dwarf::DW_TAG_enumerator);
771 std::string Name;
772 ETy->getName(Name);
773 AddString(Enumerator, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
774 int64_t Value = ETy->getEnumValue();
775 AddSInt(Enumerator, dwarf::DW_AT_const_value, dwarf::DW_FORM_sdata, Value);
776 return Enumerator;
777}
778
779/// CreateGlobalVariableDIE - Create new DIE using GV.
780DIE *DwarfDebug::CreateGlobalVariableDIE(CompileUnit *DW_Unit,
781 const DIGlobalVariable &GV) {
782 DIE *GVDie = new DIE(dwarf::DW_TAG_variable);
783 std::string Name;
784 GV.getDisplayName(Name);
785 AddString(GVDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
786 std::string LinkageName;
787 GV.getLinkageName(LinkageName);
Devang Patel53cb17d2009-07-16 01:01:22 +0000788 if (!LinkageName.empty()) {
789 // Skip special LLVM prefix that is used to inform the asm printer to not emit
790 // usual symbol prefix before the symbol name. This happens for Objective-C
791 // symbol names and symbol whose name is replaced using GCC's __asm__ attribute.
792 if (LinkageName[0] == 1)
793 LinkageName = &LinkageName[1];
Bill Wendling0310d762009-05-15 09:23:25 +0000794 AddString(GVDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
Devang Patel1a8d2d22009-07-14 00:55:28 +0000795 LinkageName);
Devang Patel53cb17d2009-07-16 01:01:22 +0000796 }
797 AddType(DW_Unit, GVDie, GV.getType());
Bill Wendling0310d762009-05-15 09:23:25 +0000798 if (!GV.isLocalToUnit())
799 AddUInt(GVDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
800 AddSourceLine(GVDie, &GV);
801 return GVDie;
802}
803
804/// CreateMemberDIE - Create new member DIE.
805DIE *DwarfDebug::CreateMemberDIE(CompileUnit *DW_Unit, const DIDerivedType &DT){
806 DIE *MemberDie = new DIE(DT.getTag());
807 std::string Name;
808 DT.getName(Name);
809 if (!Name.empty())
810 AddString(MemberDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
811
812 AddType(DW_Unit, MemberDie, DT.getTypeDerivedFrom());
813
814 AddSourceLine(MemberDie, &DT);
815
816 uint64_t Size = DT.getSizeInBits();
817 uint64_t FieldSize = DT.getOriginalTypeSize();
818
819 if (Size != FieldSize) {
820 // Handle bitfield.
821 AddUInt(MemberDie, dwarf::DW_AT_byte_size, 0, DT.getOriginalTypeSize()>>3);
822 AddUInt(MemberDie, dwarf::DW_AT_bit_size, 0, DT.getSizeInBits());
823
824 uint64_t Offset = DT.getOffsetInBits();
825 uint64_t FieldOffset = Offset;
826 uint64_t AlignMask = ~(DT.getAlignInBits() - 1);
827 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
828 FieldOffset = (HiMark - FieldSize);
829 Offset -= FieldOffset;
830
831 // Maybe we need to work from the other end.
832 if (TD->isLittleEndian()) Offset = FieldSize - (Offset + Size);
833 AddUInt(MemberDie, dwarf::DW_AT_bit_offset, 0, Offset);
834 }
835
836 DIEBlock *Block = new DIEBlock();
837 AddUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
838 AddUInt(Block, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits() >> 3);
839 AddBlock(MemberDie, dwarf::DW_AT_data_member_location, 0, Block);
840
841 if (DT.isProtected())
842 AddUInt(MemberDie, dwarf::DW_AT_accessibility, 0,
843 dwarf::DW_ACCESS_protected);
844 else if (DT.isPrivate())
845 AddUInt(MemberDie, dwarf::DW_AT_accessibility, 0,
846 dwarf::DW_ACCESS_private);
847
848 return MemberDie;
849}
850
851/// CreateSubprogramDIE - Create new DIE using SP.
852DIE *DwarfDebug::CreateSubprogramDIE(CompileUnit *DW_Unit,
853 const DISubprogram &SP,
Bill Wendling6679ee42009-05-18 22:02:36 +0000854 bool IsConstructor,
855 bool IsInlined) {
Bill Wendling0310d762009-05-15 09:23:25 +0000856 DIE *SPDie = new DIE(dwarf::DW_TAG_subprogram);
857
858 std::string Name;
859 SP.getName(Name);
860 AddString(SPDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
861
862 std::string LinkageName;
863 SP.getLinkageName(LinkageName);
Devang Patel53cb17d2009-07-16 01:01:22 +0000864 if (!LinkageName.empty()) {
865 // Skip special LLVM prefix that is used to inform the asm printer to not emit
866 // usual symbol prefix before the symbol name. This happens for Objective-C
867 // symbol names and symbol whose name is replaced using GCC's __asm__ attribute.
868 if (LinkageName[0] == 1)
869 LinkageName = &LinkageName[1];
Bill Wendling0310d762009-05-15 09:23:25 +0000870 AddString(SPDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
Devang Patel1a8d2d22009-07-14 00:55:28 +0000871 LinkageName);
Devang Patel53cb17d2009-07-16 01:01:22 +0000872 }
Bill Wendling0310d762009-05-15 09:23:25 +0000873 AddSourceLine(SPDie, &SP);
874
875 DICompositeType SPTy = SP.getType();
876 DIArray Args = SPTy.getTypeArray();
877
878 // Add prototyped tag, if C or ObjC.
879 unsigned Lang = SP.getCompileUnit().getLanguage();
880 if (Lang == dwarf::DW_LANG_C99 || Lang == dwarf::DW_LANG_C89 ||
881 Lang == dwarf::DW_LANG_ObjC)
882 AddUInt(SPDie, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
883
884 // Add Return Type.
885 unsigned SPTag = SPTy.getTag();
886 if (!IsConstructor) {
887 if (Args.isNull() || SPTag != dwarf::DW_TAG_subroutine_type)
888 AddType(DW_Unit, SPDie, SPTy);
889 else
890 AddType(DW_Unit, SPDie, DIType(Args.getElement(0).getGV()));
891 }
892
893 if (!SP.isDefinition()) {
894 AddUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
895
896 // Add arguments. Do not add arguments for subprogram definition. They will
897 // be handled through RecordVariable.
898 if (SPTag == dwarf::DW_TAG_subroutine_type)
899 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
900 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
901 AddType(DW_Unit, Arg, DIType(Args.getElement(i).getGV()));
902 AddUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); // ??
903 SPDie->AddChild(Arg);
904 }
905 }
906
Bill Wendling6679ee42009-05-18 22:02:36 +0000907 if (!SP.isLocalToUnit() && !IsInlined)
Bill Wendling0310d762009-05-15 09:23:25 +0000908 AddUInt(SPDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
909
910 // DW_TAG_inlined_subroutine may refer to this DIE.
911 DIE *&Slot = DW_Unit->getDieMapSlotFor(SP.getGV());
912 Slot = SPDie;
913 return SPDie;
914}
915
916/// FindCompileUnit - Get the compile unit for the given descriptor.
917///
918CompileUnit &DwarfDebug::FindCompileUnit(DICompileUnit Unit) const {
919 DenseMap<Value *, CompileUnit *>::const_iterator I =
920 CompileUnitMap.find(Unit.getGV());
921 assert(I != CompileUnitMap.end() && "Missing compile unit.");
922 return *I->second;
923}
924
Bill Wendling995f80a2009-05-20 23:24:48 +0000925/// CreateDbgScopeVariable - Create a new scope variable.
Bill Wendling0310d762009-05-15 09:23:25 +0000926///
Bill Wendling995f80a2009-05-20 23:24:48 +0000927DIE *DwarfDebug::CreateDbgScopeVariable(DbgVariable *DV, CompileUnit *Unit) {
Bill Wendling0310d762009-05-15 09:23:25 +0000928 // Get the descriptor.
929 const DIVariable &VD = DV->getVariable();
930
931 // Translate tag to proper Dwarf tag. The result variable is dropped for
932 // now.
933 unsigned Tag;
934 switch (VD.getTag()) {
935 case dwarf::DW_TAG_return_variable:
936 return NULL;
937 case dwarf::DW_TAG_arg_variable:
938 Tag = dwarf::DW_TAG_formal_parameter;
939 break;
940 case dwarf::DW_TAG_auto_variable: // fall thru
941 default:
942 Tag = dwarf::DW_TAG_variable;
943 break;
944 }
945
946 // Define variable debug information entry.
947 DIE *VariableDie = new DIE(Tag);
948 std::string Name;
949 VD.getName(Name);
950 AddString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
951
952 // Add source line info if available.
953 AddSourceLine(VariableDie, &VD);
954
955 // Add variable type.
956 AddType(Unit, VariableDie, VD.getType());
957
958 // Add variable address.
Bill Wendling1180c782009-05-18 23:08:55 +0000959 if (!DV->isInlinedFnVar()) {
960 // Variables for abstract instances of inlined functions don't get a
961 // location.
962 MachineLocation Location;
963 Location.set(RI->getFrameRegister(*MF),
964 RI->getFrameIndexOffset(*MF, DV->getFrameIndex()));
965 AddAddress(VariableDie, dwarf::DW_AT_location, Location);
966 }
Bill Wendling0310d762009-05-15 09:23:25 +0000967
968 return VariableDie;
969}
970
971/// getOrCreateScope - Returns the scope associated with the given descriptor.
972///
973DbgScope *DwarfDebug::getOrCreateScope(GlobalVariable *V) {
974 DbgScope *&Slot = DbgScopeMap[V];
975 if (Slot) return Slot;
976
977 DbgScope *Parent = NULL;
978 DIBlock Block(V);
979
Bill Wendling8fff19b2009-06-01 20:18:46 +0000980 // Don't create a new scope if we already created one for an inlined function.
981 DenseMap<const GlobalVariable *, DbgScope *>::iterator
982 II = AbstractInstanceRootMap.find(V);
983 if (II != AbstractInstanceRootMap.end())
984 return LexicalScopeStack.back();
985
Bill Wendling0310d762009-05-15 09:23:25 +0000986 if (!Block.isNull()) {
987 DIDescriptor ParentDesc = Block.getContext();
988 Parent =
989 ParentDesc.isNull() ? NULL : getOrCreateScope(ParentDesc.getGV());
990 }
991
992 Slot = new DbgScope(Parent, DIDescriptor(V));
993
994 if (Parent)
995 Parent->AddScope(Slot);
996 else
997 // First function is top level function.
998 FunctionDbgScope = Slot;
999
1000 return Slot;
1001}
1002
1003/// ConstructDbgScope - Construct the components of a scope.
1004///
1005void DwarfDebug::ConstructDbgScope(DbgScope *ParentScope,
1006 unsigned ParentStartID,
1007 unsigned ParentEndID,
1008 DIE *ParentDie, CompileUnit *Unit) {
1009 // Add variables to scope.
1010 SmallVector<DbgVariable *, 8> &Variables = ParentScope->getVariables();
1011 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
Bill Wendling995f80a2009-05-20 23:24:48 +00001012 DIE *VariableDie = CreateDbgScopeVariable(Variables[i], Unit);
Bill Wendling0310d762009-05-15 09:23:25 +00001013 if (VariableDie) ParentDie->AddChild(VariableDie);
1014 }
1015
1016 // Add concrete instances to scope.
1017 SmallVector<DbgConcreteScope *, 8> &ConcreteInsts =
1018 ParentScope->getConcreteInsts();
1019 for (unsigned i = 0, N = ConcreteInsts.size(); i < N; ++i) {
1020 DbgConcreteScope *ConcreteInst = ConcreteInsts[i];
1021 DIE *Die = ConcreteInst->getDie();
1022
1023 unsigned StartID = ConcreteInst->getStartLabelID();
1024 unsigned EndID = ConcreteInst->getEndLabelID();
1025
1026 // Add the scope bounds.
1027 if (StartID)
1028 AddLabel(Die, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
1029 DWLabel("label", StartID));
1030 else
1031 AddLabel(Die, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
1032 DWLabel("func_begin", SubprogramCount));
1033
1034 if (EndID)
1035 AddLabel(Die, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
1036 DWLabel("label", EndID));
1037 else
1038 AddLabel(Die, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
1039 DWLabel("func_end", SubprogramCount));
1040
1041 ParentDie->AddChild(Die);
1042 }
1043
1044 // Add nested scopes.
1045 SmallVector<DbgScope *, 4> &Scopes = ParentScope->getScopes();
1046 for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
1047 // Define the Scope debug information entry.
1048 DbgScope *Scope = Scopes[j];
1049
1050 unsigned StartID = MMI->MappedLabel(Scope->getStartLabelID());
1051 unsigned EndID = MMI->MappedLabel(Scope->getEndLabelID());
1052
1053 // Ignore empty scopes.
1054 if (StartID == EndID && StartID != 0) continue;
1055
1056 // Do not ignore inlined scopes even if they don't have any variables or
1057 // scopes.
1058 if (Scope->getScopes().empty() && Scope->getVariables().empty() &&
1059 Scope->getConcreteInsts().empty())
1060 continue;
1061
1062 if (StartID == ParentStartID && EndID == ParentEndID) {
1063 // Just add stuff to the parent scope.
1064 ConstructDbgScope(Scope, ParentStartID, ParentEndID, ParentDie, Unit);
1065 } else {
1066 DIE *ScopeDie = new DIE(dwarf::DW_TAG_lexical_block);
1067
1068 // Add the scope bounds.
1069 if (StartID)
1070 AddLabel(ScopeDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
1071 DWLabel("label", StartID));
1072 else
1073 AddLabel(ScopeDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
1074 DWLabel("func_begin", SubprogramCount));
1075
1076 if (EndID)
1077 AddLabel(ScopeDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
1078 DWLabel("label", EndID));
1079 else
1080 AddLabel(ScopeDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
1081 DWLabel("func_end", SubprogramCount));
1082
1083 // Add the scope's contents.
1084 ConstructDbgScope(Scope, StartID, EndID, ScopeDie, Unit);
1085 ParentDie->AddChild(ScopeDie);
1086 }
1087 }
1088}
1089
1090/// ConstructFunctionDbgScope - Construct the scope for the subprogram.
1091///
Bill Wendling17956162009-05-20 23:28:48 +00001092void DwarfDebug::ConstructFunctionDbgScope(DbgScope *RootScope,
1093 bool AbstractScope) {
Bill Wendling0310d762009-05-15 09:23:25 +00001094 // Exit if there is no root scope.
1095 if (!RootScope) return;
1096 DIDescriptor Desc = RootScope->getDesc();
1097 if (Desc.isNull())
1098 return;
1099
1100 // Get the subprogram debug information entry.
1101 DISubprogram SPD(Desc.getGV());
1102
Bill Wendling0310d762009-05-15 09:23:25 +00001103 // Get the subprogram die.
Devang Patel1dbc7712009-06-29 20:45:18 +00001104 DIE *SPDie = ModuleCU->getDieMapSlotFor(SPD.getGV());
Bill Wendling0310d762009-05-15 09:23:25 +00001105 assert(SPDie && "Missing subprogram descriptor");
1106
Bill Wendling17956162009-05-20 23:28:48 +00001107 if (!AbstractScope) {
1108 // Add the function bounds.
1109 AddLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
1110 DWLabel("func_begin", SubprogramCount));
1111 AddLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
1112 DWLabel("func_end", SubprogramCount));
1113 MachineLocation Location(RI->getFrameRegister(*MF));
1114 AddAddress(SPDie, dwarf::DW_AT_frame_base, Location);
1115 }
Bill Wendling0310d762009-05-15 09:23:25 +00001116
Devang Patel1dbc7712009-06-29 20:45:18 +00001117 ConstructDbgScope(RootScope, 0, 0, SPDie, ModuleCU);
Bill Wendling0310d762009-05-15 09:23:25 +00001118}
1119
Bill Wendling0310d762009-05-15 09:23:25 +00001120/// ConstructDefaultDbgScope - Construct a default scope for the subprogram.
1121///
1122void DwarfDebug::ConstructDefaultDbgScope(MachineFunction *MF) {
1123 const char *FnName = MF->getFunction()->getNameStart();
Devang Patel1dbc7712009-06-29 20:45:18 +00001124 StringMap<DIE*> &Globals = ModuleCU->getGlobals();
Devang Patel70f44262009-06-29 20:38:13 +00001125 StringMap<DIE*>::iterator GI = Globals.find(FnName);
1126 if (GI != Globals.end()) {
1127 DIE *SPDie = GI->second;
1128
1129 // Add the function bounds.
1130 AddLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
1131 DWLabel("func_begin", SubprogramCount));
1132 AddLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
1133 DWLabel("func_end", SubprogramCount));
1134
1135 MachineLocation Location(RI->getFrameRegister(*MF));
1136 AddAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Bill Wendling0310d762009-05-15 09:23:25 +00001137 }
Bill Wendling0310d762009-05-15 09:23:25 +00001138}
1139
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001140/// GetOrCreateSourceID - Look up the source id with the given directory and
1141/// source file names. If none currently exists, create a new id and insert it
1142/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
1143/// maps as well.
1144unsigned DwarfDebug::GetOrCreateSourceID(const std::string &DirName,
1145 const std::string &FileName) {
1146 unsigned DId;
1147 StringMap<unsigned>::iterator DI = DirectoryIdMap.find(DirName);
1148 if (DI != DirectoryIdMap.end()) {
1149 DId = DI->getValue();
1150 } else {
1151 DId = DirectoryNames.size() + 1;
1152 DirectoryIdMap[DirName] = DId;
1153 DirectoryNames.push_back(DirName);
1154 }
1155
1156 unsigned FId;
1157 StringMap<unsigned>::iterator FI = SourceFileIdMap.find(FileName);
1158 if (FI != SourceFileIdMap.end()) {
1159 FId = FI->getValue();
1160 } else {
1161 FId = SourceFileNames.size() + 1;
1162 SourceFileIdMap[FileName] = FId;
1163 SourceFileNames.push_back(FileName);
1164 }
1165
1166 DenseMap<std::pair<unsigned, unsigned>, unsigned>::iterator SI =
1167 SourceIdMap.find(std::make_pair(DId, FId));
1168 if (SI != SourceIdMap.end())
1169 return SI->second;
1170
1171 unsigned SrcId = SourceIds.size() + 1; // DW_AT_decl_file cannot be 0.
1172 SourceIdMap[std::make_pair(DId, FId)] = SrcId;
1173 SourceIds.push_back(std::make_pair(DId, FId));
1174
1175 return SrcId;
1176}
1177
1178void DwarfDebug::ConstructCompileUnit(GlobalVariable *GV) {
1179 DICompileUnit DIUnit(GV);
1180 std::string Dir, FN, Prod;
1181 unsigned ID = GetOrCreateSourceID(DIUnit.getDirectory(Dir),
1182 DIUnit.getFilename(FN));
1183
1184 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
1185 AddSectionOffset(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
1186 DWLabel("section_line", 0), DWLabel("section_line", 0),
1187 false);
1188 AddString(Die, dwarf::DW_AT_producer, dwarf::DW_FORM_string,
1189 DIUnit.getProducer(Prod));
1190 AddUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data1,
1191 DIUnit.getLanguage());
1192 AddString(Die, dwarf::DW_AT_name, dwarf::DW_FORM_string, FN);
1193
1194 if (!Dir.empty())
1195 AddString(Die, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string, Dir);
1196 if (DIUnit.isOptimized())
1197 AddUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
1198
1199 std::string Flags;
1200 DIUnit.getFlags(Flags);
1201 if (!Flags.empty())
1202 AddString(Die, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string, Flags);
1203
1204 unsigned RVer = DIUnit.getRunTimeVersion();
1205 if (RVer)
1206 AddUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
1207 dwarf::DW_FORM_data1, RVer);
1208
1209 CompileUnit *Unit = new CompileUnit(ID, Die);
Devang Patel1dbc7712009-06-29 20:45:18 +00001210 if (!ModuleCU && DIUnit.isMain()) {
Devang Patel70f44262009-06-29 20:38:13 +00001211 // Use first compile unit marked as isMain as the compile unit
1212 // for this module.
Devang Patel1dbc7712009-06-29 20:45:18 +00001213 ModuleCU = Unit;
Devang Patel70f44262009-06-29 20:38:13 +00001214 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001215
1216 CompileUnitMap[DIUnit.getGV()] = Unit;
1217 CompileUnits.push_back(Unit);
1218}
1219
Devang Patel13e16b62009-06-26 01:49:18 +00001220void DwarfDebug::ConstructGlobalVariableDIE(GlobalVariable *GV) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001221 DIGlobalVariable DI_GV(GV);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001222
1223 // Check for pre-existence.
Devang Patel1dbc7712009-06-29 20:45:18 +00001224 DIE *&Slot = ModuleCU->getDieMapSlotFor(DI_GV.getGV());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001225 if (Slot)
Devang Patel13e16b62009-06-26 01:49:18 +00001226 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001227
Devang Patel1dbc7712009-06-29 20:45:18 +00001228 DIE *VariableDie = CreateGlobalVariableDIE(ModuleCU, DI_GV);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001229
1230 // Add address.
1231 DIEBlock *Block = new DIEBlock();
1232 AddUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
1233 std::string GLN;
1234 AddObjectLabel(Block, 0, dwarf::DW_FORM_udata,
1235 Asm->getGlobalLinkName(DI_GV.getGlobal(), GLN));
1236 AddBlock(VariableDie, dwarf::DW_AT_location, 0, Block);
1237
1238 // Add to map.
1239 Slot = VariableDie;
1240
1241 // Add to context owner.
Devang Patel1dbc7712009-06-29 20:45:18 +00001242 ModuleCU->getDie()->AddChild(VariableDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001243
1244 // Expose as global. FIXME - need to check external flag.
1245 std::string Name;
Devang Patel1dbc7712009-06-29 20:45:18 +00001246 ModuleCU->AddGlobal(DI_GV.getName(Name), VariableDie);
Devang Patel13e16b62009-06-26 01:49:18 +00001247 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001248}
1249
Devang Patel13e16b62009-06-26 01:49:18 +00001250void DwarfDebug::ConstructSubprogram(GlobalVariable *GV) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001251 DISubprogram SP(GV);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001252
1253 // Check for pre-existence.
Devang Patel1dbc7712009-06-29 20:45:18 +00001254 DIE *&Slot = ModuleCU->getDieMapSlotFor(GV);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001255 if (Slot)
Devang Patel13e16b62009-06-26 01:49:18 +00001256 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001257
1258 if (!SP.isDefinition())
1259 // This is a method declaration which will be handled while constructing
1260 // class type.
Devang Patel13e16b62009-06-26 01:49:18 +00001261 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001262
Devang Patel1dbc7712009-06-29 20:45:18 +00001263 DIE *SubprogramDie = CreateSubprogramDIE(ModuleCU, SP);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001264
1265 // Add to map.
1266 Slot = SubprogramDie;
1267
1268 // Add to context owner.
Devang Patel1dbc7712009-06-29 20:45:18 +00001269 ModuleCU->getDie()->AddChild(SubprogramDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001270
1271 // Expose as global.
1272 std::string Name;
Devang Patel1dbc7712009-06-29 20:45:18 +00001273 ModuleCU->AddGlobal(SP.getName(Name), SubprogramDie);
Devang Patel13e16b62009-06-26 01:49:18 +00001274 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001275}
1276
Devang Patel208622d2009-06-25 22:36:02 +00001277 /// BeginModule - Emit all Dwarf sections that should come prior to the
1278 /// content. Create global DIEs and emit initial debug info sections.
1279 /// This is inovked by the target AsmPrinter.
1280void DwarfDebug::BeginModule(Module *M, MachineModuleInfo *mmi) {
1281 this->M = M;
1282
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001283 if (TimePassesIsEnabled)
1284 DebugTimer->startTimer();
1285
Devang Patel13e16b62009-06-26 01:49:18 +00001286 SmallVector<GlobalVariable *, 2> CUs;
1287 SmallVector<GlobalVariable *, 4> GVs;
1288 SmallVector<GlobalVariable *, 4> SPs;
1289 CollectDebugInfoAnchors(*M, CUs, GVs, SPs);
1290
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001291 // Create all the compile unit DIEs.
Devang Patel13e16b62009-06-26 01:49:18 +00001292 for (SmallVector<GlobalVariable *, 2>::iterator I = CUs.begin(),
1293 E = CUs.end(); I != E; ++I)
1294 ConstructCompileUnit(*I);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001295
1296 if (CompileUnits.empty()) {
1297 if (TimePassesIsEnabled)
1298 DebugTimer->stopTimer();
1299
1300 return;
1301 }
1302
Devang Patel70f44262009-06-29 20:38:13 +00001303 // If main compile unit for this module is not seen than randomly
1304 // select first compile unit.
Devang Patel1dbc7712009-06-29 20:45:18 +00001305 if (!ModuleCU)
1306 ModuleCU = CompileUnits[0];
Devang Patel70f44262009-06-29 20:38:13 +00001307
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001308 // If there is not any debug info available for any global variables and any
1309 // subprograms then there is not any debug info to emit.
Devang Patel13e16b62009-06-26 01:49:18 +00001310 if (GVs.empty() && SPs.empty()) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001311 if (TimePassesIsEnabled)
1312 DebugTimer->stopTimer();
1313
1314 return;
1315 }
1316
Devang Patel13e16b62009-06-26 01:49:18 +00001317 // Create DIEs for each of the externally visible global variables.
1318 for (SmallVector<GlobalVariable *, 4>::iterator I = GVs.begin(),
1319 E = GVs.end(); I != E; ++I)
1320 ConstructGlobalVariableDIE(*I);
1321
1322 // Create DIEs for each of the externally visible subprograms.
1323 for (SmallVector<GlobalVariable *, 4>::iterator I = SPs.begin(),
1324 E = SPs.end(); I != E; ++I)
1325 ConstructSubprogram(*I);
1326
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001327 MMI = mmi;
1328 shouldEmit = true;
1329 MMI->setDebugInfoAvailability(true);
1330
1331 // Prime section data.
1332 SectionMap.insert(TAI->getTextSection());
1333
1334 // Print out .file directives to specify files for .loc directives. These are
1335 // printed out early so that they precede any .loc directives.
1336 if (TAI->hasDotLocAndDotFile()) {
1337 for (unsigned i = 1, e = getNumSourceIds()+1; i != e; ++i) {
1338 // Remember source id starts at 1.
1339 std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(i);
1340 sys::Path FullPath(getSourceDirectoryName(Id.first));
1341 bool AppendOk =
1342 FullPath.appendComponent(getSourceFileName(Id.second));
1343 assert(AppendOk && "Could not append filename to directory!");
1344 AppendOk = false;
1345 Asm->EmitFile(i, FullPath.toString());
1346 Asm->EOL();
1347 }
1348 }
1349
1350 // Emit initial sections
1351 EmitInitial();
1352
1353 if (TimePassesIsEnabled)
1354 DebugTimer->stopTimer();
1355}
1356
1357/// EndModule - Emit all Dwarf sections that should come after the content.
1358///
1359void DwarfDebug::EndModule() {
1360 if (!ShouldEmitDwarfDebug())
1361 return;
1362
1363 if (TimePassesIsEnabled)
1364 DebugTimer->startTimer();
1365
1366 // Standard sections final addresses.
1367 Asm->SwitchToSection(TAI->getTextSection());
1368 EmitLabel("text_end", 0);
1369 Asm->SwitchToSection(TAI->getDataSection());
1370 EmitLabel("data_end", 0);
1371
1372 // End text sections.
1373 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
1374 Asm->SwitchToSection(SectionMap[i]);
1375 EmitLabel("section_end", i);
1376 }
1377
1378 // Emit common frame information.
1379 EmitCommonDebugFrame();
1380
1381 // Emit function debug frame information
1382 for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(),
1383 E = DebugFrames.end(); I != E; ++I)
1384 EmitFunctionDebugFrame(*I);
1385
1386 // Compute DIE offsets and sizes.
1387 SizeAndOffsets();
1388
1389 // Emit all the DIEs into a debug info section
1390 EmitDebugInfo();
1391
1392 // Corresponding abbreviations into a abbrev section.
1393 EmitAbbreviations();
1394
1395 // Emit source line correspondence into a debug line section.
1396 EmitDebugLines();
1397
1398 // Emit info into a debug pubnames section.
1399 EmitDebugPubNames();
1400
1401 // Emit info into a debug str section.
1402 EmitDebugStr();
1403
1404 // Emit info into a debug loc section.
1405 EmitDebugLoc();
1406
1407 // Emit info into a debug aranges section.
1408 EmitDebugARanges();
1409
1410 // Emit info into a debug ranges section.
1411 EmitDebugRanges();
1412
1413 // Emit info into a debug macinfo section.
1414 EmitDebugMacInfo();
1415
1416 // Emit inline info.
1417 EmitDebugInlineInfo();
1418
1419 if (TimePassesIsEnabled)
1420 DebugTimer->stopTimer();
1421}
1422
1423/// BeginFunction - Gather pre-function debug information. Assumes being
1424/// emitted immediately after the function entry point.
1425void DwarfDebug::BeginFunction(MachineFunction *MF) {
1426 this->MF = MF;
1427
1428 if (!ShouldEmitDwarfDebug()) return;
1429
1430 if (TimePassesIsEnabled)
1431 DebugTimer->startTimer();
1432
1433 // Begin accumulating function debug information.
1434 MMI->BeginFunction(MF);
1435
1436 // Assumes in correct section after the entry point.
1437 EmitLabel("func_begin", ++SubprogramCount);
1438
1439 // Emit label for the implicitly defined dbg.stoppoint at the start of the
1440 // function.
1441 DebugLoc FDL = MF->getDefaultDebugLoc();
1442 if (!FDL.isUnknown()) {
1443 DebugLocTuple DLT = MF->getDebugLocTuple(FDL);
1444 unsigned LabelID = RecordSourceLine(DLT.Line, DLT.Col,
1445 DICompileUnit(DLT.CompileUnit));
1446 Asm->printLabel(LabelID);
1447 }
1448
1449 if (TimePassesIsEnabled)
1450 DebugTimer->stopTimer();
1451}
1452
1453/// EndFunction - Gather and emit post-function debug information.
1454///
1455void DwarfDebug::EndFunction(MachineFunction *MF) {
1456 if (!ShouldEmitDwarfDebug()) return;
1457
1458 if (TimePassesIsEnabled)
1459 DebugTimer->startTimer();
1460
1461 // Define end label for subprogram.
1462 EmitLabel("func_end", SubprogramCount);
1463
1464 // Get function line info.
1465 if (!Lines.empty()) {
1466 // Get section line info.
1467 unsigned ID = SectionMap.insert(Asm->CurrentSection_);
1468 if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID);
1469 std::vector<SrcLineInfo> &SectionLineInfos = SectionSourceLines[ID-1];
1470 // Append the function info to section info.
1471 SectionLineInfos.insert(SectionLineInfos.end(),
1472 Lines.begin(), Lines.end());
1473 }
1474
1475 // Construct the DbgScope for abstract instances.
1476 for (SmallVector<DbgScope *, 32>::iterator
1477 I = AbstractInstanceRootList.begin(),
1478 E = AbstractInstanceRootList.end(); I != E; ++I)
Bill Wendling17956162009-05-20 23:28:48 +00001479 ConstructFunctionDbgScope(*I);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001480
1481 // Construct scopes for subprogram.
1482 if (FunctionDbgScope)
1483 ConstructFunctionDbgScope(FunctionDbgScope);
1484 else
1485 // FIXME: This is wrong. We are essentially getting past a problem with
1486 // debug information not being able to handle unreachable blocks that have
1487 // debug information in them. In particular, those unreachable blocks that
1488 // have "region end" info in them. That situation results in the "root
1489 // scope" not being created. If that's the case, then emit a "default"
1490 // scope, i.e., one that encompasses the whole function. This isn't
1491 // desirable. And a better way of handling this (and all of the debugging
1492 // information) needs to be explored.
1493 ConstructDefaultDbgScope(MF);
1494
1495 DebugFrames.push_back(FunctionDebugFrameInfo(SubprogramCount,
1496 MMI->getFrameMoves()));
1497
1498 // Clear debug info
1499 if (FunctionDbgScope) {
1500 delete FunctionDbgScope;
1501 DbgScopeMap.clear();
1502 DbgAbstractScopeMap.clear();
1503 DbgConcreteScopeMap.clear();
1504 InlinedVariableScopes.clear();
1505 FunctionDbgScope = NULL;
1506 LexicalScopeStack.clear();
1507 AbstractInstanceRootList.clear();
Devang Patel9217f792009-06-12 19:24:05 +00001508 AbstractInstanceRootMap.clear();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001509 }
1510
1511 Lines.clear();
1512
1513 if (TimePassesIsEnabled)
1514 DebugTimer->stopTimer();
1515}
1516
1517/// RecordSourceLine - Records location information and associates it with a
1518/// label. Returns a unique label ID used to generate a label and provide
1519/// correspondence to the source line list.
1520unsigned DwarfDebug::RecordSourceLine(Value *V, unsigned Line, unsigned Col) {
1521 if (TimePassesIsEnabled)
1522 DebugTimer->startTimer();
1523
1524 CompileUnit *Unit = CompileUnitMap[V];
1525 assert(Unit && "Unable to find CompileUnit");
1526 unsigned ID = MMI->NextLabelID();
1527 Lines.push_back(SrcLineInfo(Line, Col, Unit->getID(), ID));
1528
1529 if (TimePassesIsEnabled)
1530 DebugTimer->stopTimer();
1531
1532 return ID;
1533}
1534
1535/// RecordSourceLine - Records location information and associates it with a
1536/// label. Returns a unique label ID used to generate a label and provide
1537/// correspondence to the source line list.
1538unsigned DwarfDebug::RecordSourceLine(unsigned Line, unsigned Col,
1539 DICompileUnit CU) {
1540 if (TimePassesIsEnabled)
1541 DebugTimer->startTimer();
1542
1543 std::string Dir, Fn;
1544 unsigned Src = GetOrCreateSourceID(CU.getDirectory(Dir),
1545 CU.getFilename(Fn));
1546 unsigned ID = MMI->NextLabelID();
1547 Lines.push_back(SrcLineInfo(Line, Col, Src, ID));
1548
1549 if (TimePassesIsEnabled)
1550 DebugTimer->stopTimer();
1551
1552 return ID;
1553}
1554
1555/// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be
1556/// timed. Look up the source id with the given directory and source file
1557/// names. If none currently exists, create a new id and insert it in the
1558/// SourceIds map. This can update DirectoryNames and SourceFileNames maps as
1559/// well.
1560unsigned DwarfDebug::getOrCreateSourceID(const std::string &DirName,
1561 const std::string &FileName) {
1562 if (TimePassesIsEnabled)
1563 DebugTimer->startTimer();
1564
1565 unsigned SrcId = GetOrCreateSourceID(DirName, FileName);
1566
1567 if (TimePassesIsEnabled)
1568 DebugTimer->stopTimer();
1569
1570 return SrcId;
1571}
1572
1573/// RecordRegionStart - Indicate the start of a region.
1574unsigned DwarfDebug::RecordRegionStart(GlobalVariable *V) {
1575 if (TimePassesIsEnabled)
1576 DebugTimer->startTimer();
1577
1578 DbgScope *Scope = getOrCreateScope(V);
1579 unsigned ID = MMI->NextLabelID();
1580 if (!Scope->getStartLabelID()) Scope->setStartLabelID(ID);
1581 LexicalScopeStack.push_back(Scope);
1582
1583 if (TimePassesIsEnabled)
1584 DebugTimer->stopTimer();
1585
1586 return ID;
1587}
1588
1589/// RecordRegionEnd - Indicate the end of a region.
1590unsigned DwarfDebug::RecordRegionEnd(GlobalVariable *V) {
1591 if (TimePassesIsEnabled)
1592 DebugTimer->startTimer();
1593
1594 DbgScope *Scope = getOrCreateScope(V);
1595 unsigned ID = MMI->NextLabelID();
1596 Scope->setEndLabelID(ID);
Devang Pateldaf9e022009-06-13 02:16:18 +00001597 // FIXME : region.end() may not be in the last basic block.
1598 // For now, do not pop last lexical scope because next basic
1599 // block may start new inlined function's body.
1600 unsigned LSSize = LexicalScopeStack.size();
1601 if (LSSize != 0 && LSSize != 1)
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001602 LexicalScopeStack.pop_back();
1603
1604 if (TimePassesIsEnabled)
1605 DebugTimer->stopTimer();
1606
1607 return ID;
1608}
1609
1610/// RecordVariable - Indicate the declaration of a local variable.
1611void DwarfDebug::RecordVariable(GlobalVariable *GV, unsigned FrameIndex,
1612 const MachineInstr *MI) {
1613 if (TimePassesIsEnabled)
1614 DebugTimer->startTimer();
1615
1616 DIDescriptor Desc(GV);
1617 DbgScope *Scope = NULL;
1618 bool InlinedFnVar = false;
1619
1620 if (Desc.getTag() == dwarf::DW_TAG_variable) {
1621 // GV is a global variable.
1622 DIGlobalVariable DG(GV);
1623 Scope = getOrCreateScope(DG.getContext().getGV());
1624 } else {
1625 DenseMap<const MachineInstr *, DbgScope *>::iterator
1626 SI = InlinedVariableScopes.find(MI);
1627
1628 if (SI != InlinedVariableScopes.end()) {
1629 // or GV is an inlined local variable.
1630 Scope = SI->second;
Devang Patel261cc192009-07-07 21:55:14 +00001631 InlinedFnVar = true;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001632 } else {
1633 DIVariable DV(GV);
1634 GlobalVariable *V = DV.getContext().getGV();
1635
Devang Patel0a4afb62009-07-07 21:12:32 +00001636 // or GV is a local variable.
1637 Scope = getOrCreateScope(V);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001638 }
1639 }
1640
1641 assert(Scope && "Unable to find the variable's scope");
1642 DbgVariable *DV = new DbgVariable(DIVariable(GV), FrameIndex, InlinedFnVar);
1643 Scope->AddVariable(DV);
1644
1645 if (TimePassesIsEnabled)
1646 DebugTimer->stopTimer();
1647}
1648
1649//// RecordInlinedFnStart - Indicate the start of inlined subroutine.
1650unsigned DwarfDebug::RecordInlinedFnStart(DISubprogram &SP, DICompileUnit CU,
1651 unsigned Line, unsigned Col) {
1652 unsigned LabelID = MMI->NextLabelID();
1653
1654 if (!TAI->doesDwarfUsesInlineInfoSection())
1655 return LabelID;
1656
1657 if (TimePassesIsEnabled)
1658 DebugTimer->startTimer();
1659
1660 GlobalVariable *GV = SP.getGV();
1661 DenseMap<const GlobalVariable *, DbgScope *>::iterator
1662 II = AbstractInstanceRootMap.find(GV);
1663
1664 if (II == AbstractInstanceRootMap.end()) {
1665 // Create an abstract instance entry for this inlined function if it doesn't
1666 // already exist.
1667 DbgScope *Scope = new DbgScope(NULL, DIDescriptor(GV));
1668
1669 // Get the compile unit context.
Devang Patel1dbc7712009-06-29 20:45:18 +00001670 DIE *SPDie = ModuleCU->getDieMapSlotFor(GV);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001671 if (!SPDie)
Devang Patel1dbc7712009-06-29 20:45:18 +00001672 SPDie = CreateSubprogramDIE(ModuleCU, SP, false, true);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001673
1674 // Mark as being inlined. This makes this subprogram entry an abstract
1675 // instance root.
1676 // FIXME: Our debugger doesn't care about the value of DW_AT_inline, only
1677 // that it's defined. That probably won't change in the future. However,
1678 // this could be more elegant.
1679 AddUInt(SPDie, dwarf::DW_AT_inline, 0, dwarf::DW_INL_declared_not_inlined);
1680
1681 // Keep track of the abstract scope for this function.
1682 DbgAbstractScopeMap[GV] = Scope;
1683
1684 AbstractInstanceRootMap[GV] = Scope;
1685 AbstractInstanceRootList.push_back(Scope);
1686 }
1687
1688 // Create a concrete inlined instance for this inlined function.
1689 DbgConcreteScope *ConcreteScope = new DbgConcreteScope(DIDescriptor(GV));
1690 DIE *ScopeDie = new DIE(dwarf::DW_TAG_inlined_subroutine);
Devang Patel1dbc7712009-06-29 20:45:18 +00001691 ScopeDie->setAbstractCompileUnit(ModuleCU);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001692
Devang Patel1dbc7712009-06-29 20:45:18 +00001693 DIE *Origin = ModuleCU->getDieMapSlotFor(GV);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001694 AddDIEEntry(ScopeDie, dwarf::DW_AT_abstract_origin,
1695 dwarf::DW_FORM_ref4, Origin);
Devang Patel1dbc7712009-06-29 20:45:18 +00001696 AddUInt(ScopeDie, dwarf::DW_AT_call_file, 0, ModuleCU->getID());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001697 AddUInt(ScopeDie, dwarf::DW_AT_call_line, 0, Line);
1698 AddUInt(ScopeDie, dwarf::DW_AT_call_column, 0, Col);
1699
1700 ConcreteScope->setDie(ScopeDie);
1701 ConcreteScope->setStartLabelID(LabelID);
1702 MMI->RecordUsedDbgLabel(LabelID);
1703
1704 LexicalScopeStack.back()->AddConcreteInst(ConcreteScope);
1705
1706 // Keep track of the concrete scope that's inlined into this function.
1707 DenseMap<GlobalVariable *, SmallVector<DbgScope *, 8> >::iterator
1708 SI = DbgConcreteScopeMap.find(GV);
1709
1710 if (SI == DbgConcreteScopeMap.end())
1711 DbgConcreteScopeMap[GV].push_back(ConcreteScope);
1712 else
1713 SI->second.push_back(ConcreteScope);
1714
1715 // Track the start label for this inlined function.
1716 DenseMap<GlobalVariable *, SmallVector<unsigned, 4> >::iterator
1717 I = InlineInfo.find(GV);
1718
1719 if (I == InlineInfo.end())
1720 InlineInfo[GV].push_back(LabelID);
1721 else
1722 I->second.push_back(LabelID);
1723
1724 if (TimePassesIsEnabled)
1725 DebugTimer->stopTimer();
1726
1727 return LabelID;
1728}
1729
1730/// RecordInlinedFnEnd - Indicate the end of inlined subroutine.
1731unsigned DwarfDebug::RecordInlinedFnEnd(DISubprogram &SP) {
1732 if (!TAI->doesDwarfUsesInlineInfoSection())
1733 return 0;
1734
1735 if (TimePassesIsEnabled)
1736 DebugTimer->startTimer();
1737
1738 GlobalVariable *GV = SP.getGV();
1739 DenseMap<GlobalVariable *, SmallVector<DbgScope *, 8> >::iterator
1740 I = DbgConcreteScopeMap.find(GV);
1741
1742 if (I == DbgConcreteScopeMap.end()) {
1743 // FIXME: Can this situation actually happen? And if so, should it?
1744 if (TimePassesIsEnabled)
1745 DebugTimer->stopTimer();
1746
1747 return 0;
1748 }
1749
1750 SmallVector<DbgScope *, 8> &Scopes = I->second;
Devang Patel11a407f2009-06-15 21:45:50 +00001751 if (Scopes.empty()) {
1752 // Returned ID is 0 if this is unbalanced "end of inlined
1753 // scope". This could happen if optimizer eats dbg intrinsics
1754 // or "beginning of inlined scope" is not recoginized due to
1755 // missing location info. In such cases, ignore this region.end.
1756 return 0;
1757 }
1758
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001759 DbgScope *Scope = Scopes.back(); Scopes.pop_back();
1760 unsigned ID = MMI->NextLabelID();
1761 MMI->RecordUsedDbgLabel(ID);
1762 Scope->setEndLabelID(ID);
1763
1764 if (TimePassesIsEnabled)
1765 DebugTimer->stopTimer();
1766
1767 return ID;
1768}
1769
1770/// RecordVariableScope - Record scope for the variable declared by
1771/// DeclareMI. DeclareMI must describe TargetInstrInfo::DECLARE. Record scopes
1772/// for only inlined subroutine variables. Other variables's scopes are
1773/// determined during RecordVariable().
1774void DwarfDebug::RecordVariableScope(DIVariable &DV,
1775 const MachineInstr *DeclareMI) {
1776 if (TimePassesIsEnabled)
1777 DebugTimer->startTimer();
1778
1779 DISubprogram SP(DV.getContext().getGV());
1780
1781 if (SP.isNull()) {
1782 if (TimePassesIsEnabled)
1783 DebugTimer->stopTimer();
1784
1785 return;
1786 }
1787
1788 DenseMap<GlobalVariable *, DbgScope *>::iterator
1789 I = DbgAbstractScopeMap.find(SP.getGV());
1790 if (I != DbgAbstractScopeMap.end())
1791 InlinedVariableScopes[DeclareMI] = I->second;
1792
1793 if (TimePassesIsEnabled)
1794 DebugTimer->stopTimer();
1795}
Bill Wendling94d04b82009-05-20 23:21:38 +00001796
Bill Wendling829e67b2009-05-20 23:22:40 +00001797//===----------------------------------------------------------------------===//
1798// Emit Methods
1799//===----------------------------------------------------------------------===//
1800
Bill Wendling94d04b82009-05-20 23:21:38 +00001801/// SizeAndOffsetDie - Compute the size and offset of a DIE.
1802///
1803unsigned DwarfDebug::SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last) {
1804 // Get the children.
1805 const std::vector<DIE *> &Children = Die->getChildren();
1806
1807 // If not last sibling and has children then add sibling offset attribute.
1808 if (!Last && !Children.empty()) Die->AddSiblingOffset();
1809
1810 // Record the abbreviation.
1811 AssignAbbrevNumber(Die->getAbbrev());
1812
1813 // Get the abbreviation for this DIE.
1814 unsigned AbbrevNumber = Die->getAbbrevNumber();
1815 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1816
1817 // Set DIE offset
1818 Die->setOffset(Offset);
1819
1820 // Start the size with the size of abbreviation code.
1821 Offset += TargetAsmInfo::getULEB128Size(AbbrevNumber);
1822
1823 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1824 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1825
1826 // Size the DIE attribute values.
1827 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1828 // Size attribute value.
1829 Offset += Values[i]->SizeOf(TD, AbbrevData[i].getForm());
1830
1831 // Size the DIE children if any.
1832 if (!Children.empty()) {
1833 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1834 "Children flag not set");
1835
1836 for (unsigned j = 0, M = Children.size(); j < M; ++j)
1837 Offset = SizeAndOffsetDie(Children[j], Offset, (j + 1) == M);
1838
1839 // End of children marker.
1840 Offset += sizeof(int8_t);
1841 }
1842
1843 Die->setSize(Offset - Die->getOffset());
1844 return Offset;
1845}
1846
1847/// SizeAndOffsets - Compute the size and offset of all the DIEs.
1848///
1849void DwarfDebug::SizeAndOffsets() {
1850 // Compute size of compile unit header.
1851 static unsigned Offset =
1852 sizeof(int32_t) + // Length of Compilation Unit Info
1853 sizeof(int16_t) + // DWARF version number
1854 sizeof(int32_t) + // Offset Into Abbrev. Section
1855 sizeof(int8_t); // Pointer Size (in bytes)
1856
Devang Patel1dbc7712009-06-29 20:45:18 +00001857 SizeAndOffsetDie(ModuleCU->getDie(), Offset, true);
1858 CompileUnitOffsets[ModuleCU] = 0;
Bill Wendling94d04b82009-05-20 23:21:38 +00001859}
1860
1861/// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc
1862/// tools to recognize the object file contains Dwarf information.
1863void DwarfDebug::EmitInitial() {
1864 // Check to see if we already emitted intial headers.
1865 if (didInitial) return;
1866 didInitial = true;
1867
1868 // Dwarf sections base addresses.
1869 if (TAI->doesDwarfRequireFrameSection()) {
1870 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
1871 EmitLabel("section_debug_frame", 0);
1872 }
1873
1874 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
1875 EmitLabel("section_info", 0);
1876 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
1877 EmitLabel("section_abbrev", 0);
1878 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
1879 EmitLabel("section_aranges", 0);
1880
Chris Lattnerb839c3f2009-06-18 23:31:37 +00001881 if (const char *LineInfoDirective = TAI->getDwarfMacroInfoSection()) {
1882 Asm->SwitchToDataSection(LineInfoDirective);
Bill Wendling94d04b82009-05-20 23:21:38 +00001883 EmitLabel("section_macinfo", 0);
1884 }
1885
1886 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
1887 EmitLabel("section_line", 0);
1888 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
1889 EmitLabel("section_loc", 0);
1890 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
1891 EmitLabel("section_pubnames", 0);
1892 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
1893 EmitLabel("section_str", 0);
1894 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
1895 EmitLabel("section_ranges", 0);
1896
1897 Asm->SwitchToSection(TAI->getTextSection());
1898 EmitLabel("text_begin", 0);
1899 Asm->SwitchToSection(TAI->getDataSection());
1900 EmitLabel("data_begin", 0);
1901}
1902
1903/// EmitDIE - Recusively Emits a debug information entry.
1904///
1905void DwarfDebug::EmitDIE(DIE *Die) {
1906 // Get the abbreviation for this DIE.
1907 unsigned AbbrevNumber = Die->getAbbrevNumber();
1908 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1909
1910 Asm->EOL();
1911
1912 // Emit the code (index) for the abbreviation.
1913 Asm->EmitULEB128Bytes(AbbrevNumber);
1914
1915 if (Asm->isVerbose())
1916 Asm->EOL(std::string("Abbrev [" +
1917 utostr(AbbrevNumber) +
1918 "] 0x" + utohexstr(Die->getOffset()) +
1919 ":0x" + utohexstr(Die->getSize()) + " " +
1920 dwarf::TagString(Abbrev->getTag())));
1921 else
1922 Asm->EOL();
1923
1924 SmallVector<DIEValue*, 32> &Values = Die->getValues();
1925 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1926
1927 // Emit the DIE attribute values.
1928 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1929 unsigned Attr = AbbrevData[i].getAttribute();
1930 unsigned Form = AbbrevData[i].getForm();
1931 assert(Form && "Too many attributes for DIE (check abbreviation)");
1932
1933 switch (Attr) {
1934 case dwarf::DW_AT_sibling:
1935 Asm->EmitInt32(Die->SiblingOffset());
1936 break;
1937 case dwarf::DW_AT_abstract_origin: {
1938 DIEEntry *E = cast<DIEEntry>(Values[i]);
1939 DIE *Origin = E->getEntry();
1940 unsigned Addr =
1941 CompileUnitOffsets[Die->getAbstractCompileUnit()] +
1942 Origin->getOffset();
1943
1944 Asm->EmitInt32(Addr);
1945 break;
1946 }
1947 default:
1948 // Emit an attribute using the defined form.
1949 Values[i]->EmitValue(this, Form);
1950 break;
1951 }
1952
1953 Asm->EOL(dwarf::AttributeString(Attr));
1954 }
1955
1956 // Emit the DIE children if any.
1957 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1958 const std::vector<DIE *> &Children = Die->getChildren();
1959
1960 for (unsigned j = 0, M = Children.size(); j < M; ++j)
1961 EmitDIE(Children[j]);
1962
1963 Asm->EmitInt8(0); Asm->EOL("End Of Children Mark");
1964 }
1965}
1966
1967/// EmitDebugInfo / EmitDebugInfoPerCU - Emit the debug info section.
1968///
1969void DwarfDebug::EmitDebugInfoPerCU(CompileUnit *Unit) {
1970 DIE *Die = Unit->getDie();
1971
1972 // Emit the compile units header.
1973 EmitLabel("info_begin", Unit->getID());
1974
1975 // Emit size of content not including length itself
1976 unsigned ContentSize = Die->getSize() +
1977 sizeof(int16_t) + // DWARF version number
1978 sizeof(int32_t) + // Offset Into Abbrev. Section
1979 sizeof(int8_t) + // Pointer Size (in bytes)
1980 sizeof(int32_t); // FIXME - extra pad for gdb bug.
1981
1982 Asm->EmitInt32(ContentSize); Asm->EOL("Length of Compilation Unit Info");
1983 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF version number");
1984 EmitSectionOffset("abbrev_begin", "section_abbrev", 0, 0, true, false);
1985 Asm->EOL("Offset Into Abbrev. Section");
1986 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)");
1987
1988 EmitDIE(Die);
1989 // FIXME - extra padding for gdb bug.
1990 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
1991 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
1992 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
1993 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
1994 EmitLabel("info_end", Unit->getID());
1995
1996 Asm->EOL();
1997}
1998
1999void DwarfDebug::EmitDebugInfo() {
2000 // Start debug info section.
2001 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
2002
Devang Patel1dbc7712009-06-29 20:45:18 +00002003 EmitDebugInfoPerCU(ModuleCU);
Bill Wendling94d04b82009-05-20 23:21:38 +00002004}
2005
2006/// EmitAbbreviations - Emit the abbreviation section.
2007///
2008void DwarfDebug::EmitAbbreviations() const {
2009 // Check to see if it is worth the effort.
2010 if (!Abbreviations.empty()) {
2011 // Start the debug abbrev section.
2012 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
2013
2014 EmitLabel("abbrev_begin", 0);
2015
2016 // For each abbrevation.
2017 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2018 // Get abbreviation data
2019 const DIEAbbrev *Abbrev = Abbreviations[i];
2020
2021 // Emit the abbrevations code (base 1 index.)
2022 Asm->EmitULEB128Bytes(Abbrev->getNumber());
2023 Asm->EOL("Abbreviation Code");
2024
2025 // Emit the abbreviations data.
2026 Abbrev->Emit(Asm);
2027
2028 Asm->EOL();
2029 }
2030
2031 // Mark end of abbreviations.
2032 Asm->EmitULEB128Bytes(0); Asm->EOL("EOM(3)");
2033
2034 EmitLabel("abbrev_end", 0);
2035 Asm->EOL();
2036 }
2037}
2038
2039/// EmitEndOfLineMatrix - Emit the last address of the section and the end of
2040/// the line matrix.
2041///
2042void DwarfDebug::EmitEndOfLineMatrix(unsigned SectionEnd) {
2043 // Define last address of section.
2044 Asm->EmitInt8(0); Asm->EOL("Extended Op");
2045 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
2046 Asm->EmitInt8(dwarf::DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2047 EmitReference("section_end", SectionEnd); Asm->EOL("Section end label");
2048
2049 // Mark end of matrix.
2050 Asm->EmitInt8(0); Asm->EOL("DW_LNE_end_sequence");
2051 Asm->EmitULEB128Bytes(1); Asm->EOL();
2052 Asm->EmitInt8(1); Asm->EOL();
2053}
2054
2055/// EmitDebugLines - Emit source line information.
2056///
2057void DwarfDebug::EmitDebugLines() {
2058 // If the target is using .loc/.file, the assembler will be emitting the
2059 // .debug_line table automatically.
2060 if (TAI->hasDotLocAndDotFile())
2061 return;
2062
2063 // Minimum line delta, thus ranging from -10..(255-10).
2064 const int MinLineDelta = -(dwarf::DW_LNS_fixed_advance_pc + 1);
2065 // Maximum line delta, thus ranging from -10..(255-10).
2066 const int MaxLineDelta = 255 + MinLineDelta;
2067
2068 // Start the dwarf line section.
2069 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
2070
2071 // Construct the section header.
2072 EmitDifference("line_end", 0, "line_begin", 0, true);
2073 Asm->EOL("Length of Source Line Info");
2074 EmitLabel("line_begin", 0);
2075
2076 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF version number");
2077
2078 EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0, true);
2079 Asm->EOL("Prolog Length");
2080 EmitLabel("line_prolog_begin", 0);
2081
2082 Asm->EmitInt8(1); Asm->EOL("Minimum Instruction Length");
2083
2084 Asm->EmitInt8(1); Asm->EOL("Default is_stmt_start flag");
2085
2086 Asm->EmitInt8(MinLineDelta); Asm->EOL("Line Base Value (Special Opcodes)");
2087
2088 Asm->EmitInt8(MaxLineDelta); Asm->EOL("Line Range Value (Special Opcodes)");
2089
2090 Asm->EmitInt8(-MinLineDelta); Asm->EOL("Special Opcode Base");
2091
2092 // Line number standard opcode encodings argument count
2093 Asm->EmitInt8(0); Asm->EOL("DW_LNS_copy arg count");
2094 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_pc arg count");
2095 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_line arg count");
2096 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_file arg count");
2097 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_column arg count");
2098 Asm->EmitInt8(0); Asm->EOL("DW_LNS_negate_stmt arg count");
2099 Asm->EmitInt8(0); Asm->EOL("DW_LNS_set_basic_block arg count");
2100 Asm->EmitInt8(0); Asm->EOL("DW_LNS_const_add_pc arg count");
2101 Asm->EmitInt8(1); Asm->EOL("DW_LNS_fixed_advance_pc arg count");
2102
2103 // Emit directories.
2104 for (unsigned DI = 1, DE = getNumSourceDirectories()+1; DI != DE; ++DI) {
2105 Asm->EmitString(getSourceDirectoryName(DI));
2106 Asm->EOL("Directory");
2107 }
2108
2109 Asm->EmitInt8(0); Asm->EOL("End of directories");
2110
2111 // Emit files.
2112 for (unsigned SI = 1, SE = getNumSourceIds()+1; SI != SE; ++SI) {
2113 // Remember source id starts at 1.
2114 std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(SI);
2115 Asm->EmitString(getSourceFileName(Id.second));
2116 Asm->EOL("Source");
2117 Asm->EmitULEB128Bytes(Id.first);
2118 Asm->EOL("Directory #");
2119 Asm->EmitULEB128Bytes(0);
2120 Asm->EOL("Mod date");
2121 Asm->EmitULEB128Bytes(0);
2122 Asm->EOL("File size");
2123 }
2124
2125 Asm->EmitInt8(0); Asm->EOL("End of files");
2126
2127 EmitLabel("line_prolog_end", 0);
2128
2129 // A sequence for each text section.
2130 unsigned SecSrcLinesSize = SectionSourceLines.size();
2131
2132 for (unsigned j = 0; j < SecSrcLinesSize; ++j) {
2133 // Isolate current sections line info.
2134 const std::vector<SrcLineInfo> &LineInfos = SectionSourceLines[j];
2135
2136 if (Asm->isVerbose()) {
2137 const Section* S = SectionMap[j + 1];
2138 O << '\t' << TAI->getCommentString() << " Section"
2139 << S->getName() << '\n';
2140 } else {
2141 Asm->EOL();
2142 }
2143
2144 // Dwarf assumes we start with first line of first source file.
2145 unsigned Source = 1;
2146 unsigned Line = 1;
2147
2148 // Construct rows of the address, source, line, column matrix.
2149 for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
2150 const SrcLineInfo &LineInfo = LineInfos[i];
2151 unsigned LabelID = MMI->MappedLabel(LineInfo.getLabelID());
2152 if (!LabelID) continue;
2153
2154 if (!Asm->isVerbose())
2155 Asm->EOL();
2156 else {
2157 std::pair<unsigned, unsigned> SourceID =
2158 getSourceDirectoryAndFileIds(LineInfo.getSourceID());
2159 O << '\t' << TAI->getCommentString() << ' '
2160 << getSourceDirectoryName(SourceID.first) << ' '
2161 << getSourceFileName(SourceID.second)
2162 <<" :" << utostr_32(LineInfo.getLine()) << '\n';
2163 }
2164
2165 // Define the line address.
2166 Asm->EmitInt8(0); Asm->EOL("Extended Op");
2167 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
2168 Asm->EmitInt8(dwarf::DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2169 EmitReference("label", LabelID); Asm->EOL("Location label");
2170
2171 // If change of source, then switch to the new source.
2172 if (Source != LineInfo.getSourceID()) {
2173 Source = LineInfo.getSourceID();
2174 Asm->EmitInt8(dwarf::DW_LNS_set_file); Asm->EOL("DW_LNS_set_file");
2175 Asm->EmitULEB128Bytes(Source); Asm->EOL("New Source");
2176 }
2177
2178 // If change of line.
2179 if (Line != LineInfo.getLine()) {
2180 // Determine offset.
2181 int Offset = LineInfo.getLine() - Line;
2182 int Delta = Offset - MinLineDelta;
2183
2184 // Update line.
2185 Line = LineInfo.getLine();
2186
2187 // If delta is small enough and in range...
2188 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
2189 // ... then use fast opcode.
2190 Asm->EmitInt8(Delta - MinLineDelta); Asm->EOL("Line Delta");
2191 } else {
2192 // ... otherwise use long hand.
2193 Asm->EmitInt8(dwarf::DW_LNS_advance_line);
2194 Asm->EOL("DW_LNS_advance_line");
2195 Asm->EmitSLEB128Bytes(Offset); Asm->EOL("Line Offset");
2196 Asm->EmitInt8(dwarf::DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2197 }
2198 } else {
2199 // Copy the previous row (different address or source)
2200 Asm->EmitInt8(dwarf::DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2201 }
2202 }
2203
2204 EmitEndOfLineMatrix(j + 1);
2205 }
2206
2207 if (SecSrcLinesSize == 0)
2208 // Because we're emitting a debug_line section, we still need a line
2209 // table. The linker and friends expect it to exist. If there's nothing to
2210 // put into it, emit an empty table.
2211 EmitEndOfLineMatrix(1);
2212
2213 EmitLabel("line_end", 0);
2214 Asm->EOL();
2215}
2216
2217/// EmitCommonDebugFrame - Emit common frame info into a debug frame section.
2218///
2219void DwarfDebug::EmitCommonDebugFrame() {
2220 if (!TAI->doesDwarfRequireFrameSection())
2221 return;
2222
2223 int stackGrowth =
2224 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2225 TargetFrameInfo::StackGrowsUp ?
2226 TD->getPointerSize() : -TD->getPointerSize();
2227
2228 // Start the dwarf frame section.
2229 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2230
2231 EmitLabel("debug_frame_common", 0);
2232 EmitDifference("debug_frame_common_end", 0,
2233 "debug_frame_common_begin", 0, true);
2234 Asm->EOL("Length of Common Information Entry");
2235
2236 EmitLabel("debug_frame_common_begin", 0);
2237 Asm->EmitInt32((int)dwarf::DW_CIE_ID);
2238 Asm->EOL("CIE Identifier Tag");
2239 Asm->EmitInt8(dwarf::DW_CIE_VERSION);
2240 Asm->EOL("CIE Version");
2241 Asm->EmitString("");
2242 Asm->EOL("CIE Augmentation");
2243 Asm->EmitULEB128Bytes(1);
2244 Asm->EOL("CIE Code Alignment Factor");
2245 Asm->EmitSLEB128Bytes(stackGrowth);
2246 Asm->EOL("CIE Data Alignment Factor");
2247 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false));
2248 Asm->EOL("CIE RA Column");
2249
2250 std::vector<MachineMove> Moves;
2251 RI->getInitialFrameState(Moves);
2252
2253 EmitFrameMoves(NULL, 0, Moves, false);
2254
2255 Asm->EmitAlignment(2, 0, 0, false);
2256 EmitLabel("debug_frame_common_end", 0);
2257
2258 Asm->EOL();
2259}
2260
2261/// EmitFunctionDebugFrame - Emit per function frame info into a debug frame
2262/// section.
2263void
2264DwarfDebug::EmitFunctionDebugFrame(const FunctionDebugFrameInfo&DebugFrameInfo){
2265 if (!TAI->doesDwarfRequireFrameSection())
2266 return;
2267
2268 // Start the dwarf frame section.
2269 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2270
2271 EmitDifference("debug_frame_end", DebugFrameInfo.Number,
2272 "debug_frame_begin", DebugFrameInfo.Number, true);
2273 Asm->EOL("Length of Frame Information Entry");
2274
2275 EmitLabel("debug_frame_begin", DebugFrameInfo.Number);
2276
2277 EmitSectionOffset("debug_frame_common", "section_debug_frame",
2278 0, 0, true, false);
2279 Asm->EOL("FDE CIE offset");
2280
2281 EmitReference("func_begin", DebugFrameInfo.Number);
2282 Asm->EOL("FDE initial location");
2283 EmitDifference("func_end", DebugFrameInfo.Number,
2284 "func_begin", DebugFrameInfo.Number);
2285 Asm->EOL("FDE address range");
2286
2287 EmitFrameMoves("func_begin", DebugFrameInfo.Number, DebugFrameInfo.Moves,
2288 false);
2289
2290 Asm->EmitAlignment(2, 0, 0, false);
2291 EmitLabel("debug_frame_end", DebugFrameInfo.Number);
2292
2293 Asm->EOL();
2294}
2295
2296void DwarfDebug::EmitDebugPubNamesPerCU(CompileUnit *Unit) {
2297 EmitDifference("pubnames_end", Unit->getID(),
2298 "pubnames_begin", Unit->getID(), true);
2299 Asm->EOL("Length of Public Names Info");
2300
2301 EmitLabel("pubnames_begin", Unit->getID());
2302
2303 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF Version");
2304
2305 EmitSectionOffset("info_begin", "section_info",
2306 Unit->getID(), 0, true, false);
2307 Asm->EOL("Offset of Compilation Unit Info");
2308
2309 EmitDifference("info_end", Unit->getID(), "info_begin", Unit->getID(),
2310 true);
2311 Asm->EOL("Compilation Unit Length");
2312
2313 StringMap<DIE*> &Globals = Unit->getGlobals();
2314 for (StringMap<DIE*>::const_iterator
2315 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2316 const char *Name = GI->getKeyData();
2317 DIE * Entity = GI->second;
2318
2319 Asm->EmitInt32(Entity->getOffset()); Asm->EOL("DIE offset");
2320 Asm->EmitString(Name, strlen(Name)); Asm->EOL("External Name");
2321 }
2322
2323 Asm->EmitInt32(0); Asm->EOL("End Mark");
2324 EmitLabel("pubnames_end", Unit->getID());
2325
2326 Asm->EOL();
2327}
2328
2329/// EmitDebugPubNames - Emit visible names into a debug pubnames section.
2330///
2331void DwarfDebug::EmitDebugPubNames() {
2332 // Start the dwarf pubnames section.
2333 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
2334
Devang Patel1dbc7712009-06-29 20:45:18 +00002335 EmitDebugPubNamesPerCU(ModuleCU);
Bill Wendling94d04b82009-05-20 23:21:38 +00002336}
2337
2338/// EmitDebugStr - Emit visible names into a debug str section.
2339///
2340void DwarfDebug::EmitDebugStr() {
2341 // Check to see if it is worth the effort.
2342 if (!StringPool.empty()) {
2343 // Start the dwarf str section.
2344 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
2345
2346 // For each of strings in the string pool.
2347 for (unsigned StringID = 1, N = StringPool.size();
2348 StringID <= N; ++StringID) {
2349 // Emit a label for reference from debug information entries.
2350 EmitLabel("string", StringID);
2351
2352 // Emit the string itself.
2353 const std::string &String = StringPool[StringID];
2354 Asm->EmitString(String); Asm->EOL();
2355 }
2356
2357 Asm->EOL();
2358 }
2359}
2360
2361/// EmitDebugLoc - Emit visible names into a debug loc section.
2362///
2363void DwarfDebug::EmitDebugLoc() {
2364 // Start the dwarf loc section.
2365 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
2366 Asm->EOL();
2367}
2368
2369/// EmitDebugARanges - Emit visible names into a debug aranges section.
2370///
2371void DwarfDebug::EmitDebugARanges() {
2372 // Start the dwarf aranges section.
2373 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
2374
2375 // FIXME - Mock up
2376#if 0
2377 CompileUnit *Unit = GetBaseCompileUnit();
2378
2379 // Don't include size of length
2380 Asm->EmitInt32(0x1c); Asm->EOL("Length of Address Ranges Info");
2381
2382 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("Dwarf Version");
2383
2384 EmitReference("info_begin", Unit->getID());
2385 Asm->EOL("Offset of Compilation Unit Info");
2386
2387 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Size of Address");
2388
2389 Asm->EmitInt8(0); Asm->EOL("Size of Segment Descriptor");
2390
2391 Asm->EmitInt16(0); Asm->EOL("Pad (1)");
2392 Asm->EmitInt16(0); Asm->EOL("Pad (2)");
2393
2394 // Range 1
2395 EmitReference("text_begin", 0); Asm->EOL("Address");
2396 EmitDifference("text_end", 0, "text_begin", 0, true); Asm->EOL("Length");
2397
2398 Asm->EmitInt32(0); Asm->EOL("EOM (1)");
2399 Asm->EmitInt32(0); Asm->EOL("EOM (2)");
2400#endif
2401
2402 Asm->EOL();
2403}
2404
2405/// EmitDebugRanges - Emit visible names into a debug ranges section.
2406///
2407void DwarfDebug::EmitDebugRanges() {
2408 // Start the dwarf ranges section.
2409 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
2410 Asm->EOL();
2411}
2412
2413/// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
2414///
2415void DwarfDebug::EmitDebugMacInfo() {
Chris Lattnerb839c3f2009-06-18 23:31:37 +00002416 if (const char *LineInfoDirective = TAI->getDwarfMacroInfoSection()) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002417 // Start the dwarf macinfo section.
Chris Lattnerb839c3f2009-06-18 23:31:37 +00002418 Asm->SwitchToDataSection(LineInfoDirective);
Bill Wendling94d04b82009-05-20 23:21:38 +00002419 Asm->EOL();
2420 }
2421}
2422
2423/// EmitDebugInlineInfo - Emit inline info using following format.
2424/// Section Header:
2425/// 1. length of section
2426/// 2. Dwarf version number
2427/// 3. address size.
2428///
2429/// Entries (one "entry" for each function that was inlined):
2430///
2431/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2432/// otherwise offset into __debug_str for regular function name.
2433/// 2. offset into __debug_str section for regular function name.
2434/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2435/// instances for the function.
2436///
2437/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2438/// inlined instance; the die_offset points to the inlined_subroutine die in the
2439/// __debug_info section, and the low_pc is the starting address for the
2440/// inlining instance.
2441void DwarfDebug::EmitDebugInlineInfo() {
2442 if (!TAI->doesDwarfUsesInlineInfoSection())
2443 return;
2444
Devang Patel1dbc7712009-06-29 20:45:18 +00002445 if (!ModuleCU)
Bill Wendling94d04b82009-05-20 23:21:38 +00002446 return;
2447
2448 Asm->SwitchToDataSection(TAI->getDwarfDebugInlineSection());
2449 Asm->EOL();
2450 EmitDifference("debug_inlined_end", 1,
2451 "debug_inlined_begin", 1, true);
2452 Asm->EOL("Length of Debug Inlined Information Entry");
2453
2454 EmitLabel("debug_inlined_begin", 1);
2455
2456 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("Dwarf Version");
2457 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)");
2458
2459 for (DenseMap<GlobalVariable *, SmallVector<unsigned, 4> >::iterator
2460 I = InlineInfo.begin(), E = InlineInfo.end(); I != E; ++I) {
2461 GlobalVariable *GV = I->first;
2462 SmallVector<unsigned, 4> &Labels = I->second;
2463 DISubprogram SP(GV);
2464 std::string Name;
2465 std::string LName;
2466
2467 SP.getLinkageName(LName);
2468 SP.getName(Name);
2469
Devang Patel53cb17d2009-07-16 01:01:22 +00002470 if (LName.empty())
2471 Asm->EmitString(Name);
2472 else {
2473 // Skip special LLVM prefix that is used to inform the asm printer to not emit
2474 // usual symbol prefix before the symbol name. This happens for Objective-C
2475 // symbol names and symbol whose name is replaced using GCC's __asm__ attribute.
2476 if (LName[0] == 1)
2477 LName = &LName[1];
2478 Asm->EmitString(LName);
2479 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002480 Asm->EOL("MIPS linkage name");
2481
2482 Asm->EmitString(Name); Asm->EOL("Function name");
2483
2484 Asm->EmitULEB128Bytes(Labels.size()); Asm->EOL("Inline count");
2485
2486 for (SmallVector<unsigned, 4>::iterator LI = Labels.begin(),
2487 LE = Labels.end(); LI != LE; ++LI) {
Devang Patel1dbc7712009-06-29 20:45:18 +00002488 DIE *SP = ModuleCU->getDieMapSlotFor(GV);
Bill Wendling94d04b82009-05-20 23:21:38 +00002489 Asm->EmitInt32(SP->getOffset()); Asm->EOL("DIE offset");
2490
2491 if (TD->getPointerSize() == sizeof(int32_t))
2492 O << TAI->getData32bitsDirective();
2493 else
2494 O << TAI->getData64bitsDirective();
2495
2496 PrintLabelName("label", *LI); Asm->EOL("low_pc");
2497 }
2498 }
2499
2500 EmitLabel("debug_inlined_end", 1);
2501 Asm->EOL();
2502}