blob: 64e0e92edb56a4ec410f4aa38c1d38352eafba77 [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 Christopher2ea40252011-11-07 18:53:23 +0000528 return Name.startswith("+") || Name.startswith("-");
Eric Christopher09ac3d82011-11-07 09:24:32 +0000529}
530
531static bool hasObjCCategory(StringRef Name) {
Eric Christopher2ea40252011-11-07 18:53:23 +0000532 if (!isObjCClass(Name)) return false;
Eric Christopher09ac3d82011-11-07 09:24:32 +0000533
534 size_t pos = Name.find(')');
535 if (pos != std::string::npos) {
536 if (Name[pos+1] != ' ') return false;
537 return true;
538 }
Eric Christopher09ac3d82011-11-07 09:24:32 +0000539 return false;
540}
541
542static void getObjCClassCategory(StringRef In, StringRef &Class,
543 StringRef &Category) {
544 if (!hasObjCCategory(In)) {
545 Class = In.slice(In.find('[') + 1, In.find(' '));
546 Category = "";
547 return;
548 }
549
550 Class = In.slice(In.find('[') + 1, In.find('('));
551 Category = In.slice(In.find('[') + 1, In.find(' '));
552 return;
553}
554
Devang Patel163a9f72010-05-10 22:49:55 +0000555/// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel3655a212011-08-15 23:36:40 +0000556void DwarfDebug::constructSubprogramDIE(CompileUnit *TheCU,
557 const MDNode *N) {
Rafael Espindolab0527282011-11-04 19:00:29 +0000558 CompileUnit *&CURef = SPMap[N];
559 if (CURef)
560 return;
561 CURef = TheCU;
562
Devang Patele4b27562009-08-28 23:24:31 +0000563 DISubprogram SP(N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000564 if (!SP.isDefinition())
565 // This is a method declaration which will be handled while constructing
566 // class type.
Devang Patel13e16b62009-06-26 01:49:18 +0000567 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000568
Rafael Espindolab0527282011-11-04 19:00:29 +0000569 DISubprogram SPDecl = SP.getFunctionDeclaration();
570 DIE *DeclDie = NULL;
571 if (SPDecl.isSubprogram()) {
572 DeclDie = TheCU->getOrCreateSubprogramDIE(SPDecl);
573 }
574
Devang Pateldbc64af2011-08-15 17:24:54 +0000575 DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP);
Stuart Hastings639336e2010-04-06 21:38:29 +0000576
Rafael Espindolab0527282011-11-04 19:00:29 +0000577 if (DeclDie) {
578 // Refer function declaration directly.
579 TheCU->addDIEEntry(SubprogramDie, dwarf::DW_AT_specification,
580 dwarf::DW_FORM_ref4, DeclDie);
581 }
582
Stuart Hastings639336e2010-04-06 21:38:29 +0000583 // Add to map.
Devang Patel163a9f72010-05-10 22:49:55 +0000584 TheCU->insertDIE(N, SubprogramDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000585
586 // Add to context owner.
Devang Patel3cbee302011-04-12 22:53:02 +0000587 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel0000fad2009-12-08 23:21:45 +0000588
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000589 // Expose as global.
Devang Patel163a9f72010-05-10 22:49:55 +0000590 TheCU->addGlobal(SP.getName(), SubprogramDie);
Devang Patel193f7202009-11-24 01:14:22 +0000591
Eric Christopher09ac3d82011-11-07 09:24:32 +0000592 // Add to Accel Names
593 TheCU->addAccelName(SP.getName(), SubprogramDie);
594
595 // If this is an Objective-C selector name add it to the ObjC accelerator too.
596 if (isObjCClass(SP.getName())) {
597 StringRef Class, Category;
598 getObjCClassCategory(SP.getName(), Class, Category);
599 TheCU->addAccelObjC(Class, SubprogramDie);
600 if (Category != "")
601 TheCU->addAccelObjC(Category, SubprogramDie);
602 }
603
Devang Patel13e16b62009-06-26 01:49:18 +0000604 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000605}
606
Devang Patel02e603f2011-08-15 23:47:24 +0000607/// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
608/// as llvm.dbg.enum and llvm.dbg.ty
609void DwarfDebug::collectInfoFromNamedMDNodes(Module *M) {
Devang Patel94c7ddb2011-08-16 22:09:43 +0000610 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.sp"))
611 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
612 const MDNode *N = NMD->getOperand(i);
613 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
614 constructSubprogramDIE(CU, N);
615 }
616
617 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv"))
618 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
619 const MDNode *N = NMD->getOperand(i);
620 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel28bea082011-08-18 23:17:55 +0000621 CU->createGlobalVariableDIE(N);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000622 }
623
Devang Patel02e603f2011-08-15 23:47:24 +0000624 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
625 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
626 DIType Ty(NMD->getOperand(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000627 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
628 CU->getOrCreateTypeDIE(Ty);
Devang Patel02e603f2011-08-15 23:47:24 +0000629 }
630
631 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
632 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
633 DIType Ty(NMD->getOperand(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000634 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
635 CU->getOrCreateTypeDIE(Ty);
Devang Patel02e603f2011-08-15 23:47:24 +0000636 }
637}
638
639/// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
640/// FIXME - Remove this when dragon-egg and llvm-gcc switch to DIBuilder.
641bool DwarfDebug::collectLegacyDebugInfo(Module *M) {
642 DebugInfoFinder DbgFinder;
643 DbgFinder.processModule(*M);
644
645 bool HasDebugInfo = false;
646 // Scan all the compile-units to see if there are any marked as the main
647 // unit. If not, we do not generate debug info.
648 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
649 E = DbgFinder.compile_unit_end(); I != E; ++I) {
650 if (DICompileUnit(*I).isMain()) {
651 HasDebugInfo = true;
652 break;
653 }
654 }
655 if (!HasDebugInfo) return false;
656
657 // Create all the compile unit DIEs.
658 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
659 E = DbgFinder.compile_unit_end(); I != E; ++I)
660 constructCompileUnit(*I);
661
662 // Create DIEs for each global variable.
663 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
664 E = DbgFinder.global_variable_end(); I != E; ++I) {
665 const MDNode *N = *I;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000666 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel28bea082011-08-18 23:17:55 +0000667 CU->createGlobalVariableDIE(N);
Devang Patel02e603f2011-08-15 23:47:24 +0000668 }
Devang Patel94c7ddb2011-08-16 22:09:43 +0000669
Devang Patel02e603f2011-08-15 23:47:24 +0000670 // Create DIEs for each subprogram.
671 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
672 E = DbgFinder.subprogram_end(); I != E; ++I) {
673 const MDNode *N = *I;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000674 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
675 constructSubprogramDIE(CU, N);
Devang Patel02e603f2011-08-15 23:47:24 +0000676 }
677
678 return HasDebugInfo;
679}
680
Devang Patel2c4ceb12009-11-21 02:48:08 +0000681/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbar00564992009-09-19 20:40:14 +0000682/// content. Create global DIEs and emit initial debug info sections.
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000683/// This is invoked by the target AsmPrinter.
Chris Lattner75f50722010-04-04 07:48:20 +0000684void DwarfDebug::beginModule(Module *M) {
Devang Pateleac9c072010-04-27 19:46:33 +0000685 if (DisableDebugInfoPrinting)
686 return;
687
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000688 // If module has named metadata anchors then use them, otherwise scan the
689 // module using debug info finder to collect debug info.
Devang Patel30692ab2011-05-03 16:45:22 +0000690 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
691 if (CU_Nodes) {
Devang Patel94c7ddb2011-08-16 22:09:43 +0000692 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
693 DICompileUnit CUNode(CU_Nodes->getOperand(i));
694 CompileUnit *CU = constructCompileUnit(CUNode);
695 DIArray GVs = CUNode.getGlobalVariables();
696 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
Devang Patel28bea082011-08-18 23:17:55 +0000697 CU->createGlobalVariableDIE(GVs.getElement(i));
Devang Patel94c7ddb2011-08-16 22:09:43 +0000698 DIArray SPs = CUNode.getSubprograms();
699 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
700 constructSubprogramDIE(CU, SPs.getElement(i));
701 DIArray EnumTypes = CUNode.getEnumTypes();
702 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
703 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
704 DIArray RetainedTypes = CUNode.getRetainedTypes();
705 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
706 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
707 }
Devang Patel02e603f2011-08-15 23:47:24 +0000708 } else if (!collectLegacyDebugInfo(M))
709 return;
Devang Patel30692ab2011-05-03 16:45:22 +0000710
Devang Patel02e603f2011-08-15 23:47:24 +0000711 collectInfoFromNamedMDNodes(M);
Devang Patel30692ab2011-05-03 16:45:22 +0000712
Chris Lattnerd850ac72010-04-05 02:19:28 +0000713 // Tell MMI that we have debug info.
714 MMI->setDebugInfoAvailability(true);
Devang Patel30692ab2011-05-03 16:45:22 +0000715
Chris Lattnerbe15beb2010-04-04 23:17:54 +0000716 // Emit initial sections.
Chris Lattnerd850ac72010-04-05 02:19:28 +0000717 EmitSectionLabels();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000718
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000719 // Prime section data.
Chris Lattnerf0144122009-07-28 03:13:23 +0000720 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000721}
722
Devang Patel2c4ceb12009-11-21 02:48:08 +0000723/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000724///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000725void DwarfDebug::endModule() {
Devang Patel163a9f72010-05-10 22:49:55 +0000726 if (!FirstCU) return;
Devang Patel4a1cad62010-06-28 18:25:03 +0000727 const Module *M = MMI->getModule();
Devang Patelbf47fdb2011-08-10 20:55:27 +0000728 DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap;
Devang Patel4a1cad62010-06-28 18:25:03 +0000729
Devang Patel94c7ddb2011-08-16 22:09:43 +0000730 // Collect info for variables that were optimized out.
731 if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) {
732 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
733 DICompileUnit TheCU(CU_Nodes->getOperand(i));
734 DIArray Subprograms = TheCU.getSubprograms();
735 for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) {
736 DISubprogram SP(Subprograms.getElement(i));
737 if (ProcessedSPNodes.count(SP) != 0) continue;
738 if (!SP.Verify()) continue;
739 if (!SP.isDefinition()) continue;
Devang Patel93d39be2011-08-19 23:28:12 +0000740 DIArray Variables = SP.getVariables();
741 if (Variables.getNumElements() == 0) continue;
742
Devang Patel94c7ddb2011-08-16 22:09:43 +0000743 LexicalScope *Scope =
744 new LexicalScope(NULL, DIDescriptor(SP), NULL, false);
745 DeadFnScopeMap[SP] = Scope;
746
747 // Construct subprogram DIE and add variables DIEs.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000748 CompileUnit *SPCU = CUMap.lookup(TheCU);
Nick Lewycky746cb672011-10-26 22:55:33 +0000749 assert(SPCU && "Unable to find Compile Unit!");
Devang Patel94c7ddb2011-08-16 22:09:43 +0000750 constructSubprogramDIE(SPCU, SP);
751 DIE *ScopeDIE = SPCU->getDIE(SP);
Devang Patel93d39be2011-08-19 23:28:12 +0000752 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
753 DIVariable DV(Variables.getElement(vi));
754 if (!DV.Verify()) continue;
755 DbgVariable *NewVar = new DbgVariable(DV, NULL);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000756 if (DIE *VariableDIE =
Devang Patel93d39be2011-08-19 23:28:12 +0000757 SPCU->constructVariableDIE(NewVar, Scope->isAbstractScope()))
Devang Patel94c7ddb2011-08-16 22:09:43 +0000758 ScopeDIE->addChild(VariableDIE);
759 }
Devang Patel4a1cad62010-06-28 18:25:03 +0000760 }
761 }
762 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000763
Devang Patel53bb5c92009-11-10 23:06:00 +0000764 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
765 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
766 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
767 DIE *ISP = *AI;
Devang Patel3cbee302011-04-12 22:53:02 +0000768 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patel53bb5c92009-11-10 23:06:00 +0000769 }
770
Devang Pateldbc64af2011-08-15 17:24:54 +0000771 // Emit DW_AT_containing_type attribute to connect types with their
772 // vtable holding type.
773 for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(),
774 CUE = CUMap.end(); CUI != CUE; ++CUI) {
775 CompileUnit *TheCU = CUI->second;
776 TheCU->constructContainingTypeDIEs();
Devang Patel5d11eb02009-12-03 19:11:07 +0000777 }
778
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000779 // Standard sections final addresses.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000780 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000781 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000782 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000783 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000784
785 // End text sections.
786 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000787 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnerc0215722010-04-04 19:25:43 +0000788 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000789 }
790
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000791 // Compute DIE offsets and sizes.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000792 computeSizeAndOffsets();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000793
794 // Emit all the DIEs into a debug info section
Devang Patel2c4ceb12009-11-21 02:48:08 +0000795 emitDebugInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000796
797 // Corresponding abbreviations into a abbrev section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000798 emitAbbreviations();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000799
Eric Christopher09ac3d82011-11-07 09:24:32 +0000800 // Emit info into a dwarf accelerator table sections.
801 if (DwarfAccelTables) {
802 emitAccelNames();
803 emitAccelObjC();
804 emitAccelNamespaces();
805 emitAccelTypes();
806 }
807
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000808 // Emit info into a debug pubnames section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000809 emitDebugPubNames();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000810
Devang Patel193f7202009-11-24 01:14:22 +0000811 // Emit info into a debug pubtypes section.
812 emitDebugPubTypes();
813
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000814 // Emit info into a debug loc section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000815 emitDebugLoc();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000816
817 // Emit info into a debug aranges section.
818 EmitDebugARanges();
819
820 // Emit info into a debug ranges section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000821 emitDebugRanges();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000822
823 // Emit info into a debug macinfo section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000824 emitDebugMacInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000825
826 // Emit inline info.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000827 emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000828
Chris Lattnerbc733f52010-03-13 02:17:42 +0000829 // Emit info into a debug str section.
830 emitDebugStr();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000831
Devang Patele9a1cca2010-08-02 17:32:15 +0000832 // clean up.
833 DeleteContainerSeconds(DeadFnScopeMap);
Devang Patel94c7ddb2011-08-16 22:09:43 +0000834 SPMap.clear();
Devang Patel163a9f72010-05-10 22:49:55 +0000835 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
836 E = CUMap.end(); I != E; ++I)
837 delete I->second;
838 FirstCU = NULL; // Reset for the next Module, if any.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000839}
840
Devang Patel53bb5c92009-11-10 23:06:00 +0000841/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Devang Patelb549bcf2011-08-10 21:50:54 +0000842DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV,
Chris Lattnerde4845c2010-04-02 19:42:39 +0000843 DebugLoc ScopeLoc) {
Devang Patelb549bcf2011-08-10 21:50:54 +0000844 LLVMContext &Ctx = DV->getContext();
845 // More then one inlined variable corresponds to one abstract variable.
846 DIVariable Var = cleanseInlinedVariable(DV, Ctx);
Devang Patel2db49d72010-05-07 18:11:54 +0000847 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patel53bb5c92009-11-10 23:06:00 +0000848 if (AbsDbgVariable)
849 return AbsDbgVariable;
850
Devang Patelbf47fdb2011-08-10 20:55:27 +0000851 LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx));
Devang Patel53bb5c92009-11-10 23:06:00 +0000852 if (!Scope)
853 return NULL;
854
Devang Patel5a1a67c2011-08-15 19:01:20 +0000855 AbsDbgVariable = new DbgVariable(Var, NULL);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000856 addScopeVariable(Scope, AbsDbgVariable);
Devang Patel2db49d72010-05-07 18:11:54 +0000857 AbstractVariables[Var] = AbsDbgVariable;
Devang Patel53bb5c92009-11-10 23:06:00 +0000858 return AbsDbgVariable;
859}
860
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000861/// addCurrentFnArgument - If Var is a current function argument then add
862/// it to CurrentFnArguments list.
Devang Patel0478c152011-03-01 22:58:55 +0000863bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
Devang Patelbf47fdb2011-08-10 20:55:27 +0000864 DbgVariable *Var, LexicalScope *Scope) {
865 if (!LScopes.isCurrentFunctionScope(Scope))
Devang Patel0478c152011-03-01 22:58:55 +0000866 return false;
867 DIVariable DV = Var->getVariable();
868 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
869 return false;
870 unsigned ArgNo = DV.getArgNumber();
871 if (ArgNo == 0)
872 return false;
873
Devang Patelcb3a6572011-03-03 20:02:02 +0000874 size_t Size = CurrentFnArguments.size();
875 if (Size == 0)
Devang Patel0478c152011-03-01 22:58:55 +0000876 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patelbbd0f452011-03-03 21:49:41 +0000877 // llvm::Function argument size is not good indicator of how many
Devang Patel6f676be2011-03-03 20:08:10 +0000878 // arguments does the function have at source level.
879 if (ArgNo > Size)
Devang Patelcb3a6572011-03-03 20:02:02 +0000880 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel0478c152011-03-01 22:58:55 +0000881 CurrentFnArguments[ArgNo - 1] = Var;
882 return true;
883}
884
Devang Patelee432862010-05-20 19:57:06 +0000885/// collectVariableInfoFromMMITable - Collect variable information from
886/// side table maintained by MMI.
Jim Grosbach1e20b962010-07-21 21:21:52 +0000887void
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000888DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF,
Devang Patelee432862010-05-20 19:57:06 +0000889 SmallPtrSet<const MDNode *, 16> &Processed) {
Devang Patele717faa2009-10-06 01:26:37 +0000890 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
891 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
892 VE = VMap.end(); VI != VE; ++VI) {
Devang Patele9f8f5e2010-05-07 20:54:48 +0000893 const MDNode *Var = VI->first;
Devang Patel53bb5c92009-11-10 23:06:00 +0000894 if (!Var) continue;
Devang Patel98e1cac2010-05-14 21:01:35 +0000895 Processed.insert(Var);
Chris Lattnerde4845c2010-04-02 19:42:39 +0000896 DIVariable DV(Var);
897 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patel53bb5c92009-11-10 23:06:00 +0000898
Devang Patelbf47fdb2011-08-10 20:55:27 +0000899 LexicalScope *Scope = LScopes.findLexicalScope(VP.second);
Jim Grosbach1e20b962010-07-21 21:21:52 +0000900
Devang Patelfb0ee432009-11-10 23:20:04 +0000901 // If variable scope is not found then skip this variable.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000902 if (Scope == 0)
Devang Patelfb0ee432009-11-10 23:20:04 +0000903 continue;
Devang Patel53bb5c92009-11-10 23:06:00 +0000904
Devang Patel26c1e562010-05-20 16:36:41 +0000905 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
Devang Patel5a1a67c2011-08-15 19:01:20 +0000906 DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable);
Devang Patelff9dd0a2011-08-15 21:24:36 +0000907 RegVar->setFrameIndex(VP.first);
Devang Patel0478c152011-03-01 22:58:55 +0000908 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000909 addScopeVariable(Scope, RegVar);
Devang Patel5a1a67c2011-08-15 19:01:20 +0000910 if (AbsDbgVariable)
Devang Patelff9dd0a2011-08-15 21:24:36 +0000911 AbsDbgVariable->setFrameIndex(VP.first);
Devang Patele717faa2009-10-06 01:26:37 +0000912 }
Devang Patelee432862010-05-20 19:57:06 +0000913}
Devang Patel90a48ad2010-03-15 18:33:46 +0000914
Jim Grosbach1e20b962010-07-21 21:21:52 +0000915/// isDbgValueInDefinedReg - Return true if debug value, encoded by
Devang Patelc3f5f782010-05-25 23:40:22 +0000916/// DBG_VALUE instruction, is in a defined reg.
917static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000918 assert(MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000919 return MI->getNumOperands() == 3 &&
920 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
921 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patelc3f5f782010-05-25 23:40:22 +0000922}
923
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000924/// getDebugLocEntry - Get .debug_loc entry for the instruction range starting
Devang Patel90b40412011-07-08 17:09:57 +0000925/// at MI.
926static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm,
927 const MCSymbol *FLabel,
928 const MCSymbol *SLabel,
929 const MachineInstr *MI) {
930 const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata();
931
932 if (MI->getNumOperands() != 3) {
933 MachineLocation MLoc = Asm->getDebugValueLocation(MI);
934 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
935 }
936 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) {
937 MachineLocation MLoc;
938 MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
939 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
940 }
941 if (MI->getOperand(0).isImm())
942 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm());
943 if (MI->getOperand(0).isFPImm())
944 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm());
945 if (MI->getOperand(0).isCImm())
946 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm());
947
Nick Lewycky746cb672011-10-26 22:55:33 +0000948 assert(0 && "Unexpected 3 operand DBG_VALUE instruction!");
Devang Patel90b40412011-07-08 17:09:57 +0000949 return DotDebugLocEntry();
950}
951
Devang Patelbf47fdb2011-08-10 20:55:27 +0000952/// collectVariableInfo - Find variables for each lexical scope.
Jim Grosbach1e20b962010-07-21 21:21:52 +0000953void
Devang Patel78e127d2010-06-25 22:07:34 +0000954DwarfDebug::collectVariableInfo(const MachineFunction *MF,
955 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbach1e20b962010-07-21 21:21:52 +0000956
Devang Patelee432862010-05-20 19:57:06 +0000957 /// collection info from MMI table.
958 collectVariableInfoFromMMITable(MF, Processed);
959
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000960 for (SmallVectorImpl<const MDNode*>::const_iterator
961 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
962 ++UVI) {
963 const MDNode *Var = *UVI;
964 if (Processed.count(Var))
Devang Patelee432862010-05-20 19:57:06 +0000965 continue;
966
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000967 // History contains relevant DBG_VALUE instructions for Var and instructions
968 // clobbering it.
969 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
970 if (History.empty())
971 continue;
972 const MachineInstr *MInsn = History.front();
Devang Patelc3f5f782010-05-25 23:40:22 +0000973
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000974 DIVariable DV(Var);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000975 LexicalScope *Scope = NULL;
Devang Pateld8720f42010-05-27 20:25:04 +0000976 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
977 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000978 Scope = LScopes.getCurrentFunctionScope();
Devang Patel40c7e412011-07-20 22:18:50 +0000979 else {
980 if (DV.getVersion() <= LLVMDebugVersion9)
Devang Patelbf47fdb2011-08-10 20:55:27 +0000981 Scope = LScopes.findLexicalScope(MInsn->getDebugLoc());
Devang Patel40c7e412011-07-20 22:18:50 +0000982 else {
983 if (MDNode *IA = DV.getInlinedAt())
Devang Patelbf47fdb2011-08-10 20:55:27 +0000984 Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA));
Devang Patel40c7e412011-07-20 22:18:50 +0000985 else
Devang Patelbf47fdb2011-08-10 20:55:27 +0000986 Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1)));
Devang Patel40c7e412011-07-20 22:18:50 +0000987 }
988 }
Devang Patelee432862010-05-20 19:57:06 +0000989 // If variable scope is not found then skip this variable.
Devang Patelc0c5a262010-05-21 00:10:20 +0000990 if (!Scope)
Devang Patelee432862010-05-20 19:57:06 +0000991 continue;
992
993 Processed.insert(DV);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000994 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patel5a1a67c2011-08-15 19:01:20 +0000995 DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc());
996 DbgVariable *RegVar = new DbgVariable(DV, AbsVar);
Devang Patel0478c152011-03-01 22:58:55 +0000997 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000998 addScopeVariable(Scope, RegVar);
Devang Patel5a1a67c2011-08-15 19:01:20 +0000999 if (AbsVar)
Devang Patelff9dd0a2011-08-15 21:24:36 +00001000 AbsVar->setMInsn(MInsn);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001001
1002 // Simple ranges that are fully coalesced.
1003 if (History.size() <= 1 || (History.size() == 2 &&
1004 MInsn->isIdenticalTo(History.back()))) {
Devang Patelff9dd0a2011-08-15 21:24:36 +00001005 RegVar->setMInsn(MInsn);
Devang Patelc3f5f782010-05-25 23:40:22 +00001006 continue;
1007 }
1008
1009 // handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001010 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001011
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001012 for (SmallVectorImpl<const MachineInstr*>::const_iterator
1013 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
1014 const MachineInstr *Begin = *HI;
1015 assert(Begin->isDebugValue() && "Invalid History entry");
Jakob Stoklund Olesene17232e2011-03-22 00:21:41 +00001016
Devang Patel4ada1d72011-06-01 23:00:17 +00001017 // Check if DBG_VALUE is truncating a range.
1018 if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg()
1019 && !Begin->getOperand(0).getReg())
1020 continue;
1021
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001022 // Compute the range for a register location.
1023 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
1024 const MCSymbol *SLabel = 0;
1025
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001026 if (HI + 1 == HE)
1027 // If Begin is the last instruction in History then its value is valid
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001028 // until the end of the function.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001029 SLabel = FunctionEndSym;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001030 else {
1031 const MachineInstr *End = HI[1];
Devang Patel476df5f2011-07-07 21:44:42 +00001032 DEBUG(dbgs() << "DotDebugLoc Pair:\n"
1033 << "\t" << *Begin << "\t" << *End << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001034 if (End->isDebugValue())
1035 SLabel = getLabelBeforeInsn(End);
1036 else {
1037 // End is a normal instruction clobbering the range.
1038 SLabel = getLabelAfterInsn(End);
1039 assert(SLabel && "Forgot label after clobber instruction");
1040 ++HI;
1041 }
1042 }
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001043
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001044 // The value is valid until the next DBG_VALUE or clobber.
Devang Patel90b40412011-07-08 17:09:57 +00001045 DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel, Begin));
Devang Patelc3f5f782010-05-25 23:40:22 +00001046 }
1047 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patel90a48ad2010-03-15 18:33:46 +00001048 }
Devang Patel98e1cac2010-05-14 21:01:35 +00001049
1050 // Collect info for variables that were optimized out.
Devang Patel93d39be2011-08-19 23:28:12 +00001051 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
1052 DIArray Variables = DISubprogram(FnScope->getScopeNode()).getVariables();
1053 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1054 DIVariable DV(Variables.getElement(i));
1055 if (!DV || !DV.Verify() || !Processed.insert(DV))
1056 continue;
1057 if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext()))
1058 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel98e1cac2010-05-14 21:01:35 +00001059 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001060}
Devang Patel98e1cac2010-05-14 21:01:35 +00001061
Devang Patelc3f5f782010-05-25 23:40:22 +00001062/// getLabelBeforeInsn - Return Label preceding the instruction.
1063const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001064 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1065 assert(Label && "Didn't insert label before instruction");
1066 return Label;
Devang Patelc3f5f782010-05-25 23:40:22 +00001067}
1068
1069/// getLabelAfterInsn - Return Label immediately following the instruction.
1070const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001071 return LabelsAfterInsn.lookup(MI);
Devang Patele717faa2009-10-06 01:26:37 +00001072}
1073
Devang Patelcbbe2872010-10-26 17:49:02 +00001074/// beginInstruction - Process beginning of an instruction.
1075void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001076 // Check if source location changes, but ignore DBG_VALUE locations.
1077 if (!MI->isDebugValue()) {
1078 DebugLoc DL = MI->getDebugLoc();
1079 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
Devang Patel4243e672011-05-11 19:22:19 +00001080 unsigned Flags = DWARF2_FLAG_IS_STMT;
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001081 PrevInstLoc = DL;
Devang Patel4243e672011-05-11 19:22:19 +00001082 if (DL == PrologEndLoc) {
1083 Flags |= DWARF2_FLAG_PROLOGUE_END;
1084 PrologEndLoc = DebugLoc();
1085 }
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001086 if (!DL.isUnknown()) {
1087 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Devang Patel4243e672011-05-11 19:22:19 +00001088 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001089 } else
Devang Patel4243e672011-05-11 19:22:19 +00001090 recordSourceLine(0, 0, 0, 0);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001091 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001092 }
Devang Patelaead63c2010-03-29 22:59:58 +00001093
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001094 // Insert labels where requested.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001095 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1096 LabelsBeforeInsn.find(MI);
1097
1098 // No label needed.
1099 if (I == LabelsBeforeInsn.end())
1100 return;
1101
1102 // Label already assigned.
1103 if (I->second)
Devang Patelb2b31a62010-05-26 19:37:24 +00001104 return;
Devang Patel553881b2010-03-29 17:20:31 +00001105
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001106 if (!PrevLabel) {
Devang Patel77051f52010-05-26 21:23:46 +00001107 PrevLabel = MMI->getContext().CreateTempSymbol();
1108 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patelb2b31a62010-05-26 19:37:24 +00001109 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001110 I->second = PrevLabel;
Devang Patel0d20ac82009-10-06 01:50:42 +00001111}
1112
Devang Patelcbbe2872010-10-26 17:49:02 +00001113/// endInstruction - Process end of an instruction.
1114void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001115 // Don't create a new label after DBG_VALUE instructions.
1116 // They don't generate code.
1117 if (!MI->isDebugValue())
1118 PrevLabel = 0;
1119
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001120 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1121 LabelsAfterInsn.find(MI);
1122
1123 // No label needed.
1124 if (I == LabelsAfterInsn.end())
1125 return;
1126
1127 // Label already assigned.
1128 if (I->second)
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001129 return;
1130
1131 // We need a label after this instruction.
1132 if (!PrevLabel) {
1133 PrevLabel = MMI->getContext().CreateTempSymbol();
1134 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel1c246352010-04-08 16:50:29 +00001135 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001136 I->second = PrevLabel;
Devang Patel53bb5c92009-11-10 23:06:00 +00001137}
1138
Jim Grosbach1e20b962010-07-21 21:21:52 +00001139/// identifyScopeMarkers() -
Devang Patel5bc942c2011-08-10 23:58:09 +00001140/// Each LexicalScope has first instruction and last instruction to mark
1141/// beginning and end of a scope respectively. Create an inverse map that list
1142/// scopes starts (and ends) with an instruction. One instruction may start (or
1143/// end) multiple scopes. Ignore scopes that are not reachable.
Devang Patele37b0c62010-04-08 18:43:56 +00001144void DwarfDebug::identifyScopeMarkers() {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001145 SmallVector<LexicalScope *, 4> WorkList;
1146 WorkList.push_back(LScopes.getCurrentFunctionScope());
Devang Patel42aafd72010-01-20 02:05:23 +00001147 while (!WorkList.empty()) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001148 LexicalScope *S = WorkList.pop_back_val();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001149
Devang Patelbf47fdb2011-08-10 20:55:27 +00001150 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001151 if (!Children.empty())
Devang Patelbf47fdb2011-08-10 20:55:27 +00001152 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel42aafd72010-01-20 02:05:23 +00001153 SE = Children.end(); SI != SE; ++SI)
1154 WorkList.push_back(*SI);
1155
Devang Patel53bb5c92009-11-10 23:06:00 +00001156 if (S->isAbstractScope())
1157 continue;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001158
Devang Patelbf47fdb2011-08-10 20:55:27 +00001159 const SmallVector<InsnRange, 4> &Ranges = S->getRanges();
Devang Pateleac9c072010-04-27 19:46:33 +00001160 if (Ranges.empty())
1161 continue;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001162 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Pateleac9c072010-04-27 19:46:33 +00001163 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001164 assert(RI->first && "InsnRange does not have first instruction!");
1165 assert(RI->second && "InsnRange does not have second instruction!");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001166 requestLabelBeforeInsn(RI->first);
1167 requestLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +00001168 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001169 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001170}
1171
Devang Patela3f48672011-05-09 22:14:49 +00001172/// getScopeNode - Get MDNode for DebugLoc's scope.
1173static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) {
1174 if (MDNode *InlinedAt = DL.getInlinedAt(Ctx))
1175 return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx);
1176 return DL.getScope(Ctx);
1177}
1178
Devang Patel4243e672011-05-11 19:22:19 +00001179/// getFnDebugLoc - Walk up the scope chain of given debug loc and find
1180/// line number info for the function.
1181static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) {
1182 const MDNode *Scope = getScopeNode(DL, Ctx);
1183 DISubprogram SP = getDISubprogram(Scope);
1184 if (SP.Verify())
1185 return DebugLoc::get(SP.getLineNumber(), 0, SP);
1186 return DebugLoc();
1187}
1188
Devang Patel2c4ceb12009-11-21 02:48:08 +00001189/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001190/// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +00001191void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner994cb122010-04-05 03:52:55 +00001192 if (!MMI->hasDebugInfo()) return;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001193 LScopes.initialize(*MF);
1194 if (LScopes.empty()) return;
1195 identifyScopeMarkers();
Devang Patel60b35bd2009-10-06 18:37:31 +00001196
Devang Pateleac9c072010-04-27 19:46:33 +00001197 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1198 Asm->getFunctionNumber());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001199 // Assumes in correct section after the entry point.
Devang Pateleac9c072010-04-27 19:46:33 +00001200 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001201
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001202 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1203
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001204 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001205 /// LiveUserVar - Map physreg numbers to the MDNode they contain.
1206 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1207
Devang Patelb2b31a62010-05-26 19:37:24 +00001208 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001209 I != E; ++I) {
1210 bool AtBlockEntry = true;
Devang Patelb2b31a62010-05-26 19:37:24 +00001211 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1212 II != IE; ++II) {
1213 const MachineInstr *MI = II;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001214
Devang Patelb2b31a62010-05-26 19:37:24 +00001215 if (MI->isDebugValue()) {
Nick Lewycky746cb672011-10-26 22:55:33 +00001216 assert(MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001217
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001218 // Keep track of user variables.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001219 const MDNode *Var =
1220 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001221
1222 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001223 if (isDbgValueInDefinedReg(MI))
1224 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1225
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001226 // Check the history of this variable.
1227 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1228 if (History.empty()) {
1229 UserVariables.push_back(Var);
1230 // The first mention of a function argument gets the FunctionBeginSym
1231 // label, so arguments are visible when breaking at function entry.
1232 DIVariable DV(Var);
1233 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1234 DISubprogram(getDISubprogram(DV.getContext()))
1235 .describes(MF->getFunction()))
1236 LabelsBeforeInsn[MI] = FunctionBeginSym;
1237 } else {
1238 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1239 const MachineInstr *Prev = History.back();
1240 if (Prev->isDebugValue()) {
1241 // Coalesce identical entries at the end of History.
1242 if (History.size() >= 2 &&
Devang Patel79862892011-07-07 00:14:27 +00001243 Prev->isIdenticalTo(History[History.size() - 2])) {
1244 DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n"
1245 << "\t" << *Prev
1246 << "\t" << *History[History.size() - 2] << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001247 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001248 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001249
1250 // Terminate old register assignments that don't reach MI;
1251 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1252 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1253 isDbgValueInDefinedReg(Prev)) {
1254 // Previous register assignment needs to terminate at the end of
1255 // its basic block.
1256 MachineBasicBlock::const_iterator LastMI =
1257 PrevMBB->getLastNonDebugInstr();
Devang Patel79862892011-07-07 00:14:27 +00001258 if (LastMI == PrevMBB->end()) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001259 // Drop DBG_VALUE for empty range.
Devang Patel79862892011-07-07 00:14:27 +00001260 DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n"
1261 << "\t" << *Prev << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001262 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001263 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001264 else {
1265 // Terminate after LastMI.
1266 History.push_back(LastMI);
1267 }
1268 }
1269 }
1270 }
1271 History.push_back(MI);
Devang Patelb2b31a62010-05-26 19:37:24 +00001272 } else {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001273 // Not a DBG_VALUE instruction.
1274 if (!MI->isLabel())
1275 AtBlockEntry = false;
1276
Devang Patel4243e672011-05-11 19:22:19 +00001277 // First known non DBG_VALUE location marks beginning of function
1278 // body.
1279 if (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown())
1280 PrologEndLoc = MI->getDebugLoc();
1281
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001282 // Check if the instruction clobbers any registers with debug vars.
1283 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1284 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1285 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1286 continue;
1287 for (const unsigned *AI = TRI->getOverlaps(MOI->getReg());
1288 unsigned Reg = *AI; ++AI) {
1289 const MDNode *Var = LiveUserVar[Reg];
1290 if (!Var)
1291 continue;
1292 // Reg is now clobbered.
1293 LiveUserVar[Reg] = 0;
1294
1295 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001296 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
1297 if (HistI == DbgValues.end())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001298 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001299 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
1300 if (History.empty())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001301 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001302 const MachineInstr *Prev = History.back();
1303 // Sanity-check: Register assignments are terminated at the end of
1304 // their block.
1305 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
1306 continue;
1307 // Is the variable still in Reg?
1308 if (!isDbgValueInDefinedReg(Prev) ||
1309 Prev->getOperand(0).getReg() != Reg)
1310 continue;
1311 // Var is clobbered. Make sure the next instruction gets a label.
1312 History.push_back(MI);
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001313 }
1314 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001315 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001316 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001317 }
1318
1319 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
1320 I != E; ++I) {
1321 SmallVectorImpl<const MachineInstr*> &History = I->second;
1322 if (History.empty())
1323 continue;
1324
1325 // Make sure the final register assignments are terminated.
1326 const MachineInstr *Prev = History.back();
1327 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
1328 const MachineBasicBlock *PrevMBB = Prev->getParent();
Devang Patel5bc942c2011-08-10 23:58:09 +00001329 MachineBasicBlock::const_iterator LastMI =
1330 PrevMBB->getLastNonDebugInstr();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001331 if (LastMI == PrevMBB->end())
1332 // Drop DBG_VALUE for empty range.
1333 History.pop_back();
1334 else {
1335 // Terminate after LastMI.
1336 History.push_back(LastMI);
1337 }
1338 }
1339 // Request labels for the full history.
1340 for (unsigned i = 0, e = History.size(); i != e; ++i) {
1341 const MachineInstr *MI = History[i];
1342 if (MI->isDebugValue())
1343 requestLabelBeforeInsn(MI);
1344 else
1345 requestLabelAfterInsn(MI);
1346 }
1347 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001348
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001349 PrevInstLoc = DebugLoc();
Devang Patelb2b31a62010-05-26 19:37:24 +00001350 PrevLabel = FunctionBeginSym;
Devang Patel4243e672011-05-11 19:22:19 +00001351
1352 // Record beginning of function.
1353 if (!PrologEndLoc.isUnknown()) {
1354 DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc,
1355 MF->getFunction()->getContext());
1356 recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(),
1357 FnStartDL.getScope(MF->getFunction()->getContext()),
1358 DWARF2_FLAG_IS_STMT);
1359 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001360}
1361
Devang Patelbf47fdb2011-08-10 20:55:27 +00001362void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) {
1363// SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1364 ScopeVariables[LS].push_back(Var);
1365// Vars.push_back(Var);
1366}
1367
Devang Patel2c4ceb12009-11-21 02:48:08 +00001368/// endFunction - Gather and emit post-function debug information.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001369///
Chris Lattnereec791a2010-01-26 23:18:02 +00001370void DwarfDebug::endFunction(const MachineFunction *MF) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001371 if (!MMI->hasDebugInfo() || LScopes.empty()) return;
Devang Patel70d75ca2009-11-12 19:02:56 +00001372
Devang Patelbf47fdb2011-08-10 20:55:27 +00001373 // Define end label for subprogram.
1374 FunctionEndSym = Asm->GetTempSymbol("func_end",
1375 Asm->getFunctionNumber());
1376 // Assumes in correct section after the entry point.
1377 Asm->OutStreamer.EmitLabel(FunctionEndSym);
1378
1379 SmallPtrSet<const MDNode *, 16> ProcessedVars;
1380 collectVariableInfo(MF, ProcessedVars);
1381
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001382 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
Devang Patel94c7ddb2011-08-16 22:09:43 +00001383 CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode());
Nick Lewycky746cb672011-10-26 22:55:33 +00001384 assert(TheCU && "Unable to find compile unit!");
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001385
Devang Patelbf47fdb2011-08-10 20:55:27 +00001386 // Construct abstract scopes.
Devang Patelcd9f6c52011-08-12 18:10:19 +00001387 ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList();
1388 for (unsigned i = 0, e = AList.size(); i != e; ++i) {
1389 LexicalScope *AScope = AList[i];
1390 DISubprogram SP(AScope->getScopeNode());
Devang Patelbf47fdb2011-08-10 20:55:27 +00001391 if (SP.Verify()) {
1392 // Collect info for variables that were optimized out.
Devang Patel93d39be2011-08-19 23:28:12 +00001393 DIArray Variables = SP.getVariables();
1394 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1395 DIVariable DV(Variables.getElement(i));
1396 if (!DV || !DV.Verify() || !ProcessedVars.insert(DV))
1397 continue;
1398 if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext()))
1399 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel78e127d2010-06-25 22:07:34 +00001400 }
1401 }
Devang Patelcd9f6c52011-08-12 18:10:19 +00001402 if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0)
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001403 constructScopeDIE(TheCU, AScope);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001404 }
Devang Patelbf47fdb2011-08-10 20:55:27 +00001405
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001406 DIE *CurFnDIE = constructScopeDIE(TheCU, FnScope);
Devang Patelbf47fdb2011-08-10 20:55:27 +00001407
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001408 if (!DisableFramePointerElim(*MF))
Devang Patel5bc942c2011-08-10 23:58:09 +00001409 TheCU->addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr,
1410 dwarf::DW_FORM_flag, 1);
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001411
Devang Patelbf47fdb2011-08-10 20:55:27 +00001412 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
1413 MMI->getFrameMoves()));
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001414
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001415 // Clear debug info
Devang Patelbf47fdb2011-08-10 20:55:27 +00001416 for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator
1417 I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I)
1418 DeleteContainerPointers(I->second);
1419 ScopeVariables.clear();
Devang Pateleac0c9d2011-04-22 18:09:57 +00001420 DeleteContainerPointers(CurrentFnArguments);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001421 UserVariables.clear();
1422 DbgValues.clear();
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00001423 AbstractVariables.clear();
Devang Pateleac9c072010-04-27 19:46:33 +00001424 LabelsBeforeInsn.clear();
1425 LabelsAfterInsn.clear();
Devang Patelf2548ca2010-04-16 23:33:45 +00001426 PrevLabel = NULL;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001427}
1428
Chris Lattnerc6087842010-03-09 04:54:43 +00001429/// recordSourceLine - Register a source line with debug info. Returns the
1430/// unique label that was emitted and which provides correspondence to
1431/// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +00001432void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S,
1433 unsigned Flags) {
Devang Patel65dbc902009-11-25 17:36:49 +00001434 StringRef Fn;
Devang Patel23670e52011-03-24 20:30:50 +00001435 StringRef Dir;
Dan Gohman1cc0d622010-05-05 23:41:32 +00001436 unsigned Src = 1;
1437 if (S) {
1438 DIDescriptor Scope(S);
Devang Patelf84548d2009-10-05 18:03:19 +00001439
Dan Gohman1cc0d622010-05-05 23:41:32 +00001440 if (Scope.isCompileUnit()) {
1441 DICompileUnit CU(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001442 Fn = CU.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001443 Dir = CU.getDirectory();
Devang Patel3cabc9d2010-10-28 17:30:52 +00001444 } else if (Scope.isFile()) {
1445 DIFile F(S);
Devang Patel3cabc9d2010-10-28 17:30:52 +00001446 Fn = F.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001447 Dir = F.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001448 } else if (Scope.isSubprogram()) {
1449 DISubprogram SP(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001450 Fn = SP.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001451 Dir = SP.getDirectory();
Eric Christopher6618a242011-10-11 22:59:11 +00001452 } else if (Scope.isLexicalBlockFile()) {
1453 DILexicalBlockFile DBF(S);
1454 Fn = DBF.getFilename();
1455 Dir = DBF.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001456 } else if (Scope.isLexicalBlock()) {
1457 DILexicalBlock DB(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001458 Fn = DB.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001459 Dir = DB.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001460 } else
1461 assert(0 && "Unexpected scope info");
1462
Devang Patel23670e52011-03-24 20:30:50 +00001463 Src = GetOrCreateSourceID(Fn, Dir);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001464 }
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001465 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001466}
1467
Bill Wendling829e67b2009-05-20 23:22:40 +00001468//===----------------------------------------------------------------------===//
1469// Emit Methods
1470//===----------------------------------------------------------------------===//
1471
Devang Patel2c4ceb12009-11-21 02:48:08 +00001472/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling94d04b82009-05-20 23:21:38 +00001473///
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001474unsigned
1475DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001476 // Get the children.
1477 const std::vector<DIE *> &Children = Die->getChildren();
1478
1479 // If not last sibling and has children then add sibling offset attribute.
Jeffrey Yasskin638fe8d2010-03-22 18:47:14 +00001480 if (!Last && !Children.empty())
Benjamin Kramer345ef342010-03-31 19:34:01 +00001481 Die->addSiblingOffset(DIEValueAllocator);
Bill Wendling94d04b82009-05-20 23:21:38 +00001482
1483 // Record the abbreviation.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001484 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling94d04b82009-05-20 23:21:38 +00001485
1486 // Get the abbreviation for this DIE.
1487 unsigned AbbrevNumber = Die->getAbbrevNumber();
1488 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1489
1490 // Set DIE offset
1491 Die->setOffset(Offset);
1492
1493 // Start the size with the size of abbreviation code.
Chris Lattneraf76e592009-08-22 20:48:53 +00001494 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001495
1496 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1497 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1498
1499 // Size the DIE attribute values.
1500 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1501 // Size attribute value.
Chris Lattnera37d5382010-04-05 00:18:22 +00001502 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling94d04b82009-05-20 23:21:38 +00001503
1504 // Size the DIE children if any.
1505 if (!Children.empty()) {
1506 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1507 "Children flag not set");
1508
1509 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001510 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling94d04b82009-05-20 23:21:38 +00001511
1512 // End of children marker.
1513 Offset += sizeof(int8_t);
1514 }
1515
1516 Die->setSize(Offset - Die->getOffset());
1517 return Offset;
1518}
1519
Devang Patel2c4ceb12009-11-21 02:48:08 +00001520/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling94d04b82009-05-20 23:21:38 +00001521///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001522void DwarfDebug::computeSizeAndOffsets() {
Devang Patel163a9f72010-05-10 22:49:55 +00001523 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1524 E = CUMap.end(); I != E; ++I) {
1525 // Compute size of compile unit header.
Devang Patel513edf62011-04-12 23:10:47 +00001526 unsigned Offset =
Devang Patel163a9f72010-05-10 22:49:55 +00001527 sizeof(int32_t) + // Length of Compilation Unit Info
1528 sizeof(int16_t) + // DWARF version number
1529 sizeof(int32_t) + // Offset Into Abbrev. Section
1530 sizeof(int8_t); // Pointer Size (in bytes)
1531 computeSizeAndOffset(I->second->getCUDie(), Offset, true);
Devang Patel163a9f72010-05-10 22:49:55 +00001532 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001533}
1534
Chris Lattner9c69e285532010-04-04 22:59:04 +00001535/// EmitSectionLabels - Emit initial Dwarf sections with a label at
1536/// the start of each one.
Chris Lattnerfa070b02010-04-04 22:33:59 +00001537void DwarfDebug::EmitSectionLabels() {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001538 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001539
Bill Wendling94d04b82009-05-20 23:21:38 +00001540 // Dwarf sections base addresses.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001541 DwarfInfoSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001542 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001543 DwarfAbbrevSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001544 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner11b8f302010-04-04 23:02:02 +00001545 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001546
Chris Lattner9c69e285532010-04-04 22:59:04 +00001547 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner11b8f302010-04-04 23:02:02 +00001548 EmitSectionSym(Asm, MacroInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00001549
Devang Patelaf608bd2010-08-24 00:06:12 +00001550 EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Chris Lattner11b8f302010-04-04 23:02:02 +00001551 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
1552 EmitSectionSym(Asm, TLOF.getDwarfPubNamesSection());
1553 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001554 DwarfStrSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001555 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Devang Patelf2548ca2010-04-16 23:33:45 +00001556 DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(),
1557 "debug_range");
Bill Wendling94d04b82009-05-20 23:21:38 +00001558
Devang Patelc3f5f782010-05-25 23:40:22 +00001559 DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(),
1560 "section_debug_loc");
1561
Chris Lattner9c69e285532010-04-04 22:59:04 +00001562 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattner4ad1efe2010-04-04 23:10:38 +00001563 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001564}
1565
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001566/// emitDIE - Recursively emits a debug information entry.
Bill Wendling94d04b82009-05-20 23:21:38 +00001567///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001568void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001569 // Get the abbreviation for this DIE.
1570 unsigned AbbrevNumber = Die->getAbbrevNumber();
1571 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1572
Bill Wendling94d04b82009-05-20 23:21:38 +00001573 // Emit the code (index) for the abbreviation.
Chris Lattner3f53c832010-04-04 18:52:31 +00001574 if (Asm->isVerbose())
Chris Lattner894d75a2010-01-22 23:18:42 +00001575 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
1576 Twine::utohexstr(Die->getOffset()) + ":0x" +
1577 Twine::utohexstr(Die->getSize()) + " " +
1578 dwarf::TagString(Abbrev->getTag()));
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001579 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001580
Jeffrey Yasskin638fe8d2010-03-22 18:47:14 +00001581 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling94d04b82009-05-20 23:21:38 +00001582 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1583
1584 // Emit the DIE attribute values.
1585 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1586 unsigned Attr = AbbrevData[i].getAttribute();
1587 unsigned Form = AbbrevData[i].getForm();
1588 assert(Form && "Too many attributes for DIE (check abbreviation)");
1589
Chris Lattner3f53c832010-04-04 18:52:31 +00001590 if (Asm->isVerbose())
Chris Lattnera8013622010-01-24 18:54:17 +00001591 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001592
Bill Wendling94d04b82009-05-20 23:21:38 +00001593 switch (Attr) {
1594 case dwarf::DW_AT_sibling:
Devang Patel2c4ceb12009-11-21 02:48:08 +00001595 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00001596 break;
1597 case dwarf::DW_AT_abstract_origin: {
1598 DIEEntry *E = cast<DIEEntry>(Values[i]);
1599 DIE *Origin = E->getEntry();
Devang Patel53bb5c92009-11-10 23:06:00 +00001600 unsigned Addr = Origin->getOffset();
Bill Wendling94d04b82009-05-20 23:21:38 +00001601 Asm->EmitInt32(Addr);
1602 break;
1603 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001604 case dwarf::DW_AT_ranges: {
1605 // DW_AT_range Value encodes offset in debug_range section.
1606 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelb1fcfbe2010-09-02 16:43:44 +00001607
1608 if (Asm->MAI->doesDwarfUsesLabelOffsetForRanges()) {
1609 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
1610 V->getValue(),
1611 4);
1612 } else {
1613 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
1614 V->getValue(),
1615 DwarfDebugRangeSectionSym,
1616 4);
1617 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001618 break;
1619 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001620 case dwarf::DW_AT_location: {
Devang Patel7a328272011-08-15 21:43:21 +00001621 if (DIELabel *L = dyn_cast<DIELabel>(Values[i]))
Daniel Dunbar83320a02011-03-16 22:16:39 +00001622 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
Devang Patel7a328272011-08-15 21:43:21 +00001623 else
Devang Patelc3f5f782010-05-25 23:40:22 +00001624 Values[i]->EmitValue(Asm, Form);
1625 break;
1626 }
Devang Patel2a361602010-09-29 19:08:08 +00001627 case dwarf::DW_AT_accessibility: {
1628 if (Asm->isVerbose()) {
1629 DIEInteger *V = cast<DIEInteger>(Values[i]);
1630 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
1631 }
1632 Values[i]->EmitValue(Asm, Form);
1633 break;
1634 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001635 default:
1636 // Emit an attribute using the defined form.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001637 Values[i]->EmitValue(Asm, Form);
Bill Wendling94d04b82009-05-20 23:21:38 +00001638 break;
1639 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001640 }
1641
1642 // Emit the DIE children if any.
1643 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1644 const std::vector<DIE *> &Children = Die->getChildren();
1645
1646 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001647 emitDIE(Children[j]);
Bill Wendling94d04b82009-05-20 23:21:38 +00001648
Chris Lattner3f53c832010-04-04 18:52:31 +00001649 if (Asm->isVerbose())
Chris Lattner233f52b2010-03-09 23:52:58 +00001650 Asm->OutStreamer.AddComment("End Of Children Mark");
1651 Asm->EmitInt8(0);
Bill Wendling94d04b82009-05-20 23:21:38 +00001652 }
1653}
1654
Devang Patel8a241142009-12-09 18:24:21 +00001655/// emitDebugInfo - Emit the debug info section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001656///
Devang Patel8a241142009-12-09 18:24:21 +00001657void DwarfDebug::emitDebugInfo() {
1658 // Start debug info section.
1659 Asm->OutStreamer.SwitchSection(
1660 Asm->getObjFileLowering().getDwarfInfoSection());
Devang Patel163a9f72010-05-10 22:49:55 +00001661 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1662 E = CUMap.end(); I != E; ++I) {
1663 CompileUnit *TheCU = I->second;
1664 DIE *Die = TheCU->getCUDie();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001665
Devang Patel163a9f72010-05-10 22:49:55 +00001666 // Emit the compile units header.
1667 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
1668 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001669
Devang Patel163a9f72010-05-10 22:49:55 +00001670 // Emit size of content not including length itself
1671 unsigned ContentSize = Die->getSize() +
1672 sizeof(int16_t) + // DWARF version number
1673 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patel65705d52011-04-13 19:41:17 +00001674 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbach1e20b962010-07-21 21:21:52 +00001675
Devang Patel163a9f72010-05-10 22:49:55 +00001676 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
1677 Asm->EmitInt32(ContentSize);
1678 Asm->OutStreamer.AddComment("DWARF version number");
1679 Asm->EmitInt16(dwarf::DWARF_VERSION);
1680 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
1681 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
1682 DwarfAbbrevSectionSym);
1683 Asm->OutStreamer.AddComment("Address Size (in bytes)");
1684 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001685
Devang Patel163a9f72010-05-10 22:49:55 +00001686 emitDIE(Die);
Devang Patel163a9f72010-05-10 22:49:55 +00001687 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID()));
1688 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001689}
1690
Devang Patel2c4ceb12009-11-21 02:48:08 +00001691/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001692///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001693void DwarfDebug::emitAbbreviations() const {
Bill Wendling94d04b82009-05-20 23:21:38 +00001694 // Check to see if it is worth the effort.
1695 if (!Abbreviations.empty()) {
1696 // Start the debug abbrev section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001697 Asm->OutStreamer.SwitchSection(
1698 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001699
Chris Lattnerc0215722010-04-04 19:25:43 +00001700 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001701
1702 // For each abbrevation.
1703 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
1704 // Get abbreviation data
1705 const DIEAbbrev *Abbrev = Abbreviations[i];
1706
1707 // Emit the abbrevations code (base 1 index.)
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001708 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling94d04b82009-05-20 23:21:38 +00001709
1710 // Emit the abbreviations data.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001711 Abbrev->Emit(Asm);
Bill Wendling94d04b82009-05-20 23:21:38 +00001712 }
1713
1714 // Mark end of abbreviations.
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001715 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling94d04b82009-05-20 23:21:38 +00001716
Chris Lattnerc0215722010-04-04 19:25:43 +00001717 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001718 }
1719}
1720
Devang Patel2c4ceb12009-11-21 02:48:08 +00001721/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling94d04b82009-05-20 23:21:38 +00001722/// the line matrix.
1723///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001724void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001725 // Define last address of section.
Chris Lattner233f52b2010-03-09 23:52:58 +00001726 Asm->OutStreamer.AddComment("Extended Op");
1727 Asm->EmitInt8(0);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001728
Chris Lattner233f52b2010-03-09 23:52:58 +00001729 Asm->OutStreamer.AddComment("Op size");
Chris Lattnerd38fee82010-04-05 00:13:49 +00001730 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner233f52b2010-03-09 23:52:58 +00001731 Asm->OutStreamer.AddComment("DW_LNE_set_address");
1732 Asm->EmitInt8(dwarf::DW_LNE_set_address);
1733
1734 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerd85fc6e2010-03-10 01:17:49 +00001735
Chris Lattnerc0215722010-04-04 19:25:43 +00001736 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattnerd38fee82010-04-05 00:13:49 +00001737 Asm->getTargetData().getPointerSize(),
1738 0/*AddrSpace*/);
Bill Wendling94d04b82009-05-20 23:21:38 +00001739
1740 // Mark end of matrix.
Chris Lattner233f52b2010-03-09 23:52:58 +00001741 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
1742 Asm->EmitInt8(0);
Chris Lattner0ad9c912010-01-22 22:09:00 +00001743 Asm->EmitInt8(1);
Chris Lattner894d75a2010-01-22 23:18:42 +00001744 Asm->EmitInt8(1);
Bill Wendling94d04b82009-05-20 23:21:38 +00001745}
1746
Eric Christopher09ac3d82011-11-07 09:24:32 +00001747/// emitAccelNames - Emit visible names into a hashed accelerator table
1748/// section.
1749void DwarfDebug::emitAccelNames() {
1750 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1751 dwarf::DW_FORM_data4));
1752 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1753 E = CUMap.end(); I != E; ++I) {
1754 CompileUnit *TheCU = I->second;
1755 const StringMap<DIE*> &Names = TheCU->getAccelNames();
1756 for (StringMap<DIE*>::const_iterator
1757 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1758 const char *Name = GI->getKeyData();
1759 DIE *Entity = GI->second;
1760 AT.AddName(Name, Entity);
1761 }
1762 }
1763
1764 AT.FinalizeTable(Asm, "Names");
1765 Asm->OutStreamer.SwitchSection(
1766 Asm->getObjFileLowering().getDwarfAccelNamesSection());
1767 MCSymbol *SectionBegin = Asm->GetTempSymbol("names_begin");
1768 Asm->OutStreamer.EmitLabel(SectionBegin);
1769
1770 // Emit the full data.
1771 AT.Emit(Asm, SectionBegin, this);
1772}
1773
1774/// emitAccelObjC - Emit objective C classes and categories into a hashed
1775/// accelerator table section.
1776void DwarfDebug::emitAccelObjC() {
1777 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1778 dwarf::DW_FORM_data4));
1779 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1780 E = CUMap.end(); I != E; ++I) {
1781 CompileUnit *TheCU = I->second;
1782 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelObjC();
1783 for (StringMap<std::vector<DIE*> >::const_iterator
1784 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1785 const char *Name = GI->getKeyData();
1786 std::vector<DIE *> Entities = GI->second;
1787 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1788 DE = Entities.end(); DI != DE; ++DI)
1789 AT.AddName(Name, (*DI));
1790 }
1791 }
1792
1793 AT.FinalizeTable(Asm, "ObjC");
1794 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1795 .getDwarfAccelObjCSection());
1796 MCSymbol *SectionBegin = Asm->GetTempSymbol("objc_begin");
1797 Asm->OutStreamer.EmitLabel(SectionBegin);
1798
1799 // Emit the full data.
1800 AT.Emit(Asm, SectionBegin, this);
1801}
1802
1803/// emitAccelNamespace - Emit namespace dies into a hashed accelerator
1804/// table.
1805void DwarfDebug::emitAccelNamespaces() {
1806 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1807 dwarf::DW_FORM_data4));
1808 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1809 E = CUMap.end(); I != E; ++I) {
1810 CompileUnit *TheCU = I->second;
1811 const StringMap<DIE*> &Names = TheCU->getAccelNamespace();
1812 for (StringMap<DIE*>::const_iterator
1813 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1814 const char *Name = GI->getKeyData();
1815 DIE *Entity = GI->second;
1816 AT.AddName(Name, Entity);
1817 }
1818 }
1819
1820 AT.FinalizeTable(Asm, "namespac");
1821 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1822 .getDwarfAccelNamespaceSection());
1823 MCSymbol *SectionBegin = Asm->GetTempSymbol("namespac_begin");
1824 Asm->OutStreamer.EmitLabel(SectionBegin);
1825
1826 // Emit the full data.
1827 AT.Emit(Asm, SectionBegin, this);
1828}
1829
1830/// emitAccelTypes() - Emit type dies into a hashed accelerator table.
1831void DwarfDebug::emitAccelTypes() {
1832 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1833 dwarf::DW_FORM_data4));
1834 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1835 E = CUMap.end(); I != E; ++I) {
1836 CompileUnit *TheCU = I->second;
Eric Christopher56c2b102011-11-07 22:11:16 +00001837 const StringMap<DIE*> &Names = TheCU->getAccelTypes();
Eric Christopher09ac3d82011-11-07 09:24:32 +00001838 for (StringMap<DIE*>::const_iterator
1839 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1840 const char *Name = GI->getKeyData();
1841 DIE *Entity = GI->second;
1842 AT.AddName(Name, Entity);
1843 }
1844 }
1845
1846 AT.FinalizeTable(Asm, "types");
1847 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1848 .getDwarfAccelTypesSection());
1849 MCSymbol *SectionBegin = Asm->GetTempSymbol("types_begin");
1850 Asm->OutStreamer.EmitLabel(SectionBegin);
1851
1852 // Emit the full data.
1853 AT.Emit(Asm, SectionBegin, this);
1854}
1855
Devang Patel8a241142009-12-09 18:24:21 +00001856/// emitDebugPubNames - Emit visible names into a debug pubnames section.
1857///
1858void DwarfDebug::emitDebugPubNames() {
Devang Patel163a9f72010-05-10 22:49:55 +00001859 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1860 E = CUMap.end(); I != E; ++I) {
1861 CompileUnit *TheCU = I->second;
1862 // Start the dwarf pubnames section.
1863 Asm->OutStreamer.SwitchSection(
1864 Asm->getObjFileLowering().getDwarfPubNamesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001865
Devang Patel163a9f72010-05-10 22:49:55 +00001866 Asm->OutStreamer.AddComment("Length of Public Names Info");
1867 Asm->EmitLabelDifference(
1868 Asm->GetTempSymbol("pubnames_end", TheCU->getID()),
1869 Asm->GetTempSymbol("pubnames_begin", TheCU->getID()), 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001870
Devang Patel163a9f72010-05-10 22:49:55 +00001871 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_begin",
1872 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001873
Devang Patel163a9f72010-05-10 22:49:55 +00001874 Asm->OutStreamer.AddComment("DWARF Version");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001875 Asm->EmitInt16(dwarf::DWARF_VERSION);
1876
Devang Patel163a9f72010-05-10 22:49:55 +00001877 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001878 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
Devang Patel163a9f72010-05-10 22:49:55 +00001879 DwarfInfoSectionSym);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001880
Devang Patel163a9f72010-05-10 22:49:55 +00001881 Asm->OutStreamer.AddComment("Compilation Unit Length");
1882 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1883 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1884 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001885
Devang Patel163a9f72010-05-10 22:49:55 +00001886 const StringMap<DIE*> &Globals = TheCU->getGlobals();
1887 for (StringMap<DIE*>::const_iterator
1888 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1889 const char *Name = GI->getKeyData();
1890 DIE *Entity = GI->second;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001891
Devang Patel163a9f72010-05-10 22:49:55 +00001892 Asm->OutStreamer.AddComment("DIE offset");
1893 Asm->EmitInt32(Entity->getOffset());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001894
Devang Patel163a9f72010-05-10 22:49:55 +00001895 if (Asm->isVerbose())
1896 Asm->OutStreamer.AddComment("External Name");
1897 Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
1898 }
Jim Grosbach1e20b962010-07-21 21:21:52 +00001899
Devang Patel163a9f72010-05-10 22:49:55 +00001900 Asm->OutStreamer.AddComment("End Mark");
1901 Asm->EmitInt32(0);
1902 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_end",
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001903 TheCU->getID()));
Bill Wendling94d04b82009-05-20 23:21:38 +00001904 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001905}
1906
Devang Patel193f7202009-11-24 01:14:22 +00001907void DwarfDebug::emitDebugPubTypes() {
Devang Patel163a9f72010-05-10 22:49:55 +00001908 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1909 E = CUMap.end(); I != E; ++I) {
1910 CompileUnit *TheCU = I->second;
Eric Christopher63701182011-11-07 09:18:35 +00001911 // Start the dwarf pubtypes section.
Devang Patel163a9f72010-05-10 22:49:55 +00001912 Asm->OutStreamer.SwitchSection(
1913 Asm->getObjFileLowering().getDwarfPubTypesSection());
1914 Asm->OutStreamer.AddComment("Length of Public Types Info");
1915 Asm->EmitLabelDifference(
1916 Asm->GetTempSymbol("pubtypes_end", TheCU->getID()),
1917 Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001918
Devang Patel163a9f72010-05-10 22:49:55 +00001919 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
1920 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001921
Devang Patel163a9f72010-05-10 22:49:55 +00001922 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
1923 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001924
Devang Patel163a9f72010-05-10 22:49:55 +00001925 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
1926 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
1927 DwarfInfoSectionSym);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001928
Devang Patel163a9f72010-05-10 22:49:55 +00001929 Asm->OutStreamer.AddComment("Compilation Unit Length");
1930 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1931 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1932 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001933
Devang Patel163a9f72010-05-10 22:49:55 +00001934 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
1935 for (StringMap<DIE*>::const_iterator
1936 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1937 const char *Name = GI->getKeyData();
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001938 DIE *Entity = GI->second;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001939
Devang Patel163a9f72010-05-10 22:49:55 +00001940 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
1941 Asm->EmitInt32(Entity->getOffset());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001942
Devang Patel163a9f72010-05-10 22:49:55 +00001943 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
1944 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
1945 }
Jim Grosbach1e20b962010-07-21 21:21:52 +00001946
Devang Patel163a9f72010-05-10 22:49:55 +00001947 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001948 Asm->EmitInt32(0);
Devang Patel163a9f72010-05-10 22:49:55 +00001949 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
1950 TheCU->getID()));
Devang Patel193f7202009-11-24 01:14:22 +00001951 }
Devang Patel193f7202009-11-24 01:14:22 +00001952}
1953
Devang Patel2c4ceb12009-11-21 02:48:08 +00001954/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001955///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001956void DwarfDebug::emitDebugStr() {
Bill Wendling94d04b82009-05-20 23:21:38 +00001957 // Check to see if it is worth the effort.
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001958 if (StringPool.empty()) return;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001959
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001960 // Start the dwarf str section.
1961 Asm->OutStreamer.SwitchSection(
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001962 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001963
Chris Lattnerbc733f52010-03-13 02:17:42 +00001964 // Get all of the string pool entries and put them in an array by their ID so
1965 // we can sort them.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001966 SmallVector<std::pair<unsigned,
Chris Lattnerbc733f52010-03-13 02:17:42 +00001967 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001968
Chris Lattnerbc733f52010-03-13 02:17:42 +00001969 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
1970 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
1971 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001972
Chris Lattnerbc733f52010-03-13 02:17:42 +00001973 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001974
Chris Lattnerbc733f52010-03-13 02:17:42 +00001975 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001976 // Emit a label for reference from debug information entries.
Chris Lattnerbc733f52010-03-13 02:17:42 +00001977 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001978
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001979 // Emit the string itself.
Chris Lattnerbc733f52010-03-13 02:17:42 +00001980 Asm->OutStreamer.EmitBytes(Entries[i].second->getKey(), 0/*addrspace*/);
Nick Lewycky390c40d2011-10-27 06:44:11 +00001981 Asm->OutStreamer.EmitZeros(1, 0);
Bill Wendling94d04b82009-05-20 23:21:38 +00001982 }
1983}
1984
Devang Patel2c4ceb12009-11-21 02:48:08 +00001985/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001986///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001987void DwarfDebug::emitDebugLoc() {
Devang Patel80250682010-05-26 23:55:23 +00001988 if (DotDebugLocEntries.empty())
1989 return;
1990
Devang Patel6c3ea902011-02-04 22:57:18 +00001991 for (SmallVector<DotDebugLocEntry, 4>::iterator
1992 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
1993 I != E; ++I) {
1994 DotDebugLocEntry &Entry = *I;
1995 if (I + 1 != DotDebugLocEntries.end())
1996 Entry.Merge(I+1);
1997 }
1998
Daniel Dunbar83320a02011-03-16 22:16:39 +00001999 // Start the dwarf loc section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002000 Asm->OutStreamer.SwitchSection(
Devang Patelc3f5f782010-05-25 23:40:22 +00002001 Asm->getObjFileLowering().getDwarfLocSection());
2002 unsigned char Size = Asm->getTargetData().getPointerSize();
Devang Patel80250682010-05-26 23:55:23 +00002003 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
2004 unsigned index = 1;
Jim Grosbach1e20b962010-07-21 21:21:52 +00002005 for (SmallVector<DotDebugLocEntry, 4>::iterator
2006 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel61409622010-07-07 20:12:52 +00002007 I != E; ++I, ++index) {
Devang Patel6c3ea902011-02-04 22:57:18 +00002008 DotDebugLocEntry &Entry = *I;
2009 if (Entry.isMerged()) continue;
Devang Patelc3f5f782010-05-25 23:40:22 +00002010 if (Entry.isEmpty()) {
2011 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
2012 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel80250682010-05-26 23:55:23 +00002013 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patelc3f5f782010-05-25 23:40:22 +00002014 } else {
2015 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0);
2016 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0);
Devang Patelc26f5442011-04-28 02:22:40 +00002017 DIVariable DV(Entry.Variable);
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00002018 Asm->OutStreamer.AddComment("Loc expr size");
2019 MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol();
2020 MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol();
2021 Asm->EmitLabelDifference(end, begin, 2);
2022 Asm->OutStreamer.EmitLabel(begin);
Devang Patel80efd4e2011-07-08 16:49:43 +00002023 if (Entry.isInt()) {
Devang Patelc4329072011-06-01 22:03:25 +00002024 DIBasicType BTy(DV.getType());
2025 if (BTy.Verify() &&
2026 (BTy.getEncoding() == dwarf::DW_ATE_signed
2027 || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) {
2028 Asm->OutStreamer.AddComment("DW_OP_consts");
2029 Asm->EmitInt8(dwarf::DW_OP_consts);
Devang Patel80efd4e2011-07-08 16:49:43 +00002030 Asm->EmitSLEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00002031 } else {
2032 Asm->OutStreamer.AddComment("DW_OP_constu");
2033 Asm->EmitInt8(dwarf::DW_OP_constu);
Devang Patel80efd4e2011-07-08 16:49:43 +00002034 Asm->EmitULEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00002035 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002036 } else if (Entry.isLocation()) {
2037 if (!DV.hasComplexAddress())
2038 // Regular entry.
Devang Patelc26f5442011-04-28 02:22:40 +00002039 Asm->EmitDwarfRegOp(Entry.Loc);
Devang Patel80efd4e2011-07-08 16:49:43 +00002040 else {
2041 // Complex address entry.
2042 unsigned N = DV.getNumAddrElements();
2043 unsigned i = 0;
2044 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
2045 if (Entry.Loc.getOffset()) {
2046 i = 2;
2047 Asm->EmitDwarfRegOp(Entry.Loc);
2048 Asm->OutStreamer.AddComment("DW_OP_deref");
2049 Asm->EmitInt8(dwarf::DW_OP_deref);
2050 Asm->OutStreamer.AddComment("DW_OP_plus_uconst");
2051 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2052 Asm->EmitSLEB128(DV.getAddrElement(1));
2053 } else {
2054 // If first address element is OpPlus then emit
2055 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
2056 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
2057 Asm->EmitDwarfRegOp(Loc);
2058 i = 2;
2059 }
2060 } else {
2061 Asm->EmitDwarfRegOp(Entry.Loc);
2062 }
2063
2064 // Emit remaining complex address elements.
2065 for (; i < N; ++i) {
2066 uint64_t Element = DV.getAddrElement(i);
2067 if (Element == DIBuilder::OpPlus) {
2068 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2069 Asm->EmitULEB128(DV.getAddrElement(++i));
2070 } else if (Element == DIBuilder::OpDeref)
2071 Asm->EmitInt8(dwarf::DW_OP_deref);
2072 else llvm_unreachable("unknown Opcode found in complex address");
2073 }
Devang Patelc26f5442011-04-28 02:22:40 +00002074 }
Devang Patelc26f5442011-04-28 02:22:40 +00002075 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002076 // else ... ignore constant fp. There is not any good way to
2077 // to represent them here in dwarf.
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00002078 Asm->OutStreamer.EmitLabel(end);
Devang Patelc3f5f782010-05-25 23:40:22 +00002079 }
2080 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002081}
2082
2083/// EmitDebugARanges - Emit visible names into a debug aranges section.
2084///
2085void DwarfDebug::EmitDebugARanges() {
2086 // Start the dwarf aranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002087 Asm->OutStreamer.SwitchSection(
2088 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002089}
2090
Devang Patel2c4ceb12009-11-21 02:48:08 +00002091/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002092///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002093void DwarfDebug::emitDebugRanges() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002094 // Start the dwarf ranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002095 Asm->OutStreamer.SwitchSection(
Devang Patelf2548ca2010-04-16 23:33:45 +00002096 Asm->getObjFileLowering().getDwarfRangesSection());
Devang Pateleac9c072010-04-27 19:46:33 +00002097 unsigned char Size = Asm->getTargetData().getPointerSize();
2098 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbach1e20b962010-07-21 21:21:52 +00002099 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Pateleac9c072010-04-27 19:46:33 +00002100 I != E; ++I) {
2101 if (*I)
2102 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002103 else
Devang Pateleac9c072010-04-27 19:46:33 +00002104 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002105 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002106}
2107
Devang Patel2c4ceb12009-11-21 02:48:08 +00002108/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002109///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002110void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarf612ff62009-09-19 20:40:05 +00002111 if (const MCSection *LineInfo =
Chris Lattner18a4c162009-08-02 07:24:22 +00002112 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002113 // Start the dwarf macinfo section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002114 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00002115 }
2116}
2117
Devang Patel2c4ceb12009-11-21 02:48:08 +00002118/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling94d04b82009-05-20 23:21:38 +00002119/// Section Header:
2120/// 1. length of section
2121/// 2. Dwarf version number
2122/// 3. address size.
2123///
2124/// Entries (one "entry" for each function that was inlined):
2125///
2126/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2127/// otherwise offset into __debug_str for regular function name.
2128/// 2. offset into __debug_str section for regular function name.
2129/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2130/// instances for the function.
2131///
2132/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2133/// inlined instance; the die_offset points to the inlined_subroutine die in the
2134/// __debug_info section, and the low_pc is the starting address for the
2135/// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002136void DwarfDebug::emitDebugInlineInfo() {
Chris Lattnerd38fee82010-04-05 00:13:49 +00002137 if (!Asm->MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002138 return;
2139
Devang Patel163a9f72010-05-10 22:49:55 +00002140 if (!FirstCU)
Bill Wendling94d04b82009-05-20 23:21:38 +00002141 return;
2142
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002143 Asm->OutStreamer.SwitchSection(
2144 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattner0ad9c912010-01-22 22:09:00 +00002145
Chris Lattner233f52b2010-03-09 23:52:58 +00002146 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnera6437182010-04-04 19:58:12 +00002147 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
2148 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling94d04b82009-05-20 23:21:38 +00002149
Chris Lattnerc0215722010-04-04 19:25:43 +00002150 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002151
Chris Lattner233f52b2010-03-09 23:52:58 +00002152 Asm->OutStreamer.AddComment("Dwarf Version");
2153 Asm->EmitInt16(dwarf::DWARF_VERSION);
2154 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002155 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling94d04b82009-05-20 23:21:38 +00002156
Devang Patele9f8f5e2010-05-07 20:54:48 +00002157 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patel53bb5c92009-11-10 23:06:00 +00002158 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002159
Devang Patele9f8f5e2010-05-07 20:54:48 +00002160 const MDNode *Node = *I;
2161 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach7ab38df2009-11-22 19:20:36 +00002162 = InlineInfo.find(Node);
Devang Patel53bb5c92009-11-10 23:06:00 +00002163 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patele4b27562009-08-28 23:24:31 +00002164 DISubprogram SP(Node);
Devang Patel65dbc902009-11-25 17:36:49 +00002165 StringRef LName = SP.getLinkageName();
2166 StringRef Name = SP.getName();
Bill Wendling94d04b82009-05-20 23:21:38 +00002167
Chris Lattner233f52b2010-03-09 23:52:58 +00002168 Asm->OutStreamer.AddComment("MIPS linkage name");
Chris Lattner4cf202b2010-01-23 03:11:46 +00002169 if (LName.empty()) {
2170 Asm->OutStreamer.EmitBytes(Name, 0);
2171 Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator.
Jim Grosbach1e20b962010-07-21 21:21:52 +00002172 } else
Chris Lattner6189ed12010-04-04 23:25:33 +00002173 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
2174 DwarfStrSectionSym);
Devang Patel53bb5c92009-11-10 23:06:00 +00002175
Chris Lattner233f52b2010-03-09 23:52:58 +00002176 Asm->OutStreamer.AddComment("Function name");
Chris Lattner6189ed12010-04-04 23:25:33 +00002177 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner7e1a8f82010-04-04 19:09:29 +00002178 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling94d04b82009-05-20 23:21:38 +00002179
Devang Patel53bb5c92009-11-10 23:06:00 +00002180 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling94d04b82009-05-20 23:21:38 +00002181 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner3f53c832010-04-04 18:52:31 +00002182 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner6ed0f902010-03-09 00:31:02 +00002183 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00002184
Chris Lattner3f53c832010-04-04 18:52:31 +00002185 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002186 Asm->OutStreamer.EmitSymbolValue(LI->first,
2187 Asm->getTargetData().getPointerSize(),0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002188 }
2189 }
2190
Chris Lattnerc0215722010-04-04 19:25:43 +00002191 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002192}