blob: 72d956ed3737813332a2c89ad9980828b4372231 [file] [log] [blame]
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001//===--- CGDebugInfo.h - DebugInfo for LLVM CodeGen -------------*- 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 is the source level debug info generator for llvm translation.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef CLANG_CODEGEN_CGDEBUGINFO_H
15#define CLANG_CODEGEN_CGDEBUGINFO_H
16
17#include "CGBuilder.h"
18#include "clang/AST/Expr.h"
19#include "clang/AST/Type.h"
20#include "clang/Basic/SourceLocation.h"
Eric Christopher13c97672013-05-16 00:45:23 +000021#include "clang/Frontend/CodeGenOptions.h"
Guy Benyei7f92f2d2012-12-18 14:30:41 +000022#include "llvm/ADT/DenseMap.h"
23#include "llvm/DIBuilder.h"
24#include "llvm/DebugInfo.h"
25#include "llvm/Support/Allocator.h"
26#include "llvm/Support/ValueHandle.h"
27
28namespace llvm {
29 class MDNode;
30}
31
32namespace clang {
33 class CXXMethodDecl;
34 class VarDecl;
35 class ObjCInterfaceDecl;
Adrian Prantl4919de62013-03-06 22:03:30 +000036 class ObjCIvarDecl;
Guy Benyei7f92f2d2012-12-18 14:30:41 +000037 class ClassTemplateSpecializationDecl;
38 class GlobalDecl;
David Blaikie9faebd22013-05-20 04:58:53 +000039 class UsingDecl;
Guy Benyei7f92f2d2012-12-18 14:30:41 +000040
41namespace CodeGen {
42 class CodeGenModule;
43 class CodeGenFunction;
44 class CGBlockInfo;
45
46/// CGDebugInfo - This class gathers all debug information during compilation
47/// and is responsible for emitting to llvm globals or pass directly to
48/// the backend.
49class CGDebugInfo {
Adrian Prantled6bbe42013-07-18 00:28:02 +000050 friend class NoLocation;
Adrian Prantlb061ce22013-07-18 01:36:04 +000051 friend class ArtificialLocation;
Guy Benyei7f92f2d2012-12-18 14:30:41 +000052 CodeGenModule &CGM;
Eric Christopher3a7d82c2013-05-20 19:59:06 +000053 const CodeGenOptions::DebugInfoKind DebugKind;
Guy Benyei7f92f2d2012-12-18 14:30:41 +000054 llvm::DIBuilder DBuilder;
55 llvm::DICompileUnit TheCU;
56 SourceLocation CurLoc, PrevLoc;
57 llvm::DIType VTablePtrType;
58 llvm::DIType ClassTy;
Eric Christopherf068c922013-04-02 22:59:11 +000059 llvm::DICompositeType ObjTy;
Guy Benyei7f92f2d2012-12-18 14:30:41 +000060 llvm::DIType SelTy;
Guy Benyeib13621d2012-12-18 14:38:23 +000061 llvm::DIType OCLImage1dDITy, OCLImage1dArrayDITy, OCLImage1dBufferDITy;
62 llvm::DIType OCLImage2dDITy, OCLImage2dArrayDITy;
63 llvm::DIType OCLImage3dDITy;
Guy Benyeie6b9d802013-01-20 12:31:11 +000064 llvm::DIType OCLEventDITy;
Eric Christopher688cf5b2013-07-14 21:12:44 +000065 llvm::DIType BlockLiteralGeneric;
Eric Christopher7c811dc2013-05-16 00:52:23 +000066
Guy Benyei7f92f2d2012-12-18 14:30:41 +000067 /// TypeCache - Cache of previously constructed Types.
68 llvm::DenseMap<void *, llvm::WeakVH> TypeCache;
69
Adrian Prantl4919de62013-03-06 22:03:30 +000070 /// ObjCInterfaceCache - Cache of previously constructed interfaces
71 /// which may change. Storing a pair of DIType and checksum.
Eric Christopher0f855a92013-07-14 21:15:27 +000072 llvm::DenseMap<void *, std::pair<llvm::WeakVH, unsigned> > ObjCInterfaceCache;
Adrian Prantl4919de62013-03-06 22:03:30 +000073
Adrian Prantlebbd7e02013-03-11 18:33:46 +000074 /// RetainedTypes - list of interfaces we want to keep even if orphaned.
75 std::vector<void *> RetainedTypes;
76
Guy Benyei7f92f2d2012-12-18 14:30:41 +000077 /// CompleteTypeCache - Cache of previously constructed complete RecordTypes.
78 llvm::DenseMap<void *, llvm::WeakVH> CompletedTypeCache;
79
80 /// ReplaceMap - Cache of forward declared types to RAUW at the end of
81 /// compilation.
82 std::vector<std::pair<void *, llvm::WeakVH> >ReplaceMap;
83
Guy Benyei7f92f2d2012-12-18 14:30:41 +000084 // LexicalBlockStack - Keep track of our current nested lexical block.
85 std::vector<llvm::TrackingVH<llvm::MDNode> > LexicalBlockStack;
86 llvm::DenseMap<const Decl *, llvm::WeakVH> RegionMap;
87 // FnBeginRegionCount - Keep track of LexicalBlockStack counter at the
88 // beginning of a function. This is used to pop unbalanced regions at
89 // the end of a function.
90 std::vector<unsigned> FnBeginRegionCount;
91
92 /// DebugInfoNames - This is a storage for names that are
93 /// constructed on demand. For example, C++ destructors, C++ operators etc..
94 llvm::BumpPtrAllocator DebugInfoNames;
95 StringRef CWDName;
96
97 llvm::DenseMap<const char *, llvm::WeakVH> DIFileCache;
98 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH> SPCache;
David Blaikie9faebd22013-05-20 04:58:53 +000099 /// \brief Cache declarations relevant to DW_TAG_imported_declarations (C++
100 /// using declarations) that aren't covered by other more specific caches.
101 llvm::DenseMap<const Decl *, llvm::WeakVH> DeclCache;
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000102 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH> NameSpaceCache;
David Blaikiefc46ebc2013-05-20 22:50:41 +0000103 llvm::DenseMap<const NamespaceAliasDecl *, llvm::WeakVH> NamespaceAliasCache;
Eric Christopher0395de32013-01-16 01:22:32 +0000104 llvm::DenseMap<const Decl *, llvm::WeakVH> StaticDataMemberCache;
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000105
106 /// Helper functions for getOrCreateType.
Adrian Prantl4919de62013-03-06 22:03:30 +0000107 unsigned Checksum(const ObjCInterfaceDecl *InterfaceDecl);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000108 llvm::DIType CreateType(const BuiltinType *Ty);
109 llvm::DIType CreateType(const ComplexType *Ty);
David Blaikie5f6e2f42013-06-05 05:32:23 +0000110 llvm::DIType CreateQualifiedType(QualType Ty, llvm::DIFile F, bool Declaration);
111 llvm::DIType CreateType(const TypedefType *Ty, llvm::DIFile F, bool Declaration);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000112 llvm::DIType CreateType(const ObjCObjectPointerType *Ty,
113 llvm::DIFile F);
114 llvm::DIType CreateType(const PointerType *Ty, llvm::DIFile F);
115 llvm::DIType CreateType(const BlockPointerType *Ty, llvm::DIFile F);
116 llvm::DIType CreateType(const FunctionType *Ty, llvm::DIFile F);
David Blaikie5f6e2f42013-06-05 05:32:23 +0000117 llvm::DIType CreateType(const RecordType *Ty, bool Declaration);
David Blaikie27804892013-08-15 20:49:17 +0000118 llvm::DIType CreateTypeDefinition(const RecordType *Ty);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000119 llvm::DIType CreateLimitedType(const RecordType *Ty);
120 llvm::DIType CreateType(const ObjCInterfaceType *Ty, llvm::DIFile F);
121 llvm::DIType CreateType(const ObjCObjectType *Ty, llvm::DIFile F);
122 llvm::DIType CreateType(const VectorType *Ty, llvm::DIFile F);
123 llvm::DIType CreateType(const ArrayType *Ty, llvm::DIFile F);
124 llvm::DIType CreateType(const LValueReferenceType *Ty, llvm::DIFile F);
125 llvm::DIType CreateType(const RValueReferenceType *Ty, llvm::DIFile Unit);
126 llvm::DIType CreateType(const MemberPointerType *Ty, llvm::DIFile F);
127 llvm::DIType CreateType(const AtomicType *Ty, llvm::DIFile F);
128 llvm::DIType CreateEnumType(const EnumDecl *ED);
Adrian Prantle86fcc42013-03-29 19:20:29 +0000129 llvm::DIType CreateSelfType(const QualType &QualTy, llvm::DIType Ty);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000130 llvm::DIType getTypeOrNull(const QualType);
131 llvm::DIType getCompletedTypeOrNull(const QualType);
David Blaikie9a845292013-05-22 23:22:42 +0000132 llvm::DICompositeType getOrCreateMethodType(const CXXMethodDecl *Method,
133 llvm::DIFile F);
134 llvm::DICompositeType getOrCreateInstanceMethodType(
David Blaikie9c78f9b2013-01-07 23:06:35 +0000135 QualType ThisPtr, const FunctionProtoType *Func, llvm::DIFile Unit);
David Blaikie9a845292013-05-22 23:22:42 +0000136 llvm::DICompositeType getOrCreateFunctionType(const Decl *D, QualType FnType,
137 llvm::DIFile F);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000138 llvm::DIType getOrCreateVTablePtrType(llvm::DIFile F);
139 llvm::DINameSpace getOrCreateNameSpace(const NamespaceDecl *N);
David Blaikieb0f77b02013-05-24 21:33:22 +0000140 llvm::DIType getOrCreateTypeDeclaration(QualType PointeeTy, llvm::DIFile F);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000141 llvm::DIType CreatePointerLikeType(unsigned Tag,
142 const Type *Ty, QualType PointeeTy,
143 llvm::DIFile F);
Guy Benyeib13621d2012-12-18 14:38:23 +0000144
Adrian Prantlebbd7e02013-03-11 18:33:46 +0000145 llvm::Value *getCachedInterfaceTypeOrNull(const QualType Ty);
Guy Benyeib13621d2012-12-18 14:38:23 +0000146 llvm::DIType getOrCreateStructPtrType(StringRef Name, llvm::DIType &Cache);
147
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000148 llvm::DISubprogram CreateCXXMemberFunction(const CXXMethodDecl *Method,
149 llvm::DIFile F,
150 llvm::DIType RecordTy);
Eric Christopher7c811dc2013-05-16 00:52:23 +0000151
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000152 void CollectCXXMemberFunctions(const CXXRecordDecl *Decl,
153 llvm::DIFile F,
154 SmallVectorImpl<llvm::Value *> &E,
155 llvm::DIType T);
156
157 void CollectCXXFriends(const CXXRecordDecl *Decl,
158 llvm::DIFile F,
159 SmallVectorImpl<llvm::Value *> &EltTys,
160 llvm::DIType RecordTy);
161
162 void CollectCXXBases(const CXXRecordDecl *Decl,
163 llvm::DIFile F,
164 SmallVectorImpl<llvm::Value *> &EltTys,
165 llvm::DIType RecordTy);
Eric Christopher7c811dc2013-05-16 00:52:23 +0000166
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000167 llvm::DIArray
168 CollectTemplateParams(const TemplateParameterList *TPList,
David Blaikie35178dc2013-06-22 18:59:18 +0000169 ArrayRef<TemplateArgument> TAList,
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000170 llvm::DIFile Unit);
171 llvm::DIArray
172 CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit);
Eric Christopher7c811dc2013-05-16 00:52:23 +0000173 llvm::DIArray
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000174 CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TS,
175 llvm::DIFile F);
176
177 llvm::DIType createFieldType(StringRef name, QualType type,
178 uint64_t sizeInBitsOverride, SourceLocation loc,
179 AccessSpecifier AS, uint64_t offsetInBits,
180 llvm::DIFile tunit,
181 llvm::DIDescriptor scope);
Eric Christopher0395de32013-01-16 01:22:32 +0000182
183 // Helpers for collecting fields of a record.
184 void CollectRecordLambdaFields(const CXXRecordDecl *CXXDecl,
185 SmallVectorImpl<llvm::Value *> &E,
186 llvm::DIType RecordTy);
187 void CollectRecordStaticField(const VarDecl *Var,
188 SmallVectorImpl<llvm::Value *> &E,
189 llvm::DIType RecordTy);
190 void CollectRecordNormalField(const FieldDecl *Field, uint64_t OffsetInBits,
191 llvm::DIFile F,
192 SmallVectorImpl<llvm::Value *> &E,
193 llvm::DIType RecordTy);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000194 void CollectRecordFields(const RecordDecl *Decl, llvm::DIFile F,
195 SmallVectorImpl<llvm::Value *> &E,
196 llvm::DIType RecordTy);
197
198 void CollectVTableInfo(const CXXRecordDecl *Decl,
199 llvm::DIFile F,
200 SmallVectorImpl<llvm::Value *> &EltTys);
201
202 // CreateLexicalBlock - Create a new lexical block node and push it on
203 // the stack.
204 void CreateLexicalBlock(SourceLocation Loc);
Eric Christopher7c811dc2013-05-16 00:52:23 +0000205
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000206public:
207 CGDebugInfo(CodeGenModule &CGM);
208 ~CGDebugInfo();
209
210 void finalize();
211
212 /// setLocation - Update the current source location. If \arg loc is
213 /// invalid it is ignored.
214 void setLocation(SourceLocation Loc);
215
Adrian Prantl59f0a5a2013-05-16 00:41:29 +0000216 /// getLocation - Return the current source location.
217 SourceLocation getLocation() const { return CurLoc; }
218
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000219 /// EmitLocation - Emit metadata to indicate a change in line/column
220 /// information in the source file.
Adrian Prantl00df5ea2013-03-12 20:43:25 +0000221 /// \param ForceColumnInfo Assume DebugColumnInfo option is true.
222 void EmitLocation(CGBuilderTy &Builder, SourceLocation Loc,
223 bool ForceColumnInfo = false);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000224
225 /// EmitFunctionStart - Emit a call to llvm.dbg.function.start to indicate
226 /// start of a new function.
227 void EmitFunctionStart(GlobalDecl GD, QualType FnType,
228 llvm::Function *Fn, CGBuilderTy &Builder);
229
230 /// EmitFunctionEnd - Constructs the debug code for exiting a function.
231 void EmitFunctionEnd(CGBuilderTy &Builder);
232
233 /// EmitLexicalBlockStart - Emit metadata to indicate the beginning of a
234 /// new lexical block and push the block onto the stack.
235 void EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc);
236
237 /// EmitLexicalBlockEnd - Emit metadata to indicate the end of a new lexical
238 /// block and pop the current block.
239 void EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc);
240
241 /// EmitDeclareOfAutoVariable - Emit call to llvm.dbg.declare for an automatic
242 /// variable declaration.
243 void EmitDeclareOfAutoVariable(const VarDecl *Decl, llvm::Value *AI,
244 CGBuilderTy &Builder);
245
246 /// EmitDeclareOfBlockDeclRefVariable - Emit call to llvm.dbg.declare for an
247 /// imported variable declaration in a block.
248 void EmitDeclareOfBlockDeclRefVariable(const VarDecl *variable,
249 llvm::Value *storage,
250 CGBuilderTy &Builder,
251 const CGBlockInfo &blockInfo);
252
253 /// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
254 /// variable declaration.
255 void EmitDeclareOfArgVariable(const VarDecl *Decl, llvm::Value *AI,
256 unsigned ArgNo, CGBuilderTy &Builder);
257
258 /// EmitDeclareOfBlockLiteralArgVariable - Emit call to
259 /// llvm.dbg.declare for the block-literal argument to a block
260 /// invocation function.
261 void EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
Adrian Prantl836e7c92013-03-14 17:53:33 +0000262 llvm::Value *Arg,
263 llvm::Value *LocalAddr,
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000264 CGBuilderTy &Builder);
265
266 /// EmitGlobalVariable - Emit information about a global variable.
267 void EmitGlobalVariable(llvm::GlobalVariable *GV, const VarDecl *Decl);
268
269 /// EmitGlobalVariable - Emit information about an objective-c interface.
270 void EmitGlobalVariable(llvm::GlobalVariable *GV, ObjCInterfaceDecl *Decl);
271
272 /// EmitGlobalVariable - Emit global variable's debug info.
273 void EmitGlobalVariable(const ValueDecl *VD, llvm::Constant *Init);
274
David Blaikie957dac52013-04-22 06:13:21 +0000275 /// \brief - Emit C++ using directive.
276 void EmitUsingDirective(const UsingDirectiveDecl &UD);
277
David Blaikie9faebd22013-05-20 04:58:53 +0000278 /// \brief - Emit C++ using declaration.
279 void EmitUsingDecl(const UsingDecl &UD);
280
David Blaikiefc46ebc2013-05-20 22:50:41 +0000281 /// \brief - Emit C++ namespace alias.
282 llvm::DIImportedEntity EmitNamespaceAlias(const NamespaceAliasDecl &NA);
283
Eric Christopher7c811dc2013-05-16 00:52:23 +0000284 /// getOrCreateRecordType - Emit record type's standalone debug info.
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000285 llvm::DIType getOrCreateRecordType(QualType Ty, SourceLocation L);
286
287 /// getOrCreateInterfaceType - Emit an objective c interface type standalone
288 /// debug info.
289 llvm::DIType getOrCreateInterfaceType(QualType Ty,
Eric Christopher13c97672013-05-16 00:45:23 +0000290 SourceLocation Loc);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000291
David Blaikie27804892013-08-15 20:49:17 +0000292 void completeType(const RecordDecl *RD);
293 void completeRequiredType(const RecordDecl *RD);
294
David Blaikieeab6a362013-06-21 00:40:50 +0000295
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000296private:
297 /// EmitDeclare - Emit call to llvm.dbg.declare for a variable declaration.
298 void EmitDeclare(const VarDecl *decl, unsigned Tag, llvm::Value *AI,
299 unsigned ArgNo, CGBuilderTy &Builder);
300
Eric Christopher7c811dc2013-05-16 00:52:23 +0000301 // EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000302 // See BuildByRefType.
303 llvm::DIType EmitTypeForVarWithBlocksAttr(const VarDecl *VD,
304 uint64_t *OffSet);
305
306 /// getContextDescriptor - Get context info for the decl.
David Blaikiebb000792013-04-19 06:56:38 +0000307 llvm::DIScope getContextDescriptor(const Decl *Decl);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000308
David Blaikie9faebd22013-05-20 04:58:53 +0000309 llvm::DIScope getCurrentContextDescriptor(const Decl *Decl);
310
David Blaikie951094b2013-08-15 18:59:40 +0000311 /// \brief Create a forward decl for a RecordType in a given context.
David Blaikiec5cd1a72013-08-15 20:17:25 +0000312 llvm::DIType getOrCreateRecordFwdDecl(const RecordDecl *, llvm::DIDescriptor);
Eric Christopher7c811dc2013-05-16 00:52:23 +0000313
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000314 /// createContextChain - Create a set of decls for the context chain.
315 llvm::DIDescriptor createContextChain(const Decl *Decl);
316
317 /// getCurrentDirname - Return current directory name.
318 StringRef getCurrentDirname();
319
320 /// CreateCompileUnit - Create new compile unit.
321 void CreateCompileUnit();
322
Eric Christopher7c811dc2013-05-16 00:52:23 +0000323 /// getOrCreateFile - Get the file debug info descriptor for the input
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000324 /// location.
325 llvm::DIFile getOrCreateFile(SourceLocation Loc);
326
327 /// getOrCreateMainFile - Get the file info for main compile unit.
328 llvm::DIFile getOrCreateMainFile();
329
330 /// getOrCreateType - Get the type from the cache or create a new type if
331 /// necessary.
David Blaikie5f6e2f42013-06-05 05:32:23 +0000332 llvm::DIType getOrCreateType(QualType Ty, llvm::DIFile F, bool Declaration = false);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000333
334 /// getOrCreateLimitedType - Get the type from the cache or create a new
335 /// partial type if necessary.
David Blaikie4a077162013-08-12 22:24:20 +0000336 llvm::DIType getOrCreateLimitedType(const RecordType *Ty, llvm::DIFile F);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000337
338 /// CreateTypeNode - Create type metadata for a source language type.
David Blaikie5f6e2f42013-06-05 05:32:23 +0000339 llvm::DIType CreateTypeNode(QualType Ty, llvm::DIFile F, bool Declaration);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000340
Adrian Prantl4919de62013-03-06 22:03:30 +0000341 /// getObjCInterfaceDecl - return the underlying ObjCInterfaceDecl
342 /// if Ty is an ObjCInterface or a pointer to one.
343 ObjCInterfaceDecl* getObjCInterfaceDecl(QualType Ty);
344
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000345 /// CreateMemberType - Create new member and increase Offset by FType's size.
346 llvm::DIType CreateMemberType(llvm::DIFile Unit, QualType FType,
347 StringRef Name, uint64_t *Offset);
348
David Blaikie9faebd22013-05-20 04:58:53 +0000349 /// \brief Retrieve the DIDescriptor, if any, for the canonical form of this
350 /// declaration.
351 llvm::DIDescriptor getDeclarationOrDefinition(const Decl *D);
352
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000353 /// getFunctionDeclaration - Return debug info descriptor to describe method
354 /// declaration for the given method definition.
355 llvm::DISubprogram getFunctionDeclaration(const Decl *D);
356
Eric Christopher0395de32013-01-16 01:22:32 +0000357 /// getStaticDataMemberDeclaration - Return debug info descriptor to
358 /// describe in-class static data member declaration for the given
359 /// out-of-class definition.
360 llvm::DIDerivedType getStaticDataMemberDeclaration(const Decl *D);
361
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000362 /// getFunctionName - Get function name for the given FunctionDecl. If the
363 /// name is constructred on demand (e.g. C++ destructor) then the name
364 /// is stored on the side.
365 StringRef getFunctionName(const FunctionDecl *FD);
366
367 /// getObjCMethodName - Returns the unmangled name of an Objective-C method.
Eric Christopher7c811dc2013-05-16 00:52:23 +0000368 /// This is the display name for the debugging info.
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000369 StringRef getObjCMethodName(const ObjCMethodDecl *FD);
370
371 /// getSelectorName - Return selector name. This is used for debugging
372 /// info.
373 StringRef getSelectorName(Selector S);
374
375 /// getClassName - Get class name including template argument list.
376 StringRef getClassName(const RecordDecl *RD);
377
378 /// getVTableName - Get vtable name for the given Class.
379 StringRef getVTableName(const CXXRecordDecl *Decl);
380
381 /// getLineNumber - Get line number for the location. If location is invalid
382 /// then use current location.
383 unsigned getLineNumber(SourceLocation Loc);
384
Eric Christopher7c811dc2013-05-16 00:52:23 +0000385 /// getColumnNumber - Get column number for the location. If location is
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000386 /// invalid then use current location.
Adrian Prantl00df5ea2013-03-12 20:43:25 +0000387 /// \param Force Assume DebugColumnInfo option is true.
388 unsigned getColumnNumber(SourceLocation Loc, bool Force=false);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000389};
Adrian Prantled6bbe42013-07-18 00:28:02 +0000390
391/// NoLocation - An RAII object that temporarily disables debug
392/// locations. This is useful for emitting instructions that should be
393/// counted towards the function prologue.
394class NoLocation {
395 SourceLocation SavedLoc;
396 CGDebugInfo *DI;
397 CGBuilderTy &Builder;
398public:
399 NoLocation(CodeGenFunction &CGF, CGBuilderTy &B);
400 /// ~NoLocation - Autorestore everything back to normal.
401 ~NoLocation();
402};
403
Adrian Prantlb061ce22013-07-18 01:36:04 +0000404/// ArtificialLocation - An RAII object that temporarily switches to
405/// an artificial debug location that has a valid scope, but no line
Adrian Prantled6bbe42013-07-18 00:28:02 +0000406/// information. This is useful when emitting compiler-generated
407/// helper functions that have no source location associated with
Adrian Prantlb6cdc962013-07-24 20:34:39 +0000408/// them. The DWARF specification allows the compiler to use the
409/// special line number 0 to indicate code that can not be attributed
410/// to any source location.
Adrian Prantled6bbe42013-07-18 00:28:02 +0000411///
Adrian Prantlb6cdc962013-07-24 20:34:39 +0000412/// This is necessary because passing an empty SourceLocation to
Adrian Prantled6bbe42013-07-18 00:28:02 +0000413/// CGDebugInfo::setLocation() will result in the last valid location
414/// being reused.
Adrian Prantlb061ce22013-07-18 01:36:04 +0000415class ArtificialLocation {
Adrian Prantled6bbe42013-07-18 00:28:02 +0000416 SourceLocation SavedLoc;
417 CGDebugInfo *DI;
418 CGBuilderTy &Builder;
419public:
Adrian Prantlb061ce22013-07-18 01:36:04 +0000420 ArtificialLocation(CodeGenFunction &CGF, CGBuilderTy &B);
Adrian Prantlb6cdc962013-07-24 20:34:39 +0000421
422 /// Set the current location to line 0, but within the current scope
Adrian Prantl09ade332013-07-25 00:23:37 +0000423 /// (= the top of the LexicalBlockStack).
Adrian Prantlb6cdc962013-07-24 20:34:39 +0000424 void Emit();
425
426 /// ~ArtificialLocation - Autorestore everything back to normal.
Adrian Prantlb061ce22013-07-18 01:36:04 +0000427 ~ArtificialLocation();
Adrian Prantled6bbe42013-07-18 00:28:02 +0000428};
429
430
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000431} // namespace CodeGen
432} // namespace clang
433
434
435#endif