blob: bdb462ebc0e565702cfcb70ef0447ba86ff3760b [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;
Chris Lattner5b676ce2012-01-26 20:44:57 +000034class ConstantInt;
35class ConstantFP;
Nick Lewycky381afae2009-11-17 09:17:08 +000036class DbgVariable;
Bill Wendling0310d762009-05-15 09:23:25 +000037class MachineFrameInfo;
38class MachineModuleInfo;
Devang Patela43098d2010-04-28 01:03:09 +000039class MachineOperand;
Chris Lattneraf76e592009-08-22 20:48:53 +000040class MCAsmInfo;
Chris Lattner74e41f92010-04-05 05:24:55 +000041class DIEAbbrev;
42class DIE;
43class DIEBlock;
44class DIEEntry;
Bill Wendling0310d762009-05-15 09:23:25 +000045
46//===----------------------------------------------------------------------===//
47/// SrcLineInfo - This class is used to record source line correspondence.
48///
Nick Lewycky381afae2009-11-17 09:17:08 +000049class SrcLineInfo {
Bill Wendling0310d762009-05-15 09:23:25 +000050 unsigned Line; // Source line number.
51 unsigned Column; // Source column.
52 unsigned SourceID; // Source ID number.
Chris Lattner25b68c62010-03-14 08:15:55 +000053 MCSymbol *Label; // Label in code ID number.
Bill Wendling0310d762009-05-15 09:23:25 +000054public:
Chris Lattner25b68c62010-03-14 08:15:55 +000055 SrcLineInfo(unsigned L, unsigned C, unsigned S, MCSymbol *label)
56 : Line(L), Column(C), SourceID(S), Label(label) {}
Bill Wendling0310d762009-05-15 09:23:25 +000057
58 // Accessors
59 unsigned getLine() const { return Line; }
60 unsigned getColumn() const { return Column; }
61 unsigned getSourceID() const { return SourceID; }
Chris Lattner25b68c62010-03-14 08:15:55 +000062 MCSymbol *getLabel() const { return Label; }
Bill Wendling0310d762009-05-15 09:23:25 +000063};
64
Devang Patel6c3ea902011-02-04 22:57:18 +000065/// DotDebugLocEntry - This struct describes location entries emitted in
66/// .debug_loc section.
67typedef struct DotDebugLocEntry {
68 const MCSymbol *Begin;
69 const MCSymbol *End;
70 MachineLocation Loc;
Devang Patelc26f5442011-04-28 02:22:40 +000071 const MDNode *Variable;
Devang Patel6c3ea902011-02-04 22:57:18 +000072 bool Merged;
Devang Patelc4329072011-06-01 22:03:25 +000073 bool Constant;
Devang Patel80efd4e2011-07-08 16:49:43 +000074 enum EntryType {
75 E_Location,
76 E_Integer,
77 E_ConstantFP,
78 E_ConstantInt
79 };
80 enum EntryType EntryKind;
81
82 union {
83 int64_t Int;
84 const ConstantFP *CFP;
85 const ConstantInt *CIP;
86 } Constants;
Devang Patelc4329072011-06-01 22:03:25 +000087 DotDebugLocEntry()
88 : Begin(0), End(0), Variable(0), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000089 Constant(false) { Constants.Int = 0;}
Devang Patelc26f5442011-04-28 02:22:40 +000090 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L,
91 const MDNode *V)
Devang Patelc4329072011-06-01 22:03:25 +000092 : Begin(B), End(E), Loc(L), Variable(V), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000093 Constant(false) { Constants.Int = 0; EntryKind = E_Location; }
Devang Patelc4329072011-06-01 22:03:25 +000094 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, int64_t i)
95 : Begin(B), End(E), Variable(0), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000096 Constant(true) { Constants.Int = i; EntryKind = E_Integer; }
97 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantFP *FPtr)
98 : Begin(B), End(E), Variable(0), Merged(false),
99 Constant(true) { Constants.CFP = FPtr; EntryKind = E_ConstantFP; }
100 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantInt *IPtr)
101 : Begin(B), End(E), Variable(0), Merged(false),
102 Constant(true) { Constants.CIP = IPtr; EntryKind = E_ConstantInt; }
Devang Patelc4329072011-06-01 22:03:25 +0000103
Devang Patel6c3ea902011-02-04 22:57:18 +0000104 /// Empty entries are also used as a trigger to emit temp label. Such
105 /// labels are referenced is used to find debug_loc offset for a given DIE.
106 bool isEmpty() { return Begin == 0 && End == 0; }
107 bool isMerged() { return Merged; }
108 void Merge(DotDebugLocEntry *Next) {
109 if (!(Begin && Loc == Next->Loc && End == Next->Begin))
110 return;
111 Next->Begin = Begin;
112 Merged = true;
113 }
Devang Patel80efd4e2011-07-08 16:49:43 +0000114 bool isLocation() const { return EntryKind == E_Location; }
115 bool isInt() const { return EntryKind == E_Integer; }
116 bool isConstantFP() const { return EntryKind == E_ConstantFP; }
117 bool isConstantInt() const { return EntryKind == E_ConstantInt; }
118 int64_t getInt() { return Constants.Int; }
119 const ConstantFP *getConstantFP() { return Constants.CFP; }
120 const ConstantInt *getConstantInt() { return Constants.CIP; }
Devang Patel6c3ea902011-02-04 22:57:18 +0000121} DotDebugLocEntry;
122
Devang Patel3cbee302011-04-12 22:53:02 +0000123//===----------------------------------------------------------------------===//
124/// DbgVariable - This class is used to track local variable information.
125///
126class DbgVariable {
127 DIVariable Var; // Variable Descriptor.
128 DIE *TheDIE; // Variable DIE.
129 unsigned DotDebugLocOffset; // Offset in DotDebugLocEntries.
Devang Patel5a1a67c2011-08-15 19:01:20 +0000130 DbgVariable *AbsVar; // Corresponding Abstract variable, if any.
Devang Patelff9dd0a2011-08-15 21:24:36 +0000131 const MachineInstr *MInsn; // DBG_VALUE instruction of the variable.
132 int FrameIndex;
Devang Patel3cbee302011-04-12 22:53:02 +0000133public:
134 // AbsVar may be NULL.
Devang Patel5a1a67c2011-08-15 19:01:20 +0000135 DbgVariable(DIVariable V, DbgVariable *AV)
Devang Patelff9dd0a2011-08-15 21:24:36 +0000136 : Var(V), TheDIE(0), DotDebugLocOffset(~0U), AbsVar(AV), MInsn(0),
Devang Patelc890b192011-08-15 21:35:16 +0000137 FrameIndex(~0) {}
Devang Patel3cbee302011-04-12 22:53:02 +0000138
139 // Accessors.
140 DIVariable getVariable() const { return Var; }
141 void setDIE(DIE *D) { TheDIE = D; }
142 DIE *getDIE() const { return TheDIE; }
143 void setDotDebugLocOffset(unsigned O) { DotDebugLocOffset = O; }
144 unsigned getDotDebugLocOffset() const { return DotDebugLocOffset; }
145 StringRef getName() const { return Var.getName(); }
Devang Patel5a1a67c2011-08-15 19:01:20 +0000146 DbgVariable *getAbstractVariable() const { return AbsVar; }
Devang Patelff9dd0a2011-08-15 21:24:36 +0000147 const MachineInstr *getMInsn() const { return MInsn; }
148 void setMInsn(const MachineInstr *M) { MInsn = M; }
149 int getFrameIndex() const { return FrameIndex; }
150 void setFrameIndex(int FI) { FrameIndex = FI; }
Devang Patel59bc4092011-08-15 18:35:42 +0000151 // Translate tag to proper Dwarf tag.
152 unsigned getTag() const {
153 if (Var.getTag() == dwarf::DW_TAG_arg_variable)
154 return dwarf::DW_TAG_formal_parameter;
155
156 return dwarf::DW_TAG_variable;
157 }
Devang Patela098c502011-08-15 18:40:16 +0000158 /// isArtificial - Return true if DbgVariable is artificial.
159 bool isArtificial() const {
160 if (Var.isArtificial())
161 return true;
162 if (Var.getTag() == dwarf::DW_TAG_arg_variable
163 && getType().isArtificial())
164 return true;
165 return false;
166 }
Devang Patel3cbee302011-04-12 22:53:02 +0000167 bool variableHasComplexAddress() const {
168 assert(Var.Verify() && "Invalid complex DbgVariable!");
169 return Var.hasComplexAddress();
170 }
171 bool isBlockByrefVariable() const {
172 assert(Var.Verify() && "Invalid complex DbgVariable!");
173 return Var.isBlockByrefVariable();
174 }
175 unsigned getNumAddrElements() const {
176 assert(Var.Verify() && "Invalid complex DbgVariable!");
177 return Var.getNumAddrElements();
178 }
179 uint64_t getAddrElement(unsigned i) const {
180 return Var.getAddrElement(i);
181 }
182 DIType getType() const;
183};
184
Chris Lattnerd38fee82010-04-05 00:13:49 +0000185class DwarfDebug {
186 /// Asm - Target of Dwarf emission.
187 AsmPrinter *Asm;
Chris Lattner105d6972010-04-05 05:31:04 +0000188
Chris Lattnerd38fee82010-04-05 00:13:49 +0000189 /// MMI - Collected machine module information.
190 MachineModuleInfo *MMI;
191
Bill Wendling0310d762009-05-15 09:23:25 +0000192 //===--------------------------------------------------------------------===//
193 // Attributes used to construct specific Dwarf sections.
194 //
195
Devang Patel163a9f72010-05-10 22:49:55 +0000196 CompileUnit *FirstCU;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000197
198 /// Maps MDNode with its corresponding CompileUnit.
Devang Patel163a9f72010-05-10 22:49:55 +0000199 DenseMap <const MDNode *, CompileUnit *> CUMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000200
Devang Patel94c7ddb2011-08-16 22:09:43 +0000201 /// Maps subprogram MDNode with its corresponding CompileUnit.
202 DenseMap <const MDNode *, CompileUnit *> SPMap;
203
Bill Wendling0310d762009-05-15 09:23:25 +0000204 /// AbbreviationsSet - Used to uniquely define abbreviations.
205 ///
206 FoldingSet<DIEAbbrev> AbbreviationsSet;
207
208 /// Abbreviations - A list of all the unique abbreviations in use.
209 ///
210 std::vector<DIEAbbrev *> Abbreviations;
211
Nick Lewycky44d798d2011-10-17 23:05:28 +0000212 /// SourceIdMap - Source id map, i.e. pair of source filename and directory
213 /// mapped to a unique id.
214 std::map<std::pair<std::string, std::string>, unsigned> SourceIdMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000215
Chris Lattnerbc733f52010-03-13 02:17:42 +0000216 /// StringPool - A String->Symbol mapping of strings used by indirect
217 /// references.
218 StringMap<std::pair<MCSymbol*, unsigned> > StringPool;
219 unsigned NextStringPoolNumber;
220
Bill Wendling0310d762009-05-15 09:23:25 +0000221 /// SectionMap - Provides a unique id per text section.
222 ///
Chris Lattnera87dea42009-07-31 18:48:30 +0000223 UniqueVector<const MCSection*> SectionMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000224
Devang Patel0478c152011-03-01 22:58:55 +0000225 /// CurrentFnArguments - List of Arguments (DbgValues) for current function.
226 SmallVector<DbgVariable *, 8> CurrentFnArguments;
227
Devang Patelbf47fdb2011-08-10 20:55:27 +0000228 LexicalScopes LScopes;
Devang Patel2ddefec2010-03-25 15:09:44 +0000229
Devang Patel8aa61472010-07-07 22:20:57 +0000230 /// AbstractSPDies - Collection of abstract subprogram DIEs.
231 DenseMap<const MDNode *, DIE *> AbstractSPDies;
232
Devang Patelbf47fdb2011-08-10 20:55:27 +0000233 /// ScopeVariables - Collection of dbg variables of a scope.
234 DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> > ScopeVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000235
Devang Patelbf47fdb2011-08-10 20:55:27 +0000236 /// AbstractVariables - Collection on abstract variables.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000237 DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000238
Devang Patelc3f5f782010-05-25 23:40:22 +0000239 /// DotDebugLocEntries - Collection of DotDebugLocEntry.
240 SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
241
Nick Lewycky20b2b782011-10-18 22:40:18 +0000242 /// InlinedSubprogramDIEs - Collection of subprogram DIEs that are marked
Devang Patel53bb5c92009-11-10 23:06:00 +0000243 /// (at the end of the module) as DW_AT_inline.
244 SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
245
Bill Wendling0310d762009-05-15 09:23:25 +0000246 /// InlineInfo - Keep track of inlined functions and their location. This
247 /// information is used to populate debug_inlined section.
Devang Patelc3f5f782010-05-25 23:40:22 +0000248 typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels;
Devang Patele9f8f5e2010-05-07 20:54:48 +0000249 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo;
250 SmallVector<const MDNode *, 4> InlinedSPNodes;
Bill Wendling0310d762009-05-15 09:23:25 +0000251
Devang Patel4a1cad62010-06-28 18:25:03 +0000252 // ProcessedSPNodes - This is a collection of subprogram MDNodes that
253 // are processed to create DIEs.
254 SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
255
Devang Pateleac9c072010-04-27 19:46:33 +0000256 /// LabelsBeforeInsn - Maps instruction with label emitted before
Devang Patel1c246352010-04-08 16:50:29 +0000257 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000258 DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000259
Devang Pateleac9c072010-04-27 19:46:33 +0000260 /// LabelsAfterInsn - Maps instruction with label emitted after
Devang Patel1c246352010-04-08 16:50:29 +0000261 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000262 DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000263
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000264 /// UserVariables - Every user variable mentioned by a DBG_VALUE instruction
265 /// in order of appearance.
266 SmallVector<const MDNode*, 8> UserVariables;
Devang Patelb2b31a62010-05-26 19:37:24 +0000267
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000268 /// DbgValues - For each user variable, keep a list of DBG_VALUE
269 /// instructions in order. The list can also contain normal instructions that
270 /// clobber the previous DBG_VALUE.
271 typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> >
272 DbgValueHistoryMap;
273 DbgValueHistoryMap DbgValues;
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000274
Devang Patelf2548ca2010-04-16 23:33:45 +0000275 SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
Devang Patelc04d5452010-04-22 20:56:35 +0000276
Devang Patel553881b2010-03-29 17:20:31 +0000277 /// Previous instruction's location information. This is used to determine
278 /// label location to indicate scope boundries in dwarf debug info.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000279 DebugLoc PrevInstLoc;
Devang Patelf2548ca2010-04-16 23:33:45 +0000280 MCSymbol *PrevLabel;
Devang Patel553881b2010-03-29 17:20:31 +0000281
Devang Patel4243e672011-05-11 19:22:19 +0000282 /// PrologEndLoc - This location indicates end of function prologue and
283 /// beginning of function body.
284 DebugLoc PrologEndLoc;
285
Bill Wendling0310d762009-05-15 09:23:25 +0000286 struct FunctionDebugFrameInfo {
287 unsigned Number;
288 std::vector<MachineMove> Moves;
289
290 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
291 : Number(Num), Moves(M) {}
292 };
293
294 std::vector<FunctionDebugFrameInfo> DebugFrames;
295
Devang Patel3cbee302011-04-12 22:53:02 +0000296 // DIEValueAllocator - All DIEValues are allocated through this allocator.
297 BumpPtrAllocator DIEValueAllocator;
298
Chris Lattner9c69e285532010-04-04 22:59:04 +0000299 // Section Symbols: these are assembler temporary labels that are emitted at
300 // the beginning of each supported dwarf section. These are used to form
301 // section offsets and are created by EmitSectionLabels.
Rafael Espindolaf2b04232011-05-06 14:56:22 +0000302 MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
Devang Patelf2548ca2010-04-16 23:33:45 +0000303 MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
Devang Patelc3f5f782010-05-25 23:40:22 +0000304 MCSymbol *DwarfDebugLocSectionSym;
305 MCSymbol *FunctionBeginSym, *FunctionEndSym;
Devang Patelca76f6f2010-07-08 20:10:35 +0000306
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000307 // As an optimization, there is no need to emit an entry in the directory
308 // table for the same directory as DW_at_comp_dir.
309 StringRef CompilationDir;
310
Devang Patele62dfcf2011-03-31 16:53:49 +0000311private:
Bill Wendling0310d762009-05-15 09:23:25 +0000312
Devang Patel2c4ceb12009-11-21 02:48:08 +0000313 /// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000314 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000315 void assignAbbrevNumber(DIEAbbrev &Abbrev);
Bill Wendling0310d762009-05-15 09:23:25 +0000316
Devang Patelbf47fdb2011-08-10 20:55:27 +0000317 void addScopeVariable(LexicalScope *LS, DbgVariable *Var);
Devang Patel53bb5c92009-11-10 23:06:00 +0000318
319 /// findAbstractVariable - Find abstract variable associated with Var.
Devang Patel26c1e562010-05-20 16:36:41 +0000320 DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
Devang Patel53bb5c92009-11-10 23:06:00 +0000321
Devang Patel2c4ceb12009-11-21 02:48:08 +0000322 /// updateSubprogramScopeDIE - Find DIE for the given subprogram and
323 /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
324 /// If there are global variables in this scope then create and insert
325 /// DIEs for these variables.
Devang Pateld3024342011-08-15 22:24:32 +0000326 DIE *updateSubprogramScopeDIE(CompileUnit *SPCU, const MDNode *SPNode);
Bill Wendling0310d762009-05-15 09:23:25 +0000327
Devang Patel2c4ceb12009-11-21 02:48:08 +0000328 /// constructLexicalScope - Construct new DW_TAG_lexical_block
329 /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Pateld3024342011-08-15 22:24:32 +0000330 DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Bill Wendling0310d762009-05-15 09:23:25 +0000331
Devang Patel2c4ceb12009-11-21 02:48:08 +0000332 /// constructInlinedScopeDIE - This scope represents inlined body of
333 /// a function. Construct DIE to represent this concrete inlined copy
334 /// of the function.
Devang Pateld3024342011-08-15 22:24:32 +0000335 DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000336
337 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
Devang Patelbf47fdb2011-08-10 20:55:27 +0000338 DIE *constructVariableDIE(DbgVariable *DV, LexicalScope *S);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000339
340 /// constructScopeDIE - Construct a DIE for this scope.
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000341 DIE *constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000342
Chris Lattnerfa070b02010-04-04 22:33:59 +0000343 /// EmitSectionLabels - Emit initial Dwarf sections with a label at
344 /// the start of each one.
345 void EmitSectionLabels();
Bill Wendling0310d762009-05-15 09:23:25 +0000346
Nick Lewycky024170f2011-10-18 22:39:43 +0000347 /// emitDIE - Recursively Emits a debug information entry.
Bill Wendling0310d762009-05-15 09:23:25 +0000348 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000349 void emitDIE(DIE *Die);
Bill Wendling0310d762009-05-15 09:23:25 +0000350
Devang Patel2c4ceb12009-11-21 02:48:08 +0000351 /// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling0310d762009-05-15 09:23:25 +0000352 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000353 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last);
Bill Wendling0310d762009-05-15 09:23:25 +0000354
Devang Patel2c4ceb12009-11-21 02:48:08 +0000355 /// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling0310d762009-05-15 09:23:25 +0000356 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000357 void computeSizeAndOffsets();
Bill Wendling0310d762009-05-15 09:23:25 +0000358
Devang Patel8a241142009-12-09 18:24:21 +0000359 /// EmitDebugInfo - Emit the debug info section.
Bill Wendling0310d762009-05-15 09:23:25 +0000360 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000361 void emitDebugInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000362
Devang Patel2c4ceb12009-11-21 02:48:08 +0000363 /// emitAbbreviations - Emit the abbreviation section.
Bill Wendling0310d762009-05-15 09:23:25 +0000364 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000365 void emitAbbreviations() const;
Bill Wendling0310d762009-05-15 09:23:25 +0000366
Devang Patel2c4ceb12009-11-21 02:48:08 +0000367 /// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling0310d762009-05-15 09:23:25 +0000368 /// the line matrix.
369 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000370 void emitEndOfLineMatrix(unsigned SectionEnd);
Bill Wendling0310d762009-05-15 09:23:25 +0000371
Eric Christopher09ac3d82011-11-07 09:24:32 +0000372 /// emitAccelNames - Emit visible names into a hashed accelerator table
373 /// section.
374 void emitAccelNames();
375
376 /// emitAccelObjC - Emit objective C classes and categories into a hashed
377 /// accelerator table section.
378 void emitAccelObjC();
379
380 /// emitAccelNamespace - Emit namespace dies into a hashed accelerator
381 /// table.
382 void emitAccelNamespaces();
383
384 /// emitAccelTypes() - Emit type dies into a hashed accelerator table.
Eric Christopherdfa30e12011-11-09 05:24:07 +0000385 ///
Eric Christopher09ac3d82011-11-07 09:24:32 +0000386 void emitAccelTypes();
387
Devang Patel193f7202009-11-24 01:14:22 +0000388 /// emitDebugPubTypes - Emit visible types into a debug pubtypes section.
389 ///
390 void emitDebugPubTypes();
391
Devang Patel2c4ceb12009-11-21 02:48:08 +0000392 /// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling0310d762009-05-15 09:23:25 +0000393 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000394 void emitDebugStr();
Bill Wendling0310d762009-05-15 09:23:25 +0000395
Devang Patel2c4ceb12009-11-21 02:48:08 +0000396 /// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling0310d762009-05-15 09:23:25 +0000397 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000398 void emitDebugLoc();
Bill Wendling0310d762009-05-15 09:23:25 +0000399
400 /// EmitDebugARanges - Emit visible names into a debug aranges section.
401 ///
402 void EmitDebugARanges();
403
Devang Patel2c4ceb12009-11-21 02:48:08 +0000404 /// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling0310d762009-05-15 09:23:25 +0000405 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000406 void emitDebugRanges();
Bill Wendling0310d762009-05-15 09:23:25 +0000407
Devang Patel2c4ceb12009-11-21 02:48:08 +0000408 /// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling0310d762009-05-15 09:23:25 +0000409 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000410 void emitDebugMacInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000411
Devang Patel2c4ceb12009-11-21 02:48:08 +0000412 /// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling0310d762009-05-15 09:23:25 +0000413 /// Section Header:
414 /// 1. length of section
415 /// 2. Dwarf version number
416 /// 3. address size.
417 ///
418 /// Entries (one "entry" for each function that was inlined):
419 ///
420 /// 1. offset into __debug_str section for MIPS linkage name, if exists;
421 /// otherwise offset into __debug_str for regular function name.
422 /// 2. offset into __debug_str section for regular function name.
423 /// 3. an unsigned LEB128 number indicating the number of distinct inlining
424 /// instances for the function.
425 ///
Nick Lewycky024170f2011-10-18 22:39:43 +0000426 /// The rest of the entry consists of a {die_offset, low_pc} pair for each
Bill Wendling0310d762009-05-15 09:23:25 +0000427 /// inlined instance; the die_offset points to the inlined_subroutine die in
Nick Lewycky024170f2011-10-18 22:39:43 +0000428 /// the __debug_info section, and the low_pc is the starting address for the
429 /// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000430 void emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000431
Devang Patel163a9f72010-05-10 22:49:55 +0000432 /// constructCompileUnit - Create new CompileUnit for the given
433 /// metadata node with tag DW_TAG_compile_unit.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000434 CompileUnit *constructCompileUnit(const MDNode *N);
Devang Patel163a9f72010-05-10 22:49:55 +0000435
Devang Patel163a9f72010-05-10 22:49:55 +0000436 /// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel3655a212011-08-15 23:36:40 +0000437 void constructSubprogramDIE(CompileUnit *TheCU, const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000438
Chris Lattner2b1b3312010-04-05 05:32:45 +0000439 /// recordSourceLine - Register a source line with debug info. Returns the
440 /// unique label that was emitted and which provides correspondence to
441 /// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +0000442 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
443 unsigned Flags);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000444
Nick Lewycky024170f2011-10-18 22:39:43 +0000445 /// identifyScopeMarkers() - Indentify instructions that are marking the
446 /// beginning of or ending of a scope.
Devang Patele37b0c62010-04-08 18:43:56 +0000447 void identifyScopeMarkers();
Devang Patel6122a4d2010-04-08 15:37:09 +0000448
Devang Patel0478c152011-03-01 22:58:55 +0000449 /// addCurrentFnArgument - If Var is an current function argument that add
450 /// it in CurrentFnArguments list.
451 bool addCurrentFnArgument(const MachineFunction *MF,
Devang Patelbf47fdb2011-08-10 20:55:27 +0000452 DbgVariable *Var, LexicalScope *Scope);
Devang Patel0478c152011-03-01 22:58:55 +0000453
Devang Patelbf47fdb2011-08-10 20:55:27 +0000454 /// collectVariableInfo - Populate LexicalScope entries with variables' info.
Devang Patel78e127d2010-06-25 22:07:34 +0000455 void collectVariableInfo(const MachineFunction *,
456 SmallPtrSet<const MDNode *, 16> &ProcessedVars);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000457
Devang Patelee432862010-05-20 19:57:06 +0000458 /// collectVariableInfoFromMMITable - Collect variable information from
459 /// side table maintained by MMI.
460 void collectVariableInfoFromMMITable(const MachineFunction * MF,
461 SmallPtrSet<const MDNode *, 16> &P);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000462
463 /// requestLabelBeforeInsn - Ensure that a label will be emitted before MI.
464 void requestLabelBeforeInsn(const MachineInstr *MI) {
465 LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol*)0));
466 }
467
468 /// getLabelBeforeInsn - Return Label preceding the instruction.
469 const MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
470
471 /// requestLabelAfterInsn - Ensure that a label will be emitted after MI.
472 void requestLabelAfterInsn(const MachineInstr *MI) {
473 LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol*)0));
474 }
475
476 /// getLabelAfterInsn - Return Label immediately following the instruction.
477 const MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
478
Bill Wendling0310d762009-05-15 09:23:25 +0000479public:
480 //===--------------------------------------------------------------------===//
481 // Main entry points.
482 //
Chris Lattner49cd6642010-04-05 05:11:15 +0000483 DwarfDebug(AsmPrinter *A, Module *M);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000484 ~DwarfDebug();
Bill Wendling0310d762009-05-15 09:23:25 +0000485
Devang Patel02e603f2011-08-15 23:47:24 +0000486 /// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
487 /// as llvm.dbg.enum and llvm.dbg.ty
488 void collectInfoFromNamedMDNodes(Module *M);
489
490 /// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
Nick Lewycky024170f2011-10-18 22:39:43 +0000491 /// FIXME - Remove this when DragonEgg switches to DIBuilder.
Devang Patel02e603f2011-08-15 23:47:24 +0000492 bool collectLegacyDebugInfo(Module *M);
493
Devang Patel2c4ceb12009-11-21 02:48:08 +0000494 /// beginModule - Emit all Dwarf sections that should come prior to the
Bill Wendling0310d762009-05-15 09:23:25 +0000495 /// content.
Chris Lattner75f50722010-04-04 07:48:20 +0000496 void beginModule(Module *M);
Bill Wendling0310d762009-05-15 09:23:25 +0000497
Devang Patel2c4ceb12009-11-21 02:48:08 +0000498 /// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling0310d762009-05-15 09:23:25 +0000499 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000500 void endModule();
Bill Wendling0310d762009-05-15 09:23:25 +0000501
Devang Patel2c4ceb12009-11-21 02:48:08 +0000502 /// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling0310d762009-05-15 09:23:25 +0000503 /// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +0000504 void beginFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000505
Devang Patel2c4ceb12009-11-21 02:48:08 +0000506 /// endFunction - Gather and emit post-function debug information.
Bill Wendling0310d762009-05-15 09:23:25 +0000507 ///
Chris Lattnereec791a2010-01-26 23:18:02 +0000508 void endFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000509
Devang Patelcbbe2872010-10-26 17:49:02 +0000510 /// beginInstruction - Process beginning of an instruction.
511 void beginInstruction(const MachineInstr *MI);
Bill Wendling0310d762009-05-15 09:23:25 +0000512
Devang Patelcbbe2872010-10-26 17:49:02 +0000513 /// endInstruction - Prcess end of an instruction.
514 void endInstruction(const MachineInstr *MI);
Devang Patel3cbee302011-04-12 22:53:02 +0000515
516 /// GetOrCreateSourceID - Look up the source id with the given directory and
517 /// source file names. If none currently exists, create a new id and insert it
518 /// in the SourceIds map.
519 unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName);
520
521 /// createSubprogramDIE - Create new DIE using SP.
522 DIE *createSubprogramDIE(DISubprogram SP);
Nick Lewycky390c40d2011-10-27 06:44:11 +0000523
524 /// getStringPool - returns the entry into the start of the pool.
525 MCSymbol *getStringPool();
526
527 /// getStringPoolEntry - returns an entry into the string pool with the given
528 /// string text.
529 MCSymbol *getStringPoolEntry(StringRef Str);
Devang Patel53bb5c92009-11-10 23:06:00 +0000530};
Bill Wendling0310d762009-05-15 09:23:25 +0000531} // End of namespace llvm
532
533#endif