blob: 489c273ed4a9825d29965bc3755191db34cc85b8 [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
Devang Patele4b27562009-08-28 23:24:31 +000020#include "llvm/Metadata.h"
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000021#include "llvm/Target/TargetMachine.h"
Chris Lattnera45664f2008-11-10 02:56:27 +000022#include "llvm/ADT/StringMap.h"
23#include "llvm/ADT/DenseMap.h"
Devang Patel13e16b62009-06-26 01:49:18 +000024#include "llvm/ADT/SmallVector.h"
Devang Pateld2f79a12009-07-28 19:55:13 +000025#include "llvm/ADT/SmallPtrSet.h"
Devang Patel486938f2009-01-12 21:38:43 +000026#include "llvm/Support/Dwarf.h"
Chris Lattnera45664f2008-11-10 02:56:27 +000027
28namespace llvm {
29 class BasicBlock;
30 class Constant;
31 class Function;
32 class GlobalVariable;
33 class Module;
Chris Lattner497a7a82008-11-10 04:10:34 +000034 class Type;
Chris Lattnera45664f2008-11-10 02:56:27 +000035 class Value;
Cedric Venetaff9c272009-02-14 16:06:42 +000036 struct DbgStopPointInst;
37 struct DbgDeclareInst;
Devang Patel9e529c32009-07-02 01:15:24 +000038 struct DbgFuncStartInst;
39 struct DbgRegionStartInst;
40 struct DbgRegionEndInst;
41 class DebugLoc;
Daniel Dunbar460d16e2009-07-12 22:46:08 +000042 struct DebugLocTracker;
Torok Edwin620f2802008-12-16 09:07:36 +000043 class Instruction;
Benjamin Kramer12ddd402009-08-11 17:45:13 +000044 class LLVMContext;
Devang Patela913f4f2009-01-20 19:08:39 +000045
Chris Lattnera45664f2008-11-10 02:56:27 +000046 class DIDescriptor {
Chris Lattnera45664f2008-11-10 02:56:27 +000047 protected:
Devang Patele4b27562009-08-28 23:24:31 +000048 MDNode *DbgNode;
Devang Patela913f4f2009-01-20 19:08:39 +000049
Devang Patele4b27562009-08-28 23:24:31 +000050 /// DIDescriptor constructor. If the specified node is non-null, check
Chris Lattnera45664f2008-11-10 02:56:27 +000051 /// to make sure that the tag in the descriptor matches 'RequiredTag'. If
52 /// not, the debug info is corrupt and we ignore it.
Devang Patele4b27562009-08-28 23:24:31 +000053 DIDescriptor(MDNode *N, unsigned RequiredTag);
Devang Patela913f4f2009-01-20 19:08:39 +000054
Bill Wendling0582ae92009-03-13 04:39:26 +000055 const std::string &getStringField(unsigned Elt, std::string &Result) const;
Chris Lattnera45664f2008-11-10 02:56:27 +000056 unsigned getUnsignedField(unsigned Elt) const {
57 return (unsigned)getUInt64Field(Elt);
58 }
59 uint64_t getUInt64Field(unsigned Elt) const;
60 DIDescriptor getDescriptorField(unsigned Elt) const;
Devang Patela913f4f2009-01-20 19:08:39 +000061
Chris Lattnera45664f2008-11-10 02:56:27 +000062 template <typename DescTy>
63 DescTy getFieldAs(unsigned Elt) const {
Devang Patele4b27562009-08-28 23:24:31 +000064 return DescTy(getDescriptorField(Elt).getNode());
Chris Lattnera45664f2008-11-10 02:56:27 +000065 }
Devang Patela913f4f2009-01-20 19:08:39 +000066
Chris Lattnera45664f2008-11-10 02:56:27 +000067 GlobalVariable *getGlobalVariableField(unsigned Elt) const;
Devang Patela913f4f2009-01-20 19:08:39 +000068
Chris Lattnera45664f2008-11-10 02:56:27 +000069 public:
Devang Patele4b27562009-08-28 23:24:31 +000070 explicit DIDescriptor() : DbgNode(0) {}
71 explicit DIDescriptor(MDNode *N) : DbgNode(N) {}
Chris Lattnera45664f2008-11-10 02:56:27 +000072
Devang Patele4b27562009-08-28 23:24:31 +000073 bool isNull() const { return DbgNode == 0; }
Chris Lattnera45664f2008-11-10 02:56:27 +000074
Devang Patele4b27562009-08-28 23:24:31 +000075 MDNode *getNode() const { return DbgNode; }
Devang Patel2c1623a2009-01-05 18:06:21 +000076
Devang Patel8526cc02009-01-05 22:35:52 +000077 unsigned getVersion() const {
Devang Patel6906ba52009-01-20 19:22:03 +000078 return getUnsignedField(0) & LLVMDebugVersionMask;
Devang Patel8526cc02009-01-05 22:35:52 +000079 }
Devang Patela913f4f2009-01-20 19:08:39 +000080
Devang Patel2c1623a2009-01-05 18:06:21 +000081 unsigned getTag() const {
Devang Patel6906ba52009-01-20 19:22:03 +000082 return getUnsignedField(0) & ~LLVMDebugVersionMask;
Devang Patel2c1623a2009-01-05 18:06:21 +000083 }
Devang Patela913f4f2009-01-20 19:08:39 +000084
Devang Patele4b27562009-08-28 23:24:31 +000085 /// ValidDebugInfo - Return true if N represents valid debug info value.
86 static bool ValidDebugInfo(MDNode *N, CodeGenOpt::Level OptLevel);
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000087
Bill Wendling16de0132009-05-05 22:19:25 +000088 /// dump - print descriptor.
89 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +000090 };
Devang Patela913f4f2009-01-20 19:08:39 +000091
Devang Patel68afdc32009-01-05 18:33:01 +000092 /// DISubrange - This is used to represent ranges, for array bounds.
93 class DISubrange : public DIDescriptor {
94 public:
Devang Patele4b27562009-08-28 23:24:31 +000095 explicit DISubrange(MDNode *N = 0)
96 : DIDescriptor(N, dwarf::DW_TAG_subrange_type) {}
Devang Patela913f4f2009-01-20 19:08:39 +000097
Devang Patel68afdc32009-01-05 18:33:01 +000098 int64_t getLo() const { return (int64_t)getUInt64Field(1); }
99 int64_t getHi() const { return (int64_t)getUInt64Field(2); }
100 };
Devang Patela913f4f2009-01-20 19:08:39 +0000101
Chris Lattnera45664f2008-11-10 02:56:27 +0000102 /// DIArray - This descriptor holds an array of descriptors.
103 class DIArray : public DIDescriptor {
104 public:
Devang Patele4b27562009-08-28 23:24:31 +0000105 explicit DIArray(MDNode *N = 0)
106 : DIDescriptor(N) {}
Devang Patela913f4f2009-01-20 19:08:39 +0000107
Chris Lattnera45664f2008-11-10 02:56:27 +0000108 unsigned getNumElements() const;
Devang Patela22d57d2009-01-05 19:55:07 +0000109 DIDescriptor getElement(unsigned Idx) const {
110 return getDescriptorField(Idx);
Devang Patel68afdc32009-01-05 18:33:01 +0000111 }
Chris Lattnera45664f2008-11-10 02:56:27 +0000112 };
Devang Patela913f4f2009-01-20 19:08:39 +0000113
Chris Lattnera45664f2008-11-10 02:56:27 +0000114 /// DICompileUnit - A wrapper for a compile unit.
115 class DICompileUnit : public DIDescriptor {
116 public:
Devang Patele4b27562009-08-28 23:24:31 +0000117 explicit DICompileUnit(MDNode *N = 0)
118 : DIDescriptor(N, dwarf::DW_TAG_compile_unit) {}
Devang Patela913f4f2009-01-20 19:08:39 +0000119
Chris Lattnera45664f2008-11-10 02:56:27 +0000120 unsigned getLanguage() const { return getUnsignedField(2); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000121 const std::string &getFilename(std::string &F) const {
122 return getStringField(3, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000123 }
Bill Wendling0582ae92009-03-13 04:39:26 +0000124 const std::string &getDirectory(std::string &F) const {
125 return getStringField(4, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000126 }
Bill Wendling0582ae92009-03-13 04:39:26 +0000127 const std::string &getProducer(std::string &F) const {
128 return getStringField(5, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000129 }
Devang Pateldd9db662009-01-30 18:20:31 +0000130
131 /// isMain - Each input file is encoded as a separate compile unit in LLVM
132 /// debugging information output. However, many target specific tool chains
133 /// prefer to encode only one compile unit in an object file. In this
134 /// situation, the LLVM code generator will include debugging information
135 /// entities in the compile unit that is marked as main compile unit. The
136 /// code generator accepts maximum one main compile unit per module. If a
137 /// module does not contain any main compile unit then the code generator
138 /// will emit multiple compile units in the output object file.
Devang Patel13319ce2009-02-17 22:43:44 +0000139
Devang Patel36375ee2009-02-17 21:23:59 +0000140 bool isMain() const { return getUnsignedField(6); }
141 bool isOptimized() const { return getUnsignedField(7); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000142 const std::string &getFlags(std::string &F) const {
143 return getStringField(8, F);
144 }
Devang Patel13319ce2009-02-17 22:43:44 +0000145 unsigned getRunTimeVersion() const { return getUnsignedField(9); }
Devang Patelce31b022009-01-20 18:13:03 +0000146
Devang Patelb79b5352009-01-19 23:21:49 +0000147 /// Verify - Verify that a compile unit is well formed.
148 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000149
150 /// dump - print compile unit.
151 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000152 };
153
154 /// DIEnumerator - A wrapper for an enumerator (e.g. X and Y in 'enum {X,Y}').
155 /// FIXME: it seems strange that this doesn't have either a reference to the
156 /// type/precision or a file/line pair for location info.
157 class DIEnumerator : public DIDescriptor {
158 public:
Devang Patele4b27562009-08-28 23:24:31 +0000159 explicit DIEnumerator(MDNode *N = 0)
160 : DIDescriptor(N, dwarf::DW_TAG_enumerator) {}
Devang Patela913f4f2009-01-20 19:08:39 +0000161
Bill Wendling0582ae92009-03-13 04:39:26 +0000162 const std::string &getName(std::string &F) const {
163 return getStringField(1, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000164 }
Devang Patelc69bf2c2009-01-05 18:38:38 +0000165 uint64_t getEnumValue() const { return getUInt64Field(2); }
Chris Lattnera45664f2008-11-10 02:56:27 +0000166 };
Devang Patela913f4f2009-01-20 19:08:39 +0000167
Chris Lattnera45664f2008-11-10 02:56:27 +0000168 /// DIType - This is a wrapper for a type.
169 /// FIXME: Types should be factored much better so that CV qualifiers and
170 /// others do not require a huge and empty descriptor full of zeros.
171 class DIType : public DIDescriptor {
Devang Patel2a574662009-01-20 22:27:02 +0000172 public:
173 enum {
Devang Patela1ba2692009-08-27 23:51:51 +0000174 FlagPrivate = 1 << 0,
175 FlagProtected = 1 << 1,
176 FlagFwdDecl = 1 << 2,
177 FlagAppleBlock = 1 << 3
Devang Patel2a574662009-01-20 22:27:02 +0000178 };
179
Chris Lattnera45664f2008-11-10 02:56:27 +0000180 protected:
Devang Patele4b27562009-08-28 23:24:31 +0000181 DIType(MDNode *N, unsigned Tag)
182 : DIDescriptor(N, Tag) {}
Chris Lattnera45664f2008-11-10 02:56:27 +0000183 // This ctor is used when the Tag has already been validated by a derived
184 // ctor.
Devang Patele4b27562009-08-28 23:24:31 +0000185 DIType(MDNode *N, bool, bool) : DIDescriptor(N) {}
Devang Patel486938f2009-01-12 21:38:43 +0000186
Devang Patelf193ff02009-01-15 19:26:23 +0000187 public:
Devang Patel486938f2009-01-12 21:38:43 +0000188 /// isDerivedType - Return true if the specified tag is legal for
189 /// DIDerivedType.
190 static bool isDerivedType(unsigned TAG);
191
192 /// isCompositeType - Return true if the specified tag is legal for
193 /// DICompositeType.
194 static bool isCompositeType(unsigned TAG);
195
196 /// isBasicType - Return true if the specified tag is legal for
197 /// DIBasicType.
198 static bool isBasicType(unsigned TAG) {
199 return TAG == dwarf::DW_TAG_base_type;
200 }
201
Devang Patelb79b5352009-01-19 23:21:49 +0000202 /// Verify - Verify that a type descriptor is well formed.
203 bool Verify() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000204 public:
Devang Patele4b27562009-08-28 23:24:31 +0000205 explicit DIType(MDNode *N);
Chris Lattnera45664f2008-11-10 02:56:27 +0000206 explicit DIType() {}
Devang Patel8526cc02009-01-05 22:35:52 +0000207 virtual ~DIType() {}
208
Chris Lattnera45664f2008-11-10 02:56:27 +0000209 DIDescriptor getContext() const { return getDescriptorField(1); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000210 const std::string &getName(std::string &F) const {
211 return getStringField(2, F);
212 }
Chris Lattnera45664f2008-11-10 02:56:27 +0000213 DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(3); }
214 unsigned getLineNumber() const { return getUnsignedField(4); }
215 uint64_t getSizeInBits() const { return getUInt64Field(5); }
216 uint64_t getAlignInBits() const { return getUInt64Field(6); }
217 // FIXME: Offset is only used for DW_TAG_member nodes. Making every type
218 // carry this is just plain insane.
219 uint64_t getOffsetInBits() const { return getUInt64Field(7); }
220 unsigned getFlags() const { return getUnsignedField(8); }
Chris Lattnere1f515e2009-08-26 04:21:30 +0000221 bool isPrivate() const {
222 return (getFlags() & FlagPrivate) != 0;
Devang Patele2d5a6c2009-07-27 20:30:05 +0000223 }
Chris Lattnere1f515e2009-08-26 04:21:30 +0000224 bool isProtected() const {
Devang Patele2d5a6c2009-07-27 20:30:05 +0000225 return (getFlags() & FlagProtected) != 0;
226 }
Chris Lattnere1f515e2009-08-26 04:21:30 +0000227 bool isForwardDecl() const {
228 return (getFlags() & FlagFwdDecl) != 0;
Devang Patele2d5a6c2009-07-27 20:30:05 +0000229 }
Devang Patela1ba2692009-08-27 23:51:51 +0000230 // isAppleBlock - Return true if this is the Apple Blocks extension.
231 bool isAppleBlockExtension() const {
232 return (getFlags() & FlagAppleBlock) != 0;
Devang Patel8af76bd2009-08-26 00:39:50 +0000233 }
Devang Patel8526cc02009-01-05 22:35:52 +0000234
Devang Patelbf3f5a02009-01-30 01:03:10 +0000235 /// dump - print type.
236 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000237 };
Devang Patela913f4f2009-01-20 19:08:39 +0000238
Chris Lattnera45664f2008-11-10 02:56:27 +0000239 /// DIBasicType - A basic type, like 'int' or 'float'.
240 class DIBasicType : public DIType {
241 public:
Devang Patele4b27562009-08-28 23:24:31 +0000242 explicit DIBasicType(MDNode *N = 0)
243 : DIType(N, dwarf::DW_TAG_base_type) {}
Bill Wendlingdc817b62009-05-14 18:26:15 +0000244
Chris Lattnera45664f2008-11-10 02:56:27 +0000245 unsigned getEncoding() const { return getUnsignedField(9); }
Devang Patelbf3f5a02009-01-30 01:03:10 +0000246
247 /// dump - print basic type.
248 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000249 };
Devang Patela913f4f2009-01-20 19:08:39 +0000250
Chris Lattnera45664f2008-11-10 02:56:27 +0000251 /// DIDerivedType - A simple derived type, like a const qualified type,
252 /// a typedef, a pointer or reference, etc.
253 class DIDerivedType : public DIType {
254 protected:
Devang Patele4b27562009-08-28 23:24:31 +0000255 explicit DIDerivedType(MDNode *N, bool, bool)
256 : DIType(N, true, true) {}
Chris Lattnera45664f2008-11-10 02:56:27 +0000257 public:
Devang Patele4b27562009-08-28 23:24:31 +0000258 explicit DIDerivedType(MDNode *N = 0)
259 : DIType(N, true, true) {
260 if (DbgNode && !isDerivedType(getTag()))
261 DbgNode = 0;
Bill Wendlingdc817b62009-05-14 18:26:15 +0000262 }
263
Chris Lattnera45664f2008-11-10 02:56:27 +0000264 DIType getTypeDerivedFrom() const { return getFieldAs<DIType>(9); }
Devang Patelbf3f5a02009-01-30 01:03:10 +0000265
Devang Patel36375ee2009-02-17 21:23:59 +0000266 /// getOriginalTypeSize - If this type is derived from a base type then
267 /// return base type size.
268 uint64_t getOriginalTypeSize() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000269 /// dump - print derived type.
270 void dump() const;
Devang Patelc4999d72009-07-22 18:23:44 +0000271
272 /// replaceAllUsesWith - Replace all uses of debug info referenced by
273 /// this descriptor. After this completes, the current debug info value
274 /// is erased.
275 void replaceAllUsesWith(DIDescriptor &D);
Chris Lattnera45664f2008-11-10 02:56:27 +0000276 };
277
Chris Lattnera45664f2008-11-10 02:56:27 +0000278 /// DICompositeType - This descriptor holds a type that can refer to multiple
279 /// other types, like a function or struct.
280 /// FIXME: Why is this a DIDerivedType??
281 class DICompositeType : public DIDerivedType {
282 public:
Devang Patele4b27562009-08-28 23:24:31 +0000283 explicit DICompositeType(MDNode *N = 0)
284 : DIDerivedType(N, true, true) {
285 if (N && !isCompositeType(getTag()))
286 DbgNode = 0;
Bill Wendlingdc817b62009-05-14 18:26:15 +0000287 }
288
Chris Lattnera45664f2008-11-10 02:56:27 +0000289 DIArray getTypeArray() const { return getFieldAs<DIArray>(10); }
Devang Patel13319ce2009-02-17 22:43:44 +0000290 unsigned getRunTimeLang() const { return getUnsignedField(11); }
Devang Patelb79b5352009-01-19 23:21:49 +0000291
292 /// Verify - Verify that a composite type descriptor is well formed.
293 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000294
295 /// dump - print composite type.
296 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000297 };
Devang Patela913f4f2009-01-20 19:08:39 +0000298
Chris Lattnera45664f2008-11-10 02:56:27 +0000299 /// DIGlobal - This is a common class for global variables and subprograms.
300 class DIGlobal : public DIDescriptor {
301 protected:
Devang Patele4b27562009-08-28 23:24:31 +0000302 explicit DIGlobal(MDNode *N, unsigned RequiredTag)
303 : DIDescriptor(N, RequiredTag) {}
Devang Patel486938f2009-01-12 21:38:43 +0000304
305 /// isSubprogram - Return true if the specified tag is legal for
306 /// DISubprogram.
307 static bool isSubprogram(unsigned TAG) {
308 return TAG == dwarf::DW_TAG_subprogram;
309 }
310
311 /// isGlobalVariable - Return true if the specified tag is legal for
312 /// DIGlobalVariable.
313 static bool isGlobalVariable(unsigned TAG) {
314 return TAG == dwarf::DW_TAG_variable;
315 }
316
Chris Lattnera45664f2008-11-10 02:56:27 +0000317 public:
Devang Patel8526cc02009-01-05 22:35:52 +0000318 virtual ~DIGlobal() {}
319
Chris Lattnera45664f2008-11-10 02:56:27 +0000320 DIDescriptor getContext() const { return getDescriptorField(2); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000321 const std::string &getName(std::string &F) const {
322 return getStringField(3, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000323 }
Bill Wendling0582ae92009-03-13 04:39:26 +0000324 const std::string &getDisplayName(std::string &F) const {
325 return getStringField(4, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000326 }
Bill Wendling0582ae92009-03-13 04:39:26 +0000327 const std::string &getLinkageName(std::string &F) const {
328 return getStringField(5, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000329 }
Chris Lattnera45664f2008-11-10 02:56:27 +0000330 DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(6); }
331 unsigned getLineNumber() const { return getUnsignedField(7); }
332 DIType getType() const { return getFieldAs<DIType>(8); }
Devang Patela913f4f2009-01-20 19:08:39 +0000333
Chris Lattnera45664f2008-11-10 02:56:27 +0000334 /// isLocalToUnit - Return true if this subprogram is local to the current
335 /// compile unit, like 'static' in C.
336 unsigned isLocalToUnit() const { return getUnsignedField(9); }
337 unsigned isDefinition() const { return getUnsignedField(10); }
Devang Patel8526cc02009-01-05 22:35:52 +0000338
Devang Patelbf3f5a02009-01-30 01:03:10 +0000339 /// dump - print global.
340 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000341 };
Devang Patela913f4f2009-01-20 19:08:39 +0000342
Chris Lattnera45664f2008-11-10 02:56:27 +0000343 /// DISubprogram - This is a wrapper for a subprogram (e.g. a function).
344 class DISubprogram : public DIGlobal {
345 public:
Devang Patele4b27562009-08-28 23:24:31 +0000346 explicit DISubprogram(MDNode *N = 0)
347 : DIGlobal(N, dwarf::DW_TAG_subprogram) {}
Bill Wendlingdc817b62009-05-14 18:26:15 +0000348
Devang Patel86ae1422009-01-05 18:59:44 +0000349 DICompositeType getType() const { return getFieldAs<DICompositeType>(8); }
Devang Patelb79b5352009-01-19 23:21:49 +0000350
Devang Patel0de4fa62009-06-23 22:07:48 +0000351 /// getReturnTypeName - Subprogram return types are encoded either as
352 /// DIType or as DICompositeType.
353 const std::string &getReturnTypeName(std::string &F) const {
354 DICompositeType DCT(getFieldAs<DICompositeType>(8));
355 if (!DCT.isNull()) {
356 DIArray A = DCT.getTypeArray();
Devang Patele4b27562009-08-28 23:24:31 +0000357 DIType T(A.getElement(0).getNode());
Devang Patel0de4fa62009-06-23 22:07:48 +0000358 return T.getName(F);
359 }
360 DIType T(getFieldAs<DIType>(8));
361 return T.getName(F);
362 }
363
Devang Patelb79b5352009-01-19 23:21:49 +0000364 /// Verify - Verify that a subprogram descriptor is well formed.
365 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000366
367 /// dump - print subprogram.
368 void dump() const;
Devang Patelaf5b6bb2009-04-15 00:06:07 +0000369
370 /// describes - Return true if this subprogram provides debugging
371 /// information for the function F.
372 bool describes(const Function *F);
Chris Lattnera45664f2008-11-10 02:56:27 +0000373 };
Devang Patela913f4f2009-01-20 19:08:39 +0000374
Chris Lattnera45664f2008-11-10 02:56:27 +0000375 /// DIGlobalVariable - This is a wrapper for a global variable.
376 class DIGlobalVariable : public DIGlobal {
377 public:
Devang Patele4b27562009-08-28 23:24:31 +0000378 explicit DIGlobalVariable(MDNode *N = 0)
379 : DIGlobal(N, dwarf::DW_TAG_variable) {}
Bill Wendlingdc817b62009-05-14 18:26:15 +0000380
Chris Lattnera45664f2008-11-10 02:56:27 +0000381 GlobalVariable *getGlobal() const { return getGlobalVariableField(11); }
Devang Patelb79b5352009-01-19 23:21:49 +0000382
383 /// Verify - Verify that a global variable descriptor is well formed.
384 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000385
386 /// dump - print global variable.
387 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000388 };
Devang Patela913f4f2009-01-20 19:08:39 +0000389
Chris Lattnera45664f2008-11-10 02:56:27 +0000390 /// DIVariable - This is a wrapper for a variable (e.g. parameter, local,
391 /// global etc).
392 class DIVariable : public DIDescriptor {
393 public:
Devang Patele4b27562009-08-28 23:24:31 +0000394 explicit DIVariable(MDNode *N = 0)
395 : DIDescriptor(N) {
396 if (DbgNode && !isVariable(getTag()))
397 DbgNode = 0;
Bill Wendlingdc817b62009-05-14 18:26:15 +0000398 }
Devang Patela913f4f2009-01-20 19:08:39 +0000399
Chris Lattnera45664f2008-11-10 02:56:27 +0000400 DIDescriptor getContext() const { return getDescriptorField(1); }
Bill Wendling0582ae92009-03-13 04:39:26 +0000401 const std::string &getName(std::string &F) const {
402 return getStringField(2, F);
Bill Wendlingccbdc7a2009-03-09 05:04:40 +0000403 }
Chris Lattnera45664f2008-11-10 02:56:27 +0000404 DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(3); }
405 unsigned getLineNumber() const { return getUnsignedField(4); }
406 DIType getType() const { return getFieldAs<DIType>(5); }
Devang Patela913f4f2009-01-20 19:08:39 +0000407
Chris Lattnera45664f2008-11-10 02:56:27 +0000408 /// isVariable - Return true if the specified tag is legal for DIVariable.
409 static bool isVariable(unsigned Tag);
Devang Patelb79b5352009-01-19 23:21:49 +0000410
411 /// Verify - Verify that a variable descriptor is well formed.
412 bool Verify() const;
Devang Patelbf3f5a02009-01-30 01:03:10 +0000413
414 /// dump - print variable.
415 void dump() const;
Chris Lattnera45664f2008-11-10 02:56:27 +0000416 };
Devang Patela913f4f2009-01-20 19:08:39 +0000417
Chris Lattnera45664f2008-11-10 02:56:27 +0000418 /// DIBlock - This is a wrapper for a block (e.g. a function, scope, etc).
419 class DIBlock : public DIDescriptor {
420 public:
Devang Patele4b27562009-08-28 23:24:31 +0000421 explicit DIBlock(MDNode *N = 0)
422 : DIDescriptor(N, dwarf::DW_TAG_lexical_block) {}
Bill Wendlingdc817b62009-05-14 18:26:15 +0000423
Chris Lattnera45664f2008-11-10 02:56:27 +0000424 DIDescriptor getContext() const { return getDescriptorField(1); }
425 };
Devang Patela913f4f2009-01-20 19:08:39 +0000426
Chris Lattnera45664f2008-11-10 02:56:27 +0000427 /// DIFactory - This object assists with the construction of the various
428 /// descriptors.
429 class DIFactory {
430 Module &M;
Owen Anderson99035272009-07-07 17:12:53 +0000431 LLVMContext& VMContext;
432
Chris Lattnera45664f2008-11-10 02:56:27 +0000433 // Cached values for uniquing and faster lookups.
Chris Lattner497a7a82008-11-10 04:10:34 +0000434 const Type *EmptyStructPtr; // "{}*".
Chris Lattnera45664f2008-11-10 02:56:27 +0000435 Function *StopPointFn; // llvm.dbg.stoppoint
436 Function *FuncStartFn; // llvm.dbg.func.start
437 Function *RegionStartFn; // llvm.dbg.region.start
438 Function *RegionEndFn; // llvm.dbg.region.end
439 Function *DeclareFn; // llvm.dbg.declare
440 StringMap<Constant*> StringCache;
441 DenseMap<Constant*, DIDescriptor> SimpleConstantCache;
Devang Patela913f4f2009-01-20 19:08:39 +0000442
Chris Lattnera45664f2008-11-10 02:56:27 +0000443 DIFactory(const DIFactory &); // DO NOT IMPLEMENT
444 void operator=(const DIFactory&); // DO NOT IMPLEMENT
445 public:
Chris Lattner497a7a82008-11-10 04:10:34 +0000446 explicit DIFactory(Module &m);
Devang Patela913f4f2009-01-20 19:08:39 +0000447
Chris Lattnera45664f2008-11-10 02:56:27 +0000448 /// GetOrCreateArray - Create an descriptor for an array of descriptors.
449 /// This implicitly uniques the arrays created.
450 DIArray GetOrCreateArray(DIDescriptor *Tys, unsigned NumTys);
451
452 /// GetOrCreateSubrange - Create a descriptor for a value range. This
453 /// implicitly uniques the values returned.
454 DISubrange GetOrCreateSubrange(int64_t Lo, int64_t Hi);
Devang Patela913f4f2009-01-20 19:08:39 +0000455
Chris Lattnera45664f2008-11-10 02:56:27 +0000456 /// CreateCompileUnit - Create a new descriptor for the specified compile
457 /// unit.
458 DICompileUnit CreateCompileUnit(unsigned LangID,
459 const std::string &Filename,
460 const std::string &Directory,
Devang Patel3b64c6b2009-01-23 22:33:47 +0000461 const std::string &Producer,
Devang Pateldd9db662009-01-30 18:20:31 +0000462 bool isMain = false,
Devang Patel3b64c6b2009-01-23 22:33:47 +0000463 bool isOptimized = false,
Devang Patel13319ce2009-02-17 22:43:44 +0000464 const char *Flags = "",
465 unsigned RunTimeVer = 0);
Chris Lattnera45664f2008-11-10 02:56:27 +0000466
467 /// CreateEnumerator - Create a single enumerator value.
468 DIEnumerator CreateEnumerator(const std::string &Name, uint64_t Val);
Devang Patela913f4f2009-01-20 19:08:39 +0000469
Chris Lattnera45664f2008-11-10 02:56:27 +0000470 /// CreateBasicType - Create a basic type like int, float, etc.
471 DIBasicType CreateBasicType(DIDescriptor Context, const std::string &Name,
472 DICompileUnit CompileUnit, unsigned LineNumber,
473 uint64_t SizeInBits, uint64_t AlignInBits,
474 uint64_t OffsetInBits, unsigned Flags,
Devang Pateldd9db662009-01-30 18:20:31 +0000475 unsigned Encoding);
Devang Patela913f4f2009-01-20 19:08:39 +0000476
Chris Lattnera45664f2008-11-10 02:56:27 +0000477 /// CreateDerivedType - Create a derived type like const qualified type,
478 /// pointer, typedef, etc.
479 DIDerivedType CreateDerivedType(unsigned Tag, DIDescriptor Context,
480 const std::string &Name,
481 DICompileUnit CompileUnit,
482 unsigned LineNumber,
483 uint64_t SizeInBits, uint64_t AlignInBits,
484 uint64_t OffsetInBits, unsigned Flags,
Devang Pateldd9db662009-01-30 18:20:31 +0000485 DIType DerivedFrom);
Chris Lattnera45664f2008-11-10 02:56:27 +0000486
487 /// CreateCompositeType - Create a composite type like array, struct, etc.
488 DICompositeType CreateCompositeType(unsigned Tag, DIDescriptor Context,
489 const std::string &Name,
490 DICompileUnit CompileUnit,
491 unsigned LineNumber,
492 uint64_t SizeInBits,
493 uint64_t AlignInBits,
494 uint64_t OffsetInBits, unsigned Flags,
495 DIType DerivedFrom,
Devang Patel13319ce2009-02-17 22:43:44 +0000496 DIArray Elements,
497 unsigned RunTimeLang = 0);
Devang Patela913f4f2009-01-20 19:08:39 +0000498
Chris Lattnera45664f2008-11-10 02:56:27 +0000499 /// CreateSubprogram - Create a new descriptor for the specified subprogram.
500 /// See comments in DISubprogram for descriptions of these fields.
501 DISubprogram CreateSubprogram(DIDescriptor Context, const std::string &Name,
502 const std::string &DisplayName,
503 const std::string &LinkageName,
504 DICompileUnit CompileUnit, unsigned LineNo,
505 DIType Type, bool isLocalToUnit,
Devang Pateldd9db662009-01-30 18:20:31 +0000506 bool isDefinition);
Chris Lattnera45664f2008-11-10 02:56:27 +0000507
508 /// CreateGlobalVariable - Create a new descriptor for the specified global.
509 DIGlobalVariable
510 CreateGlobalVariable(DIDescriptor Context, const std::string &Name,
511 const std::string &DisplayName,
512 const std::string &LinkageName,
513 DICompileUnit CompileUnit,
514 unsigned LineNo, DIType Type, bool isLocalToUnit,
Devang Pateldd9db662009-01-30 18:20:31 +0000515 bool isDefinition, llvm::GlobalVariable *GV);
Devang Patela913f4f2009-01-20 19:08:39 +0000516
Chris Lattnera45664f2008-11-10 02:56:27 +0000517 /// CreateVariable - Create a new descriptor for the specified variable.
518 DIVariable CreateVariable(unsigned Tag, DIDescriptor Context,
519 const std::string &Name,
520 DICompileUnit CompileUnit, unsigned LineNo,
Devang Pateldd9db662009-01-30 18:20:31 +0000521 DIType Type);
Devang Patela913f4f2009-01-20 19:08:39 +0000522
Chris Lattnera45664f2008-11-10 02:56:27 +0000523 /// CreateBlock - This creates a descriptor for a lexical block with the
524 /// specified parent context.
525 DIBlock CreateBlock(DIDescriptor Context);
Devang Patela913f4f2009-01-20 19:08:39 +0000526
Chris Lattnera45664f2008-11-10 02:56:27 +0000527 /// InsertStopPoint - Create a new llvm.dbg.stoppoint intrinsic invocation,
528 /// inserting it at the end of the specified basic block.
529 void InsertStopPoint(DICompileUnit CU, unsigned LineNo, unsigned ColNo,
530 BasicBlock *BB);
Devang Patela913f4f2009-01-20 19:08:39 +0000531
Chris Lattnera45664f2008-11-10 02:56:27 +0000532 /// InsertSubprogramStart - Create a new llvm.dbg.func.start intrinsic to
533 /// mark the start of the specified subprogram.
534 void InsertSubprogramStart(DISubprogram SP, BasicBlock *BB);
535
536 /// InsertRegionStart - Insert a new llvm.dbg.region.start intrinsic call to
537 /// mark the start of a region for the specified scoping descriptor.
538 void InsertRegionStart(DIDescriptor D, BasicBlock *BB);
Devang Patela913f4f2009-01-20 19:08:39 +0000539
Chris Lattnera45664f2008-11-10 02:56:27 +0000540 /// InsertRegionEnd - Insert a new llvm.dbg.region.end intrinsic call to
541 /// mark the end of a region for the specified scoping descriptor.
542 void InsertRegionEnd(DIDescriptor D, BasicBlock *BB);
Devang Patela913f4f2009-01-20 19:08:39 +0000543
Chris Lattnera45664f2008-11-10 02:56:27 +0000544 /// InsertDeclare - Insert a new llvm.dbg.declare intrinsic call.
545 void InsertDeclare(llvm::Value *Storage, DIVariable D, BasicBlock *BB);
Devang Patela913f4f2009-01-20 19:08:39 +0000546
Chris Lattnera45664f2008-11-10 02:56:27 +0000547 private:
548 Constant *GetTagConstant(unsigned TAG);
Chris Lattnera45664f2008-11-10 02:56:27 +0000549 };
Devang Patela913f4f2009-01-20 19:08:39 +0000550
Torok Edwin620f2802008-12-16 09:07:36 +0000551 /// Finds the stoppoint coressponding to this instruction, that is the
552 /// stoppoint that dominates this instruction
553 const DbgStopPointInst *findStopPoint(const Instruction *Inst);
554
555 /// Finds the stoppoint corresponding to first real (non-debug intrinsic)
556 /// instruction in this Basic Block, and returns the stoppoint for it.
557 const DbgStopPointInst *findBBStopPoint(const BasicBlock *BB);
558
559 /// Finds the dbg.declare intrinsic corresponding to this value if any.
560 /// It looks through pointer casts too.
561 const DbgDeclareInst *findDbgDeclare(const Value *V, bool stripCasts = true);
Torok Edwinff7d0e92009-03-10 13:41:26 +0000562
563 /// Find the debug info descriptor corresponding to this global variable.
564 Value *findDbgGlobalDeclare(GlobalVariable *V);
565
Devang Patele2d5a6c2009-07-27 20:30:05 +0000566 bool getLocationInfo(const Value *V, std::string &DisplayName,
567 std::string &Type, unsigned &LineNo, std::string &File,
568 std::string &Dir);
Devang Patel13e16b62009-06-26 01:49:18 +0000569
Devang Patel9e529c32009-07-02 01:15:24 +0000570 /// isValidDebugInfoIntrinsic - Return true if SPI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000571 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000572 bool isValidDebugInfoIntrinsic(DbgStopPointInst &SPI,
573 CodeGenOpt::Level OptLev);
574
575 /// isValidDebugInfoIntrinsic - Return true if FSI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000576 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000577 bool isValidDebugInfoIntrinsic(DbgFuncStartInst &FSI,
578 CodeGenOpt::Level OptLev);
579
580 /// isValidDebugInfoIntrinsic - Return true if RSI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000581 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000582 bool isValidDebugInfoIntrinsic(DbgRegionStartInst &RSI,
583 CodeGenOpt::Level OptLev);
584
585 /// isValidDebugInfoIntrinsic - Return true if REI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000586 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000587 bool isValidDebugInfoIntrinsic(DbgRegionEndInst &REI,
588 CodeGenOpt::Level OptLev);
589
590 /// isValidDebugInfoIntrinsic - Return true if DI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +0000591 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +0000592 bool isValidDebugInfoIntrinsic(DbgDeclareInst &DI,
593 CodeGenOpt::Level OptLev);
594
595 /// ExtractDebugLocation - Extract debug location information
596 /// from llvm.dbg.stoppoint intrinsic.
597 DebugLoc ExtractDebugLocation(DbgStopPointInst &SPI,
Devang Patel9e529c32009-07-02 01:15:24 +0000598 DebugLocTracker &DebugLocInfo);
599
600 /// ExtractDebugLocation - Extract debug location information
601 /// from llvm.dbg.func_start intrinsic.
602 DebugLoc ExtractDebugLocation(DbgFuncStartInst &FSI,
Devang Patel9e529c32009-07-02 01:15:24 +0000603 DebugLocTracker &DebugLocInfo);
604
605 /// isInlinedFnStart - Return true if FSI is starting an inlined function.
606 bool isInlinedFnStart(DbgFuncStartInst &FSI, const Function *CurrentFn);
607
608 /// isInlinedFnEnd - Return true if REI is ending an inlined function.
609 bool isInlinedFnEnd(DbgRegionEndInst &REI, const Function *CurrentFn);
Devang Patel27a201d2009-08-06 15:39:34 +0000610 /// DebugInfoFinder - This object collects DebugInfo from a module.
Devang Patel98c65172009-07-30 18:25:15 +0000611 class DebugInfoFinder {
Devang Pateld2f79a12009-07-28 19:55:13 +0000612
613 public:
Devang Patel98c65172009-07-30 18:25:15 +0000614 /// processModule - Process entire module and collect debug info
Devang Pateld2f79a12009-07-28 19:55:13 +0000615 /// anchors.
Devang Patel98c65172009-07-30 18:25:15 +0000616 void processModule(Module &M);
Devang Pateld2f79a12009-07-28 19:55:13 +0000617
618 private:
Devang Patel98c65172009-07-30 18:25:15 +0000619 /// processType - Process DIType.
620 void processType(DIType DT);
Devang Pateld2f79a12009-07-28 19:55:13 +0000621
Devang Patel98c65172009-07-30 18:25:15 +0000622 /// processSubprogram - Enumberate DISubprogram.
623 void processSubprogram(DISubprogram SP);
Devang Pateld2f79a12009-07-28 19:55:13 +0000624
Devang Patel98c65172009-07-30 18:25:15 +0000625 /// processStopPoint - Process DbgStopPointInst.
626 void processStopPoint(DbgStopPointInst *SPI);
Devang Pateld2f79a12009-07-28 19:55:13 +0000627
Devang Patel98c65172009-07-30 18:25:15 +0000628 /// processFuncStart - Process DbgFuncStartInst.
629 void processFuncStart(DbgFuncStartInst *FSI);
Devang Pateld2f79a12009-07-28 19:55:13 +0000630
Devang Patel98c65172009-07-30 18:25:15 +0000631 /// processRegionStart - Process DbgRegionStart.
632 void processRegionStart(DbgRegionStartInst *DRS);
Devang Patele802f1c2009-07-30 17:30:23 +0000633
Devang Patel98c65172009-07-30 18:25:15 +0000634 /// processRegionEnd - Process DbgRegionEnd.
635 void processRegionEnd(DbgRegionEndInst *DRE);
Devang Patele802f1c2009-07-30 17:30:23 +0000636
Devang Patelb4d31302009-07-31 18:18:52 +0000637 /// processDeclare - Process DbgDeclareInst.
638 void processDeclare(DbgDeclareInst *DDI);
639
Devang Pateld2f79a12009-07-28 19:55:13 +0000640 /// addCompileUnit - Add compile unit into CUs.
641 bool addCompileUnit(DICompileUnit CU);
642
643 /// addGlobalVariable - Add global variable into GVs.
644 bool addGlobalVariable(DIGlobalVariable DIG);
645
646 // addSubprogram - Add subprgoram into SPs.
647 bool addSubprogram(DISubprogram SP);
648
Devang Patel72bcdb62009-08-10 22:09:58 +0000649 /// addType - Add type into Tys.
650 bool addType(DIType DT);
651
Devang Pateld2f79a12009-07-28 19:55:13 +0000652 public:
Devang Patele4b27562009-08-28 23:24:31 +0000653 typedef SmallVector<MDNode *, 8>::iterator iterator;
Devang Pateld2f79a12009-07-28 19:55:13 +0000654 iterator compile_unit_begin() { return CUs.begin(); }
655 iterator compile_unit_end() { return CUs.end(); }
656 iterator subprogram_begin() { return SPs.begin(); }
657 iterator subprogram_end() { return SPs.end(); }
658 iterator global_variable_begin() { return GVs.begin(); }
659 iterator global_variable_end() { return GVs.end(); }
Devang Patel72bcdb62009-08-10 22:09:58 +0000660 iterator type_begin() { return TYs.begin(); }
661 iterator type_end() { return TYs.end(); }
Devang Pateld2f79a12009-07-28 19:55:13 +0000662
663 unsigned compile_unit_count() { return CUs.size(); }
664 unsigned global_variable_count() { return GVs.size(); }
665 unsigned subprogram_count() { return SPs.size(); }
Devang Patel72bcdb62009-08-10 22:09:58 +0000666 unsigned type_count() { return TYs.size(); }
Devang Pateld2f79a12009-07-28 19:55:13 +0000667
668 private:
Devang Patele4b27562009-08-28 23:24:31 +0000669 SmallVector<MDNode *, 8> CUs; // Compile Units
670 SmallVector<MDNode *, 8> SPs; // Subprograms
671 SmallVector<MDNode *, 8> GVs; // Global Variables;
672 SmallVector<MDNode *, 8> TYs; // Types
673 SmallPtrSet<MDNode *, 64> NodesSeen;
Devang Pateld2f79a12009-07-28 19:55:13 +0000674 };
Chris Lattnera45664f2008-11-10 02:56:27 +0000675} // end namespace llvm
676
677#endif