blob: d3414d7be55b4499b805c66efa823fe157975601 [file] [log] [blame]
Bill Wendling0310d762009-05-15 09:23:25 +00001//===-- llvm/CodeGen/DwarfDebug.cpp - Dwarf Debug Framework ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf debug info into asm files.
11//
12//===----------------------------------------------------------------------===//
Chris Lattner6cde3e62010-03-09 00:39:24 +000013
Devang Patele4b27562009-08-28 23:24:31 +000014#define DEBUG_TYPE "dwarfdebug"
Bill Wendling0310d762009-05-15 09:23:25 +000015#include "DwarfDebug.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000016#include "DIE.h"
Eric Christopher09ac3d82011-11-07 09:24:32 +000017#include "DwarfAccelTable.h"
Devang Patel8b9df622011-04-12 17:40:32 +000018#include "DwarfCompileUnit.h"
Bill Wendling57fbba42010-04-05 22:59:21 +000019#include "llvm/Constants.h"
Bill Wendling0310d762009-05-15 09:23:25 +000020#include "llvm/Module.h"
Devang Patele449d1f2011-01-20 00:02:16 +000021#include "llvm/Instructions.h"
David Greeneb2c66fc2009-08-19 21:52:55 +000022#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling0310d762009-05-15 09:23:25 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnerb7db7332010-03-09 01:58:53 +000024#include "llvm/MC/MCAsmInfo.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000025#include "llvm/MC/MCSection.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000026#include "llvm/MC/MCStreamer.h"
Chris Lattnerb7db7332010-03-09 01:58:53 +000027#include "llvm/MC/MCSymbol.h"
Bill Wendling0310d762009-05-15 09:23:25 +000028#include "llvm/Target/TargetData.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000029#include "llvm/Target/TargetFrameLowering.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000030#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner9d1c1ad2010-04-04 18:06:11 +000031#include "llvm/Target/TargetMachine.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000032#include "llvm/Target/TargetRegisterInfo.h"
Devang Patel2a4a3b72010-04-19 19:14:02 +000033#include "llvm/Target/TargetOptions.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000034#include "llvm/Analysis/DebugInfo.h"
Devang Patel0eea95d2011-02-24 18:49:30 +000035#include "llvm/Analysis/DIBuilder.h"
Devang Patel9a31f0f2010-10-25 20:45:32 +000036#include "llvm/ADT/Statistic.h"
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +000037#include "llvm/ADT/STLExtras.h"
Chris Lattner23132b12009-08-24 03:52:50 +000038#include "llvm/ADT/StringExtras.h"
Devang Pateleac9c072010-04-27 19:46:33 +000039#include "llvm/Support/CommandLine.h"
Daniel Dunbar6e4bdfc2009-10-13 06:47:08 +000040#include "llvm/Support/Debug.h"
41#include "llvm/Support/ErrorHandling.h"
Devang Patel3139fcf2010-01-26 21:39:14 +000042#include "llvm/Support/ValueHandle.h"
Chris Lattner0ad9c912010-01-22 22:09:00 +000043#include "llvm/Support/FormattedStream.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000044#include "llvm/Support/Timer.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000045#include "llvm/Support/Path.h"
Bill Wendling0310d762009-05-15 09:23:25 +000046using namespace llvm;
47
Jim Grosbach1e20b962010-07-21 21:21:52 +000048static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print",
Devang Patel61409622010-07-07 20:12:52 +000049 cl::Hidden,
Devang Pateleac9c072010-04-27 19:46:33 +000050 cl::desc("Disable debug info printing"));
51
Dan Gohman281d65d2010-05-07 01:08:53 +000052static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden,
Chris Lattner7a2bdde2011-04-15 05:18:47 +000053 cl::desc("Make an absence of debug location information explicit."),
Dan Gohman281d65d2010-05-07 01:08:53 +000054 cl::init(false));
55
Eric Christopher09ac3d82011-11-07 09:24:32 +000056static cl::opt<bool> DwarfAccelTables("dwarf-accel-tables", cl::Hidden,
57 cl::desc("Output prototype dwarf accelerator tables."),
58 cl::init(false));
59
Bill Wendling5f017e82010-04-07 09:28:04 +000060namespace {
61 const char *DWARFGroupName = "DWARF Emission";
62 const char *DbgTimerName = "DWARF Debug Writer";
63} // end anonymous namespace
64
Bill Wendling0310d762009-05-15 09:23:25 +000065//===----------------------------------------------------------------------===//
66
67/// Configuration values for initial hash set sizes (log2).
68///
Bill Wendling0310d762009-05-15 09:23:25 +000069static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling0310d762009-05-15 09:23:25 +000070
71namespace llvm {
72
Nick Lewycky3bbb6f72011-07-29 03:49:23 +000073DIType DbgVariable::getType() const {
Devang Patel3cbee302011-04-12 22:53:02 +000074 DIType Ty = Var.getType();
75 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
76 // addresses instead.
77 if (Var.isBlockByrefVariable()) {
78 /* Byref variables, in Blocks, are declared by the programmer as
79 "SomeType VarName;", but the compiler creates a
80 __Block_byref_x_VarName struct, and gives the variable VarName
81 either the struct, or a pointer to the struct, as its type. This
82 is necessary for various behind-the-scenes things the compiler
83 needs to do with by-reference variables in blocks.
84
85 However, as far as the original *programmer* is concerned, the
86 variable should still have type 'SomeType', as originally declared.
87
88 The following function dives into the __Block_byref_x_VarName
89 struct to find the original type of the variable. This will be
90 passed back to the code generating the type for the Debug
91 Information Entry for the variable 'VarName'. 'VarName' will then
92 have the original type 'SomeType' in its debug information.
93
94 The original type 'SomeType' will be the type of the field named
95 'VarName' inside the __Block_byref_x_VarName struct.
96
97 NOTE: In order for this to not completely fail on the debugger
98 side, the Debug Information Entry for the variable VarName needs to
99 have a DW_AT_location that tells the debugger how to unwind through
100 the pointers and __Block_byref_x_VarName struct to find the actual
101 value of the variable. The function addBlockByrefType does this. */
102 DIType subType = Ty;
103 unsigned tag = Ty.getTag();
104
105 if (tag == dwarf::DW_TAG_pointer_type) {
106 DIDerivedType DTy = DIDerivedType(Ty);
107 subType = DTy.getTypeDerivedFrom();
108 }
109
110 DICompositeType blockStruct = DICompositeType(subType);
111 DIArray Elements = blockStruct.getTypeArray();
112
113 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
114 DIDescriptor Element = Elements.getElement(i);
115 DIDerivedType DT = DIDerivedType(Element);
116 if (getName() == DT.getName())
117 return (DT.getTypeDerivedFrom());
Devang Patel8bd11de2010-08-09 21:01:39 +0000118 }
119 return Ty;
120 }
Devang Patel3cbee302011-04-12 22:53:02 +0000121 return Ty;
122}
Bill Wendling0310d762009-05-15 09:23:25 +0000123
Chris Lattnerea761862010-04-05 04:09:20 +0000124} // end llvm namespace
Bill Wendling0310d762009-05-15 09:23:25 +0000125
Chris Lattner49cd6642010-04-05 05:11:15 +0000126DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
Devang Patel163a9f72010-05-10 22:49:55 +0000127 : Asm(A), MMI(Asm->MMI), FirstCU(0),
Jim Grosbach1e20b962010-07-21 21:21:52 +0000128 AbbreviationsSet(InitAbbreviationsSetSize),
Devang Patelbf47fdb2011-08-10 20:55:27 +0000129 PrevLabel(NULL) {
Chris Lattnerbc733f52010-03-13 02:17:42 +0000130 NextStringPoolNumber = 0;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000131
Rafael Espindolaf2b04232011-05-06 14:56:22 +0000132 DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0;
Chris Lattner4ad1efe2010-04-04 23:10:38 +0000133 DwarfStrSectionSym = TextSectionSym = 0;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000134 DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = 0;
Devang Patelc3f5f782010-05-25 23:40:22 +0000135 FunctionBeginSym = FunctionEndSym = 0;
Dan Gohman03c3dc72010-06-18 15:56:31 +0000136 {
137 NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
138 beginModule(M);
Torok Edwin9c421072010-04-07 10:44:46 +0000139 }
Bill Wendling0310d762009-05-15 09:23:25 +0000140}
141DwarfDebug::~DwarfDebug() {
Bill Wendling0310d762009-05-15 09:23:25 +0000142}
143
Eric Christopherd8a87522011-11-07 09:18:38 +0000144/// EmitSectionSym - Switch to the specified MCSection and emit an assembler
145/// temporary label to it if SymbolStem is specified.
146static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section,
147 const char *SymbolStem = 0) {
148 Asm->OutStreamer.SwitchSection(Section);
149 if (!SymbolStem) return 0;
150
151 MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem);
152 Asm->OutStreamer.EmitLabel(TmpSym);
153 return TmpSym;
154}
155
Nick Lewycky390c40d2011-10-27 06:44:11 +0000156MCSymbol *DwarfDebug::getStringPool() {
157 return Asm->GetTempSymbol("section_str");
158}
159
Chris Lattnerbc733f52010-03-13 02:17:42 +0000160MCSymbol *DwarfDebug::getStringPoolEntry(StringRef Str) {
161 std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str];
162 if (Entry.first) return Entry.first;
163
164 Entry.second = NextStringPoolNumber++;
Chris Lattnerc0215722010-04-04 19:25:43 +0000165 return Entry.first = Asm->GetTempSymbol("string", Entry.second);
Chris Lattnerbc733f52010-03-13 02:17:42 +0000166}
167
Devang Patel2c4ceb12009-11-21 02:48:08 +0000168/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000169///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000170void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling0310d762009-05-15 09:23:25 +0000171 // Profile the node so that we can make it unique.
172 FoldingSetNodeID ID;
173 Abbrev.Profile(ID);
174
175 // Check the set for priors.
176 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
177
178 // If it's newly added.
179 if (InSet == &Abbrev) {
180 // Add to abbreviation list.
181 Abbreviations.push_back(&Abbrev);
182
183 // Assign the vector position + 1 as its number.
184 Abbrev.setNumber(Abbreviations.size());
185 } else {
186 // Assign existing abbreviation number.
187 Abbrev.setNumber(InSet->getNumber());
188 }
189}
190
Jim Grosbach1e20b962010-07-21 21:21:52 +0000191/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
Devang Patel351ca332010-01-05 01:46:14 +0000192/// printer to not emit usual symbol prefix before the symbol name is used then
193/// return linkage name after skipping this special LLVM prefix.
194static StringRef getRealLinkageName(StringRef LinkageName) {
195 char One = '\1';
196 if (LinkageName.startswith(StringRef(&One, 1)))
197 return LinkageName.substr(1);
198 return LinkageName;
199}
200
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000201/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel2c4ceb12009-11-21 02:48:08 +0000202/// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
203/// If there are global variables in this scope then create and insert
204/// DIEs for these variables.
Devang Pateld3024342011-08-15 22:24:32 +0000205DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU,
206 const MDNode *SPNode) {
Devang Patel163a9f72010-05-10 22:49:55 +0000207 DIE *SPDie = SPCU->getDIE(SPNode);
Devang Patel8aa61472010-07-07 22:20:57 +0000208
Chris Lattnerd38fee82010-04-05 00:13:49 +0000209 assert(SPDie && "Unable to find subprogram DIE!");
210 DISubprogram SP(SPNode);
Jim Grosbach1e20b962010-07-21 21:21:52 +0000211
Devang Patel5e06bb82011-04-22 23:10:17 +0000212 DISubprogram SPDecl = SP.getFunctionDeclaration();
Rafael Espindolab0527282011-11-04 19:00:29 +0000213 if (!SPDecl.isSubprogram()) {
Devang Patel5e06bb82011-04-22 23:10:17 +0000214 // There is not any need to generate specification DIE for a function
215 // defined at compile unit level. If a function is defined inside another
216 // function then gdb prefers the definition at top level and but does not
217 // expect specification DIE in parent function. So avoid creating
218 // specification DIE for a function defined inside a function.
219 if (SP.isDefinition() && !SP.getContext().isCompileUnit() &&
220 !SP.getContext().isFile() &&
221 !isSubprogramContext(SP.getContext())) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000222 SPCU->addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Devang Patel5e06bb82011-04-22 23:10:17 +0000223
224 // Add arguments.
225 DICompositeType SPTy = SP.getType();
226 DIArray Args = SPTy.getTypeArray();
227 unsigned SPTag = SPTy.getTag();
228 if (SPTag == dwarf::DW_TAG_subroutine_type)
229 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
230 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
231 DIType ATy = DIType(DIType(Args.getElement(i)));
232 SPCU->addType(Arg, ATy);
233 if (ATy.isArtificial())
234 SPCU->addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
235 SPDie->addChild(Arg);
236 }
237 DIE *SPDeclDie = SPDie;
238 SPDie = new DIE(dwarf::DW_TAG_subprogram);
239 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
240 SPDeclDie);
241 SPCU->addDie(SPDie);
242 }
Chris Lattnerd38fee82010-04-05 00:13:49 +0000243 }
Devang Patel8aa61472010-07-07 22:20:57 +0000244 // Pick up abstract subprogram DIE.
245 if (DIE *AbsSPDIE = AbstractSPDies.lookup(SPNode)) {
246 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patel3cbee302011-04-12 22:53:02 +0000247 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin,
248 dwarf::DW_FORM_ref4, AbsSPDIE);
Devang Patel8aa61472010-07-07 22:20:57 +0000249 SPCU->addDie(SPDie);
250 }
251
Devang Patel3cbee302011-04-12 22:53:02 +0000252 SPCU->addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
253 Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber()));
254 SPCU->addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
255 Asm->GetTempSymbol("func_end", Asm->getFunctionNumber()));
Chris Lattnerd38fee82010-04-05 00:13:49 +0000256 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
257 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
Devang Patel3cbee302011-04-12 22:53:02 +0000258 SPCU->addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Devang Patelb4645642010-02-06 01:02:37 +0000259
Chris Lattnerd38fee82010-04-05 00:13:49 +0000260 return SPDie;
Devang Patel53bb5c92009-11-10 23:06:00 +0000261}
262
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000263/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel2c4ceb12009-11-21 02:48:08 +0000264/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Pateld3024342011-08-15 22:24:32 +0000265DIE *DwarfDebug::constructLexicalScopeDIE(CompileUnit *TheCU,
266 LexicalScope *Scope) {
Devang Pateleac9c072010-04-27 19:46:33 +0000267 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
268 if (Scope->isAbstractScope())
269 return ScopeDIE;
270
Devang Patelbf47fdb2011-08-10 20:55:27 +0000271 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Devang Pateleac9c072010-04-27 19:46:33 +0000272 if (Ranges.empty())
273 return 0;
274
Devang Patelbf47fdb2011-08-10 20:55:27 +0000275 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Pateleac9c072010-04-27 19:46:33 +0000276 if (Ranges.size() > 1) {
277 // .debug_range section has not been laid out yet. Emit offset in
Jim Grosbach1e20b962010-07-21 21:21:52 +0000278 // .debug_range as a uint, size 4, for now. emitDIE will handle
Devang Pateleac9c072010-04-27 19:46:33 +0000279 // DW_AT_ranges appropriately.
Devang Patel3cbee302011-04-12 22:53:02 +0000280 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel5bc942c2011-08-10 23:58:09 +0000281 DebugRangeSymbols.size()
282 * Asm->getTargetData().getPointerSize());
Devang Patelbf47fdb2011-08-10 20:55:27 +0000283 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Pateleac9c072010-04-27 19:46:33 +0000284 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patelc3f5f782010-05-25 23:40:22 +0000285 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
286 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
Devang Pateleac9c072010-04-27 19:46:33 +0000287 }
288 DebugRangeSymbols.push_back(NULL);
289 DebugRangeSymbols.push_back(NULL);
290 return ScopeDIE;
291 }
292
Devang Patelc3f5f782010-05-25 23:40:22 +0000293 const MCSymbol *Start = getLabelBeforeInsn(RI->first);
294 const MCSymbol *End = getLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +0000295
Devang Patelc3f5f782010-05-25 23:40:22 +0000296 if (End == 0) return 0;
Devang Patel53bb5c92009-11-10 23:06:00 +0000297
Chris Lattnerb7db7332010-03-09 01:58:53 +0000298 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
299 assert(End->isDefined() && "Invalid end label for an inlined scope!");
Jim Grosbach1e20b962010-07-21 21:21:52 +0000300
Devang Patel3cbee302011-04-12 22:53:02 +0000301 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start);
302 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, End);
Devang Patel53bb5c92009-11-10 23:06:00 +0000303
304 return ScopeDIE;
305}
306
Devang Patel2c4ceb12009-11-21 02:48:08 +0000307/// constructInlinedScopeDIE - This scope represents inlined body of
308/// a function. Construct DIE to represent this concrete inlined copy
309/// of the function.
Devang Pateld3024342011-08-15 22:24:32 +0000310DIE *DwarfDebug::constructInlinedScopeDIE(CompileUnit *TheCU,
311 LexicalScope *Scope) {
Devang Patelbf47fdb2011-08-10 20:55:27 +0000312 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Nick Lewycky746cb672011-10-26 22:55:33 +0000313 assert(Ranges.empty() == false &&
314 "LexicalScope does not have instruction markers!");
Devang Pateleac9c072010-04-27 19:46:33 +0000315
Devang Patel26a92002011-07-27 00:34:13 +0000316 if (!Scope->getScopeNode())
317 return NULL;
318 DIScope DS(Scope->getScopeNode());
319 DISubprogram InlinedSP = getDISubprogram(DS);
Devang Patel26a92002011-07-27 00:34:13 +0000320 DIE *OriginDIE = TheCU->getDIE(InlinedSP);
321 if (!OriginDIE) {
322 DEBUG(dbgs() << "Unable to find original DIE for inlined subprogram.");
323 return NULL;
324 }
325
Devang Patelbf47fdb2011-08-10 20:55:27 +0000326 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patelc3f5f782010-05-25 23:40:22 +0000327 const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first);
328 const MCSymbol *EndLabel = getLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +0000329
Devang Patel0afbf232010-07-08 22:39:20 +0000330 if (StartLabel == 0 || EndLabel == 0) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000331 assert(0 && "Unexpected Start and End labels for a inlined scope!");
Devang Pateleac9c072010-04-27 19:46:33 +0000332 return 0;
333 }
Chris Lattnerb7db7332010-03-09 01:58:53 +0000334 assert(StartLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +0000335 "Invalid starting label for an inlined scope!");
Chris Lattnerb7db7332010-03-09 01:58:53 +0000336 assert(EndLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +0000337 "Invalid end label for an inlined scope!");
Devang Pateleac9c072010-04-27 19:46:33 +0000338
Devang Pateld96efb82011-05-05 17:54:26 +0000339 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
Devang Patel3cbee302011-04-12 22:53:02 +0000340 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
341 dwarf::DW_FORM_ref4, OriginDIE);
Devang Patel53bb5c92009-11-10 23:06:00 +0000342
Devang Patel26a92002011-07-27 00:34:13 +0000343 if (Ranges.size() > 1) {
344 // .debug_range section has not been laid out yet. Emit offset in
345 // .debug_range as a uint, size 4, for now. emitDIE will handle
346 // DW_AT_ranges appropriately.
347 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel5bc942c2011-08-10 23:58:09 +0000348 DebugRangeSymbols.size()
349 * Asm->getTargetData().getPointerSize());
Devang Patelbf47fdb2011-08-10 20:55:27 +0000350 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel26a92002011-07-27 00:34:13 +0000351 RE = Ranges.end(); RI != RE; ++RI) {
352 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
353 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
354 }
355 DebugRangeSymbols.push_back(NULL);
356 DebugRangeSymbols.push_back(NULL);
357 } else {
Devang Patel5bc942c2011-08-10 23:58:09 +0000358 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
359 StartLabel);
360 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
361 EndLabel);
Devang Patel26a92002011-07-27 00:34:13 +0000362 }
Devang Patel53bb5c92009-11-10 23:06:00 +0000363
364 InlinedSubprogramDIEs.insert(OriginDIE);
365
366 // Track the start label for this inlined function.
Devang Patel26a92002011-07-27 00:34:13 +0000367 //.debug_inlined section specification does not clearly state how
368 // to emit inlined scope that is split into multiple instruction ranges.
369 // For now, use first instruction range and emit low_pc/high_pc pair and
370 // corresponding .debug_inlined section entry for this pair.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000371 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patel2db49d72010-05-07 18:11:54 +0000372 I = InlineInfo.find(InlinedSP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000373
374 if (I == InlineInfo.end()) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000375 InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patel2db49d72010-05-07 18:11:54 +0000376 InlinedSPNodes.push_back(InlinedSP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000377 } else
Chris Lattner6ed0f902010-03-09 00:31:02 +0000378 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patel53bb5c92009-11-10 23:06:00 +0000379
Devang Patel53bb5c92009-11-10 23:06:00 +0000380 DILocation DL(Scope->getInlinedAt());
Devang Patel3cbee302011-04-12 22:53:02 +0000381 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, TheCU->getID());
382 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patel53bb5c92009-11-10 23:06:00 +0000383
384 return ScopeDIE;
385}
386
Devang Patel2c4ceb12009-11-21 02:48:08 +0000387/// constructScopeDIE - Construct a DIE for this scope.
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000388DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) {
Devang Patel3c91b052010-03-08 20:52:55 +0000389 if (!Scope || !Scope->getScopeNode())
390 return NULL;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000391
Nick Lewycky746cb672011-10-26 22:55:33 +0000392 SmallVector<DIE *, 8> Children;
Devang Patel0478c152011-03-01 22:58:55 +0000393
394 // Collect arguments for current function.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000395 if (LScopes.isCurrentFunctionScope(Scope))
Devang Patel0478c152011-03-01 22:58:55 +0000396 for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i)
397 if (DbgVariable *ArgDV = CurrentFnArguments[i])
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000398 if (DIE *Arg =
399 TheCU->constructVariableDIE(ArgDV, Scope->isAbstractScope()))
Devang Patel0478c152011-03-01 22:58:55 +0000400 Children.push_back(Arg);
401
Eric Christopher1aeb7ac2011-10-03 15:49:16 +0000402 // Collect lexical scope children first.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000403 const SmallVector<DbgVariable *, 8> &Variables = ScopeVariables.lookup(Scope);
Devang Patel5bc9fec2011-02-19 01:31:27 +0000404 for (unsigned i = 0, N = Variables.size(); i < N; ++i)
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000405 if (DIE *Variable =
406 TheCU->constructVariableDIE(Variables[i], Scope->isAbstractScope()))
Devang Patel5bc9fec2011-02-19 01:31:27 +0000407 Children.push_back(Variable);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000408 const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren();
Devang Patel5bc9fec2011-02-19 01:31:27 +0000409 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000410 if (DIE *Nested = constructScopeDIE(TheCU, Scopes[j]))
Devang Patel5bc9fec2011-02-19 01:31:27 +0000411 Children.push_back(Nested);
Devang Patel3c91b052010-03-08 20:52:55 +0000412 DIScope DS(Scope->getScopeNode());
413 DIE *ScopeDIE = NULL;
414 if (Scope->getInlinedAt())
Devang Pateld3024342011-08-15 22:24:32 +0000415 ScopeDIE = constructInlinedScopeDIE(TheCU, Scope);
Devang Patel3c91b052010-03-08 20:52:55 +0000416 else if (DS.isSubprogram()) {
Devang Patel0dd45582010-06-28 20:53:04 +0000417 ProcessedSPNodes.insert(DS);
Devang Patel8aa61472010-07-07 22:20:57 +0000418 if (Scope->isAbstractScope()) {
Devang Pateld3024342011-08-15 22:24:32 +0000419 ScopeDIE = TheCU->getDIE(DS);
Devang Patel8aa61472010-07-07 22:20:57 +0000420 // Note down abstract DIE.
421 if (ScopeDIE)
422 AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
423 }
Devang Patel3c91b052010-03-08 20:52:55 +0000424 else
Devang Pateld3024342011-08-15 22:24:32 +0000425 ScopeDIE = updateSubprogramScopeDIE(TheCU, DS);
Devang Patel3c91b052010-03-08 20:52:55 +0000426 }
Devang Patel5bc9fec2011-02-19 01:31:27 +0000427 else {
428 // There is no need to emit empty lexical block DIE.
429 if (Children.empty())
430 return NULL;
Devang Pateld3024342011-08-15 22:24:32 +0000431 ScopeDIE = constructLexicalScopeDIE(TheCU, Scope);
Devang Patel5bc9fec2011-02-19 01:31:27 +0000432 }
433
Devang Patelaead63c2010-03-29 22:59:58 +0000434 if (!ScopeDIE) return NULL;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000435
Devang Patel5bc9fec2011-02-19 01:31:27 +0000436 // Add children
437 for (SmallVector<DIE *, 8>::iterator I = Children.begin(),
438 E = Children.end(); I != E; ++I)
439 ScopeDIE->addChild(*I);
Devang Patel193f7202009-11-24 01:14:22 +0000440
Jim Grosbach1e20b962010-07-21 21:21:52 +0000441 if (DS.isSubprogram())
Devang Pateld3024342011-08-15 22:24:32 +0000442 TheCU->addPubTypes(DISubprogram(DS));
Jim Grosbach1e20b962010-07-21 21:21:52 +0000443
Eric Christopher09ac3d82011-11-07 09:24:32 +0000444 if (DS.isSubprogram() && !Scope->isAbstractScope())
445 TheCU->addAccelName(DISubprogram(DS).getName(), ScopeDIE);
446
Devang Patel193f7202009-11-24 01:14:22 +0000447 return ScopeDIE;
Devang Patel53bb5c92009-11-10 23:06:00 +0000448}
449
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000450/// GetOrCreateSourceID - Look up the source id with the given directory and
451/// source file names. If none currently exists, create a new id and insert it
452/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
453/// maps as well.
Devang Patel23670e52011-03-24 20:30:50 +0000454unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
455 StringRef DirName) {
Devang Patel1905a182010-09-16 20:57:49 +0000456 // If FE did not provide a file name, then assume stdin.
457 if (FileName.empty())
Devang Patel23670e52011-03-24 20:30:50 +0000458 return GetOrCreateSourceID("<stdin>", StringRef());
459
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000460 // TODO: this might not belong here. See if we can factor this better.
461 if (DirName == CompilationDir)
462 DirName = "";
463
Nick Lewycky44d798d2011-10-17 23:05:28 +0000464 unsigned SrcId = SourceIdMap.size()+1;
465 std::pair<std::string, std::string> SourceName =
466 std::make_pair(FileName, DirName);
467 std::pair<std::pair<std::string, std::string>, unsigned> Entry =
468 make_pair(SourceName, SrcId);
Devang Patel1905a182010-09-16 20:57:49 +0000469
Nick Lewycky44d798d2011-10-17 23:05:28 +0000470 std::map<std::pair<std::string, std::string>, unsigned>::iterator I;
471 bool NewlyInserted;
472 tie(I, NewlyInserted) = SourceIdMap.insert(Entry);
473 if (!NewlyInserted)
474 return I->second;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000475
Rafael Espindola5c055632010-11-18 02:04:25 +0000476 // Print out a .file directive to specify files for .loc directives.
Nick Lewycky44d798d2011-10-17 23:05:28 +0000477 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, Entry.first.second,
478 Entry.first.first);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000479
480 return SrcId;
481}
482
Jim Grosbach1e20b962010-07-21 21:21:52 +0000483/// constructCompileUnit - Create new CompileUnit for the given
Devang Patel163a9f72010-05-10 22:49:55 +0000484/// metadata node with tag DW_TAG_compile_unit.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000485CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +0000486 DICompileUnit DIUnit(N);
Devang Patel65dbc902009-11-25 17:36:49 +0000487 StringRef FN = DIUnit.getFilename();
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000488 CompilationDir = DIUnit.getDirectory();
489 unsigned ID = GetOrCreateSourceID(FN, CompilationDir);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000490
491 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Devang Patel3cbee302011-04-12 22:53:02 +0000492 CompileUnit *NewCU = new CompileUnit(ID, Die, Asm, this);
Nick Lewycky390c40d2011-10-27 06:44:11 +0000493 NewCU->addString(Die, dwarf::DW_AT_producer, DIUnit.getProducer());
Devang Patel3cbee302011-04-12 22:53:02 +0000494 NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2,
495 DIUnit.getLanguage());
Nick Lewycky390c40d2011-10-27 06:44:11 +0000496 NewCU->addString(Die, dwarf::DW_AT_name, FN);
Devang Patel5098da02010-04-26 22:54:28 +0000497 // Use DW_AT_entry_pc instead of DW_AT_low_pc/DW_AT_high_pc pair. This
498 // simplifies debug range entries.
Devang Patel3cbee302011-04-12 22:53:02 +0000499 NewCU->addUInt(Die, dwarf::DW_AT_entry_pc, dwarf::DW_FORM_addr, 0);
Devang Patel4a602ca2010-03-22 23:11:36 +0000500 // DW_AT_stmt_list is a offset of line number information for this
Devang Patelaf608bd2010-08-24 00:06:12 +0000501 // compile unit in debug_line section.
Nick Lewyckyd5d52132011-10-17 23:27:36 +0000502 if (Asm->MAI->doesDwarfRequireRelocationForSectionOffset())
Rafael Espindola597a7662011-05-04 17:44:06 +0000503 NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Devang Patel3cbee302011-04-12 22:53:02 +0000504 Asm->GetTempSymbol("section_line"));
Devang Patelae84d5b2010-08-31 23:50:19 +0000505 else
Devang Patel3cbee302011-04-12 22:53:02 +0000506 NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000507
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000508 if (!CompilationDir.empty())
509 NewCU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000510 if (DIUnit.isOptimized())
Devang Patel3cbee302011-04-12 22:53:02 +0000511 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000512
Devang Patel65dbc902009-11-25 17:36:49 +0000513 StringRef Flags = DIUnit.getFlags();
514 if (!Flags.empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +0000515 NewCU->addString(Die, dwarf::DW_AT_APPLE_flags, Flags);
Devang Patel3cbee302011-04-12 22:53:02 +0000516
Nick Lewyckyd5d52132011-10-17 23:27:36 +0000517 if (unsigned RVer = DIUnit.getRunTimeVersion())
Devang Patel3cbee302011-04-12 22:53:02 +0000518 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000519 dwarf::DW_FORM_data1, RVer);
520
Devang Patel163a9f72010-05-10 22:49:55 +0000521 if (!FirstCU)
522 FirstCU = NewCU;
523 CUMap.insert(std::make_pair(N, NewCU));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000524 return NewCU;
Devang Patel163a9f72010-05-10 22:49:55 +0000525}
526
Eric Christopher09ac3d82011-11-07 09:24:32 +0000527static bool isObjCClass(StringRef Name) {
Eric Christopher71354572011-11-07 18:10:17 +0000528 if (Name == "") return false;
Eric Christopher09ac3d82011-11-07 09:24:32 +0000529 return Name[0] == '+' || Name[0] == '-';
530}
531
532static bool hasObjCCategory(StringRef Name) {
533 if (Name[0] != '+' && Name[0] != '-')
534 return false;
535
536 size_t pos = Name.find(')');
537 if (pos != std::string::npos) {
538 if (Name[pos+1] != ' ') return false;
539 return true;
540 }
541
542 return false;
543}
544
545static void getObjCClassCategory(StringRef In, StringRef &Class,
546 StringRef &Category) {
547 if (!hasObjCCategory(In)) {
548 Class = In.slice(In.find('[') + 1, In.find(' '));
549 Category = "";
550 return;
551 }
552
553 Class = In.slice(In.find('[') + 1, In.find('('));
554 Category = In.slice(In.find('[') + 1, In.find(' '));
555 return;
556}
557
Devang Patel163a9f72010-05-10 22:49:55 +0000558/// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel3655a212011-08-15 23:36:40 +0000559void DwarfDebug::constructSubprogramDIE(CompileUnit *TheCU,
560 const MDNode *N) {
Rafael Espindolab0527282011-11-04 19:00:29 +0000561 CompileUnit *&CURef = SPMap[N];
562 if (CURef)
563 return;
564 CURef = TheCU;
565
Devang Patele4b27562009-08-28 23:24:31 +0000566 DISubprogram SP(N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000567 if (!SP.isDefinition())
568 // This is a method declaration which will be handled while constructing
569 // class type.
Devang Patel13e16b62009-06-26 01:49:18 +0000570 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000571
Rafael Espindolab0527282011-11-04 19:00:29 +0000572 DISubprogram SPDecl = SP.getFunctionDeclaration();
573 DIE *DeclDie = NULL;
574 if (SPDecl.isSubprogram()) {
575 DeclDie = TheCU->getOrCreateSubprogramDIE(SPDecl);
576 }
577
Devang Pateldbc64af2011-08-15 17:24:54 +0000578 DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP);
Stuart Hastings639336e2010-04-06 21:38:29 +0000579
Rafael Espindolab0527282011-11-04 19:00:29 +0000580 if (DeclDie) {
581 // Refer function declaration directly.
582 TheCU->addDIEEntry(SubprogramDie, dwarf::DW_AT_specification,
583 dwarf::DW_FORM_ref4, DeclDie);
584 }
585
Stuart Hastings639336e2010-04-06 21:38:29 +0000586 // Add to map.
Devang Patel163a9f72010-05-10 22:49:55 +0000587 TheCU->insertDIE(N, SubprogramDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000588
589 // Add to context owner.
Devang Patel3cbee302011-04-12 22:53:02 +0000590 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel0000fad2009-12-08 23:21:45 +0000591
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000592 // Expose as global.
Devang Patel163a9f72010-05-10 22:49:55 +0000593 TheCU->addGlobal(SP.getName(), SubprogramDie);
Devang Patel193f7202009-11-24 01:14:22 +0000594
Eric Christopher09ac3d82011-11-07 09:24:32 +0000595 // Add to Accel Names
596 TheCU->addAccelName(SP.getName(), SubprogramDie);
597
598 // If this is an Objective-C selector name add it to the ObjC accelerator too.
599 if (isObjCClass(SP.getName())) {
600 StringRef Class, Category;
601 getObjCClassCategory(SP.getName(), Class, Category);
602 TheCU->addAccelObjC(Class, SubprogramDie);
603 if (Category != "")
604 TheCU->addAccelObjC(Category, SubprogramDie);
605 }
606
Devang Patel13e16b62009-06-26 01:49:18 +0000607 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000608}
609
Devang Patel02e603f2011-08-15 23:47:24 +0000610/// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
611/// as llvm.dbg.enum and llvm.dbg.ty
612void DwarfDebug::collectInfoFromNamedMDNodes(Module *M) {
Devang Patel94c7ddb2011-08-16 22:09:43 +0000613 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.sp"))
614 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
615 const MDNode *N = NMD->getOperand(i);
616 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
617 constructSubprogramDIE(CU, N);
618 }
619
620 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv"))
621 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
622 const MDNode *N = NMD->getOperand(i);
623 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel28bea082011-08-18 23:17:55 +0000624 CU->createGlobalVariableDIE(N);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000625 }
626
Devang Patel02e603f2011-08-15 23:47:24 +0000627 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
628 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
629 DIType Ty(NMD->getOperand(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000630 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
631 CU->getOrCreateTypeDIE(Ty);
Devang Patel02e603f2011-08-15 23:47:24 +0000632 }
633
634 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
635 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
636 DIType Ty(NMD->getOperand(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000637 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
638 CU->getOrCreateTypeDIE(Ty);
Devang Patel02e603f2011-08-15 23:47:24 +0000639 }
640}
641
642/// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
643/// FIXME - Remove this when dragon-egg and llvm-gcc switch to DIBuilder.
644bool DwarfDebug::collectLegacyDebugInfo(Module *M) {
645 DebugInfoFinder DbgFinder;
646 DbgFinder.processModule(*M);
647
648 bool HasDebugInfo = false;
649 // Scan all the compile-units to see if there are any marked as the main
650 // unit. If not, we do not generate debug info.
651 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
652 E = DbgFinder.compile_unit_end(); I != E; ++I) {
653 if (DICompileUnit(*I).isMain()) {
654 HasDebugInfo = true;
655 break;
656 }
657 }
658 if (!HasDebugInfo) return false;
659
660 // Create all the compile unit DIEs.
661 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
662 E = DbgFinder.compile_unit_end(); I != E; ++I)
663 constructCompileUnit(*I);
664
665 // Create DIEs for each global variable.
666 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
667 E = DbgFinder.global_variable_end(); I != E; ++I) {
668 const MDNode *N = *I;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000669 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel28bea082011-08-18 23:17:55 +0000670 CU->createGlobalVariableDIE(N);
Devang Patel02e603f2011-08-15 23:47:24 +0000671 }
Devang Patel94c7ddb2011-08-16 22:09:43 +0000672
Devang Patel02e603f2011-08-15 23:47:24 +0000673 // Create DIEs for each subprogram.
674 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
675 E = DbgFinder.subprogram_end(); I != E; ++I) {
676 const MDNode *N = *I;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000677 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
678 constructSubprogramDIE(CU, N);
Devang Patel02e603f2011-08-15 23:47:24 +0000679 }
680
681 return HasDebugInfo;
682}
683
Devang Patel2c4ceb12009-11-21 02:48:08 +0000684/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbar00564992009-09-19 20:40:14 +0000685/// content. Create global DIEs and emit initial debug info sections.
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000686/// This is invoked by the target AsmPrinter.
Chris Lattner75f50722010-04-04 07:48:20 +0000687void DwarfDebug::beginModule(Module *M) {
Devang Pateleac9c072010-04-27 19:46:33 +0000688 if (DisableDebugInfoPrinting)
689 return;
690
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000691 // If module has named metadata anchors then use them, otherwise scan the
692 // module using debug info finder to collect debug info.
Devang Patel30692ab2011-05-03 16:45:22 +0000693 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
694 if (CU_Nodes) {
Devang Patel94c7ddb2011-08-16 22:09:43 +0000695 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
696 DICompileUnit CUNode(CU_Nodes->getOperand(i));
697 CompileUnit *CU = constructCompileUnit(CUNode);
698 DIArray GVs = CUNode.getGlobalVariables();
699 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
Devang Patel28bea082011-08-18 23:17:55 +0000700 CU->createGlobalVariableDIE(GVs.getElement(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000701 DIArray SPs = CUNode.getSubprograms();
702 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
703 constructSubprogramDIE(CU, SPs.getElement(i));
704 DIArray EnumTypes = CUNode.getEnumTypes();
705 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
706 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
707 DIArray RetainedTypes = CUNode.getRetainedTypes();
708 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
709 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
710 }
Devang Patel02e603f2011-08-15 23:47:24 +0000711 } else if (!collectLegacyDebugInfo(M))
712 return;
Devang Patel30692ab2011-05-03 16:45:22 +0000713
Devang Patel02e603f2011-08-15 23:47:24 +0000714 collectInfoFromNamedMDNodes(M);
Devang Patel30692ab2011-05-03 16:45:22 +0000715
Chris Lattnerd850ac72010-04-05 02:19:28 +0000716 // Tell MMI that we have debug info.
717 MMI->setDebugInfoAvailability(true);
Devang Patel30692ab2011-05-03 16:45:22 +0000718
Chris Lattnerbe15beb2010-04-04 23:17:54 +0000719 // Emit initial sections.
Chris Lattnerd850ac72010-04-05 02:19:28 +0000720 EmitSectionLabels();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000721
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000722 // Prime section data.
Chris Lattnerf0144122009-07-28 03:13:23 +0000723 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000724}
725
Devang Patel2c4ceb12009-11-21 02:48:08 +0000726/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000727///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000728void DwarfDebug::endModule() {
Devang Patel163a9f72010-05-10 22:49:55 +0000729 if (!FirstCU) return;
Devang Patel4a1cad62010-06-28 18:25:03 +0000730 const Module *M = MMI->getModule();
Devang Patelbf47fdb2011-08-10 20:55:27 +0000731 DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap;
Devang Patel4a1cad62010-06-28 18:25:03 +0000732
Devang Patel94c7ddb2011-08-16 22:09:43 +0000733 // Collect info for variables that were optimized out.
734 if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) {
735 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
736 DICompileUnit TheCU(CU_Nodes->getOperand(i));
737 DIArray Subprograms = TheCU.getSubprograms();
738 for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) {
739 DISubprogram SP(Subprograms.getElement(i));
740 if (ProcessedSPNodes.count(SP) != 0) continue;
741 if (!SP.Verify()) continue;
742 if (!SP.isDefinition()) continue;
Devang Patel93d39be2011-08-19 23:28:12 +0000743 DIArray Variables = SP.getVariables();
744 if (Variables.getNumElements() == 0) continue;
745
Devang Patel94c7ddb2011-08-16 22:09:43 +0000746 LexicalScope *Scope =
747 new LexicalScope(NULL, DIDescriptor(SP), NULL, false);
748 DeadFnScopeMap[SP] = Scope;
749
750 // Construct subprogram DIE and add variables DIEs.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000751 CompileUnit *SPCU = CUMap.lookup(TheCU);
Nick Lewycky746cb672011-10-26 22:55:33 +0000752 assert(SPCU && "Unable to find Compile Unit!");
Devang Patel94c7ddb2011-08-16 22:09:43 +0000753 constructSubprogramDIE(SPCU, SP);
754 DIE *ScopeDIE = SPCU->getDIE(SP);
Devang Patel93d39be2011-08-19 23:28:12 +0000755 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
756 DIVariable DV(Variables.getElement(vi));
757 if (!DV.Verify()) continue;
758 DbgVariable *NewVar = new DbgVariable(DV, NULL);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000759 if (DIE *VariableDIE =
Devang Patel93d39be2011-08-19 23:28:12 +0000760 SPCU->constructVariableDIE(NewVar, Scope->isAbstractScope()))
Devang Patel94c7ddb2011-08-16 22:09:43 +0000761 ScopeDIE->addChild(VariableDIE);
762 }
Devang Patel4a1cad62010-06-28 18:25:03 +0000763 }
764 }
765 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000766
Devang Patel53bb5c92009-11-10 23:06:00 +0000767 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
768 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
769 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
770 DIE *ISP = *AI;
Devang Patel3cbee302011-04-12 22:53:02 +0000771 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patel53bb5c92009-11-10 23:06:00 +0000772 }
773
Devang Pateldbc64af2011-08-15 17:24:54 +0000774 // Emit DW_AT_containing_type attribute to connect types with their
775 // vtable holding type.
776 for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(),
777 CUE = CUMap.end(); CUI != CUE; ++CUI) {
778 CompileUnit *TheCU = CUI->second;
779 TheCU->constructContainingTypeDIEs();
Devang Patel5d11eb02009-12-03 19:11:07 +0000780 }
781
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000782 // Standard sections final addresses.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000783 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000784 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000785 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000786 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000787
788 // End text sections.
789 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000790 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnerc0215722010-04-04 19:25:43 +0000791 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000792 }
793
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000794 // Compute DIE offsets and sizes.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000795 computeSizeAndOffsets();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000796
797 // Emit all the DIEs into a debug info section
Devang Patel2c4ceb12009-11-21 02:48:08 +0000798 emitDebugInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000799
800 // Corresponding abbreviations into a abbrev section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000801 emitAbbreviations();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000802
Eric Christopher09ac3d82011-11-07 09:24:32 +0000803 // Emit info into a dwarf accelerator table sections.
804 if (DwarfAccelTables) {
805 emitAccelNames();
806 emitAccelObjC();
807 emitAccelNamespaces();
808 emitAccelTypes();
809 }
810
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000811 // Emit info into a debug pubnames section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000812 emitDebugPubNames();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000813
Devang Patel193f7202009-11-24 01:14:22 +0000814 // Emit info into a debug pubtypes section.
815 emitDebugPubTypes();
816
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000817 // Emit info into a debug loc section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000818 emitDebugLoc();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000819
820 // Emit info into a debug aranges section.
821 EmitDebugARanges();
822
823 // Emit info into a debug ranges section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000824 emitDebugRanges();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000825
826 // Emit info into a debug macinfo section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000827 emitDebugMacInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000828
829 // Emit inline info.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000830 emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000831
Chris Lattnerbc733f52010-03-13 02:17:42 +0000832 // Emit info into a debug str section.
833 emitDebugStr();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000834
Devang Patele9a1cca2010-08-02 17:32:15 +0000835 // clean up.
836 DeleteContainerSeconds(DeadFnScopeMap);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000837 SPMap.clear();
Devang Patel163a9f72010-05-10 22:49:55 +0000838 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
839 E = CUMap.end(); I != E; ++I)
840 delete I->second;
841 FirstCU = NULL; // Reset for the next Module, if any.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000842}
843
Devang Patel53bb5c92009-11-10 23:06:00 +0000844/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Devang Patelb549bcf2011-08-10 21:50:54 +0000845DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV,
Chris Lattnerde4845c2010-04-02 19:42:39 +0000846 DebugLoc ScopeLoc) {
Devang Patelb549bcf2011-08-10 21:50:54 +0000847 LLVMContext &Ctx = DV->getContext();
848 // More then one inlined variable corresponds to one abstract variable.
849 DIVariable Var = cleanseInlinedVariable(DV, Ctx);
Devang Patel2db49d72010-05-07 18:11:54 +0000850 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patel53bb5c92009-11-10 23:06:00 +0000851 if (AbsDbgVariable)
852 return AbsDbgVariable;
853
Devang Patelbf47fdb2011-08-10 20:55:27 +0000854 LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx));
Devang Patel53bb5c92009-11-10 23:06:00 +0000855 if (!Scope)
856 return NULL;
857
Devang Patel5a1a67c2011-08-15 19:01:20 +0000858 AbsDbgVariable = new DbgVariable(Var, NULL);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000859 addScopeVariable(Scope, AbsDbgVariable);
Devang Patel2db49d72010-05-07 18:11:54 +0000860 AbstractVariables[Var] = AbsDbgVariable;
Devang Patel53bb5c92009-11-10 23:06:00 +0000861 return AbsDbgVariable;
862}
863
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000864/// addCurrentFnArgument - If Var is a current function argument then add
865/// it to CurrentFnArguments list.
Devang Patel0478c152011-03-01 22:58:55 +0000866bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
Devang Patelbf47fdb2011-08-10 20:55:27 +0000867 DbgVariable *Var, LexicalScope *Scope) {
868 if (!LScopes.isCurrentFunctionScope(Scope))
Devang Patel0478c152011-03-01 22:58:55 +0000869 return false;
870 DIVariable DV = Var->getVariable();
871 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
872 return false;
873 unsigned ArgNo = DV.getArgNumber();
874 if (ArgNo == 0)
875 return false;
876
Devang Patelcb3a6572011-03-03 20:02:02 +0000877 size_t Size = CurrentFnArguments.size();
878 if (Size == 0)
Devang Patel0478c152011-03-01 22:58:55 +0000879 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patelbbd0f452011-03-03 21:49:41 +0000880 // llvm::Function argument size is not good indicator of how many
Devang Patel6f676be2011-03-03 20:08:10 +0000881 // arguments does the function have at source level.
882 if (ArgNo > Size)
Devang Patelcb3a6572011-03-03 20:02:02 +0000883 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel0478c152011-03-01 22:58:55 +0000884 CurrentFnArguments[ArgNo - 1] = Var;
885 return true;
886}
887
Devang Patelee432862010-05-20 19:57:06 +0000888/// collectVariableInfoFromMMITable - Collect variable information from
889/// side table maintained by MMI.
Jim Grosbach1e20b962010-07-21 21:21:52 +0000890void
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000891DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF,
Devang Patelee432862010-05-20 19:57:06 +0000892 SmallPtrSet<const MDNode *, 16> &Processed) {
Devang Patele717faa2009-10-06 01:26:37 +0000893 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
894 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
895 VE = VMap.end(); VI != VE; ++VI) {
Devang Patele9f8f5e2010-05-07 20:54:48 +0000896 const MDNode *Var = VI->first;
Devang Patel53bb5c92009-11-10 23:06:00 +0000897 if (!Var) continue;
Devang Patel98e1cac2010-05-14 21:01:35 +0000898 Processed.insert(Var);
Chris Lattnerde4845c2010-04-02 19:42:39 +0000899 DIVariable DV(Var);
900 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patel53bb5c92009-11-10 23:06:00 +0000901
Devang Patelbf47fdb2011-08-10 20:55:27 +0000902 LexicalScope *Scope = LScopes.findLexicalScope(VP.second);
Jim Grosbach1e20b962010-07-21 21:21:52 +0000903
Devang Patelfb0ee432009-11-10 23:20:04 +0000904 // If variable scope is not found then skip this variable.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000905 if (Scope == 0)
Devang Patelfb0ee432009-11-10 23:20:04 +0000906 continue;
Devang Patel53bb5c92009-11-10 23:06:00 +0000907
Devang Patel26c1e562010-05-20 16:36:41 +0000908 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
Devang Patel5a1a67c2011-08-15 19:01:20 +0000909 DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable);
Devang Patelff9dd0a2011-08-15 21:24:36 +0000910 RegVar->setFrameIndex(VP.first);
Devang Patel0478c152011-03-01 22:58:55 +0000911 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000912 addScopeVariable(Scope, RegVar);
Devang Patel5a1a67c2011-08-15 19:01:20 +0000913 if (AbsDbgVariable)
Devang Patelff9dd0a2011-08-15 21:24:36 +0000914 AbsDbgVariable->setFrameIndex(VP.first);
Devang Patele717faa2009-10-06 01:26:37 +0000915 }
Devang Patelee432862010-05-20 19:57:06 +0000916}
Devang Patel90a48ad2010-03-15 18:33:46 +0000917
Jim Grosbach1e20b962010-07-21 21:21:52 +0000918/// isDbgValueInDefinedReg - Return true if debug value, encoded by
Devang Patelc3f5f782010-05-25 23:40:22 +0000919/// DBG_VALUE instruction, is in a defined reg.
920static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000921 assert(MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000922 return MI->getNumOperands() == 3 &&
923 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
924 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patelc3f5f782010-05-25 23:40:22 +0000925}
926
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000927/// getDebugLocEntry - Get .debug_loc entry for the instruction range starting
Devang Patel90b40412011-07-08 17:09:57 +0000928/// at MI.
929static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm,
930 const MCSymbol *FLabel,
931 const MCSymbol *SLabel,
932 const MachineInstr *MI) {
933 const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata();
934
935 if (MI->getNumOperands() != 3) {
936 MachineLocation MLoc = Asm->getDebugValueLocation(MI);
937 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
938 }
939 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) {
940 MachineLocation MLoc;
941 MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
942 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
943 }
944 if (MI->getOperand(0).isImm())
945 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm());
946 if (MI->getOperand(0).isFPImm())
947 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm());
948 if (MI->getOperand(0).isCImm())
949 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm());
950
Nick Lewycky746cb672011-10-26 22:55:33 +0000951 assert(0 && "Unexpected 3 operand DBG_VALUE instruction!");
Devang Patel90b40412011-07-08 17:09:57 +0000952 return DotDebugLocEntry();
953}
954
Devang Patelbf47fdb2011-08-10 20:55:27 +0000955/// collectVariableInfo - Find variables for each lexical scope.
Jim Grosbach1e20b962010-07-21 21:21:52 +0000956void
Devang Patel78e127d2010-06-25 22:07:34 +0000957DwarfDebug::collectVariableInfo(const MachineFunction *MF,
958 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbach1e20b962010-07-21 21:21:52 +0000959
Devang Patelee432862010-05-20 19:57:06 +0000960 /// collection info from MMI table.
961 collectVariableInfoFromMMITable(MF, Processed);
962
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000963 for (SmallVectorImpl<const MDNode*>::const_iterator
964 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
965 ++UVI) {
966 const MDNode *Var = *UVI;
967 if (Processed.count(Var))
Devang Patelee432862010-05-20 19:57:06 +0000968 continue;
969
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000970 // History contains relevant DBG_VALUE instructions for Var and instructions
971 // clobbering it.
972 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
973 if (History.empty())
974 continue;
975 const MachineInstr *MInsn = History.front();
Devang Patelc3f5f782010-05-25 23:40:22 +0000976
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000977 DIVariable DV(Var);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000978 LexicalScope *Scope = NULL;
Devang Pateld8720f42010-05-27 20:25:04 +0000979 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
980 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000981 Scope = LScopes.getCurrentFunctionScope();
Devang Patel40c7e412011-07-20 22:18:50 +0000982 else {
983 if (DV.getVersion() <= LLVMDebugVersion9)
Devang Patelbf47fdb2011-08-10 20:55:27 +0000984 Scope = LScopes.findLexicalScope(MInsn->getDebugLoc());
Devang Patel40c7e412011-07-20 22:18:50 +0000985 else {
986 if (MDNode *IA = DV.getInlinedAt())
Devang Patelbf47fdb2011-08-10 20:55:27 +0000987 Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA));
Devang Patel40c7e412011-07-20 22:18:50 +0000988 else
Devang Patelbf47fdb2011-08-10 20:55:27 +0000989 Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1)));
Devang Patel40c7e412011-07-20 22:18:50 +0000990 }
991 }
Devang Patelee432862010-05-20 19:57:06 +0000992 // If variable scope is not found then skip this variable.
Devang Patelc0c5a262010-05-21 00:10:20 +0000993 if (!Scope)
Devang Patelee432862010-05-20 19:57:06 +0000994 continue;
995
996 Processed.insert(DV);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000997 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patel5a1a67c2011-08-15 19:01:20 +0000998 DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc());
999 DbgVariable *RegVar = new DbgVariable(DV, AbsVar);
Devang Patel0478c152011-03-01 22:58:55 +00001000 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +00001001 addScopeVariable(Scope, RegVar);
Devang Patel5a1a67c2011-08-15 19:01:20 +00001002 if (AbsVar)
Devang Patelff9dd0a2011-08-15 21:24:36 +00001003 AbsVar->setMInsn(MInsn);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001004
1005 // Simple ranges that are fully coalesced.
1006 if (History.size() <= 1 || (History.size() == 2 &&
1007 MInsn->isIdenticalTo(History.back()))) {
Devang Patelff9dd0a2011-08-15 21:24:36 +00001008 RegVar->setMInsn(MInsn);
Devang Patelc3f5f782010-05-25 23:40:22 +00001009 continue;
1010 }
1011
1012 // handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001013 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001014
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001015 for (SmallVectorImpl<const MachineInstr*>::const_iterator
1016 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
1017 const MachineInstr *Begin = *HI;
1018 assert(Begin->isDebugValue() && "Invalid History entry");
Jakob Stoklund Olesene17232e2011-03-22 00:21:41 +00001019
Devang Patel4ada1d72011-06-01 23:00:17 +00001020 // Check if DBG_VALUE is truncating a range.
1021 if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg()
1022 && !Begin->getOperand(0).getReg())
1023 continue;
1024
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001025 // Compute the range for a register location.
1026 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
1027 const MCSymbol *SLabel = 0;
1028
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001029 if (HI + 1 == HE)
1030 // If Begin is the last instruction in History then its value is valid
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001031 // until the end of the function.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001032 SLabel = FunctionEndSym;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001033 else {
1034 const MachineInstr *End = HI[1];
Devang Patel476df5f2011-07-07 21:44:42 +00001035 DEBUG(dbgs() << "DotDebugLoc Pair:\n"
1036 << "\t" << *Begin << "\t" << *End << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001037 if (End->isDebugValue())
1038 SLabel = getLabelBeforeInsn(End);
1039 else {
1040 // End is a normal instruction clobbering the range.
1041 SLabel = getLabelAfterInsn(End);
1042 assert(SLabel && "Forgot label after clobber instruction");
1043 ++HI;
1044 }
1045 }
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001046
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001047 // The value is valid until the next DBG_VALUE or clobber.
Devang Patel90b40412011-07-08 17:09:57 +00001048 DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel, Begin));
Devang Patelc3f5f782010-05-25 23:40:22 +00001049 }
1050 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patel90a48ad2010-03-15 18:33:46 +00001051 }
Devang Patel98e1cac2010-05-14 21:01:35 +00001052
1053 // Collect info for variables that were optimized out.
Devang Patel93d39be2011-08-19 23:28:12 +00001054 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
1055 DIArray Variables = DISubprogram(FnScope->getScopeNode()).getVariables();
1056 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1057 DIVariable DV(Variables.getElement(i));
1058 if (!DV || !DV.Verify() || !Processed.insert(DV))
1059 continue;
1060 if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext()))
1061 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel98e1cac2010-05-14 21:01:35 +00001062 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001063}
Devang Patel98e1cac2010-05-14 21:01:35 +00001064
Devang Patelc3f5f782010-05-25 23:40:22 +00001065/// getLabelBeforeInsn - Return Label preceding the instruction.
1066const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001067 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1068 assert(Label && "Didn't insert label before instruction");
1069 return Label;
Devang Patelc3f5f782010-05-25 23:40:22 +00001070}
1071
1072/// getLabelAfterInsn - Return Label immediately following the instruction.
1073const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001074 return LabelsAfterInsn.lookup(MI);
Devang Patele717faa2009-10-06 01:26:37 +00001075}
1076
Devang Patelcbbe2872010-10-26 17:49:02 +00001077/// beginInstruction - Process beginning of an instruction.
1078void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001079 // Check if source location changes, but ignore DBG_VALUE locations.
1080 if (!MI->isDebugValue()) {
1081 DebugLoc DL = MI->getDebugLoc();
1082 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
Devang Patel4243e672011-05-11 19:22:19 +00001083 unsigned Flags = DWARF2_FLAG_IS_STMT;
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001084 PrevInstLoc = DL;
Devang Patel4243e672011-05-11 19:22:19 +00001085 if (DL == PrologEndLoc) {
1086 Flags |= DWARF2_FLAG_PROLOGUE_END;
1087 PrologEndLoc = DebugLoc();
1088 }
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001089 if (!DL.isUnknown()) {
1090 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Devang Patel4243e672011-05-11 19:22:19 +00001091 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001092 } else
Devang Patel4243e672011-05-11 19:22:19 +00001093 recordSourceLine(0, 0, 0, 0);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001094 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001095 }
Devang Patelaead63c2010-03-29 22:59:58 +00001096
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001097 // Insert labels where requested.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001098 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1099 LabelsBeforeInsn.find(MI);
1100
1101 // No label needed.
1102 if (I == LabelsBeforeInsn.end())
1103 return;
1104
1105 // Label already assigned.
1106 if (I->second)
Devang Patelb2b31a62010-05-26 19:37:24 +00001107 return;
Devang Patel553881b2010-03-29 17:20:31 +00001108
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001109 if (!PrevLabel) {
Devang Patel77051f52010-05-26 21:23:46 +00001110 PrevLabel = MMI->getContext().CreateTempSymbol();
1111 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patelb2b31a62010-05-26 19:37:24 +00001112 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001113 I->second = PrevLabel;
Devang Patel0d20ac82009-10-06 01:50:42 +00001114}
1115
Devang Patelcbbe2872010-10-26 17:49:02 +00001116/// endInstruction - Process end of an instruction.
1117void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001118 // Don't create a new label after DBG_VALUE instructions.
1119 // They don't generate code.
1120 if (!MI->isDebugValue())
1121 PrevLabel = 0;
1122
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001123 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1124 LabelsAfterInsn.find(MI);
1125
1126 // No label needed.
1127 if (I == LabelsAfterInsn.end())
1128 return;
1129
1130 // Label already assigned.
1131 if (I->second)
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001132 return;
1133
1134 // We need a label after this instruction.
1135 if (!PrevLabel) {
1136 PrevLabel = MMI->getContext().CreateTempSymbol();
1137 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel1c246352010-04-08 16:50:29 +00001138 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001139 I->second = PrevLabel;
Devang Patel53bb5c92009-11-10 23:06:00 +00001140}
1141
Jim Grosbach1e20b962010-07-21 21:21:52 +00001142/// identifyScopeMarkers() -
Devang Patel5bc942c2011-08-10 23:58:09 +00001143/// Each LexicalScope has first instruction and last instruction to mark
1144/// beginning and end of a scope respectively. Create an inverse map that list
1145/// scopes starts (and ends) with an instruction. One instruction may start (or
1146/// end) multiple scopes. Ignore scopes that are not reachable.
Devang Patele37b0c62010-04-08 18:43:56 +00001147void DwarfDebug::identifyScopeMarkers() {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001148 SmallVector<LexicalScope *, 4> WorkList;
1149 WorkList.push_back(LScopes.getCurrentFunctionScope());
Devang Patel42aafd72010-01-20 02:05:23 +00001150 while (!WorkList.empty()) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001151 LexicalScope *S = WorkList.pop_back_val();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001152
Devang Patelbf47fdb2011-08-10 20:55:27 +00001153 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001154 if (!Children.empty())
Devang Patelbf47fdb2011-08-10 20:55:27 +00001155 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel42aafd72010-01-20 02:05:23 +00001156 SE = Children.end(); SI != SE; ++SI)
1157 WorkList.push_back(*SI);
1158
Devang Patel53bb5c92009-11-10 23:06:00 +00001159 if (S->isAbstractScope())
1160 continue;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001161
Devang Patelbf47fdb2011-08-10 20:55:27 +00001162 const SmallVector<InsnRange, 4> &Ranges = S->getRanges();
Devang Pateleac9c072010-04-27 19:46:33 +00001163 if (Ranges.empty())
1164 continue;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001165 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Pateleac9c072010-04-27 19:46:33 +00001166 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001167 assert(RI->first && "InsnRange does not have first instruction!");
1168 assert(RI->second && "InsnRange does not have second instruction!");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001169 requestLabelBeforeInsn(RI->first);
1170 requestLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +00001171 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001172 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001173}
1174
Devang Patela3f48672011-05-09 22:14:49 +00001175/// getScopeNode - Get MDNode for DebugLoc's scope.
1176static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) {
1177 if (MDNode *InlinedAt = DL.getInlinedAt(Ctx))
1178 return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx);
1179 return DL.getScope(Ctx);
1180}
1181
Devang Patel4243e672011-05-11 19:22:19 +00001182/// getFnDebugLoc - Walk up the scope chain of given debug loc and find
1183/// line number info for the function.
1184static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) {
1185 const MDNode *Scope = getScopeNode(DL, Ctx);
1186 DISubprogram SP = getDISubprogram(Scope);
1187 if (SP.Verify())
1188 return DebugLoc::get(SP.getLineNumber(), 0, SP);
1189 return DebugLoc();
1190}
1191
Devang Patel2c4ceb12009-11-21 02:48:08 +00001192/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001193/// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +00001194void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner994cb122010-04-05 03:52:55 +00001195 if (!MMI->hasDebugInfo()) return;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001196 LScopes.initialize(*MF);
1197 if (LScopes.empty()) return;
1198 identifyScopeMarkers();
Devang Patel60b35bd2009-10-06 18:37:31 +00001199
Devang Pateleac9c072010-04-27 19:46:33 +00001200 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1201 Asm->getFunctionNumber());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001202 // Assumes in correct section after the entry point.
Devang Pateleac9c072010-04-27 19:46:33 +00001203 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001204
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001205 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1206
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001207 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001208 /// LiveUserVar - Map physreg numbers to the MDNode they contain.
1209 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1210
Devang Patelb2b31a62010-05-26 19:37:24 +00001211 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001212 I != E; ++I) {
1213 bool AtBlockEntry = true;
Devang Patelb2b31a62010-05-26 19:37:24 +00001214 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1215 II != IE; ++II) {
1216 const MachineInstr *MI = II;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001217
Devang Patelb2b31a62010-05-26 19:37:24 +00001218 if (MI->isDebugValue()) {
Nick Lewycky746cb672011-10-26 22:55:33 +00001219 assert(MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001220
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001221 // Keep track of user variables.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001222 const MDNode *Var =
1223 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001224
1225 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001226 if (isDbgValueInDefinedReg(MI))
1227 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1228
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001229 // Check the history of this variable.
1230 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1231 if (History.empty()) {
1232 UserVariables.push_back(Var);
1233 // The first mention of a function argument gets the FunctionBeginSym
1234 // label, so arguments are visible when breaking at function entry.
1235 DIVariable DV(Var);
1236 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1237 DISubprogram(getDISubprogram(DV.getContext()))
1238 .describes(MF->getFunction()))
1239 LabelsBeforeInsn[MI] = FunctionBeginSym;
1240 } else {
1241 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1242 const MachineInstr *Prev = History.back();
1243 if (Prev->isDebugValue()) {
1244 // Coalesce identical entries at the end of History.
1245 if (History.size() >= 2 &&
Devang Patel79862892011-07-07 00:14:27 +00001246 Prev->isIdenticalTo(History[History.size() - 2])) {
1247 DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n"
1248 << "\t" << *Prev
1249 << "\t" << *History[History.size() - 2] << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001250 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001251 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001252
1253 // Terminate old register assignments that don't reach MI;
1254 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1255 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1256 isDbgValueInDefinedReg(Prev)) {
1257 // Previous register assignment needs to terminate at the end of
1258 // its basic block.
1259 MachineBasicBlock::const_iterator LastMI =
1260 PrevMBB->getLastNonDebugInstr();
Devang Patel79862892011-07-07 00:14:27 +00001261 if (LastMI == PrevMBB->end()) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001262 // Drop DBG_VALUE for empty range.
Devang Patel79862892011-07-07 00:14:27 +00001263 DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n"
1264 << "\t" << *Prev << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001265 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001266 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001267 else {
1268 // Terminate after LastMI.
1269 History.push_back(LastMI);
1270 }
1271 }
1272 }
1273 }
1274 History.push_back(MI);
Devang Patelb2b31a62010-05-26 19:37:24 +00001275 } else {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001276 // Not a DBG_VALUE instruction.
1277 if (!MI->isLabel())
1278 AtBlockEntry = false;
1279
Devang Patel4243e672011-05-11 19:22:19 +00001280 // First known non DBG_VALUE location marks beginning of function
1281 // body.
1282 if (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown())
1283 PrologEndLoc = MI->getDebugLoc();
1284
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001285 // Check if the instruction clobbers any registers with debug vars.
1286 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1287 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1288 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1289 continue;
1290 for (const unsigned *AI = TRI->getOverlaps(MOI->getReg());
1291 unsigned Reg = *AI; ++AI) {
1292 const MDNode *Var = LiveUserVar[Reg];
1293 if (!Var)
1294 continue;
1295 // Reg is now clobbered.
1296 LiveUserVar[Reg] = 0;
1297
1298 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001299 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
1300 if (HistI == DbgValues.end())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001301 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001302 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
1303 if (History.empty())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001304 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001305 const MachineInstr *Prev = History.back();
1306 // Sanity-check: Register assignments are terminated at the end of
1307 // their block.
1308 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
1309 continue;
1310 // Is the variable still in Reg?
1311 if (!isDbgValueInDefinedReg(Prev) ||
1312 Prev->getOperand(0).getReg() != Reg)
1313 continue;
1314 // Var is clobbered. Make sure the next instruction gets a label.
1315 History.push_back(MI);
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001316 }
1317 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001318 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001319 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001320 }
1321
1322 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
1323 I != E; ++I) {
1324 SmallVectorImpl<const MachineInstr*> &History = I->second;
1325 if (History.empty())
1326 continue;
1327
1328 // Make sure the final register assignments are terminated.
1329 const MachineInstr *Prev = History.back();
1330 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
1331 const MachineBasicBlock *PrevMBB = Prev->getParent();
Devang Patel5bc942c2011-08-10 23:58:09 +00001332 MachineBasicBlock::const_iterator LastMI =
1333 PrevMBB->getLastNonDebugInstr();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001334 if (LastMI == PrevMBB->end())
1335 // Drop DBG_VALUE for empty range.
1336 History.pop_back();
1337 else {
1338 // Terminate after LastMI.
1339 History.push_back(LastMI);
1340 }
1341 }
1342 // Request labels for the full history.
1343 for (unsigned i = 0, e = History.size(); i != e; ++i) {
1344 const MachineInstr *MI = History[i];
1345 if (MI->isDebugValue())
1346 requestLabelBeforeInsn(MI);
1347 else
1348 requestLabelAfterInsn(MI);
1349 }
1350 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001351
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001352 PrevInstLoc = DebugLoc();
Devang Patelb2b31a62010-05-26 19:37:24 +00001353 PrevLabel = FunctionBeginSym;
Devang Patel4243e672011-05-11 19:22:19 +00001354
1355 // Record beginning of function.
1356 if (!PrologEndLoc.isUnknown()) {
1357 DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc,
1358 MF->getFunction()->getContext());
1359 recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(),
1360 FnStartDL.getScope(MF->getFunction()->getContext()),
1361 DWARF2_FLAG_IS_STMT);
1362 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001363}
1364
Devang Patelbf47fdb2011-08-10 20:55:27 +00001365void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) {
1366// SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1367 ScopeVariables[LS].push_back(Var);
1368// Vars.push_back(Var);
1369}
1370
Devang Patel2c4ceb12009-11-21 02:48:08 +00001371/// endFunction - Gather and emit post-function debug information.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001372///
Chris Lattnereec791a2010-01-26 23:18:02 +00001373void DwarfDebug::endFunction(const MachineFunction *MF) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001374 if (!MMI->hasDebugInfo() || LScopes.empty()) return;
Devang Patel70d75ca2009-11-12 19:02:56 +00001375
Devang Patelbf47fdb2011-08-10 20:55:27 +00001376 // Define end label for subprogram.
1377 FunctionEndSym = Asm->GetTempSymbol("func_end",
1378 Asm->getFunctionNumber());
1379 // Assumes in correct section after the entry point.
1380 Asm->OutStreamer.EmitLabel(FunctionEndSym);
1381
1382 SmallPtrSet<const MDNode *, 16> ProcessedVars;
1383 collectVariableInfo(MF, ProcessedVars);
1384
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001385 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
Devang Patel94c7ddb2011-08-16 22:09:43 +00001386 CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode());
Nick Lewycky746cb672011-10-26 22:55:33 +00001387 assert(TheCU && "Unable to find compile unit!");
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001388
Devang Patelbf47fdb2011-08-10 20:55:27 +00001389 // Construct abstract scopes.
Devang Patelcd9f6c52011-08-12 18:10:19 +00001390 ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList();
1391 for (unsigned i = 0, e = AList.size(); i != e; ++i) {
1392 LexicalScope *AScope = AList[i];
1393 DISubprogram SP(AScope->getScopeNode());
Devang Patelbf47fdb2011-08-10 20:55:27 +00001394 if (SP.Verify()) {
1395 // Collect info for variables that were optimized out.
Devang Patel93d39be2011-08-19 23:28:12 +00001396 DIArray Variables = SP.getVariables();
1397 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1398 DIVariable DV(Variables.getElement(i));
1399 if (!DV || !DV.Verify() || !ProcessedVars.insert(DV))
1400 continue;
1401 if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext()))
1402 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel78e127d2010-06-25 22:07:34 +00001403 }
1404 }
Devang Patelcd9f6c52011-08-12 18:10:19 +00001405 if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0)
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001406 constructScopeDIE(TheCU, AScope);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001407 }
Devang Patelbf47fdb2011-08-10 20:55:27 +00001408
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001409 DIE *CurFnDIE = constructScopeDIE(TheCU, FnScope);
Devang Patelbf47fdb2011-08-10 20:55:27 +00001410
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001411 if (!DisableFramePointerElim(*MF))
Devang Patel5bc942c2011-08-10 23:58:09 +00001412 TheCU->addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr,
1413 dwarf::DW_FORM_flag, 1);
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001414
Devang Patelbf47fdb2011-08-10 20:55:27 +00001415 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
1416 MMI->getFrameMoves()));
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001417
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001418 // Clear debug info
Devang Patelbf47fdb2011-08-10 20:55:27 +00001419 for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator
1420 I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I)
1421 DeleteContainerPointers(I->second);
1422 ScopeVariables.clear();
Devang Pateleac0c9d2011-04-22 18:09:57 +00001423 DeleteContainerPointers(CurrentFnArguments);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001424 UserVariables.clear();
1425 DbgValues.clear();
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00001426 AbstractVariables.clear();
Devang Pateleac9c072010-04-27 19:46:33 +00001427 LabelsBeforeInsn.clear();
1428 LabelsAfterInsn.clear();
Devang Patelf2548ca2010-04-16 23:33:45 +00001429 PrevLabel = NULL;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001430}
1431
Chris Lattnerc6087842010-03-09 04:54:43 +00001432/// recordSourceLine - Register a source line with debug info. Returns the
1433/// unique label that was emitted and which provides correspondence to
1434/// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +00001435void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S,
1436 unsigned Flags) {
Devang Patel65dbc902009-11-25 17:36:49 +00001437 StringRef Fn;
Devang Patel23670e52011-03-24 20:30:50 +00001438 StringRef Dir;
Dan Gohman1cc0d622010-05-05 23:41:32 +00001439 unsigned Src = 1;
1440 if (S) {
1441 DIDescriptor Scope(S);
Devang Patelf84548d2009-10-05 18:03:19 +00001442
Dan Gohman1cc0d622010-05-05 23:41:32 +00001443 if (Scope.isCompileUnit()) {
1444 DICompileUnit CU(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001445 Fn = CU.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001446 Dir = CU.getDirectory();
Devang Patel3cabc9d2010-10-28 17:30:52 +00001447 } else if (Scope.isFile()) {
1448 DIFile F(S);
Devang Patel3cabc9d2010-10-28 17:30:52 +00001449 Fn = F.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001450 Dir = F.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001451 } else if (Scope.isSubprogram()) {
1452 DISubprogram SP(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001453 Fn = SP.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001454 Dir = SP.getDirectory();
Eric Christopher6618a242011-10-11 22:59:11 +00001455 } else if (Scope.isLexicalBlockFile()) {
1456 DILexicalBlockFile DBF(S);
1457 Fn = DBF.getFilename();
1458 Dir = DBF.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001459 } else if (Scope.isLexicalBlock()) {
1460 DILexicalBlock DB(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001461 Fn = DB.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001462 Dir = DB.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001463 } else
1464 assert(0 && "Unexpected scope info");
1465
Devang Patel23670e52011-03-24 20:30:50 +00001466 Src = GetOrCreateSourceID(Fn, Dir);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001467 }
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001468 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001469}
1470
Bill Wendling829e67b2009-05-20 23:22:40 +00001471//===----------------------------------------------------------------------===//
1472// Emit Methods
1473//===----------------------------------------------------------------------===//
1474
Devang Patel2c4ceb12009-11-21 02:48:08 +00001475/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling94d04b82009-05-20 23:21:38 +00001476///
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001477unsigned
1478DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001479 // Get the children.
1480 const std::vector<DIE *> &Children = Die->getChildren();
1481
1482 // If not last sibling and has children then add sibling offset attribute.
Jeffrey Yasskin638fe8d2010-03-22 18:47:14 +00001483 if (!Last && !Children.empty())
Benjamin Kramer345ef342010-03-31 19:34:01 +00001484 Die->addSiblingOffset(DIEValueAllocator);
Bill Wendling94d04b82009-05-20 23:21:38 +00001485
1486 // Record the abbreviation.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001487 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling94d04b82009-05-20 23:21:38 +00001488
1489 // Get the abbreviation for this DIE.
1490 unsigned AbbrevNumber = Die->getAbbrevNumber();
1491 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1492
1493 // Set DIE offset
1494 Die->setOffset(Offset);
1495
1496 // Start the size with the size of abbreviation code.
Chris Lattneraf76e592009-08-22 20:48:53 +00001497 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001498
1499 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1500 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1501
1502 // Size the DIE attribute values.
1503 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1504 // Size attribute value.
Chris Lattnera37d5382010-04-05 00:18:22 +00001505 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling94d04b82009-05-20 23:21:38 +00001506
1507 // Size the DIE children if any.
1508 if (!Children.empty()) {
1509 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1510 "Children flag not set");
1511
1512 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001513 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling94d04b82009-05-20 23:21:38 +00001514
1515 // End of children marker.
1516 Offset += sizeof(int8_t);
1517 }
1518
1519 Die->setSize(Offset - Die->getOffset());
1520 return Offset;
1521}
1522
Devang Patel2c4ceb12009-11-21 02:48:08 +00001523/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling94d04b82009-05-20 23:21:38 +00001524///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001525void DwarfDebug::computeSizeAndOffsets() {
Devang Patel163a9f72010-05-10 22:49:55 +00001526 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1527 E = CUMap.end(); I != E; ++I) {
1528 // Compute size of compile unit header.
Devang Patel513edf62011-04-12 23:10:47 +00001529 unsigned Offset =
Devang Patel163a9f72010-05-10 22:49:55 +00001530 sizeof(int32_t) + // Length of Compilation Unit Info
1531 sizeof(int16_t) + // DWARF version number
1532 sizeof(int32_t) + // Offset Into Abbrev. Section
1533 sizeof(int8_t); // Pointer Size (in bytes)
1534 computeSizeAndOffset(I->second->getCUDie(), Offset, true);
Devang Patel163a9f72010-05-10 22:49:55 +00001535 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001536}
1537
Chris Lattner9c69e285532010-04-04 22:59:04 +00001538/// EmitSectionLabels - Emit initial Dwarf sections with a label at
1539/// the start of each one.
Chris Lattnerfa070b02010-04-04 22:33:59 +00001540void DwarfDebug::EmitSectionLabels() {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001541 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001542
Bill Wendling94d04b82009-05-20 23:21:38 +00001543 // Dwarf sections base addresses.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001544 DwarfInfoSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001545 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001546 DwarfAbbrevSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001547 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner11b8f302010-04-04 23:02:02 +00001548 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001549
Chris Lattner9c69e285532010-04-04 22:59:04 +00001550 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner11b8f302010-04-04 23:02:02 +00001551 EmitSectionSym(Asm, MacroInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00001552
Devang Patelaf608bd2010-08-24 00:06:12 +00001553 EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Chris Lattner11b8f302010-04-04 23:02:02 +00001554 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
1555 EmitSectionSym(Asm, TLOF.getDwarfPubNamesSection());
1556 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001557 DwarfStrSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001558 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Devang Patelf2548ca2010-04-16 23:33:45 +00001559 DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(),
1560 "debug_range");
Bill Wendling94d04b82009-05-20 23:21:38 +00001561
Devang Patelc3f5f782010-05-25 23:40:22 +00001562 DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(),
1563 "section_debug_loc");
1564
Chris Lattner9c69e285532010-04-04 22:59:04 +00001565 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattner4ad1efe2010-04-04 23:10:38 +00001566 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001567}
1568
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001569/// emitDIE - Recursively emits a debug information entry.
Bill Wendling94d04b82009-05-20 23:21:38 +00001570///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001571void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001572 // Get the abbreviation for this DIE.
1573 unsigned AbbrevNumber = Die->getAbbrevNumber();
1574 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1575
Bill Wendling94d04b82009-05-20 23:21:38 +00001576 // Emit the code (index) for the abbreviation.
Chris Lattner3f53c832010-04-04 18:52:31 +00001577 if (Asm->isVerbose())
Chris Lattner894d75a2010-01-22 23:18:42 +00001578 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
1579 Twine::utohexstr(Die->getOffset()) + ":0x" +
1580 Twine::utohexstr(Die->getSize()) + " " +
1581 dwarf::TagString(Abbrev->getTag()));
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001582 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001583
Jeffrey Yasskin638fe8d2010-03-22 18:47:14 +00001584 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling94d04b82009-05-20 23:21:38 +00001585 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1586
1587 // Emit the DIE attribute values.
1588 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1589 unsigned Attr = AbbrevData[i].getAttribute();
1590 unsigned Form = AbbrevData[i].getForm();
1591 assert(Form && "Too many attributes for DIE (check abbreviation)");
1592
Chris Lattner3f53c832010-04-04 18:52:31 +00001593 if (Asm->isVerbose())
Chris Lattnera8013622010-01-24 18:54:17 +00001594 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001595
Bill Wendling94d04b82009-05-20 23:21:38 +00001596 switch (Attr) {
1597 case dwarf::DW_AT_sibling:
Devang Patel2c4ceb12009-11-21 02:48:08 +00001598 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00001599 break;
1600 case dwarf::DW_AT_abstract_origin: {
1601 DIEEntry *E = cast<DIEEntry>(Values[i]);
1602 DIE *Origin = E->getEntry();
Devang Patel53bb5c92009-11-10 23:06:00 +00001603 unsigned Addr = Origin->getOffset();
Bill Wendling94d04b82009-05-20 23:21:38 +00001604 Asm->EmitInt32(Addr);
1605 break;
1606 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001607 case dwarf::DW_AT_ranges: {
1608 // DW_AT_range Value encodes offset in debug_range section.
1609 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelb1fcfbe2010-09-02 16:43:44 +00001610
1611 if (Asm->MAI->doesDwarfUsesLabelOffsetForRanges()) {
1612 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
1613 V->getValue(),
1614 4);
1615 } else {
1616 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
1617 V->getValue(),
1618 DwarfDebugRangeSectionSym,
1619 4);
1620 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001621 break;
1622 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001623 case dwarf::DW_AT_location: {
Devang Patel7a328272011-08-15 21:43:21 +00001624 if (DIELabel *L = dyn_cast<DIELabel>(Values[i]))
Daniel Dunbar83320a02011-03-16 22:16:39 +00001625 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
Devang Patel7a328272011-08-15 21:43:21 +00001626 else
Devang Patelc3f5f782010-05-25 23:40:22 +00001627 Values[i]->EmitValue(Asm, Form);
1628 break;
1629 }
Devang Patel2a361602010-09-29 19:08:08 +00001630 case dwarf::DW_AT_accessibility: {
1631 if (Asm->isVerbose()) {
1632 DIEInteger *V = cast<DIEInteger>(Values[i]);
1633 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
1634 }
1635 Values[i]->EmitValue(Asm, Form);
1636 break;
1637 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001638 default:
1639 // Emit an attribute using the defined form.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001640 Values[i]->EmitValue(Asm, Form);
Bill Wendling94d04b82009-05-20 23:21:38 +00001641 break;
1642 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001643 }
1644
1645 // Emit the DIE children if any.
1646 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1647 const std::vector<DIE *> &Children = Die->getChildren();
1648
1649 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001650 emitDIE(Children[j]);
Bill Wendling94d04b82009-05-20 23:21:38 +00001651
Chris Lattner3f53c832010-04-04 18:52:31 +00001652 if (Asm->isVerbose())
Chris Lattner233f52b2010-03-09 23:52:58 +00001653 Asm->OutStreamer.AddComment("End Of Children Mark");
1654 Asm->EmitInt8(0);
Bill Wendling94d04b82009-05-20 23:21:38 +00001655 }
1656}
1657
Devang Patel8a241142009-12-09 18:24:21 +00001658/// emitDebugInfo - Emit the debug info section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001659///
Devang Patel8a241142009-12-09 18:24:21 +00001660void DwarfDebug::emitDebugInfo() {
1661 // Start debug info section.
1662 Asm->OutStreamer.SwitchSection(
1663 Asm->getObjFileLowering().getDwarfInfoSection());
Devang Patel163a9f72010-05-10 22:49:55 +00001664 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1665 E = CUMap.end(); I != E; ++I) {
1666 CompileUnit *TheCU = I->second;
1667 DIE *Die = TheCU->getCUDie();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001668
Devang Patel163a9f72010-05-10 22:49:55 +00001669 // Emit the compile units header.
1670 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
1671 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001672
Devang Patel163a9f72010-05-10 22:49:55 +00001673 // Emit size of content not including length itself
1674 unsigned ContentSize = Die->getSize() +
1675 sizeof(int16_t) + // DWARF version number
1676 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patel65705d52011-04-13 19:41:17 +00001677 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbach1e20b962010-07-21 21:21:52 +00001678
Devang Patel163a9f72010-05-10 22:49:55 +00001679 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
1680 Asm->EmitInt32(ContentSize);
1681 Asm->OutStreamer.AddComment("DWARF version number");
1682 Asm->EmitInt16(dwarf::DWARF_VERSION);
1683 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
1684 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
1685 DwarfAbbrevSectionSym);
1686 Asm->OutStreamer.AddComment("Address Size (in bytes)");
1687 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001688
Devang Patel163a9f72010-05-10 22:49:55 +00001689 emitDIE(Die);
Devang Patel163a9f72010-05-10 22:49:55 +00001690 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID()));
1691 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001692}
1693
Devang Patel2c4ceb12009-11-21 02:48:08 +00001694/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001695///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001696void DwarfDebug::emitAbbreviations() const {
Bill Wendling94d04b82009-05-20 23:21:38 +00001697 // Check to see if it is worth the effort.
1698 if (!Abbreviations.empty()) {
1699 // Start the debug abbrev section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001700 Asm->OutStreamer.SwitchSection(
1701 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001702
Chris Lattnerc0215722010-04-04 19:25:43 +00001703 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001704
1705 // For each abbrevation.
1706 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
1707 // Get abbreviation data
1708 const DIEAbbrev *Abbrev = Abbreviations[i];
1709
1710 // Emit the abbrevations code (base 1 index.)
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001711 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling94d04b82009-05-20 23:21:38 +00001712
1713 // Emit the abbreviations data.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001714 Abbrev->Emit(Asm);
Bill Wendling94d04b82009-05-20 23:21:38 +00001715 }
1716
1717 // Mark end of abbreviations.
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001718 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling94d04b82009-05-20 23:21:38 +00001719
Chris Lattnerc0215722010-04-04 19:25:43 +00001720 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001721 }
1722}
1723
Devang Patel2c4ceb12009-11-21 02:48:08 +00001724/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling94d04b82009-05-20 23:21:38 +00001725/// the line matrix.
1726///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001727void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001728 // Define last address of section.
Chris Lattner233f52b2010-03-09 23:52:58 +00001729 Asm->OutStreamer.AddComment("Extended Op");
1730 Asm->EmitInt8(0);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001731
Chris Lattner233f52b2010-03-09 23:52:58 +00001732 Asm->OutStreamer.AddComment("Op size");
Chris Lattnerd38fee82010-04-05 00:13:49 +00001733 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner233f52b2010-03-09 23:52:58 +00001734 Asm->OutStreamer.AddComment("DW_LNE_set_address");
1735 Asm->EmitInt8(dwarf::DW_LNE_set_address);
1736
1737 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerd85fc6e2010-03-10 01:17:49 +00001738
Chris Lattnerc0215722010-04-04 19:25:43 +00001739 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattnerd38fee82010-04-05 00:13:49 +00001740 Asm->getTargetData().getPointerSize(),
1741 0/*AddrSpace*/);
Bill Wendling94d04b82009-05-20 23:21:38 +00001742
1743 // Mark end of matrix.
Chris Lattner233f52b2010-03-09 23:52:58 +00001744 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
1745 Asm->EmitInt8(0);
Chris Lattner0ad9c912010-01-22 22:09:00 +00001746 Asm->EmitInt8(1);
Chris Lattner894d75a2010-01-22 23:18:42 +00001747 Asm->EmitInt8(1);
Bill Wendling94d04b82009-05-20 23:21:38 +00001748}
1749
Eric Christopher09ac3d82011-11-07 09:24:32 +00001750/// emitAccelNames - Emit visible names into a hashed accelerator table
1751/// section.
1752void DwarfDebug::emitAccelNames() {
1753 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1754 dwarf::DW_FORM_data4));
1755 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1756 E = CUMap.end(); I != E; ++I) {
1757 CompileUnit *TheCU = I->second;
1758 const StringMap<DIE*> &Names = TheCU->getAccelNames();
1759 for (StringMap<DIE*>::const_iterator
1760 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1761 const char *Name = GI->getKeyData();
1762 DIE *Entity = GI->second;
1763 AT.AddName(Name, Entity);
1764 }
1765 }
1766
1767 AT.FinalizeTable(Asm, "Names");
1768 Asm->OutStreamer.SwitchSection(
1769 Asm->getObjFileLowering().getDwarfAccelNamesSection());
1770 MCSymbol *SectionBegin = Asm->GetTempSymbol("names_begin");
1771 Asm->OutStreamer.EmitLabel(SectionBegin);
1772
1773 // Emit the full data.
1774 AT.Emit(Asm, SectionBegin, this);
1775}
1776
1777/// emitAccelObjC - Emit objective C classes and categories into a hashed
1778/// accelerator table section.
1779void DwarfDebug::emitAccelObjC() {
1780 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1781 dwarf::DW_FORM_data4));
1782 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1783 E = CUMap.end(); I != E; ++I) {
1784 CompileUnit *TheCU = I->second;
1785 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelObjC();
1786 for (StringMap<std::vector<DIE*> >::const_iterator
1787 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1788 const char *Name = GI->getKeyData();
1789 std::vector<DIE *> Entities = GI->second;
1790 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1791 DE = Entities.end(); DI != DE; ++DI)
1792 AT.AddName(Name, (*DI));
1793 }
1794 }
1795
1796 AT.FinalizeTable(Asm, "ObjC");
1797 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1798 .getDwarfAccelObjCSection());
1799 MCSymbol *SectionBegin = Asm->GetTempSymbol("objc_begin");
1800 Asm->OutStreamer.EmitLabel(SectionBegin);
1801
1802 // Emit the full data.
1803 AT.Emit(Asm, SectionBegin, this);
1804}
1805
1806/// emitAccelNamespace - Emit namespace dies into a hashed accelerator
1807/// table.
1808void DwarfDebug::emitAccelNamespaces() {
1809 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1810 dwarf::DW_FORM_data4));
1811 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1812 E = CUMap.end(); I != E; ++I) {
1813 CompileUnit *TheCU = I->second;
1814 const StringMap<DIE*> &Names = TheCU->getAccelNamespace();
1815 for (StringMap<DIE*>::const_iterator
1816 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1817 const char *Name = GI->getKeyData();
1818 DIE *Entity = GI->second;
1819 AT.AddName(Name, Entity);
1820 }
1821 }
1822
1823 AT.FinalizeTable(Asm, "namespac");
1824 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1825 .getDwarfAccelNamespaceSection());
1826 MCSymbol *SectionBegin = Asm->GetTempSymbol("namespac_begin");
1827 Asm->OutStreamer.EmitLabel(SectionBegin);
1828
1829 // Emit the full data.
1830 AT.Emit(Asm, SectionBegin, this);
1831}
1832
1833/// emitAccelTypes() - Emit type dies into a hashed accelerator table.
1834void DwarfDebug::emitAccelTypes() {
1835 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1836 dwarf::DW_FORM_data4));
1837 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1838 E = CUMap.end(); I != E; ++I) {
1839 CompileUnit *TheCU = I->second;
1840 const StringMap<DIE*> &Names = TheCU->getGlobalTypes();
1841 //TODO: TheCU->getAccelTypes();
1842 for (StringMap<DIE*>::const_iterator
1843 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1844 const char *Name = GI->getKeyData();
1845 DIE *Entity = GI->second;
1846 AT.AddName(Name, Entity);
1847 }
1848 }
1849
1850 AT.FinalizeTable(Asm, "types");
1851 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1852 .getDwarfAccelTypesSection());
1853 MCSymbol *SectionBegin = Asm->GetTempSymbol("types_begin");
1854 Asm->OutStreamer.EmitLabel(SectionBegin);
1855
1856 // Emit the full data.
1857 AT.Emit(Asm, SectionBegin, this);
1858}
1859
Devang Patel8a241142009-12-09 18:24:21 +00001860/// emitDebugPubNames - Emit visible names into a debug pubnames section.
1861///
1862void DwarfDebug::emitDebugPubNames() {
Devang Patel163a9f72010-05-10 22:49:55 +00001863 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1864 E = CUMap.end(); I != E; ++I) {
1865 CompileUnit *TheCU = I->second;
1866 // Start the dwarf pubnames section.
1867 Asm->OutStreamer.SwitchSection(
1868 Asm->getObjFileLowering().getDwarfPubNamesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001869
Devang Patel163a9f72010-05-10 22:49:55 +00001870 Asm->OutStreamer.AddComment("Length of Public Names Info");
1871 Asm->EmitLabelDifference(
1872 Asm->GetTempSymbol("pubnames_end", TheCU->getID()),
1873 Asm->GetTempSymbol("pubnames_begin", TheCU->getID()), 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001874
Devang Patel163a9f72010-05-10 22:49:55 +00001875 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_begin",
1876 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001877
Devang Patel163a9f72010-05-10 22:49:55 +00001878 Asm->OutStreamer.AddComment("DWARF Version");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001879 Asm->EmitInt16(dwarf::DWARF_VERSION);
1880
Devang Patel163a9f72010-05-10 22:49:55 +00001881 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001882 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
Devang Patel163a9f72010-05-10 22:49:55 +00001883 DwarfInfoSectionSym);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001884
Devang Patel163a9f72010-05-10 22:49:55 +00001885 Asm->OutStreamer.AddComment("Compilation Unit Length");
1886 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1887 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1888 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001889
Devang Patel163a9f72010-05-10 22:49:55 +00001890 const StringMap<DIE*> &Globals = TheCU->getGlobals();
1891 for (StringMap<DIE*>::const_iterator
1892 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1893 const char *Name = GI->getKeyData();
1894 DIE *Entity = GI->second;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001895
Devang Patel163a9f72010-05-10 22:49:55 +00001896 Asm->OutStreamer.AddComment("DIE offset");
1897 Asm->EmitInt32(Entity->getOffset());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001898
Devang Patel163a9f72010-05-10 22:49:55 +00001899 if (Asm->isVerbose())
1900 Asm->OutStreamer.AddComment("External Name");
1901 Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
1902 }
Jim Grosbach1e20b962010-07-21 21:21:52 +00001903
Devang Patel163a9f72010-05-10 22:49:55 +00001904 Asm->OutStreamer.AddComment("End Mark");
1905 Asm->EmitInt32(0);
1906 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_end",
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001907 TheCU->getID()));
Bill Wendling94d04b82009-05-20 23:21:38 +00001908 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001909}
1910
Devang Patel193f7202009-11-24 01:14:22 +00001911void DwarfDebug::emitDebugPubTypes() {
Devang Patel163a9f72010-05-10 22:49:55 +00001912 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1913 E = CUMap.end(); I != E; ++I) {
1914 CompileUnit *TheCU = I->second;
Eric Christopher63701182011-11-07 09:18:35 +00001915 // Start the dwarf pubtypes section.
Devang Patel163a9f72010-05-10 22:49:55 +00001916 Asm->OutStreamer.SwitchSection(
1917 Asm->getObjFileLowering().getDwarfPubTypesSection());
1918 Asm->OutStreamer.AddComment("Length of Public Types Info");
1919 Asm->EmitLabelDifference(
1920 Asm->GetTempSymbol("pubtypes_end", TheCU->getID()),
1921 Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001922
Devang Patel163a9f72010-05-10 22:49:55 +00001923 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
1924 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001925
Devang Patel163a9f72010-05-10 22:49:55 +00001926 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
1927 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001928
Devang Patel163a9f72010-05-10 22:49:55 +00001929 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
1930 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
1931 DwarfInfoSectionSym);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001932
Devang Patel163a9f72010-05-10 22:49:55 +00001933 Asm->OutStreamer.AddComment("Compilation Unit Length");
1934 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1935 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1936 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001937
Devang Patel163a9f72010-05-10 22:49:55 +00001938 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
1939 for (StringMap<DIE*>::const_iterator
1940 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1941 const char *Name = GI->getKeyData();
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001942 DIE *Entity = GI->second;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001943
Devang Patel163a9f72010-05-10 22:49:55 +00001944 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
1945 Asm->EmitInt32(Entity->getOffset());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001946
Devang Patel163a9f72010-05-10 22:49:55 +00001947 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
1948 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
1949 }
Jim Grosbach1e20b962010-07-21 21:21:52 +00001950
Devang Patel163a9f72010-05-10 22:49:55 +00001951 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001952 Asm->EmitInt32(0);
Devang Patel163a9f72010-05-10 22:49:55 +00001953 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
1954 TheCU->getID()));
Devang Patel193f7202009-11-24 01:14:22 +00001955 }
Devang Patel193f7202009-11-24 01:14:22 +00001956}
1957
Devang Patel2c4ceb12009-11-21 02:48:08 +00001958/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001959///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001960void DwarfDebug::emitDebugStr() {
Bill Wendling94d04b82009-05-20 23:21:38 +00001961 // Check to see if it is worth the effort.
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001962 if (StringPool.empty()) return;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001963
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001964 // Start the dwarf str section.
1965 Asm->OutStreamer.SwitchSection(
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001966 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001967
Chris Lattnerbc733f52010-03-13 02:17:42 +00001968 // Get all of the string pool entries and put them in an array by their ID so
1969 // we can sort them.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001970 SmallVector<std::pair<unsigned,
Chris Lattnerbc733f52010-03-13 02:17:42 +00001971 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001972
Chris Lattnerbc733f52010-03-13 02:17:42 +00001973 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
1974 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
1975 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001976
Chris Lattnerbc733f52010-03-13 02:17:42 +00001977 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001978
Chris Lattnerbc733f52010-03-13 02:17:42 +00001979 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001980 // Emit a label for reference from debug information entries.
Chris Lattnerbc733f52010-03-13 02:17:42 +00001981 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001982
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001983 // Emit the string itself.
Chris Lattnerbc733f52010-03-13 02:17:42 +00001984 Asm->OutStreamer.EmitBytes(Entries[i].second->getKey(), 0/*addrspace*/);
Nick Lewycky390c40d2011-10-27 06:44:11 +00001985 Asm->OutStreamer.EmitZeros(1, 0);
Bill Wendling94d04b82009-05-20 23:21:38 +00001986 }
1987}
1988
Devang Patel2c4ceb12009-11-21 02:48:08 +00001989/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001990///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001991void DwarfDebug::emitDebugLoc() {
Devang Patel80250682010-05-26 23:55:23 +00001992 if (DotDebugLocEntries.empty())
1993 return;
1994
Devang Patel6c3ea902011-02-04 22:57:18 +00001995 for (SmallVector<DotDebugLocEntry, 4>::iterator
1996 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
1997 I != E; ++I) {
1998 DotDebugLocEntry &Entry = *I;
1999 if (I + 1 != DotDebugLocEntries.end())
2000 Entry.Merge(I+1);
2001 }
2002
Daniel Dunbar83320a02011-03-16 22:16:39 +00002003 // Start the dwarf loc section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002004 Asm->OutStreamer.SwitchSection(
Devang Patelc3f5f782010-05-25 23:40:22 +00002005 Asm->getObjFileLowering().getDwarfLocSection());
2006 unsigned char Size = Asm->getTargetData().getPointerSize();
Devang Patel80250682010-05-26 23:55:23 +00002007 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
2008 unsigned index = 1;
Jim Grosbach1e20b962010-07-21 21:21:52 +00002009 for (SmallVector<DotDebugLocEntry, 4>::iterator
2010 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel61409622010-07-07 20:12:52 +00002011 I != E; ++I, ++index) {
Devang Patel6c3ea902011-02-04 22:57:18 +00002012 DotDebugLocEntry &Entry = *I;
2013 if (Entry.isMerged()) continue;
Devang Patelc3f5f782010-05-25 23:40:22 +00002014 if (Entry.isEmpty()) {
2015 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
2016 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel80250682010-05-26 23:55:23 +00002017 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patelc3f5f782010-05-25 23:40:22 +00002018 } else {
2019 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0);
2020 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0);
Devang Patelc26f5442011-04-28 02:22:40 +00002021 DIVariable DV(Entry.Variable);
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00002022 Asm->OutStreamer.AddComment("Loc expr size");
2023 MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol();
2024 MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol();
2025 Asm->EmitLabelDifference(end, begin, 2);
2026 Asm->OutStreamer.EmitLabel(begin);
Devang Patel80efd4e2011-07-08 16:49:43 +00002027 if (Entry.isInt()) {
Devang Patelc4329072011-06-01 22:03:25 +00002028 DIBasicType BTy(DV.getType());
2029 if (BTy.Verify() &&
2030 (BTy.getEncoding() == dwarf::DW_ATE_signed
2031 || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) {
2032 Asm->OutStreamer.AddComment("DW_OP_consts");
2033 Asm->EmitInt8(dwarf::DW_OP_consts);
Devang Patel80efd4e2011-07-08 16:49:43 +00002034 Asm->EmitSLEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00002035 } else {
2036 Asm->OutStreamer.AddComment("DW_OP_constu");
2037 Asm->EmitInt8(dwarf::DW_OP_constu);
Devang Patel80efd4e2011-07-08 16:49:43 +00002038 Asm->EmitULEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00002039 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002040 } else if (Entry.isLocation()) {
2041 if (!DV.hasComplexAddress())
2042 // Regular entry.
Devang Patelc26f5442011-04-28 02:22:40 +00002043 Asm->EmitDwarfRegOp(Entry.Loc);
Devang Patel80efd4e2011-07-08 16:49:43 +00002044 else {
2045 // Complex address entry.
2046 unsigned N = DV.getNumAddrElements();
2047 unsigned i = 0;
2048 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
2049 if (Entry.Loc.getOffset()) {
2050 i = 2;
2051 Asm->EmitDwarfRegOp(Entry.Loc);
2052 Asm->OutStreamer.AddComment("DW_OP_deref");
2053 Asm->EmitInt8(dwarf::DW_OP_deref);
2054 Asm->OutStreamer.AddComment("DW_OP_plus_uconst");
2055 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2056 Asm->EmitSLEB128(DV.getAddrElement(1));
2057 } else {
2058 // If first address element is OpPlus then emit
2059 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
2060 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
2061 Asm->EmitDwarfRegOp(Loc);
2062 i = 2;
2063 }
2064 } else {
2065 Asm->EmitDwarfRegOp(Entry.Loc);
2066 }
2067
2068 // Emit remaining complex address elements.
2069 for (; i < N; ++i) {
2070 uint64_t Element = DV.getAddrElement(i);
2071 if (Element == DIBuilder::OpPlus) {
2072 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2073 Asm->EmitULEB128(DV.getAddrElement(++i));
2074 } else if (Element == DIBuilder::OpDeref)
2075 Asm->EmitInt8(dwarf::DW_OP_deref);
2076 else llvm_unreachable("unknown Opcode found in complex address");
2077 }
Devang Patelc26f5442011-04-28 02:22:40 +00002078 }
Devang Patelc26f5442011-04-28 02:22:40 +00002079 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002080 // else ... ignore constant fp. There is not any good way to
2081 // to represent them here in dwarf.
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00002082 Asm->OutStreamer.EmitLabel(end);
Devang Patelc3f5f782010-05-25 23:40:22 +00002083 }
2084 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002085}
2086
2087/// EmitDebugARanges - Emit visible names into a debug aranges section.
2088///
2089void DwarfDebug::EmitDebugARanges() {
2090 // Start the dwarf aranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002091 Asm->OutStreamer.SwitchSection(
2092 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002093}
2094
Devang Patel2c4ceb12009-11-21 02:48:08 +00002095/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002096///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002097void DwarfDebug::emitDebugRanges() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002098 // Start the dwarf ranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002099 Asm->OutStreamer.SwitchSection(
Devang Patelf2548ca2010-04-16 23:33:45 +00002100 Asm->getObjFileLowering().getDwarfRangesSection());
Devang Pateleac9c072010-04-27 19:46:33 +00002101 unsigned char Size = Asm->getTargetData().getPointerSize();
2102 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbach1e20b962010-07-21 21:21:52 +00002103 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Pateleac9c072010-04-27 19:46:33 +00002104 I != E; ++I) {
2105 if (*I)
2106 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002107 else
Devang Pateleac9c072010-04-27 19:46:33 +00002108 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002109 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002110}
2111
Devang Patel2c4ceb12009-11-21 02:48:08 +00002112/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002113///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002114void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarf612ff62009-09-19 20:40:05 +00002115 if (const MCSection *LineInfo =
Chris Lattner18a4c162009-08-02 07:24:22 +00002116 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002117 // Start the dwarf macinfo section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002118 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00002119 }
2120}
2121
Devang Patel2c4ceb12009-11-21 02:48:08 +00002122/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling94d04b82009-05-20 23:21:38 +00002123/// Section Header:
2124/// 1. length of section
2125/// 2. Dwarf version number
2126/// 3. address size.
2127///
2128/// Entries (one "entry" for each function that was inlined):
2129///
2130/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2131/// otherwise offset into __debug_str for regular function name.
2132/// 2. offset into __debug_str section for regular function name.
2133/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2134/// instances for the function.
2135///
2136/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2137/// inlined instance; the die_offset points to the inlined_subroutine die in the
2138/// __debug_info section, and the low_pc is the starting address for the
2139/// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002140void DwarfDebug::emitDebugInlineInfo() {
Chris Lattnerd38fee82010-04-05 00:13:49 +00002141 if (!Asm->MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002142 return;
2143
Devang Patel163a9f72010-05-10 22:49:55 +00002144 if (!FirstCU)
Bill Wendling94d04b82009-05-20 23:21:38 +00002145 return;
2146
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002147 Asm->OutStreamer.SwitchSection(
2148 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattner0ad9c912010-01-22 22:09:00 +00002149
Chris Lattner233f52b2010-03-09 23:52:58 +00002150 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnera6437182010-04-04 19:58:12 +00002151 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
2152 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling94d04b82009-05-20 23:21:38 +00002153
Chris Lattnerc0215722010-04-04 19:25:43 +00002154 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002155
Chris Lattner233f52b2010-03-09 23:52:58 +00002156 Asm->OutStreamer.AddComment("Dwarf Version");
2157 Asm->EmitInt16(dwarf::DWARF_VERSION);
2158 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002159 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling94d04b82009-05-20 23:21:38 +00002160
Devang Patele9f8f5e2010-05-07 20:54:48 +00002161 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patel53bb5c92009-11-10 23:06:00 +00002162 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002163
Devang Patele9f8f5e2010-05-07 20:54:48 +00002164 const MDNode *Node = *I;
2165 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach7ab38df2009-11-22 19:20:36 +00002166 = InlineInfo.find(Node);
Devang Patel53bb5c92009-11-10 23:06:00 +00002167 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patele4b27562009-08-28 23:24:31 +00002168 DISubprogram SP(Node);
Devang Patel65dbc902009-11-25 17:36:49 +00002169 StringRef LName = SP.getLinkageName();
2170 StringRef Name = SP.getName();
Bill Wendling94d04b82009-05-20 23:21:38 +00002171
Chris Lattner233f52b2010-03-09 23:52:58 +00002172 Asm->OutStreamer.AddComment("MIPS linkage name");
Chris Lattner4cf202b2010-01-23 03:11:46 +00002173 if (LName.empty()) {
2174 Asm->OutStreamer.EmitBytes(Name, 0);
2175 Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator.
Jim Grosbach1e20b962010-07-21 21:21:52 +00002176 } else
Chris Lattner6189ed12010-04-04 23:25:33 +00002177 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
2178 DwarfStrSectionSym);
Devang Patel53bb5c92009-11-10 23:06:00 +00002179
Chris Lattner233f52b2010-03-09 23:52:58 +00002180 Asm->OutStreamer.AddComment("Function name");
Chris Lattner6189ed12010-04-04 23:25:33 +00002181 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner7e1a8f82010-04-04 19:09:29 +00002182 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling94d04b82009-05-20 23:21:38 +00002183
Devang Patel53bb5c92009-11-10 23:06:00 +00002184 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling94d04b82009-05-20 23:21:38 +00002185 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner3f53c832010-04-04 18:52:31 +00002186 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner6ed0f902010-03-09 00:31:02 +00002187 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00002188
Chris Lattner3f53c832010-04-04 18:52:31 +00002189 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002190 Asm->OutStreamer.EmitSymbolValue(LI->first,
2191 Asm->getTargetData().getPointerSize(),0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002192 }
2193 }
2194
Chris Lattnerc0215722010-04-04 19:25:43 +00002195 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002196}