blob: 02b984ebf6ff9cf109c8262b7f3c9a50c2645da4 [file] [log] [blame]
Devang Patel5eb43192011-04-12 17:40:32 +00001//===-- llvm/CodeGen/DwarfCompileUnit.h - Dwarf Compile Unit ---*- 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 compile unit.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
15#define CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
16
17#include "DIE.h"
Eric Christopher9e429ae2013-10-05 00:27:02 +000018#include "DwarfDebug.h"
Devang Patel5eb43192011-04-12 17:40:32 +000019#include "llvm/ADT/DenseMap.h"
David Blaikief2443192013-10-21 17:28:37 +000020#include "llvm/ADT/Optional.h"
Devang Patel5eb43192011-04-12 17:40:32 +000021#include "llvm/ADT/OwningPtr.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000022#include "llvm/ADT/StringMap.h"
23#include "llvm/DebugInfo.h"
David Blaikief3cd7c52013-06-28 20:05:04 +000024#include "llvm/MC/MCExpr.h"
Devang Patel5eb43192011-04-12 17:40:32 +000025
26namespace llvm {
27
Devang Patelf20c4f72011-04-12 22:53:02 +000028class MachineLocation;
29class MachineOperand;
30class ConstantInt;
David Blaikiea39a76e2013-01-20 01:18:01 +000031class ConstantFP;
Devang Patelf20c4f72011-04-12 22:53:02 +000032class DbgVariable;
33
Devang Patel5eb43192011-04-12 17:40:32 +000034//===----------------------------------------------------------------------===//
Eric Christopher2b4f7732011-11-07 09:18:32 +000035/// CompileUnit - This dwarf writer support class manages information associated
Devang Patel5eb43192011-04-12 17:40:32 +000036/// with a source file.
Benjamin Kramer079b96e2013-09-11 18:05:11 +000037class CompileUnit {
Eli Benderskyb42d1462012-12-03 18:45:45 +000038 /// UniqueID - a numeric ID unique among all CUs in the module
Devang Patel5eb43192011-04-12 17:40:32 +000039 ///
Eli Benderskyb42d1462012-12-03 18:45:45 +000040 unsigned UniqueID;
Devang Patel5eb43192011-04-12 17:40:32 +000041
Eric Christopherbfceb2f2013-08-26 23:50:38 +000042 /// Node - MDNode for the compile unit.
David Blaikie5a152402013-11-15 23:52:02 +000043 DICompileUnit Node;
Eric Christopher3a2656b2012-02-22 08:46:13 +000044
Eric Christopherbca5c632013-11-21 01:14:00 +000045 /// Language - Language for the translation unit associated with this CU.
46 uint16_t Language;
47
Eric Christophere3411672013-10-24 21:54:58 +000048 /// CUDie - Compile unit debug information entry.
Devang Patel5eb43192011-04-12 17:40:32 +000049 ///
50 const OwningPtr<DIE> CUDie;
51
Devang Patelf20c4f72011-04-12 22:53:02 +000052 /// Asm - Target of Dwarf emission.
53 AsmPrinter *Asm;
54
Eric Christophere698f532012-12-20 21:58:36 +000055 // Holders for some common dwarf information.
Devang Patelf20c4f72011-04-12 22:53:02 +000056 DwarfDebug *DD;
Eric Christophere698f532012-12-20 21:58:36 +000057 DwarfUnits *DU;
Devang Patelf20c4f72011-04-12 22:53:02 +000058
Devang Patel5eb43192011-04-12 17:40:32 +000059 /// IndexTyDie - An anonymous type for index type. Owned by CUDie.
60 DIE *IndexTyDie;
61
Eric Christopher61560112013-05-08 00:11:10 +000062 /// MDNodeToDieMap - Tracks the mapping of unit level debug information
Devang Patel5eb43192011-04-12 17:40:32 +000063 /// variables to debug information entries.
64 DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
65
Eric Christopher61560112013-05-08 00:11:10 +000066 /// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug information
Devang Patel5eb43192011-04-12 17:40:32 +000067 /// descriptors to debug information entries using a DIEEntry proxy.
68 DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap;
69
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +000070 /// GlobalNames - A map of globally visible named entities for this unit.
71 ///
Eric Christopher0fe676a2013-11-21 00:48:22 +000072 StringMap<const DIE *> GlobalNames;
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +000073
Devang Patel5eb43192011-04-12 17:40:32 +000074 /// GlobalTypes - A map of globally visible types for this unit.
75 ///
Eric Christopher0fe676a2013-11-21 00:48:22 +000076 StringMap<const DIE *> GlobalTypes;
Devang Patel5eb43192011-04-12 17:40:32 +000077
Eric Christopher4996c702011-11-07 09:24:32 +000078 /// AccelNames - A map of names for the name accelerator table.
79 ///
David Blaikie2ea848b2013-11-19 22:51:04 +000080 StringMap<std::vector<const DIE *> > AccelNames;
81 StringMap<std::vector<const DIE *> > AccelObjC;
82 StringMap<std::vector<const DIE *> > AccelNamespace;
83 StringMap<std::vector<std::pair<const DIE *, unsigned> > > AccelTypes;
Eric Christopher4996c702011-11-07 09:24:32 +000084
Devang Patelf20c4f72011-04-12 22:53:02 +000085 /// DIEBlocks - A list of all the DIEBlocks in use.
86 std::vector<DIEBlock *> DIEBlocks;
87
Devang Patel89543712011-08-15 17:24:54 +000088 /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that
89 /// need DW_AT_containing_type attribute. This attribute points to a DIE that
90 /// corresponds to the MDNode mapped with the subprogram DIE.
91 DenseMap<DIE *, const MDNode *> ContainingTypeMap;
92
Eric Christopher3264a482013-10-05 00:39:55 +000093 // DIEValueAllocator - All DIEValues are allocated through this allocator.
94 BumpPtrAllocator DIEValueAllocator;
95
96 // DIEIntegerOne - A preallocated DIEValue because 1 is used frequently.
97 DIEInteger *DIEIntegerOne;
98
Devang Patel5eb43192011-04-12 17:40:32 +000099public:
David Blaikie5a152402013-11-15 23:52:02 +0000100 CompileUnit(unsigned UID, DIE *D, DICompileUnit CU, AsmPrinter *A,
Eric Christopherbf2d23c2013-06-24 21:07:27 +0000101 DwarfDebug *DW, DwarfUnits *DWU);
David Blaikie409dd9c2013-11-19 23:08:21 +0000102 CompileUnit(unsigned UID, DIE *D, uint16_t Language, AsmPrinter *A,
103 DwarfDebug *DW, DwarfUnits *DWU);
Devang Patelf20c4f72011-04-12 22:53:02 +0000104 ~CompileUnit();
Devang Patel5eb43192011-04-12 17:40:32 +0000105
106 // Accessors.
Eric Christopherca68bbf2013-08-26 23:58:22 +0000107 unsigned getUniqueID() const { return UniqueID; }
David Blaikie409dd9c2013-11-19 23:08:21 +0000108 uint16_t getLanguage() const { return Language; }
David Blaikieb01f13e2013-11-15 23:54:45 +0000109 DICompileUnit getNode() const { return Node; }
Eric Christopherca68bbf2013-08-26 23:58:22 +0000110 DIE *getCUDie() const { return CUDie.get(); }
Eric Christopher0fe676a2013-11-21 00:48:22 +0000111 const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; }
112 const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; }
Devang Patel5eb43192011-04-12 17:40:32 +0000113
David Blaikie2ea848b2013-11-19 22:51:04 +0000114 const StringMap<std::vector<const DIE *> > &getAccelNames() const {
Eric Christopherd9843b32011-11-10 19:25:34 +0000115 return AccelNames;
116 }
David Blaikie2ea848b2013-11-19 22:51:04 +0000117 const StringMap<std::vector<const DIE *> > &getAccelObjC() const {
Eric Christopher4996c702011-11-07 09:24:32 +0000118 return AccelObjC;
119 }
David Blaikie2ea848b2013-11-19 22:51:04 +0000120 const StringMap<std::vector<const DIE *> > &getAccelNamespace() const {
Eric Christopher66b37db2011-11-10 21:47:55 +0000121 return AccelNamespace;
122 }
David Blaikie2ea848b2013-11-19 22:51:04 +0000123 const StringMap<std::vector<std::pair<const DIE *, unsigned> > > &
Eric Christopherca68bbf2013-08-26 23:58:22 +0000124 getAccelTypes() const {
Eric Christopher66b37db2011-11-10 21:47:55 +0000125 return AccelTypes;
126 }
Eric Christopher48fef592012-12-20 21:58:40 +0000127
Manman Rence20d462013-10-29 22:57:10 +0000128 unsigned getDebugInfoOffset() const { return DebugInfoOffset; }
129 void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; }
130
Devang Patel5eb43192011-04-12 17:40:32 +0000131 /// hasContent - Return true if this compile unit has something to write out.
132 ///
133 bool hasContent() const { return !CUDie->getChildren().empty(); }
134
Eric Christopher2c8b7902013-10-17 02:06:06 +0000135 /// getParentContextString - Get a string containing the language specific
136 /// context for a global name.
137 std::string getParentContextString(DIScope Context) const;
138
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +0000139 /// addGlobalName - Add a new global entity to the compile unit.
140 ///
Eric Christopher2c8b7902013-10-17 02:06:06 +0000141 void addGlobalName(StringRef Name, DIE *Die, DIScope Context);
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +0000142
Devang Patel5eb43192011-04-12 17:40:32 +0000143 /// addGlobalType - Add a new global type to the compile unit.
144 ///
Devang Patel562c7422011-06-01 00:23:24 +0000145 void addGlobalType(DIType Ty);
Devang Patel5eb43192011-04-12 17:40:32 +0000146
Eric Christopherfa205ca2013-10-05 00:05:51 +0000147 /// addPubTypes - Add a set of types from the subprogram to the global types.
148 void addPubTypes(DISubprogram SP);
149
Eric Christopher4996c702011-11-07 09:24:32 +0000150 /// addAccelName - Add a new name to the name accelerator table.
David Blaikie2ea848b2013-11-19 22:51:04 +0000151 void addAccelName(StringRef Name, const DIE *Die);
Eric Christopher9cd26af2013-09-20 23:22:52 +0000152
153 /// addAccelObjC - Add a new name to the ObjC accelerator table.
David Blaikie2ea848b2013-11-19 22:51:04 +0000154 void addAccelObjC(StringRef Name, const DIE *Die);
Eric Christopher9cd26af2013-09-20 23:22:52 +0000155
156 /// addAccelNamespace - Add a new name to the namespace accelerator table.
David Blaikie2ea848b2013-11-19 22:51:04 +0000157 void addAccelNamespace(StringRef Name, const DIE *Die);
Eric Christopher9cd26af2013-09-20 23:22:52 +0000158
159 /// addAccelType - Add a new type to the type accelerator table.
David Blaikie2ea848b2013-11-19 22:51:04 +0000160 void addAccelType(StringRef Name, std::pair<const DIE *, unsigned> Die);
Eric Christopher48fef592012-12-20 21:58:40 +0000161
Devang Patel5eb43192011-04-12 17:40:32 +0000162 /// getDIE - Returns the debug information entry map slot for the
Manman Ren4dbdc902013-10-31 17:54:35 +0000163 /// specified debug variable. We delegate the request to DwarfDebug
164 /// when the MDNode can be part of the type system, since DIEs for
165 /// the type system can be shared across CUs and the mappings are
166 /// kept in DwarfDebug.
David Blaikie2ad00162013-11-15 23:09:13 +0000167 DIE *getDIE(DIDescriptor D) const;
Devang Patel5eb43192011-04-12 17:40:32 +0000168
Eric Christopherf0388b72013-10-04 23:49:29 +0000169 DIEBlock *getDIEBlock() { return new (DIEValueAllocator) DIEBlock(); }
Devang Patelf20c4f72011-04-12 22:53:02 +0000170
Manman Ren4dbdc902013-10-31 17:54:35 +0000171 /// insertDIE - Insert DIE into the map. We delegate the request to DwarfDebug
172 /// when the MDNode can be part of the type system, since DIEs for
173 /// the type system can be shared across CUs and the mappings are
174 /// kept in DwarfDebug.
David Blaikie2ad00162013-11-15 23:09:13 +0000175 void insertDIE(DIDescriptor Desc, DIE *D);
Devang Patel5eb43192011-04-12 17:40:32 +0000176
Devang Patel5eb43192011-04-12 17:40:32 +0000177 /// addDie - Adds or interns the DIE to the compile unit.
178 ///
Eric Christopherfe3ae442013-10-04 23:49:31 +0000179 void addDie(DIE *Buffer) { CUDie->addChild(Buffer); }
Devang Patel5eb43192011-04-12 17:40:32 +0000180
Eric Christopherbb69a272012-08-24 01:14:27 +0000181 /// addFlag - Add a flag that is true to the DIE.
David Blaikief2443192013-10-21 17:28:37 +0000182 void addFlag(DIE *Die, dwarf::Attribute Attribute);
Eric Christopher48fef592012-12-20 21:58:40 +0000183
Devang Patelf20c4f72011-04-12 22:53:02 +0000184 /// addUInt - Add an unsigned integer attribute data and value.
185 ///
David Blaikief2443192013-10-21 17:28:37 +0000186 void addUInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
187 uint64_t Integer);
188
189 void addUInt(DIEBlock *Block, dwarf::Form Form, uint64_t Integer);
Devang Patelf20c4f72011-04-12 22:53:02 +0000190
191 /// addSInt - Add an signed integer attribute data and value.
192 ///
David Blaikief2443192013-10-21 17:28:37 +0000193 void addSInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
194 int64_t Integer);
195
196 void addSInt(DIEBlock *Die, Optional<dwarf::Form> Form, int64_t Integer);
Devang Patelf20c4f72011-04-12 22:53:02 +0000197
198 /// addString - Add a string attribute data and value.
199 ///
David Blaikief2443192013-10-21 17:28:37 +0000200 void addString(DIE *Die, dwarf::Attribute Attribute, const StringRef Str);
Devang Patelf20c4f72011-04-12 22:53:02 +0000201
Eric Christopher2cbd5762013-01-07 19:32:41 +0000202 /// addLocalString - Add a string attribute data and value.
203 ///
Eric Christophera07e4f52013-11-19 09:28:34 +0000204 void addLocalString(DIE *Die, dwarf::Attribute Attribute,
205 const StringRef Str);
Eric Christopher2cbd5762013-01-07 19:32:41 +0000206
Ulrich Weigand396ba8b2013-07-02 18:46:26 +0000207 /// addExpr - Add a Dwarf expression attribute data and value.
208 ///
David Blaikief2443192013-10-21 17:28:37 +0000209 void addExpr(DIEBlock *Die, dwarf::Form Form, const MCExpr *Expr);
Ulrich Weigand396ba8b2013-07-02 18:46:26 +0000210
Devang Patelf20c4f72011-04-12 22:53:02 +0000211 /// addLabel - Add a Dwarf label attribute data and value.
212 ///
David Blaikief2443192013-10-21 17:28:37 +0000213 void addLabel(DIE *Die, dwarf::Attribute Attribute, dwarf::Form Form,
Devang Patelf20c4f72011-04-12 22:53:02 +0000214 const MCSymbol *Label);
215
David Blaikief2443192013-10-21 17:28:37 +0000216 void addLabel(DIEBlock *Die, dwarf::Form Form, const MCSymbol *Label);
217
Eric Christopher962c9082013-01-15 23:56:56 +0000218 /// addLabelAddress - Add a dwarf label attribute data and value using
219 /// either DW_FORM_addr or DW_FORM_GNU_addr_index.
220 ///
David Blaikief2443192013-10-21 17:28:37 +0000221 void addLabelAddress(DIE *Die, dwarf::Attribute Attribute, MCSymbol *Label);
Eric Christopher962c9082013-01-15 23:56:56 +0000222
Eric Christophere9ec2452013-01-18 22:11:33 +0000223 /// addOpAddress - Add a dwarf op address data and value using the
224 /// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index.
225 ///
David Blaikief2443192013-10-21 17:28:37 +0000226 void addOpAddress(DIEBlock *Die, const MCSymbol *Label);
Eric Christophere9ec2452013-01-18 22:11:33 +0000227
Devang Patelf20c4f72011-04-12 22:53:02 +0000228 /// addDelta - Add a label delta attribute data and value.
229 ///
Eric Christophera07e4f52013-11-19 09:28:34 +0000230 void addDelta(DIE *Die, dwarf::Attribute Attribute, dwarf::Form Form,
231 const MCSymbol *Hi, const MCSymbol *Lo);
Devang Patelf20c4f72011-04-12 22:53:02 +0000232
233 /// addDIEEntry - Add a DIE attribute data and value.
234 ///
David Blaikief2443192013-10-21 17:28:37 +0000235 void addDIEEntry(DIE *Die, dwarf::Attribute Attribute, DIE *Entry);
Eric Christopher48fef592012-12-20 21:58:40 +0000236
Manman Ren4dbdc902013-10-31 17:54:35 +0000237 /// addDIEEntry - Add a DIE attribute data and value.
238 ///
239 void addDIEEntry(DIE *Die, dwarf::Attribute Attribute, DIEEntry *Entry);
240
Devang Patelf20c4f72011-04-12 22:53:02 +0000241 /// addBlock - Add block data.
242 ///
David Blaikief2443192013-10-21 17:28:37 +0000243 void addBlock(DIE *Die, dwarf::Attribute Attribute, DIEBlock *Block);
Devang Patelf20c4f72011-04-12 22:53:02 +0000244
245 /// addSourceLine - Add location information to specified debug information
246 /// entry.
247 void addSourceLine(DIE *Die, DIVariable V);
248 void addSourceLine(DIE *Die, DIGlobalVariable G);
249 void addSourceLine(DIE *Die, DISubprogram SP);
250 void addSourceLine(DIE *Die, DIType Ty);
251 void addSourceLine(DIE *Die, DINameSpace NS);
Eric Christopher70e1bd82012-03-29 08:42:56 +0000252 void addSourceLine(DIE *Die, DIObjCProperty Ty);
Devang Patelf20c4f72011-04-12 22:53:02 +0000253
254 /// addAddress - Add an address attribute to a die based on the location
255 /// provided.
Eric Christophera07e4f52013-11-19 09:28:34 +0000256 void addAddress(DIE *Die, dwarf::Attribute Attribute,
257 const MachineLocation &Location, bool Indirect = false);
Devang Patelf20c4f72011-04-12 22:53:02 +0000258
Devang Patelf20c4f72011-04-12 22:53:02 +0000259 /// addConstantValue - Add constant value entry in variable DIE.
Eric Christopher78fcf4902013-07-03 01:08:30 +0000260 void addConstantValue(DIE *Die, const MachineOperand &MO, DIType Ty);
261 void addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned);
262 void addConstantValue(DIE *Die, const APInt &Val, bool Unsigned);
Devang Patelf20c4f72011-04-12 22:53:02 +0000263
264 /// addConstantFPValue - Add constant value entry in variable DIE.
Eric Christopher78fcf4902013-07-03 01:08:30 +0000265 void addConstantFPValue(DIE *Die, const MachineOperand &MO);
266 void addConstantFPValue(DIE *Die, const ConstantFP *CFP);
Devang Patelf20c4f72011-04-12 22:53:02 +0000267
268 /// addTemplateParams - Add template parameters in buffer.
269 void addTemplateParams(DIE &Buffer, DIArray TParams);
270
Devang Patelba5fbf12011-04-26 19:06:18 +0000271 /// addRegisterOp - Add register operand.
David Blaikief2443192013-10-21 17:28:37 +0000272 void addRegisterOp(DIEBlock *TheDie, unsigned Reg);
Devang Patelba5fbf12011-04-26 19:06:18 +0000273
274 /// addRegisterOffset - Add register offset.
David Blaikief2443192013-10-21 17:28:37 +0000275 void addRegisterOffset(DIEBlock *TheDie, unsigned Reg, int64_t Offset);
Devang Patelba5fbf12011-04-26 19:06:18 +0000276
Devang Patelf20c4f72011-04-12 22:53:02 +0000277 /// addComplexAddress - Start with the address based on the location provided,
278 /// and generate the DWARF information necessary to find the actual variable
279 /// (navigating the extra location information encoded in the type) based on
280 /// the starting location. Add the DWARF information to the die.
281 ///
Eric Christophera07e4f52013-11-19 09:28:34 +0000282 void addComplexAddress(const DbgVariable &DV, DIE *Die,
283 dwarf::Attribute Attribute,
Devang Patelf20c4f72011-04-12 22:53:02 +0000284 const MachineLocation &Location);
285
286 // FIXME: Should be reformulated in terms of addComplexAddress.
287 /// addBlockByrefAddress - Start with the address based on the location
288 /// provided, and generate the DWARF information necessary to find the
289 /// actual Block variable (navigating the Block struct) based on the
290 /// starting location. Add the DWARF information to the die. Obsolete,
291 /// please use addComplexAddress instead.
292 ///
Eric Christophera07e4f52013-11-19 09:28:34 +0000293 void addBlockByrefAddress(const DbgVariable &DV, DIE *Die,
294 dwarf::Attribute Attribute,
Devang Patelf20c4f72011-04-12 22:53:02 +0000295 const MachineLocation &Location);
296
Eric Christopher48fef592012-12-20 21:58:40 +0000297 /// addVariableAddress - Add DW_AT_location attribute for a
Devang Patel77dc5412011-04-27 22:45:24 +0000298 /// DbgVariable based on provided MachineLocation.
Eric Christopherbf2d23c2013-06-24 21:07:27 +0000299 void addVariableAddress(const DbgVariable &DV, DIE *Die,
300 MachineLocation Location);
Devang Patelf20c4f72011-04-12 22:53:02 +0000301
Eric Christopher7285c7d2012-03-28 07:34:31 +0000302 /// addType - Add a new type attribute to the specified entity. This takes
303 /// and attribute parameter because DW_AT_friend attributes are also
304 /// type references.
Eric Christophera07e4f52013-11-19 09:28:34 +0000305 void addType(DIE *Entity, DIType Ty,
306 dwarf::Attribute Attribute = dwarf::DW_AT_type);
Devang Patelf20c4f72011-04-12 22:53:02 +0000307
308 /// getOrCreateNameSpace - Create a DIE for DINameSpace.
309 DIE *getOrCreateNameSpace(DINameSpace NS);
310
Devang Patel89543712011-08-15 17:24:54 +0000311 /// getOrCreateSubprogramDIE - Create new DIE using SP.
312 DIE *getOrCreateSubprogramDIE(DISubprogram SP);
313
Devang Patelf20c4f72011-04-12 22:53:02 +0000314 /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
315 /// given DIType.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000316 DIE *getOrCreateTypeDIE(const MDNode *N);
Devang Patelf20c4f72011-04-12 22:53:02 +0000317
Eric Christopherfa205ca2013-10-05 00:05:51 +0000318 /// getOrCreateContextDIE - Get context owner's DIE.
David Blaikie409dd9c2013-11-19 23:08:21 +0000319 DIE *createTypeDIE(DICompositeType Ty);
320
321 /// getOrCreateContextDIE - Get context owner's DIE.
Eric Christopherfa205ca2013-10-05 00:05:51 +0000322 DIE *getOrCreateContextDIE(DIScope Context);
Devang Patelf20c4f72011-04-12 22:53:02 +0000323
Devang Pateldfd6ec32011-08-15 17:57:41 +0000324 /// createGlobalVariableDIE - create global variable DIE.
David Blaikiea781b25b2013-11-17 21:55:13 +0000325 void createGlobalVariableDIE(DIGlobalVariable GV);
Devang Pateldfd6ec32011-08-15 17:57:41 +0000326
Eric Christopherfa205ca2013-10-05 00:05:51 +0000327 /// constructContainingTypeDIEs - Construct DIEs for types that contain
328 /// vtables.
329 void constructContainingTypeDIEs();
Devang Patelf20c4f72011-04-12 22:53:02 +0000330
Eric Christopherfa205ca2013-10-05 00:05:51 +0000331 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
Eric Christopher34a2c872013-11-15 01:43:19 +0000332 DIE *constructVariableDIE(DbgVariable &DV, bool isScopeAbstract);
Eric Christopherfa205ca2013-10-05 00:05:51 +0000333
Manman Renb987e512013-10-29 00:53:03 +0000334 /// Create a DIE with the given Tag, add the DIE to its parent, and
335 /// call insertDIE if MD is not null.
Eric Christophera07e4f52013-11-19 09:28:34 +0000336 DIE *createAndAddDIE(unsigned Tag, DIE &Parent,
337 DIDescriptor N = DIDescriptor());
Manman Renb987e512013-10-29 00:53:03 +0000338
David Blaikie409dd9c2013-11-19 23:08:21 +0000339 /// constructTypeDIEImpl - Construct type DIE that is not a type unit
340 /// reference from a DICompositeType.
341 void constructTypeDIEImpl(DIE &Buffer, DICompositeType CTy);
342
David Blaikie6b288cf2013-10-30 20:42:41 +0000343 /// Compute the size of a header for this unit, not including the initial
344 /// length field.
345 unsigned getHeaderSize() const {
346 return sizeof(int16_t) + // DWARF version number
347 sizeof(int32_t) + // Offset Into Abbrev. Section
348 sizeof(int8_t); // Pointer Size (in bytes)
349 }
350
351 /// Emit the header for this unit, not including the initial length field.
352 void emitHeader(const MCSection *ASection, const MCSymbol *ASectionSym);
353
Eric Christopherfa205ca2013-10-05 00:05:51 +0000354private:
Devang Patelf20c4f72011-04-12 22:53:02 +0000355 /// constructTypeDIE - Construct basic type die from DIBasicType.
Eric Christopherf0388b72013-10-04 23:49:29 +0000356 void constructTypeDIE(DIE &Buffer, DIBasicType BTy);
Devang Patelf20c4f72011-04-12 22:53:02 +0000357
358 /// constructTypeDIE - Construct derived type die from DIDerivedType.
Eric Christopherf0388b72013-10-04 23:49:29 +0000359 void constructTypeDIE(DIE &Buffer, DIDerivedType DTy);
Devang Patelf20c4f72011-04-12 22:53:02 +0000360
361 /// constructTypeDIE - Construct type DIE from DICompositeType.
Eric Christopherf0388b72013-10-04 23:49:29 +0000362 void constructTypeDIE(DIE &Buffer, DICompositeType CTy);
Devang Patelf20c4f72011-04-12 22:53:02 +0000363
364 /// constructSubrangeDIE - Construct subrange DIE from DISubrange.
365 void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
366
367 /// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
Eric Christopherdf9955d2013-11-11 18:52:31 +0000368 void constructArrayTypeDIE(DIE &Buffer, DICompositeType CTy);
Devang Patelf20c4f72011-04-12 22:53:02 +0000369
370 /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
Eric Christopheraeb105f2013-11-11 18:52:39 +0000371 void constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy);
Devang Patelf20c4f72011-04-12 22:53:02 +0000372
Manman Ren230ec862013-10-23 23:00:44 +0000373 /// constructMemberDIE - Construct member DIE from DIDerivedType.
374 void constructMemberDIE(DIE &Buffer, DIDerivedType DT);
Manman Ren7cc62702013-10-18 21:14:19 +0000375
Manman Renffc9a712013-10-23 23:05:28 +0000376 /// constructTemplateTypeParameterDIE - Construct new DIE for the given
377 /// DITemplateTypeParameter.
378 void constructTemplateTypeParameterDIE(DIE &Buffer,
379 DITemplateTypeParameter TP);
Manman Ren7cc62702013-10-18 21:14:19 +0000380
Manman Renffc9a712013-10-23 23:05:28 +0000381 /// constructTemplateValueParameterDIE - Construct new DIE for the given
382 /// DITemplateValueParameter.
383 void constructTemplateValueParameterDIE(DIE &Buffer,
384 DITemplateValueParameter TVP);
Devang Patelf20c4f72011-04-12 22:53:02 +0000385
Manman Renc6b63922013-10-14 20:33:57 +0000386 /// getOrCreateStaticMemberDIE - Create new static data member DIE.
387 DIE *getOrCreateStaticMemberDIE(DIDerivedType DT);
Eric Christopher4d23a4a2013-01-16 01:22:23 +0000388
Manman Rence20d462013-10-29 22:57:10 +0000389 /// Offset of the CUDie from beginning of debug info section.
390 unsigned DebugInfoOffset;
391
Eric Christopherfa205ca2013-10-05 00:05:51 +0000392 /// getLowerBoundDefault - Return the default lower bound for an array. If the
393 /// DWARF version doesn't handle the language, return -1.
394 int64_t getDefaultLowerBound() const;
395
396 /// getDIEEntry - Returns the debug information entry for the specified
397 /// debug variable.
398 DIEEntry *getDIEEntry(const MDNode *N) const {
399 return MDNodeToDIEEntryMap.lookup(N);
400 }
401
402 /// insertDIEEntry - Insert debug information entry into the map.
403 void insertDIEEntry(const MDNode *N, DIEEntry *E) {
404 MDNodeToDIEEntryMap.insert(std::make_pair(N, E));
405 }
406
407 // getIndexTyDie - Get an anonymous type for index type.
408 DIE *getIndexTyDie() { return IndexTyDie; }
409
410 // setIndexTyDie - Set D as anonymous type for index which can be reused
411 // later.
412 void setIndexTyDie(DIE *D) { IndexTyDie = D; }
413
414 /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
415 /// information entry.
416 DIEEntry *createDIEEntry(DIE *Entry);
David Blaikie684fc532013-05-06 23:33:07 +0000417
Eric Christopher9e429ae2013-10-05 00:27:02 +0000418 /// resolve - Look in the DwarfDebug map for the MDNode that
Eric Christopher87b9c492013-10-05 00:32:34 +0000419 /// corresponds to the reference.
Eric Christopher9e429ae2013-10-05 00:27:02 +0000420 template <typename T> T resolve(DIRef<T> Ref) const {
421 return DD->resolve(Ref);
422 }
David Blaikie2ea848b2013-11-19 22:51:04 +0000423
424 /// If this is a named finished type then include it in the list of types for
425 /// the accelerator tables.
426 void updateAcceleratorTables(DIType Ty, const DIE *TyDIE);
Devang Patel5eb43192011-04-12 17:40:32 +0000427};
428
429} // end llvm namespace
430#endif