blob: d5ce6969e8b12140f571e51929c6273e5ee7429b [file] [log] [blame]
Bill Wendling0310d762009-05-15 09:23:25 +00001//===-- llvm/CodeGen/DwarfDebug.h - Dwarf Debug Framework ------*- C++ -*--===//
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//===----------------------------------------------------------------------===//
13
14#ifndef CODEGEN_ASMPRINTER_DWARFDEBUG_H__
15#define CODEGEN_ASMPRINTER_DWARFDEBUG_H__
16
Bill Wendling0310d762009-05-15 09:23:25 +000017#include "llvm/CodeGen/AsmPrinter.h"
Devang Patelbf47fdb2011-08-10 20:55:27 +000018#include "llvm/CodeGen/LexicalScopes.h"
Evan Cheng2d286172011-07-18 22:29:13 +000019#include "llvm/MC/MachineLocation.h"
Devang Patel3cbee302011-04-12 22:53:02 +000020#include "llvm/Analysis/DebugInfo.h"
Chris Lattnerd2c4f192010-04-05 06:12:01 +000021#include "DIE.h"
Devang Patel622b0262010-01-19 06:19:05 +000022#include "llvm/ADT/DenseMap.h"
Bill Wendling0310d762009-05-15 09:23:25 +000023#include "llvm/ADT/FoldingSet.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000024#include "llvm/ADT/SmallPtrSet.h"
Bill Wendling0310d762009-05-15 09:23:25 +000025#include "llvm/ADT/StringMap.h"
26#include "llvm/ADT/UniqueVector.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000027#include "llvm/Support/Allocator.h"
Benjamin Kramer12ea7652010-09-13 20:04:49 +000028#include "llvm/Support/DebugLoc.h"
Nick Lewycky44d798d2011-10-17 23:05:28 +000029#include <map>
Bill Wendling0310d762009-05-15 09:23:25 +000030
31namespace llvm {
32
33class CompileUnit;
Nick Lewycky381afae2009-11-17 09:17:08 +000034class DbgVariable;
Bill Wendling0310d762009-05-15 09:23:25 +000035class MachineFrameInfo;
36class MachineModuleInfo;
Devang Patela43098d2010-04-28 01:03:09 +000037class MachineOperand;
Chris Lattneraf76e592009-08-22 20:48:53 +000038class MCAsmInfo;
Chris Lattner74e41f92010-04-05 05:24:55 +000039class DIEAbbrev;
40class DIE;
41class DIEBlock;
42class DIEEntry;
Bill Wendling0310d762009-05-15 09:23:25 +000043
44//===----------------------------------------------------------------------===//
45/// SrcLineInfo - This class is used to record source line correspondence.
46///
Nick Lewycky381afae2009-11-17 09:17:08 +000047class SrcLineInfo {
Bill Wendling0310d762009-05-15 09:23:25 +000048 unsigned Line; // Source line number.
49 unsigned Column; // Source column.
50 unsigned SourceID; // Source ID number.
Chris Lattner25b68c62010-03-14 08:15:55 +000051 MCSymbol *Label; // Label in code ID number.
Bill Wendling0310d762009-05-15 09:23:25 +000052public:
Chris Lattner25b68c62010-03-14 08:15:55 +000053 SrcLineInfo(unsigned L, unsigned C, unsigned S, MCSymbol *label)
54 : Line(L), Column(C), SourceID(S), Label(label) {}
Bill Wendling0310d762009-05-15 09:23:25 +000055
56 // Accessors
57 unsigned getLine() const { return Line; }
58 unsigned getColumn() const { return Column; }
59 unsigned getSourceID() const { return SourceID; }
Chris Lattner25b68c62010-03-14 08:15:55 +000060 MCSymbol *getLabel() const { return Label; }
Bill Wendling0310d762009-05-15 09:23:25 +000061};
62
Devang Patel6c3ea902011-02-04 22:57:18 +000063/// DotDebugLocEntry - This struct describes location entries emitted in
64/// .debug_loc section.
65typedef struct DotDebugLocEntry {
66 const MCSymbol *Begin;
67 const MCSymbol *End;
68 MachineLocation Loc;
Devang Patelc26f5442011-04-28 02:22:40 +000069 const MDNode *Variable;
Devang Patel6c3ea902011-02-04 22:57:18 +000070 bool Merged;
Devang Patelc4329072011-06-01 22:03:25 +000071 bool Constant;
Devang Patel80efd4e2011-07-08 16:49:43 +000072 enum EntryType {
73 E_Location,
74 E_Integer,
75 E_ConstantFP,
76 E_ConstantInt
77 };
78 enum EntryType EntryKind;
79
80 union {
81 int64_t Int;
82 const ConstantFP *CFP;
83 const ConstantInt *CIP;
84 } Constants;
Devang Patelc4329072011-06-01 22:03:25 +000085 DotDebugLocEntry()
86 : Begin(0), End(0), Variable(0), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000087 Constant(false) { Constants.Int = 0;}
Devang Patelc26f5442011-04-28 02:22:40 +000088 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L,
89 const MDNode *V)
Devang Patelc4329072011-06-01 22:03:25 +000090 : Begin(B), End(E), Loc(L), Variable(V), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000091 Constant(false) { Constants.Int = 0; EntryKind = E_Location; }
Devang Patelc4329072011-06-01 22:03:25 +000092 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, int64_t i)
93 : Begin(B), End(E), Variable(0), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000094 Constant(true) { Constants.Int = i; EntryKind = E_Integer; }
95 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantFP *FPtr)
96 : Begin(B), End(E), Variable(0), Merged(false),
97 Constant(true) { Constants.CFP = FPtr; EntryKind = E_ConstantFP; }
98 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantInt *IPtr)
99 : Begin(B), End(E), Variable(0), Merged(false),
100 Constant(true) { Constants.CIP = IPtr; EntryKind = E_ConstantInt; }
Devang Patelc4329072011-06-01 22:03:25 +0000101
Devang Patel6c3ea902011-02-04 22:57:18 +0000102 /// Empty entries are also used as a trigger to emit temp label. Such
103 /// labels are referenced is used to find debug_loc offset for a given DIE.
104 bool isEmpty() { return Begin == 0 && End == 0; }
105 bool isMerged() { return Merged; }
106 void Merge(DotDebugLocEntry *Next) {
107 if (!(Begin && Loc == Next->Loc && End == Next->Begin))
108 return;
109 Next->Begin = Begin;
110 Merged = true;
111 }
Devang Patel80efd4e2011-07-08 16:49:43 +0000112 bool isLocation() const { return EntryKind == E_Location; }
113 bool isInt() const { return EntryKind == E_Integer; }
114 bool isConstantFP() const { return EntryKind == E_ConstantFP; }
115 bool isConstantInt() const { return EntryKind == E_ConstantInt; }
116 int64_t getInt() { return Constants.Int; }
117 const ConstantFP *getConstantFP() { return Constants.CFP; }
118 const ConstantInt *getConstantInt() { return Constants.CIP; }
Devang Patel6c3ea902011-02-04 22:57:18 +0000119} DotDebugLocEntry;
120
Devang Patel3cbee302011-04-12 22:53:02 +0000121//===----------------------------------------------------------------------===//
122/// DbgVariable - This class is used to track local variable information.
123///
124class DbgVariable {
125 DIVariable Var; // Variable Descriptor.
126 DIE *TheDIE; // Variable DIE.
127 unsigned DotDebugLocOffset; // Offset in DotDebugLocEntries.
Devang Patel5a1a67c2011-08-15 19:01:20 +0000128 DbgVariable *AbsVar; // Corresponding Abstract variable, if any.
Devang Patelff9dd0a2011-08-15 21:24:36 +0000129 const MachineInstr *MInsn; // DBG_VALUE instruction of the variable.
130 int FrameIndex;
Devang Patel3cbee302011-04-12 22:53:02 +0000131public:
132 // AbsVar may be NULL.
Devang Patel5a1a67c2011-08-15 19:01:20 +0000133 DbgVariable(DIVariable V, DbgVariable *AV)
Devang Patelff9dd0a2011-08-15 21:24:36 +0000134 : Var(V), TheDIE(0), DotDebugLocOffset(~0U), AbsVar(AV), MInsn(0),
Devang Patelc890b192011-08-15 21:35:16 +0000135 FrameIndex(~0) {}
Devang Patel3cbee302011-04-12 22:53:02 +0000136
137 // Accessors.
138 DIVariable getVariable() const { return Var; }
139 void setDIE(DIE *D) { TheDIE = D; }
140 DIE *getDIE() const { return TheDIE; }
141 void setDotDebugLocOffset(unsigned O) { DotDebugLocOffset = O; }
142 unsigned getDotDebugLocOffset() const { return DotDebugLocOffset; }
143 StringRef getName() const { return Var.getName(); }
Devang Patel5a1a67c2011-08-15 19:01:20 +0000144 DbgVariable *getAbstractVariable() const { return AbsVar; }
Devang Patelff9dd0a2011-08-15 21:24:36 +0000145 const MachineInstr *getMInsn() const { return MInsn; }
146 void setMInsn(const MachineInstr *M) { MInsn = M; }
147 int getFrameIndex() const { return FrameIndex; }
148 void setFrameIndex(int FI) { FrameIndex = FI; }
Devang Patel59bc4092011-08-15 18:35:42 +0000149 // Translate tag to proper Dwarf tag.
150 unsigned getTag() const {
151 if (Var.getTag() == dwarf::DW_TAG_arg_variable)
152 return dwarf::DW_TAG_formal_parameter;
153
154 return dwarf::DW_TAG_variable;
155 }
Devang Patela098c502011-08-15 18:40:16 +0000156 /// isArtificial - Return true if DbgVariable is artificial.
157 bool isArtificial() const {
158 if (Var.isArtificial())
159 return true;
160 if (Var.getTag() == dwarf::DW_TAG_arg_variable
161 && getType().isArtificial())
162 return true;
163 return false;
164 }
Devang Patel3cbee302011-04-12 22:53:02 +0000165 bool variableHasComplexAddress() const {
166 assert(Var.Verify() && "Invalid complex DbgVariable!");
167 return Var.hasComplexAddress();
168 }
169 bool isBlockByrefVariable() const {
170 assert(Var.Verify() && "Invalid complex DbgVariable!");
171 return Var.isBlockByrefVariable();
172 }
173 unsigned getNumAddrElements() const {
174 assert(Var.Verify() && "Invalid complex DbgVariable!");
175 return Var.getNumAddrElements();
176 }
177 uint64_t getAddrElement(unsigned i) const {
178 return Var.getAddrElement(i);
179 }
180 DIType getType() const;
181};
182
Chris Lattnerd38fee82010-04-05 00:13:49 +0000183class DwarfDebug {
184 /// Asm - Target of Dwarf emission.
185 AsmPrinter *Asm;
Chris Lattner105d6972010-04-05 05:31:04 +0000186
Chris Lattnerd38fee82010-04-05 00:13:49 +0000187 /// MMI - Collected machine module information.
188 MachineModuleInfo *MMI;
189
Bill Wendling0310d762009-05-15 09:23:25 +0000190 //===--------------------------------------------------------------------===//
191 // Attributes used to construct specific Dwarf sections.
192 //
193
Devang Patel163a9f72010-05-10 22:49:55 +0000194 CompileUnit *FirstCU;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000195
196 /// Maps MDNode with its corresponding CompileUnit.
Devang Patel163a9f72010-05-10 22:49:55 +0000197 DenseMap <const MDNode *, CompileUnit *> CUMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000198
Devang Patel94c7ddb2011-08-16 22:09:43 +0000199 /// Maps subprogram MDNode with its corresponding CompileUnit.
200 DenseMap <const MDNode *, CompileUnit *> SPMap;
201
Bill Wendling0310d762009-05-15 09:23:25 +0000202 /// AbbreviationsSet - Used to uniquely define abbreviations.
203 ///
204 FoldingSet<DIEAbbrev> AbbreviationsSet;
205
206 /// Abbreviations - A list of all the unique abbreviations in use.
207 ///
208 std::vector<DIEAbbrev *> Abbreviations;
209
Nick Lewycky44d798d2011-10-17 23:05:28 +0000210 /// SourceIdMap - Source id map, i.e. pair of source filename and directory
211 /// mapped to a unique id.
212 std::map<std::pair<std::string, std::string>, unsigned> SourceIdMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000213
Chris Lattnerbc733f52010-03-13 02:17:42 +0000214 /// StringPool - A String->Symbol mapping of strings used by indirect
215 /// references.
216 StringMap<std::pair<MCSymbol*, unsigned> > StringPool;
217 unsigned NextStringPoolNumber;
218
Bill Wendling0310d762009-05-15 09:23:25 +0000219 /// SectionMap - Provides a unique id per text section.
220 ///
Chris Lattnera87dea42009-07-31 18:48:30 +0000221 UniqueVector<const MCSection*> SectionMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000222
Devang Patel0478c152011-03-01 22:58:55 +0000223 /// CurrentFnArguments - List of Arguments (DbgValues) for current function.
224 SmallVector<DbgVariable *, 8> CurrentFnArguments;
225
Devang Patelbf47fdb2011-08-10 20:55:27 +0000226 LexicalScopes LScopes;
Devang Patel2ddefec2010-03-25 15:09:44 +0000227
Devang Patel8aa61472010-07-07 22:20:57 +0000228 /// AbstractSPDies - Collection of abstract subprogram DIEs.
229 DenseMap<const MDNode *, DIE *> AbstractSPDies;
230
Devang Patelbf47fdb2011-08-10 20:55:27 +0000231 /// ScopeVariables - Collection of dbg variables of a scope.
232 DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> > ScopeVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000233
Devang Patelbf47fdb2011-08-10 20:55:27 +0000234 /// AbstractVariables - Collection on abstract variables.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000235 DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000236
Devang Patelc3f5f782010-05-25 23:40:22 +0000237 /// DotDebugLocEntries - Collection of DotDebugLocEntry.
238 SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
239
Nick Lewycky20b2b782011-10-18 22:40:18 +0000240 /// InlinedSubprogramDIEs - Collection of subprogram DIEs that are marked
Devang Patel53bb5c92009-11-10 23:06:00 +0000241 /// (at the end of the module) as DW_AT_inline.
242 SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
243
Bill Wendling0310d762009-05-15 09:23:25 +0000244 /// InlineInfo - Keep track of inlined functions and their location. This
245 /// information is used to populate debug_inlined section.
Devang Patelc3f5f782010-05-25 23:40:22 +0000246 typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels;
Devang Patele9f8f5e2010-05-07 20:54:48 +0000247 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo;
248 SmallVector<const MDNode *, 4> InlinedSPNodes;
Bill Wendling0310d762009-05-15 09:23:25 +0000249
Devang Patel4a1cad62010-06-28 18:25:03 +0000250 // ProcessedSPNodes - This is a collection of subprogram MDNodes that
251 // are processed to create DIEs.
252 SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
253
Devang Pateleac9c072010-04-27 19:46:33 +0000254 /// LabelsBeforeInsn - Maps instruction with label emitted before
Devang Patel1c246352010-04-08 16:50:29 +0000255 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000256 DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000257
Devang Pateleac9c072010-04-27 19:46:33 +0000258 /// LabelsAfterInsn - Maps instruction with label emitted after
Devang Patel1c246352010-04-08 16:50:29 +0000259 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000260 DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000261
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000262 /// UserVariables - Every user variable mentioned by a DBG_VALUE instruction
263 /// in order of appearance.
264 SmallVector<const MDNode*, 8> UserVariables;
Devang Patelb2b31a62010-05-26 19:37:24 +0000265
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000266 /// DbgValues - For each user variable, keep a list of DBG_VALUE
267 /// instructions in order. The list can also contain normal instructions that
268 /// clobber the previous DBG_VALUE.
269 typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> >
270 DbgValueHistoryMap;
271 DbgValueHistoryMap DbgValues;
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000272
Devang Patelf2548ca2010-04-16 23:33:45 +0000273 SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
Devang Patelc04d5452010-04-22 20:56:35 +0000274
Devang Patel553881b2010-03-29 17:20:31 +0000275 /// Previous instruction's location information. This is used to determine
276 /// label location to indicate scope boundries in dwarf debug info.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000277 DebugLoc PrevInstLoc;
Devang Patelf2548ca2010-04-16 23:33:45 +0000278 MCSymbol *PrevLabel;
Devang Patel553881b2010-03-29 17:20:31 +0000279
Devang Patel4243e672011-05-11 19:22:19 +0000280 /// PrologEndLoc - This location indicates end of function prologue and
281 /// beginning of function body.
282 DebugLoc PrologEndLoc;
283
Bill Wendling0310d762009-05-15 09:23:25 +0000284 struct FunctionDebugFrameInfo {
285 unsigned Number;
286 std::vector<MachineMove> Moves;
287
288 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
289 : Number(Num), Moves(M) {}
290 };
291
292 std::vector<FunctionDebugFrameInfo> DebugFrames;
293
Devang Patel3cbee302011-04-12 22:53:02 +0000294 // DIEValueAllocator - All DIEValues are allocated through this allocator.
295 BumpPtrAllocator DIEValueAllocator;
296
Chris Lattner9c69e285532010-04-04 22:59:04 +0000297 // Section Symbols: these are assembler temporary labels that are emitted at
298 // the beginning of each supported dwarf section. These are used to form
299 // section offsets and are created by EmitSectionLabels.
Rafael Espindolaf2b04232011-05-06 14:56:22 +0000300 MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
Devang Patelf2548ca2010-04-16 23:33:45 +0000301 MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
Devang Patelc3f5f782010-05-25 23:40:22 +0000302 MCSymbol *DwarfDebugLocSectionSym;
303 MCSymbol *FunctionBeginSym, *FunctionEndSym;
Devang Patelca76f6f2010-07-08 20:10:35 +0000304
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000305 // As an optimization, there is no need to emit an entry in the directory
306 // table for the same directory as DW_at_comp_dir.
307 StringRef CompilationDir;
308
Devang Patele62dfcf2011-03-31 16:53:49 +0000309private:
Bill Wendling0310d762009-05-15 09:23:25 +0000310
Devang Patel2c4ceb12009-11-21 02:48:08 +0000311 /// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000312 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000313 void assignAbbrevNumber(DIEAbbrev &Abbrev);
Bill Wendling0310d762009-05-15 09:23:25 +0000314
Devang Patelbf47fdb2011-08-10 20:55:27 +0000315 void addScopeVariable(LexicalScope *LS, DbgVariable *Var);
Devang Patel53bb5c92009-11-10 23:06:00 +0000316
317 /// findAbstractVariable - Find abstract variable associated with Var.
Devang Patel26c1e562010-05-20 16:36:41 +0000318 DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
Devang Patel53bb5c92009-11-10 23:06:00 +0000319
Devang Patel2c4ceb12009-11-21 02:48:08 +0000320 /// updateSubprogramScopeDIE - Find DIE for the given subprogram and
321 /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
322 /// If there are global variables in this scope then create and insert
323 /// DIEs for these variables.
Devang Pateld3024342011-08-15 22:24:32 +0000324 DIE *updateSubprogramScopeDIE(CompileUnit *SPCU, const MDNode *SPNode);
Bill Wendling0310d762009-05-15 09:23:25 +0000325
Devang Patel2c4ceb12009-11-21 02:48:08 +0000326 /// constructLexicalScope - Construct new DW_TAG_lexical_block
327 /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Pateld3024342011-08-15 22:24:32 +0000328 DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Bill Wendling0310d762009-05-15 09:23:25 +0000329
Devang Patel2c4ceb12009-11-21 02:48:08 +0000330 /// constructInlinedScopeDIE - This scope represents inlined body of
331 /// a function. Construct DIE to represent this concrete inlined copy
332 /// of the function.
Devang Pateld3024342011-08-15 22:24:32 +0000333 DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000334
335 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000336 DIE *constructVariableDIE(DbgVariable *DV, LexicalScope *S);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000337
338 /// constructScopeDIE - Construct a DIE for this scope.
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000339 DIE *constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000340
Chris Lattnerfa070b02010-04-04 22:33:59 +0000341 /// EmitSectionLabels - Emit initial Dwarf sections with a label at
342 /// the start of each one.
343 void EmitSectionLabels();
Bill Wendling0310d762009-05-15 09:23:25 +0000344
Nick Lewycky024170f2011-10-18 22:39:43 +0000345 /// emitDIE - Recursively Emits a debug information entry.
Bill Wendling0310d762009-05-15 09:23:25 +0000346 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000347 void emitDIE(DIE *Die);
Bill Wendling0310d762009-05-15 09:23:25 +0000348
Devang Patel2c4ceb12009-11-21 02:48:08 +0000349 /// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling0310d762009-05-15 09:23:25 +0000350 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000351 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last);
Bill Wendling0310d762009-05-15 09:23:25 +0000352
Devang Patel2c4ceb12009-11-21 02:48:08 +0000353 /// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling0310d762009-05-15 09:23:25 +0000354 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000355 void computeSizeAndOffsets();
Bill Wendling0310d762009-05-15 09:23:25 +0000356
Devang Patel8a241142009-12-09 18:24:21 +0000357 /// EmitDebugInfo - Emit the debug info section.
Bill Wendling0310d762009-05-15 09:23:25 +0000358 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000359 void emitDebugInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000360
Devang Patel2c4ceb12009-11-21 02:48:08 +0000361 /// emitAbbreviations - Emit the abbreviation section.
Bill Wendling0310d762009-05-15 09:23:25 +0000362 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000363 void emitAbbreviations() const;
Bill Wendling0310d762009-05-15 09:23:25 +0000364
Devang Patel2c4ceb12009-11-21 02:48:08 +0000365 /// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling0310d762009-05-15 09:23:25 +0000366 /// the line matrix.
367 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000368 void emitEndOfLineMatrix(unsigned SectionEnd);
Bill Wendling0310d762009-05-15 09:23:25 +0000369
Devang Patel2c4ceb12009-11-21 02:48:08 +0000370 /// emitDebugPubNames - Emit visible names into a debug pubnames section.
Bill Wendling0310d762009-05-15 09:23:25 +0000371 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000372 void emitDebugPubNames();
Bill Wendling0310d762009-05-15 09:23:25 +0000373
Devang Patel193f7202009-11-24 01:14:22 +0000374 /// emitDebugPubTypes - Emit visible types into a debug pubtypes section.
375 ///
376 void emitDebugPubTypes();
377
Devang Patel2c4ceb12009-11-21 02:48:08 +0000378 /// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling0310d762009-05-15 09:23:25 +0000379 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000380 void emitDebugStr();
Bill Wendling0310d762009-05-15 09:23:25 +0000381
Devang Patel2c4ceb12009-11-21 02:48:08 +0000382 /// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling0310d762009-05-15 09:23:25 +0000383 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000384 void emitDebugLoc();
Bill Wendling0310d762009-05-15 09:23:25 +0000385
386 /// EmitDebugARanges - Emit visible names into a debug aranges section.
387 ///
388 void EmitDebugARanges();
389
Devang Patel2c4ceb12009-11-21 02:48:08 +0000390 /// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling0310d762009-05-15 09:23:25 +0000391 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000392 void emitDebugRanges();
Bill Wendling0310d762009-05-15 09:23:25 +0000393
Devang Patel2c4ceb12009-11-21 02:48:08 +0000394 /// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling0310d762009-05-15 09:23:25 +0000395 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000396 void emitDebugMacInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000397
Devang Patel2c4ceb12009-11-21 02:48:08 +0000398 /// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling0310d762009-05-15 09:23:25 +0000399 /// Section Header:
400 /// 1. length of section
401 /// 2. Dwarf version number
402 /// 3. address size.
403 ///
404 /// Entries (one "entry" for each function that was inlined):
405 ///
406 /// 1. offset into __debug_str section for MIPS linkage name, if exists;
407 /// otherwise offset into __debug_str for regular function name.
408 /// 2. offset into __debug_str section for regular function name.
409 /// 3. an unsigned LEB128 number indicating the number of distinct inlining
410 /// instances for the function.
411 ///
Nick Lewycky024170f2011-10-18 22:39:43 +0000412 /// The rest of the entry consists of a {die_offset, low_pc} pair for each
Bill Wendling0310d762009-05-15 09:23:25 +0000413 /// inlined instance; the die_offset points to the inlined_subroutine die in
Nick Lewycky024170f2011-10-18 22:39:43 +0000414 /// the __debug_info section, and the low_pc is the starting address for the
415 /// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000416 void emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000417
Devang Patel163a9f72010-05-10 22:49:55 +0000418 /// constructCompileUnit - Create new CompileUnit for the given
419 /// metadata node with tag DW_TAG_compile_unit.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000420 CompileUnit *constructCompileUnit(const MDNode *N);
Devang Patel163a9f72010-05-10 22:49:55 +0000421
Devang Patel163a9f72010-05-10 22:49:55 +0000422 /// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel3655a212011-08-15 23:36:40 +0000423 void constructSubprogramDIE(CompileUnit *TheCU, const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000424
Chris Lattner2b1b3312010-04-05 05:32:45 +0000425 /// recordSourceLine - Register a source line with debug info. Returns the
426 /// unique label that was emitted and which provides correspondence to
427 /// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +0000428 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
429 unsigned Flags);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000430
Nick Lewycky024170f2011-10-18 22:39:43 +0000431 /// identifyScopeMarkers() - Indentify instructions that are marking the
432 /// beginning of or ending of a scope.
Devang Patele37b0c62010-04-08 18:43:56 +0000433 void identifyScopeMarkers();
Devang Patel6122a4d2010-04-08 15:37:09 +0000434
Devang Patel0478c152011-03-01 22:58:55 +0000435 /// addCurrentFnArgument - If Var is an current function argument that add
436 /// it in CurrentFnArguments list.
437 bool addCurrentFnArgument(const MachineFunction *MF,
Devang Patelbf47fdb2011-08-10 20:55:27 +0000438 DbgVariable *Var, LexicalScope *Scope);
Devang Patel0478c152011-03-01 22:58:55 +0000439
Devang Patelbf47fdb2011-08-10 20:55:27 +0000440 /// collectVariableInfo - Populate LexicalScope entries with variables' info.
Devang Patel78e127d2010-06-25 22:07:34 +0000441 void collectVariableInfo(const MachineFunction *,
442 SmallPtrSet<const MDNode *, 16> &ProcessedVars);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000443
Devang Patelee432862010-05-20 19:57:06 +0000444 /// collectVariableInfoFromMMITable - Collect variable information from
445 /// side table maintained by MMI.
446 void collectVariableInfoFromMMITable(const MachineFunction * MF,
447 SmallPtrSet<const MDNode *, 16> &P);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000448
449 /// requestLabelBeforeInsn - Ensure that a label will be emitted before MI.
450 void requestLabelBeforeInsn(const MachineInstr *MI) {
451 LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol*)0));
452 }
453
454 /// getLabelBeforeInsn - Return Label preceding the instruction.
455 const MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
456
457 /// requestLabelAfterInsn - Ensure that a label will be emitted after MI.
458 void requestLabelAfterInsn(const MachineInstr *MI) {
459 LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol*)0));
460 }
461
462 /// getLabelAfterInsn - Return Label immediately following the instruction.
463 const MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
464
Bill Wendling0310d762009-05-15 09:23:25 +0000465public:
466 //===--------------------------------------------------------------------===//
467 // Main entry points.
468 //
Chris Lattner49cd6642010-04-05 05:11:15 +0000469 DwarfDebug(AsmPrinter *A, Module *M);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000470 ~DwarfDebug();
Bill Wendling0310d762009-05-15 09:23:25 +0000471
Devang Patel02e603f2011-08-15 23:47:24 +0000472 /// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
473 /// as llvm.dbg.enum and llvm.dbg.ty
474 void collectInfoFromNamedMDNodes(Module *M);
475
476 /// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
Nick Lewycky024170f2011-10-18 22:39:43 +0000477 /// FIXME - Remove this when DragonEgg switches to DIBuilder.
Devang Patel02e603f2011-08-15 23:47:24 +0000478 bool collectLegacyDebugInfo(Module *M);
479
Devang Patel2c4ceb12009-11-21 02:48:08 +0000480 /// beginModule - Emit all Dwarf sections that should come prior to the
Bill Wendling0310d762009-05-15 09:23:25 +0000481 /// content.
Chris Lattner75f50722010-04-04 07:48:20 +0000482 void beginModule(Module *M);
Bill Wendling0310d762009-05-15 09:23:25 +0000483
Devang Patel2c4ceb12009-11-21 02:48:08 +0000484 /// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling0310d762009-05-15 09:23:25 +0000485 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000486 void endModule();
Bill Wendling0310d762009-05-15 09:23:25 +0000487
Devang Patel2c4ceb12009-11-21 02:48:08 +0000488 /// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling0310d762009-05-15 09:23:25 +0000489 /// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +0000490 void beginFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000491
Devang Patel2c4ceb12009-11-21 02:48:08 +0000492 /// endFunction - Gather and emit post-function debug information.
Bill Wendling0310d762009-05-15 09:23:25 +0000493 ///
Chris Lattnereec791a2010-01-26 23:18:02 +0000494 void endFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000495
Devang Patelcbbe2872010-10-26 17:49:02 +0000496 /// beginInstruction - Process beginning of an instruction.
497 void beginInstruction(const MachineInstr *MI);
Bill Wendling0310d762009-05-15 09:23:25 +0000498
Devang Patelcbbe2872010-10-26 17:49:02 +0000499 /// endInstruction - Prcess end of an instruction.
500 void endInstruction(const MachineInstr *MI);
Devang Patel3cbee302011-04-12 22:53:02 +0000501
502 /// GetOrCreateSourceID - Look up the source id with the given directory and
503 /// source file names. If none currently exists, create a new id and insert it
504 /// in the SourceIds map.
505 unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName);
506
507 /// createSubprogramDIE - Create new DIE using SP.
508 DIE *createSubprogramDIE(DISubprogram SP);
Nick Lewycky390c40d2011-10-27 06:44:11 +0000509
510 /// getStringPool - returns the entry into the start of the pool.
511 MCSymbol *getStringPool();
512
513 /// getStringPoolEntry - returns an entry into the string pool with the given
514 /// string text.
515 MCSymbol *getStringPoolEntry(StringRef Str);
Devang Patel53bb5c92009-11-10 23:06:00 +0000516};
Bill Wendling0310d762009-05-15 09:23:25 +0000517} // End of namespace llvm
518
519#endif