blob: 037b4ace02636f3933b445ce908fbec81b188a73 [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"
Devang Patel5eb43192011-04-12 17:40:32 +000017#include "DwarfCompileUnit.h"
Bill Wendling30346342010-04-05 22:59:21 +000018#include "llvm/Constants.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000019#include "llvm/Module.h"
Devang Patel2d9e5322011-01-20 00:02:16 +000020#include "llvm/Instructions.h"
David Greene829b3e82009-08-19 21:52:55 +000021#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000022#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000023#include "llvm/MC/MCAsmInfo.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000024#include "llvm/MC/MCSection.h"
Chris Lattner4b7dadb2009-08-19 05:49:37 +000025#include "llvm/MC/MCStreamer.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000026#include "llvm/MC/MCSymbol.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000027#include "llvm/Target/TargetData.h"
Anton Korobeynikov2f931282011-01-10 12:39:04 +000028#include "llvm/Target/TargetFrameLowering.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000029#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner21dc46e2010-04-04 18:06:11 +000030#include "llvm/Target/TargetMachine.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000031#include "llvm/Target/TargetRegisterInfo.h"
Devang Patel61880932010-04-19 19:14:02 +000032#include "llvm/Target/TargetOptions.h"
Chris Lattner3f3fb972010-04-05 05:24:55 +000033#include "llvm/Analysis/DebugInfo.h"
Devang Patela5d93242011-02-24 18:49:30 +000034#include "llvm/Analysis/DIBuilder.h"
Devang Patela86114b2010-10-25 20:45:32 +000035#include "llvm/ADT/Statistic.h"
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +000036#include "llvm/ADT/STLExtras.h"
Chris Lattner06fa1762009-08-24 03:52:50 +000037#include "llvm/ADT/StringExtras.h"
Devang Patel6c74a872010-04-27 19:46:33 +000038#include "llvm/Support/CommandLine.h"
Daniel Dunbarcdf01b52009-10-13 06:47:08 +000039#include "llvm/Support/Debug.h"
40#include "llvm/Support/ErrorHandling.h"
Devang Patel1973df22010-01-26 21:39:14 +000041#include "llvm/Support/ValueHandle.h"
Chris Lattnerf5c834f2010-01-22 22:09:00 +000042#include "llvm/Support/FormattedStream.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000043#include "llvm/Support/Timer.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000044#include "llvm/Support/Path.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000045using namespace llvm;
46
Jim Grosbacha8683bb2010-07-21 21:21:52 +000047static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print",
Devang Patel30265c42010-07-07 20:12:52 +000048 cl::Hidden,
Devang Patel6c74a872010-04-27 19:46:33 +000049 cl::desc("Disable debug info printing"));
50
Dan Gohman7421ae42010-05-07 01:08:53 +000051static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +000052 cl::desc("Make an absence of debug location information explicit."),
Dan Gohman7421ae42010-05-07 01:08:53 +000053 cl::init(false));
54
Bill Wendlingfcc14142010-04-07 09:28:04 +000055namespace {
56 const char *DWARFGroupName = "DWARF Emission";
57 const char *DbgTimerName = "DWARF Debug Writer";
58} // end anonymous namespace
59
Bill Wendling2f921f82009-05-15 09:23:25 +000060//===----------------------------------------------------------------------===//
61
62/// Configuration values for initial hash set sizes (log2).
63///
Bill Wendling2f921f82009-05-15 09:23:25 +000064static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling2f921f82009-05-15 09:23:25 +000065
66namespace llvm {
67
Nick Lewycky019d2552011-07-29 03:49:23 +000068DIType DbgVariable::getType() const {
Devang Patelf20c4f72011-04-12 22:53:02 +000069 DIType Ty = Var.getType();
70 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
71 // addresses instead.
72 if (Var.isBlockByrefVariable()) {
73 /* Byref variables, in Blocks, are declared by the programmer as
74 "SomeType VarName;", but the compiler creates a
75 __Block_byref_x_VarName struct, and gives the variable VarName
76 either the struct, or a pointer to the struct, as its type. This
77 is necessary for various behind-the-scenes things the compiler
78 needs to do with by-reference variables in blocks.
79
80 However, as far as the original *programmer* is concerned, the
81 variable should still have type 'SomeType', as originally declared.
82
83 The following function dives into the __Block_byref_x_VarName
84 struct to find the original type of the variable. This will be
85 passed back to the code generating the type for the Debug
86 Information Entry for the variable 'VarName'. 'VarName' will then
87 have the original type 'SomeType' in its debug information.
88
89 The original type 'SomeType' will be the type of the field named
90 'VarName' inside the __Block_byref_x_VarName struct.
91
92 NOTE: In order for this to not completely fail on the debugger
93 side, the Debug Information Entry for the variable VarName needs to
94 have a DW_AT_location that tells the debugger how to unwind through
95 the pointers and __Block_byref_x_VarName struct to find the actual
96 value of the variable. The function addBlockByrefType does this. */
97 DIType subType = Ty;
98 unsigned tag = Ty.getTag();
99
100 if (tag == dwarf::DW_TAG_pointer_type) {
101 DIDerivedType DTy = DIDerivedType(Ty);
102 subType = DTy.getTypeDerivedFrom();
103 }
104
105 DICompositeType blockStruct = DICompositeType(subType);
106 DIArray Elements = blockStruct.getTypeArray();
107
108 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
109 DIDescriptor Element = Elements.getElement(i);
110 DIDerivedType DT = DIDerivedType(Element);
111 if (getName() == DT.getName())
112 return (DT.getTypeDerivedFrom());
Devang Patel6d9f9fe2010-08-09 21:01:39 +0000113 }
114 return Ty;
115 }
Devang Patelf20c4f72011-04-12 22:53:02 +0000116 return Ty;
117}
Bill Wendling2f921f82009-05-15 09:23:25 +0000118
Chris Lattnerf5d06362010-04-05 04:09:20 +0000119} // end llvm namespace
Bill Wendling2f921f82009-05-15 09:23:25 +0000120
Chris Lattnerf0d6bd32010-04-05 05:11:15 +0000121DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
Devang Patel1a0df9a2010-05-10 22:49:55 +0000122 : Asm(A), MMI(Asm->MMI), FirstCU(0),
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000123 AbbreviationsSet(InitAbbreviationsSetSize),
Devang Patel7e623022011-08-10 20:55:27 +0000124 PrevLabel(NULL) {
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000125 NextStringPoolNumber = 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000126
Rafael Espindolaa7160962011-05-06 14:56:22 +0000127 DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0;
Chris Lattnere58b5472010-04-04 23:10:38 +0000128 DwarfStrSectionSym = TextSectionSym = 0;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000129 DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = 0;
Devang Patel9fc11702010-05-25 23:40:22 +0000130 FunctionBeginSym = FunctionEndSym = 0;
Dan Gohman6e681a52010-06-18 15:56:31 +0000131 {
132 NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
133 beginModule(M);
Torok Edwinf8dba242010-04-07 10:44:46 +0000134 }
Bill Wendling2f921f82009-05-15 09:23:25 +0000135}
136DwarfDebug::~DwarfDebug() {
Bill Wendling2f921f82009-05-15 09:23:25 +0000137}
138
Eric Christophera7b61892011-11-07 09:18:38 +0000139/// EmitSectionSym - Switch to the specified MCSection and emit an assembler
140/// temporary label to it if SymbolStem is specified.
141static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section,
142 const char *SymbolStem = 0) {
143 Asm->OutStreamer.SwitchSection(Section);
144 if (!SymbolStem) return 0;
145
146 MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem);
147 Asm->OutStreamer.EmitLabel(TmpSym);
148 return TmpSym;
149}
150
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000151MCSymbol *DwarfDebug::getStringPool() {
152 return Asm->GetTempSymbol("section_str");
153}
154
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000155MCSymbol *DwarfDebug::getStringPoolEntry(StringRef Str) {
156 std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str];
157 if (Entry.first) return Entry.first;
158
159 Entry.second = NextStringPoolNumber++;
Chris Lattnera179b522010-04-04 19:25:43 +0000160 return Entry.first = Asm->GetTempSymbol("string", Entry.second);
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000161}
162
Eric Christophera7b61892011-11-07 09:18:38 +0000163MCSymbol *DwarfDebug::getDwarfStrSectionSym(void) {
164 if (DwarfStrSectionSym) return DwarfStrSectionSym;
165 DwarfStrSectionSym =
166 EmitSectionSym(Asm, Asm->getObjFileLowering().getDwarfStrSection(),
167 "section_str");
168 return DwarfStrSectionSym;
169}
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000170
Devang Patel930143b2009-11-21 02:48:08 +0000171/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling2f921f82009-05-15 09:23:25 +0000172///
Devang Patel930143b2009-11-21 02:48:08 +0000173void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000174 // Profile the node so that we can make it unique.
175 FoldingSetNodeID ID;
176 Abbrev.Profile(ID);
177
178 // Check the set for priors.
179 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
180
181 // If it's newly added.
182 if (InSet == &Abbrev) {
183 // Add to abbreviation list.
184 Abbreviations.push_back(&Abbrev);
185
186 // Assign the vector position + 1 as its number.
187 Abbrev.setNumber(Abbreviations.size());
188 } else {
189 // Assign existing abbreviation number.
190 Abbrev.setNumber(InSet->getNumber());
191 }
192}
193
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000194/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
Devang Patel43ef34d2010-01-05 01:46:14 +0000195/// printer to not emit usual symbol prefix before the symbol name is used then
196/// return linkage name after skipping this special LLVM prefix.
197static StringRef getRealLinkageName(StringRef LinkageName) {
198 char One = '\1';
199 if (LinkageName.startswith(StringRef(&One, 1)))
200 return LinkageName.substr(1);
201 return LinkageName;
202}
203
Jim Grosbach042483e2009-11-21 23:12:12 +0000204/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel930143b2009-11-21 02:48:08 +0000205/// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
206/// If there are global variables in this scope then create and insert
207/// DIEs for these variables.
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000208DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU,
209 const MDNode *SPNode) {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000210 DIE *SPDie = SPCU->getDIE(SPNode);
Devang Patela37a95e2010-07-07 22:20:57 +0000211
Chris Lattner3a383cb2010-04-05 00:13:49 +0000212 assert(SPDie && "Unable to find subprogram DIE!");
213 DISubprogram SP(SPNode);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000214
Devang Patel1d6bbd42011-04-22 23:10:17 +0000215 DISubprogram SPDecl = SP.getFunctionDeclaration();
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000216 if (!SPDecl.isSubprogram()) {
Devang Patel1d6bbd42011-04-22 23:10:17 +0000217 // There is not any need to generate specification DIE for a function
218 // defined at compile unit level. If a function is defined inside another
219 // function then gdb prefers the definition at top level and but does not
220 // expect specification DIE in parent function. So avoid creating
221 // specification DIE for a function defined inside a function.
222 if (SP.isDefinition() && !SP.getContext().isCompileUnit() &&
223 !SP.getContext().isFile() &&
224 !isSubprogramContext(SP.getContext())) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000225 SPCU->addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Devang Patel1d6bbd42011-04-22 23:10:17 +0000226
227 // Add arguments.
228 DICompositeType SPTy = SP.getType();
229 DIArray Args = SPTy.getTypeArray();
230 unsigned SPTag = SPTy.getTag();
231 if (SPTag == dwarf::DW_TAG_subroutine_type)
232 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
233 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
234 DIType ATy = DIType(DIType(Args.getElement(i)));
235 SPCU->addType(Arg, ATy);
236 if (ATy.isArtificial())
237 SPCU->addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
238 SPDie->addChild(Arg);
239 }
240 DIE *SPDeclDie = SPDie;
241 SPDie = new DIE(dwarf::DW_TAG_subprogram);
242 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
243 SPDeclDie);
244 SPCU->addDie(SPDie);
245 }
Chris Lattner3a383cb2010-04-05 00:13:49 +0000246 }
Devang Patela37a95e2010-07-07 22:20:57 +0000247 // Pick up abstract subprogram DIE.
248 if (DIE *AbsSPDIE = AbstractSPDies.lookup(SPNode)) {
249 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patelf20c4f72011-04-12 22:53:02 +0000250 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin,
251 dwarf::DW_FORM_ref4, AbsSPDIE);
Devang Patela37a95e2010-07-07 22:20:57 +0000252 SPCU->addDie(SPDie);
253 }
254
Devang Patelf20c4f72011-04-12 22:53:02 +0000255 SPCU->addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
256 Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber()));
257 SPCU->addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
258 Asm->GetTempSymbol("func_end", Asm->getFunctionNumber()));
Chris Lattner3a383cb2010-04-05 00:13:49 +0000259 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
260 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
Devang Patelf20c4f72011-04-12 22:53:02 +0000261 SPCU->addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Devang Patel6efc8e52010-02-06 01:02:37 +0000262
Chris Lattner3a383cb2010-04-05 00:13:49 +0000263 return SPDie;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000264}
265
Jim Grosbach042483e2009-11-21 23:12:12 +0000266/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel930143b2009-11-21 02:48:08 +0000267/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000268DIE *DwarfDebug::constructLexicalScopeDIE(CompileUnit *TheCU,
269 LexicalScope *Scope) {
Devang Patel6c74a872010-04-27 19:46:33 +0000270 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
271 if (Scope->isAbstractScope())
272 return ScopeDIE;
273
Devang Patel7e623022011-08-10 20:55:27 +0000274 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Devang Patel6c74a872010-04-27 19:46:33 +0000275 if (Ranges.empty())
276 return 0;
277
Devang Patel7e623022011-08-10 20:55:27 +0000278 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patel6c74a872010-04-27 19:46:33 +0000279 if (Ranges.size() > 1) {
280 // .debug_range section has not been laid out yet. Emit offset in
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000281 // .debug_range as a uint, size 4, for now. emitDIE will handle
Devang Patel6c74a872010-04-27 19:46:33 +0000282 // DW_AT_ranges appropriately.
Devang Patelf20c4f72011-04-12 22:53:02 +0000283 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel784077e2011-08-10 23:58:09 +0000284 DebugRangeSymbols.size()
285 * Asm->getTargetData().getPointerSize());
Devang Patel7e623022011-08-10 20:55:27 +0000286 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel6c74a872010-04-27 19:46:33 +0000287 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patel9fc11702010-05-25 23:40:22 +0000288 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
289 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
Devang Patel6c74a872010-04-27 19:46:33 +0000290 }
291 DebugRangeSymbols.push_back(NULL);
292 DebugRangeSymbols.push_back(NULL);
293 return ScopeDIE;
294 }
295
Devang Patel9fc11702010-05-25 23:40:22 +0000296 const MCSymbol *Start = getLabelBeforeInsn(RI->first);
297 const MCSymbol *End = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000298
Devang Patel9fc11702010-05-25 23:40:22 +0000299 if (End == 0) return 0;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000300
Chris Lattnere13c3722010-03-09 01:58:53 +0000301 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
302 assert(End->isDefined() && "Invalid end label for an inlined scope!");
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000303
Devang Patelf20c4f72011-04-12 22:53:02 +0000304 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start);
305 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, End);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000306
307 return ScopeDIE;
308}
309
Devang Patel930143b2009-11-21 02:48:08 +0000310/// constructInlinedScopeDIE - This scope represents inlined body of
311/// a function. Construct DIE to represent this concrete inlined copy
312/// of the function.
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000313DIE *DwarfDebug::constructInlinedScopeDIE(CompileUnit *TheCU,
314 LexicalScope *Scope) {
Devang Patel7e623022011-08-10 20:55:27 +0000315 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000316 assert(Ranges.empty() == false &&
317 "LexicalScope does not have instruction markers!");
Devang Patel6c74a872010-04-27 19:46:33 +0000318
Devang Patelf098ce22011-07-27 00:34:13 +0000319 if (!Scope->getScopeNode())
320 return NULL;
321 DIScope DS(Scope->getScopeNode());
322 DISubprogram InlinedSP = getDISubprogram(DS);
Devang Patelf098ce22011-07-27 00:34:13 +0000323 DIE *OriginDIE = TheCU->getDIE(InlinedSP);
324 if (!OriginDIE) {
325 DEBUG(dbgs() << "Unable to find original DIE for inlined subprogram.");
326 return NULL;
327 }
328
Devang Patel7e623022011-08-10 20:55:27 +0000329 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patel9fc11702010-05-25 23:40:22 +0000330 const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first);
331 const MCSymbol *EndLabel = getLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +0000332
Devang Patel4c6bd662010-07-08 22:39:20 +0000333 if (StartLabel == 0 || EndLabel == 0) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000334 assert(0 && "Unexpected Start and End labels for a inlined scope!");
Devang Patel6c74a872010-04-27 19:46:33 +0000335 return 0;
336 }
Chris Lattnere13c3722010-03-09 01:58:53 +0000337 assert(StartLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000338 "Invalid starting label for an inlined scope!");
Chris Lattnere13c3722010-03-09 01:58:53 +0000339 assert(EndLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +0000340 "Invalid end label for an inlined scope!");
Devang Patel6c74a872010-04-27 19:46:33 +0000341
Devang Patel73bc1722011-05-05 17:54:26 +0000342 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
Devang Patelf20c4f72011-04-12 22:53:02 +0000343 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
344 dwarf::DW_FORM_ref4, OriginDIE);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000345
Devang Patelf098ce22011-07-27 00:34:13 +0000346 if (Ranges.size() > 1) {
347 // .debug_range section has not been laid out yet. Emit offset in
348 // .debug_range as a uint, size 4, for now. emitDIE will handle
349 // DW_AT_ranges appropriately.
350 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel784077e2011-08-10 23:58:09 +0000351 DebugRangeSymbols.size()
352 * Asm->getTargetData().getPointerSize());
Devang Patel7e623022011-08-10 20:55:27 +0000353 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patelf098ce22011-07-27 00:34:13 +0000354 RE = Ranges.end(); RI != RE; ++RI) {
355 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
356 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
357 }
358 DebugRangeSymbols.push_back(NULL);
359 DebugRangeSymbols.push_back(NULL);
360 } else {
Devang Patel784077e2011-08-10 23:58:09 +0000361 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
362 StartLabel);
363 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
364 EndLabel);
Devang Patelf098ce22011-07-27 00:34:13 +0000365 }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000366
367 InlinedSubprogramDIEs.insert(OriginDIE);
368
369 // Track the start label for this inlined function.
Devang Patelf098ce22011-07-27 00:34:13 +0000370 //.debug_inlined section specification does not clearly state how
371 // to emit inlined scope that is split into multiple instruction ranges.
372 // For now, use first instruction range and emit low_pc/high_pc pair and
373 // corresponding .debug_inlined section entry for this pair.
Devang Patel32cc43c2010-05-07 20:54:48 +0000374 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000375 I = InlineInfo.find(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000376
377 if (I == InlineInfo.end()) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000378 InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000379 InlinedSPNodes.push_back(InlinedSP);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000380 } else
Chris Lattner085b6522010-03-09 00:31:02 +0000381 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000382
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000383 DILocation DL(Scope->getInlinedAt());
Devang Patelf20c4f72011-04-12 22:53:02 +0000384 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, TheCU->getID());
385 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000386
387 return ScopeDIE;
388}
389
Devang Patel930143b2009-11-21 02:48:08 +0000390/// constructScopeDIE - Construct a DIE for this scope.
Devang Patel3acc70e2011-08-15 22:04:40 +0000391DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) {
Devang Patel3b548aa2010-03-08 20:52:55 +0000392 if (!Scope || !Scope->getScopeNode())
393 return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000394
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000395 SmallVector<DIE *, 8> Children;
Devang Patel6c622ef2011-03-01 22:58:55 +0000396
397 // Collect arguments for current function.
Devang Patel7e623022011-08-10 20:55:27 +0000398 if (LScopes.isCurrentFunctionScope(Scope))
Devang Patel6c622ef2011-03-01 22:58:55 +0000399 for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i)
400 if (DbgVariable *ArgDV = CurrentFnArguments[i])
Devang Patel3acc70e2011-08-15 22:04:40 +0000401 if (DIE *Arg =
402 TheCU->constructVariableDIE(ArgDV, Scope->isAbstractScope()))
Devang Patel6c622ef2011-03-01 22:58:55 +0000403 Children.push_back(Arg);
404
Eric Christopherf84354b2011-10-03 15:49:16 +0000405 // Collect lexical scope children first.
Devang Patel7e623022011-08-10 20:55:27 +0000406 const SmallVector<DbgVariable *, 8> &Variables = ScopeVariables.lookup(Scope);
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000407 for (unsigned i = 0, N = Variables.size(); i < N; ++i)
Devang Patel3acc70e2011-08-15 22:04:40 +0000408 if (DIE *Variable =
409 TheCU->constructVariableDIE(Variables[i], Scope->isAbstractScope()))
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000410 Children.push_back(Variable);
Devang Patel7e623022011-08-10 20:55:27 +0000411 const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren();
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000412 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
Devang Patel3acc70e2011-08-15 22:04:40 +0000413 if (DIE *Nested = constructScopeDIE(TheCU, Scopes[j]))
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000414 Children.push_back(Nested);
Devang Patel3b548aa2010-03-08 20:52:55 +0000415 DIScope DS(Scope->getScopeNode());
416 DIE *ScopeDIE = NULL;
417 if (Scope->getInlinedAt())
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000418 ScopeDIE = constructInlinedScopeDIE(TheCU, Scope);
Devang Patel3b548aa2010-03-08 20:52:55 +0000419 else if (DS.isSubprogram()) {
Devang Pateld10b2af2010-06-28 20:53:04 +0000420 ProcessedSPNodes.insert(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000421 if (Scope->isAbstractScope()) {
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000422 ScopeDIE = TheCU->getDIE(DS);
Devang Patela37a95e2010-07-07 22:20:57 +0000423 // Note down abstract DIE.
424 if (ScopeDIE)
425 AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
426 }
Devang Patel3b548aa2010-03-08 20:52:55 +0000427 else
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000428 ScopeDIE = updateSubprogramScopeDIE(TheCU, DS);
Devang Patel3b548aa2010-03-08 20:52:55 +0000429 }
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000430 else {
431 // There is no need to emit empty lexical block DIE.
432 if (Children.empty())
433 return NULL;
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000434 ScopeDIE = constructLexicalScopeDIE(TheCU, Scope);
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000435 }
436
Devang Patel23b2ae62010-03-29 22:59:58 +0000437 if (!ScopeDIE) return NULL;
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000438
Devang Patel5f1b4cd2011-02-19 01:31:27 +0000439 // Add children
440 for (SmallVector<DIE *, 8>::iterator I = Children.begin(),
441 E = Children.end(); I != E; ++I)
442 ScopeDIE->addChild(*I);
Devang Patel04d2f2d2009-11-24 01:14:22 +0000443
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000444 if (DS.isSubprogram())
Devang Pateld2dfc5e2011-08-15 22:24:32 +0000445 TheCU->addPubTypes(DISubprogram(DS));
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000446
Devang Patel04d2f2d2009-11-24 01:14:22 +0000447 return ScopeDIE;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000448}
449
Bill Wendling2b128d72009-05-20 23:19:06 +0000450/// GetOrCreateSourceID - Look up the source id with the given directory and
451/// source file names. If none currently exists, create a new id and insert it
452/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
453/// maps as well.
Devang Patele01b75c2011-03-24 20:30:50 +0000454unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
455 StringRef DirName) {
Devang Patel871d0b12010-09-16 20:57:49 +0000456 // If FE did not provide a file name, then assume stdin.
457 if (FileName.empty())
Devang Patele01b75c2011-03-24 20:30:50 +0000458 return GetOrCreateSourceID("<stdin>", StringRef());
459
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000460 // TODO: this might not belong here. See if we can factor this better.
461 if (DirName == CompilationDir)
462 DirName = "";
463
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000464 unsigned SrcId = SourceIdMap.size()+1;
465 std::pair<std::string, std::string> SourceName =
466 std::make_pair(FileName, DirName);
467 std::pair<std::pair<std::string, std::string>, unsigned> Entry =
468 make_pair(SourceName, SrcId);
Devang Patel871d0b12010-09-16 20:57:49 +0000469
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000470 std::map<std::pair<std::string, std::string>, unsigned>::iterator I;
471 bool NewlyInserted;
472 tie(I, NewlyInserted) = SourceIdMap.insert(Entry);
473 if (!NewlyInserted)
474 return I->second;
Bill Wendling2b128d72009-05-20 23:19:06 +0000475
Rafael Espindola67c6ab82010-11-18 02:04:25 +0000476 // Print out a .file directive to specify files for .loc directives.
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000477 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, Entry.first.second,
478 Entry.first.first);
Bill Wendling2b128d72009-05-20 23:19:06 +0000479
480 return SrcId;
481}
482
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000483/// constructCompileUnit - Create new CompileUnit for the given
Devang Patel1a0df9a2010-05-10 22:49:55 +0000484/// metadata node with tag DW_TAG_compile_unit.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000485CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) {
Devang Patel80ae3492009-08-28 23:24:31 +0000486 DICompileUnit DIUnit(N);
Devang Patel2d9caf92009-11-25 17:36:49 +0000487 StringRef FN = DIUnit.getFilename();
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000488 CompilationDir = DIUnit.getDirectory();
489 unsigned ID = GetOrCreateSourceID(FN, CompilationDir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000490
491 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Devang Patelf20c4f72011-04-12 22:53:02 +0000492 CompileUnit *NewCU = new CompileUnit(ID, Die, Asm, this);
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000493 NewCU->addString(Die, dwarf::DW_AT_producer, DIUnit.getProducer());
Devang Patelf20c4f72011-04-12 22:53:02 +0000494 NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2,
495 DIUnit.getLanguage());
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000496 NewCU->addString(Die, dwarf::DW_AT_name, FN);
Devang Patelbd798ce2010-04-26 22:54:28 +0000497 // Use DW_AT_entry_pc instead of DW_AT_low_pc/DW_AT_high_pc pair. This
498 // simplifies debug range entries.
Devang Patelf20c4f72011-04-12 22:53:02 +0000499 NewCU->addUInt(Die, dwarf::DW_AT_entry_pc, dwarf::DW_FORM_addr, 0);
Devang Pateld22ed622010-03-22 23:11:36 +0000500 // DW_AT_stmt_list is a offset of line number information for this
Devang Patel4a213872010-08-24 00:06:12 +0000501 // compile unit in debug_line section.
Nick Lewycky479a8fe2011-10-17 23:27:36 +0000502 if (Asm->MAI->doesDwarfRequireRelocationForSectionOffset())
Rafael Espindolaa7558912011-05-04 17:44:06 +0000503 NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Devang Patelf20c4f72011-04-12 22:53:02 +0000504 Asm->GetTempSymbol("section_line"));
Devang Patelea636392010-08-31 23:50:19 +0000505 else
Devang Patelf20c4f72011-04-12 22:53:02 +0000506 NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0);
Bill Wendling2b128d72009-05-20 23:19:06 +0000507
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000508 if (!CompilationDir.empty())
509 NewCU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir);
Bill Wendling2b128d72009-05-20 23:19:06 +0000510 if (DIUnit.isOptimized())
Devang Patelf20c4f72011-04-12 22:53:02 +0000511 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Bill Wendling2b128d72009-05-20 23:19:06 +0000512
Devang Patel2d9caf92009-11-25 17:36:49 +0000513 StringRef Flags = DIUnit.getFlags();
514 if (!Flags.empty())
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +0000515 NewCU->addString(Die, dwarf::DW_AT_APPLE_flags, Flags);
Devang Patelf20c4f72011-04-12 22:53:02 +0000516
Nick Lewycky479a8fe2011-10-17 23:27:36 +0000517 if (unsigned RVer = DIUnit.getRunTimeVersion())
Devang Patelf20c4f72011-04-12 22:53:02 +0000518 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendling2b128d72009-05-20 23:19:06 +0000519 dwarf::DW_FORM_data1, RVer);
520
Devang Patel1a0df9a2010-05-10 22:49:55 +0000521 if (!FirstCU)
522 FirstCU = NewCU;
523 CUMap.insert(std::make_pair(N, NewCU));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000524 return NewCU;
Devang Patel1a0df9a2010-05-10 22:49:55 +0000525}
526
Devang Patel1a0df9a2010-05-10 22:49:55 +0000527/// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel1f4f98d2011-08-15 23:36:40 +0000528void DwarfDebug::constructSubprogramDIE(CompileUnit *TheCU,
529 const MDNode *N) {
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000530 CompileUnit *&CURef = SPMap[N];
531 if (CURef)
532 return;
533 CURef = TheCU;
534
Devang Patel80ae3492009-08-28 23:24:31 +0000535 DISubprogram SP(N);
Bill Wendling2b128d72009-05-20 23:19:06 +0000536 if (!SP.isDefinition())
537 // This is a method declaration which will be handled while constructing
538 // class type.
Devang Patel0751a282009-06-26 01:49:18 +0000539 return;
Bill Wendling2b128d72009-05-20 23:19:06 +0000540
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000541 DISubprogram SPDecl = SP.getFunctionDeclaration();
542 DIE *DeclDie = NULL;
543 if (SPDecl.isSubprogram()) {
544 DeclDie = TheCU->getOrCreateSubprogramDIE(SPDecl);
545 }
546
Devang Patel89543712011-08-15 17:24:54 +0000547 DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP);
Stuart Hastings4bd3dd92010-04-06 21:38:29 +0000548
Rafael Espindola6cf4e832011-11-04 19:00:29 +0000549 if (DeclDie) {
550 // Refer function declaration directly.
551 TheCU->addDIEEntry(SubprogramDie, dwarf::DW_AT_specification,
552 dwarf::DW_FORM_ref4, DeclDie);
553 }
554
Stuart Hastings4bd3dd92010-04-06 21:38:29 +0000555 // Add to map.
Devang Patel1a0df9a2010-05-10 22:49:55 +0000556 TheCU->insertDIE(N, SubprogramDie);
Bill Wendling2b128d72009-05-20 23:19:06 +0000557
558 // Add to context owner.
Devang Patelf20c4f72011-04-12 22:53:02 +0000559 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel512001a2009-12-08 23:21:45 +0000560
Bill Wendling2b128d72009-05-20 23:19:06 +0000561 // Expose as global.
Devang Patel1a0df9a2010-05-10 22:49:55 +0000562 TheCU->addGlobal(SP.getName(), SubprogramDie);
Devang Patel04d2f2d2009-11-24 01:14:22 +0000563
Devang Patel0751a282009-06-26 01:49:18 +0000564 return;
Bill Wendling2b128d72009-05-20 23:19:06 +0000565}
566
Devang Patel07bb9ee2011-08-15 23:47:24 +0000567/// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
568/// as llvm.dbg.enum and llvm.dbg.ty
569void DwarfDebug::collectInfoFromNamedMDNodes(Module *M) {
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000570 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.sp"))
571 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
572 const MDNode *N = NMD->getOperand(i);
573 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
574 constructSubprogramDIE(CU, N);
575 }
576
577 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv"))
578 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
579 const MDNode *N = NMD->getOperand(i);
580 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000581 CU->createGlobalVariableDIE(N);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000582 }
583
Devang Patel07bb9ee2011-08-15 23:47:24 +0000584 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
585 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
586 DIType Ty(NMD->getOperand(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000587 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
588 CU->getOrCreateTypeDIE(Ty);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000589 }
590
591 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
592 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
593 DIType Ty(NMD->getOperand(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000594 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
595 CU->getOrCreateTypeDIE(Ty);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000596 }
597}
598
599/// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
600/// FIXME - Remove this when dragon-egg and llvm-gcc switch to DIBuilder.
601bool DwarfDebug::collectLegacyDebugInfo(Module *M) {
602 DebugInfoFinder DbgFinder;
603 DbgFinder.processModule(*M);
604
605 bool HasDebugInfo = false;
606 // Scan all the compile-units to see if there are any marked as the main
607 // unit. If not, we do not generate debug info.
608 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
609 E = DbgFinder.compile_unit_end(); I != E; ++I) {
610 if (DICompileUnit(*I).isMain()) {
611 HasDebugInfo = true;
612 break;
613 }
614 }
615 if (!HasDebugInfo) return false;
616
617 // Create all the compile unit DIEs.
618 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
619 E = DbgFinder.compile_unit_end(); I != E; ++I)
620 constructCompileUnit(*I);
621
622 // Create DIEs for each global variable.
623 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
624 E = DbgFinder.global_variable_end(); I != E; ++I) {
625 const MDNode *N = *I;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000626 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000627 CU->createGlobalVariableDIE(N);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000628 }
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000629
Devang Patel07bb9ee2011-08-15 23:47:24 +0000630 // Create DIEs for each subprogram.
631 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
632 E = DbgFinder.subprogram_end(); I != E; ++I) {
633 const MDNode *N = *I;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000634 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
635 constructSubprogramDIE(CU, N);
Devang Patel07bb9ee2011-08-15 23:47:24 +0000636 }
637
638 return HasDebugInfo;
639}
640
Devang Patel930143b2009-11-21 02:48:08 +0000641/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000642/// content. Create global DIEs and emit initial debug info sections.
Nick Lewycky019d2552011-07-29 03:49:23 +0000643/// This is invoked by the target AsmPrinter.
Chris Lattner11980022010-04-04 07:48:20 +0000644void DwarfDebug::beginModule(Module *M) {
Devang Patel6c74a872010-04-27 19:46:33 +0000645 if (DisableDebugInfoPrinting)
646 return;
647
Nick Lewycky019d2552011-07-29 03:49:23 +0000648 // If module has named metadata anchors then use them, otherwise scan the
649 // module using debug info finder to collect debug info.
Devang Patele02e5852011-05-03 16:45:22 +0000650 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
651 if (CU_Nodes) {
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000652 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
653 DICompileUnit CUNode(CU_Nodes->getOperand(i));
654 CompileUnit *CU = constructCompileUnit(CUNode);
655 DIArray GVs = CUNode.getGlobalVariables();
656 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
Devang Patel0ecbcbd2011-08-18 23:17:55 +0000657 CU->createGlobalVariableDIE(GVs.getElement(i));
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000658 DIArray SPs = CUNode.getSubprograms();
659 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
660 constructSubprogramDIE(CU, SPs.getElement(i));
661 DIArray EnumTypes = CUNode.getEnumTypes();
662 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
663 CU->getOrCreateTypeDIE(EnumTypes.getElement(i));
664 DIArray RetainedTypes = CUNode.getRetainedTypes();
665 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
666 CU->getOrCreateTypeDIE(RetainedTypes.getElement(i));
667 }
Devang Patel07bb9ee2011-08-15 23:47:24 +0000668 } else if (!collectLegacyDebugInfo(M))
669 return;
Devang Patele02e5852011-05-03 16:45:22 +0000670
Devang Patel07bb9ee2011-08-15 23:47:24 +0000671 collectInfoFromNamedMDNodes(M);
Devang Patele02e5852011-05-03 16:45:22 +0000672
Chris Lattner7cfa70e2010-04-05 02:19:28 +0000673 // Tell MMI that we have debug info.
674 MMI->setDebugInfoAvailability(true);
Devang Patele02e5852011-05-03 16:45:22 +0000675
Chris Lattnerd442aa32010-04-04 23:17:54 +0000676 // Emit initial sections.
Chris Lattner7cfa70e2010-04-05 02:19:28 +0000677 EmitSectionLabels();
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000678
Bill Wendling2b128d72009-05-20 23:19:06 +0000679 // Prime section data.
Chris Lattner5e693ed2009-07-28 03:13:23 +0000680 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendling2b128d72009-05-20 23:19:06 +0000681}
682
Devang Patel930143b2009-11-21 02:48:08 +0000683/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling2b128d72009-05-20 23:19:06 +0000684///
Devang Patel930143b2009-11-21 02:48:08 +0000685void DwarfDebug::endModule() {
Devang Patel1a0df9a2010-05-10 22:49:55 +0000686 if (!FirstCU) return;
Devang Patelf3b2db62010-06-28 18:25:03 +0000687 const Module *M = MMI->getModule();
Devang Patel7e623022011-08-10 20:55:27 +0000688 DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap;
Devang Patelf3b2db62010-06-28 18:25:03 +0000689
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000690 // Collect info for variables that were optimized out.
691 if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) {
692 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
693 DICompileUnit TheCU(CU_Nodes->getOperand(i));
694 DIArray Subprograms = TheCU.getSubprograms();
695 for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) {
696 DISubprogram SP(Subprograms.getElement(i));
697 if (ProcessedSPNodes.count(SP) != 0) continue;
698 if (!SP.Verify()) continue;
699 if (!SP.isDefinition()) continue;
Devang Patel59e27c52011-08-19 23:28:12 +0000700 DIArray Variables = SP.getVariables();
701 if (Variables.getNumElements() == 0) continue;
702
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000703 LexicalScope *Scope =
704 new LexicalScope(NULL, DIDescriptor(SP), NULL, false);
705 DeadFnScopeMap[SP] = Scope;
706
707 // Construct subprogram DIE and add variables DIEs.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000708 CompileUnit *SPCU = CUMap.lookup(TheCU);
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000709 assert(SPCU && "Unable to find Compile Unit!");
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000710 constructSubprogramDIE(SPCU, SP);
711 DIE *ScopeDIE = SPCU->getDIE(SP);
Devang Patel59e27c52011-08-19 23:28:12 +0000712 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
713 DIVariable DV(Variables.getElement(vi));
714 if (!DV.Verify()) continue;
715 DbgVariable *NewVar = new DbgVariable(DV, NULL);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000716 if (DIE *VariableDIE =
Devang Patel59e27c52011-08-19 23:28:12 +0000717 SPCU->constructVariableDIE(NewVar, Scope->isAbstractScope()))
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000718 ScopeDIE->addChild(VariableDIE);
719 }
Devang Patelf3b2db62010-06-28 18:25:03 +0000720 }
721 }
722 }
Bill Wendling2b128d72009-05-20 23:19:06 +0000723
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000724 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
725 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
726 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
727 DIE *ISP = *AI;
Devang Patelf20c4f72011-04-12 22:53:02 +0000728 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000729 }
730
Devang Patel89543712011-08-15 17:24:54 +0000731 // Emit DW_AT_containing_type attribute to connect types with their
732 // vtable holding type.
733 for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(),
734 CUE = CUMap.end(); CUI != CUE; ++CUI) {
735 CompileUnit *TheCU = CUI->second;
736 TheCU->constructContainingTypeDIEs();
Devang Pateleb57c592009-12-03 19:11:07 +0000737 }
738
Bill Wendling2b128d72009-05-20 23:19:06 +0000739 // Standard sections final addresses.
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000740 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnera179b522010-04-04 19:25:43 +0000741 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000742 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnera179b522010-04-04 19:25:43 +0000743 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendling2b128d72009-05-20 23:19:06 +0000744
745 // End text sections.
746 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000747 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnera179b522010-04-04 19:25:43 +0000748 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendling2b128d72009-05-20 23:19:06 +0000749 }
750
Bill Wendling2b128d72009-05-20 23:19:06 +0000751 // Compute DIE offsets and sizes.
Devang Patel930143b2009-11-21 02:48:08 +0000752 computeSizeAndOffsets();
Bill Wendling2b128d72009-05-20 23:19:06 +0000753
754 // Emit all the DIEs into a debug info section
Devang Patel930143b2009-11-21 02:48:08 +0000755 emitDebugInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000756
757 // Corresponding abbreviations into a abbrev section.
Devang Patel930143b2009-11-21 02:48:08 +0000758 emitAbbreviations();
Bill Wendling2b128d72009-05-20 23:19:06 +0000759
Bill Wendling2b128d72009-05-20 23:19:06 +0000760 // Emit info into a debug pubnames section.
Devang Patel930143b2009-11-21 02:48:08 +0000761 emitDebugPubNames();
Bill Wendling2b128d72009-05-20 23:19:06 +0000762
Devang Patel04d2f2d2009-11-24 01:14:22 +0000763 // Emit info into a debug pubtypes section.
764 emitDebugPubTypes();
765
Bill Wendling2b128d72009-05-20 23:19:06 +0000766 // Emit info into a debug loc section.
Devang Patel930143b2009-11-21 02:48:08 +0000767 emitDebugLoc();
Bill Wendling2b128d72009-05-20 23:19:06 +0000768
769 // Emit info into a debug aranges section.
770 EmitDebugARanges();
771
772 // Emit info into a debug ranges section.
Devang Patel930143b2009-11-21 02:48:08 +0000773 emitDebugRanges();
Bill Wendling2b128d72009-05-20 23:19:06 +0000774
775 // Emit info into a debug macinfo section.
Devang Patel930143b2009-11-21 02:48:08 +0000776 emitDebugMacInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000777
778 // Emit inline info.
Devang Patel930143b2009-11-21 02:48:08 +0000779 emitDebugInlineInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000780
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000781 // Emit info into a debug str section.
782 emitDebugStr();
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000783
Devang Pateld0701282010-08-02 17:32:15 +0000784 // clean up.
785 DeleteContainerSeconds(DeadFnScopeMap);
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000786 SPMap.clear();
Devang Patel1a0df9a2010-05-10 22:49:55 +0000787 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
788 E = CUMap.end(); I != E; ++I)
789 delete I->second;
790 FirstCU = NULL; // Reset for the next Module, if any.
Bill Wendling2b128d72009-05-20 23:19:06 +0000791}
792
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000793/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Devang Patelbb23a4a2011-08-10 21:50:54 +0000794DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV,
Chris Lattner915c5f92010-04-02 19:42:39 +0000795 DebugLoc ScopeLoc) {
Devang Patelbb23a4a2011-08-10 21:50:54 +0000796 LLVMContext &Ctx = DV->getContext();
797 // More then one inlined variable corresponds to one abstract variable.
798 DIVariable Var = cleanseInlinedVariable(DV, Ctx);
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000799 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000800 if (AbsDbgVariable)
801 return AbsDbgVariable;
802
Devang Patel7e623022011-08-10 20:55:27 +0000803 LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx));
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000804 if (!Scope)
805 return NULL;
806
Devang Patel99819b52011-08-15 19:01:20 +0000807 AbsDbgVariable = new DbgVariable(Var, NULL);
Devang Patel7e623022011-08-10 20:55:27 +0000808 addScopeVariable(Scope, AbsDbgVariable);
Devang Patelcfa8e9d2010-05-07 18:11:54 +0000809 AbstractVariables[Var] = AbsDbgVariable;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000810 return AbsDbgVariable;
811}
812
Nick Lewycky019d2552011-07-29 03:49:23 +0000813/// addCurrentFnArgument - If Var is a current function argument then add
814/// it to CurrentFnArguments list.
Devang Patel6c622ef2011-03-01 22:58:55 +0000815bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
Devang Patel7e623022011-08-10 20:55:27 +0000816 DbgVariable *Var, LexicalScope *Scope) {
817 if (!LScopes.isCurrentFunctionScope(Scope))
Devang Patel6c622ef2011-03-01 22:58:55 +0000818 return false;
819 DIVariable DV = Var->getVariable();
820 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
821 return false;
822 unsigned ArgNo = DV.getArgNumber();
823 if (ArgNo == 0)
824 return false;
825
Devang Patel4ab660b2011-03-03 20:02:02 +0000826 size_t Size = CurrentFnArguments.size();
827 if (Size == 0)
Devang Patel6c622ef2011-03-01 22:58:55 +0000828 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patel63b3e762011-03-03 21:49:41 +0000829 // llvm::Function argument size is not good indicator of how many
Devang Patel34a7ab42011-03-03 20:08:10 +0000830 // arguments does the function have at source level.
831 if (ArgNo > Size)
Devang Patel4ab660b2011-03-03 20:02:02 +0000832 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel6c622ef2011-03-01 22:58:55 +0000833 CurrentFnArguments[ArgNo - 1] = Var;
834 return true;
835}
836
Devang Patel490c8ab2010-05-20 19:57:06 +0000837/// collectVariableInfoFromMMITable - Collect variable information from
838/// side table maintained by MMI.
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000839void
Nick Lewycky019d2552011-07-29 03:49:23 +0000840DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF,
Devang Patel490c8ab2010-05-20 19:57:06 +0000841 SmallPtrSet<const MDNode *, 16> &Processed) {
Devang Patel475d32a2009-10-06 01:26:37 +0000842 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
843 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
844 VE = VMap.end(); VI != VE; ++VI) {
Devang Patel32cc43c2010-05-07 20:54:48 +0000845 const MDNode *Var = VI->first;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000846 if (!Var) continue;
Devang Patele0a94bf2010-05-14 21:01:35 +0000847 Processed.insert(Var);
Chris Lattner915c5f92010-04-02 19:42:39 +0000848 DIVariable DV(Var);
849 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000850
Devang Patel7e623022011-08-10 20:55:27 +0000851 LexicalScope *Scope = LScopes.findLexicalScope(VP.second);
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000852
Devang Patelcdb7d442009-11-10 23:20:04 +0000853 // If variable scope is not found then skip this variable.
Chris Lattner915c5f92010-04-02 19:42:39 +0000854 if (Scope == 0)
Devang Patelcdb7d442009-11-10 23:20:04 +0000855 continue;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000856
Devang Patele1c53f22010-05-20 16:36:41 +0000857 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
Devang Patel99819b52011-08-15 19:01:20 +0000858 DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable);
Devang Patel3e4a9652011-08-15 21:24:36 +0000859 RegVar->setFrameIndex(VP.first);
Devang Patel6c622ef2011-03-01 22:58:55 +0000860 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patel7e623022011-08-10 20:55:27 +0000861 addScopeVariable(Scope, RegVar);
Devang Patel99819b52011-08-15 19:01:20 +0000862 if (AbsDbgVariable)
Devang Patel3e4a9652011-08-15 21:24:36 +0000863 AbsDbgVariable->setFrameIndex(VP.first);
Devang Patel475d32a2009-10-06 01:26:37 +0000864 }
Devang Patel490c8ab2010-05-20 19:57:06 +0000865}
Devang Patela3e9c9c2010-03-15 18:33:46 +0000866
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000867/// isDbgValueInDefinedReg - Return true if debug value, encoded by
Devang Patel9fc11702010-05-25 23:40:22 +0000868/// DBG_VALUE instruction, is in a defined reg.
869static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000870 assert(MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +0000871 return MI->getNumOperands() == 3 &&
872 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
873 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patel9fc11702010-05-25 23:40:22 +0000874}
875
Nick Lewycky019d2552011-07-29 03:49:23 +0000876/// getDebugLocEntry - Get .debug_loc entry for the instruction range starting
Devang Patel2442a892011-07-08 17:09:57 +0000877/// at MI.
878static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm,
879 const MCSymbol *FLabel,
880 const MCSymbol *SLabel,
881 const MachineInstr *MI) {
882 const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata();
883
884 if (MI->getNumOperands() != 3) {
885 MachineLocation MLoc = Asm->getDebugValueLocation(MI);
886 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
887 }
888 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) {
889 MachineLocation MLoc;
890 MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
891 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
892 }
893 if (MI->getOperand(0).isImm())
894 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm());
895 if (MI->getOperand(0).isFPImm())
896 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm());
897 if (MI->getOperand(0).isCImm())
898 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm());
899
Nick Lewycky654f5ce2011-10-26 22:55:33 +0000900 assert(0 && "Unexpected 3 operand DBG_VALUE instruction!");
Devang Patel2442a892011-07-08 17:09:57 +0000901 return DotDebugLocEntry();
902}
903
Devang Patel7e623022011-08-10 20:55:27 +0000904/// collectVariableInfo - Find variables for each lexical scope.
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000905void
Devang Patel5c0f85c2010-06-25 22:07:34 +0000906DwarfDebug::collectVariableInfo(const MachineFunction *MF,
907 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbacha8683bb2010-07-21 21:21:52 +0000908
Devang Patel490c8ab2010-05-20 19:57:06 +0000909 /// collection info from MMI table.
910 collectVariableInfoFromMMITable(MF, Processed);
911
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000912 for (SmallVectorImpl<const MDNode*>::const_iterator
913 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
914 ++UVI) {
915 const MDNode *Var = *UVI;
916 if (Processed.count(Var))
Devang Patel490c8ab2010-05-20 19:57:06 +0000917 continue;
918
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000919 // History contains relevant DBG_VALUE instructions for Var and instructions
920 // clobbering it.
921 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
922 if (History.empty())
923 continue;
924 const MachineInstr *MInsn = History.front();
Devang Patel9fc11702010-05-25 23:40:22 +0000925
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000926 DIVariable DV(Var);
Devang Patel7e623022011-08-10 20:55:27 +0000927 LexicalScope *Scope = NULL;
Devang Patel7a9dedf2010-05-27 20:25:04 +0000928 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
929 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patel7e623022011-08-10 20:55:27 +0000930 Scope = LScopes.getCurrentFunctionScope();
Devang Patel8fb9fd62011-07-20 22:18:50 +0000931 else {
932 if (DV.getVersion() <= LLVMDebugVersion9)
Devang Patel7e623022011-08-10 20:55:27 +0000933 Scope = LScopes.findLexicalScope(MInsn->getDebugLoc());
Devang Patel8fb9fd62011-07-20 22:18:50 +0000934 else {
935 if (MDNode *IA = DV.getInlinedAt())
Devang Patel7e623022011-08-10 20:55:27 +0000936 Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA));
Devang Patel8fb9fd62011-07-20 22:18:50 +0000937 else
Devang Patel7e623022011-08-10 20:55:27 +0000938 Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1)));
Devang Patel8fb9fd62011-07-20 22:18:50 +0000939 }
940 }
Devang Patel490c8ab2010-05-20 19:57:06 +0000941 // If variable scope is not found then skip this variable.
Devang Patelfbd6c452010-05-21 00:10:20 +0000942 if (!Scope)
Devang Patel490c8ab2010-05-20 19:57:06 +0000943 continue;
944
945 Processed.insert(DV);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000946 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patel99819b52011-08-15 19:01:20 +0000947 DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc());
948 DbgVariable *RegVar = new DbgVariable(DV, AbsVar);
Devang Patel6c622ef2011-03-01 22:58:55 +0000949 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patel7e623022011-08-10 20:55:27 +0000950 addScopeVariable(Scope, RegVar);
Devang Patel99819b52011-08-15 19:01:20 +0000951 if (AbsVar)
Devang Patel3e4a9652011-08-15 21:24:36 +0000952 AbsVar->setMInsn(MInsn);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000953
954 // Simple ranges that are fully coalesced.
955 if (History.size() <= 1 || (History.size() == 2 &&
956 MInsn->isIdenticalTo(History.back()))) {
Devang Patel3e4a9652011-08-15 21:24:36 +0000957 RegVar->setMInsn(MInsn);
Devang Patel9fc11702010-05-25 23:40:22 +0000958 continue;
959 }
960
961 // handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000962 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +0000963
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000964 for (SmallVectorImpl<const MachineInstr*>::const_iterator
965 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
966 const MachineInstr *Begin = *HI;
967 assert(Begin->isDebugValue() && "Invalid History entry");
Jakob Stoklund Olesen9c057ee2011-03-22 00:21:41 +0000968
Devang Patele7181b52011-06-01 23:00:17 +0000969 // Check if DBG_VALUE is truncating a range.
970 if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg()
971 && !Begin->getOperand(0).getReg())
972 continue;
973
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +0000974 // Compute the range for a register location.
975 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
976 const MCSymbol *SLabel = 0;
977
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000978 if (HI + 1 == HE)
979 // If Begin is the last instruction in History then its value is valid
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000980 // until the end of the function.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +0000981 SLabel = FunctionEndSym;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000982 else {
983 const MachineInstr *End = HI[1];
Devang Patel53b050a2011-07-07 21:44:42 +0000984 DEBUG(dbgs() << "DotDebugLoc Pair:\n"
985 << "\t" << *Begin << "\t" << *End << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000986 if (End->isDebugValue())
987 SLabel = getLabelBeforeInsn(End);
988 else {
989 // End is a normal instruction clobbering the range.
990 SLabel = getLabelAfterInsn(End);
991 assert(SLabel && "Forgot label after clobber instruction");
992 ++HI;
993 }
994 }
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +0000995
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000996 // The value is valid until the next DBG_VALUE or clobber.
Devang Patel2442a892011-07-08 17:09:57 +0000997 DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel, Begin));
Devang Patel9fc11702010-05-25 23:40:22 +0000998 }
999 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patela3e9c9c2010-03-15 18:33:46 +00001000 }
Devang Patele0a94bf2010-05-14 21:01:35 +00001001
1002 // Collect info for variables that were optimized out.
Devang Patel59e27c52011-08-19 23:28:12 +00001003 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
1004 DIArray Variables = DISubprogram(FnScope->getScopeNode()).getVariables();
1005 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1006 DIVariable DV(Variables.getElement(i));
1007 if (!DV || !DV.Verify() || !Processed.insert(DV))
1008 continue;
1009 if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext()))
1010 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patele0a94bf2010-05-14 21:01:35 +00001011 }
Devang Patel9fc11702010-05-25 23:40:22 +00001012}
Devang Patele0a94bf2010-05-14 21:01:35 +00001013
Devang Patel9fc11702010-05-25 23:40:22 +00001014/// getLabelBeforeInsn - Return Label preceding the instruction.
1015const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001016 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1017 assert(Label && "Didn't insert label before instruction");
1018 return Label;
Devang Patel9fc11702010-05-25 23:40:22 +00001019}
1020
1021/// getLabelAfterInsn - Return Label immediately following the instruction.
1022const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001023 return LabelsAfterInsn.lookup(MI);
Devang Patel475d32a2009-10-06 01:26:37 +00001024}
1025
Devang Patelb5694e72010-10-26 17:49:02 +00001026/// beginInstruction - Process beginning of an instruction.
1027void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001028 // Check if source location changes, but ignore DBG_VALUE locations.
1029 if (!MI->isDebugValue()) {
1030 DebugLoc DL = MI->getDebugLoc();
1031 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
Devang Patel34a66202011-05-11 19:22:19 +00001032 unsigned Flags = DWARF2_FLAG_IS_STMT;
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001033 PrevInstLoc = DL;
Devang Patel34a66202011-05-11 19:22:19 +00001034 if (DL == PrologEndLoc) {
1035 Flags |= DWARF2_FLAG_PROLOGUE_END;
1036 PrologEndLoc = DebugLoc();
1037 }
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001038 if (!DL.isUnknown()) {
1039 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Devang Patel34a66202011-05-11 19:22:19 +00001040 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001041 } else
Devang Patel34a66202011-05-11 19:22:19 +00001042 recordSourceLine(0, 0, 0, 0);
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001043 }
Devang Patel9fc11702010-05-25 23:40:22 +00001044 }
Devang Patel23b2ae62010-03-29 22:59:58 +00001045
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001046 // Insert labels where requested.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001047 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1048 LabelsBeforeInsn.find(MI);
1049
1050 // No label needed.
1051 if (I == LabelsBeforeInsn.end())
1052 return;
1053
1054 // Label already assigned.
1055 if (I->second)
Devang Patel002d54d2010-05-26 19:37:24 +00001056 return;
Devang Patelbd477be2010-03-29 17:20:31 +00001057
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001058 if (!PrevLabel) {
Devang Patelacc32a52010-05-26 21:23:46 +00001059 PrevLabel = MMI->getContext().CreateTempSymbol();
1060 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel002d54d2010-05-26 19:37:24 +00001061 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001062 I->second = PrevLabel;
Devang Patel8db360d2009-10-06 01:50:42 +00001063}
1064
Devang Patelb5694e72010-10-26 17:49:02 +00001065/// endInstruction - Process end of an instruction.
1066void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001067 // Don't create a new label after DBG_VALUE instructions.
1068 // They don't generate code.
1069 if (!MI->isDebugValue())
1070 PrevLabel = 0;
1071
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001072 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1073 LabelsAfterInsn.find(MI);
1074
1075 // No label needed.
1076 if (I == LabelsAfterInsn.end())
1077 return;
1078
1079 // Label already assigned.
1080 if (I->second)
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001081 return;
1082
1083 // We need a label after this instruction.
1084 if (!PrevLabel) {
1085 PrevLabel = MMI->getContext().CreateTempSymbol();
1086 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel3ebd8932010-04-08 16:50:29 +00001087 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001088 I->second = PrevLabel;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001089}
1090
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001091/// identifyScopeMarkers() -
Devang Patel784077e2011-08-10 23:58:09 +00001092/// Each LexicalScope has first instruction and last instruction to mark
1093/// beginning and end of a scope respectively. Create an inverse map that list
1094/// scopes starts (and ends) with an instruction. One instruction may start (or
1095/// end) multiple scopes. Ignore scopes that are not reachable.
Devang Patel359b0132010-04-08 18:43:56 +00001096void DwarfDebug::identifyScopeMarkers() {
Devang Patel7e623022011-08-10 20:55:27 +00001097 SmallVector<LexicalScope *, 4> WorkList;
1098 WorkList.push_back(LScopes.getCurrentFunctionScope());
Devang Patel7771b7c2010-01-20 02:05:23 +00001099 while (!WorkList.empty()) {
Devang Patel7e623022011-08-10 20:55:27 +00001100 LexicalScope *S = WorkList.pop_back_val();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001101
Devang Patel7e623022011-08-10 20:55:27 +00001102 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001103 if (!Children.empty())
Devang Patel7e623022011-08-10 20:55:27 +00001104 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel7771b7c2010-01-20 02:05:23 +00001105 SE = Children.end(); SI != SE; ++SI)
1106 WorkList.push_back(*SI);
1107
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001108 if (S->isAbstractScope())
1109 continue;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001110
Devang Patel7e623022011-08-10 20:55:27 +00001111 const SmallVector<InsnRange, 4> &Ranges = S->getRanges();
Devang Patel6c74a872010-04-27 19:46:33 +00001112 if (Ranges.empty())
1113 continue;
Devang Patel7e623022011-08-10 20:55:27 +00001114 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel6c74a872010-04-27 19:46:33 +00001115 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patel7e623022011-08-10 20:55:27 +00001116 assert(RI->first && "InsnRange does not have first instruction!");
1117 assert(RI->second && "InsnRange does not have second instruction!");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001118 requestLabelBeforeInsn(RI->first);
1119 requestLabelAfterInsn(RI->second);
Devang Patel6c74a872010-04-27 19:46:33 +00001120 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001121 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001122}
1123
Devang Patel589845d2011-05-09 22:14:49 +00001124/// getScopeNode - Get MDNode for DebugLoc's scope.
1125static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) {
1126 if (MDNode *InlinedAt = DL.getInlinedAt(Ctx))
1127 return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx);
1128 return DL.getScope(Ctx);
1129}
1130
Devang Patel34a66202011-05-11 19:22:19 +00001131/// getFnDebugLoc - Walk up the scope chain of given debug loc and find
1132/// line number info for the function.
1133static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) {
1134 const MDNode *Scope = getScopeNode(DL, Ctx);
1135 DISubprogram SP = getDISubprogram(Scope);
1136 if (SP.Verify())
1137 return DebugLoc::get(SP.getLineNumber(), 0, SP);
1138 return DebugLoc();
1139}
1140
Devang Patel930143b2009-11-21 02:48:08 +00001141/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling2b128d72009-05-20 23:19:06 +00001142/// emitted immediately after the function entry point.
Chris Lattner76555b52010-01-26 23:18:02 +00001143void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner196dbdc2010-04-05 03:52:55 +00001144 if (!MMI->hasDebugInfo()) return;
Devang Patel7e623022011-08-10 20:55:27 +00001145 LScopes.initialize(*MF);
1146 if (LScopes.empty()) return;
1147 identifyScopeMarkers();
Devang Patel4598eb62009-10-06 18:37:31 +00001148
Devang Patel6c74a872010-04-27 19:46:33 +00001149 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1150 Asm->getFunctionNumber());
Bill Wendling2b128d72009-05-20 23:19:06 +00001151 // Assumes in correct section after the entry point.
Devang Patel6c74a872010-04-27 19:46:33 +00001152 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendling2b128d72009-05-20 23:19:06 +00001153
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001154 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1155
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001156 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001157 /// LiveUserVar - Map physreg numbers to the MDNode they contain.
1158 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1159
Devang Patel002d54d2010-05-26 19:37:24 +00001160 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001161 I != E; ++I) {
1162 bool AtBlockEntry = true;
Devang Patel002d54d2010-05-26 19:37:24 +00001163 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1164 II != IE; ++II) {
1165 const MachineInstr *MI = II;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001166
Devang Patel002d54d2010-05-26 19:37:24 +00001167 if (MI->isDebugValue()) {
Nick Lewycky654f5ce2011-10-26 22:55:33 +00001168 assert(MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001169
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001170 // Keep track of user variables.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001171 const MDNode *Var =
1172 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001173
1174 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001175 if (isDbgValueInDefinedReg(MI))
1176 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1177
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001178 // Check the history of this variable.
1179 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1180 if (History.empty()) {
1181 UserVariables.push_back(Var);
1182 // The first mention of a function argument gets the FunctionBeginSym
1183 // label, so arguments are visible when breaking at function entry.
1184 DIVariable DV(Var);
1185 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1186 DISubprogram(getDISubprogram(DV.getContext()))
1187 .describes(MF->getFunction()))
1188 LabelsBeforeInsn[MI] = FunctionBeginSym;
1189 } else {
1190 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1191 const MachineInstr *Prev = History.back();
1192 if (Prev->isDebugValue()) {
1193 // Coalesce identical entries at the end of History.
1194 if (History.size() >= 2 &&
Devang Patelb7a328e2011-07-07 00:14:27 +00001195 Prev->isIdenticalTo(History[History.size() - 2])) {
1196 DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n"
1197 << "\t" << *Prev
1198 << "\t" << *History[History.size() - 2] << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001199 History.pop_back();
Devang Patelb7a328e2011-07-07 00:14:27 +00001200 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001201
1202 // Terminate old register assignments that don't reach MI;
1203 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1204 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1205 isDbgValueInDefinedReg(Prev)) {
1206 // Previous register assignment needs to terminate at the end of
1207 // its basic block.
1208 MachineBasicBlock::const_iterator LastMI =
1209 PrevMBB->getLastNonDebugInstr();
Devang Patelb7a328e2011-07-07 00:14:27 +00001210 if (LastMI == PrevMBB->end()) {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001211 // Drop DBG_VALUE for empty range.
Devang Patelb7a328e2011-07-07 00:14:27 +00001212 DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n"
1213 << "\t" << *Prev << "\n");
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001214 History.pop_back();
Devang Patelb7a328e2011-07-07 00:14:27 +00001215 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001216 else {
1217 // Terminate after LastMI.
1218 History.push_back(LastMI);
1219 }
1220 }
1221 }
1222 }
1223 History.push_back(MI);
Devang Patel002d54d2010-05-26 19:37:24 +00001224 } else {
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001225 // Not a DBG_VALUE instruction.
1226 if (!MI->isLabel())
1227 AtBlockEntry = false;
1228
Devang Patel34a66202011-05-11 19:22:19 +00001229 // First known non DBG_VALUE location marks beginning of function
1230 // body.
1231 if (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown())
1232 PrologEndLoc = MI->getDebugLoc();
1233
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001234 // Check if the instruction clobbers any registers with debug vars.
1235 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1236 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1237 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1238 continue;
1239 for (const unsigned *AI = TRI->getOverlaps(MOI->getReg());
1240 unsigned Reg = *AI; ++AI) {
1241 const MDNode *Var = LiveUserVar[Reg];
1242 if (!Var)
1243 continue;
1244 // Reg is now clobbered.
1245 LiveUserVar[Reg] = 0;
1246
1247 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001248 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
1249 if (HistI == DbgValues.end())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001250 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001251 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
1252 if (History.empty())
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001253 continue;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001254 const MachineInstr *Prev = History.back();
1255 // Sanity-check: Register assignments are terminated at the end of
1256 // their block.
1257 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
1258 continue;
1259 // Is the variable still in Reg?
1260 if (!isDbgValueInDefinedReg(Prev) ||
1261 Prev->getOperand(0).getReg() != Reg)
1262 continue;
1263 // Var is clobbered. Make sure the next instruction gets a label.
1264 History.push_back(MI);
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +00001265 }
1266 }
Devang Patel002d54d2010-05-26 19:37:24 +00001267 }
Devang Patel002d54d2010-05-26 19:37:24 +00001268 }
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001269 }
1270
1271 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
1272 I != E; ++I) {
1273 SmallVectorImpl<const MachineInstr*> &History = I->second;
1274 if (History.empty())
1275 continue;
1276
1277 // Make sure the final register assignments are terminated.
1278 const MachineInstr *Prev = History.back();
1279 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
1280 const MachineBasicBlock *PrevMBB = Prev->getParent();
Devang Patel784077e2011-08-10 23:58:09 +00001281 MachineBasicBlock::const_iterator LastMI =
1282 PrevMBB->getLastNonDebugInstr();
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001283 if (LastMI == PrevMBB->end())
1284 // Drop DBG_VALUE for empty range.
1285 History.pop_back();
1286 else {
1287 // Terminate after LastMI.
1288 History.push_back(LastMI);
1289 }
1290 }
1291 // Request labels for the full history.
1292 for (unsigned i = 0, e = History.size(); i != e; ++i) {
1293 const MachineInstr *MI = History[i];
1294 if (MI->isDebugValue())
1295 requestLabelBeforeInsn(MI);
1296 else
1297 requestLabelAfterInsn(MI);
1298 }
1299 }
Devang Patel002d54d2010-05-26 19:37:24 +00001300
Jakob Stoklund Olesen1886a4c2011-03-25 17:20:59 +00001301 PrevInstLoc = DebugLoc();
Devang Patel002d54d2010-05-26 19:37:24 +00001302 PrevLabel = FunctionBeginSym;
Devang Patel34a66202011-05-11 19:22:19 +00001303
1304 // Record beginning of function.
1305 if (!PrologEndLoc.isUnknown()) {
1306 DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc,
1307 MF->getFunction()->getContext());
1308 recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(),
1309 FnStartDL.getScope(MF->getFunction()->getContext()),
1310 DWARF2_FLAG_IS_STMT);
1311 }
Bill Wendling2b128d72009-05-20 23:19:06 +00001312}
1313
Devang Patel7e623022011-08-10 20:55:27 +00001314void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) {
1315// SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1316 ScopeVariables[LS].push_back(Var);
1317// Vars.push_back(Var);
1318}
1319
Devang Patel930143b2009-11-21 02:48:08 +00001320/// endFunction - Gather and emit post-function debug information.
Bill Wendling2b128d72009-05-20 23:19:06 +00001321///
Chris Lattner76555b52010-01-26 23:18:02 +00001322void DwarfDebug::endFunction(const MachineFunction *MF) {
Devang Patel7e623022011-08-10 20:55:27 +00001323 if (!MMI->hasDebugInfo() || LScopes.empty()) return;
Devang Patel2904aa92009-11-12 19:02:56 +00001324
Devang Patel7e623022011-08-10 20:55:27 +00001325 // Define end label for subprogram.
1326 FunctionEndSym = Asm->GetTempSymbol("func_end",
1327 Asm->getFunctionNumber());
1328 // Assumes in correct section after the entry point.
1329 Asm->OutStreamer.EmitLabel(FunctionEndSym);
1330
1331 SmallPtrSet<const MDNode *, 16> ProcessedVars;
1332 collectVariableInfo(MF, ProcessedVars);
1333
Devang Patel3acc70e2011-08-15 22:04:40 +00001334 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
Devang Pateleb1bb4e2011-08-16 22:09:43 +00001335 CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode());
Nick Lewycky654f5ce2011-10-26 22:55:33 +00001336 assert(TheCU && "Unable to find compile unit!");
Devang Patel3acc70e2011-08-15 22:04:40 +00001337
Devang Patel7e623022011-08-10 20:55:27 +00001338 // Construct abstract scopes.
Devang Patel44403472011-08-12 18:10:19 +00001339 ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList();
1340 for (unsigned i = 0, e = AList.size(); i != e; ++i) {
1341 LexicalScope *AScope = AList[i];
1342 DISubprogram SP(AScope->getScopeNode());
Devang Patel7e623022011-08-10 20:55:27 +00001343 if (SP.Verify()) {
1344 // Collect info for variables that were optimized out.
Devang Patel59e27c52011-08-19 23:28:12 +00001345 DIArray Variables = SP.getVariables();
1346 for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {
1347 DIVariable DV(Variables.getElement(i));
1348 if (!DV || !DV.Verify() || !ProcessedVars.insert(DV))
1349 continue;
1350 if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext()))
1351 addScopeVariable(Scope, new DbgVariable(DV, NULL));
Devang Patel5c0f85c2010-06-25 22:07:34 +00001352 }
1353 }
Devang Patel44403472011-08-12 18:10:19 +00001354 if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0)
Devang Patel3acc70e2011-08-15 22:04:40 +00001355 constructScopeDIE(TheCU, AScope);
Bill Wendling2b128d72009-05-20 23:19:06 +00001356 }
Devang Patel7e623022011-08-10 20:55:27 +00001357
Devang Patel3acc70e2011-08-15 22:04:40 +00001358 DIE *CurFnDIE = constructScopeDIE(TheCU, FnScope);
Devang Patel7e623022011-08-10 20:55:27 +00001359
Devang Patel3acc70e2011-08-15 22:04:40 +00001360 if (!DisableFramePointerElim(*MF))
Devang Patel784077e2011-08-10 23:58:09 +00001361 TheCU->addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr,
1362 dwarf::DW_FORM_flag, 1);
Devang Patel3acc70e2011-08-15 22:04:40 +00001363
Devang Patel7e623022011-08-10 20:55:27 +00001364 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
1365 MMI->getFrameMoves()));
Bill Wendling2b128d72009-05-20 23:19:06 +00001366
Bill Wendling2b128d72009-05-20 23:19:06 +00001367 // Clear debug info
Devang Patel7e623022011-08-10 20:55:27 +00001368 for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator
1369 I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I)
1370 DeleteContainerPointers(I->second);
1371 ScopeVariables.clear();
Devang Patelad45d912011-04-22 18:09:57 +00001372 DeleteContainerPointers(CurrentFnArguments);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +00001373 UserVariables.clear();
1374 DbgValues.clear();
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00001375 AbstractVariables.clear();
Devang Patel6c74a872010-04-27 19:46:33 +00001376 LabelsBeforeInsn.clear();
1377 LabelsAfterInsn.clear();
Devang Patel12563b32010-04-16 23:33:45 +00001378 PrevLabel = NULL;
Bill Wendling2b128d72009-05-20 23:19:06 +00001379}
1380
Chris Lattnerba35a672010-03-09 04:54:43 +00001381/// recordSourceLine - Register a source line with debug info. Returns the
1382/// unique label that was emitted and which provides correspondence to
1383/// the source line list.
Devang Patel34a66202011-05-11 19:22:19 +00001384void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S,
1385 unsigned Flags) {
Devang Patel2d9caf92009-11-25 17:36:49 +00001386 StringRef Fn;
Devang Patele01b75c2011-03-24 20:30:50 +00001387 StringRef Dir;
Dan Gohman50849c62010-05-05 23:41:32 +00001388 unsigned Src = 1;
1389 if (S) {
1390 DIDescriptor Scope(S);
Devang Patel2089d162009-10-05 18:03:19 +00001391
Dan Gohman50849c62010-05-05 23:41:32 +00001392 if (Scope.isCompileUnit()) {
1393 DICompileUnit CU(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001394 Fn = CU.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001395 Dir = CU.getDirectory();
Devang Patelc4b69052010-10-28 17:30:52 +00001396 } else if (Scope.isFile()) {
1397 DIFile F(S);
Devang Patelc4b69052010-10-28 17:30:52 +00001398 Fn = F.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001399 Dir = F.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001400 } else if (Scope.isSubprogram()) {
1401 DISubprogram SP(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001402 Fn = SP.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001403 Dir = SP.getDirectory();
Eric Christopher6647b832011-10-11 22:59:11 +00001404 } else if (Scope.isLexicalBlockFile()) {
1405 DILexicalBlockFile DBF(S);
1406 Fn = DBF.getFilename();
1407 Dir = DBF.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001408 } else if (Scope.isLexicalBlock()) {
1409 DILexicalBlock DB(S);
Dan Gohman50849c62010-05-05 23:41:32 +00001410 Fn = DB.getFilename();
Devang Patele01b75c2011-03-24 20:30:50 +00001411 Dir = DB.getDirectory();
Dan Gohman50849c62010-05-05 23:41:32 +00001412 } else
1413 assert(0 && "Unexpected scope info");
1414
Devang Patele01b75c2011-03-24 20:30:50 +00001415 Src = GetOrCreateSourceID(Fn, Dir);
Dan Gohman50849c62010-05-05 23:41:32 +00001416 }
Nick Lewycky019d2552011-07-29 03:49:23 +00001417 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);
Bill Wendling2b128d72009-05-20 23:19:06 +00001418}
1419
Bill Wendling806535f2009-05-20 23:22:40 +00001420//===----------------------------------------------------------------------===//
1421// Emit Methods
1422//===----------------------------------------------------------------------===//
1423
Devang Patel930143b2009-11-21 02:48:08 +00001424/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling480ff322009-05-20 23:21:38 +00001425///
Jim Grosbach00e9c612009-11-22 19:20:36 +00001426unsigned
1427DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling480ff322009-05-20 23:21:38 +00001428 // Get the children.
1429 const std::vector<DIE *> &Children = Die->getChildren();
1430
1431 // If not last sibling and has children then add sibling offset attribute.
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00001432 if (!Last && !Children.empty())
Benjamin Kramer74729ae2010-03-31 19:34:01 +00001433 Die->addSiblingOffset(DIEValueAllocator);
Bill Wendling480ff322009-05-20 23:21:38 +00001434
1435 // Record the abbreviation.
Devang Patel930143b2009-11-21 02:48:08 +00001436 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling480ff322009-05-20 23:21:38 +00001437
1438 // Get the abbreviation for this DIE.
1439 unsigned AbbrevNumber = Die->getAbbrevNumber();
1440 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1441
1442 // Set DIE offset
1443 Die->setOffset(Offset);
1444
1445 // Start the size with the size of abbreviation code.
Chris Lattner7b26fce2009-08-22 20:48:53 +00001446 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00001447
1448 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1449 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1450
1451 // Size the DIE attribute values.
1452 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1453 // Size attribute value.
Chris Lattner5a00dea2010-04-05 00:18:22 +00001454 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling480ff322009-05-20 23:21:38 +00001455
1456 // Size the DIE children if any.
1457 if (!Children.empty()) {
1458 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1459 "Children flag not set");
1460
1461 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00001462 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling480ff322009-05-20 23:21:38 +00001463
1464 // End of children marker.
1465 Offset += sizeof(int8_t);
1466 }
1467
1468 Die->setSize(Offset - Die->getOffset());
1469 return Offset;
1470}
1471
Devang Patel930143b2009-11-21 02:48:08 +00001472/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling480ff322009-05-20 23:21:38 +00001473///
Devang Patel930143b2009-11-21 02:48:08 +00001474void DwarfDebug::computeSizeAndOffsets() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001475 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1476 E = CUMap.end(); I != E; ++I) {
1477 // Compute size of compile unit header.
Devang Patel28dce702011-04-12 23:10:47 +00001478 unsigned Offset =
Devang Patel1a0df9a2010-05-10 22:49:55 +00001479 sizeof(int32_t) + // Length of Compilation Unit Info
1480 sizeof(int16_t) + // DWARF version number
1481 sizeof(int32_t) + // Offset Into Abbrev. Section
1482 sizeof(int8_t); // Pointer Size (in bytes)
1483 computeSizeAndOffset(I->second->getCUDie(), Offset, true);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001484 }
Bill Wendling480ff322009-05-20 23:21:38 +00001485}
1486
Chris Lattner6629ca92010-04-04 22:59:04 +00001487/// EmitSectionLabels - Emit initial Dwarf sections with a label at
1488/// the start of each one.
Chris Lattner46355d82010-04-04 22:33:59 +00001489void DwarfDebug::EmitSectionLabels() {
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001490 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00001491
Bill Wendling480ff322009-05-20 23:21:38 +00001492 // Dwarf sections base addresses.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001493 DwarfInfoSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00001494 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001495 DwarfAbbrevSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00001496 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001497 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001498
Chris Lattner6629ca92010-04-04 22:59:04 +00001499 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001500 EmitSectionSym(Asm, MacroInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00001501
Devang Patel4a213872010-08-24 00:06:12 +00001502 EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00001503 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
1504 EmitSectionSym(Asm, TLOF.getDwarfPubNamesSection());
1505 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001506 DwarfStrSectionSym =
Chris Lattner6629ca92010-04-04 22:59:04 +00001507 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Devang Patel12563b32010-04-16 23:33:45 +00001508 DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(),
1509 "debug_range");
Bill Wendling480ff322009-05-20 23:21:38 +00001510
Devang Patel9fc11702010-05-25 23:40:22 +00001511 DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(),
1512 "section_debug_loc");
1513
Chris Lattner6629ca92010-04-04 22:59:04 +00001514 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattnere58b5472010-04-04 23:10:38 +00001515 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001516}
1517
Nick Lewycky019d2552011-07-29 03:49:23 +00001518/// emitDIE - Recursively emits a debug information entry.
Bill Wendling480ff322009-05-20 23:21:38 +00001519///
Devang Patel930143b2009-11-21 02:48:08 +00001520void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling480ff322009-05-20 23:21:38 +00001521 // Get the abbreviation for this DIE.
1522 unsigned AbbrevNumber = Die->getAbbrevNumber();
1523 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1524
Bill Wendling480ff322009-05-20 23:21:38 +00001525 // Emit the code (index) for the abbreviation.
Chris Lattner7bde8c02010-04-04 18:52:31 +00001526 if (Asm->isVerbose())
Chris Lattnerfa823552010-01-22 23:18:42 +00001527 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
1528 Twine::utohexstr(Die->getOffset()) + ":0x" +
1529 Twine::utohexstr(Die->getSize()) + " " +
1530 dwarf::TagString(Abbrev->getTag()));
Chris Lattner9efd1182010-04-04 19:09:29 +00001531 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00001532
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00001533 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling480ff322009-05-20 23:21:38 +00001534 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1535
1536 // Emit the DIE attribute values.
1537 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1538 unsigned Attr = AbbrevData[i].getAttribute();
1539 unsigned Form = AbbrevData[i].getForm();
1540 assert(Form && "Too many attributes for DIE (check abbreviation)");
1541
Chris Lattner7bde8c02010-04-04 18:52:31 +00001542 if (Asm->isVerbose())
Chris Lattner5adf9872010-01-24 18:54:17 +00001543 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001544
Bill Wendling480ff322009-05-20 23:21:38 +00001545 switch (Attr) {
1546 case dwarf::DW_AT_sibling:
Devang Patel930143b2009-11-21 02:48:08 +00001547 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00001548 break;
1549 case dwarf::DW_AT_abstract_origin: {
1550 DIEEntry *E = cast<DIEEntry>(Values[i]);
1551 DIE *Origin = E->getEntry();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001552 unsigned Addr = Origin->getOffset();
Bill Wendling480ff322009-05-20 23:21:38 +00001553 Asm->EmitInt32(Addr);
1554 break;
1555 }
Devang Patel12563b32010-04-16 23:33:45 +00001556 case dwarf::DW_AT_ranges: {
1557 // DW_AT_range Value encodes offset in debug_range section.
1558 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelda3ef852010-09-02 16:43:44 +00001559
1560 if (Asm->MAI->doesDwarfUsesLabelOffsetForRanges()) {
1561 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
1562 V->getValue(),
1563 4);
1564 } else {
1565 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
1566 V->getValue(),
1567 DwarfDebugRangeSectionSym,
1568 4);
1569 }
Devang Patel12563b32010-04-16 23:33:45 +00001570 break;
1571 }
Devang Patel9fc11702010-05-25 23:40:22 +00001572 case dwarf::DW_AT_location: {
Devang Pateld8994442011-08-15 21:43:21 +00001573 if (DIELabel *L = dyn_cast<DIELabel>(Values[i]))
Daniel Dunbarfd95b012011-03-16 22:16:39 +00001574 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
Devang Pateld8994442011-08-15 21:43:21 +00001575 else
Devang Patel9fc11702010-05-25 23:40:22 +00001576 Values[i]->EmitValue(Asm, Form);
1577 break;
1578 }
Devang Patela1bd5a12010-09-29 19:08:08 +00001579 case dwarf::DW_AT_accessibility: {
1580 if (Asm->isVerbose()) {
1581 DIEInteger *V = cast<DIEInteger>(Values[i]);
1582 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
1583 }
1584 Values[i]->EmitValue(Asm, Form);
1585 break;
1586 }
Bill Wendling480ff322009-05-20 23:21:38 +00001587 default:
1588 // Emit an attribute using the defined form.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001589 Values[i]->EmitValue(Asm, Form);
Bill Wendling480ff322009-05-20 23:21:38 +00001590 break;
1591 }
Bill Wendling480ff322009-05-20 23:21:38 +00001592 }
1593
1594 // Emit the DIE children if any.
1595 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1596 const std::vector<DIE *> &Children = Die->getChildren();
1597
1598 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00001599 emitDIE(Children[j]);
Bill Wendling480ff322009-05-20 23:21:38 +00001600
Chris Lattner7bde8c02010-04-04 18:52:31 +00001601 if (Asm->isVerbose())
Chris Lattner566cae92010-03-09 23:52:58 +00001602 Asm->OutStreamer.AddComment("End Of Children Mark");
1603 Asm->EmitInt8(0);
Bill Wendling480ff322009-05-20 23:21:38 +00001604 }
1605}
1606
Devang Patel9ccfb642009-12-09 18:24:21 +00001607/// emitDebugInfo - Emit the debug info section.
Bill Wendling480ff322009-05-20 23:21:38 +00001608///
Devang Patel9ccfb642009-12-09 18:24:21 +00001609void DwarfDebug::emitDebugInfo() {
1610 // Start debug info section.
1611 Asm->OutStreamer.SwitchSection(
1612 Asm->getObjFileLowering().getDwarfInfoSection());
Devang Patel1a0df9a2010-05-10 22:49:55 +00001613 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1614 E = CUMap.end(); I != E; ++I) {
1615 CompileUnit *TheCU = I->second;
1616 DIE *Die = TheCU->getCUDie();
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001617
Devang Patel1a0df9a2010-05-10 22:49:55 +00001618 // Emit the compile units header.
1619 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
1620 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001621
Devang Patel1a0df9a2010-05-10 22:49:55 +00001622 // Emit size of content not including length itself
1623 unsigned ContentSize = Die->getSize() +
1624 sizeof(int16_t) + // DWARF version number
1625 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patele141234942011-04-13 19:41:17 +00001626 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001627
Devang Patel1a0df9a2010-05-10 22:49:55 +00001628 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
1629 Asm->EmitInt32(ContentSize);
1630 Asm->OutStreamer.AddComment("DWARF version number");
1631 Asm->EmitInt16(dwarf::DWARF_VERSION);
1632 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
1633 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
1634 DwarfAbbrevSectionSym);
1635 Asm->OutStreamer.AddComment("Address Size (in bytes)");
1636 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001637
Devang Patel1a0df9a2010-05-10 22:49:55 +00001638 emitDIE(Die);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001639 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID()));
1640 }
Bill Wendling480ff322009-05-20 23:21:38 +00001641}
1642
Devang Patel930143b2009-11-21 02:48:08 +00001643/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling480ff322009-05-20 23:21:38 +00001644///
Devang Patel930143b2009-11-21 02:48:08 +00001645void DwarfDebug::emitAbbreviations() const {
Bill Wendling480ff322009-05-20 23:21:38 +00001646 // Check to see if it is worth the effort.
1647 if (!Abbreviations.empty()) {
1648 // Start the debug abbrev section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001649 Asm->OutStreamer.SwitchSection(
1650 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001651
Chris Lattnera179b522010-04-04 19:25:43 +00001652 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling480ff322009-05-20 23:21:38 +00001653
1654 // For each abbrevation.
1655 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
1656 // Get abbreviation data
1657 const DIEAbbrev *Abbrev = Abbreviations[i];
1658
1659 // Emit the abbrevations code (base 1 index.)
Chris Lattner9efd1182010-04-04 19:09:29 +00001660 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling480ff322009-05-20 23:21:38 +00001661
1662 // Emit the abbreviations data.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001663 Abbrev->Emit(Asm);
Bill Wendling480ff322009-05-20 23:21:38 +00001664 }
1665
1666 // Mark end of abbreviations.
Chris Lattner9efd1182010-04-04 19:09:29 +00001667 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling480ff322009-05-20 23:21:38 +00001668
Chris Lattnera179b522010-04-04 19:25:43 +00001669 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling480ff322009-05-20 23:21:38 +00001670 }
1671}
1672
Devang Patel930143b2009-11-21 02:48:08 +00001673/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling480ff322009-05-20 23:21:38 +00001674/// the line matrix.
1675///
Devang Patel930143b2009-11-21 02:48:08 +00001676void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling480ff322009-05-20 23:21:38 +00001677 // Define last address of section.
Chris Lattner566cae92010-03-09 23:52:58 +00001678 Asm->OutStreamer.AddComment("Extended Op");
1679 Asm->EmitInt8(0);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001680
Chris Lattner566cae92010-03-09 23:52:58 +00001681 Asm->OutStreamer.AddComment("Op size");
Chris Lattner3a383cb2010-04-05 00:13:49 +00001682 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner566cae92010-03-09 23:52:58 +00001683 Asm->OutStreamer.AddComment("DW_LNE_set_address");
1684 Asm->EmitInt8(dwarf::DW_LNE_set_address);
1685
1686 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerb245dfb2010-03-10 01:17:49 +00001687
Chris Lattnera179b522010-04-04 19:25:43 +00001688 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattner3a383cb2010-04-05 00:13:49 +00001689 Asm->getTargetData().getPointerSize(),
1690 0/*AddrSpace*/);
Bill Wendling480ff322009-05-20 23:21:38 +00001691
1692 // Mark end of matrix.
Chris Lattner566cae92010-03-09 23:52:58 +00001693 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
1694 Asm->EmitInt8(0);
Chris Lattnerf5c834f2010-01-22 22:09:00 +00001695 Asm->EmitInt8(1);
Chris Lattnerfa823552010-01-22 23:18:42 +00001696 Asm->EmitInt8(1);
Bill Wendling480ff322009-05-20 23:21:38 +00001697}
1698
Devang Patel9ccfb642009-12-09 18:24:21 +00001699/// emitDebugPubNames - Emit visible names into a debug pubnames section.
1700///
1701void DwarfDebug::emitDebugPubNames() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001702 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1703 E = CUMap.end(); I != E; ++I) {
1704 CompileUnit *TheCU = I->second;
1705 // Start the dwarf pubnames section.
1706 Asm->OutStreamer.SwitchSection(
1707 Asm->getObjFileLowering().getDwarfPubNamesSection());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001708
Devang Patel1a0df9a2010-05-10 22:49:55 +00001709 Asm->OutStreamer.AddComment("Length of Public Names Info");
1710 Asm->EmitLabelDifference(
1711 Asm->GetTempSymbol("pubnames_end", TheCU->getID()),
1712 Asm->GetTempSymbol("pubnames_begin", TheCU->getID()), 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001713
Devang Patel1a0df9a2010-05-10 22:49:55 +00001714 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_begin",
1715 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001716
Devang Patel1a0df9a2010-05-10 22:49:55 +00001717 Asm->OutStreamer.AddComment("DWARF Version");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001718 Asm->EmitInt16(dwarf::DWARF_VERSION);
1719
Devang Patel1a0df9a2010-05-10 22:49:55 +00001720 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001721 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
Devang Patel1a0df9a2010-05-10 22:49:55 +00001722 DwarfInfoSectionSym);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001723
Devang Patel1a0df9a2010-05-10 22:49:55 +00001724 Asm->OutStreamer.AddComment("Compilation Unit Length");
1725 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1726 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1727 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001728
Devang Patel1a0df9a2010-05-10 22:49:55 +00001729 const StringMap<DIE*> &Globals = TheCU->getGlobals();
1730 for (StringMap<DIE*>::const_iterator
1731 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1732 const char *Name = GI->getKeyData();
1733 DIE *Entity = GI->second;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001734
Devang Patel1a0df9a2010-05-10 22:49:55 +00001735 Asm->OutStreamer.AddComment("DIE offset");
1736 Asm->EmitInt32(Entity->getOffset());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001737
Devang Patel1a0df9a2010-05-10 22:49:55 +00001738 if (Asm->isVerbose())
1739 Asm->OutStreamer.AddComment("External Name");
1740 Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
1741 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001742
Devang Patel1a0df9a2010-05-10 22:49:55 +00001743 Asm->OutStreamer.AddComment("End Mark");
1744 Asm->EmitInt32(0);
1745 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_end",
Nick Lewycky019d2552011-07-29 03:49:23 +00001746 TheCU->getID()));
Bill Wendling480ff322009-05-20 23:21:38 +00001747 }
Bill Wendling480ff322009-05-20 23:21:38 +00001748}
1749
Devang Patel04d2f2d2009-11-24 01:14:22 +00001750void DwarfDebug::emitDebugPubTypes() {
Devang Patel1a0df9a2010-05-10 22:49:55 +00001751 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1752 E = CUMap.end(); I != E; ++I) {
1753 CompileUnit *TheCU = I->second;
Eric Christopher6abc9c52011-11-07 09:18:35 +00001754 // Start the dwarf pubtypes section.
Devang Patel1a0df9a2010-05-10 22:49:55 +00001755 Asm->OutStreamer.SwitchSection(
1756 Asm->getObjFileLowering().getDwarfPubTypesSection());
1757 Asm->OutStreamer.AddComment("Length of Public Types Info");
1758 Asm->EmitLabelDifference(
1759 Asm->GetTempSymbol("pubtypes_end", TheCU->getID()),
1760 Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001761
Devang Patel1a0df9a2010-05-10 22:49:55 +00001762 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
1763 TheCU->getID()));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001764
Devang Patel1a0df9a2010-05-10 22:49:55 +00001765 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
1766 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001767
Devang Patel1a0df9a2010-05-10 22:49:55 +00001768 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
1769 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
1770 DwarfInfoSectionSym);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001771
Devang Patel1a0df9a2010-05-10 22:49:55 +00001772 Asm->OutStreamer.AddComment("Compilation Unit Length");
1773 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1774 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1775 4);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001776
Devang Patel1a0df9a2010-05-10 22:49:55 +00001777 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
1778 for (StringMap<DIE*>::const_iterator
1779 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1780 const char *Name = GI->getKeyData();
Nick Lewycky019d2552011-07-29 03:49:23 +00001781 DIE *Entity = GI->second;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001782
Devang Patel1a0df9a2010-05-10 22:49:55 +00001783 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
1784 Asm->EmitInt32(Entity->getOffset());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001785
Devang Patel1a0df9a2010-05-10 22:49:55 +00001786 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
1787 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
1788 }
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001789
Devang Patel1a0df9a2010-05-10 22:49:55 +00001790 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001791 Asm->EmitInt32(0);
Devang Patel1a0df9a2010-05-10 22:49:55 +00001792 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
1793 TheCU->getID()));
Devang Patel04d2f2d2009-11-24 01:14:22 +00001794 }
Devang Patel04d2f2d2009-11-24 01:14:22 +00001795}
1796
Devang Patel930143b2009-11-21 02:48:08 +00001797/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling480ff322009-05-20 23:21:38 +00001798///
Devang Patel930143b2009-11-21 02:48:08 +00001799void DwarfDebug::emitDebugStr() {
Bill Wendling480ff322009-05-20 23:21:38 +00001800 // Check to see if it is worth the effort.
Chris Lattner3d72a672010-03-09 23:38:23 +00001801 if (StringPool.empty()) return;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001802
Chris Lattner3d72a672010-03-09 23:38:23 +00001803 // Start the dwarf str section.
1804 Asm->OutStreamer.SwitchSection(
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001805 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001806
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001807 // Get all of the string pool entries and put them in an array by their ID so
1808 // we can sort them.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001809 SmallVector<std::pair<unsigned,
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001810 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001811
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001812 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
1813 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
1814 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001815
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001816 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001817
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001818 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner3d72a672010-03-09 23:38:23 +00001819 // Emit a label for reference from debug information entries.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001820 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001821
Chris Lattner3d72a672010-03-09 23:38:23 +00001822 // Emit the string itself.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001823 Asm->OutStreamer.EmitBytes(Entries[i].second->getKey(), 0/*addrspace*/);
Nick Lewyckyd59c0ca2011-10-27 06:44:11 +00001824 Asm->OutStreamer.EmitZeros(1, 0);
Bill Wendling480ff322009-05-20 23:21:38 +00001825 }
1826}
1827
Devang Patel930143b2009-11-21 02:48:08 +00001828/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling480ff322009-05-20 23:21:38 +00001829///
Devang Patel930143b2009-11-21 02:48:08 +00001830void DwarfDebug::emitDebugLoc() {
Devang Patel6b9a9fe2010-05-26 23:55:23 +00001831 if (DotDebugLocEntries.empty())
1832 return;
1833
Devang Patel116a9d72011-02-04 22:57:18 +00001834 for (SmallVector<DotDebugLocEntry, 4>::iterator
1835 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
1836 I != E; ++I) {
1837 DotDebugLocEntry &Entry = *I;
1838 if (I + 1 != DotDebugLocEntries.end())
1839 Entry.Merge(I+1);
1840 }
1841
Daniel Dunbarfd95b012011-03-16 22:16:39 +00001842 // Start the dwarf loc section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001843 Asm->OutStreamer.SwitchSection(
Devang Patel9fc11702010-05-25 23:40:22 +00001844 Asm->getObjFileLowering().getDwarfLocSection());
1845 unsigned char Size = Asm->getTargetData().getPointerSize();
Devang Patel6b9a9fe2010-05-26 23:55:23 +00001846 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
1847 unsigned index = 1;
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001848 for (SmallVector<DotDebugLocEntry, 4>::iterator
1849 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel30265c42010-07-07 20:12:52 +00001850 I != E; ++I, ++index) {
Devang Patel116a9d72011-02-04 22:57:18 +00001851 DotDebugLocEntry &Entry = *I;
1852 if (Entry.isMerged()) continue;
Devang Patel9fc11702010-05-25 23:40:22 +00001853 if (Entry.isEmpty()) {
1854 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
1855 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel6b9a9fe2010-05-26 23:55:23 +00001856 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patel9fc11702010-05-25 23:40:22 +00001857 } else {
1858 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0);
1859 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0);
Devang Patel3e021532011-04-28 02:22:40 +00001860 DIVariable DV(Entry.Variable);
Rafael Espindolad23bfb82011-05-27 22:05:41 +00001861 Asm->OutStreamer.AddComment("Loc expr size");
1862 MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol();
1863 MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol();
1864 Asm->EmitLabelDifference(end, begin, 2);
1865 Asm->OutStreamer.EmitLabel(begin);
Devang Pateled9fd452011-07-08 16:49:43 +00001866 if (Entry.isInt()) {
Devang Patel324f8432011-06-01 22:03:25 +00001867 DIBasicType BTy(DV.getType());
1868 if (BTy.Verify() &&
1869 (BTy.getEncoding() == dwarf::DW_ATE_signed
1870 || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) {
1871 Asm->OutStreamer.AddComment("DW_OP_consts");
1872 Asm->EmitInt8(dwarf::DW_OP_consts);
Devang Pateled9fd452011-07-08 16:49:43 +00001873 Asm->EmitSLEB128(Entry.getInt());
Devang Patel324f8432011-06-01 22:03:25 +00001874 } else {
1875 Asm->OutStreamer.AddComment("DW_OP_constu");
1876 Asm->EmitInt8(dwarf::DW_OP_constu);
Devang Pateled9fd452011-07-08 16:49:43 +00001877 Asm->EmitULEB128(Entry.getInt());
Devang Patel324f8432011-06-01 22:03:25 +00001878 }
Devang Pateled9fd452011-07-08 16:49:43 +00001879 } else if (Entry.isLocation()) {
1880 if (!DV.hasComplexAddress())
1881 // Regular entry.
Devang Patel3e021532011-04-28 02:22:40 +00001882 Asm->EmitDwarfRegOp(Entry.Loc);
Devang Pateled9fd452011-07-08 16:49:43 +00001883 else {
1884 // Complex address entry.
1885 unsigned N = DV.getNumAddrElements();
1886 unsigned i = 0;
1887 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
1888 if (Entry.Loc.getOffset()) {
1889 i = 2;
1890 Asm->EmitDwarfRegOp(Entry.Loc);
1891 Asm->OutStreamer.AddComment("DW_OP_deref");
1892 Asm->EmitInt8(dwarf::DW_OP_deref);
1893 Asm->OutStreamer.AddComment("DW_OP_plus_uconst");
1894 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
1895 Asm->EmitSLEB128(DV.getAddrElement(1));
1896 } else {
1897 // If first address element is OpPlus then emit
1898 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
1899 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
1900 Asm->EmitDwarfRegOp(Loc);
1901 i = 2;
1902 }
1903 } else {
1904 Asm->EmitDwarfRegOp(Entry.Loc);
1905 }
1906
1907 // Emit remaining complex address elements.
1908 for (; i < N; ++i) {
1909 uint64_t Element = DV.getAddrElement(i);
1910 if (Element == DIBuilder::OpPlus) {
1911 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
1912 Asm->EmitULEB128(DV.getAddrElement(++i));
1913 } else if (Element == DIBuilder::OpDeref)
1914 Asm->EmitInt8(dwarf::DW_OP_deref);
1915 else llvm_unreachable("unknown Opcode found in complex address");
1916 }
Devang Patel3e021532011-04-28 02:22:40 +00001917 }
Devang Patel3e021532011-04-28 02:22:40 +00001918 }
Devang Pateled9fd452011-07-08 16:49:43 +00001919 // else ... ignore constant fp. There is not any good way to
1920 // to represent them here in dwarf.
Rafael Espindolad23bfb82011-05-27 22:05:41 +00001921 Asm->OutStreamer.EmitLabel(end);
Devang Patel9fc11702010-05-25 23:40:22 +00001922 }
1923 }
Bill Wendling480ff322009-05-20 23:21:38 +00001924}
1925
1926/// EmitDebugARanges - Emit visible names into a debug aranges section.
1927///
1928void DwarfDebug::EmitDebugARanges() {
1929 // Start the dwarf aranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001930 Asm->OutStreamer.SwitchSection(
1931 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling480ff322009-05-20 23:21:38 +00001932}
1933
Devang Patel930143b2009-11-21 02:48:08 +00001934/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling480ff322009-05-20 23:21:38 +00001935///
Devang Patel930143b2009-11-21 02:48:08 +00001936void DwarfDebug::emitDebugRanges() {
Bill Wendling480ff322009-05-20 23:21:38 +00001937 // Start the dwarf ranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001938 Asm->OutStreamer.SwitchSection(
Devang Patel12563b32010-04-16 23:33:45 +00001939 Asm->getObjFileLowering().getDwarfRangesSection());
Devang Patel6c74a872010-04-27 19:46:33 +00001940 unsigned char Size = Asm->getTargetData().getPointerSize();
1941 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbacha8683bb2010-07-21 21:21:52 +00001942 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Patel6c74a872010-04-27 19:46:33 +00001943 I != E; ++I) {
1944 if (*I)
1945 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0);
Devang Patel12563b32010-04-16 23:33:45 +00001946 else
Devang Patel6c74a872010-04-27 19:46:33 +00001947 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel12563b32010-04-16 23:33:45 +00001948 }
Bill Wendling480ff322009-05-20 23:21:38 +00001949}
1950
Devang Patel930143b2009-11-21 02:48:08 +00001951/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling480ff322009-05-20 23:21:38 +00001952///
Devang Patel930143b2009-11-21 02:48:08 +00001953void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00001954 if (const MCSection *LineInfo =
Chris Lattner1472cf52009-08-02 07:24:22 +00001955 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling480ff322009-05-20 23:21:38 +00001956 // Start the dwarf macinfo section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001957 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00001958 }
1959}
1960
Devang Patel930143b2009-11-21 02:48:08 +00001961/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling480ff322009-05-20 23:21:38 +00001962/// Section Header:
1963/// 1. length of section
1964/// 2. Dwarf version number
1965/// 3. address size.
1966///
1967/// Entries (one "entry" for each function that was inlined):
1968///
1969/// 1. offset into __debug_str section for MIPS linkage name, if exists;
1970/// otherwise offset into __debug_str for regular function name.
1971/// 2. offset into __debug_str section for regular function name.
1972/// 3. an unsigned LEB128 number indicating the number of distinct inlining
1973/// instances for the function.
1974///
1975/// The rest of the entry consists of a {die_offset, low_pc} pair for each
1976/// inlined instance; the die_offset points to the inlined_subroutine die in the
1977/// __debug_info section, and the low_pc is the starting address for the
1978/// inlining instance.
Devang Patel930143b2009-11-21 02:48:08 +00001979void DwarfDebug::emitDebugInlineInfo() {
Chris Lattner3a383cb2010-04-05 00:13:49 +00001980 if (!Asm->MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling480ff322009-05-20 23:21:38 +00001981 return;
1982
Devang Patel1a0df9a2010-05-10 22:49:55 +00001983 if (!FirstCU)
Bill Wendling480ff322009-05-20 23:21:38 +00001984 return;
1985
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001986 Asm->OutStreamer.SwitchSection(
1987 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattnerf5c834f2010-01-22 22:09:00 +00001988
Chris Lattner566cae92010-03-09 23:52:58 +00001989 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnerf1429f12010-04-04 19:58:12 +00001990 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
1991 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling480ff322009-05-20 23:21:38 +00001992
Chris Lattnera179b522010-04-04 19:25:43 +00001993 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00001994
Chris Lattner566cae92010-03-09 23:52:58 +00001995 Asm->OutStreamer.AddComment("Dwarf Version");
1996 Asm->EmitInt16(dwarf::DWARF_VERSION);
1997 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattner3a383cb2010-04-05 00:13:49 +00001998 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00001999
Devang Patel32cc43c2010-05-07 20:54:48 +00002000 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002001 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach042483e2009-11-21 23:12:12 +00002002
Devang Patel32cc43c2010-05-07 20:54:48 +00002003 const MDNode *Node = *I;
2004 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach00e9c612009-11-22 19:20:36 +00002005 = InlineInfo.find(Node);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002006 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patel80ae3492009-08-28 23:24:31 +00002007 DISubprogram SP(Node);
Devang Patel2d9caf92009-11-25 17:36:49 +00002008 StringRef LName = SP.getLinkageName();
2009 StringRef Name = SP.getName();
Bill Wendling480ff322009-05-20 23:21:38 +00002010
Chris Lattner566cae92010-03-09 23:52:58 +00002011 Asm->OutStreamer.AddComment("MIPS linkage name");
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002012 if (LName.empty()) {
2013 Asm->OutStreamer.EmitBytes(Name, 0);
2014 Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator.
Jim Grosbacha8683bb2010-07-21 21:21:52 +00002015 } else
Chris Lattner70a4fce2010-04-04 23:25:33 +00002016 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
2017 DwarfStrSectionSym);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002018
Chris Lattner566cae92010-03-09 23:52:58 +00002019 Asm->OutStreamer.AddComment("Function name");
Chris Lattner70a4fce2010-04-04 23:25:33 +00002020 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner9efd1182010-04-04 19:09:29 +00002021 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling480ff322009-05-20 23:21:38 +00002022
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002023 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling480ff322009-05-20 23:21:38 +00002024 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner7bde8c02010-04-04 18:52:31 +00002025 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner085b6522010-03-09 00:31:02 +00002026 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00002027
Chris Lattner7bde8c02010-04-04 18:52:31 +00002028 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002029 Asm->OutStreamer.EmitSymbolValue(LI->first,
2030 Asm->getTargetData().getPointerSize(),0);
Bill Wendling480ff322009-05-20 23:21:38 +00002031 }
2032 }
2033
Chris Lattnera179b522010-04-04 19:25:43 +00002034 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00002035}