blob: 5d05a3cc3aa11ba27f4d23bab1c2a59edd185432 [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) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000392 assert(0 && "Unexpected Start and End labels for a inlined scope!");
Devang Pateleac9c072010-04-27 19:46:33 +0000393 return 0;
394 }
Chris Lattnerb7db7332010-03-09 01:58:53 +0000395 assert(StartLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +0000396 "Invalid starting label for an inlined scope!");
Chris Lattnerb7db7332010-03-09 01:58:53 +0000397 assert(EndLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +0000398 "Invalid end label for an inlined scope!");
Devang Pateleac9c072010-04-27 19:46:33 +0000399
Devang Pateld96efb82011-05-05 17:54:26 +0000400 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
Devang Patel3cbee302011-04-12 22:53:02 +0000401 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
402 dwarf::DW_FORM_ref4, OriginDIE);
Devang Patel53bb5c92009-11-10 23:06:00 +0000403
Devang Patel26a92002011-07-27 00:34:13 +0000404 if (Ranges.size() > 1) {
405 // .debug_range section has not been laid out yet. Emit offset in
406 // .debug_range as a uint, size 4, for now. emitDIE will handle
407 // DW_AT_ranges appropriately.
408 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel5bc942c2011-08-10 23:58:09 +0000409 DebugRangeSymbols.size()
410 * Asm->getTargetData().getPointerSize());
Devang Patelbf47fdb2011-08-10 20:55:27 +0000411 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel26a92002011-07-27 00:34:13 +0000412 RE = Ranges.end(); RI != RE; ++RI) {
413 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
414 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
415 }
416 DebugRangeSymbols.push_back(NULL);
417 DebugRangeSymbols.push_back(NULL);
418 } else {
Devang Patel5bc942c2011-08-10 23:58:09 +0000419 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
420 StartLabel);
421 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
422 EndLabel);
Devang Patel26a92002011-07-27 00:34:13 +0000423 }
Devang Patel53bb5c92009-11-10 23:06:00 +0000424
425 InlinedSubprogramDIEs.insert(OriginDIE);
426
427 // Track the start label for this inlined function.
Devang Patel26a92002011-07-27 00:34:13 +0000428 //.debug_inlined section specification does not clearly state how
429 // to emit inlined scope that is split into multiple instruction ranges.
430 // For now, use first instruction range and emit low_pc/high_pc pair and
431 // corresponding .debug_inlined section entry for this pair.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000432 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patel2db49d72010-05-07 18:11:54 +0000433 I = InlineInfo.find(InlinedSP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000434
435 if (I == InlineInfo.end()) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000436 InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patel2db49d72010-05-07 18:11:54 +0000437 InlinedSPNodes.push_back(InlinedSP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000438 } else
Chris Lattner6ed0f902010-03-09 00:31:02 +0000439 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patel53bb5c92009-11-10 23:06:00 +0000440
Devang Patel53bb5c92009-11-10 23:06:00 +0000441 DILocation DL(Scope->getInlinedAt());
Devang Patel3cbee302011-04-12 22:53:02 +0000442 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, TheCU->getID());
443 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patel53bb5c92009-11-10 23:06:00 +0000444
445 return ScopeDIE;
446}
447
Eric Christopher0ffe2b42011-11-10 19:25:34 +0000448
449
Devang Patel2c4ceb12009-11-21 02:48:08 +0000450/// constructScopeDIE - Construct a DIE for this scope.
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000451DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) {
Devang Patel3c91b052010-03-08 20:52:55 +0000452 if (!Scope || !Scope->getScopeNode())
453 return NULL;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000454
Nick Lewycky746cb672011-10-26 22:55:33 +0000455 SmallVector<DIE *, 8> Children;
Devang Patel0478c152011-03-01 22:58:55 +0000456
457 // Collect arguments for current function.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000458 if (LScopes.isCurrentFunctionScope(Scope))
Devang Patel0478c152011-03-01 22:58:55 +0000459 for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i)
460 if (DbgVariable *ArgDV = CurrentFnArguments[i])
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000461 if (DIE *Arg =
462 TheCU->constructVariableDIE(ArgDV, Scope->isAbstractScope()))
Devang Patel0478c152011-03-01 22:58:55 +0000463 Children.push_back(Arg);
464
Eric Christopher1aeb7ac2011-10-03 15:49:16 +0000465 // Collect lexical scope children first.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000466 const SmallVector<DbgVariable *, 8> &Variables = ScopeVariables.lookup(Scope);
Devang Patel5bc9fec2011-02-19 01:31:27 +0000467 for (unsigned i = 0, N = Variables.size(); i < N; ++i)
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000468 if (DIE *Variable =
469 TheCU->constructVariableDIE(Variables[i], Scope->isAbstractScope()))
Devang Patel5bc9fec2011-02-19 01:31:27 +0000470 Children.push_back(Variable);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000471 const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren();
Devang Patel5bc9fec2011-02-19 01:31:27 +0000472 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000473 if (DIE *Nested = constructScopeDIE(TheCU, Scopes[j]))
Devang Patel5bc9fec2011-02-19 01:31:27 +0000474 Children.push_back(Nested);
Devang Patel3c91b052010-03-08 20:52:55 +0000475 DIScope DS(Scope->getScopeNode());
476 DIE *ScopeDIE = NULL;
477 if (Scope->getInlinedAt())
Devang Pateld3024342011-08-15 22:24:32 +0000478 ScopeDIE = constructInlinedScopeDIE(TheCU, Scope);
Devang Patel3c91b052010-03-08 20:52:55 +0000479 else if (DS.isSubprogram()) {
Devang Patel0dd45582010-06-28 20:53:04 +0000480 ProcessedSPNodes.insert(DS);
Devang Patel8aa61472010-07-07 22:20:57 +0000481 if (Scope->isAbstractScope()) {
Devang Pateld3024342011-08-15 22:24:32 +0000482 ScopeDIE = TheCU->getDIE(DS);
Devang Patel8aa61472010-07-07 22:20:57 +0000483 // Note down abstract DIE.
484 if (ScopeDIE)
485 AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
486 }
Devang Patel3c91b052010-03-08 20:52:55 +0000487 else
Devang Pateld3024342011-08-15 22:24:32 +0000488 ScopeDIE = updateSubprogramScopeDIE(TheCU, DS);
Devang Patel3c91b052010-03-08 20:52:55 +0000489 }
Devang Patel5bc9fec2011-02-19 01:31:27 +0000490 else {
491 // There is no need to emit empty lexical block DIE.
492 if (Children.empty())
493 return NULL;
Devang Pateld3024342011-08-15 22:24:32 +0000494 ScopeDIE = constructLexicalScopeDIE(TheCU, Scope);
Devang Patel5bc9fec2011-02-19 01:31:27 +0000495 }
496
Devang Patelaead63c2010-03-29 22:59:58 +0000497 if (!ScopeDIE) return NULL;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000498
Devang Patel5bc9fec2011-02-19 01:31:27 +0000499 // Add children
500 for (SmallVector<DIE *, 8>::iterator I = Children.begin(),
501 E = Children.end(); I != E; ++I)
502 ScopeDIE->addChild(*I);
Devang Patel193f7202009-11-24 01:14:22 +0000503
Jim Grosbach1e20b962010-07-21 21:21:52 +0000504 if (DS.isSubprogram())
Eric Christopher0ffe2b42011-11-10 19:25:34 +0000505 TheCU->addPubTypes(DISubprogram(DS));
Jim Grosbach1e20b962010-07-21 21:21:52 +0000506
Eric Christopher0ffe2b42011-11-10 19:25:34 +0000507 return ScopeDIE;
Devang Patel53bb5c92009-11-10 23:06:00 +0000508}
509
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000510/// GetOrCreateSourceID - Look up the source id with the given directory and
511/// source file names. If none currently exists, create a new id and insert it
512/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
513/// maps as well.
Devang Patel23670e52011-03-24 20:30:50 +0000514unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
515 StringRef DirName) {
Devang Patel1905a182010-09-16 20:57:49 +0000516 // If FE did not provide a file name, then assume stdin.
517 if (FileName.empty())
Devang Patel23670e52011-03-24 20:30:50 +0000518 return GetOrCreateSourceID("<stdin>", StringRef());
519
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000520 // TODO: this might not belong here. See if we can factor this better.
521 if (DirName == CompilationDir)
522 DirName = "";
523
Nick Lewycky44d798d2011-10-17 23:05:28 +0000524 unsigned SrcId = SourceIdMap.size()+1;
525 std::pair<std::string, std::string> SourceName =
526 std::make_pair(FileName, DirName);
527 std::pair<std::pair<std::string, std::string>, unsigned> Entry =
528 make_pair(SourceName, SrcId);
Devang Patel1905a182010-09-16 20:57:49 +0000529
Nick Lewycky44d798d2011-10-17 23:05:28 +0000530 std::map<std::pair<std::string, std::string>, unsigned>::iterator I;
531 bool NewlyInserted;
532 tie(I, NewlyInserted) = SourceIdMap.insert(Entry);
533 if (!NewlyInserted)
534 return I->second;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000535
Rafael Espindola5c055632010-11-18 02:04:25 +0000536 // Print out a .file directive to specify files for .loc directives.
Nick Lewycky44d798d2011-10-17 23:05:28 +0000537 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, Entry.first.second,
538 Entry.first.first);
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);
Devang Patel3cbee302011-04-12 22:53:02 +0000552 CompileUnit *NewCU = new CompileUnit(ID, 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
Rafael Espindolab0527282011-11-04 19:00:29 +0000601 DISubprogram SPDecl = SP.getFunctionDeclaration();
602 DIE *DeclDie = NULL;
603 if (SPDecl.isSubprogram()) {
604 DeclDie = TheCU->getOrCreateSubprogramDIE(SPDecl);
605 }
606
Devang Pateldbc64af2011-08-15 17:24:54 +0000607 DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP);
Stuart Hastings639336e2010-04-06 21:38:29 +0000608
Rafael Espindolab0527282011-11-04 19:00:29 +0000609 if (DeclDie) {
610 // Refer function declaration directly.
611 TheCU->addDIEEntry(SubprogramDie, dwarf::DW_AT_specification,
612 dwarf::DW_FORM_ref4, DeclDie);
613 }
614
Stuart Hastings639336e2010-04-06 21:38:29 +0000615 // Add to map.
Devang Patel163a9f72010-05-10 22:49:55 +0000616 TheCU->insertDIE(N, SubprogramDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000617
618 // Add to context owner.
Devang Patel3cbee302011-04-12 22:53:02 +0000619 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel0000fad2009-12-08 23:21:45 +0000620
Devang Patel13e16b62009-06-26 01:49:18 +0000621 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000622}
623
Devang Patel02e603f2011-08-15 23:47:24 +0000624/// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
625/// as llvm.dbg.enum and llvm.dbg.ty
626void DwarfDebug::collectInfoFromNamedMDNodes(Module *M) {
Devang Patel94c7ddb2011-08-16 22:09:43 +0000627 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.sp"))
628 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
629 const MDNode *N = NMD->getOperand(i);
630 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
631 constructSubprogramDIE(CU, N);
632 }
633
634 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv"))
635 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
636 const MDNode *N = NMD->getOperand(i);
637 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel28bea082011-08-18 23:17:55 +0000638 CU->createGlobalVariableDIE(N);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000639 }
640
Devang Patel02e603f2011-08-15 23:47:24 +0000641 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
642 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
643 DIType Ty(NMD->getOperand(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000644 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
645 CU->getOrCreateTypeDIE(Ty);
Devang Patel02e603f2011-08-15 23:47:24 +0000646 }
647
648 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
649 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
650 DIType Ty(NMD->getOperand(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000651 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
652 CU->getOrCreateTypeDIE(Ty);
Devang Patel02e603f2011-08-15 23:47:24 +0000653 }
654}
655
656/// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
657/// FIXME - Remove this when dragon-egg and llvm-gcc switch to DIBuilder.
658bool DwarfDebug::collectLegacyDebugInfo(Module *M) {
659 DebugInfoFinder DbgFinder;
660 DbgFinder.processModule(*M);
661
662 bool HasDebugInfo = false;
663 // Scan all the compile-units to see if there are any marked as the main
664 // unit. If not, we do not generate debug info.
665 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
666 E = DbgFinder.compile_unit_end(); I != E; ++I) {
667 if (DICompileUnit(*I).isMain()) {
668 HasDebugInfo = true;
669 break;
670 }
671 }
672 if (!HasDebugInfo) return false;
673
674 // Create all the compile unit DIEs.
675 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
676 E = DbgFinder.compile_unit_end(); I != E; ++I)
677 constructCompileUnit(*I);
678
679 // Create DIEs for each global variable.
680 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
681 E = DbgFinder.global_variable_end(); I != E; ++I) {
682 const MDNode *N = *I;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000683 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel28bea082011-08-18 23:17:55 +0000684 CU->createGlobalVariableDIE(N);
Devang Patel02e603f2011-08-15 23:47:24 +0000685 }
Devang Patel94c7ddb2011-08-16 22:09:43 +0000686
Devang Patel02e603f2011-08-15 23:47:24 +0000687 // Create DIEs for each subprogram.
688 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
689 E = DbgFinder.subprogram_end(); I != E; ++I) {
690 const MDNode *N = *I;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000691 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
692 constructSubprogramDIE(CU, N);
Devang Patel02e603f2011-08-15 23:47:24 +0000693 }
694
695 return HasDebugInfo;
696}
697
Devang Patel2c4ceb12009-11-21 02:48:08 +0000698/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbar00564992009-09-19 20:40:14 +0000699/// content. Create global DIEs and emit initial debug info sections.
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000700/// This is invoked by the target AsmPrinter.
Chris Lattner75f50722010-04-04 07:48:20 +0000701void DwarfDebug::beginModule(Module *M) {
Devang Pateleac9c072010-04-27 19:46:33 +0000702 if (DisableDebugInfoPrinting)
703 return;
704
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000705 // If module has named metadata anchors then use them, otherwise scan the
706 // module using debug info finder to collect debug info.
Devang Patel30692ab2011-05-03 16:45:22 +0000707 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
708 if (CU_Nodes) {
Devang Patel94c7ddb2011-08-16 22:09:43 +0000709 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
710 DICompileUnit CUNode(CU_Nodes->getOperand(i));
711 CompileUnit *CU = constructCompileUnit(CUNode);
712 DIArray GVs = CUNode.getGlobalVariables();
713 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
Devang Patel28bea082011-08-18 23:17:55 +0000714 CU->createGlobalVariableDIE(GVs.getElement(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000715 DIArray SPs = CUNode.getSubprograms();
716 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
717 constructSubprogramDIE(CU, SPs.getElement(i));
718 DIArray EnumTypes = CUNode.getEnumTypes();
719 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
720 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
721 DIArray RetainedTypes = CUNode.getRetainedTypes();
722 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
723 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
724 }
Devang Patel02e603f2011-08-15 23:47:24 +0000725 } else if (!collectLegacyDebugInfo(M))
726 return;
Devang Patel30692ab2011-05-03 16:45:22 +0000727
Devang Patel02e603f2011-08-15 23:47:24 +0000728 collectInfoFromNamedMDNodes(M);
Devang Patel30692ab2011-05-03 16:45:22 +0000729
Chris Lattnerd850ac72010-04-05 02:19:28 +0000730 // Tell MMI that we have debug info.
731 MMI->setDebugInfoAvailability(true);
Devang Patel30692ab2011-05-03 16:45:22 +0000732
Chris Lattnerbe15beb2010-04-04 23:17:54 +0000733 // Emit initial sections.
Chris Lattnerd850ac72010-04-05 02:19:28 +0000734 EmitSectionLabels();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000735
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000736 // Prime section data.
Chris Lattnerf0144122009-07-28 03:13:23 +0000737 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000738}
739
Devang Patel2c4ceb12009-11-21 02:48:08 +0000740/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000741///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000742void DwarfDebug::endModule() {
Devang Patel163a9f72010-05-10 22:49:55 +0000743 if (!FirstCU) return;
Devang Patel4a1cad62010-06-28 18:25:03 +0000744 const Module *M = MMI->getModule();
Devang Patelbf47fdb2011-08-10 20:55:27 +0000745 DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap;
Devang Patel4a1cad62010-06-28 18:25:03 +0000746
Devang Patel94c7ddb2011-08-16 22:09:43 +0000747 // Collect info for variables that were optimized out.
748 if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) {
749 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
750 DICompileUnit TheCU(CU_Nodes->getOperand(i));
751 DIArray Subprograms = TheCU.getSubprograms();
752 for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) {
753 DISubprogram SP(Subprograms.getElement(i));
754 if (ProcessedSPNodes.count(SP) != 0) continue;
755 if (!SP.Verify()) continue;
756 if (!SP.isDefinition()) continue;
Devang Patel93d39be2011-08-19 23:28:12 +0000757 DIArray Variables = SP.getVariables();
758 if (Variables.getNumElements() == 0) continue;
759
Devang Patel94c7ddb2011-08-16 22:09:43 +0000760 LexicalScope *Scope =
761 new LexicalScope(NULL, DIDescriptor(SP), NULL, false);
762 DeadFnScopeMap[SP] = Scope;
763
764 // Construct subprogram DIE and add variables DIEs.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000765 CompileUnit *SPCU = CUMap.lookup(TheCU);
Nick Lewycky746cb672011-10-26 22:55:33 +0000766 assert(SPCU && "Unable to find Compile Unit!");
Devang Patel94c7ddb2011-08-16 22:09:43 +0000767 constructSubprogramDIE(SPCU, SP);
768 DIE *ScopeDIE = SPCU->getDIE(SP);
Devang Patel93d39be2011-08-19 23:28:12 +0000769 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
770 DIVariable DV(Variables.getElement(vi));
771 if (!DV.Verify()) continue;
772 DbgVariable *NewVar = new DbgVariable(DV, NULL);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000773 if (DIE *VariableDIE =
Devang Patel93d39be2011-08-19 23:28:12 +0000774 SPCU->constructVariableDIE(NewVar, Scope->isAbstractScope()))
Devang Patel94c7ddb2011-08-16 22:09:43 +0000775 ScopeDIE->addChild(VariableDIE);
776 }
Devang Patel4a1cad62010-06-28 18:25:03 +0000777 }
778 }
779 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000780
Devang Patel53bb5c92009-11-10 23:06:00 +0000781 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
782 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
783 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
784 DIE *ISP = *AI;
Devang Patel3cbee302011-04-12 22:53:02 +0000785 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patel53bb5c92009-11-10 23:06:00 +0000786 }
787
Devang Pateldbc64af2011-08-15 17:24:54 +0000788 // Emit DW_AT_containing_type attribute to connect types with their
789 // vtable holding type.
790 for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(),
791 CUE = CUMap.end(); CUI != CUE; ++CUI) {
792 CompileUnit *TheCU = CUI->second;
793 TheCU->constructContainingTypeDIEs();
Devang Patel5d11eb02009-12-03 19:11:07 +0000794 }
795
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000796 // Standard sections final addresses.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000797 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000798 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000799 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000800 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000801
802 // End text sections.
803 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000804 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnerc0215722010-04-04 19:25:43 +0000805 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000806 }
807
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000808 // Compute DIE offsets and sizes.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000809 computeSizeAndOffsets();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000810
811 // Emit all the DIEs into a debug info section
Devang Patel2c4ceb12009-11-21 02:48:08 +0000812 emitDebugInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000813
814 // Corresponding abbreviations into a abbrev section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000815 emitAbbreviations();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000816
Eric Christopher09ac3d82011-11-07 09:24:32 +0000817 // Emit info into a dwarf accelerator table sections.
818 if (DwarfAccelTables) {
819 emitAccelNames();
820 emitAccelObjC();
821 emitAccelNamespaces();
822 emitAccelTypes();
823 }
824
Devang Patel193f7202009-11-24 01:14:22 +0000825 // Emit info into a debug pubtypes section.
826 emitDebugPubTypes();
827
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000828 // Emit info into a debug loc section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000829 emitDebugLoc();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000830
831 // Emit info into a debug aranges section.
832 EmitDebugARanges();
833
834 // Emit info into a debug ranges section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000835 emitDebugRanges();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000836
837 // Emit info into a debug macinfo section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000838 emitDebugMacInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000839
840 // Emit inline info.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000841 emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000842
Chris Lattnerbc733f52010-03-13 02:17:42 +0000843 // Emit info into a debug str section.
844 emitDebugStr();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000845
Devang Patele9a1cca2010-08-02 17:32:15 +0000846 // clean up.
847 DeleteContainerSeconds(DeadFnScopeMap);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000848 SPMap.clear();
Devang Patel163a9f72010-05-10 22:49:55 +0000849 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
850 E = CUMap.end(); I != E; ++I)
851 delete I->second;
852 FirstCU = NULL; // Reset for the next Module, if any.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000853}
854
Devang Patel53bb5c92009-11-10 23:06:00 +0000855/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Devang Patelb549bcf2011-08-10 21:50:54 +0000856DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV,
Chris Lattnerde4845c2010-04-02 19:42:39 +0000857 DebugLoc ScopeLoc) {
Devang Patelb549bcf2011-08-10 21:50:54 +0000858 LLVMContext &Ctx = DV->getContext();
859 // More then one inlined variable corresponds to one abstract variable.
860 DIVariable Var = cleanseInlinedVariable(DV, Ctx);
Devang Patel2db49d72010-05-07 18:11:54 +0000861 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patel53bb5c92009-11-10 23:06:00 +0000862 if (AbsDbgVariable)
863 return AbsDbgVariable;
864
Devang Patelbf47fdb2011-08-10 20:55:27 +0000865 LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx));
Devang Patel53bb5c92009-11-10 23:06:00 +0000866 if (!Scope)
867 return NULL;
868
Devang Patel5a1a67c2011-08-15 19:01:20 +0000869 AbsDbgVariable = new DbgVariable(Var, NULL);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000870 addScopeVariable(Scope, AbsDbgVariable);
Devang Patel2db49d72010-05-07 18:11:54 +0000871 AbstractVariables[Var] = AbsDbgVariable;
Devang Patel53bb5c92009-11-10 23:06:00 +0000872 return AbsDbgVariable;
873}
874
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000875/// addCurrentFnArgument - If Var is a current function argument then add
876/// it to CurrentFnArguments list.
Devang Patel0478c152011-03-01 22:58:55 +0000877bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
Devang Patelbf47fdb2011-08-10 20:55:27 +0000878 DbgVariable *Var, LexicalScope *Scope) {
879 if (!LScopes.isCurrentFunctionScope(Scope))
Devang Patel0478c152011-03-01 22:58:55 +0000880 return false;
881 DIVariable DV = Var->getVariable();
882 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
883 return false;
884 unsigned ArgNo = DV.getArgNumber();
885 if (ArgNo == 0)
886 return false;
887
Devang Patelcb3a6572011-03-03 20:02:02 +0000888 size_t Size = CurrentFnArguments.size();
889 if (Size == 0)
Devang Patel0478c152011-03-01 22:58:55 +0000890 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patelbbd0f452011-03-03 21:49:41 +0000891 // llvm::Function argument size is not good indicator of how many
Devang Patel6f676be2011-03-03 20:08:10 +0000892 // arguments does the function have at source level.
893 if (ArgNo > Size)
Devang Patelcb3a6572011-03-03 20:02:02 +0000894 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel0478c152011-03-01 22:58:55 +0000895 CurrentFnArguments[ArgNo - 1] = Var;
896 return true;
897}
898
Devang Patelee432862010-05-20 19:57:06 +0000899/// collectVariableInfoFromMMITable - Collect variable information from
900/// side table maintained by MMI.
Jim Grosbach1e20b962010-07-21 21:21:52 +0000901void
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000902DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF,
Devang Patelee432862010-05-20 19:57:06 +0000903 SmallPtrSet<const MDNode *, 16> &Processed) {
Devang Patele717faa2009-10-06 01:26:37 +0000904 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
905 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
906 VE = VMap.end(); VI != VE; ++VI) {
Devang Patele9f8f5e2010-05-07 20:54:48 +0000907 const MDNode *Var = VI->first;
Devang Patel53bb5c92009-11-10 23:06:00 +0000908 if (!Var) continue;
Devang Patel98e1cac2010-05-14 21:01:35 +0000909 Processed.insert(Var);
Chris Lattnerde4845c2010-04-02 19:42:39 +0000910 DIVariable DV(Var);
911 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patel53bb5c92009-11-10 23:06:00 +0000912
Devang Patelbf47fdb2011-08-10 20:55:27 +0000913 LexicalScope *Scope = LScopes.findLexicalScope(VP.second);
Jim Grosbach1e20b962010-07-21 21:21:52 +0000914
Devang Patelfb0ee432009-11-10 23:20:04 +0000915 // If variable scope is not found then skip this variable.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000916 if (Scope == 0)
Devang Patelfb0ee432009-11-10 23:20:04 +0000917 continue;
Devang Patel53bb5c92009-11-10 23:06:00 +0000918
Devang Patel26c1e562010-05-20 16:36:41 +0000919 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
Devang Patel5a1a67c2011-08-15 19:01:20 +0000920 DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable);
Devang Patelff9dd0a2011-08-15 21:24:36 +0000921 RegVar->setFrameIndex(VP.first);
Devang Patel0478c152011-03-01 22:58:55 +0000922 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000923 addScopeVariable(Scope, RegVar);
Devang Patel5a1a67c2011-08-15 19:01:20 +0000924 if (AbsDbgVariable)
Devang Patelff9dd0a2011-08-15 21:24:36 +0000925 AbsDbgVariable->setFrameIndex(VP.first);
Devang Patele717faa2009-10-06 01:26:37 +0000926 }
Devang Patelee432862010-05-20 19:57:06 +0000927}
Devang Patel90a48ad2010-03-15 18:33:46 +0000928
Jim Grosbach1e20b962010-07-21 21:21:52 +0000929/// isDbgValueInDefinedReg - Return true if debug value, encoded by
Devang Patelc3f5f782010-05-25 23:40:22 +0000930/// DBG_VALUE instruction, is in a defined reg.
931static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000932 assert(MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000933 return MI->getNumOperands() == 3 &&
934 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
935 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patelc3f5f782010-05-25 23:40:22 +0000936}
937
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000938/// getDebugLocEntry - Get .debug_loc entry for the instruction range starting
Devang Patel90b40412011-07-08 17:09:57 +0000939/// at MI.
940static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm,
941 const MCSymbol *FLabel,
942 const MCSymbol *SLabel,
943 const MachineInstr *MI) {
944 const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata();
945
946 if (MI->getNumOperands() != 3) {
947 MachineLocation MLoc = Asm->getDebugValueLocation(MI);
948 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
949 }
950 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) {
951 MachineLocation MLoc;
952 MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
953 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
954 }
955 if (MI->getOperand(0).isImm())
956 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm());
957 if (MI->getOperand(0).isFPImm())
958 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm());
959 if (MI->getOperand(0).isCImm())
960 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm());
961
Nick Lewycky746cb672011-10-26 22:55:33 +0000962 assert(0 && "Unexpected 3 operand DBG_VALUE instruction!");
Devang Patel90b40412011-07-08 17:09:57 +0000963 return DotDebugLocEntry();
964}
965
Devang Patelbf47fdb2011-08-10 20:55:27 +0000966/// collectVariableInfo - Find variables for each lexical scope.
Jim Grosbach1e20b962010-07-21 21:21:52 +0000967void
Devang Patel78e127d2010-06-25 22:07:34 +0000968DwarfDebug::collectVariableInfo(const MachineFunction *MF,
969 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbach1e20b962010-07-21 21:21:52 +0000970
Devang Patelee432862010-05-20 19:57:06 +0000971 /// collection info from MMI table.
972 collectVariableInfoFromMMITable(MF, Processed);
973
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000974 for (SmallVectorImpl<const MDNode*>::const_iterator
975 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
976 ++UVI) {
977 const MDNode *Var = *UVI;
978 if (Processed.count(Var))
Devang Patelee432862010-05-20 19:57:06 +0000979 continue;
980
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000981 // History contains relevant DBG_VALUE instructions for Var and instructions
982 // clobbering it.
983 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
984 if (History.empty())
985 continue;
986 const MachineInstr *MInsn = History.front();
Devang Patelc3f5f782010-05-25 23:40:22 +0000987
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000988 DIVariable DV(Var);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000989 LexicalScope *Scope = NULL;
Devang Pateld8720f42010-05-27 20:25:04 +0000990 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
991 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000992 Scope = LScopes.getCurrentFunctionScope();
Devang Patel40c7e412011-07-20 22:18:50 +0000993 else {
994 if (DV.getVersion() <= LLVMDebugVersion9)
Devang Patelbf47fdb2011-08-10 20:55:27 +0000995 Scope = LScopes.findLexicalScope(MInsn->getDebugLoc());
Devang Patel40c7e412011-07-20 22:18:50 +0000996 else {
997 if (MDNode *IA = DV.getInlinedAt())
Devang Patelbf47fdb2011-08-10 20:55:27 +0000998 Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA));
Devang Patel40c7e412011-07-20 22:18:50 +0000999 else
Devang Patelbf47fdb2011-08-10 20:55:27 +00001000 Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1)));
Devang Patel40c7e412011-07-20 22:18:50 +00001001 }
1002 }
Devang Patelee432862010-05-20 19:57:06 +00001003 // If variable scope is not found then skip this variable.
Devang Patelc0c5a262010-05-21 00:10:20 +00001004 if (!Scope)
Devang Patelee432862010-05-20 19:57:06 +00001005 continue;
1006
1007 Processed.insert(DV);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001008 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patel5a1a67c2011-08-15 19:01:20 +00001009 DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc());
1010 DbgVariable *RegVar = new DbgVariable(DV, AbsVar);
Devang Patel0478c152011-03-01 22:58:55 +00001011 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +00001012 addScopeVariable(Scope, RegVar);
Devang Patel5a1a67c2011-08-15 19:01:20 +00001013 if (AbsVar)
Devang Patelff9dd0a2011-08-15 21:24:36 +00001014 AbsVar->setMInsn(MInsn);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001015
1016 // Simple ranges that are fully coalesced.
1017 if (History.size() <= 1 || (History.size() == 2 &&
1018 MInsn->isIdenticalTo(History.back()))) {
Devang Patelff9dd0a2011-08-15 21:24:36 +00001019 RegVar->setMInsn(MInsn);
Devang Patelc3f5f782010-05-25 23:40:22 +00001020 continue;
1021 }
1022
1023 // handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001024 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001025
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001026 for (SmallVectorImpl<const MachineInstr*>::const_iterator
1027 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
1028 const MachineInstr *Begin = *HI;
1029 assert(Begin->isDebugValue() && "Invalid History entry");
Jakob Stoklund Olesene17232e2011-03-22 00:21:41 +00001030
Devang Patel4ada1d72011-06-01 23:00:17 +00001031 // Check if DBG_VALUE is truncating a range.
1032 if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg()
1033 && !Begin->getOperand(0).getReg())
1034 continue;
1035
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001036 // Compute the range for a register location.
1037 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
1038 const MCSymbol *SLabel = 0;
1039
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001040 if (HI + 1 == HE)
1041 // If Begin is the last instruction in History then its value is valid
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001042 // until the end of the function.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001043 SLabel = FunctionEndSym;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001044 else {
1045 const MachineInstr *End = HI[1];
Devang Patel476df5f2011-07-07 21:44:42 +00001046 DEBUG(dbgs() << "DotDebugLoc Pair:\n"
1047 << "\t" << *Begin << "\t" << *End << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001048 if (End->isDebugValue())
1049 SLabel = getLabelBeforeInsn(End);
1050 else {
1051 // End is a normal instruction clobbering the range.
1052 SLabel = getLabelAfterInsn(End);
1053 assert(SLabel && "Forgot label after clobber instruction");
1054 ++HI;
1055 }
1056 }
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001057
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001058 // The value is valid until the next DBG_VALUE or clobber.
Devang Patel90b40412011-07-08 17:09:57 +00001059 DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel, Begin));
Devang Patelc3f5f782010-05-25 23:40:22 +00001060 }
1061 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patel90a48ad2010-03-15 18:33:46 +00001062 }
Devang Patel98e1cac2010-05-14 21:01:35 +00001063
1064 // Collect info for variables that were optimized out.
Devang Patel93d39be2011-08-19 23:28:12 +00001065 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
1066 DIArray Variables = DISubprogram(FnScope->getScopeNode()).getVariables();
1067 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1068 DIVariable DV(Variables.getElement(i));
1069 if (!DV || !DV.Verify() || !Processed.insert(DV))
1070 continue;
1071 if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext()))
1072 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel98e1cac2010-05-14 21:01:35 +00001073 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001074}
Devang Patel98e1cac2010-05-14 21:01:35 +00001075
Devang Patelc3f5f782010-05-25 23:40:22 +00001076/// getLabelBeforeInsn - Return Label preceding the instruction.
1077const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001078 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1079 assert(Label && "Didn't insert label before instruction");
1080 return Label;
Devang Patelc3f5f782010-05-25 23:40:22 +00001081}
1082
1083/// getLabelAfterInsn - Return Label immediately following the instruction.
1084const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001085 return LabelsAfterInsn.lookup(MI);
Devang Patele717faa2009-10-06 01:26:37 +00001086}
1087
Devang Patelcbbe2872010-10-26 17:49:02 +00001088/// beginInstruction - Process beginning of an instruction.
1089void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001090 // Check if source location changes, but ignore DBG_VALUE locations.
1091 if (!MI->isDebugValue()) {
1092 DebugLoc DL = MI->getDebugLoc();
1093 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
Devang Patel4243e672011-05-11 19:22:19 +00001094 unsigned Flags = DWARF2_FLAG_IS_STMT;
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001095 PrevInstLoc = DL;
Devang Patel4243e672011-05-11 19:22:19 +00001096 if (DL == PrologEndLoc) {
1097 Flags |= DWARF2_FLAG_PROLOGUE_END;
1098 PrologEndLoc = DebugLoc();
1099 }
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001100 if (!DL.isUnknown()) {
1101 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Devang Patel4243e672011-05-11 19:22:19 +00001102 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001103 } else
Devang Patel4243e672011-05-11 19:22:19 +00001104 recordSourceLine(0, 0, 0, 0);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001105 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001106 }
Devang Patelaead63c2010-03-29 22:59:58 +00001107
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001108 // Insert labels where requested.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001109 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1110 LabelsBeforeInsn.find(MI);
1111
1112 // No label needed.
1113 if (I == LabelsBeforeInsn.end())
1114 return;
1115
1116 // Label already assigned.
1117 if (I->second)
Devang Patelb2b31a62010-05-26 19:37:24 +00001118 return;
Devang Patel553881b2010-03-29 17:20:31 +00001119
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001120 if (!PrevLabel) {
Devang Patel77051f52010-05-26 21:23:46 +00001121 PrevLabel = MMI->getContext().CreateTempSymbol();
1122 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patelb2b31a62010-05-26 19:37:24 +00001123 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001124 I->second = PrevLabel;
Devang Patel0d20ac82009-10-06 01:50:42 +00001125}
1126
Devang Patelcbbe2872010-10-26 17:49:02 +00001127/// endInstruction - Process end of an instruction.
1128void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001129 // Don't create a new label after DBG_VALUE instructions.
1130 // They don't generate code.
1131 if (!MI->isDebugValue())
1132 PrevLabel = 0;
1133
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001134 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1135 LabelsAfterInsn.find(MI);
1136
1137 // No label needed.
1138 if (I == LabelsAfterInsn.end())
1139 return;
1140
1141 // Label already assigned.
1142 if (I->second)
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001143 return;
1144
1145 // We need a label after this instruction.
1146 if (!PrevLabel) {
1147 PrevLabel = MMI->getContext().CreateTempSymbol();
1148 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel1c246352010-04-08 16:50:29 +00001149 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001150 I->second = PrevLabel;
Devang Patel53bb5c92009-11-10 23:06:00 +00001151}
1152
Jim Grosbach1e20b962010-07-21 21:21:52 +00001153/// identifyScopeMarkers() -
Devang Patel5bc942c2011-08-10 23:58:09 +00001154/// Each LexicalScope has first instruction and last instruction to mark
1155/// beginning and end of a scope respectively. Create an inverse map that list
1156/// scopes starts (and ends) with an instruction. One instruction may start (or
1157/// end) multiple scopes. Ignore scopes that are not reachable.
Devang Patele37b0c62010-04-08 18:43:56 +00001158void DwarfDebug::identifyScopeMarkers() {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001159 SmallVector<LexicalScope *, 4> WorkList;
1160 WorkList.push_back(LScopes.getCurrentFunctionScope());
Devang Patel42aafd72010-01-20 02:05:23 +00001161 while (!WorkList.empty()) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001162 LexicalScope *S = WorkList.pop_back_val();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001163
Devang Patelbf47fdb2011-08-10 20:55:27 +00001164 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001165 if (!Children.empty())
Devang Patelbf47fdb2011-08-10 20:55:27 +00001166 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel42aafd72010-01-20 02:05:23 +00001167 SE = Children.end(); SI != SE; ++SI)
1168 WorkList.push_back(*SI);
1169
Devang Patel53bb5c92009-11-10 23:06:00 +00001170 if (S->isAbstractScope())
1171 continue;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001172
Devang Patelbf47fdb2011-08-10 20:55:27 +00001173 const SmallVector<InsnRange, 4> &Ranges = S->getRanges();
Devang Pateleac9c072010-04-27 19:46:33 +00001174 if (Ranges.empty())
1175 continue;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001176 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Pateleac9c072010-04-27 19:46:33 +00001177 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001178 assert(RI->first && "InsnRange does not have first instruction!");
1179 assert(RI->second && "InsnRange does not have second instruction!");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001180 requestLabelBeforeInsn(RI->first);
1181 requestLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +00001182 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001183 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001184}
1185
Devang Patela3f48672011-05-09 22:14:49 +00001186/// getScopeNode - Get MDNode for DebugLoc's scope.
1187static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) {
1188 if (MDNode *InlinedAt = DL.getInlinedAt(Ctx))
1189 return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx);
1190 return DL.getScope(Ctx);
1191}
1192
Devang Patel4243e672011-05-11 19:22:19 +00001193/// getFnDebugLoc - Walk up the scope chain of given debug loc and find
1194/// line number info for the function.
1195static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) {
1196 const MDNode *Scope = getScopeNode(DL, Ctx);
1197 DISubprogram SP = getDISubprogram(Scope);
1198 if (SP.Verify())
1199 return DebugLoc::get(SP.getLineNumber(), 0, SP);
1200 return DebugLoc();
1201}
1202
Devang Patel2c4ceb12009-11-21 02:48:08 +00001203/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001204/// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +00001205void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner994cb122010-04-05 03:52:55 +00001206 if (!MMI->hasDebugInfo()) return;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001207 LScopes.initialize(*MF);
1208 if (LScopes.empty()) return;
1209 identifyScopeMarkers();
Devang Patel60b35bd2009-10-06 18:37:31 +00001210
Devang Pateleac9c072010-04-27 19:46:33 +00001211 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1212 Asm->getFunctionNumber());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001213 // Assumes in correct section after the entry point.
Devang Pateleac9c072010-04-27 19:46:33 +00001214 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001215
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001216 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1217
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001218 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001219 /// LiveUserVar - Map physreg numbers to the MDNode they contain.
1220 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1221
Devang Patelb2b31a62010-05-26 19:37:24 +00001222 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001223 I != E; ++I) {
1224 bool AtBlockEntry = true;
Devang Patelb2b31a62010-05-26 19:37:24 +00001225 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1226 II != IE; ++II) {
1227 const MachineInstr *MI = II;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001228
Devang Patelb2b31a62010-05-26 19:37:24 +00001229 if (MI->isDebugValue()) {
Nick Lewycky746cb672011-10-26 22:55:33 +00001230 assert(MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001231
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001232 // Keep track of user variables.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001233 const MDNode *Var =
1234 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001235
1236 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001237 if (isDbgValueInDefinedReg(MI))
1238 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1239
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001240 // Check the history of this variable.
1241 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1242 if (History.empty()) {
1243 UserVariables.push_back(Var);
1244 // The first mention of a function argument gets the FunctionBeginSym
1245 // label, so arguments are visible when breaking at function entry.
1246 DIVariable DV(Var);
1247 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1248 DISubprogram(getDISubprogram(DV.getContext()))
1249 .describes(MF->getFunction()))
1250 LabelsBeforeInsn[MI] = FunctionBeginSym;
1251 } else {
1252 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1253 const MachineInstr *Prev = History.back();
1254 if (Prev->isDebugValue()) {
1255 // Coalesce identical entries at the end of History.
1256 if (History.size() >= 2 &&
Devang Patel79862892011-07-07 00:14:27 +00001257 Prev->isIdenticalTo(History[History.size() - 2])) {
1258 DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n"
1259 << "\t" << *Prev
1260 << "\t" << *History[History.size() - 2] << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001261 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001262 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001263
1264 // Terminate old register assignments that don't reach MI;
1265 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1266 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1267 isDbgValueInDefinedReg(Prev)) {
1268 // Previous register assignment needs to terminate at the end of
1269 // its basic block.
1270 MachineBasicBlock::const_iterator LastMI =
1271 PrevMBB->getLastNonDebugInstr();
Devang Patel79862892011-07-07 00:14:27 +00001272 if (LastMI == PrevMBB->end()) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001273 // Drop DBG_VALUE for empty range.
Devang Patel79862892011-07-07 00:14:27 +00001274 DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n"
1275 << "\t" << *Prev << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001276 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001277 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001278 else {
1279 // Terminate after LastMI.
1280 History.push_back(LastMI);
1281 }
1282 }
1283 }
1284 }
1285 History.push_back(MI);
Devang Patelb2b31a62010-05-26 19:37:24 +00001286 } else {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001287 // Not a DBG_VALUE instruction.
1288 if (!MI->isLabel())
1289 AtBlockEntry = false;
1290
Devang Patel4243e672011-05-11 19:22:19 +00001291 // First known non DBG_VALUE location marks beginning of function
1292 // body.
1293 if (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown())
1294 PrologEndLoc = MI->getDebugLoc();
1295
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001296 // Check if the instruction clobbers any registers with debug vars.
1297 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1298 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1299 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1300 continue;
1301 for (const unsigned *AI = TRI->getOverlaps(MOI->getReg());
1302 unsigned Reg = *AI; ++AI) {
1303 const MDNode *Var = LiveUserVar[Reg];
1304 if (!Var)
1305 continue;
1306 // Reg is now clobbered.
1307 LiveUserVar[Reg] = 0;
1308
1309 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001310 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
1311 if (HistI == DbgValues.end())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001312 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001313 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
1314 if (History.empty())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001315 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001316 const MachineInstr *Prev = History.back();
1317 // Sanity-check: Register assignments are terminated at the end of
1318 // their block.
1319 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
1320 continue;
1321 // Is the variable still in Reg?
1322 if (!isDbgValueInDefinedReg(Prev) ||
1323 Prev->getOperand(0).getReg() != Reg)
1324 continue;
1325 // Var is clobbered. Make sure the next instruction gets a label.
1326 History.push_back(MI);
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001327 }
1328 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001329 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001330 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001331 }
1332
1333 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
1334 I != E; ++I) {
1335 SmallVectorImpl<const MachineInstr*> &History = I->second;
1336 if (History.empty())
1337 continue;
1338
1339 // Make sure the final register assignments are terminated.
1340 const MachineInstr *Prev = History.back();
1341 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
1342 const MachineBasicBlock *PrevMBB = Prev->getParent();
Devang Patel5bc942c2011-08-10 23:58:09 +00001343 MachineBasicBlock::const_iterator LastMI =
1344 PrevMBB->getLastNonDebugInstr();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001345 if (LastMI == PrevMBB->end())
1346 // Drop DBG_VALUE for empty range.
1347 History.pop_back();
1348 else {
1349 // Terminate after LastMI.
1350 History.push_back(LastMI);
1351 }
1352 }
1353 // Request labels for the full history.
1354 for (unsigned i = 0, e = History.size(); i != e; ++i) {
1355 const MachineInstr *MI = History[i];
1356 if (MI->isDebugValue())
1357 requestLabelBeforeInsn(MI);
1358 else
1359 requestLabelAfterInsn(MI);
1360 }
1361 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001362
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001363 PrevInstLoc = DebugLoc();
Devang Patelb2b31a62010-05-26 19:37:24 +00001364 PrevLabel = FunctionBeginSym;
Devang Patel4243e672011-05-11 19:22:19 +00001365
1366 // Record beginning of function.
1367 if (!PrologEndLoc.isUnknown()) {
1368 DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc,
1369 MF->getFunction()->getContext());
1370 recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(),
1371 FnStartDL.getScope(MF->getFunction()->getContext()),
1372 DWARF2_FLAG_IS_STMT);
1373 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001374}
1375
Devang Patelbf47fdb2011-08-10 20:55:27 +00001376void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) {
1377// SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1378 ScopeVariables[LS].push_back(Var);
1379// Vars.push_back(Var);
1380}
1381
Devang Patel2c4ceb12009-11-21 02:48:08 +00001382/// endFunction - Gather and emit post-function debug information.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001383///
Chris Lattnereec791a2010-01-26 23:18:02 +00001384void DwarfDebug::endFunction(const MachineFunction *MF) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001385 if (!MMI->hasDebugInfo() || LScopes.empty()) return;
Devang Patel70d75ca2009-11-12 19:02:56 +00001386
Devang Patelbf47fdb2011-08-10 20:55:27 +00001387 // Define end label for subprogram.
1388 FunctionEndSym = Asm->GetTempSymbol("func_end",
1389 Asm->getFunctionNumber());
1390 // Assumes in correct section after the entry point.
1391 Asm->OutStreamer.EmitLabel(FunctionEndSym);
1392
1393 SmallPtrSet<const MDNode *, 16> ProcessedVars;
1394 collectVariableInfo(MF, ProcessedVars);
1395
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001396 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
Devang Patel94c7ddb2011-08-16 22:09:43 +00001397 CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode());
Nick Lewycky746cb672011-10-26 22:55:33 +00001398 assert(TheCU && "Unable to find compile unit!");
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001399
Devang Patelbf47fdb2011-08-10 20:55:27 +00001400 // Construct abstract scopes.
Devang Patelcd9f6c52011-08-12 18:10:19 +00001401 ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList();
1402 for (unsigned i = 0, e = AList.size(); i != e; ++i) {
1403 LexicalScope *AScope = AList[i];
1404 DISubprogram SP(AScope->getScopeNode());
Devang Patelbf47fdb2011-08-10 20:55:27 +00001405 if (SP.Verify()) {
1406 // Collect info for variables that were optimized out.
Devang Patel93d39be2011-08-19 23:28:12 +00001407 DIArray Variables = SP.getVariables();
1408 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1409 DIVariable DV(Variables.getElement(i));
1410 if (!DV || !DV.Verify() || !ProcessedVars.insert(DV))
1411 continue;
1412 if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext()))
1413 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel78e127d2010-06-25 22:07:34 +00001414 }
1415 }
Devang Patelcd9f6c52011-08-12 18:10:19 +00001416 if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0)
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001417 constructScopeDIE(TheCU, AScope);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001418 }
Devang Patelbf47fdb2011-08-10 20:55:27 +00001419
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001420 DIE *CurFnDIE = constructScopeDIE(TheCU, FnScope);
Devang Patelbf47fdb2011-08-10 20:55:27 +00001421
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001422 if (!DisableFramePointerElim(*MF))
Devang Patel5bc942c2011-08-10 23:58:09 +00001423 TheCU->addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr,
1424 dwarf::DW_FORM_flag, 1);
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001425
Devang Patelbf47fdb2011-08-10 20:55:27 +00001426 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
1427 MMI->getFrameMoves()));
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001428
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001429 // Clear debug info
Devang Patelbf47fdb2011-08-10 20:55:27 +00001430 for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator
1431 I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I)
1432 DeleteContainerPointers(I->second);
1433 ScopeVariables.clear();
Devang Pateleac0c9d2011-04-22 18:09:57 +00001434 DeleteContainerPointers(CurrentFnArguments);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001435 UserVariables.clear();
1436 DbgValues.clear();
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00001437 AbstractVariables.clear();
Devang Pateleac9c072010-04-27 19:46:33 +00001438 LabelsBeforeInsn.clear();
1439 LabelsAfterInsn.clear();
Devang Patelf2548ca2010-04-16 23:33:45 +00001440 PrevLabel = NULL;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001441}
1442
Chris Lattnerc6087842010-03-09 04:54:43 +00001443/// recordSourceLine - Register a source line with debug info. Returns the
1444/// unique label that was emitted and which provides correspondence to
1445/// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +00001446void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S,
1447 unsigned Flags) {
Devang Patel65dbc902009-11-25 17:36:49 +00001448 StringRef Fn;
Devang Patel23670e52011-03-24 20:30:50 +00001449 StringRef Dir;
Dan Gohman1cc0d622010-05-05 23:41:32 +00001450 unsigned Src = 1;
1451 if (S) {
1452 DIDescriptor Scope(S);
Devang Patelf84548d2009-10-05 18:03:19 +00001453
Dan Gohman1cc0d622010-05-05 23:41:32 +00001454 if (Scope.isCompileUnit()) {
1455 DICompileUnit CU(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001456 Fn = CU.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001457 Dir = CU.getDirectory();
Devang Patel3cabc9d2010-10-28 17:30:52 +00001458 } else if (Scope.isFile()) {
1459 DIFile F(S);
Devang Patel3cabc9d2010-10-28 17:30:52 +00001460 Fn = F.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001461 Dir = F.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001462 } else if (Scope.isSubprogram()) {
1463 DISubprogram SP(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001464 Fn = SP.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001465 Dir = SP.getDirectory();
Eric Christopher6618a242011-10-11 22:59:11 +00001466 } else if (Scope.isLexicalBlockFile()) {
1467 DILexicalBlockFile DBF(S);
1468 Fn = DBF.getFilename();
1469 Dir = DBF.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001470 } else if (Scope.isLexicalBlock()) {
1471 DILexicalBlock DB(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001472 Fn = DB.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001473 Dir = DB.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001474 } else
1475 assert(0 && "Unexpected scope info");
1476
Devang Patel23670e52011-03-24 20:30:50 +00001477 Src = GetOrCreateSourceID(Fn, Dir);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001478 }
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001479 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001480}
1481
Bill Wendling829e67b2009-05-20 23:22:40 +00001482//===----------------------------------------------------------------------===//
1483// Emit Methods
1484//===----------------------------------------------------------------------===//
1485
Devang Patel2c4ceb12009-11-21 02:48:08 +00001486/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling94d04b82009-05-20 23:21:38 +00001487///
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001488unsigned
1489DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001490 // Get the children.
1491 const std::vector<DIE *> &Children = Die->getChildren();
1492
1493 // If not last sibling and has children then add sibling offset attribute.
Jeffrey Yasskin638fe8d2010-03-22 18:47:14 +00001494 if (!Last && !Children.empty())
Benjamin Kramer345ef342010-03-31 19:34:01 +00001495 Die->addSiblingOffset(DIEValueAllocator);
Bill Wendling94d04b82009-05-20 23:21:38 +00001496
1497 // Record the abbreviation.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001498 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling94d04b82009-05-20 23:21:38 +00001499
1500 // Get the abbreviation for this DIE.
1501 unsigned AbbrevNumber = Die->getAbbrevNumber();
1502 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1503
1504 // Set DIE offset
1505 Die->setOffset(Offset);
1506
1507 // Start the size with the size of abbreviation code.
Chris Lattneraf76e592009-08-22 20:48:53 +00001508 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001509
1510 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1511 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1512
1513 // Size the DIE attribute values.
1514 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1515 // Size attribute value.
Chris Lattnera37d5382010-04-05 00:18:22 +00001516 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling94d04b82009-05-20 23:21:38 +00001517
1518 // Size the DIE children if any.
1519 if (!Children.empty()) {
1520 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1521 "Children flag not set");
1522
1523 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001524 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling94d04b82009-05-20 23:21:38 +00001525
1526 // End of children marker.
1527 Offset += sizeof(int8_t);
1528 }
1529
1530 Die->setSize(Offset - Die->getOffset());
1531 return Offset;
1532}
1533
Devang Patel2c4ceb12009-11-21 02:48:08 +00001534/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling94d04b82009-05-20 23:21:38 +00001535///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001536void DwarfDebug::computeSizeAndOffsets() {
Devang Patel163a9f72010-05-10 22:49:55 +00001537 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1538 E = CUMap.end(); I != E; ++I) {
1539 // Compute size of compile unit header.
Devang Patel513edf62011-04-12 23:10:47 +00001540 unsigned Offset =
Devang Patel163a9f72010-05-10 22:49:55 +00001541 sizeof(int32_t) + // Length of Compilation Unit Info
1542 sizeof(int16_t) + // DWARF version number
1543 sizeof(int32_t) + // Offset Into Abbrev. Section
1544 sizeof(int8_t); // Pointer Size (in bytes)
1545 computeSizeAndOffset(I->second->getCUDie(), Offset, true);
Devang Patel163a9f72010-05-10 22:49:55 +00001546 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001547}
1548
Chris Lattner9c69e285532010-04-04 22:59:04 +00001549/// EmitSectionLabels - Emit initial Dwarf sections with a label at
1550/// the start of each one.
Chris Lattnerfa070b02010-04-04 22:33:59 +00001551void DwarfDebug::EmitSectionLabels() {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001552 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001553
Bill Wendling94d04b82009-05-20 23:21:38 +00001554 // Dwarf sections base addresses.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001555 DwarfInfoSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001556 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001557 DwarfAbbrevSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001558 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner11b8f302010-04-04 23:02:02 +00001559 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001560
Chris Lattner9c69e285532010-04-04 22:59:04 +00001561 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner11b8f302010-04-04 23:02:02 +00001562 EmitSectionSym(Asm, MacroInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00001563
Devang Patelaf608bd2010-08-24 00:06:12 +00001564 EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Chris Lattner11b8f302010-04-04 23:02:02 +00001565 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
Chris Lattner11b8f302010-04-04 23:02:02 +00001566 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001567 DwarfStrSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001568 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Devang Patelf2548ca2010-04-16 23:33:45 +00001569 DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(),
1570 "debug_range");
Bill Wendling94d04b82009-05-20 23:21:38 +00001571
Devang Patelc3f5f782010-05-25 23:40:22 +00001572 DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(),
1573 "section_debug_loc");
1574
Chris Lattner9c69e285532010-04-04 22:59:04 +00001575 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattner4ad1efe2010-04-04 23:10:38 +00001576 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001577}
1578
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001579/// emitDIE - Recursively emits a debug information entry.
Bill Wendling94d04b82009-05-20 23:21:38 +00001580///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001581void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001582 // Get the abbreviation for this DIE.
1583 unsigned AbbrevNumber = Die->getAbbrevNumber();
1584 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1585
Bill Wendling94d04b82009-05-20 23:21:38 +00001586 // Emit the code (index) for the abbreviation.
Chris Lattner3f53c832010-04-04 18:52:31 +00001587 if (Asm->isVerbose())
Chris Lattner894d75a2010-01-22 23:18:42 +00001588 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
1589 Twine::utohexstr(Die->getOffset()) + ":0x" +
1590 Twine::utohexstr(Die->getSize()) + " " +
1591 dwarf::TagString(Abbrev->getTag()));
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001592 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001593
Jeffrey Yasskin638fe8d2010-03-22 18:47:14 +00001594 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling94d04b82009-05-20 23:21:38 +00001595 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1596
1597 // Emit the DIE attribute values.
1598 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1599 unsigned Attr = AbbrevData[i].getAttribute();
1600 unsigned Form = AbbrevData[i].getForm();
1601 assert(Form && "Too many attributes for DIE (check abbreviation)");
1602
Chris Lattner3f53c832010-04-04 18:52:31 +00001603 if (Asm->isVerbose())
Chris Lattnera8013622010-01-24 18:54:17 +00001604 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001605
Bill Wendling94d04b82009-05-20 23:21:38 +00001606 switch (Attr) {
1607 case dwarf::DW_AT_sibling:
Devang Patel2c4ceb12009-11-21 02:48:08 +00001608 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00001609 break;
1610 case dwarf::DW_AT_abstract_origin: {
1611 DIEEntry *E = cast<DIEEntry>(Values[i]);
1612 DIE *Origin = E->getEntry();
Devang Patel53bb5c92009-11-10 23:06:00 +00001613 unsigned Addr = Origin->getOffset();
Bill Wendling94d04b82009-05-20 23:21:38 +00001614 Asm->EmitInt32(Addr);
1615 break;
1616 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001617 case dwarf::DW_AT_ranges: {
1618 // DW_AT_range Value encodes offset in debug_range section.
1619 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelb1fcfbe2010-09-02 16:43:44 +00001620
1621 if (Asm->MAI->doesDwarfUsesLabelOffsetForRanges()) {
1622 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
1623 V->getValue(),
1624 4);
1625 } else {
1626 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
1627 V->getValue(),
1628 DwarfDebugRangeSectionSym,
1629 4);
1630 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001631 break;
1632 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001633 case dwarf::DW_AT_location: {
Devang Patel7a328272011-08-15 21:43:21 +00001634 if (DIELabel *L = dyn_cast<DIELabel>(Values[i]))
Daniel Dunbar83320a02011-03-16 22:16:39 +00001635 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
Devang Patel7a328272011-08-15 21:43:21 +00001636 else
Devang Patelc3f5f782010-05-25 23:40:22 +00001637 Values[i]->EmitValue(Asm, Form);
1638 break;
1639 }
Devang Patel2a361602010-09-29 19:08:08 +00001640 case dwarf::DW_AT_accessibility: {
1641 if (Asm->isVerbose()) {
1642 DIEInteger *V = cast<DIEInteger>(Values[i]);
1643 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
1644 }
1645 Values[i]->EmitValue(Asm, Form);
1646 break;
1647 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001648 default:
1649 // Emit an attribute using the defined form.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001650 Values[i]->EmitValue(Asm, Form);
Bill Wendling94d04b82009-05-20 23:21:38 +00001651 break;
1652 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001653 }
1654
1655 // Emit the DIE children if any.
1656 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1657 const std::vector<DIE *> &Children = Die->getChildren();
1658
1659 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001660 emitDIE(Children[j]);
Bill Wendling94d04b82009-05-20 23:21:38 +00001661
Chris Lattner3f53c832010-04-04 18:52:31 +00001662 if (Asm->isVerbose())
Chris Lattner233f52b2010-03-09 23:52:58 +00001663 Asm->OutStreamer.AddComment("End Of Children Mark");
1664 Asm->EmitInt8(0);
Bill Wendling94d04b82009-05-20 23:21:38 +00001665 }
1666}
1667
Devang Patel8a241142009-12-09 18:24:21 +00001668/// emitDebugInfo - Emit the debug info section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001669///
Devang Patel8a241142009-12-09 18:24:21 +00001670void DwarfDebug::emitDebugInfo() {
1671 // Start debug info section.
1672 Asm->OutStreamer.SwitchSection(
1673 Asm->getObjFileLowering().getDwarfInfoSection());
Devang Patel163a9f72010-05-10 22:49:55 +00001674 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1675 E = CUMap.end(); I != E; ++I) {
1676 CompileUnit *TheCU = I->second;
1677 DIE *Die = TheCU->getCUDie();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001678
Devang Patel163a9f72010-05-10 22:49:55 +00001679 // Emit the compile units header.
1680 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
1681 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001682
Devang Patel163a9f72010-05-10 22:49:55 +00001683 // Emit size of content not including length itself
1684 unsigned ContentSize = Die->getSize() +
1685 sizeof(int16_t) + // DWARF version number
1686 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patel65705d52011-04-13 19:41:17 +00001687 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbach1e20b962010-07-21 21:21:52 +00001688
Devang Patel163a9f72010-05-10 22:49:55 +00001689 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
1690 Asm->EmitInt32(ContentSize);
1691 Asm->OutStreamer.AddComment("DWARF version number");
1692 Asm->EmitInt16(dwarf::DWARF_VERSION);
1693 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
1694 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
1695 DwarfAbbrevSectionSym);
1696 Asm->OutStreamer.AddComment("Address Size (in bytes)");
1697 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001698
Devang Patel163a9f72010-05-10 22:49:55 +00001699 emitDIE(Die);
Devang Patel163a9f72010-05-10 22:49:55 +00001700 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID()));
1701 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001702}
1703
Devang Patel2c4ceb12009-11-21 02:48:08 +00001704/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001705///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001706void DwarfDebug::emitAbbreviations() const {
Bill Wendling94d04b82009-05-20 23:21:38 +00001707 // Check to see if it is worth the effort.
1708 if (!Abbreviations.empty()) {
1709 // Start the debug abbrev section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001710 Asm->OutStreamer.SwitchSection(
1711 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001712
Chris Lattnerc0215722010-04-04 19:25:43 +00001713 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001714
1715 // For each abbrevation.
1716 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
1717 // Get abbreviation data
1718 const DIEAbbrev *Abbrev = Abbreviations[i];
1719
1720 // Emit the abbrevations code (base 1 index.)
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001721 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling94d04b82009-05-20 23:21:38 +00001722
1723 // Emit the abbreviations data.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001724 Abbrev->Emit(Asm);
Bill Wendling94d04b82009-05-20 23:21:38 +00001725 }
1726
1727 // Mark end of abbreviations.
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001728 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling94d04b82009-05-20 23:21:38 +00001729
Chris Lattnerc0215722010-04-04 19:25:43 +00001730 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001731 }
1732}
1733
Devang Patel2c4ceb12009-11-21 02:48:08 +00001734/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling94d04b82009-05-20 23:21:38 +00001735/// the line matrix.
1736///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001737void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001738 // Define last address of section.
Chris Lattner233f52b2010-03-09 23:52:58 +00001739 Asm->OutStreamer.AddComment("Extended Op");
1740 Asm->EmitInt8(0);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001741
Chris Lattner233f52b2010-03-09 23:52:58 +00001742 Asm->OutStreamer.AddComment("Op size");
Chris Lattnerd38fee82010-04-05 00:13:49 +00001743 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner233f52b2010-03-09 23:52:58 +00001744 Asm->OutStreamer.AddComment("DW_LNE_set_address");
1745 Asm->EmitInt8(dwarf::DW_LNE_set_address);
1746
1747 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerd85fc6e2010-03-10 01:17:49 +00001748
Chris Lattnerc0215722010-04-04 19:25:43 +00001749 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattnerd38fee82010-04-05 00:13:49 +00001750 Asm->getTargetData().getPointerSize(),
1751 0/*AddrSpace*/);
Bill Wendling94d04b82009-05-20 23:21:38 +00001752
1753 // Mark end of matrix.
Chris Lattner233f52b2010-03-09 23:52:58 +00001754 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
1755 Asm->EmitInt8(0);
Chris Lattner0ad9c912010-01-22 22:09:00 +00001756 Asm->EmitInt8(1);
Chris Lattner894d75a2010-01-22 23:18:42 +00001757 Asm->EmitInt8(1);
Bill Wendling94d04b82009-05-20 23:21:38 +00001758}
1759
Eric Christopher09ac3d82011-11-07 09:24:32 +00001760/// emitAccelNames - Emit visible names into a hashed accelerator table
1761/// section.
1762void DwarfDebug::emitAccelNames() {
1763 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1764 dwarf::DW_FORM_data4));
1765 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1766 E = CUMap.end(); I != E; ++I) {
1767 CompileUnit *TheCU = I->second;
Eric Christopher0ffe2b42011-11-10 19:25:34 +00001768 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNames();
1769 for (StringMap<std::vector<DIE*> >::const_iterator
Eric Christopher09ac3d82011-11-07 09:24:32 +00001770 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1771 const char *Name = GI->getKeyData();
Eric Christopher0ffe2b42011-11-10 19:25:34 +00001772 std::vector<DIE *> Entities = GI->second;
1773 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1774 DE = Entities.end(); DI != DE; ++DI)
1775 AT.AddName(Name, (*DI));
Eric Christopher09ac3d82011-11-07 09:24:32 +00001776 }
1777 }
1778
1779 AT.FinalizeTable(Asm, "Names");
1780 Asm->OutStreamer.SwitchSection(
1781 Asm->getObjFileLowering().getDwarfAccelNamesSection());
1782 MCSymbol *SectionBegin = Asm->GetTempSymbol("names_begin");
1783 Asm->OutStreamer.EmitLabel(SectionBegin);
1784
1785 // Emit the full data.
1786 AT.Emit(Asm, SectionBegin, this);
1787}
1788
1789/// emitAccelObjC - Emit objective C classes and categories into a hashed
1790/// accelerator table section.
1791void DwarfDebug::emitAccelObjC() {
1792 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1793 dwarf::DW_FORM_data4));
1794 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1795 E = CUMap.end(); I != E; ++I) {
1796 CompileUnit *TheCU = I->second;
1797 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelObjC();
1798 for (StringMap<std::vector<DIE*> >::const_iterator
1799 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1800 const char *Name = GI->getKeyData();
1801 std::vector<DIE *> Entities = GI->second;
1802 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1803 DE = Entities.end(); DI != DE; ++DI)
1804 AT.AddName(Name, (*DI));
1805 }
1806 }
1807
1808 AT.FinalizeTable(Asm, "ObjC");
1809 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1810 .getDwarfAccelObjCSection());
1811 MCSymbol *SectionBegin = Asm->GetTempSymbol("objc_begin");
1812 Asm->OutStreamer.EmitLabel(SectionBegin);
1813
1814 // Emit the full data.
1815 AT.Emit(Asm, SectionBegin, this);
1816}
1817
1818/// emitAccelNamespace - Emit namespace dies into a hashed accelerator
1819/// table.
1820void DwarfDebug::emitAccelNamespaces() {
1821 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1822 dwarf::DW_FORM_data4));
1823 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1824 E = CUMap.end(); I != E; ++I) {
1825 CompileUnit *TheCU = I->second;
Eric Christopher8bd36ea2011-11-10 21:47:55 +00001826 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNamespace();
1827 for (StringMap<std::vector<DIE*> >::const_iterator
Eric Christopher09ac3d82011-11-07 09:24:32 +00001828 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1829 const char *Name = GI->getKeyData();
Eric Christopher8bd36ea2011-11-10 21:47:55 +00001830 std::vector<DIE *> Entities = GI->second;
1831 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1832 DE = Entities.end(); DI != DE; ++DI)
1833 AT.AddName(Name, (*DI));
Eric Christopher09ac3d82011-11-07 09:24:32 +00001834 }
1835 }
1836
1837 AT.FinalizeTable(Asm, "namespac");
1838 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1839 .getDwarfAccelNamespaceSection());
1840 MCSymbol *SectionBegin = Asm->GetTempSymbol("namespac_begin");
1841 Asm->OutStreamer.EmitLabel(SectionBegin);
1842
1843 // Emit the full data.
1844 AT.Emit(Asm, SectionBegin, this);
1845}
1846
1847/// emitAccelTypes() - Emit type dies into a hashed accelerator table.
1848void DwarfDebug::emitAccelTypes() {
1849 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1850 dwarf::DW_FORM_data4));
1851 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1852 E = CUMap.end(); I != E; ++I) {
1853 CompileUnit *TheCU = I->second;
Eric Christopher8bd36ea2011-11-10 21:47:55 +00001854 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelTypes();
1855 for (StringMap<std::vector<DIE*> >::const_iterator
Eric Christopher09ac3d82011-11-07 09:24:32 +00001856 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1857 const char *Name = GI->getKeyData();
Eric Christopher8bd36ea2011-11-10 21:47:55 +00001858 std::vector<DIE *> Entities = GI->second;
1859 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1860 DE= Entities.end(); DI !=DE; ++DI)
1861 AT.AddName(Name, (*DI));
Eric Christopher09ac3d82011-11-07 09:24:32 +00001862 }
1863 }
1864
1865 AT.FinalizeTable(Asm, "types");
1866 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1867 .getDwarfAccelTypesSection());
1868 MCSymbol *SectionBegin = Asm->GetTempSymbol("types_begin");
1869 Asm->OutStreamer.EmitLabel(SectionBegin);
1870
1871 // Emit the full data.
1872 AT.Emit(Asm, SectionBegin, this);
1873}
1874
Devang Patel193f7202009-11-24 01:14:22 +00001875void DwarfDebug::emitDebugPubTypes() {
Devang Patel163a9f72010-05-10 22:49:55 +00001876 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1877 E = CUMap.end(); I != E; ++I) {
1878 CompileUnit *TheCU = I->second;
Eric Christopher63701182011-11-07 09:18:35 +00001879 // Start the dwarf pubtypes section.
Devang Patel163a9f72010-05-10 22:49:55 +00001880 Asm->OutStreamer.SwitchSection(
1881 Asm->getObjFileLowering().getDwarfPubTypesSection());
1882 Asm->OutStreamer.AddComment("Length of Public Types Info");
1883 Asm->EmitLabelDifference(
1884 Asm->GetTempSymbol("pubtypes_end", TheCU->getID()),
1885 Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001886
Devang Patel163a9f72010-05-10 22:49:55 +00001887 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
1888 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001889
Devang Patel163a9f72010-05-10 22:49:55 +00001890 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
1891 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001892
Devang Patel163a9f72010-05-10 22:49:55 +00001893 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
1894 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
1895 DwarfInfoSectionSym);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001896
Devang Patel163a9f72010-05-10 22:49:55 +00001897 Asm->OutStreamer.AddComment("Compilation Unit Length");
1898 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1899 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1900 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001901
Devang Patel163a9f72010-05-10 22:49:55 +00001902 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
1903 for (StringMap<DIE*>::const_iterator
1904 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1905 const char *Name = GI->getKeyData();
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001906 DIE *Entity = GI->second;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001907
Devang Patel163a9f72010-05-10 22:49:55 +00001908 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
1909 Asm->EmitInt32(Entity->getOffset());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001910
Devang Patel163a9f72010-05-10 22:49:55 +00001911 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
Benjamin Kramer983c4572011-11-09 18:16:11 +00001912 // Emit the name with a terminating null byte.
Devang Patel163a9f72010-05-10 22:49:55 +00001913 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
1914 }
Jim Grosbach1e20b962010-07-21 21:21:52 +00001915
Devang Patel163a9f72010-05-10 22:49:55 +00001916 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001917 Asm->EmitInt32(0);
Devang Patel163a9f72010-05-10 22:49:55 +00001918 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
1919 TheCU->getID()));
Devang Patel193f7202009-11-24 01:14:22 +00001920 }
Devang Patel193f7202009-11-24 01:14:22 +00001921}
1922
Devang Patel2c4ceb12009-11-21 02:48:08 +00001923/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001924///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001925void DwarfDebug::emitDebugStr() {
Bill Wendling94d04b82009-05-20 23:21:38 +00001926 // Check to see if it is worth the effort.
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001927 if (StringPool.empty()) return;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001928
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001929 // Start the dwarf str section.
1930 Asm->OutStreamer.SwitchSection(
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001931 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001932
Chris Lattnerbc733f52010-03-13 02:17:42 +00001933 // Get all of the string pool entries and put them in an array by their ID so
1934 // we can sort them.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001935 SmallVector<std::pair<unsigned,
Chris Lattnerbc733f52010-03-13 02:17:42 +00001936 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001937
Chris Lattnerbc733f52010-03-13 02:17:42 +00001938 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
1939 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
1940 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001941
Chris Lattnerbc733f52010-03-13 02:17:42 +00001942 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001943
Chris Lattnerbc733f52010-03-13 02:17:42 +00001944 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001945 // Emit a label for reference from debug information entries.
Chris Lattnerbc733f52010-03-13 02:17:42 +00001946 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001947
Benjamin Kramer983c4572011-11-09 18:16:11 +00001948 // Emit the string itself with a terminating null byte.
Benjamin Kramer0c45f7d2011-11-09 12:12:04 +00001949 Asm->OutStreamer.EmitBytes(StringRef(Entries[i].second->getKeyData(),
1950 Entries[i].second->getKeyLength()+1),
1951 0/*addrspace*/);
Bill Wendling94d04b82009-05-20 23:21:38 +00001952 }
1953}
1954
Devang Patel2c4ceb12009-11-21 02:48:08 +00001955/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001956///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001957void DwarfDebug::emitDebugLoc() {
Devang Patel80250682010-05-26 23:55:23 +00001958 if (DotDebugLocEntries.empty())
1959 return;
1960
Devang Patel6c3ea902011-02-04 22:57:18 +00001961 for (SmallVector<DotDebugLocEntry, 4>::iterator
1962 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
1963 I != E; ++I) {
1964 DotDebugLocEntry &Entry = *I;
1965 if (I + 1 != DotDebugLocEntries.end())
1966 Entry.Merge(I+1);
1967 }
1968
Daniel Dunbar83320a02011-03-16 22:16:39 +00001969 // Start the dwarf loc section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001970 Asm->OutStreamer.SwitchSection(
Devang Patelc3f5f782010-05-25 23:40:22 +00001971 Asm->getObjFileLowering().getDwarfLocSection());
1972 unsigned char Size = Asm->getTargetData().getPointerSize();
Devang Patel80250682010-05-26 23:55:23 +00001973 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
1974 unsigned index = 1;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001975 for (SmallVector<DotDebugLocEntry, 4>::iterator
1976 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel61409622010-07-07 20:12:52 +00001977 I != E; ++I, ++index) {
Devang Patel6c3ea902011-02-04 22:57:18 +00001978 DotDebugLocEntry &Entry = *I;
1979 if (Entry.isMerged()) continue;
Devang Patelc3f5f782010-05-25 23:40:22 +00001980 if (Entry.isEmpty()) {
1981 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
1982 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel80250682010-05-26 23:55:23 +00001983 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patelc3f5f782010-05-25 23:40:22 +00001984 } else {
1985 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0);
1986 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0);
Devang Patelc26f5442011-04-28 02:22:40 +00001987 DIVariable DV(Entry.Variable);
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00001988 Asm->OutStreamer.AddComment("Loc expr size");
1989 MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol();
1990 MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol();
1991 Asm->EmitLabelDifference(end, begin, 2);
1992 Asm->OutStreamer.EmitLabel(begin);
Devang Patel80efd4e2011-07-08 16:49:43 +00001993 if (Entry.isInt()) {
Devang Patelc4329072011-06-01 22:03:25 +00001994 DIBasicType BTy(DV.getType());
1995 if (BTy.Verify() &&
1996 (BTy.getEncoding() == dwarf::DW_ATE_signed
1997 || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) {
1998 Asm->OutStreamer.AddComment("DW_OP_consts");
1999 Asm->EmitInt8(dwarf::DW_OP_consts);
Devang Patel80efd4e2011-07-08 16:49:43 +00002000 Asm->EmitSLEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00002001 } else {
2002 Asm->OutStreamer.AddComment("DW_OP_constu");
2003 Asm->EmitInt8(dwarf::DW_OP_constu);
Devang Patel80efd4e2011-07-08 16:49:43 +00002004 Asm->EmitULEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00002005 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002006 } else if (Entry.isLocation()) {
2007 if (!DV.hasComplexAddress())
2008 // Regular entry.
Devang Patelc26f5442011-04-28 02:22:40 +00002009 Asm->EmitDwarfRegOp(Entry.Loc);
Devang Patel80efd4e2011-07-08 16:49:43 +00002010 else {
2011 // Complex address entry.
2012 unsigned N = DV.getNumAddrElements();
2013 unsigned i = 0;
2014 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
2015 if (Entry.Loc.getOffset()) {
2016 i = 2;
2017 Asm->EmitDwarfRegOp(Entry.Loc);
2018 Asm->OutStreamer.AddComment("DW_OP_deref");
2019 Asm->EmitInt8(dwarf::DW_OP_deref);
2020 Asm->OutStreamer.AddComment("DW_OP_plus_uconst");
2021 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2022 Asm->EmitSLEB128(DV.getAddrElement(1));
2023 } else {
2024 // If first address element is OpPlus then emit
2025 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
2026 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
2027 Asm->EmitDwarfRegOp(Loc);
2028 i = 2;
2029 }
2030 } else {
2031 Asm->EmitDwarfRegOp(Entry.Loc);
2032 }
2033
2034 // Emit remaining complex address elements.
2035 for (; i < N; ++i) {
2036 uint64_t Element = DV.getAddrElement(i);
2037 if (Element == DIBuilder::OpPlus) {
2038 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2039 Asm->EmitULEB128(DV.getAddrElement(++i));
2040 } else if (Element == DIBuilder::OpDeref)
2041 Asm->EmitInt8(dwarf::DW_OP_deref);
2042 else llvm_unreachable("unknown Opcode found in complex address");
2043 }
Devang Patelc26f5442011-04-28 02:22:40 +00002044 }
Devang Patelc26f5442011-04-28 02:22:40 +00002045 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002046 // else ... ignore constant fp. There is not any good way to
2047 // to represent them here in dwarf.
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00002048 Asm->OutStreamer.EmitLabel(end);
Devang Patelc3f5f782010-05-25 23:40:22 +00002049 }
2050 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002051}
2052
2053/// EmitDebugARanges - Emit visible names into a debug aranges section.
2054///
2055void DwarfDebug::EmitDebugARanges() {
2056 // Start the dwarf aranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002057 Asm->OutStreamer.SwitchSection(
2058 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002059}
2060
Devang Patel2c4ceb12009-11-21 02:48:08 +00002061/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002062///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002063void DwarfDebug::emitDebugRanges() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002064 // Start the dwarf ranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002065 Asm->OutStreamer.SwitchSection(
Devang Patelf2548ca2010-04-16 23:33:45 +00002066 Asm->getObjFileLowering().getDwarfRangesSection());
Devang Pateleac9c072010-04-27 19:46:33 +00002067 unsigned char Size = Asm->getTargetData().getPointerSize();
2068 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbach1e20b962010-07-21 21:21:52 +00002069 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Pateleac9c072010-04-27 19:46:33 +00002070 I != E; ++I) {
2071 if (*I)
2072 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002073 else
Devang Pateleac9c072010-04-27 19:46:33 +00002074 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002075 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002076}
2077
Devang Patel2c4ceb12009-11-21 02:48:08 +00002078/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002079///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002080void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarf612ff62009-09-19 20:40:05 +00002081 if (const MCSection *LineInfo =
Chris Lattner18a4c162009-08-02 07:24:22 +00002082 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002083 // Start the dwarf macinfo section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002084 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00002085 }
2086}
2087
Devang Patel2c4ceb12009-11-21 02:48:08 +00002088/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling94d04b82009-05-20 23:21:38 +00002089/// Section Header:
2090/// 1. length of section
2091/// 2. Dwarf version number
2092/// 3. address size.
2093///
2094/// Entries (one "entry" for each function that was inlined):
2095///
2096/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2097/// otherwise offset into __debug_str for regular function name.
2098/// 2. offset into __debug_str section for regular function name.
2099/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2100/// instances for the function.
2101///
2102/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2103/// inlined instance; the die_offset points to the inlined_subroutine die in the
2104/// __debug_info section, and the low_pc is the starting address for the
2105/// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002106void DwarfDebug::emitDebugInlineInfo() {
Chris Lattnerd38fee82010-04-05 00:13:49 +00002107 if (!Asm->MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002108 return;
2109
Devang Patel163a9f72010-05-10 22:49:55 +00002110 if (!FirstCU)
Bill Wendling94d04b82009-05-20 23:21:38 +00002111 return;
2112
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002113 Asm->OutStreamer.SwitchSection(
2114 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattner0ad9c912010-01-22 22:09:00 +00002115
Chris Lattner233f52b2010-03-09 23:52:58 +00002116 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnera6437182010-04-04 19:58:12 +00002117 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
2118 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling94d04b82009-05-20 23:21:38 +00002119
Chris Lattnerc0215722010-04-04 19:25:43 +00002120 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002121
Chris Lattner233f52b2010-03-09 23:52:58 +00002122 Asm->OutStreamer.AddComment("Dwarf Version");
2123 Asm->EmitInt16(dwarf::DWARF_VERSION);
2124 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002125 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling94d04b82009-05-20 23:21:38 +00002126
Devang Patele9f8f5e2010-05-07 20:54:48 +00002127 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patel53bb5c92009-11-10 23:06:00 +00002128 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002129
Devang Patele9f8f5e2010-05-07 20:54:48 +00002130 const MDNode *Node = *I;
2131 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach7ab38df2009-11-22 19:20:36 +00002132 = InlineInfo.find(Node);
Devang Patel53bb5c92009-11-10 23:06:00 +00002133 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patele4b27562009-08-28 23:24:31 +00002134 DISubprogram SP(Node);
Devang Patel65dbc902009-11-25 17:36:49 +00002135 StringRef LName = SP.getLinkageName();
2136 StringRef Name = SP.getName();
Bill Wendling94d04b82009-05-20 23:21:38 +00002137
Chris Lattner233f52b2010-03-09 23:52:58 +00002138 Asm->OutStreamer.AddComment("MIPS linkage name");
Chris Lattner4cf202b2010-01-23 03:11:46 +00002139 if (LName.empty()) {
2140 Asm->OutStreamer.EmitBytes(Name, 0);
2141 Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator.
Jim Grosbach1e20b962010-07-21 21:21:52 +00002142 } else
Chris Lattner6189ed12010-04-04 23:25:33 +00002143 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
2144 DwarfStrSectionSym);
Devang Patel53bb5c92009-11-10 23:06:00 +00002145
Chris Lattner233f52b2010-03-09 23:52:58 +00002146 Asm->OutStreamer.AddComment("Function name");
Chris Lattner6189ed12010-04-04 23:25:33 +00002147 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner7e1a8f82010-04-04 19:09:29 +00002148 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling94d04b82009-05-20 23:21:38 +00002149
Devang Patel53bb5c92009-11-10 23:06:00 +00002150 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling94d04b82009-05-20 23:21:38 +00002151 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner3f53c832010-04-04 18:52:31 +00002152 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner6ed0f902010-03-09 00:31:02 +00002153 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00002154
Chris Lattner3f53c832010-04-04 18:52:31 +00002155 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002156 Asm->OutStreamer.EmitSymbolValue(LI->first,
2157 Asm->getTargetData().getPointerSize(),0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002158 }
2159 }
2160
Chris Lattnerc0215722010-04-04 19:25:43 +00002161 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002162}