blob: 5876456e16fab09e4791caf4dd2e29109fc41ab3 [file] [log] [blame]
Bill Wendling0310d762009-05-15 09:23:25 +00001//===-- llvm/CodeGen/DwarfDebug.cpp - Dwarf Debug Framework ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf debug info into asm files.
11//
12//===----------------------------------------------------------------------===//
Chris Lattner6cde3e62010-03-09 00:39:24 +000013
Devang Patele4b27562009-08-28 23:24:31 +000014#define DEBUG_TYPE "dwarfdebug"
Bill Wendling0310d762009-05-15 09:23:25 +000015#include "DwarfDebug.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000016#include "DIE.h"
Devang Patel8b9df622011-04-12 17:40:32 +000017#include "DwarfCompileUnit.h"
Bill Wendling57fbba42010-04-05 22:59:21 +000018#include "llvm/Constants.h"
Bill Wendling0310d762009-05-15 09:23:25 +000019#include "llvm/Module.h"
Devang Patele449d1f2011-01-20 00:02:16 +000020#include "llvm/Instructions.h"
David Greeneb2c66fc2009-08-19 21:52:55 +000021#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling0310d762009-05-15 09:23:25 +000022#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnerb7db7332010-03-09 01:58:53 +000023#include "llvm/MC/MCAsmInfo.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000024#include "llvm/MC/MCSection.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000025#include "llvm/MC/MCStreamer.h"
Chris Lattnerb7db7332010-03-09 01:58:53 +000026#include "llvm/MC/MCSymbol.h"
Bill Wendling0310d762009-05-15 09:23:25 +000027#include "llvm/Target/TargetData.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000028#include "llvm/Target/TargetFrameLowering.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000029#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner9d1c1ad2010-04-04 18:06:11 +000030#include "llvm/Target/TargetMachine.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000031#include "llvm/Target/TargetRegisterInfo.h"
Devang Patel2a4a3b72010-04-19 19:14:02 +000032#include "llvm/Target/TargetOptions.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000033#include "llvm/Analysis/DebugInfo.h"
Devang Patel0eea95d2011-02-24 18:49:30 +000034#include "llvm/Analysis/DIBuilder.h"
Devang Patel9a31f0f2010-10-25 20:45:32 +000035#include "llvm/ADT/Statistic.h"
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +000036#include "llvm/ADT/STLExtras.h"
Chris Lattner23132b12009-08-24 03:52:50 +000037#include "llvm/ADT/StringExtras.h"
Devang Pateleac9c072010-04-27 19:46:33 +000038#include "llvm/Support/CommandLine.h"
Daniel Dunbar6e4bdfc2009-10-13 06:47:08 +000039#include "llvm/Support/Debug.h"
40#include "llvm/Support/ErrorHandling.h"
Devang Patel3139fcf2010-01-26 21:39:14 +000041#include "llvm/Support/ValueHandle.h"
Chris Lattner0ad9c912010-01-22 22:09:00 +000042#include "llvm/Support/FormattedStream.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000043#include "llvm/Support/Timer.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000044#include "llvm/Support/Path.h"
Bill Wendling0310d762009-05-15 09:23:25 +000045using namespace llvm;
46
Jim Grosbach1e20b962010-07-21 21:21:52 +000047static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print",
Devang Patel61409622010-07-07 20:12:52 +000048 cl::Hidden,
Devang Pateleac9c072010-04-27 19:46:33 +000049 cl::desc("Disable debug info printing"));
50
Dan Gohman281d65d2010-05-07 01:08:53 +000051static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden,
Chris Lattner7a2bdde2011-04-15 05:18:47 +000052 cl::desc("Make an absence of debug location information explicit."),
Dan Gohman281d65d2010-05-07 01:08:53 +000053 cl::init(false));
54
Bill Wendling5f017e82010-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 Wendling0310d762009-05-15 09:23:25 +000060//===----------------------------------------------------------------------===//
61
62/// Configuration values for initial hash set sizes (log2).
63///
Bill Wendling0310d762009-05-15 09:23:25 +000064static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling0310d762009-05-15 09:23:25 +000065
66namespace llvm {
67
Nick Lewycky3bbb6f72011-07-29 03:49:23 +000068DIType DbgVariable::getType() const {
Devang Patel3cbee302011-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 Patel8bd11de2010-08-09 21:01:39 +0000113 }
114 return Ty;
115 }
Devang Patel3cbee302011-04-12 22:53:02 +0000116 return Ty;
117}
Bill Wendling0310d762009-05-15 09:23:25 +0000118
Chris Lattnerea761862010-04-05 04:09:20 +0000119} // end llvm namespace
Bill Wendling0310d762009-05-15 09:23:25 +0000120
Chris Lattner49cd6642010-04-05 05:11:15 +0000121DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
Devang Patel163a9f72010-05-10 22:49:55 +0000122 : Asm(A), MMI(Asm->MMI), FirstCU(0),
Jim Grosbach1e20b962010-07-21 21:21:52 +0000123 AbbreviationsSet(InitAbbreviationsSetSize),
Devang Patelbf47fdb2011-08-10 20:55:27 +0000124 PrevLabel(NULL) {
Chris Lattnerbc733f52010-03-13 02:17:42 +0000125 NextStringPoolNumber = 0;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000126
Rafael Espindolaf2b04232011-05-06 14:56:22 +0000127 DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0;
Chris Lattner4ad1efe2010-04-04 23:10:38 +0000128 DwarfStrSectionSym = TextSectionSym = 0;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000129 DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = 0;
Devang Patelc3f5f782010-05-25 23:40:22 +0000130 FunctionBeginSym = FunctionEndSym = 0;
Dan Gohman03c3dc72010-06-18 15:56:31 +0000131 {
132 NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
133 beginModule(M);
Torok Edwin9c421072010-04-07 10:44:46 +0000134 }
Bill Wendling0310d762009-05-15 09:23:25 +0000135}
136DwarfDebug::~DwarfDebug() {
Bill Wendling0310d762009-05-15 09:23:25 +0000137}
138
Chris Lattnerbc733f52010-03-13 02:17:42 +0000139MCSymbol *DwarfDebug::getStringPoolEntry(StringRef Str) {
140 std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str];
141 if (Entry.first) return Entry.first;
142
143 Entry.second = NextStringPoolNumber++;
Chris Lattnerc0215722010-04-04 19:25:43 +0000144 return Entry.first = Asm->GetTempSymbol("string", Entry.second);
Chris Lattnerbc733f52010-03-13 02:17:42 +0000145}
146
147
Devang Patel2c4ceb12009-11-21 02:48:08 +0000148/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000149///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000150void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling0310d762009-05-15 09:23:25 +0000151 // Profile the node so that we can make it unique.
152 FoldingSetNodeID ID;
153 Abbrev.Profile(ID);
154
155 // Check the set for priors.
156 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
157
158 // If it's newly added.
159 if (InSet == &Abbrev) {
160 // Add to abbreviation list.
161 Abbreviations.push_back(&Abbrev);
162
163 // Assign the vector position + 1 as its number.
164 Abbrev.setNumber(Abbreviations.size());
165 } else {
166 // Assign existing abbreviation number.
167 Abbrev.setNumber(InSet->getNumber());
168 }
169}
170
Jim Grosbach1e20b962010-07-21 21:21:52 +0000171/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
Devang Patel351ca332010-01-05 01:46:14 +0000172/// printer to not emit usual symbol prefix before the symbol name is used then
173/// return linkage name after skipping this special LLVM prefix.
174static StringRef getRealLinkageName(StringRef LinkageName) {
175 char One = '\1';
176 if (LinkageName.startswith(StringRef(&One, 1)))
177 return LinkageName.substr(1);
178 return LinkageName;
179}
180
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000181/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel2c4ceb12009-11-21 02:48:08 +0000182/// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
183/// If there are global variables in this scope then create and insert
184/// DIEs for these variables.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000185DIE *DwarfDebug::updateSubprogramScopeDIE(const MDNode *SPNode) {
Devang Patel163a9f72010-05-10 22:49:55 +0000186 CompileUnit *SPCU = getCompileUnit(SPNode);
187 DIE *SPDie = SPCU->getDIE(SPNode);
Devang Patel8aa61472010-07-07 22:20:57 +0000188
Chris Lattnerd38fee82010-04-05 00:13:49 +0000189 assert(SPDie && "Unable to find subprogram DIE!");
190 DISubprogram SP(SPNode);
Jim Grosbach1e20b962010-07-21 21:21:52 +0000191
Devang Patel5e06bb82011-04-22 23:10:17 +0000192 DISubprogram SPDecl = SP.getFunctionDeclaration();
193 if (SPDecl.isSubprogram())
194 // Refer function declaration directly.
Devang Patel3cbee302011-04-12 22:53:02 +0000195 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
Devang Pateldbc64af2011-08-15 17:24:54 +0000196 SPCU->getOrCreateSubprogramDIE(SPDecl));
Devang Patel5e06bb82011-04-22 23:10:17 +0000197 else {
198 // There is not any need to generate specification DIE for a function
199 // defined at compile unit level. If a function is defined inside another
200 // function then gdb prefers the definition at top level and but does not
201 // expect specification DIE in parent function. So avoid creating
202 // specification DIE for a function defined inside a function.
203 if (SP.isDefinition() && !SP.getContext().isCompileUnit() &&
204 !SP.getContext().isFile() &&
205 !isSubprogramContext(SP.getContext())) {
206 SPCU-> addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
207
208 // Add arguments.
209 DICompositeType SPTy = SP.getType();
210 DIArray Args = SPTy.getTypeArray();
211 unsigned SPTag = SPTy.getTag();
212 if (SPTag == dwarf::DW_TAG_subroutine_type)
213 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
214 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
215 DIType ATy = DIType(DIType(Args.getElement(i)));
216 SPCU->addType(Arg, ATy);
217 if (ATy.isArtificial())
218 SPCU->addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
219 SPDie->addChild(Arg);
220 }
221 DIE *SPDeclDie = SPDie;
222 SPDie = new DIE(dwarf::DW_TAG_subprogram);
223 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
224 SPDeclDie);
225 SPCU->addDie(SPDie);
226 }
Chris Lattnerd38fee82010-04-05 00:13:49 +0000227 }
Devang Patel8aa61472010-07-07 22:20:57 +0000228 // Pick up abstract subprogram DIE.
229 if (DIE *AbsSPDIE = AbstractSPDies.lookup(SPNode)) {
230 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patel3cbee302011-04-12 22:53:02 +0000231 SPCU->addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin,
232 dwarf::DW_FORM_ref4, AbsSPDIE);
Devang Patel8aa61472010-07-07 22:20:57 +0000233 SPCU->addDie(SPDie);
234 }
235
Devang Patel3cbee302011-04-12 22:53:02 +0000236 SPCU->addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
237 Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber()));
238 SPCU->addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
239 Asm->GetTempSymbol("func_end", Asm->getFunctionNumber()));
Chris Lattnerd38fee82010-04-05 00:13:49 +0000240 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
241 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
Devang Patel3cbee302011-04-12 22:53:02 +0000242 SPCU->addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Devang Patelb4645642010-02-06 01:02:37 +0000243
Chris Lattnerd38fee82010-04-05 00:13:49 +0000244 return SPDie;
Devang Patel53bb5c92009-11-10 23:06:00 +0000245}
246
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000247/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel2c4ceb12009-11-21 02:48:08 +0000248/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000249DIE *DwarfDebug::constructLexicalScopeDIE(LexicalScope *Scope) {
Devang Pateleac9c072010-04-27 19:46:33 +0000250
251 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
252 if (Scope->isAbstractScope())
253 return ScopeDIE;
254
Devang Patelbf47fdb2011-08-10 20:55:27 +0000255 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Devang Pateleac9c072010-04-27 19:46:33 +0000256 if (Ranges.empty())
257 return 0;
258
Devang Patel3cbee302011-04-12 22:53:02 +0000259 CompileUnit *TheCU = getCompileUnit(Scope->getScopeNode());
Devang Patelbf47fdb2011-08-10 20:55:27 +0000260 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Pateleac9c072010-04-27 19:46:33 +0000261 if (Ranges.size() > 1) {
262 // .debug_range section has not been laid out yet. Emit offset in
Jim Grosbach1e20b962010-07-21 21:21:52 +0000263 // .debug_range as a uint, size 4, for now. emitDIE will handle
Devang Pateleac9c072010-04-27 19:46:33 +0000264 // DW_AT_ranges appropriately.
Devang Patel3cbee302011-04-12 22:53:02 +0000265 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel5bc942c2011-08-10 23:58:09 +0000266 DebugRangeSymbols.size()
267 * Asm->getTargetData().getPointerSize());
Devang Patelbf47fdb2011-08-10 20:55:27 +0000268 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Pateleac9c072010-04-27 19:46:33 +0000269 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patelc3f5f782010-05-25 23:40:22 +0000270 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
271 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
Devang Pateleac9c072010-04-27 19:46:33 +0000272 }
273 DebugRangeSymbols.push_back(NULL);
274 DebugRangeSymbols.push_back(NULL);
275 return ScopeDIE;
276 }
277
Devang Patelc3f5f782010-05-25 23:40:22 +0000278 const MCSymbol *Start = getLabelBeforeInsn(RI->first);
279 const MCSymbol *End = getLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +0000280
Devang Patelc3f5f782010-05-25 23:40:22 +0000281 if (End == 0) return 0;
Devang Patel53bb5c92009-11-10 23:06:00 +0000282
Chris Lattnerb7db7332010-03-09 01:58:53 +0000283 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
284 assert(End->isDefined() && "Invalid end label for an inlined scope!");
Jim Grosbach1e20b962010-07-21 21:21:52 +0000285
Devang Patel3cbee302011-04-12 22:53:02 +0000286 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start);
287 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, End);
Devang Patel53bb5c92009-11-10 23:06:00 +0000288
289 return ScopeDIE;
290}
291
Devang Patel2c4ceb12009-11-21 02:48:08 +0000292/// constructInlinedScopeDIE - This scope represents inlined body of
293/// a function. Construct DIE to represent this concrete inlined copy
294/// of the function.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000295DIE *DwarfDebug::constructInlinedScopeDIE(LexicalScope *Scope) {
Devang Pateleac9c072010-04-27 19:46:33 +0000296
Devang Patelbf47fdb2011-08-10 20:55:27 +0000297 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000298 assert (Ranges.empty() == false
Devang Patelbf47fdb2011-08-10 20:55:27 +0000299 && "LexicalScope does not have instruction markers!");
Devang Pateleac9c072010-04-27 19:46:33 +0000300
Devang Patel26a92002011-07-27 00:34:13 +0000301 if (!Scope->getScopeNode())
302 return NULL;
303 DIScope DS(Scope->getScopeNode());
304 DISubprogram InlinedSP = getDISubprogram(DS);
305 CompileUnit *TheCU = getCompileUnit(InlinedSP);
306 DIE *OriginDIE = TheCU->getDIE(InlinedSP);
307 if (!OriginDIE) {
308 DEBUG(dbgs() << "Unable to find original DIE for inlined subprogram.");
309 return NULL;
310 }
311
Devang Patelbf47fdb2011-08-10 20:55:27 +0000312 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
Devang Patelc3f5f782010-05-25 23:40:22 +0000313 const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first);
314 const MCSymbol *EndLabel = getLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +0000315
Devang Patel0afbf232010-07-08 22:39:20 +0000316 if (StartLabel == 0 || EndLabel == 0) {
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000317 assert (0 && "Unexpected Start and End labels for a inlined scope!");
Devang Pateleac9c072010-04-27 19:46:33 +0000318 return 0;
319 }
Chris Lattnerb7db7332010-03-09 01:58:53 +0000320 assert(StartLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +0000321 "Invalid starting label for an inlined scope!");
Chris Lattnerb7db7332010-03-09 01:58:53 +0000322 assert(EndLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +0000323 "Invalid end label for an inlined scope!");
Devang Pateleac9c072010-04-27 19:46:33 +0000324
Devang Pateld96efb82011-05-05 17:54:26 +0000325 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
Devang Patel3cbee302011-04-12 22:53:02 +0000326 TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
327 dwarf::DW_FORM_ref4, OriginDIE);
Devang Patel53bb5c92009-11-10 23:06:00 +0000328
Devang Patel26a92002011-07-27 00:34:13 +0000329 if (Ranges.size() > 1) {
330 // .debug_range section has not been laid out yet. Emit offset in
331 // .debug_range as a uint, size 4, for now. emitDIE will handle
332 // DW_AT_ranges appropriately.
333 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
Devang Patel5bc942c2011-08-10 23:58:09 +0000334 DebugRangeSymbols.size()
335 * Asm->getTargetData().getPointerSize());
Devang Patelbf47fdb2011-08-10 20:55:27 +0000336 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Patel26a92002011-07-27 00:34:13 +0000337 RE = Ranges.end(); RI != RE; ++RI) {
338 DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first));
339 DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second));
340 }
341 DebugRangeSymbols.push_back(NULL);
342 DebugRangeSymbols.push_back(NULL);
343 } else {
Devang Patel5bc942c2011-08-10 23:58:09 +0000344 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
345 StartLabel);
346 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
347 EndLabel);
Devang Patel26a92002011-07-27 00:34:13 +0000348 }
Devang Patel53bb5c92009-11-10 23:06:00 +0000349
350 InlinedSubprogramDIEs.insert(OriginDIE);
351
352 // Track the start label for this inlined function.
Devang Patel26a92002011-07-27 00:34:13 +0000353 //.debug_inlined section specification does not clearly state how
354 // to emit inlined scope that is split into multiple instruction ranges.
355 // For now, use first instruction range and emit low_pc/high_pc pair and
356 // corresponding .debug_inlined section entry for this pair.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000357 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patel2db49d72010-05-07 18:11:54 +0000358 I = InlineInfo.find(InlinedSP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000359
360 if (I == InlineInfo.end()) {
Devang Patel2db49d72010-05-07 18:11:54 +0000361 InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel,
Jim Grosbach7ab38df2009-11-22 19:20:36 +0000362 ScopeDIE));
Devang Patel2db49d72010-05-07 18:11:54 +0000363 InlinedSPNodes.push_back(InlinedSP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000364 } else
Chris Lattner6ed0f902010-03-09 00:31:02 +0000365 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patel53bb5c92009-11-10 23:06:00 +0000366
Devang Patel53bb5c92009-11-10 23:06:00 +0000367 DILocation DL(Scope->getInlinedAt());
Devang Patel3cbee302011-04-12 22:53:02 +0000368 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, TheCU->getID());
369 TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patel53bb5c92009-11-10 23:06:00 +0000370
371 return ScopeDIE;
372}
373
Devang Patel2c4ceb12009-11-21 02:48:08 +0000374/// constructVariableDIE - Construct a DIE for the given DbgVariable.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000375DIE *DwarfDebug::constructVariableDIE(DbgVariable *DV, LexicalScope *Scope) {
Devang Patel8bd11de2010-08-09 21:01:39 +0000376 StringRef Name = DV->getName();
Devang Patel65dbc902009-11-25 17:36:49 +0000377 if (Name.empty())
Devang Patel3fb6bd62009-11-13 02:25:26 +0000378 return NULL;
Devang Patel53bb5c92009-11-10 23:06:00 +0000379
380 // Translate tag to proper Dwarf tag. The result variable is dropped for
381 // now.
382 unsigned Tag;
Devang Patel8bd11de2010-08-09 21:01:39 +0000383 switch (DV->getTag()) {
Devang Patel53bb5c92009-11-10 23:06:00 +0000384 case dwarf::DW_TAG_return_variable:
385 return NULL;
386 case dwarf::DW_TAG_arg_variable:
387 Tag = dwarf::DW_TAG_formal_parameter;
388 break;
389 case dwarf::DW_TAG_auto_variable: // fall thru
390 default:
391 Tag = dwarf::DW_TAG_variable;
392 break;
393 }
394
395 // Define variable debug information entry.
396 DIE *VariableDie = new DIE(Tag);
Devang Patel9341d102011-04-25 23:05:21 +0000397 CompileUnit *VariableCU = getCompileUnit(DV->getVariable());
Devang Patel53bb5c92009-11-10 23:06:00 +0000398 DIE *AbsDIE = NULL;
Devang Patel26c1e562010-05-20 16:36:41 +0000399 DenseMap<const DbgVariable *, const DbgVariable *>::iterator
400 V2AVI = VarToAbstractVarMap.find(DV);
401 if (V2AVI != VarToAbstractVarMap.end())
402 AbsDIE = V2AVI->second->getDIE();
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000403
Devang Patel26c1e562010-05-20 16:36:41 +0000404 if (AbsDIE)
Devang Patel9341d102011-04-25 23:05:21 +0000405 VariableCU->addDIEEntry(VariableDie, dwarf::DW_AT_abstract_origin,
Devang Patel3cbee302011-04-12 22:53:02 +0000406 dwarf::DW_FORM_ref4, AbsDIE);
Devang Patel53bb5c92009-11-10 23:06:00 +0000407 else {
Devang Patel9341d102011-04-25 23:05:21 +0000408 VariableCU->addString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string,
409 Name);
410 VariableCU->addSourceLine(VariableDie, DV->getVariable());
Devang Patel53bb5c92009-11-10 23:06:00 +0000411
412 // Add variable type.
Devang Patel9341d102011-04-25 23:05:21 +0000413 VariableCU->addType(VariableDie, DV->getType());
Devang Patel53bb5c92009-11-10 23:06:00 +0000414 }
415
Devang Patel8bd11de2010-08-09 21:01:39 +0000416 if (Tag == dwarf::DW_TAG_formal_parameter && DV->getType().isArtificial())
Devang Patel9341d102011-04-25 23:05:21 +0000417 VariableCU->addUInt(VariableDie, dwarf::DW_AT_artificial,
418 dwarf::DW_FORM_flag, 1);
Devang Patel3cf763d2010-09-29 23:07:21 +0000419 else if (DIVariable(DV->getVariable()).isArtificial())
Devang Patel9341d102011-04-25 23:05:21 +0000420 VariableCU->addUInt(VariableDie, dwarf::DW_AT_artificial,
421 dwarf::DW_FORM_flag, 1);
Devang Patelc3f5f782010-05-25 23:40:22 +0000422
423 if (Scope->isAbstractScope()) {
424 DV->setDIE(VariableDie);
425 return VariableDie;
426 }
427
428 // Add variable address.
429
430 unsigned Offset = DV->getDotDebugLocOffset();
431 if (Offset != ~0U) {
Devang Patel5bc942c2011-08-10 23:58:09 +0000432 VariableCU->addLabel(VariableDie, dwarf::DW_AT_location,
433 dwarf::DW_FORM_data4,
434 Asm->GetTempSymbol("debug_loc", Offset));
Devang Patelc3f5f782010-05-25 23:40:22 +0000435 DV->setDIE(VariableDie);
436 UseDotDebugLocEntry.insert(VariableDie);
437 return VariableDie;
438 }
439
440 // Check if variable is described by a DBG_VALUE instruction.
441 DenseMap<const DbgVariable *, const MachineInstr *>::iterator DVI =
442 DbgVariableToDbgInstMap.find(DV);
443 if (DVI != DbgVariableToDbgInstMap.end()) {
444 const MachineInstr *DVInsn = DVI->second;
Devang Patelc3f5f782010-05-25 23:40:22 +0000445 bool updated = false;
Devang Patelc3f5f782010-05-25 23:40:22 +0000446 if (DVInsn->getNumOperands() == 3) {
Devang Patel0b48ead2010-08-31 22:22:42 +0000447 if (DVInsn->getOperand(0).isReg()) {
448 const MachineOperand RegOp = DVInsn->getOperand(0);
449 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
450 if (DVInsn->getOperand(1).isImm() &&
451 TRI->getFrameRegister(*Asm->MF) == RegOp.getReg()) {
Devang Patele1cdf842011-04-27 22:45:24 +0000452 unsigned FrameReg = 0;
453 const TargetFrameLowering *TFI = Asm->TM.getFrameLowering();
454 int Offset =
455 TFI->getFrameIndexReference(*Asm->MF,
456 DVInsn->getOperand(1).getImm(),
457 FrameReg);
458 MachineLocation Location(FrameReg, Offset);
459 VariableCU->addVariableAddress(DV, VariableDie, Location);
460
461 } else if (RegOp.getReg())
462 VariableCU->addVariableAddress(DV, VariableDie,
463 MachineLocation(RegOp.getReg()));
464 updated = true;
Devang Patel0b48ead2010-08-31 22:22:42 +0000465 }
Devang Patelc3f5f782010-05-25 23:40:22 +0000466 else if (DVInsn->getOperand(0).isImm())
Devang Patelb58128e2011-05-27 16:45:18 +0000467 updated =
468 VariableCU->addConstantValue(VariableDie, DVInsn->getOperand(0),
469 DV->getType());
Jim Grosbach1e20b962010-07-21 21:21:52 +0000470 else if (DVInsn->getOperand(0).isFPImm())
471 updated =
Devang Patel9341d102011-04-25 23:05:21 +0000472 VariableCU->addConstantFPValue(VariableDie, DVInsn->getOperand(0));
Devang Patel8594d422011-06-24 20:46:11 +0000473 else if (DVInsn->getOperand(0).isCImm())
474 updated =
475 VariableCU->addConstantValue(VariableDie,
476 DVInsn->getOperand(0).getCImm(),
Devang Patel6f9d8ff2011-08-15 17:57:41 +0000477 DV->getType().isUnsignedDIType());
Devang Patelc3f5f782010-05-25 23:40:22 +0000478 } else {
Devang Patele1cdf842011-04-27 22:45:24 +0000479 VariableCU->addVariableAddress(DV, VariableDie,
480 Asm->getDebugValueLocation(DVInsn));
481 updated = true;
Devang Patelc3f5f782010-05-25 23:40:22 +0000482 }
483 if (!updated) {
484 // If variableDie is not updated then DBG_VALUE instruction does not
485 // have valid variable info.
486 delete VariableDie;
487 return NULL;
488 }
489 DV->setDIE(VariableDie);
490 return VariableDie;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000491 }
Devang Patelc3f5f782010-05-25 23:40:22 +0000492
493 // .. else use frame index, if available.
Devang Patelc3f5f782010-05-25 23:40:22 +0000494 int FI = 0;
Devang Patele1cdf842011-04-27 22:45:24 +0000495 if (findVariableFrameIndex(DV, &FI)) {
496 unsigned FrameReg = 0;
497 const TargetFrameLowering *TFI = Asm->TM.getFrameLowering();
498 int Offset =
499 TFI->getFrameIndexReference(*Asm->MF, FI, FrameReg);
500 MachineLocation Location(FrameReg, Offset);
501 VariableCU->addVariableAddress(DV, VariableDie, Location);
502 }
503
Devang Patel53bb5c92009-11-10 23:06:00 +0000504 DV->setDIE(VariableDie);
505 return VariableDie;
506
507}
Devang Patel2c4ceb12009-11-21 02:48:08 +0000508
509/// constructScopeDIE - Construct a DIE for this scope.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000510DIE *DwarfDebug::constructScopeDIE(LexicalScope *Scope) {
Devang Patel3c91b052010-03-08 20:52:55 +0000511 if (!Scope || !Scope->getScopeNode())
512 return NULL;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000513
Devang Patel5bc9fec2011-02-19 01:31:27 +0000514 SmallVector <DIE *, 8> Children;
Devang Patel0478c152011-03-01 22:58:55 +0000515
516 // Collect arguments for current function.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000517 if (LScopes.isCurrentFunctionScope(Scope))
Devang Patel0478c152011-03-01 22:58:55 +0000518 for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i)
519 if (DbgVariable *ArgDV = CurrentFnArguments[i])
520 if (DIE *Arg = constructVariableDIE(ArgDV, Scope))
521 Children.push_back(Arg);
522
Devang Patel5bc9fec2011-02-19 01:31:27 +0000523 // Collect lexical scope childrens first.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000524 const SmallVector<DbgVariable *, 8> &Variables = ScopeVariables.lookup(Scope);
Devang Patel5bc9fec2011-02-19 01:31:27 +0000525 for (unsigned i = 0, N = Variables.size(); i < N; ++i)
526 if (DIE *Variable = constructVariableDIE(Variables[i], Scope))
527 Children.push_back(Variable);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000528 const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren();
Devang Patel5bc9fec2011-02-19 01:31:27 +0000529 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
530 if (DIE *Nested = constructScopeDIE(Scopes[j]))
531 Children.push_back(Nested);
Devang Patel3c91b052010-03-08 20:52:55 +0000532 DIScope DS(Scope->getScopeNode());
533 DIE *ScopeDIE = NULL;
534 if (Scope->getInlinedAt())
535 ScopeDIE = constructInlinedScopeDIE(Scope);
536 else if (DS.isSubprogram()) {
Devang Patel0dd45582010-06-28 20:53:04 +0000537 ProcessedSPNodes.insert(DS);
Devang Patel8aa61472010-07-07 22:20:57 +0000538 if (Scope->isAbstractScope()) {
Devang Patel163a9f72010-05-10 22:49:55 +0000539 ScopeDIE = getCompileUnit(DS)->getDIE(DS);
Devang Patel8aa61472010-07-07 22:20:57 +0000540 // Note down abstract DIE.
541 if (ScopeDIE)
542 AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
543 }
Devang Patel3c91b052010-03-08 20:52:55 +0000544 else
Devang Patel2db49d72010-05-07 18:11:54 +0000545 ScopeDIE = updateSubprogramScopeDIE(DS);
Devang Patel3c91b052010-03-08 20:52:55 +0000546 }
Devang Patel5bc9fec2011-02-19 01:31:27 +0000547 else {
548 // There is no need to emit empty lexical block DIE.
549 if (Children.empty())
550 return NULL;
Devang Patel3c91b052010-03-08 20:52:55 +0000551 ScopeDIE = constructLexicalScopeDIE(Scope);
Devang Patel5bc9fec2011-02-19 01:31:27 +0000552 }
553
Devang Patelaead63c2010-03-29 22:59:58 +0000554 if (!ScopeDIE) return NULL;
Jim Grosbach1e20b962010-07-21 21:21:52 +0000555
Devang Patel5bc9fec2011-02-19 01:31:27 +0000556 // Add children
557 for (SmallVector<DIE *, 8>::iterator I = Children.begin(),
558 E = Children.end(); I != E; ++I)
559 ScopeDIE->addChild(*I);
Devang Patel193f7202009-11-24 01:14:22 +0000560
Jim Grosbach1e20b962010-07-21 21:21:52 +0000561 if (DS.isSubprogram())
Devang Patel3cbee302011-04-12 22:53:02 +0000562 getCompileUnit(DS)->addPubTypes(DISubprogram(DS));
Jim Grosbach1e20b962010-07-21 21:21:52 +0000563
Devang Patel193f7202009-11-24 01:14:22 +0000564 return ScopeDIE;
Devang Patel53bb5c92009-11-10 23:06:00 +0000565}
566
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000567/// GetOrCreateSourceID - Look up the source id with the given directory and
568/// source file names. If none currently exists, create a new id and insert it
569/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
570/// maps as well.
Devang Patel2f584852010-07-24 00:53:22 +0000571
Devang Patel23670e52011-03-24 20:30:50 +0000572unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
573 StringRef DirName) {
Devang Patel1905a182010-09-16 20:57:49 +0000574 // If FE did not provide a file name, then assume stdin.
575 if (FileName.empty())
Devang Patel23670e52011-03-24 20:30:50 +0000576 return GetOrCreateSourceID("<stdin>", StringRef());
577
578 // MCStream expects full path name as filename.
Benjamin Kramerab5f7882011-06-05 14:36:47 +0000579 if (!DirName.empty() && !sys::path::is_absolute(FileName)) {
580 SmallString<128> FullPathName = DirName;
581 sys::path::append(FullPathName, FileName);
Devang Patel23670e52011-03-24 20:30:50 +0000582 // Here FullPathName will be copied into StringMap by GetOrCreateSourceID.
583 return GetOrCreateSourceID(StringRef(FullPathName), StringRef());
584 }
Devang Patel1905a182010-09-16 20:57:49 +0000585
Rafael Espindola5c055632010-11-18 02:04:25 +0000586 StringMapEntry<unsigned> &Entry = SourceIdMap.GetOrCreateValue(FileName);
587 if (Entry.getValue())
588 return Entry.getValue();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000589
Rafael Espindola5c055632010-11-18 02:04:25 +0000590 unsigned SrcId = SourceIdMap.size();
591 Entry.setValue(SrcId);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000592
Rafael Espindola5c055632010-11-18 02:04:25 +0000593 // Print out a .file directive to specify files for .loc directives.
Devang Patel23670e52011-03-24 20:30:50 +0000594 Asm->OutStreamer.EmitDwarfFileDirective(SrcId, Entry.getKey());
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000595
596 return SrcId;
597}
598
Jim Grosbach1e20b962010-07-21 21:21:52 +0000599/// constructCompileUnit - Create new CompileUnit for the given
Devang Patel163a9f72010-05-10 22:49:55 +0000600/// metadata node with tag DW_TAG_compile_unit.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000601void DwarfDebug::constructCompileUnit(const MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +0000602 DICompileUnit DIUnit(N);
Devang Patel65dbc902009-11-25 17:36:49 +0000603 StringRef FN = DIUnit.getFilename();
604 StringRef Dir = DIUnit.getDirectory();
Devang Patel23670e52011-03-24 20:30:50 +0000605 unsigned ID = GetOrCreateSourceID(FN, Dir);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000606
607 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Devang Patel3cbee302011-04-12 22:53:02 +0000608 CompileUnit *NewCU = new CompileUnit(ID, Die, Asm, this);
609 NewCU->addString(Die, dwarf::DW_AT_producer, dwarf::DW_FORM_string,
610 DIUnit.getProducer());
611 NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2,
612 DIUnit.getLanguage());
613 NewCU->addString(Die, dwarf::DW_AT_name, dwarf::DW_FORM_string, FN);
Devang Patel5098da02010-04-26 22:54:28 +0000614 // Use DW_AT_entry_pc instead of DW_AT_low_pc/DW_AT_high_pc pair. This
615 // simplifies debug range entries.
Devang Patel3cbee302011-04-12 22:53:02 +0000616 NewCU->addUInt(Die, dwarf::DW_AT_entry_pc, dwarf::DW_FORM_addr, 0);
Devang Patel4a602ca2010-03-22 23:11:36 +0000617 // DW_AT_stmt_list is a offset of line number information for this
Devang Patelaf608bd2010-08-24 00:06:12 +0000618 // compile unit in debug_line section.
Rafael Espindoladc52ecf2011-05-10 20:35:05 +0000619 if(Asm->MAI->doesDwarfRequireRelocationForSectionOffset())
Rafael Espindola597a7662011-05-04 17:44:06 +0000620 NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Devang Patel3cbee302011-04-12 22:53:02 +0000621 Asm->GetTempSymbol("section_line"));
Devang Patelae84d5b2010-08-31 23:50:19 +0000622 else
Devang Patel3cbee302011-04-12 22:53:02 +0000623 NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000624
Devang Patel65dbc902009-11-25 17:36:49 +0000625 if (!Dir.empty())
Devang Patel3cbee302011-04-12 22:53:02 +0000626 NewCU->addString(Die, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string, Dir);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000627 if (DIUnit.isOptimized())
Devang Patel3cbee302011-04-12 22:53:02 +0000628 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000629
Devang Patel65dbc902009-11-25 17:36:49 +0000630 StringRef Flags = DIUnit.getFlags();
631 if (!Flags.empty())
Devang Patel5bc942c2011-08-10 23:58:09 +0000632 NewCU->addString(Die, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string,
633 Flags);
Devang Patel3cbee302011-04-12 22:53:02 +0000634
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000635 unsigned RVer = DIUnit.getRunTimeVersion();
636 if (RVer)
Devang Patel3cbee302011-04-12 22:53:02 +0000637 NewCU->addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000638 dwarf::DW_FORM_data1, RVer);
639
Devang Patel163a9f72010-05-10 22:49:55 +0000640 if (!FirstCU)
641 FirstCU = NewCU;
642 CUMap.insert(std::make_pair(N, NewCU));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000643}
644
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000645/// getCompileUnit - Get CompileUnit DIE.
Devang Patel163a9f72010-05-10 22:49:55 +0000646CompileUnit *DwarfDebug::getCompileUnit(const MDNode *N) const {
647 assert (N && "Invalid DwarfDebug::getCompileUnit argument!");
648 DIDescriptor D(N);
649 const MDNode *CUNode = NULL;
650 if (D.isCompileUnit())
651 CUNode = N;
652 else if (D.isSubprogram())
653 CUNode = DISubprogram(N).getCompileUnit();
654 else if (D.isType())
655 CUNode = DIType(N).getCompileUnit();
656 else if (D.isGlobalVariable())
657 CUNode = DIGlobalVariable(N).getCompileUnit();
658 else if (D.isVariable())
659 CUNode = DIVariable(N).getCompileUnit();
660 else if (D.isNameSpace())
661 CUNode = DINameSpace(N).getCompileUnit();
662 else if (D.isFile())
663 CUNode = DIFile(N).getCompileUnit();
664 else
665 return FirstCU;
666
667 DenseMap<const MDNode *, CompileUnit *>::const_iterator I
668 = CUMap.find(CUNode);
669 if (I == CUMap.end())
670 return FirstCU;
671 return I->second;
672}
673
Devang Patel163a9f72010-05-10 22:49:55 +0000674/// constructGlobalVariableDIE - Construct global variable DIE.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000675void DwarfDebug::constructGlobalVariableDIE(const MDNode *N) {
Devang Patel9fa539c2010-08-10 01:37:23 +0000676 DIGlobalVariable GV(N);
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000677
Devang Patel905cf5e2009-09-04 23:59:07 +0000678 // If debug information is malformed then ignore it.
Devang Patel9fa539c2010-08-10 01:37:23 +0000679 if (GV.Verify() == false)
Devang Patel905cf5e2009-09-04 23:59:07 +0000680 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000681
682 // Check for pre-existence.
Devang Patel163a9f72010-05-10 22:49:55 +0000683 CompileUnit *TheCU = getCompileUnit(N);
Devang Patel6f9d8ff2011-08-15 17:57:41 +0000684 TheCU->createGlobalVariableDIE(N);
Devang Patel13e16b62009-06-26 01:49:18 +0000685 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000686}
687
Devang Patel163a9f72010-05-10 22:49:55 +0000688/// construct SubprogramDIE - Construct subprogram DIE.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000689void DwarfDebug::constructSubprogramDIE(const MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +0000690 DISubprogram SP(N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000691
Stuart Hastings639336e2010-04-06 21:38:29 +0000692 // Check for pre-existence.
Devang Patel163a9f72010-05-10 22:49:55 +0000693 CompileUnit *TheCU = getCompileUnit(N);
694 if (TheCU->getDIE(N))
Stuart Hastings639336e2010-04-06 21:38:29 +0000695 return;
696
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000697 if (!SP.isDefinition())
698 // This is a method declaration which will be handled while constructing
699 // class type.
Devang Patel13e16b62009-06-26 01:49:18 +0000700 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000701
Devang Pateldbc64af2011-08-15 17:24:54 +0000702 DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP);
Stuart Hastings639336e2010-04-06 21:38:29 +0000703
704 // Add to map.
Devang Patel163a9f72010-05-10 22:49:55 +0000705 TheCU->insertDIE(N, SubprogramDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000706
707 // Add to context owner.
Devang Patel3cbee302011-04-12 22:53:02 +0000708 TheCU->addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel0000fad2009-12-08 23:21:45 +0000709
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000710 // Expose as global.
Devang Patel163a9f72010-05-10 22:49:55 +0000711 TheCU->addGlobal(SP.getName(), SubprogramDie);
Devang Patel193f7202009-11-24 01:14:22 +0000712
Devang Patel13e16b62009-06-26 01:49:18 +0000713 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000714}
715
Devang Patel2c4ceb12009-11-21 02:48:08 +0000716/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbar00564992009-09-19 20:40:14 +0000717/// content. Create global DIEs and emit initial debug info sections.
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000718/// This is invoked by the target AsmPrinter.
Chris Lattner75f50722010-04-04 07:48:20 +0000719void DwarfDebug::beginModule(Module *M) {
Devang Pateleac9c072010-04-27 19:46:33 +0000720 if (DisableDebugInfoPrinting)
721 return;
722
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000723 // If module has named metadata anchors then use them, otherwise scan the
724 // module using debug info finder to collect debug info.
Devang Patel30692ab2011-05-03 16:45:22 +0000725 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
726 if (CU_Nodes) {
Devang Patela938dd02011-05-04 16:34:02 +0000727
728 NamedMDNode *GV_Nodes = M->getNamedMetadata("llvm.dbg.gv");
729 NamedMDNode *SP_Nodes = M->getNamedMetadata("llvm.dbg.sp");
730 if (!GV_Nodes && !SP_Nodes)
731 // If there are not any global variables or any functions then
732 // there is not any debug info in this module.
Devang Patel30692ab2011-05-03 16:45:22 +0000733 return;
734
Devang Patela938dd02011-05-04 16:34:02 +0000735 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i)
736 constructCompileUnit(CU_Nodes->getOperand(i));
Devang Patel30692ab2011-05-03 16:45:22 +0000737
Devang Patela938dd02011-05-04 16:34:02 +0000738 if (GV_Nodes)
739 for (unsigned i = 0, e = GV_Nodes->getNumOperands(); i != e; ++i)
740 constructGlobalVariableDIE(GV_Nodes->getOperand(i));
741
742 if (SP_Nodes)
743 for (unsigned i = 0, e = SP_Nodes->getNumOperands(); i != e; ++i)
744 constructSubprogramDIE(SP_Nodes->getOperand(i));
Devang Patel30692ab2011-05-03 16:45:22 +0000745
746 } else {
747
748 DebugInfoFinder DbgFinder;
749 DbgFinder.processModule(*M);
750
Devang Patela938dd02011-05-04 16:34:02 +0000751 bool HasDebugInfo = false;
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000752 // Scan all the compile-units to see if there are any marked as the main
753 // unit. If not, we do not generate debug info.
Devang Patel30692ab2011-05-03 16:45:22 +0000754 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
755 E = DbgFinder.compile_unit_end(); I != E; ++I) {
756 if (DICompileUnit(*I).isMain()) {
757 HasDebugInfo = true;
758 break;
759 }
760 }
Devang Patela938dd02011-05-04 16:34:02 +0000761 if (!HasDebugInfo) return;
Devang Patel30692ab2011-05-03 16:45:22 +0000762
763 // Create all the compile unit DIEs.
764 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
765 E = DbgFinder.compile_unit_end(); I != E; ++I)
766 constructCompileUnit(*I);
767
768 // Create DIEs for each global variable.
769 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
770 E = DbgFinder.global_variable_end(); I != E; ++I)
771 constructGlobalVariableDIE(*I);
772
773 // Create DIEs for each subprogram.
774 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
775 E = DbgFinder.subprogram_end(); I != E; ++I)
776 constructSubprogramDIE(*I);
Chris Lattnerd850ac72010-04-05 02:19:28 +0000777 }
Devang Patel30692ab2011-05-03 16:45:22 +0000778
Chris Lattnerd850ac72010-04-05 02:19:28 +0000779 // Tell MMI that we have debug info.
780 MMI->setDebugInfoAvailability(true);
Devang Patel30692ab2011-05-03 16:45:22 +0000781
Chris Lattnerbe15beb2010-04-04 23:17:54 +0000782 // Emit initial sections.
Chris Lattnerd850ac72010-04-05 02:19:28 +0000783 EmitSectionLabels();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000784
Devang Patele7e5a0f2010-08-10 20:01:20 +0000785 //getOrCreateTypeDIE
786 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum"))
Devang Patel3cbee302011-04-12 22:53:02 +0000787 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
788 DIType Ty(NMD->getOperand(i));
789 getCompileUnit(Ty)->getOrCreateTypeDIE(Ty);
790 }
Devang Patele7e5a0f2010-08-10 20:01:20 +0000791
Devang Patel1a7ca032010-09-28 18:08:20 +0000792 if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty"))
Devang Patel3cbee302011-04-12 22:53:02 +0000793 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
794 DIType Ty(NMD->getOperand(i));
795 getCompileUnit(Ty)->getOrCreateTypeDIE(Ty);
796 }
Devang Patel1a7ca032010-09-28 18:08:20 +0000797
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000798 // Prime section data.
Chris Lattnerf0144122009-07-28 03:13:23 +0000799 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000800}
801
Devang Patel2c4ceb12009-11-21 02:48:08 +0000802/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000803///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000804void DwarfDebug::endModule() {
Devang Patel163a9f72010-05-10 22:49:55 +0000805 if (!FirstCU) return;
Devang Patel4a1cad62010-06-28 18:25:03 +0000806 const Module *M = MMI->getModule();
Devang Patelbf47fdb2011-08-10 20:55:27 +0000807 DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap;
Devang Patel4a1cad62010-06-28 18:25:03 +0000808 if (NamedMDNode *AllSPs = M->getNamedMetadata("llvm.dbg.sp")) {
809 for (unsigned SI = 0, SE = AllSPs->getNumOperands(); SI != SE; ++SI) {
810 if (ProcessedSPNodes.count(AllSPs->getOperand(SI)) != 0) continue;
811 DISubprogram SP(AllSPs->getOperand(SI));
812 if (!SP.Verify()) continue;
813
814 // Collect info for variables that were optimized out.
Devang Patel8b3a6b62010-07-19 17:53:55 +0000815 if (!SP.isDefinition()) continue;
Devang Patel4a1cad62010-06-28 18:25:03 +0000816 StringRef FName = SP.getLinkageName();
817 if (FName.empty())
818 FName = SP.getName();
Devang Patel62367042010-11-10 22:19:21 +0000819 NamedMDNode *NMD = getFnSpecificMDNode(*(MMI->getModule()), FName);
Devang Patel4a1cad62010-06-28 18:25:03 +0000820 if (!NMD) continue;
821 unsigned E = NMD->getNumOperands();
822 if (!E) continue;
Devang Patel5bc942c2011-08-10 23:58:09 +0000823 LexicalScope *Scope = new LexicalScope(NULL, DIDescriptor(SP), NULL,
824 false);
Devang Patele9a1cca2010-08-02 17:32:15 +0000825 DeadFnScopeMap[SP] = Scope;
Benjamin Kramer0fa5e052011-08-11 18:39:28 +0000826 SmallVector<DbgVariable, 8> Variables;
Devang Patel4a1cad62010-06-28 18:25:03 +0000827 for (unsigned I = 0; I != E; ++I) {
828 DIVariable DV(NMD->getOperand(I));
829 if (!DV.Verify()) continue;
Benjamin Kramer0fa5e052011-08-11 18:39:28 +0000830 Variables.push_back(DbgVariable(DV));
Devang Patel4a1cad62010-06-28 18:25:03 +0000831 }
Jim Grosbach1e20b962010-07-21 21:21:52 +0000832
Devang Patel4a1cad62010-06-28 18:25:03 +0000833 // Construct subprogram DIE and add variables DIEs.
834 constructSubprogramDIE(SP);
835 DIE *ScopeDIE = getCompileUnit(SP)->getDIE(SP);
Devang Patel4a1cad62010-06-28 18:25:03 +0000836 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
Benjamin Kramer0fa5e052011-08-11 18:39:28 +0000837 if (DIE *VariableDIE = constructVariableDIE(&Variables[i], Scope))
Devang Patel4a1cad62010-06-28 18:25:03 +0000838 ScopeDIE->addChild(VariableDIE);
839 }
840 }
841 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000842
Devang Patel53bb5c92009-11-10 23:06:00 +0000843 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
844 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
845 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
846 DIE *ISP = *AI;
Devang Patel3cbee302011-04-12 22:53:02 +0000847 FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patel53bb5c92009-11-10 23:06:00 +0000848 }
849
Devang Pateldbc64af2011-08-15 17:24:54 +0000850 // Emit DW_AT_containing_type attribute to connect types with their
851 // vtable holding type.
852 for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(),
853 CUE = CUMap.end(); CUI != CUE; ++CUI) {
854 CompileUnit *TheCU = CUI->second;
855 TheCU->constructContainingTypeDIEs();
Devang Patel5d11eb02009-12-03 19:11:07 +0000856 }
857
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000858 // Standard sections final addresses.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000859 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000860 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000861 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnerc0215722010-04-04 19:25:43 +0000862 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000863
864 // End text sections.
865 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000866 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnerc0215722010-04-04 19:25:43 +0000867 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000868 }
869
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000870 // Compute DIE offsets and sizes.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000871 computeSizeAndOffsets();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000872
873 // Emit all the DIEs into a debug info section
Devang Patel2c4ceb12009-11-21 02:48:08 +0000874 emitDebugInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000875
876 // Corresponding abbreviations into a abbrev section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000877 emitAbbreviations();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000878
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000879 // Emit info into a debug pubnames section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000880 emitDebugPubNames();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000881
Devang Patel193f7202009-11-24 01:14:22 +0000882 // Emit info into a debug pubtypes section.
883 emitDebugPubTypes();
884
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000885 // Emit info into a debug loc section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000886 emitDebugLoc();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000887
888 // Emit info into a debug aranges section.
889 EmitDebugARanges();
890
891 // Emit info into a debug ranges section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000892 emitDebugRanges();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000893
894 // Emit info into a debug macinfo section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000895 emitDebugMacInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000896
897 // Emit inline info.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000898 emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000899
Chris Lattnerbc733f52010-03-13 02:17:42 +0000900 // Emit info into a debug str section.
901 emitDebugStr();
Jim Grosbach1e20b962010-07-21 21:21:52 +0000902
Devang Patele9a1cca2010-08-02 17:32:15 +0000903 // clean up.
904 DeleteContainerSeconds(DeadFnScopeMap);
Devang Patel163a9f72010-05-10 22:49:55 +0000905 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
906 E = CUMap.end(); I != E; ++I)
907 delete I->second;
908 FirstCU = NULL; // Reset for the next Module, if any.
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000909}
910
Devang Patel53bb5c92009-11-10 23:06:00 +0000911/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Devang Patelb549bcf2011-08-10 21:50:54 +0000912DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV,
Chris Lattnerde4845c2010-04-02 19:42:39 +0000913 DebugLoc ScopeLoc) {
Devang Patelb549bcf2011-08-10 21:50:54 +0000914 LLVMContext &Ctx = DV->getContext();
915 // More then one inlined variable corresponds to one abstract variable.
916 DIVariable Var = cleanseInlinedVariable(DV, Ctx);
Devang Patel2db49d72010-05-07 18:11:54 +0000917 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
Devang Patel53bb5c92009-11-10 23:06:00 +0000918 if (AbsDbgVariable)
919 return AbsDbgVariable;
920
Devang Patelbf47fdb2011-08-10 20:55:27 +0000921 LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx));
Devang Patel53bb5c92009-11-10 23:06:00 +0000922 if (!Scope)
923 return NULL;
924
Devang Patel26c1e562010-05-20 16:36:41 +0000925 AbsDbgVariable = new DbgVariable(Var);
Devang Patelbf47fdb2011-08-10 20:55:27 +0000926 addScopeVariable(Scope, AbsDbgVariable);
Devang Patel2db49d72010-05-07 18:11:54 +0000927 AbstractVariables[Var] = AbsDbgVariable;
Devang Patel53bb5c92009-11-10 23:06:00 +0000928 return AbsDbgVariable;
929}
930
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000931/// addCurrentFnArgument - If Var is a current function argument then add
932/// it to CurrentFnArguments list.
Devang Patel0478c152011-03-01 22:58:55 +0000933bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF,
Devang Patelbf47fdb2011-08-10 20:55:27 +0000934 DbgVariable *Var, LexicalScope *Scope) {
935 if (!LScopes.isCurrentFunctionScope(Scope))
Devang Patel0478c152011-03-01 22:58:55 +0000936 return false;
937 DIVariable DV = Var->getVariable();
938 if (DV.getTag() != dwarf::DW_TAG_arg_variable)
939 return false;
940 unsigned ArgNo = DV.getArgNumber();
941 if (ArgNo == 0)
942 return false;
943
Devang Patelcb3a6572011-03-03 20:02:02 +0000944 size_t Size = CurrentFnArguments.size();
945 if (Size == 0)
Devang Patel0478c152011-03-01 22:58:55 +0000946 CurrentFnArguments.resize(MF->getFunction()->arg_size());
Devang Patelbbd0f452011-03-03 21:49:41 +0000947 // llvm::Function argument size is not good indicator of how many
Devang Patel6f676be2011-03-03 20:08:10 +0000948 // arguments does the function have at source level.
949 if (ArgNo > Size)
Devang Patelcb3a6572011-03-03 20:02:02 +0000950 CurrentFnArguments.resize(ArgNo * 2);
Devang Patel0478c152011-03-01 22:58:55 +0000951 CurrentFnArguments[ArgNo - 1] = Var;
952 return true;
953}
954
Devang Patelee432862010-05-20 19:57:06 +0000955/// collectVariableInfoFromMMITable - Collect variable information from
956/// side table maintained by MMI.
Jim Grosbach1e20b962010-07-21 21:21:52 +0000957void
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000958DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF,
Devang Patelee432862010-05-20 19:57:06 +0000959 SmallPtrSet<const MDNode *, 16> &Processed) {
Devang Patele717faa2009-10-06 01:26:37 +0000960 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
961 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
962 VE = VMap.end(); VI != VE; ++VI) {
Devang Patele9f8f5e2010-05-07 20:54:48 +0000963 const MDNode *Var = VI->first;
Devang Patel53bb5c92009-11-10 23:06:00 +0000964 if (!Var) continue;
Devang Patel98e1cac2010-05-14 21:01:35 +0000965 Processed.insert(Var);
Chris Lattnerde4845c2010-04-02 19:42:39 +0000966 DIVariable DV(Var);
967 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patel53bb5c92009-11-10 23:06:00 +0000968
Devang Patelbf47fdb2011-08-10 20:55:27 +0000969 LexicalScope *Scope = LScopes.findLexicalScope(VP.second);
Jim Grosbach1e20b962010-07-21 21:21:52 +0000970
Devang Patelfb0ee432009-11-10 23:20:04 +0000971 // If variable scope is not found then skip this variable.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000972 if (Scope == 0)
Devang Patelfb0ee432009-11-10 23:20:04 +0000973 continue;
Devang Patel53bb5c92009-11-10 23:06:00 +0000974
Devang Patel26c1e562010-05-20 16:36:41 +0000975 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
976 DbgVariable *RegVar = new DbgVariable(DV);
977 recordVariableFrameIndex(RegVar, VP.first);
Devang Patel0478c152011-03-01 22:58:55 +0000978 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +0000979 addScopeVariable(Scope, RegVar);
Devang Patel26c1e562010-05-20 16:36:41 +0000980 if (AbsDbgVariable) {
981 recordVariableFrameIndex(AbsDbgVariable, VP.first);
982 VarToAbstractVarMap[RegVar] = AbsDbgVariable;
983 }
Devang Patele717faa2009-10-06 01:26:37 +0000984 }
Devang Patelee432862010-05-20 19:57:06 +0000985}
Devang Patel90a48ad2010-03-15 18:33:46 +0000986
Jim Grosbach1e20b962010-07-21 21:21:52 +0000987/// isDbgValueInDefinedReg - Return true if debug value, encoded by
Devang Patelc3f5f782010-05-25 23:40:22 +0000988/// DBG_VALUE instruction, is in a defined reg.
989static bool isDbgValueInDefinedReg(const MachineInstr *MI) {
990 assert (MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000991 return MI->getNumOperands() == 3 &&
992 MI->getOperand(0).isReg() && MI->getOperand(0).getReg() &&
993 MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0;
Devang Patelc3f5f782010-05-25 23:40:22 +0000994}
995
Nick Lewycky3bbb6f72011-07-29 03:49:23 +0000996/// getDebugLocEntry - Get .debug_loc entry for the instruction range starting
Devang Patel90b40412011-07-08 17:09:57 +0000997/// at MI.
998static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm,
999 const MCSymbol *FLabel,
1000 const MCSymbol *SLabel,
1001 const MachineInstr *MI) {
1002 const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata();
1003
1004 if (MI->getNumOperands() != 3) {
1005 MachineLocation MLoc = Asm->getDebugValueLocation(MI);
1006 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
1007 }
1008 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) {
1009 MachineLocation MLoc;
1010 MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
1011 return DotDebugLocEntry(FLabel, SLabel, MLoc, Var);
1012 }
1013 if (MI->getOperand(0).isImm())
1014 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm());
1015 if (MI->getOperand(0).isFPImm())
1016 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm());
1017 if (MI->getOperand(0).isCImm())
1018 return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm());
1019
1020 assert (0 && "Unexpected 3 operand DBG_VALUE instruction!");
1021 return DotDebugLocEntry();
1022}
1023
Devang Patelbf47fdb2011-08-10 20:55:27 +00001024/// collectVariableInfo - Find variables for each lexical scope.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001025void
Devang Patel78e127d2010-06-25 22:07:34 +00001026DwarfDebug::collectVariableInfo(const MachineFunction *MF,
1027 SmallPtrSet<const MDNode *, 16> &Processed) {
Jim Grosbach1e20b962010-07-21 21:21:52 +00001028
Devang Patelee432862010-05-20 19:57:06 +00001029 /// collection info from MMI table.
1030 collectVariableInfoFromMMITable(MF, Processed);
1031
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001032 for (SmallVectorImpl<const MDNode*>::const_iterator
1033 UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE;
1034 ++UVI) {
1035 const MDNode *Var = *UVI;
1036 if (Processed.count(Var))
Devang Patelee432862010-05-20 19:57:06 +00001037 continue;
1038
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001039 // History contains relevant DBG_VALUE instructions for Var and instructions
1040 // clobbering it.
1041 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1042 if (History.empty())
1043 continue;
1044 const MachineInstr *MInsn = History.front();
Devang Patelc3f5f782010-05-25 23:40:22 +00001045
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001046 DIVariable DV(Var);
Devang Patelbf47fdb2011-08-10 20:55:27 +00001047 LexicalScope *Scope = NULL;
Devang Pateld8720f42010-05-27 20:25:04 +00001048 if (DV.getTag() == dwarf::DW_TAG_arg_variable &&
1049 DISubprogram(DV.getContext()).describes(MF->getFunction()))
Devang Patelbf47fdb2011-08-10 20:55:27 +00001050 Scope = LScopes.getCurrentFunctionScope();
Devang Patel40c7e412011-07-20 22:18:50 +00001051 else {
1052 if (DV.getVersion() <= LLVMDebugVersion9)
Devang Patelbf47fdb2011-08-10 20:55:27 +00001053 Scope = LScopes.findLexicalScope(MInsn->getDebugLoc());
Devang Patel40c7e412011-07-20 22:18:50 +00001054 else {
1055 if (MDNode *IA = DV.getInlinedAt())
Devang Patelbf47fdb2011-08-10 20:55:27 +00001056 Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA));
Devang Patel40c7e412011-07-20 22:18:50 +00001057 else
Devang Patelbf47fdb2011-08-10 20:55:27 +00001058 Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1)));
Devang Patel40c7e412011-07-20 22:18:50 +00001059 }
1060 }
Devang Patelee432862010-05-20 19:57:06 +00001061 // If variable scope is not found then skip this variable.
Devang Patelc0c5a262010-05-21 00:10:20 +00001062 if (!Scope)
Devang Patelee432862010-05-20 19:57:06 +00001063 continue;
1064
1065 Processed.insert(DV);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001066 assert(MInsn->isDebugValue() && "History must begin with debug value");
Devang Patelee432862010-05-20 19:57:06 +00001067 DbgVariable *RegVar = new DbgVariable(DV);
Devang Patel0478c152011-03-01 22:58:55 +00001068 if (!addCurrentFnArgument(MF, RegVar, Scope))
Devang Patelbf47fdb2011-08-10 20:55:27 +00001069 addScopeVariable(Scope, RegVar);
Devang Patelc0c5a262010-05-21 00:10:20 +00001070 if (DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc())) {
1071 DbgVariableToDbgInstMap[AbsVar] = MInsn;
1072 VarToAbstractVarMap[RegVar] = AbsVar;
Devang Patel90a48ad2010-03-15 18:33:46 +00001073 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001074
1075 // Simple ranges that are fully coalesced.
1076 if (History.size() <= 1 || (History.size() == 2 &&
1077 MInsn->isIdenticalTo(History.back()))) {
Devang Patelc3f5f782010-05-25 23:40:22 +00001078 DbgVariableToDbgInstMap[RegVar] = MInsn;
1079 continue;
1080 }
1081
1082 // handle multiple DBG_VALUE instructions describing one variable.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001083 RegVar->setDotDebugLocOffset(DotDebugLocEntries.size());
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001084
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001085 for (SmallVectorImpl<const MachineInstr*>::const_iterator
1086 HI = History.begin(), HE = History.end(); HI != HE; ++HI) {
1087 const MachineInstr *Begin = *HI;
1088 assert(Begin->isDebugValue() && "Invalid History entry");
Jakob Stoklund Olesene17232e2011-03-22 00:21:41 +00001089
Devang Patel4ada1d72011-06-01 23:00:17 +00001090 // Check if DBG_VALUE is truncating a range.
1091 if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg()
1092 && !Begin->getOperand(0).getReg())
1093 continue;
1094
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001095 // Compute the range for a register location.
1096 const MCSymbol *FLabel = getLabelBeforeInsn(Begin);
1097 const MCSymbol *SLabel = 0;
1098
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001099 if (HI + 1 == HE)
1100 // If Begin is the last instruction in History then its value is valid
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001101 // until the end of the function.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001102 SLabel = FunctionEndSym;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001103 else {
1104 const MachineInstr *End = HI[1];
Devang Patel476df5f2011-07-07 21:44:42 +00001105 DEBUG(dbgs() << "DotDebugLoc Pair:\n"
1106 << "\t" << *Begin << "\t" << *End << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001107 if (End->isDebugValue())
1108 SLabel = getLabelBeforeInsn(End);
1109 else {
1110 // End is a normal instruction clobbering the range.
1111 SLabel = getLabelAfterInsn(End);
1112 assert(SLabel && "Forgot label after clobber instruction");
1113 ++HI;
1114 }
1115 }
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001116
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001117 // The value is valid until the next DBG_VALUE or clobber.
Devang Patel90b40412011-07-08 17:09:57 +00001118 DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel, Begin));
Devang Patelc3f5f782010-05-25 23:40:22 +00001119 }
1120 DotDebugLocEntries.push_back(DotDebugLocEntry());
Devang Patel90a48ad2010-03-15 18:33:46 +00001121 }
Devang Patel98e1cac2010-05-14 21:01:35 +00001122
1123 // Collect info for variables that were optimized out.
Devang Pateld1bbc6b2010-06-22 01:01:58 +00001124 const Function *F = MF->getFunction();
Devang Patel62367042010-11-10 22:19:21 +00001125 if (NamedMDNode *NMD = getFnSpecificMDNode(*(F->getParent()), F->getName())) {
Devang Patel98e1cac2010-05-14 21:01:35 +00001126 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
Dan Gohman872814a2010-07-21 18:54:18 +00001127 DIVariable DV(cast<MDNode>(NMD->getOperand(i)));
Devang Patelee432862010-05-20 19:57:06 +00001128 if (!DV || !Processed.insert(DV))
Devang Patel98e1cac2010-05-14 21:01:35 +00001129 continue;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001130 if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext()))
1131 addScopeVariable(Scope, new DbgVariable(DV));
Devang Patel98e1cac2010-05-14 21:01:35 +00001132 }
1133 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001134}
Devang Patel98e1cac2010-05-14 21:01:35 +00001135
Devang Patelc3f5f782010-05-25 23:40:22 +00001136/// getLabelBeforeInsn - Return Label preceding the instruction.
1137const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001138 MCSymbol *Label = LabelsBeforeInsn.lookup(MI);
1139 assert(Label && "Didn't insert label before instruction");
1140 return Label;
Devang Patelc3f5f782010-05-25 23:40:22 +00001141}
1142
1143/// getLabelAfterInsn - Return Label immediately following the instruction.
1144const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001145 return LabelsAfterInsn.lookup(MI);
Devang Patele717faa2009-10-06 01:26:37 +00001146}
1147
Devang Patelcbbe2872010-10-26 17:49:02 +00001148/// beginInstruction - Process beginning of an instruction.
1149void DwarfDebug::beginInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001150 // Check if source location changes, but ignore DBG_VALUE locations.
1151 if (!MI->isDebugValue()) {
1152 DebugLoc DL = MI->getDebugLoc();
1153 if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) {
Devang Patel4243e672011-05-11 19:22:19 +00001154 unsigned Flags = DWARF2_FLAG_IS_STMT;
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001155 PrevInstLoc = DL;
Devang Patel4243e672011-05-11 19:22:19 +00001156 if (DL == PrologEndLoc) {
1157 Flags |= DWARF2_FLAG_PROLOGUE_END;
1158 PrologEndLoc = DebugLoc();
1159 }
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001160 if (!DL.isUnknown()) {
1161 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Devang Patel4243e672011-05-11 19:22:19 +00001162 recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001163 } else
Devang Patel4243e672011-05-11 19:22:19 +00001164 recordSourceLine(0, 0, 0, 0);
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001165 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001166 }
Devang Patelaead63c2010-03-29 22:59:58 +00001167
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001168 // Insert labels where requested.
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001169 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1170 LabelsBeforeInsn.find(MI);
1171
1172 // No label needed.
1173 if (I == LabelsBeforeInsn.end())
1174 return;
1175
1176 // Label already assigned.
1177 if (I->second)
Devang Patelb2b31a62010-05-26 19:37:24 +00001178 return;
Devang Patel553881b2010-03-29 17:20:31 +00001179
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001180 if (!PrevLabel) {
Devang Patel77051f52010-05-26 21:23:46 +00001181 PrevLabel = MMI->getContext().CreateTempSymbol();
1182 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patelb2b31a62010-05-26 19:37:24 +00001183 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001184 I->second = PrevLabel;
Devang Patel0d20ac82009-10-06 01:50:42 +00001185}
1186
Devang Patelcbbe2872010-10-26 17:49:02 +00001187/// endInstruction - Process end of an instruction.
1188void DwarfDebug::endInstruction(const MachineInstr *MI) {
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001189 // Don't create a new label after DBG_VALUE instructions.
1190 // They don't generate code.
1191 if (!MI->isDebugValue())
1192 PrevLabel = 0;
1193
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001194 DenseMap<const MachineInstr*, MCSymbol*>::iterator I =
1195 LabelsAfterInsn.find(MI);
1196
1197 // No label needed.
1198 if (I == LabelsAfterInsn.end())
1199 return;
1200
1201 // Label already assigned.
1202 if (I->second)
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001203 return;
1204
1205 // We need a label after this instruction.
1206 if (!PrevLabel) {
1207 PrevLabel = MMI->getContext().CreateTempSymbol();
1208 Asm->OutStreamer.EmitLabel(PrevLabel);
Devang Patel1c246352010-04-08 16:50:29 +00001209 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001210 I->second = PrevLabel;
Devang Patel53bb5c92009-11-10 23:06:00 +00001211}
1212
Jim Grosbach1e20b962010-07-21 21:21:52 +00001213/// identifyScopeMarkers() -
Devang Patel5bc942c2011-08-10 23:58:09 +00001214/// Each LexicalScope has first instruction and last instruction to mark
1215/// beginning and end of a scope respectively. Create an inverse map that list
1216/// scopes starts (and ends) with an instruction. One instruction may start (or
1217/// end) multiple scopes. Ignore scopes that are not reachable.
Devang Patele37b0c62010-04-08 18:43:56 +00001218void DwarfDebug::identifyScopeMarkers() {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001219 SmallVector<LexicalScope *, 4> WorkList;
1220 WorkList.push_back(LScopes.getCurrentFunctionScope());
Devang Patel42aafd72010-01-20 02:05:23 +00001221 while (!WorkList.empty()) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001222 LexicalScope *S = WorkList.pop_back_val();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001223
Devang Patelbf47fdb2011-08-10 20:55:27 +00001224 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001225 if (!Children.empty())
Devang Patelbf47fdb2011-08-10 20:55:27 +00001226 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel42aafd72010-01-20 02:05:23 +00001227 SE = Children.end(); SI != SE; ++SI)
1228 WorkList.push_back(*SI);
1229
Devang Patel53bb5c92009-11-10 23:06:00 +00001230 if (S->isAbstractScope())
1231 continue;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001232
Devang Patelbf47fdb2011-08-10 20:55:27 +00001233 const SmallVector<InsnRange, 4> &Ranges = S->getRanges();
Devang Pateleac9c072010-04-27 19:46:33 +00001234 if (Ranges.empty())
1235 continue;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001236 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
Devang Pateleac9c072010-04-27 19:46:33 +00001237 RE = Ranges.end(); RI != RE; ++RI) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001238 assert(RI->first && "InsnRange does not have first instruction!");
1239 assert(RI->second && "InsnRange does not have second instruction!");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001240 requestLabelBeforeInsn(RI->first);
1241 requestLabelAfterInsn(RI->second);
Devang Pateleac9c072010-04-27 19:46:33 +00001242 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001243 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001244}
1245
Devang Patela3f48672011-05-09 22:14:49 +00001246/// getScopeNode - Get MDNode for DebugLoc's scope.
1247static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) {
1248 if (MDNode *InlinedAt = DL.getInlinedAt(Ctx))
1249 return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx);
1250 return DL.getScope(Ctx);
1251}
1252
Devang Patel4243e672011-05-11 19:22:19 +00001253/// getFnDebugLoc - Walk up the scope chain of given debug loc and find
1254/// line number info for the function.
1255static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) {
1256 const MDNode *Scope = getScopeNode(DL, Ctx);
1257 DISubprogram SP = getDISubprogram(Scope);
1258 if (SP.Verify())
1259 return DebugLoc::get(SP.getLineNumber(), 0, SP);
1260 return DebugLoc();
1261}
1262
Devang Patel2c4ceb12009-11-21 02:48:08 +00001263/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001264/// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +00001265void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner994cb122010-04-05 03:52:55 +00001266 if (!MMI->hasDebugInfo()) return;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001267 LScopes.initialize(*MF);
1268 if (LScopes.empty()) return;
1269 identifyScopeMarkers();
Devang Patel60b35bd2009-10-06 18:37:31 +00001270
Devang Pateleac9c072010-04-27 19:46:33 +00001271 FunctionBeginSym = Asm->GetTempSymbol("func_begin",
1272 Asm->getFunctionNumber());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001273 // Assumes in correct section after the entry point.
Devang Pateleac9c072010-04-27 19:46:33 +00001274 Asm->OutStreamer.EmitLabel(FunctionBeginSym);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001275
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001276 assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned");
1277
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001278 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001279 /// LiveUserVar - Map physreg numbers to the MDNode they contain.
1280 std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs());
1281
Devang Patelb2b31a62010-05-26 19:37:24 +00001282 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001283 I != E; ++I) {
1284 bool AtBlockEntry = true;
Devang Patelb2b31a62010-05-26 19:37:24 +00001285 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
1286 II != IE; ++II) {
1287 const MachineInstr *MI = II;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001288
Devang Patelb2b31a62010-05-26 19:37:24 +00001289 if (MI->isDebugValue()) {
Devang Patelb2b31a62010-05-26 19:37:24 +00001290 assert (MI->getNumOperands() > 1 && "Invalid machine instruction!");
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001291
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001292 // Keep track of user variables.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001293 const MDNode *Var =
1294 MI->getOperand(MI->getNumOperands() - 1).getMetadata();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001295
1296 // Variable is in a register, we need to check for clobbers.
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001297 if (isDbgValueInDefinedReg(MI))
1298 LiveUserVar[MI->getOperand(0).getReg()] = Var;
1299
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001300 // Check the history of this variable.
1301 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var];
1302 if (History.empty()) {
1303 UserVariables.push_back(Var);
1304 // The first mention of a function argument gets the FunctionBeginSym
1305 // label, so arguments are visible when breaking at function entry.
1306 DIVariable DV(Var);
1307 if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable &&
1308 DISubprogram(getDISubprogram(DV.getContext()))
1309 .describes(MF->getFunction()))
1310 LabelsBeforeInsn[MI] = FunctionBeginSym;
1311 } else {
1312 // We have seen this variable before. Try to coalesce DBG_VALUEs.
1313 const MachineInstr *Prev = History.back();
1314 if (Prev->isDebugValue()) {
1315 // Coalesce identical entries at the end of History.
1316 if (History.size() >= 2 &&
Devang Patel79862892011-07-07 00:14:27 +00001317 Prev->isIdenticalTo(History[History.size() - 2])) {
1318 DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n"
1319 << "\t" << *Prev
1320 << "\t" << *History[History.size() - 2] << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001321 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001322 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001323
1324 // Terminate old register assignments that don't reach MI;
1325 MachineFunction::const_iterator PrevMBB = Prev->getParent();
1326 if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) &&
1327 isDbgValueInDefinedReg(Prev)) {
1328 // Previous register assignment needs to terminate at the end of
1329 // its basic block.
1330 MachineBasicBlock::const_iterator LastMI =
1331 PrevMBB->getLastNonDebugInstr();
Devang Patel79862892011-07-07 00:14:27 +00001332 if (LastMI == PrevMBB->end()) {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001333 // Drop DBG_VALUE for empty range.
Devang Patel79862892011-07-07 00:14:27 +00001334 DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n"
1335 << "\t" << *Prev << "\n");
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001336 History.pop_back();
Devang Patel79862892011-07-07 00:14:27 +00001337 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001338 else {
1339 // Terminate after LastMI.
1340 History.push_back(LastMI);
1341 }
1342 }
1343 }
1344 }
1345 History.push_back(MI);
Devang Patelb2b31a62010-05-26 19:37:24 +00001346 } else {
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001347 // Not a DBG_VALUE instruction.
1348 if (!MI->isLabel())
1349 AtBlockEntry = false;
1350
Devang Patel4243e672011-05-11 19:22:19 +00001351 // First known non DBG_VALUE location marks beginning of function
1352 // body.
1353 if (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown())
1354 PrologEndLoc = MI->getDebugLoc();
1355
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001356 // Check if the instruction clobbers any registers with debug vars.
1357 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1358 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1359 if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg())
1360 continue;
1361 for (const unsigned *AI = TRI->getOverlaps(MOI->getReg());
1362 unsigned Reg = *AI; ++AI) {
1363 const MDNode *Var = LiveUserVar[Reg];
1364 if (!Var)
1365 continue;
1366 // Reg is now clobbered.
1367 LiveUserVar[Reg] = 0;
1368
1369 // Was MD last defined by a DBG_VALUE referring to Reg?
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001370 DbgValueHistoryMap::iterator HistI = DbgValues.find(Var);
1371 if (HistI == DbgValues.end())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001372 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001373 SmallVectorImpl<const MachineInstr*> &History = HistI->second;
1374 if (History.empty())
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001375 continue;
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001376 const MachineInstr *Prev = History.back();
1377 // Sanity-check: Register assignments are terminated at the end of
1378 // their block.
1379 if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent())
1380 continue;
1381 // Is the variable still in Reg?
1382 if (!isDbgValueInDefinedReg(Prev) ||
1383 Prev->getOperand(0).getReg() != Reg)
1384 continue;
1385 // Var is clobbered. Make sure the next instruction gets a label.
1386 History.push_back(MI);
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +00001387 }
1388 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001389 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001390 }
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001391 }
1392
1393 for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end();
1394 I != E; ++I) {
1395 SmallVectorImpl<const MachineInstr*> &History = I->second;
1396 if (History.empty())
1397 continue;
1398
1399 // Make sure the final register assignments are terminated.
1400 const MachineInstr *Prev = History.back();
1401 if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) {
1402 const MachineBasicBlock *PrevMBB = Prev->getParent();
Devang Patel5bc942c2011-08-10 23:58:09 +00001403 MachineBasicBlock::const_iterator LastMI =
1404 PrevMBB->getLastNonDebugInstr();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001405 if (LastMI == PrevMBB->end())
1406 // Drop DBG_VALUE for empty range.
1407 History.pop_back();
1408 else {
1409 // Terminate after LastMI.
1410 History.push_back(LastMI);
1411 }
1412 }
1413 // Request labels for the full history.
1414 for (unsigned i = 0, e = History.size(); i != e; ++i) {
1415 const MachineInstr *MI = History[i];
1416 if (MI->isDebugValue())
1417 requestLabelBeforeInsn(MI);
1418 else
1419 requestLabelAfterInsn(MI);
1420 }
1421 }
Devang Patelb2b31a62010-05-26 19:37:24 +00001422
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +00001423 PrevInstLoc = DebugLoc();
Devang Patelb2b31a62010-05-26 19:37:24 +00001424 PrevLabel = FunctionBeginSym;
Devang Patel4243e672011-05-11 19:22:19 +00001425
1426 // Record beginning of function.
1427 if (!PrologEndLoc.isUnknown()) {
1428 DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc,
1429 MF->getFunction()->getContext());
1430 recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(),
1431 FnStartDL.getScope(MF->getFunction()->getContext()),
1432 DWARF2_FLAG_IS_STMT);
1433 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001434}
1435
Devang Patelbf47fdb2011-08-10 20:55:27 +00001436void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) {
1437// SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1438 ScopeVariables[LS].push_back(Var);
1439// Vars.push_back(Var);
1440}
1441
Devang Patel2c4ceb12009-11-21 02:48:08 +00001442/// endFunction - Gather and emit post-function debug information.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001443///
Chris Lattnereec791a2010-01-26 23:18:02 +00001444void DwarfDebug::endFunction(const MachineFunction *MF) {
Devang Patelbf47fdb2011-08-10 20:55:27 +00001445 if (!MMI->hasDebugInfo() || LScopes.empty()) return;
Devang Patel70d75ca2009-11-12 19:02:56 +00001446
Devang Patelbf47fdb2011-08-10 20:55:27 +00001447 // Define end label for subprogram.
1448 FunctionEndSym = Asm->GetTempSymbol("func_end",
1449 Asm->getFunctionNumber());
1450 // Assumes in correct section after the entry point.
1451 Asm->OutStreamer.EmitLabel(FunctionEndSym);
1452
1453 SmallPtrSet<const MDNode *, 16> ProcessedVars;
1454 collectVariableInfo(MF, ProcessedVars);
1455
1456 // Construct abstract scopes.
Devang Patelcd9f6c52011-08-12 18:10:19 +00001457 ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList();
1458 for (unsigned i = 0, e = AList.size(); i != e; ++i) {
1459 LexicalScope *AScope = AList[i];
1460 DISubprogram SP(AScope->getScopeNode());
Devang Patelbf47fdb2011-08-10 20:55:27 +00001461 if (SP.Verify()) {
1462 // Collect info for variables that were optimized out.
1463 StringRef FName = SP.getLinkageName();
1464 if (FName.empty())
1465 FName = SP.getName();
1466 if (NamedMDNode *NMD =
1467 getFnSpecificMDNode(*(MF->getFunction()->getParent()), FName)) {
1468 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
Dan Gohman872814a2010-07-21 18:54:18 +00001469 DIVariable DV(cast<MDNode>(NMD->getOperand(i)));
Devang Patel78e127d2010-06-25 22:07:34 +00001470 if (!DV || !ProcessedVars.insert(DV))
1471 continue;
Devang Patelbf47fdb2011-08-10 20:55:27 +00001472 if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext()))
1473 addScopeVariable(Scope, new DbgVariable(DV));
Devang Patel78e127d2010-06-25 22:07:34 +00001474 }
1475 }
1476 }
Devang Patelcd9f6c52011-08-12 18:10:19 +00001477 if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0)
1478 constructScopeDIE(AScope);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001479 }
Devang Patelbf47fdb2011-08-10 20:55:27 +00001480
1481 DIE *CurFnDIE = constructScopeDIE(LScopes.getCurrentFunctionScope());
1482
1483 if (!DisableFramePointerElim(*MF)) {
1484 LexicalScope *FnScope = LScopes.getCurrentFunctionScope();
Devang Patel5bc942c2011-08-10 23:58:09 +00001485 CompileUnit *TheCU = getCompileUnit(FnScope->getScopeNode());
1486 TheCU->addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr,
1487 dwarf::DW_FORM_flag, 1);
Devang Patelbf47fdb2011-08-10 20:55:27 +00001488 }
1489 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
1490 MMI->getFrameMoves()));
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001491
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001492 // Clear debug info
Devang Patelbf47fdb2011-08-10 20:55:27 +00001493 for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator
1494 I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I)
1495 DeleteContainerPointers(I->second);
1496 ScopeVariables.clear();
Devang Pateleac0c9d2011-04-22 18:09:57 +00001497 DeleteContainerPointers(CurrentFnArguments);
Devang Patel26c1e562010-05-20 16:36:41 +00001498 DbgVariableToFrameIndexMap.clear();
1499 VarToAbstractVarMap.clear();
1500 DbgVariableToDbgInstMap.clear();
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +00001501 UserVariables.clear();
1502 DbgValues.clear();
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00001503 AbstractVariables.clear();
Devang Pateleac9c072010-04-27 19:46:33 +00001504 LabelsBeforeInsn.clear();
1505 LabelsAfterInsn.clear();
Devang Patelf2548ca2010-04-16 23:33:45 +00001506 PrevLabel = NULL;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001507}
1508
Devang Patel26c1e562010-05-20 16:36:41 +00001509/// recordVariableFrameIndex - Record a variable's index.
1510void DwarfDebug::recordVariableFrameIndex(const DbgVariable *V, int Index) {
1511 assert (V && "Invalid DbgVariable!");
1512 DbgVariableToFrameIndexMap[V] = Index;
1513}
1514
1515/// findVariableFrameIndex - Return true if frame index for the variable
1516/// is found. Update FI to hold value of the index.
1517bool DwarfDebug::findVariableFrameIndex(const DbgVariable *V, int *FI) {
1518 assert (V && "Invalid DbgVariable!");
1519 DenseMap<const DbgVariable *, int>::iterator I =
1520 DbgVariableToFrameIndexMap.find(V);
1521 if (I == DbgVariableToFrameIndexMap.end())
1522 return false;
1523 *FI = I->second;
1524 return true;
1525}
1526
Chris Lattnerc6087842010-03-09 04:54:43 +00001527/// recordSourceLine - Register a source line with debug info. Returns the
1528/// unique label that was emitted and which provides correspondence to
1529/// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +00001530void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S,
1531 unsigned Flags) {
Devang Patel65dbc902009-11-25 17:36:49 +00001532 StringRef Fn;
Devang Patel23670e52011-03-24 20:30:50 +00001533 StringRef Dir;
Dan Gohman1cc0d622010-05-05 23:41:32 +00001534 unsigned Src = 1;
1535 if (S) {
1536 DIDescriptor Scope(S);
Devang Patelf84548d2009-10-05 18:03:19 +00001537
Dan Gohman1cc0d622010-05-05 23:41:32 +00001538 if (Scope.isCompileUnit()) {
1539 DICompileUnit CU(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001540 Fn = CU.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001541 Dir = CU.getDirectory();
Devang Patel3cabc9d2010-10-28 17:30:52 +00001542 } else if (Scope.isFile()) {
1543 DIFile F(S);
Devang Patel3cabc9d2010-10-28 17:30:52 +00001544 Fn = F.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001545 Dir = F.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001546 } else if (Scope.isSubprogram()) {
1547 DISubprogram SP(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001548 Fn = SP.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001549 Dir = SP.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001550 } else if (Scope.isLexicalBlock()) {
1551 DILexicalBlock DB(S);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001552 Fn = DB.getFilename();
Devang Patel23670e52011-03-24 20:30:50 +00001553 Dir = DB.getDirectory();
Dan Gohman1cc0d622010-05-05 23:41:32 +00001554 } else
1555 assert(0 && "Unexpected scope info");
1556
Devang Patel23670e52011-03-24 20:30:50 +00001557 Src = GetOrCreateSourceID(Fn, Dir);
Dan Gohman1cc0d622010-05-05 23:41:32 +00001558 }
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001559 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001560}
1561
Bill Wendling829e67b2009-05-20 23:22:40 +00001562//===----------------------------------------------------------------------===//
1563// Emit Methods
1564//===----------------------------------------------------------------------===//
1565
Devang Patel2c4ceb12009-11-21 02:48:08 +00001566/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling94d04b82009-05-20 23:21:38 +00001567///
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001568unsigned
1569DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001570 // Get the children.
1571 const std::vector<DIE *> &Children = Die->getChildren();
1572
1573 // If not last sibling and has children then add sibling offset attribute.
Jeffrey Yasskin638fe8d2010-03-22 18:47:14 +00001574 if (!Last && !Children.empty())
Benjamin Kramer345ef342010-03-31 19:34:01 +00001575 Die->addSiblingOffset(DIEValueAllocator);
Bill Wendling94d04b82009-05-20 23:21:38 +00001576
1577 // Record the abbreviation.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001578 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling94d04b82009-05-20 23:21:38 +00001579
1580 // Get the abbreviation for this DIE.
1581 unsigned AbbrevNumber = Die->getAbbrevNumber();
1582 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1583
1584 // Set DIE offset
1585 Die->setOffset(Offset);
1586
1587 // Start the size with the size of abbreviation code.
Chris Lattneraf76e592009-08-22 20:48:53 +00001588 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001589
1590 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
1591 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1592
1593 // Size the DIE attribute values.
1594 for (unsigned i = 0, N = Values.size(); i < N; ++i)
1595 // Size attribute value.
Chris Lattnera37d5382010-04-05 00:18:22 +00001596 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling94d04b82009-05-20 23:21:38 +00001597
1598 // Size the DIE children if any.
1599 if (!Children.empty()) {
1600 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
1601 "Children flag not set");
1602
1603 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001604 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling94d04b82009-05-20 23:21:38 +00001605
1606 // End of children marker.
1607 Offset += sizeof(int8_t);
1608 }
1609
1610 Die->setSize(Offset - Die->getOffset());
1611 return Offset;
1612}
1613
Devang Patel2c4ceb12009-11-21 02:48:08 +00001614/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling94d04b82009-05-20 23:21:38 +00001615///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001616void DwarfDebug::computeSizeAndOffsets() {
Devang Patel163a9f72010-05-10 22:49:55 +00001617 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1618 E = CUMap.end(); I != E; ++I) {
1619 // Compute size of compile unit header.
Devang Patel513edf62011-04-12 23:10:47 +00001620 unsigned Offset =
Devang Patel163a9f72010-05-10 22:49:55 +00001621 sizeof(int32_t) + // Length of Compilation Unit Info
1622 sizeof(int16_t) + // DWARF version number
1623 sizeof(int32_t) + // Offset Into Abbrev. Section
1624 sizeof(int8_t); // Pointer Size (in bytes)
1625 computeSizeAndOffset(I->second->getCUDie(), Offset, true);
Devang Patel163a9f72010-05-10 22:49:55 +00001626 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001627}
1628
Chris Lattner11b8f302010-04-04 23:02:02 +00001629/// EmitSectionSym - Switch to the specified MCSection and emit an assembler
1630/// temporary label to it if SymbolStem is specified.
Chris Lattner9c69e285532010-04-04 22:59:04 +00001631static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section,
Chris Lattner11b8f302010-04-04 23:02:02 +00001632 const char *SymbolStem = 0) {
Chris Lattner9c69e285532010-04-04 22:59:04 +00001633 Asm->OutStreamer.SwitchSection(Section);
Chris Lattner11b8f302010-04-04 23:02:02 +00001634 if (!SymbolStem) return 0;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001635
Chris Lattner9c69e285532010-04-04 22:59:04 +00001636 MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem);
1637 Asm->OutStreamer.EmitLabel(TmpSym);
1638 return TmpSym;
1639}
1640
1641/// EmitSectionLabels - Emit initial Dwarf sections with a label at
1642/// the start of each one.
Chris Lattnerfa070b02010-04-04 22:33:59 +00001643void DwarfDebug::EmitSectionLabels() {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001644 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001645
Bill Wendling94d04b82009-05-20 23:21:38 +00001646 // Dwarf sections base addresses.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001647 DwarfInfoSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001648 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001649 DwarfAbbrevSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001650 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner11b8f302010-04-04 23:02:02 +00001651 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001652
Chris Lattner9c69e285532010-04-04 22:59:04 +00001653 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner11b8f302010-04-04 23:02:02 +00001654 EmitSectionSym(Asm, MacroInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00001655
Devang Patelaf608bd2010-08-24 00:06:12 +00001656 EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line");
Chris Lattner11b8f302010-04-04 23:02:02 +00001657 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
1658 EmitSectionSym(Asm, TLOF.getDwarfPubNamesSection());
1659 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001660 DwarfStrSectionSym =
Chris Lattner9c69e285532010-04-04 22:59:04 +00001661 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Devang Patelf2548ca2010-04-16 23:33:45 +00001662 DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(),
1663 "debug_range");
Bill Wendling94d04b82009-05-20 23:21:38 +00001664
Devang Patelc3f5f782010-05-25 23:40:22 +00001665 DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(),
1666 "section_debug_loc");
1667
Chris Lattner9c69e285532010-04-04 22:59:04 +00001668 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattner4ad1efe2010-04-04 23:10:38 +00001669 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001670}
1671
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001672/// emitDIE - Recursively emits a debug information entry.
Bill Wendling94d04b82009-05-20 23:21:38 +00001673///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001674void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001675 // Get the abbreviation for this DIE.
1676 unsigned AbbrevNumber = Die->getAbbrevNumber();
1677 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
1678
Bill Wendling94d04b82009-05-20 23:21:38 +00001679 // Emit the code (index) for the abbreviation.
Chris Lattner3f53c832010-04-04 18:52:31 +00001680 if (Asm->isVerbose())
Chris Lattner894d75a2010-01-22 23:18:42 +00001681 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
1682 Twine::utohexstr(Die->getOffset()) + ":0x" +
1683 Twine::utohexstr(Die->getSize()) + " " +
1684 dwarf::TagString(Abbrev->getTag()));
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001685 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00001686
Jeffrey Yasskin638fe8d2010-03-22 18:47:14 +00001687 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling94d04b82009-05-20 23:21:38 +00001688 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
1689
1690 // Emit the DIE attribute values.
1691 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
1692 unsigned Attr = AbbrevData[i].getAttribute();
1693 unsigned Form = AbbrevData[i].getForm();
1694 assert(Form && "Too many attributes for DIE (check abbreviation)");
1695
Chris Lattner3f53c832010-04-04 18:52:31 +00001696 if (Asm->isVerbose())
Chris Lattnera8013622010-01-24 18:54:17 +00001697 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001698
Bill Wendling94d04b82009-05-20 23:21:38 +00001699 switch (Attr) {
1700 case dwarf::DW_AT_sibling:
Devang Patel2c4ceb12009-11-21 02:48:08 +00001701 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00001702 break;
1703 case dwarf::DW_AT_abstract_origin: {
1704 DIEEntry *E = cast<DIEEntry>(Values[i]);
1705 DIE *Origin = E->getEntry();
Devang Patel53bb5c92009-11-10 23:06:00 +00001706 unsigned Addr = Origin->getOffset();
Bill Wendling94d04b82009-05-20 23:21:38 +00001707 Asm->EmitInt32(Addr);
1708 break;
1709 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001710 case dwarf::DW_AT_ranges: {
1711 // DW_AT_range Value encodes offset in debug_range section.
1712 DIEInteger *V = cast<DIEInteger>(Values[i]);
Devang Patelb1fcfbe2010-09-02 16:43:44 +00001713
1714 if (Asm->MAI->doesDwarfUsesLabelOffsetForRanges()) {
1715 Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym,
1716 V->getValue(),
1717 4);
1718 } else {
1719 Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym,
1720 V->getValue(),
1721 DwarfDebugRangeSectionSym,
1722 4);
1723 }
Devang Patelf2548ca2010-04-16 23:33:45 +00001724 break;
1725 }
Devang Patelc3f5f782010-05-25 23:40:22 +00001726 case dwarf::DW_AT_location: {
1727 if (UseDotDebugLocEntry.count(Die) != 0) {
1728 DIELabel *L = cast<DIELabel>(Values[i]);
Daniel Dunbar83320a02011-03-16 22:16:39 +00001729 Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4);
Devang Patelc3f5f782010-05-25 23:40:22 +00001730 } else
1731 Values[i]->EmitValue(Asm, Form);
1732 break;
1733 }
Devang Patel2a361602010-09-29 19:08:08 +00001734 case dwarf::DW_AT_accessibility: {
1735 if (Asm->isVerbose()) {
1736 DIEInteger *V = cast<DIEInteger>(Values[i]);
1737 Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue()));
1738 }
1739 Values[i]->EmitValue(Asm, Form);
1740 break;
1741 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001742 default:
1743 // Emit an attribute using the defined form.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001744 Values[i]->EmitValue(Asm, Form);
Bill Wendling94d04b82009-05-20 23:21:38 +00001745 break;
1746 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001747 }
1748
1749 // Emit the DIE children if any.
1750 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
1751 const std::vector<DIE *> &Children = Die->getChildren();
1752
1753 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001754 emitDIE(Children[j]);
Bill Wendling94d04b82009-05-20 23:21:38 +00001755
Chris Lattner3f53c832010-04-04 18:52:31 +00001756 if (Asm->isVerbose())
Chris Lattner233f52b2010-03-09 23:52:58 +00001757 Asm->OutStreamer.AddComment("End Of Children Mark");
1758 Asm->EmitInt8(0);
Bill Wendling94d04b82009-05-20 23:21:38 +00001759 }
1760}
1761
Devang Patel8a241142009-12-09 18:24:21 +00001762/// emitDebugInfo - Emit the debug info section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001763///
Devang Patel8a241142009-12-09 18:24:21 +00001764void DwarfDebug::emitDebugInfo() {
1765 // Start debug info section.
1766 Asm->OutStreamer.SwitchSection(
1767 Asm->getObjFileLowering().getDwarfInfoSection());
Devang Patel163a9f72010-05-10 22:49:55 +00001768 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1769 E = CUMap.end(); I != E; ++I) {
1770 CompileUnit *TheCU = I->second;
1771 DIE *Die = TheCU->getCUDie();
Jim Grosbach1e20b962010-07-21 21:21:52 +00001772
Devang Patel163a9f72010-05-10 22:49:55 +00001773 // Emit the compile units header.
1774 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
1775 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001776
Devang Patel163a9f72010-05-10 22:49:55 +00001777 // Emit size of content not including length itself
1778 unsigned ContentSize = Die->getSize() +
1779 sizeof(int16_t) + // DWARF version number
1780 sizeof(int32_t) + // Offset Into Abbrev. Section
Devang Patel65705d52011-04-13 19:41:17 +00001781 sizeof(int8_t); // Pointer Size (in bytes)
Jim Grosbach1e20b962010-07-21 21:21:52 +00001782
Devang Patel163a9f72010-05-10 22:49:55 +00001783 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
1784 Asm->EmitInt32(ContentSize);
1785 Asm->OutStreamer.AddComment("DWARF version number");
1786 Asm->EmitInt16(dwarf::DWARF_VERSION);
1787 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
1788 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
1789 DwarfAbbrevSectionSym);
1790 Asm->OutStreamer.AddComment("Address Size (in bytes)");
1791 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001792
Devang Patel163a9f72010-05-10 22:49:55 +00001793 emitDIE(Die);
Devang Patel163a9f72010-05-10 22:49:55 +00001794 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID()));
1795 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001796}
1797
Devang Patel2c4ceb12009-11-21 02:48:08 +00001798/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001799///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001800void DwarfDebug::emitAbbreviations() const {
Bill Wendling94d04b82009-05-20 23:21:38 +00001801 // Check to see if it is worth the effort.
1802 if (!Abbreviations.empty()) {
1803 // Start the debug abbrev section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001804 Asm->OutStreamer.SwitchSection(
1805 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001806
Chris Lattnerc0215722010-04-04 19:25:43 +00001807 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001808
1809 // For each abbrevation.
1810 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
1811 // Get abbreviation data
1812 const DIEAbbrev *Abbrev = Abbreviations[i];
1813
1814 // Emit the abbrevations code (base 1 index.)
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001815 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling94d04b82009-05-20 23:21:38 +00001816
1817 // Emit the abbreviations data.
Chris Lattnerd38fee82010-04-05 00:13:49 +00001818 Abbrev->Emit(Asm);
Bill Wendling94d04b82009-05-20 23:21:38 +00001819 }
1820
1821 // Mark end of abbreviations.
Chris Lattner7e1a8f82010-04-04 19:09:29 +00001822 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling94d04b82009-05-20 23:21:38 +00001823
Chris Lattnerc0215722010-04-04 19:25:43 +00001824 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling94d04b82009-05-20 23:21:38 +00001825 }
1826}
1827
Devang Patel2c4ceb12009-11-21 02:48:08 +00001828/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling94d04b82009-05-20 23:21:38 +00001829/// the line matrix.
1830///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001831void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling94d04b82009-05-20 23:21:38 +00001832 // Define last address of section.
Chris Lattner233f52b2010-03-09 23:52:58 +00001833 Asm->OutStreamer.AddComment("Extended Op");
1834 Asm->EmitInt8(0);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001835
Chris Lattner233f52b2010-03-09 23:52:58 +00001836 Asm->OutStreamer.AddComment("Op size");
Chris Lattnerd38fee82010-04-05 00:13:49 +00001837 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner233f52b2010-03-09 23:52:58 +00001838 Asm->OutStreamer.AddComment("DW_LNE_set_address");
1839 Asm->EmitInt8(dwarf::DW_LNE_set_address);
1840
1841 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerd85fc6e2010-03-10 01:17:49 +00001842
Chris Lattnerc0215722010-04-04 19:25:43 +00001843 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattnerd38fee82010-04-05 00:13:49 +00001844 Asm->getTargetData().getPointerSize(),
1845 0/*AddrSpace*/);
Bill Wendling94d04b82009-05-20 23:21:38 +00001846
1847 // Mark end of matrix.
Chris Lattner233f52b2010-03-09 23:52:58 +00001848 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
1849 Asm->EmitInt8(0);
Chris Lattner0ad9c912010-01-22 22:09:00 +00001850 Asm->EmitInt8(1);
Chris Lattner894d75a2010-01-22 23:18:42 +00001851 Asm->EmitInt8(1);
Bill Wendling94d04b82009-05-20 23:21:38 +00001852}
1853
Devang Patel8a241142009-12-09 18:24:21 +00001854/// emitDebugPubNames - Emit visible names into a debug pubnames section.
1855///
1856void DwarfDebug::emitDebugPubNames() {
Devang Patel163a9f72010-05-10 22:49:55 +00001857 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1858 E = CUMap.end(); I != E; ++I) {
1859 CompileUnit *TheCU = I->second;
1860 // Start the dwarf pubnames section.
1861 Asm->OutStreamer.SwitchSection(
1862 Asm->getObjFileLowering().getDwarfPubNamesSection());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001863
Devang Patel163a9f72010-05-10 22:49:55 +00001864 Asm->OutStreamer.AddComment("Length of Public Names Info");
1865 Asm->EmitLabelDifference(
1866 Asm->GetTempSymbol("pubnames_end", TheCU->getID()),
1867 Asm->GetTempSymbol("pubnames_begin", TheCU->getID()), 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001868
Devang Patel163a9f72010-05-10 22:49:55 +00001869 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_begin",
1870 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001871
Devang Patel163a9f72010-05-10 22:49:55 +00001872 Asm->OutStreamer.AddComment("DWARF Version");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001873 Asm->EmitInt16(dwarf::DWARF_VERSION);
1874
Devang Patel163a9f72010-05-10 22:49:55 +00001875 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001876 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
Devang Patel163a9f72010-05-10 22:49:55 +00001877 DwarfInfoSectionSym);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001878
Devang Patel163a9f72010-05-10 22:49:55 +00001879 Asm->OutStreamer.AddComment("Compilation Unit Length");
1880 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1881 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1882 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001883
Devang Patel163a9f72010-05-10 22:49:55 +00001884 const StringMap<DIE*> &Globals = TheCU->getGlobals();
1885 for (StringMap<DIE*>::const_iterator
1886 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1887 const char *Name = GI->getKeyData();
1888 DIE *Entity = GI->second;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001889
Devang Patel163a9f72010-05-10 22:49:55 +00001890 Asm->OutStreamer.AddComment("DIE offset");
1891 Asm->EmitInt32(Entity->getOffset());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001892
Devang Patel163a9f72010-05-10 22:49:55 +00001893 if (Asm->isVerbose())
1894 Asm->OutStreamer.AddComment("External Name");
1895 Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
1896 }
Jim Grosbach1e20b962010-07-21 21:21:52 +00001897
Devang Patel163a9f72010-05-10 22:49:55 +00001898 Asm->OutStreamer.AddComment("End Mark");
1899 Asm->EmitInt32(0);
1900 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_end",
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001901 TheCU->getID()));
Bill Wendling94d04b82009-05-20 23:21:38 +00001902 }
Bill Wendling94d04b82009-05-20 23:21:38 +00001903}
1904
Devang Patel193f7202009-11-24 01:14:22 +00001905void DwarfDebug::emitDebugPubTypes() {
Devang Patel163a9f72010-05-10 22:49:55 +00001906 for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(),
1907 E = CUMap.end(); I != E; ++I) {
1908 CompileUnit *TheCU = I->second;
1909 // Start the dwarf pubnames section.
1910 Asm->OutStreamer.SwitchSection(
1911 Asm->getObjFileLowering().getDwarfPubTypesSection());
1912 Asm->OutStreamer.AddComment("Length of Public Types Info");
1913 Asm->EmitLabelDifference(
1914 Asm->GetTempSymbol("pubtypes_end", TheCU->getID()),
1915 Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001916
Devang Patel163a9f72010-05-10 22:49:55 +00001917 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
1918 TheCU->getID()));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001919
Devang Patel163a9f72010-05-10 22:49:55 +00001920 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
1921 Asm->EmitInt16(dwarf::DWARF_VERSION);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001922
Devang Patel163a9f72010-05-10 22:49:55 +00001923 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
1924 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()),
1925 DwarfInfoSectionSym);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001926
Devang Patel163a9f72010-05-10 22:49:55 +00001927 Asm->OutStreamer.AddComment("Compilation Unit Length");
1928 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()),
1929 Asm->GetTempSymbol("info_begin", TheCU->getID()),
1930 4);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001931
Devang Patel163a9f72010-05-10 22:49:55 +00001932 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes();
1933 for (StringMap<DIE*>::const_iterator
1934 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1935 const char *Name = GI->getKeyData();
Nick Lewycky3bbb6f72011-07-29 03:49:23 +00001936 DIE *Entity = GI->second;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001937
Devang Patel163a9f72010-05-10 22:49:55 +00001938 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
1939 Asm->EmitInt32(Entity->getOffset());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001940
Devang Patel163a9f72010-05-10 22:49:55 +00001941 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
1942 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
1943 }
Jim Grosbach1e20b962010-07-21 21:21:52 +00001944
Devang Patel163a9f72010-05-10 22:49:55 +00001945 Asm->OutStreamer.AddComment("End Mark");
Jim Grosbach1e20b962010-07-21 21:21:52 +00001946 Asm->EmitInt32(0);
Devang Patel163a9f72010-05-10 22:49:55 +00001947 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
1948 TheCU->getID()));
Devang Patel193f7202009-11-24 01:14:22 +00001949 }
Devang Patel193f7202009-11-24 01:14:22 +00001950}
1951
Devang Patel2c4ceb12009-11-21 02:48:08 +00001952/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001953///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001954void DwarfDebug::emitDebugStr() {
Bill Wendling94d04b82009-05-20 23:21:38 +00001955 // Check to see if it is worth the effort.
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001956 if (StringPool.empty()) return;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001957
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001958 // Start the dwarf str section.
1959 Asm->OutStreamer.SwitchSection(
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001960 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00001961
Chris Lattnerbc733f52010-03-13 02:17:42 +00001962 // Get all of the string pool entries and put them in an array by their ID so
1963 // we can sort them.
Jim Grosbach1e20b962010-07-21 21:21:52 +00001964 SmallVector<std::pair<unsigned,
Chris Lattnerbc733f52010-03-13 02:17:42 +00001965 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
Jim Grosbach1e20b962010-07-21 21:21:52 +00001966
Chris Lattnerbc733f52010-03-13 02:17:42 +00001967 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
1968 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
1969 Entries.push_back(std::make_pair(I->second.second, &*I));
Jim Grosbach1e20b962010-07-21 21:21:52 +00001970
Chris Lattnerbc733f52010-03-13 02:17:42 +00001971 array_pod_sort(Entries.begin(), Entries.end());
Jim Grosbach1e20b962010-07-21 21:21:52 +00001972
Chris Lattnerbc733f52010-03-13 02:17:42 +00001973 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001974 // Emit a label for reference from debug information entries.
Chris Lattnerbc733f52010-03-13 02:17:42 +00001975 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Jim Grosbach1e20b962010-07-21 21:21:52 +00001976
Chris Lattner0d9d70f2010-03-09 23:38:23 +00001977 // Emit the string itself.
Chris Lattnerbc733f52010-03-13 02:17:42 +00001978 Asm->OutStreamer.EmitBytes(Entries[i].second->getKey(), 0/*addrspace*/);
Bill Wendling94d04b82009-05-20 23:21:38 +00001979 }
1980}
1981
Devang Patel2c4ceb12009-11-21 02:48:08 +00001982/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling94d04b82009-05-20 23:21:38 +00001983///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001984void DwarfDebug::emitDebugLoc() {
Devang Patel80250682010-05-26 23:55:23 +00001985 if (DotDebugLocEntries.empty())
1986 return;
1987
Devang Patel6c3ea902011-02-04 22:57:18 +00001988 for (SmallVector<DotDebugLocEntry, 4>::iterator
1989 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
1990 I != E; ++I) {
1991 DotDebugLocEntry &Entry = *I;
1992 if (I + 1 != DotDebugLocEntries.end())
1993 Entry.Merge(I+1);
1994 }
1995
Daniel Dunbar83320a02011-03-16 22:16:39 +00001996 // Start the dwarf loc section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001997 Asm->OutStreamer.SwitchSection(
Devang Patelc3f5f782010-05-25 23:40:22 +00001998 Asm->getObjFileLowering().getDwarfLocSection());
1999 unsigned char Size = Asm->getTargetData().getPointerSize();
Devang Patel80250682010-05-26 23:55:23 +00002000 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0));
2001 unsigned index = 1;
Jim Grosbach1e20b962010-07-21 21:21:52 +00002002 for (SmallVector<DotDebugLocEntry, 4>::iterator
2003 I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end();
Devang Patel61409622010-07-07 20:12:52 +00002004 I != E; ++I, ++index) {
Devang Patel6c3ea902011-02-04 22:57:18 +00002005 DotDebugLocEntry &Entry = *I;
2006 if (Entry.isMerged()) continue;
Devang Patelc3f5f782010-05-25 23:40:22 +00002007 if (Entry.isEmpty()) {
2008 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
2009 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patel80250682010-05-26 23:55:23 +00002010 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index));
Devang Patelc3f5f782010-05-25 23:40:22 +00002011 } else {
2012 Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0);
2013 Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0);
Devang Patelc26f5442011-04-28 02:22:40 +00002014 DIVariable DV(Entry.Variable);
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00002015 Asm->OutStreamer.AddComment("Loc expr size");
2016 MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol();
2017 MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol();
2018 Asm->EmitLabelDifference(end, begin, 2);
2019 Asm->OutStreamer.EmitLabel(begin);
Devang Patel80efd4e2011-07-08 16:49:43 +00002020 if (Entry.isInt()) {
Devang Patelc4329072011-06-01 22:03:25 +00002021 DIBasicType BTy(DV.getType());
2022 if (BTy.Verify() &&
2023 (BTy.getEncoding() == dwarf::DW_ATE_signed
2024 || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) {
2025 Asm->OutStreamer.AddComment("DW_OP_consts");
2026 Asm->EmitInt8(dwarf::DW_OP_consts);
Devang Patel80efd4e2011-07-08 16:49:43 +00002027 Asm->EmitSLEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00002028 } else {
2029 Asm->OutStreamer.AddComment("DW_OP_constu");
2030 Asm->EmitInt8(dwarf::DW_OP_constu);
Devang Patel80efd4e2011-07-08 16:49:43 +00002031 Asm->EmitULEB128(Entry.getInt());
Devang Patelc4329072011-06-01 22:03:25 +00002032 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002033 } else if (Entry.isLocation()) {
2034 if (!DV.hasComplexAddress())
2035 // Regular entry.
Devang Patelc26f5442011-04-28 02:22:40 +00002036 Asm->EmitDwarfRegOp(Entry.Loc);
Devang Patel80efd4e2011-07-08 16:49:43 +00002037 else {
2038 // Complex address entry.
2039 unsigned N = DV.getNumAddrElements();
2040 unsigned i = 0;
2041 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
2042 if (Entry.Loc.getOffset()) {
2043 i = 2;
2044 Asm->EmitDwarfRegOp(Entry.Loc);
2045 Asm->OutStreamer.AddComment("DW_OP_deref");
2046 Asm->EmitInt8(dwarf::DW_OP_deref);
2047 Asm->OutStreamer.AddComment("DW_OP_plus_uconst");
2048 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2049 Asm->EmitSLEB128(DV.getAddrElement(1));
2050 } else {
2051 // If first address element is OpPlus then emit
2052 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
2053 MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1));
2054 Asm->EmitDwarfRegOp(Loc);
2055 i = 2;
2056 }
2057 } else {
2058 Asm->EmitDwarfRegOp(Entry.Loc);
2059 }
2060
2061 // Emit remaining complex address elements.
2062 for (; i < N; ++i) {
2063 uint64_t Element = DV.getAddrElement(i);
2064 if (Element == DIBuilder::OpPlus) {
2065 Asm->EmitInt8(dwarf::DW_OP_plus_uconst);
2066 Asm->EmitULEB128(DV.getAddrElement(++i));
2067 } else if (Element == DIBuilder::OpDeref)
2068 Asm->EmitInt8(dwarf::DW_OP_deref);
2069 else llvm_unreachable("unknown Opcode found in complex address");
2070 }
Devang Patelc26f5442011-04-28 02:22:40 +00002071 }
Devang Patelc26f5442011-04-28 02:22:40 +00002072 }
Devang Patel80efd4e2011-07-08 16:49:43 +00002073 // else ... ignore constant fp. There is not any good way to
2074 // to represent them here in dwarf.
Rafael Espindola5b23b7f2011-05-27 22:05:41 +00002075 Asm->OutStreamer.EmitLabel(end);
Devang Patelc3f5f782010-05-25 23:40:22 +00002076 }
2077 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002078}
2079
2080/// EmitDebugARanges - Emit visible names into a debug aranges section.
2081///
2082void DwarfDebug::EmitDebugARanges() {
2083 // Start the dwarf aranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002084 Asm->OutStreamer.SwitchSection(
2085 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002086}
2087
Devang Patel2c4ceb12009-11-21 02:48:08 +00002088/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002089///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002090void DwarfDebug::emitDebugRanges() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002091 // Start the dwarf ranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002092 Asm->OutStreamer.SwitchSection(
Devang Patelf2548ca2010-04-16 23:33:45 +00002093 Asm->getObjFileLowering().getDwarfRangesSection());
Devang Pateleac9c072010-04-27 19:46:33 +00002094 unsigned char Size = Asm->getTargetData().getPointerSize();
2095 for (SmallVector<const MCSymbol *, 8>::iterator
Jim Grosbach1e20b962010-07-21 21:21:52 +00002096 I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end();
Devang Pateleac9c072010-04-27 19:46:33 +00002097 I != E; ++I) {
2098 if (*I)
2099 Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002100 else
Devang Pateleac9c072010-04-27 19:46:33 +00002101 Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0);
Devang Patelf2548ca2010-04-16 23:33:45 +00002102 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002103}
2104
Devang Patel2c4ceb12009-11-21 02:48:08 +00002105/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002106///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002107void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarf612ff62009-09-19 20:40:05 +00002108 if (const MCSection *LineInfo =
Chris Lattner18a4c162009-08-02 07:24:22 +00002109 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002110 // Start the dwarf macinfo section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002111 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00002112 }
2113}
2114
Devang Patel2c4ceb12009-11-21 02:48:08 +00002115/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling94d04b82009-05-20 23:21:38 +00002116/// Section Header:
2117/// 1. length of section
2118/// 2. Dwarf version number
2119/// 3. address size.
2120///
2121/// Entries (one "entry" for each function that was inlined):
2122///
2123/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2124/// otherwise offset into __debug_str for regular function name.
2125/// 2. offset into __debug_str section for regular function name.
2126/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2127/// instances for the function.
2128///
2129/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2130/// inlined instance; the die_offset points to the inlined_subroutine die in the
2131/// __debug_info section, and the low_pc is the starting address for the
2132/// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002133void DwarfDebug::emitDebugInlineInfo() {
Chris Lattnerd38fee82010-04-05 00:13:49 +00002134 if (!Asm->MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002135 return;
2136
Devang Patel163a9f72010-05-10 22:49:55 +00002137 if (!FirstCU)
Bill Wendling94d04b82009-05-20 23:21:38 +00002138 return;
2139
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002140 Asm->OutStreamer.SwitchSection(
2141 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattner0ad9c912010-01-22 22:09:00 +00002142
Chris Lattner233f52b2010-03-09 23:52:58 +00002143 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnera6437182010-04-04 19:58:12 +00002144 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
2145 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling94d04b82009-05-20 23:21:38 +00002146
Chris Lattnerc0215722010-04-04 19:25:43 +00002147 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002148
Chris Lattner233f52b2010-03-09 23:52:58 +00002149 Asm->OutStreamer.AddComment("Dwarf Version");
2150 Asm->EmitInt16(dwarf::DWARF_VERSION);
2151 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002152 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling94d04b82009-05-20 23:21:38 +00002153
Devang Patele9f8f5e2010-05-07 20:54:48 +00002154 for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
Devang Patel53bb5c92009-11-10 23:06:00 +00002155 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002156
Devang Patele9f8f5e2010-05-07 20:54:48 +00002157 const MDNode *Node = *I;
2158 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach7ab38df2009-11-22 19:20:36 +00002159 = InlineInfo.find(Node);
Devang Patel53bb5c92009-11-10 23:06:00 +00002160 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patele4b27562009-08-28 23:24:31 +00002161 DISubprogram SP(Node);
Devang Patel65dbc902009-11-25 17:36:49 +00002162 StringRef LName = SP.getLinkageName();
2163 StringRef Name = SP.getName();
Bill Wendling94d04b82009-05-20 23:21:38 +00002164
Chris Lattner233f52b2010-03-09 23:52:58 +00002165 Asm->OutStreamer.AddComment("MIPS linkage name");
Chris Lattner4cf202b2010-01-23 03:11:46 +00002166 if (LName.empty()) {
2167 Asm->OutStreamer.EmitBytes(Name, 0);
2168 Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator.
Jim Grosbach1e20b962010-07-21 21:21:52 +00002169 } else
Chris Lattner6189ed12010-04-04 23:25:33 +00002170 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
2171 DwarfStrSectionSym);
Devang Patel53bb5c92009-11-10 23:06:00 +00002172
Chris Lattner233f52b2010-03-09 23:52:58 +00002173 Asm->OutStreamer.AddComment("Function name");
Chris Lattner6189ed12010-04-04 23:25:33 +00002174 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner7e1a8f82010-04-04 19:09:29 +00002175 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling94d04b82009-05-20 23:21:38 +00002176
Devang Patel53bb5c92009-11-10 23:06:00 +00002177 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling94d04b82009-05-20 23:21:38 +00002178 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner3f53c832010-04-04 18:52:31 +00002179 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner6ed0f902010-03-09 00:31:02 +00002180 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00002181
Chris Lattner3f53c832010-04-04 18:52:31 +00002182 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattnerd38fee82010-04-05 00:13:49 +00002183 Asm->OutStreamer.EmitSymbolValue(LI->first,
2184 Asm->getTargetData().getPointerSize(),0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002185 }
2186 }
2187
Chris Lattnerc0215722010-04-04 19:25:43 +00002188 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002189}