blob: 2e563dd084ca1cc96e7149c4b82cdfb72f1e1ee2 [file] [log] [blame]
Bill Wendling2f921f82009-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//===----------------------------------------------------------------------===//
Chris Lattnerb14490d2010-03-09 00:39:24 +000013
Devang Patel80ae3492009-08-28 23:24:31 +000014#define DEBUG_TYPE "dwarfdebug"
Bill Wendling2f921f82009-05-15 09:23:25 +000015#include "DwarfDebug.h"
Chris Lattner3f3fb972010-04-05 05:24:55 +000016#include "DIE.h"
Devang Patel5eb43192011-04-12 17:40:32 +000017#include "DwarfCompileUnit.h"
Bill Wendling30346342010-04-05 22:59:21 +000018#include "llvm/Constants.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000019#include "llvm/Module.h"
Devang Patel2d9e5322011-01-20 00:02:16 +000020#include "llvm/Instructions.h"
David Greene829b3e82009-08-19 21:52:55 +000021#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000022#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000023#include "llvm/MC/MCAsmInfo.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000024#include "llvm/MC/MCSection.h"
Chris Lattner4b7dadb2009-08-19 05:49:37 +000025#include "llvm/MC/MCStreamer.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000026#include "llvm/MC/MCSymbol.h"
Chris Lattnerf62e3ee2010-01-16 21:57:06 +000027#include "llvm/Target/Mangler.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000028#include "llvm/Target/TargetData.h"
Anton Korobeynikov2f931282011-01-10 12:39:04 +000029#include "llvm/Target/TargetFrameLowering.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000030#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner21dc46e2010-04-04 18:06:11 +000031#include "llvm/Target/TargetMachine.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000032#include "llvm/Target/TargetRegisterInfo.h"
Devang Patel61880932010-04-19 19:14:02 +000033#include "llvm/Target/TargetOptions.h"
Chris Lattner3f3fb972010-04-05 05:24:55 +000034#include "llvm/Analysis/DebugInfo.h"
Devang Patela5d93242011-02-24 18:49:30 +000035#include "llvm/Analysis/DIBuilder.h"
Devang Patela86114b2010-10-25 20:45:32 +000036#include "llvm/ADT/Statistic.h"
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +000037#include "llvm/ADT/STLExtras.h"
Chris Lattner06fa1762009-08-24 03:52:50 +000038#include "llvm/ADT/StringExtras.h"
Devang Patel6c74a872010-04-27 19:46:33 +000039#include "llvm/Support/CommandLine.h"
Daniel Dunbarcdf01b52009-10-13 06:47:08 +000040#include "llvm/Support/Debug.h"
41#include "llvm/Support/ErrorHandling.h"
Devang Patel1973df22010-01-26 21:39:14 +000042#include "llvm/Support/ValueHandle.h"
Chris Lattnerf5c834f2010-01-22 22:09:00 +000043#include "llvm/Support/FormattedStream.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000044#include "llvm/Support/Timer.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000045#include "llvm/Support/Path.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000046using namespace llvm;
47
Devang Patel6c74a872010-04-27 19:46:33 +000048static cl::opt<bool> PrintDbgScope("print-dbgscope", cl::Hidden,
49 cl::desc("Print DbgScope information for each machine instruction"));
50
Jim Grosbacha8683bb2010-07-21 21:21:52 +000051static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print",
Devang Patel30265c42010-07-07 20:12:52 +000052 cl::Hidden,
Devang Patel6c74a872010-04-27 19:46:33 +000053 cl::desc("Disable debug info printing"));
54
Dan Gohman7421ae42010-05-07 01:08:53 +000055static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +000056 cl::desc("Make an absence of debug location information explicit."),
Dan Gohman7421ae42010-05-07 01:08:53 +000057 cl::init(false));
58
Nick Lewycky90b2ac22010-10-26 00:51:57 +000059#ifndef NDEBUG
Devang Patela86114b2010-10-25 20:45:32 +000060STATISTIC(BlocksWithoutLineNo, "Number of blocks without any line number");
Nick Lewycky90b2ac22010-10-26 00:51:57 +000061#endif
Devang Patela86114b2010-10-25 20:45:32 +000062
Bill Wendlingfcc14142010-04-07 09:28:04 +000063namespace {
64 const char *DWARFGroupName = "DWARF Emission";
65 const char *DbgTimerName = "DWARF Debug Writer";
66} // end anonymous namespace
67
Bill Wendling2f921f82009-05-15 09:23:25 +000068//===----------------------------------------------------------------------===//
69
70/// Configuration values for initial hash set sizes (log2).
71///
Bill Wendling2f921f82009-05-15 09:23:25 +000072static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling2f921f82009-05-15 09:23:25 +000073
74namespace llvm {
75
Devang Patelf20c4f72011-04-12 22:53:02 +000076DIType DbgVariable::getType() const {
77 DIType Ty = Var.getType();
78 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
79 // addresses instead.
80 if (Var.isBlockByrefVariable()) {
81 /* Byref variables, in Blocks, are declared by the programmer as
82 "SomeType VarName;", but the compiler creates a
83 __Block_byref_x_VarName struct, and gives the variable VarName
84 either the struct, or a pointer to the struct, as its type. This
85 is necessary for various behind-the-scenes things the compiler
86 needs to do with by-reference variables in blocks.
87
88 However, as far as the original *programmer* is concerned, the
89 variable should still have type 'SomeType', as originally declared.
90
91 The following function dives into the __Block_byref_x_VarName
92 struct to find the original type of the variable. This will be
93 passed back to the code generating the type for the Debug
94 Information Entry for the variable 'VarName'. 'VarName' will then
95 have the original type 'SomeType' in its debug information.
96
97 The original type 'SomeType' will be the type of the field named
98 'VarName' inside the __Block_byref_x_VarName struct.
99
100 NOTE: In order for this to not completely fail on the debugger
101 side, the Debug Information Entry for the variable VarName needs to
102 have a DW_AT_location that tells the debugger how to unwind through
103 the pointers and __Block_byref_x_VarName struct to find the actual
104 value of the variable. The function addBlockByrefType does this. */
105 DIType subType = Ty;
106 unsigned tag = Ty.getTag();
107
108 if (tag == dwarf::DW_TAG_pointer_type) {
109 DIDerivedType DTy = DIDerivedType(Ty);
110 subType = DTy.getTypeDerivedFrom();
111 }
112
113 DICompositeType blockStruct = DICompositeType(subType);
114 DIArray Elements = blockStruct.getTypeArray();
115
116 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
117 DIDescriptor Element = Elements.getElement(i);
118 DIDerivedType DT = DIDerivedType(Element);
119 if (getName() == DT.getName())
120 return (DT.getTypeDerivedFrom());
Devang Patel6d9f9fe2010-08-09 21:01:39 +0000121 }
122 return Ty;
123 }
Devang Patelf20c4f72011-04-12 22:53:02 +0000124 return Ty;
125}
Bill Wendling2f921f82009-05-15 09:23:25 +0000126
127//===----------------------------------------------------------------------===//
Devang Patel6c74a872010-04-27 19:46:33 +0000128/// DbgRange - This is used to track range of instructions with identical
129/// debug info scope.
130///
131typedef std::pair<const MachineInstr *, const MachineInstr *> DbgRange;
132
133//===----------------------------------------------------------------------===//
Bill Wendling2f921f82009-05-15 09:23:25 +0000134/// DbgScope - This class is used to track scope information.
135///
Devang Patelf3d7c082009-11-16 21:53:40 +0000136class DbgScope {
Bill Wendling2f921f82009-05-15 09:23:25 +0000137 DbgScope *Parent; // Parent to this scope.
Jim Grosbach042483e2009-11-21 23:12:12 +0000138 DIDescriptor Desc; // Debug info descriptor for scope.
Devang Patel1973df22010-01-26 21:39:14 +0000139 // Location at which this scope is inlined.
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000140 AssertingVH<const MDNode> InlinedAtLocation;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000141 bool AbstractScope; // Abstract Scope
Devang Patel787f94c2009-10-01 18:25:23 +0000142 const MachineInstr *LastInsn; // Last instruction of this scope.
143 const MachineInstr *FirstInsn; // First instruction of this scope.
Devang Patel6c74a872010-04-27 19:46:33 +0000144 unsigned DFSIn, DFSOut;
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +0000145 // Scopes defined in scope. Contents not owned.
146 SmallVector<DbgScope *, 4> Scopes;
147 // Variables declared in scope. Contents owned.
148 SmallVector<DbgVariable *, 8> Variables;
Devang Patel6c74a872010-04-27 19:46:33 +0000149 SmallVector<DbgRange, 4> Ranges;
Owen Anderson9becc182009-06-24 22:53:20 +0000150 // Private state for dump()
151 mutable unsigned IndentLevel;
Bill Wendling2f921f82009-05-15 09:23:25 +0000152public:
Devang Patel32cc43c2010-05-07 20:54:48 +0000153 DbgScope(DbgScope *P, DIDescriptor D, const MDNode *I = 0)
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000154 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(false),
Devang Patel6c74a872010-04-27 19:46:33 +0000155 LastInsn(0), FirstInsn(0),
156 DFSIn(0), DFSOut(0), IndentLevel(0) {}
Bill Wendling2f921f82009-05-15 09:23:25 +0000157 virtual ~DbgScope();
158
159 // Accessors.
160 DbgScope *getParent() const { return Parent; }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000161 void setParent(DbgScope *P) { Parent = P; }
Bill Wendling2f921f82009-05-15 09:23:25 +0000162 DIDescriptor getDesc() const { return Desc; }
Devang Patel32cc43c2010-05-07 20:54:48 +0000163 const MDNode *getInlinedAt() const { return InlinedAtLocation; }
164 const MDNode *getScopeNode() const { return Desc; }
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +0000165 const SmallVector<DbgScope *, 4> &getScopes() { return Scopes; }
Devang Patel406798a2010-08-09 18:51:29 +0000166 const SmallVector<DbgVariable *, 8> &getDbgVariables() { return Variables; }
Devang Patel6c74a872010-04-27 19:46:33 +0000167 const SmallVector<DbgRange, 4> &getRanges() { return Ranges; }
168
169 /// openInsnRange - This scope covers instruction range starting from MI.
170 void openInsnRange(const MachineInstr *MI) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000171 if (!FirstInsn)
Devang Patel6c74a872010-04-27 19:46:33 +0000172 FirstInsn = MI;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000173
Devang Patel6c74a872010-04-27 19:46:33 +0000174 if (Parent)
175 Parent->openInsnRange(MI);
176 }
177
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000178 /// extendInsnRange - Extend the current instruction range covered by
Devang Patel6c74a872010-04-27 19:46:33 +0000179 /// this scope.
180 void extendInsnRange(const MachineInstr *MI) {
181 assert (FirstInsn && "MI Range is not open!");
182 LastInsn = MI;
183 if (Parent)
184 Parent->extendInsnRange(MI);
185 }
186
187 /// closeInsnRange - Create a range based on FirstInsn and LastInsn collected
188 /// until now. This is used when a new scope is encountered while walking
189 /// machine instructions.
190 void closeInsnRange(DbgScope *NewScope = NULL) {
191 assert (LastInsn && "Last insn missing!");
192 Ranges.push_back(DbgRange(FirstInsn, LastInsn));
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000193 FirstInsn = NULL;
Devang Patel6c74a872010-04-27 19:46:33 +0000194 LastInsn = NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000195 // If Parent dominates NewScope then do not close Parent's instruction
Devang Patel6c74a872010-04-27 19:46:33 +0000196 // range.
197 if (Parent && (!NewScope || !Parent->dominates(NewScope)))
198 Parent->closeInsnRange(NewScope);
199 }
200
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000201 void setAbstractScope() { AbstractScope = true; }
202 bool isAbstractScope() const { return AbstractScope; }
Devang Patel6c74a872010-04-27 19:46:33 +0000203
204 // Depth First Search support to walk and mainpluate DbgScope hierarchy.
205 unsigned getDFSOut() const { return DFSOut; }
206 void setDFSOut(unsigned O) { DFSOut = O; }
207 unsigned getDFSIn() const { return DFSIn; }
208 void setDFSIn(unsigned I) { DFSIn = I; }
209 bool dominates(const DbgScope *S) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000210 if (S == this)
Devang Patel6c74a872010-04-27 19:46:33 +0000211 return true;
212 if (DFSIn < S->getDFSIn() && DFSOut > S->getDFSOut())
213 return true;
214 return false;
215 }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000216
Devang Patel930143b2009-11-21 02:48:08 +0000217 /// addScope - Add a scope to the scope.
Bill Wendling2f921f82009-05-15 09:23:25 +0000218 ///
Devang Patel930143b2009-11-21 02:48:08 +0000219 void addScope(DbgScope *S) { Scopes.push_back(S); }
Bill Wendling2f921f82009-05-15 09:23:25 +0000220
Devang Patel930143b2009-11-21 02:48:08 +0000221 /// addVariable - Add a variable to the scope.
Bill Wendling2f921f82009-05-15 09:23:25 +0000222 ///
Devang Patel930143b2009-11-21 02:48:08 +0000223 void addVariable(DbgVariable *V) { Variables.push_back(V); }
Bill Wendling2f921f82009-05-15 09:23:25 +0000224
Bill Wendling2f921f82009-05-15 09:23:25 +0000225#ifndef NDEBUG
226 void dump() const;
227#endif
228};
Devang Patel6c74a872010-04-27 19:46:33 +0000229
Chris Lattnerf5d06362010-04-05 04:09:20 +0000230} // end llvm namespace
Bill Wendling2f921f82009-05-15 09:23:25 +0000231
232#ifndef NDEBUG
233void DbgScope::dump() const {
David Greenec230cb92009-12-24 00:31:35 +0000234 raw_ostream &err = dbgs();
Chris Lattner81e8e022009-08-23 00:51:00 +0000235 err.indent(IndentLevel);
Devang Patel32cc43c2010-05-07 20:54:48 +0000236 const MDNode *N = Desc;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000237 N->dump();
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000238 if (AbstractScope)
239 err << "Abstract Scope\n";
Bill Wendling2f921f82009-05-15 09:23:25 +0000240
241 IndentLevel += 2;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000242 if (!Scopes.empty())
243 err << "Children ...\n";
Bill Wendling2f921f82009-05-15 09:23:25 +0000244 for (unsigned i = 0, e = Scopes.size(); i != e; ++i)
245 if (Scopes[i] != this)
246 Scopes[i]->dump();
247
248 IndentLevel -= 2;
249}
250#endif
251
Bill Wendling2f921f82009-05-15 09:23:25 +0000252DbgScope::~DbgScope() {
Bill Wendling2f921f82009-05-15 09:23:25 +0000253 for (unsigned j = 0, M = Variables.size(); j < M; ++j)
254 delete Variables[j];
Bill Wendling2f921f82009-05-15 09:23:25 +0000255}
256
Chris Lattnerf0d6bd32010-04-05 05:11:15 +0000257DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
Devang Patel1a0df9a2010-05-10 22:49:55 +0000258 : Asm(A), MMI(Asm->MMI), FirstCU(0),
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000259 AbbreviationsSet(InitAbbreviationsSetSize),
Devang Patel12563b32010-04-16 23:33:45 +0000260 CurrentFnDbgScope(0), PrevLabel(NULL) {
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000261 NextStringPoolNumber = 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000262
Chris Lattnere58b5472010-04-04 23:10:38 +0000263 DwarfFrameSectionSym = DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0;
264 DwarfStrSectionSym = TextSectionSym = 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000265 DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = 0;
Devang Patel9fc11702010-05-25 23:40:22 +0000266 FunctionBeginSym = FunctionEndSym = 0;
Dan Gohman6e681a52010-06-18 15:56:31 +0000267 {
268 NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
269 beginModule(M);
Torok Edwinf8dba242010-04-07 10:44:46 +0000270 }
Bill Wendling2f921f82009-05-15 09:23:25 +0000271}
272DwarfDebug::~DwarfDebug() {
Bill Wendling2f921f82009-05-15 09:23:25 +0000273}
274
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000275MCSymbol *DwarfDebug::getStringPoolEntry(StringRef Str) {
276 std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str];
277 if (Entry.first) return Entry.first;
278
279 Entry.second = NextStringPoolNumber++;
Chris Lattnera179b522010-04-04 19:25:43 +0000280 return Entry.first = Asm->GetTempSymbol("string", Entry.second);
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000281}
282
283
Devang Patel930143b2009-11-21 02:48:08 +0000284/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling2f921f82009-05-15 09:23:25 +0000285///
Devang Patel930143b2009-11-21 02:48:08 +0000286void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000287 // Profile the node so that we can make it unique.
288 FoldingSetNodeID ID;
289 Abbrev.Profile(ID);
290
291 // Check the set for priors.
292 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
293
294 // If it's newly added.
295 if (InSet == &Abbrev) {
296 // Add to abbreviation list.
297 Abbreviations.push_back(&Abbrev);
298
299 // Assign the vector position + 1 as its number.
300 Abbrev.setNumber(Abbreviations.size());
301 } else {
302 // Assign existing abbreviation number.
303 Abbrev.setNumber(InSet->getNumber());
304 }
305}
306
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000307/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
Devang Patel43ef34d2010-01-05 01:46:14 +0000308/// printer to not emit usual symbol prefix before the symbol name is used then
309/// return linkage name after skipping this special LLVM prefix.
310static StringRef getRealLinkageName(StringRef LinkageName) {
311 char One = '\1';
312 if (LinkageName.startswith(StringRef(&One, 1)))
313 return LinkageName.substr(1);
314 return LinkageName;
315}
316
Devang Patel525dda02009-12-14 16:18:45 +0000317/// createSubprogramDIE - Create new DIE using SP.
Devang Patel185051c2010-09-27 23:15:27 +0000318DIE *DwarfDebug::createSubprogramDIE(DISubprogram SP) {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000319 CompileUnit *SPCU = getCompileUnit(SP);
320 DIE *SPDie = SPCU->getDIE(SP);
Devang Patel525dda02009-12-14 16:18:45 +0000321 if (SPDie)
322 return SPDie;
323
324 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patel1d6bbd42011-04-22 23:10:17 +0000325
326 // DW_TAG_inlined_subroutine may refer to this DIE.
327 SPCU->insertDIE(SP, SPDie);
328
329 // Add to context owner.
330 SPCU->addToContextOwner(SPDie, SP.getContext());
331
332 // Add function template parameters.
333 SPCU->addTemplateParams(*SPDie, SP.getTemplateParams());
334
Devang Patel543596d2011-05-03 21:50:34 +0000335 StringRef LinkageName = SP.getLinkageName();
336 if (!LinkageName.empty())
337 SPCU->addString(SPDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
338 getRealLinkageName(LinkageName));
339
Devang Patel1d6bbd42011-04-22 23:10:17 +0000340 // If this DIE is going to refer declaration info using AT_specification
341 // then there is no need to add other attributes.
342 if (SP.getFunctionDeclaration().isSubprogram())
343 return SPDie;
344
Devang Patelf200b392010-03-02 17:58:15 +0000345 // Constructors and operators for anonymous aggregates do not have names.
Devang Pateld0fa3042010-03-02 01:26:20 +0000346 if (!SP.getName().empty())
Devang Patelf20c4f72011-04-12 22:53:02 +0000347 SPCU->addString(SPDie, dwarf::DW_AT_name, dwarf::DW_FORM_string,
348 SP.getName());
Bill Wendling2f921f82009-05-15 09:23:25 +0000349
Devang Patelf20c4f72011-04-12 22:53:02 +0000350 SPCU->addSourceLine(SPDie, SP);
Bill Wendling2f921f82009-05-15 09:23:25 +0000351
Devang Patel3a24f922010-10-07 22:03:01 +0000352 if (SP.isPrototyped())
Devang Patelf20c4f72011-04-12 22:53:02 +0000353 SPCU->addUInt(SPDie, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
Devang Patel1d6bbd42011-04-22 23:10:17 +0000354
Bill Wendling2f921f82009-05-15 09:23:25 +0000355 // Add Return Type.
Devang Patel236526d2009-12-03 01:25:38 +0000356 DICompositeType SPTy = SP.getType();
357 DIArray Args = SPTy.getTypeArray();
Bill Wendling2f921f82009-05-15 09:23:25 +0000358 unsigned SPTag = SPTy.getTag();
Devang Pateleb57c592009-12-03 19:11:07 +0000359
Devang Patel3b548aa2010-03-08 20:52:55 +0000360 if (Args.getNumElements() == 0 || SPTag != dwarf::DW_TAG_subroutine_type)
Devang Patelf20c4f72011-04-12 22:53:02 +0000361 SPCU->addType(SPDie, SPTy);
Devang Patel236526d2009-12-03 01:25:38 +0000362 else
Devang Patelf20c4f72011-04-12 22:53:02 +0000363 SPCU->addType(SPDie, DIType(Args.getElement(0)));
Devang Patel236526d2009-12-03 01:25:38 +0000364
Devang Pateleb57c592009-12-03 19:11:07 +0000365 unsigned VK = SP.getVirtuality();
366 if (VK) {
Devang Patelf20c4f72011-04-12 22:53:02 +0000367 SPCU->addUInt(SPDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_flag, VK);
368 DIEBlock *Block = SPCU->getDIEBlock();
369 SPCU->addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
370 SPCU->addUInt(Block, 0, dwarf::DW_FORM_udata, SP.getVirtualIndex());
371 SPCU->addBlock(SPDie, dwarf::DW_AT_vtable_elem_location, 0, Block);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000372 ContainingTypeMap.insert(std::make_pair(SPDie,
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000373 SP.getContainingType()));
Devang Pateleb57c592009-12-03 19:11:07 +0000374 }
375
Devang Patel185051c2010-09-27 23:15:27 +0000376 if (!SP.isDefinition()) {
Devang Patelf20c4f72011-04-12 22:53:02 +0000377 SPCU->addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
378
Bill Wendling2f921f82009-05-15 09:23:25 +0000379 // Add arguments. Do not add arguments for subprogram definition. They will
Devang Patel236526d2009-12-03 01:25:38 +0000380 // be handled while processing variables.
381 DICompositeType SPTy = SP.getType();
382 DIArray Args = SPTy.getTypeArray();
383 unsigned SPTag = SPTy.getTag();
384
Bill Wendling2f921f82009-05-15 09:23:25 +0000385 if (SPTag == dwarf::DW_TAG_subroutine_type)
386 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
387 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000388 DIType ATy = DIType(DIType(Args.getElement(i)));
Devang Patelf20c4f72011-04-12 22:53:02 +0000389 SPCU->addType(Arg, ATy);
Devang Patel6efc8e52010-02-06 01:02:37 +0000390 if (ATy.isArtificial())
Devang Patelf20c4f72011-04-12 22:53:02 +0000391 SPCU->addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
Devang Patel930143b2009-11-21 02:48:08 +0000392 SPDie->addChild(Arg);
Bill Wendling2f921f82009-05-15 09:23:25 +0000393 }
394 }
395
Devang Patel999b4992010-02-03 19:57:19 +0000396 if (SP.isArtificial())
Devang Patelf20c4f72011-04-12 22:53:02 +0000397 SPCU->addUInt(SPDie, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
Devang Patel999b4992010-02-03 19:57:19 +0000398
Devang Patelb4e3b902010-04-30 19:38:23 +0000399 if (!SP.isLocalToUnit())
Devang Patelf20c4f72011-04-12 22:53:02 +0000400 SPCU->addUInt(SPDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000401
Devang Patelb4e3b902010-04-30 19:38:23 +0000402 if (SP.isOptimized())
Devang Patelf20c4f72011-04-12 22:53:02 +0000403 SPCU->addUInt(SPDie, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Devang Patelb4e3b902010-04-30 19:38:23 +0000404
Jim Grosbach965a73a2010-07-21 23:03:52 +0000405 if (unsigned isa = Asm->getISAEncoding()) {
Devang Patelf20c4f72011-04-12 22:53:02 +0000406 SPCU->addUInt(SPDie, dwarf::DW_AT_APPLE_isa, dwarf::DW_FORM_flag, isa);
Jim Grosbach965a73a2010-07-21 23:03:52 +0000407 }
408
Bill Wendling2f921f82009-05-15 09:23:25 +0000409 return SPDie;
410}
411
Devang Patel32cc43c2010-05-07 20:54:48 +0000412DbgScope *DwarfDebug::getOrCreateAbstractScope(const MDNode *N) {
Chris Lattner8d2fe282010-03-31 05:36:29 +0000413 assert(N && "Invalid Scope encoding!");
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000414
415 DbgScope *AScope = AbstractScopes.lookup(N);
416 if (AScope)
417 return AScope;
Jim Grosbach042483e2009-11-21 23:12:12 +0000418
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000419 DbgScope *Parent = NULL;
420
421 DIDescriptor Scope(N);
422 if (Scope.isLexicalBlock()) {
423 DILexicalBlock DB(N);
424 DIDescriptor ParentDesc = DB.getContext();
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000425 Parent = getOrCreateAbstractScope(ParentDesc);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000426 }
427
428 AScope = new DbgScope(Parent, DIDescriptor(N), NULL);
429
430 if (Parent)
Devang Patel930143b2009-11-21 02:48:08 +0000431 Parent->addScope(AScope);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000432 AScope->setAbstractScope();
433 AbstractScopes[N] = AScope;
434 if (DIDescriptor(N).isSubprogram())
435 AbstractScopesList.push_back(AScope);
436 return AScope;
437}
Devang Patel75cc16c2009-10-01 20:31:14 +0000438
Devang Patel019922d2010-04-06 23:53:48 +0000439/// isSubprogramContext - Return true if Context is either a subprogram
440/// or another context nested inside a subprogram.
Devang Patel32cc43c2010-05-07 20:54:48 +0000441static bool isSubprogramContext(const MDNode *Context) {
Devang Patel019922d2010-04-06 23:53:48 +0000442 if (!Context)
443 return false;
444 DIDescriptor D(Context);
445 if (D.isSubprogram())
446 return true;
447 if (D.isType())
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000448 return isSubprogramContext(DIType(Context).getContext());
Devang Patel019922d2010-04-06 23:53:48 +0000449 return false;
450}
451
Jim Grosbach042483e2009-11-21 23:12:12 +0000452/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel930143b2009-11-21 02:48:08 +0000453/// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
454/// If there are global variables in this scope then create and insert
455/// DIEs for these variables.
Devang Patel32cc43c2010-05-07 20:54:48 +0000456DIE *DwarfDebug::updateSubprogramScopeDIE(const MDNode *SPNode) {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000457 CompileUnit *SPCU = getCompileUnit(SPNode);
458 DIE *SPDie = SPCU->getDIE(SPNode);
Devang Patela37a95e2010-07-07 22:20:57 +0000459
Chris Lattner3a383cb2010-04-05 00:13:49 +0000460 assert(SPDie && "Unable to find subprogram DIE!");
461 DISubprogram SP(SPNode);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000462
Devang Patel1d6bbd42011-04-22 23:10:17 +0000463 DISubprogram SPDecl = SP.getFunctionDeclaration();
464 if (SPDecl.isSubprogram())
465 // Refer function declaration directly.
Devang Patelf20c4f72011-04-12 22:53:02 +0000466 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
Devang Patel1d6bbd42011-04-22 23:10:17 +0000467 createSubprogramDIE(SPDecl));
468 else {
469 // There is not any need to generate specification DIE for a function
470 // defined at compile unit level. If a function is defined inside another
471 // function then gdb prefers the definition at top level and but does not
472 // expect specification DIE in parent function. So avoid creating
473 // specification DIE for a function defined inside a function.
474 if (SP.isDefinition() && !SP.getContext().isCompileUnit() &&
475 !SP.getContext().isFile() &&
476 !isSubprogramContext(SP.getContext())) {
477 SPCU-> addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
478
479 // Add arguments.
480 DICompositeType SPTy = SP.getType();
481 DIArray Args = SPTy.getTypeArray();
482 unsigned SPTag = SPTy.getTag();
483 if (SPTag == dwarf::DW_TAG_subroutine_type)
484 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
485 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
486 DIType ATy = DIType(DIType(Args.getElement(i)));
487 SPCU->addType(Arg, ATy);
488 if (ATy.isArtificial())
489 SPCU->addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
490 SPDie->addChild(Arg);
491 }
492 DIE *SPDeclDie = SPDie;
493 SPDie = new DIE(dwarf::DW_TAG_subprogram);
494 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
495 SPDeclDie);
496 SPCU->addDie(SPDie);
497 }
Chris Lattner3a383cb2010-04-05 00:13:49 +0000498 }
Devang Patela37a95e2010-07-07 22:20:57 +0000499 // Pick up abstract subprogram DIE.
500 if (DIE *AbsSPDIE = AbstractSPDies.lookup(SPNode)) {
501 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patelf20c4f72011-04-12 22:53:02 +0000502 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin,
503 dwarf::DW_FORM_ref4, AbsSPDIE);
Devang Patela37a95e2010-07-07 22:20:57 +0000504 SPCU->addDie(SPDie);
505 }
506
Devang Patelf20c4f72011-04-12 22:53:02 +0000507 SPCU->addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
508 Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber()));
509 SPCU->addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
510 Asm->GetTempSymbol("func_end", Asm->getFunctionNumber()));
Chris Lattner3a383cb2010-04-05 00:13:49 +0000511 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
512 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
Devang Patelf20c4f72011-04-12 22:53:02 +0000513 SPCU->addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Devang Patel6efc8e52010-02-06 01:02:37 +0000514
Chris Lattner3a383cb2010-04-05 00:13:49 +0000515 return SPDie;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000516}
517
Jim Grosbach042483e2009-11-21 23:12:12 +0000518/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel930143b2009-11-21 02:48:08 +0000519/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
520DIE *DwarfDebug::constructLexicalScopeDIE(DbgScope *Scope) {
Devang Patel6c74a872010-04-27 19:46:33 +0000521
522 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
523 if (Scope->isAbstractScope())
524 return ScopeDIE;
525
526 const SmallVector<DbgRange, 4> &Ranges = Scope->getRanges();
527 if (Ranges.empty())
528 return 0;
529
Devang Patelf20c4f72011-04-12 22:53:02 +0000530 CompileUnit *TheCU = getCompileUnit(Scope->getScopeNode());
Devang Patel6c74a872010-04-27 19:46:33 +0000531 SmallVector<DbgRange, 4>::const_iterator RI = Ranges.begin();
532 if (Ranges.size() > 1) {
533 // .debug_range section has not been laid out yet. Emit offset in
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000534 // .debug_range as a uint, size 4, for now. emitDIE will handle
Devang Patel6c74a872010-04-27 19:46:33 +0000535 // DW_AT_ranges appropriately.
Devang Patelf20c4f72011-04-12 22:53:02 +0000536 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
537 DebugRangeSymbols.size() * Asm->getTargetData().getPointerSize());
Devang Patel6c74a872010-04-27 19:46:33 +0000538 for (SmallVector<DbgRange, 4>::const_iterator RI = Ranges.begin(),
539 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patel9fc11702010-05-25 23:40:22 +0000540 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
541 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
Devang Patel6c74a872010-04-27 19:46:33 +0000542 }
543 DebugRangeSymbols.push_back(NULL);
544 DebugRangeSymbols.push_back(NULL);
545 return ScopeDIE;
546 }
547
Devang Patel9fc11702010-05-25 23:40:22 +0000548 const MCSymbol *Start = getLabelBeforeInsn(RI->first);
549 const MCSymbol *End = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000550
Devang Patel9fc11702010-05-25 23:40:22 +0000551 if (End == 0) return 0;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000552
Chris Lattnere13c3722010-03-09 01:58:53 +0000553 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
554 assert(End->isDefined() && "Invalid end label for an inlined scope!");
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000555
Devang Patelf20c4f72011-04-12 22:53:02 +0000556 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start);
557 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, End);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000558
559 return ScopeDIE;
560}
561
Devang Patel930143b2009-11-21 02:48:08 +0000562/// constructInlinedScopeDIE - This scope represents inlined body of
563/// a function. Construct DIE to represent this concrete inlined copy
564/// of the function.
565DIE *DwarfDebug::constructInlinedScopeDIE(DbgScope *Scope) {
Devang Patel6c74a872010-04-27 19:46:33 +0000566
567 const SmallVector<DbgRange, 4> &Ranges = Scope->getRanges();
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000568 assert (Ranges.empty() == false
Devang Patel6c74a872010-04-27 19:46:33 +0000569 && "DbgScope does not have instruction markers!");
570
571 // FIXME : .debug_inlined section specification does not clearly state how
572 // to emit inlined scope that is split into multiple instruction ranges.
573 // For now, use first instruction range and emit low_pc/high_pc pair and
574 // corresponding .debug_inlined section entry for this pair.
575 SmallVector<DbgRange, 4>::const_iterator RI = Ranges.begin();
Devang Patel9fc11702010-05-25 23:40:22 +0000576 const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first);
577 const MCSymbol *EndLabel = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000578
Devang Patel4c6bd662010-07-08 22:39:20 +0000579 if (StartLabel == 0 || EndLabel == 0) {
Devang Patel6c74a872010-04-27 19:46:33 +0000580 assert (0 && "Unexpected Start and End labels for a inlined scope!");
581 return 0;
582 }
Chris Lattnere13c3722010-03-09 01:58:53 +0000583 assert(StartLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000584 "Invalid starting label for an inlined scope!");
Chris Lattnere13c3722010-03-09 01:58:53 +0000585 assert(EndLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000586 "Invalid end label for an inlined scope!");
Devang Patel6c74a872010-04-27 19:46:33 +0000587
Devang Patel3b548aa2010-03-08 20:52:55 +0000588 if (!Scope->getScopeNode())
Devang Patelbc97f6b2010-03-08 19:20:38 +0000589 return NULL;
Devang Patel3b548aa2010-03-08 20:52:55 +0000590 DIScope DS(Scope->getScopeNode());
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000591 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
592
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000593 DISubprogram InlinedSP = getDISubprogram(DS);
Devang Patel1a0df9a2010-05-10 22:49:55 +0000594 CompileUnit *TheCU = getCompileUnit(InlinedSP);
595 DIE *OriginDIE = TheCU->getDIE(InlinedSP);
Chris Lattner8d2fe282010-03-31 05:36:29 +0000596 assert(OriginDIE && "Unable to find Origin DIE!");
Devang Patelf20c4f72011-04-12 22:53:02 +0000597 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
598 dwarf::DW_FORM_ref4, OriginDIE);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000599
Devang Patelf20c4f72011-04-12 22:53:02 +0000600 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, StartLabel);
601 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, EndLabel);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000602
603 InlinedSubprogramDIEs.insert(OriginDIE);
604
605 // Track the start label for this inlined function.
Devang Patel32cc43c2010-05-07 20:54:48 +0000606 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000607 I = InlineInfo.find(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000608
609 if (I == InlineInfo.end()) {
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000610 InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel,
Jim Grosbach00e9c612009-11-22 19:20:36 +0000611 ScopeDIE));
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000612 InlinedSPNodes.push_back(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000613 } else
Chris Lattner085b6522010-03-09 00:31:02 +0000614 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000615
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000616 DILocation DL(Scope->getInlinedAt());
Devang Patelf20c4f72011-04-12 22:53:02 +0000617 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, TheCU->getID());
618 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000619
620 return ScopeDIE;
621}
622
Devang Patel930143b2009-11-21 02:48:08 +0000623
624/// constructVariableDIE - Construct a DIE for the given DbgVariable.
Devang Patel9ccfb642009-12-09 18:24:21 +0000625DIE *DwarfDebug::constructVariableDIE(DbgVariable *DV, DbgScope *Scope) {
Devang Patel6d9f9fe2010-08-09 21:01:39 +0000626 StringRef Name = DV->getName();
Devang Patel2d9caf92009-11-25 17:36:49 +0000627 if (Name.empty())
Devang Patel97f99fa2009-11-13 02:25:26 +0000628 return NULL;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000629
630 // Translate tag to proper Dwarf tag. The result variable is dropped for
631 // now.
632 unsigned Tag;
Devang Patel6d9f9fe2010-08-09 21:01:39 +0000633 switch (DV->getTag()) {
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000634 case dwarf::DW_TAG_return_variable:
635 return NULL;
636 case dwarf::DW_TAG_arg_variable:
637 Tag = dwarf::DW_TAG_formal_parameter;
638 break;
639 case dwarf::DW_TAG_auto_variable: // fall thru
640 default:
641 Tag = dwarf::DW_TAG_variable;
642 break;
643 }
644
645 // Define variable debug information entry.
646 DIE *VariableDie = new DIE(Tag);
Devang Patel2606f4d2011-04-25 23:05:21 +0000647 CompileUnit *VariableCU = getCompileUnit(DV->getVariable());
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000648 DIE *AbsDIE = NULL;
Devang Patele1c53f22010-05-20 16:36:41 +0000649 DenseMap<const DbgVariable *, const DbgVariable *>::iterator
650 V2AVI = VarToAbstractVarMap.find(DV);
651 if (V2AVI != VarToAbstractVarMap.end())
652 AbsDIE = V2AVI->second->getDIE();
Jim Grosbach042483e2009-11-21 23:12:12 +0000653
Devang Patele1c53f22010-05-20 16:36:41 +0000654 if (AbsDIE)
Devang Patel2606f4d2011-04-25 23:05:21 +0000655 VariableCU->addDIEEntry(VariableDie, dwarf::DW_AT_abstract_origin,
Devang Patelf20c4f72011-04-12 22:53:02 +0000656 dwarf::DW_FORM_ref4, AbsDIE);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000657 else {
Devang Patel2606f4d2011-04-25 23:05:21 +0000658 VariableCU->addString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string,
659 Name);
660 VariableCU->addSourceLine(VariableDie, DV->getVariable());
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000661
662 // Add variable type.
Devang Patel2606f4d2011-04-25 23:05:21 +0000663 VariableCU->addType(VariableDie, DV->getType());
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000664 }
665
Devang Patel6d9f9fe2010-08-09 21:01:39 +0000666 if (Tag == dwarf::DW_TAG_formal_parameter && DV->getType().isArtificial())
Devang Patel2606f4d2011-04-25 23:05:21 +0000667 VariableCU->addUInt(VariableDie, dwarf::DW_AT_artificial,
668 dwarf::DW_FORM_flag, 1);
Devang Patelbea08d12010-09-29 23:07:21 +0000669 else if (DIVariable(DV->getVariable()).isArtificial())
Devang Patel2606f4d2011-04-25 23:05:21 +0000670 VariableCU->addUInt(VariableDie, dwarf::DW_AT_artificial,
671 dwarf::DW_FORM_flag, 1);
Devang Patel9fc11702010-05-25 23:40:22 +0000672
673 if (Scope->isAbstractScope()) {
674 DV->setDIE(VariableDie);
675 return VariableDie;
676 }
677
678 // Add variable address.
679
680 unsigned Offset = DV->getDotDebugLocOffset();
681 if (Offset != ~0U) {
Devang Patel2606f4d2011-04-25 23:05:21 +0000682 VariableCU->addLabel(VariableDie, dwarf::DW_AT_location, dwarf::DW_FORM_data4,
Devang Patel9fc11702010-05-25 23:40:22 +0000683 Asm->GetTempSymbol("debug_loc", Offset));
684 DV->setDIE(VariableDie);
685 UseDotDebugLocEntry.insert(VariableDie);
686 return VariableDie;
687 }
688
689 // Check if variable is described by a DBG_VALUE instruction.
690 DenseMap<const DbgVariable *, const MachineInstr *>::iterator DVI =
691 DbgVariableToDbgInstMap.find(DV);
692 if (DVI != DbgVariableToDbgInstMap.end()) {
693 const MachineInstr *DVInsn = DVI->second;
Devang Patel9fc11702010-05-25 23:40:22 +0000694 bool updated = false;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000695 // FIXME : Handle getNumOperands != 3
Devang Patel9fc11702010-05-25 23:40:22 +0000696 if (DVInsn->getNumOperands() == 3) {
Devang Patel86ec8b32010-08-31 22:22:42 +0000697 if (DVInsn->getOperand(0).isReg()) {
698 const MachineOperand RegOp = DVInsn->getOperand(0);
699 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
700 if (DVInsn->getOperand(1).isImm() &&
701 TRI->getFrameRegister(*Asm->MF) == RegOp.getReg()) {
Devang Patel77dc5412011-04-27 22:45:24 +0000702 unsigned FrameReg = 0;
703 const TargetFrameLowering *TFI = Asm->TM.getFrameLowering();
704 int Offset =
705 TFI->getFrameIndexReference(*Asm->MF,
706 DVInsn->getOperand(1).getImm(),
707 FrameReg);
708 MachineLocation Location(FrameReg, Offset);
709 VariableCU->addVariableAddress(DV, VariableDie, Location);
710
711 } else if (RegOp.getReg())
712 VariableCU->addVariableAddress(DV, VariableDie,
713 MachineLocation(RegOp.getReg()));
714 updated = true;
Devang Patel86ec8b32010-08-31 22:22:42 +0000715 }
Devang Patel9fc11702010-05-25 23:40:22 +0000716 else if (DVInsn->getOperand(0).isImm())
Devang Patel2606f4d2011-04-25 23:05:21 +0000717 updated = VariableCU->addConstantValue(VariableDie,
718 DVInsn->getOperand(0));
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000719 else if (DVInsn->getOperand(0).isFPImm())
720 updated =
Devang Patel2606f4d2011-04-25 23:05:21 +0000721 VariableCU->addConstantFPValue(VariableDie, DVInsn->getOperand(0));
Devang Patel9fc11702010-05-25 23:40:22 +0000722 } else {
Devang Patel77dc5412011-04-27 22:45:24 +0000723 VariableCU->addVariableAddress(DV, VariableDie,
724 Asm->getDebugValueLocation(DVInsn));
725 updated = true;
Devang Patel9fc11702010-05-25 23:40:22 +0000726 }
727 if (!updated) {
728 // If variableDie is not updated then DBG_VALUE instruction does not
729 // have valid variable info.
730 delete VariableDie;
731 return NULL;
732 }
733 DV->setDIE(VariableDie);
734 return VariableDie;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000735 }
Devang Patel9fc11702010-05-25 23:40:22 +0000736
737 // .. else use frame index, if available.
Devang Patel9fc11702010-05-25 23:40:22 +0000738 int FI = 0;
Devang Patel77dc5412011-04-27 22:45:24 +0000739 if (findVariableFrameIndex(DV, &FI)) {
740 unsigned FrameReg = 0;
741 const TargetFrameLowering *TFI = Asm->TM.getFrameLowering();
742 int Offset =
743 TFI->getFrameIndexReference(*Asm->MF, FI, FrameReg);
744 MachineLocation Location(FrameReg, Offset);
745 VariableCU->addVariableAddress(DV, VariableDie, Location);
746 }
747
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000748 DV->setDIE(VariableDie);
749 return VariableDie;
750
751}
Devang Patel930143b2009-11-21 02:48:08 +0000752
Devang Patelf20c4f72011-04-12 22:53:02 +0000753void CompileUnit::addPubTypes(DISubprogram SP) {
Devang Patel04d2f2d2009-11-24 01:14:22 +0000754 DICompositeType SPTy = SP.getType();
755 unsigned SPTag = SPTy.getTag();
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000756 if (SPTag != dwarf::DW_TAG_subroutine_type)
Devang Patel04d2f2d2009-11-24 01:14:22 +0000757 return;
758
759 DIArray Args = SPTy.getTypeArray();
Devang Patel04d2f2d2009-11-24 01:14:22 +0000760 for (unsigned i = 0, e = Args.getNumElements(); i != e; ++i) {
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000761 DIType ATy(Args.getElement(i));
Devang Patel8d6a2b72010-05-07 21:45:47 +0000762 if (!ATy.Verify())
Devang Patel04d2f2d2009-11-24 01:14:22 +0000763 continue;
764 DICompositeType CATy = getDICompositeType(ATy);
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000765 if (DIDescriptor(CATy).Verify() && !CATy.getName().empty()
Devang Patel12d150e2010-04-13 20:35:04 +0000766 && !CATy.isForwardDecl()) {
Devang Patelf20c4f72011-04-12 22:53:02 +0000767 if (DIEEntry *Entry = getDIEEntry(CATy))
768 addGlobalType(CATy.getName(), Entry->getEntry());
Devang Patel04d2f2d2009-11-24 01:14:22 +0000769 }
770 }
771}
772
Devang Patel930143b2009-11-21 02:48:08 +0000773/// constructScopeDIE - Construct a DIE for this scope.
774DIE *DwarfDebug::constructScopeDIE(DbgScope *Scope) {
Devang Patel3b548aa2010-03-08 20:52:55 +0000775 if (!Scope || !Scope->getScopeNode())
776 return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000777
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000778 SmallVector <DIE *, 8> Children;
Devang Patel6c622ef2011-03-01 22:58:55 +0000779
780 // Collect arguments for current function.
781 if (Scope == CurrentFnDbgScope)
782 for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i)
783 if (DbgVariable *ArgDV = CurrentFnArguments[i])
784 if (DIE *Arg = constructVariableDIE(ArgDV, Scope))
785 Children.push_back(Arg);
786
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000787 // Collect lexical scope childrens first.
788 const SmallVector<DbgVariable *, 8> &Variables = Scope->getDbgVariables();
789 for (unsigned i = 0, N = Variables.size(); i < N; ++i)
790 if (DIE *Variable = constructVariableDIE(Variables[i], Scope))
791 Children.push_back(Variable);
792 const SmallVector<DbgScope *, 4> &Scopes = Scope->getScopes();
793 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
794 if (DIE *Nested = constructScopeDIE(Scopes[j]))
795 Children.push_back(Nested);
Devang Patel3b548aa2010-03-08 20:52:55 +0000796 DIScope DS(Scope->getScopeNode());
797 DIE *ScopeDIE = NULL;
798 if (Scope->getInlinedAt())
799 ScopeDIE = constructInlinedScopeDIE(Scope);
800 else if (DS.isSubprogram()) {
Devang Pateld10b2af2010-06-28 20:53:04 +0000801 ProcessedSPNodes.insert(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000802 if (Scope->isAbstractScope()) {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000803 ScopeDIE = getCompileUnit(DS)->getDIE(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000804 // Note down abstract DIE.
805 if (ScopeDIE)
806 AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
807 }
Devang Patel3b548aa2010-03-08 20:52:55 +0000808 else
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000809 ScopeDIE = updateSubprogramScopeDIE(DS);
Devang Patel3b548aa2010-03-08 20:52:55 +0000810 }
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000811 else {
812 // There is no need to emit empty lexical block DIE.
813 if (Children.empty())
814 return NULL;
Devang Patel3b548aa2010-03-08 20:52:55 +0000815 ScopeDIE = constructLexicalScopeDIE(Scope);
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000816 }
817
Devang Patel23b2ae62010-03-29 22:59:58 +0000818 if (!ScopeDIE) return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000819
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000820 // Add children
821 for (SmallVector<DIE *, 8>::iterator I = Children.begin(),
822 E = Children.end(); I != E; ++I)
823 ScopeDIE->addChild(*I);
Devang Patel04d2f2d2009-11-24 01:14:22 +0000824
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000825 if (DS.isSubprogram())
Devang Patelf20c4f72011-04-12 22:53:02 +0000826 getCompileUnit(DS)->addPubTypes(DISubprogram(DS));
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000827
Devang Patel04d2f2d2009-11-24 01:14:22 +0000828 return ScopeDIE;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000829}
830
Bill Wendling2b128d72009-05-20 23:19:06 +0000831/// GetOrCreateSourceID - Look up the source id with the given directory and
832/// source file names. If none currently exists, create a new id and insert it
833/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
834/// maps as well.
Devang Patel498877d2010-07-24 00:53:22 +0000835
Devang Patele01b75c2011-03-24 20:30:50 +0000836unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
837 StringRef DirName) {
Devang Patel871d0b12010-09-16 20:57:49 +0000838 // If FE did not provide a file name, then assume stdin.
839 if (FileName.empty())
Devang Patele01b75c2011-03-24 20:30:50 +0000840 return GetOrCreateSourceID("<stdin>", StringRef());
841
842 // MCStream expects full path name as filename.
843 if (!DirName.empty() && !FileName.startswith("/")) {
844 std::string FullPathName(DirName.data());
845 if (!DirName.endswith("/"))
846 FullPathName += "/";
847 FullPathName += FileName.data();
848 // Here FullPathName will be copied into StringMap by GetOrCreateSourceID.
849 return GetOrCreateSourceID(StringRef(FullPathName), StringRef());
850 }
Devang Patel871d0b12010-09-16 20:57:49 +0000851
Rafael Espindola67c6ab82010-11-18 02:04:25 +0000852 StringMapEntry<unsigned> &Entry = SourceIdMap.GetOrCreateValue(FileName);
853 if (Entry.getValue())
854 return Entry.getValue();
Bill Wendling2b128d72009-05-20 23:19:06 +0000855
Rafael Espindola67c6ab82010-11-18 02:04:25 +0000856 unsigned SrcId = SourceIdMap.size();
857 Entry.setValue(SrcId);
Bill Wendling2b128d72009-05-20 23:19:06 +0000858
Rafael Espindola67c6ab82010-11-18 02:04:25 +0000859 // Print out a .file directive to specify files for .loc directives.
Devang Patele01b75c2011-03-24 20:30:50 +0000860 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, Entry.getKey());
Bill Wendling2b128d72009-05-20 23:19:06 +0000861
862 return SrcId;
863}
864
Devang Patel1f4690c2009-12-15 19:16:48 +0000865/// getOrCreateNameSpace - Create a DIE for DINameSpace.
Devang Patelf20c4f72011-04-12 22:53:02 +0000866DIE *CompileUnit::getOrCreateNameSpace(DINameSpace NS) {
867 DIE *NDie = getDIE(NS);
Devang Patel1f4690c2009-12-15 19:16:48 +0000868 if (NDie)
869 return NDie;
870 NDie = new DIE(dwarf::DW_TAG_namespace);
Devang Patelf20c4f72011-04-12 22:53:02 +0000871 insertDIE(NS, NDie);
Devang Patel1f4690c2009-12-15 19:16:48 +0000872 if (!NS.getName().empty())
873 addString(NDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, NS.getName());
Devang Patelb6511a32010-08-09 20:20:05 +0000874 addSourceLine(NDie, NS);
Devang Patel1f4690c2009-12-15 19:16:48 +0000875 addToContextOwner(NDie, NS.getContext());
876 return NDie;
877}
878
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000879/// constructCompileUnit - Create new CompileUnit for the given
Devang Patel1a0df9a2010-05-10 22:49:55 +0000880/// metadata node with tag DW_TAG_compile_unit.
Devang Patel32cc43c2010-05-07 20:54:48 +0000881void DwarfDebug::constructCompileUnit(const MDNode *N) {
Devang Patel80ae3492009-08-28 23:24:31 +0000882 DICompileUnit DIUnit(N);
Devang Patel2d9caf92009-11-25 17:36:49 +0000883 StringRef FN = DIUnit.getFilename();
884 StringRef Dir = DIUnit.getDirectory();
Devang Patele01b75c2011-03-24 20:30:50 +0000885 unsigned ID = GetOrCreateSourceID(FN, Dir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000886
887 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Devang Patelf20c4f72011-04-12 22:53:02 +0000888 CompileUnit *NewCU = new CompileUnit(ID, Die, Asm, this);
889 NewCU->addString(Die, dwarf::DW_AT_producer, dwarf::DW_FORM_string,
890 DIUnit.getProducer());
891 NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2,
892 DIUnit.getLanguage());
893 NewCU->addString(Die, dwarf::DW_AT_name, dwarf::DW_FORM_string, FN);
Devang Patelbd798ce2010-04-26 22:54:28 +0000894 // Use DW_AT_entry_pc instead of DW_AT_low_pc/DW_AT_high_pc pair. This
895 // simplifies debug range entries.
Devang Patelf20c4f72011-04-12 22:53:02 +0000896 NewCU->addUInt(Die, dwarf::DW_AT_entry_pc, dwarf::DW_FORM_addr, 0);
Devang Pateld22ed622010-03-22 23:11:36 +0000897 // DW_AT_stmt_list is a offset of line number information for this
Devang Patel4a213872010-08-24 00:06:12 +0000898 // compile unit in debug_line section.
Rafael Espindolaa7558912011-05-04 17:44:06 +0000899 if(Asm->MAI->doesDwarfRequireRelocationForStmtList())
900 NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Devang Patelf20c4f72011-04-12 22:53:02 +0000901 Asm->GetTempSymbol("section_line"));
Devang Patelea636392010-08-31 23:50:19 +0000902 else
Devang Patelf20c4f72011-04-12 22:53:02 +0000903 NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0);
Bill Wendling2b128d72009-05-20 23:19:06 +0000904
Devang Patel2d9caf92009-11-25 17:36:49 +0000905 if (!Dir.empty())
Devang Patelf20c4f72011-04-12 22:53:02 +0000906 NewCU->addString(Die, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string, Dir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000907 if (DIUnit.isOptimized())
Devang Patelf20c4f72011-04-12 22:53:02 +0000908 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Bill Wendling2b128d72009-05-20 23:19:06 +0000909
Devang Patel2d9caf92009-11-25 17:36:49 +0000910 StringRef Flags = DIUnit.getFlags();
911 if (!Flags.empty())
Devang Patelf20c4f72011-04-12 22:53:02 +0000912 NewCU->addString(Die, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string, Flags);
913
Bill Wendling2b128d72009-05-20 23:19:06 +0000914 unsigned RVer = DIUnit.getRunTimeVersion();
915 if (RVer)
Devang Patelf20c4f72011-04-12 22:53:02 +0000916 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendling2b128d72009-05-20 23:19:06 +0000917 dwarf::DW_FORM_data1, RVer);
918
Devang Patel1a0df9a2010-05-10 22:49:55 +0000919 if (!FirstCU)
920 FirstCU = NewCU;
921 CUMap.insert(std::make_pair(N, NewCU));
Bill Wendling2b128d72009-05-20 23:19:06 +0000922}
923
Devang Patel1a0df9a2010-05-10 22:49:55 +0000924/// getCompielUnit - Get CompileUnit DIE.
925CompileUnit *DwarfDebug::getCompileUnit(const MDNode *N) const {
926 assert (N && "Invalid DwarfDebug::getCompileUnit argument!");
927 DIDescriptor D(N);
928 const MDNode *CUNode = NULL;
929 if (D.isCompileUnit())
930 CUNode = N;
931 else if (D.isSubprogram())
932 CUNode = DISubprogram(N).getCompileUnit();
933 else if (D.isType())
934 CUNode = DIType(N).getCompileUnit();
935 else if (D.isGlobalVariable())
936 CUNode = DIGlobalVariable(N).getCompileUnit();
937 else if (D.isVariable())
938 CUNode = DIVariable(N).getCompileUnit();
939 else if (D.isNameSpace())
940 CUNode = DINameSpace(N).getCompileUnit();
941 else if (D.isFile())
942 CUNode = DIFile(N).getCompileUnit();
943 else
944 return FirstCU;
945
946 DenseMap<const MDNode *, CompileUnit *>::const_iterator I
947 = CUMap.find(CUNode);
948 if (I == CUMap.end())
949 return FirstCU;
950 return I->second;
951}
952
Devang Patela8652672010-08-23 18:25:56 +0000953/// isUnsignedDIType - Return true if type encoding is unsigned.
954static bool isUnsignedDIType(DIType Ty) {
955 DIDerivedType DTy(Ty);
956 if (DTy.Verify())
957 return isUnsignedDIType(DTy.getTypeDerivedFrom());
958
959 DIBasicType BTy(Ty);
960 if (BTy.Verify()) {
961 unsigned Encoding = BTy.getEncoding();
962 if (Encoding == dwarf::DW_ATE_unsigned ||
963 Encoding == dwarf::DW_ATE_unsigned_char)
964 return true;
965 }
966 return false;
967}
Devang Patel1a0df9a2010-05-10 22:49:55 +0000968
Devang Patel2d9e5322011-01-20 00:02:16 +0000969// Return const exprssion if value is a GEP to access merged global
970// constant. e.g.
971// i8* getelementptr ({ i8, i8, i8, i8 }* @_MergedGlobals, i32 0, i32 0)
972static const ConstantExpr *getMergedGlobalExpr(const Value *V) {
973 const ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(V);
974 if (!CE || CE->getNumOperands() != 3 ||
975 CE->getOpcode() != Instruction::GetElementPtr)
976 return NULL;
977
978 // First operand points to a global value.
979 if (!isa<GlobalValue>(CE->getOperand(0)))
980 return NULL;
981
982 // Second operand is zero.
983 const ConstantInt *CI =
984 dyn_cast_or_null<ConstantInt>(CE->getOperand(1));
985 if (!CI || !CI->isZero())
986 return NULL;
987
988 // Third operand is offset.
989 if (!isa<ConstantInt>(CE->getOperand(2)))
990 return NULL;
991
992 return CE;
993}
994
Devang Patel1a0df9a2010-05-10 22:49:55 +0000995/// constructGlobalVariableDIE - Construct global variable DIE.
Devang Patel32cc43c2010-05-07 20:54:48 +0000996void DwarfDebug::constructGlobalVariableDIE(const MDNode *N) {
Devang Patel469c12d22010-08-10 01:37:23 +0000997 DIGlobalVariable GV(N);
Daniel Dunbarc418d6b2009-09-19 20:40:05 +0000998
Devang Patelf5d53602009-09-04 23:59:07 +0000999 // If debug information is malformed then ignore it.
Devang Patel469c12d22010-08-10 01:37:23 +00001000 if (GV.Verify() == false)
Devang Patelf5d53602009-09-04 23:59:07 +00001001 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001002
1003 // Check for pre-existence.
Devang Patel1a0df9a2010-05-10 22:49:55 +00001004 CompileUnit *TheCU = getCompileUnit(N);
Devang Patel469c12d22010-08-10 01:37:23 +00001005 if (TheCU->getDIE(GV))
Devang Patel0751a282009-06-26 01:49:18 +00001006 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001007
Devang Patel469c12d22010-08-10 01:37:23 +00001008 DIType GTy = GV.getType();
Devang Patelb2197462010-08-10 07:11:13 +00001009 DIE *VariableDIE = new DIE(GV.getTag());
1010
1011 bool isGlobalVariable = GV.getGlobal() != NULL;
Bill Wendling2b128d72009-05-20 23:19:06 +00001012
Devang Patel469c12d22010-08-10 01:37:23 +00001013 // Add name.
Devang Patelf20c4f72011-04-12 22:53:02 +00001014 TheCU->addString(VariableDIE, dwarf::DW_AT_name, dwarf::DW_FORM_string,
1015 GV.getDisplayName());
Devang Patel469c12d22010-08-10 01:37:23 +00001016 StringRef LinkageName = GV.getLinkageName();
Devang Patelb2197462010-08-10 07:11:13 +00001017 if (!LinkageName.empty() && isGlobalVariable)
Devang Patelf20c4f72011-04-12 22:53:02 +00001018 TheCU->addString(VariableDIE, dwarf::DW_AT_MIPS_linkage_name,
1019 dwarf::DW_FORM_string,
1020 getRealLinkageName(LinkageName));
Devang Patel469c12d22010-08-10 01:37:23 +00001021 // Add type.
Devang Patelf20c4f72011-04-12 22:53:02 +00001022 TheCU->addType(VariableDIE, GTy);
Devang Patel12d150e2010-04-13 20:35:04 +00001023 if (GTy.isCompositeType() && !GTy.getName().empty()
1024 && !GTy.isForwardDecl()) {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001025 DIEEntry *Entry = TheCU->getDIEEntry(GTy);
Chris Lattner8d2fe282010-03-31 05:36:29 +00001026 assert(Entry && "Missing global type!");
Devang Patel1a0df9a2010-05-10 22:49:55 +00001027 TheCU->addGlobalType(GTy.getName(), Entry->getEntry());
Devang Patel04d2f2d2009-11-24 01:14:22 +00001028 }
Devang Patel469c12d22010-08-10 01:37:23 +00001029 // Add scoping info.
1030 if (!GV.isLocalToUnit()) {
Devang Patelf20c4f72011-04-12 22:53:02 +00001031 TheCU->addUInt(VariableDIE, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
Devang Patel469c12d22010-08-10 01:37:23 +00001032 // Expose as global.
1033 TheCU->addGlobal(GV.getName(), VariableDIE);
1034 }
1035 // Add line number info.
Devang Patelf20c4f72011-04-12 22:53:02 +00001036 TheCU->addSourceLine(VariableDIE, GV);
Devang Patel469c12d22010-08-10 01:37:23 +00001037 // Add to map.
1038 TheCU->insertDIE(N, VariableDIE);
1039 // Add to context owner.
1040 DIDescriptor GVContext = GV.getContext();
Devang Patelf20c4f72011-04-12 22:53:02 +00001041 TheCU->addToContextOwner(VariableDIE, GVContext);
Devang Patel469c12d22010-08-10 01:37:23 +00001042 // Add location.
Devang Patelb2197462010-08-10 07:11:13 +00001043 if (isGlobalVariable) {
1044 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Devang Patelf20c4f72011-04-12 22:53:02 +00001045 TheCU->addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
1046 TheCU->addLabel(Block, 0, dwarf::DW_FORM_udata,
Devang Patelb2197462010-08-10 07:11:13 +00001047 Asm->Mang->getSymbol(GV.getGlobal()));
1048 // Do not create specification DIE if context is either compile unit
1049 // or a subprogram.
1050 if (GV.isDefinition() && !GVContext.isCompileUnit() &&
1051 !GVContext.isFile() && !isSubprogramContext(GVContext)) {
1052 // Create specification DIE.
1053 DIE *VariableSpecDIE = new DIE(dwarf::DW_TAG_variable);
Devang Patelf20c4f72011-04-12 22:53:02 +00001054 TheCU->addDIEEntry(VariableSpecDIE, dwarf::DW_AT_specification,
Devang Patelb2197462010-08-10 07:11:13 +00001055 dwarf::DW_FORM_ref4, VariableDIE);
Devang Patelf20c4f72011-04-12 22:53:02 +00001056 TheCU->addBlock(VariableSpecDIE, dwarf::DW_AT_location, 0, Block);
1057 TheCU->addUInt(VariableDIE, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Devang Patelb2197462010-08-10 07:11:13 +00001058 TheCU->addDie(VariableSpecDIE);
1059 } else {
Devang Patelf20c4f72011-04-12 22:53:02 +00001060 TheCU->addBlock(VariableDIE, dwarf::DW_AT_location, 0, Block);
Devang Patelb2197462010-08-10 07:11:13 +00001061 }
Devang Patel70eb9822011-01-06 21:39:25 +00001062 } else if (ConstantInt *CI =
1063 dyn_cast_or_null<ConstantInt>(GV.getConstant()))
Devang Patelf20c4f72011-04-12 22:53:02 +00001064 TheCU->addConstantValue(VariableDIE, CI, isUnsignedDIType(GTy));
Devang Patel2d9e5322011-01-20 00:02:16 +00001065 else if (const ConstantExpr *CE = getMergedGlobalExpr(N->getOperand(11))) {
1066 // GV is a merged global.
1067 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Devang Patelf20c4f72011-04-12 22:53:02 +00001068 TheCU->addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
1069 TheCU->addLabel(Block, 0, dwarf::DW_FORM_udata,
1070 Asm->Mang->getSymbol(cast<GlobalValue>(CE->getOperand(0))));
Devang Patel2d9e5322011-01-20 00:02:16 +00001071 ConstantInt *CII = cast<ConstantInt>(CE->getOperand(2));
Devang Patelf20c4f72011-04-12 22:53:02 +00001072 TheCU->addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
1073 TheCU->addUInt(Block, 0, dwarf::DW_FORM_udata, CII->getZExtValue());
1074 TheCU->addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus);
1075 TheCU->addBlock(VariableDIE, dwarf::DW_AT_location, 0, Block);
Devang Patel2d9e5322011-01-20 00:02:16 +00001076 }
Devang Patel70eb9822011-01-06 21:39:25 +00001077
Devang Patel0751a282009-06-26 01:49:18 +00001078 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001079}
1080
Devang Patel1a0df9a2010-05-10 22:49:55 +00001081/// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel32cc43c2010-05-07 20:54:48 +00001082void DwarfDebug::constructSubprogramDIE(const MDNode *N) {
Devang Patel80ae3492009-08-28 23:24:31 +00001083 DISubprogram SP(N);
Bill Wendling2b128d72009-05-20 23:19:06 +00001084
Stuart Hastings4bd3dd92010-04-06 21:38:29 +00001085 // Check for pre-existence.
Devang Patel1a0df9a2010-05-10 22:49:55 +00001086 CompileUnit *TheCU = getCompileUnit(N);
1087 if (TheCU->getDIE(N))
Stuart Hastings4bd3dd92010-04-06 21:38:29 +00001088 return;
1089
Bill Wendling2b128d72009-05-20 23:19:06 +00001090 if (!SP.isDefinition())
1091 // This is a method declaration which will be handled while constructing
1092 // class type.
Devang Patel0751a282009-06-26 01:49:18 +00001093 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001094
Stuart Hastings4bd3dd92010-04-06 21:38:29 +00001095 DIE *SubprogramDie = createSubprogramDIE(SP);
1096
1097 // Add to map.
Devang Patel1a0df9a2010-05-10 22:49:55 +00001098 TheCU->insertDIE(N, SubprogramDie);
Bill Wendling2b128d72009-05-20 23:19:06 +00001099
1100 // Add to context owner.
Devang Patelf20c4f72011-04-12 22:53:02 +00001101 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel512001a2009-12-08 23:21:45 +00001102
Bill Wendling2b128d72009-05-20 23:19:06 +00001103 // Expose as global.
Devang Patel1a0df9a2010-05-10 22:49:55 +00001104 TheCU->addGlobal(SP.getName(), SubprogramDie);
Devang Patel04d2f2d2009-11-24 01:14:22 +00001105
Devang Patel0751a282009-06-26 01:49:18 +00001106 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001107}
1108
Devang Patel930143b2009-11-21 02:48:08 +00001109/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbarbe22ec42009-09-19 20:40:14 +00001110/// content. Create global DIEs and emit initial debug info sections.
1111/// This is inovked by the target AsmPrinter.
Chris Lattner11980022010-04-04 07:48:20 +00001112void DwarfDebug::beginModule(Module *M) {
Devang Patel6c74a872010-04-27 19:46:33 +00001113 if (DisableDebugInfoPrinting)
1114 return;
1115
Devang Patele02e5852011-05-03 16:45:22 +00001116 // If module has named metadata anchors then use them, otherwise scan the module
1117 // using debug info finder to collect debug info.
1118 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
1119 if (CU_Nodes) {
Devang Patelc981f622011-05-04 16:34:02 +00001120
1121 NamedMDNode *GV_Nodes = M->getNamedMetadata("llvm.dbg.gv");
1122 NamedMDNode *SP_Nodes = M->getNamedMetadata("llvm.dbg.sp");
1123 if (!GV_Nodes && !SP_Nodes)
1124 // If there are not any global variables or any functions then
1125 // there is not any debug info in this module.
Devang Patele02e5852011-05-03 16:45:22 +00001126 return;
1127
Devang Patelc981f622011-05-04 16:34:02 +00001128 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i)
1129 constructCompileUnit(CU_Nodes->getOperand(i));
Devang Patele02e5852011-05-03 16:45:22 +00001130
Devang Patelc981f622011-05-04 16:34:02 +00001131 if (GV_Nodes)
1132 for (unsigned i = 0, e = GV_Nodes->getNumOperands(); i != e; ++i)
1133 constructGlobalVariableDIE(GV_Nodes->getOperand(i));
1134
1135 if (SP_Nodes)
1136 for (unsigned i = 0, e = SP_Nodes->getNumOperands(); i != e; ++i)
1137 constructSubprogramDIE(SP_Nodes->getOperand(i));
Devang Patele02e5852011-05-03 16:45:22 +00001138
1139 } else {
1140
1141 DebugInfoFinder DbgFinder;
1142 DbgFinder.processModule(*M);
1143
Devang Patelc981f622011-05-04 16:34:02 +00001144 bool HasDebugInfo = false;
Devang Patele02e5852011-05-03 16:45:22 +00001145 // Scan all the compile-units to see if there are any marked as the main unit.
1146 // if not, we do not generate debug info.
1147 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
1148 E = DbgFinder.compile_unit_end(); I != E; ++I) {
1149 if (DICompileUnit(*I).isMain()) {
1150 HasDebugInfo = true;
1151 break;
1152 }
1153 }
Devang Patelc981f622011-05-04 16:34:02 +00001154 if (!HasDebugInfo) return;
Devang Patele02e5852011-05-03 16:45:22 +00001155
1156 // Create all the compile unit DIEs.
1157 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
1158 E = DbgFinder.compile_unit_end(); I != E; ++I)
1159 constructCompileUnit(*I);
1160
1161 // Create DIEs for each global variable.
1162 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
1163 E = DbgFinder.global_variable_end(); I != E; ++I)
1164 constructGlobalVariableDIE(*I);
1165
1166 // Create DIEs for each subprogram.
1167 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
1168 E = DbgFinder.subprogram_end(); I != E; ++I)
1169 constructSubprogramDIE(*I);
Chris Lattner7cfa70e2010-04-05 02:19:28 +00001170 }
Devang Patele02e5852011-05-03 16:45:22 +00001171
Chris Lattner7cfa70e2010-04-05 02:19:28 +00001172 // Tell MMI that we have debug info.
1173 MMI->setDebugInfoAvailability(true);
Devang Patele02e5852011-05-03 16:45:22 +00001174
Chris Lattnerd442aa32010-04-04 23:17:54 +00001175 // Emit initial sections.
Chris Lattner7cfa70e2010-04-05 02:19:28 +00001176 EmitSectionLabels();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001177
Devang Patel8e06a5e2010-08-10 20:01:20 +00001178 //getOrCreateTypeDIE
1179 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
Devang Patelf20c4f72011-04-12 22:53:02 +00001180 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
1181 DIType Ty(NMD->getOperand(i));
1182 getCompileUnit(Ty)->getOrCreateTypeDIE(Ty);
1183 }
Devang Patel8e06a5e2010-08-10 20:01:20 +00001184
Devang Patel7a554812010-09-28 18:08:20 +00001185 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
Devang Patelf20c4f72011-04-12 22:53:02 +00001186 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
1187 DIType Ty(NMD->getOperand(i));
1188 getCompileUnit(Ty)->getOrCreateTypeDIE(Ty);
1189 }
Devang Patel7a554812010-09-28 18:08:20 +00001190
Bill Wendling2b128d72009-05-20 23:19:06 +00001191 // Prime section data.
Chris Lattner5e693ed2009-07-28 03:13:23 +00001192 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendling2b128d72009-05-20 23:19:06 +00001193}
1194
Devang Patel930143b2009-11-21 02:48:08 +00001195/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling2b128d72009-05-20 23:19:06 +00001196///
Devang Patel930143b2009-11-21 02:48:08 +00001197void DwarfDebug::endModule() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001198 if (!FirstCU) return;
Devang Patelf3b2db62010-06-28 18:25:03 +00001199 const Module *M = MMI->getModule();
Devang Pateld0701282010-08-02 17:32:15 +00001200 DenseMap<const MDNode *, DbgScope *> DeadFnScopeMap;
Devang Patelf3b2db62010-06-28 18:25:03 +00001201 if (NamedMDNode *AllSPs = M->getNamedMetadata("llvm.dbg.sp")) {
1202 for (unsigned SI = 0, SE = AllSPs->getNumOperands(); SI != SE; ++SI) {
1203 if (ProcessedSPNodes.count(AllSPs->getOperand(SI)) != 0) continue;
1204 DISubprogram SP(AllSPs->getOperand(SI));
1205 if (!SP.Verify()) continue;
1206
1207 // Collect info for variables that were optimized out.
Devang Patel18efced2010-07-19 17:53:55 +00001208 if (!SP.isDefinition()) continue;
Devang Patelf3b2db62010-06-28 18:25:03 +00001209 StringRef FName = SP.getLinkageName();
1210 if (FName.empty())
1211 FName = SP.getName();
Devang Patel364bf042010-11-10 22:19:21 +00001212 NamedMDNode *NMD = getFnSpecificMDNode(*(MMI->getModule()), FName);
Devang Patelf3b2db62010-06-28 18:25:03 +00001213 if (!NMD) continue;
1214 unsigned E = NMD->getNumOperands();
1215 if (!E) continue;
1216 DbgScope *Scope = new DbgScope(NULL, DIDescriptor(SP), NULL);
Devang Pateld0701282010-08-02 17:32:15 +00001217 DeadFnScopeMap[SP] = Scope;
Devang Patelf3b2db62010-06-28 18:25:03 +00001218 for (unsigned I = 0; I != E; ++I) {
1219 DIVariable DV(NMD->getOperand(I));
1220 if (!DV.Verify()) continue;
1221 Scope->addVariable(new DbgVariable(DV));
1222 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001223
Devang Patelf3b2db62010-06-28 18:25:03 +00001224 // Construct subprogram DIE and add variables DIEs.
1225 constructSubprogramDIE(SP);
1226 DIE *ScopeDIE = getCompileUnit(SP)->getDIE(SP);
Devang Patel406798a2010-08-09 18:51:29 +00001227 const SmallVector<DbgVariable *, 8> &Variables = Scope->getDbgVariables();
Devang Patelf3b2db62010-06-28 18:25:03 +00001228 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
1229 DIE *VariableDIE = constructVariableDIE(Variables[i], Scope);
1230 if (VariableDIE)
1231 ScopeDIE->addChild(VariableDIE);
1232 }
1233 }
1234 }
Bill Wendling2b128d72009-05-20 23:19:06 +00001235
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001236 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
1237 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
1238 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
1239 DIE *ISP = *AI;
Devang Patelf20c4f72011-04-12 22:53:02 +00001240 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001241 }
1242
Devang Patel32cc43c2010-05-07 20:54:48 +00001243 for (DenseMap<DIE *, const MDNode *>::iterator CI = ContainingTypeMap.begin(),
Devang Pateleb57c592009-12-03 19:11:07 +00001244 CE = ContainingTypeMap.end(); CI != CE; ++CI) {
1245 DIE *SPDie = CI->first;
Devang Patel32cc43c2010-05-07 20:54:48 +00001246 const MDNode *N = dyn_cast_or_null<MDNode>(CI->second);
Devang Pateleb57c592009-12-03 19:11:07 +00001247 if (!N) continue;
Devang Patel1a0df9a2010-05-10 22:49:55 +00001248 DIE *NDie = getCompileUnit(N)->getDIE(N);
Devang Pateleb57c592009-12-03 19:11:07 +00001249 if (!NDie) continue;
Devang Patelf20c4f72011-04-12 22:53:02 +00001250 getCompileUnit(N)->addDIEEntry(SPDie, dwarf::DW_AT_containing_type,
1251 dwarf::DW_FORM_ref4, NDie);
Devang Pateleb57c592009-12-03 19:11:07 +00001252 }
1253
Bill Wendling2b128d72009-05-20 23:19:06 +00001254 // Standard sections final addresses.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001255 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnera179b522010-04-04 19:25:43 +00001256 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001257 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnera179b522010-04-04 19:25:43 +00001258 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendling2b128d72009-05-20 23:19:06 +00001259
1260 // End text sections.
1261 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001262 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnera179b522010-04-04 19:25:43 +00001263 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendling2b128d72009-05-20 23:19:06 +00001264 }
1265
1266 // Emit common frame information.
Devang Patel930143b2009-11-21 02:48:08 +00001267 emitCommonDebugFrame();
Bill Wendling2b128d72009-05-20 23:19:06 +00001268
1269 // Emit function debug frame information
1270 for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(),
1271 E = DebugFrames.end(); I != E; ++I)
Devang Patel930143b2009-11-21 02:48:08 +00001272 emitFunctionDebugFrame(*I);
Bill Wendling2b128d72009-05-20 23:19:06 +00001273
1274 // Compute DIE offsets and sizes.
Devang Patel930143b2009-11-21 02:48:08 +00001275 computeSizeAndOffsets();
Bill Wendling2b128d72009-05-20 23:19:06 +00001276
1277 // Emit all the DIEs into a debug info section
Devang Patel930143b2009-11-21 02:48:08 +00001278 emitDebugInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +00001279
1280 // Corresponding abbreviations into a abbrev section.
Devang Patel930143b2009-11-21 02:48:08 +00001281 emitAbbreviations();
Bill Wendling2b128d72009-05-20 23:19:06 +00001282
Bill Wendling2b128d72009-05-20 23:19:06 +00001283 // Emit info into a debug pubnames section.
Devang Patel930143b2009-11-21 02:48:08 +00001284 emitDebugPubNames();
Bill Wendling2b128d72009-05-20 23:19:06 +00001285
Devang Patel04d2f2d2009-11-24 01:14:22 +00001286 // Emit info into a debug pubtypes section.
1287 emitDebugPubTypes();
1288
Bill Wendling2b128d72009-05-20 23:19:06 +00001289 // Emit info into a debug loc section.
Devang Patel930143b2009-11-21 02:48:08 +00001290 emitDebugLoc();
Bill Wendling2b128d72009-05-20 23:19:06 +00001291
1292 // Emit info into a debug aranges section.
1293 EmitDebugARanges();
1294
1295 // Emit info into a debug ranges section.
Devang Patel930143b2009-11-21 02:48:08 +00001296 emitDebugRanges();
Bill Wendling2b128d72009-05-20 23:19:06 +00001297
1298 // Emit info into a debug macinfo section.
Devang Patel930143b2009-11-21 02:48:08 +00001299 emitDebugMacInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +00001300
1301 // Emit inline info.
Devang Patel930143b2009-11-21 02:48:08 +00001302 emitDebugInlineInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +00001303
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001304 // Emit info into a debug str section.
1305 emitDebugStr();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001306
Devang Pateld0701282010-08-02 17:32:15 +00001307 // clean up.
1308 DeleteContainerSeconds(DeadFnScopeMap);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001309 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1310 E = CUMap.end(); I != E; ++I)
1311 delete I->second;
1312 FirstCU = NULL; // Reset for the next Module, if any.
Bill Wendling2b128d72009-05-20 23:19:06 +00001313}
1314
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001315/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001316DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &Var,
Chris Lattner915c5f92010-04-02 19:42:39 +00001317 DebugLoc ScopeLoc) {
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001318
Devang Patelcfa8e9d2010-05-07 18:11:54 +00001319 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001320 if (AbsDbgVariable)
1321 return AbsDbgVariable;
1322
Devang Patelcfa8e9d2010-05-07 18:11:54 +00001323 LLVMContext &Ctx = Var->getContext();
Chris Lattner915c5f92010-04-02 19:42:39 +00001324 DbgScope *Scope = AbstractScopes.lookup(ScopeLoc.getScope(Ctx));
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001325 if (!Scope)
1326 return NULL;
1327
Devang Patele1c53f22010-05-20 16:36:41 +00001328 AbsDbgVariable = new DbgVariable(Var);
Devang Patel930143b2009-11-21 02:48:08 +00001329 Scope->addVariable(AbsDbgVariable);
Devang Patelcfa8e9d2010-05-07 18:11:54 +00001330 AbstractVariables[Var] = AbsDbgVariable;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001331 return AbsDbgVariable;
1332}
1333
Devang Patel6c622ef2011-03-01 22:58:55 +00001334/// addCurrentFnArgument - If Var is an current function argument that add
1335/// it in CurrentFnArguments list.
1336bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
1337 DbgVariable *Var, DbgScope *Scope) {
1338 if (Scope != CurrentFnDbgScope)
1339 return false;
1340 DIVariable DV = Var->getVariable();
1341 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
1342 return false;
1343 unsigned ArgNo = DV.getArgNumber();
1344 if (ArgNo == 0)
1345 return false;
1346
Devang Patel4ab660b2011-03-03 20:02:02 +00001347 size_t Size = CurrentFnArguments.size();
1348 if (Size == 0)
Devang Patel6c622ef2011-03-01 22:58:55 +00001349 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patel63b3e762011-03-03 21:49:41 +00001350 // llvm::Function argument size is not good indicator of how many
Devang Patel34a7ab42011-03-03 20:08:10 +00001351 // arguments does the function have at source level.
1352 if (ArgNo > Size)
Devang Patel4ab660b2011-03-03 20:02:02 +00001353 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel6c622ef2011-03-01 22:58:55 +00001354 CurrentFnArguments[ArgNo - 1] = Var;
1355 return true;
1356}
1357
Devang Patel490c8ab2010-05-20 19:57:06 +00001358/// collectVariableInfoFromMMITable - Collect variable information from
1359/// side table maintained by MMI.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001360void
Devang Patel490c8ab2010-05-20 19:57:06 +00001361DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction * MF,
1362 SmallPtrSet<const MDNode *, 16> &Processed) {
Chris Lattner3a383cb2010-04-05 00:13:49 +00001363 const LLVMContext &Ctx = Asm->MF->getFunction()->getContext();
Devang Patel475d32a2009-10-06 01:26:37 +00001364 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
1365 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
1366 VE = VMap.end(); VI != VE; ++VI) {
Devang Patel32cc43c2010-05-07 20:54:48 +00001367 const MDNode *Var = VI->first;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001368 if (!Var) continue;
Devang Patele0a94bf2010-05-14 21:01:35 +00001369 Processed.insert(Var);
Chris Lattner915c5f92010-04-02 19:42:39 +00001370 DIVariable DV(Var);
1371 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001372
Chris Lattner915c5f92010-04-02 19:42:39 +00001373 DbgScope *Scope = 0;
Devang Patel32cc43c2010-05-07 20:54:48 +00001374 if (const MDNode *IA = VP.second.getInlinedAt(Ctx))
Chris Lattner915c5f92010-04-02 19:42:39 +00001375 Scope = ConcreteScopes.lookup(IA);
1376 if (Scope == 0)
1377 Scope = DbgScopeMap.lookup(VP.second.getScope(Ctx));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001378
Devang Patelcdb7d442009-11-10 23:20:04 +00001379 // If variable scope is not found then skip this variable.
Chris Lattner915c5f92010-04-02 19:42:39 +00001380 if (Scope == 0)
Devang Patelcdb7d442009-11-10 23:20:04 +00001381 continue;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001382
Devang Patele1c53f22010-05-20 16:36:41 +00001383 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
1384 DbgVariable *RegVar = new DbgVariable(DV);
1385 recordVariableFrameIndex(RegVar, VP.first);
Devang Patel6c622ef2011-03-01 22:58:55 +00001386 if (!addCurrentFnArgument(MF, RegVar, Scope))
1387 Scope->addVariable(RegVar);
Devang Patele1c53f22010-05-20 16:36:41 +00001388 if (AbsDbgVariable) {
1389 recordVariableFrameIndex(AbsDbgVariable, VP.first);
1390 VarToAbstractVarMap[RegVar] = AbsDbgVariable;
1391 }
Devang Patel475d32a2009-10-06 01:26:37 +00001392 }
Devang Patel490c8ab2010-05-20 19:57:06 +00001393}
Devang Patela3e9c9c2010-03-15 18:33:46 +00001394
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001395/// isDbgValueInDefinedReg - Return true if debug value, encoded by
Devang Patel9fc11702010-05-25 23:40:22 +00001396/// DBG_VALUE instruction, is in a defined reg.
1397static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
1398 assert (MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001399 return MI->getNumOperands() == 3 &&
1400 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
1401 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patel9fc11702010-05-25 23:40:22 +00001402}
1403
Devang Patel490c8ab2010-05-20 19:57:06 +00001404/// collectVariableInfo - Populate DbgScope entries with variables' info.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001405void
Devang Patel5c0f85c2010-06-25 22:07:34 +00001406DwarfDebug::collectVariableInfo(const MachineFunction *MF,
1407 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001408
Devang Patel490c8ab2010-05-20 19:57:06 +00001409 /// collection info from MMI table.
1410 collectVariableInfoFromMMITable(MF, Processed);
1411
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001412 for (SmallVectorImpl<const MDNode*>::const_iterator
1413 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
1414 ++UVI) {
1415 const MDNode *Var = *UVI;
1416 if (Processed.count(Var))
Devang Patel490c8ab2010-05-20 19:57:06 +00001417 continue;
1418
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001419 // History contains relevant DBG_VALUE instructions for Var and instructions
1420 // clobbering it.
1421 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1422 if (History.empty())
1423 continue;
1424 const MachineInstr *MInsn = History.front();
Devang Patel9fc11702010-05-25 23:40:22 +00001425
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001426 DIVariable DV(Var);
Devang Patel447cb382011-01-11 21:42:10 +00001427 DbgScope *Scope = NULL;
Devang Patel7a9dedf2010-05-27 20:25:04 +00001428 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
1429 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patelfbd6c452010-05-21 00:10:20 +00001430 Scope = CurrentFnDbgScope;
Devang Patel447cb382011-01-11 21:42:10 +00001431 else
1432 Scope = findDbgScope(MInsn);
Devang Patel490c8ab2010-05-20 19:57:06 +00001433 // If variable scope is not found then skip this variable.
Devang Patelfbd6c452010-05-21 00:10:20 +00001434 if (!Scope)
Devang Patel490c8ab2010-05-20 19:57:06 +00001435 continue;
1436
1437 Processed.insert(DV);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001438 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patel490c8ab2010-05-20 19:57:06 +00001439 DbgVariable *RegVar = new DbgVariable(DV);
Devang Patel6c622ef2011-03-01 22:58:55 +00001440 if (!addCurrentFnArgument(MF, RegVar, Scope))
1441 Scope->addVariable(RegVar);
Devang Patelfbd6c452010-05-21 00:10:20 +00001442 if (DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc())) {
1443 DbgVariableToDbgInstMap[AbsVar] = MInsn;
1444 VarToAbstractVarMap[RegVar] = AbsVar;
Devang Patela3e9c9c2010-03-15 18:33:46 +00001445 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001446
1447 // Simple ranges that are fully coalesced.
1448 if (History.size() <= 1 || (History.size() == 2 &&
1449 MInsn->isIdenticalTo(History.back()))) {
Devang Patel9fc11702010-05-25 23:40:22 +00001450 DbgVariableToDbgInstMap[RegVar] = MInsn;
1451 continue;
1452 }
1453
1454 // handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001455 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001456
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001457 for (SmallVectorImpl<const MachineInstr*>::const_iterator
1458 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
1459 const MachineInstr *Begin = *HI;
1460 assert(Begin->isDebugValue() && "Invalid History entry");
Devang Patel9fc11702010-05-25 23:40:22 +00001461 MachineLocation MLoc;
Devang Patel0e60e672010-08-04 18:40:52 +00001462 if (Begin->getNumOperands() == 3) {
1463 if (Begin->getOperand(0).isReg() && Begin->getOperand(1).isImm())
1464 MLoc.set(Begin->getOperand(0).getReg(), Begin->getOperand(1).getImm());
1465 } else
1466 MLoc = Asm->getDebugValueLocation(Begin);
1467
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001468 // FIXME: emitDebugLoc only understands registers.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001469 if (!MLoc.getReg())
1470 continue;
Jakob Stoklund Olesen9c057ee2011-03-22 00:21:41 +00001471
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001472 // Compute the range for a register location.
1473 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
1474 const MCSymbol *SLabel = 0;
1475
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001476 if (HI + 1 == HE)
1477 // If Begin is the last instruction in History then its value is valid
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001478 // until the end of the function.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001479 SLabel = FunctionEndSym;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001480 else {
1481 const MachineInstr *End = HI[1];
1482 if (End->isDebugValue())
1483 SLabel = getLabelBeforeInsn(End);
1484 else {
1485 // End is a normal instruction clobbering the range.
1486 SLabel = getLabelAfterInsn(End);
1487 assert(SLabel && "Forgot label after clobber instruction");
1488 ++HI;
1489 }
1490 }
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001491
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001492 // The value is valid until the next DBG_VALUE or clobber.
Devang Patel3e021532011-04-28 02:22:40 +00001493 DotDebugLocEntries.push_back(DotDebugLocEntry(FLabel, SLabel, MLoc, Var));
Devang Patel9fc11702010-05-25 23:40:22 +00001494 }
1495 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patela3e9c9c2010-03-15 18:33:46 +00001496 }
Devang Patele0a94bf2010-05-14 21:01:35 +00001497
1498 // Collect info for variables that were optimized out.
Devang Patelad517352010-06-22 01:01:58 +00001499 const Function *F = MF->getFunction();
Devang Patel364bf042010-11-10 22:19:21 +00001500 if (NamedMDNode *NMD = getFnSpecificMDNode(*(F->getParent()), F->getName())) {
Devang Patele0a94bf2010-05-14 21:01:35 +00001501 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
Dan Gohman093cb792010-07-21 18:54:18 +00001502 DIVariable DV(cast<MDNode>(NMD->getOperand(i)));
Devang Patel490c8ab2010-05-20 19:57:06 +00001503 if (!DV || !Processed.insert(DV))
Devang Patele0a94bf2010-05-14 21:01:35 +00001504 continue;
1505 DbgScope *Scope = DbgScopeMap.lookup(DV.getContext());
1506 if (Scope)
Devang Patele1c53f22010-05-20 16:36:41 +00001507 Scope->addVariable(new DbgVariable(DV));
Devang Patele0a94bf2010-05-14 21:01:35 +00001508 }
1509 }
Devang Patel9fc11702010-05-25 23:40:22 +00001510}
Devang Patele0a94bf2010-05-14 21:01:35 +00001511
Devang Patel9fc11702010-05-25 23:40:22 +00001512/// getLabelBeforeInsn - Return Label preceding the instruction.
1513const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001514 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1515 assert(Label && "Didn't insert label before instruction");
1516 return Label;
Devang Patel9fc11702010-05-25 23:40:22 +00001517}
1518
1519/// getLabelAfterInsn - Return Label immediately following the instruction.
1520const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001521 return LabelsAfterInsn.lookup(MI);
Devang Patel475d32a2009-10-06 01:26:37 +00001522}
1523
Devang Patelb5694e72010-10-26 17:49:02 +00001524/// beginInstruction - Process beginning of an instruction.
1525void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001526 // Check if source location changes, but ignore DBG_VALUE locations.
1527 if (!MI->isDebugValue()) {
1528 DebugLoc DL = MI->getDebugLoc();
1529 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
1530 PrevInstLoc = DL;
1531 if (!DL.isUnknown()) {
1532 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
1533 recordSourceLine(DL.getLine(), DL.getCol(), Scope);
1534 } else
1535 recordSourceLine(0, 0, 0);
1536 }
Devang Patel9fc11702010-05-25 23:40:22 +00001537 }
Devang Patel23b2ae62010-03-29 22:59:58 +00001538
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001539 // Insert labels where requested.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001540 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1541 LabelsBeforeInsn.find(MI);
1542
1543 // No label needed.
1544 if (I == LabelsBeforeInsn.end())
1545 return;
1546
1547 // Label already assigned.
1548 if (I->second)
Devang Patel002d54d2010-05-26 19:37:24 +00001549 return;
Devang Patelbd477be2010-03-29 17:20:31 +00001550
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001551 if (!PrevLabel) {
Devang Patelacc32a52010-05-26 21:23:46 +00001552 PrevLabel = MMI->getContext().CreateTempSymbol();
1553 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel002d54d2010-05-26 19:37:24 +00001554 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001555 I->second = PrevLabel;
Devang Patel8db360d2009-10-06 01:50:42 +00001556}
1557
Devang Patelb5694e72010-10-26 17:49:02 +00001558/// endInstruction - Process end of an instruction.
1559void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001560 // Don't create a new label after DBG_VALUE instructions.
1561 // They don't generate code.
1562 if (!MI->isDebugValue())
1563 PrevLabel = 0;
1564
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001565 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1566 LabelsAfterInsn.find(MI);
1567
1568 // No label needed.
1569 if (I == LabelsAfterInsn.end())
1570 return;
1571
1572 // Label already assigned.
1573 if (I->second)
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001574 return;
1575
1576 // We need a label after this instruction.
1577 if (!PrevLabel) {
1578 PrevLabel = MMI->getContext().CreateTempSymbol();
1579 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel3ebd8932010-04-08 16:50:29 +00001580 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001581 I->second = PrevLabel;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001582}
1583
Devang Patel6c74a872010-04-27 19:46:33 +00001584/// getOrCreateDbgScope - Create DbgScope for the scope.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001585DbgScope *DwarfDebug::getOrCreateDbgScope(const MDNode *Scope,
Devang Patel30265c42010-07-07 20:12:52 +00001586 const MDNode *InlinedAt) {
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001587 if (!InlinedAt) {
1588 DbgScope *WScope = DbgScopeMap.lookup(Scope);
1589 if (WScope)
Devang Patel6c74a872010-04-27 19:46:33 +00001590 return WScope;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001591 WScope = new DbgScope(NULL, DIDescriptor(Scope), NULL);
1592 DbgScopeMap.insert(std::make_pair(Scope, WScope));
Devang Patel6c74a872010-04-27 19:46:33 +00001593 if (DIDescriptor(Scope).isLexicalBlock()) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001594 DbgScope *Parent =
Devang Patelcfa8e9d2010-05-07 18:11:54 +00001595 getOrCreateDbgScope(DILexicalBlock(Scope).getContext(), NULL);
Devang Patel6c74a872010-04-27 19:46:33 +00001596 WScope->setParent(Parent);
1597 Parent->addScope(WScope);
1598 }
1599
1600 if (!WScope->getParent()) {
1601 StringRef SPName = DISubprogram(Scope).getLinkageName();
Stuart Hastings9b5005c2010-06-15 23:06:30 +00001602 // We used to check only for a linkage name, but that fails
1603 // since we began omitting the linkage name for private
1604 // functions. The new way is to check for the name in metadata,
1605 // but that's not supported in old .ll test cases. Ergo, we
1606 // check both.
Stuart Hastingsafe54f12010-06-11 20:08:44 +00001607 if (SPName == Asm->MF->getFunction()->getName() ||
1608 DISubprogram(Scope).getFunction() == Asm->MF->getFunction())
Devang Patel6c74a872010-04-27 19:46:33 +00001609 CurrentFnDbgScope = WScope;
1610 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001611
Devang Patel6c74a872010-04-27 19:46:33 +00001612 return WScope;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001613 }
1614
Devang Patel5c0f85c2010-06-25 22:07:34 +00001615 getOrCreateAbstractScope(Scope);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001616 DbgScope *WScope = DbgScopeMap.lookup(InlinedAt);
1617 if (WScope)
Devang Patel6c74a872010-04-27 19:46:33 +00001618 return WScope;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001619
1620 WScope = new DbgScope(NULL, DIDescriptor(Scope), InlinedAt);
1621 DbgScopeMap.insert(std::make_pair(InlinedAt, WScope));
1622 DILocation DL(InlinedAt);
Devang Patel6c74a872010-04-27 19:46:33 +00001623 DbgScope *Parent =
Devang Patelcfa8e9d2010-05-07 18:11:54 +00001624 getOrCreateDbgScope(DL.getScope(), DL.getOrigLocation());
Devang Patel6c74a872010-04-27 19:46:33 +00001625 WScope->setParent(Parent);
1626 Parent->addScope(WScope);
1627
1628 ConcreteScopes[InlinedAt] = WScope;
Devang Patel6c74a872010-04-27 19:46:33 +00001629
1630 return WScope;
Devang Patel8db360d2009-10-06 01:50:42 +00001631}
1632
Devang Patel6c74a872010-04-27 19:46:33 +00001633/// hasValidLocation - Return true if debug location entry attached with
1634/// machine instruction encodes valid location info.
1635static bool hasValidLocation(LLVMContext &Ctx,
1636 const MachineInstr *MInsn,
Devang Patel32cc43c2010-05-07 20:54:48 +00001637 const MDNode *&Scope, const MDNode *&InlinedAt) {
Devang Patel6c74a872010-04-27 19:46:33 +00001638 DebugLoc DL = MInsn->getDebugLoc();
1639 if (DL.isUnknown()) return false;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001640
Devang Patel32cc43c2010-05-07 20:54:48 +00001641 const MDNode *S = DL.getScope(Ctx);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001642
Devang Patel6c74a872010-04-27 19:46:33 +00001643 // There is no need to create another DIE for compile unit. For all
1644 // other scopes, create one DbgScope now. This will be translated
1645 // into a scope DIE at the end.
1646 if (DIScope(S).isCompileUnit()) return false;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001647
Devang Patel6c74a872010-04-27 19:46:33 +00001648 Scope = S;
1649 InlinedAt = DL.getInlinedAt(Ctx);
1650 return true;
1651}
1652
1653/// calculateDominanceGraph - Calculate dominance graph for DbgScope
1654/// hierarchy.
1655static void calculateDominanceGraph(DbgScope *Scope) {
1656 assert (Scope && "Unable to calculate scop edominance graph!");
1657 SmallVector<DbgScope *, 4> WorkStack;
1658 WorkStack.push_back(Scope);
1659 unsigned Counter = 0;
1660 while (!WorkStack.empty()) {
1661 DbgScope *WS = WorkStack.back();
1662 const SmallVector<DbgScope *, 4> &Children = WS->getScopes();
1663 bool visitedChildren = false;
1664 for (SmallVector<DbgScope *, 4>::const_iterator SI = Children.begin(),
1665 SE = Children.end(); SI != SE; ++SI) {
1666 DbgScope *ChildScope = *SI;
1667 if (!ChildScope->getDFSOut()) {
1668 WorkStack.push_back(ChildScope);
1669 visitedChildren = true;
1670 ChildScope->setDFSIn(++Counter);
1671 break;
1672 }
1673 }
1674 if (!visitedChildren) {
1675 WorkStack.pop_back();
1676 WS->setDFSOut(++Counter);
1677 }
1678 }
1679}
1680
1681/// printDbgScopeInfo - Print DbgScope info for each machine instruction.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001682static
Devang Patel6c74a872010-04-27 19:46:33 +00001683void printDbgScopeInfo(LLVMContext &Ctx, const MachineFunction *MF,
1684 DenseMap<const MachineInstr *, DbgScope *> &MI2ScopeMap)
1685{
1686#ifndef NDEBUG
1687 unsigned PrevDFSIn = 0;
1688 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
1689 I != E; ++I) {
1690 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1691 II != IE; ++II) {
1692 const MachineInstr *MInsn = II;
Devang Patel32cc43c2010-05-07 20:54:48 +00001693 const MDNode *Scope = NULL;
1694 const MDNode *InlinedAt = NULL;
Devang Patel6c74a872010-04-27 19:46:33 +00001695
1696 // Check if instruction has valid location information.
1697 if (hasValidLocation(Ctx, MInsn, Scope, InlinedAt)) {
1698 dbgs() << " [ ";
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001699 if (InlinedAt)
Devang Patel6c74a872010-04-27 19:46:33 +00001700 dbgs() << "*";
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001701 DenseMap<const MachineInstr *, DbgScope *>::iterator DI =
Devang Patel6c74a872010-04-27 19:46:33 +00001702 MI2ScopeMap.find(MInsn);
1703 if (DI != MI2ScopeMap.end()) {
1704 DbgScope *S = DI->second;
1705 dbgs() << S->getDFSIn();
1706 PrevDFSIn = S->getDFSIn();
1707 } else
1708 dbgs() << PrevDFSIn;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001709 } else
Devang Patel6c74a872010-04-27 19:46:33 +00001710 dbgs() << " [ x" << PrevDFSIn;
1711 dbgs() << " ]";
1712 MInsn->dump();
1713 }
1714 dbgs() << "\n";
1715 }
1716#endif
1717}
Devang Patel930143b2009-11-21 02:48:08 +00001718/// extractScopeInformation - Scan machine instructions in this function
Chris Lattner848c7d22010-03-31 05:39:57 +00001719/// and collect DbgScopes. Return true, if at least one scope was found.
Chris Lattner76555b52010-01-26 23:18:02 +00001720bool DwarfDebug::extractScopeInformation() {
Devang Patel75cc16c2009-10-01 20:31:14 +00001721 // If scope information was extracted using .dbg intrinsics then there is not
1722 // any need to extract these information by scanning each instruction.
1723 if (!DbgScopeMap.empty())
1724 return false;
1725
Dan Gohmane9135cb2010-04-23 01:18:53 +00001726 // Scan each instruction and create scopes. First build working set of scopes.
Devang Patel6c74a872010-04-27 19:46:33 +00001727 LLVMContext &Ctx = Asm->MF->getFunction()->getContext();
1728 SmallVector<DbgRange, 4> MIRanges;
1729 DenseMap<const MachineInstr *, DbgScope *> MI2ScopeMap;
Devang Patel32cc43c2010-05-07 20:54:48 +00001730 const MDNode *PrevScope = NULL;
1731 const MDNode *PrevInlinedAt = NULL;
Devang Patel6c74a872010-04-27 19:46:33 +00001732 const MachineInstr *RangeBeginMI = NULL;
1733 const MachineInstr *PrevMI = NULL;
Chris Lattner3a383cb2010-04-05 00:13:49 +00001734 for (MachineFunction::const_iterator I = Asm->MF->begin(), E = Asm->MF->end();
Devang Patel75cc16c2009-10-01 20:31:14 +00001735 I != E; ++I) {
1736 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1737 II != IE; ++II) {
1738 const MachineInstr *MInsn = II;
Devang Patel32cc43c2010-05-07 20:54:48 +00001739 const MDNode *Scope = NULL;
1740 const MDNode *InlinedAt = NULL;
Devang Patel6c74a872010-04-27 19:46:33 +00001741
1742 // Check if instruction has valid location information.
1743 if (!hasValidLocation(Ctx, MInsn, Scope, InlinedAt)) {
1744 PrevMI = MInsn;
1745 continue;
1746 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001747
Devang Patel6c74a872010-04-27 19:46:33 +00001748 // If scope has not changed then skip this instruction.
1749 if (Scope == PrevScope && PrevInlinedAt == InlinedAt) {
1750 PrevMI = MInsn;
1751 continue;
1752 }
1753
Devang Pateld12c0a22011-02-15 17:56:09 +00001754 // Ignore DBG_VALUE. It does not contribute any instruction in output.
1755 if (MInsn->isDebugValue())
1756 continue;
1757
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001758 if (RangeBeginMI) {
1759 // If we have alread seen a beginning of a instruction range and
Devang Patel6c74a872010-04-27 19:46:33 +00001760 // current instruction scope does not match scope of first instruction
1761 // in this range then create a new instruction range.
1762 DbgRange R(RangeBeginMI, PrevMI);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001763 MI2ScopeMap[RangeBeginMI] = getOrCreateDbgScope(PrevScope,
Devang Patel30265c42010-07-07 20:12:52 +00001764 PrevInlinedAt);
Devang Patel6c74a872010-04-27 19:46:33 +00001765 MIRanges.push_back(R);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001766 }
Devang Patel6c74a872010-04-27 19:46:33 +00001767
1768 // This is a beginning of a new instruction range.
1769 RangeBeginMI = MInsn;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001770
Devang Patel6c74a872010-04-27 19:46:33 +00001771 // Reset previous markers.
1772 PrevMI = MInsn;
1773 PrevScope = Scope;
1774 PrevInlinedAt = InlinedAt;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001775 }
1776 }
1777
Devang Patel6c74a872010-04-27 19:46:33 +00001778 // Create last instruction range.
1779 if (RangeBeginMI && PrevMI && PrevScope) {
1780 DbgRange R(RangeBeginMI, PrevMI);
1781 MIRanges.push_back(R);
1782 MI2ScopeMap[RangeBeginMI] = getOrCreateDbgScope(PrevScope, PrevInlinedAt);
Devang Patel75cc16c2009-10-01 20:31:14 +00001783 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001784
Devang Patel530a0752010-01-04 20:44:00 +00001785 if (!CurrentFnDbgScope)
1786 return false;
1787
Devang Patel6c74a872010-04-27 19:46:33 +00001788 calculateDominanceGraph(CurrentFnDbgScope);
1789 if (PrintDbgScope)
1790 printDbgScopeInfo(Ctx, Asm->MF, MI2ScopeMap);
1791
1792 // Find ranges of instructions covered by each DbgScope;
1793 DbgScope *PrevDbgScope = NULL;
1794 for (SmallVector<DbgRange, 4>::const_iterator RI = MIRanges.begin(),
1795 RE = MIRanges.end(); RI != RE; ++RI) {
1796 const DbgRange &R = *RI;
1797 DbgScope *S = MI2ScopeMap.lookup(R.first);
1798 assert (S && "Lost DbgScope for a machine instruction!");
1799 if (PrevDbgScope && !PrevDbgScope->dominates(S))
1800 PrevDbgScope->closeInsnRange(S);
1801 S->openInsnRange(R.first);
1802 S->extendInsnRange(R.second);
1803 PrevDbgScope = S;
1804 }
1805
1806 if (PrevDbgScope)
1807 PrevDbgScope->closeInsnRange();
Devang Patel75cc16c2009-10-01 20:31:14 +00001808
Devang Patel359b0132010-04-08 18:43:56 +00001809 identifyScopeMarkers();
Devang Patelf1d5a1e2010-04-08 15:37:09 +00001810
1811 return !DbgScopeMap.empty();
1812}
1813
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001814/// identifyScopeMarkers() -
Devang Patel6c74a872010-04-27 19:46:33 +00001815/// Each DbgScope has first instruction and last instruction to mark beginning
1816/// and end of a scope respectively. Create an inverse map that list scopes
1817/// starts (and ends) with an instruction. One instruction may start (or end)
1818/// multiple scopes. Ignore scopes that are not reachable.
Devang Patel359b0132010-04-08 18:43:56 +00001819void DwarfDebug::identifyScopeMarkers() {
Devang Patel7771b7c2010-01-20 02:05:23 +00001820 SmallVector<DbgScope *, 4> WorkList;
1821 WorkList.push_back(CurrentFnDbgScope);
1822 while (!WorkList.empty()) {
Chris Lattner848c7d22010-03-31 05:39:57 +00001823 DbgScope *S = WorkList.pop_back_val();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001824
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00001825 const SmallVector<DbgScope *, 4> &Children = S->getScopes();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001826 if (!Children.empty())
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00001827 for (SmallVector<DbgScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel7771b7c2010-01-20 02:05:23 +00001828 SE = Children.end(); SI != SE; ++SI)
1829 WorkList.push_back(*SI);
1830
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001831 if (S->isAbstractScope())
1832 continue;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001833
Devang Patel6c74a872010-04-27 19:46:33 +00001834 const SmallVector<DbgRange, 4> &Ranges = S->getRanges();
1835 if (Ranges.empty())
1836 continue;
1837 for (SmallVector<DbgRange, 4>::const_iterator RI = Ranges.begin(),
1838 RE = Ranges.end(); RI != RE; ++RI) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001839 assert(RI->first && "DbgRange does not have first instruction!");
1840 assert(RI->second && "DbgRange does not have second instruction!");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001841 requestLabelBeforeInsn(RI->first);
1842 requestLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +00001843 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001844 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001845}
1846
Dan Gohman3df671a2010-04-20 00:37:27 +00001847/// FindFirstDebugLoc - Find the first debug location in the function. This
1848/// is intended to be an approximation for the source position of the
1849/// beginning of the function.
1850static DebugLoc FindFirstDebugLoc(const MachineFunction *MF) {
1851 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
1852 I != E; ++I)
1853 for (MachineBasicBlock::const_iterator MBBI = I->begin(), MBBE = I->end();
1854 MBBI != MBBE; ++MBBI) {
1855 DebugLoc DL = MBBI->getDebugLoc();
1856 if (!DL.isUnknown())
1857 return DL;
1858 }
1859 return DebugLoc();
1860}
1861
Devang Patela86114b2010-10-25 20:45:32 +00001862#ifndef NDEBUG
1863/// CheckLineNumbers - Count basicblocks whose instructions do not have any
1864/// line number information.
1865static void CheckLineNumbers(const MachineFunction *MF) {
1866 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
1867 I != E; ++I) {
1868 bool FoundLineNo = false;
1869 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1870 II != IE; ++II) {
1871 const MachineInstr *MI = II;
1872 if (!MI->getDebugLoc().isUnknown()) {
1873 FoundLineNo = true;
1874 break;
1875 }
1876 }
Devang Patel6e0d5892010-10-28 22:11:59 +00001877 if (!FoundLineNo && I->size())
Devang Patela86114b2010-10-25 20:45:32 +00001878 ++BlocksWithoutLineNo;
1879 }
1880}
1881#endif
1882
Devang Patel930143b2009-11-21 02:48:08 +00001883/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling2b128d72009-05-20 23:19:06 +00001884/// emitted immediately after the function entry point.
Chris Lattner76555b52010-01-26 23:18:02 +00001885void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner196dbdc2010-04-05 03:52:55 +00001886 if (!MMI->hasDebugInfo()) return;
Bill Wendlingfcc14142010-04-07 09:28:04 +00001887 if (!extractScopeInformation()) return;
Devang Patel4598eb62009-10-06 18:37:31 +00001888
Devang Patela86114b2010-10-25 20:45:32 +00001889#ifndef NDEBUG
1890 CheckLineNumbers(MF);
1891#endif
1892
Devang Patel6c74a872010-04-27 19:46:33 +00001893 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1894 Asm->getFunctionNumber());
Bill Wendling2b128d72009-05-20 23:19:06 +00001895 // Assumes in correct section after the entry point.
Devang Patel6c74a872010-04-27 19:46:33 +00001896 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendling2b128d72009-05-20 23:19:06 +00001897
1898 // Emit label for the implicitly defined dbg.stoppoint at the start of the
1899 // function.
Dan Gohman3df671a2010-04-20 00:37:27 +00001900 DebugLoc FDL = FindFirstDebugLoc(MF);
Chris Lattner915c5f92010-04-02 19:42:39 +00001901 if (FDL.isUnknown()) return;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001902
Devang Patel32cc43c2010-05-07 20:54:48 +00001903 const MDNode *Scope = FDL.getScope(MF->getFunction()->getContext());
Stuart Hastings61475c52010-07-19 23:56:30 +00001904 const MDNode *TheScope = 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001905
Chris Lattner915c5f92010-04-02 19:42:39 +00001906 DISubprogram SP = getDISubprogram(Scope);
1907 unsigned Line, Col;
1908 if (SP.Verify()) {
1909 Line = SP.getLineNumber();
1910 Col = 0;
Stuart Hastings61475c52010-07-19 23:56:30 +00001911 TheScope = SP;
Chris Lattner915c5f92010-04-02 19:42:39 +00001912 } else {
1913 Line = FDL.getLine();
1914 Col = FDL.getCol();
Stuart Hastings61475c52010-07-19 23:56:30 +00001915 TheScope = Scope;
Bill Wendling2b128d72009-05-20 23:19:06 +00001916 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001917
Stuart Hastings61475c52010-07-19 23:56:30 +00001918 recordSourceLine(Line, Col, TheScope);
Devang Patel002d54d2010-05-26 19:37:24 +00001919
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001920 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1921
Devang Patel21ccf052010-06-02 16:42:51 +00001922 /// ProcessedArgs - Collection of arguments already processed.
1923 SmallPtrSet<const MDNode *, 8> ProcessedArgs;
1924
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001925 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
1926
1927 /// LiveUserVar - Map physreg numbers to the MDNode they contain.
1928 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1929
Devang Patel002d54d2010-05-26 19:37:24 +00001930 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001931 I != E; ++I) {
1932 bool AtBlockEntry = true;
Devang Patel002d54d2010-05-26 19:37:24 +00001933 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1934 II != IE; ++II) {
1935 const MachineInstr *MI = II;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001936
Devang Patel002d54d2010-05-26 19:37:24 +00001937 if (MI->isDebugValue()) {
Devang Patel002d54d2010-05-26 19:37:24 +00001938 assert (MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001939
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001940 // Keep track of user variables.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001941 const MDNode *Var =
1942 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001943
1944 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001945 if (isDbgValueInDefinedReg(MI))
1946 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1947
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001948 // Check the history of this variable.
1949 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1950 if (History.empty()) {
1951 UserVariables.push_back(Var);
1952 // The first mention of a function argument gets the FunctionBeginSym
1953 // label, so arguments are visible when breaking at function entry.
1954 DIVariable DV(Var);
1955 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1956 DISubprogram(getDISubprogram(DV.getContext()))
1957 .describes(MF->getFunction()))
1958 LabelsBeforeInsn[MI] = FunctionBeginSym;
1959 } else {
1960 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1961 const MachineInstr *Prev = History.back();
1962 if (Prev->isDebugValue()) {
1963 // Coalesce identical entries at the end of History.
1964 if (History.size() >= 2 &&
1965 Prev->isIdenticalTo(History[History.size() - 2]))
1966 History.pop_back();
1967
1968 // Terminate old register assignments that don't reach MI;
1969 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1970 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1971 isDbgValueInDefinedReg(Prev)) {
1972 // Previous register assignment needs to terminate at the end of
1973 // its basic block.
1974 MachineBasicBlock::const_iterator LastMI =
1975 PrevMBB->getLastNonDebugInstr();
1976 if (LastMI == PrevMBB->end())
1977 // Drop DBG_VALUE for empty range.
1978 History.pop_back();
1979 else {
1980 // Terminate after LastMI.
1981 History.push_back(LastMI);
1982 }
1983 }
1984 }
1985 }
1986 History.push_back(MI);
Devang Patel002d54d2010-05-26 19:37:24 +00001987 } else {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001988 // Not a DBG_VALUE instruction.
1989 if (!MI->isLabel())
1990 AtBlockEntry = false;
1991
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001992 // Check if the instruction clobbers any registers with debug vars.
1993 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1994 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1995 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1996 continue;
1997 for (const unsigned *AI = TRI->getOverlaps(MOI->getReg());
1998 unsigned Reg = *AI; ++AI) {
1999 const MDNode *Var = LiveUserVar[Reg];
2000 if (!Var)
2001 continue;
2002 // Reg is now clobbered.
2003 LiveUserVar[Reg] = 0;
2004
2005 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00002006 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
2007 if (HistI == DbgValues.end())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00002008 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00002009 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
2010 if (History.empty())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00002011 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00002012 const MachineInstr *Prev = History.back();
2013 // Sanity-check: Register assignments are terminated at the end of
2014 // their block.
2015 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
2016 continue;
2017 // Is the variable still in Reg?
2018 if (!isDbgValueInDefinedReg(Prev) ||
2019 Prev->getOperand(0).getReg() != Reg)
2020 continue;
2021 // Var is clobbered. Make sure the next instruction gets a label.
2022 History.push_back(MI);
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00002023 }
2024 }
Devang Patel002d54d2010-05-26 19:37:24 +00002025 }
Devang Patel002d54d2010-05-26 19:37:24 +00002026 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00002027 }
2028
2029 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
2030 I != E; ++I) {
2031 SmallVectorImpl<const MachineInstr*> &History = I->second;
2032 if (History.empty())
2033 continue;
2034
2035 // Make sure the final register assignments are terminated.
2036 const MachineInstr *Prev = History.back();
2037 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
2038 const MachineBasicBlock *PrevMBB = Prev->getParent();
2039 MachineBasicBlock::const_iterator LastMI = PrevMBB->getLastNonDebugInstr();
2040 if (LastMI == PrevMBB->end())
2041 // Drop DBG_VALUE for empty range.
2042 History.pop_back();
2043 else {
2044 // Terminate after LastMI.
2045 History.push_back(LastMI);
2046 }
2047 }
2048 // Request labels for the full history.
2049 for (unsigned i = 0, e = History.size(); i != e; ++i) {
2050 const MachineInstr *MI = History[i];
2051 if (MI->isDebugValue())
2052 requestLabelBeforeInsn(MI);
2053 else
2054 requestLabelAfterInsn(MI);
2055 }
2056 }
Devang Patel002d54d2010-05-26 19:37:24 +00002057
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00002058 PrevInstLoc = DebugLoc();
Devang Patel002d54d2010-05-26 19:37:24 +00002059 PrevLabel = FunctionBeginSym;
Bill Wendling2b128d72009-05-20 23:19:06 +00002060}
2061
Devang Patel930143b2009-11-21 02:48:08 +00002062/// endFunction - Gather and emit post-function debug information.
Bill Wendling2b128d72009-05-20 23:19:06 +00002063///
Chris Lattner76555b52010-01-26 23:18:02 +00002064void DwarfDebug::endFunction(const MachineFunction *MF) {
Bill Wendlingfcc14142010-04-07 09:28:04 +00002065 if (!MMI->hasDebugInfo() || DbgScopeMap.empty()) return;
Devang Patel2904aa92009-11-12 19:02:56 +00002066
Devang Patel530a0752010-01-04 20:44:00 +00002067 if (CurrentFnDbgScope) {
Devang Patel4a8e6e82010-05-22 00:04:14 +00002068
Devang Patel9fc11702010-05-25 23:40:22 +00002069 // Define end label for subprogram.
2070 FunctionEndSym = Asm->GetTempSymbol("func_end",
2071 Asm->getFunctionNumber());
2072 // Assumes in correct section after the entry point.
2073 Asm->OutStreamer.EmitLabel(FunctionEndSym);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002074
Devang Patel5c0f85c2010-06-25 22:07:34 +00002075 SmallPtrSet<const MDNode *, 16> ProcessedVars;
2076 collectVariableInfo(MF, ProcessedVars);
Devang Patel4a8e6e82010-05-22 00:04:14 +00002077
Devang Patel530a0752010-01-04 20:44:00 +00002078 // Construct abstract scopes.
2079 for (SmallVector<DbgScope *, 4>::iterator AI = AbstractScopesList.begin(),
Devang Patel5c0f85c2010-06-25 22:07:34 +00002080 AE = AbstractScopesList.end(); AI != AE; ++AI) {
Devang Patel5c0f85c2010-06-25 22:07:34 +00002081 DISubprogram SP((*AI)->getScopeNode());
2082 if (SP.Verify()) {
2083 // Collect info for variables that were optimized out.
2084 StringRef FName = SP.getLinkageName();
2085 if (FName.empty())
2086 FName = SP.getName();
Devang Patel364bf042010-11-10 22:19:21 +00002087 if (NamedMDNode *NMD =
2088 getFnSpecificMDNode(*(MF->getFunction()->getParent()), FName)) {
Devang Patel5c0f85c2010-06-25 22:07:34 +00002089 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
Dan Gohman093cb792010-07-21 18:54:18 +00002090 DIVariable DV(cast<MDNode>(NMD->getOperand(i)));
Devang Patel5c0f85c2010-06-25 22:07:34 +00002091 if (!DV || !ProcessedVars.insert(DV))
2092 continue;
Devang Patel648df7b2010-06-30 00:11:08 +00002093 DbgScope *Scope = AbstractScopes.lookup(DV.getContext());
Devang Patel5c0f85c2010-06-25 22:07:34 +00002094 if (Scope)
2095 Scope->addVariable(new DbgVariable(DV));
2096 }
2097 }
2098 }
Devang Patelc5b31092010-06-30 01:40:11 +00002099 if (ProcessedSPNodes.count((*AI)->getScopeNode()) == 0)
2100 constructScopeDIE(*AI);
Devang Patel5c0f85c2010-06-25 22:07:34 +00002101 }
Devang Patel30265c42010-07-07 20:12:52 +00002102
Devang Patel075e9b52010-05-04 06:15:30 +00002103 DIE *CurFnDIE = constructScopeDIE(CurrentFnDbgScope);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002104
Devang Patel075e9b52010-05-04 06:15:30 +00002105 if (!DisableFramePointerElim(*MF))
Devang Patelf20c4f72011-04-12 22:53:02 +00002106 getCompileUnit(CurrentFnDbgScope->getScopeNode())->addUInt(CurFnDIE,
2107 dwarf::DW_AT_APPLE_omit_frame_ptr,
2108 dwarf::DW_FORM_flag, 1);
Devang Patel075e9b52010-05-04 06:15:30 +00002109
2110
Chris Lattner3a383cb2010-04-05 00:13:49 +00002111 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
Devang Patel530a0752010-01-04 20:44:00 +00002112 MMI->getFrameMoves()));
Bill Wendling2b128d72009-05-20 23:19:06 +00002113 }
2114
Bill Wendling2b128d72009-05-20 23:19:06 +00002115 // Clear debug info
Devang Patelfe189e62010-01-19 01:26:02 +00002116 CurrentFnDbgScope = NULL;
Devang Patelad45d912011-04-22 18:09:57 +00002117 DeleteContainerPointers(CurrentFnArguments);
Devang Patele1c53f22010-05-20 16:36:41 +00002118 DbgVariableToFrameIndexMap.clear();
2119 VarToAbstractVarMap.clear();
2120 DbgVariableToDbgInstMap.clear();
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002121 DeleteContainerSeconds(DbgScopeMap);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00002122 UserVariables.clear();
2123 DbgValues.clear();
Devang Patelfe189e62010-01-19 01:26:02 +00002124 ConcreteScopes.clear();
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002125 DeleteContainerSeconds(AbstractScopes);
Devang Patelfe189e62010-01-19 01:26:02 +00002126 AbstractScopesList.clear();
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002127 AbstractVariables.clear();
Devang Patel6c74a872010-04-27 19:46:33 +00002128 LabelsBeforeInsn.clear();
2129 LabelsAfterInsn.clear();
Devang Patel12563b32010-04-16 23:33:45 +00002130 PrevLabel = NULL;
Bill Wendling2b128d72009-05-20 23:19:06 +00002131}
2132
Devang Patele1c53f22010-05-20 16:36:41 +00002133/// recordVariableFrameIndex - Record a variable's index.
2134void DwarfDebug::recordVariableFrameIndex(const DbgVariable *V, int Index) {
2135 assert (V && "Invalid DbgVariable!");
2136 DbgVariableToFrameIndexMap[V] = Index;
2137}
2138
2139/// findVariableFrameIndex - Return true if frame index for the variable
2140/// is found. Update FI to hold value of the index.
2141bool DwarfDebug::findVariableFrameIndex(const DbgVariable *V, int *FI) {
2142 assert (V && "Invalid DbgVariable!");
2143 DenseMap<const DbgVariable *, int>::iterator I =
2144 DbgVariableToFrameIndexMap.find(V);
2145 if (I == DbgVariableToFrameIndexMap.end())
2146 return false;
2147 *FI = I->second;
2148 return true;
2149}
2150
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002151/// findDbgScope - Find DbgScope for the debug loc attached with an
Devang Patel490c8ab2010-05-20 19:57:06 +00002152/// instruction.
2153DbgScope *DwarfDebug::findDbgScope(const MachineInstr *MInsn) {
2154 DbgScope *Scope = NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002155 LLVMContext &Ctx =
Devang Patel490c8ab2010-05-20 19:57:06 +00002156 MInsn->getParent()->getParent()->getFunction()->getContext();
2157 DebugLoc DL = MInsn->getDebugLoc();
2158
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002159 if (DL.isUnknown())
Devang Patel490c8ab2010-05-20 19:57:06 +00002160 return Scope;
2161
2162 if (const MDNode *IA = DL.getInlinedAt(Ctx))
2163 Scope = ConcreteScopes.lookup(IA);
2164 if (Scope == 0)
2165 Scope = DbgScopeMap.lookup(DL.getScope(Ctx));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002166
Devang Patel490c8ab2010-05-20 19:57:06 +00002167 return Scope;
2168}
2169
2170
Chris Lattnerba35a672010-03-09 04:54:43 +00002171/// recordSourceLine - Register a source line with debug info. Returns the
2172/// unique label that was emitted and which provides correspondence to
2173/// the source line list.
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00002174void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S){
Devang Patel2d9caf92009-11-25 17:36:49 +00002175 StringRef Fn;
Devang Patele01b75c2011-03-24 20:30:50 +00002176 StringRef Dir;
Dan Gohman50849c62010-05-05 23:41:32 +00002177 unsigned Src = 1;
2178 if (S) {
2179 DIDescriptor Scope(S);
Devang Patel2089d162009-10-05 18:03:19 +00002180
Dan Gohman50849c62010-05-05 23:41:32 +00002181 if (Scope.isCompileUnit()) {
2182 DICompileUnit CU(S);
Dan Gohman50849c62010-05-05 23:41:32 +00002183 Fn = CU.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00002184 Dir = CU.getDirectory();
Devang Patelc4b69052010-10-28 17:30:52 +00002185 } else if (Scope.isFile()) {
2186 DIFile F(S);
Devang Patelc4b69052010-10-28 17:30:52 +00002187 Fn = F.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00002188 Dir = F.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00002189 } else if (Scope.isSubprogram()) {
2190 DISubprogram SP(S);
Dan Gohman50849c62010-05-05 23:41:32 +00002191 Fn = SP.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00002192 Dir = SP.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00002193 } else if (Scope.isLexicalBlock()) {
2194 DILexicalBlock DB(S);
Dan Gohman50849c62010-05-05 23:41:32 +00002195 Fn = DB.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00002196 Dir = DB.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00002197 } else
2198 assert(0 && "Unexpected scope info");
2199
Devang Patele01b75c2011-03-24 20:30:50 +00002200 Src = GetOrCreateSourceID(Fn, Dir);
Dan Gohman50849c62010-05-05 23:41:32 +00002201 }
Rafael Espindola67c6ab82010-11-18 02:04:25 +00002202 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, DWARF2_FLAG_IS_STMT,
Devang Patel17740e72011-04-18 20:26:49 +00002203 0, 0, Fn);
Bill Wendling2b128d72009-05-20 23:19:06 +00002204}
2205
Bill Wendling806535f2009-05-20 23:22:40 +00002206//===----------------------------------------------------------------------===//
2207// Emit Methods
2208//===----------------------------------------------------------------------===//
2209
Devang Patel930143b2009-11-21 02:48:08 +00002210/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling480ff322009-05-20 23:21:38 +00002211///
Jim Grosbach00e9c612009-11-22 19:20:36 +00002212unsigned
2213DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling480ff322009-05-20 23:21:38 +00002214 // Get the children.
2215 const std::vector<DIE *> &Children = Die->getChildren();
2216
2217 // If not last sibling and has children then add sibling offset attribute.
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00002218 if (!Last && !Children.empty())
Benjamin Kramer74729ae2010-03-31 19:34:01 +00002219 Die->addSiblingOffset(DIEValueAllocator);
Bill Wendling480ff322009-05-20 23:21:38 +00002220
2221 // Record the abbreviation.
Devang Patel930143b2009-11-21 02:48:08 +00002222 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling480ff322009-05-20 23:21:38 +00002223
2224 // Get the abbreviation for this DIE.
2225 unsigned AbbrevNumber = Die->getAbbrevNumber();
2226 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2227
2228 // Set DIE offset
2229 Die->setOffset(Offset);
2230
2231 // Start the size with the size of abbreviation code.
Chris Lattner7b26fce2009-08-22 20:48:53 +00002232 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00002233
2234 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
2235 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
2236
2237 // Size the DIE attribute values.
2238 for (unsigned i = 0, N = Values.size(); i < N; ++i)
2239 // Size attribute value.
Chris Lattner5a00dea2010-04-05 00:18:22 +00002240 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling480ff322009-05-20 23:21:38 +00002241
2242 // Size the DIE children if any.
2243 if (!Children.empty()) {
2244 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
2245 "Children flag not set");
2246
2247 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00002248 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling480ff322009-05-20 23:21:38 +00002249
2250 // End of children marker.
2251 Offset += sizeof(int8_t);
2252 }
2253
2254 Die->setSize(Offset - Die->getOffset());
2255 return Offset;
2256}
2257
Devang Patel930143b2009-11-21 02:48:08 +00002258/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling480ff322009-05-20 23:21:38 +00002259///
Devang Patel930143b2009-11-21 02:48:08 +00002260void DwarfDebug::computeSizeAndOffsets() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00002261 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
2262 E = CUMap.end(); I != E; ++I) {
2263 // Compute size of compile unit header.
Devang Patel28dce702011-04-12 23:10:47 +00002264 unsigned Offset =
Devang Patel1a0df9a2010-05-10 22:49:55 +00002265 sizeof(int32_t) + // Length of Compilation Unit Info
2266 sizeof(int16_t) + // DWARF version number
2267 sizeof(int32_t) + // Offset Into Abbrev. Section
2268 sizeof(int8_t); // Pointer Size (in bytes)
2269 computeSizeAndOffset(I->second->getCUDie(), Offset, true);
Devang Patel1a0df9a2010-05-10 22:49:55 +00002270 }
Bill Wendling480ff322009-05-20 23:21:38 +00002271}
2272
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002273/// EmitSectionSym - Switch to the specified MCSection and emit an assembler
2274/// temporary label to it if SymbolStem is specified.
Chris Lattner6629ca92010-04-04 22:59:04 +00002275static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section,
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002276 const char *SymbolStem = 0) {
Chris Lattner6629ca92010-04-04 22:59:04 +00002277 Asm->OutStreamer.SwitchSection(Section);
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002278 if (!SymbolStem) return 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002279
Chris Lattner6629ca92010-04-04 22:59:04 +00002280 MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem);
2281 Asm->OutStreamer.EmitLabel(TmpSym);
2282 return TmpSym;
2283}
2284
2285/// EmitSectionLabels - Emit initial Dwarf sections with a label at
2286/// the start of each one.
Chris Lattner46355d82010-04-04 22:33:59 +00002287void DwarfDebug::EmitSectionLabels() {
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002288 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00002289
Bill Wendling480ff322009-05-20 23:21:38 +00002290 // Dwarf sections base addresses.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002291 if (Asm->MAI->doesDwarfRequireFrameSection()) {
Chris Lattner6629ca92010-04-04 22:59:04 +00002292 DwarfFrameSectionSym =
2293 EmitSectionSym(Asm, TLOF.getDwarfFrameSection(), "section_debug_frame");
2294 }
Bill Wendling480ff322009-05-20 23:21:38 +00002295
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002296 DwarfInfoSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00002297 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002298 DwarfAbbrevSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00002299 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002300 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002301
Chris Lattner6629ca92010-04-04 22:59:04 +00002302 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002303 EmitSectionSym(Asm, MacroInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00002304
Devang Patel4a213872010-08-24 00:06:12 +00002305 EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002306 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
2307 EmitSectionSym(Asm, TLOF.getDwarfPubNamesSection());
2308 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002309 DwarfStrSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00002310 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Devang Patel12563b32010-04-16 23:33:45 +00002311 DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(),
2312 "debug_range");
Bill Wendling480ff322009-05-20 23:21:38 +00002313
Devang Patel9fc11702010-05-25 23:40:22 +00002314 DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(),
2315 "section_debug_loc");
2316
Chris Lattner6629ca92010-04-04 22:59:04 +00002317 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattnere58b5472010-04-04 23:10:38 +00002318 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002319}
2320
Devang Patel930143b2009-11-21 02:48:08 +00002321/// emitDIE - Recusively Emits a debug information entry.
Bill Wendling480ff322009-05-20 23:21:38 +00002322///
Devang Patel930143b2009-11-21 02:48:08 +00002323void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling480ff322009-05-20 23:21:38 +00002324 // Get the abbreviation for this DIE.
2325 unsigned AbbrevNumber = Die->getAbbrevNumber();
2326 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2327
Bill Wendling480ff322009-05-20 23:21:38 +00002328 // Emit the code (index) for the abbreviation.
Chris Lattner7bde8c02010-04-04 18:52:31 +00002329 if (Asm->isVerbose())
Chris Lattnerfa823552010-01-22 23:18:42 +00002330 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
2331 Twine::utohexstr(Die->getOffset()) + ":0x" +
2332 Twine::utohexstr(Die->getSize()) + " " +
2333 dwarf::TagString(Abbrev->getTag()));
Chris Lattner9efd1182010-04-04 19:09:29 +00002334 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00002335
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00002336 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling480ff322009-05-20 23:21:38 +00002337 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
2338
2339 // Emit the DIE attribute values.
2340 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2341 unsigned Attr = AbbrevData[i].getAttribute();
2342 unsigned Form = AbbrevData[i].getForm();
2343 assert(Form && "Too many attributes for DIE (check abbreviation)");
2344
Chris Lattner7bde8c02010-04-04 18:52:31 +00002345 if (Asm->isVerbose())
Chris Lattner5adf9872010-01-24 18:54:17 +00002346 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002347
Bill Wendling480ff322009-05-20 23:21:38 +00002348 switch (Attr) {
2349 case dwarf::DW_AT_sibling:
Devang Patel930143b2009-11-21 02:48:08 +00002350 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00002351 break;
2352 case dwarf::DW_AT_abstract_origin: {
2353 DIEEntry *E = cast<DIEEntry>(Values[i]);
2354 DIE *Origin = E->getEntry();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002355 unsigned Addr = Origin->getOffset();
Bill Wendling480ff322009-05-20 23:21:38 +00002356 Asm->EmitInt32(Addr);
2357 break;
2358 }
Devang Patel12563b32010-04-16 23:33:45 +00002359 case dwarf::DW_AT_ranges: {
2360 // DW_AT_range Value encodes offset in debug_range section.
2361 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelda3ef852010-09-02 16:43:44 +00002362
2363 if (Asm->MAI->doesDwarfUsesLabelOffsetForRanges()) {
2364 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
2365 V->getValue(),
2366 4);
2367 } else {
2368 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
2369 V->getValue(),
2370 DwarfDebugRangeSectionSym,
2371 4);
2372 }
Devang Patel12563b32010-04-16 23:33:45 +00002373 break;
2374 }
Devang Patel9fc11702010-05-25 23:40:22 +00002375 case dwarf::DW_AT_location: {
2376 if (UseDotDebugLocEntry.count(Die) != 0) {
2377 DIELabel *L = cast<DIELabel>(Values[i]);
Daniel Dunbarfd95b012011-03-16 22:16:39 +00002378 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
Devang Patel9fc11702010-05-25 23:40:22 +00002379 } else
2380 Values[i]->EmitValue(Asm, Form);
2381 break;
2382 }
Devang Patela1bd5a12010-09-29 19:08:08 +00002383 case dwarf::DW_AT_accessibility: {
2384 if (Asm->isVerbose()) {
2385 DIEInteger *V = cast<DIEInteger>(Values[i]);
2386 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
2387 }
2388 Values[i]->EmitValue(Asm, Form);
2389 break;
2390 }
Bill Wendling480ff322009-05-20 23:21:38 +00002391 default:
2392 // Emit an attribute using the defined form.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002393 Values[i]->EmitValue(Asm, Form);
Bill Wendling480ff322009-05-20 23:21:38 +00002394 break;
2395 }
Bill Wendling480ff322009-05-20 23:21:38 +00002396 }
2397
2398 // Emit the DIE children if any.
2399 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
2400 const std::vector<DIE *> &Children = Die->getChildren();
2401
2402 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00002403 emitDIE(Children[j]);
Bill Wendling480ff322009-05-20 23:21:38 +00002404
Chris Lattner7bde8c02010-04-04 18:52:31 +00002405 if (Asm->isVerbose())
Chris Lattner566cae92010-03-09 23:52:58 +00002406 Asm->OutStreamer.AddComment("End Of Children Mark");
2407 Asm->EmitInt8(0);
Bill Wendling480ff322009-05-20 23:21:38 +00002408 }
2409}
2410
Devang Patel9ccfb642009-12-09 18:24:21 +00002411/// emitDebugInfo - Emit the debug info section.
Bill Wendling480ff322009-05-20 23:21:38 +00002412///
Devang Patel9ccfb642009-12-09 18:24:21 +00002413void DwarfDebug::emitDebugInfo() {
2414 // Start debug info section.
2415 Asm->OutStreamer.SwitchSection(
2416 Asm->getObjFileLowering().getDwarfInfoSection());
Devang Patel1a0df9a2010-05-10 22:49:55 +00002417 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
2418 E = CUMap.end(); I != E; ++I) {
2419 CompileUnit *TheCU = I->second;
2420 DIE *Die = TheCU->getCUDie();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002421
Devang Patel1a0df9a2010-05-10 22:49:55 +00002422 // Emit the compile units header.
2423 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
2424 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002425
Devang Patel1a0df9a2010-05-10 22:49:55 +00002426 // Emit size of content not including length itself
2427 unsigned ContentSize = Die->getSize() +
2428 sizeof(int16_t) + // DWARF version number
2429 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patele141234942011-04-13 19:41:17 +00002430 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002431
Devang Patel1a0df9a2010-05-10 22:49:55 +00002432 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
2433 Asm->EmitInt32(ContentSize);
2434 Asm->OutStreamer.AddComment("DWARF version number");
2435 Asm->EmitInt16(dwarf::DWARF_VERSION);
2436 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
2437 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
2438 DwarfAbbrevSectionSym);
2439 Asm->OutStreamer.AddComment("Address Size (in bytes)");
2440 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002441
Devang Patel1a0df9a2010-05-10 22:49:55 +00002442 emitDIE(Die);
Devang Patel1a0df9a2010-05-10 22:49:55 +00002443 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID()));
2444 }
Bill Wendling480ff322009-05-20 23:21:38 +00002445}
2446
Devang Patel930143b2009-11-21 02:48:08 +00002447/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling480ff322009-05-20 23:21:38 +00002448///
Devang Patel930143b2009-11-21 02:48:08 +00002449void DwarfDebug::emitAbbreviations() const {
Bill Wendling480ff322009-05-20 23:21:38 +00002450 // Check to see if it is worth the effort.
2451 if (!Abbreviations.empty()) {
2452 // Start the debug abbrev section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002453 Asm->OutStreamer.SwitchSection(
2454 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002455
Chris Lattnera179b522010-04-04 19:25:43 +00002456 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling480ff322009-05-20 23:21:38 +00002457
2458 // For each abbrevation.
2459 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2460 // Get abbreviation data
2461 const DIEAbbrev *Abbrev = Abbreviations[i];
2462
2463 // Emit the abbrevations code (base 1 index.)
Chris Lattner9efd1182010-04-04 19:09:29 +00002464 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling480ff322009-05-20 23:21:38 +00002465
2466 // Emit the abbreviations data.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002467 Abbrev->Emit(Asm);
Bill Wendling480ff322009-05-20 23:21:38 +00002468 }
2469
2470 // Mark end of abbreviations.
Chris Lattner9efd1182010-04-04 19:09:29 +00002471 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling480ff322009-05-20 23:21:38 +00002472
Chris Lattnera179b522010-04-04 19:25:43 +00002473 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling480ff322009-05-20 23:21:38 +00002474 }
2475}
2476
Devang Patel930143b2009-11-21 02:48:08 +00002477/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling480ff322009-05-20 23:21:38 +00002478/// the line matrix.
2479///
Devang Patel930143b2009-11-21 02:48:08 +00002480void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling480ff322009-05-20 23:21:38 +00002481 // Define last address of section.
Chris Lattner566cae92010-03-09 23:52:58 +00002482 Asm->OutStreamer.AddComment("Extended Op");
2483 Asm->EmitInt8(0);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002484
Chris Lattner566cae92010-03-09 23:52:58 +00002485 Asm->OutStreamer.AddComment("Op size");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002486 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner566cae92010-03-09 23:52:58 +00002487 Asm->OutStreamer.AddComment("DW_LNE_set_address");
2488 Asm->EmitInt8(dwarf::DW_LNE_set_address);
2489
2490 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerb245dfb2010-03-10 01:17:49 +00002491
Chris Lattnera179b522010-04-04 19:25:43 +00002492 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattner3a383cb2010-04-05 00:13:49 +00002493 Asm->getTargetData().getPointerSize(),
2494 0/*AddrSpace*/);
Bill Wendling480ff322009-05-20 23:21:38 +00002495
2496 // Mark end of matrix.
Chris Lattner566cae92010-03-09 23:52:58 +00002497 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
2498 Asm->EmitInt8(0);
Chris Lattnerf5c834f2010-01-22 22:09:00 +00002499 Asm->EmitInt8(1);
Chris Lattnerfa823552010-01-22 23:18:42 +00002500 Asm->EmitInt8(1);
Bill Wendling480ff322009-05-20 23:21:38 +00002501}
2502
Devang Patel930143b2009-11-21 02:48:08 +00002503/// emitCommonDebugFrame - Emit common frame info into a debug frame section.
Bill Wendling480ff322009-05-20 23:21:38 +00002504///
Devang Patel930143b2009-11-21 02:48:08 +00002505void DwarfDebug::emitCommonDebugFrame() {
Chris Lattner3a383cb2010-04-05 00:13:49 +00002506 if (!Asm->MAI->doesDwarfRequireFrameSection())
Bill Wendling480ff322009-05-20 23:21:38 +00002507 return;
2508
Chris Lattner3a383cb2010-04-05 00:13:49 +00002509 int stackGrowth = Asm->getTargetData().getPointerSize();
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002510 if (Asm->TM.getFrameLowering()->getStackGrowthDirection() ==
2511 TargetFrameLowering::StackGrowsDown)
Chris Lattner3a383cb2010-04-05 00:13:49 +00002512 stackGrowth *= -1;
Bill Wendling480ff322009-05-20 23:21:38 +00002513
2514 // Start the dwarf frame section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002515 Asm->OutStreamer.SwitchSection(
2516 Asm->getObjFileLowering().getDwarfFrameSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002517
Chris Lattnera179b522010-04-04 19:25:43 +00002518 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_frame_common"));
Chris Lattner566cae92010-03-09 23:52:58 +00002519 Asm->OutStreamer.AddComment("Length of Common Information Entry");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002520 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_frame_common_end"),
2521 Asm->GetTempSymbol("debug_frame_common_begin"), 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002522
Chris Lattnera179b522010-04-04 19:25:43 +00002523 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_frame_common_begin"));
Chris Lattner566cae92010-03-09 23:52:58 +00002524 Asm->OutStreamer.AddComment("CIE Identifier Tag");
Bill Wendling480ff322009-05-20 23:21:38 +00002525 Asm->EmitInt32((int)dwarf::DW_CIE_ID);
Chris Lattner566cae92010-03-09 23:52:58 +00002526 Asm->OutStreamer.AddComment("CIE Version");
Bill Wendling480ff322009-05-20 23:21:38 +00002527 Asm->EmitInt8(dwarf::DW_CIE_VERSION);
Chris Lattner566cae92010-03-09 23:52:58 +00002528 Asm->OutStreamer.AddComment("CIE Augmentation");
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002529 Asm->OutStreamer.EmitIntValue(0, 1, /*addrspace*/0); // nul terminator.
Chris Lattner9efd1182010-04-04 19:09:29 +00002530 Asm->EmitULEB128(1, "CIE Code Alignment Factor");
2531 Asm->EmitSLEB128(stackGrowth, "CIE Data Alignment Factor");
Chris Lattner566cae92010-03-09 23:52:58 +00002532 Asm->OutStreamer.AddComment("CIE RA Column");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002533 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002534 const TargetFrameLowering *TFI = Asm->TM.getFrameLowering();
Bill Wendling480ff322009-05-20 23:21:38 +00002535 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false));
Bill Wendling480ff322009-05-20 23:21:38 +00002536
2537 std::vector<MachineMove> Moves;
Anton Korobeynikov14ee3442010-11-18 23:25:52 +00002538 TFI->getInitialFrameState(Moves);
Bill Wendling480ff322009-05-20 23:21:38 +00002539
Chris Lattneraabc6042010-04-04 23:41:46 +00002540 Asm->EmitFrameMoves(Moves, 0, false);
Bill Wendling480ff322009-05-20 23:21:38 +00002541
Chris Lattner9e06e532010-04-28 01:05:45 +00002542 Asm->EmitAlignment(2);
Chris Lattnera179b522010-04-04 19:25:43 +00002543 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_frame_common_end"));
Bill Wendling480ff322009-05-20 23:21:38 +00002544}
2545
Devang Patel930143b2009-11-21 02:48:08 +00002546/// emitFunctionDebugFrame - Emit per function frame info into a debug frame
Bill Wendling480ff322009-05-20 23:21:38 +00002547/// section.
Chris Lattner2c3f4782010-03-13 07:26:18 +00002548void DwarfDebug::
2549emitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo) {
Chris Lattner3a383cb2010-04-05 00:13:49 +00002550 if (!Asm->MAI->doesDwarfRequireFrameSection())
Bill Wendling480ff322009-05-20 23:21:38 +00002551 return;
2552
2553 // Start the dwarf frame section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002554 Asm->OutStreamer.SwitchSection(
2555 Asm->getObjFileLowering().getDwarfFrameSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002556
Chris Lattner566cae92010-03-09 23:52:58 +00002557 Asm->OutStreamer.AddComment("Length of Frame Information Entry");
Chris Lattner2c3f4782010-03-13 07:26:18 +00002558 MCSymbol *DebugFrameBegin =
Chris Lattnera179b522010-04-04 19:25:43 +00002559 Asm->GetTempSymbol("debug_frame_begin", DebugFrameInfo.Number);
Chris Lattner2c3f4782010-03-13 07:26:18 +00002560 MCSymbol *DebugFrameEnd =
Chris Lattnera179b522010-04-04 19:25:43 +00002561 Asm->GetTempSymbol("debug_frame_end", DebugFrameInfo.Number);
Chris Lattnerf1429f12010-04-04 19:58:12 +00002562 Asm->EmitLabelDifference(DebugFrameEnd, DebugFrameBegin, 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002563
Chris Lattner2c3f4782010-03-13 07:26:18 +00002564 Asm->OutStreamer.EmitLabel(DebugFrameBegin);
Bill Wendling480ff322009-05-20 23:21:38 +00002565
Chris Lattner566cae92010-03-09 23:52:58 +00002566 Asm->OutStreamer.AddComment("FDE CIE offset");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002567 Asm->EmitSectionOffset(Asm->GetTempSymbol("debug_frame_common"),
Chris Lattner70a4fce2010-04-04 23:25:33 +00002568 DwarfFrameSectionSym);
Bill Wendling480ff322009-05-20 23:21:38 +00002569
Chris Lattner566cae92010-03-09 23:52:58 +00002570 Asm->OutStreamer.AddComment("FDE initial location");
Chris Lattnera179b522010-04-04 19:25:43 +00002571 MCSymbol *FuncBeginSym =
2572 Asm->GetTempSymbol("func_begin", DebugFrameInfo.Number);
Chris Lattner8811e122010-03-13 07:40:56 +00002573 Asm->OutStreamer.EmitSymbolValue(FuncBeginSym,
Chris Lattner3a383cb2010-04-05 00:13:49 +00002574 Asm->getTargetData().getPointerSize(),
2575 0/*AddrSpace*/);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002576
2577
Chris Lattner566cae92010-03-09 23:52:58 +00002578 Asm->OutStreamer.AddComment("FDE address range");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002579 Asm->EmitLabelDifference(Asm->GetTempSymbol("func_end",DebugFrameInfo.Number),
Chris Lattner3a383cb2010-04-05 00:13:49 +00002580 FuncBeginSym, Asm->getTargetData().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00002581
Chris Lattneraabc6042010-04-04 23:41:46 +00002582 Asm->EmitFrameMoves(DebugFrameInfo.Moves, FuncBeginSym, false);
Bill Wendling480ff322009-05-20 23:21:38 +00002583
Chris Lattner9e06e532010-04-28 01:05:45 +00002584 Asm->EmitAlignment(2);
Chris Lattner2c3f4782010-03-13 07:26:18 +00002585 Asm->OutStreamer.EmitLabel(DebugFrameEnd);
Bill Wendling480ff322009-05-20 23:21:38 +00002586}
2587
Devang Patel9ccfb642009-12-09 18:24:21 +00002588/// emitDebugPubNames - Emit visible names into a debug pubnames section.
2589///
2590void DwarfDebug::emitDebugPubNames() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00002591 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
2592 E = CUMap.end(); I != E; ++I) {
2593 CompileUnit *TheCU = I->second;
2594 // Start the dwarf pubnames section.
2595 Asm->OutStreamer.SwitchSection(
2596 Asm->getObjFileLowering().getDwarfPubNamesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002597
Devang Patel1a0df9a2010-05-10 22:49:55 +00002598 Asm->OutStreamer.AddComment("Length of Public Names Info");
2599 Asm->EmitLabelDifference(
2600 Asm->GetTempSymbol("pubnames_end", TheCU->getID()),
2601 Asm->GetTempSymbol("pubnames_begin", TheCU->getID()), 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002602
Devang Patel1a0df9a2010-05-10 22:49:55 +00002603 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_begin",
2604 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002605
Devang Patel1a0df9a2010-05-10 22:49:55 +00002606 Asm->OutStreamer.AddComment("DWARF Version");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002607 Asm->EmitInt16(dwarf::DWARF_VERSION);
2608
Devang Patel1a0df9a2010-05-10 22:49:55 +00002609 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002610 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
Devang Patel1a0df9a2010-05-10 22:49:55 +00002611 DwarfInfoSectionSym);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002612
Devang Patel1a0df9a2010-05-10 22:49:55 +00002613 Asm->OutStreamer.AddComment("Compilation Unit Length");
2614 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
2615 Asm->GetTempSymbol("info_begin", TheCU->getID()),
2616 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002617
Devang Patel1a0df9a2010-05-10 22:49:55 +00002618 const StringMap<DIE*> &Globals = TheCU->getGlobals();
2619 for (StringMap<DIE*>::const_iterator
2620 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2621 const char *Name = GI->getKeyData();
2622 DIE *Entity = GI->second;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002623
Devang Patel1a0df9a2010-05-10 22:49:55 +00002624 Asm->OutStreamer.AddComment("DIE offset");
2625 Asm->EmitInt32(Entity->getOffset());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002626
Devang Patel1a0df9a2010-05-10 22:49:55 +00002627 if (Asm->isVerbose())
2628 Asm->OutStreamer.AddComment("External Name");
2629 Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
2630 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002631
Devang Patel1a0df9a2010-05-10 22:49:55 +00002632 Asm->OutStreamer.AddComment("End Mark");
2633 Asm->EmitInt32(0);
2634 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_end",
2635 TheCU->getID()));
Bill Wendling480ff322009-05-20 23:21:38 +00002636 }
Bill Wendling480ff322009-05-20 23:21:38 +00002637}
2638
Devang Patel04d2f2d2009-11-24 01:14:22 +00002639void DwarfDebug::emitDebugPubTypes() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00002640 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
2641 E = CUMap.end(); I != E; ++I) {
2642 CompileUnit *TheCU = I->second;
2643 // Start the dwarf pubnames section.
2644 Asm->OutStreamer.SwitchSection(
2645 Asm->getObjFileLowering().getDwarfPubTypesSection());
2646 Asm->OutStreamer.AddComment("Length of Public Types Info");
2647 Asm->EmitLabelDifference(
2648 Asm->GetTempSymbol("pubtypes_end", TheCU->getID()),
2649 Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002650
Devang Patel1a0df9a2010-05-10 22:49:55 +00002651 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
2652 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002653
Devang Patel1a0df9a2010-05-10 22:49:55 +00002654 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
2655 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002656
Devang Patel1a0df9a2010-05-10 22:49:55 +00002657 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
2658 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
2659 DwarfInfoSectionSym);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002660
Devang Patel1a0df9a2010-05-10 22:49:55 +00002661 Asm->OutStreamer.AddComment("Compilation Unit Length");
2662 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
2663 Asm->GetTempSymbol("info_begin", TheCU->getID()),
2664 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002665
Devang Patel1a0df9a2010-05-10 22:49:55 +00002666 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
2667 for (StringMap<DIE*>::const_iterator
2668 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2669 const char *Name = GI->getKeyData();
2670 DIE * Entity = GI->second;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002671
Devang Patel1a0df9a2010-05-10 22:49:55 +00002672 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
2673 Asm->EmitInt32(Entity->getOffset());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002674
Devang Patel1a0df9a2010-05-10 22:49:55 +00002675 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
2676 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
2677 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002678
Devang Patel1a0df9a2010-05-10 22:49:55 +00002679 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002680 Asm->EmitInt32(0);
Devang Patel1a0df9a2010-05-10 22:49:55 +00002681 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
2682 TheCU->getID()));
Devang Patel04d2f2d2009-11-24 01:14:22 +00002683 }
Devang Patel04d2f2d2009-11-24 01:14:22 +00002684}
2685
Devang Patel930143b2009-11-21 02:48:08 +00002686/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling480ff322009-05-20 23:21:38 +00002687///
Devang Patel930143b2009-11-21 02:48:08 +00002688void DwarfDebug::emitDebugStr() {
Bill Wendling480ff322009-05-20 23:21:38 +00002689 // Check to see if it is worth the effort.
Chris Lattner3d72a672010-03-09 23:38:23 +00002690 if (StringPool.empty()) return;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002691
Chris Lattner3d72a672010-03-09 23:38:23 +00002692 // Start the dwarf str section.
2693 Asm->OutStreamer.SwitchSection(
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002694 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002695
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002696 // Get all of the string pool entries and put them in an array by their ID so
2697 // we can sort them.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002698 SmallVector<std::pair<unsigned,
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002699 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002700
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002701 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
2702 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
2703 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002704
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002705 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002706
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002707 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner3d72a672010-03-09 23:38:23 +00002708 // Emit a label for reference from debug information entries.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002709 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002710
Chris Lattner3d72a672010-03-09 23:38:23 +00002711 // Emit the string itself.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002712 Asm->OutStreamer.EmitBytes(Entries[i].second->getKey(), 0/*addrspace*/);
Bill Wendling480ff322009-05-20 23:21:38 +00002713 }
2714}
2715
Devang Patel930143b2009-11-21 02:48:08 +00002716/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling480ff322009-05-20 23:21:38 +00002717///
Devang Patel930143b2009-11-21 02:48:08 +00002718void DwarfDebug::emitDebugLoc() {
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002719 if (DotDebugLocEntries.empty())
2720 return;
2721
Devang Patel116a9d72011-02-04 22:57:18 +00002722 for (SmallVector<DotDebugLocEntry, 4>::iterator
2723 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
2724 I != E; ++I) {
2725 DotDebugLocEntry &Entry = *I;
2726 if (I + 1 != DotDebugLocEntries.end())
2727 Entry.Merge(I+1);
2728 }
2729
Daniel Dunbarfd95b012011-03-16 22:16:39 +00002730 // Start the dwarf loc section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002731 Asm->OutStreamer.SwitchSection(
Devang Patel9fc11702010-05-25 23:40:22 +00002732 Asm->getObjFileLowering().getDwarfLocSection());
2733 unsigned char Size = Asm->getTargetData().getPointerSize();
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002734 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
2735 unsigned index = 1;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002736 for (SmallVector<DotDebugLocEntry, 4>::iterator
2737 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel30265c42010-07-07 20:12:52 +00002738 I != E; ++I, ++index) {
Devang Patel116a9d72011-02-04 22:57:18 +00002739 DotDebugLocEntry &Entry = *I;
2740 if (Entry.isMerged()) continue;
Devang Patel9fc11702010-05-25 23:40:22 +00002741 if (Entry.isEmpty()) {
2742 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
2743 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002744 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patel9fc11702010-05-25 23:40:22 +00002745 } else {
2746 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0);
2747 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0);
Devang Patel3e021532011-04-28 02:22:40 +00002748 DIVariable DV(Entry.Variable);
2749 if (DV.hasComplexAddress()) {
2750 unsigned N = DV.getNumAddrElements();
2751 unsigned i = 0;
2752 Asm->OutStreamer.AddComment("Loc expr size");
2753 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
2754 // If first address element is OpPlus then emit
2755 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
2756 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
2757 Asm->EmitInt16(Asm->getDwarfRegOpSize(Loc) + N - 2);
2758 Asm->EmitDwarfRegOp(Loc);
2759// Asm->EmitULEB128(DV.getAddrElement(1));
2760 i = 2;
2761 } else {
2762 Asm->EmitInt16(Asm->getDwarfRegOpSize(Entry.Loc) + N);
2763 Asm->EmitDwarfRegOp(Entry.Loc);
2764 }
2765
2766 // Emit remaining complex address elements.
2767 for (; i < N; ++i) {
2768 uint64_t Element = DV.getAddrElement(i);
2769 if (Element == DIBuilder::OpPlus) {
2770 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2771 Asm->EmitULEB128(DV.getAddrElement(++i));
2772 } else if (Element == DIBuilder::OpDeref)
2773 Asm->EmitInt8(dwarf::DW_OP_deref);
2774 else llvm_unreachable("unknown Opcode found in complex address");
2775 }
2776 } else {
2777 Asm->OutStreamer.AddComment("Loc expr size");
2778 Asm->EmitInt16(Asm->getDwarfRegOpSize(Entry.Loc));
2779 Asm->EmitDwarfRegOp(Entry.Loc);
2780 }
Devang Patel9fc11702010-05-25 23:40:22 +00002781 }
2782 }
Bill Wendling480ff322009-05-20 23:21:38 +00002783}
2784
2785/// EmitDebugARanges - Emit visible names into a debug aranges section.
2786///
2787void DwarfDebug::EmitDebugARanges() {
2788 // Start the dwarf aranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002789 Asm->OutStreamer.SwitchSection(
2790 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002791}
2792
Devang Patel930143b2009-11-21 02:48:08 +00002793/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling480ff322009-05-20 23:21:38 +00002794///
Devang Patel930143b2009-11-21 02:48:08 +00002795void DwarfDebug::emitDebugRanges() {
Bill Wendling480ff322009-05-20 23:21:38 +00002796 // Start the dwarf ranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002797 Asm->OutStreamer.SwitchSection(
Devang Patel12563b32010-04-16 23:33:45 +00002798 Asm->getObjFileLowering().getDwarfRangesSection());
Devang Patel6c74a872010-04-27 19:46:33 +00002799 unsigned char Size = Asm->getTargetData().getPointerSize();
2800 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002801 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Patel6c74a872010-04-27 19:46:33 +00002802 I != E; ++I) {
2803 if (*I)
2804 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0);
Devang Patel12563b32010-04-16 23:33:45 +00002805 else
Devang Patel6c74a872010-04-27 19:46:33 +00002806 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel12563b32010-04-16 23:33:45 +00002807 }
Bill Wendling480ff322009-05-20 23:21:38 +00002808}
2809
Devang Patel930143b2009-11-21 02:48:08 +00002810/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling480ff322009-05-20 23:21:38 +00002811///
Devang Patel930143b2009-11-21 02:48:08 +00002812void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00002813 if (const MCSection *LineInfo =
Chris Lattner1472cf52009-08-02 07:24:22 +00002814 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling480ff322009-05-20 23:21:38 +00002815 // Start the dwarf macinfo section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002816 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00002817 }
2818}
2819
Devang Patel930143b2009-11-21 02:48:08 +00002820/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling480ff322009-05-20 23:21:38 +00002821/// Section Header:
2822/// 1. length of section
2823/// 2. Dwarf version number
2824/// 3. address size.
2825///
2826/// Entries (one "entry" for each function that was inlined):
2827///
2828/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2829/// otherwise offset into __debug_str for regular function name.
2830/// 2. offset into __debug_str section for regular function name.
2831/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2832/// instances for the function.
2833///
2834/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2835/// inlined instance; the die_offset points to the inlined_subroutine die in the
2836/// __debug_info section, and the low_pc is the starting address for the
2837/// inlining instance.
Devang Patel930143b2009-11-21 02:48:08 +00002838void DwarfDebug::emitDebugInlineInfo() {
Chris Lattner3a383cb2010-04-05 00:13:49 +00002839 if (!Asm->MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling480ff322009-05-20 23:21:38 +00002840 return;
2841
Devang Patel1a0df9a2010-05-10 22:49:55 +00002842 if (!FirstCU)
Bill Wendling480ff322009-05-20 23:21:38 +00002843 return;
2844
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002845 Asm->OutStreamer.SwitchSection(
2846 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattnerf5c834f2010-01-22 22:09:00 +00002847
Chris Lattner566cae92010-03-09 23:52:58 +00002848 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002849 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
2850 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002851
Chris Lattnera179b522010-04-04 19:25:43 +00002852 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00002853
Chris Lattner566cae92010-03-09 23:52:58 +00002854 Asm->OutStreamer.AddComment("Dwarf Version");
2855 Asm->EmitInt16(dwarf::DWARF_VERSION);
2856 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002857 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00002858
Devang Patel32cc43c2010-05-07 20:54:48 +00002859 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002860 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach042483e2009-11-21 23:12:12 +00002861
Devang Patel32cc43c2010-05-07 20:54:48 +00002862 const MDNode *Node = *I;
2863 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach00e9c612009-11-22 19:20:36 +00002864 = InlineInfo.find(Node);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002865 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patel80ae3492009-08-28 23:24:31 +00002866 DISubprogram SP(Node);
Devang Patel2d9caf92009-11-25 17:36:49 +00002867 StringRef LName = SP.getLinkageName();
2868 StringRef Name = SP.getName();
Bill Wendling480ff322009-05-20 23:21:38 +00002869
Chris Lattner566cae92010-03-09 23:52:58 +00002870 Asm->OutStreamer.AddComment("MIPS linkage name");
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002871 if (LName.empty()) {
2872 Asm->OutStreamer.EmitBytes(Name, 0);
2873 Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002874 } else
Chris Lattner70a4fce2010-04-04 23:25:33 +00002875 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
2876 DwarfStrSectionSym);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002877
Chris Lattner566cae92010-03-09 23:52:58 +00002878 Asm->OutStreamer.AddComment("Function name");
Chris Lattner70a4fce2010-04-04 23:25:33 +00002879 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner9efd1182010-04-04 19:09:29 +00002880 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling480ff322009-05-20 23:21:38 +00002881
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002882 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling480ff322009-05-20 23:21:38 +00002883 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner7bde8c02010-04-04 18:52:31 +00002884 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner085b6522010-03-09 00:31:02 +00002885 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00002886
Chris Lattner7bde8c02010-04-04 18:52:31 +00002887 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002888 Asm->OutStreamer.EmitSymbolValue(LI->first,
2889 Asm->getTargetData().getPointerSize(),0);
Bill Wendling480ff322009-05-20 23:21:38 +00002890 }
2891 }
2892
Chris Lattnera179b522010-04-04 19:25:43 +00002893 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00002894}