blob: 038792b426a32c46747c9c652df07401e2efc0bb [file] [log] [blame]
Bill Wendling2f921f82009-05-15 09:23:25 +00001//===-- llvm/CodeGen/DwarfDebug.cpp - Dwarf Debug Framework ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf debug info into asm files.
11//
12//===----------------------------------------------------------------------===//
Chris Lattnerb14490d2010-03-09 00:39:24 +000013
Devang Patel80ae3492009-08-28 23:24:31 +000014#define DEBUG_TYPE "dwarfdebug"
Bill Wendling2f921f82009-05-15 09:23:25 +000015#include "DwarfDebug.h"
Chris Lattner3f3fb972010-04-05 05:24:55 +000016#include "DIE.h"
Eric Christopher4996c702011-11-07 09:24:32 +000017#include "DwarfAccelTable.h"
Devang Patel5eb43192011-04-12 17:40:32 +000018#include "DwarfCompileUnit.h"
Bill Wendling30346342010-04-05 22:59:21 +000019#include "llvm/Constants.h"
Bill Wendlinge38859d2012-06-28 00:05:13 +000020#include "llvm/DebugInfo.h"
Bill Wendlingf799efd2012-06-29 08:32:07 +000021#include "llvm/DIBuilder.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000022#include "llvm/Module.h"
Devang Patel2d9e5322011-01-20 00:02:16 +000023#include "llvm/Instructions.h"
David Greene829b3e82009-08-19 21:52:55 +000024#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000025#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000026#include "llvm/MC/MCAsmInfo.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000027#include "llvm/MC/MCSection.h"
Chris Lattner4b7dadb2009-08-19 05:49:37 +000028#include "llvm/MC/MCStreamer.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000029#include "llvm/MC/MCSymbol.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000030#include "llvm/Target/TargetData.h"
Anton Korobeynikov2f931282011-01-10 12:39:04 +000031#include "llvm/Target/TargetFrameLowering.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000032#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner21dc46e2010-04-04 18:06:11 +000033#include "llvm/Target/TargetMachine.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000034#include "llvm/Target/TargetRegisterInfo.h"
Devang Patel61880932010-04-19 19:14:02 +000035#include "llvm/Target/TargetOptions.h"
Devang Patela86114b2010-10-25 20:45:32 +000036#include "llvm/ADT/Statistic.h"
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +000037#include "llvm/ADT/STLExtras.h"
Chris Lattner06fa1762009-08-24 03:52:50 +000038#include "llvm/ADT/StringExtras.h"
Bill Wendlingf799efd2012-06-29 08:32:07 +000039#include "llvm/ADT/Triple.h"
Devang Patel6c74a872010-04-27 19:46:33 +000040#include "llvm/Support/CommandLine.h"
Daniel Dunbarcdf01b52009-10-13 06:47:08 +000041#include "llvm/Support/Debug.h"
42#include "llvm/Support/ErrorHandling.h"
Devang Patel1973df22010-01-26 21:39:14 +000043#include "llvm/Support/ValueHandle.h"
Chris Lattnerf5c834f2010-01-22 22:09:00 +000044#include "llvm/Support/FormattedStream.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000045#include "llvm/Support/Timer.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000046#include "llvm/Support/Path.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000047using namespace llvm;
48
Jim Grosbacha8683bb2010-07-21 21:21:52 +000049static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print",
Devang Patel30265c42010-07-07 20:12:52 +000050 cl::Hidden,
Devang Patel6c74a872010-04-27 19:46:33 +000051 cl::desc("Disable debug info printing"));
52
Dan Gohman7421ae42010-05-07 01:08:53 +000053static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +000054 cl::desc("Make an absence of debug location information explicit."),
Dan Gohman7421ae42010-05-07 01:08:53 +000055 cl::init(false));
56
Eric Christopher4996c702011-11-07 09:24:32 +000057static cl::opt<bool> DwarfAccelTables("dwarf-accel-tables", cl::Hidden,
58 cl::desc("Output prototype dwarf accelerator tables."),
59 cl::init(false));
60
Bill Wendlingfcc14142010-04-07 09:28:04 +000061namespace {
62 const char *DWARFGroupName = "DWARF Emission";
63 const char *DbgTimerName = "DWARF Debug Writer";
64} // end anonymous namespace
65
Bill Wendling2f921f82009-05-15 09:23:25 +000066//===----------------------------------------------------------------------===//
67
68/// Configuration values for initial hash set sizes (log2).
69///
Bill Wendling2f921f82009-05-15 09:23:25 +000070static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling2f921f82009-05-15 09:23:25 +000071
72namespace llvm {
73
Nick Lewycky019d2552011-07-29 03:49:23 +000074DIType DbgVariable::getType() const {
Devang Patelf20c4f72011-04-12 22:53:02 +000075 DIType Ty = Var.getType();
76 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
77 // addresses instead.
78 if (Var.isBlockByrefVariable()) {
79 /* Byref variables, in Blocks, are declared by the programmer as
80 "SomeType VarName;", but the compiler creates a
81 __Block_byref_x_VarName struct, and gives the variable VarName
82 either the struct, or a pointer to the struct, as its type. This
83 is necessary for various behind-the-scenes things the compiler
84 needs to do with by-reference variables in blocks.
85
86 However, as far as the original *programmer* is concerned, the
87 variable should still have type 'SomeType', as originally declared.
88
89 The following function dives into the __Block_byref_x_VarName
90 struct to find the original type of the variable. This will be
91 passed back to the code generating the type for the Debug
92 Information Entry for the variable 'VarName'. 'VarName' will then
93 have the original type 'SomeType' in its debug information.
94
95 The original type 'SomeType' will be the type of the field named
96 'VarName' inside the __Block_byref_x_VarName struct.
97
98 NOTE: In order for this to not completely fail on the debugger
99 side, the Debug Information Entry for the variable VarName needs to
100 have a DW_AT_location that tells the debugger how to unwind through
101 the pointers and __Block_byref_x_VarName struct to find the actual
102 value of the variable. The function addBlockByrefType does this. */
103 DIType subType = Ty;
104 unsigned tag = Ty.getTag();
105
106 if (tag == dwarf::DW_TAG_pointer_type) {
107 DIDerivedType DTy = DIDerivedType(Ty);
108 subType = DTy.getTypeDerivedFrom();
109 }
110
111 DICompositeType blockStruct = DICompositeType(subType);
112 DIArray Elements = blockStruct.getTypeArray();
113
114 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
115 DIDescriptor Element = Elements.getElement(i);
116 DIDerivedType DT = DIDerivedType(Element);
117 if (getName() == DT.getName())
118 return (DT.getTypeDerivedFrom());
Devang Patel6d9f9fe2010-08-09 21:01:39 +0000119 }
Devang Patel6d9f9fe2010-08-09 21:01:39 +0000120 }
Devang Patelf20c4f72011-04-12 22:53:02 +0000121 return Ty;
122}
Bill Wendling2f921f82009-05-15 09:23:25 +0000123
Chris Lattnerf5d06362010-04-05 04:09:20 +0000124} // end llvm namespace
Bill Wendling2f921f82009-05-15 09:23:25 +0000125
Chris Lattnerf0d6bd32010-04-05 05:11:15 +0000126DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
Devang Patel1a0df9a2010-05-10 22:49:55 +0000127 : Asm(A), MMI(Asm->MMI), FirstCU(0),
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000128 AbbreviationsSet(InitAbbreviationsSetSize),
Benjamin Kramer07480082012-06-09 10:34:15 +0000129 SourceIdMap(DIEValueAllocator), StringPool(DIEValueAllocator),
Devang Patel7e623022011-08-10 20:55:27 +0000130 PrevLabel(NULL) {
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000131 NextStringPoolNumber = 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000132
Rafael Espindolaa7160962011-05-06 14:56:22 +0000133 DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0;
Chris Lattnere58b5472010-04-04 23:10:38 +0000134 DwarfStrSectionSym = TextSectionSym = 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000135 DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = 0;
Devang Patel9fc11702010-05-25 23:40:22 +0000136 FunctionBeginSym = FunctionEndSym = 0;
Eric Christopherad9fe892012-04-02 17:58:52 +0000137
138 // Turn on accelerator tables for Darwin.
139 if (Triple(M->getTargetTriple()).isOSDarwin())
140 DwarfAccelTables = true;
141
Dan Gohman6e681a52010-06-18 15:56:31 +0000142 {
143 NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
144 beginModule(M);
Torok Edwinf8dba242010-04-07 10:44:46 +0000145 }
Bill Wendling2f921f82009-05-15 09:23:25 +0000146}
147DwarfDebug::~DwarfDebug() {
Bill Wendling2f921f82009-05-15 09:23:25 +0000148}
149
Eric Christophera7b61892011-11-07 09:18:38 +0000150/// EmitSectionSym - Switch to the specified MCSection and emit an assembler
151/// temporary label to it if SymbolStem is specified.
152static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section,
153 const char *SymbolStem = 0) {
154 Asm->OutStreamer.SwitchSection(Section);
155 if (!SymbolStem) return 0;
156
157 MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem);
158 Asm->OutStreamer.EmitLabel(TmpSym);
159 return TmpSym;
160}
161
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000162MCSymbol *DwarfDebug::getStringPool() {
163 return Asm->GetTempSymbol("section_str");
164}
165
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000166MCSymbol *DwarfDebug::getStringPoolEntry(StringRef Str) {
167 std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str];
168 if (Entry.first) return Entry.first;
169
170 Entry.second = NextStringPoolNumber++;
Chris Lattnera179b522010-04-04 19:25:43 +0000171 return Entry.first = Asm->GetTempSymbol("string", Entry.second);
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000172}
173
Devang Patel930143b2009-11-21 02:48:08 +0000174/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling2f921f82009-05-15 09:23:25 +0000175///
Devang Patel930143b2009-11-21 02:48:08 +0000176void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000177 // Profile the node so that we can make it unique.
178 FoldingSetNodeID ID;
179 Abbrev.Profile(ID);
180
181 // Check the set for priors.
182 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
183
184 // If it's newly added.
185 if (InSet == &Abbrev) {
186 // Add to abbreviation list.
187 Abbreviations.push_back(&Abbrev);
188
189 // Assign the vector position + 1 as its number.
190 Abbrev.setNumber(Abbreviations.size());
191 } else {
192 // Assign existing abbreviation number.
193 Abbrev.setNumber(InSet->getNumber());
194 }
195}
196
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000197/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
Devang Patel43ef34d2010-01-05 01:46:14 +0000198/// printer to not emit usual symbol prefix before the symbol name is used then
199/// return linkage name after skipping this special LLVM prefix.
200static StringRef getRealLinkageName(StringRef LinkageName) {
201 char One = '\1';
202 if (LinkageName.startswith(StringRef(&One, 1)))
203 return LinkageName.substr(1);
204 return LinkageName;
205}
206
Eric Christopherd9843b32011-11-10 19:25:34 +0000207static bool isObjCClass(StringRef Name) {
208 return Name.startswith("+") || Name.startswith("-");
209}
210
211static bool hasObjCCategory(StringRef Name) {
212 if (!isObjCClass(Name)) return false;
213
214 size_t pos = Name.find(')');
215 if (pos != std::string::npos) {
216 if (Name[pos+1] != ' ') return false;
217 return true;
218 }
219 return false;
220}
221
222static void getObjCClassCategory(StringRef In, StringRef &Class,
223 StringRef &Category) {
224 if (!hasObjCCategory(In)) {
225 Class = In.slice(In.find('[') + 1, In.find(' '));
226 Category = "";
227 return;
228 }
229
230 Class = In.slice(In.find('[') + 1, In.find('('));
231 Category = In.slice(In.find('[') + 1, In.find(' '));
232 return;
233}
234
235static StringRef getObjCMethodName(StringRef In) {
236 return In.slice(In.find(' ') + 1, In.find(']'));
237}
238
239// Add the various names to the Dwarf accelerator table names.
240static void addSubprogramNames(CompileUnit *TheCU, DISubprogram SP,
241 DIE* Die) {
242 if (!SP.isDefinition()) return;
243
244 TheCU->addAccelName(SP.getName(), Die);
245
246 // If the linkage name is different than the name, go ahead and output
247 // that as well into the name table.
248 if (SP.getLinkageName() != "" && SP.getName() != SP.getLinkageName())
249 TheCU->addAccelName(SP.getLinkageName(), Die);
250
251 // If this is an Objective-C selector name add it to the ObjC accelerator
252 // too.
253 if (isObjCClass(SP.getName())) {
254 StringRef Class, Category;
255 getObjCClassCategory(SP.getName(), Class, Category);
256 TheCU->addAccelObjC(Class, Die);
257 if (Category != "")
258 TheCU->addAccelObjC(Category, Die);
259 // Also add the base method name to the name table.
260 TheCU->addAccelName(getObjCMethodName(SP.getName()), Die);
261 }
262}
263
Jim Grosbach042483e2009-11-21 23:12:12 +0000264/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel930143b2009-11-21 02:48:08 +0000265/// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
266/// If there are global variables in this scope then create and insert
267/// DIEs for these variables.
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000268DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU,
269 const MDNode *SPNode) {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000270 DIE *SPDie = SPCU->getDIE(SPNode);
Devang Patela37a95e2010-07-07 22:20:57 +0000271
Chris Lattner3a383cb2010-04-05 00:13:49 +0000272 assert(SPDie && "Unable to find subprogram DIE!");
273 DISubprogram SP(SPNode);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000274
Devang Patel1d6bbd42011-04-22 23:10:17 +0000275 DISubprogram SPDecl = SP.getFunctionDeclaration();
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000276 if (!SPDecl.isSubprogram()) {
Devang Patel1d6bbd42011-04-22 23:10:17 +0000277 // There is not any need to generate specification DIE for a function
278 // defined at compile unit level. If a function is defined inside another
279 // function then gdb prefers the definition at top level and but does not
280 // expect specification DIE in parent function. So avoid creating
281 // specification DIE for a function defined inside a function.
282 if (SP.isDefinition() && !SP.getContext().isCompileUnit() &&
283 !SP.getContext().isFile() &&
284 !isSubprogramContext(SP.getContext())) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000285 SPCU->addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Devang Patel1d6bbd42011-04-22 23:10:17 +0000286
287 // Add arguments.
288 DICompositeType SPTy = SP.getType();
289 DIArray Args = SPTy.getTypeArray();
290 unsigned SPTag = SPTy.getTag();
291 if (SPTag == dwarf::DW_TAG_subroutine_type)
292 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
293 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
294 DIType ATy = DIType(DIType(Args.getElement(i)));
295 SPCU->addType(Arg, ATy);
296 if (ATy.isArtificial())
297 SPCU->addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
298 SPDie->addChild(Arg);
299 }
300 DIE *SPDeclDie = SPDie;
301 SPDie = new DIE(dwarf::DW_TAG_subprogram);
302 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
303 SPDeclDie);
304 SPCU->addDie(SPDie);
305 }
Chris Lattner3a383cb2010-04-05 00:13:49 +0000306 }
Devang Patela37a95e2010-07-07 22:20:57 +0000307 // Pick up abstract subprogram DIE.
308 if (DIE *AbsSPDIE = AbstractSPDies.lookup(SPNode)) {
309 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patelf20c4f72011-04-12 22:53:02 +0000310 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin,
311 dwarf::DW_FORM_ref4, AbsSPDIE);
Devang Patela37a95e2010-07-07 22:20:57 +0000312 SPCU->addDie(SPDie);
313 }
314
Devang Patelf20c4f72011-04-12 22:53:02 +0000315 SPCU->addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
316 Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber()));
317 SPCU->addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
318 Asm->GetTempSymbol("func_end", Asm->getFunctionNumber()));
Chris Lattner3a383cb2010-04-05 00:13:49 +0000319 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
320 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
Devang Patelf20c4f72011-04-12 22:53:02 +0000321 SPCU->addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Devang Patel6efc8e52010-02-06 01:02:37 +0000322
Eric Christopherd9843b32011-11-10 19:25:34 +0000323 // Add name to the name table, we do this here because we're guaranteed
324 // to have concrete versions of our DW_TAG_subprogram nodes.
325 addSubprogramNames(SPCU, SP, SPDie);
326
Chris Lattner3a383cb2010-04-05 00:13:49 +0000327 return SPDie;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000328}
329
Jim Grosbach042483e2009-11-21 23:12:12 +0000330/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel930143b2009-11-21 02:48:08 +0000331/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000332DIE *DwarfDebug::constructLexicalScopeDIE(CompileUnit *TheCU,
333 LexicalScope *Scope) {
Devang Patel6c74a872010-04-27 19:46:33 +0000334 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
335 if (Scope->isAbstractScope())
336 return ScopeDIE;
337
Devang Patel7e623022011-08-10 20:55:27 +0000338 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Devang Patel6c74a872010-04-27 19:46:33 +0000339 if (Ranges.empty())
340 return 0;
341
Devang Patel7e623022011-08-10 20:55:27 +0000342 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patel6c74a872010-04-27 19:46:33 +0000343 if (Ranges.size() > 1) {
344 // .debug_range section has not been laid out yet. Emit offset in
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000345 // .debug_range as a uint, size 4, for now. emitDIE will handle
Devang Patel6c74a872010-04-27 19:46:33 +0000346 // DW_AT_ranges appropriately.
Devang Patelf20c4f72011-04-12 22:53:02 +0000347 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel784077e2011-08-10 23:58:09 +0000348 DebugRangeSymbols.size()
349 * Asm->getTargetData().getPointerSize());
Devang Patel7e623022011-08-10 20:55:27 +0000350 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel6c74a872010-04-27 19:46:33 +0000351 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patel9fc11702010-05-25 23:40:22 +0000352 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
353 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
Devang Patel6c74a872010-04-27 19:46:33 +0000354 }
355 DebugRangeSymbols.push_back(NULL);
356 DebugRangeSymbols.push_back(NULL);
357 return ScopeDIE;
358 }
359
Devang Patel9fc11702010-05-25 23:40:22 +0000360 const MCSymbol *Start = getLabelBeforeInsn(RI->first);
361 const MCSymbol *End = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000362
Devang Patel9fc11702010-05-25 23:40:22 +0000363 if (End == 0) return 0;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000364
Chris Lattnere13c3722010-03-09 01:58:53 +0000365 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
366 assert(End->isDefined() && "Invalid end label for an inlined scope!");
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000367
Devang Patelf20c4f72011-04-12 22:53:02 +0000368 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start);
369 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, End);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000370
371 return ScopeDIE;
372}
373
Devang Patel930143b2009-11-21 02:48:08 +0000374/// constructInlinedScopeDIE - This scope represents inlined body of
375/// a function. Construct DIE to represent this concrete inlined copy
376/// of the function.
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000377DIE *DwarfDebug::constructInlinedScopeDIE(CompileUnit *TheCU,
378 LexicalScope *Scope) {
Devang Patel7e623022011-08-10 20:55:27 +0000379 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000380 assert(Ranges.empty() == false &&
381 "LexicalScope does not have instruction markers!");
Devang Patel6c74a872010-04-27 19:46:33 +0000382
Devang Patelf098ce22011-07-27 00:34:13 +0000383 if (!Scope->getScopeNode())
384 return NULL;
385 DIScope DS(Scope->getScopeNode());
386 DISubprogram InlinedSP = getDISubprogram(DS);
Devang Patelf098ce22011-07-27 00:34:13 +0000387 DIE *OriginDIE = TheCU->getDIE(InlinedSP);
388 if (!OriginDIE) {
389 DEBUG(dbgs() << "Unable to find original DIE for inlined subprogram.");
390 return NULL;
391 }
392
Devang Patel7e623022011-08-10 20:55:27 +0000393 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patel9fc11702010-05-25 23:40:22 +0000394 const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first);
395 const MCSymbol *EndLabel = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000396
Devang Patel4c6bd662010-07-08 22:39:20 +0000397 if (StartLabel == 0 || EndLabel == 0) {
Craig Topperee4dab52012-02-05 08:31:47 +0000398 llvm_unreachable("Unexpected Start and End labels for a inlined scope!");
Devang Patel6c74a872010-04-27 19:46:33 +0000399 }
Chris Lattnere13c3722010-03-09 01:58:53 +0000400 assert(StartLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000401 "Invalid starting label for an inlined scope!");
Chris Lattnere13c3722010-03-09 01:58:53 +0000402 assert(EndLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000403 "Invalid end label for an inlined scope!");
Devang Patel6c74a872010-04-27 19:46:33 +0000404
Devang Patel73bc1722011-05-05 17:54:26 +0000405 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
Devang Patelf20c4f72011-04-12 22:53:02 +0000406 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
407 dwarf::DW_FORM_ref4, OriginDIE);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000408
Devang Patelf098ce22011-07-27 00:34:13 +0000409 if (Ranges.size() > 1) {
410 // .debug_range section has not been laid out yet. Emit offset in
411 // .debug_range as a uint, size 4, for now. emitDIE will handle
412 // DW_AT_ranges appropriately.
413 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel784077e2011-08-10 23:58:09 +0000414 DebugRangeSymbols.size()
415 * Asm->getTargetData().getPointerSize());
Devang Patel7e623022011-08-10 20:55:27 +0000416 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patelf098ce22011-07-27 00:34:13 +0000417 RE = Ranges.end(); RI != RE; ++RI) {
418 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
419 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
420 }
421 DebugRangeSymbols.push_back(NULL);
422 DebugRangeSymbols.push_back(NULL);
423 } else {
Devang Patel784077e2011-08-10 23:58:09 +0000424 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
425 StartLabel);
426 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
427 EndLabel);
Devang Patelf098ce22011-07-27 00:34:13 +0000428 }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000429
430 InlinedSubprogramDIEs.insert(OriginDIE);
431
432 // Track the start label for this inlined function.
Devang Patelf098ce22011-07-27 00:34:13 +0000433 //.debug_inlined section specification does not clearly state how
434 // to emit inlined scope that is split into multiple instruction ranges.
435 // For now, use first instruction range and emit low_pc/high_pc pair and
436 // corresponding .debug_inlined section entry for this pair.
Devang Patel32cc43c2010-05-07 20:54:48 +0000437 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000438 I = InlineInfo.find(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000439
440 if (I == InlineInfo.end()) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000441 InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000442 InlinedSPNodes.push_back(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000443 } else
Chris Lattner085b6522010-03-09 00:31:02 +0000444 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000445
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000446 DILocation DL(Scope->getInlinedAt());
Eric Christopher0925c622012-03-26 21:38:38 +0000447 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0,
448 GetOrCreateSourceID(DL.getFilename(), DL.getDirectory()));
Devang Patelf20c4f72011-04-12 22:53:02 +0000449 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000450
Eric Christopher8dda5d02011-12-04 06:02:38 +0000451 // Add name to the name table, we do this here because we're guaranteed
452 // to have concrete versions of our DW_TAG_inlined_subprogram nodes.
453 addSubprogramNames(TheCU, InlinedSP, ScopeDIE);
454
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000455 return ScopeDIE;
456}
457
Devang Patel930143b2009-11-21 02:48:08 +0000458/// constructScopeDIE - Construct a DIE for this scope.
Devang Patel3acc70e2011-08-15 22:04:40 +0000459DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) {
Devang Patel3b548aa2010-03-08 20:52:55 +0000460 if (!Scope || !Scope->getScopeNode())
461 return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000462
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000463 SmallVector<DIE *, 8> Children;
Devang Patel6c622ef2011-03-01 22:58:55 +0000464
465 // Collect arguments for current function.
Devang Patel7e623022011-08-10 20:55:27 +0000466 if (LScopes.isCurrentFunctionScope(Scope))
Devang Patel6c622ef2011-03-01 22:58:55 +0000467 for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i)
468 if (DbgVariable *ArgDV = CurrentFnArguments[i])
Devang Patel3acc70e2011-08-15 22:04:40 +0000469 if (DIE *Arg =
470 TheCU->constructVariableDIE(ArgDV, Scope->isAbstractScope()))
Devang Patel6c622ef2011-03-01 22:58:55 +0000471 Children.push_back(Arg);
472
Eric Christopherf84354b2011-10-03 15:49:16 +0000473 // Collect lexical scope children first.
Devang Patel7e623022011-08-10 20:55:27 +0000474 const SmallVector<DbgVariable *, 8> &Variables = ScopeVariables.lookup(Scope);
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000475 for (unsigned i = 0, N = Variables.size(); i < N; ++i)
Devang Patel3acc70e2011-08-15 22:04:40 +0000476 if (DIE *Variable =
477 TheCU->constructVariableDIE(Variables[i], Scope->isAbstractScope()))
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000478 Children.push_back(Variable);
Devang Patel7e623022011-08-10 20:55:27 +0000479 const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren();
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000480 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
Devang Patel3acc70e2011-08-15 22:04:40 +0000481 if (DIE *Nested = constructScopeDIE(TheCU, Scopes[j]))
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000482 Children.push_back(Nested);
Devang Patel3b548aa2010-03-08 20:52:55 +0000483 DIScope DS(Scope->getScopeNode());
484 DIE *ScopeDIE = NULL;
485 if (Scope->getInlinedAt())
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000486 ScopeDIE = constructInlinedScopeDIE(TheCU, Scope);
Devang Patel3b548aa2010-03-08 20:52:55 +0000487 else if (DS.isSubprogram()) {
Devang Pateld10b2af2010-06-28 20:53:04 +0000488 ProcessedSPNodes.insert(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000489 if (Scope->isAbstractScope()) {
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000490 ScopeDIE = TheCU->getDIE(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000491 // Note down abstract DIE.
492 if (ScopeDIE)
493 AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
494 }
Devang Patel3b548aa2010-03-08 20:52:55 +0000495 else
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000496 ScopeDIE = updateSubprogramScopeDIE(TheCU, DS);
Devang Patel3b548aa2010-03-08 20:52:55 +0000497 }
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000498 else {
499 // There is no need to emit empty lexical block DIE.
500 if (Children.empty())
501 return NULL;
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000502 ScopeDIE = constructLexicalScopeDIE(TheCU, Scope);
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000503 }
504
Devang Patel23b2ae62010-03-29 22:59:58 +0000505 if (!ScopeDIE) return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000506
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000507 // Add children
508 for (SmallVector<DIE *, 8>::iterator I = Children.begin(),
509 E = Children.end(); I != E; ++I)
510 ScopeDIE->addChild(*I);
Devang Patel04d2f2d2009-11-24 01:14:22 +0000511
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000512 if (DS.isSubprogram())
Eric Christopherd9843b32011-11-10 19:25:34 +0000513 TheCU->addPubTypes(DISubprogram(DS));
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000514
Eric Christopherd9843b32011-11-10 19:25:34 +0000515 return ScopeDIE;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000516}
517
Bill Wendling2b128d72009-05-20 23:19:06 +0000518/// GetOrCreateSourceID - Look up the source id with the given directory and
519/// source file names. If none currently exists, create a new id and insert it
520/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
521/// maps as well.
Devang Patele01b75c2011-03-24 20:30:50 +0000522unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
523 StringRef DirName) {
Devang Patel871d0b12010-09-16 20:57:49 +0000524 // If FE did not provide a file name, then assume stdin.
525 if (FileName.empty())
Devang Patele01b75c2011-03-24 20:30:50 +0000526 return GetOrCreateSourceID("<stdin>", StringRef());
527
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000528 // TODO: this might not belong here. See if we can factor this better.
529 if (DirName == CompilationDir)
530 DirName = "";
531
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000532 unsigned SrcId = SourceIdMap.size()+1;
Devang Patel871d0b12010-09-16 20:57:49 +0000533
Benjamin Kramer71b19732012-03-11 14:56:26 +0000534 // We look up the file/dir pair by concatenating them with a zero byte.
535 SmallString<128> NamePair;
536 NamePair += DirName;
537 NamePair += '\0'; // Zero bytes are not allowed in paths.
538 NamePair += FileName;
539
540 StringMapEntry<unsigned> &Ent = SourceIdMap.GetOrCreateValue(NamePair, SrcId);
541 if (Ent.getValue() != SrcId)
542 return Ent.getValue();
Bill Wendling2b128d72009-05-20 23:19:06 +0000543
Rafael Espindola67c6ab82010-11-18 02:04:25 +0000544 // Print out a .file directive to specify files for .loc directives.
Benjamin Kramer71b19732012-03-11 14:56:26 +0000545 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, DirName, FileName);
Bill Wendling2b128d72009-05-20 23:19:06 +0000546
547 return SrcId;
548}
549
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000550/// constructCompileUnit - Create new CompileUnit for the given
Devang Patel1a0df9a2010-05-10 22:49:55 +0000551/// metadata node with tag DW_TAG_compile_unit.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000552CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) {
Devang Patel80ae3492009-08-28 23:24:31 +0000553 DICompileUnit DIUnit(N);
Devang Patel2d9caf92009-11-25 17:36:49 +0000554 StringRef FN = DIUnit.getFilename();
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000555 CompilationDir = DIUnit.getDirectory();
556 unsigned ID = GetOrCreateSourceID(FN, CompilationDir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000557
558 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Eric Christopher3a2656b2012-02-22 08:46:13 +0000559 CompileUnit *NewCU = new CompileUnit(ID, DIUnit.getLanguage(), Die, Asm, this);
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000560 NewCU->addString(Die, dwarf::DW_AT_producer, DIUnit.getProducer());
Devang Patelf20c4f72011-04-12 22:53:02 +0000561 NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2,
562 DIUnit.getLanguage());
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000563 NewCU->addString(Die, dwarf::DW_AT_name, FN);
Eric Christopher7ed2efc2012-03-27 18:35:54 +0000564 // 2.17.1 requires that we use DW_AT_low_pc for a single entry point
565 // into an entity.
566 NewCU->addUInt(Die, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, 0);
Devang Pateld22ed622010-03-22 23:11:36 +0000567 // DW_AT_stmt_list is a offset of line number information for this
Devang Patel4a213872010-08-24 00:06:12 +0000568 // compile unit in debug_line section.
Rafael Espindolad7bdaf52012-06-22 13:24:07 +0000569 if (Asm->MAI->doesDwarfUseRelocationsAcrossSections())
Rafael Espindolaa7558912011-05-04 17:44:06 +0000570 NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Devang Patelf20c4f72011-04-12 22:53:02 +0000571 Asm->GetTempSymbol("section_line"));
Devang Patelea636392010-08-31 23:50:19 +0000572 else
Devang Patelf20c4f72011-04-12 22:53:02 +0000573 NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0);
Bill Wendling2b128d72009-05-20 23:19:06 +0000574
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000575 if (!CompilationDir.empty())
576 NewCU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000577 if (DIUnit.isOptimized())
Devang Patelf20c4f72011-04-12 22:53:02 +0000578 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Bill Wendling2b128d72009-05-20 23:19:06 +0000579
Devang Patel2d9caf92009-11-25 17:36:49 +0000580 StringRef Flags = DIUnit.getFlags();
581 if (!Flags.empty())
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000582 NewCU->addString(Die, dwarf::DW_AT_APPLE_flags, Flags);
Devang Patelf20c4f72011-04-12 22:53:02 +0000583
Nick Lewycky479a8fe2011-10-17 23:27:36 +0000584 if (unsigned RVer = DIUnit.getRunTimeVersion())
Devang Patelf20c4f72011-04-12 22:53:02 +0000585 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendling2b128d72009-05-20 23:19:06 +0000586 dwarf::DW_FORM_data1, RVer);
587
Devang Patel1a0df9a2010-05-10 22:49:55 +0000588 if (!FirstCU)
589 FirstCU = NewCU;
590 CUMap.insert(std::make_pair(N, NewCU));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000591 return NewCU;
Devang Patel1a0df9a2010-05-10 22:49:55 +0000592}
593
Devang Patel1a0df9a2010-05-10 22:49:55 +0000594/// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel1f4f98d2011-08-15 23:36:40 +0000595void DwarfDebug::constructSubprogramDIE(CompileUnit *TheCU,
596 const MDNode *N) {
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000597 CompileUnit *&CURef = SPMap[N];
598 if (CURef)
599 return;
600 CURef = TheCU;
601
Devang Patel80ae3492009-08-28 23:24:31 +0000602 DISubprogram SP(N);
Bill Wendling2b128d72009-05-20 23:19:06 +0000603 if (!SP.isDefinition())
604 // This is a method declaration which will be handled while constructing
605 // class type.
Devang Patel0751a282009-06-26 01:49:18 +0000606 return;
Bill Wendling2b128d72009-05-20 23:19:06 +0000607
Devang Patel89543712011-08-15 17:24:54 +0000608 DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP);
Stuart Hastings4bd3dd92010-04-06 21:38:29 +0000609
610 // Add to map.
Devang Patel1a0df9a2010-05-10 22:49:55 +0000611 TheCU->insertDIE(N, SubprogramDie);
Bill Wendling2b128d72009-05-20 23:19:06 +0000612
613 // Add to context owner.
Devang Patelf20c4f72011-04-12 22:53:02 +0000614 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel512001a2009-12-08 23:21:45 +0000615
Devang Patel0751a282009-06-26 01:49:18 +0000616 return;
Bill Wendling2b128d72009-05-20 23:19:06 +0000617}
618
Devang Patel07bb9ee2011-08-15 23:47:24 +0000619/// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
620/// as llvm.dbg.enum and llvm.dbg.ty
621void DwarfDebug::collectInfoFromNamedMDNodes(Module *M) {
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000622 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.sp"))
623 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
624 const MDNode *N = NMD->getOperand(i);
625 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
626 constructSubprogramDIE(CU, N);
627 }
628
629 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv"))
630 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
631 const MDNode *N = NMD->getOperand(i);
632 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000633 CU->createGlobalVariableDIE(N);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000634 }
635
Devang Patel07bb9ee2011-08-15 23:47:24 +0000636 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
637 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
638 DIType Ty(NMD->getOperand(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000639 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
640 CU->getOrCreateTypeDIE(Ty);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000641 }
642
643 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
644 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
645 DIType Ty(NMD->getOperand(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000646 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
647 CU->getOrCreateTypeDIE(Ty);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000648 }
649}
650
651/// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
652/// FIXME - Remove this when dragon-egg and llvm-gcc switch to DIBuilder.
653bool DwarfDebug::collectLegacyDebugInfo(Module *M) {
654 DebugInfoFinder DbgFinder;
655 DbgFinder.processModule(*M);
656
657 bool HasDebugInfo = false;
658 // Scan all the compile-units to see if there are any marked as the main
659 // unit. If not, we do not generate debug info.
660 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
661 E = DbgFinder.compile_unit_end(); I != E; ++I) {
662 if (DICompileUnit(*I).isMain()) {
663 HasDebugInfo = true;
664 break;
665 }
666 }
667 if (!HasDebugInfo) return false;
668
669 // Create all the compile unit DIEs.
670 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
671 E = DbgFinder.compile_unit_end(); I != E; ++I)
672 constructCompileUnit(*I);
673
674 // Create DIEs for each global variable.
675 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
676 E = DbgFinder.global_variable_end(); I != E; ++I) {
677 const MDNode *N = *I;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000678 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000679 CU->createGlobalVariableDIE(N);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000680 }
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000681
Devang Patel07bb9ee2011-08-15 23:47:24 +0000682 // Create DIEs for each subprogram.
683 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
684 E = DbgFinder.subprogram_end(); I != E; ++I) {
685 const MDNode *N = *I;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000686 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
687 constructSubprogramDIE(CU, N);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000688 }
689
690 return HasDebugInfo;
691}
692
Devang Patel930143b2009-11-21 02:48:08 +0000693/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000694/// content. Create global DIEs and emit initial debug info sections.
Nick Lewycky019d2552011-07-29 03:49:23 +0000695/// This is invoked by the target AsmPrinter.
Chris Lattner11980022010-04-04 07:48:20 +0000696void DwarfDebug::beginModule(Module *M) {
Devang Patel6c74a872010-04-27 19:46:33 +0000697 if (DisableDebugInfoPrinting)
698 return;
699
Nick Lewycky019d2552011-07-29 03:49:23 +0000700 // If module has named metadata anchors then use them, otherwise scan the
701 // module using debug info finder to collect debug info.
Devang Patele02e5852011-05-03 16:45:22 +0000702 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
703 if (CU_Nodes) {
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000704 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
705 DICompileUnit CUNode(CU_Nodes->getOperand(i));
706 CompileUnit *CU = constructCompileUnit(CUNode);
707 DIArray GVs = CUNode.getGlobalVariables();
708 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000709 CU->createGlobalVariableDIE(GVs.getElement(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000710 DIArray SPs = CUNode.getSubprograms();
711 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
712 constructSubprogramDIE(CU, SPs.getElement(i));
713 DIArray EnumTypes = CUNode.getEnumTypes();
714 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
715 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
716 DIArray RetainedTypes = CUNode.getRetainedTypes();
717 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
718 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
719 }
Devang Patel07bb9ee2011-08-15 23:47:24 +0000720 } else if (!collectLegacyDebugInfo(M))
721 return;
Devang Patele02e5852011-05-03 16:45:22 +0000722
Devang Patel07bb9ee2011-08-15 23:47:24 +0000723 collectInfoFromNamedMDNodes(M);
Devang Patele02e5852011-05-03 16:45:22 +0000724
Chris Lattner7cfa70e2010-04-05 02:19:28 +0000725 // Tell MMI that we have debug info.
726 MMI->setDebugInfoAvailability(true);
Devang Patele02e5852011-05-03 16:45:22 +0000727
Chris Lattnerd442aa32010-04-04 23:17:54 +0000728 // Emit initial sections.
Chris Lattner7cfa70e2010-04-05 02:19:28 +0000729 EmitSectionLabels();
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000730
Bill Wendling2b128d72009-05-20 23:19:06 +0000731 // Prime section data.
Chris Lattner5e693ed2009-07-28 03:13:23 +0000732 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendling2b128d72009-05-20 23:19:06 +0000733}
734
Devang Patel930143b2009-11-21 02:48:08 +0000735/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling2b128d72009-05-20 23:19:06 +0000736///
Devang Patel930143b2009-11-21 02:48:08 +0000737void DwarfDebug::endModule() {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000738 if (!FirstCU) return;
Devang Patelf3b2db62010-06-28 18:25:03 +0000739 const Module *M = MMI->getModule();
Devang Patel7e623022011-08-10 20:55:27 +0000740 DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap;
Devang Patelf3b2db62010-06-28 18:25:03 +0000741
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000742 // Collect info for variables that were optimized out.
743 if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) {
744 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
745 DICompileUnit TheCU(CU_Nodes->getOperand(i));
746 DIArray Subprograms = TheCU.getSubprograms();
747 for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) {
748 DISubprogram SP(Subprograms.getElement(i));
749 if (ProcessedSPNodes.count(SP) != 0) continue;
750 if (!SP.Verify()) continue;
751 if (!SP.isDefinition()) continue;
Devang Patel59e27c52011-08-19 23:28:12 +0000752 DIArray Variables = SP.getVariables();
753 if (Variables.getNumElements() == 0) continue;
754
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000755 LexicalScope *Scope =
756 new LexicalScope(NULL, DIDescriptor(SP), NULL, false);
757 DeadFnScopeMap[SP] = Scope;
758
759 // Construct subprogram DIE and add variables DIEs.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000760 CompileUnit *SPCU = CUMap.lookup(TheCU);
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000761 assert(SPCU && "Unable to find Compile Unit!");
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000762 constructSubprogramDIE(SPCU, SP);
763 DIE *ScopeDIE = SPCU->getDIE(SP);
Devang Patel59e27c52011-08-19 23:28:12 +0000764 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
765 DIVariable DV(Variables.getElement(vi));
766 if (!DV.Verify()) continue;
767 DbgVariable *NewVar = new DbgVariable(DV, NULL);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000768 if (DIE *VariableDIE =
Devang Patel59e27c52011-08-19 23:28:12 +0000769 SPCU->constructVariableDIE(NewVar, Scope->isAbstractScope()))
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000770 ScopeDIE->addChild(VariableDIE);
771 }
Devang Patelf3b2db62010-06-28 18:25:03 +0000772 }
773 }
774 }
Bill Wendling2b128d72009-05-20 23:19:06 +0000775
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000776 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
777 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
778 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
779 DIE *ISP = *AI;
Devang Patelf20c4f72011-04-12 22:53:02 +0000780 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000781 }
Rafael Espindolae7cc8bf2011-11-12 01:57:54 +0000782 for (DenseMap<const MDNode *, DIE *>::iterator AI = AbstractSPDies.begin(),
783 AE = AbstractSPDies.end(); AI != AE; ++AI) {
784 DIE *ISP = AI->second;
785 if (InlinedSubprogramDIEs.count(ISP))
786 continue;
787 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
788 }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000789
Devang Patel89543712011-08-15 17:24:54 +0000790 // Emit DW_AT_containing_type attribute to connect types with their
791 // vtable holding type.
792 for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(),
793 CUE = CUMap.end(); CUI != CUE; ++CUI) {
794 CompileUnit *TheCU = CUI->second;
795 TheCU->constructContainingTypeDIEs();
Devang Pateleb57c592009-12-03 19:11:07 +0000796 }
797
Bill Wendling2b128d72009-05-20 23:19:06 +0000798 // Standard sections final addresses.
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000799 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnera179b522010-04-04 19:25:43 +0000800 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000801 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnera179b522010-04-04 19:25:43 +0000802 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendling2b128d72009-05-20 23:19:06 +0000803
804 // End text sections.
805 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000806 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnera179b522010-04-04 19:25:43 +0000807 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendling2b128d72009-05-20 23:19:06 +0000808 }
809
Bill Wendling2b128d72009-05-20 23:19:06 +0000810 // Compute DIE offsets and sizes.
Devang Patel930143b2009-11-21 02:48:08 +0000811 computeSizeAndOffsets();
Bill Wendling2b128d72009-05-20 23:19:06 +0000812
813 // Emit all the DIEs into a debug info section
Devang Patel930143b2009-11-21 02:48:08 +0000814 emitDebugInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000815
816 // Corresponding abbreviations into a abbrev section.
Devang Patel930143b2009-11-21 02:48:08 +0000817 emitAbbreviations();
Bill Wendling2b128d72009-05-20 23:19:06 +0000818
Eric Christopher4996c702011-11-07 09:24:32 +0000819 // Emit info into a dwarf accelerator table sections.
820 if (DwarfAccelTables) {
821 emitAccelNames();
822 emitAccelObjC();
823 emitAccelNamespaces();
824 emitAccelTypes();
825 }
826
Devang Patel04d2f2d2009-11-24 01:14:22 +0000827 // Emit info into a debug pubtypes section.
828 emitDebugPubTypes();
829
Bill Wendling2b128d72009-05-20 23:19:06 +0000830 // Emit info into a debug loc section.
Devang Patel930143b2009-11-21 02:48:08 +0000831 emitDebugLoc();
Bill Wendling2b128d72009-05-20 23:19:06 +0000832
833 // Emit info into a debug aranges section.
834 EmitDebugARanges();
835
836 // Emit info into a debug ranges section.
Devang Patel930143b2009-11-21 02:48:08 +0000837 emitDebugRanges();
Bill Wendling2b128d72009-05-20 23:19:06 +0000838
839 // Emit info into a debug macinfo section.
Devang Patel930143b2009-11-21 02:48:08 +0000840 emitDebugMacInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000841
842 // Emit inline info.
Devang Patel930143b2009-11-21 02:48:08 +0000843 emitDebugInlineInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000844
Eric Christopher7524fe42012-03-02 00:30:24 +0000845 // Emit info into a debug str section.
846 emitDebugStr();
847
Devang Pateld0701282010-08-02 17:32:15 +0000848 // clean up.
849 DeleteContainerSeconds(DeadFnScopeMap);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000850 SPMap.clear();
Devang Patel1a0df9a2010-05-10 22:49:55 +0000851 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
852 E = CUMap.end(); I != E; ++I)
853 delete I->second;
854 FirstCU = NULL; // Reset for the next Module, if any.
Bill Wendling2b128d72009-05-20 23:19:06 +0000855}
856
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000857/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Devang Patelbb23a4a2011-08-10 21:50:54 +0000858DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV,
Chris Lattner915c5f92010-04-02 19:42:39 +0000859 DebugLoc ScopeLoc) {
Devang Patelbb23a4a2011-08-10 21:50:54 +0000860 LLVMContext &Ctx = DV->getContext();
861 // More then one inlined variable corresponds to one abstract variable.
862 DIVariable Var = cleanseInlinedVariable(DV, Ctx);
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000863 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000864 if (AbsDbgVariable)
865 return AbsDbgVariable;
866
Devang Patel7e623022011-08-10 20:55:27 +0000867 LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx));
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000868 if (!Scope)
869 return NULL;
870
Devang Patel99819b52011-08-15 19:01:20 +0000871 AbsDbgVariable = new DbgVariable(Var, NULL);
Devang Patel7e623022011-08-10 20:55:27 +0000872 addScopeVariable(Scope, AbsDbgVariable);
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000873 AbstractVariables[Var] = AbsDbgVariable;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000874 return AbsDbgVariable;
875}
876
Nick Lewycky019d2552011-07-29 03:49:23 +0000877/// addCurrentFnArgument - If Var is a current function argument then add
878/// it to CurrentFnArguments list.
Devang Patel6c622ef2011-03-01 22:58:55 +0000879bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
Devang Patel7e623022011-08-10 20:55:27 +0000880 DbgVariable *Var, LexicalScope *Scope) {
881 if (!LScopes.isCurrentFunctionScope(Scope))
Devang Patel6c622ef2011-03-01 22:58:55 +0000882 return false;
883 DIVariable DV = Var->getVariable();
884 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
885 return false;
886 unsigned ArgNo = DV.getArgNumber();
887 if (ArgNo == 0)
888 return false;
889
Devang Patel4ab660b2011-03-03 20:02:02 +0000890 size_t Size = CurrentFnArguments.size();
891 if (Size == 0)
Devang Patel6c622ef2011-03-01 22:58:55 +0000892 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patel63b3e762011-03-03 21:49:41 +0000893 // llvm::Function argument size is not good indicator of how many
Devang Patel34a7ab42011-03-03 20:08:10 +0000894 // arguments does the function have at source level.
895 if (ArgNo > Size)
Devang Patel4ab660b2011-03-03 20:02:02 +0000896 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel6c622ef2011-03-01 22:58:55 +0000897 CurrentFnArguments[ArgNo - 1] = Var;
898 return true;
899}
900
Devang Patel490c8ab2010-05-20 19:57:06 +0000901/// collectVariableInfoFromMMITable - Collect variable information from
902/// side table maintained by MMI.
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000903void
Nick Lewycky019d2552011-07-29 03:49:23 +0000904DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF,
Devang Patel490c8ab2010-05-20 19:57:06 +0000905 SmallPtrSet<const MDNode *, 16> &Processed) {
Devang Patel475d32a2009-10-06 01:26:37 +0000906 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
907 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
908 VE = VMap.end(); VI != VE; ++VI) {
Devang Patel32cc43c2010-05-07 20:54:48 +0000909 const MDNode *Var = VI->first;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000910 if (!Var) continue;
Devang Patele0a94bf2010-05-14 21:01:35 +0000911 Processed.insert(Var);
Chris Lattner915c5f92010-04-02 19:42:39 +0000912 DIVariable DV(Var);
913 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000914
Devang Patel7e623022011-08-10 20:55:27 +0000915 LexicalScope *Scope = LScopes.findLexicalScope(VP.second);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000916
Devang Patelcdb7d442009-11-10 23:20:04 +0000917 // If variable scope is not found then skip this variable.
Chris Lattner915c5f92010-04-02 19:42:39 +0000918 if (Scope == 0)
Devang Patelcdb7d442009-11-10 23:20:04 +0000919 continue;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000920
Devang Patele1c53f22010-05-20 16:36:41 +0000921 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
Devang Patel99819b52011-08-15 19:01:20 +0000922 DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable);
Devang Patel3e4a9652011-08-15 21:24:36 +0000923 RegVar->setFrameIndex(VP.first);
Devang Patel6c622ef2011-03-01 22:58:55 +0000924 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patel7e623022011-08-10 20:55:27 +0000925 addScopeVariable(Scope, RegVar);
Devang Patel99819b52011-08-15 19:01:20 +0000926 if (AbsDbgVariable)
Devang Patel3e4a9652011-08-15 21:24:36 +0000927 AbsDbgVariable->setFrameIndex(VP.first);
Devang Patel475d32a2009-10-06 01:26:37 +0000928 }
Devang Patel490c8ab2010-05-20 19:57:06 +0000929}
Devang Patela3e9c9c2010-03-15 18:33:46 +0000930
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000931/// isDbgValueInDefinedReg - Return true if debug value, encoded by
Devang Patel9fc11702010-05-25 23:40:22 +0000932/// DBG_VALUE instruction, is in a defined reg.
933static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000934 assert(MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +0000935 return MI->getNumOperands() == 3 &&
936 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
937 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patel9fc11702010-05-25 23:40:22 +0000938}
939
Nick Lewycky019d2552011-07-29 03:49:23 +0000940/// getDebugLocEntry - Get .debug_loc entry for the instruction range starting
Devang Patel2442a892011-07-08 17:09:57 +0000941/// at MI.
942static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm,
943 const MCSymbol *FLabel,
944 const MCSymbol *SLabel,
945 const MachineInstr *MI) {
946 const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata();
947
948 if (MI->getNumOperands() != 3) {
949 MachineLocation MLoc = Asm->getDebugValueLocation(MI);
950 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
951 }
952 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) {
953 MachineLocation MLoc;
954 MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
955 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
956 }
957 if (MI->getOperand(0).isImm())
958 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm());
959 if (MI->getOperand(0).isFPImm())
960 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm());
961 if (MI->getOperand(0).isCImm())
962 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm());
963
Craig Topperee4dab52012-02-05 08:31:47 +0000964 llvm_unreachable("Unexpected 3 operand DBG_VALUE instruction!");
Devang Patel2442a892011-07-08 17:09:57 +0000965}
966
Devang Patel7e623022011-08-10 20:55:27 +0000967/// collectVariableInfo - Find variables for each lexical scope.
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000968void
Devang Patel5c0f85c2010-06-25 22:07:34 +0000969DwarfDebug::collectVariableInfo(const MachineFunction *MF,
970 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000971
Devang Patel490c8ab2010-05-20 19:57:06 +0000972 /// collection info from MMI table.
973 collectVariableInfoFromMMITable(MF, Processed);
974
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000975 for (SmallVectorImpl<const MDNode*>::const_iterator
976 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
977 ++UVI) {
978 const MDNode *Var = *UVI;
979 if (Processed.count(Var))
Devang Patel490c8ab2010-05-20 19:57:06 +0000980 continue;
981
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000982 // History contains relevant DBG_VALUE instructions for Var and instructions
983 // clobbering it.
984 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
985 if (History.empty())
986 continue;
987 const MachineInstr *MInsn = History.front();
Devang Patel9fc11702010-05-25 23:40:22 +0000988
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000989 DIVariable DV(Var);
Devang Patel7e623022011-08-10 20:55:27 +0000990 LexicalScope *Scope = NULL;
Devang Patel7a9dedf2010-05-27 20:25:04 +0000991 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
992 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patel7e623022011-08-10 20:55:27 +0000993 Scope = LScopes.getCurrentFunctionScope();
Devang Patel8fb9fd62011-07-20 22:18:50 +0000994 else {
995 if (DV.getVersion() <= LLVMDebugVersion9)
Devang Patel7e623022011-08-10 20:55:27 +0000996 Scope = LScopes.findLexicalScope(MInsn->getDebugLoc());
Devang Patel8fb9fd62011-07-20 22:18:50 +0000997 else {
998 if (MDNode *IA = DV.getInlinedAt())
Devang Patel7e623022011-08-10 20:55:27 +0000999 Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA));
Devang Patel8fb9fd62011-07-20 22:18:50 +00001000 else
Devang Patel7e623022011-08-10 20:55:27 +00001001 Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1)));
Devang Patel8fb9fd62011-07-20 22:18:50 +00001002 }
1003 }
Devang Patel490c8ab2010-05-20 19:57:06 +00001004 // If variable scope is not found then skip this variable.
Devang Patelfbd6c452010-05-21 00:10:20 +00001005 if (!Scope)
Devang Patel490c8ab2010-05-20 19:57:06 +00001006 continue;
1007
1008 Processed.insert(DV);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001009 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patel99819b52011-08-15 19:01:20 +00001010 DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc());
1011 DbgVariable *RegVar = new DbgVariable(DV, AbsVar);
Devang Patel6c622ef2011-03-01 22:58:55 +00001012 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patel7e623022011-08-10 20:55:27 +00001013 addScopeVariable(Scope, RegVar);
Devang Patel99819b52011-08-15 19:01:20 +00001014 if (AbsVar)
Devang Patel3e4a9652011-08-15 21:24:36 +00001015 AbsVar->setMInsn(MInsn);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001016
1017 // Simple ranges that are fully coalesced.
1018 if (History.size() <= 1 || (History.size() == 2 &&
1019 MInsn->isIdenticalTo(History.back()))) {
Devang Patel3e4a9652011-08-15 21:24:36 +00001020 RegVar->setMInsn(MInsn);
Devang Patel9fc11702010-05-25 23:40:22 +00001021 continue;
1022 }
1023
1024 // handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001025 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001026
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001027 for (SmallVectorImpl<const MachineInstr*>::const_iterator
1028 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
1029 const MachineInstr *Begin = *HI;
1030 assert(Begin->isDebugValue() && "Invalid History entry");
Jakob Stoklund Olesen9c057ee2011-03-22 00:21:41 +00001031
Devang Patele7181b52011-06-01 23:00:17 +00001032 // Check if DBG_VALUE is truncating a range.
1033 if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg()
1034 && !Begin->getOperand(0).getReg())
1035 continue;
1036
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001037 // Compute the range for a register location.
1038 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
1039 const MCSymbol *SLabel = 0;
1040
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001041 if (HI + 1 == HE)
1042 // If Begin is the last instruction in History then its value is valid
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001043 // until the end of the function.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001044 SLabel = FunctionEndSym;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001045 else {
1046 const MachineInstr *End = HI[1];
Devang Patel53b050a2011-07-07 21:44:42 +00001047 DEBUG(dbgs() << "DotDebugLoc Pair:\n"
1048 << "\t" << *Begin << "\t" << *End << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001049 if (End->isDebugValue())
1050 SLabel = getLabelBeforeInsn(End);
1051 else {
1052 // End is a normal instruction clobbering the range.
1053 SLabel = getLabelAfterInsn(End);
1054 assert(SLabel && "Forgot label after clobber instruction");
1055 ++HI;
1056 }
1057 }
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001058
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001059 // The value is valid until the next DBG_VALUE or clobber.
Eric Christopher365d0832011-12-16 23:42:31 +00001060 DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel,
1061 Begin));
Devang Patel9fc11702010-05-25 23:40:22 +00001062 }
1063 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patela3e9c9c2010-03-15 18:33:46 +00001064 }
Devang Patele0a94bf2010-05-14 21:01:35 +00001065
1066 // Collect info for variables that were optimized out.
Devang Patel59e27c52011-08-19 23:28:12 +00001067 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
1068 DIArray Variables = DISubprogram(FnScope->getScopeNode()).getVariables();
1069 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1070 DIVariable DV(Variables.getElement(i));
1071 if (!DV || !DV.Verify() || !Processed.insert(DV))
1072 continue;
1073 if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext()))
1074 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patele0a94bf2010-05-14 21:01:35 +00001075 }
Devang Patel9fc11702010-05-25 23:40:22 +00001076}
Devang Patele0a94bf2010-05-14 21:01:35 +00001077
Devang Patel9fc11702010-05-25 23:40:22 +00001078/// getLabelBeforeInsn - Return Label preceding the instruction.
1079const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001080 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1081 assert(Label && "Didn't insert label before instruction");
1082 return Label;
Devang Patel9fc11702010-05-25 23:40:22 +00001083}
1084
1085/// getLabelAfterInsn - Return Label immediately following the instruction.
1086const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001087 return LabelsAfterInsn.lookup(MI);
Devang Patel475d32a2009-10-06 01:26:37 +00001088}
1089
Devang Patelb5694e72010-10-26 17:49:02 +00001090/// beginInstruction - Process beginning of an instruction.
1091void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001092 // Check if source location changes, but ignore DBG_VALUE locations.
1093 if (!MI->isDebugValue()) {
1094 DebugLoc DL = MI->getDebugLoc();
1095 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
Eric Christopheraec8a822012-04-05 20:39:05 +00001096 unsigned Flags = 0;
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001097 PrevInstLoc = DL;
Devang Patel34a66202011-05-11 19:22:19 +00001098 if (DL == PrologEndLoc) {
1099 Flags |= DWARF2_FLAG_PROLOGUE_END;
1100 PrologEndLoc = DebugLoc();
1101 }
Eric Christopheraec8a822012-04-05 20:39:05 +00001102 if (PrologEndLoc.isUnknown())
1103 Flags |= DWARF2_FLAG_IS_STMT;
1104
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001105 if (!DL.isUnknown()) {
1106 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Devang Patel34a66202011-05-11 19:22:19 +00001107 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001108 } else
Devang Patel34a66202011-05-11 19:22:19 +00001109 recordSourceLine(0, 0, 0, 0);
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001110 }
Devang Patel9fc11702010-05-25 23:40:22 +00001111 }
Devang Patel23b2ae62010-03-29 22:59:58 +00001112
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001113 // Insert labels where requested.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001114 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1115 LabelsBeforeInsn.find(MI);
1116
1117 // No label needed.
1118 if (I == LabelsBeforeInsn.end())
1119 return;
1120
1121 // Label already assigned.
1122 if (I->second)
Devang Patel002d54d2010-05-26 19:37:24 +00001123 return;
Devang Patelbd477be2010-03-29 17:20:31 +00001124
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001125 if (!PrevLabel) {
Devang Patelacc32a52010-05-26 21:23:46 +00001126 PrevLabel = MMI->getContext().CreateTempSymbol();
1127 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel002d54d2010-05-26 19:37:24 +00001128 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001129 I->second = PrevLabel;
Devang Patel8db360d2009-10-06 01:50:42 +00001130}
1131
Devang Patelb5694e72010-10-26 17:49:02 +00001132/// endInstruction - Process end of an instruction.
1133void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001134 // Don't create a new label after DBG_VALUE instructions.
1135 // They don't generate code.
1136 if (!MI->isDebugValue())
1137 PrevLabel = 0;
1138
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001139 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1140 LabelsAfterInsn.find(MI);
1141
1142 // No label needed.
1143 if (I == LabelsAfterInsn.end())
1144 return;
1145
1146 // Label already assigned.
1147 if (I->second)
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001148 return;
1149
1150 // We need a label after this instruction.
1151 if (!PrevLabel) {
1152 PrevLabel = MMI->getContext().CreateTempSymbol();
1153 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel3ebd8932010-04-08 16:50:29 +00001154 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001155 I->second = PrevLabel;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001156}
1157
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001158/// identifyScopeMarkers() -
Devang Patel784077e2011-08-10 23:58:09 +00001159/// Each LexicalScope has first instruction and last instruction to mark
1160/// beginning and end of a scope respectively. Create an inverse map that list
1161/// scopes starts (and ends) with an instruction. One instruction may start (or
1162/// end) multiple scopes. Ignore scopes that are not reachable.
Devang Patel359b0132010-04-08 18:43:56 +00001163void DwarfDebug::identifyScopeMarkers() {
Devang Patel7e623022011-08-10 20:55:27 +00001164 SmallVector<LexicalScope *, 4> WorkList;
1165 WorkList.push_back(LScopes.getCurrentFunctionScope());
Devang Patel7771b7c2010-01-20 02:05:23 +00001166 while (!WorkList.empty()) {
Devang Patel7e623022011-08-10 20:55:27 +00001167 LexicalScope *S = WorkList.pop_back_val();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001168
Devang Patel7e623022011-08-10 20:55:27 +00001169 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001170 if (!Children.empty())
Devang Patel7e623022011-08-10 20:55:27 +00001171 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel7771b7c2010-01-20 02:05:23 +00001172 SE = Children.end(); SI != SE; ++SI)
1173 WorkList.push_back(*SI);
1174
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001175 if (S->isAbstractScope())
1176 continue;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001177
Devang Patel7e623022011-08-10 20:55:27 +00001178 const SmallVector<InsnRange, 4> &Ranges = S->getRanges();
Devang Patel6c74a872010-04-27 19:46:33 +00001179 if (Ranges.empty())
1180 continue;
Devang Patel7e623022011-08-10 20:55:27 +00001181 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel6c74a872010-04-27 19:46:33 +00001182 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patel7e623022011-08-10 20:55:27 +00001183 assert(RI->first && "InsnRange does not have first instruction!");
1184 assert(RI->second && "InsnRange does not have second instruction!");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001185 requestLabelBeforeInsn(RI->first);
1186 requestLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +00001187 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001188 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001189}
1190
Devang Patel589845d2011-05-09 22:14:49 +00001191/// getScopeNode - Get MDNode for DebugLoc's scope.
1192static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) {
1193 if (MDNode *InlinedAt = DL.getInlinedAt(Ctx))
1194 return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx);
1195 return DL.getScope(Ctx);
1196}
1197
Devang Patel34a66202011-05-11 19:22:19 +00001198/// getFnDebugLoc - Walk up the scope chain of given debug loc and find
Eric Christopher34164192012-04-03 00:43:49 +00001199/// line number info for the function.
Devang Patel34a66202011-05-11 19:22:19 +00001200static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) {
1201 const MDNode *Scope = getScopeNode(DL, Ctx);
1202 DISubprogram SP = getDISubprogram(Scope);
Eric Christopher34164192012-04-03 00:43:49 +00001203 if (SP.Verify()) {
1204 // Check for number of operands since the compatibility is
1205 // cheap here.
Eric Christopherb81e2b42012-04-03 17:55:42 +00001206 if (SP->getNumOperands() > 19)
Eric Christopher34164192012-04-03 00:43:49 +00001207 return DebugLoc::get(SP.getScopeLineNumber(), 0, SP);
1208 else
1209 return DebugLoc::get(SP.getLineNumber(), 0, SP);
1210 }
1211
Devang Patel34a66202011-05-11 19:22:19 +00001212 return DebugLoc();
1213}
1214
Devang Patel930143b2009-11-21 02:48:08 +00001215/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling2b128d72009-05-20 23:19:06 +00001216/// emitted immediately after the function entry point.
Chris Lattner76555b52010-01-26 23:18:02 +00001217void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner196dbdc2010-04-05 03:52:55 +00001218 if (!MMI->hasDebugInfo()) return;
Devang Patel7e623022011-08-10 20:55:27 +00001219 LScopes.initialize(*MF);
1220 if (LScopes.empty()) return;
1221 identifyScopeMarkers();
Devang Patel4598eb62009-10-06 18:37:31 +00001222
Devang Patel6c74a872010-04-27 19:46:33 +00001223 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1224 Asm->getFunctionNumber());
Bill Wendling2b128d72009-05-20 23:19:06 +00001225 // Assumes in correct section after the entry point.
Devang Patel6c74a872010-04-27 19:46:33 +00001226 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendling2b128d72009-05-20 23:19:06 +00001227
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001228 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1229
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001230 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001231 /// LiveUserVar - Map physreg numbers to the MDNode they contain.
1232 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1233
Devang Patel002d54d2010-05-26 19:37:24 +00001234 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001235 I != E; ++I) {
1236 bool AtBlockEntry = true;
Devang Patel002d54d2010-05-26 19:37:24 +00001237 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1238 II != IE; ++II) {
1239 const MachineInstr *MI = II;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001240
Devang Patel002d54d2010-05-26 19:37:24 +00001241 if (MI->isDebugValue()) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +00001242 assert(MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001243
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001244 // Keep track of user variables.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001245 const MDNode *Var =
1246 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001247
1248 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001249 if (isDbgValueInDefinedReg(MI))
1250 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1251
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001252 // Check the history of this variable.
1253 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1254 if (History.empty()) {
1255 UserVariables.push_back(Var);
1256 // The first mention of a function argument gets the FunctionBeginSym
1257 // label, so arguments are visible when breaking at function entry.
1258 DIVariable DV(Var);
1259 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1260 DISubprogram(getDISubprogram(DV.getContext()))
1261 .describes(MF->getFunction()))
1262 LabelsBeforeInsn[MI] = FunctionBeginSym;
1263 } else {
1264 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1265 const MachineInstr *Prev = History.back();
1266 if (Prev->isDebugValue()) {
1267 // Coalesce identical entries at the end of History.
1268 if (History.size() >= 2 &&
Devang Patelb7a328e2011-07-07 00:14:27 +00001269 Prev->isIdenticalTo(History[History.size() - 2])) {
1270 DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n"
1271 << "\t" << *Prev
1272 << "\t" << *History[History.size() - 2] << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001273 History.pop_back();
Devang Patelb7a328e2011-07-07 00:14:27 +00001274 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001275
1276 // Terminate old register assignments that don't reach MI;
1277 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1278 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1279 isDbgValueInDefinedReg(Prev)) {
1280 // Previous register assignment needs to terminate at the end of
1281 // its basic block.
1282 MachineBasicBlock::const_iterator LastMI =
1283 PrevMBB->getLastNonDebugInstr();
Devang Patelb7a328e2011-07-07 00:14:27 +00001284 if (LastMI == PrevMBB->end()) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001285 // Drop DBG_VALUE for empty range.
Devang Patelb7a328e2011-07-07 00:14:27 +00001286 DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n"
1287 << "\t" << *Prev << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001288 History.pop_back();
Devang Patelb7a328e2011-07-07 00:14:27 +00001289 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001290 else {
1291 // Terminate after LastMI.
1292 History.push_back(LastMI);
1293 }
1294 }
1295 }
1296 }
1297 History.push_back(MI);
Devang Patel002d54d2010-05-26 19:37:24 +00001298 } else {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001299 // Not a DBG_VALUE instruction.
1300 if (!MI->isLabel())
1301 AtBlockEntry = false;
1302
Devang Patel34a66202011-05-11 19:22:19 +00001303 // First known non DBG_VALUE location marks beginning of function
1304 // body.
1305 if (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown())
1306 PrologEndLoc = MI->getDebugLoc();
1307
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001308 // Check if the instruction clobbers any registers with debug vars.
1309 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1310 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1311 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1312 continue;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +00001313 for (MCRegAliasIterator AI(MOI->getReg(), TRI, true);
1314 AI.isValid(); ++AI) {
1315 unsigned Reg = *AI;
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001316 const MDNode *Var = LiveUserVar[Reg];
1317 if (!Var)
1318 continue;
1319 // Reg is now clobbered.
1320 LiveUserVar[Reg] = 0;
1321
1322 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001323 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
1324 if (HistI == DbgValues.end())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001325 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001326 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
1327 if (History.empty())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001328 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001329 const MachineInstr *Prev = History.back();
1330 // Sanity-check: Register assignments are terminated at the end of
1331 // their block.
1332 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
1333 continue;
1334 // Is the variable still in Reg?
1335 if (!isDbgValueInDefinedReg(Prev) ||
1336 Prev->getOperand(0).getReg() != Reg)
1337 continue;
1338 // Var is clobbered. Make sure the next instruction gets a label.
1339 History.push_back(MI);
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001340 }
1341 }
Devang Patel002d54d2010-05-26 19:37:24 +00001342 }
Devang Patel002d54d2010-05-26 19:37:24 +00001343 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001344 }
1345
1346 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
1347 I != E; ++I) {
1348 SmallVectorImpl<const MachineInstr*> &History = I->second;
1349 if (History.empty())
1350 continue;
1351
1352 // Make sure the final register assignments are terminated.
1353 const MachineInstr *Prev = History.back();
1354 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
1355 const MachineBasicBlock *PrevMBB = Prev->getParent();
Devang Patel784077e2011-08-10 23:58:09 +00001356 MachineBasicBlock::const_iterator LastMI =
1357 PrevMBB->getLastNonDebugInstr();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001358 if (LastMI == PrevMBB->end())
1359 // Drop DBG_VALUE for empty range.
1360 History.pop_back();
1361 else {
1362 // Terminate after LastMI.
1363 History.push_back(LastMI);
1364 }
1365 }
1366 // Request labels for the full history.
1367 for (unsigned i = 0, e = History.size(); i != e; ++i) {
1368 const MachineInstr *MI = History[i];
1369 if (MI->isDebugValue())
1370 requestLabelBeforeInsn(MI);
1371 else
1372 requestLabelAfterInsn(MI);
1373 }
1374 }
Devang Patel002d54d2010-05-26 19:37:24 +00001375
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001376 PrevInstLoc = DebugLoc();
Devang Patel002d54d2010-05-26 19:37:24 +00001377 PrevLabel = FunctionBeginSym;
Devang Patel34a66202011-05-11 19:22:19 +00001378
1379 // Record beginning of function.
1380 if (!PrologEndLoc.isUnknown()) {
1381 DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc,
1382 MF->getFunction()->getContext());
1383 recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(),
1384 FnStartDL.getScope(MF->getFunction()->getContext()),
Eric Christopheraec8a822012-04-05 20:39:05 +00001385 0);
Devang Patel34a66202011-05-11 19:22:19 +00001386 }
Bill Wendling2b128d72009-05-20 23:19:06 +00001387}
1388
Devang Patel7e623022011-08-10 20:55:27 +00001389void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) {
1390// SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1391 ScopeVariables[LS].push_back(Var);
1392// Vars.push_back(Var);
1393}
1394
Devang Patel930143b2009-11-21 02:48:08 +00001395/// endFunction - Gather and emit post-function debug information.
Bill Wendling2b128d72009-05-20 23:19:06 +00001396///
Chris Lattner76555b52010-01-26 23:18:02 +00001397void DwarfDebug::endFunction(const MachineFunction *MF) {
Devang Patel7e623022011-08-10 20:55:27 +00001398 if (!MMI->hasDebugInfo() || LScopes.empty()) return;
Devang Patel2904aa92009-11-12 19:02:56 +00001399
Devang Patel7e623022011-08-10 20:55:27 +00001400 // Define end label for subprogram.
1401 FunctionEndSym = Asm->GetTempSymbol("func_end",
1402 Asm->getFunctionNumber());
1403 // Assumes in correct section after the entry point.
1404 Asm->OutStreamer.EmitLabel(FunctionEndSym);
1405
1406 SmallPtrSet<const MDNode *, 16> ProcessedVars;
1407 collectVariableInfo(MF, ProcessedVars);
1408
Devang Patel3acc70e2011-08-15 22:04:40 +00001409 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
Devang Pateleb1bb4e2011-08-16 22:09:43 +00001410 CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode());
Nick Lewycky654f5ce2011-10-26 22:55:33 +00001411 assert(TheCU && "Unable to find compile unit!");
Devang Patel3acc70e2011-08-15 22:04:40 +00001412
Devang Patel7e623022011-08-10 20:55:27 +00001413 // Construct abstract scopes.
Devang Patel44403472011-08-12 18:10:19 +00001414 ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList();
1415 for (unsigned i = 0, e = AList.size(); i != e; ++i) {
1416 LexicalScope *AScope = AList[i];
1417 DISubprogram SP(AScope->getScopeNode());
Devang Patel7e623022011-08-10 20:55:27 +00001418 if (SP.Verify()) {
1419 // Collect info for variables that were optimized out.
Devang Patel59e27c52011-08-19 23:28:12 +00001420 DIArray Variables = SP.getVariables();
1421 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1422 DIVariable DV(Variables.getElement(i));
1423 if (!DV || !DV.Verify() || !ProcessedVars.insert(DV))
1424 continue;
Alexey Samsonov39602782012-07-06 08:45:08 +00001425 // Check that DbgVariable for DV wasn't created earlier, when
1426 // findAbstractVariable() was called for inlined instance of DV.
1427 LLVMContext &Ctx = DV->getContext();
1428 DIVariable CleanDV = cleanseInlinedVariable(DV, Ctx);
1429 if (AbstractVariables.lookup(CleanDV))
1430 continue;
Devang Patel59e27c52011-08-19 23:28:12 +00001431 if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext()))
1432 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel5c0f85c2010-06-25 22:07:34 +00001433 }
1434 }
Devang Patel44403472011-08-12 18:10:19 +00001435 if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0)
Devang Patel3acc70e2011-08-15 22:04:40 +00001436 constructScopeDIE(TheCU, AScope);
Bill Wendling2b128d72009-05-20 23:19:06 +00001437 }
Devang Patel7e623022011-08-10 20:55:27 +00001438
Devang Patel3acc70e2011-08-15 22:04:40 +00001439 DIE *CurFnDIE = constructScopeDIE(TheCU, FnScope);
Devang Patel7e623022011-08-10 20:55:27 +00001440
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001441 if (!MF->getTarget().Options.DisableFramePointerElim(*MF))
Devang Patel784077e2011-08-10 23:58:09 +00001442 TheCU->addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr,
1443 dwarf::DW_FORM_flag, 1);
Devang Patel3acc70e2011-08-15 22:04:40 +00001444
Devang Patel7e623022011-08-10 20:55:27 +00001445 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
1446 MMI->getFrameMoves()));
Bill Wendling2b128d72009-05-20 23:19:06 +00001447
Bill Wendling2b128d72009-05-20 23:19:06 +00001448 // Clear debug info
Devang Patel7e623022011-08-10 20:55:27 +00001449 for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator
1450 I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I)
1451 DeleteContainerPointers(I->second);
1452 ScopeVariables.clear();
Devang Patelad45d912011-04-22 18:09:57 +00001453 DeleteContainerPointers(CurrentFnArguments);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001454 UserVariables.clear();
1455 DbgValues.clear();
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00001456 AbstractVariables.clear();
Devang Patel6c74a872010-04-27 19:46:33 +00001457 LabelsBeforeInsn.clear();
1458 LabelsAfterInsn.clear();
Devang Patel12563b32010-04-16 23:33:45 +00001459 PrevLabel = NULL;
Bill Wendling2b128d72009-05-20 23:19:06 +00001460}
1461
Chris Lattnerba35a672010-03-09 04:54:43 +00001462/// recordSourceLine - Register a source line with debug info. Returns the
1463/// unique label that was emitted and which provides correspondence to
1464/// the source line list.
Devang Patel34a66202011-05-11 19:22:19 +00001465void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S,
1466 unsigned Flags) {
Devang Patel2d9caf92009-11-25 17:36:49 +00001467 StringRef Fn;
Devang Patele01b75c2011-03-24 20:30:50 +00001468 StringRef Dir;
Dan Gohman50849c62010-05-05 23:41:32 +00001469 unsigned Src = 1;
1470 if (S) {
1471 DIDescriptor Scope(S);
Devang Patel2089d162009-10-05 18:03:19 +00001472
Dan Gohman50849c62010-05-05 23:41:32 +00001473 if (Scope.isCompileUnit()) {
1474 DICompileUnit CU(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001475 Fn = CU.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001476 Dir = CU.getDirectory();
Devang Patelc4b69052010-10-28 17:30:52 +00001477 } else if (Scope.isFile()) {
1478 DIFile F(S);
Devang Patelc4b69052010-10-28 17:30:52 +00001479 Fn = F.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001480 Dir = F.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001481 } else if (Scope.isSubprogram()) {
1482 DISubprogram SP(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001483 Fn = SP.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001484 Dir = SP.getDirectory();
Eric Christopher6647b832011-10-11 22:59:11 +00001485 } else if (Scope.isLexicalBlockFile()) {
1486 DILexicalBlockFile DBF(S);
1487 Fn = DBF.getFilename();
1488 Dir = DBF.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001489 } else if (Scope.isLexicalBlock()) {
1490 DILexicalBlock DB(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001491 Fn = DB.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001492 Dir = DB.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001493 } else
Craig Topperee4dab52012-02-05 08:31:47 +00001494 llvm_unreachable("Unexpected scope info");
Dan Gohman50849c62010-05-05 23:41:32 +00001495
Devang Patele01b75c2011-03-24 20:30:50 +00001496 Src = GetOrCreateSourceID(Fn, Dir);
Dan Gohman50849c62010-05-05 23:41:32 +00001497 }
Nick Lewycky019d2552011-07-29 03:49:23 +00001498 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);
Bill Wendling2b128d72009-05-20 23:19:06 +00001499}
1500
Bill Wendling806535f2009-05-20 23:22:40 +00001501//===----------------------------------------------------------------------===//
1502// Emit Methods
1503//===----------------------------------------------------------------------===//
1504
Devang Patel930143b2009-11-21 02:48:08 +00001505/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling480ff322009-05-20 23:21:38 +00001506///
Jim Grosbach00e9c612009-11-22 19:20:36 +00001507unsigned
1508DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling480ff322009-05-20 23:21:38 +00001509 // Get the children.
1510 const std::vector<DIE *> &Children = Die->getChildren();
1511
Bill Wendling480ff322009-05-20 23:21:38 +00001512 // Record the abbreviation.
Devang Patel930143b2009-11-21 02:48:08 +00001513 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling480ff322009-05-20 23:21:38 +00001514
1515 // Get the abbreviation for this DIE.
1516 unsigned AbbrevNumber = Die->getAbbrevNumber();
1517 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1518
1519 // Set DIE offset
1520 Die->setOffset(Offset);
1521
1522 // Start the size with the size of abbreviation code.
Chris Lattner7b26fce2009-08-22 20:48:53 +00001523 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00001524
1525 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1526 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1527
1528 // Size the DIE attribute values.
1529 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1530 // Size attribute value.
Chris Lattner5a00dea2010-04-05 00:18:22 +00001531 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling480ff322009-05-20 23:21:38 +00001532
1533 // Size the DIE children if any.
1534 if (!Children.empty()) {
1535 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1536 "Children flag not set");
1537
1538 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00001539 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling480ff322009-05-20 23:21:38 +00001540
1541 // End of children marker.
1542 Offset += sizeof(int8_t);
1543 }
1544
1545 Die->setSize(Offset - Die->getOffset());
1546 return Offset;
1547}
1548
Devang Patel930143b2009-11-21 02:48:08 +00001549/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling480ff322009-05-20 23:21:38 +00001550///
Devang Patel930143b2009-11-21 02:48:08 +00001551void DwarfDebug::computeSizeAndOffsets() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001552 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1553 E = CUMap.end(); I != E; ++I) {
1554 // Compute size of compile unit header.
Devang Patel28dce702011-04-12 23:10:47 +00001555 unsigned Offset =
Devang Patel1a0df9a2010-05-10 22:49:55 +00001556 sizeof(int32_t) + // Length of Compilation Unit Info
1557 sizeof(int16_t) + // DWARF version number
1558 sizeof(int32_t) + // Offset Into Abbrev. Section
1559 sizeof(int8_t); // Pointer Size (in bytes)
1560 computeSizeAndOffset(I->second->getCUDie(), Offset, true);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001561 }
Bill Wendling480ff322009-05-20 23:21:38 +00001562}
1563
Chris Lattner6629ca92010-04-04 22:59:04 +00001564/// EmitSectionLabels - Emit initial Dwarf sections with a label at
1565/// the start of each one.
Chris Lattner46355d82010-04-04 22:33:59 +00001566void DwarfDebug::EmitSectionLabels() {
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001567 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00001568
Bill Wendling480ff322009-05-20 23:21:38 +00001569 // Dwarf sections base addresses.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001570 DwarfInfoSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00001571 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001572 DwarfAbbrevSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00001573 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001574 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001575
Chris Lattner6629ca92010-04-04 22:59:04 +00001576 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001577 EmitSectionSym(Asm, MacroInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00001578
Devang Patel4a213872010-08-24 00:06:12 +00001579 EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001580 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001581 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001582 DwarfStrSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00001583 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Devang Patel12563b32010-04-16 23:33:45 +00001584 DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(),
1585 "debug_range");
Bill Wendling480ff322009-05-20 23:21:38 +00001586
Devang Patel9fc11702010-05-25 23:40:22 +00001587 DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(),
1588 "section_debug_loc");
1589
Chris Lattner6629ca92010-04-04 22:59:04 +00001590 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattnere58b5472010-04-04 23:10:38 +00001591 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001592}
1593
Nick Lewycky019d2552011-07-29 03:49:23 +00001594/// emitDIE - Recursively emits a debug information entry.
Bill Wendling480ff322009-05-20 23:21:38 +00001595///
Devang Patel930143b2009-11-21 02:48:08 +00001596void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling480ff322009-05-20 23:21:38 +00001597 // Get the abbreviation for this DIE.
1598 unsigned AbbrevNumber = Die->getAbbrevNumber();
1599 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1600
Bill Wendling480ff322009-05-20 23:21:38 +00001601 // Emit the code (index) for the abbreviation.
Chris Lattner7bde8c02010-04-04 18:52:31 +00001602 if (Asm->isVerbose())
Chris Lattnerfa823552010-01-22 23:18:42 +00001603 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
1604 Twine::utohexstr(Die->getOffset()) + ":0x" +
1605 Twine::utohexstr(Die->getSize()) + " " +
1606 dwarf::TagString(Abbrev->getTag()));
Chris Lattner9efd1182010-04-04 19:09:29 +00001607 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00001608
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00001609 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling480ff322009-05-20 23:21:38 +00001610 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1611
1612 // Emit the DIE attribute values.
1613 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1614 unsigned Attr = AbbrevData[i].getAttribute();
1615 unsigned Form = AbbrevData[i].getForm();
1616 assert(Form && "Too many attributes for DIE (check abbreviation)");
1617
Chris Lattner7bde8c02010-04-04 18:52:31 +00001618 if (Asm->isVerbose())
Chris Lattner5adf9872010-01-24 18:54:17 +00001619 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001620
Bill Wendling480ff322009-05-20 23:21:38 +00001621 switch (Attr) {
Bill Wendling480ff322009-05-20 23:21:38 +00001622 case dwarf::DW_AT_abstract_origin: {
1623 DIEEntry *E = cast<DIEEntry>(Values[i]);
1624 DIE *Origin = E->getEntry();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001625 unsigned Addr = Origin->getOffset();
Bill Wendling480ff322009-05-20 23:21:38 +00001626 Asm->EmitInt32(Addr);
1627 break;
1628 }
Devang Patel12563b32010-04-16 23:33:45 +00001629 case dwarf::DW_AT_ranges: {
1630 // DW_AT_range Value encodes offset in debug_range section.
1631 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelda3ef852010-09-02 16:43:44 +00001632
Nick Lewycky33da3362012-06-22 01:25:12 +00001633 if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) {
Devang Patelda3ef852010-09-02 16:43:44 +00001634 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
1635 V->getValue(),
1636 4);
1637 } else {
1638 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
1639 V->getValue(),
1640 DwarfDebugRangeSectionSym,
1641 4);
1642 }
Devang Patel12563b32010-04-16 23:33:45 +00001643 break;
1644 }
Devang Patel9fc11702010-05-25 23:40:22 +00001645 case dwarf::DW_AT_location: {
Nick Lewycky33da3362012-06-22 01:25:12 +00001646 if (DIELabel *L = dyn_cast<DIELabel>(Values[i])) {
1647 if (Asm->MAI->doesDwarfUseRelocationsAcrossSections())
1648 Asm->EmitLabelReference(L->getValue(), 4);
1649 else
1650 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
1651 } else {
Devang Patel9fc11702010-05-25 23:40:22 +00001652 Values[i]->EmitValue(Asm, Form);
Nick Lewycky33da3362012-06-22 01:25:12 +00001653 }
Devang Patel9fc11702010-05-25 23:40:22 +00001654 break;
1655 }
Devang Patela1bd5a12010-09-29 19:08:08 +00001656 case dwarf::DW_AT_accessibility: {
1657 if (Asm->isVerbose()) {
1658 DIEInteger *V = cast<DIEInteger>(Values[i]);
1659 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
1660 }
1661 Values[i]->EmitValue(Asm, Form);
1662 break;
1663 }
Bill Wendling480ff322009-05-20 23:21:38 +00001664 default:
1665 // Emit an attribute using the defined form.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001666 Values[i]->EmitValue(Asm, Form);
Bill Wendling480ff322009-05-20 23:21:38 +00001667 break;
1668 }
Bill Wendling480ff322009-05-20 23:21:38 +00001669 }
1670
1671 // Emit the DIE children if any.
1672 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1673 const std::vector<DIE *> &Children = Die->getChildren();
1674
1675 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00001676 emitDIE(Children[j]);
Bill Wendling480ff322009-05-20 23:21:38 +00001677
Chris Lattner7bde8c02010-04-04 18:52:31 +00001678 if (Asm->isVerbose())
Chris Lattner566cae92010-03-09 23:52:58 +00001679 Asm->OutStreamer.AddComment("End Of Children Mark");
1680 Asm->EmitInt8(0);
Bill Wendling480ff322009-05-20 23:21:38 +00001681 }
1682}
1683
Devang Patel9ccfb642009-12-09 18:24:21 +00001684/// emitDebugInfo - Emit the debug info section.
Bill Wendling480ff322009-05-20 23:21:38 +00001685///
Devang Patel9ccfb642009-12-09 18:24:21 +00001686void DwarfDebug::emitDebugInfo() {
1687 // Start debug info section.
1688 Asm->OutStreamer.SwitchSection(
1689 Asm->getObjFileLowering().getDwarfInfoSection());
Devang Patel1a0df9a2010-05-10 22:49:55 +00001690 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1691 E = CUMap.end(); I != E; ++I) {
1692 CompileUnit *TheCU = I->second;
1693 DIE *Die = TheCU->getCUDie();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001694
Devang Patel1a0df9a2010-05-10 22:49:55 +00001695 // Emit the compile units header.
1696 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
1697 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001698
Devang Patel1a0df9a2010-05-10 22:49:55 +00001699 // Emit size of content not including length itself
1700 unsigned ContentSize = Die->getSize() +
1701 sizeof(int16_t) + // DWARF version number
1702 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patele141234942011-04-13 19:41:17 +00001703 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001704
Devang Patel1a0df9a2010-05-10 22:49:55 +00001705 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
1706 Asm->EmitInt32(ContentSize);
1707 Asm->OutStreamer.AddComment("DWARF version number");
1708 Asm->EmitInt16(dwarf::DWARF_VERSION);
1709 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
1710 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
1711 DwarfAbbrevSectionSym);
1712 Asm->OutStreamer.AddComment("Address Size (in bytes)");
1713 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001714
Devang Patel1a0df9a2010-05-10 22:49:55 +00001715 emitDIE(Die);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001716 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID()));
1717 }
Bill Wendling480ff322009-05-20 23:21:38 +00001718}
1719
Devang Patel930143b2009-11-21 02:48:08 +00001720/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling480ff322009-05-20 23:21:38 +00001721///
Devang Patel930143b2009-11-21 02:48:08 +00001722void DwarfDebug::emitAbbreviations() const {
Bill Wendling480ff322009-05-20 23:21:38 +00001723 // Check to see if it is worth the effort.
1724 if (!Abbreviations.empty()) {
1725 // Start the debug abbrev section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001726 Asm->OutStreamer.SwitchSection(
1727 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001728
Chris Lattnera179b522010-04-04 19:25:43 +00001729 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling480ff322009-05-20 23:21:38 +00001730
1731 // For each abbrevation.
1732 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
1733 // Get abbreviation data
1734 const DIEAbbrev *Abbrev = Abbreviations[i];
1735
1736 // Emit the abbrevations code (base 1 index.)
Chris Lattner9efd1182010-04-04 19:09:29 +00001737 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling480ff322009-05-20 23:21:38 +00001738
1739 // Emit the abbreviations data.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001740 Abbrev->Emit(Asm);
Bill Wendling480ff322009-05-20 23:21:38 +00001741 }
1742
1743 // Mark end of abbreviations.
Chris Lattner9efd1182010-04-04 19:09:29 +00001744 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling480ff322009-05-20 23:21:38 +00001745
Chris Lattnera179b522010-04-04 19:25:43 +00001746 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling480ff322009-05-20 23:21:38 +00001747 }
1748}
1749
Devang Patel930143b2009-11-21 02:48:08 +00001750/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling480ff322009-05-20 23:21:38 +00001751/// the line matrix.
1752///
Devang Patel930143b2009-11-21 02:48:08 +00001753void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling480ff322009-05-20 23:21:38 +00001754 // Define last address of section.
Chris Lattner566cae92010-03-09 23:52:58 +00001755 Asm->OutStreamer.AddComment("Extended Op");
1756 Asm->EmitInt8(0);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001757
Chris Lattner566cae92010-03-09 23:52:58 +00001758 Asm->OutStreamer.AddComment("Op size");
Chris Lattner3a383cb2010-04-05 00:13:49 +00001759 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner566cae92010-03-09 23:52:58 +00001760 Asm->OutStreamer.AddComment("DW_LNE_set_address");
1761 Asm->EmitInt8(dwarf::DW_LNE_set_address);
1762
1763 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerb245dfb2010-03-10 01:17:49 +00001764
Chris Lattnera179b522010-04-04 19:25:43 +00001765 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattner3a383cb2010-04-05 00:13:49 +00001766 Asm->getTargetData().getPointerSize(),
1767 0/*AddrSpace*/);
Bill Wendling480ff322009-05-20 23:21:38 +00001768
1769 // Mark end of matrix.
Chris Lattner566cae92010-03-09 23:52:58 +00001770 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
1771 Asm->EmitInt8(0);
Chris Lattnerf5c834f2010-01-22 22:09:00 +00001772 Asm->EmitInt8(1);
Chris Lattnerfa823552010-01-22 23:18:42 +00001773 Asm->EmitInt8(1);
Bill Wendling480ff322009-05-20 23:21:38 +00001774}
1775
Eric Christopher4996c702011-11-07 09:24:32 +00001776/// emitAccelNames - Emit visible names into a hashed accelerator table
1777/// section.
1778void DwarfDebug::emitAccelNames() {
1779 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1780 dwarf::DW_FORM_data4));
1781 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1782 E = CUMap.end(); I != E; ++I) {
1783 CompileUnit *TheCU = I->second;
Eric Christopherd9843b32011-11-10 19:25:34 +00001784 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNames();
1785 for (StringMap<std::vector<DIE*> >::const_iterator
Eric Christopher4996c702011-11-07 09:24:32 +00001786 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1787 const char *Name = GI->getKeyData();
Eric Christopher090fcc12012-01-06 23:03:34 +00001788 const std::vector<DIE *> &Entities = GI->second;
Eric Christopherd9843b32011-11-10 19:25:34 +00001789 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1790 DE = Entities.end(); DI != DE; ++DI)
1791 AT.AddName(Name, (*DI));
Eric Christopher4996c702011-11-07 09:24:32 +00001792 }
1793 }
1794
1795 AT.FinalizeTable(Asm, "Names");
1796 Asm->OutStreamer.SwitchSection(
1797 Asm->getObjFileLowering().getDwarfAccelNamesSection());
1798 MCSymbol *SectionBegin = Asm->GetTempSymbol("names_begin");
1799 Asm->OutStreamer.EmitLabel(SectionBegin);
1800
1801 // Emit the full data.
1802 AT.Emit(Asm, SectionBegin, this);
1803}
1804
1805/// emitAccelObjC - Emit objective C classes and categories into a hashed
1806/// accelerator table section.
1807void DwarfDebug::emitAccelObjC() {
1808 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1809 dwarf::DW_FORM_data4));
1810 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1811 E = CUMap.end(); I != E; ++I) {
1812 CompileUnit *TheCU = I->second;
1813 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelObjC();
1814 for (StringMap<std::vector<DIE*> >::const_iterator
1815 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1816 const char *Name = GI->getKeyData();
Eric Christopher090fcc12012-01-06 23:03:34 +00001817 const std::vector<DIE *> &Entities = GI->second;
Eric Christopher4996c702011-11-07 09:24:32 +00001818 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1819 DE = Entities.end(); DI != DE; ++DI)
1820 AT.AddName(Name, (*DI));
1821 }
1822 }
1823
1824 AT.FinalizeTable(Asm, "ObjC");
1825 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1826 .getDwarfAccelObjCSection());
1827 MCSymbol *SectionBegin = Asm->GetTempSymbol("objc_begin");
1828 Asm->OutStreamer.EmitLabel(SectionBegin);
1829
1830 // Emit the full data.
1831 AT.Emit(Asm, SectionBegin, this);
1832}
1833
1834/// emitAccelNamespace - Emit namespace dies into a hashed accelerator
1835/// table.
1836void DwarfDebug::emitAccelNamespaces() {
1837 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1838 dwarf::DW_FORM_data4));
1839 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1840 E = CUMap.end(); I != E; ++I) {
1841 CompileUnit *TheCU = I->second;
Eric Christopher66b37db2011-11-10 21:47:55 +00001842 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNamespace();
1843 for (StringMap<std::vector<DIE*> >::const_iterator
Eric Christopher4996c702011-11-07 09:24:32 +00001844 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1845 const char *Name = GI->getKeyData();
Eric Christopher090fcc12012-01-06 23:03:34 +00001846 const std::vector<DIE *> &Entities = GI->second;
Eric Christopher66b37db2011-11-10 21:47:55 +00001847 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1848 DE = Entities.end(); DI != DE; ++DI)
1849 AT.AddName(Name, (*DI));
Eric Christopher4996c702011-11-07 09:24:32 +00001850 }
1851 }
1852
1853 AT.FinalizeTable(Asm, "namespac");
1854 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1855 .getDwarfAccelNamespaceSection());
1856 MCSymbol *SectionBegin = Asm->GetTempSymbol("namespac_begin");
1857 Asm->OutStreamer.EmitLabel(SectionBegin);
1858
1859 // Emit the full data.
1860 AT.Emit(Asm, SectionBegin, this);
1861}
1862
1863/// emitAccelTypes() - Emit type dies into a hashed accelerator table.
1864void DwarfDebug::emitAccelTypes() {
Eric Christopher21bde872012-01-06 04:35:23 +00001865 std::vector<DwarfAccelTable::Atom> Atoms;
1866 Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1867 dwarf::DW_FORM_data4));
1868 Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeTag,
1869 dwarf::DW_FORM_data2));
1870 Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeTypeFlags,
1871 dwarf::DW_FORM_data1));
1872 DwarfAccelTable AT(Atoms);
Eric Christopher4996c702011-11-07 09:24:32 +00001873 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1874 E = CUMap.end(); I != E; ++I) {
1875 CompileUnit *TheCU = I->second;
Eric Christopher21bde872012-01-06 04:35:23 +00001876 const StringMap<std::vector<std::pair<DIE*, unsigned > > > &Names
1877 = TheCU->getAccelTypes();
1878 for (StringMap<std::vector<std::pair<DIE*, unsigned> > >::const_iterator
Eric Christopher4996c702011-11-07 09:24:32 +00001879 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1880 const char *Name = GI->getKeyData();
Eric Christopher090fcc12012-01-06 23:03:34 +00001881 const std::vector<std::pair<DIE *, unsigned> > &Entities = GI->second;
Eric Christopher21bde872012-01-06 04:35:23 +00001882 for (std::vector<std::pair<DIE *, unsigned> >::const_iterator DI
1883 = Entities.begin(), DE = Entities.end(); DI !=DE; ++DI)
1884 AT.AddName(Name, (*DI).first, (*DI).second);
Eric Christopher4996c702011-11-07 09:24:32 +00001885 }
1886 }
1887
1888 AT.FinalizeTable(Asm, "types");
1889 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1890 .getDwarfAccelTypesSection());
1891 MCSymbol *SectionBegin = Asm->GetTempSymbol("types_begin");
1892 Asm->OutStreamer.EmitLabel(SectionBegin);
1893
1894 // Emit the full data.
1895 AT.Emit(Asm, SectionBegin, this);
1896}
1897
Devang Patel04d2f2d2009-11-24 01:14:22 +00001898void DwarfDebug::emitDebugPubTypes() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001899 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1900 E = CUMap.end(); I != E; ++I) {
1901 CompileUnit *TheCU = I->second;
Eric Christopher6abc9c52011-11-07 09:18:35 +00001902 // Start the dwarf pubtypes section.
Devang Patel1a0df9a2010-05-10 22:49:55 +00001903 Asm->OutStreamer.SwitchSection(
1904 Asm->getObjFileLowering().getDwarfPubTypesSection());
1905 Asm->OutStreamer.AddComment("Length of Public Types Info");
1906 Asm->EmitLabelDifference(
1907 Asm->GetTempSymbol("pubtypes_end", TheCU->getID()),
1908 Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001909
Devang Patel1a0df9a2010-05-10 22:49:55 +00001910 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
1911 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001912
Devang Patel1a0df9a2010-05-10 22:49:55 +00001913 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
1914 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001915
Devang Patel1a0df9a2010-05-10 22:49:55 +00001916 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
1917 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
1918 DwarfInfoSectionSym);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001919
Devang Patel1a0df9a2010-05-10 22:49:55 +00001920 Asm->OutStreamer.AddComment("Compilation Unit Length");
1921 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1922 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1923 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001924
Devang Patel1a0df9a2010-05-10 22:49:55 +00001925 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
1926 for (StringMap<DIE*>::const_iterator
1927 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1928 const char *Name = GI->getKeyData();
Nick Lewycky019d2552011-07-29 03:49:23 +00001929 DIE *Entity = GI->second;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001930
Devang Patel1a0df9a2010-05-10 22:49:55 +00001931 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
1932 Asm->EmitInt32(Entity->getOffset());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001933
Devang Patel1a0df9a2010-05-10 22:49:55 +00001934 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
Benjamin Kramer966ed1b2011-11-09 18:16:11 +00001935 // Emit the name with a terminating null byte.
Devang Patel1a0df9a2010-05-10 22:49:55 +00001936 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
1937 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001938
Devang Patel1a0df9a2010-05-10 22:49:55 +00001939 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001940 Asm->EmitInt32(0);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001941 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
1942 TheCU->getID()));
Devang Patel04d2f2d2009-11-24 01:14:22 +00001943 }
Devang Patel04d2f2d2009-11-24 01:14:22 +00001944}
1945
Devang Patel930143b2009-11-21 02:48:08 +00001946/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling480ff322009-05-20 23:21:38 +00001947///
Devang Patel930143b2009-11-21 02:48:08 +00001948void DwarfDebug::emitDebugStr() {
Bill Wendling480ff322009-05-20 23:21:38 +00001949 // Check to see if it is worth the effort.
Chris Lattner3d72a672010-03-09 23:38:23 +00001950 if (StringPool.empty()) return;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001951
Chris Lattner3d72a672010-03-09 23:38:23 +00001952 // Start the dwarf str section.
1953 Asm->OutStreamer.SwitchSection(
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001954 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001955
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001956 // Get all of the string pool entries and put them in an array by their ID so
1957 // we can sort them.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001958 SmallVector<std::pair<unsigned,
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001959 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001960
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001961 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
1962 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
1963 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001964
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001965 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001966
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001967 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner3d72a672010-03-09 23:38:23 +00001968 // Emit a label for reference from debug information entries.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001969 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001970
Benjamin Kramer966ed1b2011-11-09 18:16:11 +00001971 // Emit the string itself with a terminating null byte.
Benjamin Kramer148db362011-11-09 12:12:04 +00001972 Asm->OutStreamer.EmitBytes(StringRef(Entries[i].second->getKeyData(),
1973 Entries[i].second->getKeyLength()+1),
1974 0/*addrspace*/);
Bill Wendling480ff322009-05-20 23:21:38 +00001975 }
1976}
1977
Devang Patel930143b2009-11-21 02:48:08 +00001978/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling480ff322009-05-20 23:21:38 +00001979///
Devang Patel930143b2009-11-21 02:48:08 +00001980void DwarfDebug::emitDebugLoc() {
Devang Patel6b9a9fe2010-05-26 23:55:23 +00001981 if (DotDebugLocEntries.empty())
1982 return;
1983
Devang Patel116a9d72011-02-04 22:57:18 +00001984 for (SmallVector<DotDebugLocEntry, 4>::iterator
1985 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
1986 I != E; ++I) {
1987 DotDebugLocEntry &Entry = *I;
1988 if (I + 1 != DotDebugLocEntries.end())
1989 Entry.Merge(I+1);
1990 }
1991
Daniel Dunbarfd95b012011-03-16 22:16:39 +00001992 // Start the dwarf loc section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001993 Asm->OutStreamer.SwitchSection(
Devang Patel9fc11702010-05-25 23:40:22 +00001994 Asm->getObjFileLowering().getDwarfLocSection());
1995 unsigned char Size = Asm->getTargetData().getPointerSize();
Devang Patel6b9a9fe2010-05-26 23:55:23 +00001996 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
1997 unsigned index = 1;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001998 for (SmallVector<DotDebugLocEntry, 4>::iterator
1999 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel30265c42010-07-07 20:12:52 +00002000 I != E; ++I, ++index) {
Devang Patel116a9d72011-02-04 22:57:18 +00002001 DotDebugLocEntry &Entry = *I;
2002 if (Entry.isMerged()) continue;
Devang Patel9fc11702010-05-25 23:40:22 +00002003 if (Entry.isEmpty()) {
2004 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
2005 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002006 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patel9fc11702010-05-25 23:40:22 +00002007 } else {
2008 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0);
2009 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0);
Devang Patel3e021532011-04-28 02:22:40 +00002010 DIVariable DV(Entry.Variable);
Rafael Espindolad23bfb82011-05-27 22:05:41 +00002011 Asm->OutStreamer.AddComment("Loc expr size");
2012 MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol();
2013 MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol();
2014 Asm->EmitLabelDifference(end, begin, 2);
2015 Asm->OutStreamer.EmitLabel(begin);
Devang Pateled9fd452011-07-08 16:49:43 +00002016 if (Entry.isInt()) {
Devang Patel324f8432011-06-01 22:03:25 +00002017 DIBasicType BTy(DV.getType());
2018 if (BTy.Verify() &&
2019 (BTy.getEncoding() == dwarf::DW_ATE_signed
2020 || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) {
2021 Asm->OutStreamer.AddComment("DW_OP_consts");
2022 Asm->EmitInt8(dwarf::DW_OP_consts);
Devang Pateled9fd452011-07-08 16:49:43 +00002023 Asm->EmitSLEB128(Entry.getInt());
Devang Patel324f8432011-06-01 22:03:25 +00002024 } else {
2025 Asm->OutStreamer.AddComment("DW_OP_constu");
2026 Asm->EmitInt8(dwarf::DW_OP_constu);
Devang Pateled9fd452011-07-08 16:49:43 +00002027 Asm->EmitULEB128(Entry.getInt());
Devang Patel324f8432011-06-01 22:03:25 +00002028 }
Devang Pateled9fd452011-07-08 16:49:43 +00002029 } else if (Entry.isLocation()) {
2030 if (!DV.hasComplexAddress())
2031 // Regular entry.
Devang Patel3e021532011-04-28 02:22:40 +00002032 Asm->EmitDwarfRegOp(Entry.Loc);
Devang Pateled9fd452011-07-08 16:49:43 +00002033 else {
2034 // Complex address entry.
2035 unsigned N = DV.getNumAddrElements();
2036 unsigned i = 0;
2037 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
2038 if (Entry.Loc.getOffset()) {
2039 i = 2;
2040 Asm->EmitDwarfRegOp(Entry.Loc);
2041 Asm->OutStreamer.AddComment("DW_OP_deref");
2042 Asm->EmitInt8(dwarf::DW_OP_deref);
2043 Asm->OutStreamer.AddComment("DW_OP_plus_uconst");
2044 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2045 Asm->EmitSLEB128(DV.getAddrElement(1));
2046 } else {
2047 // If first address element is OpPlus then emit
2048 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
2049 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
2050 Asm->EmitDwarfRegOp(Loc);
2051 i = 2;
2052 }
2053 } else {
2054 Asm->EmitDwarfRegOp(Entry.Loc);
2055 }
2056
2057 // Emit remaining complex address elements.
2058 for (; i < N; ++i) {
2059 uint64_t Element = DV.getAddrElement(i);
2060 if (Element == DIBuilder::OpPlus) {
2061 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2062 Asm->EmitULEB128(DV.getAddrElement(++i));
Eric Christopher4d250522012-05-08 18:56:00 +00002063 } else if (Element == DIBuilder::OpDeref) {
Eric Christopher8d2a77d2012-05-08 21:24:39 +00002064 if (!Entry.Loc.isReg())
Eric Christopher4d250522012-05-08 18:56:00 +00002065 Asm->EmitInt8(dwarf::DW_OP_deref);
2066 } else
2067 llvm_unreachable("unknown Opcode found in complex address");
Devang Pateled9fd452011-07-08 16:49:43 +00002068 }
Devang Patel3e021532011-04-28 02:22:40 +00002069 }
Devang Patel3e021532011-04-28 02:22:40 +00002070 }
Devang Pateled9fd452011-07-08 16:49:43 +00002071 // else ... ignore constant fp. There is not any good way to
2072 // to represent them here in dwarf.
Rafael Espindolad23bfb82011-05-27 22:05:41 +00002073 Asm->OutStreamer.EmitLabel(end);
Devang Patel9fc11702010-05-25 23:40:22 +00002074 }
2075 }
Bill Wendling480ff322009-05-20 23:21:38 +00002076}
2077
2078/// EmitDebugARanges - Emit visible names into a debug aranges section.
2079///
2080void DwarfDebug::EmitDebugARanges() {
2081 // Start the dwarf aranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002082 Asm->OutStreamer.SwitchSection(
2083 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002084}
2085
Devang Patel930143b2009-11-21 02:48:08 +00002086/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling480ff322009-05-20 23:21:38 +00002087///
Devang Patel930143b2009-11-21 02:48:08 +00002088void DwarfDebug::emitDebugRanges() {
Bill Wendling480ff322009-05-20 23:21:38 +00002089 // Start the dwarf ranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002090 Asm->OutStreamer.SwitchSection(
Devang Patel12563b32010-04-16 23:33:45 +00002091 Asm->getObjFileLowering().getDwarfRangesSection());
Devang Patel6c74a872010-04-27 19:46:33 +00002092 unsigned char Size = Asm->getTargetData().getPointerSize();
2093 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002094 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Patel6c74a872010-04-27 19:46:33 +00002095 I != E; ++I) {
2096 if (*I)
2097 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0);
Devang Patel12563b32010-04-16 23:33:45 +00002098 else
Devang Patel6c74a872010-04-27 19:46:33 +00002099 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel12563b32010-04-16 23:33:45 +00002100 }
Bill Wendling480ff322009-05-20 23:21:38 +00002101}
2102
Devang Patel930143b2009-11-21 02:48:08 +00002103/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling480ff322009-05-20 23:21:38 +00002104///
Devang Patel930143b2009-11-21 02:48:08 +00002105void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00002106 if (const MCSection *LineInfo =
Chris Lattner1472cf52009-08-02 07:24:22 +00002107 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling480ff322009-05-20 23:21:38 +00002108 // Start the dwarf macinfo section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002109 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00002110 }
2111}
2112
Devang Patel930143b2009-11-21 02:48:08 +00002113/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling480ff322009-05-20 23:21:38 +00002114/// Section Header:
2115/// 1. length of section
2116/// 2. Dwarf version number
2117/// 3. address size.
2118///
2119/// Entries (one "entry" for each function that was inlined):
2120///
2121/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2122/// otherwise offset into __debug_str for regular function name.
2123/// 2. offset into __debug_str section for regular function name.
2124/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2125/// instances for the function.
2126///
2127/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2128/// inlined instance; the die_offset points to the inlined_subroutine die in the
2129/// __debug_info section, and the low_pc is the starting address for the
2130/// inlining instance.
Devang Patel930143b2009-11-21 02:48:08 +00002131void DwarfDebug::emitDebugInlineInfo() {
Eric Christopher1df94bf2012-03-02 02:11:47 +00002132 if (!Asm->MAI->doesDwarfUseInlineInfoSection())
Bill Wendling480ff322009-05-20 23:21:38 +00002133 return;
2134
Devang Patel1a0df9a2010-05-10 22:49:55 +00002135 if (!FirstCU)
Bill Wendling480ff322009-05-20 23:21:38 +00002136 return;
2137
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002138 Asm->OutStreamer.SwitchSection(
2139 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattnerf5c834f2010-01-22 22:09:00 +00002140
Chris Lattner566cae92010-03-09 23:52:58 +00002141 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002142 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
2143 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002144
Chris Lattnera179b522010-04-04 19:25:43 +00002145 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00002146
Chris Lattner566cae92010-03-09 23:52:58 +00002147 Asm->OutStreamer.AddComment("Dwarf Version");
2148 Asm->EmitInt16(dwarf::DWARF_VERSION);
2149 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002150 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00002151
Devang Patel32cc43c2010-05-07 20:54:48 +00002152 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002153 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach042483e2009-11-21 23:12:12 +00002154
Devang Patel32cc43c2010-05-07 20:54:48 +00002155 const MDNode *Node = *I;
2156 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach00e9c612009-11-22 19:20:36 +00002157 = InlineInfo.find(Node);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002158 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patel80ae3492009-08-28 23:24:31 +00002159 DISubprogram SP(Node);
Devang Patel2d9caf92009-11-25 17:36:49 +00002160 StringRef LName = SP.getLinkageName();
2161 StringRef Name = SP.getName();
Bill Wendling480ff322009-05-20 23:21:38 +00002162
Chris Lattner566cae92010-03-09 23:52:58 +00002163 Asm->OutStreamer.AddComment("MIPS linkage name");
Eric Christopher77725312012-03-02 01:57:52 +00002164 if (LName.empty())
2165 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
2166 else
Chris Lattner70a4fce2010-04-04 23:25:33 +00002167 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
2168 DwarfStrSectionSym);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002169
Chris Lattner566cae92010-03-09 23:52:58 +00002170 Asm->OutStreamer.AddComment("Function name");
Chris Lattner70a4fce2010-04-04 23:25:33 +00002171 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner9efd1182010-04-04 19:09:29 +00002172 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling480ff322009-05-20 23:21:38 +00002173
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002174 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling480ff322009-05-20 23:21:38 +00002175 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner7bde8c02010-04-04 18:52:31 +00002176 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner085b6522010-03-09 00:31:02 +00002177 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00002178
Chris Lattner7bde8c02010-04-04 18:52:31 +00002179 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002180 Asm->OutStreamer.EmitSymbolValue(LI->first,
2181 Asm->getTargetData().getPointerSize(),0);
Bill Wendling480ff322009-05-20 23:21:38 +00002182 }
2183 }
2184
Chris Lattnera179b522010-04-04 19:25:43 +00002185 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00002186}