blob: 6e325812455ef208cb6b12d9bb49eb151ccacb30 [file] [log] [blame]
Chris Lattnera45664f2008-11-10 02:56:27 +00001//===--- llvm/Analysis/DebugInfo.h - Debug Information Helpers --*- 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 defines a bunch of datatypes that are useful for creating and
Bill Wendlingdc817b62009-05-14 18:26:15 +000011// walking debug info in LLVM IR form. They essentially provide wrappers around
12// the information in the global variables that's needed when constructing the
13// DWARF information.
Chris Lattnera45664f2008-11-10 02:56:27 +000014//
15//===----------------------------------------------------------------------===//
16
Evan Cheng891415b2009-01-26 07:31:20 +000017#ifndef LLVM_ANALYSIS_DEBUGINFO_H
18#define LLVM_ANALYSIS_DEBUGINFO_H
Chris Lattnera45664f2008-11-10 02:56:27 +000019
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000020#include "llvm/Target/TargetMachine.h"
Chris Lattnera45664f2008-11-10 02:56:27 +000021#include "llvm/ADT/StringMap.h"
22#include "llvm/ADT/DenseMap.h"
Devang Patel13e16b62009-06-26 01:49:18 +000023#include "llvm/ADT/SmallVector.h"
Devang Patel486938f2009-01-12 21:38:43 +000024#include "llvm/Support/Dwarf.h"
Chris Lattnera45664f2008-11-10 02:56:27 +000025
26namespace llvm {
27 class BasicBlock;
28 class Constant;
29 class Function;
30 class GlobalVariable;
31 class Module;
Chris Lattner497a7a82008-11-10 04:10:34 +000032 class Type;
Chris Lattnera45664f2008-11-10 02:56:27 +000033 class Value;
Cedric Venetaff9c272009-02-14 16:06:42 +000034 struct DbgStopPointInst;
35 struct DbgDeclareInst;
Devang Patel9e529c32009-07-02 01:15:24 +000036 struct DbgFuncStartInst;
37 struct DbgRegionStartInst;
38 struct DbgRegionEndInst;
39 class DebugLoc;
40 class DebugLocTracker;
Torok Edwin620f2802008-12-16 09:07:36 +000041 class Instruction;
Owen Anderson99035272009-07-07 17:12:53 +000042 class LLVMContext;
Devang Patela913f4f2009-01-20 19:08:39 +000043
Chris Lattnera45664f2008-11-10 02:56:27 +000044 class DIDescriptor {
Chris Lattnera45664f2008-11-10 02:56:27 +000045 protected:
Devang Patel9af2fa82009-06-23 22:25:41 +000046 GlobalVariable *DbgGV;
Devang Patela913f4f2009-01-20 19:08:39 +000047
Chris Lattnera45664f2008-11-10 02:56:27 +000048 /// DIDescriptor constructor. If the specified GV is non-null, this checks
49 /// to make sure that the tag in the descriptor matches 'RequiredTag'. If
50 /// not, the debug info is corrupt and we ignore it.
51 DIDescriptor(GlobalVariable *GV, unsigned RequiredTag);
Devang Patela913f4f2009-01-20 19:08:39 +000052
Bill Wendling0582ae92009-03-13 04:39:26 +000053 const std::string &getStringField(unsigned Elt, std::string &Result) const;
Chris Lattnera45664f2008-11-10 02:56:27 +000054 unsigned getUnsignedField(unsigned Elt) const {
55 return (unsigned)getUInt64Field(Elt);
56 }
57 uint64_t getUInt64Field(unsigned Elt) const;
58 DIDescriptor getDescriptorField(unsigned Elt) const;
Devang Patela913f4f2009-01-20 19:08:39 +000059
Chris Lattnera45664f2008-11-10 02:56:27 +000060 template <typename DescTy>
61 DescTy getFieldAs(unsigned Elt) const {
Torok Edwinb07fbd92008-12-13 08:25:29 +000062 return DescTy(getDescriptorField(Elt).getGV());
Chris Lattnera45664f2008-11-10 02:56:27 +000063 }
Devang Patela913f4f2009-01-20 19:08:39 +000064
Chris Lattnera45664f2008-11-10 02:56:27 +000065 GlobalVariable *getGlobalVariableField(unsigned Elt) const;
Devang Patela913f4f2009-01-20 19:08:39 +000066
Chris Lattnera45664f2008-11-10 02:56:27 +000067 public:
Devang Patel9af2fa82009-06-23 22:25:41 +000068 explicit DIDescriptor() : DbgGV(0) {}
69 explicit DIDescriptor(GlobalVariable *GV) : DbgGV(GV) {}
Chris Lattnera45664f2008-11-10 02:56:27 +000070
Devang Patel9af2fa82009-06-23 22:25:41 +000071 bool isNull() const { return DbgGV == 0; }
Chris Lattnera45664f2008-11-10 02:56:27 +000072
Devang Patel9af2fa82009-06-23 22:25:41 +000073 GlobalVariable *getGV() const { return DbgGV; }
Devang Patel2c1623a2009-01-05 18:06:21 +000074
Devang Patel8526cc02009-01-05 22:35:52 +000075 unsigned getVersion() const {
Devang Patel6906ba52009-01-20 19:22:03 +000076 return getUnsignedField(0) & LLVMDebugVersionMask;
Devang Patel8526cc02009-01-05 22:35:52 +000077 }
Devang Patela913f4f2009-01-20 19:08:39 +000078
Devang Patel2c1623a2009-01-05 18:06:21 +000079 unsigned getTag() const {
Devang Patel6906ba52009-01-20 19:22:03 +000080 return getUnsignedField(0) & ~LLVMDebugVersionMask;
Devang Patel2c1623a2009-01-05 18:06:21 +000081 }
Devang Patela913f4f2009-01-20 19:08:39 +000082
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000083 /// ValidDebugInfo - Return true if V represents valid debug info value.
84 static bool ValidDebugInfo(Value *V, CodeGenOpt::Level OptLevel);
85
Bill Wendling16de0132009-05-05 22:19:25 +000086 /// dump - print descriptor.
87 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +000088 };
Devang Patela913f4f2009-01-20 19:08:39 +000089
Devang Patel68afdc32009-01-05 18:33:01 +000090 /// DISubrange - This is used to represent ranges, for array bounds.
91 class DISubrange : public DIDescriptor {
92 public:
Bill Wendlingdc817b62009-05-14 18:26:15 +000093 explicit DISubrange(GlobalVariable *GV = 0)
94 : DIDescriptor(GV, dwarf::DW_TAG_subrange_type) {}
Devang Patela913f4f2009-01-20 19:08:39 +000095
Devang Patel68afdc32009-01-05 18:33:01 +000096 int64_t getLo() const { return (int64_t)getUInt64Field(1); }
97 int64_t getHi() const { return (int64_t)getUInt64Field(2); }
98 };
Devang Patela913f4f2009-01-20 19:08:39 +000099
Chris Lattnera45664f2008-11-10 02:56:27 +0000100 /// DIArray - This descriptor holds an array of descriptors.
101 class DIArray : public DIDescriptor {
102 public:
103 explicit DIArray(GlobalVariable *GV = 0) : DIDescriptor(GV) {}
Devang Patela913f4f2009-01-20 19:08:39 +0000104
Chris Lattnera45664f2008-11-10 02:56:27 +0000105 unsigned getNumElements() const;
Devang Patela22d57d2009-01-05 19:55:07 +0000106 DIDescriptor getElement(unsigned Idx) const {
107 return getDescriptorField(Idx);
Devang Patel68afdc32009-01-05 18:33:01 +0000108 }
Chris Lattnera45664f2008-11-10 02:56:27 +0000109 };
Devang Patela913f4f2009-01-20 19:08:39 +0000110
Chris Lattnera45664f2008-11-10 02:56:27 +0000111 /// DICompileUnit - A wrapper for a compile unit.
112 class DICompileUnit : public DIDescriptor {
113 public:
Bill Wendlingdc817b62009-05-14 18:26:15 +0000114 explicit DICompileUnit(GlobalVariable *GV = 0)
115 : DIDescriptor(GV, dwarf::DW_TAG_compile_unit) {}
Devang Patela913f4f2009-01-20 19:08:39 +0000116
Chris Lattnera45664f2008-11-10 02:56:27 +0000117 unsigned getLanguage() const { return getUnsignedField(2); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000118 const std::string &getFilename(std::string &F) const {
119 return getStringField(3, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000120 }
Bill Wendling0582ae92009-03-13 04:39:26 +0000121 const std::string &getDirectory(std::string &F) const {
122 return getStringField(4, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000123 }
Bill Wendling0582ae92009-03-13 04:39:26 +0000124 const std::string &getProducer(std::string &F) const {
125 return getStringField(5, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000126 }
Devang Pateldd9db662009-01-30 18:20:31 +0000127
128 /// isMain - Each input file is encoded as a separate compile unit in LLVM
129 /// debugging information output. However, many target specific tool chains
130 /// prefer to encode only one compile unit in an object file. In this
131 /// situation, the LLVM code generator will include debugging information
132 /// entities in the compile unit that is marked as main compile unit. The
133 /// code generator accepts maximum one main compile unit per module. If a
134 /// module does not contain any main compile unit then the code generator
135 /// will emit multiple compile units in the output object file.
Devang Patel13319ce2009-02-17 22:43:44 +0000136
Devang Patel36375ee2009-02-17 21:23:59 +0000137 bool isMain() const { return getUnsignedField(6); }
138 bool isOptimized() const { return getUnsignedField(7); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000139 const std::string &getFlags(std::string &F) const {
140 return getStringField(8, F);
141 }
Devang Patel13319ce2009-02-17 22:43:44 +0000142 unsigned getRunTimeVersion() const { return getUnsignedField(9); }
Devang Patelce31b022009-01-20 18:13:03 +0000143
Devang Patelb79b5352009-01-19 23:21:49 +0000144 /// Verify - Verify that a compile unit is well formed.
145 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000146
147 /// dump - print compile unit.
148 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000149 };
150
151 /// DIEnumerator - A wrapper for an enumerator (e.g. X and Y in 'enum {X,Y}').
152 /// FIXME: it seems strange that this doesn't have either a reference to the
153 /// type/precision or a file/line pair for location info.
154 class DIEnumerator : public DIDescriptor {
155 public:
Bill Wendlingdc817b62009-05-14 18:26:15 +0000156 explicit DIEnumerator(GlobalVariable *GV = 0)
157 : DIDescriptor(GV, dwarf::DW_TAG_enumerator) {}
Devang Patela913f4f2009-01-20 19:08:39 +0000158
Bill Wendling0582ae92009-03-13 04:39:26 +0000159 const std::string &getName(std::string &F) const {
160 return getStringField(1, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000161 }
Devang Patelc69bf2c2009-01-05 18:38:38 +0000162 uint64_t getEnumValue() const { return getUInt64Field(2); }
Chris Lattnera45664f2008-11-10 02:56:27 +0000163 };
Devang Patela913f4f2009-01-20 19:08:39 +0000164
Chris Lattnera45664f2008-11-10 02:56:27 +0000165 /// DIType - This is a wrapper for a type.
166 /// FIXME: Types should be factored much better so that CV qualifiers and
167 /// others do not require a huge and empty descriptor full of zeros.
168 class DIType : public DIDescriptor {
Devang Patel2a574662009-01-20 22:27:02 +0000169 public:
170 enum {
171 FlagPrivate = 1 << 0,
172 FlagProtected = 1 << 1,
Devang Patel47661592009-01-21 00:08:04 +0000173 FlagFwdDecl = 1 << 2
Devang Patel2a574662009-01-20 22:27:02 +0000174 };
175
Chris Lattnera45664f2008-11-10 02:56:27 +0000176 protected:
177 DIType(GlobalVariable *GV, unsigned Tag) : DIDescriptor(GV, Tag) {}
178 // This ctor is used when the Tag has already been validated by a derived
179 // ctor.
180 DIType(GlobalVariable *GV, bool, bool) : DIDescriptor(GV) {}
Devang Patel486938f2009-01-12 21:38:43 +0000181
Devang Patelf193ff02009-01-15 19:26:23 +0000182 public:
Devang Patel486938f2009-01-12 21:38:43 +0000183 /// isDerivedType - Return true if the specified tag is legal for
184 /// DIDerivedType.
185 static bool isDerivedType(unsigned TAG);
186
187 /// isCompositeType - Return true if the specified tag is legal for
188 /// DICompositeType.
189 static bool isCompositeType(unsigned TAG);
190
191 /// isBasicType - Return true if the specified tag is legal for
192 /// DIBasicType.
193 static bool isBasicType(unsigned TAG) {
194 return TAG == dwarf::DW_TAG_base_type;
195 }
196
Devang Patelb79b5352009-01-19 23:21:49 +0000197 /// Verify - Verify that a type descriptor is well formed.
198 bool Verify() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000199 public:
200 explicit DIType(GlobalVariable *GV);
201 explicit DIType() {}
Devang Patel8526cc02009-01-05 22:35:52 +0000202 virtual ~DIType() {}
203
Chris Lattnera45664f2008-11-10 02:56:27 +0000204 DIDescriptor getContext() const { return getDescriptorField(1); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000205 const std::string &getName(std::string &F) const {
206 return getStringField(2, F);
207 }
Chris Lattnera45664f2008-11-10 02:56:27 +0000208 DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(3); }
209 unsigned getLineNumber() const { return getUnsignedField(4); }
210 uint64_t getSizeInBits() const { return getUInt64Field(5); }
211 uint64_t getAlignInBits() const { return getUInt64Field(6); }
212 // FIXME: Offset is only used for DW_TAG_member nodes. Making every type
213 // carry this is just plain insane.
214 uint64_t getOffsetInBits() const { return getUInt64Field(7); }
215 unsigned getFlags() const { return getUnsignedField(8); }
Devang Patel2a574662009-01-20 22:27:02 +0000216 bool isPrivate() const { return (getFlags() & FlagPrivate) != 0; }
217 bool isProtected() const { return (getFlags() & FlagProtected) != 0; }
218 bool isForwardDecl() const { return (getFlags() & FlagFwdDecl) != 0; }
Devang Patel8526cc02009-01-05 22:35:52 +0000219
Devang Patelbf3f5a02009-01-30 01:03:10 +0000220 /// dump - print type.
221 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000222 };
Devang Patela913f4f2009-01-20 19:08:39 +0000223
Chris Lattnera45664f2008-11-10 02:56:27 +0000224 /// DIBasicType - A basic type, like 'int' or 'float'.
225 class DIBasicType : public DIType {
226 public:
Bill Wendlingdc817b62009-05-14 18:26:15 +0000227 explicit DIBasicType(GlobalVariable *GV)
228 : DIType(GV, dwarf::DW_TAG_base_type) {}
229
Chris Lattnera45664f2008-11-10 02:56:27 +0000230 unsigned getEncoding() const { return getUnsignedField(9); }
Devang Patelbf3f5a02009-01-30 01:03:10 +0000231
232 /// dump - print basic type.
233 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000234 };
Devang Patela913f4f2009-01-20 19:08:39 +0000235
Chris Lattnera45664f2008-11-10 02:56:27 +0000236 /// DIDerivedType - A simple derived type, like a const qualified type,
237 /// a typedef, a pointer or reference, etc.
238 class DIDerivedType : public DIType {
239 protected:
240 explicit DIDerivedType(GlobalVariable *GV, bool, bool)
241 : DIType(GV, true, true) {}
242 public:
Bill Wendlingdc817b62009-05-14 18:26:15 +0000243 explicit DIDerivedType(GlobalVariable *GV)
244 : DIType(GV, true, true) {
245 if (GV && !isDerivedType(getTag()))
Devang Patel9af2fa82009-06-23 22:25:41 +0000246 DbgGV = 0;
Bill Wendlingdc817b62009-05-14 18:26:15 +0000247 }
248
Chris Lattnera45664f2008-11-10 02:56:27 +0000249 DIType getTypeDerivedFrom() const { return getFieldAs<DIType>(9); }
Devang Patelbf3f5a02009-01-30 01:03:10 +0000250
Devang Patel36375ee2009-02-17 21:23:59 +0000251 /// getOriginalTypeSize - If this type is derived from a base type then
252 /// return base type size.
253 uint64_t getOriginalTypeSize() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000254 /// dump - print derived type.
255 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000256 };
257
Chris Lattnera45664f2008-11-10 02:56:27 +0000258 /// DICompositeType - This descriptor holds a type that can refer to multiple
259 /// other types, like a function or struct.
260 /// FIXME: Why is this a DIDerivedType??
261 class DICompositeType : public DIDerivedType {
262 public:
Bill Wendlingdc817b62009-05-14 18:26:15 +0000263 explicit DICompositeType(GlobalVariable *GV)
264 : DIDerivedType(GV, true, true) {
265 if (GV && !isCompositeType(getTag()))
Devang Patel9af2fa82009-06-23 22:25:41 +0000266 DbgGV = 0;
Bill Wendlingdc817b62009-05-14 18:26:15 +0000267 }
268
Chris Lattnera45664f2008-11-10 02:56:27 +0000269 DIArray getTypeArray() const { return getFieldAs<DIArray>(10); }
Devang Patel13319ce2009-02-17 22:43:44 +0000270 unsigned getRunTimeLang() const { return getUnsignedField(11); }
Devang Patelb79b5352009-01-19 23:21:49 +0000271
272 /// Verify - Verify that a composite type descriptor is well formed.
273 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000274
275 /// dump - print composite type.
276 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000277 };
Devang Patela913f4f2009-01-20 19:08:39 +0000278
Chris Lattnera45664f2008-11-10 02:56:27 +0000279 /// DIGlobal - This is a common class for global variables and subprograms.
280 class DIGlobal : public DIDescriptor {
281 protected:
Chris Lattner3b781852008-11-10 03:11:39 +0000282 explicit DIGlobal(GlobalVariable *GV, unsigned RequiredTag)
Chris Lattnera45664f2008-11-10 02:56:27 +0000283 : DIDescriptor(GV, RequiredTag) {}
Devang Patel486938f2009-01-12 21:38:43 +0000284
285 /// isSubprogram - Return true if the specified tag is legal for
286 /// DISubprogram.
287 static bool isSubprogram(unsigned TAG) {
288 return TAG == dwarf::DW_TAG_subprogram;
289 }
290
291 /// isGlobalVariable - Return true if the specified tag is legal for
292 /// DIGlobalVariable.
293 static bool isGlobalVariable(unsigned TAG) {
294 return TAG == dwarf::DW_TAG_variable;
295 }
296
Chris Lattnera45664f2008-11-10 02:56:27 +0000297 public:
Devang Patel8526cc02009-01-05 22:35:52 +0000298 virtual ~DIGlobal() {}
299
Chris Lattnera45664f2008-11-10 02:56:27 +0000300 DIDescriptor getContext() const { return getDescriptorField(2); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000301 const std::string &getName(std::string &F) const {
302 return getStringField(3, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000303 }
Bill Wendling0582ae92009-03-13 04:39:26 +0000304 const std::string &getDisplayName(std::string &F) const {
305 return getStringField(4, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000306 }
Bill Wendling0582ae92009-03-13 04:39:26 +0000307 const std::string &getLinkageName(std::string &F) const {
308 return getStringField(5, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000309 }
Chris Lattnera45664f2008-11-10 02:56:27 +0000310 DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(6); }
311 unsigned getLineNumber() const { return getUnsignedField(7); }
312 DIType getType() const { return getFieldAs<DIType>(8); }
Devang Patela913f4f2009-01-20 19:08:39 +0000313
Chris Lattnera45664f2008-11-10 02:56:27 +0000314 /// isLocalToUnit - Return true if this subprogram is local to the current
315 /// compile unit, like 'static' in C.
316 unsigned isLocalToUnit() const { return getUnsignedField(9); }
317 unsigned isDefinition() const { return getUnsignedField(10); }
Devang Patel8526cc02009-01-05 22:35:52 +0000318
Devang Patelbf3f5a02009-01-30 01:03:10 +0000319 /// dump - print global.
320 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000321 };
Devang Patela913f4f2009-01-20 19:08:39 +0000322
Chris Lattnera45664f2008-11-10 02:56:27 +0000323 /// DISubprogram - This is a wrapper for a subprogram (e.g. a function).
324 class DISubprogram : public DIGlobal {
325 public:
Bill Wendlingdc817b62009-05-14 18:26:15 +0000326 explicit DISubprogram(GlobalVariable *GV = 0)
327 : DIGlobal(GV, dwarf::DW_TAG_subprogram) {}
328
Devang Patel86ae1422009-01-05 18:59:44 +0000329 DICompositeType getType() const { return getFieldAs<DICompositeType>(8); }
Devang Patelb79b5352009-01-19 23:21:49 +0000330
Devang Patel0de4fa62009-06-23 22:07:48 +0000331 /// getReturnTypeName - Subprogram return types are encoded either as
332 /// DIType or as DICompositeType.
333 const std::string &getReturnTypeName(std::string &F) const {
334 DICompositeType DCT(getFieldAs<DICompositeType>(8));
335 if (!DCT.isNull()) {
336 DIArray A = DCT.getTypeArray();
337 DIType T(A.getElement(0).getGV());
338 return T.getName(F);
339 }
340 DIType T(getFieldAs<DIType>(8));
341 return T.getName(F);
342 }
343
Devang Patelb79b5352009-01-19 23:21:49 +0000344 /// Verify - Verify that a subprogram descriptor is well formed.
345 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000346
347 /// dump - print subprogram.
348 void dump() const;
Devang Patelaf5b6bb2009-04-15 00:06:07 +0000349
350 /// describes - Return true if this subprogram provides debugging
351 /// information for the function F.
352 bool describes(const Function *F);
Chris Lattnera45664f2008-11-10 02:56:27 +0000353 };
Devang Patela913f4f2009-01-20 19:08:39 +0000354
Chris Lattnera45664f2008-11-10 02:56:27 +0000355 /// DIGlobalVariable - This is a wrapper for a global variable.
356 class DIGlobalVariable : public DIGlobal {
357 public:
Bill Wendlingdc817b62009-05-14 18:26:15 +0000358 explicit DIGlobalVariable(GlobalVariable *GV = 0)
359 : DIGlobal(GV, dwarf::DW_TAG_variable) {}
360
Chris Lattnera45664f2008-11-10 02:56:27 +0000361 GlobalVariable *getGlobal() const { return getGlobalVariableField(11); }
Devang Patelb79b5352009-01-19 23:21:49 +0000362
363 /// Verify - Verify that a global variable descriptor is well formed.
364 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000365
366 /// dump - print global variable.
367 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000368 };
Devang Patela913f4f2009-01-20 19:08:39 +0000369
Chris Lattnera45664f2008-11-10 02:56:27 +0000370 /// DIVariable - This is a wrapper for a variable (e.g. parameter, local,
371 /// global etc).
372 class DIVariable : public DIDescriptor {
373 public:
Devang Patel9af2fa82009-06-23 22:25:41 +0000374 explicit DIVariable(GlobalVariable *GV = 0)
375 : DIDescriptor(GV) {
376 if (GV && !isVariable(getTag()))
377 DbgGV = 0;
Bill Wendlingdc817b62009-05-14 18:26:15 +0000378 }
Devang Patela913f4f2009-01-20 19:08:39 +0000379
Chris Lattnera45664f2008-11-10 02:56:27 +0000380 DIDescriptor getContext() const { return getDescriptorField(1); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000381 const std::string &getName(std::string &F) const {
382 return getStringField(2, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000383 }
Chris Lattnera45664f2008-11-10 02:56:27 +0000384 DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(3); }
385 unsigned getLineNumber() const { return getUnsignedField(4); }
386 DIType getType() const { return getFieldAs<DIType>(5); }
Devang Patela913f4f2009-01-20 19:08:39 +0000387
Chris Lattnera45664f2008-11-10 02:56:27 +0000388 /// isVariable - Return true if the specified tag is legal for DIVariable.
389 static bool isVariable(unsigned Tag);
Devang Patelb79b5352009-01-19 23:21:49 +0000390
391 /// Verify - Verify that a variable descriptor is well formed.
392 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000393
394 /// dump - print variable.
395 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000396 };
Devang Patela913f4f2009-01-20 19:08:39 +0000397
Chris Lattnera45664f2008-11-10 02:56:27 +0000398 /// DIBlock - This is a wrapper for a block (e.g. a function, scope, etc).
399 class DIBlock : public DIDescriptor {
400 public:
Bill Wendlingdc817b62009-05-14 18:26:15 +0000401 explicit DIBlock(GlobalVariable *GV = 0)
402 : DIDescriptor(GV, dwarf::DW_TAG_lexical_block) {}
403
Chris Lattnera45664f2008-11-10 02:56:27 +0000404 DIDescriptor getContext() const { return getDescriptorField(1); }
405 };
Devang Patela913f4f2009-01-20 19:08:39 +0000406
Chris Lattnera45664f2008-11-10 02:56:27 +0000407 /// DIFactory - This object assists with the construction of the various
408 /// descriptors.
409 class DIFactory {
410 Module &M;
Owen Anderson99035272009-07-07 17:12:53 +0000411 LLVMContext& VMContext;
412
Chris Lattnera45664f2008-11-10 02:56:27 +0000413 // Cached values for uniquing and faster lookups.
Chris Lattner497a7a82008-11-10 04:10:34 +0000414 const Type *EmptyStructPtr; // "{}*".
Chris Lattnera45664f2008-11-10 02:56:27 +0000415 Function *StopPointFn; // llvm.dbg.stoppoint
416 Function *FuncStartFn; // llvm.dbg.func.start
417 Function *RegionStartFn; // llvm.dbg.region.start
418 Function *RegionEndFn; // llvm.dbg.region.end
419 Function *DeclareFn; // llvm.dbg.declare
420 StringMap<Constant*> StringCache;
421 DenseMap<Constant*, DIDescriptor> SimpleConstantCache;
Devang Patela913f4f2009-01-20 19:08:39 +0000422
Chris Lattnera45664f2008-11-10 02:56:27 +0000423 DIFactory(const DIFactory &); // DO NOT IMPLEMENT
424 void operator=(const DIFactory&); // DO NOT IMPLEMENT
425 public:
Chris Lattner497a7a82008-11-10 04:10:34 +0000426 explicit DIFactory(Module &m);
Devang Patela913f4f2009-01-20 19:08:39 +0000427
Chris Lattnera45664f2008-11-10 02:56:27 +0000428 /// GetOrCreateArray - Create an descriptor for an array of descriptors.
429 /// This implicitly uniques the arrays created.
430 DIArray GetOrCreateArray(DIDescriptor *Tys, unsigned NumTys);
431
432 /// GetOrCreateSubrange - Create a descriptor for a value range. This
433 /// implicitly uniques the values returned.
434 DISubrange GetOrCreateSubrange(int64_t Lo, int64_t Hi);
Devang Patela913f4f2009-01-20 19:08:39 +0000435
Chris Lattnera45664f2008-11-10 02:56:27 +0000436 /// CreateCompileUnit - Create a new descriptor for the specified compile
437 /// unit.
438 DICompileUnit CreateCompileUnit(unsigned LangID,
439 const std::string &Filename,
440 const std::string &Directory,
Devang Patel3b64c6b2009-01-23 22:33:47 +0000441 const std::string &Producer,
Devang Pateldd9db662009-01-30 18:20:31 +0000442 bool isMain = false,
Devang Patel3b64c6b2009-01-23 22:33:47 +0000443 bool isOptimized = false,
Devang Patel13319ce2009-02-17 22:43:44 +0000444 const char *Flags = "",
445 unsigned RunTimeVer = 0);
Chris Lattnera45664f2008-11-10 02:56:27 +0000446
447 /// CreateEnumerator - Create a single enumerator value.
448 DIEnumerator CreateEnumerator(const std::string &Name, uint64_t Val);
Devang Patela913f4f2009-01-20 19:08:39 +0000449
Chris Lattnera45664f2008-11-10 02:56:27 +0000450 /// CreateBasicType - Create a basic type like int, float, etc.
451 DIBasicType CreateBasicType(DIDescriptor Context, const std::string &Name,
452 DICompileUnit CompileUnit, unsigned LineNumber,
453 uint64_t SizeInBits, uint64_t AlignInBits,
454 uint64_t OffsetInBits, unsigned Flags,
Devang Pateldd9db662009-01-30 18:20:31 +0000455 unsigned Encoding);
Devang Patela913f4f2009-01-20 19:08:39 +0000456
Chris Lattnera45664f2008-11-10 02:56:27 +0000457 /// CreateDerivedType - Create a derived type like const qualified type,
458 /// pointer, typedef, etc.
459 DIDerivedType CreateDerivedType(unsigned Tag, DIDescriptor Context,
460 const std::string &Name,
461 DICompileUnit CompileUnit,
462 unsigned LineNumber,
463 uint64_t SizeInBits, uint64_t AlignInBits,
464 uint64_t OffsetInBits, unsigned Flags,
Devang Pateldd9db662009-01-30 18:20:31 +0000465 DIType DerivedFrom);
Chris Lattnera45664f2008-11-10 02:56:27 +0000466
467 /// CreateCompositeType - Create a composite type like array, struct, etc.
468 DICompositeType CreateCompositeType(unsigned Tag, DIDescriptor Context,
469 const std::string &Name,
470 DICompileUnit CompileUnit,
471 unsigned LineNumber,
472 uint64_t SizeInBits,
473 uint64_t AlignInBits,
474 uint64_t OffsetInBits, unsigned Flags,
475 DIType DerivedFrom,
Devang Patel13319ce2009-02-17 22:43:44 +0000476 DIArray Elements,
477 unsigned RunTimeLang = 0);
Devang Patela913f4f2009-01-20 19:08:39 +0000478
Chris Lattnera45664f2008-11-10 02:56:27 +0000479 /// CreateSubprogram - Create a new descriptor for the specified subprogram.
480 /// See comments in DISubprogram for descriptions of these fields.
481 DISubprogram CreateSubprogram(DIDescriptor Context, const std::string &Name,
482 const std::string &DisplayName,
483 const std::string &LinkageName,
484 DICompileUnit CompileUnit, unsigned LineNo,
485 DIType Type, bool isLocalToUnit,
Devang Pateldd9db662009-01-30 18:20:31 +0000486 bool isDefinition);
Chris Lattnera45664f2008-11-10 02:56:27 +0000487
488 /// CreateGlobalVariable - Create a new descriptor for the specified global.
489 DIGlobalVariable
490 CreateGlobalVariable(DIDescriptor Context, const std::string &Name,
491 const std::string &DisplayName,
492 const std::string &LinkageName,
493 DICompileUnit CompileUnit,
494 unsigned LineNo, DIType Type, bool isLocalToUnit,
Devang Pateldd9db662009-01-30 18:20:31 +0000495 bool isDefinition, llvm::GlobalVariable *GV);
Devang Patela913f4f2009-01-20 19:08:39 +0000496
Chris Lattnera45664f2008-11-10 02:56:27 +0000497 /// CreateVariable - Create a new descriptor for the specified variable.
498 DIVariable CreateVariable(unsigned Tag, DIDescriptor Context,
499 const std::string &Name,
500 DICompileUnit CompileUnit, unsigned LineNo,
Devang Pateldd9db662009-01-30 18:20:31 +0000501 DIType Type);
Devang Patela913f4f2009-01-20 19:08:39 +0000502
Chris Lattnera45664f2008-11-10 02:56:27 +0000503 /// CreateBlock - This creates a descriptor for a lexical block with the
504 /// specified parent context.
505 DIBlock CreateBlock(DIDescriptor Context);
Devang Patela913f4f2009-01-20 19:08:39 +0000506
Chris Lattnera45664f2008-11-10 02:56:27 +0000507 /// InsertStopPoint - Create a new llvm.dbg.stoppoint intrinsic invocation,
508 /// inserting it at the end of the specified basic block.
509 void InsertStopPoint(DICompileUnit CU, unsigned LineNo, unsigned ColNo,
510 BasicBlock *BB);
Devang Patela913f4f2009-01-20 19:08:39 +0000511
Chris Lattnera45664f2008-11-10 02:56:27 +0000512 /// InsertSubprogramStart - Create a new llvm.dbg.func.start intrinsic to
513 /// mark the start of the specified subprogram.
514 void InsertSubprogramStart(DISubprogram SP, BasicBlock *BB);
515
516 /// InsertRegionStart - Insert a new llvm.dbg.region.start intrinsic call to
517 /// mark the start of a region for the specified scoping descriptor.
518 void InsertRegionStart(DIDescriptor D, BasicBlock *BB);
Devang Patela913f4f2009-01-20 19:08:39 +0000519
Chris Lattnera45664f2008-11-10 02:56:27 +0000520 /// InsertRegionEnd - Insert a new llvm.dbg.region.end intrinsic call to
521 /// mark the end of a region for the specified scoping descriptor.
522 void InsertRegionEnd(DIDescriptor D, BasicBlock *BB);
Devang Patela913f4f2009-01-20 19:08:39 +0000523
Chris Lattnera45664f2008-11-10 02:56:27 +0000524 /// InsertDeclare - Insert a new llvm.dbg.declare intrinsic call.
525 void InsertDeclare(llvm::Value *Storage, DIVariable D, BasicBlock *BB);
Devang Patela913f4f2009-01-20 19:08:39 +0000526
Chris Lattnera45664f2008-11-10 02:56:27 +0000527 private:
528 Constant *GetTagConstant(unsigned TAG);
529 Constant *GetStringConstant(const std::string &String);
Devang Patela913f4f2009-01-20 19:08:39 +0000530
Chris Lattner497a7a82008-11-10 04:10:34 +0000531 /// getCastToEmpty - Return the descriptor as a Constant* with type '{}*'.
532 Constant *getCastToEmpty(DIDescriptor D);
Chris Lattnera45664f2008-11-10 02:56:27 +0000533 };
Devang Patela913f4f2009-01-20 19:08:39 +0000534
Torok Edwin620f2802008-12-16 09:07:36 +0000535 /// Finds the stoppoint coressponding to this instruction, that is the
536 /// stoppoint that dominates this instruction
537 const DbgStopPointInst *findStopPoint(const Instruction *Inst);
538
539 /// Finds the stoppoint corresponding to first real (non-debug intrinsic)
540 /// instruction in this Basic Block, and returns the stoppoint for it.
541 const DbgStopPointInst *findBBStopPoint(const BasicBlock *BB);
542
543 /// Finds the dbg.declare intrinsic corresponding to this value if any.
544 /// It looks through pointer casts too.
545 const DbgDeclareInst *findDbgDeclare(const Value *V, bool stripCasts = true);
Torok Edwinff7d0e92009-03-10 13:41:26 +0000546
547 /// Find the debug info descriptor corresponding to this global variable.
548 Value *findDbgGlobalDeclare(GlobalVariable *V);
549
550 bool getLocationInfo(const Value *V, std::string &DisplayName, std::string &Type,
551 unsigned &LineNo, std::string &File, std::string &Dir);
Devang Patel13e16b62009-06-26 01:49:18 +0000552
553 /// CollectDebugInfoAnchors - Collect debugging information anchors.
554 void CollectDebugInfoAnchors(Module &M,
555 SmallVector<GlobalVariable *, 2> &CompileUnits,
556 SmallVector<GlobalVariable *, 4> &GlobalVars,
557 SmallVector<GlobalVariable *, 4> &Subprograms);
558
Devang Patel9e529c32009-07-02 01:15:24 +0000559 /// isValidDebugInfoIntrinsic - Return true if SPI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000560 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000561 bool isValidDebugInfoIntrinsic(DbgStopPointInst &SPI,
562 CodeGenOpt::Level OptLev);
563
564 /// isValidDebugInfoIntrinsic - Return true if FSI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000565 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000566 bool isValidDebugInfoIntrinsic(DbgFuncStartInst &FSI,
567 CodeGenOpt::Level OptLev);
568
569 /// isValidDebugInfoIntrinsic - Return true if RSI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000570 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000571 bool isValidDebugInfoIntrinsic(DbgRegionStartInst &RSI,
572 CodeGenOpt::Level OptLev);
573
574 /// isValidDebugInfoIntrinsic - Return true if REI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000575 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000576 bool isValidDebugInfoIntrinsic(DbgRegionEndInst &REI,
577 CodeGenOpt::Level OptLev);
578
579 /// isValidDebugInfoIntrinsic - Return true if DI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000580 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000581 bool isValidDebugInfoIntrinsic(DbgDeclareInst &DI,
582 CodeGenOpt::Level OptLev);
583
584 /// ExtractDebugLocation - Extract debug location information
585 /// from llvm.dbg.stoppoint intrinsic.
586 DebugLoc ExtractDebugLocation(DbgStopPointInst &SPI,
Devang Patel9e529c32009-07-02 01:15:24 +0000587 DebugLocTracker &DebugLocInfo);
588
589 /// ExtractDebugLocation - Extract debug location information
590 /// from llvm.dbg.func_start intrinsic.
591 DebugLoc ExtractDebugLocation(DbgFuncStartInst &FSI,
Devang Patel9e529c32009-07-02 01:15:24 +0000592 DebugLocTracker &DebugLocInfo);
593
594 /// isInlinedFnStart - Return true if FSI is starting an inlined function.
595 bool isInlinedFnStart(DbgFuncStartInst &FSI, const Function *CurrentFn);
596
597 /// isInlinedFnEnd - Return true if REI is ending an inlined function.
598 bool isInlinedFnEnd(DbgRegionEndInst &REI, const Function *CurrentFn);
599
Chris Lattnera45664f2008-11-10 02:56:27 +0000600} // end namespace llvm
601
602#endif