blob: 0982dbb8315f100c0814bf06035491fbfe605446 [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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/Statistic.h"
21#include "llvm/ADT/StringExtras.h"
22#include "llvm/ADT/Triple.h"
David Greene829b3e82009-08-19 21:52:55 +000023#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000024#include "llvm/CodeGen/MachineModuleInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/DIBuilder.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000026#include "llvm/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Constants.h"
28#include "llvm/IR/DataLayout.h"
29#include "llvm/IR/Instructions.h"
30#include "llvm/IR/Module.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000031#include "llvm/MC/MCAsmInfo.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000032#include "llvm/MC/MCSection.h"
Chris Lattner4b7dadb2009-08-19 05:49:37 +000033#include "llvm/MC/MCStreamer.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000034#include "llvm/MC/MCSymbol.h"
Devang Patel6c74a872010-04-27 19:46:33 +000035#include "llvm/Support/CommandLine.h"
Daniel Dunbarcdf01b52009-10-13 06:47:08 +000036#include "llvm/Support/Debug.h"
37#include "llvm/Support/ErrorHandling.h"
Chris Lattnerf5c834f2010-01-22 22:09:00 +000038#include "llvm/Support/FormattedStream.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000039#include "llvm/Support/Path.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000040#include "llvm/Support/Timer.h"
41#include "llvm/Support/ValueHandle.h"
42#include "llvm/Target/TargetFrameLowering.h"
43#include "llvm/Target/TargetLoweringObjectFile.h"
44#include "llvm/Target/TargetMachine.h"
45#include "llvm/Target/TargetOptions.h"
46#include "llvm/Target/TargetRegisterInfo.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
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +000057static cl::opt<bool> GenerateDwarfPubNamesSection("generate-dwarf-pubnames",
58 cl::Hidden, cl::ZeroOrMore, cl::init(false),
59 cl::desc("Generate DWARF pubnames section"));
60
Eric Christopher20b76a72012-08-23 22:36:40 +000061namespace {
62 enum DefaultOnOff {
63 Default, Enable, Disable
64 };
65}
Eric Christopher4996c702011-11-07 09:24:32 +000066
Eric Christopher20b76a72012-08-23 22:36:40 +000067static cl::opt<DefaultOnOff> DwarfAccelTables("dwarf-accel-tables", cl::Hidden,
68 cl::desc("Output prototype dwarf accelerator tables."),
69 cl::values(
70 clEnumVal(Default, "Default for platform"),
71 clEnumVal(Enable, "Enabled"),
72 clEnumVal(Disable, "Disabled"),
73 clEnumValEnd),
74 cl::init(Default));
75
76static cl::opt<DefaultOnOff> DarwinGDBCompat("darwin-gdb-compat", cl::Hidden,
Eric Christopher978fbff2012-08-23 07:10:46 +000077 cl::desc("Compatibility with Darwin gdb."),
Eric Christopher20b76a72012-08-23 22:36:40 +000078 cl::values(
79 clEnumVal(Default, "Default for platform"),
80 clEnumVal(Enable, "Enabled"),
81 clEnumVal(Disable, "Disabled"),
82 clEnumValEnd),
83 cl::init(Default));
Eric Christopher978fbff2012-08-23 07:10:46 +000084
Eric Christophercdf218d2012-12-10 19:51:21 +000085static cl::opt<DefaultOnOff> SplitDwarf("split-dwarf", cl::Hidden,
86 cl::desc("Output prototype dwarf split debug info."),
Eric Christopher29424312012-11-12 22:22:20 +000087 cl::values(
88 clEnumVal(Default, "Default for platform"),
89 clEnumVal(Enable, "Enabled"),
90 clEnumVal(Disable, "Disabled"),
91 clEnumValEnd),
92 cl::init(Default));
93
Bill Wendlingfcc14142010-04-07 09:28:04 +000094namespace {
95 const char *DWARFGroupName = "DWARF Emission";
96 const char *DbgTimerName = "DWARF Debug Writer";
97} // end anonymous namespace
98
Bill Wendling2f921f82009-05-15 09:23:25 +000099//===----------------------------------------------------------------------===//
100
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000101// Configuration values for initial hash set sizes (log2).
102//
Bill Wendling2f921f82009-05-15 09:23:25 +0000103static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling2f921f82009-05-15 09:23:25 +0000104
105namespace llvm {
106
Nick Lewycky019d2552011-07-29 03:49:23 +0000107DIType DbgVariable::getType() const {
Devang Patelf20c4f72011-04-12 22:53:02 +0000108 DIType Ty = Var.getType();
109 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
110 // addresses instead.
111 if (Var.isBlockByrefVariable()) {
112 /* Byref variables, in Blocks, are declared by the programmer as
113 "SomeType VarName;", but the compiler creates a
114 __Block_byref_x_VarName struct, and gives the variable VarName
115 either the struct, or a pointer to the struct, as its type. This
116 is necessary for various behind-the-scenes things the compiler
117 needs to do with by-reference variables in blocks.
Eric Christopher6a841382012-11-19 22:42:10 +0000118
Devang Patelf20c4f72011-04-12 22:53:02 +0000119 However, as far as the original *programmer* is concerned, the
120 variable should still have type 'SomeType', as originally declared.
Eric Christopher6a841382012-11-19 22:42:10 +0000121
Devang Patelf20c4f72011-04-12 22:53:02 +0000122 The following function dives into the __Block_byref_x_VarName
123 struct to find the original type of the variable. This will be
124 passed back to the code generating the type for the Debug
125 Information Entry for the variable 'VarName'. 'VarName' will then
126 have the original type 'SomeType' in its debug information.
Eric Christopher6a841382012-11-19 22:42:10 +0000127
Devang Patelf20c4f72011-04-12 22:53:02 +0000128 The original type 'SomeType' will be the type of the field named
129 'VarName' inside the __Block_byref_x_VarName struct.
Eric Christopher6a841382012-11-19 22:42:10 +0000130
Devang Patelf20c4f72011-04-12 22:53:02 +0000131 NOTE: In order for this to not completely fail on the debugger
132 side, the Debug Information Entry for the variable VarName needs to
133 have a DW_AT_location that tells the debugger how to unwind through
134 the pointers and __Block_byref_x_VarName struct to find the actual
135 value of the variable. The function addBlockByrefType does this. */
136 DIType subType = Ty;
137 unsigned tag = Ty.getTag();
Eric Christopher6a841382012-11-19 22:42:10 +0000138
Devang Patelf20c4f72011-04-12 22:53:02 +0000139 if (tag == dwarf::DW_TAG_pointer_type) {
140 DIDerivedType DTy = DIDerivedType(Ty);
141 subType = DTy.getTypeDerivedFrom();
142 }
Eric Christopher6a841382012-11-19 22:42:10 +0000143
Devang Patelf20c4f72011-04-12 22:53:02 +0000144 DICompositeType blockStruct = DICompositeType(subType);
145 DIArray Elements = blockStruct.getTypeArray();
Eric Christopher6a841382012-11-19 22:42:10 +0000146
Devang Patelf20c4f72011-04-12 22:53:02 +0000147 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
148 DIDescriptor Element = Elements.getElement(i);
149 DIDerivedType DT = DIDerivedType(Element);
150 if (getName() == DT.getName())
151 return (DT.getTypeDerivedFrom());
Devang Patel6d9f9fe2010-08-09 21:01:39 +0000152 }
Devang Patel6d9f9fe2010-08-09 21:01:39 +0000153 }
Devang Patelf20c4f72011-04-12 22:53:02 +0000154 return Ty;
155}
Bill Wendling2f921f82009-05-15 09:23:25 +0000156
Chris Lattnerf5d06362010-04-05 04:09:20 +0000157} // end llvm namespace
Bill Wendling2f921f82009-05-15 09:23:25 +0000158
Chris Lattnerf0d6bd32010-04-05 05:11:15 +0000159DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
Eric Christopherd79f5482012-12-10 19:51:13 +0000160 : Asm(A), MMI(Asm->MMI), FirstCU(0),
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000161 AbbreviationsSet(InitAbbreviationsSetSize),
Eric Christopher27614582013-01-08 22:22:06 +0000162 SourceIdMap(DIEValueAllocator),
Eric Christopherc8a310e2012-12-10 23:34:43 +0000163 PrevLabel(NULL), GlobalCUIndexCount(0),
Eric Christopher27614582013-01-08 22:22:06 +0000164 InfoHolder(A, &AbbreviationsSet, &Abbreviations, "info_string",
165 DIEValueAllocator),
Eric Christopher3c5a1912012-12-19 22:02:53 +0000166 SkeletonAbbrevSet(InitAbbreviationsSetSize),
Eric Christopher27614582013-01-08 22:22:06 +0000167 SkeletonHolder(A, &SkeletonAbbrevSet, &SkeletonAbbrevs, "skel_string",
168 DIEValueAllocator) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000169
Rafael Espindolaa7160962011-05-06 14:56:22 +0000170 DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0;
Chris Lattnere58b5472010-04-04 23:10:38 +0000171 DwarfStrSectionSym = TextSectionSym = 0;
Eric Christopher74804332013-02-07 21:19:50 +0000172 DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = DwarfLineSectionSym = 0;
Eric Christopher3bf29fd2012-12-27 02:14:01 +0000173 DwarfAbbrevDWOSectionSym = DwarfStrDWOSectionSym = 0;
Devang Patel9fc11702010-05-25 23:40:22 +0000174 FunctionBeginSym = FunctionEndSym = 0;
Eric Christopherad9fe892012-04-02 17:58:52 +0000175
Eric Christopher978fbff2012-08-23 07:10:46 +0000176 // Turn on accelerator tables and older gdb compatibility
177 // for Darwin.
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000178 bool IsDarwin = Triple(M->getTargetTriple()).isOSDarwin();
Eric Christopher20b76a72012-08-23 22:36:40 +0000179 if (DarwinGDBCompat == Default) {
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000180 if (IsDarwin)
181 IsDarwinGDBCompat = true;
Eric Christopher20b76a72012-08-23 22:36:40 +0000182 else
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000183 IsDarwinGDBCompat = false;
Eric Christopher20b76a72012-08-23 22:36:40 +0000184 } else
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000185 IsDarwinGDBCompat = DarwinGDBCompat == Enable ? true : false;
Eric Christopher4977f212012-08-23 22:36:36 +0000186
Eric Christopher20b76a72012-08-23 22:36:40 +0000187 if (DwarfAccelTables == Default) {
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000188 if (IsDarwin)
189 HasDwarfAccelTables = true;
Eric Christopher20b76a72012-08-23 22:36:40 +0000190 else
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000191 HasDwarfAccelTables = false;
Eric Christopher20b76a72012-08-23 22:36:40 +0000192 } else
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000193 HasDwarfAccelTables = DwarfAccelTables == Enable ? true : false;
Eric Christopher20b76a72012-08-23 22:36:40 +0000194
Eric Christophercdf218d2012-12-10 19:51:21 +0000195 if (SplitDwarf == Default)
196 HasSplitDwarf = false;
Eric Christopher29424312012-11-12 22:22:20 +0000197 else
Eric Christophercdf218d2012-12-10 19:51:21 +0000198 HasSplitDwarf = SplitDwarf == Enable ? true : false;
Eric Christopher29424312012-11-12 22:22:20 +0000199
Dan Gohman6e681a52010-06-18 15:56:31 +0000200 {
201 NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
Eric Christopher58f41952012-11-19 22:42:15 +0000202 beginModule();
Torok Edwinf8dba242010-04-07 10:44:46 +0000203 }
Bill Wendling2f921f82009-05-15 09:23:25 +0000204}
205DwarfDebug::~DwarfDebug() {
Bill Wendling2f921f82009-05-15 09:23:25 +0000206}
207
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000208// Switch to the specified MCSection and emit an assembler
209// temporary label to it if SymbolStem is specified.
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000210static MCSymbol *emitSectionSym(AsmPrinter *Asm, const MCSection *Section,
Eric Christophera7b61892011-11-07 09:18:38 +0000211 const char *SymbolStem = 0) {
212 Asm->OutStreamer.SwitchSection(Section);
213 if (!SymbolStem) return 0;
214
215 MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem);
216 Asm->OutStreamer.EmitLabel(TmpSym);
217 return TmpSym;
218}
219
Eric Christophere698f532012-12-20 21:58:36 +0000220MCSymbol *DwarfUnits::getStringPoolSym() {
Eric Christopher3bf29fd2012-12-27 02:14:01 +0000221 return Asm->GetTempSymbol(StringPref);
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000222}
223
Eric Christophere698f532012-12-20 21:58:36 +0000224MCSymbol *DwarfUnits::getStringPoolEntry(StringRef Str) {
225 std::pair<MCSymbol*, unsigned> &Entry =
Eric Christopher27614582013-01-08 22:22:06 +0000226 StringPool.GetOrCreateValue(Str).getValue();
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000227 if (Entry.first) return Entry.first;
228
229 Entry.second = NextStringPoolNumber++;
Eric Christopher3bf29fd2012-12-27 02:14:01 +0000230 return Entry.first = Asm->GetTempSymbol(StringPref, Entry.second);
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000231}
232
Eric Christopher2cbd5762013-01-07 19:32:41 +0000233unsigned DwarfUnits::getStringPoolIndex(StringRef Str) {
234 std::pair<MCSymbol*, unsigned> &Entry =
Eric Christopher27614582013-01-08 22:22:06 +0000235 StringPool.GetOrCreateValue(Str).getValue();
Eric Christopher2cbd5762013-01-07 19:32:41 +0000236 if (Entry.first) return Entry.second;
237
238 Entry.second = NextStringPoolNumber++;
239 Entry.first = Asm->GetTempSymbol(StringPref, Entry.second);
240 return Entry.second;
241}
242
Eric Christopher962c9082013-01-15 23:56:56 +0000243unsigned DwarfUnits::getAddrPoolIndex(MCSymbol *Sym) {
244 std::pair<MCSymbol*, unsigned> &Entry = AddressPool[Sym];
245 if (Entry.first) return Entry.second;
246
247 Entry.second = NextAddrPoolNumber++;
248 Entry.first = Sym;
249 return Entry.second;
250}
251
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000252// Define a unique number for the abbreviation.
253//
Eric Christopherc8a310e2012-12-10 23:34:43 +0000254void DwarfUnits::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000255 // Profile the node so that we can make it unique.
256 FoldingSetNodeID ID;
257 Abbrev.Profile(ID);
258
259 // Check the set for priors.
Eric Christopherc8a310e2012-12-10 23:34:43 +0000260 DIEAbbrev *InSet = AbbreviationsSet->GetOrInsertNode(&Abbrev);
Bill Wendling2f921f82009-05-15 09:23:25 +0000261
262 // If it's newly added.
263 if (InSet == &Abbrev) {
264 // Add to abbreviation list.
Eric Christopherc8a310e2012-12-10 23:34:43 +0000265 Abbreviations->push_back(&Abbrev);
Bill Wendling2f921f82009-05-15 09:23:25 +0000266
267 // Assign the vector position + 1 as its number.
Eric Christopherc8a310e2012-12-10 23:34:43 +0000268 Abbrev.setNumber(Abbreviations->size());
Bill Wendling2f921f82009-05-15 09:23:25 +0000269 } else {
270 // Assign existing abbreviation number.
271 Abbrev.setNumber(InSet->getNumber());
272 }
273}
274
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000275// If special LLVM prefix that is used to inform the asm
276// printer to not emit usual symbol prefix before the symbol name is used then
277// return linkage name after skipping this special LLVM prefix.
Devang Patel43ef34d2010-01-05 01:46:14 +0000278static StringRef getRealLinkageName(StringRef LinkageName) {
279 char One = '\1';
280 if (LinkageName.startswith(StringRef(&One, 1)))
281 return LinkageName.substr(1);
282 return LinkageName;
283}
284
Eric Christopherd9843b32011-11-10 19:25:34 +0000285static bool isObjCClass(StringRef Name) {
286 return Name.startswith("+") || Name.startswith("-");
287}
288
289static bool hasObjCCategory(StringRef Name) {
290 if (!isObjCClass(Name)) return false;
291
292 size_t pos = Name.find(')');
293 if (pos != std::string::npos) {
294 if (Name[pos+1] != ' ') return false;
295 return true;
296 }
297 return false;
298}
299
300static void getObjCClassCategory(StringRef In, StringRef &Class,
301 StringRef &Category) {
302 if (!hasObjCCategory(In)) {
303 Class = In.slice(In.find('[') + 1, In.find(' '));
304 Category = "";
305 return;
306 }
307
308 Class = In.slice(In.find('[') + 1, In.find('('));
309 Category = In.slice(In.find('[') + 1, In.find(' '));
310 return;
311}
312
313static StringRef getObjCMethodName(StringRef In) {
314 return In.slice(In.find(' ') + 1, In.find(']'));
315}
316
317// Add the various names to the Dwarf accelerator table names.
318static void addSubprogramNames(CompileUnit *TheCU, DISubprogram SP,
319 DIE* Die) {
320 if (!SP.isDefinition()) return;
Eric Christopher6a841382012-11-19 22:42:10 +0000321
Eric Christopherd9843b32011-11-10 19:25:34 +0000322 TheCU->addAccelName(SP.getName(), Die);
323
324 // If the linkage name is different than the name, go ahead and output
325 // that as well into the name table.
326 if (SP.getLinkageName() != "" && SP.getName() != SP.getLinkageName())
327 TheCU->addAccelName(SP.getLinkageName(), Die);
328
329 // If this is an Objective-C selector name add it to the ObjC accelerator
330 // too.
331 if (isObjCClass(SP.getName())) {
332 StringRef Class, Category;
333 getObjCClassCategory(SP.getName(), Class, Category);
334 TheCU->addAccelObjC(Class, Die);
335 if (Category != "")
336 TheCU->addAccelObjC(Category, Die);
337 // Also add the base method name to the name table.
338 TheCU->addAccelName(getObjCMethodName(SP.getName()), Die);
339 }
340}
341
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000342// Find DIE for the given subprogram and attach appropriate DW_AT_low_pc
343// and DW_AT_high_pc attributes. If there are global variables in this
344// scope then create and insert DIEs for these variables.
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000345DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU,
346 const MDNode *SPNode) {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000347 DIE *SPDie = SPCU->getDIE(SPNode);
Devang Patela37a95e2010-07-07 22:20:57 +0000348
Chris Lattner3a383cb2010-04-05 00:13:49 +0000349 assert(SPDie && "Unable to find subprogram DIE!");
350 DISubprogram SP(SPNode);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000351
Bill Wendlingf720bf62012-11-07 05:19:04 +0000352 // If we're updating an abstract DIE, then we will be adding the children and
353 // object pointer later on. But what we don't want to do is process the
354 // concrete DIE twice.
Devang Patela37a95e2010-07-07 22:20:57 +0000355 if (DIE *AbsSPDIE = AbstractSPDies.lookup(SPNode)) {
Bill Wendlingf720bf62012-11-07 05:19:04 +0000356 // Pick up abstract subprogram DIE.
Devang Patela37a95e2010-07-07 22:20:57 +0000357 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patelf20c4f72011-04-12 22:53:02 +0000358 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin,
359 dwarf::DW_FORM_ref4, AbsSPDIE);
Devang Patela37a95e2010-07-07 22:20:57 +0000360 SPCU->addDie(SPDie);
Bill Wendlingd9bb9b62012-11-07 04:42:18 +0000361 } else {
362 DISubprogram SPDecl = SP.getFunctionDeclaration();
363 if (!SPDecl.isSubprogram()) {
364 // There is not any need to generate specification DIE for a function
365 // defined at compile unit level. If a function is defined inside another
366 // function then gdb prefers the definition at top level and but does not
367 // expect specification DIE in parent function. So avoid creating
368 // specification DIE for a function defined inside a function.
369 if (SP.isDefinition() && !SP.getContext().isCompileUnit() &&
370 !SP.getContext().isFile() &&
371 !isSubprogramContext(SP.getContext())) {
372 SPCU->addFlag(SPDie, dwarf::DW_AT_declaration);
373
374 // Add arguments.
375 DICompositeType SPTy = SP.getType();
376 DIArray Args = SPTy.getTypeArray();
377 unsigned SPTag = SPTy.getTag();
378 if (SPTag == dwarf::DW_TAG_subroutine_type)
379 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
380 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
381 DIType ATy = DIType(Args.getElement(i));
382 SPCU->addType(Arg, ATy);
383 if (ATy.isArtificial())
384 SPCU->addFlag(Arg, dwarf::DW_AT_artificial);
385 if (ATy.isObjectPointer())
386 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_object_pointer,
387 dwarf::DW_FORM_ref4, Arg);
388 SPDie->addChild(Arg);
389 }
390 DIE *SPDeclDie = SPDie;
391 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Eric Christopher6a841382012-11-19 22:42:10 +0000392 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification,
393 dwarf::DW_FORM_ref4, SPDeclDie);
Bill Wendlingd9bb9b62012-11-07 04:42:18 +0000394 SPCU->addDie(SPDie);
395 }
396 }
Devang Patela37a95e2010-07-07 22:20:57 +0000397 }
398
Eric Christopher962c9082013-01-15 23:56:56 +0000399 SPCU->addLabelAddress(SPDie, dwarf::DW_AT_low_pc,
400 Asm->GetTempSymbol("func_begin",
401 Asm->getFunctionNumber()));
402 SPCU->addLabelAddress(SPDie, dwarf::DW_AT_high_pc,
403 Asm->GetTempSymbol("func_end",
404 Asm->getFunctionNumber()));
Chris Lattner3a383cb2010-04-05 00:13:49 +0000405 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
406 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
Devang Patelf20c4f72011-04-12 22:53:02 +0000407 SPCU->addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Devang Patel6efc8e52010-02-06 01:02:37 +0000408
Eric Christopherd9843b32011-11-10 19:25:34 +0000409 // Add name to the name table, we do this here because we're guaranteed
410 // to have concrete versions of our DW_TAG_subprogram nodes.
411 addSubprogramNames(SPCU, SP, SPDie);
Eric Christopher6a841382012-11-19 22:42:10 +0000412
Chris Lattner3a383cb2010-04-05 00:13:49 +0000413 return SPDie;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000414}
415
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000416// Construct new DW_TAG_lexical_block for this scope and attach
417// DW_AT_low_pc/DW_AT_high_pc labels.
Eric Christopher6a841382012-11-19 22:42:10 +0000418DIE *DwarfDebug::constructLexicalScopeDIE(CompileUnit *TheCU,
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000419 LexicalScope *Scope) {
Devang Patel6c74a872010-04-27 19:46:33 +0000420 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
421 if (Scope->isAbstractScope())
422 return ScopeDIE;
423
Devang Patel7e623022011-08-10 20:55:27 +0000424 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Devang Patel6c74a872010-04-27 19:46:33 +0000425 if (Ranges.empty())
426 return 0;
427
Devang Patel7e623022011-08-10 20:55:27 +0000428 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patel6c74a872010-04-27 19:46:33 +0000429 if (Ranges.size() > 1) {
430 // .debug_range section has not been laid out yet. Emit offset in
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000431 // .debug_range as a uint, size 4, for now. emitDIE will handle
Devang Patel6c74a872010-04-27 19:46:33 +0000432 // DW_AT_ranges appropriately.
Devang Patelf20c4f72011-04-12 22:53:02 +0000433 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Eric Christopher6a841382012-11-19 22:42:10 +0000434 DebugRangeSymbols.size()
Chandler Carruth5da3f052012-11-01 09:14:31 +0000435 * Asm->getDataLayout().getPointerSize());
Devang Patel7e623022011-08-10 20:55:27 +0000436 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel6c74a872010-04-27 19:46:33 +0000437 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patel9fc11702010-05-25 23:40:22 +0000438 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
439 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
Devang Patel6c74a872010-04-27 19:46:33 +0000440 }
441 DebugRangeSymbols.push_back(NULL);
442 DebugRangeSymbols.push_back(NULL);
443 return ScopeDIE;
444 }
445
Eric Christopher962c9082013-01-15 23:56:56 +0000446 MCSymbol *Start = getLabelBeforeInsn(RI->first);
447 MCSymbol *End = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000448
Devang Patel9fc11702010-05-25 23:40:22 +0000449 if (End == 0) return 0;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000450
Chris Lattnere13c3722010-03-09 01:58:53 +0000451 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
452 assert(End->isDefined() && "Invalid end label for an inlined scope!");
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000453
Eric Christopher962c9082013-01-15 23:56:56 +0000454 TheCU->addLabelAddress(ScopeDIE, dwarf::DW_AT_low_pc, Start);
455 TheCU->addLabelAddress(ScopeDIE, dwarf::DW_AT_high_pc, End);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000456
457 return ScopeDIE;
458}
459
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000460// This scope represents inlined body of a function. Construct DIE to
461// represent this concrete inlined copy of the function.
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000462DIE *DwarfDebug::constructInlinedScopeDIE(CompileUnit *TheCU,
463 LexicalScope *Scope) {
Devang Patel7e623022011-08-10 20:55:27 +0000464 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000465 assert(Ranges.empty() == false &&
466 "LexicalScope does not have instruction markers!");
Devang Patel6c74a872010-04-27 19:46:33 +0000467
Devang Patelf098ce22011-07-27 00:34:13 +0000468 if (!Scope->getScopeNode())
469 return NULL;
470 DIScope DS(Scope->getScopeNode());
471 DISubprogram InlinedSP = getDISubprogram(DS);
Devang Patelf098ce22011-07-27 00:34:13 +0000472 DIE *OriginDIE = TheCU->getDIE(InlinedSP);
473 if (!OriginDIE) {
Bill Wendling10e0e2e2012-10-30 17:51:02 +0000474 DEBUG(dbgs() << "Unable to find original DIE for an inlined subprogram.");
Devang Patelf098ce22011-07-27 00:34:13 +0000475 return NULL;
476 }
477
Devang Patel7e623022011-08-10 20:55:27 +0000478 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Eric Christopher962c9082013-01-15 23:56:56 +0000479 MCSymbol *StartLabel = getLabelBeforeInsn(RI->first);
480 MCSymbol *EndLabel = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000481
Devang Patel4c6bd662010-07-08 22:39:20 +0000482 if (StartLabel == 0 || EndLabel == 0) {
Bill Wendling10e0e2e2012-10-30 17:51:02 +0000483 llvm_unreachable("Unexpected Start and End labels for an inlined scope!");
Devang Patel6c74a872010-04-27 19:46:33 +0000484 }
Chris Lattnere13c3722010-03-09 01:58:53 +0000485 assert(StartLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000486 "Invalid starting label for an inlined scope!");
Chris Lattnere13c3722010-03-09 01:58:53 +0000487 assert(EndLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000488 "Invalid end label for an inlined scope!");
Devang Patel6c74a872010-04-27 19:46:33 +0000489
Devang Patel73bc1722011-05-05 17:54:26 +0000490 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
Devang Patelf20c4f72011-04-12 22:53:02 +0000491 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
492 dwarf::DW_FORM_ref4, OriginDIE);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000493
Devang Patelf098ce22011-07-27 00:34:13 +0000494 if (Ranges.size() > 1) {
495 // .debug_range section has not been laid out yet. Emit offset in
496 // .debug_range as a uint, size 4, for now. emitDIE will handle
497 // DW_AT_ranges appropriately.
498 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Eric Christopher6a841382012-11-19 22:42:10 +0000499 DebugRangeSymbols.size()
Chandler Carruth5da3f052012-11-01 09:14:31 +0000500 * Asm->getDataLayout().getPointerSize());
Devang Patel7e623022011-08-10 20:55:27 +0000501 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patelf098ce22011-07-27 00:34:13 +0000502 RE = Ranges.end(); RI != RE; ++RI) {
503 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
504 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
505 }
506 DebugRangeSymbols.push_back(NULL);
507 DebugRangeSymbols.push_back(NULL);
508 } else {
Eric Christopher962c9082013-01-15 23:56:56 +0000509 TheCU->addLabelAddress(ScopeDIE, dwarf::DW_AT_low_pc, StartLabel);
510 TheCU->addLabelAddress(ScopeDIE, dwarf::DW_AT_high_pc, EndLabel);
Devang Patelf098ce22011-07-27 00:34:13 +0000511 }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000512
513 InlinedSubprogramDIEs.insert(OriginDIE);
514
515 // Track the start label for this inlined function.
Devang Patelf098ce22011-07-27 00:34:13 +0000516 //.debug_inlined section specification does not clearly state how
517 // to emit inlined scope that is split into multiple instruction ranges.
518 // For now, use first instruction range and emit low_pc/high_pc pair and
519 // corresponding .debug_inlined section entry for this pair.
Devang Patel32cc43c2010-05-07 20:54:48 +0000520 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000521 I = InlineInfo.find(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000522
523 if (I == InlineInfo.end()) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000524 InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000525 InlinedSPNodes.push_back(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000526 } else
Chris Lattner085b6522010-03-09 00:31:02 +0000527 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000528
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000529 DILocation DL(Scope->getInlinedAt());
Eric Christopher0925c622012-03-26 21:38:38 +0000530 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0,
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000531 getOrCreateSourceID(DL.getFilename(), DL.getDirectory()));
Devang Patelf20c4f72011-04-12 22:53:02 +0000532 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000533
Eric Christopher8dda5d02011-12-04 06:02:38 +0000534 // Add name to the name table, we do this here because we're guaranteed
535 // to have concrete versions of our DW_TAG_inlined_subprogram nodes.
536 addSubprogramNames(TheCU, InlinedSP, ScopeDIE);
Eric Christopher6a841382012-11-19 22:42:10 +0000537
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000538 return ScopeDIE;
539}
540
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000541// Construct a DIE for this scope.
Devang Patel3acc70e2011-08-15 22:04:40 +0000542DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) {
Devang Patel3b548aa2010-03-08 20:52:55 +0000543 if (!Scope || !Scope->getScopeNode())
544 return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000545
Manman Ren53f3f9f2013-01-31 20:05:14 +0000546 DIScope DS(Scope->getScopeNode());
547 // Early return to avoid creating dangling variable|scope DIEs.
548 if (!Scope->getInlinedAt() && DS.isSubprogram() && Scope->isAbstractScope() &&
549 !TheCU->getDIE(DS))
550 return NULL;
551
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000552 SmallVector<DIE *, 8> Children;
Eric Christophere3417762012-09-12 23:36:19 +0000553 DIE *ObjectPointer = NULL;
Devang Patel6c622ef2011-03-01 22:58:55 +0000554
555 // Collect arguments for current function.
Devang Patel7e623022011-08-10 20:55:27 +0000556 if (LScopes.isCurrentFunctionScope(Scope))
Devang Patel6c622ef2011-03-01 22:58:55 +0000557 for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i)
558 if (DbgVariable *ArgDV = CurrentFnArguments[i])
Eric Christopher6a841382012-11-19 22:42:10 +0000559 if (DIE *Arg =
Eric Christophere3417762012-09-12 23:36:19 +0000560 TheCU->constructVariableDIE(ArgDV, Scope->isAbstractScope())) {
Devang Patel6c622ef2011-03-01 22:58:55 +0000561 Children.push_back(Arg);
Eric Christophere3417762012-09-12 23:36:19 +0000562 if (ArgDV->isObjectPointer()) ObjectPointer = Arg;
563 }
Devang Patel6c622ef2011-03-01 22:58:55 +0000564
Eric Christopherf84354b2011-10-03 15:49:16 +0000565 // Collect lexical scope children first.
Devang Patel7e623022011-08-10 20:55:27 +0000566 const SmallVector<DbgVariable *, 8> &Variables = ScopeVariables.lookup(Scope);
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000567 for (unsigned i = 0, N = Variables.size(); i < N; ++i)
Eric Christopher6a841382012-11-19 22:42:10 +0000568 if (DIE *Variable =
Eric Christopherc1c8a1b2012-09-21 22:18:52 +0000569 TheCU->constructVariableDIE(Variables[i], Scope->isAbstractScope())) {
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000570 Children.push_back(Variable);
Eric Christopherc1c8a1b2012-09-21 22:18:52 +0000571 if (Variables[i]->isObjectPointer()) ObjectPointer = Variable;
572 }
Devang Patel7e623022011-08-10 20:55:27 +0000573 const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren();
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000574 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
Devang Patel3acc70e2011-08-15 22:04:40 +0000575 if (DIE *Nested = constructScopeDIE(TheCU, Scopes[j]))
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000576 Children.push_back(Nested);
Devang Patel3b548aa2010-03-08 20:52:55 +0000577 DIE *ScopeDIE = NULL;
578 if (Scope->getInlinedAt())
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000579 ScopeDIE = constructInlinedScopeDIE(TheCU, Scope);
Devang Patel3b548aa2010-03-08 20:52:55 +0000580 else if (DS.isSubprogram()) {
Devang Pateld10b2af2010-06-28 20:53:04 +0000581 ProcessedSPNodes.insert(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000582 if (Scope->isAbstractScope()) {
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000583 ScopeDIE = TheCU->getDIE(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000584 // Note down abstract DIE.
585 if (ScopeDIE)
586 AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
587 }
Devang Patel3b548aa2010-03-08 20:52:55 +0000588 else
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000589 ScopeDIE = updateSubprogramScopeDIE(TheCU, DS);
Devang Patel3b548aa2010-03-08 20:52:55 +0000590 }
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000591 else {
592 // There is no need to emit empty lexical block DIE.
593 if (Children.empty())
594 return NULL;
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000595 ScopeDIE = constructLexicalScopeDIE(TheCU, Scope);
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000596 }
Eric Christopher6a841382012-11-19 22:42:10 +0000597
Devang Patel23b2ae62010-03-29 22:59:58 +0000598 if (!ScopeDIE) return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000599
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000600 // Add children
601 for (SmallVector<DIE *, 8>::iterator I = Children.begin(),
602 E = Children.end(); I != E; ++I)
603 ScopeDIE->addChild(*I);
Devang Patel04d2f2d2009-11-24 01:14:22 +0000604
Eric Christophere3417762012-09-12 23:36:19 +0000605 if (DS.isSubprogram() && ObjectPointer != NULL)
606 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_object_pointer,
607 dwarf::DW_FORM_ref4, ObjectPointer);
608
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000609 if (DS.isSubprogram())
Eric Christopherd9843b32011-11-10 19:25:34 +0000610 TheCU->addPubTypes(DISubprogram(DS));
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000611
Eric Christopherd9843b32011-11-10 19:25:34 +0000612 return ScopeDIE;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000613}
614
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000615// Look up the source id with the given directory and source file names.
616// If none currently exists, create a new id and insert it in the
617// SourceIds map. This can update DirectoryNames and SourceFileNames maps
618// as well.
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000619unsigned DwarfDebug::getOrCreateSourceID(StringRef FileName,
Devang Patele01b75c2011-03-24 20:30:50 +0000620 StringRef DirName) {
Devang Patel871d0b12010-09-16 20:57:49 +0000621 // If FE did not provide a file name, then assume stdin.
622 if (FileName.empty())
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000623 return getOrCreateSourceID("<stdin>", StringRef());
Devang Patele01b75c2011-03-24 20:30:50 +0000624
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000625 // TODO: this might not belong here. See if we can factor this better.
626 if (DirName == CompilationDir)
627 DirName = "";
628
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000629 unsigned SrcId = SourceIdMap.size()+1;
Devang Patel871d0b12010-09-16 20:57:49 +0000630
Benjamin Kramer71b19732012-03-11 14:56:26 +0000631 // We look up the file/dir pair by concatenating them with a zero byte.
632 SmallString<128> NamePair;
633 NamePair += DirName;
634 NamePair += '\0'; // Zero bytes are not allowed in paths.
635 NamePair += FileName;
636
637 StringMapEntry<unsigned> &Ent = SourceIdMap.GetOrCreateValue(NamePair, SrcId);
638 if (Ent.getValue() != SrcId)
639 return Ent.getValue();
Bill Wendling2b128d72009-05-20 23:19:06 +0000640
Rafael Espindola67c6ab82010-11-18 02:04:25 +0000641 // Print out a .file directive to specify files for .loc directives.
Benjamin Kramer71b19732012-03-11 14:56:26 +0000642 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, DirName, FileName);
Bill Wendling2b128d72009-05-20 23:19:06 +0000643
644 return SrcId;
645}
646
Eric Christopher48fef592012-12-20 21:58:40 +0000647// Create new CompileUnit for the given metadata node with tag
648// DW_TAG_compile_unit.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000649CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) {
Devang Patel80ae3492009-08-28 23:24:31 +0000650 DICompileUnit DIUnit(N);
Devang Patel2d9caf92009-11-25 17:36:49 +0000651 StringRef FN = DIUnit.getFilename();
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000652 CompilationDir = DIUnit.getDirectory();
Eli Benderskyb42d1462012-12-03 18:45:45 +0000653 // Call this to emit a .file directive if it wasn't emitted for the source
654 // file this CU comes from yet.
655 getOrCreateSourceID(FN, CompilationDir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000656
657 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Eli Benderskyb42d1462012-12-03 18:45:45 +0000658 CompileUnit *NewCU = new CompileUnit(GlobalCUIndexCount++,
Eric Christophere698f532012-12-20 21:58:36 +0000659 DIUnit.getLanguage(), Die, Asm,
660 this, &InfoHolder);
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000661 NewCU->addString(Die, dwarf::DW_AT_producer, DIUnit.getProducer());
Devang Patelf20c4f72011-04-12 22:53:02 +0000662 NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2,
663 DIUnit.getLanguage());
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000664 NewCU->addString(Die, dwarf::DW_AT_name, FN);
Eric Christopherb1b94512012-08-01 18:19:01 +0000665 // 2.17.1 requires that we use DW_AT_low_pc for a single entry point
Eric Christopher962c9082013-01-15 23:56:56 +0000666 // into an entity. We're using 0 (or a NULL label) for this.
667 NewCU->addLabelAddress(Die, dwarf::DW_AT_low_pc, NULL);
Manman Ren4e042a62013-02-05 21:52:47 +0000668
669 // Define start line table label for each Compile Unit.
670 MCSymbol *LineTableStartSym = Asm->GetTempSymbol("line_table_start",
671 NewCU->getUniqueID());
672 Asm->OutStreamer.getContext().setMCLineTableSymbol(LineTableStartSym,
673 NewCU->getUniqueID());
674
Devang Pateld22ed622010-03-22 23:11:36 +0000675 // DW_AT_stmt_list is a offset of line number information for this
Devang Patel4a213872010-08-24 00:06:12 +0000676 // compile unit in debug_line section.
Manman Rend2c95eb2013-02-09 00:41:44 +0000677 // The line table entries are not always emitted in assembly, so it
678 // is not okay to use line_table_start here.
Rafael Espindolad7bdaf52012-06-22 13:24:07 +0000679 if (Asm->MAI->doesDwarfUseRelocationsAcrossSections())
Rafael Espindolaa7558912011-05-04 17:44:06 +0000680 NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Manman Rend2c95eb2013-02-09 00:41:44 +0000681 NewCU->getUniqueID() == 0 ?
682 Asm->GetTempSymbol("section_line") : LineTableStartSym);
Manman Rend2c38d62013-02-06 00:59:41 +0000683 else if (NewCU->getUniqueID() == 0)
684 NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0);
Devang Patelea636392010-08-31 23:50:19 +0000685 else
Manman Ren4e042a62013-02-05 21:52:47 +0000686 NewCU->addDelta(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Eric Christopher74804332013-02-07 21:19:50 +0000687 LineTableStartSym, DwarfLineSectionSym);
Bill Wendling2b128d72009-05-20 23:19:06 +0000688
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000689 if (!CompilationDir.empty())
690 NewCU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000691 if (DIUnit.isOptimized())
Eric Christopherbb69a272012-08-24 01:14:27 +0000692 NewCU->addFlag(Die, dwarf::DW_AT_APPLE_optimized);
Bill Wendling2b128d72009-05-20 23:19:06 +0000693
Devang Patel2d9caf92009-11-25 17:36:49 +0000694 StringRef Flags = DIUnit.getFlags();
695 if (!Flags.empty())
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000696 NewCU->addString(Die, dwarf::DW_AT_APPLE_flags, Flags);
Eric Christopher6a841382012-11-19 22:42:10 +0000697
Nick Lewycky479a8fe2011-10-17 23:27:36 +0000698 if (unsigned RVer = DIUnit.getRunTimeVersion())
Devang Patelf20c4f72011-04-12 22:53:02 +0000699 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendling2b128d72009-05-20 23:19:06 +0000700 dwarf::DW_FORM_data1, RVer);
701
Devang Patel1a0df9a2010-05-10 22:49:55 +0000702 if (!FirstCU)
703 FirstCU = NewCU;
Eric Christopher7a2cdf72013-02-05 07:31:55 +0000704
Eric Christopher411e6742013-02-05 07:32:03 +0000705 if (useSplitDwarf()) {
706 // This should be a unique identifier when we want to build .dwp files.
Eric Christopher7a2cdf72013-02-05 07:31:55 +0000707 NewCU->addUInt(Die, dwarf::DW_AT_GNU_dwo_id, dwarf::DW_FORM_data8, 0);
Eric Christopher411e6742013-02-05 07:32:03 +0000708 // Now construct the skeleton CU associated.
709 constructSkeletonCU(N);
710 }
Eric Christopher9c2ecd92012-11-30 23:59:06 +0000711
Eric Christopherc8a310e2012-12-10 23:34:43 +0000712 InfoHolder.addUnit(NewCU);
713
Devang Patel1a0df9a2010-05-10 22:49:55 +0000714 CUMap.insert(std::make_pair(N, NewCU));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000715 return NewCU;
Devang Patel1a0df9a2010-05-10 22:49:55 +0000716}
717
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000718// Construct subprogram DIE.
Eric Christopher6a841382012-11-19 22:42:10 +0000719void DwarfDebug::constructSubprogramDIE(CompileUnit *TheCU,
Devang Patel1f4f98d2011-08-15 23:36:40 +0000720 const MDNode *N) {
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000721 CompileUnit *&CURef = SPMap[N];
722 if (CURef)
723 return;
724 CURef = TheCU;
725
Devang Patel80ae3492009-08-28 23:24:31 +0000726 DISubprogram SP(N);
Bill Wendling2b128d72009-05-20 23:19:06 +0000727 if (!SP.isDefinition())
728 // This is a method declaration which will be handled while constructing
729 // class type.
Devang Patel0751a282009-06-26 01:49:18 +0000730 return;
Bill Wendling2b128d72009-05-20 23:19:06 +0000731
Devang Patel89543712011-08-15 17:24:54 +0000732 DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP);
Stuart Hastings4bd3dd92010-04-06 21:38:29 +0000733
734 // Add to map.
Devang Patel1a0df9a2010-05-10 22:49:55 +0000735 TheCU->insertDIE(N, SubprogramDie);
Bill Wendling2b128d72009-05-20 23:19:06 +0000736
737 // Add to context owner.
Devang Patelf20c4f72011-04-12 22:53:02 +0000738 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel512001a2009-12-08 23:21:45 +0000739
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +0000740 // Expose as global, if requested.
741 if (GenerateDwarfPubNamesSection)
742 TheCU->addGlobalName(SP.getName(), SubprogramDie);
Bill Wendling2b128d72009-05-20 23:19:06 +0000743}
744
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000745// Collect debug info from named mdnodes such as llvm.dbg.enum and llvm.dbg.ty.
Eric Christopher58f41952012-11-19 22:42:15 +0000746void DwarfDebug::collectInfoFromNamedMDNodes(const Module *M) {
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000747 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.sp"))
748 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
749 const MDNode *N = NMD->getOperand(i);
750 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
751 constructSubprogramDIE(CU, N);
752 }
Eric Christopher6a841382012-11-19 22:42:10 +0000753
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000754 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv"))
755 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
756 const MDNode *N = NMD->getOperand(i);
757 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000758 CU->createGlobalVariableDIE(N);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000759 }
Eric Christopher6a841382012-11-19 22:42:10 +0000760
Devang Patel07bb9ee2011-08-15 23:47:24 +0000761 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
762 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
763 DIType Ty(NMD->getOperand(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000764 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
765 CU->getOrCreateTypeDIE(Ty);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000766 }
Eric Christopher6a841382012-11-19 22:42:10 +0000767
Devang Patel07bb9ee2011-08-15 23:47:24 +0000768 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
769 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
770 DIType Ty(NMD->getOperand(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000771 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
772 CU->getOrCreateTypeDIE(Ty);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000773 }
774}
775
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000776// Collect debug info using DebugInfoFinder.
777// FIXME - Remove this when dragonegg switches to DIBuilder.
Eric Christopher58f41952012-11-19 22:42:15 +0000778bool DwarfDebug::collectLegacyDebugInfo(const Module *M) {
Devang Patel07bb9ee2011-08-15 23:47:24 +0000779 DebugInfoFinder DbgFinder;
780 DbgFinder.processModule(*M);
Eric Christopher6a841382012-11-19 22:42:10 +0000781
Devang Patel07bb9ee2011-08-15 23:47:24 +0000782 bool HasDebugInfo = false;
783 // Scan all the compile-units to see if there are any marked as the main
784 // unit. If not, we do not generate debug info.
785 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
786 E = DbgFinder.compile_unit_end(); I != E; ++I) {
787 if (DICompileUnit(*I).isMain()) {
788 HasDebugInfo = true;
789 break;
790 }
791 }
792 if (!HasDebugInfo) return false;
Eric Christopher6a841382012-11-19 22:42:10 +0000793
Eric Christopher74804332013-02-07 21:19:50 +0000794 // Emit initial sections so we can refer to them later.
795 emitSectionLabels();
796
Devang Patel07bb9ee2011-08-15 23:47:24 +0000797 // Create all the compile unit DIEs.
798 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
799 E = DbgFinder.compile_unit_end(); I != E; ++I)
800 constructCompileUnit(*I);
Eric Christopher6a841382012-11-19 22:42:10 +0000801
Devang Patel07bb9ee2011-08-15 23:47:24 +0000802 // Create DIEs for each global variable.
803 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
804 E = DbgFinder.global_variable_end(); I != E; ++I) {
805 const MDNode *N = *I;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000806 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000807 CU->createGlobalVariableDIE(N);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000808 }
Eric Christopher6a841382012-11-19 22:42:10 +0000809
Devang Patel07bb9ee2011-08-15 23:47:24 +0000810 // Create DIEs for each subprogram.
811 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
812 E = DbgFinder.subprogram_end(); I != E; ++I) {
813 const MDNode *N = *I;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000814 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
815 constructSubprogramDIE(CU, N);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000816 }
817
818 return HasDebugInfo;
819}
820
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000821// Emit all Dwarf sections that should come prior to the content. Create
822// global DIEs and emit initial debug info sections. This is invoked by
823// the target AsmPrinter.
Eric Christopher58f41952012-11-19 22:42:15 +0000824void DwarfDebug::beginModule() {
Devang Patel6c74a872010-04-27 19:46:33 +0000825 if (DisableDebugInfoPrinting)
826 return;
827
Eric Christopher58f41952012-11-19 22:42:15 +0000828 const Module *M = MMI->getModule();
829
Nick Lewycky019d2552011-07-29 03:49:23 +0000830 // If module has named metadata anchors then use them, otherwise scan the
831 // module using debug info finder to collect debug info.
Devang Patele02e5852011-05-03 16:45:22 +0000832 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
833 if (CU_Nodes) {
Eric Christopher74804332013-02-07 21:19:50 +0000834 // Emit initial sections so we can reference labels later.
835 emitSectionLabels();
836
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000837 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
838 DICompileUnit CUNode(CU_Nodes->getOperand(i));
839 CompileUnit *CU = constructCompileUnit(CUNode);
840 DIArray GVs = CUNode.getGlobalVariables();
841 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000842 CU->createGlobalVariableDIE(GVs.getElement(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000843 DIArray SPs = CUNode.getSubprograms();
844 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
845 constructSubprogramDIE(CU, SPs.getElement(i));
846 DIArray EnumTypes = CUNode.getEnumTypes();
847 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
848 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
849 DIArray RetainedTypes = CUNode.getRetainedTypes();
850 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
851 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
852 }
Devang Patel07bb9ee2011-08-15 23:47:24 +0000853 } else if (!collectLegacyDebugInfo(M))
854 return;
Devang Patele02e5852011-05-03 16:45:22 +0000855
Devang Patel07bb9ee2011-08-15 23:47:24 +0000856 collectInfoFromNamedMDNodes(M);
Eric Christopher6a841382012-11-19 22:42:10 +0000857
Chris Lattner7cfa70e2010-04-05 02:19:28 +0000858 // Tell MMI that we have debug info.
859 MMI->setDebugInfoAvailability(true);
Eric Christopher6a841382012-11-19 22:42:10 +0000860
Bill Wendling2b128d72009-05-20 23:19:06 +0000861 // Prime section data.
Chris Lattner5e693ed2009-07-28 03:13:23 +0000862 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendling2b128d72009-05-20 23:19:06 +0000863}
864
Eric Christopher960ac372012-11-22 00:59:49 +0000865// Attach DW_AT_inline attribute with inlined subprogram DIEs.
866void DwarfDebug::computeInlinedDIEs() {
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000867 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
868 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
Eric Christopher735401c2012-11-27 00:13:51 +0000869 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000870 DIE *ISP = *AI;
Devang Patelf20c4f72011-04-12 22:53:02 +0000871 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000872 }
Rafael Espindolae7cc8bf2011-11-12 01:57:54 +0000873 for (DenseMap<const MDNode *, DIE *>::iterator AI = AbstractSPDies.begin(),
Eric Christopher735401c2012-11-27 00:13:51 +0000874 AE = AbstractSPDies.end(); AI != AE; ++AI) {
Rafael Espindolae7cc8bf2011-11-12 01:57:54 +0000875 DIE *ISP = AI->second;
876 if (InlinedSubprogramDIEs.count(ISP))
877 continue;
878 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
879 }
Eric Christopher960ac372012-11-22 00:59:49 +0000880}
881
882// Collect info for variables that were optimized out.
883void DwarfDebug::collectDeadVariables() {
884 const Module *M = MMI->getModule();
885 DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap;
886
887 if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) {
888 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
889 DICompileUnit TheCU(CU_Nodes->getOperand(i));
890 DIArray Subprograms = TheCU.getSubprograms();
891 for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) {
Eric Christopher735401c2012-11-27 00:13:51 +0000892 DISubprogram SP(Subprograms.getElement(i));
893 if (ProcessedSPNodes.count(SP) != 0) continue;
894 if (!SP.Verify()) continue;
895 if (!SP.isDefinition()) continue;
896 DIArray Variables = SP.getVariables();
897 if (Variables.getNumElements() == 0) continue;
Eric Christopher960ac372012-11-22 00:59:49 +0000898
Eric Christopher735401c2012-11-27 00:13:51 +0000899 LexicalScope *Scope =
900 new LexicalScope(NULL, DIDescriptor(SP), NULL, false);
901 DeadFnScopeMap[SP] = Scope;
Eric Christopher960ac372012-11-22 00:59:49 +0000902
Eric Christopher735401c2012-11-27 00:13:51 +0000903 // Construct subprogram DIE and add variables DIEs.
904 CompileUnit *SPCU = CUMap.lookup(TheCU);
905 assert(SPCU && "Unable to find Compile Unit!");
906 constructSubprogramDIE(SPCU, SP);
907 DIE *ScopeDIE = SPCU->getDIE(SP);
908 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
909 DIVariable DV(Variables.getElement(vi));
910 if (!DV.Verify()) continue;
911 DbgVariable *NewVar = new DbgVariable(DV, NULL);
912 if (DIE *VariableDIE =
913 SPCU->constructVariableDIE(NewVar, Scope->isAbstractScope()))
914 ScopeDIE->addChild(VariableDIE);
915 }
Eric Christopher960ac372012-11-22 00:59:49 +0000916 }
917 }
918 }
919 DeleteContainerSeconds(DeadFnScopeMap);
920}
921
922void DwarfDebug::finalizeModuleInfo() {
923 // Collect info for variables that were optimized out.
924 collectDeadVariables();
925
926 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
927 computeInlinedDIEs();
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000928
Eric Christopherb1b94512012-08-01 18:19:01 +0000929 // Emit DW_AT_containing_type attribute to connect types with their
930 // vtable holding type.
Devang Patel89543712011-08-15 17:24:54 +0000931 for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(),
Eric Christopher735401c2012-11-27 00:13:51 +0000932 CUE = CUMap.end(); CUI != CUE; ++CUI) {
Devang Patel89543712011-08-15 17:24:54 +0000933 CompileUnit *TheCU = CUI->second;
934 TheCU->constructContainingTypeDIEs();
Devang Pateleb57c592009-12-03 19:11:07 +0000935 }
936
Eric Christopher960ac372012-11-22 00:59:49 +0000937 // Compute DIE offsets and sizes.
Eric Christopherc8a310e2012-12-10 23:34:43 +0000938 InfoHolder.computeSizeAndOffsets();
939 if (useSplitDwarf())
940 SkeletonHolder.computeSizeAndOffsets();
Eric Christopher960ac372012-11-22 00:59:49 +0000941}
942
943void DwarfDebug::endSections() {
Bill Wendling2b128d72009-05-20 23:19:06 +0000944 // Standard sections final addresses.
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000945 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnera179b522010-04-04 19:25:43 +0000946 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000947 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnera179b522010-04-04 19:25:43 +0000948 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendling2b128d72009-05-20 23:19:06 +0000949
950 // End text sections.
Benjamin Kramer15591272012-10-31 13:45:49 +0000951 for (unsigned I = 0, E = SectionMap.size(); I != E; ++I) {
952 Asm->OutStreamer.SwitchSection(SectionMap[I]);
953 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", I+1));
Bill Wendling2b128d72009-05-20 23:19:06 +0000954 }
Eric Christopher960ac372012-11-22 00:59:49 +0000955}
Bill Wendling2b128d72009-05-20 23:19:06 +0000956
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000957// Emit all Dwarf sections that should come after the content.
Eric Christopher960ac372012-11-22 00:59:49 +0000958void DwarfDebug::endModule() {
959
960 if (!FirstCU) return;
961
962 // End any existing sections.
963 // TODO: Does this need to happen?
964 endSections();
965
966 // Finalize the debug info for the module.
967 finalizeModuleInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000968
Eric Christophercdf218d2012-12-10 19:51:21 +0000969 if (!useSplitDwarf()) {
Eric Christopher95198f502012-11-27 22:43:42 +0000970 // Emit all the DIEs into a debug info section.
971 emitDebugInfo();
Eric Christopher4c9b1192012-11-27 00:41:54 +0000972
Eric Christopher95198f502012-11-27 22:43:42 +0000973 // Corresponding abbreviations into a abbrev section.
974 emitAbbreviations();
975
976 // Emit info into a debug loc section.
977 emitDebugLoc();
978
979 // Emit info into a debug aranges section.
980 emitDebugARanges();
981
982 // Emit info into a debug ranges section.
983 emitDebugRanges();
984
985 // Emit info into a debug macinfo section.
986 emitDebugMacInfo();
987
988 // Emit inline info.
989 // TODO: When we don't need the option anymore we
990 // can remove all of the code that this section
991 // depends upon.
992 if (useDarwinGDBCompat())
993 emitDebugInlineInfo();
994 } else {
Eric Christopherd692c1d2012-12-11 19:42:09 +0000995 // TODO: Fill this in for separated debug sections and separate
Eric Christopher95198f502012-11-27 22:43:42 +0000996 // out information into new sections.
997
Eric Christopher9c2ecd92012-11-30 23:59:06 +0000998 // Emit the debug info section and compile units.
Eric Christopher95198f502012-11-27 22:43:42 +0000999 emitDebugInfo();
Eric Christopher9c2ecd92012-11-30 23:59:06 +00001000 emitDebugInfoDWO();
Eric Christopher95198f502012-11-27 22:43:42 +00001001
1002 // Corresponding abbreviations into a abbrev section.
1003 emitAbbreviations();
Eric Christopher3c5a1912012-12-19 22:02:53 +00001004 emitDebugAbbrevDWO();
Eric Christopher95198f502012-11-27 22:43:42 +00001005
1006 // Emit info into a debug loc section.
1007 emitDebugLoc();
1008
1009 // Emit info into a debug aranges section.
1010 emitDebugARanges();
1011
1012 // Emit info into a debug ranges section.
1013 emitDebugRanges();
1014
1015 // Emit info into a debug macinfo section.
1016 emitDebugMacInfo();
1017
Eric Christopher962c9082013-01-15 23:56:56 +00001018 // Emit DWO addresses.
1019 InfoHolder.emitAddresses(Asm->getObjFileLowering().getDwarfAddrSection());
1020
Eric Christopher95198f502012-11-27 22:43:42 +00001021 // Emit inline info.
1022 // TODO: When we don't need the option anymore we
1023 // can remove all of the code that this section
1024 // depends upon.
1025 if (useDarwinGDBCompat())
1026 emitDebugInlineInfo();
1027 }
Bill Wendling2b128d72009-05-20 23:19:06 +00001028
Eric Christophera876b822012-08-23 07:32:06 +00001029 // Emit info into the dwarf accelerator table sections.
Eric Christopher20b76a72012-08-23 22:36:40 +00001030 if (useDwarfAccelTables()) {
Eric Christopher4996c702011-11-07 09:24:32 +00001031 emitAccelNames();
1032 emitAccelObjC();
1033 emitAccelNamespaces();
1034 emitAccelTypes();
1035 }
Eric Christopher6a841382012-11-19 22:42:10 +00001036
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +00001037 // Emit info into a debug pubnames section, if requested.
1038 if (GenerateDwarfPubNamesSection)
1039 emitDebugPubnames();
1040
Devang Patel04d2f2d2009-11-24 01:14:22 +00001041 // Emit info into a debug pubtypes section.
Eric Christopher77826182012-08-23 07:10:56 +00001042 // TODO: When we don't need the option anymore we can
1043 // remove all of the code that adds to the table.
Eric Christopher20b76a72012-08-23 22:36:40 +00001044 if (useDarwinGDBCompat())
Eric Christopher77826182012-08-23 07:10:56 +00001045 emitDebugPubTypes();
Devang Patel04d2f2d2009-11-24 01:14:22 +00001046
Eric Christopher95198f502012-11-27 22:43:42 +00001047 // Finally emit string information into a string table.
Eric Christopher6e20a162012-11-27 06:49:23 +00001048 emitDebugStr();
Eric Christopher3bf29fd2012-12-27 02:14:01 +00001049 if (useSplitDwarf())
1050 emitDebugStrDWO();
Eric Christopher6e20a162012-11-27 06:49:23 +00001051
Devang Pateld0701282010-08-02 17:32:15 +00001052 // clean up.
Devang Pateleb1bb4e2011-08-16 22:09:43 +00001053 SPMap.clear();
Devang Patel1a0df9a2010-05-10 22:49:55 +00001054 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1055 E = CUMap.end(); I != E; ++I)
1056 delete I->second;
Eric Christopher8afd7b62012-12-10 19:51:18 +00001057
Eric Christopher5b33b3c2013-02-06 21:53:56 +00001058 for (SmallVector<CompileUnit *, 1>::iterator I = SkeletonCUs.begin(),
1059 E = SkeletonCUs.end(); I != E; ++I)
1060 delete *I;
Eric Christopher8afd7b62012-12-10 19:51:18 +00001061
Eric Christopher9c2ecd92012-11-30 23:59:06 +00001062 // Reset these for the next Module if we have one.
1063 FirstCU = NULL;
Bill Wendling2b128d72009-05-20 23:19:06 +00001064}
1065
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001066// Find abstract variable, if any, associated with Var.
Devang Patelbb23a4a2011-08-10 21:50:54 +00001067DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV,
Chris Lattner915c5f92010-04-02 19:42:39 +00001068 DebugLoc ScopeLoc) {
Devang Patelbb23a4a2011-08-10 21:50:54 +00001069 LLVMContext &Ctx = DV->getContext();
1070 // More then one inlined variable corresponds to one abstract variable.
1071 DIVariable Var = cleanseInlinedVariable(DV, Ctx);
Devang Patelcfa8e9d2010-05-07 18:11:54 +00001072 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001073 if (AbsDbgVariable)
1074 return AbsDbgVariable;
1075
Devang Patel7e623022011-08-10 20:55:27 +00001076 LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx));
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001077 if (!Scope)
1078 return NULL;
1079
Devang Patel99819b52011-08-15 19:01:20 +00001080 AbsDbgVariable = new DbgVariable(Var, NULL);
Devang Patel7e623022011-08-10 20:55:27 +00001081 addScopeVariable(Scope, AbsDbgVariable);
Devang Patelcfa8e9d2010-05-07 18:11:54 +00001082 AbstractVariables[Var] = AbsDbgVariable;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001083 return AbsDbgVariable;
1084}
1085
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001086// If Var is a current function argument then add it to CurrentFnArguments list.
Devang Patel6c622ef2011-03-01 22:58:55 +00001087bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
Devang Patel7e623022011-08-10 20:55:27 +00001088 DbgVariable *Var, LexicalScope *Scope) {
1089 if (!LScopes.isCurrentFunctionScope(Scope))
Devang Patel6c622ef2011-03-01 22:58:55 +00001090 return false;
1091 DIVariable DV = Var->getVariable();
1092 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
1093 return false;
1094 unsigned ArgNo = DV.getArgNumber();
Eric Christopher6a841382012-11-19 22:42:10 +00001095 if (ArgNo == 0)
Devang Patel6c622ef2011-03-01 22:58:55 +00001096 return false;
1097
Devang Patel4ab660b2011-03-03 20:02:02 +00001098 size_t Size = CurrentFnArguments.size();
1099 if (Size == 0)
Devang Patel6c622ef2011-03-01 22:58:55 +00001100 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patel63b3e762011-03-03 21:49:41 +00001101 // llvm::Function argument size is not good indicator of how many
Devang Patel34a7ab42011-03-03 20:08:10 +00001102 // arguments does the function have at source level.
1103 if (ArgNo > Size)
Devang Patel4ab660b2011-03-03 20:02:02 +00001104 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel6c622ef2011-03-01 22:58:55 +00001105 CurrentFnArguments[ArgNo - 1] = Var;
1106 return true;
1107}
1108
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001109// Collect variable information from side table maintained by MMI.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001110void
Nick Lewycky019d2552011-07-29 03:49:23 +00001111DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF,
Devang Patel490c8ab2010-05-20 19:57:06 +00001112 SmallPtrSet<const MDNode *, 16> &Processed) {
Devang Patel475d32a2009-10-06 01:26:37 +00001113 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
1114 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
1115 VE = VMap.end(); VI != VE; ++VI) {
Devang Patel32cc43c2010-05-07 20:54:48 +00001116 const MDNode *Var = VI->first;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001117 if (!Var) continue;
Devang Patele0a94bf2010-05-14 21:01:35 +00001118 Processed.insert(Var);
Chris Lattner915c5f92010-04-02 19:42:39 +00001119 DIVariable DV(Var);
1120 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001121
Devang Patel7e623022011-08-10 20:55:27 +00001122 LexicalScope *Scope = LScopes.findLexicalScope(VP.second);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001123
Devang Patelcdb7d442009-11-10 23:20:04 +00001124 // If variable scope is not found then skip this variable.
Chris Lattner915c5f92010-04-02 19:42:39 +00001125 if (Scope == 0)
Devang Patelcdb7d442009-11-10 23:20:04 +00001126 continue;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001127
Devang Patele1c53f22010-05-20 16:36:41 +00001128 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
Devang Patel99819b52011-08-15 19:01:20 +00001129 DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable);
Devang Patel3e4a9652011-08-15 21:24:36 +00001130 RegVar->setFrameIndex(VP.first);
Devang Patel6c622ef2011-03-01 22:58:55 +00001131 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patel7e623022011-08-10 20:55:27 +00001132 addScopeVariable(Scope, RegVar);
Devang Patel99819b52011-08-15 19:01:20 +00001133 if (AbsDbgVariable)
Devang Patel3e4a9652011-08-15 21:24:36 +00001134 AbsDbgVariable->setFrameIndex(VP.first);
Devang Patel475d32a2009-10-06 01:26:37 +00001135 }
Devang Patel490c8ab2010-05-20 19:57:06 +00001136}
Devang Patela3e9c9c2010-03-15 18:33:46 +00001137
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001138// Return true if debug value, encoded by DBG_VALUE instruction, is in a
1139// defined reg.
Devang Patel9fc11702010-05-25 23:40:22 +00001140static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +00001141 assert(MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001142 return MI->getNumOperands() == 3 &&
1143 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
1144 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patel9fc11702010-05-25 23:40:22 +00001145}
1146
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001147// Get .debug_loc entry for the instruction range starting at MI.
Eric Christopher6a841382012-11-19 22:42:10 +00001148static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm,
1149 const MCSymbol *FLabel,
Devang Patel2442a892011-07-08 17:09:57 +00001150 const MCSymbol *SLabel,
1151 const MachineInstr *MI) {
1152 const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata();
1153
1154 if (MI->getNumOperands() != 3) {
1155 MachineLocation MLoc = Asm->getDebugValueLocation(MI);
1156 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
1157 }
1158 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) {
1159 MachineLocation MLoc;
1160 MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
1161 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
1162 }
1163 if (MI->getOperand(0).isImm())
1164 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm());
1165 if (MI->getOperand(0).isFPImm())
1166 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm());
1167 if (MI->getOperand(0).isCImm())
1168 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm());
1169
Craig Topperee4dab52012-02-05 08:31:47 +00001170 llvm_unreachable("Unexpected 3 operand DBG_VALUE instruction!");
Devang Patel2442a892011-07-08 17:09:57 +00001171}
1172
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001173// Find variables for each lexical scope.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001174void
Devang Patel5c0f85c2010-06-25 22:07:34 +00001175DwarfDebug::collectVariableInfo(const MachineFunction *MF,
1176 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001177
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001178 // collection info from MMI table.
Devang Patel490c8ab2010-05-20 19:57:06 +00001179 collectVariableInfoFromMMITable(MF, Processed);
1180
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001181 for (SmallVectorImpl<const MDNode*>::const_iterator
1182 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
1183 ++UVI) {
1184 const MDNode *Var = *UVI;
1185 if (Processed.count(Var))
Devang Patel490c8ab2010-05-20 19:57:06 +00001186 continue;
1187
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001188 // History contains relevant DBG_VALUE instructions for Var and instructions
1189 // clobbering it.
1190 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1191 if (History.empty())
1192 continue;
1193 const MachineInstr *MInsn = History.front();
Devang Patel9fc11702010-05-25 23:40:22 +00001194
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001195 DIVariable DV(Var);
Devang Patel7e623022011-08-10 20:55:27 +00001196 LexicalScope *Scope = NULL;
Devang Patel7a9dedf2010-05-27 20:25:04 +00001197 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
1198 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patel7e623022011-08-10 20:55:27 +00001199 Scope = LScopes.getCurrentFunctionScope();
Devang Patel8fb9fd62011-07-20 22:18:50 +00001200 else {
1201 if (DV.getVersion() <= LLVMDebugVersion9)
Devang Patel7e623022011-08-10 20:55:27 +00001202 Scope = LScopes.findLexicalScope(MInsn->getDebugLoc());
Devang Patel8fb9fd62011-07-20 22:18:50 +00001203 else {
1204 if (MDNode *IA = DV.getInlinedAt())
Devang Patel7e623022011-08-10 20:55:27 +00001205 Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA));
Devang Patel8fb9fd62011-07-20 22:18:50 +00001206 else
Devang Patel7e623022011-08-10 20:55:27 +00001207 Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1)));
Devang Patel8fb9fd62011-07-20 22:18:50 +00001208 }
1209 }
Devang Patel490c8ab2010-05-20 19:57:06 +00001210 // If variable scope is not found then skip this variable.
Devang Patelfbd6c452010-05-21 00:10:20 +00001211 if (!Scope)
Devang Patel490c8ab2010-05-20 19:57:06 +00001212 continue;
1213
1214 Processed.insert(DV);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001215 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patel99819b52011-08-15 19:01:20 +00001216 DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc());
1217 DbgVariable *RegVar = new DbgVariable(DV, AbsVar);
Devang Patel6c622ef2011-03-01 22:58:55 +00001218 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patel7e623022011-08-10 20:55:27 +00001219 addScopeVariable(Scope, RegVar);
Devang Patel99819b52011-08-15 19:01:20 +00001220 if (AbsVar)
Devang Patel3e4a9652011-08-15 21:24:36 +00001221 AbsVar->setMInsn(MInsn);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001222
Eric Christophercc10d202012-10-08 20:48:54 +00001223 // Simplify ranges that are fully coalesced.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001224 if (History.size() <= 1 || (History.size() == 2 &&
1225 MInsn->isIdenticalTo(History.back()))) {
Devang Patel3e4a9652011-08-15 21:24:36 +00001226 RegVar->setMInsn(MInsn);
Devang Patel9fc11702010-05-25 23:40:22 +00001227 continue;
1228 }
1229
Eric Christopher59cc0712013-01-28 17:33:26 +00001230 // Handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001231 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001232
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001233 for (SmallVectorImpl<const MachineInstr*>::const_iterator
1234 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
1235 const MachineInstr *Begin = *HI;
1236 assert(Begin->isDebugValue() && "Invalid History entry");
Jakob Stoklund Olesen9c057ee2011-03-22 00:21:41 +00001237
Devang Patele7181b52011-06-01 23:00:17 +00001238 // Check if DBG_VALUE is truncating a range.
1239 if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg()
1240 && !Begin->getOperand(0).getReg())
1241 continue;
1242
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001243 // Compute the range for a register location.
1244 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
1245 const MCSymbol *SLabel = 0;
1246
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001247 if (HI + 1 == HE)
1248 // If Begin is the last instruction in History then its value is valid
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001249 // until the end of the function.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001250 SLabel = FunctionEndSym;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001251 else {
1252 const MachineInstr *End = HI[1];
Eric Christopher6a841382012-11-19 22:42:10 +00001253 DEBUG(dbgs() << "DotDebugLoc Pair:\n"
Devang Patel53b050a2011-07-07 21:44:42 +00001254 << "\t" << *Begin << "\t" << *End << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001255 if (End->isDebugValue())
1256 SLabel = getLabelBeforeInsn(End);
1257 else {
1258 // End is a normal instruction clobbering the range.
1259 SLabel = getLabelAfterInsn(End);
1260 assert(SLabel && "Forgot label after clobber instruction");
1261 ++HI;
1262 }
1263 }
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001264
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001265 // The value is valid until the next DBG_VALUE or clobber.
Eric Christopher365d0832011-12-16 23:42:31 +00001266 DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel,
1267 Begin));
Devang Patel9fc11702010-05-25 23:40:22 +00001268 }
1269 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patela3e9c9c2010-03-15 18:33:46 +00001270 }
Devang Patele0a94bf2010-05-14 21:01:35 +00001271
1272 // Collect info for variables that were optimized out.
Devang Patel59e27c52011-08-19 23:28:12 +00001273 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
1274 DIArray Variables = DISubprogram(FnScope->getScopeNode()).getVariables();
1275 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1276 DIVariable DV(Variables.getElement(i));
1277 if (!DV || !DV.Verify() || !Processed.insert(DV))
1278 continue;
1279 if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext()))
1280 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patele0a94bf2010-05-14 21:01:35 +00001281 }
Devang Patel9fc11702010-05-25 23:40:22 +00001282}
Devang Patele0a94bf2010-05-14 21:01:35 +00001283
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001284// Return Label preceding the instruction.
Eric Christopher962c9082013-01-15 23:56:56 +00001285MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001286 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1287 assert(Label && "Didn't insert label before instruction");
1288 return Label;
Devang Patel9fc11702010-05-25 23:40:22 +00001289}
1290
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001291// Return Label immediately following the instruction.
Eric Christopher962c9082013-01-15 23:56:56 +00001292MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001293 return LabelsAfterInsn.lookup(MI);
Devang Patel475d32a2009-10-06 01:26:37 +00001294}
1295
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001296// Process beginning of an instruction.
Devang Patelb5694e72010-10-26 17:49:02 +00001297void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001298 // Check if source location changes, but ignore DBG_VALUE locations.
1299 if (!MI->isDebugValue()) {
1300 DebugLoc DL = MI->getDebugLoc();
1301 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
Eric Christopheraec8a822012-04-05 20:39:05 +00001302 unsigned Flags = 0;
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001303 PrevInstLoc = DL;
Devang Patel34a66202011-05-11 19:22:19 +00001304 if (DL == PrologEndLoc) {
1305 Flags |= DWARF2_FLAG_PROLOGUE_END;
1306 PrologEndLoc = DebugLoc();
1307 }
Eric Christopheraec8a822012-04-05 20:39:05 +00001308 if (PrologEndLoc.isUnknown())
1309 Flags |= DWARF2_FLAG_IS_STMT;
1310
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001311 if (!DL.isUnknown()) {
1312 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Devang Patel34a66202011-05-11 19:22:19 +00001313 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001314 } else
Devang Patel34a66202011-05-11 19:22:19 +00001315 recordSourceLine(0, 0, 0, 0);
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001316 }
Devang Patel9fc11702010-05-25 23:40:22 +00001317 }
Devang Patel23b2ae62010-03-29 22:59:58 +00001318
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001319 // Insert labels where requested.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001320 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1321 LabelsBeforeInsn.find(MI);
1322
1323 // No label needed.
1324 if (I == LabelsBeforeInsn.end())
1325 return;
1326
1327 // Label already assigned.
1328 if (I->second)
Devang Patel002d54d2010-05-26 19:37:24 +00001329 return;
Devang Patelbd477be2010-03-29 17:20:31 +00001330
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001331 if (!PrevLabel) {
Devang Patelacc32a52010-05-26 21:23:46 +00001332 PrevLabel = MMI->getContext().CreateTempSymbol();
1333 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel002d54d2010-05-26 19:37:24 +00001334 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001335 I->second = PrevLabel;
Devang Patel8db360d2009-10-06 01:50:42 +00001336}
1337
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001338// Process end of an instruction.
Devang Patelb5694e72010-10-26 17:49:02 +00001339void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001340 // Don't create a new label after DBG_VALUE instructions.
1341 // They don't generate code.
1342 if (!MI->isDebugValue())
1343 PrevLabel = 0;
1344
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001345 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1346 LabelsAfterInsn.find(MI);
1347
1348 // No label needed.
1349 if (I == LabelsAfterInsn.end())
1350 return;
1351
1352 // Label already assigned.
1353 if (I->second)
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001354 return;
1355
1356 // We need a label after this instruction.
1357 if (!PrevLabel) {
1358 PrevLabel = MMI->getContext().CreateTempSymbol();
1359 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel3ebd8932010-04-08 16:50:29 +00001360 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001361 I->second = PrevLabel;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001362}
1363
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001364// Each LexicalScope has first instruction and last instruction to mark
1365// beginning and end of a scope respectively. Create an inverse map that list
1366// scopes starts (and ends) with an instruction. One instruction may start (or
1367// end) multiple scopes. Ignore scopes that are not reachable.
Devang Patel359b0132010-04-08 18:43:56 +00001368void DwarfDebug::identifyScopeMarkers() {
Devang Patel7e623022011-08-10 20:55:27 +00001369 SmallVector<LexicalScope *, 4> WorkList;
1370 WorkList.push_back(LScopes.getCurrentFunctionScope());
Devang Patel7771b7c2010-01-20 02:05:23 +00001371 while (!WorkList.empty()) {
Devang Patel7e623022011-08-10 20:55:27 +00001372 LexicalScope *S = WorkList.pop_back_val();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001373
Devang Patel7e623022011-08-10 20:55:27 +00001374 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001375 if (!Children.empty())
Devang Patel7e623022011-08-10 20:55:27 +00001376 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel7771b7c2010-01-20 02:05:23 +00001377 SE = Children.end(); SI != SE; ++SI)
1378 WorkList.push_back(*SI);
1379
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001380 if (S->isAbstractScope())
1381 continue;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001382
Devang Patel7e623022011-08-10 20:55:27 +00001383 const SmallVector<InsnRange, 4> &Ranges = S->getRanges();
Devang Patel6c74a872010-04-27 19:46:33 +00001384 if (Ranges.empty())
1385 continue;
Devang Patel7e623022011-08-10 20:55:27 +00001386 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel6c74a872010-04-27 19:46:33 +00001387 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patel7e623022011-08-10 20:55:27 +00001388 assert(RI->first && "InsnRange does not have first instruction!");
1389 assert(RI->second && "InsnRange does not have second instruction!");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001390 requestLabelBeforeInsn(RI->first);
1391 requestLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +00001392 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001393 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001394}
1395
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001396// Get MDNode for DebugLoc's scope.
Devang Patel589845d2011-05-09 22:14:49 +00001397static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) {
1398 if (MDNode *InlinedAt = DL.getInlinedAt(Ctx))
1399 return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx);
1400 return DL.getScope(Ctx);
1401}
1402
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001403// Walk up the scope chain of given debug loc and find line number info
1404// for the function.
Devang Patel34a66202011-05-11 19:22:19 +00001405static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) {
1406 const MDNode *Scope = getScopeNode(DL, Ctx);
1407 DISubprogram SP = getDISubprogram(Scope);
Eric Christopher34164192012-04-03 00:43:49 +00001408 if (SP.Verify()) {
1409 // Check for number of operands since the compatibility is
1410 // cheap here.
Eric Christopherb81e2b42012-04-03 17:55:42 +00001411 if (SP->getNumOperands() > 19)
Eric Christopher34164192012-04-03 00:43:49 +00001412 return DebugLoc::get(SP.getScopeLineNumber(), 0, SP);
1413 else
1414 return DebugLoc::get(SP.getLineNumber(), 0, SP);
1415 }
1416
Devang Patel34a66202011-05-11 19:22:19 +00001417 return DebugLoc();
1418}
1419
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001420// Gather pre-function debug information. Assumes being called immediately
1421// after the function entry point has been emitted.
Chris Lattner76555b52010-01-26 23:18:02 +00001422void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner196dbdc2010-04-05 03:52:55 +00001423 if (!MMI->hasDebugInfo()) return;
Devang Patel7e623022011-08-10 20:55:27 +00001424 LScopes.initialize(*MF);
1425 if (LScopes.empty()) return;
1426 identifyScopeMarkers();
Devang Patel4598eb62009-10-06 18:37:31 +00001427
Manman Ren4e042a62013-02-05 21:52:47 +00001428 // Set DwarfCompileUnitID in MCContext to the Compile Unit this function
1429 // belongs to.
1430 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
1431 CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode());
1432 assert(TheCU && "Unable to find compile unit!");
1433 Asm->OutStreamer.getContext().setDwarfCompileUnitID(TheCU->getUniqueID());
1434
Devang Patel6c74a872010-04-27 19:46:33 +00001435 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1436 Asm->getFunctionNumber());
Bill Wendling2b128d72009-05-20 23:19:06 +00001437 // Assumes in correct section after the entry point.
Devang Patel6c74a872010-04-27 19:46:33 +00001438 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendling2b128d72009-05-20 23:19:06 +00001439
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001440 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1441
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001442 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001443 // LiveUserVar - Map physreg numbers to the MDNode they contain.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001444 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1445
Devang Patel002d54d2010-05-26 19:37:24 +00001446 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001447 I != E; ++I) {
1448 bool AtBlockEntry = true;
Devang Patel002d54d2010-05-26 19:37:24 +00001449 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1450 II != IE; ++II) {
1451 const MachineInstr *MI = II;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001452
Devang Patel002d54d2010-05-26 19:37:24 +00001453 if (MI->isDebugValue()) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +00001454 assert(MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001455
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001456 // Keep track of user variables.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001457 const MDNode *Var =
1458 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001459
1460 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001461 if (isDbgValueInDefinedReg(MI))
1462 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1463
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001464 // Check the history of this variable.
1465 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1466 if (History.empty()) {
1467 UserVariables.push_back(Var);
1468 // The first mention of a function argument gets the FunctionBeginSym
1469 // label, so arguments are visible when breaking at function entry.
1470 DIVariable DV(Var);
1471 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1472 DISubprogram(getDISubprogram(DV.getContext()))
1473 .describes(MF->getFunction()))
1474 LabelsBeforeInsn[MI] = FunctionBeginSym;
1475 } else {
1476 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1477 const MachineInstr *Prev = History.back();
1478 if (Prev->isDebugValue()) {
1479 // Coalesce identical entries at the end of History.
1480 if (History.size() >= 2 &&
Devang Patelb7a328e2011-07-07 00:14:27 +00001481 Prev->isIdenticalTo(History[History.size() - 2])) {
Eric Christopher85a495e2012-10-08 20:48:49 +00001482 DEBUG(dbgs() << "Coalescing identical DBG_VALUE entries:\n"
Eric Christopher6a841382012-11-19 22:42:10 +00001483 << "\t" << *Prev
Devang Patelb7a328e2011-07-07 00:14:27 +00001484 << "\t" << *History[History.size() - 2] << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001485 History.pop_back();
Devang Patelb7a328e2011-07-07 00:14:27 +00001486 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001487
1488 // Terminate old register assignments that don't reach MI;
1489 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1490 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1491 isDbgValueInDefinedReg(Prev)) {
1492 // Previous register assignment needs to terminate at the end of
1493 // its basic block.
1494 MachineBasicBlock::const_iterator LastMI =
1495 PrevMBB->getLastNonDebugInstr();
Devang Patelb7a328e2011-07-07 00:14:27 +00001496 if (LastMI == PrevMBB->end()) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001497 // Drop DBG_VALUE for empty range.
Eric Christopher85a495e2012-10-08 20:48:49 +00001498 DEBUG(dbgs() << "Dropping DBG_VALUE for empty range:\n"
Devang Patelb7a328e2011-07-07 00:14:27 +00001499 << "\t" << *Prev << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001500 History.pop_back();
Devang Patelb7a328e2011-07-07 00:14:27 +00001501 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001502 else {
1503 // Terminate after LastMI.
1504 History.push_back(LastMI);
1505 }
1506 }
1507 }
1508 }
1509 History.push_back(MI);
Devang Patel002d54d2010-05-26 19:37:24 +00001510 } else {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001511 // Not a DBG_VALUE instruction.
1512 if (!MI->isLabel())
1513 AtBlockEntry = false;
1514
Eric Christopher133195782012-10-04 20:46:14 +00001515 // First known non-DBG_VALUE and non-frame setup location marks
1516 // the beginning of the function body.
1517 if (!MI->getFlag(MachineInstr::FrameSetup) &&
1518 (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown()))
Devang Patel34a66202011-05-11 19:22:19 +00001519 PrologEndLoc = MI->getDebugLoc();
1520
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001521 // Check if the instruction clobbers any registers with debug vars.
1522 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1523 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1524 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1525 continue;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +00001526 for (MCRegAliasIterator AI(MOI->getReg(), TRI, true);
1527 AI.isValid(); ++AI) {
1528 unsigned Reg = *AI;
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001529 const MDNode *Var = LiveUserVar[Reg];
1530 if (!Var)
1531 continue;
1532 // Reg is now clobbered.
1533 LiveUserVar[Reg] = 0;
1534
1535 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001536 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
1537 if (HistI == DbgValues.end())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001538 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001539 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
1540 if (History.empty())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001541 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001542 const MachineInstr *Prev = History.back();
1543 // Sanity-check: Register assignments are terminated at the end of
1544 // their block.
1545 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
1546 continue;
1547 // Is the variable still in Reg?
1548 if (!isDbgValueInDefinedReg(Prev) ||
1549 Prev->getOperand(0).getReg() != Reg)
1550 continue;
1551 // Var is clobbered. Make sure the next instruction gets a label.
1552 History.push_back(MI);
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001553 }
1554 }
Devang Patel002d54d2010-05-26 19:37:24 +00001555 }
Devang Patel002d54d2010-05-26 19:37:24 +00001556 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001557 }
1558
1559 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
1560 I != E; ++I) {
1561 SmallVectorImpl<const MachineInstr*> &History = I->second;
1562 if (History.empty())
1563 continue;
1564
1565 // Make sure the final register assignments are terminated.
1566 const MachineInstr *Prev = History.back();
1567 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
1568 const MachineBasicBlock *PrevMBB = Prev->getParent();
Eric Christopher6a841382012-11-19 22:42:10 +00001569 MachineBasicBlock::const_iterator LastMI =
Devang Patel784077e2011-08-10 23:58:09 +00001570 PrevMBB->getLastNonDebugInstr();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001571 if (LastMI == PrevMBB->end())
1572 // Drop DBG_VALUE for empty range.
1573 History.pop_back();
1574 else {
1575 // Terminate after LastMI.
1576 History.push_back(LastMI);
1577 }
1578 }
1579 // Request labels for the full history.
1580 for (unsigned i = 0, e = History.size(); i != e; ++i) {
1581 const MachineInstr *MI = History[i];
1582 if (MI->isDebugValue())
1583 requestLabelBeforeInsn(MI);
1584 else
1585 requestLabelAfterInsn(MI);
1586 }
1587 }
Devang Patel002d54d2010-05-26 19:37:24 +00001588
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001589 PrevInstLoc = DebugLoc();
Devang Patel002d54d2010-05-26 19:37:24 +00001590 PrevLabel = FunctionBeginSym;
Devang Patel34a66202011-05-11 19:22:19 +00001591
1592 // Record beginning of function.
1593 if (!PrologEndLoc.isUnknown()) {
1594 DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc,
1595 MF->getFunction()->getContext());
1596 recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(),
1597 FnStartDL.getScope(MF->getFunction()->getContext()),
David Blaikie67cb31e2012-12-04 22:02:33 +00001598 // We'd like to list the prologue as "not statements" but GDB behaves
1599 // poorly if we do that. Revisit this with caution/GDB (7.5+) testing.
David Blaikie5a773bb2012-12-04 21:05:36 +00001600 DWARF2_FLAG_IS_STMT);
Devang Patel34a66202011-05-11 19:22:19 +00001601 }
Bill Wendling2b128d72009-05-20 23:19:06 +00001602}
1603
Devang Patel7e623022011-08-10 20:55:27 +00001604void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) {
1605// SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1606 ScopeVariables[LS].push_back(Var);
1607// Vars.push_back(Var);
1608}
1609
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001610// Gather and emit post-function debug information.
Chris Lattner76555b52010-01-26 23:18:02 +00001611void DwarfDebug::endFunction(const MachineFunction *MF) {
Devang Patel7e623022011-08-10 20:55:27 +00001612 if (!MMI->hasDebugInfo() || LScopes.empty()) return;
Devang Patel2904aa92009-11-12 19:02:56 +00001613
Devang Patel7e623022011-08-10 20:55:27 +00001614 // Define end label for subprogram.
1615 FunctionEndSym = Asm->GetTempSymbol("func_end",
1616 Asm->getFunctionNumber());
1617 // Assumes in correct section after the entry point.
1618 Asm->OutStreamer.EmitLabel(FunctionEndSym);
Manman Ren4e042a62013-02-05 21:52:47 +00001619 // Set DwarfCompileUnitID in MCContext to default value.
1620 Asm->OutStreamer.getContext().setDwarfCompileUnitID(0);
Eric Christopher6a841382012-11-19 22:42:10 +00001621
Devang Patel7e623022011-08-10 20:55:27 +00001622 SmallPtrSet<const MDNode *, 16> ProcessedVars;
1623 collectVariableInfo(MF, ProcessedVars);
Eric Christopher6a841382012-11-19 22:42:10 +00001624
Devang Patel3acc70e2011-08-15 22:04:40 +00001625 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
Devang Pateleb1bb4e2011-08-16 22:09:43 +00001626 CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode());
Nick Lewycky654f5ce2011-10-26 22:55:33 +00001627 assert(TheCU && "Unable to find compile unit!");
Devang Patel3acc70e2011-08-15 22:04:40 +00001628
Devang Patel7e623022011-08-10 20:55:27 +00001629 // Construct abstract scopes.
Devang Patel44403472011-08-12 18:10:19 +00001630 ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList();
1631 for (unsigned i = 0, e = AList.size(); i != e; ++i) {
1632 LexicalScope *AScope = AList[i];
1633 DISubprogram SP(AScope->getScopeNode());
Devang Patel7e623022011-08-10 20:55:27 +00001634 if (SP.Verify()) {
1635 // Collect info for variables that were optimized out.
Devang Patel59e27c52011-08-19 23:28:12 +00001636 DIArray Variables = SP.getVariables();
1637 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1638 DIVariable DV(Variables.getElement(i));
1639 if (!DV || !DV.Verify() || !ProcessedVars.insert(DV))
1640 continue;
Alexey Samsonov39602782012-07-06 08:45:08 +00001641 // Check that DbgVariable for DV wasn't created earlier, when
1642 // findAbstractVariable() was called for inlined instance of DV.
1643 LLVMContext &Ctx = DV->getContext();
1644 DIVariable CleanDV = cleanseInlinedVariable(DV, Ctx);
1645 if (AbstractVariables.lookup(CleanDV))
1646 continue;
Devang Patel59e27c52011-08-19 23:28:12 +00001647 if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext()))
1648 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel5c0f85c2010-06-25 22:07:34 +00001649 }
1650 }
Devang Patel44403472011-08-12 18:10:19 +00001651 if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0)
Devang Patel3acc70e2011-08-15 22:04:40 +00001652 constructScopeDIE(TheCU, AScope);
Bill Wendling2b128d72009-05-20 23:19:06 +00001653 }
Eric Christopher6a841382012-11-19 22:42:10 +00001654
Devang Patel3acc70e2011-08-15 22:04:40 +00001655 DIE *CurFnDIE = constructScopeDIE(TheCU, FnScope);
Eric Christopher6a841382012-11-19 22:42:10 +00001656
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001657 if (!MF->getTarget().Options.DisableFramePointerElim(*MF))
Eric Christopherbb69a272012-08-24 01:14:27 +00001658 TheCU->addFlag(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr);
Devang Patel3acc70e2011-08-15 22:04:40 +00001659
Devang Patel7e623022011-08-10 20:55:27 +00001660 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
1661 MMI->getFrameMoves()));
Bill Wendling2b128d72009-05-20 23:19:06 +00001662
Bill Wendling2b128d72009-05-20 23:19:06 +00001663 // Clear debug info
Devang Patel7e623022011-08-10 20:55:27 +00001664 for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator
1665 I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I)
1666 DeleteContainerPointers(I->second);
1667 ScopeVariables.clear();
Devang Patelad45d912011-04-22 18:09:57 +00001668 DeleteContainerPointers(CurrentFnArguments);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001669 UserVariables.clear();
1670 DbgValues.clear();
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00001671 AbstractVariables.clear();
Devang Patel6c74a872010-04-27 19:46:33 +00001672 LabelsBeforeInsn.clear();
1673 LabelsAfterInsn.clear();
Devang Patel12563b32010-04-16 23:33:45 +00001674 PrevLabel = NULL;
Bill Wendling2b128d72009-05-20 23:19:06 +00001675}
1676
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001677// Register a source line with debug info. Returns the unique label that was
1678// emitted and which provides correspondence to the source line list.
Devang Patel34a66202011-05-11 19:22:19 +00001679void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S,
1680 unsigned Flags) {
Devang Patel2d9caf92009-11-25 17:36:49 +00001681 StringRef Fn;
Devang Patele01b75c2011-03-24 20:30:50 +00001682 StringRef Dir;
Dan Gohman50849c62010-05-05 23:41:32 +00001683 unsigned Src = 1;
1684 if (S) {
1685 DIDescriptor Scope(S);
Devang Patel2089d162009-10-05 18:03:19 +00001686
Dan Gohman50849c62010-05-05 23:41:32 +00001687 if (Scope.isCompileUnit()) {
1688 DICompileUnit CU(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001689 Fn = CU.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001690 Dir = CU.getDirectory();
Devang Patelc4b69052010-10-28 17:30:52 +00001691 } else if (Scope.isFile()) {
1692 DIFile F(S);
Devang Patelc4b69052010-10-28 17:30:52 +00001693 Fn = F.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001694 Dir = F.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001695 } else if (Scope.isSubprogram()) {
1696 DISubprogram SP(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001697 Fn = SP.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001698 Dir = SP.getDirectory();
Eric Christopher6647b832011-10-11 22:59:11 +00001699 } else if (Scope.isLexicalBlockFile()) {
1700 DILexicalBlockFile DBF(S);
1701 Fn = DBF.getFilename();
1702 Dir = DBF.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001703 } else if (Scope.isLexicalBlock()) {
1704 DILexicalBlock DB(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001705 Fn = DB.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001706 Dir = DB.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001707 } else
Craig Topperee4dab52012-02-05 08:31:47 +00001708 llvm_unreachable("Unexpected scope info");
Dan Gohman50849c62010-05-05 23:41:32 +00001709
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001710 Src = getOrCreateSourceID(Fn, Dir);
Dan Gohman50849c62010-05-05 23:41:32 +00001711 }
Nick Lewycky019d2552011-07-29 03:49:23 +00001712 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);
Bill Wendling2b128d72009-05-20 23:19:06 +00001713}
1714
Bill Wendling806535f2009-05-20 23:22:40 +00001715//===----------------------------------------------------------------------===//
1716// Emit Methods
1717//===----------------------------------------------------------------------===//
1718
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001719// Compute the size and offset of a DIE.
Jim Grosbach00e9c612009-11-22 19:20:36 +00001720unsigned
Eric Christopherc8a310e2012-12-10 23:34:43 +00001721DwarfUnits::computeSizeAndOffset(DIE *Die, unsigned Offset) {
Bill Wendling480ff322009-05-20 23:21:38 +00001722 // Get the children.
1723 const std::vector<DIE *> &Children = Die->getChildren();
1724
Bill Wendling480ff322009-05-20 23:21:38 +00001725 // Record the abbreviation.
Devang Patel930143b2009-11-21 02:48:08 +00001726 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling480ff322009-05-20 23:21:38 +00001727
1728 // Get the abbreviation for this DIE.
1729 unsigned AbbrevNumber = Die->getAbbrevNumber();
Eric Christopherc8a310e2012-12-10 23:34:43 +00001730 const DIEAbbrev *Abbrev = Abbreviations->at(AbbrevNumber - 1);
Bill Wendling480ff322009-05-20 23:21:38 +00001731
1732 // Set DIE offset
1733 Die->setOffset(Offset);
1734
1735 // Start the size with the size of abbreviation code.
Chris Lattner7b26fce2009-08-22 20:48:53 +00001736 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00001737
1738 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1739 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1740
1741 // Size the DIE attribute values.
1742 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1743 // Size attribute value.
Chris Lattner5a00dea2010-04-05 00:18:22 +00001744 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling480ff322009-05-20 23:21:38 +00001745
1746 // Size the DIE children if any.
1747 if (!Children.empty()) {
1748 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1749 "Children flag not set");
1750
1751 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Eric Christopher1f0cbb82012-11-20 22:14:13 +00001752 Offset = computeSizeAndOffset(Children[j], Offset);
Bill Wendling480ff322009-05-20 23:21:38 +00001753
1754 // End of children marker.
1755 Offset += sizeof(int8_t);
1756 }
1757
1758 Die->setSize(Offset - Die->getOffset());
1759 return Offset;
1760}
1761
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001762// Compute the size and offset of all the DIEs.
Eric Christopherc8a310e2012-12-10 23:34:43 +00001763void DwarfUnits::computeSizeAndOffsets() {
1764 for (SmallVector<CompileUnit *, 1>::iterator I = CUs.begin(),
1765 E = CUs.end(); I != E; ++I) {
Eric Christopher9c2ecd92012-11-30 23:59:06 +00001766 unsigned Offset =
1767 sizeof(int32_t) + // Length of Compilation Unit Info
1768 sizeof(int16_t) + // DWARF version number
1769 sizeof(int32_t) + // Offset Into Abbrev. Section
1770 sizeof(int8_t); // Pointer Size (in bytes)
1771
Eric Christopherc8a310e2012-12-10 23:34:43 +00001772 computeSizeAndOffset((*I)->getCUDie(), Offset);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001773 }
Bill Wendling480ff322009-05-20 23:21:38 +00001774}
1775
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001776// Emit initial Dwarf sections with a label at the start of each one.
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001777void DwarfDebug::emitSectionLabels() {
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001778 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00001779
Bill Wendling480ff322009-05-20 23:21:38 +00001780 // Dwarf sections base addresses.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001781 DwarfInfoSectionSym =
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001782 emitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001783 DwarfAbbrevSectionSym =
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001784 emitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Eric Christopher3c5a1912012-12-19 22:02:53 +00001785 if (useSplitDwarf())
1786 DwarfAbbrevDWOSectionSym =
1787 emitSectionSym(Asm, TLOF.getDwarfAbbrevDWOSection(),
1788 "section_abbrev_dwo");
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001789 emitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001790
Chris Lattner6629ca92010-04-04 22:59:04 +00001791 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001792 emitSectionSym(Asm, MacroInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00001793
Eric Christopher74804332013-02-07 21:19:50 +00001794 DwarfLineSectionSym =
1795 emitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001796 emitSectionSym(Asm, TLOF.getDwarfLocSection());
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +00001797 if (GenerateDwarfPubNamesSection)
1798 emitSectionSym(Asm, TLOF.getDwarfPubNamesSection());
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001799 emitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001800 DwarfStrSectionSym =
Eric Christopher3bf29fd2012-12-27 02:14:01 +00001801 emitSectionSym(Asm, TLOF.getDwarfStrSection(), "info_string");
1802 if (useSplitDwarf())
1803 DwarfStrDWOSectionSym =
1804 emitSectionSym(Asm, TLOF.getDwarfStrDWOSection(), "skel_string");
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001805 DwarfDebugRangeSectionSym = emitSectionSym(Asm, TLOF.getDwarfRangesSection(),
Devang Patel12563b32010-04-16 23:33:45 +00001806 "debug_range");
Bill Wendling480ff322009-05-20 23:21:38 +00001807
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001808 DwarfDebugLocSectionSym = emitSectionSym(Asm, TLOF.getDwarfLocSection(),
Devang Patel9fc11702010-05-25 23:40:22 +00001809 "section_debug_loc");
1810
Eric Christopher7b30f2e42012-11-21 00:34:35 +00001811 TextSectionSym = emitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
1812 emitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001813}
1814
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001815// Recursively emits a debug information entry.
Eric Christopher3c5a1912012-12-19 22:02:53 +00001816void DwarfDebug::emitDIE(DIE *Die, std::vector<DIEAbbrev *> *Abbrevs) {
Bill Wendling480ff322009-05-20 23:21:38 +00001817 // Get the abbreviation for this DIE.
1818 unsigned AbbrevNumber = Die->getAbbrevNumber();
Eric Christopher3c5a1912012-12-19 22:02:53 +00001819 const DIEAbbrev *Abbrev = Abbrevs->at(AbbrevNumber - 1);
Bill Wendling480ff322009-05-20 23:21:38 +00001820
Bill Wendling480ff322009-05-20 23:21:38 +00001821 // Emit the code (index) for the abbreviation.
Chris Lattner7bde8c02010-04-04 18:52:31 +00001822 if (Asm->isVerbose())
Chris Lattnerfa823552010-01-22 23:18:42 +00001823 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
1824 Twine::utohexstr(Die->getOffset()) + ":0x" +
1825 Twine::utohexstr(Die->getSize()) + " " +
1826 dwarf::TagString(Abbrev->getTag()));
Chris Lattner9efd1182010-04-04 19:09:29 +00001827 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00001828
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00001829 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling480ff322009-05-20 23:21:38 +00001830 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1831
1832 // Emit the DIE attribute values.
1833 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1834 unsigned Attr = AbbrevData[i].getAttribute();
1835 unsigned Form = AbbrevData[i].getForm();
1836 assert(Form && "Too many attributes for DIE (check abbreviation)");
1837
Chris Lattner7bde8c02010-04-04 18:52:31 +00001838 if (Asm->isVerbose())
Chris Lattner5adf9872010-01-24 18:54:17 +00001839 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001840
Bill Wendling480ff322009-05-20 23:21:38 +00001841 switch (Attr) {
Bill Wendling480ff322009-05-20 23:21:38 +00001842 case dwarf::DW_AT_abstract_origin: {
1843 DIEEntry *E = cast<DIEEntry>(Values[i]);
1844 DIE *Origin = E->getEntry();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001845 unsigned Addr = Origin->getOffset();
Bill Wendling480ff322009-05-20 23:21:38 +00001846 Asm->EmitInt32(Addr);
1847 break;
1848 }
Devang Patel12563b32010-04-16 23:33:45 +00001849 case dwarf::DW_AT_ranges: {
1850 // DW_AT_range Value encodes offset in debug_range section.
1851 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelda3ef852010-09-02 16:43:44 +00001852
Nick Lewycky33da3362012-06-22 01:25:12 +00001853 if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) {
Devang Patelda3ef852010-09-02 16:43:44 +00001854 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
1855 V->getValue(),
1856 4);
1857 } else {
1858 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
1859 V->getValue(),
1860 DwarfDebugRangeSectionSym,
1861 4);
1862 }
Devang Patel12563b32010-04-16 23:33:45 +00001863 break;
1864 }
Devang Patel9fc11702010-05-25 23:40:22 +00001865 case dwarf::DW_AT_location: {
Nick Lewycky33da3362012-06-22 01:25:12 +00001866 if (DIELabel *L = dyn_cast<DIELabel>(Values[i])) {
1867 if (Asm->MAI->doesDwarfUseRelocationsAcrossSections())
1868 Asm->EmitLabelReference(L->getValue(), 4);
1869 else
1870 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
1871 } else {
Devang Patel9fc11702010-05-25 23:40:22 +00001872 Values[i]->EmitValue(Asm, Form);
Nick Lewycky33da3362012-06-22 01:25:12 +00001873 }
Devang Patel9fc11702010-05-25 23:40:22 +00001874 break;
1875 }
Devang Patela1bd5a12010-09-29 19:08:08 +00001876 case dwarf::DW_AT_accessibility: {
1877 if (Asm->isVerbose()) {
1878 DIEInteger *V = cast<DIEInteger>(Values[i]);
1879 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
1880 }
1881 Values[i]->EmitValue(Asm, Form);
1882 break;
1883 }
Bill Wendling480ff322009-05-20 23:21:38 +00001884 default:
1885 // Emit an attribute using the defined form.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001886 Values[i]->EmitValue(Asm, Form);
Bill Wendling480ff322009-05-20 23:21:38 +00001887 break;
1888 }
Bill Wendling480ff322009-05-20 23:21:38 +00001889 }
1890
1891 // Emit the DIE children if any.
1892 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1893 const std::vector<DIE *> &Children = Die->getChildren();
1894
1895 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Eric Christopher3c5a1912012-12-19 22:02:53 +00001896 emitDIE(Children[j], Abbrevs);
Bill Wendling480ff322009-05-20 23:21:38 +00001897
Chris Lattner7bde8c02010-04-04 18:52:31 +00001898 if (Asm->isVerbose())
Chris Lattner566cae92010-03-09 23:52:58 +00001899 Asm->OutStreamer.AddComment("End Of Children Mark");
1900 Asm->EmitInt8(0);
Bill Wendling480ff322009-05-20 23:21:38 +00001901 }
1902}
1903
Eric Christophera2de8262012-12-15 00:04:07 +00001904// Emit the various dwarf units to the unit section USection with
1905// the abbreviations going into ASection.
1906void DwarfUnits::emitUnits(DwarfDebug *DD,
1907 const MCSection *USection,
1908 const MCSection *ASection,
1909 const MCSymbol *ASectionSym) {
1910 Asm->OutStreamer.SwitchSection(USection);
1911 for (SmallVector<CompileUnit *, 1>::iterator I = CUs.begin(),
1912 E = CUs.end(); I != E; ++I) {
1913 CompileUnit *TheCU = *I;
Devang Patel1a0df9a2010-05-10 22:49:55 +00001914 DIE *Die = TheCU->getCUDie();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001915
Devang Patel1a0df9a2010-05-10 22:49:55 +00001916 // Emit the compile units header.
Eric Christophera2de8262012-12-15 00:04:07 +00001917 Asm->OutStreamer
1918 .EmitLabel(Asm->GetTempSymbol(USection->getLabelBeginName(),
1919 TheCU->getUniqueID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001920
Devang Patel1a0df9a2010-05-10 22:49:55 +00001921 // Emit size of content not including length itself
1922 unsigned ContentSize = Die->getSize() +
1923 sizeof(int16_t) + // DWARF version number
1924 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patele141234942011-04-13 19:41:17 +00001925 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001926
Devang Patel1a0df9a2010-05-10 22:49:55 +00001927 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
1928 Asm->EmitInt32(ContentSize);
1929 Asm->OutStreamer.AddComment("DWARF version number");
1930 Asm->EmitInt16(dwarf::DWARF_VERSION);
1931 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
Eric Christophera2de8262012-12-15 00:04:07 +00001932 Asm->EmitSectionOffset(Asm->GetTempSymbol(ASection->getLabelBeginName()),
1933 ASectionSym);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001934 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chandler Carruth5da3f052012-11-01 09:14:31 +00001935 Asm->EmitInt8(Asm->getDataLayout().getPointerSize());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001936
Eric Christopher3c5a1912012-12-19 22:02:53 +00001937 DD->emitDIE(Die, Abbreviations);
Eric Christophera2de8262012-12-15 00:04:07 +00001938 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol(USection->getLabelEndName(),
Eli Benderskyb42d1462012-12-03 18:45:45 +00001939 TheCU->getUniqueID()));
Devang Patel1a0df9a2010-05-10 22:49:55 +00001940 }
Bill Wendling480ff322009-05-20 23:21:38 +00001941}
1942
Eric Christopher9c2ecd92012-11-30 23:59:06 +00001943// Emit the debug info section.
1944void DwarfDebug::emitDebugInfo() {
Eric Christophera2de8262012-12-15 00:04:07 +00001945 DwarfUnits &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder;
1946
1947 Holder.emitUnits(this, Asm->getObjFileLowering().getDwarfInfoSection(),
1948 Asm->getObjFileLowering().getDwarfAbbrevSection(),
1949 DwarfAbbrevSectionSym);
Eric Christopher9c2ecd92012-11-30 23:59:06 +00001950}
1951
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001952// Emit the abbreviation section.
Eric Christopher38371952012-11-20 23:30:11 +00001953void DwarfDebug::emitAbbreviations() {
Eric Christopher3c5a1912012-12-19 22:02:53 +00001954 if (!useSplitDwarf())
1955 emitAbbrevs(Asm->getObjFileLowering().getDwarfAbbrevSection(),
1956 &Abbreviations);
1957 else
1958 emitSkeletonAbbrevs(Asm->getObjFileLowering().getDwarfAbbrevSection());
1959}
Bill Wendling480ff322009-05-20 23:21:38 +00001960
Eric Christopher3c5a1912012-12-19 22:02:53 +00001961void DwarfDebug::emitAbbrevs(const MCSection *Section,
1962 std::vector<DIEAbbrev *> *Abbrevs) {
1963 // Check to see if it is worth the effort.
1964 if (!Abbrevs->empty()) {
1965 // Start the debug abbrev section.
1966 Asm->OutStreamer.SwitchSection(Section);
1967
1968 MCSymbol *Begin = Asm->GetTempSymbol(Section->getLabelBeginName());
Eric Christopher996b2b72012-12-13 03:00:38 +00001969 Asm->OutStreamer.EmitLabel(Begin);
Bill Wendling480ff322009-05-20 23:21:38 +00001970
1971 // For each abbrevation.
Eric Christopher3c5a1912012-12-19 22:02:53 +00001972 for (unsigned i = 0, N = Abbrevs->size(); i < N; ++i) {
Bill Wendling480ff322009-05-20 23:21:38 +00001973 // Get abbreviation data
Eric Christopher3c5a1912012-12-19 22:02:53 +00001974 const DIEAbbrev *Abbrev = Abbrevs->at(i);
Bill Wendling480ff322009-05-20 23:21:38 +00001975
1976 // Emit the abbrevations code (base 1 index.)
Chris Lattner9efd1182010-04-04 19:09:29 +00001977 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling480ff322009-05-20 23:21:38 +00001978
1979 // Emit the abbreviations data.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001980 Abbrev->Emit(Asm);
Bill Wendling480ff322009-05-20 23:21:38 +00001981 }
1982
1983 // Mark end of abbreviations.
Chris Lattner9efd1182010-04-04 19:09:29 +00001984 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling480ff322009-05-20 23:21:38 +00001985
Eric Christopher3c5a1912012-12-19 22:02:53 +00001986 MCSymbol *End = Asm->GetTempSymbol(Section->getLabelEndName());
Eric Christopher996b2b72012-12-13 03:00:38 +00001987 Asm->OutStreamer.EmitLabel(End);
Bill Wendling480ff322009-05-20 23:21:38 +00001988 }
1989}
1990
Eric Christopheracdcbdb2012-11-27 22:43:45 +00001991// Emit the last address of the section and the end of the line matrix.
Devang Patel930143b2009-11-21 02:48:08 +00001992void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling480ff322009-05-20 23:21:38 +00001993 // Define last address of section.
Chris Lattner566cae92010-03-09 23:52:58 +00001994 Asm->OutStreamer.AddComment("Extended Op");
1995 Asm->EmitInt8(0);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001996
Chris Lattner566cae92010-03-09 23:52:58 +00001997 Asm->OutStreamer.AddComment("Op size");
Chandler Carruth5da3f052012-11-01 09:14:31 +00001998 Asm->EmitInt8(Asm->getDataLayout().getPointerSize() + 1);
Chris Lattner566cae92010-03-09 23:52:58 +00001999 Asm->OutStreamer.AddComment("DW_LNE_set_address");
2000 Asm->EmitInt8(dwarf::DW_LNE_set_address);
2001
2002 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerb245dfb2010-03-10 01:17:49 +00002003
Chris Lattnera179b522010-04-04 19:25:43 +00002004 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Eric Christopherce0cfce2013-01-09 01:35:34 +00002005 Asm->getDataLayout().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00002006
2007 // Mark end of matrix.
Chris Lattner566cae92010-03-09 23:52:58 +00002008 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
2009 Asm->EmitInt8(0);
Chris Lattnerf5c834f2010-01-22 22:09:00 +00002010 Asm->EmitInt8(1);
Chris Lattnerfa823552010-01-22 23:18:42 +00002011 Asm->EmitInt8(1);
Bill Wendling480ff322009-05-20 23:21:38 +00002012}
2013
Eric Christopheracdcbdb2012-11-27 22:43:45 +00002014// Emit visible names into a hashed accelerator table section.
Eric Christopher4996c702011-11-07 09:24:32 +00002015void DwarfDebug::emitAccelNames() {
2016 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
2017 dwarf::DW_FORM_data4));
2018 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
2019 E = CUMap.end(); I != E; ++I) {
2020 CompileUnit *TheCU = I->second;
Eric Christopherd9843b32011-11-10 19:25:34 +00002021 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNames();
2022 for (StringMap<std::vector<DIE*> >::const_iterator
Eric Christopher4996c702011-11-07 09:24:32 +00002023 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
2024 const char *Name = GI->getKeyData();
Eric Christopher090fcc12012-01-06 23:03:34 +00002025 const std::vector<DIE *> &Entities = GI->second;
Eric Christopherd9843b32011-11-10 19:25:34 +00002026 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
2027 DE = Entities.end(); DI != DE; ++DI)
2028 AT.AddName(Name, (*DI));
Eric Christopher4996c702011-11-07 09:24:32 +00002029 }
2030 }
2031
2032 AT.FinalizeTable(Asm, "Names");
2033 Asm->OutStreamer.SwitchSection(
2034 Asm->getObjFileLowering().getDwarfAccelNamesSection());
2035 MCSymbol *SectionBegin = Asm->GetTempSymbol("names_begin");
2036 Asm->OutStreamer.EmitLabel(SectionBegin);
2037
2038 // Emit the full data.
Eric Christophere698f532012-12-20 21:58:36 +00002039 AT.Emit(Asm, SectionBegin, &InfoHolder);
Eric Christopher4996c702011-11-07 09:24:32 +00002040}
2041
Eric Christopher48fef592012-12-20 21:58:40 +00002042// Emit objective C classes and categories into a hashed accelerator table
2043// section.
Eric Christopher4996c702011-11-07 09:24:32 +00002044void DwarfDebug::emitAccelObjC() {
2045 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
2046 dwarf::DW_FORM_data4));
2047 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
2048 E = CUMap.end(); I != E; ++I) {
2049 CompileUnit *TheCU = I->second;
2050 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelObjC();
2051 for (StringMap<std::vector<DIE*> >::const_iterator
2052 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
2053 const char *Name = GI->getKeyData();
Eric Christopher090fcc12012-01-06 23:03:34 +00002054 const std::vector<DIE *> &Entities = GI->second;
Eric Christopher4996c702011-11-07 09:24:32 +00002055 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
2056 DE = Entities.end(); DI != DE; ++DI)
2057 AT.AddName(Name, (*DI));
2058 }
2059 }
2060
2061 AT.FinalizeTable(Asm, "ObjC");
2062 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
2063 .getDwarfAccelObjCSection());
2064 MCSymbol *SectionBegin = Asm->GetTempSymbol("objc_begin");
2065 Asm->OutStreamer.EmitLabel(SectionBegin);
2066
2067 // Emit the full data.
Eric Christophere698f532012-12-20 21:58:36 +00002068 AT.Emit(Asm, SectionBegin, &InfoHolder);
Eric Christopher4996c702011-11-07 09:24:32 +00002069}
2070
Eric Christopheracdcbdb2012-11-27 22:43:45 +00002071// Emit namespace dies into a hashed accelerator table.
Eric Christopher4996c702011-11-07 09:24:32 +00002072void DwarfDebug::emitAccelNamespaces() {
2073 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
2074 dwarf::DW_FORM_data4));
2075 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
2076 E = CUMap.end(); I != E; ++I) {
2077 CompileUnit *TheCU = I->second;
Eric Christopher66b37db2011-11-10 21:47:55 +00002078 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNamespace();
2079 for (StringMap<std::vector<DIE*> >::const_iterator
Eric Christopher4996c702011-11-07 09:24:32 +00002080 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
2081 const char *Name = GI->getKeyData();
Eric Christopher090fcc12012-01-06 23:03:34 +00002082 const std::vector<DIE *> &Entities = GI->second;
Eric Christopher66b37db2011-11-10 21:47:55 +00002083 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
2084 DE = Entities.end(); DI != DE; ++DI)
2085 AT.AddName(Name, (*DI));
Eric Christopher4996c702011-11-07 09:24:32 +00002086 }
2087 }
2088
2089 AT.FinalizeTable(Asm, "namespac");
2090 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
2091 .getDwarfAccelNamespaceSection());
2092 MCSymbol *SectionBegin = Asm->GetTempSymbol("namespac_begin");
2093 Asm->OutStreamer.EmitLabel(SectionBegin);
2094
2095 // Emit the full data.
Eric Christophere698f532012-12-20 21:58:36 +00002096 AT.Emit(Asm, SectionBegin, &InfoHolder);
Eric Christopher4996c702011-11-07 09:24:32 +00002097}
2098
Eric Christopheracdcbdb2012-11-27 22:43:45 +00002099// Emit type dies into a hashed accelerator table.
Eric Christopher4996c702011-11-07 09:24:32 +00002100void DwarfDebug::emitAccelTypes() {
Eric Christopher21bde872012-01-06 04:35:23 +00002101 std::vector<DwarfAccelTable::Atom> Atoms;
2102 Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
2103 dwarf::DW_FORM_data4));
2104 Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeTag,
2105 dwarf::DW_FORM_data2));
2106 Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeTypeFlags,
2107 dwarf::DW_FORM_data1));
2108 DwarfAccelTable AT(Atoms);
Eric Christopher4996c702011-11-07 09:24:32 +00002109 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
2110 E = CUMap.end(); I != E; ++I) {
2111 CompileUnit *TheCU = I->second;
Eric Christopher21bde872012-01-06 04:35:23 +00002112 const StringMap<std::vector<std::pair<DIE*, unsigned > > > &Names
2113 = TheCU->getAccelTypes();
2114 for (StringMap<std::vector<std::pair<DIE*, unsigned> > >::const_iterator
Eric Christopher4996c702011-11-07 09:24:32 +00002115 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
2116 const char *Name = GI->getKeyData();
Eric Christopher090fcc12012-01-06 23:03:34 +00002117 const std::vector<std::pair<DIE *, unsigned> > &Entities = GI->second;
Eric Christopher21bde872012-01-06 04:35:23 +00002118 for (std::vector<std::pair<DIE *, unsigned> >::const_iterator DI
2119 = Entities.begin(), DE = Entities.end(); DI !=DE; ++DI)
2120 AT.AddName(Name, (*DI).first, (*DI).second);
Eric Christopher4996c702011-11-07 09:24:32 +00002121 }
2122 }
2123
2124 AT.FinalizeTable(Asm, "types");
2125 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
2126 .getDwarfAccelTypesSection());
2127 MCSymbol *SectionBegin = Asm->GetTempSymbol("types_begin");
2128 Asm->OutStreamer.EmitLabel(SectionBegin);
2129
2130 // Emit the full data.
Eric Christophere698f532012-12-20 21:58:36 +00002131 AT.Emit(Asm, SectionBegin, &InfoHolder);
Eric Christopher4996c702011-11-07 09:24:32 +00002132}
2133
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +00002134/// emitDebugPubnames - Emit visible names into a debug pubnames section.
2135///
2136void DwarfDebug::emitDebugPubnames() {
2137 const MCSection *ISec = Asm->getObjFileLowering().getDwarfInfoSection();
2138
2139 typedef DenseMap<const MDNode*, CompileUnit*> CUMapType;
2140 for (CUMapType::iterator I = CUMap.begin(), E = CUMap.end(); I != E; ++I) {
2141 CompileUnit *TheCU = I->second;
2142 unsigned ID = TheCU->getUniqueID();
2143
2144 if (TheCU->getGlobalNames().empty())
2145 continue;
2146
2147 // Start the dwarf pubnames section.
2148 Asm->OutStreamer.SwitchSection(
2149 Asm->getObjFileLowering().getDwarfPubNamesSection());
2150
2151 Asm->OutStreamer.AddComment("Length of Public Names Info");
2152 Asm->EmitLabelDifference(Asm->GetTempSymbol("pubnames_end", ID),
2153 Asm->GetTempSymbol("pubnames_begin", ID), 4);
2154
2155 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_begin", ID));
2156
2157 Asm->OutStreamer.AddComment("DWARF Version");
2158 Asm->EmitInt16(dwarf::DWARF_VERSION);
2159
2160 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
2161 Asm->EmitSectionOffset(Asm->GetTempSymbol(ISec->getLabelBeginName(), ID),
2162 DwarfInfoSectionSym);
2163
2164 Asm->OutStreamer.AddComment("Compilation Unit Length");
2165 Asm->EmitLabelDifference(Asm->GetTempSymbol(ISec->getLabelEndName(), ID),
2166 Asm->GetTempSymbol(ISec->getLabelBeginName(), ID),
2167 4);
2168
2169 const StringMap<DIE*> &Globals = TheCU->getGlobalNames();
2170 for (StringMap<DIE*>::const_iterator
2171 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2172 const char *Name = GI->getKeyData();
2173 const DIE *Entity = GI->second;
2174
2175 Asm->OutStreamer.AddComment("DIE offset");
2176 Asm->EmitInt32(Entity->getOffset());
2177
2178 if (Asm->isVerbose())
2179 Asm->OutStreamer.AddComment("External Name");
2180 Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
2181 }
2182
2183 Asm->OutStreamer.AddComment("End Mark");
2184 Asm->EmitInt32(0);
2185 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_end", ID));
2186 }
2187}
2188
Devang Patel04d2f2d2009-11-24 01:14:22 +00002189void DwarfDebug::emitDebugPubTypes() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00002190 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
2191 E = CUMap.end(); I != E; ++I) {
2192 CompileUnit *TheCU = I->second;
Eric Christopher6abc9c52011-11-07 09:18:35 +00002193 // Start the dwarf pubtypes section.
Devang Patel1a0df9a2010-05-10 22:49:55 +00002194 Asm->OutStreamer.SwitchSection(
2195 Asm->getObjFileLowering().getDwarfPubTypesSection());
2196 Asm->OutStreamer.AddComment("Length of Public Types Info");
2197 Asm->EmitLabelDifference(
Eli Benderskyb42d1462012-12-03 18:45:45 +00002198 Asm->GetTempSymbol("pubtypes_end", TheCU->getUniqueID()),
2199 Asm->GetTempSymbol("pubtypes_begin", TheCU->getUniqueID()), 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002200
Devang Patel1a0df9a2010-05-10 22:49:55 +00002201 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
Eli Benderskyb42d1462012-12-03 18:45:45 +00002202 TheCU->getUniqueID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002203
Devang Patel1a0df9a2010-05-10 22:49:55 +00002204 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
2205 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002206
Devang Patel1a0df9a2010-05-10 22:49:55 +00002207 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
Eric Christopher16485a52012-12-15 00:04:04 +00002208 const MCSection *ISec = Asm->getObjFileLowering().getDwarfInfoSection();
2209 Asm->EmitSectionOffset(Asm->GetTempSymbol(ISec->getLabelBeginName(),
Eli Benderskyb42d1462012-12-03 18:45:45 +00002210 TheCU->getUniqueID()),
Devang Patel1a0df9a2010-05-10 22:49:55 +00002211 DwarfInfoSectionSym);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002212
Devang Patel1a0df9a2010-05-10 22:49:55 +00002213 Asm->OutStreamer.AddComment("Compilation Unit Length");
Eric Christopher16485a52012-12-15 00:04:04 +00002214 Asm->EmitLabelDifference(Asm->GetTempSymbol(ISec->getLabelEndName(),
Eli Benderskyb42d1462012-12-03 18:45:45 +00002215 TheCU->getUniqueID()),
Eric Christopher16485a52012-12-15 00:04:04 +00002216 Asm->GetTempSymbol(ISec->getLabelBeginName(),
Eli Benderskyb42d1462012-12-03 18:45:45 +00002217 TheCU->getUniqueID()),
Devang Patel1a0df9a2010-05-10 22:49:55 +00002218 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002219
Devang Patel1a0df9a2010-05-10 22:49:55 +00002220 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
2221 for (StringMap<DIE*>::const_iterator
2222 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2223 const char *Name = GI->getKeyData();
Nick Lewycky019d2552011-07-29 03:49:23 +00002224 DIE *Entity = GI->second;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002225
Devang Patel1a0df9a2010-05-10 22:49:55 +00002226 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
2227 Asm->EmitInt32(Entity->getOffset());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002228
Devang Patel1a0df9a2010-05-10 22:49:55 +00002229 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
Benjamin Kramer966ed1b2011-11-09 18:16:11 +00002230 // Emit the name with a terminating null byte.
Eric Christophere3ab3d02013-01-09 01:57:54 +00002231 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1));
Devang Patel1a0df9a2010-05-10 22:49:55 +00002232 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002233
Devang Patel1a0df9a2010-05-10 22:49:55 +00002234 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002235 Asm->EmitInt32(0);
Devang Patel1a0df9a2010-05-10 22:49:55 +00002236 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
Eli Benderskyb42d1462012-12-03 18:45:45 +00002237 TheCU->getUniqueID()));
Devang Patel04d2f2d2009-11-24 01:14:22 +00002238 }
Devang Patel04d2f2d2009-11-24 01:14:22 +00002239}
2240
Eric Christopher3bf29fd2012-12-27 02:14:01 +00002241// Emit strings into a string section.
Eric Christopher2cbd5762013-01-07 19:32:41 +00002242void DwarfUnits::emitStrings(const MCSection *StrSection,
2243 const MCSection *OffsetSection = NULL,
2244 const MCSymbol *StrSecSym = NULL) {
Eric Christopher3bf29fd2012-12-27 02:14:01 +00002245
Eric Christopher27614582013-01-08 22:22:06 +00002246 if (StringPool.empty()) return;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002247
Chris Lattner3d72a672010-03-09 23:38:23 +00002248 // Start the dwarf str section.
Eric Christopher2cbd5762013-01-07 19:32:41 +00002249 Asm->OutStreamer.SwitchSection(StrSection);
Bill Wendling480ff322009-05-20 23:21:38 +00002250
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002251 // Get all of the string pool entries and put them in an array by their ID so
2252 // we can sort them.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002253 SmallVector<std::pair<unsigned,
Eric Christopherb800ff72013-01-07 22:40:45 +00002254 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002255
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002256 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
Eric Christopher27614582013-01-08 22:22:06 +00002257 I = StringPool.begin(), E = StringPool.end();
Eric Christopher48fef592012-12-20 21:58:40 +00002258 I != E; ++I)
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002259 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002260
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002261 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002262
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002263 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner3d72a672010-03-09 23:38:23 +00002264 // Emit a label for reference from debug information entries.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00002265 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002266
Benjamin Kramer966ed1b2011-11-09 18:16:11 +00002267 // Emit the string itself with a terminating null byte.
Benjamin Kramer148db362011-11-09 12:12:04 +00002268 Asm->OutStreamer.EmitBytes(StringRef(Entries[i].second->getKeyData(),
Eric Christopherce0cfce2013-01-09 01:35:34 +00002269 Entries[i].second->getKeyLength()+1));
Bill Wendling480ff322009-05-20 23:21:38 +00002270 }
Eric Christopher2cbd5762013-01-07 19:32:41 +00002271
2272 // If we've got an offset section go ahead and emit that now as well.
2273 if (OffsetSection) {
2274 Asm->OutStreamer.SwitchSection(OffsetSection);
2275 unsigned offset = 0;
Eric Christopher962c9082013-01-15 23:56:56 +00002276 unsigned size = 4; // FIXME: DWARF64 is 8.
Eric Christopher2cbd5762013-01-07 19:32:41 +00002277 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Eric Christopherbf7bc492013-01-09 03:52:05 +00002278 Asm->OutStreamer.EmitIntValue(offset, size);
Eric Christopher2cbd5762013-01-07 19:32:41 +00002279 offset += Entries[i].second->getKeyLength() + 1;
2280 }
2281 }
Bill Wendling480ff322009-05-20 23:21:38 +00002282}
2283
Eric Christopher962c9082013-01-15 23:56:56 +00002284// Emit strings into a string section.
2285void DwarfUnits::emitAddresses(const MCSection *AddrSection) {
2286
2287 if (AddressPool.empty()) return;
2288
2289 // Start the dwarf addr section.
2290 Asm->OutStreamer.SwitchSection(AddrSection);
2291
2292 // Get all of the string pool entries and put them in an array by their ID so
2293 // we can sort them.
2294 SmallVector<std::pair<unsigned,
2295 std::pair<MCSymbol*, unsigned>* >, 64> Entries;
2296
2297 for (DenseMap<MCSymbol*, std::pair<MCSymbol*, unsigned> >::iterator
2298 I = AddressPool.begin(), E = AddressPool.end();
2299 I != E; ++I)
2300 Entries.push_back(std::make_pair(I->second.second, &(I->second)));
2301
2302 array_pod_sort(Entries.begin(), Entries.end());
2303
2304 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
2305 // Emit a label for reference from debug information entries.
2306 MCSymbol *Sym = Entries[i].second->first;
2307 if (Sym)
2308 Asm->EmitLabelReference(Entries[i].second->first,
2309 Asm->getDataLayout().getPointerSize());
2310 else
2311 Asm->OutStreamer.EmitIntValue(0, Asm->getDataLayout().getPointerSize());
2312 }
2313
2314}
2315
Eric Christopher3bf29fd2012-12-27 02:14:01 +00002316// Emit visible names into a debug str section.
2317void DwarfDebug::emitDebugStr() {
2318 DwarfUnits &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder;
2319 Holder.emitStrings(Asm->getObjFileLowering().getDwarfStrSection());
2320}
2321
Eric Christopheracdcbdb2012-11-27 22:43:45 +00002322// Emit visible names into a debug loc section.
Devang Patel930143b2009-11-21 02:48:08 +00002323void DwarfDebug::emitDebugLoc() {
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002324 if (DotDebugLocEntries.empty())
2325 return;
2326
Devang Patel116a9d72011-02-04 22:57:18 +00002327 for (SmallVector<DotDebugLocEntry, 4>::iterator
2328 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
2329 I != E; ++I) {
2330 DotDebugLocEntry &Entry = *I;
2331 if (I + 1 != DotDebugLocEntries.end())
2332 Entry.Merge(I+1);
2333 }
2334
Daniel Dunbarfd95b012011-03-16 22:16:39 +00002335 // Start the dwarf loc section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002336 Asm->OutStreamer.SwitchSection(
Devang Patel9fc11702010-05-25 23:40:22 +00002337 Asm->getObjFileLowering().getDwarfLocSection());
Chandler Carruth5da3f052012-11-01 09:14:31 +00002338 unsigned char Size = Asm->getDataLayout().getPointerSize();
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002339 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
2340 unsigned index = 1;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002341 for (SmallVector<DotDebugLocEntry, 4>::iterator
2342 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel30265c42010-07-07 20:12:52 +00002343 I != E; ++I, ++index) {
Devang Patel116a9d72011-02-04 22:57:18 +00002344 DotDebugLocEntry &Entry = *I;
2345 if (Entry.isMerged()) continue;
Devang Patel9fc11702010-05-25 23:40:22 +00002346 if (Entry.isEmpty()) {
Eric Christopherce0cfce2013-01-09 01:35:34 +00002347 Asm->OutStreamer.EmitIntValue(0, Size);
2348 Asm->OutStreamer.EmitIntValue(0, Size);
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002349 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patel9fc11702010-05-25 23:40:22 +00002350 } else {
Eric Christopherbf7bc492013-01-09 03:52:05 +00002351 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size);
2352 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size);
Devang Patel3e021532011-04-28 02:22:40 +00002353 DIVariable DV(Entry.Variable);
Rafael Espindolad23bfb82011-05-27 22:05:41 +00002354 Asm->OutStreamer.AddComment("Loc expr size");
2355 MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol();
2356 MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol();
2357 Asm->EmitLabelDifference(end, begin, 2);
2358 Asm->OutStreamer.EmitLabel(begin);
Devang Pateled9fd452011-07-08 16:49:43 +00002359 if (Entry.isInt()) {
Devang Patel324f8432011-06-01 22:03:25 +00002360 DIBasicType BTy(DV.getType());
2361 if (BTy.Verify() &&
Eric Christopher6a841382012-11-19 22:42:10 +00002362 (BTy.getEncoding() == dwarf::DW_ATE_signed
Devang Patel324f8432011-06-01 22:03:25 +00002363 || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) {
2364 Asm->OutStreamer.AddComment("DW_OP_consts");
2365 Asm->EmitInt8(dwarf::DW_OP_consts);
Devang Pateled9fd452011-07-08 16:49:43 +00002366 Asm->EmitSLEB128(Entry.getInt());
Devang Patel324f8432011-06-01 22:03:25 +00002367 } else {
2368 Asm->OutStreamer.AddComment("DW_OP_constu");
2369 Asm->EmitInt8(dwarf::DW_OP_constu);
Devang Pateled9fd452011-07-08 16:49:43 +00002370 Asm->EmitULEB128(Entry.getInt());
Devang Patel324f8432011-06-01 22:03:25 +00002371 }
Devang Pateled9fd452011-07-08 16:49:43 +00002372 } else if (Entry.isLocation()) {
Eric Christopher6a841382012-11-19 22:42:10 +00002373 if (!DV.hasComplexAddress())
Devang Pateled9fd452011-07-08 16:49:43 +00002374 // Regular entry.
Devang Patel3e021532011-04-28 02:22:40 +00002375 Asm->EmitDwarfRegOp(Entry.Loc);
Devang Pateled9fd452011-07-08 16:49:43 +00002376 else {
2377 // Complex address entry.
2378 unsigned N = DV.getNumAddrElements();
2379 unsigned i = 0;
2380 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
2381 if (Entry.Loc.getOffset()) {
2382 i = 2;
2383 Asm->EmitDwarfRegOp(Entry.Loc);
2384 Asm->OutStreamer.AddComment("DW_OP_deref");
2385 Asm->EmitInt8(dwarf::DW_OP_deref);
2386 Asm->OutStreamer.AddComment("DW_OP_plus_uconst");
2387 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2388 Asm->EmitSLEB128(DV.getAddrElement(1));
2389 } else {
2390 // If first address element is OpPlus then emit
2391 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
2392 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
2393 Asm->EmitDwarfRegOp(Loc);
2394 i = 2;
2395 }
2396 } else {
2397 Asm->EmitDwarfRegOp(Entry.Loc);
2398 }
Eric Christopher6a841382012-11-19 22:42:10 +00002399
Devang Pateled9fd452011-07-08 16:49:43 +00002400 // Emit remaining complex address elements.
2401 for (; i < N; ++i) {
2402 uint64_t Element = DV.getAddrElement(i);
2403 if (Element == DIBuilder::OpPlus) {
2404 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2405 Asm->EmitULEB128(DV.getAddrElement(++i));
Eric Christopher4d250522012-05-08 18:56:00 +00002406 } else if (Element == DIBuilder::OpDeref) {
Eric Christopher8d2a77d2012-05-08 21:24:39 +00002407 if (!Entry.Loc.isReg())
Eric Christopher4d250522012-05-08 18:56:00 +00002408 Asm->EmitInt8(dwarf::DW_OP_deref);
2409 } else
2410 llvm_unreachable("unknown Opcode found in complex address");
Devang Pateled9fd452011-07-08 16:49:43 +00002411 }
Devang Patel3e021532011-04-28 02:22:40 +00002412 }
Devang Patel3e021532011-04-28 02:22:40 +00002413 }
Devang Pateled9fd452011-07-08 16:49:43 +00002414 // else ... ignore constant fp. There is not any good way to
2415 // to represent them here in dwarf.
Rafael Espindolad23bfb82011-05-27 22:05:41 +00002416 Asm->OutStreamer.EmitLabel(end);
Devang Patel9fc11702010-05-25 23:40:22 +00002417 }
2418 }
Bill Wendling480ff322009-05-20 23:21:38 +00002419}
2420
Eric Christopheracdcbdb2012-11-27 22:43:45 +00002421// Emit visible names into a debug aranges section.
Eric Christopher7b30f2e42012-11-21 00:34:35 +00002422void DwarfDebug::emitDebugARanges() {
Bill Wendling480ff322009-05-20 23:21:38 +00002423 // Start the dwarf aranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002424 Asm->OutStreamer.SwitchSection(
2425 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002426}
2427
Eric Christopheracdcbdb2012-11-27 22:43:45 +00002428// Emit visible names into a debug ranges section.
Devang Patel930143b2009-11-21 02:48:08 +00002429void DwarfDebug::emitDebugRanges() {
Bill Wendling480ff322009-05-20 23:21:38 +00002430 // Start the dwarf ranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002431 Asm->OutStreamer.SwitchSection(
Devang Patel12563b32010-04-16 23:33:45 +00002432 Asm->getObjFileLowering().getDwarfRangesSection());
Chandler Carruth5da3f052012-11-01 09:14:31 +00002433 unsigned char Size = Asm->getDataLayout().getPointerSize();
Devang Patel6c74a872010-04-27 19:46:33 +00002434 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002435 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Patel6c74a872010-04-27 19:46:33 +00002436 I != E; ++I) {
2437 if (*I)
Eric Christopherbf7bc492013-01-09 03:52:05 +00002438 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size);
Devang Patel12563b32010-04-16 23:33:45 +00002439 else
Eric Christopherce0cfce2013-01-09 01:35:34 +00002440 Asm->OutStreamer.EmitIntValue(0, Size);
Devang Patel12563b32010-04-16 23:33:45 +00002441 }
Bill Wendling480ff322009-05-20 23:21:38 +00002442}
2443
Eric Christopheracdcbdb2012-11-27 22:43:45 +00002444// Emit visible names into a debug macinfo section.
Devang Patel930143b2009-11-21 02:48:08 +00002445void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00002446 if (const MCSection *LineInfo =
Chris Lattner1472cf52009-08-02 07:24:22 +00002447 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling480ff322009-05-20 23:21:38 +00002448 // Start the dwarf macinfo section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002449 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00002450 }
2451}
2452
Eric Christopheracdcbdb2012-11-27 22:43:45 +00002453// Emit inline info using following format.
2454// Section Header:
2455// 1. length of section
2456// 2. Dwarf version number
2457// 3. address size.
2458//
2459// Entries (one "entry" for each function that was inlined):
2460//
2461// 1. offset into __debug_str section for MIPS linkage name, if exists;
2462// otherwise offset into __debug_str for regular function name.
2463// 2. offset into __debug_str section for regular function name.
2464// 3. an unsigned LEB128 number indicating the number of distinct inlining
2465// instances for the function.
2466//
2467// The rest of the entry consists of a {die_offset, low_pc} pair for each
2468// inlined instance; the die_offset points to the inlined_subroutine die in the
2469// __debug_info section, and the low_pc is the starting address for the
2470// inlining instance.
Devang Patel930143b2009-11-21 02:48:08 +00002471void DwarfDebug::emitDebugInlineInfo() {
Eric Christopher1df94bf2012-03-02 02:11:47 +00002472 if (!Asm->MAI->doesDwarfUseInlineInfoSection())
Bill Wendling480ff322009-05-20 23:21:38 +00002473 return;
2474
Devang Patel1a0df9a2010-05-10 22:49:55 +00002475 if (!FirstCU)
Bill Wendling480ff322009-05-20 23:21:38 +00002476 return;
2477
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002478 Asm->OutStreamer.SwitchSection(
2479 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattnerf5c834f2010-01-22 22:09:00 +00002480
Chris Lattner566cae92010-03-09 23:52:58 +00002481 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002482 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
2483 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002484
Chris Lattnera179b522010-04-04 19:25:43 +00002485 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00002486
Chris Lattner566cae92010-03-09 23:52:58 +00002487 Asm->OutStreamer.AddComment("Dwarf Version");
2488 Asm->EmitInt16(dwarf::DWARF_VERSION);
2489 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chandler Carruth5da3f052012-11-01 09:14:31 +00002490 Asm->EmitInt8(Asm->getDataLayout().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00002491
Devang Patel32cc43c2010-05-07 20:54:48 +00002492 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002493 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach042483e2009-11-21 23:12:12 +00002494
Devang Patel32cc43c2010-05-07 20:54:48 +00002495 const MDNode *Node = *I;
2496 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach00e9c612009-11-22 19:20:36 +00002497 = InlineInfo.find(Node);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002498 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patel80ae3492009-08-28 23:24:31 +00002499 DISubprogram SP(Node);
Devang Patel2d9caf92009-11-25 17:36:49 +00002500 StringRef LName = SP.getLinkageName();
2501 StringRef Name = SP.getName();
Bill Wendling480ff322009-05-20 23:21:38 +00002502
Chris Lattner566cae92010-03-09 23:52:58 +00002503 Asm->OutStreamer.AddComment("MIPS linkage name");
Eric Christopher77725312012-03-02 01:57:52 +00002504 if (LName.empty())
Eric Christophere698f532012-12-20 21:58:36 +00002505 Asm->EmitSectionOffset(InfoHolder.getStringPoolEntry(Name),
2506 DwarfStrSectionSym);
Eric Christopher77725312012-03-02 01:57:52 +00002507 else
Eric Christophere698f532012-12-20 21:58:36 +00002508 Asm->EmitSectionOffset(InfoHolder
2509 .getStringPoolEntry(getRealLinkageName(LName)),
Chris Lattner70a4fce2010-04-04 23:25:33 +00002510 DwarfStrSectionSym);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002511
Chris Lattner566cae92010-03-09 23:52:58 +00002512 Asm->OutStreamer.AddComment("Function name");
Eric Christophere698f532012-12-20 21:58:36 +00002513 Asm->EmitSectionOffset(InfoHolder.getStringPoolEntry(Name),
2514 DwarfStrSectionSym);
Chris Lattner9efd1182010-04-04 19:09:29 +00002515 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling480ff322009-05-20 23:21:38 +00002516
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002517 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling480ff322009-05-20 23:21:38 +00002518 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner7bde8c02010-04-04 18:52:31 +00002519 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner085b6522010-03-09 00:31:02 +00002520 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00002521
Chris Lattner7bde8c02010-04-04 18:52:31 +00002522 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002523 Asm->OutStreamer.EmitSymbolValue(LI->first,
Eric Christopherbf7bc492013-01-09 03:52:05 +00002524 Asm->getDataLayout().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00002525 }
2526 }
2527
Chris Lattnera179b522010-04-04 19:25:43 +00002528 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00002529}
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002530
Eric Christopherd692c1d2012-12-11 19:42:09 +00002531// DWARF5 Experimental Separate Dwarf emitters.
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002532
2533// This DIE has the following attributes: DW_AT_comp_dir, DW_AT_stmt_list,
2534// DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges, DW_AT_dwo_name, DW_AT_dwo_id,
2535// DW_AT_ranges_base, DW_AT_addr_base. If DW_AT_ranges is present,
2536// DW_AT_low_pc and DW_AT_high_pc are not used, and vice versa.
Eric Christophercdf218d2012-12-10 19:51:21 +00002537CompileUnit *DwarfDebug::constructSkeletonCU(const MDNode *N) {
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002538 DICompileUnit DIUnit(N);
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002539 CompilationDir = DIUnit.getDirectory();
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002540
2541 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Eli Benderskyb42d1462012-12-03 18:45:45 +00002542 CompileUnit *NewCU = new CompileUnit(GlobalCUIndexCount++,
Eric Christophere698f532012-12-20 21:58:36 +00002543 DIUnit.getLanguage(), Die, Asm,
Eric Christopher3bf29fd2012-12-27 02:14:01 +00002544 this, &SkeletonHolder);
Eric Christopher4c7765f2013-01-17 03:00:04 +00002545
2546 SmallString<16> T(DIUnit.getFilename());
2547 sys::path::replace_extension(T, ".dwo");
2548 StringRef FN = sys::path::filename(T);
Eric Christopher2cbd5762013-01-07 19:32:41 +00002549 NewCU->addLocalString(Die, dwarf::DW_AT_GNU_dwo_name, FN);
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002550
Eric Christopher7a2cdf72013-02-05 07:31:55 +00002551 // This should be a unique identifier when we want to build .dwp files.
2552 NewCU->addUInt(Die, dwarf::DW_AT_GNU_dwo_id, dwarf::DW_FORM_data8, 0);
Eric Christopher18266172013-01-17 02:59:59 +00002553
2554 // FIXME: The addr base should be relative for each compile unit, however,
2555 // this one is going to be 0 anyhow.
2556 NewCU->addUInt(Die, dwarf::DW_AT_GNU_addr_base, dwarf::DW_FORM_sec_offset, 0);
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002557
2558 // 2.17.1 requires that we use DW_AT_low_pc for a single entry point
Eric Christopher962c9082013-01-15 23:56:56 +00002559 // into an entity. We're using 0, or a NULL label for this.
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002560 NewCU->addUInt(Die, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, 0);
Eric Christopher962c9082013-01-15 23:56:56 +00002561
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002562 // DW_AT_stmt_list is a offset of line number information for this
2563 // compile unit in debug_line section.
2564 if (Asm->MAI->doesDwarfUseRelocationsAcrossSections())
Eric Christopher4c7765f2013-01-17 03:00:04 +00002565 NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_sec_offset,
Eric Christopher74804332013-02-07 21:19:50 +00002566 DwarfLineSectionSym);
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002567 else
Eric Christopher4c7765f2013-01-17 03:00:04 +00002568 NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_sec_offset, 0);
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002569
2570 if (!CompilationDir.empty())
Eric Christopher2cbd5762013-01-07 19:32:41 +00002571 NewCU->addLocalString(Die, dwarf::DW_AT_comp_dir, CompilationDir);
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002572
Eric Christopherc8a310e2012-12-10 23:34:43 +00002573 SkeletonHolder.addUnit(NewCU);
Eric Christopher5b33b3c2013-02-06 21:53:56 +00002574 SkeletonCUs.push_back(NewCU);
Eric Christopherc8a310e2012-12-10 23:34:43 +00002575
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002576 return NewCU;
2577}
2578
Eric Christopher3c5a1912012-12-19 22:02:53 +00002579void DwarfDebug::emitSkeletonAbbrevs(const MCSection *Section) {
2580 assert(useSplitDwarf() && "No split dwarf debug info?");
2581 emitAbbrevs(Section, &SkeletonAbbrevs);
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002582}
2583
Eric Christopherd692c1d2012-12-11 19:42:09 +00002584// Emit the .debug_info.dwo section for separated dwarf. This contains the
2585// compile units that would normally be in debug_info.
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002586void DwarfDebug::emitDebugInfoDWO() {
Eric Christophercdf218d2012-12-10 19:51:21 +00002587 assert(useSplitDwarf() && "No split dwarf debug info?");
Eric Christophera2de8262012-12-15 00:04:07 +00002588 InfoHolder.emitUnits(this, Asm->getObjFileLowering().getDwarfInfoDWOSection(),
Eric Christopher3c5a1912012-12-19 22:02:53 +00002589 Asm->getObjFileLowering().getDwarfAbbrevDWOSection(),
2590 DwarfAbbrevDWOSectionSym);
2591}
2592
2593// Emit the .debug_abbrev.dwo section for separated dwarf. This contains the
2594// abbreviations for the .debug_info.dwo section.
2595void DwarfDebug::emitDebugAbbrevDWO() {
2596 assert(useSplitDwarf() && "No split dwarf?");
Eric Christopher48fef592012-12-20 21:58:40 +00002597 emitAbbrevs(Asm->getObjFileLowering().getDwarfAbbrevDWOSection(),
2598 &Abbreviations);
Eric Christopher9c2ecd92012-11-30 23:59:06 +00002599}
Eric Christopher3bf29fd2012-12-27 02:14:01 +00002600
2601// Emit the .debug_str.dwo section for separated dwarf. This contains the
2602// string section and is identical in format to traditional .debug_str
2603// sections.
2604void DwarfDebug::emitDebugStrDWO() {
2605 assert(useSplitDwarf() && "No split dwarf?");
Eric Christopherb800ff72013-01-07 22:40:45 +00002606 const MCSection *OffSec = Asm->getObjFileLowering()
2607 .getDwarfStrOffDWOSection();
Eric Christopher2cbd5762013-01-07 19:32:41 +00002608 const MCSymbol *StrSym = DwarfStrSectionSym;
2609 InfoHolder.emitStrings(Asm->getObjFileLowering().getDwarfStrDWOSection(),
2610 OffSec, StrSym);
Eric Christopher3bf29fd2012-12-27 02:14:01 +00002611}