blob: 388cef4d8b8a05cc0e3ef7347c15fc7a3b3c94db [file] [log] [blame]
Bill Wendling0310d762009-05-15 09:23:25 +00001//===-- llvm/CodeGen/DwarfDebug.cpp - Dwarf Debug Framework ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf debug info into asm files.
11//
12//===----------------------------------------------------------------------===//
Chris Lattner6cde3e62010-03-09 00:39:24 +000013
Devang Patele4b27562009-08-28 23:24:31 +000014#define DEBUG_TYPE "dwarfdebug"
Bill Wendling0310d762009-05-15 09:23:25 +000015#include "DwarfDebug.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000016#include "DIE.h"
Eric Christopher09ac3d82011-11-07 09:24:32 +000017#include "DwarfAccelTable.h"
Devang Patel8b9df622011-04-12 17:40:32 +000018#include "DwarfCompileUnit.h"
Bill Wendling57fbba42010-04-05 22:59:21 +000019#include "llvm/Constants.h"
Bill Wendling0310d762009-05-15 09:23:25 +000020#include "llvm/Module.h"
Devang Patele449d1f2011-01-20 00:02:16 +000021#include "llvm/Instructions.h"
David Greeneb2c66fc2009-08-19 21:52:55 +000022#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling0310d762009-05-15 09:23:25 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnerb7db7332010-03-09 01:58:53 +000024#include "llvm/MC/MCAsmInfo.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000025#include "llvm/MC/MCSection.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000026#include "llvm/MC/MCStreamer.h"
Chris Lattnerb7db7332010-03-09 01:58:53 +000027#include "llvm/MC/MCSymbol.h"
Bill Wendling0310d762009-05-15 09:23:25 +000028#include "llvm/Target/TargetData.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000029#include "llvm/Target/TargetFrameLowering.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000030#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner9d1c1ad2010-04-04 18:06:11 +000031#include "llvm/Target/TargetMachine.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000032#include "llvm/Target/TargetRegisterInfo.h"
Devang Patel2a4a3b72010-04-19 19:14:02 +000033#include "llvm/Target/TargetOptions.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000034#include "llvm/Analysis/DebugInfo.h"
Devang Patel0eea95d2011-02-24 18:49:30 +000035#include "llvm/Analysis/DIBuilder.h"
Devang Patel9a31f0f2010-10-25 20:45:32 +000036#include "llvm/ADT/Statistic.h"
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +000037#include "llvm/ADT/STLExtras.h"
Chris Lattner23132b12009-08-24 03:52:50 +000038#include "llvm/ADT/StringExtras.h"
Devang Pateleac9c072010-04-27 19:46:33 +000039#include "llvm/Support/CommandLine.h"
Daniel Dunbar6e4bdfc2009-10-13 06:47:08 +000040#include "llvm/Support/Debug.h"
41#include "llvm/Support/ErrorHandling.h"
Devang Patel3139fcf2010-01-26 21:39:14 +000042#include "llvm/Support/ValueHandle.h"
Chris Lattner0ad9c912010-01-22 22:09:00 +000043#include "llvm/Support/FormattedStream.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000044#include "llvm/Support/Timer.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000045#include "llvm/Support/Path.h"
Bill Wendling0310d762009-05-15 09:23:25 +000046using namespace llvm;
47
Jim Grosbach1e20b962010-07-21 21:21:52 +000048static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print",
Devang Patel61409622010-07-07 20:12:52 +000049 cl::Hidden,
Devang Pateleac9c072010-04-27 19:46:33 +000050 cl::desc("Disable debug info printing"));
51
Dan Gohman281d65d2010-05-07 01:08:53 +000052static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden,
Chris Lattner7a2bdde2011-04-15 05:18:47 +000053 cl::desc("Make an absence of debug location information explicit."),
Dan Gohman281d65d2010-05-07 01:08:53 +000054 cl::init(false));
55
Eric Christopher09ac3d82011-11-07 09:24:32 +000056static cl::opt<bool> DwarfAccelTables("dwarf-accel-tables", cl::Hidden,
57 cl::desc("Output prototype dwarf accelerator tables."),
58 cl::init(false));
59
Bill Wendling5f017e82010-04-07 09:28:04 +000060namespace {
61 const char *DWARFGroupName = "DWARF Emission";
62 const char *DbgTimerName = "DWARF Debug Writer";
63} // end anonymous namespace
64
Bill Wendling0310d762009-05-15 09:23:25 +000065//===----------------------------------------------------------------------===//
66
67/// Configuration values for initial hash set sizes (log2).
68///
Bill Wendling0310d762009-05-15 09:23:25 +000069static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling0310d762009-05-15 09:23:25 +000070
71namespace llvm {
72
Nick Lewycky3bbb6f72011-07-29 03:49:23 +000073DIType DbgVariable::getType() const {
Devang Patel3cbee302011-04-12 22:53:02 +000074 DIType Ty = Var.getType();
75 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
76 // addresses instead.
77 if (Var.isBlockByrefVariable()) {
78 /* Byref variables, in Blocks, are declared by the programmer as
79 "SomeType VarName;", but the compiler creates a
80 __Block_byref_x_VarName struct, and gives the variable VarName
81 either the struct, or a pointer to the struct, as its type. This
82 is necessary for various behind-the-scenes things the compiler
83 needs to do with by-reference variables in blocks.
84
85 However, as far as the original *programmer* is concerned, the
86 variable should still have type 'SomeType', as originally declared.
87
88 The following function dives into the __Block_byref_x_VarName
89 struct to find the original type of the variable. This will be
90 passed back to the code generating the type for the Debug
91 Information Entry for the variable 'VarName'. 'VarName' will then
92 have the original type 'SomeType' in its debug information.
93
94 The original type 'SomeType' will be the type of the field named
95 'VarName' inside the __Block_byref_x_VarName struct.
96
97 NOTE: In order for this to not completely fail on the debugger
98 side, the Debug Information Entry for the variable VarName needs to
99 have a DW_AT_location that tells the debugger how to unwind through
100 the pointers and __Block_byref_x_VarName struct to find the actual
101 value of the variable. The function addBlockByrefType does this. */
102 DIType subType = Ty;
103 unsigned tag = Ty.getTag();
104
105 if (tag == dwarf::DW_TAG_pointer_type) {
106 DIDerivedType DTy = DIDerivedType(Ty);
107 subType = DTy.getTypeDerivedFrom();
108 }
109
110 DICompositeType blockStruct = DICompositeType(subType);
111 DIArray Elements = blockStruct.getTypeArray();
112
113 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
114 DIDescriptor Element = Elements.getElement(i);
115 DIDerivedType DT = DIDerivedType(Element);
116 if (getName() == DT.getName())
117 return (DT.getTypeDerivedFrom());
Devang Patel8bd11de2010-08-09 21:01:39 +0000118 }
119 return Ty;
120 }
Devang Patel3cbee302011-04-12 22:53:02 +0000121 return Ty;
122}
Bill Wendling0310d762009-05-15 09:23:25 +0000123
Chris Lattnerea761862010-04-05 04:09:20 +0000124} // end llvm namespace
Bill Wendling0310d762009-05-15 09:23:25 +0000125
Chris Lattner49cd6642010-04-05 05:11:15 +0000126DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
Devang Patel163a9f72010-05-10 22:49:55 +0000127 : Asm(A), MMI(Asm->MMI), FirstCU(0),
Jim Grosbach1e20b962010-07-21 21:21:52 +0000128 AbbreviationsSet(InitAbbreviationsSetSize),
Devang Patelbf47fdb2011-08-10 20:55:27 +0000129 PrevLabel(NULL) {
Chris Lattnerbc733f52010-03-13 02:17:42 +0000130 NextStringPoolNumber = 0;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000131
Rafael Espindolaf2b04232011-05-06 14:56:22 +0000132 DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0;
Chris Lattner4ad1efe2010-04-04 23:10:38 +0000133 DwarfStrSectionSym = TextSectionSym = 0;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000134 DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = 0;
Devang Patelc3f5f782010-05-25 23:40:22 +0000135 FunctionBeginSym = FunctionEndSym = 0;
Dan Gohman03c3dc72010-06-18 15:56:31 +0000136 {
137 NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
138 beginModule(M);
Torok Edwin9c421072010-04-07 10:44:46 +0000139 }
Bill Wendling0310d762009-05-15 09:23:25 +0000140}
141DwarfDebug::~DwarfDebug() {
Bill Wendling0310d762009-05-15 09:23:25 +0000142}
143
Eric Christopherd8a87522011-11-07 09:18:38 +0000144/// EmitSectionSym - Switch to the specified MCSection and emit an assembler
145/// temporary label to it if SymbolStem is specified.
146static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section,
147 const char *SymbolStem = 0) {
148 Asm->OutStreamer.SwitchSection(Section);
149 if (!SymbolStem) return 0;
150
151 MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem);
152 Asm->OutStreamer.EmitLabel(TmpSym);
153 return TmpSym;
154}
155
Nick Lewycky390c40d2011-10-27 06:44:11 +0000156MCSymbol *DwarfDebug::getStringPool() {
157 return Asm->GetTempSymbol("section_str");
158}
159
Chris Lattnerbc733f52010-03-13 02:17:42 +0000160MCSymbol *DwarfDebug::getStringPoolEntry(StringRef Str) {
161 std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str];
162 if (Entry.first) return Entry.first;
163
164 Entry.second = NextStringPoolNumber++;
Chris Lattnerc0215722010-04-04 19:25:43 +0000165 return Entry.first = Asm->GetTempSymbol("string", Entry.second);
Chris Lattnerbc733f52010-03-13 02:17:42 +0000166}
167
Devang Patel2c4ceb12009-11-21 02:48:08 +0000168/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000169///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000170void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling0310d762009-05-15 09:23:25 +0000171 // Profile the node so that we can make it unique.
172 FoldingSetNodeID ID;
173 Abbrev.Profile(ID);
174
175 // Check the set for priors.
176 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
177
178 // If it's newly added.
179 if (InSet == &Abbrev) {
180 // Add to abbreviation list.
181 Abbreviations.push_back(&Abbrev);
182
183 // Assign the vector position + 1 as its number.
184 Abbrev.setNumber(Abbreviations.size());
185 } else {
186 // Assign existing abbreviation number.
187 Abbrev.setNumber(InSet->getNumber());
188 }
189}
190
Jim Grosbach1e20b962010-07-21 21:21:52 +0000191/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
Devang Patel351ca332010-01-05 01:46:14 +0000192/// printer to not emit usual symbol prefix before the symbol name is used then
193/// return linkage name after skipping this special LLVM prefix.
194static StringRef getRealLinkageName(StringRef LinkageName) {
195 char One = '\1';
196 if (LinkageName.startswith(StringRef(&One, 1)))
197 return LinkageName.substr(1);
198 return LinkageName;
199}
200
Eric Christopher0ffe2b42011-11-10 19:25:34 +0000201static bool isObjCClass(StringRef Name) {
202 return Name.startswith("+") || Name.startswith("-");
203}
204
205static bool hasObjCCategory(StringRef Name) {
206 if (!isObjCClass(Name)) return false;
207
208 size_t pos = Name.find(')');
209 if (pos != std::string::npos) {
210 if (Name[pos+1] != ' ') return false;
211 return true;
212 }
213 return false;
214}
215
216static void getObjCClassCategory(StringRef In, StringRef &Class,
217 StringRef &Category) {
218 if (!hasObjCCategory(In)) {
219 Class = In.slice(In.find('[') + 1, In.find(' '));
220 Category = "";
221 return;
222 }
223
224 Class = In.slice(In.find('[') + 1, In.find('('));
225 Category = In.slice(In.find('[') + 1, In.find(' '));
226 return;
227}
228
229static StringRef getObjCMethodName(StringRef In) {
230 return In.slice(In.find(' ') + 1, In.find(']'));
231}
232
233// Add the various names to the Dwarf accelerator table names.
234static void addSubprogramNames(CompileUnit *TheCU, DISubprogram SP,
235 DIE* Die) {
236 if (!SP.isDefinition()) return;
237
238 TheCU->addAccelName(SP.getName(), Die);
239
240 // If the linkage name is different than the name, go ahead and output
241 // that as well into the name table.
242 if (SP.getLinkageName() != "" && SP.getName() != SP.getLinkageName())
243 TheCU->addAccelName(SP.getLinkageName(), Die);
244
245 // If this is an Objective-C selector name add it to the ObjC accelerator
246 // too.
247 if (isObjCClass(SP.getName())) {
248 StringRef Class, Category;
249 getObjCClassCategory(SP.getName(), Class, Category);
250 TheCU->addAccelObjC(Class, Die);
251 if (Category != "")
252 TheCU->addAccelObjC(Category, Die);
253 // Also add the base method name to the name table.
254 TheCU->addAccelName(getObjCMethodName(SP.getName()), Die);
255 }
256}
257
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000258/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel2c4ceb12009-11-21 02:48:08 +0000259/// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
260/// If there are global variables in this scope then create and insert
261/// DIEs for these variables.
Devang Pateld3024342011-08-15 22:24:32 +0000262DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU,
263 const MDNode *SPNode) {
Devang Patel163a9f72010-05-10 22:49:55 +0000264 DIE *SPDie = SPCU->getDIE(SPNode);
Devang Patel8aa61472010-07-07 22:20:57 +0000265
Chris Lattnerd38fee82010-04-05 00:13:49 +0000266 assert(SPDie && "Unable to find subprogram DIE!");
267 DISubprogram SP(SPNode);
Jim Grosbach1e20b962010-07-21 21:21:52 +0000268
Devang Patel5e06bb82011-04-22 23:10:17 +0000269 DISubprogram SPDecl = SP.getFunctionDeclaration();
Rafael Espindolab0527282011-11-04 19:00:29 +0000270 if (!SPDecl.isSubprogram()) {
Devang Patel5e06bb82011-04-22 23:10:17 +0000271 // There is not any need to generate specification DIE for a function
272 // defined at compile unit level. If a function is defined inside another
273 // function then gdb prefers the definition at top level and but does not
274 // expect specification DIE in parent function. So avoid creating
275 // specification DIE for a function defined inside a function.
276 if (SP.isDefinition() && !SP.getContext().isCompileUnit() &&
277 !SP.getContext().isFile() &&
278 !isSubprogramContext(SP.getContext())) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000279 SPCU->addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Devang Patel5e06bb82011-04-22 23:10:17 +0000280
281 // Add arguments.
282 DICompositeType SPTy = SP.getType();
283 DIArray Args = SPTy.getTypeArray();
284 unsigned SPTag = SPTy.getTag();
285 if (SPTag == dwarf::DW_TAG_subroutine_type)
286 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
287 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
288 DIType ATy = DIType(DIType(Args.getElement(i)));
289 SPCU->addType(Arg, ATy);
290 if (ATy.isArtificial())
291 SPCU->addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
292 SPDie->addChild(Arg);
293 }
294 DIE *SPDeclDie = SPDie;
295 SPDie = new DIE(dwarf::DW_TAG_subprogram);
296 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
297 SPDeclDie);
298 SPCU->addDie(SPDie);
299 }
Chris Lattnerd38fee82010-04-05 00:13:49 +0000300 }
Devang Patel8aa61472010-07-07 22:20:57 +0000301 // Pick up abstract subprogram DIE.
302 if (DIE *AbsSPDIE = AbstractSPDies.lookup(SPNode)) {
303 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patel3cbee302011-04-12 22:53:02 +0000304 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin,
305 dwarf::DW_FORM_ref4, AbsSPDIE);
Devang Patel8aa61472010-07-07 22:20:57 +0000306 SPCU->addDie(SPDie);
307 }
308
Devang Patel3cbee302011-04-12 22:53:02 +0000309 SPCU->addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
310 Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber()));
311 SPCU->addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
312 Asm->GetTempSymbol("func_end", Asm->getFunctionNumber()));
Chris Lattnerd38fee82010-04-05 00:13:49 +0000313 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
314 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
Devang Patel3cbee302011-04-12 22:53:02 +0000315 SPCU->addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Devang Patelb4645642010-02-06 01:02:37 +0000316
Eric Christopher0ffe2b42011-11-10 19:25:34 +0000317 // Add name to the name table, we do this here because we're guaranteed
318 // to have concrete versions of our DW_TAG_subprogram nodes.
319 addSubprogramNames(SPCU, SP, SPDie);
320
Chris Lattnerd38fee82010-04-05 00:13:49 +0000321 return SPDie;
Devang Patel53bb5c92009-11-10 23:06:00 +0000322}
323
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000324/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel2c4ceb12009-11-21 02:48:08 +0000325/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Pateld3024342011-08-15 22:24:32 +0000326DIE *DwarfDebug::constructLexicalScopeDIE(CompileUnit *TheCU,
327 LexicalScope *Scope) {
Devang Pateleac9c072010-04-27 19:46:33 +0000328 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
329 if (Scope->isAbstractScope())
330 return ScopeDIE;
331
Devang Patelbf47fdb2011-08-10 20:55:27 +0000332 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Devang Pateleac9c072010-04-27 19:46:33 +0000333 if (Ranges.empty())
334 return 0;
335
Devang Patelbf47fdb2011-08-10 20:55:27 +0000336 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Pateleac9c072010-04-27 19:46:33 +0000337 if (Ranges.size() > 1) {
338 // .debug_range section has not been laid out yet. Emit offset in
Jim Grosbach1e20b962010-07-21 21:21:52 +0000339 // .debug_range as a uint, size 4, for now. emitDIE will handle
Devang Pateleac9c072010-04-27 19:46:33 +0000340 // DW_AT_ranges appropriately.
Devang Patel3cbee302011-04-12 22:53:02 +0000341 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel5bc942c2011-08-10 23:58:09 +0000342 DebugRangeSymbols.size()
343 * Asm->getTargetData().getPointerSize());
Devang Patelbf47fdb2011-08-10 20:55:27 +0000344 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Pateleac9c072010-04-27 19:46:33 +0000345 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patelc3f5f782010-05-25 23:40:22 +0000346 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
347 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
Devang Pateleac9c072010-04-27 19:46:33 +0000348 }
349 DebugRangeSymbols.push_back(NULL);
350 DebugRangeSymbols.push_back(NULL);
351 return ScopeDIE;
352 }
353
Devang Patelc3f5f782010-05-25 23:40:22 +0000354 const MCSymbol *Start = getLabelBeforeInsn(RI->first);
355 const MCSymbol *End = getLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +0000356
Devang Patelc3f5f782010-05-25 23:40:22 +0000357 if (End == 0) return 0;
Devang Patel53bb5c92009-11-10 23:06:00 +0000358
Chris Lattnerb7db7332010-03-09 01:58:53 +0000359 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
360 assert(End->isDefined() && "Invalid end label for an inlined scope!");
Jim Grosbach1e20b962010-07-21 21:21:52 +0000361
Devang Patel3cbee302011-04-12 22:53:02 +0000362 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start);
363 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, End);
Devang Patel53bb5c92009-11-10 23:06:00 +0000364
365 return ScopeDIE;
366}
367
Devang Patel2c4ceb12009-11-21 02:48:08 +0000368/// constructInlinedScopeDIE - This scope represents inlined body of
369/// a function. Construct DIE to represent this concrete inlined copy
370/// of the function.
Devang Pateld3024342011-08-15 22:24:32 +0000371DIE *DwarfDebug::constructInlinedScopeDIE(CompileUnit *TheCU,
372 LexicalScope *Scope) {
Devang Patelbf47fdb2011-08-10 20:55:27 +0000373 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Nick Lewycky746cb672011-10-26 22:55:33 +0000374 assert(Ranges.empty() == false &&
375 "LexicalScope does not have instruction markers!");
Devang Pateleac9c072010-04-27 19:46:33 +0000376
Devang Patel26a92002011-07-27 00:34:13 +0000377 if (!Scope->getScopeNode())
378 return NULL;
379 DIScope DS(Scope->getScopeNode());
380 DISubprogram InlinedSP = getDISubprogram(DS);
Devang Patel26a92002011-07-27 00:34:13 +0000381 DIE *OriginDIE = TheCU->getDIE(InlinedSP);
382 if (!OriginDIE) {
383 DEBUG(dbgs() << "Unable to find original DIE for inlined subprogram.");
384 return NULL;
385 }
386
Devang Patelbf47fdb2011-08-10 20:55:27 +0000387 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patelc3f5f782010-05-25 23:40:22 +0000388 const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first);
389 const MCSymbol *EndLabel = getLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +0000390
Devang Patel0afbf232010-07-08 22:39:20 +0000391 if (StartLabel == 0 || EndLabel == 0) {
Craig Topper5e25ee82012-02-05 08:31:47 +0000392 llvm_unreachable("Unexpected Start and End labels for a inlined scope!");
Devang Pateleac9c072010-04-27 19:46:33 +0000393 }
Chris Lattnerb7db7332010-03-09 01:58:53 +0000394 assert(StartLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +0000395 "Invalid starting label for an inlined scope!");
Chris Lattnerb7db7332010-03-09 01:58:53 +0000396 assert(EndLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +0000397 "Invalid end label for an inlined scope!");
Devang Pateleac9c072010-04-27 19:46:33 +0000398
Devang Pateld96efb82011-05-05 17:54:26 +0000399 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
Devang Patel3cbee302011-04-12 22:53:02 +0000400 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
401 dwarf::DW_FORM_ref4, OriginDIE);
Devang Patel53bb5c92009-11-10 23:06:00 +0000402
Devang Patel26a92002011-07-27 00:34:13 +0000403 if (Ranges.size() > 1) {
404 // .debug_range section has not been laid out yet. Emit offset in
405 // .debug_range as a uint, size 4, for now. emitDIE will handle
406 // DW_AT_ranges appropriately.
407 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel5bc942c2011-08-10 23:58:09 +0000408 DebugRangeSymbols.size()
409 * Asm->getTargetData().getPointerSize());
Devang Patelbf47fdb2011-08-10 20:55:27 +0000410 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel26a92002011-07-27 00:34:13 +0000411 RE = Ranges.end(); RI != RE; ++RI) {
412 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
413 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
414 }
415 DebugRangeSymbols.push_back(NULL);
416 DebugRangeSymbols.push_back(NULL);
417 } else {
Devang Patel5bc942c2011-08-10 23:58:09 +0000418 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
419 StartLabel);
420 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
421 EndLabel);
Devang Patel26a92002011-07-27 00:34:13 +0000422 }
Devang Patel53bb5c92009-11-10 23:06:00 +0000423
424 InlinedSubprogramDIEs.insert(OriginDIE);
425
426 // Track the start label for this inlined function.
Devang Patel26a92002011-07-27 00:34:13 +0000427 //.debug_inlined section specification does not clearly state how
428 // to emit inlined scope that is split into multiple instruction ranges.
429 // For now, use first instruction range and emit low_pc/high_pc pair and
430 // corresponding .debug_inlined section entry for this pair.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000431 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patel2db49d72010-05-07 18:11:54 +0000432 I = InlineInfo.find(InlinedSP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000433
434 if (I == InlineInfo.end()) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000435 InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patel2db49d72010-05-07 18:11:54 +0000436 InlinedSPNodes.push_back(InlinedSP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000437 } else
Chris Lattner6ed0f902010-03-09 00:31:02 +0000438 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patel53bb5c92009-11-10 23:06:00 +0000439
Devang Patel53bb5c92009-11-10 23:06:00 +0000440 DILocation DL(Scope->getInlinedAt());
Devang Patel3cbee302011-04-12 22:53:02 +0000441 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, TheCU->getID());
442 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patel53bb5c92009-11-10 23:06:00 +0000443
Eric Christopher309bedd2011-12-04 06:02:38 +0000444 // Add name to the name table, we do this here because we're guaranteed
445 // to have concrete versions of our DW_TAG_inlined_subprogram nodes.
446 addSubprogramNames(TheCU, InlinedSP, ScopeDIE);
447
Devang Patel53bb5c92009-11-10 23:06:00 +0000448 return ScopeDIE;
449}
450
Devang Patel2c4ceb12009-11-21 02:48:08 +0000451/// constructScopeDIE - Construct a DIE for this scope.
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000452DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) {
Devang Patel3c91b052010-03-08 20:52:55 +0000453 if (!Scope || !Scope->getScopeNode())
454 return NULL;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000455
Nick Lewycky746cb672011-10-26 22:55:33 +0000456 SmallVector<DIE *, 8> Children;
Devang Patel0478c152011-03-01 22:58:55 +0000457
458 // Collect arguments for current function.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000459 if (LScopes.isCurrentFunctionScope(Scope))
Devang Patel0478c152011-03-01 22:58:55 +0000460 for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i)
461 if (DbgVariable *ArgDV = CurrentFnArguments[i])
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000462 if (DIE *Arg =
463 TheCU->constructVariableDIE(ArgDV, Scope->isAbstractScope()))
Devang Patel0478c152011-03-01 22:58:55 +0000464 Children.push_back(Arg);
465
Eric Christopher1aeb7ac2011-10-03 15:49:16 +0000466 // Collect lexical scope children first.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000467 const SmallVector<DbgVariable *, 8> &Variables = ScopeVariables.lookup(Scope);
Devang Patel5bc9fec2011-02-19 01:31:27 +0000468 for (unsigned i = 0, N = Variables.size(); i < N; ++i)
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000469 if (DIE *Variable =
470 TheCU->constructVariableDIE(Variables[i], Scope->isAbstractScope()))
Devang Patel5bc9fec2011-02-19 01:31:27 +0000471 Children.push_back(Variable);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000472 const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren();
Devang Patel5bc9fec2011-02-19 01:31:27 +0000473 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000474 if (DIE *Nested = constructScopeDIE(TheCU, Scopes[j]))
Devang Patel5bc9fec2011-02-19 01:31:27 +0000475 Children.push_back(Nested);
Devang Patel3c91b052010-03-08 20:52:55 +0000476 DIScope DS(Scope->getScopeNode());
477 DIE *ScopeDIE = NULL;
478 if (Scope->getInlinedAt())
Devang Pateld3024342011-08-15 22:24:32 +0000479 ScopeDIE = constructInlinedScopeDIE(TheCU, Scope);
Devang Patel3c91b052010-03-08 20:52:55 +0000480 else if (DS.isSubprogram()) {
Devang Patel0dd45582010-06-28 20:53:04 +0000481 ProcessedSPNodes.insert(DS);
Devang Patel8aa61472010-07-07 22:20:57 +0000482 if (Scope->isAbstractScope()) {
Devang Pateld3024342011-08-15 22:24:32 +0000483 ScopeDIE = TheCU->getDIE(DS);
Devang Patel8aa61472010-07-07 22:20:57 +0000484 // Note down abstract DIE.
485 if (ScopeDIE)
486 AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
487 }
Devang Patel3c91b052010-03-08 20:52:55 +0000488 else
Devang Pateld3024342011-08-15 22:24:32 +0000489 ScopeDIE = updateSubprogramScopeDIE(TheCU, DS);
Devang Patel3c91b052010-03-08 20:52:55 +0000490 }
Devang Patel5bc9fec2011-02-19 01:31:27 +0000491 else {
492 // There is no need to emit empty lexical block DIE.
493 if (Children.empty())
494 return NULL;
Devang Pateld3024342011-08-15 22:24:32 +0000495 ScopeDIE = constructLexicalScopeDIE(TheCU, Scope);
Devang Patel5bc9fec2011-02-19 01:31:27 +0000496 }
497
Devang Patelaead63c2010-03-29 22:59:58 +0000498 if (!ScopeDIE) return NULL;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000499
Devang Patel5bc9fec2011-02-19 01:31:27 +0000500 // Add children
501 for (SmallVector<DIE *, 8>::iterator I = Children.begin(),
502 E = Children.end(); I != E; ++I)
503 ScopeDIE->addChild(*I);
Devang Patel193f7202009-11-24 01:14:22 +0000504
Jim Grosbach1e20b962010-07-21 21:21:52 +0000505 if (DS.isSubprogram())
Eric Christopher0ffe2b42011-11-10 19:25:34 +0000506 TheCU->addPubTypes(DISubprogram(DS));
Jim Grosbach1e20b962010-07-21 21:21:52 +0000507
Eric Christopher0ffe2b42011-11-10 19:25:34 +0000508 return ScopeDIE;
Devang Patel53bb5c92009-11-10 23:06:00 +0000509}
510
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000511/// GetOrCreateSourceID - Look up the source id with the given directory and
512/// source file names. If none currently exists, create a new id and insert it
513/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
514/// maps as well.
Devang Patel23670e52011-03-24 20:30:50 +0000515unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
516 StringRef DirName) {
Devang Patel1905a182010-09-16 20:57:49 +0000517 // If FE did not provide a file name, then assume stdin.
518 if (FileName.empty())
Devang Patel23670e52011-03-24 20:30:50 +0000519 return GetOrCreateSourceID("<stdin>", StringRef());
520
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000521 // TODO: this might not belong here. See if we can factor this better.
522 if (DirName == CompilationDir)
523 DirName = "";
524
Nick Lewycky44d798d2011-10-17 23:05:28 +0000525 unsigned SrcId = SourceIdMap.size()+1;
Devang Patel1905a182010-09-16 20:57:49 +0000526
Benjamin Kramer74612c22012-03-11 14:56:26 +0000527 // We look up the file/dir pair by concatenating them with a zero byte.
528 SmallString<128> NamePair;
529 NamePair += DirName;
530 NamePair += '\0'; // Zero bytes are not allowed in paths.
531 NamePair += FileName;
532
533 StringMapEntry<unsigned> &Ent = SourceIdMap.GetOrCreateValue(NamePair, SrcId);
534 if (Ent.getValue() != SrcId)
535 return Ent.getValue();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000536
Rafael Espindola5c055632010-11-18 02:04:25 +0000537 // Print out a .file directive to specify files for .loc directives.
Benjamin Kramer74612c22012-03-11 14:56:26 +0000538 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, DirName, FileName);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000539
540 return SrcId;
541}
542
Jim Grosbach1e20b962010-07-21 21:21:52 +0000543/// constructCompileUnit - Create new CompileUnit for the given
Devang Patel163a9f72010-05-10 22:49:55 +0000544/// metadata node with tag DW_TAG_compile_unit.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000545CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +0000546 DICompileUnit DIUnit(N);
Devang Patel65dbc902009-11-25 17:36:49 +0000547 StringRef FN = DIUnit.getFilename();
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000548 CompilationDir = DIUnit.getDirectory();
549 unsigned ID = GetOrCreateSourceID(FN, CompilationDir);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000550
551 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Eric Christopher438b0922012-02-22 08:46:13 +0000552 CompileUnit *NewCU = new CompileUnit(ID, DIUnit.getLanguage(), Die, Asm, this);
Nick Lewycky390c40d2011-10-27 06:44:11 +0000553 NewCU->addString(Die, dwarf::DW_AT_producer, DIUnit.getProducer());
Devang Patel3cbee302011-04-12 22:53:02 +0000554 NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2,
555 DIUnit.getLanguage());
Nick Lewycky390c40d2011-10-27 06:44:11 +0000556 NewCU->addString(Die, dwarf::DW_AT_name, FN);
Devang Patel5098da02010-04-26 22:54:28 +0000557 // Use DW_AT_entry_pc instead of DW_AT_low_pc/DW_AT_high_pc pair. This
558 // simplifies debug range entries.
Devang Patel3cbee302011-04-12 22:53:02 +0000559 NewCU->addUInt(Die, dwarf::DW_AT_entry_pc, dwarf::DW_FORM_addr, 0);
Devang Patel4a602ca2010-03-22 23:11:36 +0000560 // DW_AT_stmt_list is a offset of line number information for this
Devang Patelaf608bd2010-08-24 00:06:12 +0000561 // compile unit in debug_line section.
Nick Lewyckyd5d52132011-10-17 23:27:36 +0000562 if (Asm->MAI->doesDwarfRequireRelocationForSectionOffset())
Rafael Espindola597a7662011-05-04 17:44:06 +0000563 NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Devang Patel3cbee302011-04-12 22:53:02 +0000564 Asm->GetTempSymbol("section_line"));
Devang Patelae84d5b2010-08-31 23:50:19 +0000565 else
Devang Patel3cbee302011-04-12 22:53:02 +0000566 NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000567
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000568 if (!CompilationDir.empty())
569 NewCU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000570 if (DIUnit.isOptimized())
Devang Patel3cbee302011-04-12 22:53:02 +0000571 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000572
Devang Patel65dbc902009-11-25 17:36:49 +0000573 StringRef Flags = DIUnit.getFlags();
574 if (!Flags.empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +0000575 NewCU->addString(Die, dwarf::DW_AT_APPLE_flags, Flags);
Devang Patel3cbee302011-04-12 22:53:02 +0000576
Nick Lewyckyd5d52132011-10-17 23:27:36 +0000577 if (unsigned RVer = DIUnit.getRunTimeVersion())
Devang Patel3cbee302011-04-12 22:53:02 +0000578 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000579 dwarf::DW_FORM_data1, RVer);
580
Devang Patel163a9f72010-05-10 22:49:55 +0000581 if (!FirstCU)
582 FirstCU = NewCU;
583 CUMap.insert(std::make_pair(N, NewCU));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000584 return NewCU;
Devang Patel163a9f72010-05-10 22:49:55 +0000585}
586
Devang Patel163a9f72010-05-10 22:49:55 +0000587/// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel3655a212011-08-15 23:36:40 +0000588void DwarfDebug::constructSubprogramDIE(CompileUnit *TheCU,
589 const MDNode *N) {
Rafael Espindolab0527282011-11-04 19:00:29 +0000590 CompileUnit *&CURef = SPMap[N];
591 if (CURef)
592 return;
593 CURef = TheCU;
594
Devang Patele4b27562009-08-28 23:24:31 +0000595 DISubprogram SP(N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000596 if (!SP.isDefinition())
597 // This is a method declaration which will be handled while constructing
598 // class type.
Devang Patel13e16b62009-06-26 01:49:18 +0000599 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000600
Devang Pateldbc64af2011-08-15 17:24:54 +0000601 DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP);
Stuart Hastings639336e2010-04-06 21:38:29 +0000602
603 // Add to map.
Devang Patel163a9f72010-05-10 22:49:55 +0000604 TheCU->insertDIE(N, SubprogramDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000605
606 // Add to context owner.
Devang Patel3cbee302011-04-12 22:53:02 +0000607 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel0000fad2009-12-08 23:21:45 +0000608
Devang Patel13e16b62009-06-26 01:49:18 +0000609 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000610}
611
Devang Patel02e603f2011-08-15 23:47:24 +0000612/// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
613/// as llvm.dbg.enum and llvm.dbg.ty
614void DwarfDebug::collectInfoFromNamedMDNodes(Module *M) {
Devang Patel94c7ddb2011-08-16 22:09:43 +0000615 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.sp"))
616 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
617 const MDNode *N = NMD->getOperand(i);
618 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
619 constructSubprogramDIE(CU, N);
620 }
621
622 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv"))
623 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
624 const MDNode *N = NMD->getOperand(i);
625 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel28bea082011-08-18 23:17:55 +0000626 CU->createGlobalVariableDIE(N);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000627 }
628
Devang Patel02e603f2011-08-15 23:47:24 +0000629 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
630 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
631 DIType Ty(NMD->getOperand(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000632 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
633 CU->getOrCreateTypeDIE(Ty);
Devang Patel02e603f2011-08-15 23:47:24 +0000634 }
635
636 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
637 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
638 DIType Ty(NMD->getOperand(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000639 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
640 CU->getOrCreateTypeDIE(Ty);
Devang Patel02e603f2011-08-15 23:47:24 +0000641 }
642}
643
644/// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
645/// FIXME - Remove this when dragon-egg and llvm-gcc switch to DIBuilder.
646bool DwarfDebug::collectLegacyDebugInfo(Module *M) {
647 DebugInfoFinder DbgFinder;
648 DbgFinder.processModule(*M);
649
650 bool HasDebugInfo = false;
651 // Scan all the compile-units to see if there are any marked as the main
652 // unit. If not, we do not generate debug info.
653 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
654 E = DbgFinder.compile_unit_end(); I != E; ++I) {
655 if (DICompileUnit(*I).isMain()) {
656 HasDebugInfo = true;
657 break;
658 }
659 }
660 if (!HasDebugInfo) return false;
661
662 // Create all the compile unit DIEs.
663 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
664 E = DbgFinder.compile_unit_end(); I != E; ++I)
665 constructCompileUnit(*I);
666
667 // Create DIEs for each global variable.
668 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
669 E = DbgFinder.global_variable_end(); I != E; ++I) {
670 const MDNode *N = *I;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000671 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel28bea082011-08-18 23:17:55 +0000672 CU->createGlobalVariableDIE(N);
Devang Patel02e603f2011-08-15 23:47:24 +0000673 }
Devang Patel94c7ddb2011-08-16 22:09:43 +0000674
Devang Patel02e603f2011-08-15 23:47:24 +0000675 // Create DIEs for each subprogram.
676 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
677 E = DbgFinder.subprogram_end(); I != E; ++I) {
678 const MDNode *N = *I;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000679 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
680 constructSubprogramDIE(CU, N);
Devang Patel02e603f2011-08-15 23:47:24 +0000681 }
682
683 return HasDebugInfo;
684}
685
Devang Patel2c4ceb12009-11-21 02:48:08 +0000686/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbar00564992009-09-19 20:40:14 +0000687/// content. Create global DIEs and emit initial debug info sections.
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000688/// This is invoked by the target AsmPrinter.
Chris Lattner75f50722010-04-04 07:48:20 +0000689void DwarfDebug::beginModule(Module *M) {
Devang Pateleac9c072010-04-27 19:46:33 +0000690 if (DisableDebugInfoPrinting)
691 return;
692
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000693 // If module has named metadata anchors then use them, otherwise scan the
694 // module using debug info finder to collect debug info.
Devang Patel30692ab2011-05-03 16:45:22 +0000695 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
696 if (CU_Nodes) {
Devang Patel94c7ddb2011-08-16 22:09:43 +0000697 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
698 DICompileUnit CUNode(CU_Nodes->getOperand(i));
699 CompileUnit *CU = constructCompileUnit(CUNode);
700 DIArray GVs = CUNode.getGlobalVariables();
701 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
Devang Patel28bea082011-08-18 23:17:55 +0000702 CU->createGlobalVariableDIE(GVs.getElement(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000703 DIArray SPs = CUNode.getSubprograms();
704 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
705 constructSubprogramDIE(CU, SPs.getElement(i));
706 DIArray EnumTypes = CUNode.getEnumTypes();
707 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
708 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
709 DIArray RetainedTypes = CUNode.getRetainedTypes();
710 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
711 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
712 }
Devang Patel02e603f2011-08-15 23:47:24 +0000713 } else if (!collectLegacyDebugInfo(M))
714 return;
Devang Patel30692ab2011-05-03 16:45:22 +0000715
Devang Patel02e603f2011-08-15 23:47:24 +0000716 collectInfoFromNamedMDNodes(M);
Devang Patel30692ab2011-05-03 16:45:22 +0000717
Chris Lattnerd850ac72010-04-05 02:19:28 +0000718 // Tell MMI that we have debug info.
719 MMI->setDebugInfoAvailability(true);
Devang Patel30692ab2011-05-03 16:45:22 +0000720
Chris Lattnerbe15beb2010-04-04 23:17:54 +0000721 // Emit initial sections.
Chris Lattnerd850ac72010-04-05 02:19:28 +0000722 EmitSectionLabels();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000723
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000724 // Prime section data.
Chris Lattnerf0144122009-07-28 03:13:23 +0000725 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000726}
727
Devang Patel2c4ceb12009-11-21 02:48:08 +0000728/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000729///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000730void DwarfDebug::endModule() {
Devang Patel163a9f72010-05-10 22:49:55 +0000731 if (!FirstCU) return;
Devang Patel4a1cad62010-06-28 18:25:03 +0000732 const Module *M = MMI->getModule();
Devang Patelbf47fdb2011-08-10 20:55:27 +0000733 DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap;
Devang Patel4a1cad62010-06-28 18:25:03 +0000734
Devang Patel94c7ddb2011-08-16 22:09:43 +0000735 // Collect info for variables that were optimized out.
736 if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) {
737 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
738 DICompileUnit TheCU(CU_Nodes->getOperand(i));
739 DIArray Subprograms = TheCU.getSubprograms();
740 for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) {
741 DISubprogram SP(Subprograms.getElement(i));
742 if (ProcessedSPNodes.count(SP) != 0) continue;
743 if (!SP.Verify()) continue;
744 if (!SP.isDefinition()) continue;
Devang Patel93d39be2011-08-19 23:28:12 +0000745 DIArray Variables = SP.getVariables();
746 if (Variables.getNumElements() == 0) continue;
747
Devang Patel94c7ddb2011-08-16 22:09:43 +0000748 LexicalScope *Scope =
749 new LexicalScope(NULL, DIDescriptor(SP), NULL, false);
750 DeadFnScopeMap[SP] = Scope;
751
752 // Construct subprogram DIE and add variables DIEs.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000753 CompileUnit *SPCU = CUMap.lookup(TheCU);
Nick Lewycky746cb672011-10-26 22:55:33 +0000754 assert(SPCU && "Unable to find Compile Unit!");
Devang Patel94c7ddb2011-08-16 22:09:43 +0000755 constructSubprogramDIE(SPCU, SP);
756 DIE *ScopeDIE = SPCU->getDIE(SP);
Devang Patel93d39be2011-08-19 23:28:12 +0000757 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
758 DIVariable DV(Variables.getElement(vi));
759 if (!DV.Verify()) continue;
760 DbgVariable *NewVar = new DbgVariable(DV, NULL);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000761 if (DIE *VariableDIE =
Devang Patel93d39be2011-08-19 23:28:12 +0000762 SPCU->constructVariableDIE(NewVar, Scope->isAbstractScope()))
Devang Patel94c7ddb2011-08-16 22:09:43 +0000763 ScopeDIE->addChild(VariableDIE);
764 }
Devang Patel4a1cad62010-06-28 18:25:03 +0000765 }
766 }
767 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000768
Devang Patel53bb5c92009-11-10 23:06:00 +0000769 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
770 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
771 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
772 DIE *ISP = *AI;
Devang Patel3cbee302011-04-12 22:53:02 +0000773 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patel53bb5c92009-11-10 23:06:00 +0000774 }
Rafael Espindolad1ac3a42011-11-12 01:57:54 +0000775 for (DenseMap<const MDNode *, DIE *>::iterator AI = AbstractSPDies.begin(),
776 AE = AbstractSPDies.end(); AI != AE; ++AI) {
777 DIE *ISP = AI->second;
778 if (InlinedSubprogramDIEs.count(ISP))
779 continue;
780 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
781 }
Devang Patel53bb5c92009-11-10 23:06:00 +0000782
Devang Pateldbc64af2011-08-15 17:24:54 +0000783 // Emit DW_AT_containing_type attribute to connect types with their
784 // vtable holding type.
785 for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(),
786 CUE = CUMap.end(); CUI != CUE; ++CUI) {
787 CompileUnit *TheCU = CUI->second;
788 TheCU->constructContainingTypeDIEs();
Devang Patel5d11eb02009-12-03 19:11:07 +0000789 }
790
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000791 // Standard sections final addresses.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000792 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000793 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000794 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000795 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000796
797 // End text sections.
798 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000799 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnerc0215722010-04-04 19:25:43 +0000800 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000801 }
802
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000803 // Compute DIE offsets and sizes.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000804 computeSizeAndOffsets();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000805
806 // Emit all the DIEs into a debug info section
Devang Patel2c4ceb12009-11-21 02:48:08 +0000807 emitDebugInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000808
809 // Corresponding abbreviations into a abbrev section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000810 emitAbbreviations();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000811
Eric Christopher09ac3d82011-11-07 09:24:32 +0000812 // Emit info into a dwarf accelerator table sections.
813 if (DwarfAccelTables) {
814 emitAccelNames();
815 emitAccelObjC();
816 emitAccelNamespaces();
817 emitAccelTypes();
818 }
819
Devang Patel193f7202009-11-24 01:14:22 +0000820 // Emit info into a debug pubtypes section.
821 emitDebugPubTypes();
822
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000823 // Emit info into a debug loc section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000824 emitDebugLoc();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000825
826 // Emit info into a debug aranges section.
827 EmitDebugARanges();
828
829 // Emit info into a debug ranges section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000830 emitDebugRanges();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000831
832 // Emit info into a debug macinfo section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000833 emitDebugMacInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000834
835 // Emit inline info.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000836 emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000837
Eric Christopher7550f7d2012-03-02 00:30:24 +0000838 // Emit info into a debug str section.
839 emitDebugStr();
840
Devang Patele9a1cca2010-08-02 17:32:15 +0000841 // clean up.
842 DeleteContainerSeconds(DeadFnScopeMap);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000843 SPMap.clear();
Devang Patel163a9f72010-05-10 22:49:55 +0000844 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
845 E = CUMap.end(); I != E; ++I)
846 delete I->second;
847 FirstCU = NULL; // Reset for the next Module, if any.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000848}
849
Devang Patel53bb5c92009-11-10 23:06:00 +0000850/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Devang Patelb549bcf2011-08-10 21:50:54 +0000851DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV,
Chris Lattnerde4845c2010-04-02 19:42:39 +0000852 DebugLoc ScopeLoc) {
Devang Patelb549bcf2011-08-10 21:50:54 +0000853 LLVMContext &Ctx = DV->getContext();
854 // More then one inlined variable corresponds to one abstract variable.
855 DIVariable Var = cleanseInlinedVariable(DV, Ctx);
Devang Patel2db49d72010-05-07 18:11:54 +0000856 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patel53bb5c92009-11-10 23:06:00 +0000857 if (AbsDbgVariable)
858 return AbsDbgVariable;
859
Devang Patelbf47fdb2011-08-10 20:55:27 +0000860 LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx));
Devang Patel53bb5c92009-11-10 23:06:00 +0000861 if (!Scope)
862 return NULL;
863
Devang Patel5a1a67c2011-08-15 19:01:20 +0000864 AbsDbgVariable = new DbgVariable(Var, NULL);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000865 addScopeVariable(Scope, AbsDbgVariable);
Devang Patel2db49d72010-05-07 18:11:54 +0000866 AbstractVariables[Var] = AbsDbgVariable;
Devang Patel53bb5c92009-11-10 23:06:00 +0000867 return AbsDbgVariable;
868}
869
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000870/// addCurrentFnArgument - If Var is a current function argument then add
871/// it to CurrentFnArguments list.
Devang Patel0478c152011-03-01 22:58:55 +0000872bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
Devang Patelbf47fdb2011-08-10 20:55:27 +0000873 DbgVariable *Var, LexicalScope *Scope) {
874 if (!LScopes.isCurrentFunctionScope(Scope))
Devang Patel0478c152011-03-01 22:58:55 +0000875 return false;
876 DIVariable DV = Var->getVariable();
877 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
878 return false;
879 unsigned ArgNo = DV.getArgNumber();
880 if (ArgNo == 0)
881 return false;
882
Devang Patelcb3a6572011-03-03 20:02:02 +0000883 size_t Size = CurrentFnArguments.size();
884 if (Size == 0)
Devang Patel0478c152011-03-01 22:58:55 +0000885 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patelbbd0f452011-03-03 21:49:41 +0000886 // llvm::Function argument size is not good indicator of how many
Devang Patel6f676be2011-03-03 20:08:10 +0000887 // arguments does the function have at source level.
888 if (ArgNo > Size)
Devang Patelcb3a6572011-03-03 20:02:02 +0000889 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel0478c152011-03-01 22:58:55 +0000890 CurrentFnArguments[ArgNo - 1] = Var;
891 return true;
892}
893
Devang Patelee432862010-05-20 19:57:06 +0000894/// collectVariableInfoFromMMITable - Collect variable information from
895/// side table maintained by MMI.
Jim Grosbach1e20b962010-07-21 21:21:52 +0000896void
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000897DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF,
Devang Patelee432862010-05-20 19:57:06 +0000898 SmallPtrSet<const MDNode *, 16> &Processed) {
Devang Patele717faa2009-10-06 01:26:37 +0000899 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
900 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
901 VE = VMap.end(); VI != VE; ++VI) {
Devang Patele9f8f5e2010-05-07 20:54:48 +0000902 const MDNode *Var = VI->first;
Devang Patel53bb5c92009-11-10 23:06:00 +0000903 if (!Var) continue;
Devang Patel98e1cac2010-05-14 21:01:35 +0000904 Processed.insert(Var);
Chris Lattnerde4845c2010-04-02 19:42:39 +0000905 DIVariable DV(Var);
906 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patel53bb5c92009-11-10 23:06:00 +0000907
Devang Patelbf47fdb2011-08-10 20:55:27 +0000908 LexicalScope *Scope = LScopes.findLexicalScope(VP.second);
Jim Grosbach1e20b962010-07-21 21:21:52 +0000909
Devang Patelfb0ee432009-11-10 23:20:04 +0000910 // If variable scope is not found then skip this variable.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000911 if (Scope == 0)
Devang Patelfb0ee432009-11-10 23:20:04 +0000912 continue;
Devang Patel53bb5c92009-11-10 23:06:00 +0000913
Devang Patel26c1e562010-05-20 16:36:41 +0000914 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
Devang Patel5a1a67c2011-08-15 19:01:20 +0000915 DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable);
Devang Patelff9dd0a2011-08-15 21:24:36 +0000916 RegVar->setFrameIndex(VP.first);
Devang Patel0478c152011-03-01 22:58:55 +0000917 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000918 addScopeVariable(Scope, RegVar);
Devang Patel5a1a67c2011-08-15 19:01:20 +0000919 if (AbsDbgVariable)
Devang Patelff9dd0a2011-08-15 21:24:36 +0000920 AbsDbgVariable->setFrameIndex(VP.first);
Devang Patele717faa2009-10-06 01:26:37 +0000921 }
Devang Patelee432862010-05-20 19:57:06 +0000922}
Devang Patel90a48ad2010-03-15 18:33:46 +0000923
Jim Grosbach1e20b962010-07-21 21:21:52 +0000924/// isDbgValueInDefinedReg - Return true if debug value, encoded by
Devang Patelc3f5f782010-05-25 23:40:22 +0000925/// DBG_VALUE instruction, is in a defined reg.
926static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000927 assert(MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000928 return MI->getNumOperands() == 3 &&
929 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
930 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patelc3f5f782010-05-25 23:40:22 +0000931}
932
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000933/// getDebugLocEntry - Get .debug_loc entry for the instruction range starting
Devang Patel90b40412011-07-08 17:09:57 +0000934/// at MI.
935static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm,
936 const MCSymbol *FLabel,
937 const MCSymbol *SLabel,
938 const MachineInstr *MI) {
939 const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata();
940
941 if (MI->getNumOperands() != 3) {
942 MachineLocation MLoc = Asm->getDebugValueLocation(MI);
943 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
944 }
945 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) {
946 MachineLocation MLoc;
947 MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
948 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
949 }
950 if (MI->getOperand(0).isImm())
951 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm());
952 if (MI->getOperand(0).isFPImm())
953 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm());
954 if (MI->getOperand(0).isCImm())
955 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm());
956
Craig Topper5e25ee82012-02-05 08:31:47 +0000957 llvm_unreachable("Unexpected 3 operand DBG_VALUE instruction!");
Devang Patel90b40412011-07-08 17:09:57 +0000958}
959
Devang Patelbf47fdb2011-08-10 20:55:27 +0000960/// collectVariableInfo - Find variables for each lexical scope.
Jim Grosbach1e20b962010-07-21 21:21:52 +0000961void
Devang Patel78e127d2010-06-25 22:07:34 +0000962DwarfDebug::collectVariableInfo(const MachineFunction *MF,
963 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbach1e20b962010-07-21 21:21:52 +0000964
Devang Patelee432862010-05-20 19:57:06 +0000965 /// collection info from MMI table.
966 collectVariableInfoFromMMITable(MF, Processed);
967
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000968 for (SmallVectorImpl<const MDNode*>::const_iterator
969 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
970 ++UVI) {
971 const MDNode *Var = *UVI;
972 if (Processed.count(Var))
Devang Patelee432862010-05-20 19:57:06 +0000973 continue;
974
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000975 // History contains relevant DBG_VALUE instructions for Var and instructions
976 // clobbering it.
977 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
978 if (History.empty())
979 continue;
980 const MachineInstr *MInsn = History.front();
Devang Patelc3f5f782010-05-25 23:40:22 +0000981
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000982 DIVariable DV(Var);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000983 LexicalScope *Scope = NULL;
Devang Pateld8720f42010-05-27 20:25:04 +0000984 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
985 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000986 Scope = LScopes.getCurrentFunctionScope();
Devang Patel40c7e412011-07-20 22:18:50 +0000987 else {
988 if (DV.getVersion() <= LLVMDebugVersion9)
Devang Patelbf47fdb2011-08-10 20:55:27 +0000989 Scope = LScopes.findLexicalScope(MInsn->getDebugLoc());
Devang Patel40c7e412011-07-20 22:18:50 +0000990 else {
991 if (MDNode *IA = DV.getInlinedAt())
Devang Patelbf47fdb2011-08-10 20:55:27 +0000992 Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA));
Devang Patel40c7e412011-07-20 22:18:50 +0000993 else
Devang Patelbf47fdb2011-08-10 20:55:27 +0000994 Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1)));
Devang Patel40c7e412011-07-20 22:18:50 +0000995 }
996 }
Devang Patelee432862010-05-20 19:57:06 +0000997 // If variable scope is not found then skip this variable.
Devang Patelc0c5a262010-05-21 00:10:20 +0000998 if (!Scope)
Devang Patelee432862010-05-20 19:57:06 +0000999 continue;
1000
1001 Processed.insert(DV);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001002 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patel5a1a67c2011-08-15 19:01:20 +00001003 DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc());
1004 DbgVariable *RegVar = new DbgVariable(DV, AbsVar);
Devang Patel0478c152011-03-01 22:58:55 +00001005 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +00001006 addScopeVariable(Scope, RegVar);
Devang Patel5a1a67c2011-08-15 19:01:20 +00001007 if (AbsVar)
Devang Patelff9dd0a2011-08-15 21:24:36 +00001008 AbsVar->setMInsn(MInsn);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001009
1010 // Simple ranges that are fully coalesced.
1011 if (History.size() <= 1 || (History.size() == 2 &&
1012 MInsn->isIdenticalTo(History.back()))) {
Devang Patelff9dd0a2011-08-15 21:24:36 +00001013 RegVar->setMInsn(MInsn);
Devang Patelc3f5f782010-05-25 23:40:22 +00001014 continue;
1015 }
1016
1017 // handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001018 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001019
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001020 for (SmallVectorImpl<const MachineInstr*>::const_iterator
1021 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
1022 const MachineInstr *Begin = *HI;
1023 assert(Begin->isDebugValue() && "Invalid History entry");
Jakob Stoklund Olesene17232e2011-03-22 00:21:41 +00001024
Devang Patel4ada1d72011-06-01 23:00:17 +00001025 // Check if DBG_VALUE is truncating a range.
1026 if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg()
1027 && !Begin->getOperand(0).getReg())
1028 continue;
1029
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001030 // Compute the range for a register location.
1031 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
1032 const MCSymbol *SLabel = 0;
1033
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001034 if (HI + 1 == HE)
1035 // If Begin is the last instruction in History then its value is valid
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001036 // until the end of the function.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001037 SLabel = FunctionEndSym;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001038 else {
1039 const MachineInstr *End = HI[1];
Devang Patel476df5f2011-07-07 21:44:42 +00001040 DEBUG(dbgs() << "DotDebugLoc Pair:\n"
1041 << "\t" << *Begin << "\t" << *End << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001042 if (End->isDebugValue())
1043 SLabel = getLabelBeforeInsn(End);
1044 else {
1045 // End is a normal instruction clobbering the range.
1046 SLabel = getLabelAfterInsn(End);
1047 assert(SLabel && "Forgot label after clobber instruction");
1048 ++HI;
1049 }
1050 }
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001051
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001052 // The value is valid until the next DBG_VALUE or clobber.
Eric Christopherabbb2002011-12-16 23:42:31 +00001053 DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel,
1054 Begin));
Devang Patelc3f5f782010-05-25 23:40:22 +00001055 }
1056 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patel90a48ad2010-03-15 18:33:46 +00001057 }
Devang Patel98e1cac2010-05-14 21:01:35 +00001058
1059 // Collect info for variables that were optimized out.
Devang Patel93d39be2011-08-19 23:28:12 +00001060 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
1061 DIArray Variables = DISubprogram(FnScope->getScopeNode()).getVariables();
1062 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1063 DIVariable DV(Variables.getElement(i));
1064 if (!DV || !DV.Verify() || !Processed.insert(DV))
1065 continue;
1066 if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext()))
1067 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel98e1cac2010-05-14 21:01:35 +00001068 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001069}
Devang Patel98e1cac2010-05-14 21:01:35 +00001070
Devang Patelc3f5f782010-05-25 23:40:22 +00001071/// getLabelBeforeInsn - Return Label preceding the instruction.
1072const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001073 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1074 assert(Label && "Didn't insert label before instruction");
1075 return Label;
Devang Patelc3f5f782010-05-25 23:40:22 +00001076}
1077
1078/// getLabelAfterInsn - Return Label immediately following the instruction.
1079const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001080 return LabelsAfterInsn.lookup(MI);
Devang Patele717faa2009-10-06 01:26:37 +00001081}
1082
Devang Patelcbbe2872010-10-26 17:49:02 +00001083/// beginInstruction - Process beginning of an instruction.
1084void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001085 // Check if source location changes, but ignore DBG_VALUE locations.
1086 if (!MI->isDebugValue()) {
1087 DebugLoc DL = MI->getDebugLoc();
1088 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
Devang Patel4243e672011-05-11 19:22:19 +00001089 unsigned Flags = DWARF2_FLAG_IS_STMT;
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001090 PrevInstLoc = DL;
Devang Patel4243e672011-05-11 19:22:19 +00001091 if (DL == PrologEndLoc) {
1092 Flags |= DWARF2_FLAG_PROLOGUE_END;
1093 PrologEndLoc = DebugLoc();
1094 }
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001095 if (!DL.isUnknown()) {
1096 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Devang Patel4243e672011-05-11 19:22:19 +00001097 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001098 } else
Devang Patel4243e672011-05-11 19:22:19 +00001099 recordSourceLine(0, 0, 0, 0);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001100 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001101 }
Devang Patelaead63c2010-03-29 22:59:58 +00001102
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001103 // Insert labels where requested.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001104 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1105 LabelsBeforeInsn.find(MI);
1106
1107 // No label needed.
1108 if (I == LabelsBeforeInsn.end())
1109 return;
1110
1111 // Label already assigned.
1112 if (I->second)
Devang Patelb2b31a62010-05-26 19:37:24 +00001113 return;
Devang Patel553881b2010-03-29 17:20:31 +00001114
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001115 if (!PrevLabel) {
Devang Patel77051f52010-05-26 21:23:46 +00001116 PrevLabel = MMI->getContext().CreateTempSymbol();
1117 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patelb2b31a62010-05-26 19:37:24 +00001118 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001119 I->second = PrevLabel;
Devang Patel0d20ac82009-10-06 01:50:42 +00001120}
1121
Devang Patelcbbe2872010-10-26 17:49:02 +00001122/// endInstruction - Process end of an instruction.
1123void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001124 // Don't create a new label after DBG_VALUE instructions.
1125 // They don't generate code.
1126 if (!MI->isDebugValue())
1127 PrevLabel = 0;
1128
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001129 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1130 LabelsAfterInsn.find(MI);
1131
1132 // No label needed.
1133 if (I == LabelsAfterInsn.end())
1134 return;
1135
1136 // Label already assigned.
1137 if (I->second)
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001138 return;
1139
1140 // We need a label after this instruction.
1141 if (!PrevLabel) {
1142 PrevLabel = MMI->getContext().CreateTempSymbol();
1143 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel1c246352010-04-08 16:50:29 +00001144 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001145 I->second = PrevLabel;
Devang Patel53bb5c92009-11-10 23:06:00 +00001146}
1147
Jim Grosbach1e20b962010-07-21 21:21:52 +00001148/// identifyScopeMarkers() -
Devang Patel5bc942c2011-08-10 23:58:09 +00001149/// Each LexicalScope has first instruction and last instruction to mark
1150/// beginning and end of a scope respectively. Create an inverse map that list
1151/// scopes starts (and ends) with an instruction. One instruction may start (or
1152/// end) multiple scopes. Ignore scopes that are not reachable.
Devang Patele37b0c62010-04-08 18:43:56 +00001153void DwarfDebug::identifyScopeMarkers() {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001154 SmallVector<LexicalScope *, 4> WorkList;
1155 WorkList.push_back(LScopes.getCurrentFunctionScope());
Devang Patel42aafd72010-01-20 02:05:23 +00001156 while (!WorkList.empty()) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001157 LexicalScope *S = WorkList.pop_back_val();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001158
Devang Patelbf47fdb2011-08-10 20:55:27 +00001159 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001160 if (!Children.empty())
Devang Patelbf47fdb2011-08-10 20:55:27 +00001161 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel42aafd72010-01-20 02:05:23 +00001162 SE = Children.end(); SI != SE; ++SI)
1163 WorkList.push_back(*SI);
1164
Devang Patel53bb5c92009-11-10 23:06:00 +00001165 if (S->isAbstractScope())
1166 continue;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001167
Devang Patelbf47fdb2011-08-10 20:55:27 +00001168 const SmallVector<InsnRange, 4> &Ranges = S->getRanges();
Devang Pateleac9c072010-04-27 19:46:33 +00001169 if (Ranges.empty())
1170 continue;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001171 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Pateleac9c072010-04-27 19:46:33 +00001172 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001173 assert(RI->first && "InsnRange does not have first instruction!");
1174 assert(RI->second && "InsnRange does not have second instruction!");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001175 requestLabelBeforeInsn(RI->first);
1176 requestLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +00001177 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001178 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001179}
1180
Devang Patela3f48672011-05-09 22:14:49 +00001181/// getScopeNode - Get MDNode for DebugLoc's scope.
1182static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) {
1183 if (MDNode *InlinedAt = DL.getInlinedAt(Ctx))
1184 return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx);
1185 return DL.getScope(Ctx);
1186}
1187
Devang Patel4243e672011-05-11 19:22:19 +00001188/// getFnDebugLoc - Walk up the scope chain of given debug loc and find
1189/// line number info for the function.
1190static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) {
1191 const MDNode *Scope = getScopeNode(DL, Ctx);
1192 DISubprogram SP = getDISubprogram(Scope);
1193 if (SP.Verify())
1194 return DebugLoc::get(SP.getLineNumber(), 0, SP);
1195 return DebugLoc();
1196}
1197
Devang Patel2c4ceb12009-11-21 02:48:08 +00001198/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001199/// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +00001200void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner994cb122010-04-05 03:52:55 +00001201 if (!MMI->hasDebugInfo()) return;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001202 LScopes.initialize(*MF);
1203 if (LScopes.empty()) return;
1204 identifyScopeMarkers();
Devang Patel60b35bd2009-10-06 18:37:31 +00001205
Devang Pateleac9c072010-04-27 19:46:33 +00001206 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1207 Asm->getFunctionNumber());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001208 // Assumes in correct section after the entry point.
Devang Pateleac9c072010-04-27 19:46:33 +00001209 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001210
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001211 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1212
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001213 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001214 /// LiveUserVar - Map physreg numbers to the MDNode they contain.
1215 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1216
Devang Patelb2b31a62010-05-26 19:37:24 +00001217 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001218 I != E; ++I) {
1219 bool AtBlockEntry = true;
Devang Patelb2b31a62010-05-26 19:37:24 +00001220 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1221 II != IE; ++II) {
1222 const MachineInstr *MI = II;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001223
Devang Patelb2b31a62010-05-26 19:37:24 +00001224 if (MI->isDebugValue()) {
Nick Lewycky746cb672011-10-26 22:55:33 +00001225 assert(MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001226
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001227 // Keep track of user variables.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001228 const MDNode *Var =
1229 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001230
1231 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001232 if (isDbgValueInDefinedReg(MI))
1233 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1234
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001235 // Check the history of this variable.
1236 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1237 if (History.empty()) {
1238 UserVariables.push_back(Var);
1239 // The first mention of a function argument gets the FunctionBeginSym
1240 // label, so arguments are visible when breaking at function entry.
1241 DIVariable DV(Var);
1242 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1243 DISubprogram(getDISubprogram(DV.getContext()))
1244 .describes(MF->getFunction()))
1245 LabelsBeforeInsn[MI] = FunctionBeginSym;
1246 } else {
1247 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1248 const MachineInstr *Prev = History.back();
1249 if (Prev->isDebugValue()) {
1250 // Coalesce identical entries at the end of History.
1251 if (History.size() >= 2 &&
Devang Patel79862892011-07-07 00:14:27 +00001252 Prev->isIdenticalTo(History[History.size() - 2])) {
1253 DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n"
1254 << "\t" << *Prev
1255 << "\t" << *History[History.size() - 2] << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001256 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001257 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001258
1259 // Terminate old register assignments that don't reach MI;
1260 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1261 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1262 isDbgValueInDefinedReg(Prev)) {
1263 // Previous register assignment needs to terminate at the end of
1264 // its basic block.
1265 MachineBasicBlock::const_iterator LastMI =
1266 PrevMBB->getLastNonDebugInstr();
Devang Patel79862892011-07-07 00:14:27 +00001267 if (LastMI == PrevMBB->end()) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001268 // Drop DBG_VALUE for empty range.
Devang Patel79862892011-07-07 00:14:27 +00001269 DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n"
1270 << "\t" << *Prev << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001271 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001272 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001273 else {
1274 // Terminate after LastMI.
1275 History.push_back(LastMI);
1276 }
1277 }
1278 }
1279 }
1280 History.push_back(MI);
Devang Patelb2b31a62010-05-26 19:37:24 +00001281 } else {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001282 // Not a DBG_VALUE instruction.
1283 if (!MI->isLabel())
1284 AtBlockEntry = false;
1285
Devang Patel4243e672011-05-11 19:22:19 +00001286 // First known non DBG_VALUE location marks beginning of function
1287 // body.
1288 if (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown())
1289 PrologEndLoc = MI->getDebugLoc();
1290
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001291 // Check if the instruction clobbers any registers with debug vars.
1292 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1293 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1294 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1295 continue;
Craig Toppere4fd9072012-03-04 10:43:23 +00001296 for (const uint16_t *AI = TRI->getOverlaps(MOI->getReg());
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001297 unsigned Reg = *AI; ++AI) {
1298 const MDNode *Var = LiveUserVar[Reg];
1299 if (!Var)
1300 continue;
1301 // Reg is now clobbered.
1302 LiveUserVar[Reg] = 0;
1303
1304 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001305 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
1306 if (HistI == DbgValues.end())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001307 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001308 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
1309 if (History.empty())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001310 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001311 const MachineInstr *Prev = History.back();
1312 // Sanity-check: Register assignments are terminated at the end of
1313 // their block.
1314 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
1315 continue;
1316 // Is the variable still in Reg?
1317 if (!isDbgValueInDefinedReg(Prev) ||
1318 Prev->getOperand(0).getReg() != Reg)
1319 continue;
1320 // Var is clobbered. Make sure the next instruction gets a label.
1321 History.push_back(MI);
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001322 }
1323 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001324 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001325 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001326 }
1327
1328 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
1329 I != E; ++I) {
1330 SmallVectorImpl<const MachineInstr*> &History = I->second;
1331 if (History.empty())
1332 continue;
1333
1334 // Make sure the final register assignments are terminated.
1335 const MachineInstr *Prev = History.back();
1336 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
1337 const MachineBasicBlock *PrevMBB = Prev->getParent();
Devang Patel5bc942c2011-08-10 23:58:09 +00001338 MachineBasicBlock::const_iterator LastMI =
1339 PrevMBB->getLastNonDebugInstr();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001340 if (LastMI == PrevMBB->end())
1341 // Drop DBG_VALUE for empty range.
1342 History.pop_back();
1343 else {
1344 // Terminate after LastMI.
1345 History.push_back(LastMI);
1346 }
1347 }
1348 // Request labels for the full history.
1349 for (unsigned i = 0, e = History.size(); i != e; ++i) {
1350 const MachineInstr *MI = History[i];
1351 if (MI->isDebugValue())
1352 requestLabelBeforeInsn(MI);
1353 else
1354 requestLabelAfterInsn(MI);
1355 }
1356 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001357
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001358 PrevInstLoc = DebugLoc();
Devang Patelb2b31a62010-05-26 19:37:24 +00001359 PrevLabel = FunctionBeginSym;
Devang Patel4243e672011-05-11 19:22:19 +00001360
1361 // Record beginning of function.
1362 if (!PrologEndLoc.isUnknown()) {
1363 DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc,
1364 MF->getFunction()->getContext());
1365 recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(),
1366 FnStartDL.getScope(MF->getFunction()->getContext()),
1367 DWARF2_FLAG_IS_STMT);
1368 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001369}
1370
Devang Patelbf47fdb2011-08-10 20:55:27 +00001371void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) {
1372// SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1373 ScopeVariables[LS].push_back(Var);
1374// Vars.push_back(Var);
1375}
1376
Devang Patel2c4ceb12009-11-21 02:48:08 +00001377/// endFunction - Gather and emit post-function debug information.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001378///
Chris Lattnereec791a2010-01-26 23:18:02 +00001379void DwarfDebug::endFunction(const MachineFunction *MF) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001380 if (!MMI->hasDebugInfo() || LScopes.empty()) return;
Devang Patel70d75ca2009-11-12 19:02:56 +00001381
Devang Patelbf47fdb2011-08-10 20:55:27 +00001382 // Define end label for subprogram.
1383 FunctionEndSym = Asm->GetTempSymbol("func_end",
1384 Asm->getFunctionNumber());
1385 // Assumes in correct section after the entry point.
1386 Asm->OutStreamer.EmitLabel(FunctionEndSym);
1387
1388 SmallPtrSet<const MDNode *, 16> ProcessedVars;
1389 collectVariableInfo(MF, ProcessedVars);
1390
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001391 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
Devang Patel94c7ddb2011-08-16 22:09:43 +00001392 CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode());
Nick Lewycky746cb672011-10-26 22:55:33 +00001393 assert(TheCU && "Unable to find compile unit!");
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001394
Devang Patelbf47fdb2011-08-10 20:55:27 +00001395 // Construct abstract scopes.
Devang Patelcd9f6c52011-08-12 18:10:19 +00001396 ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList();
1397 for (unsigned i = 0, e = AList.size(); i != e; ++i) {
1398 LexicalScope *AScope = AList[i];
1399 DISubprogram SP(AScope->getScopeNode());
Devang Patelbf47fdb2011-08-10 20:55:27 +00001400 if (SP.Verify()) {
1401 // Collect info for variables that were optimized out.
Devang Patel93d39be2011-08-19 23:28:12 +00001402 DIArray Variables = SP.getVariables();
1403 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1404 DIVariable DV(Variables.getElement(i));
1405 if (!DV || !DV.Verify() || !ProcessedVars.insert(DV))
1406 continue;
1407 if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext()))
1408 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel78e127d2010-06-25 22:07:34 +00001409 }
1410 }
Devang Patelcd9f6c52011-08-12 18:10:19 +00001411 if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0)
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001412 constructScopeDIE(TheCU, AScope);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001413 }
Devang Patelbf47fdb2011-08-10 20:55:27 +00001414
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001415 DIE *CurFnDIE = constructScopeDIE(TheCU, FnScope);
Devang Patelbf47fdb2011-08-10 20:55:27 +00001416
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001417 if (!MF->getTarget().Options.DisableFramePointerElim(*MF))
Devang Patel5bc942c2011-08-10 23:58:09 +00001418 TheCU->addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr,
1419 dwarf::DW_FORM_flag, 1);
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001420
Devang Patelbf47fdb2011-08-10 20:55:27 +00001421 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
1422 MMI->getFrameMoves()));
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001423
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001424 // Clear debug info
Devang Patelbf47fdb2011-08-10 20:55:27 +00001425 for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator
1426 I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I)
1427 DeleteContainerPointers(I->second);
1428 ScopeVariables.clear();
Devang Pateleac0c9d2011-04-22 18:09:57 +00001429 DeleteContainerPointers(CurrentFnArguments);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001430 UserVariables.clear();
1431 DbgValues.clear();
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00001432 AbstractVariables.clear();
Devang Pateleac9c072010-04-27 19:46:33 +00001433 LabelsBeforeInsn.clear();
1434 LabelsAfterInsn.clear();
Devang Patelf2548ca2010-04-16 23:33:45 +00001435 PrevLabel = NULL;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001436}
1437
Chris Lattnerc6087842010-03-09 04:54:43 +00001438/// recordSourceLine - Register a source line with debug info. Returns the
1439/// unique label that was emitted and which provides correspondence to
1440/// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +00001441void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S,
1442 unsigned Flags) {
Devang Patel65dbc902009-11-25 17:36:49 +00001443 StringRef Fn;
Devang Patel23670e52011-03-24 20:30:50 +00001444 StringRef Dir;
Dan Gohman1cc0d622010-05-05 23:41:32 +00001445 unsigned Src = 1;
1446 if (S) {
1447 DIDescriptor Scope(S);
Devang Patelf84548d2009-10-05 18:03:19 +00001448
Dan Gohman1cc0d622010-05-05 23:41:32 +00001449 if (Scope.isCompileUnit()) {
1450 DICompileUnit CU(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001451 Fn = CU.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001452 Dir = CU.getDirectory();
Devang Patel3cabc9d2010-10-28 17:30:52 +00001453 } else if (Scope.isFile()) {
1454 DIFile F(S);
Devang Patel3cabc9d2010-10-28 17:30:52 +00001455 Fn = F.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001456 Dir = F.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001457 } else if (Scope.isSubprogram()) {
1458 DISubprogram SP(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001459 Fn = SP.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001460 Dir = SP.getDirectory();
Eric Christopher6618a242011-10-11 22:59:11 +00001461 } else if (Scope.isLexicalBlockFile()) {
1462 DILexicalBlockFile DBF(S);
1463 Fn = DBF.getFilename();
1464 Dir = DBF.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001465 } else if (Scope.isLexicalBlock()) {
1466 DILexicalBlock DB(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001467 Fn = DB.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001468 Dir = DB.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001469 } else
Craig Topper5e25ee82012-02-05 08:31:47 +00001470 llvm_unreachable("Unexpected scope info");
Dan Gohman1cc0d622010-05-05 23:41:32 +00001471
Devang Patel23670e52011-03-24 20:30:50 +00001472 Src = GetOrCreateSourceID(Fn, Dir);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001473 }
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001474 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001475}
1476
Bill Wendling829e67b2009-05-20 23:22:40 +00001477//===----------------------------------------------------------------------===//
1478// Emit Methods
1479//===----------------------------------------------------------------------===//
1480
Devang Patel2c4ceb12009-11-21 02:48:08 +00001481/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling94d04b82009-05-20 23:21:38 +00001482///
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001483unsigned
1484DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001485 // Get the children.
1486 const std::vector<DIE *> &Children = Die->getChildren();
1487
Bill Wendling94d04b82009-05-20 23:21:38 +00001488 // Record the abbreviation.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001489 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling94d04b82009-05-20 23:21:38 +00001490
1491 // Get the abbreviation for this DIE.
1492 unsigned AbbrevNumber = Die->getAbbrevNumber();
1493 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1494
1495 // Set DIE offset
1496 Die->setOffset(Offset);
1497
1498 // Start the size with the size of abbreviation code.
Chris Lattneraf76e592009-08-22 20:48:53 +00001499 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001500
1501 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1502 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1503
1504 // Size the DIE attribute values.
1505 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1506 // Size attribute value.
Chris Lattnera37d5382010-04-05 00:18:22 +00001507 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling94d04b82009-05-20 23:21:38 +00001508
1509 // Size the DIE children if any.
1510 if (!Children.empty()) {
1511 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1512 "Children flag not set");
1513
1514 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001515 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling94d04b82009-05-20 23:21:38 +00001516
1517 // End of children marker.
1518 Offset += sizeof(int8_t);
1519 }
1520
1521 Die->setSize(Offset - Die->getOffset());
1522 return Offset;
1523}
1524
Devang Patel2c4ceb12009-11-21 02:48:08 +00001525/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling94d04b82009-05-20 23:21:38 +00001526///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001527void DwarfDebug::computeSizeAndOffsets() {
Devang Patel163a9f72010-05-10 22:49:55 +00001528 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1529 E = CUMap.end(); I != E; ++I) {
1530 // Compute size of compile unit header.
Devang Patel513edf62011-04-12 23:10:47 +00001531 unsigned Offset =
Devang Patel163a9f72010-05-10 22:49:55 +00001532 sizeof(int32_t) + // Length of Compilation Unit Info
1533 sizeof(int16_t) + // DWARF version number
1534 sizeof(int32_t) + // Offset Into Abbrev. Section
1535 sizeof(int8_t); // Pointer Size (in bytes)
1536 computeSizeAndOffset(I->second->getCUDie(), Offset, true);
Devang Patel163a9f72010-05-10 22:49:55 +00001537 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001538}
1539
Chris Lattner9c69e285532010-04-04 22:59:04 +00001540/// EmitSectionLabels - Emit initial Dwarf sections with a label at
1541/// the start of each one.
Chris Lattnerfa070b02010-04-04 22:33:59 +00001542void DwarfDebug::EmitSectionLabels() {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001543 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001544
Bill Wendling94d04b82009-05-20 23:21:38 +00001545 // Dwarf sections base addresses.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001546 DwarfInfoSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001547 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001548 DwarfAbbrevSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001549 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner11b8f302010-04-04 23:02:02 +00001550 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001551
Chris Lattner9c69e285532010-04-04 22:59:04 +00001552 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner11b8f302010-04-04 23:02:02 +00001553 EmitSectionSym(Asm, MacroInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00001554
Devang Patelaf608bd2010-08-24 00:06:12 +00001555 EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Chris Lattner11b8f302010-04-04 23:02:02 +00001556 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
Chris Lattner11b8f302010-04-04 23:02:02 +00001557 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001558 DwarfStrSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001559 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Devang Patelf2548ca2010-04-16 23:33:45 +00001560 DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(),
1561 "debug_range");
Bill Wendling94d04b82009-05-20 23:21:38 +00001562
Devang Patelc3f5f782010-05-25 23:40:22 +00001563 DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(),
1564 "section_debug_loc");
1565
Chris Lattner9c69e285532010-04-04 22:59:04 +00001566 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattner4ad1efe2010-04-04 23:10:38 +00001567 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001568}
1569
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001570/// emitDIE - Recursively emits a debug information entry.
Bill Wendling94d04b82009-05-20 23:21:38 +00001571///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001572void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001573 // Get the abbreviation for this DIE.
1574 unsigned AbbrevNumber = Die->getAbbrevNumber();
1575 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1576
Bill Wendling94d04b82009-05-20 23:21:38 +00001577 // Emit the code (index) for the abbreviation.
Chris Lattner3f53c832010-04-04 18:52:31 +00001578 if (Asm->isVerbose())
Chris Lattner894d75a2010-01-22 23:18:42 +00001579 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
1580 Twine::utohexstr(Die->getOffset()) + ":0x" +
1581 Twine::utohexstr(Die->getSize()) + " " +
1582 dwarf::TagString(Abbrev->getTag()));
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001583 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001584
Jeffrey Yasskin638fe8d2010-03-22 18:47:14 +00001585 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling94d04b82009-05-20 23:21:38 +00001586 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1587
1588 // Emit the DIE attribute values.
1589 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1590 unsigned Attr = AbbrevData[i].getAttribute();
1591 unsigned Form = AbbrevData[i].getForm();
1592 assert(Form && "Too many attributes for DIE (check abbreviation)");
1593
Chris Lattner3f53c832010-04-04 18:52:31 +00001594 if (Asm->isVerbose())
Chris Lattnera8013622010-01-24 18:54:17 +00001595 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001596
Bill Wendling94d04b82009-05-20 23:21:38 +00001597 switch (Attr) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001598 case dwarf::DW_AT_abstract_origin: {
1599 DIEEntry *E = cast<DIEEntry>(Values[i]);
1600 DIE *Origin = E->getEntry();
Devang Patel53bb5c92009-11-10 23:06:00 +00001601 unsigned Addr = Origin->getOffset();
Bill Wendling94d04b82009-05-20 23:21:38 +00001602 Asm->EmitInt32(Addr);
1603 break;
1604 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001605 case dwarf::DW_AT_ranges: {
1606 // DW_AT_range Value encodes offset in debug_range section.
1607 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelb1fcfbe2010-09-02 16:43:44 +00001608
Eric Christopherb83e2bb2012-03-02 02:11:47 +00001609 if (Asm->MAI->doesDwarfUseLabelOffsetForRanges()) {
Devang Patelb1fcfbe2010-09-02 16:43:44 +00001610 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
1611 V->getValue(),
1612 4);
1613 } else {
1614 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
1615 V->getValue(),
1616 DwarfDebugRangeSectionSym,
1617 4);
1618 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001619 break;
1620 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001621 case dwarf::DW_AT_location: {
Devang Patel7a328272011-08-15 21:43:21 +00001622 if (DIELabel *L = dyn_cast<DIELabel>(Values[i]))
Daniel Dunbar83320a02011-03-16 22:16:39 +00001623 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
Devang Patel7a328272011-08-15 21:43:21 +00001624 else
Devang Patelc3f5f782010-05-25 23:40:22 +00001625 Values[i]->EmitValue(Asm, Form);
1626 break;
1627 }
Devang Patel2a361602010-09-29 19:08:08 +00001628 case dwarf::DW_AT_accessibility: {
1629 if (Asm->isVerbose()) {
1630 DIEInteger *V = cast<DIEInteger>(Values[i]);
1631 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
1632 }
1633 Values[i]->EmitValue(Asm, Form);
1634 break;
1635 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001636 default:
1637 // Emit an attribute using the defined form.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001638 Values[i]->EmitValue(Asm, Form);
Bill Wendling94d04b82009-05-20 23:21:38 +00001639 break;
1640 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001641 }
1642
1643 // Emit the DIE children if any.
1644 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1645 const std::vector<DIE *> &Children = Die->getChildren();
1646
1647 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001648 emitDIE(Children[j]);
Bill Wendling94d04b82009-05-20 23:21:38 +00001649
Chris Lattner3f53c832010-04-04 18:52:31 +00001650 if (Asm->isVerbose())
Chris Lattner233f52b2010-03-09 23:52:58 +00001651 Asm->OutStreamer.AddComment("End Of Children Mark");
1652 Asm->EmitInt8(0);
Bill Wendling94d04b82009-05-20 23:21:38 +00001653 }
1654}
1655
Devang Patel8a241142009-12-09 18:24:21 +00001656/// emitDebugInfo - Emit the debug info section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001657///
Devang Patel8a241142009-12-09 18:24:21 +00001658void DwarfDebug::emitDebugInfo() {
1659 // Start debug info section.
1660 Asm->OutStreamer.SwitchSection(
1661 Asm->getObjFileLowering().getDwarfInfoSection());
Devang Patel163a9f72010-05-10 22:49:55 +00001662 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1663 E = CUMap.end(); I != E; ++I) {
1664 CompileUnit *TheCU = I->second;
1665 DIE *Die = TheCU->getCUDie();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001666
Devang Patel163a9f72010-05-10 22:49:55 +00001667 // Emit the compile units header.
1668 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
1669 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001670
Devang Patel163a9f72010-05-10 22:49:55 +00001671 // Emit size of content not including length itself
1672 unsigned ContentSize = Die->getSize() +
1673 sizeof(int16_t) + // DWARF version number
1674 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patel65705d52011-04-13 19:41:17 +00001675 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbach1e20b962010-07-21 21:21:52 +00001676
Devang Patel163a9f72010-05-10 22:49:55 +00001677 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
1678 Asm->EmitInt32(ContentSize);
1679 Asm->OutStreamer.AddComment("DWARF version number");
1680 Asm->EmitInt16(dwarf::DWARF_VERSION);
1681 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
1682 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
1683 DwarfAbbrevSectionSym);
1684 Asm->OutStreamer.AddComment("Address Size (in bytes)");
1685 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001686
Devang Patel163a9f72010-05-10 22:49:55 +00001687 emitDIE(Die);
Devang Patel163a9f72010-05-10 22:49:55 +00001688 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID()));
1689 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001690}
1691
Devang Patel2c4ceb12009-11-21 02:48:08 +00001692/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001693///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001694void DwarfDebug::emitAbbreviations() const {
Bill Wendling94d04b82009-05-20 23:21:38 +00001695 // Check to see if it is worth the effort.
1696 if (!Abbreviations.empty()) {
1697 // Start the debug abbrev section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001698 Asm->OutStreamer.SwitchSection(
1699 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001700
Chris Lattnerc0215722010-04-04 19:25:43 +00001701 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001702
1703 // For each abbrevation.
1704 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
1705 // Get abbreviation data
1706 const DIEAbbrev *Abbrev = Abbreviations[i];
1707
1708 // Emit the abbrevations code (base 1 index.)
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001709 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling94d04b82009-05-20 23:21:38 +00001710
1711 // Emit the abbreviations data.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001712 Abbrev->Emit(Asm);
Bill Wendling94d04b82009-05-20 23:21:38 +00001713 }
1714
1715 // Mark end of abbreviations.
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001716 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling94d04b82009-05-20 23:21:38 +00001717
Chris Lattnerc0215722010-04-04 19:25:43 +00001718 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001719 }
1720}
1721
Devang Patel2c4ceb12009-11-21 02:48:08 +00001722/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling94d04b82009-05-20 23:21:38 +00001723/// the line matrix.
1724///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001725void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001726 // Define last address of section.
Chris Lattner233f52b2010-03-09 23:52:58 +00001727 Asm->OutStreamer.AddComment("Extended Op");
1728 Asm->EmitInt8(0);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001729
Chris Lattner233f52b2010-03-09 23:52:58 +00001730 Asm->OutStreamer.AddComment("Op size");
Chris Lattnerd38fee82010-04-05 00:13:49 +00001731 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner233f52b2010-03-09 23:52:58 +00001732 Asm->OutStreamer.AddComment("DW_LNE_set_address");
1733 Asm->EmitInt8(dwarf::DW_LNE_set_address);
1734
1735 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerd85fc6e2010-03-10 01:17:49 +00001736
Chris Lattnerc0215722010-04-04 19:25:43 +00001737 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattnerd38fee82010-04-05 00:13:49 +00001738 Asm->getTargetData().getPointerSize(),
1739 0/*AddrSpace*/);
Bill Wendling94d04b82009-05-20 23:21:38 +00001740
1741 // Mark end of matrix.
Chris Lattner233f52b2010-03-09 23:52:58 +00001742 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
1743 Asm->EmitInt8(0);
Chris Lattner0ad9c912010-01-22 22:09:00 +00001744 Asm->EmitInt8(1);
Chris Lattner894d75a2010-01-22 23:18:42 +00001745 Asm->EmitInt8(1);
Bill Wendling94d04b82009-05-20 23:21:38 +00001746}
1747
Eric Christopher09ac3d82011-11-07 09:24:32 +00001748/// emitAccelNames - Emit visible names into a hashed accelerator table
1749/// section.
1750void DwarfDebug::emitAccelNames() {
1751 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1752 dwarf::DW_FORM_data4));
1753 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1754 E = CUMap.end(); I != E; ++I) {
1755 CompileUnit *TheCU = I->second;
Eric Christopher0ffe2b42011-11-10 19:25:34 +00001756 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNames();
1757 for (StringMap<std::vector<DIE*> >::const_iterator
Eric Christopher09ac3d82011-11-07 09:24:32 +00001758 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1759 const char *Name = GI->getKeyData();
Eric Christopherfa03db02012-01-06 23:03:34 +00001760 const std::vector<DIE *> &Entities = GI->second;
Eric Christopher0ffe2b42011-11-10 19:25:34 +00001761 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1762 DE = Entities.end(); DI != DE; ++DI)
1763 AT.AddName(Name, (*DI));
Eric Christopher09ac3d82011-11-07 09:24:32 +00001764 }
1765 }
1766
1767 AT.FinalizeTable(Asm, "Names");
1768 Asm->OutStreamer.SwitchSection(
1769 Asm->getObjFileLowering().getDwarfAccelNamesSection());
1770 MCSymbol *SectionBegin = Asm->GetTempSymbol("names_begin");
1771 Asm->OutStreamer.EmitLabel(SectionBegin);
1772
1773 // Emit the full data.
1774 AT.Emit(Asm, SectionBegin, this);
1775}
1776
1777/// emitAccelObjC - Emit objective C classes and categories into a hashed
1778/// accelerator table section.
1779void DwarfDebug::emitAccelObjC() {
1780 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1781 dwarf::DW_FORM_data4));
1782 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1783 E = CUMap.end(); I != E; ++I) {
1784 CompileUnit *TheCU = I->second;
1785 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelObjC();
1786 for (StringMap<std::vector<DIE*> >::const_iterator
1787 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1788 const char *Name = GI->getKeyData();
Eric Christopherfa03db02012-01-06 23:03:34 +00001789 const std::vector<DIE *> &Entities = GI->second;
Eric Christopher09ac3d82011-11-07 09:24:32 +00001790 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1791 DE = Entities.end(); DI != DE; ++DI)
1792 AT.AddName(Name, (*DI));
1793 }
1794 }
1795
1796 AT.FinalizeTable(Asm, "ObjC");
1797 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1798 .getDwarfAccelObjCSection());
1799 MCSymbol *SectionBegin = Asm->GetTempSymbol("objc_begin");
1800 Asm->OutStreamer.EmitLabel(SectionBegin);
1801
1802 // Emit the full data.
1803 AT.Emit(Asm, SectionBegin, this);
1804}
1805
1806/// emitAccelNamespace - Emit namespace dies into a hashed accelerator
1807/// table.
1808void DwarfDebug::emitAccelNamespaces() {
1809 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1810 dwarf::DW_FORM_data4));
1811 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1812 E = CUMap.end(); I != E; ++I) {
1813 CompileUnit *TheCU = I->second;
Eric Christopher8bd36ea2011-11-10 21:47:55 +00001814 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNamespace();
1815 for (StringMap<std::vector<DIE*> >::const_iterator
Eric Christopher09ac3d82011-11-07 09:24:32 +00001816 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1817 const char *Name = GI->getKeyData();
Eric Christopherfa03db02012-01-06 23:03:34 +00001818 const std::vector<DIE *> &Entities = GI->second;
Eric Christopher8bd36ea2011-11-10 21:47:55 +00001819 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1820 DE = Entities.end(); DI != DE; ++DI)
1821 AT.AddName(Name, (*DI));
Eric Christopher09ac3d82011-11-07 09:24:32 +00001822 }
1823 }
1824
1825 AT.FinalizeTable(Asm, "namespac");
1826 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1827 .getDwarfAccelNamespaceSection());
1828 MCSymbol *SectionBegin = Asm->GetTempSymbol("namespac_begin");
1829 Asm->OutStreamer.EmitLabel(SectionBegin);
1830
1831 // Emit the full data.
1832 AT.Emit(Asm, SectionBegin, this);
1833}
1834
1835/// emitAccelTypes() - Emit type dies into a hashed accelerator table.
1836void DwarfDebug::emitAccelTypes() {
Eric Christopherc36145f2012-01-06 04:35:23 +00001837 std::vector<DwarfAccelTable::Atom> Atoms;
1838 Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1839 dwarf::DW_FORM_data4));
1840 Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeTag,
1841 dwarf::DW_FORM_data2));
1842 Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeTypeFlags,
1843 dwarf::DW_FORM_data1));
1844 DwarfAccelTable AT(Atoms);
Eric Christopher09ac3d82011-11-07 09:24:32 +00001845 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1846 E = CUMap.end(); I != E; ++I) {
1847 CompileUnit *TheCU = I->second;
Eric Christopherc36145f2012-01-06 04:35:23 +00001848 const StringMap<std::vector<std::pair<DIE*, unsigned > > > &Names
1849 = TheCU->getAccelTypes();
1850 for (StringMap<std::vector<std::pair<DIE*, unsigned> > >::const_iterator
Eric Christopher09ac3d82011-11-07 09:24:32 +00001851 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1852 const char *Name = GI->getKeyData();
Eric Christopherfa03db02012-01-06 23:03:34 +00001853 const std::vector<std::pair<DIE *, unsigned> > &Entities = GI->second;
Eric Christopherc36145f2012-01-06 04:35:23 +00001854 for (std::vector<std::pair<DIE *, unsigned> >::const_iterator DI
1855 = Entities.begin(), DE = Entities.end(); DI !=DE; ++DI)
1856 AT.AddName(Name, (*DI).first, (*DI).second);
Eric Christopher09ac3d82011-11-07 09:24:32 +00001857 }
1858 }
1859
1860 AT.FinalizeTable(Asm, "types");
1861 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1862 .getDwarfAccelTypesSection());
1863 MCSymbol *SectionBegin = Asm->GetTempSymbol("types_begin");
1864 Asm->OutStreamer.EmitLabel(SectionBegin);
1865
1866 // Emit the full data.
1867 AT.Emit(Asm, SectionBegin, this);
1868}
1869
Devang Patel193f7202009-11-24 01:14:22 +00001870void DwarfDebug::emitDebugPubTypes() {
Devang Patel163a9f72010-05-10 22:49:55 +00001871 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1872 E = CUMap.end(); I != E; ++I) {
1873 CompileUnit *TheCU = I->second;
Eric Christopher63701182011-11-07 09:18:35 +00001874 // Start the dwarf pubtypes section.
Devang Patel163a9f72010-05-10 22:49:55 +00001875 Asm->OutStreamer.SwitchSection(
1876 Asm->getObjFileLowering().getDwarfPubTypesSection());
1877 Asm->OutStreamer.AddComment("Length of Public Types Info");
1878 Asm->EmitLabelDifference(
1879 Asm->GetTempSymbol("pubtypes_end", TheCU->getID()),
1880 Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001881
Devang Patel163a9f72010-05-10 22:49:55 +00001882 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
1883 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001884
Devang Patel163a9f72010-05-10 22:49:55 +00001885 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
1886 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001887
Devang Patel163a9f72010-05-10 22:49:55 +00001888 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
1889 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
1890 DwarfInfoSectionSym);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001891
Devang Patel163a9f72010-05-10 22:49:55 +00001892 Asm->OutStreamer.AddComment("Compilation Unit Length");
1893 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1894 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1895 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001896
Devang Patel163a9f72010-05-10 22:49:55 +00001897 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
1898 for (StringMap<DIE*>::const_iterator
1899 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1900 const char *Name = GI->getKeyData();
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001901 DIE *Entity = GI->second;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001902
Devang Patel163a9f72010-05-10 22:49:55 +00001903 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
1904 Asm->EmitInt32(Entity->getOffset());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001905
Devang Patel163a9f72010-05-10 22:49:55 +00001906 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
Benjamin Kramer983c4572011-11-09 18:16:11 +00001907 // Emit the name with a terminating null byte.
Devang Patel163a9f72010-05-10 22:49:55 +00001908 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
1909 }
Jim Grosbach1e20b962010-07-21 21:21:52 +00001910
Devang Patel163a9f72010-05-10 22:49:55 +00001911 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001912 Asm->EmitInt32(0);
Devang Patel163a9f72010-05-10 22:49:55 +00001913 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
1914 TheCU->getID()));
Devang Patel193f7202009-11-24 01:14:22 +00001915 }
Devang Patel193f7202009-11-24 01:14:22 +00001916}
1917
Devang Patel2c4ceb12009-11-21 02:48:08 +00001918/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001919///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001920void DwarfDebug::emitDebugStr() {
Bill Wendling94d04b82009-05-20 23:21:38 +00001921 // Check to see if it is worth the effort.
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001922 if (StringPool.empty()) return;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001923
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001924 // Start the dwarf str section.
1925 Asm->OutStreamer.SwitchSection(
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001926 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001927
Chris Lattnerbc733f52010-03-13 02:17:42 +00001928 // Get all of the string pool entries and put them in an array by their ID so
1929 // we can sort them.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001930 SmallVector<std::pair<unsigned,
Chris Lattnerbc733f52010-03-13 02:17:42 +00001931 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001932
Chris Lattnerbc733f52010-03-13 02:17:42 +00001933 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
1934 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
1935 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001936
Chris Lattnerbc733f52010-03-13 02:17:42 +00001937 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001938
Chris Lattnerbc733f52010-03-13 02:17:42 +00001939 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001940 // Emit a label for reference from debug information entries.
Chris Lattnerbc733f52010-03-13 02:17:42 +00001941 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001942
Benjamin Kramer983c4572011-11-09 18:16:11 +00001943 // Emit the string itself with a terminating null byte.
Benjamin Kramer0c45f7d2011-11-09 12:12:04 +00001944 Asm->OutStreamer.EmitBytes(StringRef(Entries[i].second->getKeyData(),
1945 Entries[i].second->getKeyLength()+1),
1946 0/*addrspace*/);
Bill Wendling94d04b82009-05-20 23:21:38 +00001947 }
1948}
1949
Devang Patel2c4ceb12009-11-21 02:48:08 +00001950/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001951///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001952void DwarfDebug::emitDebugLoc() {
Devang Patel80250682010-05-26 23:55:23 +00001953 if (DotDebugLocEntries.empty())
1954 return;
1955
Devang Patel6c3ea902011-02-04 22:57:18 +00001956 for (SmallVector<DotDebugLocEntry, 4>::iterator
1957 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
1958 I != E; ++I) {
1959 DotDebugLocEntry &Entry = *I;
1960 if (I + 1 != DotDebugLocEntries.end())
1961 Entry.Merge(I+1);
1962 }
1963
Daniel Dunbar83320a02011-03-16 22:16:39 +00001964 // Start the dwarf loc section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001965 Asm->OutStreamer.SwitchSection(
Devang Patelc3f5f782010-05-25 23:40:22 +00001966 Asm->getObjFileLowering().getDwarfLocSection());
1967 unsigned char Size = Asm->getTargetData().getPointerSize();
Devang Patel80250682010-05-26 23:55:23 +00001968 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
1969 unsigned index = 1;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001970 for (SmallVector<DotDebugLocEntry, 4>::iterator
1971 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel61409622010-07-07 20:12:52 +00001972 I != E; ++I, ++index) {
Devang Patel6c3ea902011-02-04 22:57:18 +00001973 DotDebugLocEntry &Entry = *I;
1974 if (Entry.isMerged()) continue;
Devang Patelc3f5f782010-05-25 23:40:22 +00001975 if (Entry.isEmpty()) {
1976 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
1977 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel80250682010-05-26 23:55:23 +00001978 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patelc3f5f782010-05-25 23:40:22 +00001979 } else {
1980 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0);
1981 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0);
Devang Patelc26f5442011-04-28 02:22:40 +00001982 DIVariable DV(Entry.Variable);
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00001983 Asm->OutStreamer.AddComment("Loc expr size");
1984 MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol();
1985 MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol();
1986 Asm->EmitLabelDifference(end, begin, 2);
1987 Asm->OutStreamer.EmitLabel(begin);
Devang Patel80efd4e2011-07-08 16:49:43 +00001988 if (Entry.isInt()) {
Devang Patelc4329072011-06-01 22:03:25 +00001989 DIBasicType BTy(DV.getType());
1990 if (BTy.Verify() &&
1991 (BTy.getEncoding() == dwarf::DW_ATE_signed
1992 || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) {
1993 Asm->OutStreamer.AddComment("DW_OP_consts");
1994 Asm->EmitInt8(dwarf::DW_OP_consts);
Devang Patel80efd4e2011-07-08 16:49:43 +00001995 Asm->EmitSLEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00001996 } else {
1997 Asm->OutStreamer.AddComment("DW_OP_constu");
1998 Asm->EmitInt8(dwarf::DW_OP_constu);
Devang Patel80efd4e2011-07-08 16:49:43 +00001999 Asm->EmitULEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00002000 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002001 } else if (Entry.isLocation()) {
2002 if (!DV.hasComplexAddress())
2003 // Regular entry.
Devang Patelc26f5442011-04-28 02:22:40 +00002004 Asm->EmitDwarfRegOp(Entry.Loc);
Devang Patel80efd4e2011-07-08 16:49:43 +00002005 else {
2006 // Complex address entry.
2007 unsigned N = DV.getNumAddrElements();
2008 unsigned i = 0;
2009 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
2010 if (Entry.Loc.getOffset()) {
2011 i = 2;
2012 Asm->EmitDwarfRegOp(Entry.Loc);
2013 Asm->OutStreamer.AddComment("DW_OP_deref");
2014 Asm->EmitInt8(dwarf::DW_OP_deref);
2015 Asm->OutStreamer.AddComment("DW_OP_plus_uconst");
2016 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2017 Asm->EmitSLEB128(DV.getAddrElement(1));
2018 } else {
2019 // If first address element is OpPlus then emit
2020 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
2021 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
2022 Asm->EmitDwarfRegOp(Loc);
2023 i = 2;
2024 }
2025 } else {
2026 Asm->EmitDwarfRegOp(Entry.Loc);
2027 }
2028
2029 // Emit remaining complex address elements.
2030 for (; i < N; ++i) {
2031 uint64_t Element = DV.getAddrElement(i);
2032 if (Element == DIBuilder::OpPlus) {
2033 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2034 Asm->EmitULEB128(DV.getAddrElement(++i));
2035 } else if (Element == DIBuilder::OpDeref)
2036 Asm->EmitInt8(dwarf::DW_OP_deref);
2037 else llvm_unreachable("unknown Opcode found in complex address");
2038 }
Devang Patelc26f5442011-04-28 02:22:40 +00002039 }
Devang Patelc26f5442011-04-28 02:22:40 +00002040 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002041 // else ... ignore constant fp. There is not any good way to
2042 // to represent them here in dwarf.
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00002043 Asm->OutStreamer.EmitLabel(end);
Devang Patelc3f5f782010-05-25 23:40:22 +00002044 }
2045 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002046}
2047
2048/// EmitDebugARanges - Emit visible names into a debug aranges section.
2049///
2050void DwarfDebug::EmitDebugARanges() {
2051 // Start the dwarf aranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002052 Asm->OutStreamer.SwitchSection(
2053 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002054}
2055
Devang Patel2c4ceb12009-11-21 02:48:08 +00002056/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002057///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002058void DwarfDebug::emitDebugRanges() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002059 // Start the dwarf ranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002060 Asm->OutStreamer.SwitchSection(
Devang Patelf2548ca2010-04-16 23:33:45 +00002061 Asm->getObjFileLowering().getDwarfRangesSection());
Devang Pateleac9c072010-04-27 19:46:33 +00002062 unsigned char Size = Asm->getTargetData().getPointerSize();
2063 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbach1e20b962010-07-21 21:21:52 +00002064 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Pateleac9c072010-04-27 19:46:33 +00002065 I != E; ++I) {
2066 if (*I)
2067 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002068 else
Devang Pateleac9c072010-04-27 19:46:33 +00002069 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002070 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002071}
2072
Devang Patel2c4ceb12009-11-21 02:48:08 +00002073/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002074///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002075void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarf612ff62009-09-19 20:40:05 +00002076 if (const MCSection *LineInfo =
Chris Lattner18a4c162009-08-02 07:24:22 +00002077 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002078 // Start the dwarf macinfo section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002079 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00002080 }
2081}
2082
Devang Patel2c4ceb12009-11-21 02:48:08 +00002083/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling94d04b82009-05-20 23:21:38 +00002084/// Section Header:
2085/// 1. length of section
2086/// 2. Dwarf version number
2087/// 3. address size.
2088///
2089/// Entries (one "entry" for each function that was inlined):
2090///
2091/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2092/// otherwise offset into __debug_str for regular function name.
2093/// 2. offset into __debug_str section for regular function name.
2094/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2095/// instances for the function.
2096///
2097/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2098/// inlined instance; the die_offset points to the inlined_subroutine die in the
2099/// __debug_info section, and the low_pc is the starting address for the
2100/// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002101void DwarfDebug::emitDebugInlineInfo() {
Eric Christopherb83e2bb2012-03-02 02:11:47 +00002102 if (!Asm->MAI->doesDwarfUseInlineInfoSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002103 return;
2104
Devang Patel163a9f72010-05-10 22:49:55 +00002105 if (!FirstCU)
Bill Wendling94d04b82009-05-20 23:21:38 +00002106 return;
2107
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002108 Asm->OutStreamer.SwitchSection(
2109 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattner0ad9c912010-01-22 22:09:00 +00002110
Chris Lattner233f52b2010-03-09 23:52:58 +00002111 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnera6437182010-04-04 19:58:12 +00002112 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
2113 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling94d04b82009-05-20 23:21:38 +00002114
Chris Lattnerc0215722010-04-04 19:25:43 +00002115 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002116
Chris Lattner233f52b2010-03-09 23:52:58 +00002117 Asm->OutStreamer.AddComment("Dwarf Version");
2118 Asm->EmitInt16(dwarf::DWARF_VERSION);
2119 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002120 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling94d04b82009-05-20 23:21:38 +00002121
Devang Patele9f8f5e2010-05-07 20:54:48 +00002122 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patel53bb5c92009-11-10 23:06:00 +00002123 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002124
Devang Patele9f8f5e2010-05-07 20:54:48 +00002125 const MDNode *Node = *I;
2126 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach7ab38df2009-11-22 19:20:36 +00002127 = InlineInfo.find(Node);
Devang Patel53bb5c92009-11-10 23:06:00 +00002128 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patele4b27562009-08-28 23:24:31 +00002129 DISubprogram SP(Node);
Devang Patel65dbc902009-11-25 17:36:49 +00002130 StringRef LName = SP.getLinkageName();
2131 StringRef Name = SP.getName();
Bill Wendling94d04b82009-05-20 23:21:38 +00002132
Chris Lattner233f52b2010-03-09 23:52:58 +00002133 Asm->OutStreamer.AddComment("MIPS linkage name");
Eric Christopher50e26612012-03-02 01:57:52 +00002134 if (LName.empty())
2135 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
2136 else
Chris Lattner6189ed12010-04-04 23:25:33 +00002137 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
2138 DwarfStrSectionSym);
Devang Patel53bb5c92009-11-10 23:06:00 +00002139
Chris Lattner233f52b2010-03-09 23:52:58 +00002140 Asm->OutStreamer.AddComment("Function name");
Chris Lattner6189ed12010-04-04 23:25:33 +00002141 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner7e1a8f82010-04-04 19:09:29 +00002142 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling94d04b82009-05-20 23:21:38 +00002143
Devang Patel53bb5c92009-11-10 23:06:00 +00002144 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling94d04b82009-05-20 23:21:38 +00002145 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner3f53c832010-04-04 18:52:31 +00002146 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner6ed0f902010-03-09 00:31:02 +00002147 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00002148
Chris Lattner3f53c832010-04-04 18:52:31 +00002149 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002150 Asm->OutStreamer.EmitSymbolValue(LI->first,
2151 Asm->getTargetData().getPointerSize(),0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002152 }
2153 }
2154
Chris Lattnerc0215722010-04-04 19:25:43 +00002155 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002156}