blob: 0582635a3638db42f2b1ef993beb3ecbb5db2428 [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"
Benjamin Kramerb4c9d9c2012-10-31 13:45:49 +000024#include "llvm/ADT/SetVector.h"
Chris Lattner74e41f92010-04-05 05:24:55 +000025#include "llvm/ADT/SmallPtrSet.h"
Bill Wendling0310d762009-05-15 09:23:25 +000026#include "llvm/ADT/StringMap.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;
Eric Christopherc82fbf42012-11-21 00:03:28 +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,
Eric Christopherc82fbf42012-11-21 00:03:28 +000090 const MDNode *V)
91 : 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)
Eric Christopherc82fbf42012-11-21 00:03:28 +000094 : 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)
Eric Christopherc82fbf42012-11-21 00:03:28 +000097 : Begin(B), End(E), Variable(0), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +000098 Constant(true) { Constants.CFP = FPtr; EntryKind = E_ConstantFP; }
Eric Christopher4984e012012-09-10 23:34:03 +000099 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E,
100 const ConstantInt *IPtr)
Eric Christopherc82fbf42012-11-21 00:03:28 +0000101 : Begin(B), End(E), Variable(0), Merged(false),
Devang Patel80efd4e2011-07-08 16:49:43 +0000102 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.
Eric Christopherc82fbf42012-11-21 00:03:28 +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; }
Eric Christopherc82fbf42012-11-21 00:03:28 +0000151 // Translate tag to proper Dwarf tag.
152 unsigned getTag() const {
Devang Patel59bc4092011-08-15 18:35:42 +0000153 if (Var.getTag() == dwarf::DW_TAG_arg_variable)
154 return dwarf::DW_TAG_formal_parameter;
Eric Christopherc82fbf42012-11-21 00:03:28 +0000155
Devang Patel59bc4092011-08-15 18:35:42 +0000156 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;
Eric Christopher7b451cf2012-09-21 22:18:52 +0000162 if (getType().isArtificial())
Devang Patela098c502011-08-15 18:40:16 +0000163 return true;
164 return false;
165 }
Eric Christophere5212782012-09-12 23:36:19 +0000166
167 bool isObjectPointer() const {
168 if (Var.isObjectPointer())
169 return true;
Eric Christopher7b451cf2012-09-21 22:18:52 +0000170 if (getType().isObjectPointer())
Eric Christophere5212782012-09-12 23:36:19 +0000171 return true;
172 return false;
173 }
Eric Christopherc82fbf42012-11-21 00:03:28 +0000174
Devang Patel3cbee302011-04-12 22:53:02 +0000175 bool variableHasComplexAddress() const {
176 assert(Var.Verify() && "Invalid complex DbgVariable!");
177 return Var.hasComplexAddress();
178 }
179 bool isBlockByrefVariable() const {
180 assert(Var.Verify() && "Invalid complex DbgVariable!");
181 return Var.isBlockByrefVariable();
182 }
Eric Christopherc82fbf42012-11-21 00:03:28 +0000183 unsigned getNumAddrElements() const {
Devang Patel3cbee302011-04-12 22:53:02 +0000184 assert(Var.Verify() && "Invalid complex DbgVariable!");
185 return Var.getNumAddrElements();
186 }
187 uint64_t getAddrElement(unsigned i) const {
188 return Var.getAddrElement(i);
189 }
190 DIType getType() const;
191};
192
Chris Lattnerd38fee82010-04-05 00:13:49 +0000193class DwarfDebug {
194 /// Asm - Target of Dwarf emission.
195 AsmPrinter *Asm;
Chris Lattner105d6972010-04-05 05:31:04 +0000196
Chris Lattnerd38fee82010-04-05 00:13:49 +0000197 /// MMI - Collected machine module information.
198 MachineModuleInfo *MMI;
199
Benjamin Kramerf33a79c2012-06-09 10:34:15 +0000200 /// DIEValueAllocator - All DIEValues are allocated through this allocator.
201 BumpPtrAllocator DIEValueAllocator;
202
Bill Wendling0310d762009-05-15 09:23:25 +0000203 //===--------------------------------------------------------------------===//
204 // Attributes used to construct specific Dwarf sections.
205 //
206
Devang Patel163a9f72010-05-10 22:49:55 +0000207 CompileUnit *FirstCU;
Devang Patel94c7ddb2011-08-16 22:09:43 +0000208
209 /// Maps MDNode with its corresponding CompileUnit.
Devang Patel163a9f72010-05-10 22:49:55 +0000210 DenseMap <const MDNode *, CompileUnit *> CUMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000211
Devang Patel94c7ddb2011-08-16 22:09:43 +0000212 /// Maps subprogram MDNode with its corresponding CompileUnit.
213 DenseMap <const MDNode *, CompileUnit *> SPMap;
214
Bill Wendling0310d762009-05-15 09:23:25 +0000215 /// AbbreviationsSet - Used to uniquely define abbreviations.
216 ///
217 FoldingSet<DIEAbbrev> AbbreviationsSet;
218
219 /// Abbreviations - A list of all the unique abbreviations in use.
220 ///
221 std::vector<DIEAbbrev *> Abbreviations;
222
Benjamin Kramer74612c22012-03-11 14:56:26 +0000223 /// SourceIdMap - Source id map, i.e. pair of source filename and directory,
224 /// separated by a zero byte, mapped to a unique id.
Benjamin Kramerf33a79c2012-06-09 10:34:15 +0000225 StringMap<unsigned, BumpPtrAllocator&> SourceIdMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000226
Chris Lattnerbc733f52010-03-13 02:17:42 +0000227 /// StringPool - A String->Symbol mapping of strings used by indirect
228 /// references.
Benjamin Kramerf33a79c2012-06-09 10:34:15 +0000229 StringMap<std::pair<MCSymbol*, unsigned>, BumpPtrAllocator&> StringPool;
Chris Lattnerbc733f52010-03-13 02:17:42 +0000230 unsigned NextStringPoolNumber;
Eric Christopherc82fbf42012-11-21 00:03:28 +0000231
Bill Wendling0310d762009-05-15 09:23:25 +0000232 /// SectionMap - Provides a unique id per text section.
233 ///
Benjamin Kramerb4c9d9c2012-10-31 13:45:49 +0000234 SetVector<const MCSection*> SectionMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000235
Devang Patel0478c152011-03-01 22:58:55 +0000236 /// CurrentFnArguments - List of Arguments (DbgValues) for current function.
237 SmallVector<DbgVariable *, 8> CurrentFnArguments;
238
Devang Patelbf47fdb2011-08-10 20:55:27 +0000239 LexicalScopes LScopes;
Devang Patel2ddefec2010-03-25 15:09:44 +0000240
Devang Patel8aa61472010-07-07 22:20:57 +0000241 /// AbstractSPDies - Collection of abstract subprogram DIEs.
242 DenseMap<const MDNode *, DIE *> AbstractSPDies;
243
Devang Patelbf47fdb2011-08-10 20:55:27 +0000244 /// ScopeVariables - Collection of dbg variables of a scope.
245 DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> > ScopeVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000246
Alexey Samsonove2ec1402012-06-29 16:04:14 +0000247 /// AbstractVariables - Collection of abstract variables.
Devang Patele9f8f5e2010-05-07 20:54:48 +0000248 DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
Devang Patel53bb5c92009-11-10 23:06:00 +0000249
Devang Patelc3f5f782010-05-25 23:40:22 +0000250 /// DotDebugLocEntries - Collection of DotDebugLocEntry.
251 SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
252
Nick Lewycky20b2b782011-10-18 22:40:18 +0000253 /// InlinedSubprogramDIEs - Collection of subprogram DIEs that are marked
Devang Patel53bb5c92009-11-10 23:06:00 +0000254 /// (at the end of the module) as DW_AT_inline.
255 SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
256
Bill Wendling0310d762009-05-15 09:23:25 +0000257 /// InlineInfo - Keep track of inlined functions and their location. This
Eric Christopher61cafd12012-03-02 01:57:55 +0000258 /// information is used to populate the debug_inlined section.
Devang Patelc3f5f782010-05-25 23:40:22 +0000259 typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels;
Devang Patele9f8f5e2010-05-07 20:54:48 +0000260 DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo;
261 SmallVector<const MDNode *, 4> InlinedSPNodes;
Bill Wendling0310d762009-05-15 09:23:25 +0000262
Devang Patel4a1cad62010-06-28 18:25:03 +0000263 // ProcessedSPNodes - This is a collection of subprogram MDNodes that
264 // are processed to create DIEs.
265 SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
266
Eric Christopherc82fbf42012-11-21 00:03:28 +0000267 /// LabelsBeforeInsn - Maps instruction with label emitted before
Devang Patel1c246352010-04-08 16:50:29 +0000268 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000269 DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000270
Devang Pateleac9c072010-04-27 19:46:33 +0000271 /// LabelsAfterInsn - Maps instruction with label emitted after
Devang Patel1c246352010-04-08 16:50:29 +0000272 /// instruction.
Devang Pateleac9c072010-04-27 19:46:33 +0000273 DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
Devang Patel1c246352010-04-08 16:50:29 +0000274
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000275 /// UserVariables - Every user variable mentioned by a DBG_VALUE instruction
276 /// in order of appearance.
277 SmallVector<const MDNode*, 8> UserVariables;
Devang Patelb2b31a62010-05-26 19:37:24 +0000278
Jakob Stoklund Olesenadb877d2011-03-26 02:19:36 +0000279 /// DbgValues - For each user variable, keep a list of DBG_VALUE
280 /// instructions in order. The list can also contain normal instructions that
281 /// clobber the previous DBG_VALUE.
282 typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> >
283 DbgValueHistoryMap;
284 DbgValueHistoryMap DbgValues;
Jakob Stoklund Olesen28cf1152011-03-22 22:33:08 +0000285
Devang Patelf2548ca2010-04-16 23:33:45 +0000286 SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
Devang Patelc04d5452010-04-22 20:56:35 +0000287
Devang Patel553881b2010-03-29 17:20:31 +0000288 /// Previous instruction's location information. This is used to determine
289 /// label location to indicate scope boundries in dwarf debug info.
Chris Lattnerde4845c2010-04-02 19:42:39 +0000290 DebugLoc PrevInstLoc;
Devang Patelf2548ca2010-04-16 23:33:45 +0000291 MCSymbol *PrevLabel;
Devang Patel553881b2010-03-29 17:20:31 +0000292
Devang Patel4243e672011-05-11 19:22:19 +0000293 /// PrologEndLoc - This location indicates end of function prologue and
294 /// beginning of function body.
295 DebugLoc PrologEndLoc;
296
Bill Wendling0310d762009-05-15 09:23:25 +0000297 struct FunctionDebugFrameInfo {
298 unsigned Number;
299 std::vector<MachineMove> Moves;
300
301 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
302 : Number(Num), Moves(M) {}
303 };
304
305 std::vector<FunctionDebugFrameInfo> DebugFrames;
306
Chris Lattner9c69e285532010-04-04 22:59:04 +0000307 // Section Symbols: these are assembler temporary labels that are emitted at
308 // the beginning of each supported dwarf section. These are used to form
309 // section offsets and are created by EmitSectionLabels.
Rafael Espindolaf2b04232011-05-06 14:56:22 +0000310 MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
Devang Patelf2548ca2010-04-16 23:33:45 +0000311 MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
Devang Patelc3f5f782010-05-25 23:40:22 +0000312 MCSymbol *DwarfDebugLocSectionSym;
313 MCSymbol *FunctionBeginSym, *FunctionEndSym;
Devang Patelca76f6f2010-07-08 20:10:35 +0000314
Nick Lewycky6c1a7032011-11-02 20:55:33 +0000315 // As an optimization, there is no need to emit an entry in the directory
316 // table for the same directory as DW_at_comp_dir.
317 StringRef CompilationDir;
318
Eric Christopherb8a101f2012-11-21 00:17:49 +0000319 // Holders for the various debug information flags that we might need to
320 // have exposed. See accessor functions below for description.
Eric Christopherc1610fa2012-08-23 22:36:36 +0000321 bool isDarwinGDBCompat;
Eric Christopher20f47ab2012-08-23 22:36:40 +0000322 bool hasDwarfAccelTables;
Eric Christopherf5b6dcd2012-11-12 22:22:20 +0000323 bool hasDwarfFission;
Devang Patele62dfcf2011-03-31 16:53:49 +0000324private:
Bill Wendling0310d762009-05-15 09:23:25 +0000325
Devang Patel2c4ceb12009-11-21 02:48:08 +0000326 /// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000327 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000328 void assignAbbrevNumber(DIEAbbrev &Abbrev);
Bill Wendling0310d762009-05-15 09:23:25 +0000329
Devang Patelbf47fdb2011-08-10 20:55:27 +0000330 void addScopeVariable(LexicalScope *LS, DbgVariable *Var);
Devang Patel53bb5c92009-11-10 23:06:00 +0000331
332 /// findAbstractVariable - Find abstract variable associated with Var.
Devang Patel26c1e562010-05-20 16:36:41 +0000333 DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
Devang Patel53bb5c92009-11-10 23:06:00 +0000334
Eric Christopherc82fbf42012-11-21 00:03:28 +0000335 /// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel2c4ceb12009-11-21 02:48:08 +0000336 /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
337 /// If there are global variables in this scope then create and insert
338 /// DIEs for these variables.
Devang Pateld3024342011-08-15 22:24:32 +0000339 DIE *updateSubprogramScopeDIE(CompileUnit *SPCU, const MDNode *SPNode);
Bill Wendling0310d762009-05-15 09:23:25 +0000340
Eric Christopherc82fbf42012-11-21 00:03:28 +0000341 /// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel2c4ceb12009-11-21 02:48:08 +0000342 /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
Devang Pateld3024342011-08-15 22:24:32 +0000343 DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Bill Wendling0310d762009-05-15 09:23:25 +0000344
Devang Patel2c4ceb12009-11-21 02:48:08 +0000345 /// constructInlinedScopeDIE - This scope represents inlined body of
346 /// a function. Construct DIE to represent this concrete inlined copy
347 /// of the function.
Devang Pateld3024342011-08-15 22:24:32 +0000348 DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000349
Devang Patel2c4ceb12009-11-21 02:48:08 +0000350 /// constructScopeDIE - Construct a DIE for this scope.
Devang Pateld0b5a5e2011-08-15 22:04:40 +0000351 DIE *constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000352
Chris Lattnerfa070b02010-04-04 22:33:59 +0000353 /// EmitSectionLabels - Emit initial Dwarf sections with a label at
354 /// the start of each one.
355 void EmitSectionLabels();
Bill Wendling0310d762009-05-15 09:23:25 +0000356
Nick Lewycky024170f2011-10-18 22:39:43 +0000357 /// emitDIE - Recursively Emits a debug information entry.
Bill Wendling0310d762009-05-15 09:23:25 +0000358 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000359 void emitDIE(DIE *Die);
Bill Wendling0310d762009-05-15 09:23:25 +0000360
Eric Christopherfbd19752012-11-20 22:14:13 +0000361 /// computeSizeAndOffset - Compute the size and offset of a DIE given
362 /// an incoming Offset.
Bill Wendling0310d762009-05-15 09:23:25 +0000363 ///
Eric Christopherfbd19752012-11-20 22:14:13 +0000364 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset);
Bill Wendling0310d762009-05-15 09:23:25 +0000365
Devang Patel2c4ceb12009-11-21 02:48:08 +0000366 /// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling0310d762009-05-15 09:23:25 +0000367 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000368 void computeSizeAndOffsets();
Bill Wendling0310d762009-05-15 09:23:25 +0000369
Devang Patel8a241142009-12-09 18:24:21 +0000370 /// EmitDebugInfo - Emit the debug info section.
Bill Wendling0310d762009-05-15 09:23:25 +0000371 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000372 void emitDebugInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000373
Devang Patel2c4ceb12009-11-21 02:48:08 +0000374 /// emitAbbreviations - Emit the abbreviation section.
Bill Wendling0310d762009-05-15 09:23:25 +0000375 ///
Eric Christopher7dc68db2012-11-20 23:30:11 +0000376 void emitAbbreviations();
Bill Wendling0310d762009-05-15 09:23:25 +0000377
Devang Patel2c4ceb12009-11-21 02:48:08 +0000378 /// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling0310d762009-05-15 09:23:25 +0000379 /// the line matrix.
380 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000381 void emitEndOfLineMatrix(unsigned SectionEnd);
Bill Wendling0310d762009-05-15 09:23:25 +0000382
Eric Christopher09ac3d82011-11-07 09:24:32 +0000383 /// emitAccelNames - Emit visible names into a hashed accelerator table
384 /// section.
385 void emitAccelNames();
Eric Christopherc82fbf42012-11-21 00:03:28 +0000386
Eric Christopher09ac3d82011-11-07 09:24:32 +0000387 /// emitAccelObjC - Emit objective C classes and categories into a hashed
388 /// accelerator table section.
389 void emitAccelObjC();
390
391 /// emitAccelNamespace - Emit namespace dies into a hashed accelerator
392 /// table.
393 void emitAccelNamespaces();
394
395 /// emitAccelTypes() - Emit type dies into a hashed accelerator table.
Eric Christopherdfa30e12011-11-09 05:24:07 +0000396 ///
Eric Christopher09ac3d82011-11-07 09:24:32 +0000397 void emitAccelTypes();
Eric Christopherc82fbf42012-11-21 00:03:28 +0000398
Devang Patel193f7202009-11-24 01:14:22 +0000399 /// emitDebugPubTypes - Emit visible types into a debug pubtypes section.
400 ///
401 void emitDebugPubTypes();
402
Devang Patel2c4ceb12009-11-21 02:48:08 +0000403 /// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling0310d762009-05-15 09:23:25 +0000404 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000405 void emitDebugStr();
Bill Wendling0310d762009-05-15 09:23:25 +0000406
Devang Patel2c4ceb12009-11-21 02:48:08 +0000407 /// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling0310d762009-05-15 09:23:25 +0000408 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000409 void emitDebugLoc();
Bill Wendling0310d762009-05-15 09:23:25 +0000410
411 /// EmitDebugARanges - Emit visible names into a debug aranges section.
412 ///
413 void EmitDebugARanges();
414
Devang Patel2c4ceb12009-11-21 02:48:08 +0000415 /// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling0310d762009-05-15 09:23:25 +0000416 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000417 void emitDebugRanges();
Bill Wendling0310d762009-05-15 09:23:25 +0000418
Devang Patel2c4ceb12009-11-21 02:48:08 +0000419 /// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling0310d762009-05-15 09:23:25 +0000420 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000421 void emitDebugMacInfo();
Bill Wendling0310d762009-05-15 09:23:25 +0000422
Devang Patel2c4ceb12009-11-21 02:48:08 +0000423 /// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling0310d762009-05-15 09:23:25 +0000424 /// Section Header:
425 /// 1. length of section
426 /// 2. Dwarf version number
427 /// 3. address size.
428 ///
429 /// Entries (one "entry" for each function that was inlined):
430 ///
Eric Christopherc82fbf42012-11-21 00:03:28 +0000431 /// 1. offset into __debug_str section for MIPS linkage name, if exists;
Bill Wendling0310d762009-05-15 09:23:25 +0000432 /// otherwise offset into __debug_str for regular function name.
433 /// 2. offset into __debug_str section for regular function name.
Eric Christopherc82fbf42012-11-21 00:03:28 +0000434 /// 3. an unsigned LEB128 number indicating the number of distinct inlining
Bill Wendling0310d762009-05-15 09:23:25 +0000435 /// instances for the function.
Eric Christopherc82fbf42012-11-21 00:03:28 +0000436 ///
437 /// The rest of the entry consists of a {die_offset, low_pc} pair for each
Bill Wendling0310d762009-05-15 09:23:25 +0000438 /// inlined instance; the die_offset points to the inlined_subroutine die in
Nick Lewycky024170f2011-10-18 22:39:43 +0000439 /// the __debug_info section, and the low_pc is the starting address for the
440 /// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000441 void emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000442
Eric Christopherc82fbf42012-11-21 00:03:28 +0000443 /// constructCompileUnit - Create new CompileUnit for the given
Devang Patel163a9f72010-05-10 22:49:55 +0000444 /// metadata node with tag DW_TAG_compile_unit.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000445 CompileUnit *constructCompileUnit(const MDNode *N);
Devang Patel163a9f72010-05-10 22:49:55 +0000446
Devang Patel163a9f72010-05-10 22:49:55 +0000447 /// construct SubprogramDIE - Construct subprogram DIE.
Devang Patel3655a212011-08-15 23:36:40 +0000448 void constructSubprogramDIE(CompileUnit *TheCU, const MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000449
Chris Lattner2b1b3312010-04-05 05:32:45 +0000450 /// recordSourceLine - Register a source line with debug info. Returns the
451 /// unique label that was emitted and which provides correspondence to
452 /// the source line list.
Devang Patel4243e672011-05-11 19:22:19 +0000453 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
454 unsigned Flags);
Eric Christopherc82fbf42012-11-21 00:03:28 +0000455
Nick Lewycky024170f2011-10-18 22:39:43 +0000456 /// identifyScopeMarkers() - Indentify instructions that are marking the
457 /// beginning of or ending of a scope.
Devang Patele37b0c62010-04-08 18:43:56 +0000458 void identifyScopeMarkers();
Devang Patel6122a4d2010-04-08 15:37:09 +0000459
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,
Devang Patelbf47fdb2011-08-10 20:55:27 +0000463 DbgVariable *Var, LexicalScope *Scope);
Devang Patel0478c152011-03-01 22:58:55 +0000464
Devang Patelbf47fdb2011-08-10 20:55:27 +0000465 /// collectVariableInfo - Populate LexicalScope entries with variables' info.
Devang Patel78e127d2010-06-25 22:07:34 +0000466 void collectVariableInfo(const MachineFunction *,
467 SmallPtrSet<const MDNode *, 16> &ProcessedVars);
Eric Christopherc82fbf42012-11-21 00:03:28 +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 Patel02e603f2011-08-15 23:47:24 +0000497 /// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
498 /// as llvm.dbg.enum and llvm.dbg.ty
Eric Christopherc4639d62012-11-19 22:42:15 +0000499 void collectInfoFromNamedMDNodes(const Module *M);
Devang Patel02e603f2011-08-15 23:47:24 +0000500
501 /// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
Nick Lewycky024170f2011-10-18 22:39:43 +0000502 /// FIXME - Remove this when DragonEgg switches to DIBuilder.
Eric Christopherc4639d62012-11-19 22:42:15 +0000503 bool collectLegacyDebugInfo(const Module *M);
Devang Patel02e603f2011-08-15 23:47:24 +0000504
Devang Patel2c4ceb12009-11-21 02:48:08 +0000505 /// beginModule - Emit all Dwarf sections that should come prior to the
Bill Wendling0310d762009-05-15 09:23:25 +0000506 /// content.
Eric Christopherc4639d62012-11-19 22:42:15 +0000507 void beginModule();
Bill Wendling0310d762009-05-15 09:23:25 +0000508
Devang Patel2c4ceb12009-11-21 02:48:08 +0000509 /// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling0310d762009-05-15 09:23:25 +0000510 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000511 void endModule();
Bill Wendling0310d762009-05-15 09:23:25 +0000512
Devang Patel2c4ceb12009-11-21 02:48:08 +0000513 /// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling0310d762009-05-15 09:23:25 +0000514 /// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +0000515 void beginFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000516
Devang Patel2c4ceb12009-11-21 02:48:08 +0000517 /// endFunction - Gather and emit post-function debug information.
Bill Wendling0310d762009-05-15 09:23:25 +0000518 ///
Chris Lattnereec791a2010-01-26 23:18:02 +0000519 void endFunction(const MachineFunction *MF);
Bill Wendling0310d762009-05-15 09:23:25 +0000520
Devang Patelcbbe2872010-10-26 17:49:02 +0000521 /// beginInstruction - Process beginning of an instruction.
522 void beginInstruction(const MachineInstr *MI);
Bill Wendling0310d762009-05-15 09:23:25 +0000523
Devang Patelcbbe2872010-10-26 17:49:02 +0000524 /// endInstruction - Prcess end of an instruction.
525 void endInstruction(const MachineInstr *MI);
Devang Patel3cbee302011-04-12 22:53:02 +0000526
527 /// GetOrCreateSourceID - Look up the source id with the given directory and
528 /// source file names. If none currently exists, create a new id and insert it
529 /// in the SourceIds map.
530 unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName);
531
Nick Lewycky390c40d2011-10-27 06:44:11 +0000532 /// getStringPool - returns the entry into the start of the pool.
533 MCSymbol *getStringPool();
534
535 /// getStringPoolEntry - returns an entry into the string pool with the given
536 /// string text.
537 MCSymbol *getStringPoolEntry(StringRef Str);
Eric Christopherc1610fa2012-08-23 22:36:36 +0000538
539 /// useDarwinGDBCompat - returns whether or not to limit some of our debug
540 /// output to the limitations of darwin gdb.
541 bool useDarwinGDBCompat() { return isDarwinGDBCompat; }
Eric Christophere6ad6ac2012-11-21 00:03:31 +0000542
543 // Experimental DWARF5 features.
544
545 /// useDwarfAccelTables - returns whether or not to emit tables that
546 /// dwarf consumers can use to accelerate lookup.
Eric Christopher20f47ab2012-08-23 22:36:40 +0000547 bool useDwarfAccelTables() { return hasDwarfAccelTables; }
Eric Christophere6ad6ac2012-11-21 00:03:31 +0000548
549 /// useDwarfFission - returns whether or not to change the current debug
550 /// info for the fission proposal support.
Eric Christopherf5b6dcd2012-11-12 22:22:20 +0000551 bool useDwarfFission() { return hasDwarfFission; }
Devang Patel53bb5c92009-11-10 23:06:00 +0000552};
Bill Wendling0310d762009-05-15 09:23:25 +0000553} // End of namespace llvm
554
555#endif