blob: f102f8b3a9521933dd21b7d8d06f9bfa7252040b [file] [log] [blame]
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001//===--- CGDebugInfo.cpp - Emit Debug Information for a Module ------------===//
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 coordinates the debug information generation while generating code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CGDebugInfo.h"
Mike Stumpb1a6e682009-09-30 02:43:10 +000015#include "CodeGenFunction.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000016#include "CodeGenModule.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000017#include "clang/AST/ASTContext.h"
Devang Patel2ed8f002010-08-27 17:47:47 +000018#include "clang/AST/DeclFriend.h"
Devang Patel9ca36b62009-02-26 21:10:26 +000019#include "clang/AST/DeclObjC.h"
Devang Patel700a1cb2010-07-20 20:24:18 +000020#include "clang/AST/DeclTemplate.h"
Chris Lattner3cc5c402008-11-11 07:01:36 +000021#include "clang/AST/Expr.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000022#include "clang/AST/RecordLayout.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000023#include "clang/Basic/SourceManager.h"
24#include "clang/Basic/FileManager.h"
Mike Stump5a862172009-09-15 21:48:34 +000025#include "clang/Basic/Version.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000026#include "clang/Frontend/CodeGenOptions.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000027#include "llvm/Constants.h"
28#include "llvm/DerivedTypes.h"
29#include "llvm/Instructions.h"
30#include "llvm/Intrinsics.h"
31#include "llvm/Module.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000032#include "llvm/ADT/StringExtras.h"
33#include "llvm/ADT/SmallVector.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000034#include "llvm/Support/Dwarf.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000035#include "llvm/Support/Path.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000036#include "llvm/Target/TargetMachine.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000037using namespace clang;
38using namespace clang::CodeGen;
39
Anders Carlsson20f12a22009-12-06 18:00:51 +000040CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
Devang Patel823d8e92010-12-08 22:42:58 +000041 : CGM(CGM), DBuilder(CGM.getModule()),
Dan Gohman4cac5b42010-08-20 22:02:57 +000042 BlockLiteralGenericSet(false) {
Devang Patel17800552010-03-09 00:44:50 +000043 CreateCompileUnit();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000044}
45
Chris Lattner9c85ba32008-11-10 06:08:34 +000046CGDebugInfo::~CGDebugInfo() {
Daniel Dunbar66031a52008-10-17 16:15:48 +000047 assert(RegionStack.empty() && "Region stack mismatch, stack not empty!");
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000048}
49
Chris Lattner9c85ba32008-11-10 06:08:34 +000050void CGDebugInfo::setLocation(SourceLocation Loc) {
51 if (Loc.isValid())
Anders Carlsson20f12a22009-12-06 18:00:51 +000052 CurLoc = CGM.getContext().getSourceManager().getInstantiationLoc(Loc);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000053}
54
Devang Patel33583052010-01-28 23:15:27 +000055/// getContextDescriptor - Get context info for the decl.
Devang Pateleb6d79b2010-02-01 21:34:11 +000056llvm::DIDescriptor CGDebugInfo::getContextDescriptor(const Decl *Context,
Devang Patel33583052010-01-28 23:15:27 +000057 llvm::DIDescriptor &CompileUnit) {
Devang Pateleb6d79b2010-02-01 21:34:11 +000058 if (!Context)
59 return CompileUnit;
60
61 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
62 I = RegionMap.find(Context);
63 if (I != RegionMap.end())
Gabor Greif38c9b172010-09-18 13:00:17 +000064 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
Devang Patel411894b2010-02-01 22:40:08 +000065
Devang Pateleb6d79b2010-02-01 21:34:11 +000066 // Check namespace.
67 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
68 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl, CompileUnit));
Devang Patel8b90a782010-05-13 23:52:37 +000069
70 if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context)) {
71 if (!RDecl->isDependentType()) {
Devang Patela2e57692010-10-28 17:27:32 +000072 llvm::DIType Ty = getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
Devang Patel8b90a782010-05-13 23:52:37 +000073 llvm::DIFile(CompileUnit));
74 return llvm::DIDescriptor(Ty);
75 }
76 }
Devang Patel979ec2e2009-10-06 00:35:31 +000077 return CompileUnit;
78}
79
Devang Patel9c6c3a02010-01-14 00:36:21 +000080/// getFunctionName - Get function name for the given FunctionDecl. If the
81/// name is constructred on demand (e.g. C++ destructor) then the name
82/// is stored on the side.
83llvm::StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
84 assert (FD && "Invalid FunctionDecl!");
85 IdentifierInfo *FII = FD->getIdentifier();
86 if (FII)
87 return FII->getName();
88
89 // Otherwise construct human readable name for debug info.
90 std::string NS = FD->getNameAsString();
91
92 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +000093 char *StrPtr = DebugInfoNames.Allocate<char>(NS.length());
Benjamin Kramer1b627dc2010-01-23 18:16:07 +000094 memcpy(StrPtr, NS.data(), NS.length());
95 return llvm::StringRef(StrPtr, NS.length());
Devang Patel9c6c3a02010-01-14 00:36:21 +000096}
97
David Chisnall52044a22010-09-02 18:01:51 +000098llvm::StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
99 llvm::SmallString<256> MethodName;
100 llvm::raw_svector_ostream OS(MethodName);
101 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
102 const DeclContext *DC = OMD->getDeclContext();
Devang Patela2e57692010-10-28 17:27:32 +0000103 if (const ObjCImplementationDecl *OID =
104 dyn_cast<const ObjCImplementationDecl>(DC)) {
David Chisnall52044a22010-09-02 18:01:51 +0000105 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000106 } else if (const ObjCInterfaceDecl *OID =
107 dyn_cast<const ObjCInterfaceDecl>(DC)) {
Fariborz Jahanian1a4c9372010-10-18 17:51:06 +0000108 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000109 } else if (const ObjCCategoryImplDecl *OCD =
110 dyn_cast<const ObjCCategoryImplDecl>(DC)){
David Chisnall52044a22010-09-02 18:01:51 +0000111 OS << ((NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
112 OCD->getIdentifier()->getNameStart() << ')';
113 }
114 OS << ' ' << OMD->getSelector().getAsString() << ']';
115
116 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
117 memcpy(StrPtr, MethodName.begin(), OS.tell());
118 return llvm::StringRef(StrPtr, OS.tell());
119}
120
Devang Patel700a1cb2010-07-20 20:24:18 +0000121/// getClassName - Get class name including template argument list.
122llvm::StringRef
123CGDebugInfo::getClassName(RecordDecl *RD) {
124 ClassTemplateSpecializationDecl *Spec
125 = dyn_cast<ClassTemplateSpecializationDecl>(RD);
126 if (!Spec)
127 return RD->getName();
128
129 const TemplateArgument *Args;
130 unsigned NumArgs;
131 std::string Buffer;
132 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
133 const TemplateSpecializationType *TST =
134 cast<TemplateSpecializationType>(TAW->getType());
135 Args = TST->getArgs();
136 NumArgs = TST->getNumArgs();
137 } else {
138 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Douglas Gregor910f8002010-11-07 23:05:16 +0000139 Args = TemplateArgs.data();
140 NumArgs = TemplateArgs.size();
Devang Patel700a1cb2010-07-20 20:24:18 +0000141 }
142 Buffer = RD->getIdentifier()->getNameStart();
143 PrintingPolicy Policy(CGM.getLangOptions());
144 Buffer += TemplateSpecializationType::PrintTemplateArgumentList(Args,
145 NumArgs,
146 Policy);
147
148 // Copy this name on the side and use its reference.
149 char *StrPtr = DebugInfoNames.Allocate<char>(Buffer.length());
150 memcpy(StrPtr, Buffer.data(), Buffer.length());
151 return llvm::StringRef(StrPtr, Buffer.length());
Devang Patel700a1cb2010-07-20 20:24:18 +0000152}
153
Devang Patel17800552010-03-09 00:44:50 +0000154/// getOrCreateFile - Get the file debug info descriptor for the input location.
155llvm::DIFile CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
Devang Patel823d8e92010-12-08 22:42:58 +0000156 if (!Loc.isValid())
157 // If Location is not valid then use main input file.
158 return DBuilder.CreateFile(TheCU.getFilename(), TheCU.getDirectory());
159
Anders Carlsson20f12a22009-12-06 18:00:51 +0000160 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patel17800552010-03-09 00:44:50 +0000161 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Ted Kremenek9c250392010-03-30 00:27:51 +0000162
Douglas Gregor8c457a82010-11-11 20:45:16 +0000163 if (PLoc.isInvalid())
164 // If the location is not valid then use main input file.
Devang Patel823d8e92010-12-08 22:42:58 +0000165 return DBuilder.CreateFile(TheCU.getFilename(), TheCU.getDirectory());
Douglas Gregor8c457a82010-11-11 20:45:16 +0000166
Ted Kremenek9c250392010-03-30 00:27:51 +0000167 // Cache the results.
168 const char *fname = PLoc.getFilename();
169 llvm::DenseMap<const char *, llvm::WeakVH>::iterator it =
170 DIFileCache.find(fname);
171
172 if (it != DIFileCache.end()) {
173 // Verify that the information still exists.
174 if (&*it->second)
175 return llvm::DIFile(cast<llvm::MDNode>(it->second));
176 }
177
Devang Patel823d8e92010-12-08 22:42:58 +0000178 llvm::DIFile F = DBuilder.CreateFile(PLoc.getFilename(), getCurrentDirname());
Ted Kremenek9c250392010-03-30 00:27:51 +0000179
Devang Patelab699792010-05-07 18:12:35 +0000180 DIFileCache[fname] = F;
Ted Kremenek9c250392010-03-30 00:27:51 +0000181 return F;
182
Devang Patel17800552010-03-09 00:44:50 +0000183}
Devang Patel8ab870d2010-05-12 23:46:38 +0000184
Devang Patel532105f2010-10-28 22:03:20 +0000185/// getOrCreateMainFile - Get the file info for main compile unit.
186llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
Devang Patel823d8e92010-12-08 22:42:58 +0000187 return DBuilder.CreateFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel532105f2010-10-28 22:03:20 +0000188}
189
Devang Patel8ab870d2010-05-12 23:46:38 +0000190/// getLineNumber - Get line number for the location. If location is invalid
191/// then use current location.
192unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
193 assert (CurLoc.isValid() && "Invalid current location!");
194 SourceManager &SM = CGM.getContext().getSourceManager();
195 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000196 return PLoc.isValid()? PLoc.getLine() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000197}
198
199/// getColumnNumber - Get column number for the location. If location is
200/// invalid then use current location.
201unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
202 assert (CurLoc.isValid() && "Invalid current location!");
203 SourceManager &SM = CGM.getContext().getSourceManager();
204 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000205 return PLoc.isValid()? PLoc.getColumn() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000206}
207
Devang Patelac4d13c2010-07-27 15:17:16 +0000208llvm::StringRef CGDebugInfo::getCurrentDirname() {
209 if (!CWDName.empty())
210 return CWDName;
211 char *CompDirnamePtr = NULL;
212 llvm::sys::Path CWD = llvm::sys::Path::GetCurrentDirectory();
213 CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
214 memcpy(CompDirnamePtr, CWD.c_str(), CWD.size());
215 return CWDName = llvm::StringRef(CompDirnamePtr, CWD.size());
216}
217
Devang Patel17800552010-03-09 00:44:50 +0000218/// CreateCompileUnit - Create new compile unit.
219void CGDebugInfo::CreateCompileUnit() {
220
221 // Get absolute path name.
Douglas Gregorac91b4c2010-03-18 23:46:43 +0000222 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000223 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
224 if (MainFileName.empty())
Devang Patel22fe5852010-03-12 21:04:27 +0000225 MainFileName = "<unknown>";
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000226
Douglas Gregorf6728fc2010-03-22 21:28:29 +0000227 // The main file name provided via the "-main-file-name" option contains just
228 // the file name itself with no path information. This file name may have had
229 // a relative path, so we look into the actual file entry for the main
230 // file to determine the real absolute path for the file.
Devang Patel6e6bc392010-07-23 23:04:28 +0000231 std::string MainFileDir;
Devang Patelac4d13c2010-07-27 15:17:16 +0000232 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000233 MainFileDir = MainFile->getDir()->getName();
Devang Patelac4d13c2010-07-27 15:17:16 +0000234 if (MainFileDir != ".")
235 MainFileName = MainFileDir + "/" + MainFileName;
236 }
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000237
Devang Patelac4d13c2010-07-27 15:17:16 +0000238 // Save filename string.
239 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
240 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
241 llvm::StringRef Filename(FilenamePtr, MainFileName.length());
242
Chris Lattner515455a2009-03-25 03:28:08 +0000243 unsigned LangTag;
Devang Patel17800552010-03-09 00:44:50 +0000244 const LangOptions &LO = CGM.getLangOptions();
Chris Lattner515455a2009-03-25 03:28:08 +0000245 if (LO.CPlusPlus) {
246 if (LO.ObjC1)
247 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
248 else
249 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
250 } else if (LO.ObjC1) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000251 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner515455a2009-03-25 03:28:08 +0000252 } else if (LO.C99) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000253 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner515455a2009-03-25 03:28:08 +0000254 } else {
255 LangTag = llvm::dwarf::DW_LANG_C89;
256 }
Devang Patel446c6192009-04-17 21:06:59 +0000257
Daniel Dunbar19f19832010-08-24 17:41:09 +0000258 std::string Producer = getClangFullVersion();
Chris Lattner4c2577a2009-05-02 01:00:04 +0000259
260 // Figure out which version of the ObjC runtime we have.
261 unsigned RuntimeVers = 0;
262 if (LO.ObjC1)
263 RuntimeVers = LO.ObjCNonFragileABI ? 2 : 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000264
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000265 // Create new compile unit.
Devang Patel823d8e92010-12-08 22:42:58 +0000266 DBuilder.CreateCompileUnit(
Devang Patel58115002010-07-27 20:49:59 +0000267 LangTag, Filename, getCurrentDirname(),
Devang Patel823d8e92010-12-08 22:42:58 +0000268 Producer,
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000269 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel823d8e92010-12-08 22:42:58 +0000270 // FIXME - Eliminate TheCU.
271 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000272}
273
Devang Patel65e99f22009-02-25 01:36:11 +0000274/// CreateType - Get the Basic type from the cache or create a new
Chris Lattner9c85ba32008-11-10 06:08:34 +0000275/// one if necessary.
Devang Patelf1d1d9a2010-11-01 16:52:40 +0000276llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000277 unsigned Encoding = 0;
Devang Patel05127ca2010-07-28 23:23:29 +0000278 const char *BTName = NULL;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000279 switch (BT->getKind()) {
280 default:
281 case BuiltinType::Void:
282 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000283 case BuiltinType::ObjCClass:
Devang Patel823d8e92010-12-08 22:42:58 +0000284 return DBuilder.CreateStructType(TheCU, "objc_class",
285 getOrCreateMainFile(), 0, 0, 0,
286 llvm::DIDescriptor::FlagFwdDecl,
287 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000288 case BuiltinType::ObjCId: {
289 // typedef struct objc_class *Class;
290 // typedef struct objc_object {
291 // Class isa;
292 // } *id;
293
294 llvm::DIType OCTy =
Devang Patel823d8e92010-12-08 22:42:58 +0000295 DBuilder.CreateStructType(TheCU, "objc_class",
296 getOrCreateMainFile(), 0, 0, 0,
297 llvm::DIDescriptor::FlagFwdDecl,
298 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000299 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
300
Devang Patel823d8e92010-12-08 22:42:58 +0000301 llvm::DIType ISATy = DBuilder.CreatePointerType(OCTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000302
Devang Patel823d8e92010-12-08 22:42:58 +0000303 llvm::SmallVector<llvm::Value *, 16> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000304 llvm::DIType FieldTy =
Devang Patel823d8e92010-12-08 22:42:58 +0000305 DBuilder.CreateMemberType("isa", getOrCreateMainFile(),
306 0,Size, 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000307 EltTys.push_back(FieldTy);
308 llvm::DIArray Elements =
Devang Patel823d8e92010-12-08 22:42:58 +0000309 DBuilder.GetOrCreateArray(EltTys.data(), EltTys.size());
Devang Patelc8972c62010-07-28 01:33:15 +0000310
Devang Patel823d8e92010-12-08 22:42:58 +0000311 return DBuilder.CreateStructType(TheCU, "objc_object",
312 getOrCreateMainFile(),
313 0, 0, 0, 0, Elements);
Devang Patelc8972c62010-07-28 01:33:15 +0000314 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000315 case BuiltinType::UChar:
316 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
317 case BuiltinType::Char_S:
318 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
319 case BuiltinType::UShort:
320 case BuiltinType::UInt:
321 case BuiltinType::ULong:
322 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
323 case BuiltinType::Short:
324 case BuiltinType::Int:
325 case BuiltinType::Long:
326 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
327 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
328 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000329 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000330 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000331 }
Devang Patel05127ca2010-07-28 23:23:29 +0000332
333 switch (BT->getKind()) {
334 case BuiltinType::Long: BTName = "long int"; break;
335 case BuiltinType::LongLong: BTName = "long long int"; break;
336 case BuiltinType::ULong: BTName = "long unsigned int"; break;
337 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
338 default:
339 BTName = BT->getName(CGM.getContext().getLangOptions());
340 break;
341 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000342 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000343 uint64_t Size = CGM.getContext().getTypeSize(BT);
344 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000345 llvm::DIType DbgTy =
Devang Patel823d8e92010-12-08 22:42:58 +0000346 DBuilder.CreateBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000347 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000348}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000349
Chris Lattnerb7003772009-04-23 06:13:01 +0000350llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000351 llvm::DIFile Unit) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000352 // Bit size, align and offset of the type.
353 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
354 if (Ty->isComplexIntegerType())
355 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000356
Anders Carlsson20f12a22009-12-06 18:00:51 +0000357 uint64_t Size = CGM.getContext().getTypeSize(Ty);
358 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000359 llvm::DIType DbgTy =
Devang Patel823d8e92010-12-08 22:42:58 +0000360 DBuilder.CreateBasicType("complex", Size, Align, Encoding);
361
Devang Patelca80a5f2009-10-20 19:55:01 +0000362 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000363}
364
John McCalla1805292009-09-25 01:40:47 +0000365/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000366/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000367llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000368 QualifierCollector Qc;
369 const Type *T = Qc.strip(Ty);
370
371 // Ignore these qualifiers for now.
372 Qc.removeObjCGCAttr();
373 Qc.removeAddressSpace();
374
Chris Lattner9c85ba32008-11-10 06:08:34 +0000375 // We will create one Derived type for one qualifier and recurse to handle any
376 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000377 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000378 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000379 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000380 Qc.removeConst();
381 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000382 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000383 Qc.removeVolatile();
384 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000385 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000386 Qc.removeRestrict();
387 } else {
388 assert(Qc.empty() && "Unknown type qualifier for debug info");
389 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000390 }
Mike Stump1eb44332009-09-09 15:08:12 +0000391
John McCalla1805292009-09-25 01:40:47 +0000392 llvm::DIType FromTy = getOrCreateType(Qc.apply(T), Unit);
393
Daniel Dunbar3845f862008-10-31 03:54:29 +0000394 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
395 // CVR derived types.
Devang Patel823d8e92010-12-08 22:42:58 +0000396 llvm::DIType DbgTy = DBuilder.CreateQualifiedType(Tag, FromTy);
397
Devang Patelca80a5f2009-10-20 19:55:01 +0000398 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000399}
400
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000401llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000402 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000403 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000404 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
405 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000406 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000407}
408
Chris Lattner9c85ba32008-11-10 06:08:34 +0000409llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000410 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000411 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
412 Ty->getPointeeType(), Unit);
413}
414
Devang Patelc69e1cf2010-09-30 19:05:55 +0000415/// CreatePointeeType - Create PointTee type. If Pointee is a record
416/// then emit record's fwd if debug info size reduction is enabled.
417llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
418 llvm::DIFile Unit) {
419 if (!CGM.getCodeGenOpts().LimitDebugInfo)
420 return getOrCreateType(PointeeTy, Unit);
421
422 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
423 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000424 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
425 unsigned Line = getLineNumber(RD->getLocation());
426 llvm::DIDescriptor FDContext =
427 getContextDescriptor(dyn_cast<Decl>(RD->getDeclContext()), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000428
429 if (RD->isStruct())
430 return DBuilder.CreateStructType(FDContext, RD->getName(), DefUnit,
431 Line, 0, 0, llvm::DIType::FlagFwdDecl,
432 llvm::DIArray());
433 else if (RD->isUnion())
434 return DBuilder.CreateUnionType(FDContext, RD->getName(), DefUnit,
435 Line, 0, 0, llvm::DIType::FlagFwdDecl,
436 llvm::DIArray());
437 else {
438 assert(RD->isClass() && "Unknown RecordType!");
439 return DBuilder.CreateClassType(FDContext, RD->getName(), DefUnit,
440 Line, 0, 0, 0, llvm::DIType::FlagFwdDecl,
441 llvm::DIType(), llvm::DIArray());
442 }
Devang Patelc69e1cf2010-09-30 19:05:55 +0000443 }
444 return getOrCreateType(PointeeTy, Unit);
445
446}
447
Anders Carlssona031b352009-11-06 19:19:55 +0000448llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
449 const Type *Ty,
450 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000451 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000452
453 if (Tag == llvm::dwarf::DW_TAG_reference_type)
454 return DBuilder.CreateReferenceType(CreatePointeeType(PointeeTy, Unit));
455
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000456 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000457 // Size is always the size of a pointer. We can't use getTypeSize here
458 // because that does not return the correct value for references.
459 uint64_t Size =
Anders Carlsson20f12a22009-12-06 18:00:51 +0000460 CGM.getContext().Target.getPointerWidth(PointeeTy.getAddressSpace());
461 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000462
Devang Patel823d8e92010-12-08 22:42:58 +0000463 return
464 DBuilder.CreatePointerType(CreatePointeeType(PointeeTy, Unit), Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000465}
466
Mike Stump9bc093c2009-05-14 02:03:51 +0000467llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000468 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000469 if (BlockLiteralGenericSet)
470 return BlockLiteralGeneric;
471
Devang Patel823d8e92010-12-08 22:42:58 +0000472 llvm::SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000473 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000474 QualType FType;
475 uint64_t FieldSize, FieldOffset;
476 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000477 llvm::DIArray Elements;
478 llvm::DIType EltTy, DescTy;
479
480 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000481 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000482 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
483 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000484
Devang Patel823d8e92010-12-08 22:42:58 +0000485 Elements = DBuilder.GetOrCreateArray(EltTys.data(), EltTys.size());
Mike Stump9bc093c2009-05-14 02:03:51 +0000486 EltTys.clear();
487
Devang Patele2472482010-09-29 21:05:52 +0000488 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000489 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000490
Devang Patel823d8e92010-12-08 22:42:58 +0000491 EltTy = DBuilder.CreateStructType(Unit, "__block_descriptor",
492 Unit, LineNo, FieldOffset, 0,
493 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000494
Mike Stump9bc093c2009-05-14 02:03:51 +0000495 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000496 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000497
Devang Patel823d8e92010-12-08 22:42:58 +0000498 DescTy = DBuilder.CreatePointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000499
500 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000501 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000502 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000503 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000504 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
505 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000506 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000507 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000508
Anders Carlsson20f12a22009-12-06 18:00:51 +0000509 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000510 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000511 FieldSize = CGM.getContext().getTypeSize(Ty);
512 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel823d8e92010-12-08 22:42:58 +0000513 FieldTy = DBuilder.CreateMemberType("__descriptor", Unit,
514 LineNo, FieldSize, FieldAlign,
515 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000516 EltTys.push_back(FieldTy);
517
518 FieldOffset += FieldSize;
Devang Patel823d8e92010-12-08 22:42:58 +0000519 Elements = DBuilder.GetOrCreateArray(EltTys.data(), EltTys.size());
Mike Stump9bc093c2009-05-14 02:03:51 +0000520
Devang Patel823d8e92010-12-08 22:42:58 +0000521 EltTy = DBuilder.CreateStructType(Unit, "__block_literal_generic",
522 Unit, LineNo, FieldOffset, 0,
523 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000524
Mike Stump9bc093c2009-05-14 02:03:51 +0000525 BlockLiteralGenericSet = true;
Devang Patel823d8e92010-12-08 22:42:58 +0000526 BlockLiteralGeneric = DBuilder.CreatePointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000527 return BlockLiteralGeneric;
528}
529
Chris Lattner9c85ba32008-11-10 06:08:34 +0000530llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000531 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000532 // Typedefs are derived from some other type. If we have a typedef of a
533 // typedef, make sure to emit the whole chain.
534 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000535 if (!Src.Verify())
536 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000537 // We don't set size information, but do specify where the typedef was
538 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000539 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patel823d8e92010-12-08 22:42:58 +0000540 llvm::DIType DbgTy = DBuilder.CreateTypedef(Src, Ty->getDecl()->getName(),
541 Unit, Line);
Devang Patelca80a5f2009-10-20 19:55:01 +0000542 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000543}
544
Chris Lattner9c85ba32008-11-10 06:08:34 +0000545llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000546 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000547 llvm::SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000548
Chris Lattner9c85ba32008-11-10 06:08:34 +0000549 // Add the result type at least.
550 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000551
Chris Lattner9c85ba32008-11-10 06:08:34 +0000552 // Set up remainder of arguments if there is a prototype.
553 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000554 if (isa<FunctionNoProtoType>(Ty))
Devang Patel823d8e92010-12-08 22:42:58 +0000555 EltTys.push_back(DBuilder.CreateUnspecifiedParameter());
Devang Patelaf164bb2010-10-06 20:51:45 +0000556 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000557 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
558 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000559 }
560
Chris Lattner9c85ba32008-11-10 06:08:34 +0000561 llvm::DIArray EltTypeArray =
Devang Patel823d8e92010-12-08 22:42:58 +0000562 DBuilder.GetOrCreateArray(EltTys.data(), EltTys.size());
Mike Stump1eb44332009-09-09 15:08:12 +0000563
Devang Patel823d8e92010-12-08 22:42:58 +0000564 llvm::DIType DbgTy = DBuilder.CreateSubroutineType(Unit, EltTypeArray);
Devang Patelca80a5f2009-10-20 19:55:01 +0000565 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000566}
567
Devang Patel428deb52010-01-19 00:00:59 +0000568/// CollectRecordFields - A helper function to collect debug info for
569/// record fields. This is used while creating debug info entry for a Record.
570void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000571CollectRecordFields(const RecordDecl *RD, llvm::DIFile Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000572 llvm::SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel428deb52010-01-19 00:00:59 +0000573 unsigned FieldNo = 0;
Devang Patel239cec62010-02-01 21:39:52 +0000574 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
575 for (RecordDecl::field_iterator I = RD->field_begin(),
576 E = RD->field_end();
Devang Patel428deb52010-01-19 00:00:59 +0000577 I != E; ++I, ++FieldNo) {
578 FieldDecl *Field = *I;
579 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Devang Patel428deb52010-01-19 00:00:59 +0000580 llvm::StringRef FieldName = Field->getName();
581
Devang Patel4835fdd2010-02-12 01:31:06 +0000582 // Ignore unnamed fields. Do not ignore unnamed records.
583 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
Devang Patel428deb52010-01-19 00:00:59 +0000584 continue;
585
586 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +0000587 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
588 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel428deb52010-01-19 00:00:59 +0000589 QualType FType = Field->getType();
590 uint64_t FieldSize = 0;
591 unsigned FieldAlign = 0;
592 if (!FType->isIncompleteArrayType()) {
593
594 // Bit size, align and offset of the type.
595 FieldSize = CGM.getContext().getTypeSize(FType);
596 Expr *BitWidth = Field->getBitWidth();
597 if (BitWidth)
598 FieldSize = BitWidth->EvaluateAsInt(CGM.getContext()).getZExtValue();
Devang Patel428deb52010-01-19 00:00:59 +0000599 FieldAlign = CGM.getContext().getTypeAlign(FType);
600 }
601
602 uint64_t FieldOffset = RL.getFieldOffset(FieldNo);
603
Devang Patel71f4ff62010-04-21 23:12:37 +0000604 unsigned Flags = 0;
605 AccessSpecifier Access = I->getAccess();
606 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +0000607 Flags |= llvm::DIDescriptor::FlagPrivate;
Devang Patel71f4ff62010-04-21 23:12:37 +0000608 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +0000609 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Patel71f4ff62010-04-21 23:12:37 +0000610
Devang Patel823d8e92010-12-08 22:42:58 +0000611 FieldTy = DBuilder.CreateMemberType(FieldName, FieldDefUnit,
612 FieldLine, FieldSize, FieldAlign,
613 FieldOffset, Flags, FieldTy);
Devang Patel428deb52010-01-19 00:00:59 +0000614 EltTys.push_back(FieldTy);
615 }
616}
617
Devang Patela6da1922010-01-28 00:28:01 +0000618/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
619/// function type is not updated to include implicit "this" pointer. Use this
620/// routine to get a method type which includes "this" pointer.
621llvm::DIType
622CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000623 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000624 llvm::DIType FnTy
625 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
626 0),
627 Unit);
Devang Pateld774d1e2010-01-28 21:43:50 +0000628
Devang Patela6da1922010-01-28 00:28:01 +0000629 // Add "this" pointer.
630
Devang Patelab699792010-05-07 18:12:35 +0000631 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000632 assert (Args.getNumElements() && "Invalid number of arguments!");
633
Devang Patel823d8e92010-12-08 22:42:58 +0000634 llvm::SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000635
636 // First element is always return type. For 'void' functions it is NULL.
637 Elts.push_back(Args.getElement(0));
638
Devang Patel2ed8f002010-08-27 17:47:47 +0000639 if (!Method->isStatic())
640 {
641 // "this" pointer is always first argument.
642 ASTContext &Context = CGM.getContext();
643 QualType ThisPtr =
644 Context.getPointerType(Context.getTagDeclType(Method->getParent()));
645 llvm::DIType ThisPtrType =
Devang Patel823d8e92010-12-08 22:42:58 +0000646 DBuilder.CreateArtificialType(getOrCreateType(ThisPtr, Unit));
Devang Patel769640e2010-07-13 00:24:30 +0000647
Devang Patel2ed8f002010-08-27 17:47:47 +0000648 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
649 Elts.push_back(ThisPtrType);
650 }
Devang Patela6da1922010-01-28 00:28:01 +0000651
652 // Copy rest of the arguments.
653 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
654 Elts.push_back(Args.getElement(i));
655
656 llvm::DIArray EltTypeArray =
Devang Patel823d8e92010-12-08 22:42:58 +0000657 DBuilder.GetOrCreateArray(Elts.data(), Elts.size());
Devang Patela6da1922010-01-28 00:28:01 +0000658
Devang Patel823d8e92010-12-08 22:42:58 +0000659 return DBuilder.CreateSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000660}
661
Devang Patel58faf202010-10-22 17:11:50 +0000662/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
663/// inside a function.
664static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
665 if (const CXXRecordDecl *NRD =
666 dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
667 return isFunctionLocalClass(NRD);
668 else if (isa<FunctionDecl>(RD->getDeclContext()))
669 return true;
670 return false;
671
672}
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000673/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
674/// a single member function GlobalDecl.
675llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000676CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000677 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000678 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000679 bool IsCtorOrDtor =
680 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
681
682 llvm::StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000683 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000684
685 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
686 // make sense to give a single ctor/dtor a linkage name.
Anders Carlsson9a20d552010-06-22 16:16:50 +0000687 llvm::StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000688 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000689 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000690
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000691 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000692 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
693 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000694
695 // Collect virtual method info.
696 llvm::DIType ContainingType;
697 unsigned Virtuality = 0;
698 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000699
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000700 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000701 if (Method->isPure())
702 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
703 else
704 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
705
706 // It doesn't make sense to give a virtual destructor a vtable index,
707 // since a single destructor has two entries in the vtable.
708 if (!isa<CXXDestructorDecl>(Method))
Anders Carlsson046c2942010-04-17 20:15:18 +0000709 VIndex = CGM.getVTables().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000710 ContainingType = RecordTy;
711 }
712
Devang Patele2472482010-09-29 21:05:52 +0000713 unsigned Flags = 0;
714 if (Method->isImplicit())
715 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000716 AccessSpecifier Access = Method->getAccess();
717 if (Access == clang::AS_private)
718 Flags |= llvm::DIDescriptor::FlagPrivate;
719 else if (Access == clang::AS_protected)
720 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000721 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
722 if (CXXC->isExplicit())
723 Flags |= llvm::DIDescriptor::FlagExplicit;
724 } else if (const CXXConversionDecl *CXXC =
725 dyn_cast<CXXConversionDecl>(Method)) {
726 if (CXXC->isExplicit())
727 Flags |= llvm::DIDescriptor::FlagExplicit;
728 }
Devang Patel3951e712010-10-07 22:03:49 +0000729 if (Method->hasPrototype())
730 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Pateld78a0192010-10-01 23:32:17 +0000731
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000732 llvm::DISubprogram SP =
Devang Patel823d8e92010-12-08 22:42:58 +0000733 DBuilder.CreateMethod(RecordTy , MethodName, MethodLinkageName,
734 MethodDefUnit, MethodLine,
735 MethodTy, /*isLocalToUnit=*/false,
736 /* isDefinition=*/ false,
737 Virtuality, VIndex, ContainingType,
738 Flags, CGM.getLangOptions().Optimize);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000739
740 // Don't cache ctors or dtors since we have to emit multiple functions for
741 // a single ctor or dtor.
742 if (!IsCtorOrDtor && Method->isThisDeclarationADefinition())
Devang Patelab699792010-05-07 18:12:35 +0000743 SPCache[Method] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000744
745 return SP;
746}
747
Devang Patel4125fd22010-01-19 01:54:44 +0000748/// CollectCXXMemberFunctions - A helper function to collect debug info for
749/// C++ member functions.This is used while creating debug info entry for
750/// a Record.
751void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000752CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000753 llvm::SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000754 llvm::DIType RecordTy) {
Devang Patel239cec62010-02-01 21:39:52 +0000755 for(CXXRecordDecl::method_iterator I = RD->method_begin(),
756 E = RD->method_end(); I != E; ++I) {
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000757 const CXXMethodDecl *Method = *I;
Anders Carlssonbea9b232010-01-26 04:40:11 +0000758
Devang Pateld5322da2010-02-09 19:09:28 +0000759 if (Method->isImplicit() && !Method->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +0000760 continue;
Devang Patel4125fd22010-01-19 01:54:44 +0000761
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000762 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +0000763 }
764}
765
Devang Patel2ed8f002010-08-27 17:47:47 +0000766/// CollectCXXFriends - A helper function to collect debug info for
767/// C++ base classes. This is used while creating debug info entry for
768/// a Record.
769void CGDebugInfo::
770CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000771 llvm::SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +0000772 llvm::DIType RecordTy) {
773
774 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
775 BE = RD->friend_end(); BI != BE; ++BI) {
Devang Patel823d8e92010-12-08 22:42:58 +0000776 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
777 EltTys.push_back(DBuilder.CreateFriend(RecordTy,
778 getOrCreateType(TInfo->getType(),
779 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +0000780 }
781}
782
Devang Patela245c5b2010-01-25 23:32:18 +0000783/// CollectCXXBases - A helper function to collect debug info for
784/// C++ base classes. This is used while creating debug info entry for
785/// a Record.
786void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000787CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000788 llvm::SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000789 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +0000790
Devang Patel239cec62010-02-01 21:39:52 +0000791 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
792 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
793 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +0000794 unsigned BFlags = 0;
795 uint64_t BaseOffset;
796
797 const CXXRecordDecl *Base =
798 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
799
800 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +0000801 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +0000802 // expression where it expects +ve number.
Anders Carlssonaf440352010-03-23 04:11:45 +0000803 BaseOffset = 0 - CGM.getVTables().getVirtualBaseOffsetOffset(RD, Base);
Devang Patele2472482010-09-29 21:05:52 +0000804 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +0000805 } else
Anders Carlssona14f5972010-10-31 23:22:37 +0000806 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Devang Patelca7daed2010-01-28 21:54:15 +0000807
808 AccessSpecifier Access = BI->getAccessSpecifier();
809 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +0000810 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +0000811 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +0000812 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +0000813
Devang Patel823d8e92010-12-08 22:42:58 +0000814 llvm::DIType DTy =
815 DBuilder.CreateInheritance(RecordTy,
816 getOrCreateType(BI->getType(), Unit),
817 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +0000818 EltTys.push_back(DTy);
819 }
Devang Patela245c5b2010-01-25 23:32:18 +0000820}
821
Devang Patel4ce3f202010-01-28 18:11:52 +0000822/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +0000823llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +0000824 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +0000825 return VTablePtrType;
826
827 ASTContext &Context = CGM.getContext();
828
829 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +0000830 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
831 llvm::DIArray SElements = DBuilder.GetOrCreateArray(&STy, 1);
832 llvm::DIType SubTy = DBuilder.CreateSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +0000833 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000834 llvm::DIType vtbl_ptr_type = DBuilder.CreatePointerType(SubTy, Size, 0,
835 "__vtbl_ptr_type");
836 VTablePtrType = DBuilder.CreatePointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +0000837 return VTablePtrType;
838}
839
Anders Carlsson046c2942010-04-17 20:15:18 +0000840/// getVTableName - Get vtable name for the given Class.
841llvm::StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Devang Patel4ce3f202010-01-28 18:11:52 +0000842 // Otherwise construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +0000843 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +0000844
845 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +0000846 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +0000847 memcpy(StrPtr, Name.data(), Name.length());
848 return llvm::StringRef(StrPtr, Name.length());
849}
850
851
Anders Carlsson046c2942010-04-17 20:15:18 +0000852/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +0000853/// debug info entry in EltTys vector.
854void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +0000855CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000856 llvm::SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +0000857 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +0000858
859 // If there is a primary base then it will hold vtable info.
860 if (RL.getPrimaryBase())
861 return;
862
863 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +0000864 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +0000865 return;
866
867 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
868 llvm::DIType VPTR
Devang Patel823d8e92010-12-08 22:42:58 +0000869 = DBuilder.CreateMemberType(getVTableName(RD), Unit,
870 0, Size, 0, 0, 0,
871 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +0000872 EltTys.push_back(VPTR);
873}
874
Devang Patelc69e1cf2010-09-30 19:05:55 +0000875/// getOrCreateRecordType - Emit record type's standalone debug info.
876llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
877 SourceLocation Loc) {
878 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patel823d8e92010-12-08 22:42:58 +0000879 DBuilder.RetainType(T);
Devang Patelc69e1cf2010-09-30 19:05:55 +0000880 return T;
881}
882
Devang Patel65e99f22009-02-25 01:36:11 +0000883/// CreateType - get structure or union type.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000884llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000885 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +0000886 RecordDecl *RD = Ty->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000887
Chris Lattner9c85ba32008-11-10 06:08:34 +0000888 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +0000889 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
890 unsigned Line = getLineNumber(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000891
Chris Lattner9c85ba32008-11-10 06:08:34 +0000892 // Records and classes and unions can all be recursive. To handle them, we
893 // first generate a debug descriptor for the struct as a forward declaration.
894 // Then (if it is a definition) we go through and get debug info for all of
895 // its members. Finally, we create a descriptor for the complete type (which
896 // may refer to the forward decl if the struct is recursive) and replace all
897 // uses of the forward declaration with the final definition.
Devang Patel0b897992010-07-08 19:56:29 +0000898 llvm::DIDescriptor FDContext =
899 getContextDescriptor(dyn_cast<Decl>(RD->getDeclContext()), Unit);
900
901 // If this is just a forward declaration, construct an appropriately
902 // marked node and just return it.
903 if (!RD->getDefinition()) {
Devang Patel823d8e92010-12-08 22:42:58 +0000904 llvm::DIType FwdDecl =
905 DBuilder.CreateStructType(FDContext, RD->getName(),
906 DefUnit, Line, 0, 0,
907 llvm::DIDescriptor::FlagFwdDecl,
908 llvm::DIArray());
Devang Patel0b897992010-07-08 19:56:29 +0000909
910 return FwdDecl;
911 }
Devang Pateld0f251b2010-01-20 23:56:40 +0000912
Devang Patel823d8e92010-12-08 22:42:58 +0000913 llvm::DIType FwdDecl = DBuilder.CreateTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +0000914
Devang Patelab699792010-05-07 18:12:35 +0000915 llvm::MDNode *MN = FwdDecl;
916 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000917 // Otherwise, insert it into the TypeCache so that recursive uses will find
918 // it.
Devang Patelab699792010-05-07 18:12:35 +0000919 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +0000920 // Push the struct on region stack.
Devang Patelab699792010-05-07 18:12:35 +0000921 RegionStack.push_back(FwdDeclNode);
922 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +0000923
924 // Convert all the elements.
Devang Patel823d8e92010-12-08 22:42:58 +0000925 llvm::SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000926
Devang Pateld6c5a262010-02-01 21:52:22 +0000927 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +0000928 if (CXXDecl) {
929 CollectCXXBases(CXXDecl, Unit, EltTys, FwdDecl);
Anders Carlsson046c2942010-04-17 20:15:18 +0000930 CollectVTableInfo(CXXDecl, Unit, EltTys);
Devang Patel3064afe2010-01-28 21:41:35 +0000931 }
Devang Pateldabc3e92010-08-12 00:02:44 +0000932
933 // Collect static variables with initializers.
934 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
935 I != E; ++I)
936 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
937 if (const Expr *Init = V->getInit()) {
938 Expr::EvalResult Result;
939 if (Init->Evaluate(Result, CGM.getContext()) && Result.Val.isInt()) {
940 llvm::ConstantInt *CI
941 = llvm::ConstantInt::get(CGM.getLLVMContext(), Result.Val.getInt());
942
943 // Create the descriptor for static variable.
944 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
945 llvm::StringRef VName = V->getName();
946 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
947 // Do not use DIGlobalVariable for enums.
948 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
Devang Patel823d8e92010-12-08 22:42:58 +0000949 DBuilder.CreateStaticVariable(FwdDecl, VName, VName, VUnit,
950 getLineNumber(V->getLocation()),
951 VTy, true, CI);
Devang Pateldabc3e92010-08-12 00:02:44 +0000952 }
953 }
954 }
955 }
956
Devang Pateld6c5a262010-02-01 21:52:22 +0000957 CollectRecordFields(RD, Unit, EltTys);
Devang Patel4ce3f202010-01-28 18:11:52 +0000958 if (CXXDecl) {
Devang Patel4125fd22010-01-19 01:54:44 +0000959 CollectCXXMemberFunctions(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel2ed8f002010-08-27 17:47:47 +0000960 CollectCXXFriends(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel823d8e92010-12-08 22:42:58 +0000961 }
Devang Patel0ac8f312010-01-28 00:54:21 +0000962
Devang Patel823d8e92010-12-08 22:42:58 +0000963 RegionStack.pop_back();
964 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
965 RegionMap.find(Ty->getDecl());
966 if (RI != RegionMap.end())
967 RegionMap.erase(RI);
968
969 llvm::DIDescriptor RDContext =
970 getContextDescriptor(dyn_cast<Decl>(RD->getDeclContext()), Unit);
971 llvm::StringRef RDName = RD->getName();
972 uint64_t Size = CGM.getContext().getTypeSize(Ty);
973 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
974 llvm::DIArray Elements =
975 DBuilder.GetOrCreateArray(EltTys.data(), EltTys.size());
976 llvm::MDNode *RealDecl = NULL;
977
978 if (RD->isStruct())
979 RealDecl = DBuilder.CreateStructType(RDContext, RDName, DefUnit, Line,
980 Size, Align, 0, Elements);
981 else if (RD->isUnion())
982 RealDecl = DBuilder.CreateUnionType(RDContext, RDName, DefUnit, Line,
983 Size, Align, 0, Elements);
984 else {
985 assert(RD->isClass() && "Unknown RecordType!");
986 RDName = getClassName(RD);
987 // A class's primary base or the class itself contains the vtable.
988 llvm::MDNode *ContainingType = NULL;
Devang Pateld6c5a262010-02-01 21:52:22 +0000989 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel5bc794f2010-10-14 22:59:23 +0000990 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
991 // Seek non virtual primary base root.
992 while (1) {
993 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
994 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
Anders Carlssonc9e814b2010-11-24 23:12:57 +0000995 if (PBT && !BRL.isPrimaryBaseVirtual())
Devang Patel5bc794f2010-10-14 22:59:23 +0000996 PBase = PBT;
997 else
998 break;
999 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001000 ContainingType =
Devang Patelab699792010-05-07 18:12:35 +00001001 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), Unit);
Devang Patel5bc794f2010-10-14 22:59:23 +00001002 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001003 else if (CXXDecl->isDynamicClass())
Devang Patelab699792010-05-07 18:12:35 +00001004 ContainingType = FwdDecl;
Devang Patel823d8e92010-12-08 22:42:58 +00001005 RealDecl = DBuilder.CreateClassType(RDContext, RDName, DefUnit, Line,
1006 Size, Align, 0, 0, llvm::DIType(),
1007 Elements, ContainingType);
Devang Patela245c5b2010-01-25 23:32:18 +00001008 }
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Chris Lattner9c85ba32008-11-10 06:08:34 +00001010 // Now that we have a real decl for the struct, replace anything using the
1011 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001012 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001013 RegionMap[RD] = llvm::WeakVH(RealDecl);
Devang Patel823d8e92010-12-08 22:42:58 +00001014 return llvm::DIType(RealDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001015}
1016
John McCallc12c5bb2010-05-15 11:32:37 +00001017/// CreateType - get objective-c object type.
1018llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1019 llvm::DIFile Unit) {
1020 // Ignore protocols.
1021 return getOrCreateType(Ty->getBaseType(), Unit);
1022}
1023
Devang Patel9ca36b62009-02-26 21:10:26 +00001024/// CreateType - get objective-c interface type.
1025llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001026 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001027 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001028 if (!ID)
1029 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001030
1031 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001032 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001033 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001034 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001035
Dan Gohman45f7c782010-08-23 21:15:56 +00001036 // If this is just a forward declaration, return a special forward-declaration
1037 // debug type.
1038 if (ID->isForwardDecl()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001039 llvm::DIType FwdDecl =
1040 DBuilder.CreateStructType(Unit, ID->getName(),
1041 DefUnit, Line, 0, 0, 0,
1042 llvm::DIArray(), RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001043 return FwdDecl;
1044 }
1045
Devang Patel9ca36b62009-02-26 21:10:26 +00001046 // To handle recursive interface, we
1047 // first generate a debug descriptor for the struct as a forward declaration.
1048 // Then (if it is a definition) we go through and get debug info for all of
1049 // its members. Finally, we create a descriptor for the complete type (which
1050 // may refer to the forward decl if the struct is recursive) and replace all
1051 // uses of the forward declaration with the final definition.
Devang Patel823d8e92010-12-08 22:42:58 +00001052 llvm::DIType FwdDecl = DBuilder.CreateTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001053
Devang Patelab699792010-05-07 18:12:35 +00001054 llvm::MDNode *MN = FwdDecl;
1055 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Devang Patel9ca36b62009-02-26 21:10:26 +00001056 // Otherwise, insert it into the TypeCache so that recursive uses will find
1057 // it.
Devang Patelab699792010-05-07 18:12:35 +00001058 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001059 // Push the struct on region stack.
Devang Patelab699792010-05-07 18:12:35 +00001060 RegionStack.push_back(FwdDeclNode);
1061 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001062
1063 // Convert all the elements.
Devang Patel823d8e92010-12-08 22:42:58 +00001064 llvm::SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001065
Devang Pateld6c5a262010-02-01 21:52:22 +00001066 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001067 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001068 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001069 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001070 if (!SClassTy.isValid())
1071 return llvm::DIType();
1072
Mike Stump1eb44332009-09-09 15:08:12 +00001073 llvm::DIType InhTag =
Devang Patel823d8e92010-12-08 22:42:58 +00001074 DBuilder.CreateInheritance(FwdDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001075 EltTys.push_back(InhTag);
1076 }
1077
Devang Pateld6c5a262010-02-01 21:52:22 +00001078 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00001079
1080 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001081 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001082 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001083 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001084 if (!FieldTy.isValid())
1085 return llvm::DIType();
1086
Devang Patel73621622009-11-25 17:37:31 +00001087 llvm::StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001088
Devang Patelde135022009-04-27 22:40:36 +00001089 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001090 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001091 continue;
1092
Devang Patel9ca36b62009-02-26 21:10:26 +00001093 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001094 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1095 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001096 QualType FType = Field->getType();
1097 uint64_t FieldSize = 0;
1098 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001099
Devang Patel99c20eb2009-03-20 18:24:39 +00001100 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001101
Devang Patel99c20eb2009-03-20 18:24:39 +00001102 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001103 FieldSize = CGM.getContext().getTypeSize(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001104 Expr *BitWidth = Field->getBitWidth();
1105 if (BitWidth)
Anders Carlsson20f12a22009-12-06 18:00:51 +00001106 FieldSize = BitWidth->EvaluateAsInt(CGM.getContext()).getZExtValue();
Eli Friedman9a901bb2009-04-26 19:19:15 +00001107
Anders Carlsson20f12a22009-12-06 18:00:51 +00001108 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001109 }
1110
Mike Stump1eb44332009-09-09 15:08:12 +00001111 uint64_t FieldOffset = RL.getFieldOffset(FieldNo);
1112
Devang Patelc20482b2009-03-19 00:23:53 +00001113 unsigned Flags = 0;
1114 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001115 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001116 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001117 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001118
Devang Patel823d8e92010-12-08 22:42:58 +00001119 FieldTy = DBuilder.CreateMemberType(FieldName, FieldDefUnit,
1120 FieldLine, FieldSize, FieldAlign,
1121 FieldOffset, Flags, FieldTy);
Devang Patel9ca36b62009-02-26 21:10:26 +00001122 EltTys.push_back(FieldTy);
1123 }
Mike Stump1eb44332009-09-09 15:08:12 +00001124
Devang Patel9ca36b62009-02-26 21:10:26 +00001125 llvm::DIArray Elements =
Devang Patel823d8e92010-12-08 22:42:58 +00001126 DBuilder.GetOrCreateArray(EltTys.data(), EltTys.size());
Devang Patel9ca36b62009-02-26 21:10:26 +00001127
Devang Patele4c1ea02010-03-11 20:01:48 +00001128 RegionStack.pop_back();
1129 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1130 RegionMap.find(Ty->getDecl());
1131 if (RI != RegionMap.end())
1132 RegionMap.erase(RI);
1133
Devang Patel9ca36b62009-02-26 21:10:26 +00001134 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001135 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1136 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001137
Devang Patel823d8e92010-12-08 22:42:58 +00001138 llvm::DIType RealDecl =
1139 DBuilder.CreateStructType(Unit, ID->getName(), DefUnit,
1140 Line, Size, Align, 0,
1141 Elements, RuntimeLang);
Devang Patel9ca36b62009-02-26 21:10:26 +00001142
1143 // Now that we have a real decl for the struct, replace anything using the
1144 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001145 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001146 RegionMap[ID] = llvm::WeakVH(RealDecl);
Devang Patelfe09eab2009-07-13 17:03:14 +00001147
Devang Patel9ca36b62009-02-26 21:10:26 +00001148 return RealDecl;
1149}
1150
Chris Lattner9c85ba32008-11-10 06:08:34 +00001151llvm::DIType CGDebugInfo::CreateType(const EnumType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001152 llvm::DIFile Unit) {
Devang Patel6237cea2010-08-23 22:07:25 +00001153 return CreateEnumType(Ty->getDecl(), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001154
Chris Lattner9c85ba32008-11-10 06:08:34 +00001155}
1156
1157llvm::DIType CGDebugInfo::CreateType(const TagType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001158 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001159 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
1160 return CreateType(RT, Unit);
1161 else if (const EnumType *ET = dyn_cast<EnumType>(Ty))
1162 return CreateType(ET, Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001163
Chris Lattner9c85ba32008-11-10 06:08:34 +00001164 return llvm::DIType();
1165}
1166
Devang Patel70c23cd2010-02-23 22:59:39 +00001167llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty,
Eli Friedmana7e68452010-08-22 01:00:03 +00001168 llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001169 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
1170 uint64_t NumElems = Ty->getNumElements();
1171 if (NumElems > 0)
1172 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001173
Devang Patel823d8e92010-12-08 22:42:58 +00001174 llvm::Value *Subscript = DBuilder.GetOrCreateSubrange(0, NumElems);
1175 llvm::DIArray SubscriptArray = DBuilder.GetOrCreateArray(&Subscript, 1);
Devang Patel70c23cd2010-02-23 22:59:39 +00001176
1177 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1178 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1179
1180 return
Devang Patel823d8e92010-12-08 22:42:58 +00001181 DBuilder.CreateVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001182}
1183
Chris Lattner9c85ba32008-11-10 06:08:34 +00001184llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001185 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001186 uint64_t Size;
1187 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001188
1189
Nuno Lopes010d5142009-01-28 00:35:17 +00001190 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001191 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001192 Size = 0;
1193 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001194 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001195 } else if (Ty->isIncompleteArrayType()) {
1196 Size = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001197 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Anders Carlsson835c9092009-01-05 01:23:29 +00001198 } else {
1199 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001200 Size = CGM.getContext().getTypeSize(Ty);
1201 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001202 }
Mike Stump1eb44332009-09-09 15:08:12 +00001203
Chris Lattner9c85ba32008-11-10 06:08:34 +00001204 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1205 // interior arrays, do we care? Why aren't nested arrays represented the
1206 // obvious/recursive way?
Devang Patel823d8e92010-12-08 22:42:58 +00001207 llvm::SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001208 QualType EltTy(Ty, 0);
Devang Patelcdf523c2010-10-06 18:30:00 +00001209 if (Ty->isIncompleteArrayType())
Chris Lattner9c85ba32008-11-10 06:08:34 +00001210 EltTy = Ty->getElementType();
Devang Patelcdf523c2010-10-06 18:30:00 +00001211 else {
1212 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
1213 uint64_t Upper = 0;
1214 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty))
1215 if (CAT->getSize().getZExtValue())
1216 Upper = CAT->getSize().getZExtValue() - 1;
1217 // FIXME: Verify this is right for VLAs.
Devang Patel823d8e92010-12-08 22:42:58 +00001218 Subscripts.push_back(DBuilder.GetOrCreateSubrange(0, Upper));
Devang Patelcdf523c2010-10-06 18:30:00 +00001219 EltTy = Ty->getElementType();
1220 }
Sanjiv Gupta507de852008-06-09 10:47:41 +00001221 }
Mike Stump1eb44332009-09-09 15:08:12 +00001222
Chris Lattner9c85ba32008-11-10 06:08:34 +00001223 llvm::DIArray SubscriptArray =
Devang Patel823d8e92010-12-08 22:42:58 +00001224 DBuilder.GetOrCreateArray(Subscripts.data(), Subscripts.size());
Chris Lattner9c85ba32008-11-10 06:08:34 +00001225
Devang Patelca80a5f2009-10-20 19:55:01 +00001226 llvm::DIType DbgTy =
Devang Patel823d8e92010-12-08 22:42:58 +00001227 DBuilder.CreateArrayType(Size, Align, getOrCreateType(EltTy, Unit),
1228 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001229 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001230}
1231
Anders Carlssona031b352009-11-06 19:19:55 +00001232llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001233 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001234 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1235 Ty, Ty->getPointeeType(), Unit);
1236}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001237
Anders Carlsson20f12a22009-12-06 18:00:51 +00001238llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001239 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001240 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1241 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1242
1243 if (!Ty->getPointeeType()->isFunctionType()) {
1244 // We have a data member pointer type.
1245 return PointerDiffDITy;
1246 }
1247
1248 // We have a member function pointer type. Treat it as a struct with two
1249 // ptrdiff_t members.
1250 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1251
1252 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001253 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001254
1255 // FIXME: This should probably be a function type instead.
1256 ElementTypes[0] =
Devang Patel823d8e92010-12-08 22:42:58 +00001257 DBuilder.CreateMemberType("ptr", U, 0,
1258 Info.first, Info.second, FieldOffset, 0,
1259 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001260 FieldOffset += Info.first;
1261
1262 ElementTypes[1] =
Devang Patel823d8e92010-12-08 22:42:58 +00001263 DBuilder.CreateMemberType("ptr", U, 0,
1264 Info.first, Info.second, FieldOffset, 0,
1265 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001266
1267 llvm::DIArray Elements =
Devang Patel823d8e92010-12-08 22:42:58 +00001268 DBuilder.GetOrCreateArray(&ElementTypes[0],
1269 llvm::array_lengthof(ElementTypes));
Anders Carlsson20f12a22009-12-06 18:00:51 +00001270
Devang Patel823d8e92010-12-08 22:42:58 +00001271 return DBuilder.CreateStructType(U, llvm::StringRef("test"),
1272 U, 0, FieldOffset,
1273 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001274}
1275
Devang Patel6237cea2010-08-23 22:07:25 +00001276/// CreateEnumType - get enumeration type.
1277llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED, llvm::DIFile Unit){
Devang Patel823d8e92010-12-08 22:42:58 +00001278 llvm::SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001279
1280 // Create DIEnumerator elements for each enumerator.
1281 for (EnumDecl::enumerator_iterator
1282 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1283 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001284 Enumerators.push_back(
1285 DBuilder.CreateEnumerator(Enum->getName(),
1286 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001287 }
1288
1289 // Return a CompositeType for the enum itself.
1290 llvm::DIArray EltArray =
Devang Patel823d8e92010-12-08 22:42:58 +00001291 DBuilder.GetOrCreateArray(Enumerators.data(), Enumerators.size());
Devang Patel6237cea2010-08-23 22:07:25 +00001292
1293 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1294 unsigned Line = getLineNumber(ED->getLocation());
1295 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001296 uint64_t Align = 0;
1297 if (!ED->getTypeForDecl()->isIncompleteType()) {
1298 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1299 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1300 }
Devang Patel4bc48872010-10-27 23:23:58 +00001301 llvm::DIDescriptor EnumContext =
1302 getContextDescriptor(dyn_cast<Decl>(ED->getDeclContext()), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00001303 llvm::DIType DbgTy =
Devang Patel823d8e92010-12-08 22:42:58 +00001304 DBuilder.CreateEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
1305 Size, Align, EltArray);
Devang Patel6237cea2010-08-23 22:07:25 +00001306 return DbgTy;
1307}
1308
Douglas Gregor840943d2009-12-21 20:18:30 +00001309static QualType UnwrapTypeForDebugInfo(QualType T) {
1310 do {
1311 QualType LastT = T;
1312 switch (T->getTypeClass()) {
1313 default:
1314 return T;
1315 case Type::TemplateSpecialization:
1316 T = cast<TemplateSpecializationType>(T)->desugar();
1317 break;
1318 case Type::TypeOfExpr: {
1319 TypeOfExprType *Ty = cast<TypeOfExprType>(T);
1320 T = Ty->getUnderlyingExpr()->getType();
1321 break;
1322 }
1323 case Type::TypeOf:
1324 T = cast<TypeOfType>(T)->getUnderlyingType();
1325 break;
1326 case Type::Decltype:
1327 T = cast<DecltypeType>(T)->getUnderlyingType();
1328 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001329 case Type::Elaborated:
1330 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001331 break;
1332 case Type::SubstTemplateTypeParm:
1333 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1334 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001335 }
1336
1337 assert(T != LastT && "Type unwrapping failed to unwrap!");
1338 if (T == LastT)
1339 return T;
1340 } while (true);
1341
1342 return T;
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001343}
1344
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001345/// getOrCreateType - Get the type from the cache or create a new
1346/// one if necessary.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001347llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001348 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001349 if (Ty.isNull())
1350 return llvm::DIType();
Mike Stump1eb44332009-09-09 15:08:12 +00001351
Douglas Gregor840943d2009-12-21 20:18:30 +00001352 // Unwrap the type as needed for debug information.
1353 Ty = UnwrapTypeForDebugInfo(Ty);
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001354
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001355 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001356 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001357 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001358 if (it != TypeCache.end()) {
1359 // Verify that the debug info still exists.
1360 if (&*it->second)
1361 return llvm::DIType(cast<llvm::MDNode>(it->second));
1362 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001363
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001364 // Otherwise create the type.
1365 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001366
1367 // And update the type cache.
Devang Patelab699792010-05-07 18:12:35 +00001368 TypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001369 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001370}
1371
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001372/// CreateTypeNode - Create a new debug type node.
Daniel Dunbar03faac32009-09-19 19:27:14 +00001373llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001374 llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001375 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001376 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001377 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001378
Douglas Gregor2101a822009-12-21 19:57:21 +00001379 const char *Diag = 0;
1380
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001381 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001382 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001383#define TYPE(Class, Base)
1384#define ABSTRACT_TYPE(Class, Base)
1385#define NON_CANONICAL_TYPE(Class, Base)
1386#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1387#include "clang/AST/TypeNodes.def"
1388 assert(false && "Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001389
Anders Carlssonbfe69952009-11-06 18:24:04 +00001390 // FIXME: Handle these.
1391 case Type::ExtVector:
Anders Carlssonbfe69952009-11-06 18:24:04 +00001392 return llvm::DIType();
Devang Patel70c23cd2010-02-23 22:59:39 +00001393
1394 case Type::Vector:
1395 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001396 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001397 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001398 case Type::ObjCObject:
1399 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001400 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001401 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Devang Patelf1d1d9a2010-11-01 16:52:40 +00001402 case Type::Builtin: return CreateType(cast<BuiltinType>(Ty));
Daniel Dunbar03faac32009-09-19 19:27:14 +00001403 case Type::Complex: return CreateType(cast<ComplexType>(Ty), Unit);
1404 case Type::Pointer: return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001405 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001406 return CreateType(cast<BlockPointerType>(Ty), Unit);
1407 case Type::Typedef: return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001408 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00001409 case Type::Enum:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001410 return CreateType(cast<TagType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001411 case Type::FunctionProto:
1412 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001413 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001414 case Type::ConstantArray:
1415 case Type::VariableArray:
1416 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001417 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001418
1419 case Type::LValueReference:
1420 return CreateType(cast<LValueReferenceType>(Ty), Unit);
1421
Anders Carlsson20f12a22009-12-06 18:00:51 +00001422 case Type::MemberPointer:
1423 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001424
1425 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001426 case Type::Elaborated:
Douglas Gregor2101a822009-12-21 19:57:21 +00001427 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001428 case Type::TypeOfExpr:
1429 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001430 case Type::Decltype:
1431 llvm_unreachable("type should have been unwrapped!");
1432 return llvm::DIType();
Douglas Gregor2101a822009-12-21 19:57:21 +00001433
1434 case Type::RValueReference:
1435 // FIXME: Implement!
1436 Diag = "rvalue references";
1437 break;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001438 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001439
1440 assert(Diag && "Fall through without a diagnostic?");
1441 unsigned DiagID = CGM.getDiags().getCustomDiagID(Diagnostic::Error,
1442 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001443 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001444 << Diag;
1445 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001446}
1447
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001448/// CreateMemberType - Create new member and increase Offset by FType's size.
1449llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
1450 llvm::StringRef Name,
1451 uint64_t *Offset) {
1452 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1453 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1454 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel823d8e92010-12-08 22:42:58 +00001455 llvm::DIType Ty = DBuilder.CreateMemberType(Name, Unit, 0,
1456 FieldSize, FieldAlign,
1457 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001458 *Offset += FieldSize;
1459 return Ty;
1460}
1461
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001462/// EmitFunctionStart - Constructs the debug code for entering a function -
1463/// "llvm.dbg.func.start.".
Devang Patel9c6c3a02010-01-14 00:36:21 +00001464void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001465 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001466 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00001467
Devang Patel9c6c3a02010-01-14 00:36:21 +00001468 llvm::StringRef Name;
Anders Carlsson9a20d552010-06-22 16:16:50 +00001469 llvm::StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001470
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001471 FnBeginRegionCount.push_back(RegionStack.size());
1472
Devang Patel9c6c3a02010-01-14 00:36:21 +00001473 const Decl *D = GD.getDecl();
Devang Patel3951e712010-10-07 22:03:49 +00001474 unsigned Flags = 0;
Devang Patel0692f832010-10-11 21:58:41 +00001475 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1476 llvm::DIDescriptor FDContext(Unit);
Devang Patel9c6c3a02010-01-14 00:36:21 +00001477 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Devang Patel4125fd22010-01-19 01:54:44 +00001478 // If there is a DISubprogram for this function available then use it.
1479 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1480 FI = SPCache.find(FD);
1481 if (FI != SPCache.end()) {
Gabor Greif38c9b172010-09-18 13:00:17 +00001482 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelab699792010-05-07 18:12:35 +00001483 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1484 llvm::MDNode *SPN = SP;
1485 RegionStack.push_back(SPN);
1486 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00001487 return;
1488 }
1489 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00001490 Name = getFunctionName(FD);
1491 // Use mangled name as linkage name for c/c++ functions.
Anders Carlsson9a20d552010-06-22 16:16:50 +00001492 LinkageName = CGM.getMangledName(GD);
Devang Patel58faf202010-10-22 17:11:50 +00001493 if (LinkageName == Name)
1494 LinkageName = llvm::StringRef();
Devang Patel3951e712010-10-07 22:03:49 +00001495 if (FD->hasPrototype())
1496 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel0692f832010-10-11 21:58:41 +00001497 if (const NamespaceDecl *NSDecl =
1498 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
1499 FDContext = getOrCreateNameSpace(NSDecl, Unit);
David Chisnall70b9b442010-09-02 17:16:32 +00001500 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00001501 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00001502 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001503 } else {
Devang Patel58faf202010-10-22 17:11:50 +00001504 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00001505 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00001506 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001507 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001508 if (!Name.empty() && Name[0] == '\01')
1509 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001510
Devang Patel970c6182010-04-24 00:49:16 +00001511 // It is expected that CurLoc is set before using EmitFunctionStart.
1512 // Usually, CurLoc points to the left bracket location of compound
1513 // statement representing function body.
Devang Patel8ab870d2010-05-12 23:46:38 +00001514 unsigned LineNo = getLineNumber(CurLoc);
Devang Patele2472482010-09-29 21:05:52 +00001515 if (D->isImplicit())
1516 Flags |= llvm::DIDescriptor::FlagArtificial;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001517 llvm::DISubprogram SP =
Devang Patel823d8e92010-12-08 22:42:58 +00001518 DBuilder.CreateFunction(FDContext, Name, LinkageName, Unit,
1519 LineNo, getOrCreateType(FnType, Unit),
1520 Fn->hasInternalLinkage(), true/*definition*/,
1521 Flags, CGM.getLangOptions().Optimize, Fn);
Mike Stump1eb44332009-09-09 15:08:12 +00001522
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001523 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00001524 llvm::MDNode *SPN = SP;
1525 RegionStack.push_back(SPN);
1526 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001527
1528 // Clear stack used to keep track of #line directives.
1529 LineDirectiveFiles.clear();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001530}
1531
1532
Devang Patel4d939e62010-07-20 22:20:10 +00001533void CGDebugInfo::EmitStopPoint(CGBuilderTy &Builder) {
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001534 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001535
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001536 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001537 SourceManager &SM = CGM.getContext().getSourceManager();
Mike Stump1eb44332009-09-09 15:08:12 +00001538 if (CurLoc == PrevLoc
Chris Lattner30fc9332009-02-04 01:06:56 +00001539 || (SM.getInstantiationLineNumber(CurLoc) ==
1540 SM.getInstantiationLineNumber(PrevLoc)
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001541 && SM.isFromSameFile(CurLoc, PrevLoc)))
Devang Patel4800ea62010-04-05 21:09:15 +00001542 // New Builder may not be in sync with CGDebugInfo.
1543 if (!Builder.getCurrentDebugLocation().isUnknown())
1544 return;
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001545
1546 // Update last state.
1547 PrevLoc = CurLoc;
1548
Chris Lattnerc6034632010-04-01 06:31:43 +00001549 llvm::MDNode *Scope = RegionStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00001550 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
1551 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00001552 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001553}
1554
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001555/// UpdateLineDirectiveRegion - Update region stack only if #line directive
1556/// has introduced scope change.
1557void CGDebugInfo::UpdateLineDirectiveRegion(CGBuilderTy &Builder) {
1558 if (CurLoc.isInvalid() || CurLoc.isMacroID() ||
1559 PrevLoc.isInvalid() || PrevLoc.isMacroID())
1560 return;
1561 SourceManager &SM = CGM.getContext().getSourceManager();
1562 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
1563 PresumedLoc PPLoc = SM.getPresumedLoc(PrevLoc);
1564
Douglas Gregor8c457a82010-11-11 20:45:16 +00001565 if (PCLoc.isInvalid() || PPLoc.isInvalid() ||
1566 !strcmp(PPLoc.getFilename(), PCLoc.getFilename()))
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001567 return;
1568
1569 // If #line directive stack is empty then we are entering a new scope.
1570 if (LineDirectiveFiles.empty()) {
1571 EmitRegionStart(Builder);
1572 LineDirectiveFiles.push_back(PCLoc.getFilename());
1573 return;
1574 }
1575
1576 assert (RegionStack.size() >= LineDirectiveFiles.size()
1577 && "error handling #line regions!");
1578
1579 bool SeenThisFile = false;
Devang Patel424a5c62010-09-15 20:50:40 +00001580 // Chek if current file is already seen earlier.
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001581 for(std::vector<const char *>::iterator I = LineDirectiveFiles.begin(),
1582 E = LineDirectiveFiles.end(); I != E; ++I)
Devang Patel424a5c62010-09-15 20:50:40 +00001583 if (!strcmp(PCLoc.getFilename(), *I)) {
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001584 SeenThisFile = true;
1585 break;
1586 }
1587
1588 // If #line for this file is seen earlier then pop out #line regions.
1589 if (SeenThisFile) {
1590 while (!LineDirectiveFiles.empty()) {
1591 const char *LastFile = LineDirectiveFiles.back();
1592 RegionStack.pop_back();
1593 LineDirectiveFiles.pop_back();
1594 if (!strcmp(PPLoc.getFilename(), LastFile))
1595 break;
1596 }
1597 return;
1598 }
1599
1600 // .. otherwise insert new #line region.
1601 EmitRegionStart(Builder);
1602 LineDirectiveFiles.push_back(PCLoc.getFilename());
1603
1604 return;
1605}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001606/// EmitRegionStart- Constructs the debug code for entering a declarative
1607/// region - "llvm.dbg.region.start.".
Devang Patel4d939e62010-07-20 22:20:10 +00001608void CGDebugInfo::EmitRegionStart(CGBuilderTy &Builder) {
Devang Patel8fae0602009-11-13 19:10:24 +00001609 llvm::DIDescriptor D =
Devang Patel823d8e92010-12-08 22:42:58 +00001610 DBuilder.CreateLexicalBlock(RegionStack.empty() ?
1611 llvm::DIDescriptor() :
1612 llvm::DIDescriptor(RegionStack.back()),
1613 getOrCreateFile(CurLoc),
1614 getLineNumber(CurLoc),
1615 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00001616 llvm::MDNode *DN = D;
1617 RegionStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001618}
1619
1620/// EmitRegionEnd - Constructs the debug code for exiting a declarative
1621/// region - "llvm.dbg.region.end."
Devang Patel4d939e62010-07-20 22:20:10 +00001622void CGDebugInfo::EmitRegionEnd(CGBuilderTy &Builder) {
Daniel Dunbar5273f512008-10-17 01:07:56 +00001623 assert(!RegionStack.empty() && "Region stack mismatch, stack empty!");
1624
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001625 // Provide an region stop point.
Devang Patel4d939e62010-07-20 22:20:10 +00001626 EmitStopPoint(Builder);
Mike Stump1eb44332009-09-09 15:08:12 +00001627
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001628 RegionStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001629}
1630
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001631/// EmitFunctionEnd - Constructs the debug code for exiting a function.
1632void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
1633 assert(!RegionStack.empty() && "Region stack mismatch, stack empty!");
1634 unsigned RCount = FnBeginRegionCount.back();
1635 assert(RCount <= RegionStack.size() && "Region stack mismatch");
1636
1637 // Pop all regions for this function.
1638 while (RegionStack.size() != RCount)
1639 EmitRegionEnd(Builder);
1640 FnBeginRegionCount.pop_back();
1641}
1642
Devang Patel809b9bb2010-02-10 18:49:08 +00001643// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
1644// See BuildByRefType.
1645llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
1646 uint64_t *XOffset) {
1647
Devang Patel823d8e92010-12-08 22:42:58 +00001648 llvm::SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00001649 QualType FType;
1650 uint64_t FieldSize, FieldOffset;
1651 unsigned FieldAlign;
1652
Devang Patel17800552010-03-09 00:44:50 +00001653 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001654 QualType Type = VD->getType();
1655
1656 FieldOffset = 0;
1657 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001658 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
1659 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001660 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001661 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
1662 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
1663
Devang Patel809b9bb2010-02-10 18:49:08 +00001664 bool HasCopyAndDispose = CGM.BlockRequiresCopying(Type);
1665 if (HasCopyAndDispose) {
1666 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001667 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
1668 &FieldOffset));
1669 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
1670 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001671 }
1672
1673 CharUnits Align = CGM.getContext().getDeclAlign(VD);
1674 if (Align > CharUnits::fromQuantity(
1675 CGM.getContext().Target.getPointerAlign(0) / 8)) {
1676 unsigned AlignedOffsetInBytes
1677 = llvm::RoundUpToAlignment(FieldOffset/8, Align.getQuantity());
1678 unsigned NumPaddingBytes
1679 = AlignedOffsetInBytes - FieldOffset/8;
1680
1681 if (NumPaddingBytes > 0) {
1682 llvm::APInt pad(32, NumPaddingBytes);
1683 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
1684 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001685 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001686 }
1687 }
1688
1689 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001690 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00001691 FieldSize = CGM.getContext().getTypeSize(FType);
1692 FieldAlign = Align.getQuantity()*8;
1693
1694 *XOffset = FieldOffset;
Devang Patel823d8e92010-12-08 22:42:58 +00001695 FieldTy = DBuilder.CreateMemberType(VD->getName(), Unit,
1696 0, FieldSize, FieldAlign,
1697 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00001698 EltTys.push_back(FieldTy);
1699 FieldOffset += FieldSize;
1700
1701 llvm::DIArray Elements =
Devang Patel823d8e92010-12-08 22:42:58 +00001702 DBuilder.GetOrCreateArray(EltTys.data(), EltTys.size());
Devang Patel809b9bb2010-02-10 18:49:08 +00001703
Devang Patele2472482010-09-29 21:05:52 +00001704 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00001705
Devang Patel823d8e92010-12-08 22:42:58 +00001706 return DBuilder.CreateStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
1707 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00001708}
Devang Patel823d8e92010-12-08 22:42:58 +00001709
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00001710/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00001711void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001712 llvm::Value *Storage, CGBuilderTy &Builder) {
Daniel Dunbar5273f512008-10-17 01:07:56 +00001713 assert(!RegionStack.empty() && "Region stack mismatch, stack empty!");
1714
Devang Patel17800552010-03-09 00:44:50 +00001715 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001716 llvm::DIType Ty;
1717 uint64_t XOffset = 0;
1718 if (VD->hasAttr<BlocksAttr>())
1719 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
1720 else
1721 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00001722
Devang Patelf4e54a22010-05-07 23:05:55 +00001723 // If there is not any debug info for type then do not emit debug info
1724 // for this variable.
1725 if (!Ty)
1726 return;
1727
Chris Lattner9c85ba32008-11-10 06:08:34 +00001728 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00001729 unsigned Line = getLineNumber(VD->getLocation());
1730 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00001731 unsigned Flags = 0;
1732 if (VD->isImplicit())
1733 Flags |= llvm::DIDescriptor::FlagArtificial;
Chris Lattnerc6034632010-04-01 06:31:43 +00001734 llvm::MDNode *Scope = RegionStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00001735
1736 llvm::StringRef Name = VD->getName();
1737 if (!Name.empty()) {
1738 // Create the descriptor for the variable.
1739 llvm::DIVariable D =
Devang Patel823d8e92010-12-08 22:42:58 +00001740 DBuilder.CreateLocalVariable(Tag, llvm::DIDescriptor(Scope),
1741 Name, Unit, Line, Ty,
1742 CGM.getLangOptions().Optimize, Flags);
Devang Patelcebbedd2010-10-12 23:24:54 +00001743
1744 // Insert an llvm.dbg.declare into the current block.
1745 llvm::Instruction *Call =
Devang Patel823d8e92010-12-08 22:42:58 +00001746 DBuilder.InsertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00001747
1748 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00001749 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00001750 }
1751
1752 // If VD is an anonymous union then Storage represents value for
1753 // all union fields.
1754 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType()))
1755 if (const RecordDecl *RD = dyn_cast<RecordDecl>(RT->getDecl()))
1756 if (RD->isUnion()) {
1757 for (RecordDecl::field_iterator I = RD->field_begin(),
1758 E = RD->field_end();
1759 I != E; ++I) {
1760 FieldDecl *Field = *I;
1761 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
1762 llvm::StringRef FieldName = Field->getName();
1763
1764 // Ignore unnamed fields. Do not ignore unnamed records.
1765 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
1766 continue;
1767
1768 // Use VarDecl's Tag, Scope and Line number.
1769 llvm::DIVariable D =
Devang Patel823d8e92010-12-08 22:42:58 +00001770 DBuilder.CreateLocalVariable(Tag, llvm::DIDescriptor(Scope),
1771 FieldName, Unit, Line, FieldTy,
1772 CGM.getLangOptions().Optimize, Flags);
Devang Patelcebbedd2010-10-12 23:24:54 +00001773
1774 // Insert an llvm.dbg.declare into the current block.
1775 llvm::Instruction *Call =
Devang Patel823d8e92010-12-08 22:42:58 +00001776 DBuilder.InsertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00001777
1778 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
1779 }
1780 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00001781}
1782
Mike Stumpb1a6e682009-09-30 02:43:10 +00001783/// EmitDeclare - Emit local variable declaration debug info.
1784void CGDebugInfo::EmitDeclare(const BlockDeclRefExpr *BDRE, unsigned Tag,
1785 llvm::Value *Storage, CGBuilderTy &Builder,
1786 CodeGenFunction *CGF) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001787 const ValueDecl *VD = BDRE->getDecl();
Mike Stumpb1a6e682009-09-30 02:43:10 +00001788 assert(!RegionStack.empty() && "Region stack mismatch, stack empty!");
1789
Devang Patel2b594b92010-04-26 23:28:46 +00001790 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00001791 return;
1792
1793 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00001794 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001795 llvm::DIType Ty;
1796 if (VD->hasAttr<BlocksAttr>())
1797 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
1798 else
1799 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00001800
1801 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00001802 unsigned Line = getLineNumber(VD->getLocation());
1803 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00001804
Devang Pateld6c5a262010-02-01 21:52:22 +00001805 CharUnits offset = CGF->BlockDecls[VD];
Mike Stumpb1a6e682009-09-30 02:43:10 +00001806 llvm::SmallVector<llvm::Value *, 9> addr;
Chris Lattner14b1a362010-01-25 03:29:35 +00001807 const llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
1808 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIFactory::OpDeref));
1809 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIFactory::OpPlus));
1810 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00001811 if (BDRE->isByRef()) {
Chris Lattner14b1a362010-01-25 03:29:35 +00001812 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIFactory::OpDeref));
1813 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIFactory::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00001814 // offset of __forwarding field
1815 offset = CharUnits::fromQuantity(CGF->LLVMPointerWidth/8);
Chris Lattner14b1a362010-01-25 03:29:35 +00001816 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
1817 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIFactory::OpDeref));
1818 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIFactory::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00001819 // offset of x field
1820 offset = CharUnits::fromQuantity(XOffset/8);
Chris Lattner14b1a362010-01-25 03:29:35 +00001821 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00001822 }
1823
1824 // Create the descriptor for the variable.
1825 llvm::DIVariable D =
Devang Patel823d8e92010-12-08 22:42:58 +00001826 DBuilder.CreateComplexVariable(Tag, llvm::DIDescriptor(RegionStack.back()),
1827 VD->getName(), Unit, Line, Ty,
1828 addr.data(), addr.size());
Mike Stumpb1a6e682009-09-30 02:43:10 +00001829 // Insert an llvm.dbg.declare into the current block.
Devang Patelebf16e82009-11-11 19:10:19 +00001830 llvm::Instruction *Call =
Devang Patel823d8e92010-12-08 22:42:58 +00001831 DBuilder.InsertDeclare(Storage, D, Builder.GetInsertBlock());
Chris Lattnerd5b89022009-12-28 21:44:41 +00001832
Chris Lattnerc6034632010-04-01 06:31:43 +00001833 llvm::MDNode *Scope = RegionStack.back();
Devang Patelf8e10a52010-05-10 23:48:38 +00001834 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Mike Stumpb1a6e682009-09-30 02:43:10 +00001835}
1836
Devang Pateld6c5a262010-02-01 21:52:22 +00001837void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001838 llvm::Value *Storage,
1839 CGBuilderTy &Builder) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001840 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001841}
1842
Mike Stumpb1a6e682009-09-30 02:43:10 +00001843void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
1844 const BlockDeclRefExpr *BDRE, llvm::Value *Storage, CGBuilderTy &Builder,
1845 CodeGenFunction *CGF) {
1846 EmitDeclare(BDRE, llvm::dwarf::DW_TAG_auto_variable, Storage, Builder, CGF);
1847}
1848
Chris Lattner9c85ba32008-11-10 06:08:34 +00001849/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
1850/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00001851void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001852 CGBuilderTy &Builder) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001853 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001854}
1855
1856
1857
Sanjiv Gupta686226b2008-06-05 08:59:10 +00001858/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00001859void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00001860 const VarDecl *D) {
1861
Sanjiv Gupta686226b2008-06-05 08:59:10 +00001862 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00001863 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001864 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00001865
Devang Pateleb6d79b2010-02-01 21:34:11 +00001866 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00001867 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001868
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00001869 // CodeGen turns int[] into int[1] so we'll do the same here.
1870 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00001871
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00001872 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001873 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00001874
Anders Carlsson20f12a22009-12-06 18:00:51 +00001875 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00001876 ArrayType::Normal, 0);
1877 }
Devang Patel5d822f02010-04-29 17:48:37 +00001878 llvm::StringRef DeclName = D->getName();
Devang Patel8b90a782010-05-13 23:52:37 +00001879 llvm::StringRef LinkageName;
Devang Patel0fd3d1f2010-05-14 16:55:25 +00001880 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00001881 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00001882 if (LinkageName == DeclName)
1883 LinkageName = llvm::StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00001884 llvm::DIDescriptor DContext =
1885 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +00001886 DBuilder.CreateStaticVariable(DContext, DeclName, LinkageName,
1887 Unit, LineNo, getOrCreateType(T, Unit),
1888 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00001889}
1890
Devang Patel9ca36b62009-02-26 21:10:26 +00001891/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00001892void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00001893 ObjCInterfaceDecl *ID) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001894 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00001895 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001896 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00001897
Devang Pateld6c5a262010-02-01 21:52:22 +00001898 llvm::StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001899
Devang Pateld6c5a262010-02-01 21:52:22 +00001900 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00001901 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001902
Devang Patel9ca36b62009-02-26 21:10:26 +00001903 // CodeGen turns int[] into int[1] so we'll do the same here.
1904 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00001905
Devang Patel9ca36b62009-02-26 21:10:26 +00001906 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001907 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00001908
Anders Carlsson20f12a22009-12-06 18:00:51 +00001909 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00001910 ArrayType::Normal, 0);
1911 }
1912
Devang Patel823d8e92010-12-08 22:42:58 +00001913 DBuilder.CreateGlobalVariable(Name, Unit, LineNo,
1914 getOrCreateType(T, Unit),
1915 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00001916}
Devang Patelabb485f2010-02-01 19:16:32 +00001917
Devang Patel25c2c8f2010-08-10 17:53:33 +00001918/// EmitGlobalVariable - Emit global variable's debug info.
1919void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00001920 llvm::Constant *Init) {
Devang Patel8d308382010-08-10 07:24:25 +00001921 // Create the descriptor for the variable.
1922 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
1923 llvm::StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00001924 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00001925 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
1926 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
1927 Ty = CreateEnumType(ED, Unit);
1928 }
Devang Patel0317ab02010-08-10 18:27:15 +00001929 // Do not use DIGlobalVariable for enums.
1930 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
1931 return;
Devang Patel823d8e92010-12-08 22:42:58 +00001932 DBuilder.CreateStaticVariable(Unit, Name, Name, Unit,
1933 getLineNumber(VD->getLocation()),
1934 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00001935}
1936
Devang Patelabb485f2010-02-01 19:16:32 +00001937/// getOrCreateNamesSpace - Return namespace descriptor for the given
1938/// namespace decl.
1939llvm::DINameSpace
1940CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl,
1941 llvm::DIDescriptor Unit) {
1942 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
1943 NameSpaceCache.find(NSDecl);
1944 if (I != NameSpaceCache.end())
1945 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
1946
Devang Patel8ab870d2010-05-12 23:46:38 +00001947 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00001948 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00001949 llvm::DIDescriptor Context =
Devang Pateleb6d79b2010-02-01 21:34:11 +00001950 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()), Unit);
Devang Patelabb485f2010-02-01 19:16:32 +00001951 llvm::DINameSpace NS =
Devang Patel823d8e92010-12-08 22:42:58 +00001952 DBuilder.CreateNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00001953 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00001954 return NS;
1955}