blob: 085ad2cb5893de3175aabc6325b4c45f94a657c9 [file] [log] [blame]
Bill Wendling2f921f82009-05-15 09:23:25 +00001//===-- llvm/CodeGen/DwarfDebug.cpp - Dwarf Debug Framework ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf debug info into asm files.
11//
12//===----------------------------------------------------------------------===//
Chris Lattnerb14490d2010-03-09 00:39:24 +000013
Devang Patel80ae3492009-08-28 23:24:31 +000014#define DEBUG_TYPE "dwarfdebug"
Bill Wendling2f921f82009-05-15 09:23:25 +000015#include "DwarfDebug.h"
Chris Lattner3f3fb972010-04-05 05:24:55 +000016#include "DIE.h"
Eric Christopher4996c702011-11-07 09:24:32 +000017#include "DwarfAccelTable.h"
Devang Patel5eb43192011-04-12 17:40:32 +000018#include "DwarfCompileUnit.h"
Bill Wendling30346342010-04-05 22:59:21 +000019#include "llvm/Constants.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000020#include "llvm/Module.h"
Devang Patel2d9e5322011-01-20 00:02:16 +000021#include "llvm/Instructions.h"
David Greene829b3e82009-08-19 21:52:55 +000022#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000024#include "llvm/MC/MCAsmInfo.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000025#include "llvm/MC/MCSection.h"
Chris Lattner4b7dadb2009-08-19 05:49:37 +000026#include "llvm/MC/MCStreamer.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000027#include "llvm/MC/MCSymbol.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000028#include "llvm/Target/TargetData.h"
Anton Korobeynikov2f931282011-01-10 12:39:04 +000029#include "llvm/Target/TargetFrameLowering.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000030#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner21dc46e2010-04-04 18:06:11 +000031#include "llvm/Target/TargetMachine.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000032#include "llvm/Target/TargetRegisterInfo.h"
Devang Patel61880932010-04-19 19:14:02 +000033#include "llvm/Target/TargetOptions.h"
Chris Lattner3f3fb972010-04-05 05:24:55 +000034#include "llvm/Analysis/DebugInfo.h"
Devang Patela5d93242011-02-24 18:49:30 +000035#include "llvm/Analysis/DIBuilder.h"
Devang Patela86114b2010-10-25 20:45:32 +000036#include "llvm/ADT/Statistic.h"
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +000037#include "llvm/ADT/STLExtras.h"
Chris Lattner06fa1762009-08-24 03:52:50 +000038#include "llvm/ADT/StringExtras.h"
Devang Patel6c74a872010-04-27 19:46:33 +000039#include "llvm/Support/CommandLine.h"
Daniel Dunbarcdf01b52009-10-13 06:47:08 +000040#include "llvm/Support/Debug.h"
41#include "llvm/Support/ErrorHandling.h"
Devang Patel1973df22010-01-26 21:39:14 +000042#include "llvm/Support/ValueHandle.h"
Chris Lattnerf5c834f2010-01-22 22:09:00 +000043#include "llvm/Support/FormattedStream.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000044#include "llvm/Support/Timer.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000045#include "llvm/Support/Path.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000046using namespace llvm;
47
Jim Grosbacha8683bb2010-07-21 21:21:52 +000048static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print",
Devang Patel30265c42010-07-07 20:12:52 +000049 cl::Hidden,
Devang Patel6c74a872010-04-27 19:46:33 +000050 cl::desc("Disable debug info printing"));
51
Dan Gohman7421ae42010-05-07 01:08:53 +000052static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +000053 cl::desc("Make an absence of debug location information explicit."),
Dan Gohman7421ae42010-05-07 01:08:53 +000054 cl::init(false));
55
Eric Christopher4996c702011-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 Wendlingfcc14142010-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 Wendling2f921f82009-05-15 09:23:25 +000065//===----------------------------------------------------------------------===//
66
67/// Configuration values for initial hash set sizes (log2).
68///
Bill Wendling2f921f82009-05-15 09:23:25 +000069static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling2f921f82009-05-15 09:23:25 +000070
71namespace llvm {
72
Nick Lewycky019d2552011-07-29 03:49:23 +000073DIType DbgVariable::getType() const {
Devang Patelf20c4f72011-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 Patel6d9f9fe2010-08-09 21:01:39 +0000118 }
119 return Ty;
120 }
Devang Patelf20c4f72011-04-12 22:53:02 +0000121 return Ty;
122}
Bill Wendling2f921f82009-05-15 09:23:25 +0000123
Chris Lattnerf5d06362010-04-05 04:09:20 +0000124} // end llvm namespace
Bill Wendling2f921f82009-05-15 09:23:25 +0000125
Chris Lattnerf0d6bd32010-04-05 05:11:15 +0000126DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
Devang Patel1a0df9a2010-05-10 22:49:55 +0000127 : Asm(A), MMI(Asm->MMI), FirstCU(0),
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000128 AbbreviationsSet(InitAbbreviationsSetSize),
Devang Patel7e623022011-08-10 20:55:27 +0000129 PrevLabel(NULL) {
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000130 NextStringPoolNumber = 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000131
Rafael Espindolaa7160962011-05-06 14:56:22 +0000132 DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0;
Chris Lattnere58b5472010-04-04 23:10:38 +0000133 DwarfStrSectionSym = TextSectionSym = 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000134 DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = 0;
Devang Patel9fc11702010-05-25 23:40:22 +0000135 FunctionBeginSym = FunctionEndSym = 0;
Dan Gohman6e681a52010-06-18 15:56:31 +0000136 {
137 NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
138 beginModule(M);
Torok Edwinf8dba242010-04-07 10:44:46 +0000139 }
Bill Wendling2f921f82009-05-15 09:23:25 +0000140}
141DwarfDebug::~DwarfDebug() {
Bill Wendling2f921f82009-05-15 09:23:25 +0000142}
143
Eric Christophera7b61892011-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 Lewyckyd59c0ca2011-10-27 06:44:11 +0000156MCSymbol *DwarfDebug::getStringPool() {
157 return Asm->GetTempSymbol("section_str");
158}
159
Chris Lattnerb7aa9522010-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 Lattnera179b522010-04-04 19:25:43 +0000165 return Entry.first = Asm->GetTempSymbol("string", Entry.second);
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000166}
167
Devang Patel930143b2009-11-21 02:48:08 +0000168/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling2f921f82009-05-15 09:23:25 +0000169///
Devang Patel930143b2009-11-21 02:48:08 +0000170void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling2f921f82009-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 Grosbacha8683bb2010-07-21 21:21:52 +0000191/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
Devang Patel43ef34d2010-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 Grosbach042483e2009-11-21 23:12:12 +0000201/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel930143b2009-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 Pateld2dfc5e2011-08-15 22:24:32 +0000205DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU,
206 const MDNode *SPNode) {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000207 DIE *SPDie = SPCU->getDIE(SPNode);
Devang Patela37a95e2010-07-07 22:20:57 +0000208
Chris Lattner3a383cb2010-04-05 00:13:49 +0000209 assert(SPDie && "Unable to find subprogram DIE!");
210 DISubprogram SP(SPNode);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000211
Devang Patel1d6bbd42011-04-22 23:10:17 +0000212 DISubprogram SPDecl = SP.getFunctionDeclaration();
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000213 if (!SPDecl.isSubprogram()) {
Devang Patel1d6bbd42011-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 Lewycky654f5ce2011-10-26 22:55:33 +0000222 SPCU->addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Devang Patel1d6bbd42011-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 Lattner3a383cb2010-04-05 00:13:49 +0000243 }
Devang Patela37a95e2010-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 Patelf20c4f72011-04-12 22:53:02 +0000247 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin,
248 dwarf::DW_FORM_ref4, AbsSPDIE);
Devang Patela37a95e2010-07-07 22:20:57 +0000249 SPCU->addDie(SPDie);
250 }
251
Devang Patelf20c4f72011-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 Lattner3a383cb2010-04-05 00:13:49 +0000256 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
257 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
Devang Patelf20c4f72011-04-12 22:53:02 +0000258 SPCU->addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Devang Patel6efc8e52010-02-06 01:02:37 +0000259
Chris Lattner3a383cb2010-04-05 00:13:49 +0000260 return SPDie;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000261}
262
Jim Grosbach042483e2009-11-21 23:12:12 +0000263/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel930143b2009-11-21 02:48:08 +0000264/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000265DIE *DwarfDebug::constructLexicalScopeDIE(CompileUnit *TheCU,
266 LexicalScope *Scope) {
Devang Patel6c74a872010-04-27 19:46:33 +0000267 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
268 if (Scope->isAbstractScope())
269 return ScopeDIE;
270
Devang Patel7e623022011-08-10 20:55:27 +0000271 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Devang Patel6c74a872010-04-27 19:46:33 +0000272 if (Ranges.empty())
273 return 0;
274
Devang Patel7e623022011-08-10 20:55:27 +0000275 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patel6c74a872010-04-27 19:46:33 +0000276 if (Ranges.size() > 1) {
277 // .debug_range section has not been laid out yet. Emit offset in
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000278 // .debug_range as a uint, size 4, for now. emitDIE will handle
Devang Patel6c74a872010-04-27 19:46:33 +0000279 // DW_AT_ranges appropriately.
Devang Patelf20c4f72011-04-12 22:53:02 +0000280 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel784077e2011-08-10 23:58:09 +0000281 DebugRangeSymbols.size()
282 * Asm->getTargetData().getPointerSize());
Devang Patel7e623022011-08-10 20:55:27 +0000283 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel6c74a872010-04-27 19:46:33 +0000284 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patel9fc11702010-05-25 23:40:22 +0000285 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
286 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
Devang Patel6c74a872010-04-27 19:46:33 +0000287 }
288 DebugRangeSymbols.push_back(NULL);
289 DebugRangeSymbols.push_back(NULL);
290 return ScopeDIE;
291 }
292
Devang Patel9fc11702010-05-25 23:40:22 +0000293 const MCSymbol *Start = getLabelBeforeInsn(RI->first);
294 const MCSymbol *End = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000295
Devang Patel9fc11702010-05-25 23:40:22 +0000296 if (End == 0) return 0;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000297
Chris Lattnere13c3722010-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 Grosbacha8683bb2010-07-21 21:21:52 +0000300
Devang Patelf20c4f72011-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 Patelf6eeaeb2009-11-10 23:06:00 +0000303
304 return ScopeDIE;
305}
306
Devang Patel930143b2009-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 Pateld2dfc5e2011-08-15 22:24:32 +0000310DIE *DwarfDebug::constructInlinedScopeDIE(CompileUnit *TheCU,
311 LexicalScope *Scope) {
Devang Patel7e623022011-08-10 20:55:27 +0000312 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000313 assert(Ranges.empty() == false &&
314 "LexicalScope does not have instruction markers!");
Devang Patel6c74a872010-04-27 19:46:33 +0000315
Devang Patelf098ce22011-07-27 00:34:13 +0000316 if (!Scope->getScopeNode())
317 return NULL;
318 DIScope DS(Scope->getScopeNode());
319 DISubprogram InlinedSP = getDISubprogram(DS);
Devang Patelf098ce22011-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 Patel7e623022011-08-10 20:55:27 +0000326 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patel9fc11702010-05-25 23:40:22 +0000327 const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first);
328 const MCSymbol *EndLabel = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000329
Devang Patel4c6bd662010-07-08 22:39:20 +0000330 if (StartLabel == 0 || EndLabel == 0) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000331 assert(0 && "Unexpected Start and End labels for a inlined scope!");
Devang Patel6c74a872010-04-27 19:46:33 +0000332 return 0;
333 }
Chris Lattnere13c3722010-03-09 01:58:53 +0000334 assert(StartLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000335 "Invalid starting label for an inlined scope!");
Chris Lattnere13c3722010-03-09 01:58:53 +0000336 assert(EndLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000337 "Invalid end label for an inlined scope!");
Devang Patel6c74a872010-04-27 19:46:33 +0000338
Devang Patel73bc1722011-05-05 17:54:26 +0000339 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
Devang Patelf20c4f72011-04-12 22:53:02 +0000340 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
341 dwarf::DW_FORM_ref4, OriginDIE);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000342
Devang Patelf098ce22011-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 Patel784077e2011-08-10 23:58:09 +0000348 DebugRangeSymbols.size()
349 * Asm->getTargetData().getPointerSize());
Devang Patel7e623022011-08-10 20:55:27 +0000350 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patelf098ce22011-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 Patel784077e2011-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 Patelf098ce22011-07-27 00:34:13 +0000362 }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000363
364 InlinedSubprogramDIEs.insert(OriginDIE);
365
366 // Track the start label for this inlined function.
Devang Patelf098ce22011-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 Patel32cc43c2010-05-07 20:54:48 +0000371 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000372 I = InlineInfo.find(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000373
374 if (I == InlineInfo.end()) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000375 InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000376 InlinedSPNodes.push_back(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000377 } else
Chris Lattner085b6522010-03-09 00:31:02 +0000378 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000379
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000380 DILocation DL(Scope->getInlinedAt());
Devang Patelf20c4f72011-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 Patelf6eeaeb2009-11-10 23:06:00 +0000383
384 return ScopeDIE;
385}
386
Devang Patel930143b2009-11-21 02:48:08 +0000387/// constructScopeDIE - Construct a DIE for this scope.
Devang Patel3acc70e2011-08-15 22:04:40 +0000388DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) {
Devang Patel3b548aa2010-03-08 20:52:55 +0000389 if (!Scope || !Scope->getScopeNode())
390 return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000391
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000392 SmallVector<DIE *, 8> Children;
Devang Patel6c622ef2011-03-01 22:58:55 +0000393
394 // Collect arguments for current function.
Devang Patel7e623022011-08-10 20:55:27 +0000395 if (LScopes.isCurrentFunctionScope(Scope))
Devang Patel6c622ef2011-03-01 22:58:55 +0000396 for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i)
397 if (DbgVariable *ArgDV = CurrentFnArguments[i])
Devang Patel3acc70e2011-08-15 22:04:40 +0000398 if (DIE *Arg =
399 TheCU->constructVariableDIE(ArgDV, Scope->isAbstractScope()))
Devang Patel6c622ef2011-03-01 22:58:55 +0000400 Children.push_back(Arg);
401
Eric Christopherf84354b2011-10-03 15:49:16 +0000402 // Collect lexical scope children first.
Devang Patel7e623022011-08-10 20:55:27 +0000403 const SmallVector<DbgVariable *, 8> &Variables = ScopeVariables.lookup(Scope);
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000404 for (unsigned i = 0, N = Variables.size(); i < N; ++i)
Devang Patel3acc70e2011-08-15 22:04:40 +0000405 if (DIE *Variable =
406 TheCU->constructVariableDIE(Variables[i], Scope->isAbstractScope()))
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000407 Children.push_back(Variable);
Devang Patel7e623022011-08-10 20:55:27 +0000408 const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren();
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000409 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
Devang Patel3acc70e2011-08-15 22:04:40 +0000410 if (DIE *Nested = constructScopeDIE(TheCU, Scopes[j]))
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000411 Children.push_back(Nested);
Devang Patel3b548aa2010-03-08 20:52:55 +0000412 DIScope DS(Scope->getScopeNode());
413 DIE *ScopeDIE = NULL;
414 if (Scope->getInlinedAt())
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000415 ScopeDIE = constructInlinedScopeDIE(TheCU, Scope);
Devang Patel3b548aa2010-03-08 20:52:55 +0000416 else if (DS.isSubprogram()) {
Devang Pateld10b2af2010-06-28 20:53:04 +0000417 ProcessedSPNodes.insert(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000418 if (Scope->isAbstractScope()) {
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000419 ScopeDIE = TheCU->getDIE(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000420 // Note down abstract DIE.
421 if (ScopeDIE)
422 AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
423 }
Devang Patel3b548aa2010-03-08 20:52:55 +0000424 else
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000425 ScopeDIE = updateSubprogramScopeDIE(TheCU, DS);
Devang Patel3b548aa2010-03-08 20:52:55 +0000426 }
Devang Patel5f1b4cd2011-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 Pateld2dfc5e2011-08-15 22:24:32 +0000431 ScopeDIE = constructLexicalScopeDIE(TheCU, Scope);
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000432 }
433
Devang Patel23b2ae62010-03-29 22:59:58 +0000434 if (!ScopeDIE) return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000435
Devang Patel5f1b4cd2011-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 Patel04d2f2d2009-11-24 01:14:22 +0000440
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000441 if (DS.isSubprogram())
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000442 TheCU->addPubTypes(DISubprogram(DS));
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000443
Eric Christopher08a558e2011-11-08 21:56:23 +0000444 if (DS.isSubprogram() && !Scope->isAbstractScope()) {
445 DISubprogram SP = DISubprogram(DS);
446 TheCU->addAccelName(SP.getName(), ScopeDIE);
447
448 // If the linkage name is different than the name, go ahead and output
449 // that as well into the name table.
450 if (SP.getLinkageName() != "" && SP.getName() != SP.getLinkageName())
451 TheCU->addAccelName(SP.getLinkageName(), ScopeDIE);
452 }
Eric Christopher4996c702011-11-07 09:24:32 +0000453
Devang Patel04d2f2d2009-11-24 01:14:22 +0000454 return ScopeDIE;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000455}
456
Bill Wendling2b128d72009-05-20 23:19:06 +0000457/// GetOrCreateSourceID - Look up the source id with the given directory and
458/// source file names. If none currently exists, create a new id and insert it
459/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
460/// maps as well.
Devang Patele01b75c2011-03-24 20:30:50 +0000461unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
462 StringRef DirName) {
Devang Patel871d0b12010-09-16 20:57:49 +0000463 // If FE did not provide a file name, then assume stdin.
464 if (FileName.empty())
Devang Patele01b75c2011-03-24 20:30:50 +0000465 return GetOrCreateSourceID("<stdin>", StringRef());
466
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000467 // TODO: this might not belong here. See if we can factor this better.
468 if (DirName == CompilationDir)
469 DirName = "";
470
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000471 unsigned SrcId = SourceIdMap.size()+1;
472 std::pair<std::string, std::string> SourceName =
473 std::make_pair(FileName, DirName);
474 std::pair<std::pair<std::string, std::string>, unsigned> Entry =
475 make_pair(SourceName, SrcId);
Devang Patel871d0b12010-09-16 20:57:49 +0000476
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000477 std::map<std::pair<std::string, std::string>, unsigned>::iterator I;
478 bool NewlyInserted;
479 tie(I, NewlyInserted) = SourceIdMap.insert(Entry);
480 if (!NewlyInserted)
481 return I->second;
Bill Wendling2b128d72009-05-20 23:19:06 +0000482
Rafael Espindola67c6ab82010-11-18 02:04:25 +0000483 // Print out a .file directive to specify files for .loc directives.
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000484 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, Entry.first.second,
485 Entry.first.first);
Bill Wendling2b128d72009-05-20 23:19:06 +0000486
487 return SrcId;
488}
489
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000490/// constructCompileUnit - Create new CompileUnit for the given
Devang Patel1a0df9a2010-05-10 22:49:55 +0000491/// metadata node with tag DW_TAG_compile_unit.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000492CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) {
Devang Patel80ae3492009-08-28 23:24:31 +0000493 DICompileUnit DIUnit(N);
Devang Patel2d9caf92009-11-25 17:36:49 +0000494 StringRef FN = DIUnit.getFilename();
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000495 CompilationDir = DIUnit.getDirectory();
496 unsigned ID = GetOrCreateSourceID(FN, CompilationDir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000497
498 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Devang Patelf20c4f72011-04-12 22:53:02 +0000499 CompileUnit *NewCU = new CompileUnit(ID, Die, Asm, this);
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000500 NewCU->addString(Die, dwarf::DW_AT_producer, DIUnit.getProducer());
Devang Patelf20c4f72011-04-12 22:53:02 +0000501 NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2,
502 DIUnit.getLanguage());
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000503 NewCU->addString(Die, dwarf::DW_AT_name, FN);
Devang Patelbd798ce2010-04-26 22:54:28 +0000504 // Use DW_AT_entry_pc instead of DW_AT_low_pc/DW_AT_high_pc pair. This
505 // simplifies debug range entries.
Devang Patelf20c4f72011-04-12 22:53:02 +0000506 NewCU->addUInt(Die, dwarf::DW_AT_entry_pc, dwarf::DW_FORM_addr, 0);
Devang Pateld22ed622010-03-22 23:11:36 +0000507 // DW_AT_stmt_list is a offset of line number information for this
Devang Patel4a213872010-08-24 00:06:12 +0000508 // compile unit in debug_line section.
Nick Lewycky479a8fe2011-10-17 23:27:36 +0000509 if (Asm->MAI->doesDwarfRequireRelocationForSectionOffset())
Rafael Espindolaa7558912011-05-04 17:44:06 +0000510 NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Devang Patelf20c4f72011-04-12 22:53:02 +0000511 Asm->GetTempSymbol("section_line"));
Devang Patelea636392010-08-31 23:50:19 +0000512 else
Devang Patelf20c4f72011-04-12 22:53:02 +0000513 NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0);
Bill Wendling2b128d72009-05-20 23:19:06 +0000514
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000515 if (!CompilationDir.empty())
516 NewCU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000517 if (DIUnit.isOptimized())
Devang Patelf20c4f72011-04-12 22:53:02 +0000518 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Bill Wendling2b128d72009-05-20 23:19:06 +0000519
Devang Patel2d9caf92009-11-25 17:36:49 +0000520 StringRef Flags = DIUnit.getFlags();
521 if (!Flags.empty())
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000522 NewCU->addString(Die, dwarf::DW_AT_APPLE_flags, Flags);
Devang Patelf20c4f72011-04-12 22:53:02 +0000523
Nick Lewycky479a8fe2011-10-17 23:27:36 +0000524 if (unsigned RVer = DIUnit.getRunTimeVersion())
Devang Patelf20c4f72011-04-12 22:53:02 +0000525 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendling2b128d72009-05-20 23:19:06 +0000526 dwarf::DW_FORM_data1, RVer);
527
Devang Patel1a0df9a2010-05-10 22:49:55 +0000528 if (!FirstCU)
529 FirstCU = NewCU;
530 CUMap.insert(std::make_pair(N, NewCU));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000531 return NewCU;
Devang Patel1a0df9a2010-05-10 22:49:55 +0000532}
533
Eric Christopher4996c702011-11-07 09:24:32 +0000534static bool isObjCClass(StringRef Name) {
Eric Christopher988ac002011-11-07 18:53:23 +0000535 return Name.startswith("+") || Name.startswith("-");
Eric Christopher4996c702011-11-07 09:24:32 +0000536}
537
538static bool hasObjCCategory(StringRef Name) {
Eric Christopher988ac002011-11-07 18:53:23 +0000539 if (!isObjCClass(Name)) return false;
Eric Christopher4996c702011-11-07 09:24:32 +0000540
541 size_t pos = Name.find(')');
542 if (pos != std::string::npos) {
543 if (Name[pos+1] != ' ') return false;
544 return true;
545 }
Eric Christopher4996c702011-11-07 09:24:32 +0000546 return false;
547}
548
549static void getObjCClassCategory(StringRef In, StringRef &Class,
550 StringRef &Category) {
551 if (!hasObjCCategory(In)) {
552 Class = In.slice(In.find('[') + 1, In.find(' '));
553 Category = "";
554 return;
555 }
556
557 Class = In.slice(In.find('[') + 1, In.find('('));
558 Category = In.slice(In.find('[') + 1, In.find(' '));
559 return;
560}
561
Eric Christopher970771c2011-11-08 19:16:01 +0000562static StringRef getObjCMethodName(StringRef In) {
563 return In.slice(In.find(' ') + 1, In.find(']'));
564}
565
Devang Patel1a0df9a2010-05-10 22:49:55 +0000566/// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel1f4f98d2011-08-15 23:36:40 +0000567void DwarfDebug::constructSubprogramDIE(CompileUnit *TheCU,
568 const MDNode *N) {
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000569 CompileUnit *&CURef = SPMap[N];
570 if (CURef)
571 return;
572 CURef = TheCU;
573
Devang Patel80ae3492009-08-28 23:24:31 +0000574 DISubprogram SP(N);
Bill Wendling2b128d72009-05-20 23:19:06 +0000575 if (!SP.isDefinition())
576 // This is a method declaration which will be handled while constructing
577 // class type.
Devang Patel0751a282009-06-26 01:49:18 +0000578 return;
Bill Wendling2b128d72009-05-20 23:19:06 +0000579
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000580 DISubprogram SPDecl = SP.getFunctionDeclaration();
581 DIE *DeclDie = NULL;
582 if (SPDecl.isSubprogram()) {
583 DeclDie = TheCU->getOrCreateSubprogramDIE(SPDecl);
584 }
585
Devang Patel89543712011-08-15 17:24:54 +0000586 DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP);
Stuart Hastings4bd3dd92010-04-06 21:38:29 +0000587
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000588 if (DeclDie) {
589 // Refer function declaration directly.
590 TheCU->addDIEEntry(SubprogramDie, dwarf::DW_AT_specification,
591 dwarf::DW_FORM_ref4, DeclDie);
592 }
593
Stuart Hastings4bd3dd92010-04-06 21:38:29 +0000594 // Add to map.
Devang Patel1a0df9a2010-05-10 22:49:55 +0000595 TheCU->insertDIE(N, SubprogramDie);
Bill Wendling2b128d72009-05-20 23:19:06 +0000596
597 // Add to context owner.
Devang Patelf20c4f72011-04-12 22:53:02 +0000598 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel512001a2009-12-08 23:21:45 +0000599
Bill Wendling2b128d72009-05-20 23:19:06 +0000600 // Expose as global.
Devang Patel1a0df9a2010-05-10 22:49:55 +0000601 TheCU->addGlobal(SP.getName(), SubprogramDie);
Devang Patel04d2f2d2009-11-24 01:14:22 +0000602
Eric Christopher4996c702011-11-07 09:24:32 +0000603 // Add to Accel Names
604 TheCU->addAccelName(SP.getName(), SubprogramDie);
605
Eric Christopher08a558e2011-11-08 21:56:23 +0000606 // If the linkage name is different than the name, go ahead and output
607 // that as well into the name table.
608 if (SP.getLinkageName() != "" && SP.getName() != SP.getLinkageName())
609 TheCU->addAccelName(SP.getLinkageName(), SubprogramDie);
610
Eric Christopher4996c702011-11-07 09:24:32 +0000611 // If this is an Objective-C selector name add it to the ObjC accelerator too.
612 if (isObjCClass(SP.getName())) {
613 StringRef Class, Category;
614 getObjCClassCategory(SP.getName(), Class, Category);
615 TheCU->addAccelObjC(Class, SubprogramDie);
616 if (Category != "")
617 TheCU->addAccelObjC(Category, SubprogramDie);
Eric Christopher970771c2011-11-08 19:16:01 +0000618 // Also add the base method name to the name table.
619 TheCU->addAccelName(getObjCMethodName(SP.getName()), SubprogramDie);
Eric Christopher4996c702011-11-07 09:24:32 +0000620 }
621
Devang Patel0751a282009-06-26 01:49:18 +0000622 return;
Bill Wendling2b128d72009-05-20 23:19:06 +0000623}
624
Devang Patel07bb9ee2011-08-15 23:47:24 +0000625/// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
626/// as llvm.dbg.enum and llvm.dbg.ty
627void DwarfDebug::collectInfoFromNamedMDNodes(Module *M) {
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000628 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.sp"))
629 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
630 const MDNode *N = NMD->getOperand(i);
631 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
632 constructSubprogramDIE(CU, N);
633 }
634
635 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv"))
636 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
637 const MDNode *N = NMD->getOperand(i);
638 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000639 CU->createGlobalVariableDIE(N);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000640 }
641
Devang Patel07bb9ee2011-08-15 23:47:24 +0000642 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
643 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
644 DIType Ty(NMD->getOperand(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000645 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
646 CU->getOrCreateTypeDIE(Ty);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000647 }
648
649 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
650 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
651 DIType Ty(NMD->getOperand(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000652 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
653 CU->getOrCreateTypeDIE(Ty);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000654 }
655}
656
657/// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
658/// FIXME - Remove this when dragon-egg and llvm-gcc switch to DIBuilder.
659bool DwarfDebug::collectLegacyDebugInfo(Module *M) {
660 DebugInfoFinder DbgFinder;
661 DbgFinder.processModule(*M);
662
663 bool HasDebugInfo = false;
664 // Scan all the compile-units to see if there are any marked as the main
665 // unit. If not, we do not generate debug info.
666 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
667 E = DbgFinder.compile_unit_end(); I != E; ++I) {
668 if (DICompileUnit(*I).isMain()) {
669 HasDebugInfo = true;
670 break;
671 }
672 }
673 if (!HasDebugInfo) return false;
674
675 // Create all the compile unit DIEs.
676 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
677 E = DbgFinder.compile_unit_end(); I != E; ++I)
678 constructCompileUnit(*I);
679
680 // Create DIEs for each global variable.
681 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
682 E = DbgFinder.global_variable_end(); I != E; ++I) {
683 const MDNode *N = *I;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000684 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000685 CU->createGlobalVariableDIE(N);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000686 }
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000687
Devang Patel07bb9ee2011-08-15 23:47:24 +0000688 // Create DIEs for each subprogram.
689 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
690 E = DbgFinder.subprogram_end(); I != E; ++I) {
691 const MDNode *N = *I;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000692 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
693 constructSubprogramDIE(CU, N);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000694 }
695
696 return HasDebugInfo;
697}
698
Devang Patel930143b2009-11-21 02:48:08 +0000699/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000700/// content. Create global DIEs and emit initial debug info sections.
Nick Lewycky019d2552011-07-29 03:49:23 +0000701/// This is invoked by the target AsmPrinter.
Chris Lattner11980022010-04-04 07:48:20 +0000702void DwarfDebug::beginModule(Module *M) {
Devang Patel6c74a872010-04-27 19:46:33 +0000703 if (DisableDebugInfoPrinting)
704 return;
705
Nick Lewycky019d2552011-07-29 03:49:23 +0000706 // If module has named metadata anchors then use them, otherwise scan the
707 // module using debug info finder to collect debug info.
Devang Patele02e5852011-05-03 16:45:22 +0000708 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
709 if (CU_Nodes) {
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000710 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
711 DICompileUnit CUNode(CU_Nodes->getOperand(i));
712 CompileUnit *CU = constructCompileUnit(CUNode);
713 DIArray GVs = CUNode.getGlobalVariables();
714 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000715 CU->createGlobalVariableDIE(GVs.getElement(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000716 DIArray SPs = CUNode.getSubprograms();
717 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
718 constructSubprogramDIE(CU, SPs.getElement(i));
719 DIArray EnumTypes = CUNode.getEnumTypes();
720 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
721 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
722 DIArray RetainedTypes = CUNode.getRetainedTypes();
723 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
724 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
725 }
Devang Patel07bb9ee2011-08-15 23:47:24 +0000726 } else if (!collectLegacyDebugInfo(M))
727 return;
Devang Patele02e5852011-05-03 16:45:22 +0000728
Devang Patel07bb9ee2011-08-15 23:47:24 +0000729 collectInfoFromNamedMDNodes(M);
Devang Patele02e5852011-05-03 16:45:22 +0000730
Chris Lattner7cfa70e2010-04-05 02:19:28 +0000731 // Tell MMI that we have debug info.
732 MMI->setDebugInfoAvailability(true);
Devang Patele02e5852011-05-03 16:45:22 +0000733
Chris Lattnerd442aa32010-04-04 23:17:54 +0000734 // Emit initial sections.
Chris Lattner7cfa70e2010-04-05 02:19:28 +0000735 EmitSectionLabels();
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000736
Bill Wendling2b128d72009-05-20 23:19:06 +0000737 // Prime section data.
Chris Lattner5e693ed2009-07-28 03:13:23 +0000738 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendling2b128d72009-05-20 23:19:06 +0000739}
740
Devang Patel930143b2009-11-21 02:48:08 +0000741/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling2b128d72009-05-20 23:19:06 +0000742///
Devang Patel930143b2009-11-21 02:48:08 +0000743void DwarfDebug::endModule() {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000744 if (!FirstCU) return;
Devang Patelf3b2db62010-06-28 18:25:03 +0000745 const Module *M = MMI->getModule();
Devang Patel7e623022011-08-10 20:55:27 +0000746 DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap;
Devang Patelf3b2db62010-06-28 18:25:03 +0000747
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000748 // Collect info for variables that were optimized out.
749 if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) {
750 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
751 DICompileUnit TheCU(CU_Nodes->getOperand(i));
752 DIArray Subprograms = TheCU.getSubprograms();
753 for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) {
754 DISubprogram SP(Subprograms.getElement(i));
755 if (ProcessedSPNodes.count(SP) != 0) continue;
756 if (!SP.Verify()) continue;
757 if (!SP.isDefinition()) continue;
Devang Patel59e27c52011-08-19 23:28:12 +0000758 DIArray Variables = SP.getVariables();
759 if (Variables.getNumElements() == 0) continue;
760
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000761 LexicalScope *Scope =
762 new LexicalScope(NULL, DIDescriptor(SP), NULL, false);
763 DeadFnScopeMap[SP] = Scope;
764
765 // Construct subprogram DIE and add variables DIEs.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000766 CompileUnit *SPCU = CUMap.lookup(TheCU);
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000767 assert(SPCU && "Unable to find Compile Unit!");
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000768 constructSubprogramDIE(SPCU, SP);
769 DIE *ScopeDIE = SPCU->getDIE(SP);
Devang Patel59e27c52011-08-19 23:28:12 +0000770 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
771 DIVariable DV(Variables.getElement(vi));
772 if (!DV.Verify()) continue;
773 DbgVariable *NewVar = new DbgVariable(DV, NULL);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000774 if (DIE *VariableDIE =
Devang Patel59e27c52011-08-19 23:28:12 +0000775 SPCU->constructVariableDIE(NewVar, Scope->isAbstractScope()))
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000776 ScopeDIE->addChild(VariableDIE);
777 }
Devang Patelf3b2db62010-06-28 18:25:03 +0000778 }
779 }
780 }
Bill Wendling2b128d72009-05-20 23:19:06 +0000781
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000782 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
783 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
784 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
785 DIE *ISP = *AI;
Devang Patelf20c4f72011-04-12 22:53:02 +0000786 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000787 }
788
Devang Patel89543712011-08-15 17:24:54 +0000789 // Emit DW_AT_containing_type attribute to connect types with their
790 // vtable holding type.
791 for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(),
792 CUE = CUMap.end(); CUI != CUE; ++CUI) {
793 CompileUnit *TheCU = CUI->second;
794 TheCU->constructContainingTypeDIEs();
Devang Pateleb57c592009-12-03 19:11:07 +0000795 }
796
Bill Wendling2b128d72009-05-20 23:19:06 +0000797 // Standard sections final addresses.
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000798 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnera179b522010-04-04 19:25:43 +0000799 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000800 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnera179b522010-04-04 19:25:43 +0000801 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendling2b128d72009-05-20 23:19:06 +0000802
803 // End text sections.
804 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000805 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnera179b522010-04-04 19:25:43 +0000806 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendling2b128d72009-05-20 23:19:06 +0000807 }
808
Bill Wendling2b128d72009-05-20 23:19:06 +0000809 // Compute DIE offsets and sizes.
Devang Patel930143b2009-11-21 02:48:08 +0000810 computeSizeAndOffsets();
Bill Wendling2b128d72009-05-20 23:19:06 +0000811
812 // Emit all the DIEs into a debug info section
Devang Patel930143b2009-11-21 02:48:08 +0000813 emitDebugInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000814
815 // Corresponding abbreviations into a abbrev section.
Devang Patel930143b2009-11-21 02:48:08 +0000816 emitAbbreviations();
Bill Wendling2b128d72009-05-20 23:19:06 +0000817
Eric Christopher4996c702011-11-07 09:24:32 +0000818 // Emit info into a dwarf accelerator table sections.
819 if (DwarfAccelTables) {
820 emitAccelNames();
821 emitAccelObjC();
822 emitAccelNamespaces();
823 emitAccelTypes();
824 }
825
Bill Wendling2b128d72009-05-20 23:19:06 +0000826 // Emit info into a debug pubnames section.
Devang Patel930143b2009-11-21 02:48:08 +0000827 emitDebugPubNames();
Bill Wendling2b128d72009-05-20 23:19:06 +0000828
Devang Patel04d2f2d2009-11-24 01:14:22 +0000829 // Emit info into a debug pubtypes section.
830 emitDebugPubTypes();
831
Bill Wendling2b128d72009-05-20 23:19:06 +0000832 // Emit info into a debug loc section.
Devang Patel930143b2009-11-21 02:48:08 +0000833 emitDebugLoc();
Bill Wendling2b128d72009-05-20 23:19:06 +0000834
835 // Emit info into a debug aranges section.
836 EmitDebugARanges();
837
838 // Emit info into a debug ranges section.
Devang Patel930143b2009-11-21 02:48:08 +0000839 emitDebugRanges();
Bill Wendling2b128d72009-05-20 23:19:06 +0000840
841 // Emit info into a debug macinfo section.
Devang Patel930143b2009-11-21 02:48:08 +0000842 emitDebugMacInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000843
844 // Emit inline info.
Devang Patel930143b2009-11-21 02:48:08 +0000845 emitDebugInlineInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000846
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000847 // Emit info into a debug str section.
848 emitDebugStr();
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000849
Devang Pateld0701282010-08-02 17:32:15 +0000850 // clean up.
851 DeleteContainerSeconds(DeadFnScopeMap);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000852 SPMap.clear();
Devang Patel1a0df9a2010-05-10 22:49:55 +0000853 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
854 E = CUMap.end(); I != E; ++I)
855 delete I->second;
856 FirstCU = NULL; // Reset for the next Module, if any.
Bill Wendling2b128d72009-05-20 23:19:06 +0000857}
858
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000859/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Devang Patelbb23a4a2011-08-10 21:50:54 +0000860DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV,
Chris Lattner915c5f92010-04-02 19:42:39 +0000861 DebugLoc ScopeLoc) {
Devang Patelbb23a4a2011-08-10 21:50:54 +0000862 LLVMContext &Ctx = DV->getContext();
863 // More then one inlined variable corresponds to one abstract variable.
864 DIVariable Var = cleanseInlinedVariable(DV, Ctx);
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000865 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000866 if (AbsDbgVariable)
867 return AbsDbgVariable;
868
Devang Patel7e623022011-08-10 20:55:27 +0000869 LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx));
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000870 if (!Scope)
871 return NULL;
872
Devang Patel99819b52011-08-15 19:01:20 +0000873 AbsDbgVariable = new DbgVariable(Var, NULL);
Devang Patel7e623022011-08-10 20:55:27 +0000874 addScopeVariable(Scope, AbsDbgVariable);
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000875 AbstractVariables[Var] = AbsDbgVariable;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000876 return AbsDbgVariable;
877}
878
Nick Lewycky019d2552011-07-29 03:49:23 +0000879/// addCurrentFnArgument - If Var is a current function argument then add
880/// it to CurrentFnArguments list.
Devang Patel6c622ef2011-03-01 22:58:55 +0000881bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
Devang Patel7e623022011-08-10 20:55:27 +0000882 DbgVariable *Var, LexicalScope *Scope) {
883 if (!LScopes.isCurrentFunctionScope(Scope))
Devang Patel6c622ef2011-03-01 22:58:55 +0000884 return false;
885 DIVariable DV = Var->getVariable();
886 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
887 return false;
888 unsigned ArgNo = DV.getArgNumber();
889 if (ArgNo == 0)
890 return false;
891
Devang Patel4ab660b2011-03-03 20:02:02 +0000892 size_t Size = CurrentFnArguments.size();
893 if (Size == 0)
Devang Patel6c622ef2011-03-01 22:58:55 +0000894 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patel63b3e762011-03-03 21:49:41 +0000895 // llvm::Function argument size is not good indicator of how many
Devang Patel34a7ab42011-03-03 20:08:10 +0000896 // arguments does the function have at source level.
897 if (ArgNo > Size)
Devang Patel4ab660b2011-03-03 20:02:02 +0000898 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel6c622ef2011-03-01 22:58:55 +0000899 CurrentFnArguments[ArgNo - 1] = Var;
900 return true;
901}
902
Devang Patel490c8ab2010-05-20 19:57:06 +0000903/// collectVariableInfoFromMMITable - Collect variable information from
904/// side table maintained by MMI.
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000905void
Nick Lewycky019d2552011-07-29 03:49:23 +0000906DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF,
Devang Patel490c8ab2010-05-20 19:57:06 +0000907 SmallPtrSet<const MDNode *, 16> &Processed) {
Devang Patel475d32a2009-10-06 01:26:37 +0000908 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
909 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
910 VE = VMap.end(); VI != VE; ++VI) {
Devang Patel32cc43c2010-05-07 20:54:48 +0000911 const MDNode *Var = VI->first;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000912 if (!Var) continue;
Devang Patele0a94bf2010-05-14 21:01:35 +0000913 Processed.insert(Var);
Chris Lattner915c5f92010-04-02 19:42:39 +0000914 DIVariable DV(Var);
915 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000916
Devang Patel7e623022011-08-10 20:55:27 +0000917 LexicalScope *Scope = LScopes.findLexicalScope(VP.second);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000918
Devang Patelcdb7d442009-11-10 23:20:04 +0000919 // If variable scope is not found then skip this variable.
Chris Lattner915c5f92010-04-02 19:42:39 +0000920 if (Scope == 0)
Devang Patelcdb7d442009-11-10 23:20:04 +0000921 continue;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000922
Devang Patele1c53f22010-05-20 16:36:41 +0000923 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
Devang Patel99819b52011-08-15 19:01:20 +0000924 DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable);
Devang Patel3e4a9652011-08-15 21:24:36 +0000925 RegVar->setFrameIndex(VP.first);
Devang Patel6c622ef2011-03-01 22:58:55 +0000926 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patel7e623022011-08-10 20:55:27 +0000927 addScopeVariable(Scope, RegVar);
Devang Patel99819b52011-08-15 19:01:20 +0000928 if (AbsDbgVariable)
Devang Patel3e4a9652011-08-15 21:24:36 +0000929 AbsDbgVariable->setFrameIndex(VP.first);
Devang Patel475d32a2009-10-06 01:26:37 +0000930 }
Devang Patel490c8ab2010-05-20 19:57:06 +0000931}
Devang Patela3e9c9c2010-03-15 18:33:46 +0000932
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000933/// isDbgValueInDefinedReg - Return true if debug value, encoded by
Devang Patel9fc11702010-05-25 23:40:22 +0000934/// DBG_VALUE instruction, is in a defined reg.
935static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000936 assert(MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +0000937 return MI->getNumOperands() == 3 &&
938 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
939 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patel9fc11702010-05-25 23:40:22 +0000940}
941
Nick Lewycky019d2552011-07-29 03:49:23 +0000942/// getDebugLocEntry - Get .debug_loc entry for the instruction range starting
Devang Patel2442a892011-07-08 17:09:57 +0000943/// at MI.
944static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm,
945 const MCSymbol *FLabel,
946 const MCSymbol *SLabel,
947 const MachineInstr *MI) {
948 const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata();
949
950 if (MI->getNumOperands() != 3) {
951 MachineLocation MLoc = Asm->getDebugValueLocation(MI);
952 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
953 }
954 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) {
955 MachineLocation MLoc;
956 MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
957 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
958 }
959 if (MI->getOperand(0).isImm())
960 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm());
961 if (MI->getOperand(0).isFPImm())
962 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm());
963 if (MI->getOperand(0).isCImm())
964 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm());
965
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000966 assert(0 && "Unexpected 3 operand DBG_VALUE instruction!");
Devang Patel2442a892011-07-08 17:09:57 +0000967 return DotDebugLocEntry();
968}
969
Devang Patel7e623022011-08-10 20:55:27 +0000970/// collectVariableInfo - Find variables for each lexical scope.
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000971void
Devang Patel5c0f85c2010-06-25 22:07:34 +0000972DwarfDebug::collectVariableInfo(const MachineFunction *MF,
973 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000974
Devang Patel490c8ab2010-05-20 19:57:06 +0000975 /// collection info from MMI table.
976 collectVariableInfoFromMMITable(MF, Processed);
977
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000978 for (SmallVectorImpl<const MDNode*>::const_iterator
979 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
980 ++UVI) {
981 const MDNode *Var = *UVI;
982 if (Processed.count(Var))
Devang Patel490c8ab2010-05-20 19:57:06 +0000983 continue;
984
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000985 // History contains relevant DBG_VALUE instructions for Var and instructions
986 // clobbering it.
987 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
988 if (History.empty())
989 continue;
990 const MachineInstr *MInsn = History.front();
Devang Patel9fc11702010-05-25 23:40:22 +0000991
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000992 DIVariable DV(Var);
Devang Patel7e623022011-08-10 20:55:27 +0000993 LexicalScope *Scope = NULL;
Devang Patel7a9dedf2010-05-27 20:25:04 +0000994 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
995 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patel7e623022011-08-10 20:55:27 +0000996 Scope = LScopes.getCurrentFunctionScope();
Devang Patel8fb9fd62011-07-20 22:18:50 +0000997 else {
998 if (DV.getVersion() <= LLVMDebugVersion9)
Devang Patel7e623022011-08-10 20:55:27 +0000999 Scope = LScopes.findLexicalScope(MInsn->getDebugLoc());
Devang Patel8fb9fd62011-07-20 22:18:50 +00001000 else {
1001 if (MDNode *IA = DV.getInlinedAt())
Devang Patel7e623022011-08-10 20:55:27 +00001002 Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA));
Devang Patel8fb9fd62011-07-20 22:18:50 +00001003 else
Devang Patel7e623022011-08-10 20:55:27 +00001004 Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1)));
Devang Patel8fb9fd62011-07-20 22:18:50 +00001005 }
1006 }
Devang Patel490c8ab2010-05-20 19:57:06 +00001007 // If variable scope is not found then skip this variable.
Devang Patelfbd6c452010-05-21 00:10:20 +00001008 if (!Scope)
Devang Patel490c8ab2010-05-20 19:57:06 +00001009 continue;
1010
1011 Processed.insert(DV);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001012 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patel99819b52011-08-15 19:01:20 +00001013 DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc());
1014 DbgVariable *RegVar = new DbgVariable(DV, AbsVar);
Devang Patel6c622ef2011-03-01 22:58:55 +00001015 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patel7e623022011-08-10 20:55:27 +00001016 addScopeVariable(Scope, RegVar);
Devang Patel99819b52011-08-15 19:01:20 +00001017 if (AbsVar)
Devang Patel3e4a9652011-08-15 21:24:36 +00001018 AbsVar->setMInsn(MInsn);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001019
1020 // Simple ranges that are fully coalesced.
1021 if (History.size() <= 1 || (History.size() == 2 &&
1022 MInsn->isIdenticalTo(History.back()))) {
Devang Patel3e4a9652011-08-15 21:24:36 +00001023 RegVar->setMInsn(MInsn);
Devang Patel9fc11702010-05-25 23:40:22 +00001024 continue;
1025 }
1026
1027 // handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001028 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001029
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001030 for (SmallVectorImpl<const MachineInstr*>::const_iterator
1031 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
1032 const MachineInstr *Begin = *HI;
1033 assert(Begin->isDebugValue() && "Invalid History entry");
Jakob Stoklund Olesen9c057ee2011-03-22 00:21:41 +00001034
Devang Patele7181b52011-06-01 23:00:17 +00001035 // Check if DBG_VALUE is truncating a range.
1036 if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg()
1037 && !Begin->getOperand(0).getReg())
1038 continue;
1039
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001040 // Compute the range for a register location.
1041 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
1042 const MCSymbol *SLabel = 0;
1043
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001044 if (HI + 1 == HE)
1045 // If Begin is the last instruction in History then its value is valid
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001046 // until the end of the function.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001047 SLabel = FunctionEndSym;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001048 else {
1049 const MachineInstr *End = HI[1];
Devang Patel53b050a2011-07-07 21:44:42 +00001050 DEBUG(dbgs() << "DotDebugLoc Pair:\n"
1051 << "\t" << *Begin << "\t" << *End << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001052 if (End->isDebugValue())
1053 SLabel = getLabelBeforeInsn(End);
1054 else {
1055 // End is a normal instruction clobbering the range.
1056 SLabel = getLabelAfterInsn(End);
1057 assert(SLabel && "Forgot label after clobber instruction");
1058 ++HI;
1059 }
1060 }
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001061
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001062 // The value is valid until the next DBG_VALUE or clobber.
Devang Patel2442a892011-07-08 17:09:57 +00001063 DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel, Begin));
Devang Patel9fc11702010-05-25 23:40:22 +00001064 }
1065 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patela3e9c9c2010-03-15 18:33:46 +00001066 }
Devang Patele0a94bf2010-05-14 21:01:35 +00001067
1068 // Collect info for variables that were optimized out.
Devang Patel59e27c52011-08-19 23:28:12 +00001069 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
1070 DIArray Variables = DISubprogram(FnScope->getScopeNode()).getVariables();
1071 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1072 DIVariable DV(Variables.getElement(i));
1073 if (!DV || !DV.Verify() || !Processed.insert(DV))
1074 continue;
1075 if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext()))
1076 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patele0a94bf2010-05-14 21:01:35 +00001077 }
Devang Patel9fc11702010-05-25 23:40:22 +00001078}
Devang Patele0a94bf2010-05-14 21:01:35 +00001079
Devang Patel9fc11702010-05-25 23:40:22 +00001080/// getLabelBeforeInsn - Return Label preceding the instruction.
1081const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001082 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1083 assert(Label && "Didn't insert label before instruction");
1084 return Label;
Devang Patel9fc11702010-05-25 23:40:22 +00001085}
1086
1087/// getLabelAfterInsn - Return Label immediately following the instruction.
1088const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001089 return LabelsAfterInsn.lookup(MI);
Devang Patel475d32a2009-10-06 01:26:37 +00001090}
1091
Devang Patelb5694e72010-10-26 17:49:02 +00001092/// beginInstruction - Process beginning of an instruction.
1093void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001094 // Check if source location changes, but ignore DBG_VALUE locations.
1095 if (!MI->isDebugValue()) {
1096 DebugLoc DL = MI->getDebugLoc();
1097 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
Devang Patel34a66202011-05-11 19:22:19 +00001098 unsigned Flags = DWARF2_FLAG_IS_STMT;
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001099 PrevInstLoc = DL;
Devang Patel34a66202011-05-11 19:22:19 +00001100 if (DL == PrologEndLoc) {
1101 Flags |= DWARF2_FLAG_PROLOGUE_END;
1102 PrologEndLoc = DebugLoc();
1103 }
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001104 if (!DL.isUnknown()) {
1105 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Devang Patel34a66202011-05-11 19:22:19 +00001106 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001107 } else
Devang Patel34a66202011-05-11 19:22:19 +00001108 recordSourceLine(0, 0, 0, 0);
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001109 }
Devang Patel9fc11702010-05-25 23:40:22 +00001110 }
Devang Patel23b2ae62010-03-29 22:59:58 +00001111
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001112 // Insert labels where requested.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001113 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1114 LabelsBeforeInsn.find(MI);
1115
1116 // No label needed.
1117 if (I == LabelsBeforeInsn.end())
1118 return;
1119
1120 // Label already assigned.
1121 if (I->second)
Devang Patel002d54d2010-05-26 19:37:24 +00001122 return;
Devang Patelbd477be2010-03-29 17:20:31 +00001123
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001124 if (!PrevLabel) {
Devang Patelacc32a52010-05-26 21:23:46 +00001125 PrevLabel = MMI->getContext().CreateTempSymbol();
1126 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel002d54d2010-05-26 19:37:24 +00001127 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001128 I->second = PrevLabel;
Devang Patel8db360d2009-10-06 01:50:42 +00001129}
1130
Devang Patelb5694e72010-10-26 17:49:02 +00001131/// endInstruction - Process end of an instruction.
1132void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001133 // Don't create a new label after DBG_VALUE instructions.
1134 // They don't generate code.
1135 if (!MI->isDebugValue())
1136 PrevLabel = 0;
1137
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001138 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1139 LabelsAfterInsn.find(MI);
1140
1141 // No label needed.
1142 if (I == LabelsAfterInsn.end())
1143 return;
1144
1145 // Label already assigned.
1146 if (I->second)
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001147 return;
1148
1149 // We need a label after this instruction.
1150 if (!PrevLabel) {
1151 PrevLabel = MMI->getContext().CreateTempSymbol();
1152 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel3ebd8932010-04-08 16:50:29 +00001153 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001154 I->second = PrevLabel;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001155}
1156
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001157/// identifyScopeMarkers() -
Devang Patel784077e2011-08-10 23:58:09 +00001158/// Each LexicalScope has first instruction and last instruction to mark
1159/// beginning and end of a scope respectively. Create an inverse map that list
1160/// scopes starts (and ends) with an instruction. One instruction may start (or
1161/// end) multiple scopes. Ignore scopes that are not reachable.
Devang Patel359b0132010-04-08 18:43:56 +00001162void DwarfDebug::identifyScopeMarkers() {
Devang Patel7e623022011-08-10 20:55:27 +00001163 SmallVector<LexicalScope *, 4> WorkList;
1164 WorkList.push_back(LScopes.getCurrentFunctionScope());
Devang Patel7771b7c2010-01-20 02:05:23 +00001165 while (!WorkList.empty()) {
Devang Patel7e623022011-08-10 20:55:27 +00001166 LexicalScope *S = WorkList.pop_back_val();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001167
Devang Patel7e623022011-08-10 20:55:27 +00001168 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001169 if (!Children.empty())
Devang Patel7e623022011-08-10 20:55:27 +00001170 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel7771b7c2010-01-20 02:05:23 +00001171 SE = Children.end(); SI != SE; ++SI)
1172 WorkList.push_back(*SI);
1173
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001174 if (S->isAbstractScope())
1175 continue;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001176
Devang Patel7e623022011-08-10 20:55:27 +00001177 const SmallVector<InsnRange, 4> &Ranges = S->getRanges();
Devang Patel6c74a872010-04-27 19:46:33 +00001178 if (Ranges.empty())
1179 continue;
Devang Patel7e623022011-08-10 20:55:27 +00001180 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel6c74a872010-04-27 19:46:33 +00001181 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patel7e623022011-08-10 20:55:27 +00001182 assert(RI->first && "InsnRange does not have first instruction!");
1183 assert(RI->second && "InsnRange does not have second instruction!");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001184 requestLabelBeforeInsn(RI->first);
1185 requestLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +00001186 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001187 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001188}
1189
Devang Patel589845d2011-05-09 22:14:49 +00001190/// getScopeNode - Get MDNode for DebugLoc's scope.
1191static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) {
1192 if (MDNode *InlinedAt = DL.getInlinedAt(Ctx))
1193 return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx);
1194 return DL.getScope(Ctx);
1195}
1196
Devang Patel34a66202011-05-11 19:22:19 +00001197/// getFnDebugLoc - Walk up the scope chain of given debug loc and find
1198/// line number info for the function.
1199static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) {
1200 const MDNode *Scope = getScopeNode(DL, Ctx);
1201 DISubprogram SP = getDISubprogram(Scope);
1202 if (SP.Verify())
1203 return DebugLoc::get(SP.getLineNumber(), 0, SP);
1204 return DebugLoc();
1205}
1206
Devang Patel930143b2009-11-21 02:48:08 +00001207/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling2b128d72009-05-20 23:19:06 +00001208/// emitted immediately after the function entry point.
Chris Lattner76555b52010-01-26 23:18:02 +00001209void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner196dbdc2010-04-05 03:52:55 +00001210 if (!MMI->hasDebugInfo()) return;
Devang Patel7e623022011-08-10 20:55:27 +00001211 LScopes.initialize(*MF);
1212 if (LScopes.empty()) return;
1213 identifyScopeMarkers();
Devang Patel4598eb62009-10-06 18:37:31 +00001214
Devang Patel6c74a872010-04-27 19:46:33 +00001215 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1216 Asm->getFunctionNumber());
Bill Wendling2b128d72009-05-20 23:19:06 +00001217 // Assumes in correct section after the entry point.
Devang Patel6c74a872010-04-27 19:46:33 +00001218 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendling2b128d72009-05-20 23:19:06 +00001219
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001220 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1221
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001222 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001223 /// LiveUserVar - Map physreg numbers to the MDNode they contain.
1224 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1225
Devang Patel002d54d2010-05-26 19:37:24 +00001226 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001227 I != E; ++I) {
1228 bool AtBlockEntry = true;
Devang Patel002d54d2010-05-26 19:37:24 +00001229 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1230 II != IE; ++II) {
1231 const MachineInstr *MI = II;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001232
Devang Patel002d54d2010-05-26 19:37:24 +00001233 if (MI->isDebugValue()) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +00001234 assert(MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001235
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001236 // Keep track of user variables.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001237 const MDNode *Var =
1238 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001239
1240 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001241 if (isDbgValueInDefinedReg(MI))
1242 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1243
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001244 // Check the history of this variable.
1245 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1246 if (History.empty()) {
1247 UserVariables.push_back(Var);
1248 // The first mention of a function argument gets the FunctionBeginSym
1249 // label, so arguments are visible when breaking at function entry.
1250 DIVariable DV(Var);
1251 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1252 DISubprogram(getDISubprogram(DV.getContext()))
1253 .describes(MF->getFunction()))
1254 LabelsBeforeInsn[MI] = FunctionBeginSym;
1255 } else {
1256 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1257 const MachineInstr *Prev = History.back();
1258 if (Prev->isDebugValue()) {
1259 // Coalesce identical entries at the end of History.
1260 if (History.size() >= 2 &&
Devang Patelb7a328e2011-07-07 00:14:27 +00001261 Prev->isIdenticalTo(History[History.size() - 2])) {
1262 DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n"
1263 << "\t" << *Prev
1264 << "\t" << *History[History.size() - 2] << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001265 History.pop_back();
Devang Patelb7a328e2011-07-07 00:14:27 +00001266 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001267
1268 // Terminate old register assignments that don't reach MI;
1269 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1270 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1271 isDbgValueInDefinedReg(Prev)) {
1272 // Previous register assignment needs to terminate at the end of
1273 // its basic block.
1274 MachineBasicBlock::const_iterator LastMI =
1275 PrevMBB->getLastNonDebugInstr();
Devang Patelb7a328e2011-07-07 00:14:27 +00001276 if (LastMI == PrevMBB->end()) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001277 // Drop DBG_VALUE for empty range.
Devang Patelb7a328e2011-07-07 00:14:27 +00001278 DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n"
1279 << "\t" << *Prev << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001280 History.pop_back();
Devang Patelb7a328e2011-07-07 00:14:27 +00001281 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001282 else {
1283 // Terminate after LastMI.
1284 History.push_back(LastMI);
1285 }
1286 }
1287 }
1288 }
1289 History.push_back(MI);
Devang Patel002d54d2010-05-26 19:37:24 +00001290 } else {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001291 // Not a DBG_VALUE instruction.
1292 if (!MI->isLabel())
1293 AtBlockEntry = false;
1294
Devang Patel34a66202011-05-11 19:22:19 +00001295 // First known non DBG_VALUE location marks beginning of function
1296 // body.
1297 if (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown())
1298 PrologEndLoc = MI->getDebugLoc();
1299
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001300 // Check if the instruction clobbers any registers with debug vars.
1301 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1302 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1303 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1304 continue;
1305 for (const unsigned *AI = TRI->getOverlaps(MOI->getReg());
1306 unsigned Reg = *AI; ++AI) {
1307 const MDNode *Var = LiveUserVar[Reg];
1308 if (!Var)
1309 continue;
1310 // Reg is now clobbered.
1311 LiveUserVar[Reg] = 0;
1312
1313 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001314 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
1315 if (HistI == DbgValues.end())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001316 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001317 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
1318 if (History.empty())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001319 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001320 const MachineInstr *Prev = History.back();
1321 // Sanity-check: Register assignments are terminated at the end of
1322 // their block.
1323 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
1324 continue;
1325 // Is the variable still in Reg?
1326 if (!isDbgValueInDefinedReg(Prev) ||
1327 Prev->getOperand(0).getReg() != Reg)
1328 continue;
1329 // Var is clobbered. Make sure the next instruction gets a label.
1330 History.push_back(MI);
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001331 }
1332 }
Devang Patel002d54d2010-05-26 19:37:24 +00001333 }
Devang Patel002d54d2010-05-26 19:37:24 +00001334 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001335 }
1336
1337 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
1338 I != E; ++I) {
1339 SmallVectorImpl<const MachineInstr*> &History = I->second;
1340 if (History.empty())
1341 continue;
1342
1343 // Make sure the final register assignments are terminated.
1344 const MachineInstr *Prev = History.back();
1345 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
1346 const MachineBasicBlock *PrevMBB = Prev->getParent();
Devang Patel784077e2011-08-10 23:58:09 +00001347 MachineBasicBlock::const_iterator LastMI =
1348 PrevMBB->getLastNonDebugInstr();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001349 if (LastMI == PrevMBB->end())
1350 // Drop DBG_VALUE for empty range.
1351 History.pop_back();
1352 else {
1353 // Terminate after LastMI.
1354 History.push_back(LastMI);
1355 }
1356 }
1357 // Request labels for the full history.
1358 for (unsigned i = 0, e = History.size(); i != e; ++i) {
1359 const MachineInstr *MI = History[i];
1360 if (MI->isDebugValue())
1361 requestLabelBeforeInsn(MI);
1362 else
1363 requestLabelAfterInsn(MI);
1364 }
1365 }
Devang Patel002d54d2010-05-26 19:37:24 +00001366
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001367 PrevInstLoc = DebugLoc();
Devang Patel002d54d2010-05-26 19:37:24 +00001368 PrevLabel = FunctionBeginSym;
Devang Patel34a66202011-05-11 19:22:19 +00001369
1370 // Record beginning of function.
1371 if (!PrologEndLoc.isUnknown()) {
1372 DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc,
1373 MF->getFunction()->getContext());
1374 recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(),
1375 FnStartDL.getScope(MF->getFunction()->getContext()),
1376 DWARF2_FLAG_IS_STMT);
1377 }
Bill Wendling2b128d72009-05-20 23:19:06 +00001378}
1379
Devang Patel7e623022011-08-10 20:55:27 +00001380void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) {
1381// SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1382 ScopeVariables[LS].push_back(Var);
1383// Vars.push_back(Var);
1384}
1385
Devang Patel930143b2009-11-21 02:48:08 +00001386/// endFunction - Gather and emit post-function debug information.
Bill Wendling2b128d72009-05-20 23:19:06 +00001387///
Chris Lattner76555b52010-01-26 23:18:02 +00001388void DwarfDebug::endFunction(const MachineFunction *MF) {
Devang Patel7e623022011-08-10 20:55:27 +00001389 if (!MMI->hasDebugInfo() || LScopes.empty()) return;
Devang Patel2904aa92009-11-12 19:02:56 +00001390
Devang Patel7e623022011-08-10 20:55:27 +00001391 // Define end label for subprogram.
1392 FunctionEndSym = Asm->GetTempSymbol("func_end",
1393 Asm->getFunctionNumber());
1394 // Assumes in correct section after the entry point.
1395 Asm->OutStreamer.EmitLabel(FunctionEndSym);
1396
1397 SmallPtrSet<const MDNode *, 16> ProcessedVars;
1398 collectVariableInfo(MF, ProcessedVars);
1399
Devang Patel3acc70e2011-08-15 22:04:40 +00001400 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
Devang Pateleb1bb4e2011-08-16 22:09:43 +00001401 CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode());
Nick Lewycky654f5ce2011-10-26 22:55:33 +00001402 assert(TheCU && "Unable to find compile unit!");
Devang Patel3acc70e2011-08-15 22:04:40 +00001403
Devang Patel7e623022011-08-10 20:55:27 +00001404 // Construct abstract scopes.
Devang Patel44403472011-08-12 18:10:19 +00001405 ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList();
1406 for (unsigned i = 0, e = AList.size(); i != e; ++i) {
1407 LexicalScope *AScope = AList[i];
1408 DISubprogram SP(AScope->getScopeNode());
Devang Patel7e623022011-08-10 20:55:27 +00001409 if (SP.Verify()) {
1410 // Collect info for variables that were optimized out.
Devang Patel59e27c52011-08-19 23:28:12 +00001411 DIArray Variables = SP.getVariables();
1412 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1413 DIVariable DV(Variables.getElement(i));
1414 if (!DV || !DV.Verify() || !ProcessedVars.insert(DV))
1415 continue;
1416 if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext()))
1417 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel5c0f85c2010-06-25 22:07:34 +00001418 }
1419 }
Devang Patel44403472011-08-12 18:10:19 +00001420 if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0)
Devang Patel3acc70e2011-08-15 22:04:40 +00001421 constructScopeDIE(TheCU, AScope);
Bill Wendling2b128d72009-05-20 23:19:06 +00001422 }
Devang Patel7e623022011-08-10 20:55:27 +00001423
Devang Patel3acc70e2011-08-15 22:04:40 +00001424 DIE *CurFnDIE = constructScopeDIE(TheCU, FnScope);
Devang Patel7e623022011-08-10 20:55:27 +00001425
Devang Patel3acc70e2011-08-15 22:04:40 +00001426 if (!DisableFramePointerElim(*MF))
Devang Patel784077e2011-08-10 23:58:09 +00001427 TheCU->addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr,
1428 dwarf::DW_FORM_flag, 1);
Devang Patel3acc70e2011-08-15 22:04:40 +00001429
Devang Patel7e623022011-08-10 20:55:27 +00001430 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
1431 MMI->getFrameMoves()));
Bill Wendling2b128d72009-05-20 23:19:06 +00001432
Bill Wendling2b128d72009-05-20 23:19:06 +00001433 // Clear debug info
Devang Patel7e623022011-08-10 20:55:27 +00001434 for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator
1435 I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I)
1436 DeleteContainerPointers(I->second);
1437 ScopeVariables.clear();
Devang Patelad45d912011-04-22 18:09:57 +00001438 DeleteContainerPointers(CurrentFnArguments);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001439 UserVariables.clear();
1440 DbgValues.clear();
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00001441 AbstractVariables.clear();
Devang Patel6c74a872010-04-27 19:46:33 +00001442 LabelsBeforeInsn.clear();
1443 LabelsAfterInsn.clear();
Devang Patel12563b32010-04-16 23:33:45 +00001444 PrevLabel = NULL;
Bill Wendling2b128d72009-05-20 23:19:06 +00001445}
1446
Chris Lattnerba35a672010-03-09 04:54:43 +00001447/// recordSourceLine - Register a source line with debug info. Returns the
1448/// unique label that was emitted and which provides correspondence to
1449/// the source line list.
Devang Patel34a66202011-05-11 19:22:19 +00001450void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S,
1451 unsigned Flags) {
Devang Patel2d9caf92009-11-25 17:36:49 +00001452 StringRef Fn;
Devang Patele01b75c2011-03-24 20:30:50 +00001453 StringRef Dir;
Dan Gohman50849c62010-05-05 23:41:32 +00001454 unsigned Src = 1;
1455 if (S) {
1456 DIDescriptor Scope(S);
Devang Patel2089d162009-10-05 18:03:19 +00001457
Dan Gohman50849c62010-05-05 23:41:32 +00001458 if (Scope.isCompileUnit()) {
1459 DICompileUnit CU(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001460 Fn = CU.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001461 Dir = CU.getDirectory();
Devang Patelc4b69052010-10-28 17:30:52 +00001462 } else if (Scope.isFile()) {
1463 DIFile F(S);
Devang Patelc4b69052010-10-28 17:30:52 +00001464 Fn = F.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001465 Dir = F.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001466 } else if (Scope.isSubprogram()) {
1467 DISubprogram SP(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001468 Fn = SP.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001469 Dir = SP.getDirectory();
Eric Christopher6647b832011-10-11 22:59:11 +00001470 } else if (Scope.isLexicalBlockFile()) {
1471 DILexicalBlockFile DBF(S);
1472 Fn = DBF.getFilename();
1473 Dir = DBF.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001474 } else if (Scope.isLexicalBlock()) {
1475 DILexicalBlock DB(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001476 Fn = DB.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001477 Dir = DB.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001478 } else
1479 assert(0 && "Unexpected scope info");
1480
Devang Patele01b75c2011-03-24 20:30:50 +00001481 Src = GetOrCreateSourceID(Fn, Dir);
Dan Gohman50849c62010-05-05 23:41:32 +00001482 }
Nick Lewycky019d2552011-07-29 03:49:23 +00001483 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);
Bill Wendling2b128d72009-05-20 23:19:06 +00001484}
1485
Bill Wendling806535f2009-05-20 23:22:40 +00001486//===----------------------------------------------------------------------===//
1487// Emit Methods
1488//===----------------------------------------------------------------------===//
1489
Devang Patel930143b2009-11-21 02:48:08 +00001490/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling480ff322009-05-20 23:21:38 +00001491///
Jim Grosbach00e9c612009-11-22 19:20:36 +00001492unsigned
1493DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling480ff322009-05-20 23:21:38 +00001494 // Get the children.
1495 const std::vector<DIE *> &Children = Die->getChildren();
1496
1497 // If not last sibling and has children then add sibling offset attribute.
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00001498 if (!Last && !Children.empty())
Benjamin Kramer74729ae2010-03-31 19:34:01 +00001499 Die->addSiblingOffset(DIEValueAllocator);
Bill Wendling480ff322009-05-20 23:21:38 +00001500
1501 // Record the abbreviation.
Devang Patel930143b2009-11-21 02:48:08 +00001502 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling480ff322009-05-20 23:21:38 +00001503
1504 // Get the abbreviation for this DIE.
1505 unsigned AbbrevNumber = Die->getAbbrevNumber();
1506 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1507
1508 // Set DIE offset
1509 Die->setOffset(Offset);
1510
1511 // Start the size with the size of abbreviation code.
Chris Lattner7b26fce2009-08-22 20:48:53 +00001512 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00001513
1514 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1515 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1516
1517 // Size the DIE attribute values.
1518 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1519 // Size attribute value.
Chris Lattner5a00dea2010-04-05 00:18:22 +00001520 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling480ff322009-05-20 23:21:38 +00001521
1522 // Size the DIE children if any.
1523 if (!Children.empty()) {
1524 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1525 "Children flag not set");
1526
1527 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00001528 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling480ff322009-05-20 23:21:38 +00001529
1530 // End of children marker.
1531 Offset += sizeof(int8_t);
1532 }
1533
1534 Die->setSize(Offset - Die->getOffset());
1535 return Offset;
1536}
1537
Devang Patel930143b2009-11-21 02:48:08 +00001538/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling480ff322009-05-20 23:21:38 +00001539///
Devang Patel930143b2009-11-21 02:48:08 +00001540void DwarfDebug::computeSizeAndOffsets() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001541 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1542 E = CUMap.end(); I != E; ++I) {
1543 // Compute size of compile unit header.
Devang Patel28dce702011-04-12 23:10:47 +00001544 unsigned Offset =
Devang Patel1a0df9a2010-05-10 22:49:55 +00001545 sizeof(int32_t) + // Length of Compilation Unit Info
1546 sizeof(int16_t) + // DWARF version number
1547 sizeof(int32_t) + // Offset Into Abbrev. Section
1548 sizeof(int8_t); // Pointer Size (in bytes)
1549 computeSizeAndOffset(I->second->getCUDie(), Offset, true);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001550 }
Bill Wendling480ff322009-05-20 23:21:38 +00001551}
1552
Chris Lattner6629ca92010-04-04 22:59:04 +00001553/// EmitSectionLabels - Emit initial Dwarf sections with a label at
1554/// the start of each one.
Chris Lattner46355d82010-04-04 22:33:59 +00001555void DwarfDebug::EmitSectionLabels() {
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001556 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00001557
Bill Wendling480ff322009-05-20 23:21:38 +00001558 // Dwarf sections base addresses.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001559 DwarfInfoSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00001560 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001561 DwarfAbbrevSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00001562 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001563 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001564
Chris Lattner6629ca92010-04-04 22:59:04 +00001565 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001566 EmitSectionSym(Asm, MacroInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00001567
Devang Patel4a213872010-08-24 00:06:12 +00001568 EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001569 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
1570 EmitSectionSym(Asm, TLOF.getDwarfPubNamesSection());
1571 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001572 DwarfStrSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00001573 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Devang Patel12563b32010-04-16 23:33:45 +00001574 DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(),
1575 "debug_range");
Bill Wendling480ff322009-05-20 23:21:38 +00001576
Devang Patel9fc11702010-05-25 23:40:22 +00001577 DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(),
1578 "section_debug_loc");
1579
Chris Lattner6629ca92010-04-04 22:59:04 +00001580 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattnere58b5472010-04-04 23:10:38 +00001581 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001582}
1583
Nick Lewycky019d2552011-07-29 03:49:23 +00001584/// emitDIE - Recursively emits a debug information entry.
Bill Wendling480ff322009-05-20 23:21:38 +00001585///
Devang Patel930143b2009-11-21 02:48:08 +00001586void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling480ff322009-05-20 23:21:38 +00001587 // Get the abbreviation for this DIE.
1588 unsigned AbbrevNumber = Die->getAbbrevNumber();
1589 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1590
Bill Wendling480ff322009-05-20 23:21:38 +00001591 // Emit the code (index) for the abbreviation.
Chris Lattner7bde8c02010-04-04 18:52:31 +00001592 if (Asm->isVerbose())
Chris Lattnerfa823552010-01-22 23:18:42 +00001593 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
1594 Twine::utohexstr(Die->getOffset()) + ":0x" +
1595 Twine::utohexstr(Die->getSize()) + " " +
1596 dwarf::TagString(Abbrev->getTag()));
Chris Lattner9efd1182010-04-04 19:09:29 +00001597 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00001598
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00001599 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling480ff322009-05-20 23:21:38 +00001600 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1601
1602 // Emit the DIE attribute values.
1603 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1604 unsigned Attr = AbbrevData[i].getAttribute();
1605 unsigned Form = AbbrevData[i].getForm();
1606 assert(Form && "Too many attributes for DIE (check abbreviation)");
1607
Chris Lattner7bde8c02010-04-04 18:52:31 +00001608 if (Asm->isVerbose())
Chris Lattner5adf9872010-01-24 18:54:17 +00001609 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001610
Bill Wendling480ff322009-05-20 23:21:38 +00001611 switch (Attr) {
1612 case dwarf::DW_AT_sibling:
Devang Patel930143b2009-11-21 02:48:08 +00001613 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00001614 break;
1615 case dwarf::DW_AT_abstract_origin: {
1616 DIEEntry *E = cast<DIEEntry>(Values[i]);
1617 DIE *Origin = E->getEntry();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001618 unsigned Addr = Origin->getOffset();
Bill Wendling480ff322009-05-20 23:21:38 +00001619 Asm->EmitInt32(Addr);
1620 break;
1621 }
Devang Patel12563b32010-04-16 23:33:45 +00001622 case dwarf::DW_AT_ranges: {
1623 // DW_AT_range Value encodes offset in debug_range section.
1624 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelda3ef852010-09-02 16:43:44 +00001625
1626 if (Asm->MAI->doesDwarfUsesLabelOffsetForRanges()) {
1627 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
1628 V->getValue(),
1629 4);
1630 } else {
1631 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
1632 V->getValue(),
1633 DwarfDebugRangeSectionSym,
1634 4);
1635 }
Devang Patel12563b32010-04-16 23:33:45 +00001636 break;
1637 }
Devang Patel9fc11702010-05-25 23:40:22 +00001638 case dwarf::DW_AT_location: {
Devang Pateld8994442011-08-15 21:43:21 +00001639 if (DIELabel *L = dyn_cast<DIELabel>(Values[i]))
Daniel Dunbarfd95b012011-03-16 22:16:39 +00001640 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
Devang Pateld8994442011-08-15 21:43:21 +00001641 else
Devang Patel9fc11702010-05-25 23:40:22 +00001642 Values[i]->EmitValue(Asm, Form);
1643 break;
1644 }
Devang Patela1bd5a12010-09-29 19:08:08 +00001645 case dwarf::DW_AT_accessibility: {
1646 if (Asm->isVerbose()) {
1647 DIEInteger *V = cast<DIEInteger>(Values[i]);
1648 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
1649 }
1650 Values[i]->EmitValue(Asm, Form);
1651 break;
1652 }
Bill Wendling480ff322009-05-20 23:21:38 +00001653 default:
1654 // Emit an attribute using the defined form.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001655 Values[i]->EmitValue(Asm, Form);
Bill Wendling480ff322009-05-20 23:21:38 +00001656 break;
1657 }
Bill Wendling480ff322009-05-20 23:21:38 +00001658 }
1659
1660 // Emit the DIE children if any.
1661 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1662 const std::vector<DIE *> &Children = Die->getChildren();
1663
1664 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00001665 emitDIE(Children[j]);
Bill Wendling480ff322009-05-20 23:21:38 +00001666
Chris Lattner7bde8c02010-04-04 18:52:31 +00001667 if (Asm->isVerbose())
Chris Lattner566cae92010-03-09 23:52:58 +00001668 Asm->OutStreamer.AddComment("End Of Children Mark");
1669 Asm->EmitInt8(0);
Bill Wendling480ff322009-05-20 23:21:38 +00001670 }
1671}
1672
Devang Patel9ccfb642009-12-09 18:24:21 +00001673/// emitDebugInfo - Emit the debug info section.
Bill Wendling480ff322009-05-20 23:21:38 +00001674///
Devang Patel9ccfb642009-12-09 18:24:21 +00001675void DwarfDebug::emitDebugInfo() {
1676 // Start debug info section.
1677 Asm->OutStreamer.SwitchSection(
1678 Asm->getObjFileLowering().getDwarfInfoSection());
Devang Patel1a0df9a2010-05-10 22:49:55 +00001679 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1680 E = CUMap.end(); I != E; ++I) {
1681 CompileUnit *TheCU = I->second;
1682 DIE *Die = TheCU->getCUDie();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001683
Devang Patel1a0df9a2010-05-10 22:49:55 +00001684 // Emit the compile units header.
1685 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
1686 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001687
Devang Patel1a0df9a2010-05-10 22:49:55 +00001688 // Emit size of content not including length itself
1689 unsigned ContentSize = Die->getSize() +
1690 sizeof(int16_t) + // DWARF version number
1691 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patele141234942011-04-13 19:41:17 +00001692 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001693
Devang Patel1a0df9a2010-05-10 22:49:55 +00001694 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
1695 Asm->EmitInt32(ContentSize);
1696 Asm->OutStreamer.AddComment("DWARF version number");
1697 Asm->EmitInt16(dwarf::DWARF_VERSION);
1698 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
1699 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
1700 DwarfAbbrevSectionSym);
1701 Asm->OutStreamer.AddComment("Address Size (in bytes)");
1702 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001703
Devang Patel1a0df9a2010-05-10 22:49:55 +00001704 emitDIE(Die);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001705 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID()));
1706 }
Bill Wendling480ff322009-05-20 23:21:38 +00001707}
1708
Devang Patel930143b2009-11-21 02:48:08 +00001709/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling480ff322009-05-20 23:21:38 +00001710///
Devang Patel930143b2009-11-21 02:48:08 +00001711void DwarfDebug::emitAbbreviations() const {
Bill Wendling480ff322009-05-20 23:21:38 +00001712 // Check to see if it is worth the effort.
1713 if (!Abbreviations.empty()) {
1714 // Start the debug abbrev section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001715 Asm->OutStreamer.SwitchSection(
1716 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001717
Chris Lattnera179b522010-04-04 19:25:43 +00001718 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling480ff322009-05-20 23:21:38 +00001719
1720 // For each abbrevation.
1721 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
1722 // Get abbreviation data
1723 const DIEAbbrev *Abbrev = Abbreviations[i];
1724
1725 // Emit the abbrevations code (base 1 index.)
Chris Lattner9efd1182010-04-04 19:09:29 +00001726 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling480ff322009-05-20 23:21:38 +00001727
1728 // Emit the abbreviations data.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001729 Abbrev->Emit(Asm);
Bill Wendling480ff322009-05-20 23:21:38 +00001730 }
1731
1732 // Mark end of abbreviations.
Chris Lattner9efd1182010-04-04 19:09:29 +00001733 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling480ff322009-05-20 23:21:38 +00001734
Chris Lattnera179b522010-04-04 19:25:43 +00001735 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling480ff322009-05-20 23:21:38 +00001736 }
1737}
1738
Devang Patel930143b2009-11-21 02:48:08 +00001739/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling480ff322009-05-20 23:21:38 +00001740/// the line matrix.
1741///
Devang Patel930143b2009-11-21 02:48:08 +00001742void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling480ff322009-05-20 23:21:38 +00001743 // Define last address of section.
Chris Lattner566cae92010-03-09 23:52:58 +00001744 Asm->OutStreamer.AddComment("Extended Op");
1745 Asm->EmitInt8(0);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001746
Chris Lattner566cae92010-03-09 23:52:58 +00001747 Asm->OutStreamer.AddComment("Op size");
Chris Lattner3a383cb2010-04-05 00:13:49 +00001748 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner566cae92010-03-09 23:52:58 +00001749 Asm->OutStreamer.AddComment("DW_LNE_set_address");
1750 Asm->EmitInt8(dwarf::DW_LNE_set_address);
1751
1752 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerb245dfb2010-03-10 01:17:49 +00001753
Chris Lattnera179b522010-04-04 19:25:43 +00001754 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattner3a383cb2010-04-05 00:13:49 +00001755 Asm->getTargetData().getPointerSize(),
1756 0/*AddrSpace*/);
Bill Wendling480ff322009-05-20 23:21:38 +00001757
1758 // Mark end of matrix.
Chris Lattner566cae92010-03-09 23:52:58 +00001759 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
1760 Asm->EmitInt8(0);
Chris Lattnerf5c834f2010-01-22 22:09:00 +00001761 Asm->EmitInt8(1);
Chris Lattnerfa823552010-01-22 23:18:42 +00001762 Asm->EmitInt8(1);
Bill Wendling480ff322009-05-20 23:21:38 +00001763}
1764
Eric Christopher4996c702011-11-07 09:24:32 +00001765/// emitAccelNames - Emit visible names into a hashed accelerator table
1766/// section.
1767void DwarfDebug::emitAccelNames() {
1768 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1769 dwarf::DW_FORM_data4));
1770 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1771 E = CUMap.end(); I != E; ++I) {
1772 CompileUnit *TheCU = I->second;
1773 const StringMap<DIE*> &Names = TheCU->getAccelNames();
1774 for (StringMap<DIE*>::const_iterator
1775 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1776 const char *Name = GI->getKeyData();
1777 DIE *Entity = GI->second;
1778 AT.AddName(Name, Entity);
1779 }
1780 }
1781
1782 AT.FinalizeTable(Asm, "Names");
1783 Asm->OutStreamer.SwitchSection(
1784 Asm->getObjFileLowering().getDwarfAccelNamesSection());
1785 MCSymbol *SectionBegin = Asm->GetTempSymbol("names_begin");
1786 Asm->OutStreamer.EmitLabel(SectionBegin);
1787
1788 // Emit the full data.
1789 AT.Emit(Asm, SectionBegin, this);
1790}
1791
1792/// emitAccelObjC - Emit objective C classes and categories into a hashed
1793/// accelerator table section.
1794void DwarfDebug::emitAccelObjC() {
1795 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1796 dwarf::DW_FORM_data4));
1797 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1798 E = CUMap.end(); I != E; ++I) {
1799 CompileUnit *TheCU = I->second;
1800 const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelObjC();
1801 for (StringMap<std::vector<DIE*> >::const_iterator
1802 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1803 const char *Name = GI->getKeyData();
1804 std::vector<DIE *> Entities = GI->second;
1805 for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
1806 DE = Entities.end(); DI != DE; ++DI)
1807 AT.AddName(Name, (*DI));
1808 }
1809 }
1810
1811 AT.FinalizeTable(Asm, "ObjC");
1812 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1813 .getDwarfAccelObjCSection());
1814 MCSymbol *SectionBegin = Asm->GetTempSymbol("objc_begin");
1815 Asm->OutStreamer.EmitLabel(SectionBegin);
1816
1817 // Emit the full data.
1818 AT.Emit(Asm, SectionBegin, this);
1819}
1820
1821/// emitAccelNamespace - Emit namespace dies into a hashed accelerator
1822/// table.
1823void DwarfDebug::emitAccelNamespaces() {
1824 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1825 dwarf::DW_FORM_data4));
1826 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1827 E = CUMap.end(); I != E; ++I) {
1828 CompileUnit *TheCU = I->second;
1829 const StringMap<DIE*> &Names = TheCU->getAccelNamespace();
1830 for (StringMap<DIE*>::const_iterator
1831 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1832 const char *Name = GI->getKeyData();
1833 DIE *Entity = GI->second;
1834 AT.AddName(Name, Entity);
1835 }
1836 }
1837
1838 AT.FinalizeTable(Asm, "namespac");
1839 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1840 .getDwarfAccelNamespaceSection());
1841 MCSymbol *SectionBegin = Asm->GetTempSymbol("namespac_begin");
1842 Asm->OutStreamer.EmitLabel(SectionBegin);
1843
1844 // Emit the full data.
1845 AT.Emit(Asm, SectionBegin, this);
1846}
1847
1848/// emitAccelTypes() - Emit type dies into a hashed accelerator table.
1849void DwarfDebug::emitAccelTypes() {
1850 DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset,
1851 dwarf::DW_FORM_data4));
1852 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1853 E = CUMap.end(); I != E; ++I) {
1854 CompileUnit *TheCU = I->second;
Eric Christopher5139dad2011-11-07 22:11:16 +00001855 const StringMap<DIE*> &Names = TheCU->getAccelTypes();
Eric Christopher4996c702011-11-07 09:24:32 +00001856 for (StringMap<DIE*>::const_iterator
1857 GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
1858 const char *Name = GI->getKeyData();
1859 DIE *Entity = GI->second;
1860 AT.AddName(Name, Entity);
1861 }
1862 }
1863
1864 AT.FinalizeTable(Asm, "types");
1865 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering()
1866 .getDwarfAccelTypesSection());
1867 MCSymbol *SectionBegin = Asm->GetTempSymbol("types_begin");
1868 Asm->OutStreamer.EmitLabel(SectionBegin);
1869
1870 // Emit the full data.
1871 AT.Emit(Asm, SectionBegin, this);
1872}
1873
Devang Patel9ccfb642009-12-09 18:24:21 +00001874/// emitDebugPubNames - Emit visible names into a debug pubnames section.
1875///
1876void DwarfDebug::emitDebugPubNames() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001877 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1878 E = CUMap.end(); I != E; ++I) {
1879 CompileUnit *TheCU = I->second;
1880 // Start the dwarf pubnames section.
1881 Asm->OutStreamer.SwitchSection(
1882 Asm->getObjFileLowering().getDwarfPubNamesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001883
Devang Patel1a0df9a2010-05-10 22:49:55 +00001884 Asm->OutStreamer.AddComment("Length of Public Names Info");
1885 Asm->EmitLabelDifference(
1886 Asm->GetTempSymbol("pubnames_end", TheCU->getID()),
1887 Asm->GetTempSymbol("pubnames_begin", TheCU->getID()), 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001888
Devang Patel1a0df9a2010-05-10 22:49:55 +00001889 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_begin",
1890 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001891
Devang Patel1a0df9a2010-05-10 22:49:55 +00001892 Asm->OutStreamer.AddComment("DWARF Version");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001893 Asm->EmitInt16(dwarf::DWARF_VERSION);
1894
Devang Patel1a0df9a2010-05-10 22:49:55 +00001895 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001896 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
Devang Patel1a0df9a2010-05-10 22:49:55 +00001897 DwarfInfoSectionSym);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001898
Devang Patel1a0df9a2010-05-10 22:49:55 +00001899 Asm->OutStreamer.AddComment("Compilation Unit Length");
1900 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1901 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1902 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001903
Devang Patel1a0df9a2010-05-10 22:49:55 +00001904 const StringMap<DIE*> &Globals = TheCU->getGlobals();
1905 for (StringMap<DIE*>::const_iterator
1906 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1907 const char *Name = GI->getKeyData();
1908 DIE *Entity = GI->second;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001909
Devang Patel1a0df9a2010-05-10 22:49:55 +00001910 Asm->OutStreamer.AddComment("DIE offset");
1911 Asm->EmitInt32(Entity->getOffset());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001912
Devang Patel1a0df9a2010-05-10 22:49:55 +00001913 if (Asm->isVerbose())
1914 Asm->OutStreamer.AddComment("External Name");
1915 Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
1916 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001917
Devang Patel1a0df9a2010-05-10 22:49:55 +00001918 Asm->OutStreamer.AddComment("End Mark");
1919 Asm->EmitInt32(0);
1920 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_end",
Nick Lewycky019d2552011-07-29 03:49:23 +00001921 TheCU->getID()));
Bill Wendling480ff322009-05-20 23:21:38 +00001922 }
Bill Wendling480ff322009-05-20 23:21:38 +00001923}
1924
Devang Patel04d2f2d2009-11-24 01:14:22 +00001925void DwarfDebug::emitDebugPubTypes() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001926 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1927 E = CUMap.end(); I != E; ++I) {
1928 CompileUnit *TheCU = I->second;
Eric Christopher6abc9c52011-11-07 09:18:35 +00001929 // Start the dwarf pubtypes section.
Devang Patel1a0df9a2010-05-10 22:49:55 +00001930 Asm->OutStreamer.SwitchSection(
1931 Asm->getObjFileLowering().getDwarfPubTypesSection());
1932 Asm->OutStreamer.AddComment("Length of Public Types Info");
1933 Asm->EmitLabelDifference(
1934 Asm->GetTempSymbol("pubtypes_end", TheCU->getID()),
1935 Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001936
Devang Patel1a0df9a2010-05-10 22:49:55 +00001937 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
1938 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001939
Devang Patel1a0df9a2010-05-10 22:49:55 +00001940 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
1941 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001942
Devang Patel1a0df9a2010-05-10 22:49:55 +00001943 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
1944 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
1945 DwarfInfoSectionSym);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001946
Devang Patel1a0df9a2010-05-10 22:49:55 +00001947 Asm->OutStreamer.AddComment("Compilation Unit Length");
1948 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1949 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1950 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001951
Devang Patel1a0df9a2010-05-10 22:49:55 +00001952 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
1953 for (StringMap<DIE*>::const_iterator
1954 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1955 const char *Name = GI->getKeyData();
Nick Lewycky019d2552011-07-29 03:49:23 +00001956 DIE *Entity = GI->second;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001957
Devang Patel1a0df9a2010-05-10 22:49:55 +00001958 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
1959 Asm->EmitInt32(Entity->getOffset());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001960
Devang Patel1a0df9a2010-05-10 22:49:55 +00001961 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
1962 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
1963 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001964
Devang Patel1a0df9a2010-05-10 22:49:55 +00001965 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001966 Asm->EmitInt32(0);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001967 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
1968 TheCU->getID()));
Devang Patel04d2f2d2009-11-24 01:14:22 +00001969 }
Devang Patel04d2f2d2009-11-24 01:14:22 +00001970}
1971
Devang Patel930143b2009-11-21 02:48:08 +00001972/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling480ff322009-05-20 23:21:38 +00001973///
Devang Patel930143b2009-11-21 02:48:08 +00001974void DwarfDebug::emitDebugStr() {
Bill Wendling480ff322009-05-20 23:21:38 +00001975 // Check to see if it is worth the effort.
Chris Lattner3d72a672010-03-09 23:38:23 +00001976 if (StringPool.empty()) return;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001977
Chris Lattner3d72a672010-03-09 23:38:23 +00001978 // Start the dwarf str section.
1979 Asm->OutStreamer.SwitchSection(
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001980 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001981
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001982 // Get all of the string pool entries and put them in an array by their ID so
1983 // we can sort them.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001984 SmallVector<std::pair<unsigned,
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001985 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001986
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001987 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
1988 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
1989 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001990
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001991 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001992
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001993 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner3d72a672010-03-09 23:38:23 +00001994 // Emit a label for reference from debug information entries.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001995 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001996
Chris Lattner3d72a672010-03-09 23:38:23 +00001997 // Emit the string itself.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001998 Asm->OutStreamer.EmitBytes(Entries[i].second->getKey(), 0/*addrspace*/);
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +00001999 Asm->OutStreamer.EmitZeros(1, 0);
Bill Wendling480ff322009-05-20 23:21:38 +00002000 }
2001}
2002
Devang Patel930143b2009-11-21 02:48:08 +00002003/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling480ff322009-05-20 23:21:38 +00002004///
Devang Patel930143b2009-11-21 02:48:08 +00002005void DwarfDebug::emitDebugLoc() {
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002006 if (DotDebugLocEntries.empty())
2007 return;
2008
Devang Patel116a9d72011-02-04 22:57:18 +00002009 for (SmallVector<DotDebugLocEntry, 4>::iterator
2010 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
2011 I != E; ++I) {
2012 DotDebugLocEntry &Entry = *I;
2013 if (I + 1 != DotDebugLocEntries.end())
2014 Entry.Merge(I+1);
2015 }
2016
Daniel Dunbarfd95b012011-03-16 22:16:39 +00002017 // Start the dwarf loc section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002018 Asm->OutStreamer.SwitchSection(
Devang Patel9fc11702010-05-25 23:40:22 +00002019 Asm->getObjFileLowering().getDwarfLocSection());
2020 unsigned char Size = Asm->getTargetData().getPointerSize();
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002021 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
2022 unsigned index = 1;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002023 for (SmallVector<DotDebugLocEntry, 4>::iterator
2024 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel30265c42010-07-07 20:12:52 +00002025 I != E; ++I, ++index) {
Devang Patel116a9d72011-02-04 22:57:18 +00002026 DotDebugLocEntry &Entry = *I;
2027 if (Entry.isMerged()) continue;
Devang Patel9fc11702010-05-25 23:40:22 +00002028 if (Entry.isEmpty()) {
2029 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
2030 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel6b9a9fe2010-05-26 23:55:23 +00002031 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patel9fc11702010-05-25 23:40:22 +00002032 } else {
2033 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0);
2034 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0);
Devang Patel3e021532011-04-28 02:22:40 +00002035 DIVariable DV(Entry.Variable);
Rafael Espindolad23bfb82011-05-27 22:05:41 +00002036 Asm->OutStreamer.AddComment("Loc expr size");
2037 MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol();
2038 MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol();
2039 Asm->EmitLabelDifference(end, begin, 2);
2040 Asm->OutStreamer.EmitLabel(begin);
Devang Pateled9fd452011-07-08 16:49:43 +00002041 if (Entry.isInt()) {
Devang Patel324f8432011-06-01 22:03:25 +00002042 DIBasicType BTy(DV.getType());
2043 if (BTy.Verify() &&
2044 (BTy.getEncoding() == dwarf::DW_ATE_signed
2045 || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) {
2046 Asm->OutStreamer.AddComment("DW_OP_consts");
2047 Asm->EmitInt8(dwarf::DW_OP_consts);
Devang Pateled9fd452011-07-08 16:49:43 +00002048 Asm->EmitSLEB128(Entry.getInt());
Devang Patel324f8432011-06-01 22:03:25 +00002049 } else {
2050 Asm->OutStreamer.AddComment("DW_OP_constu");
2051 Asm->EmitInt8(dwarf::DW_OP_constu);
Devang Pateled9fd452011-07-08 16:49:43 +00002052 Asm->EmitULEB128(Entry.getInt());
Devang Patel324f8432011-06-01 22:03:25 +00002053 }
Devang Pateled9fd452011-07-08 16:49:43 +00002054 } else if (Entry.isLocation()) {
2055 if (!DV.hasComplexAddress())
2056 // Regular entry.
Devang Patel3e021532011-04-28 02:22:40 +00002057 Asm->EmitDwarfRegOp(Entry.Loc);
Devang Pateled9fd452011-07-08 16:49:43 +00002058 else {
2059 // Complex address entry.
2060 unsigned N = DV.getNumAddrElements();
2061 unsigned i = 0;
2062 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
2063 if (Entry.Loc.getOffset()) {
2064 i = 2;
2065 Asm->EmitDwarfRegOp(Entry.Loc);
2066 Asm->OutStreamer.AddComment("DW_OP_deref");
2067 Asm->EmitInt8(dwarf::DW_OP_deref);
2068 Asm->OutStreamer.AddComment("DW_OP_plus_uconst");
2069 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2070 Asm->EmitSLEB128(DV.getAddrElement(1));
2071 } else {
2072 // If first address element is OpPlus then emit
2073 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
2074 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
2075 Asm->EmitDwarfRegOp(Loc);
2076 i = 2;
2077 }
2078 } else {
2079 Asm->EmitDwarfRegOp(Entry.Loc);
2080 }
2081
2082 // Emit remaining complex address elements.
2083 for (; i < N; ++i) {
2084 uint64_t Element = DV.getAddrElement(i);
2085 if (Element == DIBuilder::OpPlus) {
2086 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2087 Asm->EmitULEB128(DV.getAddrElement(++i));
2088 } else if (Element == DIBuilder::OpDeref)
2089 Asm->EmitInt8(dwarf::DW_OP_deref);
2090 else llvm_unreachable("unknown Opcode found in complex address");
2091 }
Devang Patel3e021532011-04-28 02:22:40 +00002092 }
Devang Patel3e021532011-04-28 02:22:40 +00002093 }
Devang Pateled9fd452011-07-08 16:49:43 +00002094 // else ... ignore constant fp. There is not any good way to
2095 // to represent them here in dwarf.
Rafael Espindolad23bfb82011-05-27 22:05:41 +00002096 Asm->OutStreamer.EmitLabel(end);
Devang Patel9fc11702010-05-25 23:40:22 +00002097 }
2098 }
Bill Wendling480ff322009-05-20 23:21:38 +00002099}
2100
2101/// EmitDebugARanges - Emit visible names into a debug aranges section.
2102///
2103void DwarfDebug::EmitDebugARanges() {
2104 // Start the dwarf aranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002105 Asm->OutStreamer.SwitchSection(
2106 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002107}
2108
Devang Patel930143b2009-11-21 02:48:08 +00002109/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling480ff322009-05-20 23:21:38 +00002110///
Devang Patel930143b2009-11-21 02:48:08 +00002111void DwarfDebug::emitDebugRanges() {
Bill Wendling480ff322009-05-20 23:21:38 +00002112 // Start the dwarf ranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002113 Asm->OutStreamer.SwitchSection(
Devang Patel12563b32010-04-16 23:33:45 +00002114 Asm->getObjFileLowering().getDwarfRangesSection());
Devang Patel6c74a872010-04-27 19:46:33 +00002115 unsigned char Size = Asm->getTargetData().getPointerSize();
2116 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002117 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Patel6c74a872010-04-27 19:46:33 +00002118 I != E; ++I) {
2119 if (*I)
2120 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0);
Devang Patel12563b32010-04-16 23:33:45 +00002121 else
Devang Patel6c74a872010-04-27 19:46:33 +00002122 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel12563b32010-04-16 23:33:45 +00002123 }
Bill Wendling480ff322009-05-20 23:21:38 +00002124}
2125
Devang Patel930143b2009-11-21 02:48:08 +00002126/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling480ff322009-05-20 23:21:38 +00002127///
Devang Patel930143b2009-11-21 02:48:08 +00002128void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00002129 if (const MCSection *LineInfo =
Chris Lattner1472cf52009-08-02 07:24:22 +00002130 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling480ff322009-05-20 23:21:38 +00002131 // Start the dwarf macinfo section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002132 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00002133 }
2134}
2135
Devang Patel930143b2009-11-21 02:48:08 +00002136/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling480ff322009-05-20 23:21:38 +00002137/// Section Header:
2138/// 1. length of section
2139/// 2. Dwarf version number
2140/// 3. address size.
2141///
2142/// Entries (one "entry" for each function that was inlined):
2143///
2144/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2145/// otherwise offset into __debug_str for regular function name.
2146/// 2. offset into __debug_str section for regular function name.
2147/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2148/// instances for the function.
2149///
2150/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2151/// inlined instance; the die_offset points to the inlined_subroutine die in the
2152/// __debug_info section, and the low_pc is the starting address for the
2153/// inlining instance.
Devang Patel930143b2009-11-21 02:48:08 +00002154void DwarfDebug::emitDebugInlineInfo() {
Chris Lattner3a383cb2010-04-05 00:13:49 +00002155 if (!Asm->MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling480ff322009-05-20 23:21:38 +00002156 return;
2157
Devang Patel1a0df9a2010-05-10 22:49:55 +00002158 if (!FirstCU)
Bill Wendling480ff322009-05-20 23:21:38 +00002159 return;
2160
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002161 Asm->OutStreamer.SwitchSection(
2162 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattnerf5c834f2010-01-22 22:09:00 +00002163
Chris Lattner566cae92010-03-09 23:52:58 +00002164 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002165 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
2166 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002167
Chris Lattnera179b522010-04-04 19:25:43 +00002168 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00002169
Chris Lattner566cae92010-03-09 23:52:58 +00002170 Asm->OutStreamer.AddComment("Dwarf Version");
2171 Asm->EmitInt16(dwarf::DWARF_VERSION);
2172 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002173 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00002174
Devang Patel32cc43c2010-05-07 20:54:48 +00002175 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002176 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach042483e2009-11-21 23:12:12 +00002177
Devang Patel32cc43c2010-05-07 20:54:48 +00002178 const MDNode *Node = *I;
2179 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach00e9c612009-11-22 19:20:36 +00002180 = InlineInfo.find(Node);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002181 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patel80ae3492009-08-28 23:24:31 +00002182 DISubprogram SP(Node);
Devang Patel2d9caf92009-11-25 17:36:49 +00002183 StringRef LName = SP.getLinkageName();
2184 StringRef Name = SP.getName();
Bill Wendling480ff322009-05-20 23:21:38 +00002185
Chris Lattner566cae92010-03-09 23:52:58 +00002186 Asm->OutStreamer.AddComment("MIPS linkage name");
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002187 if (LName.empty()) {
2188 Asm->OutStreamer.EmitBytes(Name, 0);
2189 Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002190 } else
Chris Lattner70a4fce2010-04-04 23:25:33 +00002191 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
2192 DwarfStrSectionSym);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002193
Chris Lattner566cae92010-03-09 23:52:58 +00002194 Asm->OutStreamer.AddComment("Function name");
Chris Lattner70a4fce2010-04-04 23:25:33 +00002195 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner9efd1182010-04-04 19:09:29 +00002196 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling480ff322009-05-20 23:21:38 +00002197
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002198 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling480ff322009-05-20 23:21:38 +00002199 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner7bde8c02010-04-04 18:52:31 +00002200 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner085b6522010-03-09 00:31:02 +00002201 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00002202
Chris Lattner7bde8c02010-04-04 18:52:31 +00002203 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002204 Asm->OutStreamer.EmitSymbolValue(LI->first,
2205 Asm->getTargetData().getPointerSize(),0);
Bill Wendling480ff322009-05-20 23:21:38 +00002206 }
2207 }
2208
Chris Lattnera179b522010-04-04 19:25:43 +00002209 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00002210}