blob: 0902b94b5a5124d629973d3c45386cf4f5a80d37 [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"
John McCalld16c2cf2011-02-08 08:22:06 +000017#include "CGBlocks.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000018#include "clang/AST/ASTContext.h"
Devang Patel2ed8f002010-08-27 17:47:47 +000019#include "clang/AST/DeclFriend.h"
Devang Patel9ca36b62009-02-26 21:10:26 +000020#include "clang/AST/DeclObjC.h"
Devang Patel700a1cb2010-07-20 20:24:18 +000021#include "clang/AST/DeclTemplate.h"
Chris Lattner3cc5c402008-11-11 07:01:36 +000022#include "clang/AST/Expr.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000023#include "clang/AST/RecordLayout.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000024#include "clang/Basic/SourceManager.h"
25#include "clang/Basic/FileManager.h"
Mike Stump5a862172009-09-15 21:48:34 +000026#include "clang/Basic/Version.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000027#include "clang/Frontend/CodeGenOptions.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000028#include "llvm/Constants.h"
29#include "llvm/DerivedTypes.h"
30#include "llvm/Instructions.h"
31#include "llvm/Intrinsics.h"
32#include "llvm/Module.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000033#include "llvm/ADT/StringExtras.h"
34#include "llvm/ADT/SmallVector.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000035#include "llvm/Support/Dwarf.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000036#include "llvm/Support/Path.h"
John McCall6b5a61b2011-02-07 10:33:21 +000037#include "llvm/Target/TargetData.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000038#include "llvm/Target/TargetMachine.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000039using namespace clang;
40using namespace clang::CodeGen;
41
Anders Carlsson20f12a22009-12-06 18:00:51 +000042CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
Devang Patel823d8e92010-12-08 22:42:58 +000043 : CGM(CGM), DBuilder(CGM.getModule()),
Dan Gohman4cac5b42010-08-20 22:02:57 +000044 BlockLiteralGenericSet(false) {
Devang Patel17800552010-03-09 00:44:50 +000045 CreateCompileUnit();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000046}
47
Chris Lattner9c85ba32008-11-10 06:08:34 +000048CGDebugInfo::~CGDebugInfo() {
Eric Christopherab5278e2011-10-11 23:00:51 +000049 assert(LexicalBlockStack.empty() &&
50 "Region stack mismatch, stack not empty!");
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000051}
52
Chris Lattner9c85ba32008-11-10 06:08:34 +000053void CGDebugInfo::setLocation(SourceLocation Loc) {
Eric Christopher944542e2011-10-11 23:00:45 +000054 // If the new location isn't valid return.
55 if (!Loc.isValid()) return;
56
57 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000058}
59
Devang Patel33583052010-01-28 23:15:27 +000060/// getContextDescriptor - Get context info for the decl.
Devang Patel170cef32010-12-09 00:33:05 +000061llvm::DIDescriptor CGDebugInfo::getContextDescriptor(const Decl *Context) {
Devang Pateleb6d79b2010-02-01 21:34:11 +000062 if (!Context)
Devang Patel170cef32010-12-09 00:33:05 +000063 return TheCU;
Devang Pateleb6d79b2010-02-01 21:34:11 +000064
65 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
66 I = RegionMap.find(Context);
67 if (I != RegionMap.end())
Gabor Greif38c9b172010-09-18 13:00:17 +000068 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
Devang Patel411894b2010-02-01 22:40:08 +000069
Devang Pateleb6d79b2010-02-01 21:34:11 +000070 // Check namespace.
71 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
Devang Patel170cef32010-12-09 00:33:05 +000072 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
Devang Patel8b90a782010-05-13 23:52:37 +000073
74 if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context)) {
75 if (!RDecl->isDependentType()) {
Devang Patela2e57692010-10-28 17:27:32 +000076 llvm::DIType Ty = getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
Devang Patel170cef32010-12-09 00:33:05 +000077 getOrCreateMainFile());
Devang Patel8b90a782010-05-13 23:52:37 +000078 return llvm::DIDescriptor(Ty);
79 }
80 }
Devang Patel170cef32010-12-09 00:33:05 +000081 return TheCU;
Devang Patel979ec2e2009-10-06 00:35:31 +000082}
83
Devang Patel9c6c3a02010-01-14 00:36:21 +000084/// getFunctionName - Get function name for the given FunctionDecl. If the
85/// name is constructred on demand (e.g. C++ destructor) then the name
86/// is stored on the side.
Chris Lattner5f9e2722011-07-23 10:55:15 +000087StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
Devang Patel9c6c3a02010-01-14 00:36:21 +000088 assert (FD && "Invalid FunctionDecl!");
89 IdentifierInfo *FII = FD->getIdentifier();
90 if (FII)
91 return FII->getName();
92
93 // Otherwise construct human readable name for debug info.
94 std::string NS = FD->getNameAsString();
95
96 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +000097 char *StrPtr = DebugInfoNames.Allocate<char>(NS.length());
Benjamin Kramer1b627dc2010-01-23 18:16:07 +000098 memcpy(StrPtr, NS.data(), NS.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +000099 return StringRef(StrPtr, NS.length());
Devang Patel9c6c3a02010-01-14 00:36:21 +0000100}
101
Chris Lattner5f9e2722011-07-23 10:55:15 +0000102StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
David Chisnall52044a22010-09-02 18:01:51 +0000103 llvm::SmallString<256> MethodName;
104 llvm::raw_svector_ostream OS(MethodName);
105 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
106 const DeclContext *DC = OMD->getDeclContext();
Devang Patela2e57692010-10-28 17:27:32 +0000107 if (const ObjCImplementationDecl *OID =
108 dyn_cast<const ObjCImplementationDecl>(DC)) {
David Chisnall52044a22010-09-02 18:01:51 +0000109 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000110 } else if (const ObjCInterfaceDecl *OID =
111 dyn_cast<const ObjCInterfaceDecl>(DC)) {
Fariborz Jahanian1a4c9372010-10-18 17:51:06 +0000112 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000113 } else if (const ObjCCategoryImplDecl *OCD =
114 dyn_cast<const ObjCCategoryImplDecl>(DC)){
David Chisnall52044a22010-09-02 18:01:51 +0000115 OS << ((NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
116 OCD->getIdentifier()->getNameStart() << ')';
117 }
118 OS << ' ' << OMD->getSelector().getAsString() << ']';
119
120 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
121 memcpy(StrPtr, MethodName.begin(), OS.tell());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000122 return StringRef(StrPtr, OS.tell());
David Chisnall52044a22010-09-02 18:01:51 +0000123}
124
Devang Patel1f15c192011-04-18 17:30:25 +0000125/// getSelectorName - Return selector name. This is used for debugging
Devang Patel90c1eed2011-04-16 00:37:51 +0000126/// info.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000127StringRef CGDebugInfo::getSelectorName(Selector S) {
Devang Patel90c1eed2011-04-16 00:37:51 +0000128 llvm::SmallString<256> SName;
129 llvm::raw_svector_ostream OS(SName);
130 OS << S.getAsString();
131 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
132 memcpy(StrPtr, SName.begin(), OS.tell());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000133 return StringRef(StrPtr, OS.tell());
Devang Patel90c1eed2011-04-16 00:37:51 +0000134}
135
Devang Patel700a1cb2010-07-20 20:24:18 +0000136/// getClassName - Get class name including template argument list.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000137StringRef
Devang Patel700a1cb2010-07-20 20:24:18 +0000138CGDebugInfo::getClassName(RecordDecl *RD) {
139 ClassTemplateSpecializationDecl *Spec
140 = dyn_cast<ClassTemplateSpecializationDecl>(RD);
141 if (!Spec)
142 return RD->getName();
143
144 const TemplateArgument *Args;
145 unsigned NumArgs;
146 std::string Buffer;
147 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
148 const TemplateSpecializationType *TST =
149 cast<TemplateSpecializationType>(TAW->getType());
150 Args = TST->getArgs();
151 NumArgs = TST->getNumArgs();
152 } else {
153 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Douglas Gregor910f8002010-11-07 23:05:16 +0000154 Args = TemplateArgs.data();
155 NumArgs = TemplateArgs.size();
Devang Patel700a1cb2010-07-20 20:24:18 +0000156 }
157 Buffer = RD->getIdentifier()->getNameStart();
158 PrintingPolicy Policy(CGM.getLangOptions());
159 Buffer += TemplateSpecializationType::PrintTemplateArgumentList(Args,
160 NumArgs,
161 Policy);
162
163 // Copy this name on the side and use its reference.
164 char *StrPtr = DebugInfoNames.Allocate<char>(Buffer.length());
165 memcpy(StrPtr, Buffer.data(), Buffer.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000166 return StringRef(StrPtr, Buffer.length());
Devang Patel700a1cb2010-07-20 20:24:18 +0000167}
168
Devang Patel17800552010-03-09 00:44:50 +0000169/// getOrCreateFile - Get the file debug info descriptor for the input location.
170llvm::DIFile CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
Devang Patel823d8e92010-12-08 22:42:58 +0000171 if (!Loc.isValid())
172 // If Location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000173 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel823d8e92010-12-08 22:42:58 +0000174
Anders Carlsson20f12a22009-12-06 18:00:51 +0000175 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patel17800552010-03-09 00:44:50 +0000176 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Ted Kremenek9c250392010-03-30 00:27:51 +0000177
Chris Lattner5f9e2722011-07-23 10:55:15 +0000178 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
Douglas Gregor8c457a82010-11-11 20:45:16 +0000179 // If the location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000180 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Douglas Gregor8c457a82010-11-11 20:45:16 +0000181
Ted Kremenek9c250392010-03-30 00:27:51 +0000182 // Cache the results.
183 const char *fname = PLoc.getFilename();
184 llvm::DenseMap<const char *, llvm::WeakVH>::iterator it =
185 DIFileCache.find(fname);
186
187 if (it != DIFileCache.end()) {
188 // Verify that the information still exists.
189 if (&*it->second)
190 return llvm::DIFile(cast<llvm::MDNode>(it->second));
191 }
192
Devang Patel16674e82011-02-22 18:56:36 +0000193 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
Ted Kremenek9c250392010-03-30 00:27:51 +0000194
Devang Patelab699792010-05-07 18:12:35 +0000195 DIFileCache[fname] = F;
Ted Kremenek9c250392010-03-30 00:27:51 +0000196 return F;
197
Devang Patel17800552010-03-09 00:44:50 +0000198}
Devang Patel8ab870d2010-05-12 23:46:38 +0000199
Devang Patel532105f2010-10-28 22:03:20 +0000200/// getOrCreateMainFile - Get the file info for main compile unit.
201llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
Devang Patel16674e82011-02-22 18:56:36 +0000202 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel532105f2010-10-28 22:03:20 +0000203}
204
Devang Patel8ab870d2010-05-12 23:46:38 +0000205/// getLineNumber - Get line number for the location. If location is invalid
206/// then use current location.
207unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
208 assert (CurLoc.isValid() && "Invalid current location!");
209 SourceManager &SM = CGM.getContext().getSourceManager();
210 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000211 return PLoc.isValid()? PLoc.getLine() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000212}
213
214/// getColumnNumber - Get column number for the location. If location is
215/// invalid then use current location.
216unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
217 assert (CurLoc.isValid() && "Invalid current location!");
218 SourceManager &SM = CGM.getContext().getSourceManager();
219 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000220 return PLoc.isValid()? PLoc.getColumn() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000221}
222
Chris Lattner5f9e2722011-07-23 10:55:15 +0000223StringRef CGDebugInfo::getCurrentDirname() {
Devang Patelac4d13c2010-07-27 15:17:16 +0000224 if (!CWDName.empty())
225 return CWDName;
226 char *CompDirnamePtr = NULL;
227 llvm::sys::Path CWD = llvm::sys::Path::GetCurrentDirectory();
228 CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
229 memcpy(CompDirnamePtr, CWD.c_str(), CWD.size());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000230 return CWDName = StringRef(CompDirnamePtr, CWD.size());
Devang Patelac4d13c2010-07-27 15:17:16 +0000231}
232
Devang Patel17800552010-03-09 00:44:50 +0000233/// CreateCompileUnit - Create new compile unit.
234void CGDebugInfo::CreateCompileUnit() {
235
236 // Get absolute path name.
Douglas Gregorac91b4c2010-03-18 23:46:43 +0000237 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000238 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
239 if (MainFileName.empty())
Devang Patel22fe5852010-03-12 21:04:27 +0000240 MainFileName = "<unknown>";
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000241
Douglas Gregorf6728fc2010-03-22 21:28:29 +0000242 // The main file name provided via the "-main-file-name" option contains just
243 // the file name itself with no path information. This file name may have had
244 // a relative path, so we look into the actual file entry for the main
245 // file to determine the real absolute path for the file.
Devang Patel6e6bc392010-07-23 23:04:28 +0000246 std::string MainFileDir;
Devang Patelac4d13c2010-07-27 15:17:16 +0000247 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000248 MainFileDir = MainFile->getDir()->getName();
Devang Patelac4d13c2010-07-27 15:17:16 +0000249 if (MainFileDir != ".")
250 MainFileName = MainFileDir + "/" + MainFileName;
251 }
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000252
Devang Patelac4d13c2010-07-27 15:17:16 +0000253 // Save filename string.
254 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
255 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000256 StringRef Filename(FilenamePtr, MainFileName.length());
Devang Patelac4d13c2010-07-27 15:17:16 +0000257
Chris Lattner515455a2009-03-25 03:28:08 +0000258 unsigned LangTag;
Devang Patel17800552010-03-09 00:44:50 +0000259 const LangOptions &LO = CGM.getLangOptions();
Chris Lattner515455a2009-03-25 03:28:08 +0000260 if (LO.CPlusPlus) {
261 if (LO.ObjC1)
262 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
263 else
264 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
265 } else if (LO.ObjC1) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000266 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner515455a2009-03-25 03:28:08 +0000267 } else if (LO.C99) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000268 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner515455a2009-03-25 03:28:08 +0000269 } else {
270 LangTag = llvm::dwarf::DW_LANG_C89;
271 }
Devang Patel446c6192009-04-17 21:06:59 +0000272
Daniel Dunbar19f19832010-08-24 17:41:09 +0000273 std::string Producer = getClangFullVersion();
Chris Lattner4c2577a2009-05-02 01:00:04 +0000274
275 // Figure out which version of the ObjC runtime we have.
276 unsigned RuntimeVers = 0;
277 if (LO.ObjC1)
278 RuntimeVers = LO.ObjCNonFragileABI ? 2 : 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000279
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000280 // Create new compile unit.
Devang Patel16674e82011-02-22 18:56:36 +0000281 DBuilder.createCompileUnit(
Devang Patel58115002010-07-27 20:49:59 +0000282 LangTag, Filename, getCurrentDirname(),
Devang Patel823d8e92010-12-08 22:42:58 +0000283 Producer,
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000284 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel823d8e92010-12-08 22:42:58 +0000285 // FIXME - Eliminate TheCU.
286 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000287}
288
Devang Patel65e99f22009-02-25 01:36:11 +0000289/// CreateType - Get the Basic type from the cache or create a new
Chris Lattner9c85ba32008-11-10 06:08:34 +0000290/// one if necessary.
Devang Patelf1d1d9a2010-11-01 16:52:40 +0000291llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000292 unsigned Encoding = 0;
Devang Patel05127ca2010-07-28 23:23:29 +0000293 const char *BTName = NULL;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000294 switch (BT->getKind()) {
Devang Patele7566cf2011-09-12 18:50:21 +0000295 case BuiltinType::Dependent:
David Blaikieb219cfc2011-09-23 05:06:16 +0000296 llvm_unreachable("Unexpected builtin type Dependent");
Devang Patele7566cf2011-09-12 18:50:21 +0000297 case BuiltinType::Overload:
David Blaikieb219cfc2011-09-23 05:06:16 +0000298 llvm_unreachable("Unexpected builtin type Overload");
Devang Patele7566cf2011-09-12 18:50:21 +0000299 case BuiltinType::BoundMember:
David Blaikieb219cfc2011-09-23 05:06:16 +0000300 llvm_unreachable("Unexpected builtin type BoundMember");
Devang Patele7566cf2011-09-12 18:50:21 +0000301 case BuiltinType::UnknownAny:
David Blaikieb219cfc2011-09-23 05:06:16 +0000302 llvm_unreachable("Unexpected builtin type UnknownAny");
Devang Patele7566cf2011-09-12 18:50:21 +0000303 case BuiltinType::NullPtr:
Devang Patelf60dca32011-09-14 23:14:14 +0000304 return DBuilder.
305 createNullPtrType(BT->getName(CGM.getContext().getLangOptions()));
Chris Lattner9c85ba32008-11-10 06:08:34 +0000306 case BuiltinType::Void:
307 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000308 case BuiltinType::ObjCClass:
Devang Patel16674e82011-02-22 18:56:36 +0000309 return DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000310 getOrCreateMainFile(), 0, 0, 0,
311 llvm::DIDescriptor::FlagFwdDecl,
312 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000313 case BuiltinType::ObjCId: {
314 // typedef struct objc_class *Class;
315 // typedef struct objc_object {
316 // Class isa;
317 // } *id;
318
319 llvm::DIType OCTy =
Devang Patel16674e82011-02-22 18:56:36 +0000320 DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000321 getOrCreateMainFile(), 0, 0, 0,
322 llvm::DIDescriptor::FlagFwdDecl,
323 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000324 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
325
Devang Patel16674e82011-02-22 18:56:36 +0000326 llvm::DIType ISATy = DBuilder.createPointerType(OCTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000327
Chris Lattner5f9e2722011-07-23 10:55:15 +0000328 SmallVector<llvm::Value *, 16> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000329 llvm::DIType FieldTy =
Devang Patel1d323e02011-06-24 22:00:59 +0000330 DBuilder.createMemberType(getOrCreateMainFile(), "isa",
331 getOrCreateMainFile(), 0, Size,
332 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000333 EltTys.push_back(FieldTy);
Jay Foadc556ef22011-04-24 10:11:03 +0000334 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patelc8972c62010-07-28 01:33:15 +0000335
Devang Patel16674e82011-02-22 18:56:36 +0000336 return DBuilder.createStructType(TheCU, "objc_object",
Devang Patel823d8e92010-12-08 22:42:58 +0000337 getOrCreateMainFile(),
338 0, 0, 0, 0, Elements);
Devang Patelc8972c62010-07-28 01:33:15 +0000339 }
Devang Patel6e108ce2011-02-09 03:15:05 +0000340 case BuiltinType::ObjCSel: {
Devang Patel16674e82011-02-22 18:56:36 +0000341 return DBuilder.createStructType(TheCU, "objc_selector",
Devang Patel6e108ce2011-02-09 03:15:05 +0000342 getOrCreateMainFile(), 0, 0, 0,
343 llvm::DIDescriptor::FlagFwdDecl,
344 llvm::DIArray());
345 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000346 case BuiltinType::UChar:
347 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
348 case BuiltinType::Char_S:
349 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patele8ee3f22011-09-12 17:11:58 +0000350 case BuiltinType::Char16:
351 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000352 case BuiltinType::UShort:
353 case BuiltinType::UInt:
Devang Patel31c79b42011-05-05 17:06:30 +0000354 case BuiltinType::UInt128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000355 case BuiltinType::ULong:
Devang Patel68f76b12011-09-10 00:44:49 +0000356 case BuiltinType::WChar_U:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000357 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
358 case BuiltinType::Short:
359 case BuiltinType::Int:
Devang Patel31c79b42011-05-05 17:06:30 +0000360 case BuiltinType::Int128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000361 case BuiltinType::Long:
Devang Patel68f76b12011-09-10 00:44:49 +0000362 case BuiltinType::WChar_S:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000363 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
364 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
365 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000366 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000367 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000368 }
Devang Patel05127ca2010-07-28 23:23:29 +0000369
370 switch (BT->getKind()) {
371 case BuiltinType::Long: BTName = "long int"; break;
372 case BuiltinType::LongLong: BTName = "long long int"; break;
373 case BuiltinType::ULong: BTName = "long unsigned int"; break;
374 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
375 default:
376 BTName = BT->getName(CGM.getContext().getLangOptions());
377 break;
378 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000379 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000380 uint64_t Size = CGM.getContext().getTypeSize(BT);
381 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000382 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000383 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000384 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000385}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000386
Devang Patel344ff5d2010-12-09 00:25:29 +0000387llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000388 // Bit size, align and offset of the type.
389 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
390 if (Ty->isComplexIntegerType())
391 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000392
Anders Carlsson20f12a22009-12-06 18:00:51 +0000393 uint64_t Size = CGM.getContext().getTypeSize(Ty);
394 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000395 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000396 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel823d8e92010-12-08 22:42:58 +0000397
Devang Patelca80a5f2009-10-20 19:55:01 +0000398 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000399}
400
John McCalla1805292009-09-25 01:40:47 +0000401/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000402/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000403llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000404 QualifierCollector Qc;
405 const Type *T = Qc.strip(Ty);
406
407 // Ignore these qualifiers for now.
408 Qc.removeObjCGCAttr();
409 Qc.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +0000410 Qc.removeObjCLifetime();
John McCalla1805292009-09-25 01:40:47 +0000411
Chris Lattner9c85ba32008-11-10 06:08:34 +0000412 // We will create one Derived type for one qualifier and recurse to handle any
413 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000414 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000415 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000416 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000417 Qc.removeConst();
418 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000419 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000420 Qc.removeVolatile();
421 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000422 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000423 Qc.removeRestrict();
424 } else {
425 assert(Qc.empty() && "Unknown type qualifier for debug info");
426 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000427 }
Mike Stump1eb44332009-09-09 15:08:12 +0000428
John McCall49f4e1c2010-12-10 11:01:00 +0000429 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCalla1805292009-09-25 01:40:47 +0000430
Daniel Dunbar3845f862008-10-31 03:54:29 +0000431 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
432 // CVR derived types.
Devang Patel16674e82011-02-22 18:56:36 +0000433 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000434
Devang Patelca80a5f2009-10-20 19:55:01 +0000435 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000436}
437
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000438llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000439 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000440 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000441 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
442 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000443 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000444}
445
Chris Lattner9c85ba32008-11-10 06:08:34 +0000446llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000447 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000448 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
449 Ty->getPointeeType(), Unit);
450}
451
Eric Christopheredc95922011-09-13 23:45:09 +0000452/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000453/// then emit record's fwd if debug info size reduction is enabled.
454llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
455 llvm::DIFile Unit) {
456 if (!CGM.getCodeGenOpts().LimitDebugInfo)
457 return getOrCreateType(PointeeTy, Unit);
458
459 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
460 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000461 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
462 unsigned Line = getLineNumber(RD->getLocation());
463 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000464 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel823d8e92010-12-08 22:42:58 +0000465
466 if (RD->isStruct())
Devang Patel16674e82011-02-22 18:56:36 +0000467 return DBuilder.createStructType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000468 Line, 0, 0, llvm::DIType::FlagFwdDecl,
469 llvm::DIArray());
470 else if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +0000471 return DBuilder.createUnionType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000472 Line, 0, 0, llvm::DIType::FlagFwdDecl,
473 llvm::DIArray());
474 else {
475 assert(RD->isClass() && "Unknown RecordType!");
Devang Patel16674e82011-02-22 18:56:36 +0000476 return DBuilder.createClassType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000477 Line, 0, 0, 0, llvm::DIType::FlagFwdDecl,
478 llvm::DIType(), llvm::DIArray());
479 }
Devang Patelc69e1cf2010-09-30 19:05:55 +0000480 }
481 return getOrCreateType(PointeeTy, Unit);
482
483}
484
Anders Carlssona031b352009-11-06 19:19:55 +0000485llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
486 const Type *Ty,
487 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000488 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000489
490 if (Tag == llvm::dwarf::DW_TAG_reference_type)
Devang Patel16674e82011-02-22 18:56:36 +0000491 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000492
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000493 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000494 // Size is always the size of a pointer. We can't use getTypeSize here
495 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000496 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000497 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000498 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000499
Devang Patel823d8e92010-12-08 22:42:58 +0000500 return
Devang Patel16674e82011-02-22 18:56:36 +0000501 DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit), Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000502}
503
Mike Stump9bc093c2009-05-14 02:03:51 +0000504llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000505 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000506 if (BlockLiteralGenericSet)
507 return BlockLiteralGeneric;
508
Chris Lattner5f9e2722011-07-23 10:55:15 +0000509 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000510 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000511 QualType FType;
512 uint64_t FieldSize, FieldOffset;
513 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000514 llvm::DIArray Elements;
515 llvm::DIType EltTy, DescTy;
516
517 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000518 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000519 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
520 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000521
Jay Foadc556ef22011-04-24 10:11:03 +0000522 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000523 EltTys.clear();
524
Devang Patele2472482010-09-29 21:05:52 +0000525 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000526 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000527
Devang Patel16674e82011-02-22 18:56:36 +0000528 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000529 Unit, LineNo, FieldOffset, 0,
530 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Mike Stump9bc093c2009-05-14 02:03:51 +0000532 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000533 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000534
Devang Patel16674e82011-02-22 18:56:36 +0000535 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000536
537 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000538 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000539 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000540 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000541 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
542 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000543 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000544 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000545
Anders Carlsson20f12a22009-12-06 18:00:51 +0000546 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000547 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000548 FieldSize = CGM.getContext().getTypeSize(Ty);
549 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000550 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000551 LineNo, FieldSize, FieldAlign,
552 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000553 EltTys.push_back(FieldTy);
554
555 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000556 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000557
Devang Patel16674e82011-02-22 18:56:36 +0000558 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000559 Unit, LineNo, FieldOffset, 0,
560 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000561
Mike Stump9bc093c2009-05-14 02:03:51 +0000562 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000563 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000564 return BlockLiteralGeneric;
565}
566
Chris Lattner9c85ba32008-11-10 06:08:34 +0000567llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000568 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000569 // Typedefs are derived from some other type. If we have a typedef of a
570 // typedef, make sure to emit the whole chain.
571 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000572 if (!Src.Verify())
573 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000574 // We don't set size information, but do specify where the typedef was
575 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000576 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000577 const TypedefNameDecl *TyDecl = Ty->getDecl();
578 llvm::DIDescriptor TydefContext =
579 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
580
581 return
582 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TydefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000583}
584
Chris Lattner9c85ba32008-11-10 06:08:34 +0000585llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000586 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000587 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000588
Chris Lattner9c85ba32008-11-10 06:08:34 +0000589 // Add the result type at least.
590 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000591
Chris Lattner9c85ba32008-11-10 06:08:34 +0000592 // Set up remainder of arguments if there is a prototype.
593 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000594 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000595 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Devang Patelaf164bb2010-10-06 20:51:45 +0000596 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000597 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
598 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000599 }
600
Jay Foadc556ef22011-04-24 10:11:03 +0000601 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Devang Patel16674e82011-02-22 18:56:36 +0000603 llvm::DIType DbgTy = DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patelca80a5f2009-10-20 19:55:01 +0000604 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000605}
606
Chris Lattner5f9e2722011-07-23 10:55:15 +0000607llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000608 QualType type,
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000609 uint64_t sizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000610 SourceLocation loc,
611 AccessSpecifier AS,
612 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000613 llvm::DIFile tunit,
614 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000615 llvm::DIType debugType = getOrCreateType(type, tunit);
616
617 // Get the location for the field.
618 llvm::DIFile file = getOrCreateFile(loc);
619 unsigned line = getLineNumber(loc);
620
621 uint64_t sizeInBits = 0;
622 unsigned alignInBits = 0;
623 if (!type->isIncompleteArrayType()) {
624 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
625
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000626 if (sizeInBitsOverride)
627 sizeInBits = sizeInBitsOverride;
John McCall8178df32011-02-22 22:38:33 +0000628 }
629
630 unsigned flags = 0;
631 if (AS == clang::AS_private)
632 flags |= llvm::DIDescriptor::FlagPrivate;
633 else if (AS == clang::AS_protected)
634 flags |= llvm::DIDescriptor::FlagProtected;
635
Devang Patel1d323e02011-06-24 22:00:59 +0000636 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
637 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000638}
639
Devang Patel428deb52010-01-19 00:00:59 +0000640/// CollectRecordFields - A helper function to collect debug info for
641/// record fields. This is used while creating debug info entry for a Record.
642void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000643CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000644 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000645 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000646 unsigned fieldNo = 0;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000647 const FieldDecl *LastFD = 0;
648 bool IsMsStruct = record->hasAttr<MsStructAttr>();
649
John McCall8178df32011-02-22 22:38:33 +0000650 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
651 for (RecordDecl::field_iterator I = record->field_begin(),
652 E = record->field_end();
653 I != E; ++I, ++fieldNo) {
654 FieldDecl *field = *I;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000655 if (IsMsStruct) {
656 // Zero-length bitfields following non-bitfield members are ignored
Fariborz Jahanian855a8e72011-05-03 20:21:04 +0000657 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000658 --fieldNo;
659 continue;
660 }
661 LastFD = field;
662 }
Devang Patel428deb52010-01-19 00:00:59 +0000663
Chris Lattner5f9e2722011-07-23 10:55:15 +0000664 StringRef name = field->getName();
John McCall8178df32011-02-22 22:38:33 +0000665 QualType type = field->getType();
666
667 // Ignore unnamed fields unless they're anonymous structs/unions.
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000668 if (name.empty() && !type->isRecordType()) {
669 LastFD = field;
Devang Patel428deb52010-01-19 00:00:59 +0000670 continue;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000671 }
Devang Patel428deb52010-01-19 00:00:59 +0000672
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000673 uint64_t SizeInBitsOverride = 0;
674 if (field->isBitField()) {
675 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
676 assert(SizeInBitsOverride && "found named 0-width bitfield");
677 }
678
John McCall8178df32011-02-22 22:38:33 +0000679 llvm::DIType fieldType
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000680 = createFieldType(name, type, SizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000681 field->getLocation(), field->getAccess(),
Devang Patel1d323e02011-06-24 22:00:59 +0000682 layout.getFieldOffset(fieldNo), tunit, RecordTy);
Devang Patel428deb52010-01-19 00:00:59 +0000683
John McCall8178df32011-02-22 22:38:33 +0000684 elements.push_back(fieldType);
Devang Patel428deb52010-01-19 00:00:59 +0000685 }
686}
687
Devang Patela6da1922010-01-28 00:28:01 +0000688/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
689/// function type is not updated to include implicit "this" pointer. Use this
690/// routine to get a method type which includes "this" pointer.
691llvm::DIType
692CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000693 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000694 llvm::DIType FnTy
695 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
696 0),
697 Unit);
Devang Pateld774d1e2010-01-28 21:43:50 +0000698
Devang Patela6da1922010-01-28 00:28:01 +0000699 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000700 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000701 assert (Args.getNumElements() && "Invalid number of arguments!");
702
Chris Lattner5f9e2722011-07-23 10:55:15 +0000703 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000704
705 // First element is always return type. For 'void' functions it is NULL.
706 Elts.push_back(Args.getElement(0));
707
Eric Christopher2121cda2011-09-14 01:10:50 +0000708 if (!Method->isStatic()) {
709 // "this" pointer is always first argument.
710 QualType ThisPtr = Method->getThisType(CGM.getContext());
711 llvm::DIType ThisPtrType =
712 DBuilder.createArtificialType(getOrCreateType(ThisPtr, Unit));
713
714 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
715 Elts.push_back(ThisPtrType);
716 }
Devang Patela6da1922010-01-28 00:28:01 +0000717
718 // Copy rest of the arguments.
719 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
720 Elts.push_back(Args.getElement(i));
721
Jay Foadc556ef22011-04-24 10:11:03 +0000722 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000723
Devang Patel16674e82011-02-22 18:56:36 +0000724 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000725}
726
Devang Patel58faf202010-10-22 17:11:50 +0000727/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
728/// inside a function.
729static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
730 if (const CXXRecordDecl *NRD =
731 dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
732 return isFunctionLocalClass(NRD);
733 else if (isa<FunctionDecl>(RD->getDeclContext()))
734 return true;
735 return false;
736
737}
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000738/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
739/// a single member function GlobalDecl.
740llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000741CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000742 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000743 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000744 bool IsCtorOrDtor =
745 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
746
Chris Lattner5f9e2722011-07-23 10:55:15 +0000747 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000748 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000749
750 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
751 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000752 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000753 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000754 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000755
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000756 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000757 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
758 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000759
760 // Collect virtual method info.
761 llvm::DIType ContainingType;
762 unsigned Virtuality = 0;
763 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000764
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000765 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000766 if (Method->isPure())
767 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
768 else
769 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
770
771 // It doesn't make sense to give a virtual destructor a vtable index,
772 // since a single destructor has two entries in the vtable.
773 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000774 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000775 ContainingType = RecordTy;
776 }
777
Devang Patele2472482010-09-29 21:05:52 +0000778 unsigned Flags = 0;
779 if (Method->isImplicit())
780 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000781 AccessSpecifier Access = Method->getAccess();
782 if (Access == clang::AS_private)
783 Flags |= llvm::DIDescriptor::FlagPrivate;
784 else if (Access == clang::AS_protected)
785 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000786 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
787 if (CXXC->isExplicit())
788 Flags |= llvm::DIDescriptor::FlagExplicit;
789 } else if (const CXXConversionDecl *CXXC =
790 dyn_cast<CXXConversionDecl>(Method)) {
791 if (CXXC->isExplicit())
792 Flags |= llvm::DIDescriptor::FlagExplicit;
793 }
Devang Patel3951e712010-10-07 22:03:49 +0000794 if (Method->hasPrototype())
795 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Pateld78a0192010-10-01 23:32:17 +0000796
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000797 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000798 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000799 MethodDefUnit, MethodLine,
800 MethodTy, /*isLocalToUnit=*/false,
801 /* isDefinition=*/ false,
802 Virtuality, VIndex, ContainingType,
803 Flags, CGM.getLangOptions().Optimize);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000804
Devang Patel22a5cdf2011-04-29 23:42:32 +0000805 SPCache[Method] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000806
807 return SP;
808}
809
Devang Patel4125fd22010-01-19 01:54:44 +0000810/// CollectCXXMemberFunctions - A helper function to collect debug info for
811/// C++ member functions.This is used while creating debug info entry for
812/// a Record.
813void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000814CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000815 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000816 llvm::DIType RecordTy) {
Devang Patel239cec62010-02-01 21:39:52 +0000817 for(CXXRecordDecl::method_iterator I = RD->method_begin(),
818 E = RD->method_end(); I != E; ++I) {
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000819 const CXXMethodDecl *Method = *I;
Anders Carlssonbea9b232010-01-26 04:40:11 +0000820
Devang Pateld5322da2010-02-09 19:09:28 +0000821 if (Method->isImplicit() && !Method->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +0000822 continue;
Devang Patel4125fd22010-01-19 01:54:44 +0000823
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000824 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +0000825 }
826}
827
Devang Patel2ed8f002010-08-27 17:47:47 +0000828/// CollectCXXFriends - A helper function to collect debug info for
829/// C++ base classes. This is used while creating debug info entry for
830/// a Record.
831void CGDebugInfo::
832CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000833 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +0000834 llvm::DIType RecordTy) {
Devang Patel2ed8f002010-08-27 17:47:47 +0000835 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
836 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +0000837 if ((*BI)->isUnsupportedFriend())
838 continue;
Devang Patel823d8e92010-12-08 22:42:58 +0000839 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +0000840 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000841 getOrCreateType(TInfo->getType(),
842 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +0000843 }
844}
845
Devang Patela245c5b2010-01-25 23:32:18 +0000846/// CollectCXXBases - A helper function to collect debug info for
847/// C++ base classes. This is used while creating debug info entry for
848/// a Record.
849void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000850CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000851 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000852 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +0000853
Devang Patel239cec62010-02-01 21:39:52 +0000854 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
855 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
856 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +0000857 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +0000858 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +0000859
860 const CXXRecordDecl *Base =
861 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
862
863 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +0000864 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +0000865 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +0000866 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000867 0 - CGM.getVTableContext()
868 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +0000869 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +0000870 } else
Devang Patel62c117d2011-04-04 20:36:06 +0000871 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Ken Dyck14c65ca2011-04-07 12:37:09 +0000872 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
873 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +0000874
875 AccessSpecifier Access = BI->getAccessSpecifier();
876 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +0000877 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +0000878 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +0000879 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +0000880
Devang Patel823d8e92010-12-08 22:42:58 +0000881 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +0000882 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000883 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +0000884 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +0000885 EltTys.push_back(DTy);
886 }
Devang Patela245c5b2010-01-25 23:32:18 +0000887}
888
Devang Patel5ecb1df2011-04-05 22:54:11 +0000889/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +0000890llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +0000891CollectTemplateParams(const TemplateParameterList *TPList,
892 const TemplateArgumentList &TAList,
893 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000894 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +0000895 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
896 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +0000897 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +0000898 if (TA.getKind() == TemplateArgument::Type) {
899 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
900 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +0000901 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +0000902 TemplateParams.push_back(TTP);
903 } else if (TA.getKind() == TemplateArgument::Integral) {
904 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +0000905 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +0000906 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
907 TA.getAsIntegral()->getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +0000908 TemplateParams.push_back(TVP);
909 }
910 }
Jay Foadc556ef22011-04-24 10:11:03 +0000911 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +0000912}
913
Devang Patel5ecb1df2011-04-05 22:54:11 +0000914/// CollectFunctionTemplateParams - A helper function to collect debug
915/// info for function template parameters.
916llvm::DIArray CGDebugInfo::
917CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherab5278e2011-10-11 23:00:51 +0000918 if (FD->getTemplatedKind() ==
919 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patel5ecb1df2011-04-05 22:54:11 +0000920 const TemplateParameterList *TList =
Eric Christopherab5278e2011-10-11 23:00:51 +0000921 FD->getTemplateSpecializationInfo()->getTemplate()
922 ->getTemplateParameters();
Devang Patel5ecb1df2011-04-05 22:54:11 +0000923 return
924 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
925 }
926 return llvm::DIArray();
927}
928
929/// CollectCXXTemplateParams - A helper function to collect debug info for
930/// template parameters.
931llvm::DIArray CGDebugInfo::
932CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
933 llvm::DIFile Unit) {
934 llvm::PointerUnion<ClassTemplateDecl *,
935 ClassTemplatePartialSpecializationDecl *>
936 PU = TSpecial->getSpecializedTemplateOrPartial();
937
938 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
939 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
940 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
941 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
942 return CollectTemplateParams(TPList, TAList, Unit);
943}
944
Devang Patel4ce3f202010-01-28 18:11:52 +0000945/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +0000946llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +0000947 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +0000948 return VTablePtrType;
949
950 ASTContext &Context = CGM.getContext();
951
952 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +0000953 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +0000954 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +0000955 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +0000956 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +0000957 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +0000958 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +0000959 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +0000960 return VTablePtrType;
961}
962
Anders Carlsson046c2942010-04-17 20:15:18 +0000963/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000964StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Devang Patel4ce3f202010-01-28 18:11:52 +0000965 // Otherwise construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +0000966 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +0000967
968 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +0000969 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +0000970 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000971 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +0000972}
973
974
Anders Carlsson046c2942010-04-17 20:15:18 +0000975/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +0000976/// debug info entry in EltTys vector.
977void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +0000978CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000979 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +0000980 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +0000981
982 // If there is a primary base then it will hold vtable info.
983 if (RL.getPrimaryBase())
984 return;
985
986 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +0000987 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +0000988 return;
989
990 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
991 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +0000992 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000993 0, Size, 0, 0, 0,
994 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +0000995 EltTys.push_back(VPTR);
996}
997
Devang Patelc69e1cf2010-09-30 19:05:55 +0000998/// getOrCreateRecordType - Emit record type's standalone debug info.
999llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1000 SourceLocation Loc) {
1001 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patel16674e82011-02-22 18:56:36 +00001002 DBuilder.retainType(T);
Devang Patelc69e1cf2010-09-30 19:05:55 +00001003 return T;
1004}
1005
Devang Patel65e99f22009-02-25 01:36:11 +00001006/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +00001007llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001008 RecordDecl *RD = Ty->getDecl();
Devang Patel31f7d022011-01-17 22:23:07 +00001009 llvm::DIFile Unit = getOrCreateFile(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001010
Chris Lattner9c85ba32008-11-10 06:08:34 +00001011 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001012 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1013 unsigned Line = getLineNumber(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001014
Chris Lattner9c85ba32008-11-10 06:08:34 +00001015 // Records and classes and unions can all be recursive. To handle them, we
1016 // first generate a debug descriptor for the struct as a forward declaration.
1017 // Then (if it is a definition) we go through and get debug info for all of
1018 // its members. Finally, we create a descriptor for the complete type (which
1019 // may refer to the forward decl if the struct is recursive) and replace all
1020 // uses of the forward declaration with the final definition.
Devang Patel0b897992010-07-08 19:56:29 +00001021 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +00001022 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel0b897992010-07-08 19:56:29 +00001023
1024 // If this is just a forward declaration, construct an appropriately
1025 // marked node and just return it.
1026 if (!RD->getDefinition()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001027 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001028 DBuilder.createStructType(FDContext, RD->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001029 DefUnit, Line, 0, 0,
1030 llvm::DIDescriptor::FlagFwdDecl,
1031 llvm::DIArray());
Devang Patel0b897992010-07-08 19:56:29 +00001032
1033 return FwdDecl;
1034 }
Devang Pateld0f251b2010-01-20 23:56:40 +00001035
Devang Patel16674e82011-02-22 18:56:36 +00001036 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001037
Devang Patelab699792010-05-07 18:12:35 +00001038 llvm::MDNode *MN = FwdDecl;
1039 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001040 // Otherwise, insert it into the TypeCache so that recursive uses will find
1041 // it.
Devang Patelab699792010-05-07 18:12:35 +00001042 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001043 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001044 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001045 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001046
1047 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001048 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001049
Devang Pateld6c5a262010-02-01 21:52:22 +00001050 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +00001051 if (CXXDecl) {
1052 CollectCXXBases(CXXDecl, Unit, EltTys, FwdDecl);
Anders Carlsson046c2942010-04-17 20:15:18 +00001053 CollectVTableInfo(CXXDecl, Unit, EltTys);
Devang Patel3064afe2010-01-28 21:41:35 +00001054 }
Devang Pateldabc3e92010-08-12 00:02:44 +00001055
1056 // Collect static variables with initializers.
1057 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
1058 I != E; ++I)
1059 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
1060 if (const Expr *Init = V->getInit()) {
1061 Expr::EvalResult Result;
1062 if (Init->Evaluate(Result, CGM.getContext()) && Result.Val.isInt()) {
1063 llvm::ConstantInt *CI
1064 = llvm::ConstantInt::get(CGM.getLLVMContext(), Result.Val.getInt());
1065
1066 // Create the descriptor for static variable.
1067 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001068 StringRef VName = V->getName();
Devang Pateldabc3e92010-08-12 00:02:44 +00001069 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
1070 // Do not use DIGlobalVariable for enums.
1071 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
Devang Patel16674e82011-02-22 18:56:36 +00001072 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
Devang Patel823d8e92010-12-08 22:42:58 +00001073 getLineNumber(V->getLocation()),
1074 VTy, true, CI);
Devang Pateldabc3e92010-08-12 00:02:44 +00001075 }
1076 }
1077 }
1078 }
1079
Devang Patel1d323e02011-06-24 22:00:59 +00001080 CollectRecordFields(RD, Unit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001081 llvm::DIArray TParamsArray;
Devang Patel4ce3f202010-01-28 18:11:52 +00001082 if (CXXDecl) {
Devang Patel4125fd22010-01-19 01:54:44 +00001083 CollectCXXMemberFunctions(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel2ed8f002010-08-27 17:47:47 +00001084 CollectCXXFriends(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001085 if (const ClassTemplateSpecializationDecl *TSpecial
1086 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
1087 TParamsArray = CollectCXXTemplateParams(TSpecial, Unit);
Devang Patel823d8e92010-12-08 22:42:58 +00001088 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001089
Eric Christopheraa2164c2011-09-29 00:00:45 +00001090 LexicalBlockStack.pop_back();
Devang Patel823d8e92010-12-08 22:42:58 +00001091 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1092 RegionMap.find(Ty->getDecl());
1093 if (RI != RegionMap.end())
1094 RegionMap.erase(RI);
1095
1096 llvm::DIDescriptor RDContext =
John McCall8178df32011-02-22 22:38:33 +00001097 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Chris Lattner5f9e2722011-07-23 10:55:15 +00001098 StringRef RDName = RD->getName();
Devang Patel823d8e92010-12-08 22:42:58 +00001099 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1100 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Jay Foadc556ef22011-04-24 10:11:03 +00001101 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel823d8e92010-12-08 22:42:58 +00001102 llvm::MDNode *RealDecl = NULL;
1103
Devang Patel5c5b5872011-02-28 22:32:45 +00001104 if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +00001105 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
Devang Patel5c5b5872011-02-28 22:32:45 +00001106 Size, Align, 0, Elements);
1107 else if (CXXDecl) {
Devang Patel823d8e92010-12-08 22:42:58 +00001108 RDName = getClassName(RD);
1109 // A class's primary base or the class itself contains the vtable.
1110 llvm::MDNode *ContainingType = NULL;
Devang Pateld6c5a262010-02-01 21:52:22 +00001111 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel5bc794f2010-10-14 22:59:23 +00001112 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1113 // Seek non virtual primary base root.
1114 while (1) {
1115 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1116 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
Anders Carlssonc9e814b2010-11-24 23:12:57 +00001117 if (PBT && !BRL.isPrimaryBaseVirtual())
Devang Patel5bc794f2010-10-14 22:59:23 +00001118 PBase = PBT;
1119 else
1120 break;
1121 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001122 ContainingType =
Devang Patelab699792010-05-07 18:12:35 +00001123 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), Unit);
Devang Patel5bc794f2010-10-14 22:59:23 +00001124 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001125 else if (CXXDecl->isDynamicClass())
Devang Patelab699792010-05-07 18:12:35 +00001126 ContainingType = FwdDecl;
Devang Patel9c1714b2011-04-05 17:30:54 +00001127
Devang Patel16674e82011-02-22 18:56:36 +00001128 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001129 Size, Align, 0, 0, llvm::DIType(),
Devang Patelfa275df2011-02-02 21:38:49 +00001130 Elements, ContainingType,
1131 TParamsArray);
Devang Patel5c5b5872011-02-28 22:32:45 +00001132 } else
1133 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1134 Size, Align, 0, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +00001135
Chris Lattner9c85ba32008-11-10 06:08:34 +00001136 // Now that we have a real decl for the struct, replace anything using the
1137 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001138 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001139 RegionMap[RD] = llvm::WeakVH(RealDecl);
Devang Patel823d8e92010-12-08 22:42:58 +00001140 return llvm::DIType(RealDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001141}
1142
John McCallc12c5bb2010-05-15 11:32:37 +00001143/// CreateType - get objective-c object type.
1144llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1145 llvm::DIFile Unit) {
1146 // Ignore protocols.
1147 return getOrCreateType(Ty->getBaseType(), Unit);
1148}
1149
Devang Patel9ca36b62009-02-26 21:10:26 +00001150/// CreateType - get objective-c interface type.
1151llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001152 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001153 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001154 if (!ID)
1155 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001156
1157 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001158 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001159 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001160 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001161
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001162 // If this is just a forward declaration return a special forward-declaration
1163 // debug type since we won't be able to lay out the entire type.
Dan Gohman45f7c782010-08-23 21:15:56 +00001164 if (ID->isForwardDecl()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001165 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001166 DBuilder.createStructType(Unit, ID->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001167 DefUnit, Line, 0, 0, 0,
1168 llvm::DIArray(), RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001169 return FwdDecl;
1170 }
1171
Eric Christopher1cd1d742011-10-06 00:30:52 +00001172 // To handle a recursive interface, we first generate a debug descriptor
1173 // for the struct as a forward declaration. Then (if it is a definition)
1174 // we go through and get debug info for all of its members. Finally, we
1175 // create a descriptor for the complete type (which may refer to the
1176 // forward decl if the struct is recursive) and replace all uses of the
1177 // forward declaration with the final definition.
Devang Patel16674e82011-02-22 18:56:36 +00001178 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001179
Devang Patelab699792010-05-07 18:12:35 +00001180 llvm::MDNode *MN = FwdDecl;
1181 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Devang Patel9ca36b62009-02-26 21:10:26 +00001182 // Otherwise, insert it into the TypeCache so that recursive uses will find
1183 // it.
Devang Patelab699792010-05-07 18:12:35 +00001184 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001185 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001186 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001187 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001188
1189 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001190 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001191
Devang Pateld6c5a262010-02-01 21:52:22 +00001192 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001193 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001194 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001195 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001196 if (!SClassTy.isValid())
1197 return llvm::DIType();
1198
Mike Stump1eb44332009-09-09 15:08:12 +00001199 llvm::DIType InhTag =
Devang Patel16674e82011-02-22 18:56:36 +00001200 DBuilder.createInheritance(FwdDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001201 EltTys.push_back(InhTag);
1202 }
1203
Devang Pateld6c5a262010-02-01 21:52:22 +00001204 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel8c6f9c42011-09-19 18:54:16 +00001205 ObjCImplementationDecl *ImpD = ID->getImplementation();
Devang Patel9ca36b62009-02-26 21:10:26 +00001206 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001207 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001208 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001209 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001210 if (!FieldTy.isValid())
1211 return llvm::DIType();
1212
Chris Lattner5f9e2722011-07-23 10:55:15 +00001213 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001214
Devang Patelde135022009-04-27 22:40:36 +00001215 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001216 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001217 continue;
1218
Devang Patel9ca36b62009-02-26 21:10:26 +00001219 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001220 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1221 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001222 QualType FType = Field->getType();
1223 uint64_t FieldSize = 0;
1224 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001225
Devang Patel99c20eb2009-03-20 18:24:39 +00001226 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001227
Devang Patel99c20eb2009-03-20 18:24:39 +00001228 // Bit size, align and offset of the type.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001229 FieldSize = Field->isBitField()
1230 ? Field->getBitWidthValue(CGM.getContext())
1231 : CGM.getContext().getTypeSize(FType);
1232 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001233 }
1234
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001235 // We can't know the offset of our ivar in the structure if we're using
1236 // the non-fragile abi and the debugger should ignore the value anyways.
1237 // Call it the FieldNo+1 due to how debuggers use the information,
1238 // e.g. negating the value when it needs a lookup in the dynamic table.
1239 uint64_t FieldOffset = CGM.getLangOptions().ObjCNonFragileABI ? FieldNo+1
1240 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001241
Devang Patelc20482b2009-03-19 00:23:53 +00001242 unsigned Flags = 0;
1243 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001244 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001245 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001246 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001247
Chris Lattner5f9e2722011-07-23 10:55:15 +00001248 StringRef PropertyName;
1249 StringRef PropertyGetter;
1250 StringRef PropertySetter;
Eli Friedman10292cc2011-04-17 06:40:15 +00001251 unsigned PropertyAttributes = 0;
Devang Patel8c6f9c42011-09-19 18:54:16 +00001252 ObjCPropertyDecl *PD = NULL;
1253 if (ImpD)
1254 if (ObjCPropertyImplDecl *PImpD =
Eric Christopherab5278e2011-10-11 23:00:51 +00001255 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier()))
1256 PD = PImpD->getPropertyDecl();
Devang Patel8c6f9c42011-09-19 18:54:16 +00001257 if (PD) {
Devang Patelfa936d82011-04-16 00:12:55 +00001258 PropertyName = PD->getName();
Devang Patel90c1eed2011-04-16 00:37:51 +00001259 PropertyGetter = getSelectorName(PD->getGetterName());
1260 PropertySetter = getSelectorName(PD->getSetterName());
Devang Patelfa936d82011-04-16 00:12:55 +00001261 PropertyAttributes = PD->getPropertyAttributes();
Devang Patel8c6f9c42011-09-19 18:54:16 +00001262 }
Devang Patelfa936d82011-04-16 00:12:55 +00001263 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1264 FieldLine, FieldSize, FieldAlign,
1265 FieldOffset, Flags, FieldTy,
1266 PropertyName, PropertyGetter,
1267 PropertySetter, PropertyAttributes);
Devang Patel9ca36b62009-02-26 21:10:26 +00001268 EltTys.push_back(FieldTy);
1269 }
Mike Stump1eb44332009-09-09 15:08:12 +00001270
Jay Foadc556ef22011-04-24 10:11:03 +00001271 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel9ca36b62009-02-26 21:10:26 +00001272
Eric Christopheraa2164c2011-09-29 00:00:45 +00001273 LexicalBlockStack.pop_back();
Devang Patele4c1ea02010-03-11 20:01:48 +00001274 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1275 RegionMap.find(Ty->getDecl());
1276 if (RI != RegionMap.end())
1277 RegionMap.erase(RI);
1278
Devang Patel9ca36b62009-02-26 21:10:26 +00001279 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001280 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1281 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001282
Devang Patel707b1e92011-05-12 19:07:41 +00001283 unsigned Flags = 0;
Devang Patelf568b642011-05-12 21:14:54 +00001284 if (ID->getImplementation())
Devang Patelaad16092011-05-12 21:29:57 +00001285 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
Devang Patel707b1e92011-05-12 19:07:41 +00001286
Devang Patel823d8e92010-12-08 22:42:58 +00001287 llvm::DIType RealDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001288 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
Devang Patel707b1e92011-05-12 19:07:41 +00001289 Line, Size, Align, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001290 Elements, RuntimeLang);
Devang Patel9ca36b62009-02-26 21:10:26 +00001291
1292 // Now that we have a real decl for the struct, replace anything using the
1293 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001294 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001295 RegionMap[ID] = llvm::WeakVH(RealDecl);
Devang Patelfe09eab2009-07-13 17:03:14 +00001296
Devang Patel9ca36b62009-02-26 21:10:26 +00001297 return RealDecl;
1298}
1299
Devang Patel31f7d022011-01-17 22:23:07 +00001300llvm::DIType CGDebugInfo::CreateType(const TagType *Ty) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001301 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
Devang Patel31f7d022011-01-17 22:23:07 +00001302 return CreateType(RT);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001303 else if (const EnumType *ET = dyn_cast<EnumType>(Ty))
Devang Patel31f7d022011-01-17 22:23:07 +00001304 return CreateEnumType(ET->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001305
Chris Lattner9c85ba32008-11-10 06:08:34 +00001306 return llvm::DIType();
1307}
1308
Devang Patel70c23cd2010-02-23 22:59:39 +00001309llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty,
Eli Friedmana7e68452010-08-22 01:00:03 +00001310 llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001311 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001312 int64_t NumElems = Ty->getNumElements();
1313 int64_t LowerBound = 0;
1314 if (NumElems == 0)
1315 // If number of elements are not known then this is an unbounded array.
1316 // Use Low = 1, Hi = 0 to express such arrays.
1317 LowerBound = 1;
1318 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001319 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001320
Devang Patel6cf37dd2011-04-08 21:56:52 +00001321 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001322 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001323
1324 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1325 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1326
1327 return
Devang Patel16674e82011-02-22 18:56:36 +00001328 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001329}
1330
Chris Lattner9c85ba32008-11-10 06:08:34 +00001331llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001332 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001333 uint64_t Size;
1334 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001335
1336
Nuno Lopes010d5142009-01-28 00:35:17 +00001337 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001338 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001339 Size = 0;
1340 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001341 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001342 } else if (Ty->isIncompleteArrayType()) {
1343 Size = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001344 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001345 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001346 Size = 0;
1347 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001348 } else {
1349 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001350 Size = CGM.getContext().getTypeSize(Ty);
1351 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001352 }
Mike Stump1eb44332009-09-09 15:08:12 +00001353
Chris Lattner9c85ba32008-11-10 06:08:34 +00001354 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1355 // interior arrays, do we care? Why aren't nested arrays represented the
1356 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001357 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001358 QualType EltTy(Ty, 0);
Devang Patelcdf523c2010-10-06 18:30:00 +00001359 if (Ty->isIncompleteArrayType())
Chris Lattner9c85ba32008-11-10 06:08:34 +00001360 EltTy = Ty->getElementType();
Devang Patelcdf523c2010-10-06 18:30:00 +00001361 else {
1362 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
Devang Patel6cf37dd2011-04-08 21:56:52 +00001363 int64_t UpperBound = 0;
1364 int64_t LowerBound = 0;
Nick Lewycky3894c072011-04-09 00:25:15 +00001365 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
Devang Patelcdf523c2010-10-06 18:30:00 +00001366 if (CAT->getSize().getZExtValue())
Devang Patel6cf37dd2011-04-08 21:56:52 +00001367 UpperBound = CAT->getSize().getZExtValue() - 1;
Nick Lewycky3894c072011-04-09 00:25:15 +00001368 } else
Devang Patel6cf37dd2011-04-08 21:56:52 +00001369 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1370 // arrays.
1371 LowerBound = 1;
1372
Devang Patelcdf523c2010-10-06 18:30:00 +00001373 // FIXME: Verify this is right for VLAs.
Eric Christopherab5278e2011-10-11 23:00:51 +00001374 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1375 UpperBound));
Devang Patelcdf523c2010-10-06 18:30:00 +00001376 EltTy = Ty->getElementType();
1377 }
Sanjiv Gupta507de852008-06-09 10:47:41 +00001378 }
Mike Stump1eb44332009-09-09 15:08:12 +00001379
Jay Foadc556ef22011-04-24 10:11:03 +00001380 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001381
Devang Patelca80a5f2009-10-20 19:55:01 +00001382 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001383 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001384 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001385 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001386}
1387
Anders Carlssona031b352009-11-06 19:19:55 +00001388llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001389 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001390 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1391 Ty, Ty->getPointeeType(), Unit);
1392}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001393
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001394llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1395 llvm::DIFile Unit) {
1396 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1397 Ty, Ty->getPointeeType(), Unit);
1398}
1399
Anders Carlsson20f12a22009-12-06 18:00:51 +00001400llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001401 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001402 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1403 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1404
1405 if (!Ty->getPointeeType()->isFunctionType()) {
1406 // We have a data member pointer type.
1407 return PointerDiffDITy;
1408 }
1409
1410 // We have a member function pointer type. Treat it as a struct with two
1411 // ptrdiff_t members.
1412 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1413
1414 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001415 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001416
1417 // FIXME: This should probably be a function type instead.
1418 ElementTypes[0] =
Devang Patel1d323e02011-06-24 22:00:59 +00001419 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001420 Info.first, Info.second, FieldOffset, 0,
1421 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001422 FieldOffset += Info.first;
1423
1424 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001425 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001426 Info.first, Info.second, FieldOffset, 0,
1427 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001428
Jay Foadc556ef22011-04-24 10:11:03 +00001429 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001430
Chris Lattner5f9e2722011-07-23 10:55:15 +00001431 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001432 U, 0, FieldOffset,
1433 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001434}
1435
Eli Friedmanb001de72011-10-06 23:00:33 +00001436llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1437 llvm::DIFile U) {
1438 // Ignore the atomic wrapping
1439 // FIXME: What is the correct representation?
1440 return getOrCreateType(Ty->getValueType(), U);
1441}
1442
Devang Patel6237cea2010-08-23 22:07:25 +00001443/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001444llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1445 llvm::DIFile Unit = getOrCreateFile(ED->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001446 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001447
1448 // Create DIEnumerator elements for each enumerator.
1449 for (EnumDecl::enumerator_iterator
1450 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1451 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001452 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001453 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001454 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001455 }
1456
1457 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001458 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001459
1460 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1461 unsigned Line = getLineNumber(ED->getLocation());
1462 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001463 uint64_t Align = 0;
1464 if (!ED->getTypeForDecl()->isIncompleteType()) {
1465 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1466 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1467 }
Devang Patel4bc48872010-10-27 23:23:58 +00001468 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001469 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Devang Patel6237cea2010-08-23 22:07:25 +00001470 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001471 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001472 Size, Align, EltArray);
Devang Patel6237cea2010-08-23 22:07:25 +00001473 return DbgTy;
1474}
1475
Douglas Gregor840943d2009-12-21 20:18:30 +00001476static QualType UnwrapTypeForDebugInfo(QualType T) {
1477 do {
1478 QualType LastT = T;
1479 switch (T->getTypeClass()) {
1480 default:
1481 return T;
1482 case Type::TemplateSpecialization:
1483 T = cast<TemplateSpecializationType>(T)->desugar();
1484 break;
John McCallf4c73712011-01-19 06:33:43 +00001485 case Type::TypeOfExpr:
1486 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001487 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001488 case Type::TypeOf:
1489 T = cast<TypeOfType>(T)->getUnderlyingType();
1490 break;
1491 case Type::Decltype:
1492 T = cast<DecltypeType>(T)->getUnderlyingType();
1493 break;
Sean Huntca63c202011-05-24 22:41:36 +00001494 case Type::UnaryTransform:
1495 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1496 break;
John McCall9d156a72011-01-06 01:58:22 +00001497 case Type::Attributed:
1498 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001499 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001500 case Type::Elaborated:
1501 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001502 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001503 case Type::Paren:
1504 T = cast<ParenType>(T)->getInnerType();
1505 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001506 case Type::SubstTemplateTypeParm:
1507 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1508 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001509 case Type::Auto:
1510 T = cast<AutoType>(T)->getDeducedType();
1511 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001512 }
1513
1514 assert(T != LastT && "Type unwrapping failed to unwrap!");
1515 if (T == LastT)
1516 return T;
1517 } while (true);
1518
1519 return T;
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001520}
1521
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001522/// getOrCreateType - Get the type from the cache or create a new
1523/// one if necessary.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001524llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001525 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001526 if (Ty.isNull())
1527 return llvm::DIType();
Mike Stump1eb44332009-09-09 15:08:12 +00001528
Douglas Gregor840943d2009-12-21 20:18:30 +00001529 // Unwrap the type as needed for debug information.
1530 Ty = UnwrapTypeForDebugInfo(Ty);
Devang Patele80d5672011-03-23 16:29:39 +00001531
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001532 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001533 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001534 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001535 if (it != TypeCache.end()) {
1536 // Verify that the debug info still exists.
1537 if (&*it->second)
1538 return llvm::DIType(cast<llvm::MDNode>(it->second));
1539 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001540
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001541 // Otherwise create the type.
1542 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001543
1544 // And update the type cache.
Devang Patelab699792010-05-07 18:12:35 +00001545 TypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001546 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001547}
1548
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001549/// CreateTypeNode - Create a new debug type node.
Daniel Dunbar03faac32009-09-19 19:27:14 +00001550llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001551 llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001552 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001553 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001554 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001555
Douglas Gregor2101a822009-12-21 19:57:21 +00001556 const char *Diag = 0;
1557
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001558 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001559 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001560#define TYPE(Class, Base)
1561#define ABSTRACT_TYPE(Class, Base)
1562#define NON_CANONICAL_TYPE(Class, Base)
1563#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1564#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001565 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001566
Anders Carlssonbfe69952009-11-06 18:24:04 +00001567 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001568 case Type::Vector:
1569 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001570 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001571 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001572 case Type::ObjCObject:
1573 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001574 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001575 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Devang Patelf1d1d9a2010-11-01 16:52:40 +00001576 case Type::Builtin: return CreateType(cast<BuiltinType>(Ty));
Devang Patel344ff5d2010-12-09 00:25:29 +00001577 case Type::Complex: return CreateType(cast<ComplexType>(Ty));
Daniel Dunbar03faac32009-09-19 19:27:14 +00001578 case Type::Pointer: return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001579 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001580 return CreateType(cast<BlockPointerType>(Ty), Unit);
1581 case Type::Typedef: return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001582 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00001583 case Type::Enum:
Devang Patel31f7d022011-01-17 22:23:07 +00001584 return CreateType(cast<TagType>(Ty));
Chris Lattner9c85ba32008-11-10 06:08:34 +00001585 case Type::FunctionProto:
1586 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001587 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001588 case Type::ConstantArray:
1589 case Type::VariableArray:
1590 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001591 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001592
1593 case Type::LValueReference:
1594 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001595 case Type::RValueReference:
1596 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001597
Anders Carlsson20f12a22009-12-06 18:00:51 +00001598 case Type::MemberPointer:
1599 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001600
Eli Friedmanb001de72011-10-06 23:00:33 +00001601 case Type::Atomic:
1602 return CreateType(cast<AtomicType>(Ty), Unit);
1603
John McCall9d156a72011-01-06 01:58:22 +00001604 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001605 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001606 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001607 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001608 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001609 case Type::TypeOfExpr:
1610 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001611 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001612 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001613 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001614 llvm_unreachable("type should have been unwrapped!");
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001615 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001616 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001617
1618 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001619 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001620 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001621 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001622 << Diag;
1623 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001624}
1625
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001626/// CreateMemberType - Create new member and increase Offset by FType's size.
1627llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001628 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001629 uint64_t *Offset) {
1630 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1631 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1632 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001633 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001634 FieldSize, FieldAlign,
1635 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001636 *Offset += FieldSize;
1637 return Ty;
1638}
1639
Devang Patel120bf322011-04-23 00:08:01 +00001640/// getFunctionDeclaration - Return debug info descriptor to describe method
1641/// declaration for the given method definition.
1642llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1643 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1644 if (!FD) return llvm::DISubprogram();
1645
1646 // Setup context.
1647 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1648
Devang Patel22a5cdf2011-04-29 23:42:32 +00001649 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1650 MI = SPCache.find(FD);
1651 if (MI != SPCache.end()) {
1652 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1653 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1654 return SP;
1655 }
1656
Devang Patel120bf322011-04-23 00:08:01 +00001657 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1658 E = FD->redecls_end(); I != E; ++I) {
1659 const FunctionDecl *NextFD = *I;
1660 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1661 MI = SPCache.find(NextFD);
1662 if (MI != SPCache.end()) {
1663 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1664 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1665 return SP;
1666 }
1667 }
1668 return llvm::DISubprogram();
1669}
1670
Devang Patel1c296522011-05-31 20:46:46 +00001671// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1672// implicit parameter "this".
Eric Christopherab5278e2011-10-11 23:00:51 +00001673llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D,
1674 QualType FnType,
Devang Patel1c296522011-05-31 20:46:46 +00001675 llvm::DIFile F) {
1676 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1677 return getOrCreateMethodType(Method, F);
Devang Patelc478f212011-05-31 21:18:50 +00001678 else if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00001679 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001680 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00001681
1682 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00001683 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00001684 // "self" pointer is always first argument.
1685 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
1686 // "cmd" pointer is always second argument.
1687 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Pateld127bcb2011-05-31 22:21:11 +00001688 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001689 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00001690 PE = OMethod->param_end(); PI != PE; ++PI)
1691 Elts.push_back(getOrCreateType((*PI)->getType(), F));
1692
Devang Patelc478f212011-05-31 21:18:50 +00001693 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1694 return DBuilder.createSubroutineType(F, EltTypeArray);
1695 }
Devang Patel1c296522011-05-31 20:46:46 +00001696 return getOrCreateType(FnType, F);
1697}
1698
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001699/// EmitFunctionStart - Constructs the debug code for entering a function -
1700/// "llvm.dbg.func.start.".
Devang Patel9c6c3a02010-01-14 00:36:21 +00001701void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001702 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001703 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00001704
Chris Lattner5f9e2722011-07-23 10:55:15 +00001705 StringRef Name;
1706 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001707
Eric Christopheraa2164c2011-09-29 00:00:45 +00001708 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001709
Devang Patel9c6c3a02010-01-14 00:36:21 +00001710 const Decl *D = GD.getDecl();
Devang Patel12e6d832011-04-05 20:28:21 +00001711
Devang Patel3951e712010-10-07 22:03:49 +00001712 unsigned Flags = 0;
Devang Patel0692f832010-10-11 21:58:41 +00001713 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1714 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00001715 llvm::DIArray TParamsArray;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001716 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Devang Patel4125fd22010-01-19 01:54:44 +00001717 // If there is a DISubprogram for this function available then use it.
1718 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1719 FI = SPCache.find(FD);
1720 if (FI != SPCache.end()) {
Gabor Greif38c9b172010-09-18 13:00:17 +00001721 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelab699792010-05-07 18:12:35 +00001722 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1723 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001724 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001725 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00001726 return;
1727 }
1728 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00001729 Name = getFunctionName(FD);
1730 // Use mangled name as linkage name for c/c++ functions.
Devang Patela87a2b22011-05-02 22:49:30 +00001731 if (!Fn->hasInternalLinkage())
Devang Patel2df74c02011-05-02 22:37:48 +00001732 LinkageName = CGM.getMangledName(GD);
Devang Patel58faf202010-10-22 17:11:50 +00001733 if (LinkageName == Name)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001734 LinkageName = StringRef();
Devang Patel3951e712010-10-07 22:03:49 +00001735 if (FD->hasPrototype())
1736 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel0692f832010-10-11 21:58:41 +00001737 if (const NamespaceDecl *NSDecl =
1738 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
Devang Patel170cef32010-12-09 00:33:05 +00001739 FDContext = getOrCreateNameSpace(NSDecl);
Devang Patelbc6a1912011-05-17 00:20:09 +00001740 else if (const RecordDecl *RDecl =
1741 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
1742 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00001743
1744 // Collect template parameters.
1745 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
David Chisnall70b9b442010-09-02 17:16:32 +00001746 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00001747 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00001748 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001749 } else {
Devang Patel58faf202010-10-22 17:11:50 +00001750 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00001751 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00001752 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001753 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001754 if (!Name.empty() && Name[0] == '\01')
1755 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001756
Devang Patel970c6182010-04-24 00:49:16 +00001757 // It is expected that CurLoc is set before using EmitFunctionStart.
1758 // Usually, CurLoc points to the left bracket location of compound
1759 // statement representing function body.
Devang Patel8ab870d2010-05-12 23:46:38 +00001760 unsigned LineNo = getLineNumber(CurLoc);
Devang Patele2472482010-09-29 21:05:52 +00001761 if (D->isImplicit())
1762 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel120bf322011-04-23 00:08:01 +00001763 llvm::DISubprogram SPDecl = getFunctionDeclaration(D);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001764 llvm::DISubprogram SP =
Devang Patel16674e82011-02-22 18:56:36 +00001765 DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
Devang Patel1c296522011-05-31 20:46:46 +00001766 LineNo, getOrCreateFunctionType(D, FnType, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001767 Fn->hasInternalLinkage(), true/*definition*/,
Devang Patel5ecb1df2011-04-05 22:54:11 +00001768 Flags, CGM.getLangOptions().Optimize, Fn,
Devang Patel120bf322011-04-23 00:08:01 +00001769 TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001770
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001771 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00001772 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001773 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001774 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001775
1776 // Clear stack used to keep track of #line directives.
1777 LineDirectiveFiles.clear();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001778}
1779
Eric Christopher69a1b742011-09-29 00:00:37 +00001780// UpdateLineDirectiveRegion - Update region stack only if #line directive
1781// has introduced scope change.
1782void CGDebugInfo::UpdateLineDirectiveRegion(CGBuilderTy &Builder) {
1783 if (CurLoc.isInvalid() || CurLoc.isMacroID() ||
1784 PrevLoc.isInvalid() || PrevLoc.isMacroID())
1785 return;
1786 SourceManager &SM = CGM.getContext().getSourceManager();
1787 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
1788 PresumedLoc PPLoc = SM.getPresumedLoc(PrevLoc);
1789
1790 if (PCLoc.isInvalid() || PPLoc.isInvalid() ||
1791 !strcmp(PPLoc.getFilename(), PCLoc.getFilename()))
1792 return;
1793
1794 // If #line directive stack is empty then we are entering a new scope.
1795 if (LineDirectiveFiles.empty()) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001796 EmitLexicalBlockStart(Builder);
Eric Christopher69a1b742011-09-29 00:00:37 +00001797 LineDirectiveFiles.push_back(PCLoc.getFilename());
1798 return;
1799 }
1800
Eric Christopheraa2164c2011-09-29 00:00:45 +00001801 assert (LexicalBlockStack.size() >= LineDirectiveFiles.size()
Eric Christopherab5278e2011-10-11 23:00:51 +00001802 && "error handling #line regions!");
Eric Christopher69a1b742011-09-29 00:00:37 +00001803
1804 bool SeenThisFile = false;
1805 // Chek if current file is already seen earlier.
1806 for(std::vector<const char *>::iterator I = LineDirectiveFiles.begin(),
Eric Christopherab5278e2011-10-11 23:00:51 +00001807 E = LineDirectiveFiles.end(); I != E; ++I)
Eric Christopher69a1b742011-09-29 00:00:37 +00001808 if (!strcmp(PCLoc.getFilename(), *I)) {
1809 SeenThisFile = true;
1810 break;
1811 }
1812
1813 // If #line for this file is seen earlier then pop out #line regions.
1814 if (SeenThisFile) {
1815 while (!LineDirectiveFiles.empty()) {
1816 const char *LastFile = LineDirectiveFiles.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00001817 LexicalBlockStack.pop_back();
Eric Christopher69a1b742011-09-29 00:00:37 +00001818 LineDirectiveFiles.pop_back();
1819 if (!strcmp(PPLoc.getFilename(), LastFile))
Eric Christopherab5278e2011-10-11 23:00:51 +00001820 break;
Eric Christopher69a1b742011-09-29 00:00:37 +00001821 }
1822 return;
1823 }
1824
1825 // .. otherwise insert new #line region.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001826 EmitLexicalBlockStart(Builder);
Eric Christopher69a1b742011-09-29 00:00:37 +00001827 LineDirectiveFiles.push_back(PCLoc.getFilename());
1828
1829 return;
1830}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001831
Eric Christopher5321bc42011-09-29 00:00:41 +00001832/// EmitLocation - Emit metadata to indicate a change in line/column
1833/// information in the source file.
1834void CGDebugInfo::EmitLocation(CGBuilderTy &Builder) {
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001835 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001836
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001837 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001838 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patelcb2a07e2011-07-19 00:52:18 +00001839 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00001840 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00001841 // New Builder may not be in sync with CGDebugInfo.
1842 if (!Builder.getCurrentDebugLocation().isUnknown())
1843 return;
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001844
Eric Christopher414ee4b2011-09-29 00:00:35 +00001845 // The file may have had a line directive change. Process any of
1846 // those before updating the state.
1847 UpdateLineDirectiveRegion(Builder);
1848
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001849 // Update last state.
1850 PrevLoc = CurLoc;
1851
Eric Christopheraa2164c2011-09-29 00:00:45 +00001852 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00001853 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
1854 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00001855 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001856}
1857
Eric Christopheraa2164c2011-09-29 00:00:45 +00001858/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00001859/// region - beginning of a DW_TAG_lexical_block.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001860void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder) {
Devang Patel8fae0602009-11-13 19:10:24 +00001861 llvm::DIDescriptor D =
Eric Christopheraa2164c2011-09-29 00:00:45 +00001862 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
Devang Patel823d8e92010-12-08 22:42:58 +00001863 llvm::DIDescriptor() :
Eric Christopheraa2164c2011-09-29 00:00:45 +00001864 llvm::DIDescriptor(LexicalBlockStack.back()),
Devang Patel823d8e92010-12-08 22:42:58 +00001865 getOrCreateFile(CurLoc),
1866 getLineNumber(CurLoc),
1867 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00001868 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001869 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001870}
1871
Eric Christopheraa2164c2011-09-29 00:00:45 +00001872/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00001873/// region - end of a DW_TAG_lexical_block.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001874void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder) {
1875 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00001876
Eric Christopher43202ae2011-09-26 15:03:22 +00001877 // Provide a region stop point.
Eric Christopher5321bc42011-09-29 00:00:41 +00001878 EmitLocation(Builder);
Mike Stump1eb44332009-09-09 15:08:12 +00001879
Eric Christopheraa2164c2011-09-29 00:00:45 +00001880 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001881}
1882
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001883/// EmitFunctionEnd - Constructs the debug code for exiting a function.
1884void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001885 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001886 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00001887 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001888
1889 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001890 while (LexicalBlockStack.size() != RCount)
1891 EmitLexicalBlockEnd(Builder);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001892 FnBeginRegionCount.pop_back();
1893}
1894
Devang Patel809b9bb2010-02-10 18:49:08 +00001895// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
1896// See BuildByRefType.
1897llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
1898 uint64_t *XOffset) {
1899
Chris Lattner5f9e2722011-07-23 10:55:15 +00001900 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00001901 QualType FType;
1902 uint64_t FieldSize, FieldOffset;
1903 unsigned FieldAlign;
1904
Devang Patel17800552010-03-09 00:44:50 +00001905 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001906 QualType Type = VD->getType();
1907
1908 FieldOffset = 0;
1909 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001910 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
1911 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001912 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001913 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
1914 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
1915
John McCall6b5a61b2011-02-07 10:33:21 +00001916 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00001917 if (HasCopyAndDispose) {
1918 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001919 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
1920 &FieldOffset));
1921 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
1922 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001923 }
1924
1925 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00001926 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001927 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00001928 CharUnits FieldOffsetInBytes
1929 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
1930 CharUnits AlignedOffsetInBytes
1931 = FieldOffsetInBytes.RoundUpToAlignment(Align);
1932 CharUnits NumPaddingBytes
1933 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00001934
Ken Dyck573be632011-04-22 17:34:18 +00001935 if (NumPaddingBytes.isPositive()) {
1936 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00001937 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
1938 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001939 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001940 }
1941 }
1942
1943 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001944 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00001945 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00001946 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00001947
1948 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00001949 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001950 0, FieldSize, FieldAlign,
1951 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00001952 EltTys.push_back(FieldTy);
1953 FieldOffset += FieldSize;
1954
Jay Foadc556ef22011-04-24 10:11:03 +00001955 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00001956
Devang Patele2472482010-09-29 21:05:52 +00001957 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00001958
Devang Patel16674e82011-02-22 18:56:36 +00001959 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001960 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00001961}
Devang Patel823d8e92010-12-08 22:42:58 +00001962
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00001963/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00001964void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00001965 llvm::Value *Storage,
1966 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001967 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00001968
Devang Patel17800552010-03-09 00:44:50 +00001969 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001970 llvm::DIType Ty;
1971 uint64_t XOffset = 0;
1972 if (VD->hasAttr<BlocksAttr>())
1973 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
1974 else
1975 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00001976
Devang Patelf4e54a22010-05-07 23:05:55 +00001977 // If there is not any debug info for type then do not emit debug info
1978 // for this variable.
1979 if (!Ty)
1980 return;
1981
Devang Patel34753802011-02-16 01:11:51 +00001982 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
1983 // If Storage is an aggregate returned as 'sret' then let debugger know
1984 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00001985 if (Arg->hasStructRetAttr())
Devang Patel16674e82011-02-22 18:56:36 +00001986 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00001987 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
1988 // If an aggregate variable has non trivial destructor or non trivial copy
1989 // constructor than it is pass indirectly. Let debug info know about this
1990 // by using reference of the aggregate type as a argument type.
Eric Christopherab5278e2011-10-11 23:00:51 +00001991 if (!Record->hasTrivialCopyConstructor() ||
1992 !Record->hasTrivialDestructor())
Devang Patel16674e82011-02-22 18:56:36 +00001993 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00001994 }
1995 }
Devang Patel0691f932011-02-10 00:40:52 +00001996
Chris Lattner9c85ba32008-11-10 06:08:34 +00001997 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00001998 unsigned Line = getLineNumber(VD->getLocation());
1999 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00002000 unsigned Flags = 0;
2001 if (VD->isImplicit())
2002 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002003 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00002004
Chris Lattner5f9e2722011-07-23 10:55:15 +00002005 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002006 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002007 if (VD->hasAttr<BlocksAttr>()) {
2008 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002009 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002010 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002011 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002012 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002013 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002014 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002015 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002016 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2017 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002018 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002019 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002020 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2021
2022 // Create the descriptor for the variable.
2023 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002024 DBuilder.createComplexVariable(Tag,
Eric Christopherab5278e2011-10-11 23:00:51 +00002025 llvm::DIDescriptor(Scope),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002026 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002027 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002028
2029 // Insert an llvm.dbg.declare into the current block.
2030 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002031 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002032
2033 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2034 return;
2035 }
2036 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002037 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002038 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002039 Name, Unit, Line, Ty,
Devang Patel093ac462011-03-03 20:13:15 +00002040 CGM.getLangOptions().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002041
2042 // Insert an llvm.dbg.declare into the current block.
2043 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002044 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002045
2046 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002047 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002048 }
2049
2050 // If VD is an anonymous union then Storage represents value for
2051 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002052 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2053 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2054 if (RD->isUnion()) {
2055 for (RecordDecl::field_iterator I = RD->field_begin(),
2056 E = RD->field_end();
2057 I != E; ++I) {
2058 FieldDecl *Field = *I;
2059 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002060 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002061
John McCall8178df32011-02-22 22:38:33 +00002062 // Ignore unnamed fields. Do not ignore unnamed records.
2063 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2064 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002065
John McCall8178df32011-02-22 22:38:33 +00002066 // Use VarDecl's Tag, Scope and Line number.
2067 llvm::DIVariable D =
2068 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2069 FieldName, Unit, Line, FieldTy,
Devang Patel093ac462011-03-03 20:13:15 +00002070 CGM.getLangOptions().Optimize, Flags,
2071 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002072
John McCall8178df32011-02-22 22:38:33 +00002073 // Insert an llvm.dbg.declare into the current block.
2074 llvm::Instruction *Call =
2075 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002076
John McCall8178df32011-02-22 22:38:33 +00002077 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002078 }
John McCall8178df32011-02-22 22:38:33 +00002079 }
2080 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002081}
2082
Devang Patele2d01912011-04-25 23:43:36 +00002083void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2084 llvm::Value *Storage,
2085 CGBuilderTy &Builder) {
2086 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2087}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002088
Devang Patele2d01912011-04-25 23:43:36 +00002089void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2090 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2091 const CGBlockInfo &blockInfo) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002092 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002093
Devang Patel2b594b92010-04-26 23:28:46 +00002094 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002095 return;
Devang Patele2d01912011-04-25 23:43:36 +00002096
John McCall6b5a61b2011-02-07 10:33:21 +00002097 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002098
Mike Stumpb1a6e682009-09-30 02:43:10 +00002099 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002100 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002101 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002102 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002103 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2104 else
2105 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002106
2107 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002108 unsigned Line = getLineNumber(VD->getLocation());
2109 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002110
John McCall6b5a61b2011-02-07 10:33:21 +00002111 const llvm::TargetData &target = CGM.getTargetData();
2112
2113 CharUnits offset = CharUnits::fromQuantity(
2114 target.getStructLayout(blockInfo.StructureType)
2115 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2116
Chris Lattner5f9e2722011-07-23 10:55:15 +00002117 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002118 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002119 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002120 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002121 if (isByRef) {
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002122 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2123 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002124 // offset of __forwarding field
Eric Christopherab5278e2011-10-11 23:00:51 +00002125 offset = CGM.getContext()
2126 .toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattner14b1a362010-01-25 03:29:35 +00002127 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002128 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2129 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002130 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002131 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002132 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002133 }
2134
2135 // Create the descriptor for the variable.
2136 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002137 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002138 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002139 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002140 // Insert an llvm.dbg.declare into the current block.
Devang Patelebf16e82009-11-11 19:10:19 +00002141 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002142 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Chris Lattnerd5b89022009-12-28 21:44:41 +00002143
Eric Christopheraa2164c2011-09-29 00:00:45 +00002144 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelf8e10a52010-05-10 23:48:38 +00002145 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002146}
2147
Chris Lattner9c85ba32008-11-10 06:08:34 +00002148/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2149/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002150void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002151 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002152 CGBuilderTy &Builder) {
Devang Patel093ac462011-03-03 20:13:15 +00002153 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002154}
2155
John McCall8178df32011-02-22 22:38:33 +00002156namespace {
2157 struct BlockLayoutChunk {
2158 uint64_t OffsetInBits;
2159 const BlockDecl::Capture *Capture;
2160 };
2161 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2162 return l.OffsetInBits < r.OffsetInBits;
2163 }
2164}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002165
John McCall8178df32011-02-22 22:38:33 +00002166void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2167 llvm::Value *addr,
2168 CGBuilderTy &Builder) {
2169 ASTContext &C = CGM.getContext();
2170 const BlockDecl *blockDecl = block.getBlockDecl();
2171
2172 // Collect some general information about the block's location.
2173 SourceLocation loc = blockDecl->getCaretLocation();
2174 llvm::DIFile tunit = getOrCreateFile(loc);
2175 unsigned line = getLineNumber(loc);
2176 unsigned column = getColumnNumber(loc);
2177
2178 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002179 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002180
2181 const llvm::StructLayout *blockLayout =
2182 CGM.getTargetData().getStructLayout(block.StructureType);
2183
Chris Lattner5f9e2722011-07-23 10:55:15 +00002184 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002185 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2186 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002187 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002188 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2189 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002190 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002191 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2192 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002193 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002194 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2195 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002196 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002197 fields.push_back(createFieldType("__descriptor",
2198 C.getPointerType(block.NeedsCopyDispose ?
2199 C.getBlockDescriptorExtendedType() :
2200 C.getBlockDescriptorType()),
2201 0, loc, AS_public,
2202 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002203 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002204
2205 // We want to sort the captures by offset, not because DWARF
2206 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002207 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002208
2209 // 'this' capture.
2210 if (blockDecl->capturesCXXThis()) {
2211 BlockLayoutChunk chunk;
2212 chunk.OffsetInBits =
2213 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2214 chunk.Capture = 0;
2215 chunks.push_back(chunk);
2216 }
2217
2218 // Variable captures.
2219 for (BlockDecl::capture_const_iterator
2220 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2221 i != e; ++i) {
2222 const BlockDecl::Capture &capture = *i;
2223 const VarDecl *variable = capture.getVariable();
2224 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2225
2226 // Ignore constant captures.
2227 if (captureInfo.isConstant())
2228 continue;
2229
2230 BlockLayoutChunk chunk;
2231 chunk.OffsetInBits =
2232 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2233 chunk.Capture = &capture;
2234 chunks.push_back(chunk);
2235 }
2236
2237 // Sort by offset.
2238 llvm::array_pod_sort(chunks.begin(), chunks.end());
2239
Chris Lattner5f9e2722011-07-23 10:55:15 +00002240 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002241 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2242 uint64_t offsetInBits = i->OffsetInBits;
2243 const BlockDecl::Capture *capture = i->Capture;
2244
2245 // If we have a null capture, this must be the C++ 'this' capture.
2246 if (!capture) {
2247 const CXXMethodDecl *method =
2248 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2249 QualType type = method->getThisType(C);
2250
2251 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002252 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002253 continue;
2254 }
2255
2256 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002257 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002258
2259 llvm::DIType fieldType;
2260 if (capture->isByRef()) {
2261 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2262
2263 // FIXME: this creates a second copy of this type!
2264 uint64_t xoffset;
2265 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2266 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002267 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002268 ptrInfo.first, ptrInfo.second,
2269 offsetInBits, 0, fieldType);
2270 } else {
2271 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002272 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002273 }
2274 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002275 }
2276
2277 llvm::SmallString<36> typeName;
2278 llvm::raw_svector_ostream(typeName)
2279 << "__block_literal_" << CGM.getUniqueBlockCount();
2280
Jay Foadc556ef22011-04-24 10:11:03 +00002281 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002282
2283 llvm::DIType type =
2284 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2285 CGM.getContext().toBits(block.BlockSize),
2286 CGM.getContext().toBits(block.BlockAlign),
2287 0, fieldsArray);
2288 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2289
2290 // Get overall information about the block.
2291 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002292 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002293 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002294
2295 // Create the descriptor for the parameter.
2296 llvm::DIVariable debugVar =
2297 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2298 llvm::DIDescriptor(scope),
2299 name, tunit, line, type,
Devang Patel093ac462011-03-03 20:13:15 +00002300 CGM.getLangOptions().Optimize, flags,
2301 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002302
2303 // Insert an llvm.dbg.value into the current block.
2304 llvm::Instruction *declare =
2305 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2306 Builder.GetInsertBlock());
2307 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2308}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002309
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002310/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002311void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002312 const VarDecl *D) {
2313
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002314 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002315 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002316 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002317
Devang Pateleb6d79b2010-02-01 21:34:11 +00002318 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002319 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002320
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002321 // CodeGen turns int[] into int[1] so we'll do the same here.
2322 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002323
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002324 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002325 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002326
Anders Carlsson20f12a22009-12-06 18:00:51 +00002327 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002328 ArrayType::Normal, 0);
2329 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002330 StringRef DeclName = D->getName();
2331 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002332 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2333 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002334 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002335 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002336 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002337 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002338 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002339 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002340 Unit, LineNo, getOrCreateType(T, Unit),
2341 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002342}
2343
Devang Patel9ca36b62009-02-26 21:10:26 +00002344/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002345void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002346 ObjCInterfaceDecl *ID) {
Devang Patel9ca36b62009-02-26 21:10:26 +00002347 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002348 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002349 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002350
Chris Lattner5f9e2722011-07-23 10:55:15 +00002351 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002352
Devang Pateld6c5a262010-02-01 21:52:22 +00002353 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002354 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002355
Devang Patel9ca36b62009-02-26 21:10:26 +00002356 // CodeGen turns int[] into int[1] so we'll do the same here.
2357 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002358
Devang Patel9ca36b62009-02-26 21:10:26 +00002359 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002360 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002361
Anders Carlsson20f12a22009-12-06 18:00:51 +00002362 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002363 ArrayType::Normal, 0);
2364 }
2365
Devang Patel16674e82011-02-22 18:56:36 +00002366 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002367 getOrCreateType(T, Unit),
2368 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002369}
Devang Patelabb485f2010-02-01 19:16:32 +00002370
Devang Patel25c2c8f2010-08-10 17:53:33 +00002371/// EmitGlobalVariable - Emit global variable's debug info.
2372void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002373 llvm::Constant *Init) {
Devang Patel8d308382010-08-10 07:24:25 +00002374 // Create the descriptor for the variable.
2375 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002376 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002377 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002378 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
2379 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
Devang Patel31f7d022011-01-17 22:23:07 +00002380 Ty = CreateEnumType(ED);
Devang Patel6237cea2010-08-23 22:07:25 +00002381 }
Devang Patel0317ab02010-08-10 18:27:15 +00002382 // Do not use DIGlobalVariable for enums.
2383 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2384 return;
Devang Patel16674e82011-02-22 18:56:36 +00002385 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002386 getLineNumber(VD->getLocation()),
2387 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002388}
2389
Devang Patelabb485f2010-02-01 19:16:32 +00002390/// getOrCreateNamesSpace - Return namespace descriptor for the given
2391/// namespace decl.
2392llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002393CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002394 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2395 NameSpaceCache.find(NSDecl);
2396 if (I != NameSpaceCache.end())
2397 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2398
Devang Patel8ab870d2010-05-12 23:46:38 +00002399 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002400 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002401 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002402 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002403 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002404 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002405 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002406 return NS;
2407}
Devang Patele80d5672011-03-23 16:29:39 +00002408
2409/// UpdateCompletedType - Update type cache because the type is now
2410/// translated.
2411void CGDebugInfo::UpdateCompletedType(const TagDecl *TD) {
2412 QualType Ty = CGM.getContext().getTagDeclType(TD);
2413
2414 // If the type exist in type cache then remove it from the cache.
2415 // There is no need to prepare debug info for the completed type
2416 // right now. It will be generated on demand lazily.
2417 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2418 TypeCache.find(Ty.getAsOpaquePtr());
2419 if (it != TypeCache.end())
2420 TypeCache.erase(it);
2421}