blob: 82b319f16feb181b73ea66173dfc0ed12ff48cdf [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 Patelc3f5f782010-05-25 23:40:22 +000018#include "llvm/CodeGen/MachineLocation.h"
Devang Patel3cbee302011-04-12 22:53:02 +000019#include "llvm/Analysis/DebugInfo.h"
Chris Lattnerd2c4f192010-04-05 06:12:01 +000020#include "DIE.h"
Devang Patel622b0262010-01-19 06:19:05 +000021#include "llvm/ADT/DenseMap.h"
Bill Wendling0310d762009-05-15 09:23:25 +000022#include "llvm/ADT/FoldingSet.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000023#include "llvm/ADT/SmallPtrSet.h"
Bill Wendling0310d762009-05-15 09:23:25 +000024#include "llvm/ADT/StringMap.h"
25#include "llvm/ADT/UniqueVector.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000026#include "llvm/Support/Allocator.h"
Benjamin Kramer12ea7652010-09-13 20:04:49 +000027#include "llvm/Support/DebugLoc.h"
Bill Wendling0310d762009-05-15 09:23:25 +000028
29namespace llvm {
30
31class CompileUnit;
Bill Wendling0310d762009-05-15 09:23:25 +000032class DbgConcreteScope;
Nick Lewycky381afae2009-11-17 09:17:08 +000033class DbgScope;
34class 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.
128public:
129 // AbsVar may be NULL.
130 DbgVariable(DIVariable V) : Var(V), TheDIE(0), DotDebugLocOffset(~0U) {}
131
132 // Accessors.
133 DIVariable getVariable() const { return Var; }
134 void setDIE(DIE *D) { TheDIE = D; }
135 DIE *getDIE() const { return TheDIE; }
136 void setDotDebugLocOffset(unsigned O) { DotDebugLocOffset = O; }
137 unsigned getDotDebugLocOffset() const { return DotDebugLocOffset; }
138 StringRef getName() const { return Var.getName(); }
139 unsigned getTag() const { return Var.getTag(); }
140 bool variableHasComplexAddress() const {
141 assert(Var.Verify() && "Invalid complex DbgVariable!");
142 return Var.hasComplexAddress();
143 }
144 bool isBlockByrefVariable() const {
145 assert(Var.Verify() && "Invalid complex DbgVariable!");
146 return Var.isBlockByrefVariable();
147 }
148 unsigned getNumAddrElements() const {
149 assert(Var.Verify() && "Invalid complex DbgVariable!");
150 return Var.getNumAddrElements();
151 }
152 uint64_t getAddrElement(unsigned i) const {
153 return Var.getAddrElement(i);
154 }
155 DIType getType() const;
156};
157
Chris Lattnerd38fee82010-04-05 00:13:49 +0000158class DwarfDebug {
159 /// Asm - Target of Dwarf emission.
160 AsmPrinter *Asm;
Chris Lattner105d6972010-04-05 05:31:04 +0000161
Chris Lattnerd38fee82010-04-05 00:13:49 +0000162 /// MMI - Collected machine module information.
163 MachineModuleInfo *MMI;
164
Bill Wendling0310d762009-05-15 09:23:25 +0000165 //===--------------------------------------------------------------------===//
166 // Attributes used to construct specific Dwarf sections.
167 //
168
Devang Patel163a9f72010-05-10 22:49:55 +0000169 CompileUnit *FirstCU;
170 DenseMap <const MDNode *, CompileUnit *> CUMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000171
172 /// AbbreviationsSet - Used to uniquely define abbreviations.
173 ///
174 FoldingSet<DIEAbbrev> AbbreviationsSet;
175
176 /// Abbreviations - A list of all the unique abbreviations in use.
177 ///
178 std::vector<DIEAbbrev *> Abbreviations;
179
Bill Wendling0310d762009-05-15 09:23:25 +0000180 /// SourceIdMap - Source id map, i.e. pair of directory id and source file
181 /// id mapped to a unique id.
Rafael Espindola5c055632010-11-18 02:04:25 +0000182 StringMap<unsigned> SourceIdMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000183
Chris Lattnerbc733f52010-03-13 02:17:42 +0000184 /// StringPool - A String->Symbol mapping of strings used by indirect
185 /// references.
186 StringMap<std::pair<MCSymbol*, unsigned> > StringPool;
187 unsigned NextStringPoolNumber;
188
189 MCSymbol *getStringPoolEntry(StringRef Str);
Bill Wendling0310d762009-05-15 09:23:25 +0000190
191 /// SectionMap - Provides a unique id per text section.
192 ///
Chris Lattnera87dea42009-07-31 18:48:30 +0000193 UniqueVector<const MCSection*> SectionMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000194
Devang Patel0478c152011-03-01 22:58:55 +0000195 /// CurrentFnDbgScope - Top level scope for the current function.
196 ///
Devang Patel53bb5c92009-11-10 23:06:00 +0000197 DbgScope *CurrentFnDbgScope;
Bill Wendling0310d762009-05-15 09:23:25 +0000198
Devang Patel0478c152011-03-01 22:58:55 +0000199 /// CurrentFnArguments - List of Arguments (DbgValues) for current function.
200 SmallVector<DbgVariable *, 8> CurrentFnArguments;
201
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000202 /// DbgScopeMap - Tracks the scopes in the current function. Owns the
203 /// contained DbgScope*s.
Devang Patel53bb5c92009-11-10 23:06:00 +0000204 ///
Devang Patele9f8f5e2010-05-07 20:54:48 +0000205 DenseMap<const MDNode *, DbgScope *> DbgScopeMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000206
Devang Patel53bb5c92009-11-10 23:06:00 +0000207 /// AbstractScopes - Tracks the abstract scopes a module. These scopes are
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000208 /// not included DbgScopeMap. AbstractScopes owns its DbgScope*s.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000209 DenseMap<const MDNode *, DbgScope *> AbstractScopes;
Devang Patel2ddefec2010-03-25 15:09:44 +0000210
Devang Patel8aa61472010-07-07 22:20:57 +0000211 /// AbstractSPDies - Collection of abstract subprogram DIEs.
212 DenseMap<const MDNode *, DIE *> AbstractSPDies;
213
Devang Patel2ddefec2010-03-25 15:09:44 +0000214 /// AbstractScopesList - Tracks abstract scopes constructed while processing
215 /// a function. This list is cleared during endFunction().
Devang Patel53bb5c92009-11-10 23:06:00 +0000216 SmallVector<DbgScope *, 4>AbstractScopesList;
217
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000218 /// AbstractVariables - Collection on abstract variables. Owned by the
219 /// DbgScopes in AbstractScopes.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000220 DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000221
Devang Patel26c1e562010-05-20 16:36:41 +0000222 /// DbgVariableToFrameIndexMap - Tracks frame index used to find
223 /// variable's value.
224 DenseMap<const DbgVariable *, int> DbgVariableToFrameIndexMap;
225
226 /// DbgVariableToDbgInstMap - Maps DbgVariable to corresponding DBG_VALUE
227 /// machine instruction.
228 DenseMap<const DbgVariable *, const MachineInstr *> DbgVariableToDbgInstMap;
229
Devang Patelc3f5f782010-05-25 23:40:22 +0000230 /// DotDebugLocEntries - Collection of DotDebugLocEntry.
231 SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
232
233 /// UseDotDebugLocEntry - DW_AT_location attributes for the DIEs in this set
234 /// idetifies corresponding .debug_loc entry offset.
235 SmallPtrSet<const DIE *, 4> UseDotDebugLocEntry;
236
Devang Patel26c1e562010-05-20 16:36:41 +0000237 /// VarToAbstractVarMap - Maps DbgVariable with corresponding Abstract
238 /// DbgVariable, if any.
239 DenseMap<const DbgVariable *, const DbgVariable *> VarToAbstractVarMap;
240
Devang Patel53bb5c92009-11-10 23:06:00 +0000241 /// InliendSubprogramDIEs - Collection of subprgram DIEs that are marked
242 /// (at the end of the module) as DW_AT_inline.
243 SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
244
Devang Patelf8a2e012010-04-15 00:02:49 +0000245 /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that
246 /// need DW_AT_containing_type attribute. This attribute points to a DIE that
247 /// corresponds to the MDNode mapped with the subprogram DIE.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000248 DenseMap<DIE *, const MDNode *> ContainingTypeMap;
Devang Patel5d11eb02009-12-03 19:11:07 +0000249
Bill Wendling0310d762009-05-15 09:23:25 +0000250 /// InlineInfo - Keep track of inlined functions and their location. This
251 /// information is used to populate debug_inlined section.
Devang Patelc3f5f782010-05-25 23:40:22 +0000252 typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels;
Devang Patele9f8f5e2010-05-07 20:54:48 +0000253 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo;
254 SmallVector<const MDNode *, 4> InlinedSPNodes;
Bill Wendling0310d762009-05-15 09:23:25 +0000255
Devang Patel4a1cad62010-06-28 18:25:03 +0000256 // ProcessedSPNodes - This is a collection of subprogram MDNodes that
257 // are processed to create DIEs.
258 SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
259
Devang Pateleac9c072010-04-27 19:46:33 +0000260 /// LabelsBeforeInsn - Maps instruction with label emitted before
Devang Patel1c246352010-04-08 16:50:29 +0000261 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000262 DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000263
Devang Pateleac9c072010-04-27 19:46:33 +0000264 /// LabelsAfterInsn - Maps instruction with label emitted after
Devang Patel1c246352010-04-08 16:50:29 +0000265 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000266 DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000267
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000268 /// UserVariables - Every user variable mentioned by a DBG_VALUE instruction
269 /// in order of appearance.
270 SmallVector<const MDNode*, 8> UserVariables;
Devang Patelb2b31a62010-05-26 19:37:24 +0000271
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000272 /// DbgValues - For each user variable, keep a list of DBG_VALUE
273 /// instructions in order. The list can also contain normal instructions that
274 /// clobber the previous DBG_VALUE.
275 typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> >
276 DbgValueHistoryMap;
277 DbgValueHistoryMap DbgValues;
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000278
Devang Patelf2548ca2010-04-16 23:33:45 +0000279 SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
Devang Patelc04d5452010-04-22 20:56:35 +0000280
Devang Patel553881b2010-03-29 17:20:31 +0000281 /// Previous instruction's location information. This is used to determine
282 /// label location to indicate scope boundries in dwarf debug info.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000283 DebugLoc PrevInstLoc;
Devang Patelf2548ca2010-04-16 23:33:45 +0000284 MCSymbol *PrevLabel;
Devang Patel553881b2010-03-29 17:20:31 +0000285
Devang Patel4243e672011-05-11 19:22:19 +0000286 /// PrologEndLoc - This location indicates end of function prologue and
287 /// beginning of function body.
288 DebugLoc PrologEndLoc;
289
Bill Wendling0310d762009-05-15 09:23:25 +0000290 struct FunctionDebugFrameInfo {
291 unsigned Number;
292 std::vector<MachineMove> Moves;
293
294 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
295 : Number(Num), Moves(M) {}
296 };
297
298 std::vector<FunctionDebugFrameInfo> DebugFrames;
299
Devang Patel3cbee302011-04-12 22:53:02 +0000300 // DIEValueAllocator - All DIEValues are allocated through this allocator.
301 BumpPtrAllocator DIEValueAllocator;
302
Chris Lattner9c69e285532010-04-04 22:59:04 +0000303 // Section Symbols: these are assembler temporary labels that are emitted at
304 // the beginning of each supported dwarf section. These are used to form
305 // section offsets and are created by EmitSectionLabels.
Rafael Espindolaf2b04232011-05-06 14:56:22 +0000306 MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
Devang Patelf2548ca2010-04-16 23:33:45 +0000307 MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
Devang Patelc3f5f782010-05-25 23:40:22 +0000308 MCSymbol *DwarfDebugLocSectionSym;
309 MCSymbol *FunctionBeginSym, *FunctionEndSym;
Devang Patelca76f6f2010-07-08 20:10:35 +0000310
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 Pateleac9c072010-04-27 19:46:33 +0000317 /// getOrCreateDbgScope - Create DbgScope for the scope.
Devang Patel4f455d62011-07-14 22:30:56 +0000318 DbgScope *getOrCreateDbgScope(DebugLoc DL);
Devang Patel70d75ca2009-11-12 19:02:56 +0000319
Devang Patele9f8f5e2010-05-07 20:54:48 +0000320 DbgScope *getOrCreateAbstractScope(const MDNode *N);
Devang Patel53bb5c92009-11-10 23:06:00 +0000321
322 /// findAbstractVariable - Find abstract variable associated with Var.
Devang Patel26c1e562010-05-20 16:36:41 +0000323 DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
Devang Patel53bb5c92009-11-10 23:06:00 +0000324
Devang Patel2c4ceb12009-11-21 02:48:08 +0000325 /// updateSubprogramScopeDIE - Find DIE for the given subprogram and
326 /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
327 /// If there are global variables in this scope then create and insert
328 /// DIEs for these variables.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000329 DIE *updateSubprogramScopeDIE(const MDNode *SPNode);
Bill Wendling0310d762009-05-15 09:23:25 +0000330
Devang Patel2c4ceb12009-11-21 02:48:08 +0000331 /// constructLexicalScope - Construct new DW_TAG_lexical_block
332 /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
333 DIE *constructLexicalScopeDIE(DbgScope *Scope);
Bill Wendling0310d762009-05-15 09:23:25 +0000334
Devang Patel2c4ceb12009-11-21 02:48:08 +0000335 /// constructInlinedScopeDIE - This scope represents inlined body of
336 /// a function. Construct DIE to represent this concrete inlined copy
337 /// of the function.
338 DIE *constructInlinedScopeDIE(DbgScope *Scope);
339
340 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
Devang Patel8a241142009-12-09 18:24:21 +0000341 DIE *constructVariableDIE(DbgVariable *DV, DbgScope *S);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000342
343 /// constructScopeDIE - Construct a DIE for this scope.
344 DIE *constructScopeDIE(DbgScope *Scope);
345
Chris Lattnerfa070b02010-04-04 22:33:59 +0000346 /// EmitSectionLabels - Emit initial Dwarf sections with a label at
347 /// the start of each one.
348 void EmitSectionLabels();
Bill Wendling0310d762009-05-15 09:23:25 +0000349
Devang Patel2c4ceb12009-11-21 02:48:08 +0000350 /// emitDIE - Recusively Emits a debug information entry.
Bill Wendling0310d762009-05-15 09:23:25 +0000351 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000352 void emitDIE(DIE *Die);
Bill Wendling0310d762009-05-15 09:23:25 +0000353
Devang Patel2c4ceb12009-11-21 02:48:08 +0000354 /// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling0310d762009-05-15 09:23:25 +0000355 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000356 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last);
Bill Wendling0310d762009-05-15 09:23:25 +0000357
Devang Patel2c4ceb12009-11-21 02:48:08 +0000358 /// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling0310d762009-05-15 09:23:25 +0000359 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000360 void computeSizeAndOffsets();
Bill Wendling0310d762009-05-15 09:23:25 +0000361
Devang Patel8a241142009-12-09 18:24:21 +0000362 /// EmitDebugInfo - Emit the debug info section.
Bill Wendling0310d762009-05-15 09:23:25 +0000363 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000364 void emitDebugInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000365
Devang Patel2c4ceb12009-11-21 02:48:08 +0000366 /// emitAbbreviations - Emit the abbreviation section.
Bill Wendling0310d762009-05-15 09:23:25 +0000367 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000368 void emitAbbreviations() const;
Bill Wendling0310d762009-05-15 09:23:25 +0000369
Devang Patel2c4ceb12009-11-21 02:48:08 +0000370 /// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling0310d762009-05-15 09:23:25 +0000371 /// the line matrix.
372 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000373 void emitEndOfLineMatrix(unsigned SectionEnd);
Bill Wendling0310d762009-05-15 09:23:25 +0000374
Devang Patel2c4ceb12009-11-21 02:48:08 +0000375 /// emitDebugPubNames - Emit visible names into a debug pubnames section.
Bill Wendling0310d762009-05-15 09:23:25 +0000376 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000377 void emitDebugPubNames();
Bill Wendling0310d762009-05-15 09:23:25 +0000378
Devang Patel193f7202009-11-24 01:14:22 +0000379 /// emitDebugPubTypes - Emit visible types into a debug pubtypes section.
380 ///
381 void emitDebugPubTypes();
382
Devang Patel2c4ceb12009-11-21 02:48:08 +0000383 /// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling0310d762009-05-15 09:23:25 +0000384 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000385 void emitDebugStr();
Bill Wendling0310d762009-05-15 09:23:25 +0000386
Devang Patel2c4ceb12009-11-21 02:48:08 +0000387 /// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling0310d762009-05-15 09:23:25 +0000388 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000389 void emitDebugLoc();
Bill Wendling0310d762009-05-15 09:23:25 +0000390
391 /// EmitDebugARanges - Emit visible names into a debug aranges section.
392 ///
393 void EmitDebugARanges();
394
Devang Patel2c4ceb12009-11-21 02:48:08 +0000395 /// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling0310d762009-05-15 09:23:25 +0000396 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000397 void emitDebugRanges();
Bill Wendling0310d762009-05-15 09:23:25 +0000398
Devang Patel2c4ceb12009-11-21 02:48:08 +0000399 /// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling0310d762009-05-15 09:23:25 +0000400 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000401 void emitDebugMacInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000402
Devang Patel2c4ceb12009-11-21 02:48:08 +0000403 /// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling0310d762009-05-15 09:23:25 +0000404 /// Section Header:
405 /// 1. length of section
406 /// 2. Dwarf version number
407 /// 3. address size.
408 ///
409 /// Entries (one "entry" for each function that was inlined):
410 ///
411 /// 1. offset into __debug_str section for MIPS linkage name, if exists;
412 /// otherwise offset into __debug_str for regular function name.
413 /// 2. offset into __debug_str section for regular function name.
414 /// 3. an unsigned LEB128 number indicating the number of distinct inlining
415 /// instances for the function.
416 ///
417 /// The rest of the entry consists of a {die_offset, low_pc} pair for each
418 /// inlined instance; the die_offset points to the inlined_subroutine die in
419 /// the __debug_info section, and the low_pc is the starting address for the
420 /// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000421 void emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000422
Devang Patel163a9f72010-05-10 22:49:55 +0000423 /// constructCompileUnit - Create new CompileUnit for the given
424 /// metadata node with tag DW_TAG_compile_unit.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000425 void constructCompileUnit(const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000426
Devang Patel163a9f72010-05-10 22:49:55 +0000427 /// getCompielUnit - Get CompileUnit DIE.
428 CompileUnit *getCompileUnit(const MDNode *N) const;
429
430 /// constructGlobalVariableDIE - Construct global variable DIE.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000431 void constructGlobalVariableDIE(const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000432
Devang Patel163a9f72010-05-10 22:49:55 +0000433 /// construct SubprogramDIE - Construct subprogram DIE.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000434 void constructSubprogramDIE(const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000435
Chris Lattner2b1b3312010-04-05 05:32:45 +0000436 /// recordSourceLine - Register a source line with debug info. Returns the
437 /// unique label that was emitted and which provides correspondence to
438 /// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +0000439 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
440 unsigned Flags);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000441
Devang Patel26c1e562010-05-20 16:36:41 +0000442 /// recordVariableFrameIndex - Record a variable's index.
443 void recordVariableFrameIndex(const DbgVariable *V, int Index);
444
445 /// findVariableFrameIndex - Return true if frame index for the variable
446 /// is found. Update FI to hold value of the index.
447 bool findVariableFrameIndex(const DbgVariable *V, int *FI);
448
Devang Patel9b4a1722011-07-14 23:17:49 +0000449 /// findDbgScope - Find DbgScope for the debug loc.
450 DbgScope *findDbgScope(DebugLoc DL);
Devang Patelee432862010-05-20 19:57:06 +0000451
Devang Patele37b0c62010-04-08 18:43:56 +0000452 /// identifyScopeMarkers() - Indentify instructions that are marking
453 /// beginning of or end of a scope.
454 void identifyScopeMarkers();
Devang Patel6122a4d2010-04-08 15:37:09 +0000455
Chris Lattner2b1b3312010-04-05 05:32:45 +0000456 /// extractScopeInformation - Scan machine instructions in this function
457 /// and collect DbgScopes. Return true, if atleast one scope was found.
458 bool extractScopeInformation();
459
Devang Patel0478c152011-03-01 22:58:55 +0000460 /// addCurrentFnArgument - If Var is an current function argument that add
461 /// it in CurrentFnArguments list.
462 bool addCurrentFnArgument(const MachineFunction *MF,
463 DbgVariable *Var, DbgScope *Scope);
464
Chris Lattner2b1b3312010-04-05 05:32:45 +0000465 /// collectVariableInfo - Populate DbgScope entries with variables' info.
Devang Patel78e127d2010-06-25 22:07:34 +0000466 void collectVariableInfo(const MachineFunction *,
467 SmallPtrSet<const MDNode *, 16> &ProcessedVars);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000468
Devang Patelee432862010-05-20 19:57:06 +0000469 /// collectVariableInfoFromMMITable - Collect variable information from
470 /// side table maintained by MMI.
471 void collectVariableInfoFromMMITable(const MachineFunction * MF,
472 SmallPtrSet<const MDNode *, 16> &P);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000473
474 /// requestLabelBeforeInsn - Ensure that a label will be emitted before MI.
475 void requestLabelBeforeInsn(const MachineInstr *MI) {
476 LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol*)0));
477 }
478
479 /// getLabelBeforeInsn - Return Label preceding the instruction.
480 const MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
481
482 /// requestLabelAfterInsn - Ensure that a label will be emitted after MI.
483 void requestLabelAfterInsn(const MachineInstr *MI) {
484 LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol*)0));
485 }
486
487 /// getLabelAfterInsn - Return Label immediately following the instruction.
488 const MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
489
Bill Wendling0310d762009-05-15 09:23:25 +0000490public:
491 //===--------------------------------------------------------------------===//
492 // Main entry points.
493 //
Chris Lattner49cd6642010-04-05 05:11:15 +0000494 DwarfDebug(AsmPrinter *A, Module *M);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000495 ~DwarfDebug();
Bill Wendling0310d762009-05-15 09:23:25 +0000496
Devang Patel2c4ceb12009-11-21 02:48:08 +0000497 /// beginModule - Emit all Dwarf sections that should come prior to the
Bill Wendling0310d762009-05-15 09:23:25 +0000498 /// content.
Chris Lattner75f50722010-04-04 07:48:20 +0000499 void beginModule(Module *M);
Bill Wendling0310d762009-05-15 09:23:25 +0000500
Devang Patel2c4ceb12009-11-21 02:48:08 +0000501 /// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling0310d762009-05-15 09:23:25 +0000502 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000503 void endModule();
Bill Wendling0310d762009-05-15 09:23:25 +0000504
Devang Patel2c4ceb12009-11-21 02:48:08 +0000505 /// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling0310d762009-05-15 09:23:25 +0000506 /// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +0000507 void beginFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000508
Devang Patel2c4ceb12009-11-21 02:48:08 +0000509 /// endFunction - Gather and emit post-function debug information.
Bill Wendling0310d762009-05-15 09:23:25 +0000510 ///
Chris Lattnereec791a2010-01-26 23:18:02 +0000511 void endFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000512
Devang Patelcbbe2872010-10-26 17:49:02 +0000513 /// beginInstruction - Process beginning of an instruction.
514 void beginInstruction(const MachineInstr *MI);
Bill Wendling0310d762009-05-15 09:23:25 +0000515
Devang Patelcbbe2872010-10-26 17:49:02 +0000516 /// endInstruction - Prcess end of an instruction.
517 void endInstruction(const MachineInstr *MI);
Devang Patel3cbee302011-04-12 22:53:02 +0000518
519 /// GetOrCreateSourceID - Look up the source id with the given directory and
520 /// source file names. If none currently exists, create a new id and insert it
521 /// in the SourceIds map.
522 unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName);
523
524 /// createSubprogramDIE - Create new DIE using SP.
525 DIE *createSubprogramDIE(DISubprogram SP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000526};
Bill Wendling0310d762009-05-15 09:23:25 +0000527} // End of namespace llvm
528
529#endif