blob: 892224b2321f3c89b413d145e21004b6853b767f [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;
69 bool Merged;
70 DotDebugLocEntry() : Begin(0), End(0), Merged(false) {}
71 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L)
72 : Begin(B), End(E), Loc(L), Merged(false) {}
73 /// Empty entries are also used as a trigger to emit temp label. Such
74 /// labels are referenced is used to find debug_loc offset for a given DIE.
75 bool isEmpty() { return Begin == 0 && End == 0; }
76 bool isMerged() { return Merged; }
77 void Merge(DotDebugLocEntry *Next) {
78 if (!(Begin && Loc == Next->Loc && End == Next->Begin))
79 return;
80 Next->Begin = Begin;
81 Merged = true;
82 }
83} DotDebugLocEntry;
84
Devang Patel3cbee302011-04-12 22:53:02 +000085//===----------------------------------------------------------------------===//
86/// DbgVariable - This class is used to track local variable information.
87///
88class DbgVariable {
89 DIVariable Var; // Variable Descriptor.
90 DIE *TheDIE; // Variable DIE.
91 unsigned DotDebugLocOffset; // Offset in DotDebugLocEntries.
92public:
93 // AbsVar may be NULL.
94 DbgVariable(DIVariable V) : Var(V), TheDIE(0), DotDebugLocOffset(~0U) {}
95
96 // Accessors.
97 DIVariable getVariable() const { return Var; }
98 void setDIE(DIE *D) { TheDIE = D; }
99 DIE *getDIE() const { return TheDIE; }
100 void setDotDebugLocOffset(unsigned O) { DotDebugLocOffset = O; }
101 unsigned getDotDebugLocOffset() const { return DotDebugLocOffset; }
102 StringRef getName() const { return Var.getName(); }
103 unsigned getTag() const { return Var.getTag(); }
104 bool variableHasComplexAddress() const {
105 assert(Var.Verify() && "Invalid complex DbgVariable!");
106 return Var.hasComplexAddress();
107 }
108 bool isBlockByrefVariable() const {
109 assert(Var.Verify() && "Invalid complex DbgVariable!");
110 return Var.isBlockByrefVariable();
111 }
112 unsigned getNumAddrElements() const {
113 assert(Var.Verify() && "Invalid complex DbgVariable!");
114 return Var.getNumAddrElements();
115 }
116 uint64_t getAddrElement(unsigned i) const {
117 return Var.getAddrElement(i);
118 }
119 DIType getType() const;
120};
121
Chris Lattnerd38fee82010-04-05 00:13:49 +0000122class DwarfDebug {
123 /// Asm - Target of Dwarf emission.
124 AsmPrinter *Asm;
Chris Lattner105d6972010-04-05 05:31:04 +0000125
Chris Lattnerd38fee82010-04-05 00:13:49 +0000126 /// MMI - Collected machine module information.
127 MachineModuleInfo *MMI;
128
Bill Wendling0310d762009-05-15 09:23:25 +0000129 //===--------------------------------------------------------------------===//
130 // Attributes used to construct specific Dwarf sections.
131 //
132
Devang Patel163a9f72010-05-10 22:49:55 +0000133 CompileUnit *FirstCU;
134 DenseMap <const MDNode *, CompileUnit *> CUMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000135
136 /// AbbreviationsSet - Used to uniquely define abbreviations.
137 ///
138 FoldingSet<DIEAbbrev> AbbreviationsSet;
139
140 /// Abbreviations - A list of all the unique abbreviations in use.
141 ///
142 std::vector<DIEAbbrev *> Abbreviations;
143
Bill Wendling0310d762009-05-15 09:23:25 +0000144 /// SourceIdMap - Source id map, i.e. pair of directory id and source file
145 /// id mapped to a unique id.
Rafael Espindola5c055632010-11-18 02:04:25 +0000146 StringMap<unsigned> SourceIdMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000147
Chris Lattnerbc733f52010-03-13 02:17:42 +0000148 /// StringPool - A String->Symbol mapping of strings used by indirect
149 /// references.
150 StringMap<std::pair<MCSymbol*, unsigned> > StringPool;
151 unsigned NextStringPoolNumber;
152
153 MCSymbol *getStringPoolEntry(StringRef Str);
Bill Wendling0310d762009-05-15 09:23:25 +0000154
155 /// SectionMap - Provides a unique id per text section.
156 ///
Chris Lattnera87dea42009-07-31 18:48:30 +0000157 UniqueVector<const MCSection*> SectionMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000158
Devang Patel0478c152011-03-01 22:58:55 +0000159 /// CurrentFnDbgScope - Top level scope for the current function.
160 ///
Devang Patel53bb5c92009-11-10 23:06:00 +0000161 DbgScope *CurrentFnDbgScope;
Bill Wendling0310d762009-05-15 09:23:25 +0000162
Devang Patel0478c152011-03-01 22:58:55 +0000163 /// CurrentFnArguments - List of Arguments (DbgValues) for current function.
164 SmallVector<DbgVariable *, 8> CurrentFnArguments;
165
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000166 /// DbgScopeMap - Tracks the scopes in the current function. Owns the
167 /// contained DbgScope*s.
Devang Patel53bb5c92009-11-10 23:06:00 +0000168 ///
Devang Patele9f8f5e2010-05-07 20:54:48 +0000169 DenseMap<const MDNode *, DbgScope *> DbgScopeMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000170
Devang Patel53bb5c92009-11-10 23:06:00 +0000171 /// ConcreteScopes - Tracks the concrete scopees in the current function.
172 /// These scopes are also included in DbgScopeMap.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000173 DenseMap<const MDNode *, DbgScope *> ConcreteScopes;
Devang Patel53bb5c92009-11-10 23:06:00 +0000174
175 /// AbstractScopes - Tracks the abstract scopes a module. These scopes are
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000176 /// not included DbgScopeMap. AbstractScopes owns its DbgScope*s.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000177 DenseMap<const MDNode *, DbgScope *> AbstractScopes;
Devang Patel2ddefec2010-03-25 15:09:44 +0000178
Devang Patel8aa61472010-07-07 22:20:57 +0000179 /// AbstractSPDies - Collection of abstract subprogram DIEs.
180 DenseMap<const MDNode *, DIE *> AbstractSPDies;
181
Devang Patel2ddefec2010-03-25 15:09:44 +0000182 /// AbstractScopesList - Tracks abstract scopes constructed while processing
183 /// a function. This list is cleared during endFunction().
Devang Patel53bb5c92009-11-10 23:06:00 +0000184 SmallVector<DbgScope *, 4>AbstractScopesList;
185
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000186 /// AbstractVariables - Collection on abstract variables. Owned by the
187 /// DbgScopes in AbstractScopes.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000188 DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000189
Devang Patel26c1e562010-05-20 16:36:41 +0000190 /// DbgVariableToFrameIndexMap - Tracks frame index used to find
191 /// variable's value.
192 DenseMap<const DbgVariable *, int> DbgVariableToFrameIndexMap;
193
194 /// DbgVariableToDbgInstMap - Maps DbgVariable to corresponding DBG_VALUE
195 /// machine instruction.
196 DenseMap<const DbgVariable *, const MachineInstr *> DbgVariableToDbgInstMap;
197
Devang Patelc3f5f782010-05-25 23:40:22 +0000198 /// DotDebugLocEntries - Collection of DotDebugLocEntry.
199 SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
200
201 /// UseDotDebugLocEntry - DW_AT_location attributes for the DIEs in this set
202 /// idetifies corresponding .debug_loc entry offset.
203 SmallPtrSet<const DIE *, 4> UseDotDebugLocEntry;
204
Devang Patel26c1e562010-05-20 16:36:41 +0000205 /// VarToAbstractVarMap - Maps DbgVariable with corresponding Abstract
206 /// DbgVariable, if any.
207 DenseMap<const DbgVariable *, const DbgVariable *> VarToAbstractVarMap;
208
Devang Patel53bb5c92009-11-10 23:06:00 +0000209 /// InliendSubprogramDIEs - Collection of subprgram DIEs that are marked
210 /// (at the end of the module) as DW_AT_inline.
211 SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
212
Devang Patelf8a2e012010-04-15 00:02:49 +0000213 /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that
214 /// need DW_AT_containing_type attribute. This attribute points to a DIE that
215 /// corresponds to the MDNode mapped with the subprogram DIE.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000216 DenseMap<DIE *, const MDNode *> ContainingTypeMap;
Devang Patel5d11eb02009-12-03 19:11:07 +0000217
Bill Wendling0310d762009-05-15 09:23:25 +0000218 /// InlineInfo - Keep track of inlined functions and their location. This
219 /// information is used to populate debug_inlined section.
Devang Patelc3f5f782010-05-25 23:40:22 +0000220 typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels;
Devang Patele9f8f5e2010-05-07 20:54:48 +0000221 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo;
222 SmallVector<const MDNode *, 4> InlinedSPNodes;
Bill Wendling0310d762009-05-15 09:23:25 +0000223
Devang Patel4a1cad62010-06-28 18:25:03 +0000224 // ProcessedSPNodes - This is a collection of subprogram MDNodes that
225 // are processed to create DIEs.
226 SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
227
Devang Pateleac9c072010-04-27 19:46:33 +0000228 /// LabelsBeforeInsn - Maps instruction with label emitted before
Devang Patel1c246352010-04-08 16:50:29 +0000229 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000230 DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000231
Devang Pateleac9c072010-04-27 19:46:33 +0000232 /// LabelsAfterInsn - Maps instruction with label emitted after
Devang Patel1c246352010-04-08 16:50:29 +0000233 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000234 DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000235
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000236 /// UserVariables - Every user variable mentioned by a DBG_VALUE instruction
237 /// in order of appearance.
238 SmallVector<const MDNode*, 8> UserVariables;
Devang Patelb2b31a62010-05-26 19:37:24 +0000239
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000240 /// DbgValues - For each user variable, keep a list of DBG_VALUE
241 /// instructions in order. The list can also contain normal instructions that
242 /// clobber the previous DBG_VALUE.
243 typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> >
244 DbgValueHistoryMap;
245 DbgValueHistoryMap DbgValues;
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000246
Devang Patelf2548ca2010-04-16 23:33:45 +0000247 SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
Devang Patelc04d5452010-04-22 20:56:35 +0000248
Devang Patel553881b2010-03-29 17:20:31 +0000249 /// Previous instruction's location information. This is used to determine
250 /// label location to indicate scope boundries in dwarf debug info.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000251 DebugLoc PrevInstLoc;
Devang Patelf2548ca2010-04-16 23:33:45 +0000252 MCSymbol *PrevLabel;
Devang Patel553881b2010-03-29 17:20:31 +0000253
Bill Wendling0310d762009-05-15 09:23:25 +0000254 struct FunctionDebugFrameInfo {
255 unsigned Number;
256 std::vector<MachineMove> Moves;
257
258 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
259 : Number(Num), Moves(M) {}
260 };
261
262 std::vector<FunctionDebugFrameInfo> DebugFrames;
263
Devang Patel3cbee302011-04-12 22:53:02 +0000264 // DIEValueAllocator - All DIEValues are allocated through this allocator.
265 BumpPtrAllocator DIEValueAllocator;
266
Chris Lattner9c69e285532010-04-04 22:59:04 +0000267 // Section Symbols: these are assembler temporary labels that are emitted at
268 // the beginning of each supported dwarf section. These are used to form
269 // section offsets and are created by EmitSectionLabels.
270 MCSymbol *DwarfFrameSectionSym, *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
Devang Patelf2548ca2010-04-16 23:33:45 +0000271 MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
Devang Patelc3f5f782010-05-25 23:40:22 +0000272 MCSymbol *DwarfDebugLocSectionSym;
273 MCSymbol *FunctionBeginSym, *FunctionEndSym;
Devang Patelca76f6f2010-07-08 20:10:35 +0000274
Devang Patele62dfcf2011-03-31 16:53:49 +0000275private:
Bill Wendling0310d762009-05-15 09:23:25 +0000276
Devang Patel2c4ceb12009-11-21 02:48:08 +0000277 /// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000278 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000279 void assignAbbrevNumber(DIEAbbrev &Abbrev);
Bill Wendling0310d762009-05-15 09:23:25 +0000280
Devang Pateleac9c072010-04-27 19:46:33 +0000281 /// getOrCreateDbgScope - Create DbgScope for the scope.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000282 DbgScope *getOrCreateDbgScope(const MDNode *Scope, const MDNode *InlinedAt);
Devang Patel70d75ca2009-11-12 19:02:56 +0000283
Devang Patele9f8f5e2010-05-07 20:54:48 +0000284 DbgScope *getOrCreateAbstractScope(const MDNode *N);
Devang Patel53bb5c92009-11-10 23:06:00 +0000285
286 /// findAbstractVariable - Find abstract variable associated with Var.
Devang Patel26c1e562010-05-20 16:36:41 +0000287 DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
Devang Patel53bb5c92009-11-10 23:06:00 +0000288
Devang Patel2c4ceb12009-11-21 02:48:08 +0000289 /// updateSubprogramScopeDIE - Find DIE for the given subprogram and
290 /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
291 /// If there are global variables in this scope then create and insert
292 /// DIEs for these variables.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000293 DIE *updateSubprogramScopeDIE(const MDNode *SPNode);
Bill Wendling0310d762009-05-15 09:23:25 +0000294
Devang Patel2c4ceb12009-11-21 02:48:08 +0000295 /// constructLexicalScope - Construct new DW_TAG_lexical_block
296 /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
297 DIE *constructLexicalScopeDIE(DbgScope *Scope);
Bill Wendling0310d762009-05-15 09:23:25 +0000298
Devang Patel2c4ceb12009-11-21 02:48:08 +0000299 /// constructInlinedScopeDIE - This scope represents inlined body of
300 /// a function. Construct DIE to represent this concrete inlined copy
301 /// of the function.
302 DIE *constructInlinedScopeDIE(DbgScope *Scope);
303
304 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
Devang Patel8a241142009-12-09 18:24:21 +0000305 DIE *constructVariableDIE(DbgVariable *DV, DbgScope *S);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000306
307 /// constructScopeDIE - Construct a DIE for this scope.
308 DIE *constructScopeDIE(DbgScope *Scope);
309
Chris Lattnerfa070b02010-04-04 22:33:59 +0000310 /// EmitSectionLabels - Emit initial Dwarf sections with a label at
311 /// the start of each one.
312 void EmitSectionLabels();
Bill Wendling0310d762009-05-15 09:23:25 +0000313
Devang Patel2c4ceb12009-11-21 02:48:08 +0000314 /// emitDIE - Recusively Emits a debug information entry.
Bill Wendling0310d762009-05-15 09:23:25 +0000315 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000316 void emitDIE(DIE *Die);
Bill Wendling0310d762009-05-15 09:23:25 +0000317
Devang Patel2c4ceb12009-11-21 02:48:08 +0000318 /// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling0310d762009-05-15 09:23:25 +0000319 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000320 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last);
Bill Wendling0310d762009-05-15 09:23:25 +0000321
Devang Patel2c4ceb12009-11-21 02:48:08 +0000322 /// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling0310d762009-05-15 09:23:25 +0000323 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000324 void computeSizeAndOffsets();
Bill Wendling0310d762009-05-15 09:23:25 +0000325
Devang Patel8a241142009-12-09 18:24:21 +0000326 /// EmitDebugInfo - Emit the debug info section.
Bill Wendling0310d762009-05-15 09:23:25 +0000327 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000328 void emitDebugInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000329
Devang Patel2c4ceb12009-11-21 02:48:08 +0000330 /// emitAbbreviations - Emit the abbreviation section.
Bill Wendling0310d762009-05-15 09:23:25 +0000331 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000332 void emitAbbreviations() const;
Bill Wendling0310d762009-05-15 09:23:25 +0000333
Devang Patel2c4ceb12009-11-21 02:48:08 +0000334 /// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling0310d762009-05-15 09:23:25 +0000335 /// the line matrix.
336 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000337 void emitEndOfLineMatrix(unsigned SectionEnd);
Bill Wendling0310d762009-05-15 09:23:25 +0000338
Devang Patel2c4ceb12009-11-21 02:48:08 +0000339 /// emitCommonDebugFrame - Emit common frame info into a debug frame section.
Bill Wendling0310d762009-05-15 09:23:25 +0000340 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000341 void emitCommonDebugFrame();
Bill Wendling0310d762009-05-15 09:23:25 +0000342
Devang Patel2c4ceb12009-11-21 02:48:08 +0000343 /// emitFunctionDebugFrame - Emit per function frame info into a debug frame
Bill Wendling0310d762009-05-15 09:23:25 +0000344 /// section.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000345 void emitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo);
Bill Wendling0310d762009-05-15 09:23:25 +0000346
Devang Patel2c4ceb12009-11-21 02:48:08 +0000347 /// emitDebugPubNames - Emit visible names into a debug pubnames section.
Bill Wendling0310d762009-05-15 09:23:25 +0000348 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000349 void emitDebugPubNames();
Bill Wendling0310d762009-05-15 09:23:25 +0000350
Devang Patel193f7202009-11-24 01:14:22 +0000351 /// emitDebugPubTypes - Emit visible types into a debug pubtypes section.
352 ///
353 void emitDebugPubTypes();
354
Devang Patel2c4ceb12009-11-21 02:48:08 +0000355 /// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling0310d762009-05-15 09:23:25 +0000356 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000357 void emitDebugStr();
Bill Wendling0310d762009-05-15 09:23:25 +0000358
Devang Patel2c4ceb12009-11-21 02:48:08 +0000359 /// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling0310d762009-05-15 09:23:25 +0000360 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000361 void emitDebugLoc();
Bill Wendling0310d762009-05-15 09:23:25 +0000362
363 /// EmitDebugARanges - Emit visible names into a debug aranges section.
364 ///
365 void EmitDebugARanges();
366
Devang Patel2c4ceb12009-11-21 02:48:08 +0000367 /// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling0310d762009-05-15 09:23:25 +0000368 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000369 void emitDebugRanges();
Bill Wendling0310d762009-05-15 09:23:25 +0000370
Devang Patel2c4ceb12009-11-21 02:48:08 +0000371 /// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling0310d762009-05-15 09:23:25 +0000372 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000373 void emitDebugMacInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000374
Devang Patel2c4ceb12009-11-21 02:48:08 +0000375 /// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling0310d762009-05-15 09:23:25 +0000376 /// Section Header:
377 /// 1. length of section
378 /// 2. Dwarf version number
379 /// 3. address size.
380 ///
381 /// Entries (one "entry" for each function that was inlined):
382 ///
383 /// 1. offset into __debug_str section for MIPS linkage name, if exists;
384 /// otherwise offset into __debug_str for regular function name.
385 /// 2. offset into __debug_str section for regular function name.
386 /// 3. an unsigned LEB128 number indicating the number of distinct inlining
387 /// instances for the function.
388 ///
389 /// The rest of the entry consists of a {die_offset, low_pc} pair for each
390 /// inlined instance; the die_offset points to the inlined_subroutine die in
391 /// the __debug_info section, and the low_pc is the starting address for the
392 /// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000393 void emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000394
Devang Patel163a9f72010-05-10 22:49:55 +0000395 /// constructCompileUnit - Create new CompileUnit for the given
396 /// metadata node with tag DW_TAG_compile_unit.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000397 void constructCompileUnit(const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000398
Devang Patel163a9f72010-05-10 22:49:55 +0000399 /// getCompielUnit - Get CompileUnit DIE.
400 CompileUnit *getCompileUnit(const MDNode *N) const;
401
402 /// constructGlobalVariableDIE - Construct global variable DIE.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000403 void constructGlobalVariableDIE(const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000404
Devang Patel163a9f72010-05-10 22:49:55 +0000405 /// construct SubprogramDIE - Construct subprogram DIE.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000406 void constructSubprogramDIE(const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000407
Chris Lattner2b1b3312010-04-05 05:32:45 +0000408 /// recordSourceLine - Register a source line with debug info. Returns the
409 /// unique label that was emitted and which provides correspondence to
410 /// the source line list.
Jakob Stoklund Olesen15a3ea02011-03-25 17:20:59 +0000411 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000412
Devang Patel26c1e562010-05-20 16:36:41 +0000413 /// recordVariableFrameIndex - Record a variable's index.
414 void recordVariableFrameIndex(const DbgVariable *V, int Index);
415
416 /// findVariableFrameIndex - Return true if frame index for the variable
417 /// is found. Update FI to hold value of the index.
418 bool findVariableFrameIndex(const DbgVariable *V, int *FI);
419
Devang Patelee432862010-05-20 19:57:06 +0000420 /// findDbgScope - Find DbgScope for the debug loc attached with an
421 /// instruction.
422 DbgScope *findDbgScope(const MachineInstr *MI);
423
Devang Patele37b0c62010-04-08 18:43:56 +0000424 /// identifyScopeMarkers() - Indentify instructions that are marking
425 /// beginning of or end of a scope.
426 void identifyScopeMarkers();
Devang Patel6122a4d2010-04-08 15:37:09 +0000427
Chris Lattner2b1b3312010-04-05 05:32:45 +0000428 /// extractScopeInformation - Scan machine instructions in this function
429 /// and collect DbgScopes. Return true, if atleast one scope was found.
430 bool extractScopeInformation();
431
Devang Patel0478c152011-03-01 22:58:55 +0000432 /// addCurrentFnArgument - If Var is an current function argument that add
433 /// it in CurrentFnArguments list.
434 bool addCurrentFnArgument(const MachineFunction *MF,
435 DbgVariable *Var, DbgScope *Scope);
436
Chris Lattner2b1b3312010-04-05 05:32:45 +0000437 /// collectVariableInfo - Populate DbgScope entries with variables' info.
Devang Patel78e127d2010-06-25 22:07:34 +0000438 void collectVariableInfo(const MachineFunction *,
439 SmallPtrSet<const MDNode *, 16> &ProcessedVars);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000440
Devang Patelee432862010-05-20 19:57:06 +0000441 /// collectVariableInfoFromMMITable - Collect variable information from
442 /// side table maintained by MMI.
443 void collectVariableInfoFromMMITable(const MachineFunction * MF,
444 SmallPtrSet<const MDNode *, 16> &P);
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000445
446 /// requestLabelBeforeInsn - Ensure that a label will be emitted before MI.
447 void requestLabelBeforeInsn(const MachineInstr *MI) {
448 LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol*)0));
449 }
450
451 /// getLabelBeforeInsn - Return Label preceding the instruction.
452 const MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
453
454 /// requestLabelAfterInsn - Ensure that a label will be emitted after MI.
455 void requestLabelAfterInsn(const MachineInstr *MI) {
456 LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol*)0));
457 }
458
459 /// getLabelAfterInsn - Return Label immediately following the instruction.
460 const MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
461
Bill Wendling0310d762009-05-15 09:23:25 +0000462public:
463 //===--------------------------------------------------------------------===//
464 // Main entry points.
465 //
Chris Lattner49cd6642010-04-05 05:11:15 +0000466 DwarfDebug(AsmPrinter *A, Module *M);
Chris Lattner2b1b3312010-04-05 05:32:45 +0000467 ~DwarfDebug();
Bill Wendling0310d762009-05-15 09:23:25 +0000468
Devang Patel2c4ceb12009-11-21 02:48:08 +0000469 /// beginModule - Emit all Dwarf sections that should come prior to the
Bill Wendling0310d762009-05-15 09:23:25 +0000470 /// content.
Chris Lattner75f50722010-04-04 07:48:20 +0000471 void beginModule(Module *M);
Bill Wendling0310d762009-05-15 09:23:25 +0000472
Devang Patel2c4ceb12009-11-21 02:48:08 +0000473 /// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling0310d762009-05-15 09:23:25 +0000474 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000475 void endModule();
Bill Wendling0310d762009-05-15 09:23:25 +0000476
Devang Patel2c4ceb12009-11-21 02:48:08 +0000477 /// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling0310d762009-05-15 09:23:25 +0000478 /// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +0000479 void beginFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000480
Devang Patel2c4ceb12009-11-21 02:48:08 +0000481 /// endFunction - Gather and emit post-function debug information.
Bill Wendling0310d762009-05-15 09:23:25 +0000482 ///
Chris Lattnereec791a2010-01-26 23:18:02 +0000483 void endFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000484
Devang Patelcbbe2872010-10-26 17:49:02 +0000485 /// beginInstruction - Process beginning of an instruction.
486 void beginInstruction(const MachineInstr *MI);
Bill Wendling0310d762009-05-15 09:23:25 +0000487
Devang Patelcbbe2872010-10-26 17:49:02 +0000488 /// endInstruction - Prcess end of an instruction.
489 void endInstruction(const MachineInstr *MI);
Devang Patel3cbee302011-04-12 22:53:02 +0000490
491 /// GetOrCreateSourceID - Look up the source id with the given directory and
492 /// source file names. If none currently exists, create a new id and insert it
493 /// in the SourceIds map.
494 unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName);
495
496 /// createSubprogramDIE - Create new DIE using SP.
497 DIE *createSubprogramDIE(DISubprogram SP);
Devang Patel53bb5c92009-11-10 23:06:00 +0000498};
Bill Wendling0310d762009-05-15 09:23:25 +0000499} // End of namespace llvm
500
501#endif