blob: d1d651265507d0296718491dfb24e75a02cb5431 [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 Wendling0bcbd1d2012-06-28 00:05:13 +000017#include "DIE.h"
18#include "llvm/DebugInfo.h"
Bill Wendling0310d762009-05-15 09:23:25 +000019#include "llvm/CodeGen/AsmPrinter.h"
Devang Patelbf47fdb2011-08-10 20:55:27 +000020#include "llvm/CodeGen/LexicalScopes.h"
Evan Cheng2d286172011-07-18 22:29:13 +000021#include "llvm/MC/MachineLocation.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"
Bill Wendling0310d762009-05-15 09:23:25 +000029
30namespace llvm {
31
32class CompileUnit;
Chris Lattner5b676ce2012-01-26 20:44:57 +000033class ConstantInt;
34class ConstantFP;
Nick Lewycky381afae2009-11-17 09:17:08 +000035class DbgVariable;
Bill Wendling0310d762009-05-15 09:23:25 +000036class MachineFrameInfo;
37class MachineModuleInfo;
Devang Patela43098d2010-04-28 01:03:09 +000038class MachineOperand;
Chris Lattneraf76e592009-08-22 20:48:53 +000039class MCAsmInfo;
Chris Lattner74e41f92010-04-05 05:24:55 +000040class DIEAbbrev;
41class DIE;
42class DIEBlock;
43class DIEEntry;
Bill Wendling0310d762009-05-15 09:23:25 +000044
45//===----------------------------------------------------------------------===//
46/// SrcLineInfo - This class is used to record source line correspondence.
47///
Nick Lewycky381afae2009-11-17 09:17:08 +000048class SrcLineInfo {
Bill Wendling0310d762009-05-15 09:23:25 +000049 unsigned Line; // Source line number.
50 unsigned Column; // Source column.
51 unsigned SourceID; // Source ID number.
Chris Lattner25b68c62010-03-14 08:15:55 +000052 MCSymbol *Label; // Label in code ID number.
Bill Wendling0310d762009-05-15 09:23:25 +000053public:
Chris Lattner25b68c62010-03-14 08:15:55 +000054 SrcLineInfo(unsigned L, unsigned C, unsigned S, MCSymbol *label)
55 : Line(L), Column(C), SourceID(S), Label(label) {}
Bill Wendling0310d762009-05-15 09:23:25 +000056
57 // Accessors
58 unsigned getLine() const { return Line; }
59 unsigned getColumn() const { return Column; }
60 unsigned getSourceID() const { return SourceID; }
Chris Lattner25b68c62010-03-14 08:15:55 +000061 MCSymbol *getLabel() const { return Label; }
Bill Wendling0310d762009-05-15 09:23:25 +000062};
63
Devang Patel6c3ea902011-02-04 22:57:18 +000064/// DotDebugLocEntry - This struct describes location entries emitted in
65/// .debug_loc section.
66typedef struct DotDebugLocEntry {
67 const MCSymbol *Begin;
68 const MCSymbol *End;
69 MachineLocation Loc;
Devang Patelc26f5442011-04-28 02:22:40 +000070 const MDNode *Variable;
Devang Patel6c3ea902011-02-04 22:57:18 +000071 bool Merged;
Devang Patelc4329072011-06-01 22:03:25 +000072 bool Constant;
Devang Patel80efd4e2011-07-08 16:49:43 +000073 enum EntryType {
74 E_Location,
75 E_Integer,
76 E_ConstantFP,
77 E_ConstantInt
78 };
79 enum EntryType EntryKind;
80
81 union {
82 int64_t Int;
83 const ConstantFP *CFP;
84 const ConstantInt *CIP;
85 } Constants;
Devang Patelc4329072011-06-01 22:03:25 +000086 DotDebugLocEntry()
87 : Begin(0), End(0), Variable(0), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000088 Constant(false) { Constants.Int = 0;}
Devang Patelc26f5442011-04-28 02:22:40 +000089 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L,
90 const MDNode *V)
Devang Patelc4329072011-06-01 22:03:25 +000091 : Begin(B), End(E), Loc(L), Variable(V), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000092 Constant(false) { Constants.Int = 0; EntryKind = E_Location; }
Devang Patelc4329072011-06-01 22:03:25 +000093 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, int64_t i)
94 : Begin(B), End(E), Variable(0), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000095 Constant(true) { Constants.Int = i; EntryKind = E_Integer; }
96 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantFP *FPtr)
97 : Begin(B), End(E), Variable(0), Merged(false),
98 Constant(true) { Constants.CFP = FPtr; EntryKind = E_ConstantFP; }
99 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantInt *IPtr)
100 : Begin(B), End(E), Variable(0), Merged(false),
101 Constant(true) { Constants.CIP = IPtr; EntryKind = E_ConstantInt; }
Devang Patelc4329072011-06-01 22:03:25 +0000102
Devang Patel6c3ea902011-02-04 22:57:18 +0000103 /// Empty entries are also used as a trigger to emit temp label. Such
104 /// labels are referenced is used to find debug_loc offset for a given DIE.
105 bool isEmpty() { return Begin == 0 && End == 0; }
106 bool isMerged() { return Merged; }
107 void Merge(DotDebugLocEntry *Next) {
108 if (!(Begin && Loc == Next->Loc && End == Next->Begin))
109 return;
110 Next->Begin = Begin;
111 Merged = true;
112 }
Devang Patel80efd4e2011-07-08 16:49:43 +0000113 bool isLocation() const { return EntryKind == E_Location; }
114 bool isInt() const { return EntryKind == E_Integer; }
115 bool isConstantFP() const { return EntryKind == E_ConstantFP; }
116 bool isConstantInt() const { return EntryKind == E_ConstantInt; }
117 int64_t getInt() { return Constants.Int; }
118 const ConstantFP *getConstantFP() { return Constants.CFP; }
119 const ConstantInt *getConstantInt() { return Constants.CIP; }
Devang Patel6c3ea902011-02-04 22:57:18 +0000120} DotDebugLocEntry;
121
Devang Patel3cbee302011-04-12 22:53:02 +0000122//===----------------------------------------------------------------------===//
123/// DbgVariable - This class is used to track local variable information.
124///
125class DbgVariable {
126 DIVariable Var; // Variable Descriptor.
127 DIE *TheDIE; // Variable DIE.
128 unsigned DotDebugLocOffset; // Offset in DotDebugLocEntries.
Devang Patel5a1a67c2011-08-15 19:01:20 +0000129 DbgVariable *AbsVar; // Corresponding Abstract variable, if any.
Devang Patelff9dd0a2011-08-15 21:24:36 +0000130 const MachineInstr *MInsn; // DBG_VALUE instruction of the variable.
131 int FrameIndex;
Devang Patel3cbee302011-04-12 22:53:02 +0000132public:
133 // AbsVar may be NULL.
Devang Patel5a1a67c2011-08-15 19:01:20 +0000134 DbgVariable(DIVariable V, DbgVariable *AV)
Devang Patelff9dd0a2011-08-15 21:24:36 +0000135 : Var(V), TheDIE(0), DotDebugLocOffset(~0U), AbsVar(AV), MInsn(0),
Devang Patelc890b192011-08-15 21:35:16 +0000136 FrameIndex(~0) {}
Devang Patel3cbee302011-04-12 22:53:02 +0000137
138 // Accessors.
139 DIVariable getVariable() const { return Var; }
140 void setDIE(DIE *D) { TheDIE = D; }
141 DIE *getDIE() const { return TheDIE; }
142 void setDotDebugLocOffset(unsigned O) { DotDebugLocOffset = O; }
143 unsigned getDotDebugLocOffset() const { return DotDebugLocOffset; }
144 StringRef getName() const { return Var.getName(); }
Devang Patel5a1a67c2011-08-15 19:01:20 +0000145 DbgVariable *getAbstractVariable() const { return AbsVar; }
Devang Patelff9dd0a2011-08-15 21:24:36 +0000146 const MachineInstr *getMInsn() const { return MInsn; }
147 void setMInsn(const MachineInstr *M) { MInsn = M; }
148 int getFrameIndex() const { return FrameIndex; }
149 void setFrameIndex(int FI) { FrameIndex = FI; }
Devang Patel59bc4092011-08-15 18:35:42 +0000150 // Translate tag to proper Dwarf tag.
151 unsigned getTag() const {
152 if (Var.getTag() == dwarf::DW_TAG_arg_variable)
153 return dwarf::DW_TAG_formal_parameter;
154
155 return dwarf::DW_TAG_variable;
156 }
Devang Patela098c502011-08-15 18:40:16 +0000157 /// isArtificial - Return true if DbgVariable is artificial.
158 bool isArtificial() const {
159 if (Var.isArtificial())
160 return true;
161 if (Var.getTag() == dwarf::DW_TAG_arg_variable
162 && getType().isArtificial())
163 return true;
164 return false;
165 }
Devang Patel3cbee302011-04-12 22:53:02 +0000166 bool variableHasComplexAddress() const {
167 assert(Var.Verify() && "Invalid complex DbgVariable!");
168 return Var.hasComplexAddress();
169 }
170 bool isBlockByrefVariable() const {
171 assert(Var.Verify() && "Invalid complex DbgVariable!");
172 return Var.isBlockByrefVariable();
173 }
174 unsigned getNumAddrElements() const {
175 assert(Var.Verify() && "Invalid complex DbgVariable!");
176 return Var.getNumAddrElements();
177 }
178 uint64_t getAddrElement(unsigned i) const {
179 return Var.getAddrElement(i);
180 }
181 DIType getType() const;
182};
183
Chris Lattnerd38fee82010-04-05 00:13:49 +0000184class DwarfDebug {
185 /// Asm - Target of Dwarf emission.
186 AsmPrinter *Asm;
Chris Lattner105d6972010-04-05 05:31:04 +0000187
Chris Lattnerd38fee82010-04-05 00:13:49 +0000188 /// MMI - Collected machine module information.
189 MachineModuleInfo *MMI;
190
Benjamin Kramerf33a79c2012-06-09 10:34:15 +0000191 /// DIEValueAllocator - All DIEValues are allocated through this allocator.
192 BumpPtrAllocator DIEValueAllocator;
193
Bill Wendling0310d762009-05-15 09:23:25 +0000194 //===--------------------------------------------------------------------===//
195 // Attributes used to construct specific Dwarf sections.
196 //
197
Devang Patel163a9f72010-05-10 22:49:55 +0000198 CompileUnit *FirstCU;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000199
200 /// Maps MDNode with its corresponding CompileUnit.
Devang Patel163a9f72010-05-10 22:49:55 +0000201 DenseMap <const MDNode *, CompileUnit *> CUMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000202
Devang Patel94c7ddb2011-08-16 22:09:43 +0000203 /// Maps subprogram MDNode with its corresponding CompileUnit.
204 DenseMap <const MDNode *, CompileUnit *> SPMap;
205
Bill Wendling0310d762009-05-15 09:23:25 +0000206 /// AbbreviationsSet - Used to uniquely define abbreviations.
207 ///
208 FoldingSet<DIEAbbrev> AbbreviationsSet;
209
210 /// Abbreviations - A list of all the unique abbreviations in use.
211 ///
212 std::vector<DIEAbbrev *> Abbreviations;
213
Benjamin Kramer74612c22012-03-11 14:56:26 +0000214 /// SourceIdMap - Source id map, i.e. pair of source filename and directory,
215 /// separated by a zero byte, mapped to a unique id.
Benjamin Kramerf33a79c2012-06-09 10:34:15 +0000216 StringMap<unsigned, BumpPtrAllocator&> SourceIdMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000217
Chris Lattnerbc733f52010-03-13 02:17:42 +0000218 /// StringPool - A String->Symbol mapping of strings used by indirect
219 /// references.
Benjamin Kramerf33a79c2012-06-09 10:34:15 +0000220 StringMap<std::pair<MCSymbol*, unsigned>, BumpPtrAllocator&> StringPool;
Chris Lattnerbc733f52010-03-13 02:17:42 +0000221 unsigned NextStringPoolNumber;
222
Bill Wendling0310d762009-05-15 09:23:25 +0000223 /// SectionMap - Provides a unique id per text section.
224 ///
Chris Lattnera87dea42009-07-31 18:48:30 +0000225 UniqueVector<const MCSection*> SectionMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000226
Devang Patel0478c152011-03-01 22:58:55 +0000227 /// CurrentFnArguments - List of Arguments (DbgValues) for current function.
228 SmallVector<DbgVariable *, 8> CurrentFnArguments;
229
Devang Patelbf47fdb2011-08-10 20:55:27 +0000230 LexicalScopes LScopes;
Devang Patel2ddefec2010-03-25 15:09:44 +0000231
Devang Patel8aa61472010-07-07 22:20:57 +0000232 /// AbstractSPDies - Collection of abstract subprogram DIEs.
233 DenseMap<const MDNode *, DIE *> AbstractSPDies;
234
Devang Patelbf47fdb2011-08-10 20:55:27 +0000235 /// ScopeVariables - Collection of dbg variables of a scope.
236 DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> > ScopeVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000237
Alexey Samsonove2ec1402012-06-29 16:04:14 +0000238 /// AbstractVariables - Collection of abstract variables.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000239 DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000240
Devang Patelc3f5f782010-05-25 23:40:22 +0000241 /// DotDebugLocEntries - Collection of DotDebugLocEntry.
242 SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
243
Nick Lewycky20b2b782011-10-18 22:40:18 +0000244 /// InlinedSubprogramDIEs - Collection of subprogram DIEs that are marked
Devang Patel53bb5c92009-11-10 23:06:00 +0000245 /// (at the end of the module) as DW_AT_inline.
246 SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
247
Bill Wendling0310d762009-05-15 09:23:25 +0000248 /// InlineInfo - Keep track of inlined functions and their location. This
Eric Christopher61cafd12012-03-02 01:57:55 +0000249 /// information is used to populate the debug_inlined section.
Devang Patelc3f5f782010-05-25 23:40:22 +0000250 typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels;
Devang Patele9f8f5e2010-05-07 20:54:48 +0000251 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo;
252 SmallVector<const MDNode *, 4> InlinedSPNodes;
Bill Wendling0310d762009-05-15 09:23:25 +0000253
Devang Patel4a1cad62010-06-28 18:25:03 +0000254 // ProcessedSPNodes - This is a collection of subprogram MDNodes that
255 // are processed to create DIEs.
256 SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
257
Devang Pateleac9c072010-04-27 19:46:33 +0000258 /// LabelsBeforeInsn - Maps instruction with label emitted before
Devang Patel1c246352010-04-08 16:50:29 +0000259 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000260 DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000261
Devang Pateleac9c072010-04-27 19:46:33 +0000262 /// LabelsAfterInsn - Maps instruction with label emitted after
Devang Patel1c246352010-04-08 16:50:29 +0000263 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000264 DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000265
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000266 /// UserVariables - Every user variable mentioned by a DBG_VALUE instruction
267 /// in order of appearance.
268 SmallVector<const MDNode*, 8> UserVariables;
Devang Patelb2b31a62010-05-26 19:37:24 +0000269
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000270 /// DbgValues - For each user variable, keep a list of DBG_VALUE
271 /// instructions in order. The list can also contain normal instructions that
272 /// clobber the previous DBG_VALUE.
273 typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> >
274 DbgValueHistoryMap;
275 DbgValueHistoryMap DbgValues;
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000276
Devang Patelf2548ca2010-04-16 23:33:45 +0000277 SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
Devang Patelc04d5452010-04-22 20:56:35 +0000278
Devang Patel553881b2010-03-29 17:20:31 +0000279 /// Previous instruction's location information. This is used to determine
280 /// label location to indicate scope boundries in dwarf debug info.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000281 DebugLoc PrevInstLoc;
Devang Patelf2548ca2010-04-16 23:33:45 +0000282 MCSymbol *PrevLabel;
Devang Patel553881b2010-03-29 17:20:31 +0000283
Devang Patel4243e672011-05-11 19:22:19 +0000284 /// PrologEndLoc - This location indicates end of function prologue and
285 /// beginning of function body.
286 DebugLoc PrologEndLoc;
287
Bill Wendling0310d762009-05-15 09:23:25 +0000288 struct FunctionDebugFrameInfo {
289 unsigned Number;
290 std::vector<MachineMove> Moves;
291
292 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
293 : Number(Num), Moves(M) {}
294 };
295
296 std::vector<FunctionDebugFrameInfo> DebugFrames;
297
Chris Lattner9c69e285532010-04-04 22:59:04 +0000298 // Section Symbols: these are assembler temporary labels that are emitted at
299 // the beginning of each supported dwarf section. These are used to form
300 // section offsets and are created by EmitSectionLabels.
Rafael Espindolaf2b04232011-05-06 14:56:22 +0000301 MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
Devang Patelf2548ca2010-04-16 23:33:45 +0000302 MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
Devang Patelc3f5f782010-05-25 23:40:22 +0000303 MCSymbol *DwarfDebugLocSectionSym;
304 MCSymbol *FunctionBeginSym, *FunctionEndSym;
Devang Patelca76f6f2010-07-08 20:10:35 +0000305
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000306 // As an optimization, there is no need to emit an entry in the directory
307 // table for the same directory as DW_at_comp_dir.
308 StringRef CompilationDir;
309
Devang Patele62dfcf2011-03-31 16:53:49 +0000310private:
Bill Wendling0310d762009-05-15 09:23:25 +0000311
Devang Patel2c4ceb12009-11-21 02:48:08 +0000312 /// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000313 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000314 void assignAbbrevNumber(DIEAbbrev &Abbrev);
Bill Wendling0310d762009-05-15 09:23:25 +0000315
Devang Patelbf47fdb2011-08-10 20:55:27 +0000316 void addScopeVariable(LexicalScope *LS, DbgVariable *Var);
Devang Patel53bb5c92009-11-10 23:06:00 +0000317
318 /// findAbstractVariable - Find abstract variable associated with Var.
Devang Patel26c1e562010-05-20 16:36:41 +0000319 DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
Devang Patel53bb5c92009-11-10 23:06:00 +0000320
Devang Patel2c4ceb12009-11-21 02:48:08 +0000321 /// updateSubprogramScopeDIE - Find DIE for the given subprogram and
322 /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
323 /// If there are global variables in this scope then create and insert
324 /// DIEs for these variables.
Devang Pateld3024342011-08-15 22:24:32 +0000325 DIE *updateSubprogramScopeDIE(CompileUnit *SPCU, const MDNode *SPNode);
Bill Wendling0310d762009-05-15 09:23:25 +0000326
Devang Patel2c4ceb12009-11-21 02:48:08 +0000327 /// constructLexicalScope - Construct new DW_TAG_lexical_block
328 /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Pateld3024342011-08-15 22:24:32 +0000329 DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Bill Wendling0310d762009-05-15 09:23:25 +0000330
Devang Patel2c4ceb12009-11-21 02:48:08 +0000331 /// constructInlinedScopeDIE - This scope represents inlined body of
332 /// a function. Construct DIE to represent this concrete inlined copy
333 /// of the function.
Devang Pateld3024342011-08-15 22:24:32 +0000334 DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000335
Devang Patel2c4ceb12009-11-21 02:48:08 +0000336 /// constructScopeDIE - Construct a DIE for this scope.
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000337 DIE *constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000338
Chris Lattnerfa070b02010-04-04 22:33:59 +0000339 /// EmitSectionLabels - Emit initial Dwarf sections with a label at
340 /// the start of each one.
341 void EmitSectionLabels();
Bill Wendling0310d762009-05-15 09:23:25 +0000342
Nick Lewycky024170f2011-10-18 22:39:43 +0000343 /// emitDIE - Recursively Emits a debug information entry.
Bill Wendling0310d762009-05-15 09:23:25 +0000344 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000345 void emitDIE(DIE *Die);
Bill Wendling0310d762009-05-15 09:23:25 +0000346
Devang Patel2c4ceb12009-11-21 02:48:08 +0000347 /// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling0310d762009-05-15 09:23:25 +0000348 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000349 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last);
Bill Wendling0310d762009-05-15 09:23:25 +0000350
Devang Patel2c4ceb12009-11-21 02:48:08 +0000351 /// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling0310d762009-05-15 09:23:25 +0000352 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000353 void computeSizeAndOffsets();
Bill Wendling0310d762009-05-15 09:23:25 +0000354
Devang Patel8a241142009-12-09 18:24:21 +0000355 /// EmitDebugInfo - Emit the debug info section.
Bill Wendling0310d762009-05-15 09:23:25 +0000356 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000357 void emitDebugInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000358
Devang Patel2c4ceb12009-11-21 02:48:08 +0000359 /// emitAbbreviations - Emit the abbreviation section.
Bill Wendling0310d762009-05-15 09:23:25 +0000360 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000361 void emitAbbreviations() const;
Bill Wendling0310d762009-05-15 09:23:25 +0000362
Devang Patel2c4ceb12009-11-21 02:48:08 +0000363 /// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling0310d762009-05-15 09:23:25 +0000364 /// the line matrix.
365 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000366 void emitEndOfLineMatrix(unsigned SectionEnd);
Bill Wendling0310d762009-05-15 09:23:25 +0000367
Eric Christopher09ac3d82011-11-07 09:24:32 +0000368 /// emitAccelNames - Emit visible names into a hashed accelerator table
369 /// section.
370 void emitAccelNames();
371
372 /// emitAccelObjC - Emit objective C classes and categories into a hashed
373 /// accelerator table section.
374 void emitAccelObjC();
375
376 /// emitAccelNamespace - Emit namespace dies into a hashed accelerator
377 /// table.
378 void emitAccelNamespaces();
379
380 /// emitAccelTypes() - Emit type dies into a hashed accelerator table.
Eric Christopherdfa30e12011-11-09 05:24:07 +0000381 ///
Eric Christopher09ac3d82011-11-07 09:24:32 +0000382 void emitAccelTypes();
383
Devang Patel193f7202009-11-24 01:14:22 +0000384 /// emitDebugPubTypes - Emit visible types into a debug pubtypes section.
385 ///
386 void emitDebugPubTypes();
387
Devang Patel2c4ceb12009-11-21 02:48:08 +0000388 /// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling0310d762009-05-15 09:23:25 +0000389 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000390 void emitDebugStr();
Bill Wendling0310d762009-05-15 09:23:25 +0000391
Devang Patel2c4ceb12009-11-21 02:48:08 +0000392 /// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling0310d762009-05-15 09:23:25 +0000393 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000394 void emitDebugLoc();
Bill Wendling0310d762009-05-15 09:23:25 +0000395
396 /// EmitDebugARanges - Emit visible names into a debug aranges section.
397 ///
398 void EmitDebugARanges();
399
Devang Patel2c4ceb12009-11-21 02:48:08 +0000400 /// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling0310d762009-05-15 09:23:25 +0000401 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000402 void emitDebugRanges();
Bill Wendling0310d762009-05-15 09:23:25 +0000403
Devang Patel2c4ceb12009-11-21 02:48:08 +0000404 /// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling0310d762009-05-15 09:23:25 +0000405 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000406 void emitDebugMacInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000407
Devang Patel2c4ceb12009-11-21 02:48:08 +0000408 /// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling0310d762009-05-15 09:23:25 +0000409 /// Section Header:
410 /// 1. length of section
411 /// 2. Dwarf version number
412 /// 3. address size.
413 ///
414 /// Entries (one "entry" for each function that was inlined):
415 ///
416 /// 1. offset into __debug_str section for MIPS linkage name, if exists;
417 /// otherwise offset into __debug_str for regular function name.
418 /// 2. offset into __debug_str section for regular function name.
419 /// 3. an unsigned LEB128 number indicating the number of distinct inlining
420 /// instances for the function.
421 ///
Nick Lewycky024170f2011-10-18 22:39:43 +0000422 /// The rest of the entry consists of a {die_offset, low_pc} pair for each
Bill Wendling0310d762009-05-15 09:23:25 +0000423 /// inlined instance; the die_offset points to the inlined_subroutine die in
Nick Lewycky024170f2011-10-18 22:39:43 +0000424 /// the __debug_info section, and the low_pc is the starting address for the
425 /// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000426 void emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000427
Devang Patel163a9f72010-05-10 22:49:55 +0000428 /// constructCompileUnit - Create new CompileUnit for the given
429 /// metadata node with tag DW_TAG_compile_unit.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000430 CompileUnit *constructCompileUnit(const MDNode *N);
Devang Patel163a9f72010-05-10 22:49:55 +0000431
Devang Patel163a9f72010-05-10 22:49:55 +0000432 /// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel3655a212011-08-15 23:36:40 +0000433 void constructSubprogramDIE(CompileUnit *TheCU, const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000434
Chris Lattner2b1b3312010-04-05 05:32:45 +0000435 /// recordSourceLine - Register a source line with debug info. Returns the
436 /// unique label that was emitted and which provides correspondence to
437 /// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +0000438 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
439 unsigned Flags);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000440
Nick Lewycky024170f2011-10-18 22:39:43 +0000441 /// identifyScopeMarkers() - Indentify instructions that are marking the
442 /// beginning of or ending of a scope.
Devang Patele37b0c62010-04-08 18:43:56 +0000443 void identifyScopeMarkers();
Devang Patel6122a4d2010-04-08 15:37:09 +0000444
Devang Patel0478c152011-03-01 22:58:55 +0000445 /// addCurrentFnArgument - If Var is an current function argument that add
446 /// it in CurrentFnArguments list.
447 bool addCurrentFnArgument(const MachineFunction *MF,
Devang Patelbf47fdb2011-08-10 20:55:27 +0000448 DbgVariable *Var, LexicalScope *Scope);
Devang Patel0478c152011-03-01 22:58:55 +0000449
Devang Patelbf47fdb2011-08-10 20:55:27 +0000450 /// collectVariableInfo - Populate LexicalScope entries with variables' info.
Devang Patel78e127d2010-06-25 22:07:34 +0000451 void collectVariableInfo(const MachineFunction *,
452 SmallPtrSet<const MDNode *, 16> &ProcessedVars);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000453
Devang Patelee432862010-05-20 19:57:06 +0000454 /// collectVariableInfoFromMMITable - Collect variable information from
455 /// side table maintained by MMI.
456 void collectVariableInfoFromMMITable(const MachineFunction * MF,
457 SmallPtrSet<const MDNode *, 16> &P);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000458
459 /// requestLabelBeforeInsn - Ensure that a label will be emitted before MI.
460 void requestLabelBeforeInsn(const MachineInstr *MI) {
461 LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol*)0));
462 }
463
464 /// getLabelBeforeInsn - Return Label preceding the instruction.
465 const MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
466
467 /// requestLabelAfterInsn - Ensure that a label will be emitted after MI.
468 void requestLabelAfterInsn(const MachineInstr *MI) {
469 LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol*)0));
470 }
471
472 /// getLabelAfterInsn - Return Label immediately following the instruction.
473 const MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
474
Bill Wendling0310d762009-05-15 09:23:25 +0000475public:
476 //===--------------------------------------------------------------------===//
477 // Main entry points.
478 //
Chris Lattner49cd6642010-04-05 05:11:15 +0000479 DwarfDebug(AsmPrinter *A, Module *M);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000480 ~DwarfDebug();
Bill Wendling0310d762009-05-15 09:23:25 +0000481
Devang Patel02e603f2011-08-15 23:47:24 +0000482 /// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
483 /// as llvm.dbg.enum and llvm.dbg.ty
484 void collectInfoFromNamedMDNodes(Module *M);
485
486 /// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
Nick Lewycky024170f2011-10-18 22:39:43 +0000487 /// FIXME - Remove this when DragonEgg switches to DIBuilder.
Devang Patel02e603f2011-08-15 23:47:24 +0000488 bool collectLegacyDebugInfo(Module *M);
489
Devang Patel2c4ceb12009-11-21 02:48:08 +0000490 /// beginModule - Emit all Dwarf sections that should come prior to the
Bill Wendling0310d762009-05-15 09:23:25 +0000491 /// content.
Chris Lattner75f50722010-04-04 07:48:20 +0000492 void beginModule(Module *M);
Bill Wendling0310d762009-05-15 09:23:25 +0000493
Devang Patel2c4ceb12009-11-21 02:48:08 +0000494 /// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling0310d762009-05-15 09:23:25 +0000495 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000496 void endModule();
Bill Wendling0310d762009-05-15 09:23:25 +0000497
Devang Patel2c4ceb12009-11-21 02:48:08 +0000498 /// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling0310d762009-05-15 09:23:25 +0000499 /// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +0000500 void beginFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000501
Devang Patel2c4ceb12009-11-21 02:48:08 +0000502 /// endFunction - Gather and emit post-function debug information.
Bill Wendling0310d762009-05-15 09:23:25 +0000503 ///
Chris Lattnereec791a2010-01-26 23:18:02 +0000504 void endFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000505
Devang Patelcbbe2872010-10-26 17:49:02 +0000506 /// beginInstruction - Process beginning of an instruction.
507 void beginInstruction(const MachineInstr *MI);
Bill Wendling0310d762009-05-15 09:23:25 +0000508
Devang Patelcbbe2872010-10-26 17:49:02 +0000509 /// endInstruction - Prcess end of an instruction.
510 void endInstruction(const MachineInstr *MI);
Devang Patel3cbee302011-04-12 22:53:02 +0000511
512 /// GetOrCreateSourceID - Look up the source id with the given directory and
513 /// source file names. If none currently exists, create a new id and insert it
514 /// in the SourceIds map.
515 unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName);
516
Nick Lewycky390c40d2011-10-27 06:44:11 +0000517 /// getStringPool - returns the entry into the start of the pool.
518 MCSymbol *getStringPool();
519
520 /// getStringPoolEntry - returns an entry into the string pool with the given
521 /// string text.
522 MCSymbol *getStringPoolEntry(StringRef Str);
Devang Patel53bb5c92009-11-10 23:06:00 +0000523};
Bill Wendling0310d762009-05-15 09:23:25 +0000524} // End of namespace llvm
525
526#endif