blob: 7bd6fc2fb009dbb62bd1fe3b1da36cc94d8fa8d6 [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 Christopheraa2164c2011-09-29 00:00:45 +000049 assert(LexicalBlockStack.empty() && "Region stack mismatch, stack not empty!");
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000050}
51
Chris Lattner9c85ba32008-11-10 06:08:34 +000052void CGDebugInfo::setLocation(SourceLocation Loc) {
53 if (Loc.isValid())
Chandler Carruth40278532011-07-25 16:49:02 +000054 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000055}
56
Devang Patel33583052010-01-28 23:15:27 +000057/// getContextDescriptor - Get context info for the decl.
Devang Patel170cef32010-12-09 00:33:05 +000058llvm::DIDescriptor CGDebugInfo::getContextDescriptor(const Decl *Context) {
Devang Pateleb6d79b2010-02-01 21:34:11 +000059 if (!Context)
Devang Patel170cef32010-12-09 00:33:05 +000060 return TheCU;
Devang Pateleb6d79b2010-02-01 21:34:11 +000061
62 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
63 I = RegionMap.find(Context);
64 if (I != RegionMap.end())
Gabor Greif38c9b172010-09-18 13:00:17 +000065 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
Devang Patel411894b2010-02-01 22:40:08 +000066
Devang Pateleb6d79b2010-02-01 21:34:11 +000067 // Check namespace.
68 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
Devang Patel170cef32010-12-09 00:33:05 +000069 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
Devang Patel8b90a782010-05-13 23:52:37 +000070
71 if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context)) {
72 if (!RDecl->isDependentType()) {
Devang Patela2e57692010-10-28 17:27:32 +000073 llvm::DIType Ty = getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
Devang Patel170cef32010-12-09 00:33:05 +000074 getOrCreateMainFile());
Devang Patel8b90a782010-05-13 23:52:37 +000075 return llvm::DIDescriptor(Ty);
76 }
77 }
Devang Patel170cef32010-12-09 00:33:05 +000078 return TheCU;
Devang Patel979ec2e2009-10-06 00:35:31 +000079}
80
Devang Patel9c6c3a02010-01-14 00:36:21 +000081/// getFunctionName - Get function name for the given FunctionDecl. If the
82/// name is constructred on demand (e.g. C++ destructor) then the name
83/// is stored on the side.
Chris Lattner5f9e2722011-07-23 10:55:15 +000084StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
Devang Patel9c6c3a02010-01-14 00:36:21 +000085 assert (FD && "Invalid FunctionDecl!");
86 IdentifierInfo *FII = FD->getIdentifier();
87 if (FII)
88 return FII->getName();
89
90 // Otherwise construct human readable name for debug info.
91 std::string NS = FD->getNameAsString();
92
93 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +000094 char *StrPtr = DebugInfoNames.Allocate<char>(NS.length());
Benjamin Kramer1b627dc2010-01-23 18:16:07 +000095 memcpy(StrPtr, NS.data(), NS.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +000096 return StringRef(StrPtr, NS.length());
Devang Patel9c6c3a02010-01-14 00:36:21 +000097}
98
Chris Lattner5f9e2722011-07-23 10:55:15 +000099StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
David Chisnall52044a22010-09-02 18:01:51 +0000100 llvm::SmallString<256> MethodName;
101 llvm::raw_svector_ostream OS(MethodName);
102 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
103 const DeclContext *DC = OMD->getDeclContext();
Devang Patela2e57692010-10-28 17:27:32 +0000104 if (const ObjCImplementationDecl *OID =
105 dyn_cast<const ObjCImplementationDecl>(DC)) {
David Chisnall52044a22010-09-02 18:01:51 +0000106 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000107 } else if (const ObjCInterfaceDecl *OID =
108 dyn_cast<const ObjCInterfaceDecl>(DC)) {
Fariborz Jahanian1a4c9372010-10-18 17:51:06 +0000109 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000110 } else if (const ObjCCategoryImplDecl *OCD =
111 dyn_cast<const ObjCCategoryImplDecl>(DC)){
David Chisnall52044a22010-09-02 18:01:51 +0000112 OS << ((NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
113 OCD->getIdentifier()->getNameStart() << ')';
114 }
115 OS << ' ' << OMD->getSelector().getAsString() << ']';
116
117 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
118 memcpy(StrPtr, MethodName.begin(), OS.tell());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000119 return StringRef(StrPtr, OS.tell());
David Chisnall52044a22010-09-02 18:01:51 +0000120}
121
Devang Patel1f15c192011-04-18 17:30:25 +0000122/// getSelectorName - Return selector name. This is used for debugging
Devang Patel90c1eed2011-04-16 00:37:51 +0000123/// info.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000124StringRef CGDebugInfo::getSelectorName(Selector S) {
Devang Patel90c1eed2011-04-16 00:37:51 +0000125 llvm::SmallString<256> SName;
126 llvm::raw_svector_ostream OS(SName);
127 OS << S.getAsString();
128 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
129 memcpy(StrPtr, SName.begin(), OS.tell());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000130 return StringRef(StrPtr, OS.tell());
Devang Patel90c1eed2011-04-16 00:37:51 +0000131}
132
Devang Patel700a1cb2010-07-20 20:24:18 +0000133/// getClassName - Get class name including template argument list.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000134StringRef
Devang Patel700a1cb2010-07-20 20:24:18 +0000135CGDebugInfo::getClassName(RecordDecl *RD) {
136 ClassTemplateSpecializationDecl *Spec
137 = dyn_cast<ClassTemplateSpecializationDecl>(RD);
138 if (!Spec)
139 return RD->getName();
140
141 const TemplateArgument *Args;
142 unsigned NumArgs;
143 std::string Buffer;
144 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
145 const TemplateSpecializationType *TST =
146 cast<TemplateSpecializationType>(TAW->getType());
147 Args = TST->getArgs();
148 NumArgs = TST->getNumArgs();
149 } else {
150 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Douglas Gregor910f8002010-11-07 23:05:16 +0000151 Args = TemplateArgs.data();
152 NumArgs = TemplateArgs.size();
Devang Patel700a1cb2010-07-20 20:24:18 +0000153 }
154 Buffer = RD->getIdentifier()->getNameStart();
155 PrintingPolicy Policy(CGM.getLangOptions());
156 Buffer += TemplateSpecializationType::PrintTemplateArgumentList(Args,
157 NumArgs,
158 Policy);
159
160 // Copy this name on the side and use its reference.
161 char *StrPtr = DebugInfoNames.Allocate<char>(Buffer.length());
162 memcpy(StrPtr, Buffer.data(), Buffer.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000163 return StringRef(StrPtr, Buffer.length());
Devang Patel700a1cb2010-07-20 20:24:18 +0000164}
165
Devang Patel17800552010-03-09 00:44:50 +0000166/// getOrCreateFile - Get the file debug info descriptor for the input location.
167llvm::DIFile CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
Devang Patel823d8e92010-12-08 22:42:58 +0000168 if (!Loc.isValid())
169 // If Location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000170 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel823d8e92010-12-08 22:42:58 +0000171
Anders Carlsson20f12a22009-12-06 18:00:51 +0000172 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patel17800552010-03-09 00:44:50 +0000173 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Ted Kremenek9c250392010-03-30 00:27:51 +0000174
Chris Lattner5f9e2722011-07-23 10:55:15 +0000175 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
Douglas Gregor8c457a82010-11-11 20:45:16 +0000176 // If the location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000177 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Douglas Gregor8c457a82010-11-11 20:45:16 +0000178
Ted Kremenek9c250392010-03-30 00:27:51 +0000179 // Cache the results.
180 const char *fname = PLoc.getFilename();
181 llvm::DenseMap<const char *, llvm::WeakVH>::iterator it =
182 DIFileCache.find(fname);
183
184 if (it != DIFileCache.end()) {
185 // Verify that the information still exists.
186 if (&*it->second)
187 return llvm::DIFile(cast<llvm::MDNode>(it->second));
188 }
189
Devang Patel16674e82011-02-22 18:56:36 +0000190 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
Ted Kremenek9c250392010-03-30 00:27:51 +0000191
Devang Patelab699792010-05-07 18:12:35 +0000192 DIFileCache[fname] = F;
Ted Kremenek9c250392010-03-30 00:27:51 +0000193 return F;
194
Devang Patel17800552010-03-09 00:44:50 +0000195}
Devang Patel8ab870d2010-05-12 23:46:38 +0000196
Devang Patel532105f2010-10-28 22:03:20 +0000197/// getOrCreateMainFile - Get the file info for main compile unit.
198llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
Devang Patel16674e82011-02-22 18:56:36 +0000199 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel532105f2010-10-28 22:03:20 +0000200}
201
Devang Patel8ab870d2010-05-12 23:46:38 +0000202/// getLineNumber - Get line number for the location. If location is invalid
203/// then use current location.
204unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
205 assert (CurLoc.isValid() && "Invalid current location!");
206 SourceManager &SM = CGM.getContext().getSourceManager();
207 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000208 return PLoc.isValid()? PLoc.getLine() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000209}
210
211/// getColumnNumber - Get column number for the location. If location is
212/// invalid then use current location.
213unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
214 assert (CurLoc.isValid() && "Invalid current location!");
215 SourceManager &SM = CGM.getContext().getSourceManager();
216 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000217 return PLoc.isValid()? PLoc.getColumn() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000218}
219
Chris Lattner5f9e2722011-07-23 10:55:15 +0000220StringRef CGDebugInfo::getCurrentDirname() {
Devang Patelac4d13c2010-07-27 15:17:16 +0000221 if (!CWDName.empty())
222 return CWDName;
223 char *CompDirnamePtr = NULL;
224 llvm::sys::Path CWD = llvm::sys::Path::GetCurrentDirectory();
225 CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
226 memcpy(CompDirnamePtr, CWD.c_str(), CWD.size());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000227 return CWDName = StringRef(CompDirnamePtr, CWD.size());
Devang Patelac4d13c2010-07-27 15:17:16 +0000228}
229
Devang Patel17800552010-03-09 00:44:50 +0000230/// CreateCompileUnit - Create new compile unit.
231void CGDebugInfo::CreateCompileUnit() {
232
233 // Get absolute path name.
Douglas Gregorac91b4c2010-03-18 23:46:43 +0000234 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000235 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
236 if (MainFileName.empty())
Devang Patel22fe5852010-03-12 21:04:27 +0000237 MainFileName = "<unknown>";
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000238
Douglas Gregorf6728fc2010-03-22 21:28:29 +0000239 // The main file name provided via the "-main-file-name" option contains just
240 // the file name itself with no path information. This file name may have had
241 // a relative path, so we look into the actual file entry for the main
242 // file to determine the real absolute path for the file.
Devang Patel6e6bc392010-07-23 23:04:28 +0000243 std::string MainFileDir;
Devang Patelac4d13c2010-07-27 15:17:16 +0000244 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000245 MainFileDir = MainFile->getDir()->getName();
Devang Patelac4d13c2010-07-27 15:17:16 +0000246 if (MainFileDir != ".")
247 MainFileName = MainFileDir + "/" + MainFileName;
248 }
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000249
Devang Patelac4d13c2010-07-27 15:17:16 +0000250 // Save filename string.
251 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
252 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000253 StringRef Filename(FilenamePtr, MainFileName.length());
Devang Patelac4d13c2010-07-27 15:17:16 +0000254
Chris Lattner515455a2009-03-25 03:28:08 +0000255 unsigned LangTag;
Devang Patel17800552010-03-09 00:44:50 +0000256 const LangOptions &LO = CGM.getLangOptions();
Chris Lattner515455a2009-03-25 03:28:08 +0000257 if (LO.CPlusPlus) {
258 if (LO.ObjC1)
259 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
260 else
261 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
262 } else if (LO.ObjC1) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000263 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner515455a2009-03-25 03:28:08 +0000264 } else if (LO.C99) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000265 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner515455a2009-03-25 03:28:08 +0000266 } else {
267 LangTag = llvm::dwarf::DW_LANG_C89;
268 }
Devang Patel446c6192009-04-17 21:06:59 +0000269
Daniel Dunbar19f19832010-08-24 17:41:09 +0000270 std::string Producer = getClangFullVersion();
Chris Lattner4c2577a2009-05-02 01:00:04 +0000271
272 // Figure out which version of the ObjC runtime we have.
273 unsigned RuntimeVers = 0;
274 if (LO.ObjC1)
275 RuntimeVers = LO.ObjCNonFragileABI ? 2 : 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000276
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000277 // Create new compile unit.
Devang Patel16674e82011-02-22 18:56:36 +0000278 DBuilder.createCompileUnit(
Devang Patel58115002010-07-27 20:49:59 +0000279 LangTag, Filename, getCurrentDirname(),
Devang Patel823d8e92010-12-08 22:42:58 +0000280 Producer,
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000281 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel823d8e92010-12-08 22:42:58 +0000282 // FIXME - Eliminate TheCU.
283 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000284}
285
Devang Patel65e99f22009-02-25 01:36:11 +0000286/// CreateType - Get the Basic type from the cache or create a new
Chris Lattner9c85ba32008-11-10 06:08:34 +0000287/// one if necessary.
Devang Patelf1d1d9a2010-11-01 16:52:40 +0000288llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000289 unsigned Encoding = 0;
Devang Patel05127ca2010-07-28 23:23:29 +0000290 const char *BTName = NULL;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000291 switch (BT->getKind()) {
Devang Patele7566cf2011-09-12 18:50:21 +0000292 case BuiltinType::Dependent:
David Blaikieb219cfc2011-09-23 05:06:16 +0000293 llvm_unreachable("Unexpected builtin type Dependent");
Devang Patele7566cf2011-09-12 18:50:21 +0000294 case BuiltinType::Overload:
David Blaikieb219cfc2011-09-23 05:06:16 +0000295 llvm_unreachable("Unexpected builtin type Overload");
Devang Patele7566cf2011-09-12 18:50:21 +0000296 case BuiltinType::BoundMember:
David Blaikieb219cfc2011-09-23 05:06:16 +0000297 llvm_unreachable("Unexpected builtin type BoundMember");
Devang Patele7566cf2011-09-12 18:50:21 +0000298 case BuiltinType::UnknownAny:
David Blaikieb219cfc2011-09-23 05:06:16 +0000299 llvm_unreachable("Unexpected builtin type UnknownAny");
Devang Patele7566cf2011-09-12 18:50:21 +0000300 case BuiltinType::NullPtr:
Devang Patelf60dca32011-09-14 23:14:14 +0000301 return DBuilder.
302 createNullPtrType(BT->getName(CGM.getContext().getLangOptions()));
Chris Lattner9c85ba32008-11-10 06:08:34 +0000303 case BuiltinType::Void:
304 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000305 case BuiltinType::ObjCClass:
Devang Patel16674e82011-02-22 18:56:36 +0000306 return DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000307 getOrCreateMainFile(), 0, 0, 0,
308 llvm::DIDescriptor::FlagFwdDecl,
309 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000310 case BuiltinType::ObjCId: {
311 // typedef struct objc_class *Class;
312 // typedef struct objc_object {
313 // Class isa;
314 // } *id;
315
316 llvm::DIType OCTy =
Devang Patel16674e82011-02-22 18:56:36 +0000317 DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000318 getOrCreateMainFile(), 0, 0, 0,
319 llvm::DIDescriptor::FlagFwdDecl,
320 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000321 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
322
Devang Patel16674e82011-02-22 18:56:36 +0000323 llvm::DIType ISATy = DBuilder.createPointerType(OCTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000324
Chris Lattner5f9e2722011-07-23 10:55:15 +0000325 SmallVector<llvm::Value *, 16> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000326 llvm::DIType FieldTy =
Devang Patel1d323e02011-06-24 22:00:59 +0000327 DBuilder.createMemberType(getOrCreateMainFile(), "isa",
328 getOrCreateMainFile(), 0, Size,
329 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000330 EltTys.push_back(FieldTy);
Jay Foadc556ef22011-04-24 10:11:03 +0000331 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patelc8972c62010-07-28 01:33:15 +0000332
Devang Patel16674e82011-02-22 18:56:36 +0000333 return DBuilder.createStructType(TheCU, "objc_object",
Devang Patel823d8e92010-12-08 22:42:58 +0000334 getOrCreateMainFile(),
335 0, 0, 0, 0, Elements);
Devang Patelc8972c62010-07-28 01:33:15 +0000336 }
Devang Patel6e108ce2011-02-09 03:15:05 +0000337 case BuiltinType::ObjCSel: {
Devang Patel16674e82011-02-22 18:56:36 +0000338 return DBuilder.createStructType(TheCU, "objc_selector",
Devang Patel6e108ce2011-02-09 03:15:05 +0000339 getOrCreateMainFile(), 0, 0, 0,
340 llvm::DIDescriptor::FlagFwdDecl,
341 llvm::DIArray());
342 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000343 case BuiltinType::UChar:
344 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
345 case BuiltinType::Char_S:
346 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patele8ee3f22011-09-12 17:11:58 +0000347 case BuiltinType::Char16:
348 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000349 case BuiltinType::UShort:
350 case BuiltinType::UInt:
Devang Patel31c79b42011-05-05 17:06:30 +0000351 case BuiltinType::UInt128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000352 case BuiltinType::ULong:
Devang Patel68f76b12011-09-10 00:44:49 +0000353 case BuiltinType::WChar_U:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000354 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
355 case BuiltinType::Short:
356 case BuiltinType::Int:
Devang Patel31c79b42011-05-05 17:06:30 +0000357 case BuiltinType::Int128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000358 case BuiltinType::Long:
Devang Patel68f76b12011-09-10 00:44:49 +0000359 case BuiltinType::WChar_S:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000360 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
361 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
362 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000363 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000364 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000365 }
Devang Patel05127ca2010-07-28 23:23:29 +0000366
367 switch (BT->getKind()) {
368 case BuiltinType::Long: BTName = "long int"; break;
369 case BuiltinType::LongLong: BTName = "long long int"; break;
370 case BuiltinType::ULong: BTName = "long unsigned int"; break;
371 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
372 default:
373 BTName = BT->getName(CGM.getContext().getLangOptions());
374 break;
375 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000376 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000377 uint64_t Size = CGM.getContext().getTypeSize(BT);
378 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000379 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000380 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000381 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000382}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000383
Devang Patel344ff5d2010-12-09 00:25:29 +0000384llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000385 // Bit size, align and offset of the type.
386 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
387 if (Ty->isComplexIntegerType())
388 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000389
Anders Carlsson20f12a22009-12-06 18:00:51 +0000390 uint64_t Size = CGM.getContext().getTypeSize(Ty);
391 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000392 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000393 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel823d8e92010-12-08 22:42:58 +0000394
Devang Patelca80a5f2009-10-20 19:55:01 +0000395 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000396}
397
John McCalla1805292009-09-25 01:40:47 +0000398/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000399/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000400llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000401 QualifierCollector Qc;
402 const Type *T = Qc.strip(Ty);
403
404 // Ignore these qualifiers for now.
405 Qc.removeObjCGCAttr();
406 Qc.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +0000407 Qc.removeObjCLifetime();
John McCalla1805292009-09-25 01:40:47 +0000408
Chris Lattner9c85ba32008-11-10 06:08:34 +0000409 // We will create one Derived type for one qualifier and recurse to handle any
410 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000411 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000412 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000413 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000414 Qc.removeConst();
415 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000416 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000417 Qc.removeVolatile();
418 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000419 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000420 Qc.removeRestrict();
421 } else {
422 assert(Qc.empty() && "Unknown type qualifier for debug info");
423 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000424 }
Mike Stump1eb44332009-09-09 15:08:12 +0000425
John McCall49f4e1c2010-12-10 11:01:00 +0000426 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCalla1805292009-09-25 01:40:47 +0000427
Daniel Dunbar3845f862008-10-31 03:54:29 +0000428 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
429 // CVR derived types.
Devang Patel16674e82011-02-22 18:56:36 +0000430 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000431
Devang Patelca80a5f2009-10-20 19:55:01 +0000432 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000433}
434
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000435llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000436 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000437 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000438 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
439 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000440 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000441}
442
Chris Lattner9c85ba32008-11-10 06:08:34 +0000443llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000444 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000445 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
446 Ty->getPointeeType(), Unit);
447}
448
Eric Christopheredc95922011-09-13 23:45:09 +0000449/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000450/// then emit record's fwd if debug info size reduction is enabled.
451llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
452 llvm::DIFile Unit) {
453 if (!CGM.getCodeGenOpts().LimitDebugInfo)
454 return getOrCreateType(PointeeTy, Unit);
455
456 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
457 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000458 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
459 unsigned Line = getLineNumber(RD->getLocation());
460 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000461 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel823d8e92010-12-08 22:42:58 +0000462
463 if (RD->isStruct())
Devang Patel16674e82011-02-22 18:56:36 +0000464 return DBuilder.createStructType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000465 Line, 0, 0, llvm::DIType::FlagFwdDecl,
466 llvm::DIArray());
467 else if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +0000468 return DBuilder.createUnionType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000469 Line, 0, 0, llvm::DIType::FlagFwdDecl,
470 llvm::DIArray());
471 else {
472 assert(RD->isClass() && "Unknown RecordType!");
Devang Patel16674e82011-02-22 18:56:36 +0000473 return DBuilder.createClassType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000474 Line, 0, 0, 0, llvm::DIType::FlagFwdDecl,
475 llvm::DIType(), llvm::DIArray());
476 }
Devang Patelc69e1cf2010-09-30 19:05:55 +0000477 }
478 return getOrCreateType(PointeeTy, Unit);
479
480}
481
Anders Carlssona031b352009-11-06 19:19:55 +0000482llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
483 const Type *Ty,
484 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000485 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000486
487 if (Tag == llvm::dwarf::DW_TAG_reference_type)
Devang Patel16674e82011-02-22 18:56:36 +0000488 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000489
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000490 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000491 // Size is always the size of a pointer. We can't use getTypeSize here
492 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000493 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000494 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000495 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Devang Patel823d8e92010-12-08 22:42:58 +0000497 return
Devang Patel16674e82011-02-22 18:56:36 +0000498 DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit), Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000499}
500
Mike Stump9bc093c2009-05-14 02:03:51 +0000501llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000502 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000503 if (BlockLiteralGenericSet)
504 return BlockLiteralGeneric;
505
Chris Lattner5f9e2722011-07-23 10:55:15 +0000506 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000507 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000508 QualType FType;
509 uint64_t FieldSize, FieldOffset;
510 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000511 llvm::DIArray Elements;
512 llvm::DIType EltTy, DescTy;
513
514 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000515 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000516 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
517 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000518
Jay Foadc556ef22011-04-24 10:11:03 +0000519 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000520 EltTys.clear();
521
Devang Patele2472482010-09-29 21:05:52 +0000522 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000523 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000524
Devang Patel16674e82011-02-22 18:56:36 +0000525 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000526 Unit, LineNo, FieldOffset, 0,
527 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000528
Mike Stump9bc093c2009-05-14 02:03:51 +0000529 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000530 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Devang Patel16674e82011-02-22 18:56:36 +0000532 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000533
534 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000535 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000536 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000537 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000538 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
539 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000540 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000541 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000542
Anders Carlsson20f12a22009-12-06 18:00:51 +0000543 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000544 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000545 FieldSize = CGM.getContext().getTypeSize(Ty);
546 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000547 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000548 LineNo, FieldSize, FieldAlign,
549 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000550 EltTys.push_back(FieldTy);
551
552 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000553 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000554
Devang Patel16674e82011-02-22 18:56:36 +0000555 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000556 Unit, LineNo, FieldOffset, 0,
557 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000558
Mike Stump9bc093c2009-05-14 02:03:51 +0000559 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000560 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000561 return BlockLiteralGeneric;
562}
563
Chris Lattner9c85ba32008-11-10 06:08:34 +0000564llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000565 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000566 // Typedefs are derived from some other type. If we have a typedef of a
567 // typedef, make sure to emit the whole chain.
568 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000569 if (!Src.Verify())
570 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000571 // We don't set size information, but do specify where the typedef was
572 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000573 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000574 const TypedefNameDecl *TyDecl = Ty->getDecl();
575 llvm::DIDescriptor TydefContext =
576 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
577
578 return
579 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TydefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000580}
581
Chris Lattner9c85ba32008-11-10 06:08:34 +0000582llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000583 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000584 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000585
Chris Lattner9c85ba32008-11-10 06:08:34 +0000586 // Add the result type at least.
587 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000588
Chris Lattner9c85ba32008-11-10 06:08:34 +0000589 // Set up remainder of arguments if there is a prototype.
590 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000591 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000592 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Devang Patelaf164bb2010-10-06 20:51:45 +0000593 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000594 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
595 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000596 }
597
Jay Foadc556ef22011-04-24 10:11:03 +0000598 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Mike Stump1eb44332009-09-09 15:08:12 +0000599
Devang Patel16674e82011-02-22 18:56:36 +0000600 llvm::DIType DbgTy = DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patelca80a5f2009-10-20 19:55:01 +0000601 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000602}
603
Chris Lattner5f9e2722011-07-23 10:55:15 +0000604llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000605 QualType type,
606 Expr *bitWidth,
607 SourceLocation loc,
608 AccessSpecifier AS,
609 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000610 llvm::DIFile tunit,
611 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000612 llvm::DIType debugType = getOrCreateType(type, tunit);
613
614 // Get the location for the field.
615 llvm::DIFile file = getOrCreateFile(loc);
616 unsigned line = getLineNumber(loc);
617
618 uint64_t sizeInBits = 0;
619 unsigned alignInBits = 0;
620 if (!type->isIncompleteArrayType()) {
621 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
622
623 if (bitWidth)
624 sizeInBits = bitWidth->EvaluateAsInt(CGM.getContext()).getZExtValue();
625 }
626
627 unsigned flags = 0;
628 if (AS == clang::AS_private)
629 flags |= llvm::DIDescriptor::FlagPrivate;
630 else if (AS == clang::AS_protected)
631 flags |= llvm::DIDescriptor::FlagProtected;
632
Devang Patel1d323e02011-06-24 22:00:59 +0000633 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
634 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000635}
636
Devang Patel428deb52010-01-19 00:00:59 +0000637/// CollectRecordFields - A helper function to collect debug info for
638/// record fields. This is used while creating debug info entry for a Record.
639void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000640CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000641 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000642 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000643 unsigned fieldNo = 0;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000644 const FieldDecl *LastFD = 0;
645 bool IsMsStruct = record->hasAttr<MsStructAttr>();
646
John McCall8178df32011-02-22 22:38:33 +0000647 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
648 for (RecordDecl::field_iterator I = record->field_begin(),
649 E = record->field_end();
650 I != E; ++I, ++fieldNo) {
651 FieldDecl *field = *I;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000652 if (IsMsStruct) {
653 // Zero-length bitfields following non-bitfield members are ignored
Fariborz Jahanian855a8e72011-05-03 20:21:04 +0000654 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000655 --fieldNo;
656 continue;
657 }
658 LastFD = field;
659 }
Devang Patel428deb52010-01-19 00:00:59 +0000660
Chris Lattner5f9e2722011-07-23 10:55:15 +0000661 StringRef name = field->getName();
John McCall8178df32011-02-22 22:38:33 +0000662 QualType type = field->getType();
663
664 // Ignore unnamed fields unless they're anonymous structs/unions.
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000665 if (name.empty() && !type->isRecordType()) {
666 LastFD = field;
Devang Patel428deb52010-01-19 00:00:59 +0000667 continue;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000668 }
Devang Patel428deb52010-01-19 00:00:59 +0000669
John McCall8178df32011-02-22 22:38:33 +0000670 llvm::DIType fieldType
671 = createFieldType(name, type, field->getBitWidth(),
672 field->getLocation(), field->getAccess(),
Devang Patel1d323e02011-06-24 22:00:59 +0000673 layout.getFieldOffset(fieldNo), tunit, RecordTy);
Devang Patel428deb52010-01-19 00:00:59 +0000674
John McCall8178df32011-02-22 22:38:33 +0000675 elements.push_back(fieldType);
Devang Patel428deb52010-01-19 00:00:59 +0000676 }
677}
678
Devang Patela6da1922010-01-28 00:28:01 +0000679/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
680/// function type is not updated to include implicit "this" pointer. Use this
681/// routine to get a method type which includes "this" pointer.
682llvm::DIType
683CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000684 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000685 llvm::DIType FnTy
686 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
687 0),
688 Unit);
Devang Pateld774d1e2010-01-28 21:43:50 +0000689
Devang Patela6da1922010-01-28 00:28:01 +0000690 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000691 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000692 assert (Args.getNumElements() && "Invalid number of arguments!");
693
Chris Lattner5f9e2722011-07-23 10:55:15 +0000694 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000695
696 // First element is always return type. For 'void' functions it is NULL.
697 Elts.push_back(Args.getElement(0));
698
Eric Christopher2121cda2011-09-14 01:10:50 +0000699 if (!Method->isStatic()) {
700 // "this" pointer is always first argument.
701 QualType ThisPtr = Method->getThisType(CGM.getContext());
702 llvm::DIType ThisPtrType =
703 DBuilder.createArtificialType(getOrCreateType(ThisPtr, Unit));
704
705 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
706 Elts.push_back(ThisPtrType);
707 }
Devang Patela6da1922010-01-28 00:28:01 +0000708
709 // Copy rest of the arguments.
710 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
711 Elts.push_back(Args.getElement(i));
712
Jay Foadc556ef22011-04-24 10:11:03 +0000713 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000714
Devang Patel16674e82011-02-22 18:56:36 +0000715 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000716}
717
Devang Patel58faf202010-10-22 17:11:50 +0000718/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
719/// inside a function.
720static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
721 if (const CXXRecordDecl *NRD =
722 dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
723 return isFunctionLocalClass(NRD);
724 else if (isa<FunctionDecl>(RD->getDeclContext()))
725 return true;
726 return false;
727
728}
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000729/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
730/// a single member function GlobalDecl.
731llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000732CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000733 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000734 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000735 bool IsCtorOrDtor =
736 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
737
Chris Lattner5f9e2722011-07-23 10:55:15 +0000738 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000739 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000740
741 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
742 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000743 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000744 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000745 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000746
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000747 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000748 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
749 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000750
751 // Collect virtual method info.
752 llvm::DIType ContainingType;
753 unsigned Virtuality = 0;
754 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000755
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000756 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000757 if (Method->isPure())
758 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
759 else
760 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
761
762 // It doesn't make sense to give a virtual destructor a vtable index,
763 // since a single destructor has two entries in the vtable.
764 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000765 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000766 ContainingType = RecordTy;
767 }
768
Devang Patele2472482010-09-29 21:05:52 +0000769 unsigned Flags = 0;
770 if (Method->isImplicit())
771 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000772 AccessSpecifier Access = Method->getAccess();
773 if (Access == clang::AS_private)
774 Flags |= llvm::DIDescriptor::FlagPrivate;
775 else if (Access == clang::AS_protected)
776 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000777 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
778 if (CXXC->isExplicit())
779 Flags |= llvm::DIDescriptor::FlagExplicit;
780 } else if (const CXXConversionDecl *CXXC =
781 dyn_cast<CXXConversionDecl>(Method)) {
782 if (CXXC->isExplicit())
783 Flags |= llvm::DIDescriptor::FlagExplicit;
784 }
Devang Patel3951e712010-10-07 22:03:49 +0000785 if (Method->hasPrototype())
786 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Pateld78a0192010-10-01 23:32:17 +0000787
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000788 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000789 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000790 MethodDefUnit, MethodLine,
791 MethodTy, /*isLocalToUnit=*/false,
792 /* isDefinition=*/ false,
793 Virtuality, VIndex, ContainingType,
794 Flags, CGM.getLangOptions().Optimize);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000795
Devang Patel22a5cdf2011-04-29 23:42:32 +0000796 SPCache[Method] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000797
798 return SP;
799}
800
Devang Patel4125fd22010-01-19 01:54:44 +0000801/// CollectCXXMemberFunctions - A helper function to collect debug info for
802/// C++ member functions.This is used while creating debug info entry for
803/// a Record.
804void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000805CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000806 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000807 llvm::DIType RecordTy) {
Devang Patel239cec62010-02-01 21:39:52 +0000808 for(CXXRecordDecl::method_iterator I = RD->method_begin(),
809 E = RD->method_end(); I != E; ++I) {
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000810 const CXXMethodDecl *Method = *I;
Anders Carlssonbea9b232010-01-26 04:40:11 +0000811
Devang Pateld5322da2010-02-09 19:09:28 +0000812 if (Method->isImplicit() && !Method->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +0000813 continue;
Devang Patel4125fd22010-01-19 01:54:44 +0000814
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000815 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +0000816 }
817}
818
Devang Patel2ed8f002010-08-27 17:47:47 +0000819/// CollectCXXFriends - A helper function to collect debug info for
820/// C++ base classes. This is used while creating debug info entry for
821/// a Record.
822void CGDebugInfo::
823CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000824 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +0000825 llvm::DIType RecordTy) {
Devang Patel2ed8f002010-08-27 17:47:47 +0000826 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
827 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +0000828 if ((*BI)->isUnsupportedFriend())
829 continue;
Devang Patel823d8e92010-12-08 22:42:58 +0000830 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +0000831 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000832 getOrCreateType(TInfo->getType(),
833 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +0000834 }
835}
836
Devang Patela245c5b2010-01-25 23:32:18 +0000837/// CollectCXXBases - A helper function to collect debug info for
838/// C++ base classes. This is used while creating debug info entry for
839/// a Record.
840void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000841CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000842 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000843 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +0000844
Devang Patel239cec62010-02-01 21:39:52 +0000845 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
846 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
847 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +0000848 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +0000849 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +0000850
851 const CXXRecordDecl *Base =
852 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
853
854 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +0000855 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +0000856 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +0000857 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000858 0 - CGM.getVTableContext()
859 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +0000860 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +0000861 } else
Devang Patel62c117d2011-04-04 20:36:06 +0000862 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Ken Dyck14c65ca2011-04-07 12:37:09 +0000863 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
864 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +0000865
866 AccessSpecifier Access = BI->getAccessSpecifier();
867 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +0000868 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +0000869 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +0000870 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +0000871
Devang Patel823d8e92010-12-08 22:42:58 +0000872 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +0000873 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000874 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +0000875 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +0000876 EltTys.push_back(DTy);
877 }
Devang Patela245c5b2010-01-25 23:32:18 +0000878}
879
Devang Patel5ecb1df2011-04-05 22:54:11 +0000880/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +0000881llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +0000882CollectTemplateParams(const TemplateParameterList *TPList,
883 const TemplateArgumentList &TAList,
884 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000885 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +0000886 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
887 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +0000888 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +0000889 if (TA.getKind() == TemplateArgument::Type) {
890 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
891 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +0000892 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +0000893 TemplateParams.push_back(TTP);
894 } else if (TA.getKind() == TemplateArgument::Integral) {
895 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +0000896 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +0000897 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
898 TA.getAsIntegral()->getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +0000899 TemplateParams.push_back(TVP);
900 }
901 }
Jay Foadc556ef22011-04-24 10:11:03 +0000902 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +0000903}
904
Devang Patel5ecb1df2011-04-05 22:54:11 +0000905/// CollectFunctionTemplateParams - A helper function to collect debug
906/// info for function template parameters.
907llvm::DIArray CGDebugInfo::
908CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
909 if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplateSpecialization){
910 const TemplateParameterList *TList =
911 FD->getTemplateSpecializationInfo()->getTemplate()->getTemplateParameters();
912 return
913 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
914 }
915 return llvm::DIArray();
916}
917
918/// CollectCXXTemplateParams - A helper function to collect debug info for
919/// template parameters.
920llvm::DIArray CGDebugInfo::
921CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
922 llvm::DIFile Unit) {
923 llvm::PointerUnion<ClassTemplateDecl *,
924 ClassTemplatePartialSpecializationDecl *>
925 PU = TSpecial->getSpecializedTemplateOrPartial();
926
927 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
928 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
929 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
930 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
931 return CollectTemplateParams(TPList, TAList, Unit);
932}
933
Devang Patel4ce3f202010-01-28 18:11:52 +0000934/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +0000935llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +0000936 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +0000937 return VTablePtrType;
938
939 ASTContext &Context = CGM.getContext();
940
941 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +0000942 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +0000943 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +0000944 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +0000945 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +0000946 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +0000947 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +0000948 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +0000949 return VTablePtrType;
950}
951
Anders Carlsson046c2942010-04-17 20:15:18 +0000952/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000953StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Devang Patel4ce3f202010-01-28 18:11:52 +0000954 // Otherwise construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +0000955 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +0000956
957 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +0000958 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +0000959 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000960 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +0000961}
962
963
Anders Carlsson046c2942010-04-17 20:15:18 +0000964/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +0000965/// debug info entry in EltTys vector.
966void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +0000967CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000968 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +0000969 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +0000970
971 // If there is a primary base then it will hold vtable info.
972 if (RL.getPrimaryBase())
973 return;
974
975 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +0000976 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +0000977 return;
978
979 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
980 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +0000981 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000982 0, Size, 0, 0, 0,
983 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +0000984 EltTys.push_back(VPTR);
985}
986
Devang Patelc69e1cf2010-09-30 19:05:55 +0000987/// getOrCreateRecordType - Emit record type's standalone debug info.
988llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
989 SourceLocation Loc) {
990 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patel16674e82011-02-22 18:56:36 +0000991 DBuilder.retainType(T);
Devang Patelc69e1cf2010-09-30 19:05:55 +0000992 return T;
993}
994
Devang Patel65e99f22009-02-25 01:36:11 +0000995/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +0000996llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +0000997 RecordDecl *RD = Ty->getDecl();
Devang Patel31f7d022011-01-17 22:23:07 +0000998 llvm::DIFile Unit = getOrCreateFile(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Chris Lattner9c85ba32008-11-10 06:08:34 +00001000 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001001 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1002 unsigned Line = getLineNumber(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001003
Chris Lattner9c85ba32008-11-10 06:08:34 +00001004 // Records and classes and unions can all be recursive. To handle them, we
1005 // first generate a debug descriptor for the struct as a forward declaration.
1006 // Then (if it is a definition) we go through and get debug info for all of
1007 // its members. Finally, we create a descriptor for the complete type (which
1008 // may refer to the forward decl if the struct is recursive) and replace all
1009 // uses of the forward declaration with the final definition.
Devang Patel0b897992010-07-08 19:56:29 +00001010 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +00001011 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel0b897992010-07-08 19:56:29 +00001012
1013 // If this is just a forward declaration, construct an appropriately
1014 // marked node and just return it.
1015 if (!RD->getDefinition()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001016 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001017 DBuilder.createStructType(FDContext, RD->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001018 DefUnit, Line, 0, 0,
1019 llvm::DIDescriptor::FlagFwdDecl,
1020 llvm::DIArray());
Devang Patel0b897992010-07-08 19:56:29 +00001021
1022 return FwdDecl;
1023 }
Devang Pateld0f251b2010-01-20 23:56:40 +00001024
Devang Patel16674e82011-02-22 18:56:36 +00001025 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001026
Devang Patelab699792010-05-07 18:12:35 +00001027 llvm::MDNode *MN = FwdDecl;
1028 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001029 // Otherwise, insert it into the TypeCache so that recursive uses will find
1030 // it.
Devang Patelab699792010-05-07 18:12:35 +00001031 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001032 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001033 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001034 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001035
1036 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001037 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001038
Devang Pateld6c5a262010-02-01 21:52:22 +00001039 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +00001040 if (CXXDecl) {
1041 CollectCXXBases(CXXDecl, Unit, EltTys, FwdDecl);
Anders Carlsson046c2942010-04-17 20:15:18 +00001042 CollectVTableInfo(CXXDecl, Unit, EltTys);
Devang Patel3064afe2010-01-28 21:41:35 +00001043 }
Devang Pateldabc3e92010-08-12 00:02:44 +00001044
1045 // Collect static variables with initializers.
1046 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
1047 I != E; ++I)
1048 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
1049 if (const Expr *Init = V->getInit()) {
1050 Expr::EvalResult Result;
1051 if (Init->Evaluate(Result, CGM.getContext()) && Result.Val.isInt()) {
1052 llvm::ConstantInt *CI
1053 = llvm::ConstantInt::get(CGM.getLLVMContext(), Result.Val.getInt());
1054
1055 // Create the descriptor for static variable.
1056 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001057 StringRef VName = V->getName();
Devang Pateldabc3e92010-08-12 00:02:44 +00001058 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
1059 // Do not use DIGlobalVariable for enums.
1060 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
Devang Patel16674e82011-02-22 18:56:36 +00001061 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
Devang Patel823d8e92010-12-08 22:42:58 +00001062 getLineNumber(V->getLocation()),
1063 VTy, true, CI);
Devang Pateldabc3e92010-08-12 00:02:44 +00001064 }
1065 }
1066 }
1067 }
1068
Devang Patel1d323e02011-06-24 22:00:59 +00001069 CollectRecordFields(RD, Unit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001070 llvm::DIArray TParamsArray;
Devang Patel4ce3f202010-01-28 18:11:52 +00001071 if (CXXDecl) {
Devang Patel4125fd22010-01-19 01:54:44 +00001072 CollectCXXMemberFunctions(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel2ed8f002010-08-27 17:47:47 +00001073 CollectCXXFriends(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001074 if (const ClassTemplateSpecializationDecl *TSpecial
1075 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
1076 TParamsArray = CollectCXXTemplateParams(TSpecial, Unit);
Devang Patel823d8e92010-12-08 22:42:58 +00001077 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001078
Eric Christopheraa2164c2011-09-29 00:00:45 +00001079 LexicalBlockStack.pop_back();
Devang Patel823d8e92010-12-08 22:42:58 +00001080 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1081 RegionMap.find(Ty->getDecl());
1082 if (RI != RegionMap.end())
1083 RegionMap.erase(RI);
1084
1085 llvm::DIDescriptor RDContext =
John McCall8178df32011-02-22 22:38:33 +00001086 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Chris Lattner5f9e2722011-07-23 10:55:15 +00001087 StringRef RDName = RD->getName();
Devang Patel823d8e92010-12-08 22:42:58 +00001088 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1089 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Jay Foadc556ef22011-04-24 10:11:03 +00001090 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel823d8e92010-12-08 22:42:58 +00001091 llvm::MDNode *RealDecl = NULL;
1092
Devang Patel5c5b5872011-02-28 22:32:45 +00001093 if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +00001094 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
Devang Patel5c5b5872011-02-28 22:32:45 +00001095 Size, Align, 0, Elements);
1096 else if (CXXDecl) {
Devang Patel823d8e92010-12-08 22:42:58 +00001097 RDName = getClassName(RD);
1098 // A class's primary base or the class itself contains the vtable.
1099 llvm::MDNode *ContainingType = NULL;
Devang Pateld6c5a262010-02-01 21:52:22 +00001100 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel5bc794f2010-10-14 22:59:23 +00001101 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1102 // Seek non virtual primary base root.
1103 while (1) {
1104 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1105 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
Anders Carlssonc9e814b2010-11-24 23:12:57 +00001106 if (PBT && !BRL.isPrimaryBaseVirtual())
Devang Patel5bc794f2010-10-14 22:59:23 +00001107 PBase = PBT;
1108 else
1109 break;
1110 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001111 ContainingType =
Devang Patelab699792010-05-07 18:12:35 +00001112 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), Unit);
Devang Patel5bc794f2010-10-14 22:59:23 +00001113 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001114 else if (CXXDecl->isDynamicClass())
Devang Patelab699792010-05-07 18:12:35 +00001115 ContainingType = FwdDecl;
Devang Patel9c1714b2011-04-05 17:30:54 +00001116
Devang Patel16674e82011-02-22 18:56:36 +00001117 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001118 Size, Align, 0, 0, llvm::DIType(),
Devang Patelfa275df2011-02-02 21:38:49 +00001119 Elements, ContainingType,
1120 TParamsArray);
Devang Patel5c5b5872011-02-28 22:32:45 +00001121 } else
1122 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1123 Size, Align, 0, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +00001124
Chris Lattner9c85ba32008-11-10 06:08:34 +00001125 // Now that we have a real decl for the struct, replace anything using the
1126 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001127 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001128 RegionMap[RD] = llvm::WeakVH(RealDecl);
Devang Patel823d8e92010-12-08 22:42:58 +00001129 return llvm::DIType(RealDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001130}
1131
John McCallc12c5bb2010-05-15 11:32:37 +00001132/// CreateType - get objective-c object type.
1133llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1134 llvm::DIFile Unit) {
1135 // Ignore protocols.
1136 return getOrCreateType(Ty->getBaseType(), Unit);
1137}
1138
Devang Patel9ca36b62009-02-26 21:10:26 +00001139/// CreateType - get objective-c interface type.
1140llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001141 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001142 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001143 if (!ID)
1144 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001145
1146 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001147 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001148 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001149 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001150
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001151 // If this is just a forward declaration return a special forward-declaration
1152 // debug type since we won't be able to lay out the entire type.
Dan Gohman45f7c782010-08-23 21:15:56 +00001153 if (ID->isForwardDecl()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001154 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001155 DBuilder.createStructType(Unit, ID->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001156 DefUnit, Line, 0, 0, 0,
1157 llvm::DIArray(), RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001158 return FwdDecl;
1159 }
1160
Eric Christopher1cd1d742011-10-06 00:30:52 +00001161 // To handle a recursive interface, we first generate a debug descriptor
1162 // for the struct as a forward declaration. Then (if it is a definition)
1163 // we go through and get debug info for all of its members. Finally, we
1164 // create a descriptor for the complete type (which may refer to the
1165 // forward decl if the struct is recursive) and replace all uses of the
1166 // forward declaration with the final definition.
Devang Patel16674e82011-02-22 18:56:36 +00001167 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001168
Devang Patelab699792010-05-07 18:12:35 +00001169 llvm::MDNode *MN = FwdDecl;
1170 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Devang Patel9ca36b62009-02-26 21:10:26 +00001171 // Otherwise, insert it into the TypeCache so that recursive uses will find
1172 // it.
Devang Patelab699792010-05-07 18:12:35 +00001173 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001174 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001175 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001176 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001177
1178 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001179 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001180
Devang Pateld6c5a262010-02-01 21:52:22 +00001181 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001182 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001183 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001184 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001185 if (!SClassTy.isValid())
1186 return llvm::DIType();
1187
Mike Stump1eb44332009-09-09 15:08:12 +00001188 llvm::DIType InhTag =
Devang Patel16674e82011-02-22 18:56:36 +00001189 DBuilder.createInheritance(FwdDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001190 EltTys.push_back(InhTag);
1191 }
1192
Devang Pateld6c5a262010-02-01 21:52:22 +00001193 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel8c6f9c42011-09-19 18:54:16 +00001194 ObjCImplementationDecl *ImpD = ID->getImplementation();
Devang Patel9ca36b62009-02-26 21:10:26 +00001195 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001196 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001197 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001198 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001199 if (!FieldTy.isValid())
1200 return llvm::DIType();
1201
Chris Lattner5f9e2722011-07-23 10:55:15 +00001202 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001203
Devang Patelde135022009-04-27 22:40:36 +00001204 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001205 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001206 continue;
1207
Devang Patel9ca36b62009-02-26 21:10:26 +00001208 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001209 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1210 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001211 QualType FType = Field->getType();
1212 uint64_t FieldSize = 0;
1213 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001214
Devang Patel99c20eb2009-03-20 18:24:39 +00001215 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001216
Devang Patel99c20eb2009-03-20 18:24:39 +00001217 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001218 FieldSize = CGM.getContext().getTypeSize(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001219 Expr *BitWidth = Field->getBitWidth();
1220 if (BitWidth)
Anders Carlsson20f12a22009-12-06 18:00:51 +00001221 FieldSize = BitWidth->EvaluateAsInt(CGM.getContext()).getZExtValue();
Eli Friedman9a901bb2009-04-26 19:19:15 +00001222
Anders Carlsson20f12a22009-12-06 18:00:51 +00001223 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001224 }
1225
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001226 // We can't know the offset of our ivar in the structure if we're using
1227 // the non-fragile abi and the debugger should ignore the value anyways.
1228 // Call it the FieldNo+1 due to how debuggers use the information,
1229 // e.g. negating the value when it needs a lookup in the dynamic table.
1230 uint64_t FieldOffset = CGM.getLangOptions().ObjCNonFragileABI ? FieldNo+1
1231 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001232
Devang Patelc20482b2009-03-19 00:23:53 +00001233 unsigned Flags = 0;
1234 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001235 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001236 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001237 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001238
Chris Lattner5f9e2722011-07-23 10:55:15 +00001239 StringRef PropertyName;
1240 StringRef PropertyGetter;
1241 StringRef PropertySetter;
Eli Friedman10292cc2011-04-17 06:40:15 +00001242 unsigned PropertyAttributes = 0;
Devang Patel8c6f9c42011-09-19 18:54:16 +00001243 ObjCPropertyDecl *PD = NULL;
1244 if (ImpD)
1245 if (ObjCPropertyImplDecl *PImpD =
1246 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier()))
1247 PD = PImpD->getPropertyDecl();
1248 if (PD) {
Devang Patelfa936d82011-04-16 00:12:55 +00001249 PropertyName = PD->getName();
Devang Patel90c1eed2011-04-16 00:37:51 +00001250 PropertyGetter = getSelectorName(PD->getGetterName());
1251 PropertySetter = getSelectorName(PD->getSetterName());
Devang Patelfa936d82011-04-16 00:12:55 +00001252 PropertyAttributes = PD->getPropertyAttributes();
Devang Patel8c6f9c42011-09-19 18:54:16 +00001253 }
Devang Patelfa936d82011-04-16 00:12:55 +00001254 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1255 FieldLine, FieldSize, FieldAlign,
1256 FieldOffset, Flags, FieldTy,
1257 PropertyName, PropertyGetter,
1258 PropertySetter, PropertyAttributes);
Devang Patel9ca36b62009-02-26 21:10:26 +00001259 EltTys.push_back(FieldTy);
1260 }
Mike Stump1eb44332009-09-09 15:08:12 +00001261
Jay Foadc556ef22011-04-24 10:11:03 +00001262 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel9ca36b62009-02-26 21:10:26 +00001263
Eric Christopheraa2164c2011-09-29 00:00:45 +00001264 LexicalBlockStack.pop_back();
Devang Patele4c1ea02010-03-11 20:01:48 +00001265 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1266 RegionMap.find(Ty->getDecl());
1267 if (RI != RegionMap.end())
1268 RegionMap.erase(RI);
1269
Devang Patel9ca36b62009-02-26 21:10:26 +00001270 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001271 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1272 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001273
Devang Patel707b1e92011-05-12 19:07:41 +00001274 unsigned Flags = 0;
Devang Patelf568b642011-05-12 21:14:54 +00001275 if (ID->getImplementation())
Devang Patelaad16092011-05-12 21:29:57 +00001276 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
Devang Patel707b1e92011-05-12 19:07:41 +00001277
Devang Patel823d8e92010-12-08 22:42:58 +00001278 llvm::DIType RealDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001279 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
Devang Patel707b1e92011-05-12 19:07:41 +00001280 Line, Size, Align, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001281 Elements, RuntimeLang);
Devang Patel9ca36b62009-02-26 21:10:26 +00001282
1283 // Now that we have a real decl for the struct, replace anything using the
1284 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001285 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001286 RegionMap[ID] = llvm::WeakVH(RealDecl);
Devang Patelfe09eab2009-07-13 17:03:14 +00001287
Devang Patel9ca36b62009-02-26 21:10:26 +00001288 return RealDecl;
1289}
1290
Devang Patel31f7d022011-01-17 22:23:07 +00001291llvm::DIType CGDebugInfo::CreateType(const TagType *Ty) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001292 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
Devang Patel31f7d022011-01-17 22:23:07 +00001293 return CreateType(RT);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001294 else if (const EnumType *ET = dyn_cast<EnumType>(Ty))
Devang Patel31f7d022011-01-17 22:23:07 +00001295 return CreateEnumType(ET->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001296
Chris Lattner9c85ba32008-11-10 06:08:34 +00001297 return llvm::DIType();
1298}
1299
Devang Patel70c23cd2010-02-23 22:59:39 +00001300llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty,
Eli Friedmana7e68452010-08-22 01:00:03 +00001301 llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001302 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001303 int64_t NumElems = Ty->getNumElements();
1304 int64_t LowerBound = 0;
1305 if (NumElems == 0)
1306 // If number of elements are not known then this is an unbounded array.
1307 // Use Low = 1, Hi = 0 to express such arrays.
1308 LowerBound = 1;
1309 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001310 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001311
Devang Patel6cf37dd2011-04-08 21:56:52 +00001312 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001313 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001314
1315 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1316 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1317
1318 return
Devang Patel16674e82011-02-22 18:56:36 +00001319 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001320}
1321
Chris Lattner9c85ba32008-11-10 06:08:34 +00001322llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001323 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001324 uint64_t Size;
1325 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001326
1327
Nuno Lopes010d5142009-01-28 00:35:17 +00001328 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001329 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001330 Size = 0;
1331 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001332 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001333 } else if (Ty->isIncompleteArrayType()) {
1334 Size = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001335 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001336 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001337 Size = 0;
1338 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001339 } else {
1340 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001341 Size = CGM.getContext().getTypeSize(Ty);
1342 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001343 }
Mike Stump1eb44332009-09-09 15:08:12 +00001344
Chris Lattner9c85ba32008-11-10 06:08:34 +00001345 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1346 // interior arrays, do we care? Why aren't nested arrays represented the
1347 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001348 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001349 QualType EltTy(Ty, 0);
Devang Patelcdf523c2010-10-06 18:30:00 +00001350 if (Ty->isIncompleteArrayType())
Chris Lattner9c85ba32008-11-10 06:08:34 +00001351 EltTy = Ty->getElementType();
Devang Patelcdf523c2010-10-06 18:30:00 +00001352 else {
1353 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
Devang Patel6cf37dd2011-04-08 21:56:52 +00001354 int64_t UpperBound = 0;
1355 int64_t LowerBound = 0;
Nick Lewycky3894c072011-04-09 00:25:15 +00001356 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
Devang Patelcdf523c2010-10-06 18:30:00 +00001357 if (CAT->getSize().getZExtValue())
Devang Patel6cf37dd2011-04-08 21:56:52 +00001358 UpperBound = CAT->getSize().getZExtValue() - 1;
Nick Lewycky3894c072011-04-09 00:25:15 +00001359 } else
Devang Patel6cf37dd2011-04-08 21:56:52 +00001360 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1361 // arrays.
1362 LowerBound = 1;
1363
Devang Patelcdf523c2010-10-06 18:30:00 +00001364 // FIXME: Verify this is right for VLAs.
Devang Patel6cf37dd2011-04-08 21:56:52 +00001365 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound, UpperBound));
Devang Patelcdf523c2010-10-06 18:30:00 +00001366 EltTy = Ty->getElementType();
1367 }
Sanjiv Gupta507de852008-06-09 10:47:41 +00001368 }
Mike Stump1eb44332009-09-09 15:08:12 +00001369
Jay Foadc556ef22011-04-24 10:11:03 +00001370 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001371
Devang Patelca80a5f2009-10-20 19:55:01 +00001372 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001373 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001374 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001375 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001376}
1377
Anders Carlssona031b352009-11-06 19:19:55 +00001378llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001379 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001380 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1381 Ty, Ty->getPointeeType(), Unit);
1382}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001383
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001384llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1385 llvm::DIFile Unit) {
1386 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1387 Ty, Ty->getPointeeType(), Unit);
1388}
1389
Anders Carlsson20f12a22009-12-06 18:00:51 +00001390llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001391 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001392 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1393 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1394
1395 if (!Ty->getPointeeType()->isFunctionType()) {
1396 // We have a data member pointer type.
1397 return PointerDiffDITy;
1398 }
1399
1400 // We have a member function pointer type. Treat it as a struct with two
1401 // ptrdiff_t members.
1402 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1403
1404 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001405 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001406
1407 // FIXME: This should probably be a function type instead.
1408 ElementTypes[0] =
Devang Patel1d323e02011-06-24 22:00:59 +00001409 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001410 Info.first, Info.second, FieldOffset, 0,
1411 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001412 FieldOffset += Info.first;
1413
1414 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001415 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001416 Info.first, Info.second, FieldOffset, 0,
1417 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001418
Jay Foadc556ef22011-04-24 10:11:03 +00001419 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001420
Chris Lattner5f9e2722011-07-23 10:55:15 +00001421 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001422 U, 0, FieldOffset,
1423 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001424}
1425
Devang Patel6237cea2010-08-23 22:07:25 +00001426/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001427llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1428 llvm::DIFile Unit = getOrCreateFile(ED->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001429 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001430
1431 // Create DIEnumerator elements for each enumerator.
1432 for (EnumDecl::enumerator_iterator
1433 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1434 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001435 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001436 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001437 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001438 }
1439
1440 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001441 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001442
1443 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1444 unsigned Line = getLineNumber(ED->getLocation());
1445 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001446 uint64_t Align = 0;
1447 if (!ED->getTypeForDecl()->isIncompleteType()) {
1448 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1449 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1450 }
Devang Patel4bc48872010-10-27 23:23:58 +00001451 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001452 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Devang Patel6237cea2010-08-23 22:07:25 +00001453 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001454 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001455 Size, Align, EltArray);
Devang Patel6237cea2010-08-23 22:07:25 +00001456 return DbgTy;
1457}
1458
Douglas Gregor840943d2009-12-21 20:18:30 +00001459static QualType UnwrapTypeForDebugInfo(QualType T) {
1460 do {
1461 QualType LastT = T;
1462 switch (T->getTypeClass()) {
1463 default:
1464 return T;
1465 case Type::TemplateSpecialization:
1466 T = cast<TemplateSpecializationType>(T)->desugar();
1467 break;
John McCallf4c73712011-01-19 06:33:43 +00001468 case Type::TypeOfExpr:
1469 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001470 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001471 case Type::TypeOf:
1472 T = cast<TypeOfType>(T)->getUnderlyingType();
1473 break;
1474 case Type::Decltype:
1475 T = cast<DecltypeType>(T)->getUnderlyingType();
1476 break;
Sean Huntca63c202011-05-24 22:41:36 +00001477 case Type::UnaryTransform:
1478 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1479 break;
John McCall9d156a72011-01-06 01:58:22 +00001480 case Type::Attributed:
1481 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001482 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001483 case Type::Elaborated:
1484 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001485 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001486 case Type::Paren:
1487 T = cast<ParenType>(T)->getInnerType();
1488 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001489 case Type::SubstTemplateTypeParm:
1490 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1491 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001492 case Type::Auto:
1493 T = cast<AutoType>(T)->getDeducedType();
1494 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001495 }
1496
1497 assert(T != LastT && "Type unwrapping failed to unwrap!");
1498 if (T == LastT)
1499 return T;
1500 } while (true);
1501
1502 return T;
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001503}
1504
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001505/// getOrCreateType - Get the type from the cache or create a new
1506/// one if necessary.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001507llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001508 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001509 if (Ty.isNull())
1510 return llvm::DIType();
Mike Stump1eb44332009-09-09 15:08:12 +00001511
Douglas Gregor840943d2009-12-21 20:18:30 +00001512 // Unwrap the type as needed for debug information.
1513 Ty = UnwrapTypeForDebugInfo(Ty);
Devang Patele80d5672011-03-23 16:29:39 +00001514
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001515 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001516 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001517 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001518 if (it != TypeCache.end()) {
1519 // Verify that the debug info still exists.
1520 if (&*it->second)
1521 return llvm::DIType(cast<llvm::MDNode>(it->second));
1522 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001523
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001524 // Otherwise create the type.
1525 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001526
1527 // And update the type cache.
Devang Patelab699792010-05-07 18:12:35 +00001528 TypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001529 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001530}
1531
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001532/// CreateTypeNode - Create a new debug type node.
Daniel Dunbar03faac32009-09-19 19:27:14 +00001533llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001534 llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001535 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001536 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001537 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001538
Douglas Gregor2101a822009-12-21 19:57:21 +00001539 const char *Diag = 0;
1540
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001541 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001542 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001543#define TYPE(Class, Base)
1544#define ABSTRACT_TYPE(Class, Base)
1545#define NON_CANONICAL_TYPE(Class, Base)
1546#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1547#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001548 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001549
Anders Carlssonbfe69952009-11-06 18:24:04 +00001550 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001551 case Type::Vector:
1552 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001553 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001554 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001555 case Type::ObjCObject:
1556 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001557 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001558 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Devang Patelf1d1d9a2010-11-01 16:52:40 +00001559 case Type::Builtin: return CreateType(cast<BuiltinType>(Ty));
Devang Patel344ff5d2010-12-09 00:25:29 +00001560 case Type::Complex: return CreateType(cast<ComplexType>(Ty));
Daniel Dunbar03faac32009-09-19 19:27:14 +00001561 case Type::Pointer: return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001562 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001563 return CreateType(cast<BlockPointerType>(Ty), Unit);
1564 case Type::Typedef: return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001565 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00001566 case Type::Enum:
Devang Patel31f7d022011-01-17 22:23:07 +00001567 return CreateType(cast<TagType>(Ty));
Chris Lattner9c85ba32008-11-10 06:08:34 +00001568 case Type::FunctionProto:
1569 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001570 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001571 case Type::ConstantArray:
1572 case Type::VariableArray:
1573 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001574 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001575
1576 case Type::LValueReference:
1577 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001578 case Type::RValueReference:
1579 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001580
Anders Carlsson20f12a22009-12-06 18:00:51 +00001581 case Type::MemberPointer:
1582 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001583
John McCall9d156a72011-01-06 01:58:22 +00001584 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001585 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001586 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001587 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001588 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001589 case Type::TypeOfExpr:
1590 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001591 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001592 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001593 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001594 llvm_unreachable("type should have been unwrapped!");
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001595 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001596 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001597
1598 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001599 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001600 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001601 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001602 << Diag;
1603 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001604}
1605
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001606/// CreateMemberType - Create new member and increase Offset by FType's size.
1607llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001608 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001609 uint64_t *Offset) {
1610 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1611 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1612 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001613 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001614 FieldSize, FieldAlign,
1615 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001616 *Offset += FieldSize;
1617 return Ty;
1618}
1619
Devang Patel120bf322011-04-23 00:08:01 +00001620/// getFunctionDeclaration - Return debug info descriptor to describe method
1621/// declaration for the given method definition.
1622llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1623 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1624 if (!FD) return llvm::DISubprogram();
1625
1626 // Setup context.
1627 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1628
Devang Patel22a5cdf2011-04-29 23:42:32 +00001629 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1630 MI = SPCache.find(FD);
1631 if (MI != SPCache.end()) {
1632 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1633 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1634 return SP;
1635 }
1636
Devang Patel120bf322011-04-23 00:08:01 +00001637 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1638 E = FD->redecls_end(); I != E; ++I) {
1639 const FunctionDecl *NextFD = *I;
1640 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1641 MI = SPCache.find(NextFD);
1642 if (MI != SPCache.end()) {
1643 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1644 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1645 return SP;
1646 }
1647 }
1648 return llvm::DISubprogram();
1649}
1650
Devang Patel1c296522011-05-31 20:46:46 +00001651// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1652// implicit parameter "this".
1653llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D, QualType FnType,
1654 llvm::DIFile F) {
1655 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1656 return getOrCreateMethodType(Method, F);
Devang Patelc478f212011-05-31 21:18:50 +00001657 else if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00001658 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001659 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00001660
1661 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00001662 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00001663 // "self" pointer is always first argument.
1664 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
1665 // "cmd" pointer is always second argument.
1666 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Pateld127bcb2011-05-31 22:21:11 +00001667 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001668 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00001669 PE = OMethod->param_end(); PI != PE; ++PI)
1670 Elts.push_back(getOrCreateType((*PI)->getType(), F));
1671
Devang Patelc478f212011-05-31 21:18:50 +00001672 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1673 return DBuilder.createSubroutineType(F, EltTypeArray);
1674 }
Devang Patel1c296522011-05-31 20:46:46 +00001675 return getOrCreateType(FnType, F);
1676}
1677
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001678/// EmitFunctionStart - Constructs the debug code for entering a function -
1679/// "llvm.dbg.func.start.".
Devang Patel9c6c3a02010-01-14 00:36:21 +00001680void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001681 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001682 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00001683
Chris Lattner5f9e2722011-07-23 10:55:15 +00001684 StringRef Name;
1685 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001686
Eric Christopheraa2164c2011-09-29 00:00:45 +00001687 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001688
Devang Patel9c6c3a02010-01-14 00:36:21 +00001689 const Decl *D = GD.getDecl();
Devang Patel12e6d832011-04-05 20:28:21 +00001690
Devang Patel3951e712010-10-07 22:03:49 +00001691 unsigned Flags = 0;
Devang Patel0692f832010-10-11 21:58:41 +00001692 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1693 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00001694 llvm::DIArray TParamsArray;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001695 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Devang Patel4125fd22010-01-19 01:54:44 +00001696 // If there is a DISubprogram for this function available then use it.
1697 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1698 FI = SPCache.find(FD);
1699 if (FI != SPCache.end()) {
Gabor Greif38c9b172010-09-18 13:00:17 +00001700 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelab699792010-05-07 18:12:35 +00001701 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1702 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001703 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001704 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00001705 return;
1706 }
1707 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00001708 Name = getFunctionName(FD);
1709 // Use mangled name as linkage name for c/c++ functions.
Devang Patela87a2b22011-05-02 22:49:30 +00001710 if (!Fn->hasInternalLinkage())
Devang Patel2df74c02011-05-02 22:37:48 +00001711 LinkageName = CGM.getMangledName(GD);
Devang Patel58faf202010-10-22 17:11:50 +00001712 if (LinkageName == Name)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001713 LinkageName = StringRef();
Devang Patel3951e712010-10-07 22:03:49 +00001714 if (FD->hasPrototype())
1715 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel0692f832010-10-11 21:58:41 +00001716 if (const NamespaceDecl *NSDecl =
1717 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
Devang Patel170cef32010-12-09 00:33:05 +00001718 FDContext = getOrCreateNameSpace(NSDecl);
Devang Patelbc6a1912011-05-17 00:20:09 +00001719 else if (const RecordDecl *RDecl =
1720 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
1721 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00001722
1723 // Collect template parameters.
1724 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
David Chisnall70b9b442010-09-02 17:16:32 +00001725 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00001726 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00001727 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001728 } else {
Devang Patel58faf202010-10-22 17:11:50 +00001729 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00001730 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00001731 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001732 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001733 if (!Name.empty() && Name[0] == '\01')
1734 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001735
Devang Patel970c6182010-04-24 00:49:16 +00001736 // It is expected that CurLoc is set before using EmitFunctionStart.
1737 // Usually, CurLoc points to the left bracket location of compound
1738 // statement representing function body.
Devang Patel8ab870d2010-05-12 23:46:38 +00001739 unsigned LineNo = getLineNumber(CurLoc);
Devang Patele2472482010-09-29 21:05:52 +00001740 if (D->isImplicit())
1741 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel120bf322011-04-23 00:08:01 +00001742 llvm::DISubprogram SPDecl = getFunctionDeclaration(D);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001743 llvm::DISubprogram SP =
Devang Patel16674e82011-02-22 18:56:36 +00001744 DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
Devang Patel1c296522011-05-31 20:46:46 +00001745 LineNo, getOrCreateFunctionType(D, FnType, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001746 Fn->hasInternalLinkage(), true/*definition*/,
Devang Patel5ecb1df2011-04-05 22:54:11 +00001747 Flags, CGM.getLangOptions().Optimize, Fn,
Devang Patel120bf322011-04-23 00:08:01 +00001748 TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001749
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001750 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00001751 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001752 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001753 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001754
1755 // Clear stack used to keep track of #line directives.
1756 LineDirectiveFiles.clear();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001757}
1758
Eric Christopher69a1b742011-09-29 00:00:37 +00001759// UpdateLineDirectiveRegion - Update region stack only if #line directive
1760// has introduced scope change.
1761void CGDebugInfo::UpdateLineDirectiveRegion(CGBuilderTy &Builder) {
1762 if (CurLoc.isInvalid() || CurLoc.isMacroID() ||
1763 PrevLoc.isInvalid() || PrevLoc.isMacroID())
1764 return;
1765 SourceManager &SM = CGM.getContext().getSourceManager();
1766 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
1767 PresumedLoc PPLoc = SM.getPresumedLoc(PrevLoc);
1768
1769 if (PCLoc.isInvalid() || PPLoc.isInvalid() ||
1770 !strcmp(PPLoc.getFilename(), PCLoc.getFilename()))
1771 return;
1772
1773 // If #line directive stack is empty then we are entering a new scope.
1774 if (LineDirectiveFiles.empty()) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001775 EmitLexicalBlockStart(Builder);
Eric Christopher69a1b742011-09-29 00:00:37 +00001776 LineDirectiveFiles.push_back(PCLoc.getFilename());
1777 return;
1778 }
1779
Eric Christopheraa2164c2011-09-29 00:00:45 +00001780 assert (LexicalBlockStack.size() >= LineDirectiveFiles.size()
Eric Christopher69a1b742011-09-29 00:00:37 +00001781 && "error handling #line regions!");
1782
1783 bool SeenThisFile = false;
1784 // Chek if current file is already seen earlier.
1785 for(std::vector<const char *>::iterator I = LineDirectiveFiles.begin(),
1786 E = LineDirectiveFiles.end(); I != E; ++I)
1787 if (!strcmp(PCLoc.getFilename(), *I)) {
1788 SeenThisFile = true;
1789 break;
1790 }
1791
1792 // If #line for this file is seen earlier then pop out #line regions.
1793 if (SeenThisFile) {
1794 while (!LineDirectiveFiles.empty()) {
1795 const char *LastFile = LineDirectiveFiles.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00001796 LexicalBlockStack.pop_back();
Eric Christopher69a1b742011-09-29 00:00:37 +00001797 LineDirectiveFiles.pop_back();
1798 if (!strcmp(PPLoc.getFilename(), LastFile))
1799 break;
1800 }
1801 return;
1802 }
1803
1804 // .. otherwise insert new #line region.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001805 EmitLexicalBlockStart(Builder);
Eric Christopher69a1b742011-09-29 00:00:37 +00001806 LineDirectiveFiles.push_back(PCLoc.getFilename());
1807
1808 return;
1809}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001810
Eric Christopher5321bc42011-09-29 00:00:41 +00001811/// EmitLocation - Emit metadata to indicate a change in line/column
1812/// information in the source file.
1813void CGDebugInfo::EmitLocation(CGBuilderTy &Builder) {
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001814 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001815
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001816 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001817 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patelcb2a07e2011-07-19 00:52:18 +00001818 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00001819 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00001820 // New Builder may not be in sync with CGDebugInfo.
1821 if (!Builder.getCurrentDebugLocation().isUnknown())
1822 return;
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001823
Eric Christopher414ee4b2011-09-29 00:00:35 +00001824 // The file may have had a line directive change. Process any of
1825 // those before updating the state.
1826 UpdateLineDirectiveRegion(Builder);
1827
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001828 // Update last state.
1829 PrevLoc = CurLoc;
1830
Eric Christopheraa2164c2011-09-29 00:00:45 +00001831 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00001832 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
1833 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00001834 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001835}
1836
Eric Christopheraa2164c2011-09-29 00:00:45 +00001837/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00001838/// region - beginning of a DW_TAG_lexical_block.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001839void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder) {
Devang Patel8fae0602009-11-13 19:10:24 +00001840 llvm::DIDescriptor D =
Eric Christopheraa2164c2011-09-29 00:00:45 +00001841 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
Devang Patel823d8e92010-12-08 22:42:58 +00001842 llvm::DIDescriptor() :
Eric Christopheraa2164c2011-09-29 00:00:45 +00001843 llvm::DIDescriptor(LexicalBlockStack.back()),
Devang Patel823d8e92010-12-08 22:42:58 +00001844 getOrCreateFile(CurLoc),
1845 getLineNumber(CurLoc),
1846 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00001847 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001848 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001849}
1850
Eric Christopheraa2164c2011-09-29 00:00:45 +00001851/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00001852/// region - end of a DW_TAG_lexical_block.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001853void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder) {
1854 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00001855
Eric Christopher43202ae2011-09-26 15:03:22 +00001856 // Provide a region stop point.
Eric Christopher5321bc42011-09-29 00:00:41 +00001857 EmitLocation(Builder);
Mike Stump1eb44332009-09-09 15:08:12 +00001858
Eric Christopheraa2164c2011-09-29 00:00:45 +00001859 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001860}
1861
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001862/// EmitFunctionEnd - Constructs the debug code for exiting a function.
1863void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001864 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001865 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00001866 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001867
1868 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001869 while (LexicalBlockStack.size() != RCount)
1870 EmitLexicalBlockEnd(Builder);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001871 FnBeginRegionCount.pop_back();
1872}
1873
Devang Patel809b9bb2010-02-10 18:49:08 +00001874// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
1875// See BuildByRefType.
1876llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
1877 uint64_t *XOffset) {
1878
Chris Lattner5f9e2722011-07-23 10:55:15 +00001879 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00001880 QualType FType;
1881 uint64_t FieldSize, FieldOffset;
1882 unsigned FieldAlign;
1883
Devang Patel17800552010-03-09 00:44:50 +00001884 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001885 QualType Type = VD->getType();
1886
1887 FieldOffset = 0;
1888 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001889 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
1890 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001891 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001892 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
1893 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
1894
John McCall6b5a61b2011-02-07 10:33:21 +00001895 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00001896 if (HasCopyAndDispose) {
1897 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001898 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
1899 &FieldOffset));
1900 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
1901 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001902 }
1903
1904 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00001905 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001906 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00001907 CharUnits FieldOffsetInBytes
1908 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
1909 CharUnits AlignedOffsetInBytes
1910 = FieldOffsetInBytes.RoundUpToAlignment(Align);
1911 CharUnits NumPaddingBytes
1912 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00001913
Ken Dyck573be632011-04-22 17:34:18 +00001914 if (NumPaddingBytes.isPositive()) {
1915 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00001916 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
1917 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001918 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001919 }
1920 }
1921
1922 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001923 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00001924 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00001925 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00001926
1927 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00001928 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001929 0, FieldSize, FieldAlign,
1930 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00001931 EltTys.push_back(FieldTy);
1932 FieldOffset += FieldSize;
1933
Jay Foadc556ef22011-04-24 10:11:03 +00001934 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00001935
Devang Patele2472482010-09-29 21:05:52 +00001936 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00001937
Devang Patel16674e82011-02-22 18:56:36 +00001938 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001939 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00001940}
Devang Patel823d8e92010-12-08 22:42:58 +00001941
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00001942/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00001943void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00001944 llvm::Value *Storage,
1945 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001946 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00001947
Devang Patel17800552010-03-09 00:44:50 +00001948 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001949 llvm::DIType Ty;
1950 uint64_t XOffset = 0;
1951 if (VD->hasAttr<BlocksAttr>())
1952 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
1953 else
1954 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00001955
Devang Patelf4e54a22010-05-07 23:05:55 +00001956 // If there is not any debug info for type then do not emit debug info
1957 // for this variable.
1958 if (!Ty)
1959 return;
1960
Devang Patel34753802011-02-16 01:11:51 +00001961 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
1962 // If Storage is an aggregate returned as 'sret' then let debugger know
1963 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00001964 if (Arg->hasStructRetAttr())
Devang Patel16674e82011-02-22 18:56:36 +00001965 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00001966 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
1967 // If an aggregate variable has non trivial destructor or non trivial copy
1968 // constructor than it is pass indirectly. Let debug info know about this
1969 // by using reference of the aggregate type as a argument type.
1970 if (!Record->hasTrivialCopyConstructor() || !Record->hasTrivialDestructor())
Devang Patel16674e82011-02-22 18:56:36 +00001971 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00001972 }
1973 }
Devang Patel0691f932011-02-10 00:40:52 +00001974
Chris Lattner9c85ba32008-11-10 06:08:34 +00001975 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00001976 unsigned Line = getLineNumber(VD->getLocation());
1977 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00001978 unsigned Flags = 0;
1979 if (VD->isImplicit())
1980 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001981 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00001982
Chris Lattner5f9e2722011-07-23 10:55:15 +00001983 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00001984 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00001985 if (VD->hasAttr<BlocksAttr>()) {
1986 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001987 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00001988 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00001989 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00001990 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00001991 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001992 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00001993 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00001994 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
1995 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00001996 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00001997 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00001998 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
1999
2000 // Create the descriptor for the variable.
2001 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002002 DBuilder.createComplexVariable(Tag,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002003 llvm::DIDescriptor(LexicalBlockStack.back()),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002004 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002005 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002006
2007 // Insert an llvm.dbg.declare into the current block.
2008 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002009 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002010
2011 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2012 return;
2013 }
2014 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002015 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002016 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002017 Name, Unit, Line, Ty,
Devang Patel093ac462011-03-03 20:13:15 +00002018 CGM.getLangOptions().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002019
2020 // Insert an llvm.dbg.declare into the current block.
2021 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002022 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002023
2024 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002025 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002026 }
2027
2028 // If VD is an anonymous union then Storage represents value for
2029 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002030 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2031 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2032 if (RD->isUnion()) {
2033 for (RecordDecl::field_iterator I = RD->field_begin(),
2034 E = RD->field_end();
2035 I != E; ++I) {
2036 FieldDecl *Field = *I;
2037 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002038 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002039
John McCall8178df32011-02-22 22:38:33 +00002040 // Ignore unnamed fields. Do not ignore unnamed records.
2041 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2042 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002043
John McCall8178df32011-02-22 22:38:33 +00002044 // Use VarDecl's Tag, Scope and Line number.
2045 llvm::DIVariable D =
2046 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2047 FieldName, Unit, Line, FieldTy,
Devang Patel093ac462011-03-03 20:13:15 +00002048 CGM.getLangOptions().Optimize, Flags,
2049 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002050
John McCall8178df32011-02-22 22:38:33 +00002051 // Insert an llvm.dbg.declare into the current block.
2052 llvm::Instruction *Call =
2053 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002054
John McCall8178df32011-02-22 22:38:33 +00002055 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002056 }
John McCall8178df32011-02-22 22:38:33 +00002057 }
2058 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002059}
2060
Devang Patele2d01912011-04-25 23:43:36 +00002061void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2062 llvm::Value *Storage,
2063 CGBuilderTy &Builder) {
2064 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2065}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002066
Devang Patele2d01912011-04-25 23:43:36 +00002067void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2068 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2069 const CGBlockInfo &blockInfo) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002070 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002071
Devang Patel2b594b92010-04-26 23:28:46 +00002072 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002073 return;
Devang Patele2d01912011-04-25 23:43:36 +00002074
John McCall6b5a61b2011-02-07 10:33:21 +00002075 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002076
Mike Stumpb1a6e682009-09-30 02:43:10 +00002077 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002078 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002079 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002080 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002081 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2082 else
2083 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002084
2085 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002086 unsigned Line = getLineNumber(VD->getLocation());
2087 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002088
John McCall6b5a61b2011-02-07 10:33:21 +00002089 const llvm::TargetData &target = CGM.getTargetData();
2090
2091 CharUnits offset = CharUnits::fromQuantity(
2092 target.getStructLayout(blockInfo.StructureType)
2093 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2094
Chris Lattner5f9e2722011-07-23 10:55:15 +00002095 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002096 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002097 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002098 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002099 if (isByRef) {
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002100 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2101 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002102 // offset of __forwarding field
Devang Patel37833b02011-04-26 21:16:49 +00002103 offset = CGM.getContext().toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattner14b1a362010-01-25 03:29:35 +00002104 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002105 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2106 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002107 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002108 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002109 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002110 }
2111
2112 // Create the descriptor for the variable.
2113 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002114 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002115 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002116 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002117 // Insert an llvm.dbg.declare into the current block.
Devang Patelebf16e82009-11-11 19:10:19 +00002118 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002119 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Chris Lattnerd5b89022009-12-28 21:44:41 +00002120
Eric Christopheraa2164c2011-09-29 00:00:45 +00002121 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelf8e10a52010-05-10 23:48:38 +00002122 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002123}
2124
Chris Lattner9c85ba32008-11-10 06:08:34 +00002125/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2126/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002127void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002128 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002129 CGBuilderTy &Builder) {
Devang Patel093ac462011-03-03 20:13:15 +00002130 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002131}
2132
John McCall8178df32011-02-22 22:38:33 +00002133namespace {
2134 struct BlockLayoutChunk {
2135 uint64_t OffsetInBits;
2136 const BlockDecl::Capture *Capture;
2137 };
2138 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2139 return l.OffsetInBits < r.OffsetInBits;
2140 }
2141}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002142
John McCall8178df32011-02-22 22:38:33 +00002143void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2144 llvm::Value *addr,
2145 CGBuilderTy &Builder) {
2146 ASTContext &C = CGM.getContext();
2147 const BlockDecl *blockDecl = block.getBlockDecl();
2148
2149 // Collect some general information about the block's location.
2150 SourceLocation loc = blockDecl->getCaretLocation();
2151 llvm::DIFile tunit = getOrCreateFile(loc);
2152 unsigned line = getLineNumber(loc);
2153 unsigned column = getColumnNumber(loc);
2154
2155 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002156 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002157
2158 const llvm::StructLayout *blockLayout =
2159 CGM.getTargetData().getStructLayout(block.StructureType);
2160
Chris Lattner5f9e2722011-07-23 10:55:15 +00002161 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002162 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2163 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002164 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002165 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2166 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002167 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002168 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2169 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002170 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002171 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2172 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002173 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002174 fields.push_back(createFieldType("__descriptor",
2175 C.getPointerType(block.NeedsCopyDispose ?
2176 C.getBlockDescriptorExtendedType() :
2177 C.getBlockDescriptorType()),
2178 0, loc, AS_public,
2179 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002180 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002181
2182 // We want to sort the captures by offset, not because DWARF
2183 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002184 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002185
2186 // 'this' capture.
2187 if (blockDecl->capturesCXXThis()) {
2188 BlockLayoutChunk chunk;
2189 chunk.OffsetInBits =
2190 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2191 chunk.Capture = 0;
2192 chunks.push_back(chunk);
2193 }
2194
2195 // Variable captures.
2196 for (BlockDecl::capture_const_iterator
2197 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2198 i != e; ++i) {
2199 const BlockDecl::Capture &capture = *i;
2200 const VarDecl *variable = capture.getVariable();
2201 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2202
2203 // Ignore constant captures.
2204 if (captureInfo.isConstant())
2205 continue;
2206
2207 BlockLayoutChunk chunk;
2208 chunk.OffsetInBits =
2209 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2210 chunk.Capture = &capture;
2211 chunks.push_back(chunk);
2212 }
2213
2214 // Sort by offset.
2215 llvm::array_pod_sort(chunks.begin(), chunks.end());
2216
Chris Lattner5f9e2722011-07-23 10:55:15 +00002217 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002218 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2219 uint64_t offsetInBits = i->OffsetInBits;
2220 const BlockDecl::Capture *capture = i->Capture;
2221
2222 // If we have a null capture, this must be the C++ 'this' capture.
2223 if (!capture) {
2224 const CXXMethodDecl *method =
2225 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2226 QualType type = method->getThisType(C);
2227
2228 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002229 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002230 continue;
2231 }
2232
2233 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002234 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002235
2236 llvm::DIType fieldType;
2237 if (capture->isByRef()) {
2238 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2239
2240 // FIXME: this creates a second copy of this type!
2241 uint64_t xoffset;
2242 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2243 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002244 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002245 ptrInfo.first, ptrInfo.second,
2246 offsetInBits, 0, fieldType);
2247 } else {
2248 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002249 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002250 }
2251 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002252 }
2253
2254 llvm::SmallString<36> typeName;
2255 llvm::raw_svector_ostream(typeName)
2256 << "__block_literal_" << CGM.getUniqueBlockCount();
2257
Jay Foadc556ef22011-04-24 10:11:03 +00002258 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002259
2260 llvm::DIType type =
2261 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2262 CGM.getContext().toBits(block.BlockSize),
2263 CGM.getContext().toBits(block.BlockAlign),
2264 0, fieldsArray);
2265 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2266
2267 // Get overall information about the block.
2268 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002269 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002270 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002271
2272 // Create the descriptor for the parameter.
2273 llvm::DIVariable debugVar =
2274 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2275 llvm::DIDescriptor(scope),
2276 name, tunit, line, type,
Devang Patel093ac462011-03-03 20:13:15 +00002277 CGM.getLangOptions().Optimize, flags,
2278 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002279
2280 // Insert an llvm.dbg.value into the current block.
2281 llvm::Instruction *declare =
2282 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2283 Builder.GetInsertBlock());
2284 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2285}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002286
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002287/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002288void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002289 const VarDecl *D) {
2290
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002291 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002292 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002293 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002294
Devang Pateleb6d79b2010-02-01 21:34:11 +00002295 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002296 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002297
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002298 // CodeGen turns int[] into int[1] so we'll do the same here.
2299 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002300
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002301 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002302 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002303
Anders Carlsson20f12a22009-12-06 18:00:51 +00002304 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002305 ArrayType::Normal, 0);
2306 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002307 StringRef DeclName = D->getName();
2308 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002309 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2310 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002311 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002312 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002313 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002314 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002315 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002316 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002317 Unit, LineNo, getOrCreateType(T, Unit),
2318 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002319}
2320
Devang Patel9ca36b62009-02-26 21:10:26 +00002321/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002322void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002323 ObjCInterfaceDecl *ID) {
Devang Patel9ca36b62009-02-26 21:10:26 +00002324 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002325 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002326 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002327
Chris Lattner5f9e2722011-07-23 10:55:15 +00002328 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002329
Devang Pateld6c5a262010-02-01 21:52:22 +00002330 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002331 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002332
Devang Patel9ca36b62009-02-26 21:10:26 +00002333 // CodeGen turns int[] into int[1] so we'll do the same here.
2334 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002335
Devang Patel9ca36b62009-02-26 21:10:26 +00002336 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002337 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002338
Anders Carlsson20f12a22009-12-06 18:00:51 +00002339 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002340 ArrayType::Normal, 0);
2341 }
2342
Devang Patel16674e82011-02-22 18:56:36 +00002343 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002344 getOrCreateType(T, Unit),
2345 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002346}
Devang Patelabb485f2010-02-01 19:16:32 +00002347
Devang Patel25c2c8f2010-08-10 17:53:33 +00002348/// EmitGlobalVariable - Emit global variable's debug info.
2349void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002350 llvm::Constant *Init) {
Devang Patel8d308382010-08-10 07:24:25 +00002351 // Create the descriptor for the variable.
2352 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002353 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002354 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002355 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
2356 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
Devang Patel31f7d022011-01-17 22:23:07 +00002357 Ty = CreateEnumType(ED);
Devang Patel6237cea2010-08-23 22:07:25 +00002358 }
Devang Patel0317ab02010-08-10 18:27:15 +00002359 // Do not use DIGlobalVariable for enums.
2360 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2361 return;
Devang Patel16674e82011-02-22 18:56:36 +00002362 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002363 getLineNumber(VD->getLocation()),
2364 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002365}
2366
Devang Patelabb485f2010-02-01 19:16:32 +00002367/// getOrCreateNamesSpace - Return namespace descriptor for the given
2368/// namespace decl.
2369llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002370CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002371 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2372 NameSpaceCache.find(NSDecl);
2373 if (I != NameSpaceCache.end())
2374 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2375
Devang Patel8ab870d2010-05-12 23:46:38 +00002376 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002377 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002378 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002379 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002380 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002381 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002382 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002383 return NS;
2384}
Devang Patele80d5672011-03-23 16:29:39 +00002385
2386/// UpdateCompletedType - Update type cache because the type is now
2387/// translated.
2388void CGDebugInfo::UpdateCompletedType(const TagDecl *TD) {
2389 QualType Ty = CGM.getContext().getTagDeclType(TD);
2390
2391 // If the type exist in type cache then remove it from the cache.
2392 // There is no need to prepare debug info for the completed type
2393 // right now. It will be generated on demand lazily.
2394 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2395 TypeCache.find(Ty.getAsOpaquePtr());
2396 if (it != TypeCache.end())
2397 TypeCache.erase(it);
2398}