blob: 064c0fa7624b716798df6b4ea3f6a36eb259c608 [file] [log] [blame]
Bill Wendling2f921f82009-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
Timur Iskhodzhanov1cd14442013-12-03 15:10:23 +000017#include "AsmPrinterHandler.h"
Bill Wendlinge38859d2012-06-28 00:05:13 +000018#include "DIE.h"
Devang Patel018b29b2010-01-19 06:19:05 +000019#include "llvm/ADT/DenseMap.h"
Eric Christopheracbe42b2014-03-18 20:58:35 +000020#include "llvm/ADT/MapVector.h"
21#include "llvm/ADT/SmallPtrSet.h"
22#include "llvm/ADT/StringMap.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000023#include "llvm/ADT/FoldingSet.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000024#include "llvm/CodeGen/LexicalScopes.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000025#include "llvm/IR/DebugInfo.h"
Eric Christopheracbe42b2014-03-18 20:58:35 +000026#include "llvm/IR/DebugLoc.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000027#include "llvm/MC/MachineLocation.h"
David Blaikie4a2f95f2014-03-18 01:17:26 +000028#include "llvm/MC/MCDwarf.h"
Chris Lattner3f3fb972010-04-05 05:24:55 +000029#include "llvm/Support/Allocator.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000030
31namespace llvm {
32
Adrian Prantl702bf5a2014-03-18 02:34:52 +000033class AsmPrinter;
Eric Christopher29e874d2014-03-07 22:40:37 +000034class ByteStreamer;
Chris Lattner88fce102012-01-26 20:44:57 +000035class ConstantInt;
36class ConstantFP;
Eric Christopherce4a9442014-03-18 20:37:10 +000037class DwarfCompileUnit;
38class DwarfDebug;
39class DwarfTypeUnit;
40class DwarfUnit;
Bill Wendling2f921f82009-05-15 09:23:25 +000041class MachineModuleInfo;
Bill Wendling2f921f82009-05-15 09:23:25 +000042
43//===----------------------------------------------------------------------===//
Eric Christopheracdcbdb2012-11-27 22:43:45 +000044/// \brief This class is used to record source line correspondence.
Benjamin Kramer079b96e2013-09-11 18:05:11 +000045class SrcLineInfo {
Eric Christophera5a79422013-12-09 23:32:48 +000046 unsigned Line; // Source line number.
47 unsigned Column; // Source column.
48 unsigned SourceID; // Source ID number.
49 MCSymbol *Label; // Label in code ID number.
Bill Wendling2f921f82009-05-15 09:23:25 +000050public:
Chris Lattnerb4666f42010-03-14 08:15:55 +000051 SrcLineInfo(unsigned L, unsigned C, unsigned S, MCSymbol *label)
Eric Christophera5a79422013-12-09 23:32:48 +000052 : Line(L), Column(C), SourceID(S), Label(label) {}
Bill Wendling2f921f82009-05-15 09:23:25 +000053
54 // Accessors
55 unsigned getLine() const { return Line; }
56 unsigned getColumn() const { return Column; }
57 unsigned getSourceID() const { return SourceID; }
Chris Lattnerb4666f42010-03-14 08:15:55 +000058 MCSymbol *getLabel() const { return Label; }
Bill Wendling2f921f82009-05-15 09:23:25 +000059};
60
Eric Christopheracdcbdb2012-11-27 22:43:45 +000061/// \brief This struct describes location entries emitted in the .debug_loc
62/// section.
Eric Christopher05135fb2014-03-18 02:18:24 +000063class DebugLocEntry {
Eric Christopher25f06422013-07-03 22:40:18 +000064 // Begin and end symbols for the address range that this location is valid.
Devang Patel116a9d72011-02-04 22:57:18 +000065 const MCSymbol *Begin;
66 const MCSymbol *End;
Eric Christopher25f06422013-07-03 22:40:18 +000067
68 // Type of entry that this represents.
Eric Christopher05135fb2014-03-18 02:18:24 +000069 enum EntryType { E_Location, E_Integer, E_ConstantFP, E_ConstantInt };
Devang Pateled9fd452011-07-08 16:49:43 +000070 enum EntryType EntryKind;
71
72 union {
73 int64_t Int;
74 const ConstantFP *CFP;
75 const ConstantInt *CIP;
76 } Constants;
Eric Christopher25f06422013-07-03 22:40:18 +000077
78 // The location in the machine frame.
79 MachineLocation Loc;
80
81 // The variable to which this location entry corresponds.
82 const MDNode *Variable;
83
Eric Christopher384f3fe2014-03-20 19:16:16 +000084 // The compile unit to which this location entry is referenced by.
85 const DwarfCompileUnit *Unit;
86
Eric Christopher25f06422013-07-03 22:40:18 +000087public:
David Blaikie34ec5d02014-03-24 22:27:06 +000088 DebugLocEntry() : Begin(0), End(0), Variable(0), Unit(0) {
Eric Christopher98341b8d2013-07-03 08:26:07 +000089 Constants.Int = 0;
90 }
Eric Christopher05135fb2014-03-18 02:18:24 +000091 DebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L,
Eric Christopher384f3fe2014-03-20 19:16:16 +000092 const MDNode *V, const DwarfCompileUnit *U)
David Blaikie34ec5d02014-03-24 22:27:06 +000093 : Begin(B), End(E), Loc(L), Variable(V), Unit(U) {
Eric Christopher98341b8d2013-07-03 08:26:07 +000094 Constants.Int = 0;
95 EntryKind = E_Location;
96 }
Eric Christopher384f3fe2014-03-20 19:16:16 +000097 DebugLocEntry(const MCSymbol *B, const MCSymbol *E, int64_t i,
98 const DwarfCompileUnit *U)
David Blaikie34ec5d02014-03-24 22:27:06 +000099 : Begin(B), End(E), Variable(0), Unit(U) {
Eric Christopher98341b8d2013-07-03 08:26:07 +0000100 Constants.Int = i;
101 EntryKind = E_Integer;
102 }
Eric Christopher384f3fe2014-03-20 19:16:16 +0000103 DebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantFP *FPtr,
104 const DwarfCompileUnit *U)
David Blaikie34ec5d02014-03-24 22:27:06 +0000105 : Begin(B), End(E), Variable(0), Unit(U) {
Eric Christopher98341b8d2013-07-03 08:26:07 +0000106 Constants.CFP = FPtr;
107 EntryKind = E_ConstantFP;
108 }
Eric Christopher384f3fe2014-03-20 19:16:16 +0000109 DebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantInt *IPtr,
110 const DwarfCompileUnit *U)
David Blaikie34ec5d02014-03-24 22:27:06 +0000111 : Begin(B), End(E), Variable(0), Unit(U) {
Eric Christopher98341b8d2013-07-03 08:26:07 +0000112 Constants.CIP = IPtr;
113 EntryKind = E_ConstantInt;
114 }
Devang Patel324f8432011-06-01 22:03:25 +0000115
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000116 /// \brief Empty entries are also used as a trigger to emit temp label. Such
Devang Patel116a9d72011-02-04 22:57:18 +0000117 /// labels are referenced is used to find debug_loc offset for a given DIE.
Eric Christophereeb51952014-03-06 19:51:16 +0000118 bool isEmpty() const { return Begin == 0 && End == 0; }
David Blaikie34ec5d02014-03-24 22:27:06 +0000119 bool Merge(const DebugLocEntry &Next) {
120 if (!(Begin && Loc == Next.Loc && End == Next.Begin))
121 return false;
122 End = Next.End;
123 return true;
Devang Patel116a9d72011-02-04 22:57:18 +0000124 }
Eric Christophera5a79422013-12-09 23:32:48 +0000125 bool isLocation() const { return EntryKind == E_Location; }
126 bool isInt() const { return EntryKind == E_Integer; }
127 bool isConstantFP() const { return EntryKind == E_ConstantFP; }
Devang Pateled9fd452011-07-08 16:49:43 +0000128 bool isConstantInt() const { return EntryKind == E_ConstantInt; }
Eric Christophera5a79422013-12-09 23:32:48 +0000129 int64_t getInt() const { return Constants.Int; }
130 const ConstantFP *getConstantFP() const { return Constants.CFP; }
Eric Christopherc665af72013-07-03 08:13:55 +0000131 const ConstantInt *getConstantInt() const { return Constants.CIP; }
Eric Christopher25f06422013-07-03 22:40:18 +0000132 const MDNode *getVariable() const { return Variable; }
133 const MCSymbol *getBeginSym() const { return Begin; }
134 const MCSymbol *getEndSym() const { return End; }
Eric Christopher384f3fe2014-03-20 19:16:16 +0000135 const DwarfCompileUnit *getCU() const { return Unit; }
Eric Christopher25f06422013-07-03 22:40:18 +0000136 MachineLocation getLoc() const { return Loc; }
137};
Devang Patel116a9d72011-02-04 22:57:18 +0000138
Devang Patelf20c4f72011-04-12 22:53:02 +0000139//===----------------------------------------------------------------------===//
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000140/// \brief This class is used to track local variable information.
Benjamin Kramer079b96e2013-09-11 18:05:11 +0000141class DbgVariable {
Eric Christophera5a79422013-12-09 23:32:48 +0000142 DIVariable Var; // Variable Descriptor.
143 DIE *TheDIE; // Variable DIE.
144 unsigned DotDebugLocOffset; // Offset in DotDebugLocEntries.
145 DbgVariable *AbsVar; // Corresponding Abstract variable, if any.
146 const MachineInstr *MInsn; // DBG_VALUE instruction of the variable.
Devang Patel3e4a9652011-08-15 21:24:36 +0000147 int FrameIndex;
Manman Renb3388602013-10-05 01:43:03 +0000148 DwarfDebug *DD;
Eric Christophera5a79422013-12-09 23:32:48 +0000149
Devang Patelf20c4f72011-04-12 22:53:02 +0000150public:
151 // AbsVar may be NULL.
Manman Renb3388602013-10-05 01:43:03 +0000152 DbgVariable(DIVariable V, DbgVariable *AV, DwarfDebug *DD)
Eric Christophera5a79422013-12-09 23:32:48 +0000153 : Var(V), TheDIE(0), DotDebugLocOffset(~0U), AbsVar(AV), MInsn(0),
154 FrameIndex(~0), DD(DD) {}
Devang Patelf20c4f72011-04-12 22:53:02 +0000155
156 // Accessors.
Eric Christophera5a79422013-12-09 23:32:48 +0000157 DIVariable getVariable() const { return Var; }
158 void setDIE(DIE *D) { TheDIE = D; }
159 DIE *getDIE() const { return TheDIE; }
160 void setDotDebugLocOffset(unsigned O) { DotDebugLocOffset = O; }
161 unsigned getDotDebugLocOffset() const { return DotDebugLocOffset; }
162 StringRef getName() const { return Var.getName(); }
Devang Patel99819b52011-08-15 19:01:20 +0000163 DbgVariable *getAbstractVariable() const { return AbsVar; }
Eric Christophera5a79422013-12-09 23:32:48 +0000164 const MachineInstr *getMInsn() const { return MInsn; }
165 void setMInsn(const MachineInstr *M) { MInsn = M; }
166 int getFrameIndex() const { return FrameIndex; }
167 void setFrameIndex(int FI) { FrameIndex = FI; }
Eric Christopher27527b22012-11-21 00:03:28 +0000168 // Translate tag to proper Dwarf tag.
Eric Christophera5a79422013-12-09 23:32:48 +0000169 uint16_t getTag() const {
Devang Patel6e4d2c92011-08-15 18:35:42 +0000170 if (Var.getTag() == dwarf::DW_TAG_arg_variable)
171 return dwarf::DW_TAG_formal_parameter;
Eric Christopher27527b22012-11-21 00:03:28 +0000172
Devang Patel6e4d2c92011-08-15 18:35:42 +0000173 return dwarf::DW_TAG_variable;
174 }
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000175 /// \brief Return true if DbgVariable is artificial.
Eric Christophera5a79422013-12-09 23:32:48 +0000176 bool isArtificial() const {
Devang Pateld7d80aa2011-08-15 18:40:16 +0000177 if (Var.isArtificial())
178 return true;
Eric Christopherc1c8a1b2012-09-21 22:18:52 +0000179 if (getType().isArtificial())
Devang Pateld7d80aa2011-08-15 18:40:16 +0000180 return true;
181 return false;
182 }
Eric Christophere3417762012-09-12 23:36:19 +0000183
Eric Christophera5a79422013-12-09 23:32:48 +0000184 bool isObjectPointer() const {
Eric Christophere3417762012-09-12 23:36:19 +0000185 if (Var.isObjectPointer())
186 return true;
Eric Christopherc1c8a1b2012-09-21 22:18:52 +0000187 if (getType().isObjectPointer())
Eric Christophere3417762012-09-12 23:36:19 +0000188 return true;
189 return false;
190 }
Eric Christopher27527b22012-11-21 00:03:28 +0000191
Eric Christophera5a79422013-12-09 23:32:48 +0000192 bool variableHasComplexAddress() const {
Manman Ren7504ed42013-07-08 18:33:29 +0000193 assert(Var.isVariable() && "Invalid complex DbgVariable!");
Devang Patelf20c4f72011-04-12 22:53:02 +0000194 return Var.hasComplexAddress();
195 }
Adrian Prantl1a1647c2014-03-18 02:34:58 +0000196 bool isBlockByrefVariable() const;
Eric Christophera5a79422013-12-09 23:32:48 +0000197 unsigned getNumAddrElements() const {
Manman Ren7504ed42013-07-08 18:33:29 +0000198 assert(Var.isVariable() && "Invalid complex DbgVariable!");
Devang Patelf20c4f72011-04-12 22:53:02 +0000199 return Var.getNumAddrElements();
200 }
Eric Christophera5a79422013-12-09 23:32:48 +0000201 uint64_t getAddrElement(unsigned i) const { return Var.getAddrElement(i); }
Devang Patelf20c4f72011-04-12 22:53:02 +0000202 DIType getType() const;
Manman Renbe5576f2013-10-08 19:07:44 +0000203
204private:
205 /// resolve - Look in the DwarfDebug map for the MDNode that
206 /// corresponds to the reference.
207 template <typename T> T resolve(DIRef<T> Ref) const;
Devang Patelf20c4f72011-04-12 22:53:02 +0000208};
209
Eric Christopherc8a310e2012-12-10 23:34:43 +0000210/// \brief Collects and handles information specific to a particular
Eric Christopherf8194852013-12-05 18:06:10 +0000211/// collection of units. This collection represents all of the units
212/// that will be ultimately output into a single object file.
213class DwarfFile {
Eric Christopherc8a310e2012-12-10 23:34:43 +0000214 // Target of Dwarf emission, used for sizing of abbreviations.
215 AsmPrinter *Asm;
216
217 // Used to uniquely define abbreviations.
David Blaikie0504cda2013-12-05 07:43:55 +0000218 FoldingSet<DIEAbbrev> AbbreviationsSet;
Eric Christopherc8a310e2012-12-10 23:34:43 +0000219
220 // A list of all the unique abbreviations in use.
David Blaikie0504cda2013-12-05 07:43:55 +0000221 std::vector<DIEAbbrev *> Abbreviations;
Eric Christopherc8a310e2012-12-10 23:34:43 +0000222
223 // A pointer to all units in the section.
Eric Christophera5a79422013-12-09 23:32:48 +0000224 SmallVector<DwarfUnit *, 1> CUs;
Eric Christopherc8a310e2012-12-10 23:34:43 +0000225
Eric Christopher3bf29fd2012-12-27 02:14:01 +0000226 // Collection of strings for this unit and assorted symbols.
Eric Christopher18cf0612013-07-03 20:36:36 +0000227 // A String->Symbol mapping of strings used by indirect
228 // references.
Eric Christophera5a79422013-12-09 23:32:48 +0000229 typedef StringMap<std::pair<MCSymbol *, unsigned>, BumpPtrAllocator &>
230 StrPool;
Eric Christopher27614582013-01-08 22:22:06 +0000231 StrPool StringPool;
Eric Christophere698f532012-12-20 21:58:36 +0000232 unsigned NextStringPoolNumber;
Eric Christopher3bf29fd2012-12-27 02:14:01 +0000233 std::string StringPref;
Eric Christophere698f532012-12-20 21:58:36 +0000234
David Blaikief1a6dea2014-02-15 19:34:03 +0000235 struct AddressPoolEntry {
236 unsigned Number;
237 bool TLS;
238 AddressPoolEntry(unsigned Number, bool TLS) : Number(Number), TLS(TLS) {}
239 };
Eric Christopher962c9082013-01-15 23:56:56 +0000240 // Collection of addresses for this unit and assorted labels.
Eric Christopher18cf0612013-07-03 20:36:36 +0000241 // A Symbol->unsigned mapping of addresses used by indirect
242 // references.
David Blaikief1a6dea2014-02-15 19:34:03 +0000243 typedef DenseMap<const MCSymbol *, AddressPoolEntry> AddrPool;
Eric Christopher962c9082013-01-15 23:56:56 +0000244 AddrPool AddressPool;
245 unsigned NextAddrPoolNumber;
246
Eric Christopherc8a310e2012-12-10 23:34:43 +0000247public:
Eric Christopherf8194852013-12-05 18:06:10 +0000248 DwarfFile(AsmPrinter *AP, const char *Pref, BumpPtrAllocator &DA)
David Blaikie0504cda2013-12-05 07:43:55 +0000249 : Asm(AP), StringPool(DA), NextStringPoolNumber(0), StringPref(Pref),
250 AddressPool(), NextAddrPoolNumber(0) {}
Eric Christopherc8a310e2012-12-10 23:34:43 +0000251
Eric Christopherf8194852013-12-05 18:06:10 +0000252 ~DwarfFile();
David Blaikie72f1a3e2013-11-23 01:17:34 +0000253
Eric Christophera5a79422013-12-09 23:32:48 +0000254 const SmallVectorImpl<DwarfUnit *> &getUnits() { return CUs; }
David Blaikiefd1eff52013-11-26 19:14:34 +0000255
Eric Christopherc8a310e2012-12-10 23:34:43 +0000256 /// \brief Compute the size and offset of a DIE given an incoming Offset.
257 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset);
258
259 /// \brief Compute the size and offset of all the DIEs.
260 void computeSizeAndOffsets();
261
262 /// \brief Define a unique number for the abbreviation.
263 void assignAbbrevNumber(DIEAbbrev &Abbrev);
264
265 /// \brief Add a unit to the list of CUs.
Eric Christophera5a79422013-12-09 23:32:48 +0000266 void addUnit(DwarfUnit *CU) { CUs.push_back(CU); }
Eric Christophera2de8262012-12-15 00:04:07 +0000267
268 /// \brief Emit all of the units to the section listed with the given
269 /// abbreviation section.
David Blaikief72ed5f2014-03-24 20:31:01 +0000270 void emitUnits(DwarfDebug *DD, const MCSymbol *ASectionSym);
Eric Christophere698f532012-12-20 21:58:36 +0000271
David Blaikie0504cda2013-12-05 07:43:55 +0000272 /// \brief Emit a set of abbreviations to the specific section.
273 void emitAbbrevs(const MCSection *);
274
Eric Christopher3bf29fd2012-12-27 02:14:01 +0000275 /// \brief Emit all of the strings to the section given.
Eric Christopherdd7b4612013-07-03 21:23:59 +0000276 void emitStrings(const MCSection *StrSection, const MCSection *OffsetSection,
277 const MCSymbol *StrSecSym);
Eric Christopher3bf29fd2012-12-27 02:14:01 +0000278
Eric Christopher962c9082013-01-15 23:56:56 +0000279 /// \brief Emit all of the addresses to the section given.
Eric Christopherdd7b4612013-07-03 21:23:59 +0000280 void emitAddresses(const MCSection *AddrSection);
Eric Christopher962c9082013-01-15 23:56:56 +0000281
Eric Christophere698f532012-12-20 21:58:36 +0000282 /// \brief Returns the entry into the start of the pool.
283 MCSymbol *getStringPoolSym();
284
285 /// \brief Returns an entry into the string pool with the given
286 /// string text.
287 MCSymbol *getStringPoolEntry(StringRef Str);
288
Eric Christopher2cbd5762013-01-07 19:32:41 +0000289 /// \brief Returns the index into the string pool with the given
290 /// string text.
291 unsigned getStringPoolIndex(StringRef Str);
292
Eric Christophere698f532012-12-20 21:58:36 +0000293 /// \brief Returns the string pool.
Eric Christopher27614582013-01-08 22:22:06 +0000294 StrPool *getStringPool() { return &StringPool; }
Eric Christopher962c9082013-01-15 23:56:56 +0000295
296 /// \brief Returns the index into the address pool with the given
297 /// label/symbol.
David Blaikief1a6dea2014-02-15 19:34:03 +0000298 unsigned getAddrPoolIndex(const MCSymbol *Sym, bool TLS = false);
Eric Christopher962c9082013-01-15 23:56:56 +0000299
300 /// \brief Returns the address pool.
301 AddrPool *getAddrPool() { return &AddressPool; }
Eric Christopherc8a310e2012-12-10 23:34:43 +0000302};
303
Eric Christopher670ee0e2013-10-24 21:20:23 +0000304/// \brief Helper used to pair up a symbol and its DWARF compile unit.
Richard Mitton21101b32013-09-19 23:21:01 +0000305struct SymbolCU {
Eric Christopher4287a492013-12-09 23:57:44 +0000306 SymbolCU(DwarfCompileUnit *CU, const MCSymbol *Sym) : Sym(Sym), CU(CU) {}
Richard Mitton21101b32013-09-19 23:21:01 +0000307 const MCSymbol *Sym;
Eric Christopher4287a492013-12-09 23:57:44 +0000308 DwarfCompileUnit *CU;
Richard Mitton21101b32013-09-19 23:21:01 +0000309};
310
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000311/// \brief Collects and handles dwarf debug information.
Timur Iskhodzhanov1cd14442013-12-03 15:10:23 +0000312class DwarfDebug : public AsmPrinterHandler {
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000313 // Target of Dwarf emission.
Chris Lattner3a383cb2010-04-05 00:13:49 +0000314 AsmPrinter *Asm;
Chris Lattneracda87b2010-04-05 05:31:04 +0000315
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000316 // Collected machine module information.
Chris Lattner3a383cb2010-04-05 00:13:49 +0000317 MachineModuleInfo *MMI;
318
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000319 // All DIEValues are allocated through this allocator.
Benjamin Kramer07480082012-06-09 10:34:15 +0000320 BumpPtrAllocator DIEValueAllocator;
321
Eric Christopherbfe7d292013-12-03 22:05:55 +0000322 // Handle to the compile unit used for the inline extension handling,
323 // this is just so that the DIEValue allocator has a place to store
324 // the particular elements.
325 // FIXME: Store these off of DwarfDebug instead?
Eric Christopher4287a492013-12-09 23:57:44 +0000326 DwarfCompileUnit *FirstCU;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000327
Eric Christopher4287a492013-12-09 23:57:44 +0000328 // Maps MDNode with its corresponding DwarfCompileUnit.
Eric Christopher179fba12014-01-29 22:06:23 +0000329 MapVector<const MDNode *, DwarfCompileUnit *> CUMap;
Bill Wendling2f921f82009-05-15 09:23:25 +0000330
Eric Christopher4287a492013-12-09 23:57:44 +0000331 // Maps subprogram MDNode with its corresponding DwarfCompileUnit.
332 DenseMap<const MDNode *, DwarfCompileUnit *> SPMap;
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000333
Eric Christopher4287a492013-12-09 23:57:44 +0000334 // Maps a CU DIE with its corresponding DwarfCompileUnit.
335 DenseMap<const DIE *, DwarfCompileUnit *> CUDieMap;
Manman Rence20d462013-10-29 22:57:10 +0000336
Eric Christopher47f2be82014-03-20 19:16:20 +0000337 /// Maps MDNodes for type system with the corresponding DIEs. These DIEs can
Manman Ren4dbdc902013-10-31 17:54:35 +0000338 /// be shared across CUs, that is why we keep the map here instead
Eric Christopher4287a492013-12-09 23:57:44 +0000339 /// of in DwarfCompileUnit.
Manman Ren4dbdc902013-10-31 17:54:35 +0000340 DenseMap<const MDNode *, DIE *> MDTypeNodeToDieMap;
341
Alexey Samsonov4436bf02013-10-03 08:54:43 +0000342 // List of all labels used in aranges generation.
343 std::vector<SymbolCU> ArangeLabels;
Richard Mitton21101b32013-09-19 23:21:01 +0000344
Richard Mitton089ed892013-09-23 17:56:20 +0000345 // Size of each symbol emitted (for those symbols that have a specific size).
Eric Christophera5a79422013-12-09 23:32:48 +0000346 DenseMap<const MCSymbol *, uint64_t> SymSize;
Richard Mitton089ed892013-09-23 17:56:20 +0000347
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000348 // Provides a unique id per text section.
Richard Mitton21101b32013-09-19 23:21:01 +0000349 typedef DenseMap<const MCSection *, SmallVector<SymbolCU, 8> > SectionMapType;
350 SectionMapType SectionMap;
Bill Wendling2f921f82009-05-15 09:23:25 +0000351
Eric Christopheraba20dd2013-07-08 21:16:18 +0000352 // List of arguments for current function.
Devang Patel6c622ef2011-03-01 22:58:55 +0000353 SmallVector<DbgVariable *, 8> CurrentFnArguments;
354
Devang Patel7e623022011-08-10 20:55:27 +0000355 LexicalScopes LScopes;
Devang Patel95cd4b92010-03-25 15:09:44 +0000356
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000357 // Collection of abstract subprogram DIEs.
Devang Patela37a95e2010-07-07 22:20:57 +0000358 DenseMap<const MDNode *, DIE *> AbstractSPDies;
359
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000360 // Collection of dbg variables of a scope.
Eric Christophera5a79422013-12-09 23:32:48 +0000361 typedef DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >
362 ScopeVariablesMap;
Craig Topper2b4a2012013-07-03 04:40:27 +0000363 ScopeVariablesMap ScopeVariables;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000364
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000365 // Collection of abstract variables.
Devang Patel32cc43c2010-05-07 20:54:48 +0000366 DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000367
Eric Christopher05135fb2014-03-18 02:18:24 +0000368 // Collection of DebugLocEntry.
David Blaikie84d8e182014-03-24 22:38:38 +0000369 SmallVector<SmallVector<DebugLocEntry, 4>, 4> DotDebugLocEntries;
Devang Patel9fc11702010-05-25 23:40:22 +0000370
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000371 // Collection of subprogram DIEs that are marked (at the end of the module)
372 // as DW_AT_inline.
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000373 SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
374
Eric Christopher48fef592012-12-20 21:58:40 +0000375 // This is a collection of subprogram MDNodes that are processed to
376 // create DIEs.
Devang Patelf3b2db62010-06-28 18:25:03 +0000377 SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
378
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000379 // Maps instruction with label emitted before instruction.
Devang Patel6c74a872010-04-27 19:46:33 +0000380 DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
Devang Patel3ebd8932010-04-08 16:50:29 +0000381
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000382 // Maps instruction with label emitted after instruction.
Devang Patel6c74a872010-04-27 19:46:33 +0000383 DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
Devang Patel3ebd8932010-04-08 16:50:29 +0000384
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000385 // Every user variable mentioned by a DBG_VALUE instruction in order of
386 // appearance.
Eric Christophera5a79422013-12-09 23:32:48 +0000387 SmallVector<const MDNode *, 8> UserVariables;
Devang Patel002d54d2010-05-26 19:37:24 +0000388
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000389 // For each user variable, keep a list of DBG_VALUE instructions in order.
390 // The list can also contain normal instructions that clobber the previous
391 // DBG_VALUE.
Eric Christophera5a79422013-12-09 23:32:48 +0000392 typedef DenseMap<const MDNode *, SmallVector<const MachineInstr *, 4> >
393 DbgValueHistoryMap;
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000394 DbgValueHistoryMap DbgValues;
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +0000395
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000396 // Previous instruction's location information. This is used to determine
397 // label location to indicate scope boundries in dwarf debug info.
Chris Lattner915c5f92010-04-02 19:42:39 +0000398 DebugLoc PrevInstLoc;
Devang Patel12563b32010-04-16 23:33:45 +0000399 MCSymbol *PrevLabel;
Devang Patelbd477be2010-03-29 17:20:31 +0000400
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000401 // This location indicates end of function prologue and beginning of function
402 // body.
Devang Patel34a66202011-05-11 19:22:19 +0000403 DebugLoc PrologEndLoc;
404
Timur Iskhodzhanov1cd14442013-12-03 15:10:23 +0000405 // If nonnull, stores the current machine function we're processing.
406 const MachineFunction *CurFn;
407
408 // If nonnull, stores the current machine instruction we're processing.
409 const MachineInstr *CurMI;
410
Eric Christopher384f3fe2014-03-20 19:16:16 +0000411 // If nonnull, stores the section that the previous function was allocated to
412 // emitting.
413 const MCSection *PrevSection;
414
415 // If nonnull, stores the CU in which the previous subprogram was contained.
416 const DwarfCompileUnit *PrevCU;
417
Chris Lattner6629ca92010-04-04 22:59:04 +0000418 // Section Symbols: these are assembler temporary labels that are emitted at
419 // the beginning of each supported dwarf section. These are used to form
420 // section offsets and are created by EmitSectionLabels.
Rafael Espindolaa7160962011-05-06 14:56:22 +0000421 MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
Devang Patel12563b32010-04-16 23:33:45 +0000422 MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
Eric Christopher55863be2013-04-07 03:43:09 +0000423 MCSymbol *DwarfDebugLocSectionSym, *DwarfLineSectionSym, *DwarfAddrSectionSym;
Devang Patel9fc11702010-05-25 23:40:22 +0000424 MCSymbol *FunctionBeginSym, *FunctionEndSym;
Eric Christopherd8667202013-12-30 17:22:27 +0000425 MCSymbol *DwarfInfoDWOSectionSym, *DwarfAbbrevDWOSectionSym;
426 MCSymbol *DwarfStrDWOSectionSym;
Eric Christopher39eebfa2013-09-30 23:14:16 +0000427 MCSymbol *DwarfGnuPubNamesSectionSym, *DwarfGnuPubTypesSectionSym;
Devang Patel9c160e12010-07-08 20:10:35 +0000428
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000429 // As an optimization, there is no need to emit an entry in the directory
Eric Christopher808fd7b2013-07-03 01:57:23 +0000430 // table for the same directory as DW_AT_comp_dir.
Nick Lewyckyd1ee7f82011-11-02 20:55:33 +0000431 StringRef CompilationDir;
432
Eric Christopher0f63d062013-12-03 00:45:45 +0000433 // Counter for assigning globally unique IDs for ranges.
434 unsigned GlobalRangeCount;
435
Eric Christopherc8a310e2012-12-10 23:34:43 +0000436 // Holder for the file specific debug information.
Eric Christopherf8194852013-12-05 18:06:10 +0000437 DwarfFile InfoHolder;
Eric Christopherc8a310e2012-12-10 23:34:43 +0000438
Eric Christopher0aa4a672012-12-10 22:25:41 +0000439 // Holders for the various debug information flags that we might need to
440 // have exposed. See accessor functions below for description.
441
Eric Christopher070bf162013-07-03 01:57:26 +0000442 // Holder for imported entities.
443 typedef SmallVector<std::pair<const MDNode *, const MDNode *>, 32>
Eric Christophera5a79422013-12-09 23:32:48 +0000444 ImportedEntityMap;
Eric Christopher070bf162013-07-03 01:57:26 +0000445 ImportedEntityMap ScopesWithImportedEntities;
446
David Blaikie47f615e2013-12-17 23:32:35 +0000447 // Map from MDNodes for user-defined types to the type units that describe
448 // them.
449 DenseMap<const MDNode *, const DwarfTypeUnit *> DwarfTypeUnits;
Eric Christopher67646432013-07-26 17:02:41 +0000450
Eric Christopher4d36ca02013-08-26 23:24:35 +0000451 // Whether to emit the pubnames/pubtypes sections.
452 bool HasDwarfPubSections;
453
Eric Christopher1ad84572014-01-15 00:04:29 +0000454 // Whether or not to use AT_ranges for compilation units.
455 bool HasCURanges;
456
Eric Christopher2037caf2014-01-28 00:49:26 +0000457 // Whether we emitted a function into a section other than the default
458 // text.
459 bool UsedNonDefaultText;
460
Eric Christopher4d36ca02013-08-26 23:24:35 +0000461 // Version of dwarf we're emitting.
462 unsigned DwarfVersion;
463
Eric Christopher0a13eb32013-11-21 22:56:11 +0000464 // Maps from a type identifier to the actual MDNode.
465 DITypeIdentifierMap TypeIdentifierMap;
466
Eric Christopher42e39942012-11-29 22:56:13 +0000467 // DWARF5 Experimental Options
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000468 bool HasDwarfAccelTables;
Eric Christophercdf218d2012-12-10 19:51:21 +0000469 bool HasSplitDwarf;
Manman Renac8062b2013-07-02 23:40:10 +0000470
Eric Christopherd692c1d2012-12-11 19:42:09 +0000471 // Separated Dwarf Variables
Eric Christopherd79f5482012-12-10 19:51:13 +0000472 // In general these will all be for bits that are left in the
473 // original object file, rather than things that are meant
474 // to be in the .dwo sections.
475
Eric Christopher3bf29fd2012-12-27 02:14:01 +0000476 // Holder for the skeleton information.
Eric Christopherf8194852013-12-05 18:06:10 +0000477 DwarfFile SkeletonHolder;
Eric Christopherd79f5482012-12-10 19:51:13 +0000478
David Blaikie47f4b822014-03-19 00:11:28 +0000479 /// Store file names for type units under fission in a line table header that
480 /// will be emitted into debug_line.dwo.
481 // FIXME: replace this with a map from comp_dir to table so that we can emit
482 // multiple tables during LTO each of which uses directory 0, referencing the
483 // comp_dir of all the type units that use it.
David Blaikie8287aff2014-03-18 02:13:23 +0000484 MCDwarfDwoLineTable SplitTypeUnitFileTable;
David Blaikie4a2f95f2014-03-18 01:17:26 +0000485
David Blaikie47f4b822014-03-19 00:11:28 +0000486 // True iff there are multiple CUs in this module.
487 bool SingleCU;
488
489 MCDwarfDwoLineTable *getDwoLineTable(const DwarfCompileUnit &);
490
Devang Patel7e623022011-08-10 20:55:27 +0000491 void addScopeVariable(LexicalScope *LS, DbgVariable *Var);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000492
Eric Christophera5a79422013-12-09 23:32:48 +0000493 const SmallVectorImpl<DwarfUnit *> &getUnits() {
494 return InfoHolder.getUnits();
495 }
David Blaikiefd1eff52013-11-26 19:14:34 +0000496
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000497 /// \brief Find abstract variable associated with Var.
Devang Patele1c53f22010-05-20 16:36:41 +0000498 DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000499
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000500 /// \brief Find DIE for the given subprogram and attach appropriate
501 /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global
502 /// variables in this scope then create and insert DIEs for these
503 /// variables.
Eric Christopher4287a492013-12-09 23:57:44 +0000504 DIE *updateSubprogramScopeDIE(DwarfCompileUnit *SPCU, DISubprogram SP);
Bill Wendling2f921f82009-05-15 09:23:25 +0000505
Eric Christopher44e66c12013-12-03 00:45:56 +0000506 /// \brief A helper function to check whether the DIE for a given Scope is
507 /// going to be null.
Manman Ren2312ed32013-09-10 18:40:41 +0000508 bool isLexicalScopeDIENull(LexicalScope *Scope);
Bill Wendling2f921f82009-05-15 09:23:25 +0000509
Eric Christopherbe2513e2013-12-03 00:45:59 +0000510 /// \brief A helper function to construct a RangeSpanList for a given
511 /// lexical scope.
Eric Christopher4287a492013-12-09 23:57:44 +0000512 void addScopeRangeList(DwarfCompileUnit *TheCU, DIE *ScopeDIE,
Eric Christopherbe2513e2013-12-03 00:45:59 +0000513 const SmallVectorImpl<InsnRange> &Range);
514
Eric Christopher77913e0392013-12-03 00:45:54 +0000515 /// \brief Construct new DW_TAG_lexical_block for this scope and
516 /// attach DW_AT_low_pc/DW_AT_high_pc labels.
Eric Christopher4287a492013-12-09 23:57:44 +0000517 DIE *constructLexicalScopeDIE(DwarfCompileUnit *TheCU, LexicalScope *Scope);
Eric Christopher77913e0392013-12-03 00:45:54 +0000518
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000519 /// \brief This scope represents inlined body of a function. Construct
520 /// DIE to represent this concrete inlined copy of the function.
Eric Christopher4287a492013-12-09 23:57:44 +0000521 DIE *constructInlinedScopeDIE(DwarfCompileUnit *TheCU, LexicalScope *Scope);
Devang Patel930143b2009-11-21 02:48:08 +0000522
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000523 /// \brief Construct a DIE for this scope.
Eric Christopher4287a492013-12-09 23:57:44 +0000524 DIE *constructScopeDIE(DwarfCompileUnit *TheCU, LexicalScope *Scope);
Manman Ren2312ed32013-09-10 18:40:41 +0000525 /// A helper function to create children of a Scope DIE.
Eric Christopher4287a492013-12-09 23:57:44 +0000526 DIE *createScopeChildrenDIE(DwarfCompileUnit *TheCU, LexicalScope *Scope,
Eric Christophera5a79422013-12-09 23:32:48 +0000527 SmallVectorImpl<DIE *> &Children);
Devang Patel930143b2009-11-21 02:48:08 +0000528
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000529 /// \brief Emit initial Dwarf sections with a label at the start of each one.
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000530 void emitSectionLabels();
Bill Wendling2f921f82009-05-15 09:23:25 +0000531
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000532 /// \brief Compute the size and offset of a DIE given an incoming Offset.
Eric Christopher1f0cbb82012-11-20 22:14:13 +0000533 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset);
Bill Wendling2f921f82009-05-15 09:23:25 +0000534
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000535 /// \brief Compute the size and offset of all the DIEs.
Devang Patel930143b2009-11-21 02:48:08 +0000536 void computeSizeAndOffsets();
Bill Wendling2f921f82009-05-15 09:23:25 +0000537
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000538 /// \brief Attach DW_AT_inline attribute with inlined subprogram DIEs.
Eric Christopher960ac372012-11-22 00:59:49 +0000539 void computeInlinedDIEs();
540
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000541 /// \brief Collect info for variables that were optimized out.
Eric Christopher960ac372012-11-22 00:59:49 +0000542 void collectDeadVariables();
543
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000544 /// \brief Finish off debug information after all functions have been
545 /// processed.
Eric Christopher960ac372012-11-22 00:59:49 +0000546 void finalizeModuleInfo();
547
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000548 /// \brief Emit labels to close any remaining sections that have been left
549 /// open.
Eric Christopher960ac372012-11-22 00:59:49 +0000550 void endSections();
551
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000552 /// \brief Emit the debug info section.
Devang Patel930143b2009-11-21 02:48:08 +0000553 void emitDebugInfo();
Bill Wendling2f921f82009-05-15 09:23:25 +0000554
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000555 /// \brief Emit the abbreviation section.
Eric Christopher38371952012-11-20 23:30:11 +0000556 void emitAbbreviations();
Bill Wendling2f921f82009-05-15 09:23:25 +0000557
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000558 /// \brief Emit the last address of the section and the end of
Bill Wendling2f921f82009-05-15 09:23:25 +0000559 /// the line matrix.
Devang Patel930143b2009-11-21 02:48:08 +0000560 void emitEndOfLineMatrix(unsigned SectionEnd);
Bill Wendling2f921f82009-05-15 09:23:25 +0000561
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000562 /// \brief Emit visible names into a hashed accelerator table section.
Eric Christopher4996c702011-11-07 09:24:32 +0000563 void emitAccelNames();
Eric Christopher27527b22012-11-21 00:03:28 +0000564
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000565 /// \brief Emit objective C classes and categories into a hashed
Eric Christopher4996c702011-11-07 09:24:32 +0000566 /// accelerator table section.
567 void emitAccelObjC();
568
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000569 /// \brief Emit namespace dies into a hashed accelerator table.
Eric Christopher4996c702011-11-07 09:24:32 +0000570 void emitAccelNamespaces();
571
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000572 /// \brief Emit type dies into a hashed accelerator table.
Eric Christopher4996c702011-11-07 09:24:32 +0000573 void emitAccelTypes();
Eric Christopher27527b22012-11-21 00:03:28 +0000574
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +0000575 /// \brief Emit visible names into a debug pubnames section.
Eric Christopherdd1a0122013-09-13 00:35:05 +0000576 /// \param GnuStyle determines whether or not we want to emit
577 /// additional information into the table ala newer gcc for gdb
578 /// index.
579 void emitDebugPubNames(bool GnuStyle = false);
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +0000580
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000581 /// \brief Emit visible types into a debug pubtypes section.
Eric Christopherdd1a0122013-09-13 00:35:05 +0000582 /// \param GnuStyle determines whether or not we want to emit
583 /// additional information into the table ala newer gcc for gdb
584 /// index.
585 void emitDebugPubTypes(bool GnuStyle = false);
Devang Patel04d2f2d2009-11-24 01:14:22 +0000586
David Blaikie0f55e832014-03-11 23:18:15 +0000587 void
588 emitDebugPubSection(bool GnuStyle, const MCSection *PSec, StringRef Name,
589 const StringMap<const DIE *> &(DwarfUnit::*Accessor)()
590 const);
591
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000592 /// \brief Emit visible names into a debug str section.
Devang Patel930143b2009-11-21 02:48:08 +0000593 void emitDebugStr();
Bill Wendling2f921f82009-05-15 09:23:25 +0000594
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000595 /// \brief Emit visible names into a debug loc section.
Devang Patel930143b2009-11-21 02:48:08 +0000596 void emitDebugLoc();
Bill Wendling2f921f82009-05-15 09:23:25 +0000597
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000598 /// \brief Emit visible names into a debug aranges section.
Eric Christopher7b30f2e42012-11-21 00:34:35 +0000599 void emitDebugARanges();
Bill Wendling2f921f82009-05-15 09:23:25 +0000600
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000601 /// \brief Emit visible names into a debug ranges section.
Devang Patel930143b2009-11-21 02:48:08 +0000602 void emitDebugRanges();
Bill Wendling2f921f82009-05-15 09:23:25 +0000603
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000604 /// \brief Emit inline info using custom format.
Devang Patel930143b2009-11-21 02:48:08 +0000605 void emitDebugInlineInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +0000606
Eric Christophercdf218d2012-12-10 19:51:21 +0000607 /// DWARF 5 Experimental Split Dwarf Emitters
Eric Christopher9c2ecd92012-11-30 23:59:06 +0000608
David Blaikie38fe6342014-01-09 04:28:46 +0000609 /// \brief Initialize common features of skeleton units.
610 void initSkeletonUnit(const DwarfUnit *U, DIE *Die, DwarfUnit *NewU);
611
Eric Christophercdf218d2012-12-10 19:51:21 +0000612 /// \brief Construct the split debug info compile unit for the debug info
613 /// section.
Eric Christopher4287a492013-12-09 23:57:44 +0000614 DwarfCompileUnit *constructSkeletonCU(const DwarfCompileUnit *CU);
Eric Christopher9c2ecd92012-11-30 23:59:06 +0000615
David Blaikie15ed5eb2014-01-10 01:38:41 +0000616 /// \brief Construct the split debug info compile unit for the debug info
617 /// section.
David Blaikie15632ae2014-02-12 00:31:30 +0000618 DwarfTypeUnit *constructSkeletonTU(DwarfTypeUnit *TU);
David Blaikie15ed5eb2014-01-10 01:38:41 +0000619
Eric Christopher9c2ecd92012-11-30 23:59:06 +0000620 /// \brief Emit the debug info dwo section.
621 void emitDebugInfoDWO();
622
Eric Christopher3c5a1912012-12-19 22:02:53 +0000623 /// \brief Emit the debug abbrev dwo section.
624 void emitDebugAbbrevDWO();
625
David Blaikie4a2f95f2014-03-18 01:17:26 +0000626 /// \brief Emit the debug line dwo section.
627 void emitDebugLineDWO();
628
Eric Christopher3bf29fd2012-12-27 02:14:01 +0000629 /// \brief Emit the debug str dwo section.
630 void emitDebugStrDWO();
631
David Blaikie3c842622013-12-04 21:31:26 +0000632 /// Flags to let the linker know we have emitted new style pubnames. Only
633 /// emit it here if we don't have a skeleton CU for split dwarf.
Eric Christophera5a79422013-12-09 23:32:48 +0000634 void addGnuPubAttributes(DwarfUnit *U, DIE *D) const;
David Blaikie3c842622013-12-04 21:31:26 +0000635
Eric Christopher4287a492013-12-09 23:57:44 +0000636 /// \brief Create new DwarfCompileUnit for the given metadata node with tag
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000637 /// DW_TAG_compile_unit.
David Blaikie47f4b822014-03-19 00:11:28 +0000638 DwarfCompileUnit *constructDwarfCompileUnit(DICompileUnit DIUnit);
Devang Patel1a0df9a2010-05-10 22:49:55 +0000639
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000640 /// \brief Construct subprogram DIE.
Eric Christopher4287a492013-12-09 23:57:44 +0000641 void constructSubprogramDIE(DwarfCompileUnit *TheCU, const MDNode *N);
Bill Wendling2b128d72009-05-20 23:19:06 +0000642
David Blaikie1fd43652013-05-07 21:35:53 +0000643 /// \brief Construct imported_module or imported_declaration DIE.
Eric Christopher4287a492013-12-09 23:57:44 +0000644 void constructImportedEntityDIE(DwarfCompileUnit *TheCU, const MDNode *N);
David Blaikief55abea2013-04-22 06:12:31 +0000645
David Blaikie684fc532013-05-06 23:33:07 +0000646 /// \brief Construct import_module DIE.
Eric Christopher4287a492013-12-09 23:57:44 +0000647 void constructImportedEntityDIE(DwarfCompileUnit *TheCU, const MDNode *N,
David Blaikie684fc532013-05-06 23:33:07 +0000648 DIE *Context);
649
650 /// \brief Construct import_module DIE.
Eric Christopher4287a492013-12-09 23:57:44 +0000651 void constructImportedEntityDIE(DwarfCompileUnit *TheCU,
Eric Christophera5a79422013-12-09 23:32:48 +0000652 const DIImportedEntity &Module, DIE *Context);
David Blaikie684fc532013-05-06 23:33:07 +0000653
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000654 /// \brief Register a source line with debug info. Returns the unique
655 /// label that was emitted and which provides correspondence to the
656 /// source line list.
Devang Patel34a66202011-05-11 19:22:19 +0000657 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
658 unsigned Flags);
Eric Christopher27527b22012-11-21 00:03:28 +0000659
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000660 /// \brief Indentify instructions that are marking the beginning of or
661 /// ending of a scope.
Devang Patel359b0132010-04-08 18:43:56 +0000662 void identifyScopeMarkers();
Devang Patelf1d5a1e2010-04-08 15:37:09 +0000663
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000664 /// \brief If Var is an current function argument that add it in
665 /// CurrentFnArguments list.
Timur Iskhodzhanov1cd14442013-12-03 15:10:23 +0000666 bool addCurrentFnArgument(DbgVariable *Var, LexicalScope *Scope);
Devang Patel6c622ef2011-03-01 22:58:55 +0000667
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000668 /// \brief Populate LexicalScope entries with variables' info.
Timur Iskhodzhanov1cd14442013-12-03 15:10:23 +0000669 void collectVariableInfo(SmallPtrSet<const MDNode *, 16> &ProcessedVars);
Eric Christopher27527b22012-11-21 00:03:28 +0000670
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000671 /// \brief Collect variable information from the side table maintained
672 /// by MMI.
Timur Iskhodzhanov1cd14442013-12-03 15:10:23 +0000673 void collectVariableInfoFromMMITable(SmallPtrSet<const MDNode *, 16> &P);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000674
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000675 /// \brief Ensure that a label will be emitted before MI.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000676 void requestLabelBeforeInsn(const MachineInstr *MI) {
Eric Christophera5a79422013-12-09 23:32:48 +0000677 LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol *)0));
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000678 }
679
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000680 /// \brief Return Label preceding the instruction.
Eric Christopher962c9082013-01-15 23:56:56 +0000681 MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000682
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000683 /// \brief Ensure that a label will be emitted after MI.
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000684 void requestLabelAfterInsn(const MachineInstr *MI) {
Eric Christophera5a79422013-12-09 23:32:48 +0000685 LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol *)0));
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000686 }
687
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000688 /// \brief Return Label immediately following the instruction.
Eric Christopher962c9082013-01-15 23:56:56 +0000689 MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
Jakob Stoklund Olesen9a624fa2011-03-26 02:19:36 +0000690
David Blaikie4bd13b72014-03-07 18:49:45 +0000691 void attachLowHighPC(DwarfCompileUnit *Unit, DIE *D, MCSymbol *Begin,
692 MCSymbol *End);
693
Bill Wendling2f921f82009-05-15 09:23:25 +0000694public:
695 //===--------------------------------------------------------------------===//
696 // Main entry points.
697 //
Chris Lattnerf0d6bd32010-04-05 05:11:15 +0000698 DwarfDebug(AsmPrinter *A, Module *M);
Bill Wendling2f921f82009-05-15 09:23:25 +0000699
Manman Ren4dbdc902013-10-31 17:54:35 +0000700 void insertDIE(const MDNode *TypeMD, DIE *Die) {
701 MDTypeNodeToDieMap.insert(std::make_pair(TypeMD, Die));
702 }
703 DIE *getDIE(const MDNode *TypeMD) {
704 return MDTypeNodeToDieMap.lookup(TypeMD);
705 }
706
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000707 /// \brief Emit all Dwarf sections that should come prior to the
Bill Wendling2f921f82009-05-15 09:23:25 +0000708 /// content.
Eric Christopher58f41952012-11-19 22:42:15 +0000709 void beginModule();
Bill Wendling2f921f82009-05-15 09:23:25 +0000710
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000711 /// \brief Emit all Dwarf sections that should come after the content.
Craig Topper7b883b32014-03-08 06:31:39 +0000712 void endModule() override;
Bill Wendling2f921f82009-05-15 09:23:25 +0000713
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000714 /// \brief Gather pre-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000715 void beginFunction(const MachineFunction *MF) override;
Bill Wendling2f921f82009-05-15 09:23:25 +0000716
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000717 /// \brief Gather and emit post-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000718 void endFunction(const MachineFunction *MF) override;
Bill Wendling2f921f82009-05-15 09:23:25 +0000719
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000720 /// \brief Process beginning of an instruction.
Craig Topper7b883b32014-03-08 06:31:39 +0000721 void beginInstruction(const MachineInstr *MI) override;
Bill Wendling2f921f82009-05-15 09:23:25 +0000722
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000723 /// \brief Process end of an instruction.
Craig Topper7b883b32014-03-08 06:31:39 +0000724 void endInstruction() override;
Devang Patelf20c4f72011-04-12 22:53:02 +0000725
Eric Christopher67646432013-07-26 17:02:41 +0000726 /// \brief Add a DIE to the set of types that we're going to pull into
727 /// type units.
David Blaikie15632ae2014-02-12 00:31:30 +0000728 void addDwarfTypeUnitType(DwarfCompileUnit &CU, StringRef Identifier,
David Blaikief645f962014-01-09 03:23:41 +0000729 DIE *Die, DICompositeType CTy);
Eric Christopher67646432013-07-26 17:02:41 +0000730
Richard Mitton21101b32013-09-19 23:21:01 +0000731 /// \brief Add a label so that arange data can be generated for it.
Alexey Samsonov4436bf02013-10-03 08:54:43 +0000732 void addArangeLabel(SymbolCU SCU) { ArangeLabels.push_back(SCU); }
Richard Mitton21101b32013-09-19 23:21:01 +0000733
Richard Mitton089ed892013-09-23 17:56:20 +0000734 /// \brief For symbols that have a size designated (e.g. common symbols),
735 /// this tracks that size.
Craig Topper7b883b32014-03-08 06:31:39 +0000736 void setSymbolSize(const MCSymbol *Sym, uint64_t Size) override {
Eric Christophera5a79422013-12-09 23:32:48 +0000737 SymSize[Sym] = Size;
738 }
Richard Mitton089ed892013-09-23 17:56:20 +0000739
Eric Christophera2de8262012-12-15 00:04:07 +0000740 /// \brief Recursively Emits a debug information entry.
David Blaikieff3ab2c2013-12-05 01:01:41 +0000741 void emitDIE(DIE *Die);
Eric Christophera2de8262012-12-15 00:04:07 +0000742
Eric Christopher55c51812012-11-21 00:03:31 +0000743 // Experimental DWARF5 features.
744
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000745 /// \brief Returns whether or not to emit tables that dwarf consumers can
746 /// use to accelerate lookup.
Eric Christopher411bd592014-03-06 00:00:53 +0000747 bool useDwarfAccelTables() const { return HasDwarfAccelTables; }
Eric Christopher55c51812012-11-21 00:03:31 +0000748
Eric Christopheracdcbdb2012-11-27 22:43:45 +0000749 /// \brief Returns whether or not to change the current debug info for the
Eric Christophercdf218d2012-12-10 19:51:21 +0000750 /// split dwarf proposal support.
Eric Christopher411bd592014-03-06 00:00:53 +0000751 bool useSplitDwarf() const { return HasSplitDwarf; }
Manman Renac8062b2013-07-02 23:40:10 +0000752
753 /// Returns the Dwarf Version.
754 unsigned getDwarfVersion() const { return DwarfVersion; }
Manman Ren60352032013-09-05 18:48:31 +0000755
Eric Christophera27220f2014-03-05 22:41:20 +0000756 /// Returns the section symbol for the .debug_loc section.
757 MCSymbol *getDebugLocSym() const { return DwarfDebugLocSectionSym; }
758
Eric Christopher384f3fe2014-03-20 19:16:16 +0000759 /// Returns the previous section that was emitted into.
760 const MCSection *getPrevSection() const { return PrevSection; }
761
762 /// Returns the previous CU that was being updated
763 const DwarfCompileUnit *getPrevCU() const { return PrevCU; }
764
Eric Christopher4f17ee02014-03-08 00:29:41 +0000765 /// Returns the entries for the .debug_loc section.
David Blaikie84d8e182014-03-24 22:38:38 +0000766 const SmallVectorImpl<SmallVector<DebugLocEntry, 4>> &
767 getDebugLocEntries() const {
Eric Christopher4f17ee02014-03-08 00:29:41 +0000768 return DotDebugLocEntries;
769 }
770
771 /// \brief Emit an entry for the debug loc section. This can be used to
772 /// handle an entry that's going to be emitted into the debug loc section.
Eric Christopher05135fb2014-03-18 02:18:24 +0000773 void emitDebugLocEntry(ByteStreamer &Streamer, const DebugLocEntry &Entry);
Eric Christopher4f17ee02014-03-08 00:29:41 +0000774
Eric Christopher87b9c492013-10-05 00:32:34 +0000775 /// Find the MDNode for the given reference.
776 template <typename T> T resolve(DIRef<T> Ref) const {
Manman Ren34b3dcc2013-09-10 18:30:07 +0000777 return Ref.resolve(TypeIdentifierMap);
778 }
Manman Ren60352032013-09-05 18:48:31 +0000779
Adrian Prantl1a1647c2014-03-18 02:34:58 +0000780 /// \brief Return the TypeIdentifierMap.
Eric Christopherc0bd5f82014-03-18 20:39:54 +0000781 const DITypeIdentifierMap &getTypeIdentifierMap() const {
Adrian Prantl1a1647c2014-03-18 02:34:58 +0000782 return TypeIdentifierMap;
783 }
784
Eric Christopherdd508382014-03-06 00:00:56 +0000785 /// Find the DwarfCompileUnit for the given CU Die.
786 DwarfCompileUnit *lookupUnit(const DIE *CU) const {
787 return CUDieMap.lookup(CU);
788 }
Manman Ren3eb9dff2013-09-09 19:05:21 +0000789 /// isSubprogramContext - Return true if Context is either a subprogram
790 /// or another context nested inside a subprogram.
791 bool isSubprogramContext(const MDNode *Context);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000792};
Bill Wendling2f921f82009-05-15 09:23:25 +0000793} // End of namespace llvm
794
795#endif