blob: 11e0e31c861547e2252f608f4a35dd52bf2a9cd8 [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"
Benjamin Kramer00bd44d2012-02-04 12:31:12 +000024#include "clang/Basic/SourceManager.h"
Benjamin Kramerd7a3e2c2012-02-07 22:29:24 +000025#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"
Benjamin Kramerbcbca752011-10-14 18:45:11 +000036#include "llvm/Support/FileSystem.h"
John McCall6b5a61b2011-02-07 10:33:21 +000037#include "llvm/Target/TargetData.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000038using namespace clang;
39using namespace clang::CodeGen;
40
Anders Carlsson20f12a22009-12-06 18:00:51 +000041CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
Devang Patel823d8e92010-12-08 22:42:58 +000042 : CGM(CGM), DBuilder(CGM.getModule()),
Dan Gohman4cac5b42010-08-20 22:02:57 +000043 BlockLiteralGenericSet(false) {
Devang Patel17800552010-03-09 00:44:50 +000044 CreateCompileUnit();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000045}
46
Chris Lattner9c85ba32008-11-10 06:08:34 +000047CGDebugInfo::~CGDebugInfo() {
Eric Christopherab5278e2011-10-11 23:00:51 +000048 assert(LexicalBlockStack.empty() &&
49 "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) {
Eric Christopher944542e2011-10-11 23:00:45 +000053 // If the new location isn't valid return.
54 if (!Loc.isValid()) return;
55
56 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
Eric Christopher73fb3502011-10-13 21:45:18 +000057
58 // If we've changed files in the middle of a lexical scope go ahead
59 // and create a new lexical scope with file node if it's different
60 // from the one in the scope.
61 if (LexicalBlockStack.empty()) return;
62
63 SourceManager &SM = CGM.getContext().getSourceManager();
64 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
65 PresumedLoc PPLoc = SM.getPresumedLoc(PrevLoc);
66
67 if (PCLoc.isInvalid() || PPLoc.isInvalid() ||
68 !strcmp(PPLoc.getFilename(), PCLoc.getFilename()))
69 return;
70
71 llvm::MDNode *LB = LexicalBlockStack.back();
72 llvm::DIScope Scope = llvm::DIScope(LB);
73 if (Scope.isLexicalBlockFile()) {
74 llvm::DILexicalBlockFile LBF = llvm::DILexicalBlockFile(LB);
75 llvm::DIDescriptor D
76 = DBuilder.createLexicalBlockFile(LBF.getScope(),
Devang Patel53bc5182012-02-08 00:10:20 +000077 getOrCreateFile(CurLoc));
Eric Christopher73fb3502011-10-13 21:45:18 +000078 llvm::MDNode *N = D;
79 LexicalBlockStack.pop_back();
80 LexicalBlockStack.push_back(N);
81 } else if (Scope.isLexicalBlock()) {
82 llvm::DIDescriptor D
83 = DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc));
84 llvm::MDNode *N = D;
85 LexicalBlockStack.pop_back();
86 LexicalBlockStack.push_back(N);
87 }
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000088}
89
Devang Patel33583052010-01-28 23:15:27 +000090/// getContextDescriptor - Get context info for the decl.
Devang Patel170cef32010-12-09 00:33:05 +000091llvm::DIDescriptor CGDebugInfo::getContextDescriptor(const Decl *Context) {
Devang Pateleb6d79b2010-02-01 21:34:11 +000092 if (!Context)
Devang Patel170cef32010-12-09 00:33:05 +000093 return TheCU;
Devang Pateleb6d79b2010-02-01 21:34:11 +000094
95 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
96 I = RegionMap.find(Context);
Richard Smithe7259aa2012-08-17 04:17:54 +000097 if (I != RegionMap.end()) {
98 llvm::Value *V = I->second;
99 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(V));
100 }
Devang Patel411894b2010-02-01 22:40:08 +0000101
Devang Pateleb6d79b2010-02-01 21:34:11 +0000102 // Check namespace.
103 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
Devang Patel170cef32010-12-09 00:33:05 +0000104 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
Devang Patel8b90a782010-05-13 23:52:37 +0000105
106 if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context)) {
107 if (!RDecl->isDependentType()) {
Devang Patela2e57692010-10-28 17:27:32 +0000108 llvm::DIType Ty = getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
Devang Patel170cef32010-12-09 00:33:05 +0000109 getOrCreateMainFile());
Devang Patel8b90a782010-05-13 23:52:37 +0000110 return llvm::DIDescriptor(Ty);
111 }
112 }
Devang Patel170cef32010-12-09 00:33:05 +0000113 return TheCU;
Devang Patel979ec2e2009-10-06 00:35:31 +0000114}
115
Devang Patel9c6c3a02010-01-14 00:36:21 +0000116/// getFunctionName - Get function name for the given FunctionDecl. If the
117/// name is constructred on demand (e.g. C++ destructor) then the name
118/// is stored on the side.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000119StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
Devang Patel9c6c3a02010-01-14 00:36:21 +0000120 assert (FD && "Invalid FunctionDecl!");
121 IdentifierInfo *FII = FD->getIdentifier();
Eric Christopher16717452012-03-14 00:25:46 +0000122 FunctionTemplateSpecializationInfo *Info
123 = FD->getTemplateSpecializationInfo();
124 if (!Info && FII)
Devang Patel9c6c3a02010-01-14 00:36:21 +0000125 return FII->getName();
126
127 // Otherwise construct human readable name for debug info.
128 std::string NS = FD->getNameAsString();
129
Eric Christopher16717452012-03-14 00:25:46 +0000130 // Add any template specialization args.
131 if (Info) {
132 const TemplateArgumentList *TArgs = Info->TemplateArguments;
133 const TemplateArgument *Args = TArgs->data();
134 unsigned NumArgs = TArgs->size();
135 PrintingPolicy Policy(CGM.getLangOpts());
136 NS += TemplateSpecializationType::PrintTemplateArgumentList(Args,
137 NumArgs,
138 Policy);
139 }
140
Devang Patel9c6c3a02010-01-14 00:36:21 +0000141 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +0000142 char *StrPtr = DebugInfoNames.Allocate<char>(NS.length());
Benjamin Kramer1b627dc2010-01-23 18:16:07 +0000143 memcpy(StrPtr, NS.data(), NS.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000144 return StringRef(StrPtr, NS.length());
Devang Patel9c6c3a02010-01-14 00:36:21 +0000145}
146
Chris Lattner5f9e2722011-07-23 10:55:15 +0000147StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000148 SmallString<256> MethodName;
David Chisnall52044a22010-09-02 18:01:51 +0000149 llvm::raw_svector_ostream OS(MethodName);
150 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
151 const DeclContext *DC = OMD->getDeclContext();
Devang Patela2e57692010-10-28 17:27:32 +0000152 if (const ObjCImplementationDecl *OID =
153 dyn_cast<const ObjCImplementationDecl>(DC)) {
David Chisnall52044a22010-09-02 18:01:51 +0000154 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000155 } else if (const ObjCInterfaceDecl *OID =
156 dyn_cast<const ObjCInterfaceDecl>(DC)) {
Fariborz Jahanian1a4c9372010-10-18 17:51:06 +0000157 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000158 } else if (const ObjCCategoryImplDecl *OCD =
159 dyn_cast<const ObjCCategoryImplDecl>(DC)){
David Chisnall52044a22010-09-02 18:01:51 +0000160 OS << ((NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
161 OCD->getIdentifier()->getNameStart() << ')';
162 }
163 OS << ' ' << OMD->getSelector().getAsString() << ']';
164
165 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
166 memcpy(StrPtr, MethodName.begin(), OS.tell());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000167 return StringRef(StrPtr, OS.tell());
David Chisnall52044a22010-09-02 18:01:51 +0000168}
169
Eric Christopherecae5962012-03-29 17:31:33 +0000170/// getSelectorName - Return selector name. This is used for debugging
171/// info.
172StringRef CGDebugInfo::getSelectorName(Selector S) {
173 const std::string &SName = S.getAsString();
174 char *StrPtr = DebugInfoNames.Allocate<char>(SName.size());
175 memcpy(StrPtr, SName.data(), SName.size());
176 return StringRef(StrPtr, SName.size());
177}
178
Devang Patel700a1cb2010-07-20 20:24:18 +0000179/// getClassName - Get class name including template argument list.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000180StringRef
Eric Christopher9caf4402012-02-08 01:53:14 +0000181CGDebugInfo::getClassName(const RecordDecl *RD) {
182 const ClassTemplateSpecializationDecl *Spec
Devang Patel700a1cb2010-07-20 20:24:18 +0000183 = dyn_cast<ClassTemplateSpecializationDecl>(RD);
184 if (!Spec)
185 return RD->getName();
186
187 const TemplateArgument *Args;
188 unsigned NumArgs;
Devang Patel700a1cb2010-07-20 20:24:18 +0000189 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
190 const TemplateSpecializationType *TST =
191 cast<TemplateSpecializationType>(TAW->getType());
192 Args = TST->getArgs();
193 NumArgs = TST->getNumArgs();
194 } else {
195 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Douglas Gregor910f8002010-11-07 23:05:16 +0000196 Args = TemplateArgs.data();
197 NumArgs = TemplateArgs.size();
Devang Patel700a1cb2010-07-20 20:24:18 +0000198 }
Benjamin Kramerc6b468e2012-04-13 18:00:37 +0000199 StringRef Name = RD->getIdentifier()->getName();
David Blaikie4e4d0842012-03-11 07:00:24 +0000200 PrintingPolicy Policy(CGM.getLangOpts());
Benjamin Kramerc6b468e2012-04-13 18:00:37 +0000201 std::string TemplateArgList =
202 TemplateSpecializationType::PrintTemplateArgumentList(Args, NumArgs, Policy);
Devang Patel700a1cb2010-07-20 20:24:18 +0000203
204 // Copy this name on the side and use its reference.
Benjamin Kramerc6b468e2012-04-13 18:00:37 +0000205 size_t Length = Name.size() + TemplateArgList.size();
206 char *StrPtr = DebugInfoNames.Allocate<char>(Length);
207 memcpy(StrPtr, Name.data(), Name.size());
208 memcpy(StrPtr + Name.size(), TemplateArgList.data(), TemplateArgList.size());
209 return StringRef(StrPtr, Length);
Devang Patel700a1cb2010-07-20 20:24:18 +0000210}
211
Devang Patel17800552010-03-09 00:44:50 +0000212/// getOrCreateFile - Get the file debug info descriptor for the input location.
213llvm::DIFile CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
Devang Patel823d8e92010-12-08 22:42:58 +0000214 if (!Loc.isValid())
215 // If Location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000216 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel823d8e92010-12-08 22:42:58 +0000217
Anders Carlsson20f12a22009-12-06 18:00:51 +0000218 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patel17800552010-03-09 00:44:50 +0000219 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Ted Kremenek9c250392010-03-30 00:27:51 +0000220
Chris Lattner5f9e2722011-07-23 10:55:15 +0000221 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
Douglas Gregor8c457a82010-11-11 20:45:16 +0000222 // If the location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000223 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Douglas Gregor8c457a82010-11-11 20:45:16 +0000224
Ted Kremenek9c250392010-03-30 00:27:51 +0000225 // Cache the results.
226 const char *fname = PLoc.getFilename();
227 llvm::DenseMap<const char *, llvm::WeakVH>::iterator it =
228 DIFileCache.find(fname);
229
230 if (it != DIFileCache.end()) {
231 // Verify that the information still exists.
Richard Smithe7259aa2012-08-17 04:17:54 +0000232 if (llvm::Value *V = it->second)
233 return llvm::DIFile(cast<llvm::MDNode>(V));
Ted Kremenek9c250392010-03-30 00:27:51 +0000234 }
235
Devang Patel16674e82011-02-22 18:56:36 +0000236 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
Ted Kremenek9c250392010-03-30 00:27:51 +0000237
Devang Patelab699792010-05-07 18:12:35 +0000238 DIFileCache[fname] = F;
Ted Kremenek9c250392010-03-30 00:27:51 +0000239 return F;
Devang Patel17800552010-03-09 00:44:50 +0000240}
Devang Patel8ab870d2010-05-12 23:46:38 +0000241
Devang Patel532105f2010-10-28 22:03:20 +0000242/// getOrCreateMainFile - Get the file info for main compile unit.
243llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
Devang Patel16674e82011-02-22 18:56:36 +0000244 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel532105f2010-10-28 22:03:20 +0000245}
246
Devang Patel8ab870d2010-05-12 23:46:38 +0000247/// getLineNumber - Get line number for the location. If location is invalid
248/// then use current location.
249unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
Devang Patel362ed2a2012-02-06 23:24:13 +0000250 if (Loc.isInvalid() && CurLoc.isInvalid())
251 return 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000252 SourceManager &SM = CGM.getContext().getSourceManager();
253 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000254 return PLoc.isValid()? PLoc.getLine() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000255}
256
257/// getColumnNumber - Get column number for the location. If location is
258/// invalid then use current location.
259unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
Devang Patel362ed2a2012-02-06 23:24:13 +0000260 if (Loc.isInvalid() && CurLoc.isInvalid())
261 return 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000262 SourceManager &SM = CGM.getContext().getSourceManager();
263 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000264 return PLoc.isValid()? PLoc.getColumn() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000265}
266
Chris Lattner5f9e2722011-07-23 10:55:15 +0000267StringRef CGDebugInfo::getCurrentDirname() {
Nick Lewycky7c4fd912011-10-21 02:32:14 +0000268 if (!CGM.getCodeGenOpts().DebugCompilationDir.empty())
269 return CGM.getCodeGenOpts().DebugCompilationDir;
270
Devang Patelac4d13c2010-07-27 15:17:16 +0000271 if (!CWDName.empty())
272 return CWDName;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000273 SmallString<256> CWD;
Benjamin Kramerbcbca752011-10-14 18:45:11 +0000274 llvm::sys::fs::current_path(CWD);
275 char *CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
276 memcpy(CompDirnamePtr, CWD.data(), CWD.size());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000277 return CWDName = StringRef(CompDirnamePtr, CWD.size());
Devang Patelac4d13c2010-07-27 15:17:16 +0000278}
279
Devang Patel17800552010-03-09 00:44:50 +0000280/// CreateCompileUnit - Create new compile unit.
281void CGDebugInfo::CreateCompileUnit() {
282
283 // Get absolute path name.
Douglas Gregorac91b4c2010-03-18 23:46:43 +0000284 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000285 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
286 if (MainFileName.empty())
Devang Patel22fe5852010-03-12 21:04:27 +0000287 MainFileName = "<unknown>";
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000288
Douglas Gregorf6728fc2010-03-22 21:28:29 +0000289 // The main file name provided via the "-main-file-name" option contains just
290 // the file name itself with no path information. This file name may have had
291 // a relative path, so we look into the actual file entry for the main
292 // file to determine the real absolute path for the file.
Devang Patel6e6bc392010-07-23 23:04:28 +0000293 std::string MainFileDir;
Devang Patelac4d13c2010-07-27 15:17:16 +0000294 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000295 MainFileDir = MainFile->getDir()->getName();
Devang Patelac4d13c2010-07-27 15:17:16 +0000296 if (MainFileDir != ".")
297 MainFileName = MainFileDir + "/" + MainFileName;
298 }
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000299
Devang Patelac4d13c2010-07-27 15:17:16 +0000300 // Save filename string.
301 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
302 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000303 StringRef Filename(FilenamePtr, MainFileName.length());
Devang Patelac4d13c2010-07-27 15:17:16 +0000304
Chris Lattner515455a2009-03-25 03:28:08 +0000305 unsigned LangTag;
David Blaikie4e4d0842012-03-11 07:00:24 +0000306 const LangOptions &LO = CGM.getLangOpts();
Chris Lattner515455a2009-03-25 03:28:08 +0000307 if (LO.CPlusPlus) {
308 if (LO.ObjC1)
309 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
310 else
311 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
312 } else if (LO.ObjC1) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000313 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner515455a2009-03-25 03:28:08 +0000314 } else if (LO.C99) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000315 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner515455a2009-03-25 03:28:08 +0000316 } else {
317 LangTag = llvm::dwarf::DW_LANG_C89;
318 }
Devang Patel446c6192009-04-17 21:06:59 +0000319
Daniel Dunbar19f19832010-08-24 17:41:09 +0000320 std::string Producer = getClangFullVersion();
Chris Lattner4c2577a2009-05-02 01:00:04 +0000321
322 // Figure out which version of the ObjC runtime we have.
323 unsigned RuntimeVers = 0;
324 if (LO.ObjC1)
John McCall260611a2012-06-20 06:18:46 +0000325 RuntimeVers = LO.ObjCRuntime.isNonFragile() ? 2 : 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000326
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000327 // Create new compile unit.
Devang Patel16674e82011-02-22 18:56:36 +0000328 DBuilder.createCompileUnit(
Devang Patel58115002010-07-27 20:49:59 +0000329 LangTag, Filename, getCurrentDirname(),
Devang Patel823d8e92010-12-08 22:42:58 +0000330 Producer,
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000331 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel823d8e92010-12-08 22:42:58 +0000332 // FIXME - Eliminate TheCU.
333 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000334}
335
Devang Patel65e99f22009-02-25 01:36:11 +0000336/// CreateType - Get the Basic type from the cache or create a new
Chris Lattner9c85ba32008-11-10 06:08:34 +0000337/// one if necessary.
Devang Patelf1d1d9a2010-11-01 16:52:40 +0000338llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000339 unsigned Encoding = 0;
Argyrios Kyrtzidis27a00972012-05-05 04:20:28 +0000340 StringRef BTName;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000341 switch (BT->getKind()) {
John McCalle0a22d02011-10-18 21:02:43 +0000342#define BUILTIN_TYPE(Id, SingletonId)
343#define PLACEHOLDER_TYPE(Id, SingletonId) \
344 case BuiltinType::Id:
345#include "clang/AST/BuiltinTypes.def"
Devang Patele7566cf2011-09-12 18:50:21 +0000346 case BuiltinType::Dependent:
John McCalle0a22d02011-10-18 21:02:43 +0000347 llvm_unreachable("Unexpected builtin type");
Devang Patele7566cf2011-09-12 18:50:21 +0000348 case BuiltinType::NullPtr:
Devang Patelf60dca32011-09-14 23:14:14 +0000349 return DBuilder.
David Blaikie4e4d0842012-03-11 07:00:24 +0000350 createNullPtrType(BT->getName(CGM.getContext().getLangOpts()));
Chris Lattner9c85ba32008-11-10 06:08:34 +0000351 case BuiltinType::Void:
352 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000353 case BuiltinType::ObjCClass:
Eric Christopher8bf4ab32012-08-16 23:50:46 +0000354 if (ClassTy.Verify())
355 return ClassTy;
356 ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
357 "objc_class", TheCU,
358 getOrCreateMainFile(), 0);
359 return ClassTy;
Devang Patelc8972c62010-07-28 01:33:15 +0000360 case BuiltinType::ObjCId: {
361 // typedef struct objc_class *Class;
362 // typedef struct objc_object {
363 // Class isa;
364 // } *id;
365
Eric Christopher8bf4ab32012-08-16 23:50:46 +0000366 if (ObjTy.Verify())
367 return ObjTy;
368
369 if (!ClassTy.Verify())
370 ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
371 "objc_class", TheCU,
372 getOrCreateMainFile(), 0);
373
Devang Patelc8972c62010-07-28 01:33:15 +0000374 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
375
Eric Christopher8bf4ab32012-08-16 23:50:46 +0000376 llvm::DIType ISATy = DBuilder.createPointerType(ClassTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000377
Eric Christopher8bf4ab32012-08-16 23:50:46 +0000378 llvm::MDNode *ObjNode = DBuilder.createStructType(TheCU, "objc_object",
379 getOrCreateMainFile(),
380 0, 0, 0, 0,
381 llvm::DIArray());
Eric Christopherc076ef62012-08-16 23:50:35 +0000382 SmallVector<llvm::Value *, 1> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000383 llvm::DIType FieldTy =
Eric Christopher8bf4ab32012-08-16 23:50:46 +0000384 DBuilder.createMemberType(llvm::DIDescriptor(ObjNode), "isa",
Devang Patel1d323e02011-06-24 22:00:59 +0000385 getOrCreateMainFile(), 0, Size,
386 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000387 EltTys.push_back(FieldTy);
Jay Foadc556ef22011-04-24 10:11:03 +0000388 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Eric Christopherc076ef62012-08-16 23:50:35 +0000389
Eric Christopher8bf4ab32012-08-16 23:50:46 +0000390 ObjNode->replaceOperandWith(10, Elements);
391 ObjTy = llvm::DIType(ObjTy);
392 return ObjTy;
Devang Patelc8972c62010-07-28 01:33:15 +0000393 }
Devang Patel6e108ce2011-02-09 03:15:05 +0000394 case BuiltinType::ObjCSel: {
Eric Christopher8bf4ab32012-08-16 23:50:46 +0000395 if (SelTy.Verify())
396 return SelTy;
397 SelTy =
Eric Christopher917bc8d2012-02-20 18:05:04 +0000398 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christopher87380aa2012-04-23 19:00:24 +0000399 "objc_selector", TheCU, getOrCreateMainFile(),
Eric Christophere86b9ea2012-02-20 23:02:36 +0000400 0);
Eric Christopher8bf4ab32012-08-16 23:50:46 +0000401 return SelTy;
Devang Patel6e108ce2011-02-09 03:15:05 +0000402 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000403 case BuiltinType::UChar:
404 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
405 case BuiltinType::Char_S:
406 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patele8ee3f22011-09-12 17:11:58 +0000407 case BuiltinType::Char16:
408 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000409 case BuiltinType::UShort:
410 case BuiltinType::UInt:
Devang Patel31c79b42011-05-05 17:06:30 +0000411 case BuiltinType::UInt128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000412 case BuiltinType::ULong:
Devang Patel68f76b12011-09-10 00:44:49 +0000413 case BuiltinType::WChar_U:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000414 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
415 case BuiltinType::Short:
416 case BuiltinType::Int:
Devang Patel31c79b42011-05-05 17:06:30 +0000417 case BuiltinType::Int128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000418 case BuiltinType::Long:
Devang Patel68f76b12011-09-10 00:44:49 +0000419 case BuiltinType::WChar_S:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000420 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
421 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000422 case BuiltinType::Half:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000423 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000424 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000425 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000426 }
Devang Patel05127ca2010-07-28 23:23:29 +0000427
428 switch (BT->getKind()) {
429 case BuiltinType::Long: BTName = "long int"; break;
430 case BuiltinType::LongLong: BTName = "long long int"; break;
431 case BuiltinType::ULong: BTName = "long unsigned int"; break;
432 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
433 default:
David Blaikie4e4d0842012-03-11 07:00:24 +0000434 BTName = BT->getName(CGM.getContext().getLangOpts());
Devang Patel05127ca2010-07-28 23:23:29 +0000435 break;
436 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000437 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000438 uint64_t Size = CGM.getContext().getTypeSize(BT);
439 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000440 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000441 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000442 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000443}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000444
Devang Patel344ff5d2010-12-09 00:25:29 +0000445llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000446 // Bit size, align and offset of the type.
447 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
448 if (Ty->isComplexIntegerType())
449 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000450
Anders Carlsson20f12a22009-12-06 18:00:51 +0000451 uint64_t Size = CGM.getContext().getTypeSize(Ty);
452 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000453 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000454 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel823d8e92010-12-08 22:42:58 +0000455
Devang Patelca80a5f2009-10-20 19:55:01 +0000456 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000457}
458
John McCalla1805292009-09-25 01:40:47 +0000459/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000460/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000461llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000462 QualifierCollector Qc;
463 const Type *T = Qc.strip(Ty);
464
465 // Ignore these qualifiers for now.
466 Qc.removeObjCGCAttr();
467 Qc.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +0000468 Qc.removeObjCLifetime();
John McCalla1805292009-09-25 01:40:47 +0000469
Chris Lattner9c85ba32008-11-10 06:08:34 +0000470 // We will create one Derived type for one qualifier and recurse to handle any
471 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000472 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000473 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000474 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000475 Qc.removeConst();
476 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000477 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000478 Qc.removeVolatile();
479 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000480 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000481 Qc.removeRestrict();
482 } else {
483 assert(Qc.empty() && "Unknown type qualifier for debug info");
484 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000485 }
Mike Stump1eb44332009-09-09 15:08:12 +0000486
John McCall49f4e1c2010-12-10 11:01:00 +0000487 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCalla1805292009-09-25 01:40:47 +0000488
Daniel Dunbar3845f862008-10-31 03:54:29 +0000489 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
490 // CVR derived types.
Devang Patel16674e82011-02-22 18:56:36 +0000491 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000492
Devang Patelca80a5f2009-10-20 19:55:01 +0000493 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000494}
495
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000496llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000497 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000498 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000499 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
500 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000501 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000502}
503
Chris Lattner9c85ba32008-11-10 06:08:34 +0000504llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000505 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000506 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
507 Ty->getPointeeType(), Unit);
508}
509
Eric Christopher5d613b52012-01-25 02:06:59 +0000510// Creates a forward declaration for a RecordDecl in the given context.
511llvm::DIType CGDebugInfo::createRecordFwdDecl(const RecordDecl *RD,
Devang Patel53bc5182012-02-08 00:10:20 +0000512 llvm::DIDescriptor Ctx) {
Eric Christopher5d613b52012-01-25 02:06:59 +0000513 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
514 unsigned Line = getLineNumber(RD->getLocation());
Eric Christophere88a71f2012-02-13 15:08:45 +0000515 StringRef RDName = RD->getName();
516
517 // Get the tag.
Eric Christopher5d613b52012-01-25 02:06:59 +0000518 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Eric Christophere88a71f2012-02-13 15:08:45 +0000519 unsigned Tag = 0;
520 if (CXXDecl) {
521 RDName = getClassName(RD);
522 Tag = llvm::dwarf::DW_TAG_class_type;
523 }
Eric Christopher5d613b52012-01-25 02:06:59 +0000524 else if (RD->isStruct())
Eric Christophere88a71f2012-02-13 15:08:45 +0000525 Tag = llvm::dwarf::DW_TAG_structure_type;
Eric Christopher5d613b52012-01-25 02:06:59 +0000526 else if (RD->isUnion())
Eric Christophere88a71f2012-02-13 15:08:45 +0000527 Tag = llvm::dwarf::DW_TAG_union_type;
Eric Christopher5d613b52012-01-25 02:06:59 +0000528 else
529 llvm_unreachable("Unknown RecordDecl type!");
Eric Christophere88a71f2012-02-13 15:08:45 +0000530
531 // Create the type.
Eric Christopher87380aa2012-04-23 19:00:24 +0000532 return DBuilder.createForwardDecl(Tag, RDName, Ctx, DefUnit, Line);
Eric Christopher5d613b52012-01-25 02:06:59 +0000533}
534
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000535// Walk up the context chain and create forward decls for record decls,
536// and normal descriptors for namespaces.
537llvm::DIDescriptor CGDebugInfo::createContextChain(const Decl *Context) {
538 if (!Context)
539 return TheCU;
540
541 // See if we already have the parent.
542 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
543 I = RegionMap.find(Context);
Richard Smithe7259aa2012-08-17 04:17:54 +0000544 if (I != RegionMap.end()) {
545 llvm::Value *V = I->second;
546 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(V));
547 }
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000548
549 // Check namespace.
550 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
551 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
552
553 if (const RecordDecl *RD = dyn_cast<RecordDecl>(Context)) {
554 if (!RD->isDependentType()) {
Eric Christopher9965dea2012-02-16 22:54:45 +0000555 llvm::DIType Ty = getOrCreateLimitedType(CGM.getContext().getTypeDeclType(RD),
556 getOrCreateMainFile());
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000557 return llvm::DIDescriptor(Ty);
558 }
559 }
560 return TheCU;
561}
562
Eric Christopheredc95922011-09-13 23:45:09 +0000563/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000564/// then emit record's fwd if debug info size reduction is enabled.
565llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
566 llvm::DIFile Unit) {
Alexey Samsonov3a70cd62012-04-27 07:24:20 +0000567 if (CGM.getCodeGenOpts().DebugInfo != CodeGenOptions::LimitedDebugInfo)
Devang Patelc69e1cf2010-09-30 19:05:55 +0000568 return getOrCreateType(PointeeTy, Unit);
Devang Patel41422512011-10-24 23:15:17 +0000569
570 // Limit debug info for the pointee type.
571
Eric Christopher973bbb62011-12-16 23:40:18 +0000572 // If we have an existing type, use that, it's still smaller than creating
573 // a new type.
574 llvm::DIType Ty = getTypeOrNull(PointeeTy);
575 if (Ty.Verify()) return Ty;
576
Devang Patel41422512011-10-24 23:15:17 +0000577 // Handle qualifiers.
578 if (PointeeTy.hasLocalQualifiers())
Eric Christopherd0a97c42012-08-07 00:18:40 +0000579 return CreateQualifiedType(PointeeTy, Unit);
Devang Patel41422512011-10-24 23:15:17 +0000580
Devang Patelc69e1cf2010-09-30 19:05:55 +0000581 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
582 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000583 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000584 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Eric Christopher86211df2012-02-20 18:05:24 +0000585 llvm::DIType RetTy = createRecordFwdDecl(RD, FDContext);
586 TypeCache[QualType(RTy, 0).getAsOpaquePtr()] = RetTy;
587 return RetTy;
Devang Patelc69e1cf2010-09-30 19:05:55 +0000588 }
589 return getOrCreateType(PointeeTy, Unit);
Eric Christopher42e75da2012-02-13 14:56:11 +0000590
Devang Patelc69e1cf2010-09-30 19:05:55 +0000591}
592
Anders Carlssona031b352009-11-06 19:19:55 +0000593llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
594 const Type *Ty,
595 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000596 llvm::DIFile Unit) {
Eric Christopher37e4cea2012-05-19 01:36:50 +0000597 if (Tag == llvm::dwarf::DW_TAG_reference_type ||
598 Tag == llvm::dwarf::DW_TAG_rvalue_reference_type)
599 return DBuilder.createReferenceType(Tag,
600 CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000601
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000602 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000603 // Size is always the size of a pointer. We can't use getTypeSize here
604 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000605 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000606 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000607 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000608
Nick Lewycky7480d962011-11-10 00:34:02 +0000609 return DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit),
610 Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000611}
612
Mike Stump9bc093c2009-05-14 02:03:51 +0000613llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000614 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000615 if (BlockLiteralGenericSet)
616 return BlockLiteralGeneric;
617
Chris Lattner5f9e2722011-07-23 10:55:15 +0000618 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000619 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000620 QualType FType;
621 uint64_t FieldSize, FieldOffset;
622 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000623 llvm::DIArray Elements;
624 llvm::DIType EltTy, DescTy;
625
626 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000627 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000628 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
629 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000630
Jay Foadc556ef22011-04-24 10:11:03 +0000631 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000632 EltTys.clear();
633
Devang Patele2472482010-09-29 21:05:52 +0000634 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000635 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000636
Devang Patel16674e82011-02-22 18:56:36 +0000637 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000638 Unit, LineNo, FieldOffset, 0,
639 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000640
Mike Stump9bc093c2009-05-14 02:03:51 +0000641 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000642 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000643
Devang Patel16674e82011-02-22 18:56:36 +0000644 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000645
646 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000647 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000648 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000649 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000650 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
651 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000652 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000653 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000654
Anders Carlsson20f12a22009-12-06 18:00:51 +0000655 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000656 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000657 FieldSize = CGM.getContext().getTypeSize(Ty);
658 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000659 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000660 LineNo, FieldSize, FieldAlign,
661 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000662 EltTys.push_back(FieldTy);
663
664 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000665 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000666
Devang Patel16674e82011-02-22 18:56:36 +0000667 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000668 Unit, LineNo, FieldOffset, 0,
669 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000670
Mike Stump9bc093c2009-05-14 02:03:51 +0000671 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000672 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000673 return BlockLiteralGeneric;
674}
675
Nick Lewycky7480d962011-11-10 00:34:02 +0000676llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty, llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000677 // Typedefs are derived from some other type. If we have a typedef of a
678 // typedef, make sure to emit the whole chain.
679 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000680 if (!Src.Verify())
681 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000682 // We don't set size information, but do specify where the typedef was
683 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000684 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000685 const TypedefNameDecl *TyDecl = Ty->getDecl();
Eric Christopher9965dea2012-02-16 22:54:45 +0000686
Nick Lewycky7480d962011-11-10 00:34:02 +0000687 llvm::DIDescriptor TypedefContext =
Devang Patelc4903122011-06-03 17:23:47 +0000688 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
Eric Christopher9965dea2012-02-16 22:54:45 +0000689
690 return
Nick Lewycky7480d962011-11-10 00:34:02 +0000691 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000692}
693
Chris Lattner9c85ba32008-11-10 06:08:34 +0000694llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000695 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000696 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000697
Chris Lattner9c85ba32008-11-10 06:08:34 +0000698 // Add the result type at least.
699 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000700
Chris Lattner9c85ba32008-11-10 06:08:34 +0000701 // Set up remainder of arguments if there is a prototype.
702 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000703 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000704 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Eric Christopheraa6eccc2012-08-04 00:11:22 +0000705 else if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Ty)) {
Eric Christopherd0a97c42012-08-07 00:18:40 +0000706 for (unsigned i = 0, e = FPT->getNumArgs(); i != e; ++i)
Eric Christopheraa6eccc2012-08-04 00:11:22 +0000707 EltTys.push_back(getOrCreateType(FPT->getArgType(i), Unit));
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000708 }
709
Jay Foadc556ef22011-04-24 10:11:03 +0000710 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Eric Christopherd9f07d42012-05-16 22:02:36 +0000711 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000712}
713
Eric Christopher42e75da2012-02-13 14:56:11 +0000714
Eric Christopher6faa5542012-01-26 01:57:13 +0000715void CGDebugInfo::
716CollectRecordStaticVars(const RecordDecl *RD, llvm::DIType FwdDecl) {
717
718 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
719 I != E; ++I)
720 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
721 if (V->getInit()) {
722 const APValue *Value = V->evaluateValue();
723 if (Value && Value->isInt()) {
724 llvm::ConstantInt *CI
725 = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
726
727 // Create the descriptor for static variable.
728 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
729 StringRef VName = V->getName();
730 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
731 // Do not use DIGlobalVariable for enums.
732 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
733 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
734 getLineNumber(V->getLocation()),
735 VTy, true, CI);
736 }
737 }
738 }
739 }
740}
741
Chris Lattner5f9e2722011-07-23 10:55:15 +0000742llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000743 QualType type,
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000744 uint64_t sizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000745 SourceLocation loc,
746 AccessSpecifier AS,
747 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000748 llvm::DIFile tunit,
749 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000750 llvm::DIType debugType = getOrCreateType(type, tunit);
751
752 // Get the location for the field.
753 llvm::DIFile file = getOrCreateFile(loc);
754 unsigned line = getLineNumber(loc);
755
756 uint64_t sizeInBits = 0;
757 unsigned alignInBits = 0;
758 if (!type->isIncompleteArrayType()) {
759 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
760
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000761 if (sizeInBitsOverride)
762 sizeInBits = sizeInBitsOverride;
John McCall8178df32011-02-22 22:38:33 +0000763 }
764
765 unsigned flags = 0;
766 if (AS == clang::AS_private)
767 flags |= llvm::DIDescriptor::FlagPrivate;
768 else if (AS == clang::AS_protected)
769 flags |= llvm::DIDescriptor::FlagProtected;
770
Devang Patel1d323e02011-06-24 22:00:59 +0000771 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
772 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000773}
774
Devang Patel428deb52010-01-19 00:00:59 +0000775/// CollectRecordFields - A helper function to collect debug info for
776/// record fields. This is used while creating debug info entry for a Record.
777void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000778CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000779 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000780 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000781 unsigned fieldNo = 0;
782 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
Eric Christopherad8de512012-03-01 21:36:52 +0000783 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(record);
784
Eric Christopherda970d22012-06-28 01:20:05 +0000785 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
Eric Christopherad8de512012-03-01 21:36:52 +0000786 // has the name and the location of the variable so we should iterate over
787 // both concurrently.
788 if (CXXDecl && CXXDecl->isLambda()) {
789 RecordDecl::field_iterator Field = CXXDecl->field_begin();
790 unsigned fieldno = 0;
791 for (CXXRecordDecl::capture_const_iterator I = CXXDecl->captures_begin(),
792 E = CXXDecl->captures_end(); I != E; ++I, ++Field, ++fieldno) {
793 const LambdaExpr::Capture C = *I;
794 // TODO: Need to handle 'this' in some way by probably renaming the
795 // this of the lambda class and having a field member of 'this'.
796 if (C.capturesVariable()) {
797 VarDecl *V = C.getCapturedVar();
798 llvm::DIFile VUnit = getOrCreateFile(C.getLocation());
799 StringRef VName = V->getName();
800 uint64_t SizeInBitsOverride = 0;
801 if (Field->isBitField()) {
802 SizeInBitsOverride = Field->getBitWidthValue(CGM.getContext());
803 assert(SizeInBitsOverride && "found named 0-width bitfield");
804 }
805 llvm::DIType fieldType
806 = createFieldType(VName, Field->getType(), SizeInBitsOverride, C.getLocation(),
807 Field->getAccess(), layout.getFieldOffset(fieldno),
808 VUnit, RecordTy);
809 elements.push_back(fieldType);
810 }
811 }
812 } else {
813 bool IsMsStruct = record->hasAttr<MsStructAttr>();
814 const FieldDecl *LastFD = 0;
815 for (RecordDecl::field_iterator I = record->field_begin(),
816 E = record->field_end();
817 I != E; ++I, ++fieldNo) {
David Blaikie581deb32012-06-06 20:45:41 +0000818 FieldDecl *field = *I;
Eric Christopherad8de512012-03-01 21:36:52 +0000819
820 if (IsMsStruct) {
821 // Zero-length bitfields following non-bitfield members are ignored
822 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
823 --fieldNo;
824 continue;
825 }
826 LastFD = field;
827 }
828
829 StringRef name = field->getName();
830 QualType type = field->getType();
831
832 // Ignore unnamed fields unless they're anonymous structs/unions.
833 if (name.empty() && !type->isRecordType()) {
834 LastFD = field;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000835 continue;
836 }
Eric Christopherad8de512012-03-01 21:36:52 +0000837
838 uint64_t SizeInBitsOverride = 0;
839 if (field->isBitField()) {
840 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
841 assert(SizeInBitsOverride && "found named 0-width bitfield");
842 }
843
844 llvm::DIType fieldType
845 = createFieldType(name, type, SizeInBitsOverride,
846 field->getLocation(), field->getAccess(),
847 layout.getFieldOffset(fieldNo), tunit, RecordTy);
848
849 elements.push_back(fieldType);
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000850 }
Devang Patel428deb52010-01-19 00:00:59 +0000851 }
852}
853
Devang Patela6da1922010-01-28 00:28:01 +0000854/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
855/// function type is not updated to include implicit "this" pointer. Use this
856/// routine to get a method type which includes "this" pointer.
857llvm::DIType
858CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000859 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000860 llvm::DIType FnTy
861 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
862 0),
863 Unit);
Eric Christopher3b10cfe2012-03-13 23:40:48 +0000864
Devang Patela6da1922010-01-28 00:28:01 +0000865 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000866 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000867 assert (Args.getNumElements() && "Invalid number of arguments!");
868
Chris Lattner5f9e2722011-07-23 10:55:15 +0000869 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000870
871 // First element is always return type. For 'void' functions it is NULL.
872 Elts.push_back(Args.getElement(0));
873
Eric Christopher2121cda2011-09-14 01:10:50 +0000874 if (!Method->isStatic()) {
875 // "this" pointer is always first argument.
876 QualType ThisPtr = Method->getThisType(CGM.getContext());
Devang Patelef8857d2011-10-28 21:12:13 +0000877
878 const CXXRecordDecl *RD = Method->getParent();
879 if (isa<ClassTemplateSpecializationDecl>(RD)) {
880 // Create pointer type directly in this case.
881 const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
882 QualType PointeeTy = ThisPtrTy->getPointeeType();
883 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
884 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
885 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000886 llvm::DIType PointeeType = getOrCreateType(PointeeTy, Unit);
Eric Christopher3b8e1972012-02-09 07:26:21 +0000887 llvm::DIType ThisPtrType = DBuilder.createPointerType(PointeeType, Size, Align);
Devang Patelef8857d2011-10-28 21:12:13 +0000888 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
Eric Christopher3b8e1972012-02-09 07:26:21 +0000889 // TODO: This and the artificial type below are misleading, the
890 // types aren't artificial the argument is, but the current
891 // metadata doesn't represent that.
892 ThisPtrType = DBuilder.createArtificialType(ThisPtrType);
Devang Patelef8857d2011-10-28 21:12:13 +0000893 Elts.push_back(ThisPtrType);
894 } else {
Eric Christopher3b8e1972012-02-09 07:26:21 +0000895 llvm::DIType ThisPtrType = getOrCreateType(ThisPtr, Unit);
Devang Patelef8857d2011-10-28 21:12:13 +0000896 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
Eric Christopher3b8e1972012-02-09 07:26:21 +0000897 ThisPtrType = DBuilder.createArtificialType(ThisPtrType);
Devang Patelef8857d2011-10-28 21:12:13 +0000898 Elts.push_back(ThisPtrType);
899 }
Eric Christopher2121cda2011-09-14 01:10:50 +0000900 }
Devang Patela6da1922010-01-28 00:28:01 +0000901
902 // Copy rest of the arguments.
903 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
904 Elts.push_back(Args.getElement(i));
905
Jay Foadc556ef22011-04-24 10:11:03 +0000906 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000907
Devang Patel16674e82011-02-22 18:56:36 +0000908 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000909}
910
Devang Patel58faf202010-10-22 17:11:50 +0000911/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
912/// inside a function.
913static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
Nick Lewycky7480d962011-11-10 00:34:02 +0000914 if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000915 return isFunctionLocalClass(NRD);
Nick Lewycky7480d962011-11-10 00:34:02 +0000916 if (isa<FunctionDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000917 return true;
918 return false;
Devang Patel58faf202010-10-22 17:11:50 +0000919}
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000920
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000921/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
922/// a single member function GlobalDecl.
923llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000924CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000925 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000926 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000927 bool IsCtorOrDtor =
928 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
929
Chris Lattner5f9e2722011-07-23 10:55:15 +0000930 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000931 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Eric Christopheraa6eccc2012-08-04 00:11:22 +0000932
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000933 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
934 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000935 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000936 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000937 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000938
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000939 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000940 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
941 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000942
943 // Collect virtual method info.
944 llvm::DIType ContainingType;
945 unsigned Virtuality = 0;
946 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000947
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000948 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000949 if (Method->isPure())
950 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
951 else
952 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
953
954 // It doesn't make sense to give a virtual destructor a vtable index,
955 // since a single destructor has two entries in the vtable.
956 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000957 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000958 ContainingType = RecordTy;
959 }
960
Devang Patele2472482010-09-29 21:05:52 +0000961 unsigned Flags = 0;
962 if (Method->isImplicit())
963 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000964 AccessSpecifier Access = Method->getAccess();
965 if (Access == clang::AS_private)
966 Flags |= llvm::DIDescriptor::FlagPrivate;
967 else if (Access == clang::AS_protected)
968 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000969 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
970 if (CXXC->isExplicit())
971 Flags |= llvm::DIDescriptor::FlagExplicit;
972 } else if (const CXXConversionDecl *CXXC =
973 dyn_cast<CXXConversionDecl>(Method)) {
974 if (CXXC->isExplicit())
975 Flags |= llvm::DIDescriptor::FlagExplicit;
976 }
Devang Patel3951e712010-10-07 22:03:49 +0000977 if (Method->hasPrototype())
978 Flags |= llvm::DIDescriptor::FlagPrototyped;
Eric Christopher3b10cfe2012-03-13 23:40:48 +0000979
980 llvm::DIArray TParamsArray = CollectFunctionTemplateParams(Method, Unit);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000981 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000982 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000983 MethodDefUnit, MethodLine,
984 MethodTy, /*isLocalToUnit=*/false,
985 /* isDefinition=*/ false,
986 Virtuality, VIndex, ContainingType,
Eric Christopher3b10cfe2012-03-13 23:40:48 +0000987 Flags, CGM.getLangOpts().Optimize, NULL,
988 TParamsArray);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000989
Eric Christopherdeae6a82011-11-17 23:45:00 +0000990 SPCache[Method->getCanonicalDecl()] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000991
992 return SP;
993}
994
Devang Patel4125fd22010-01-19 01:54:44 +0000995/// CollectCXXMemberFunctions - A helper function to collect debug info for
Eric Christopher7c9b2fd2012-01-12 01:26:51 +0000996/// C++ member functions. This is used while creating debug info entry for
Devang Patel4125fd22010-01-19 01:54:44 +0000997/// a Record.
998void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000999CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001000 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +00001001 llvm::DIType RecordTy) {
Eric Christopher3b10cfe2012-03-13 23:40:48 +00001002
1003 // Since we want more than just the individual member decls if we
1004 // have templated functions iterate over every declaration to gather
1005 // the functions.
1006 for(DeclContext::decl_iterator I = RD->decls_begin(),
1007 E = RD->decls_end(); I != E; ++I) {
1008 Decl *D = *I;
1009 if (D->isImplicit() && !D->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +00001010 continue;
Devang Patel4125fd22010-01-19 01:54:44 +00001011
Eric Christopher3de00ce2012-06-05 18:16:22 +00001012 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
1013 // Only emit debug information for user provided functions, we're
1014 // unlikely to want info for artificial functions.
1015 if (Method->isUserProvided())
1016 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
1017 }
Eric Christopher3b10cfe2012-03-13 23:40:48 +00001018 else if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D))
1019 for (FunctionTemplateDecl::spec_iterator SI = FTD->spec_begin(),
Eric Christopher860de6b2012-08-13 02:07:42 +00001020 SE = FTD->spec_end(); SI != SE; ++SI)
1021 EltTys.push_back(CreateCXXMemberFunction(cast<CXXMethodDecl>(*SI), Unit,
1022 RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +00001023 }
1024}
1025
Devang Patel2ed8f002010-08-27 17:47:47 +00001026/// CollectCXXFriends - A helper function to collect debug info for
1027/// C++ base classes. This is used while creating debug info entry for
1028/// a Record.
1029void CGDebugInfo::
1030CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001031 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +00001032 llvm::DIType RecordTy) {
Eric Christopher121c67d2012-01-12 01:26:58 +00001033 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
Devang Patel2ed8f002010-08-27 17:47:47 +00001034 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +00001035 if ((*BI)->isUnsupportedFriend())
1036 continue;
Devang Patel823d8e92010-12-08 22:42:58 +00001037 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +00001038 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +00001039 getOrCreateType(TInfo->getType(),
1040 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +00001041 }
1042}
1043
Devang Patela245c5b2010-01-25 23:32:18 +00001044/// CollectCXXBases - A helper function to collect debug info for
1045/// C++ base classes. This is used while creating debug info entry for
1046/// a Record.
1047void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +00001048CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001049 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +00001050 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +00001051
Devang Patel239cec62010-02-01 21:39:52 +00001052 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1053 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
1054 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +00001055 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +00001056 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +00001057
1058 const CXXRecordDecl *Base =
1059 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
1060
1061 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +00001062 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +00001063 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +00001064 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +00001065 0 - CGM.getVTableContext()
1066 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +00001067 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +00001068 } else
Benjamin Kramerd4f51982012-07-04 18:45:14 +00001069 BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base));
Ken Dyck14c65ca2011-04-07 12:37:09 +00001070 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
1071 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +00001072
1073 AccessSpecifier Access = BI->getAccessSpecifier();
1074 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +00001075 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +00001076 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +00001077 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +00001078
Devang Patel823d8e92010-12-08 22:42:58 +00001079 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +00001080 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +00001081 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +00001082 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +00001083 EltTys.push_back(DTy);
1084 }
Devang Patela245c5b2010-01-25 23:32:18 +00001085}
1086
Devang Patel5ecb1df2011-04-05 22:54:11 +00001087/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +00001088llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +00001089CollectTemplateParams(const TemplateParameterList *TPList,
1090 const TemplateArgumentList &TAList,
1091 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001092 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +00001093 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
1094 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +00001095 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +00001096 if (TA.getKind() == TemplateArgument::Type) {
1097 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
1098 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001099 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +00001100 TemplateParams.push_back(TTP);
1101 } else if (TA.getKind() == TemplateArgument::Integral) {
1102 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +00001103 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001104 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
Benjamin Kramer85524372012-06-07 15:09:51 +00001105 TA.getAsIntegral().getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +00001106 TemplateParams.push_back(TVP);
1107 }
1108 }
Jay Foadc556ef22011-04-24 10:11:03 +00001109 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +00001110}
1111
Devang Patel5ecb1df2011-04-05 22:54:11 +00001112/// CollectFunctionTemplateParams - A helper function to collect debug
1113/// info for function template parameters.
1114llvm::DIArray CGDebugInfo::
1115CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherab5278e2011-10-11 23:00:51 +00001116 if (FD->getTemplatedKind() ==
1117 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patel5ecb1df2011-04-05 22:54:11 +00001118 const TemplateParameterList *TList =
Eric Christopherab5278e2011-10-11 23:00:51 +00001119 FD->getTemplateSpecializationInfo()->getTemplate()
1120 ->getTemplateParameters();
Devang Patel5ecb1df2011-04-05 22:54:11 +00001121 return
1122 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
1123 }
1124 return llvm::DIArray();
1125}
1126
1127/// CollectCXXTemplateParams - A helper function to collect debug info for
1128/// template parameters.
1129llvm::DIArray CGDebugInfo::
1130CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
1131 llvm::DIFile Unit) {
1132 llvm::PointerUnion<ClassTemplateDecl *,
1133 ClassTemplatePartialSpecializationDecl *>
1134 PU = TSpecial->getSpecializedTemplateOrPartial();
1135
1136 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
1137 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
1138 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
1139 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
1140 return CollectTemplateParams(TPList, TAList, Unit);
1141}
1142
Devang Patel4ce3f202010-01-28 18:11:52 +00001143/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +00001144llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +00001145 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +00001146 return VTablePtrType;
1147
1148 ASTContext &Context = CGM.getContext();
1149
1150 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +00001151 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +00001152 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +00001153 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +00001154 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +00001155 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001156 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +00001157 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +00001158 return VTablePtrType;
1159}
1160
Anders Carlsson046c2942010-04-17 20:15:18 +00001161/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001162StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Eric Christopher51cb75a2012-01-25 21:47:09 +00001163 // Construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +00001164 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +00001165
1166 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +00001167 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001168 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001169 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001170}
1171
1172
Anders Carlsson046c2942010-04-17 20:15:18 +00001173/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +00001174/// debug info entry in EltTys vector.
1175void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +00001176CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001177 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +00001178 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +00001179
1180 // If there is a primary base then it will hold vtable info.
1181 if (RL.getPrimaryBase())
1182 return;
1183
1184 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +00001185 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +00001186 return;
1187
1188 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1189 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +00001190 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001191 0, Size, 0, 0, 0,
1192 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +00001193 EltTys.push_back(VPTR);
1194}
1195
Devang Patelc69e1cf2010-09-30 19:05:55 +00001196/// getOrCreateRecordType - Emit record type's standalone debug info.
1197llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1198 SourceLocation Loc) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00001199 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001200 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patelc69e1cf2010-09-30 19:05:55 +00001201 return T;
1202}
1203
Eric Christopherbe6c6862012-04-11 05:56:05 +00001204/// getOrCreateInterfaceType - Emit an objective c interface type standalone
1205/// debug info.
1206llvm::DIType CGDebugInfo::getOrCreateInterfaceType(QualType D,
1207 SourceLocation Loc) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00001208 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
Eric Christopherbe6c6862012-04-11 05:56:05 +00001209 llvm::DIType T = getOrCreateType(D, getOrCreateFile(Loc));
1210 DBuilder.retainType(T);
1211 return T;
1212}
1213
Devang Patel65e99f22009-02-25 01:36:11 +00001214/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +00001215llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001216 RecordDecl *RD = Ty->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001217
Chris Lattner9c85ba32008-11-10 06:08:34 +00001218 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001219 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001220
Chris Lattner9c85ba32008-11-10 06:08:34 +00001221 // Records and classes and unions can all be recursive. To handle them, we
1222 // first generate a debug descriptor for the struct as a forward declaration.
1223 // Then (if it is a definition) we go through and get debug info for all of
1224 // its members. Finally, we create a descriptor for the complete type (which
1225 // may refer to the forward decl if the struct is recursive) and replace all
1226 // uses of the forward declaration with the final definition.
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001227
Eric Christopher9965dea2012-02-16 22:54:45 +00001228 llvm::DIType FwdDecl = getOrCreateLimitedType(QualType(Ty, 0), DefUnit);
Devang Patel0b897992010-07-08 19:56:29 +00001229
Eric Christopher9965dea2012-02-16 22:54:45 +00001230 if (FwdDecl.isForwardDecl())
1231 return FwdDecl;
Benjamin Kramer6181e562012-03-20 19:49:14 +00001232
1233 llvm::TrackingVH<llvm::MDNode> FwdDeclNode(FwdDecl);
1234
Devang Patele4c1ea02010-03-11 20:01:48 +00001235 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001236 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001237 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001238
Eric Christopher9965dea2012-02-16 22:54:45 +00001239 // Add this to the completed types cache since we're completing it.
1240 CompletedTypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
1241
Chris Lattner9c85ba32008-11-10 06:08:34 +00001242 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001243 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001244
Eric Christopher1c081d92012-01-26 07:01:04 +00001245 // Note: The split of CXXDecl information here is intentional, the
1246 // gdb tests will depend on a certain ordering at printout. The debug
1247 // information offsets are still correct if we merge them all together
1248 // though.
Devang Pateld6c5a262010-02-01 21:52:22 +00001249 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +00001250 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001251 CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl);
1252 CollectVTableInfo(CXXDecl, DefUnit, EltTys);
Eric Christopher1c081d92012-01-26 07:01:04 +00001253 }
1254
1255 // Collect static variables with initializers and other fields.
1256 CollectRecordStaticVars(RD, FwdDecl);
1257 CollectRecordFields(RD, DefUnit, EltTys, FwdDecl);
1258 llvm::DIArray TParamsArray;
1259 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001260 CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl);
1261 CollectCXXFriends(CXXDecl, DefUnit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001262 if (const ClassTemplateSpecializationDecl *TSpecial
1263 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
Eric Christopher3ee8c912012-01-26 06:20:57 +00001264 TParamsArray = CollectCXXTemplateParams(TSpecial, DefUnit);
Devang Patel823d8e92010-12-08 22:42:58 +00001265 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001266
Eric Christopheraa2164c2011-09-29 00:00:45 +00001267 LexicalBlockStack.pop_back();
Benjamin Kramer7e423922012-03-24 18:22:12 +00001268 RegionMap.erase(Ty->getDecl());
Devang Patel823d8e92010-12-08 22:42:58 +00001269
Jay Foadc556ef22011-04-24 10:11:03 +00001270 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Eric Christopher9965dea2012-02-16 22:54:45 +00001271 // FIXME: Magic numbers ahoy! These should be changed when we
1272 // get some enums in llvm/Analysis/DebugInfo.h to refer to
1273 // them.
Eric Christopher64a04302012-02-15 23:51:20 +00001274 if (RD->isUnion())
Benjamin Kramer6181e562012-03-20 19:49:14 +00001275 FwdDeclNode->replaceOperandWith(10, Elements);
Eric Christopher64a04302012-02-15 23:51:20 +00001276 else if (CXXDecl) {
Benjamin Kramer6181e562012-03-20 19:49:14 +00001277 FwdDeclNode->replaceOperandWith(10, Elements);
1278 FwdDeclNode->replaceOperandWith(13, TParamsArray);
Eric Christopher64a04302012-02-15 23:51:20 +00001279 } else
Benjamin Kramer6181e562012-03-20 19:49:14 +00001280 FwdDeclNode->replaceOperandWith(10, Elements);
Eric Christopher64a04302012-02-15 23:51:20 +00001281
Benjamin Kramer6181e562012-03-20 19:49:14 +00001282 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDeclNode);
1283 return llvm::DIType(FwdDeclNode);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001284}
1285
John McCallc12c5bb2010-05-15 11:32:37 +00001286/// CreateType - get objective-c object type.
1287llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1288 llvm::DIFile Unit) {
1289 // Ignore protocols.
1290 return getOrCreateType(Ty->getBaseType(), Unit);
1291}
1292
Devang Patel9ca36b62009-02-26 21:10:26 +00001293/// CreateType - get objective-c interface type.
1294llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001295 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001296 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001297 if (!ID)
1298 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001299
1300 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001301 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001302 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001303 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001304
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001305 // If this is just a forward declaration return a special forward-declaration
1306 // debug type since we won't be able to lay out the entire type.
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001307 ObjCInterfaceDecl *Def = ID->getDefinition();
1308 if (!Def) {
Devang Patel823d8e92010-12-08 22:42:58 +00001309 llvm::DIType FwdDecl =
Eric Christopher917bc8d2012-02-20 18:05:04 +00001310 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christopher87380aa2012-04-23 19:00:24 +00001311 ID->getName(), TheCU, DefUnit, Line,
Eric Christopher917bc8d2012-02-20 18:05:04 +00001312 RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001313 return FwdDecl;
1314 }
Eric Christopherbe6c6862012-04-11 05:56:05 +00001315
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001316 ID = Def;
Dan Gohman45f7c782010-08-23 21:15:56 +00001317
Eric Christopher9965dea2012-02-16 22:54:45 +00001318 // Bit size, align and offset of the type.
1319 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1320 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001321
Eric Christopher9965dea2012-02-16 22:54:45 +00001322 unsigned Flags = 0;
1323 if (ID->getImplementation())
1324 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
1325
1326 llvm::DIType RealDecl =
1327 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
1328 Line, Size, Align, Flags,
1329 llvm::DIArray(), RuntimeLang);
Eric Christopherbe6c6862012-04-11 05:56:05 +00001330
Eric Christopheraf3db7d2012-02-27 08:23:23 +00001331 // Otherwise, insert it into the CompletedTypeCache so that recursive uses
1332 // will find it and we're emitting the complete type.
1333 CompletedTypeCache[QualType(Ty, 0).getAsOpaquePtr()] = RealDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001334 // Push the struct on region stack.
Benjamin Kramer6181e562012-03-20 19:49:14 +00001335 llvm::TrackingVH<llvm::MDNode> FwdDeclNode(RealDecl);
Eric Christopher9965dea2012-02-16 22:54:45 +00001336
Eric Christopheraa2164c2011-09-29 00:00:45 +00001337 LexicalBlockStack.push_back(FwdDeclNode);
Eric Christopher9965dea2012-02-16 22:54:45 +00001338 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001339
1340 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001341 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001342
Devang Pateld6c5a262010-02-01 21:52:22 +00001343 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001344 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001345 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001346 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001347 if (!SClassTy.isValid())
1348 return llvm::DIType();
1349
Mike Stump1eb44332009-09-09 15:08:12 +00001350 llvm::DIType InhTag =
Eric Christopher9965dea2012-02-16 22:54:45 +00001351 DBuilder.createInheritance(RealDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001352 EltTys.push_back(InhTag);
1353 }
1354
Devang Patel693fcaa2012-02-07 18:40:30 +00001355 for (ObjCContainerDecl::prop_iterator I = ID->prop_begin(),
1356 E = ID->prop_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00001357 const ObjCPropertyDecl *PD = *I;
Eric Christopher51c03712012-03-29 08:43:37 +00001358 SourceLocation Loc = PD->getLocation();
1359 llvm::DIFile PUnit = getOrCreateFile(Loc);
1360 unsigned PLine = getLineNumber(Loc);
Eric Christopher78af8fd2012-04-05 22:03:32 +00001361 ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
1362 ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
Devang Patel693fcaa2012-02-07 18:40:30 +00001363 llvm::MDNode *PropertyNode =
1364 DBuilder.createObjCProperty(PD->getName(),
Eric Christopher51c03712012-03-29 08:43:37 +00001365 PUnit, PLine,
Eric Christopher78af8fd2012-04-05 22:03:32 +00001366 (Getter && Getter->isImplicit()) ? "" :
Eric Christopherecae5962012-03-29 17:31:33 +00001367 getSelectorName(PD->getGetterName()),
Eric Christopher78af8fd2012-04-05 22:03:32 +00001368 (Setter && Setter->isImplicit()) ? "" :
Eric Christopherecae5962012-03-29 17:31:33 +00001369 getSelectorName(PD->getSetterName()),
Eric Christopher51c03712012-03-29 08:43:37 +00001370 PD->getPropertyAttributes(),
1371 getOrCreateType(PD->getType(), PUnit));
Devang Patel693fcaa2012-02-07 18:40:30 +00001372 EltTys.push_back(PropertyNode);
1373 }
1374
Devang Pateld6c5a262010-02-01 21:52:22 +00001375 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00001376 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001377 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001378 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001379 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001380 if (!FieldTy.isValid())
1381 return llvm::DIType();
1382
Chris Lattner5f9e2722011-07-23 10:55:15 +00001383 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001384
Devang Patelde135022009-04-27 22:40:36 +00001385 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001386 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001387 continue;
1388
Devang Patel9ca36b62009-02-26 21:10:26 +00001389 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001390 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1391 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001392 QualType FType = Field->getType();
1393 uint64_t FieldSize = 0;
1394 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001395
Devang Patel99c20eb2009-03-20 18:24:39 +00001396 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001397
Devang Patel99c20eb2009-03-20 18:24:39 +00001398 // Bit size, align and offset of the type.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001399 FieldSize = Field->isBitField()
1400 ? Field->getBitWidthValue(CGM.getContext())
1401 : CGM.getContext().getTypeSize(FType);
1402 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001403 }
1404
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001405 // We can't know the offset of our ivar in the structure if we're using
1406 // the non-fragile abi and the debugger should ignore the value anyways.
1407 // Call it the FieldNo+1 due to how debuggers use the information,
1408 // e.g. negating the value when it needs a lookup in the dynamic table.
John McCall260611a2012-06-20 06:18:46 +00001409 uint64_t FieldOffset = CGM.getLangOpts().ObjCRuntime.isNonFragile()
1410 ? FieldNo+1 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001411
Devang Patelc20482b2009-03-19 00:23:53 +00001412 unsigned Flags = 0;
1413 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001414 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001415 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001416 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001417
Devang Patel693a70d2012-02-04 01:15:04 +00001418 llvm::MDNode *PropertyNode = NULL;
Devang Patel693fcaa2012-02-07 18:40:30 +00001419 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) {
Devang Patel8c6f9c42011-09-19 18:54:16 +00001420 if (ObjCPropertyImplDecl *PImpD =
Devang Patel693fcaa2012-02-07 18:40:30 +00001421 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) {
1422 if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) {
Eric Christopher51c03712012-03-29 08:43:37 +00001423 SourceLocation Loc = PD->getLocation();
1424 llvm::DIFile PUnit = getOrCreateFile(Loc);
1425 unsigned PLine = getLineNumber(Loc);
Eric Christopher78af8fd2012-04-05 22:03:32 +00001426 ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
1427 ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
1428 PropertyNode =
1429 DBuilder.createObjCProperty(PD->getName(),
1430 PUnit, PLine,
1431 (Getter && Getter->isImplicit()) ? "" :
Eric Christopherecae5962012-03-29 17:31:33 +00001432 getSelectorName(PD->getGetterName()),
Eric Christopher78af8fd2012-04-05 22:03:32 +00001433 (Setter && Setter->isImplicit()) ? "" :
Eric Christopherecae5962012-03-29 17:31:33 +00001434 getSelectorName(PD->getSetterName()),
Eric Christopher78af8fd2012-04-05 22:03:32 +00001435 PD->getPropertyAttributes(),
1436 getOrCreateType(PD->getType(), PUnit));
Devang Patel53bc5182012-02-08 00:10:20 +00001437 }
Devang Patel693fcaa2012-02-07 18:40:30 +00001438 }
Devang Patel693a70d2012-02-04 01:15:04 +00001439 }
Devang Patelfa936d82011-04-16 00:12:55 +00001440 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1441 FieldLine, FieldSize, FieldAlign,
1442 FieldOffset, Flags, FieldTy,
Devang Patel5f3c7fa2012-02-06 18:20:02 +00001443 PropertyNode);
Devang Patel9ca36b62009-02-26 21:10:26 +00001444 EltTys.push_back(FieldTy);
1445 }
Mike Stump1eb44332009-09-09 15:08:12 +00001446
Jay Foadc556ef22011-04-24 10:11:03 +00001447 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Benjamin Kramer6181e562012-03-20 19:49:14 +00001448 FwdDeclNode->replaceOperandWith(10, Elements);
Eric Christopher9965dea2012-02-16 22:54:45 +00001449
Eric Christopheraa2164c2011-09-29 00:00:45 +00001450 LexicalBlockStack.pop_back();
Benjamin Kramer6181e562012-03-20 19:49:14 +00001451 return llvm::DIType(FwdDeclNode);
Devang Patel9ca36b62009-02-26 21:10:26 +00001452}
1453
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001454llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty, llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001455 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001456 int64_t NumElems = Ty->getNumElements();
1457 int64_t LowerBound = 0;
1458 if (NumElems == 0)
1459 // If number of elements are not known then this is an unbounded array.
1460 // Use Low = 1, Hi = 0 to express such arrays.
1461 LowerBound = 1;
1462 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001463 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001464
Devang Patel6cf37dd2011-04-08 21:56:52 +00001465 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001466 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001467
1468 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1469 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1470
1471 return
Devang Patel16674e82011-02-22 18:56:36 +00001472 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001473}
1474
Chris Lattner9c85ba32008-11-10 06:08:34 +00001475llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001476 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001477 uint64_t Size;
1478 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001479
Nuno Lopes010d5142009-01-28 00:35:17 +00001480 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001481 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001482 Size = 0;
1483 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001484 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001485 } else if (Ty->isIncompleteArrayType()) {
1486 Size = 0;
Eric Christopherc7fb7482012-08-07 00:48:43 +00001487 if (Ty->getElementType()->isIncompleteType())
1488 Align = 0;
1489 else
1490 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001491 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001492 Size = 0;
1493 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001494 } else {
1495 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001496 Size = CGM.getContext().getTypeSize(Ty);
1497 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001498 }
Mike Stump1eb44332009-09-09 15:08:12 +00001499
Chris Lattner9c85ba32008-11-10 06:08:34 +00001500 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1501 // interior arrays, do we care? Why aren't nested arrays represented the
1502 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001503 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001504 QualType EltTy(Ty, 0);
Eric Christophere6d11972012-05-21 22:13:23 +00001505 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
1506 int64_t UpperBound = 0;
1507 int64_t LowerBound = 0;
1508 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
1509 if (CAT->getSize().getZExtValue())
1510 UpperBound = CAT->getSize().getZExtValue() - 1;
1511 } else
1512 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1513 // arrays.
1514 LowerBound = 1;
1515
1516 // FIXME: Verify this is right for VLAs.
1517 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1518 UpperBound));
Chris Lattner9c85ba32008-11-10 06:08:34 +00001519 EltTy = Ty->getElementType();
Sanjiv Gupta507de852008-06-09 10:47:41 +00001520 }
Mike Stump1eb44332009-09-09 15:08:12 +00001521
Jay Foadc556ef22011-04-24 10:11:03 +00001522 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001523
Devang Patelca80a5f2009-10-20 19:55:01 +00001524 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001525 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001526 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001527 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001528}
1529
Anders Carlssona031b352009-11-06 19:19:55 +00001530llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001531 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001532 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1533 Ty, Ty->getPointeeType(), Unit);
1534}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001535
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001536llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1537 llvm::DIFile Unit) {
1538 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1539 Ty, Ty->getPointeeType(), Unit);
1540}
1541
Anders Carlsson20f12a22009-12-06 18:00:51 +00001542llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001543 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001544 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1545 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1546
1547 if (!Ty->getPointeeType()->isFunctionType()) {
1548 // We have a data member pointer type.
1549 return PointerDiffDITy;
1550 }
1551
1552 // We have a member function pointer type. Treat it as a struct with two
1553 // ptrdiff_t members.
1554 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1555
1556 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001557 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001558
Eric Christopher3e078812012-08-04 00:11:20 +00001559 // FIXME: This should be a DW_TAG_pointer_to_member type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001560 ElementTypes[0] =
Devang Patel1d323e02011-06-24 22:00:59 +00001561 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001562 Info.first, Info.second, FieldOffset, 0,
1563 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001564 FieldOffset += Info.first;
1565
1566 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001567 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001568 Info.first, Info.second, FieldOffset, 0,
1569 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001570
Jay Foadc556ef22011-04-24 10:11:03 +00001571 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001572
Chris Lattner5f9e2722011-07-23 10:55:15 +00001573 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001574 U, 0, FieldOffset,
1575 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001576}
1577
Eli Friedmanb001de72011-10-06 23:00:33 +00001578llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1579 llvm::DIFile U) {
1580 // Ignore the atomic wrapping
1581 // FIXME: What is the correct representation?
1582 return getOrCreateType(Ty->getValueType(), U);
1583}
1584
Devang Patel6237cea2010-08-23 22:07:25 +00001585/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001586llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001587 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001588
1589 // Create DIEnumerator elements for each enumerator.
1590 for (EnumDecl::enumerator_iterator
1591 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1592 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001593 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001594 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001595 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001596 }
1597
1598 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001599 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001600
1601 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1602 unsigned Line = getLineNumber(ED->getLocation());
1603 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001604 uint64_t Align = 0;
1605 if (!ED->getTypeForDecl()->isIncompleteType()) {
1606 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1607 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1608 }
Devang Patel4bc48872010-10-27 23:23:58 +00001609 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001610 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Eric Christopher9ee5f462012-05-23 00:09:47 +00001611 llvm::DIType ClassTy = ED->isScopedUsingClassTag() ?
1612 getOrCreateType(ED->getIntegerType(), DefUnit) : llvm::DIType();
Eric Christopher5a2eff82012-06-01 00:22:57 +00001613 unsigned Flags = !ED->isCompleteDefinition() ? llvm::DIDescriptor::FlagFwdDecl : 0;
Devang Patel6237cea2010-08-23 22:07:25 +00001614 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001615 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Eric Christopher9ee5f462012-05-23 00:09:47 +00001616 Size, Align, EltArray,
Eric Christopher5a2eff82012-06-01 00:22:57 +00001617 ClassTy, Flags);
Devang Patel6237cea2010-08-23 22:07:25 +00001618 return DbgTy;
1619}
1620
Douglas Gregor840943d2009-12-21 20:18:30 +00001621static QualType UnwrapTypeForDebugInfo(QualType T) {
1622 do {
1623 QualType LastT = T;
1624 switch (T->getTypeClass()) {
1625 default:
1626 return T;
1627 case Type::TemplateSpecialization:
1628 T = cast<TemplateSpecializationType>(T)->desugar();
1629 break;
John McCallf4c73712011-01-19 06:33:43 +00001630 case Type::TypeOfExpr:
1631 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001632 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001633 case Type::TypeOf:
1634 T = cast<TypeOfType>(T)->getUnderlyingType();
1635 break;
1636 case Type::Decltype:
1637 T = cast<DecltypeType>(T)->getUnderlyingType();
1638 break;
Sean Huntca63c202011-05-24 22:41:36 +00001639 case Type::UnaryTransform:
1640 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1641 break;
John McCall9d156a72011-01-06 01:58:22 +00001642 case Type::Attributed:
1643 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001644 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001645 case Type::Elaborated:
1646 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001647 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001648 case Type::Paren:
1649 T = cast<ParenType>(T)->getInnerType();
1650 break;
Eric Christopher363e5ac2012-08-07 00:14:25 +00001651 case Type::SubstTemplateTypeParm: {
1652 // We need to keep the qualifiers handy since getReplacementType()
1653 // will strip them away.
1654 unsigned Quals = T.getLocalFastQualifiers();
Douglas Gregor840943d2009-12-21 20:18:30 +00001655 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
Eric Christopher363e5ac2012-08-07 00:14:25 +00001656 T.addFastQualifiers(Quals);
1657 }
Douglas Gregor840943d2009-12-21 20:18:30 +00001658 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001659 case Type::Auto:
1660 T = cast<AutoType>(T)->getDeducedType();
1661 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001662 }
1663
1664 assert(T != LastT && "Type unwrapping failed to unwrap!");
1665 if (T == LastT)
1666 return T;
1667 } while (true);
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001668}
1669
Eric Christopher973bbb62011-12-16 23:40:18 +00001670/// getType - Get the type from the cache or return null type if it doesn't exist.
1671llvm::DIType CGDebugInfo::getTypeOrNull(QualType Ty) {
Mike Stump1eb44332009-09-09 15:08:12 +00001672
Douglas Gregor840943d2009-12-21 20:18:30 +00001673 // Unwrap the type as needed for debug information.
1674 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher42e75da2012-02-13 14:56:11 +00001675
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001676 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001677 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001678 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001679 if (it != TypeCache.end()) {
1680 // Verify that the debug info still exists.
Richard Smithe7259aa2012-08-17 04:17:54 +00001681 if (llvm::Value *V = it->second)
1682 return llvm::DIType(cast<llvm::MDNode>(V));
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001683 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001684
Eric Christopher973bbb62011-12-16 23:40:18 +00001685 return llvm::DIType();
1686}
1687
Eric Christopher9965dea2012-02-16 22:54:45 +00001688/// getCompletedTypeOrNull - Get the type from the cache or return null if it
1689/// doesn't exist.
1690llvm::DIType CGDebugInfo::getCompletedTypeOrNull(QualType Ty) {
1691
1692 // Unwrap the type as needed for debug information.
1693 Ty = UnwrapTypeForDebugInfo(Ty);
1694
1695 // Check for existing entry.
1696 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
1697 CompletedTypeCache.find(Ty.getAsOpaquePtr());
1698 if (it != CompletedTypeCache.end()) {
1699 // Verify that the debug info still exists.
Richard Smithe7259aa2012-08-17 04:17:54 +00001700 if (llvm::Value *V = it->second)
1701 return llvm::DIType(cast<llvm::MDNode>(V));
Eric Christopher9965dea2012-02-16 22:54:45 +00001702 }
1703
1704 return llvm::DIType();
1705}
1706
1707
Eric Christopher973bbb62011-12-16 23:40:18 +00001708/// getOrCreateType - Get the type from the cache or create a new
1709/// one if necessary.
1710llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile Unit) {
1711 if (Ty.isNull())
1712 return llvm::DIType();
1713
1714 // Unwrap the type as needed for debug information.
1715 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher363e5ac2012-08-07 00:14:25 +00001716
Eric Christopher9965dea2012-02-16 22:54:45 +00001717 llvm::DIType T = getCompletedTypeOrNull(Ty);
1718
Eric Christopher363e5ac2012-08-07 00:14:25 +00001719 if (T.Verify())
1720 return T;
Eric Christopher973bbb62011-12-16 23:40:18 +00001721
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001722 // Otherwise create the type.
1723 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001724
1725 llvm::DIType TC = getTypeOrNull(Ty);
1726 if (TC.Verify() && TC.isForwardDecl())
Michael J. Spencer50e3faa2012-06-08 23:47:12 +00001727 ReplaceMap.push_back(std::make_pair(Ty.getAsOpaquePtr(),
1728 static_cast<llvm::Value*>(TC)));
Eric Christopher9965dea2012-02-16 22:54:45 +00001729
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001730 // And update the type cache.
Eric Christopher9965dea2012-02-16 22:54:45 +00001731 TypeCache[Ty.getAsOpaquePtr()] = Res;
1732
1733 if (!Res.isForwardDecl())
1734 CompletedTypeCache[Ty.getAsOpaquePtr()] = Res;
Eric Christopher363e5ac2012-08-07 00:14:25 +00001735
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001736 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001737}
1738
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001739/// CreateTypeNode - Create a new debug type node.
Nick Lewycky7b3819d2011-11-09 04:27:23 +00001740llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001741 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001742 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001743 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001744
Douglas Gregor2101a822009-12-21 19:57:21 +00001745 const char *Diag = 0;
1746
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001747 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001748 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001749#define TYPE(Class, Base)
1750#define ABSTRACT_TYPE(Class, Base)
1751#define NON_CANONICAL_TYPE(Class, Base)
1752#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1753#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001754 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001755
Anders Carlssonbfe69952009-11-06 18:24:04 +00001756 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001757 case Type::Vector:
1758 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001759 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001760 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001761 case Type::ObjCObject:
1762 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001763 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001764 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001765 case Type::Builtin:
1766 return CreateType(cast<BuiltinType>(Ty));
1767 case Type::Complex:
1768 return CreateType(cast<ComplexType>(Ty));
1769 case Type::Pointer:
1770 return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001771 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001772 return CreateType(cast<BlockPointerType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001773 case Type::Typedef:
1774 return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001775 case Type::Record:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001776 return CreateType(cast<RecordType>(Ty));
Douglas Gregor72564e72009-02-26 23:50:07 +00001777 case Type::Enum:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001778 return CreateEnumType(cast<EnumType>(Ty)->getDecl());
Chris Lattner9c85ba32008-11-10 06:08:34 +00001779 case Type::FunctionProto:
1780 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001781 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001782 case Type::ConstantArray:
1783 case Type::VariableArray:
1784 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001785 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001786
1787 case Type::LValueReference:
1788 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001789 case Type::RValueReference:
1790 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001791
Anders Carlsson20f12a22009-12-06 18:00:51 +00001792 case Type::MemberPointer:
1793 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001794
Eli Friedmanb001de72011-10-06 23:00:33 +00001795 case Type::Atomic:
1796 return CreateType(cast<AtomicType>(Ty), Unit);
1797
John McCall9d156a72011-01-06 01:58:22 +00001798 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001799 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001800 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001801 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001802 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001803 case Type::TypeOfExpr:
1804 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001805 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001806 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001807 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001808 llvm_unreachable("type should have been unwrapped!");
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001809 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001810
1811 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001812 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001813 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001814 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001815 << Diag;
1816 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001817}
1818
Eric Christopher9965dea2012-02-16 22:54:45 +00001819/// getOrCreateLimitedType - Get the type from the cache or create a new
1820/// limited type if necessary.
1821llvm::DIType CGDebugInfo::getOrCreateLimitedType(QualType Ty,
1822 llvm::DIFile Unit) {
1823 if (Ty.isNull())
1824 return llvm::DIType();
1825
1826 // Unwrap the type as needed for debug information.
1827 Ty = UnwrapTypeForDebugInfo(Ty);
1828
1829 llvm::DIType T = getTypeOrNull(Ty);
1830
1831 // We may have cached a forward decl when we could have created
1832 // a non-forward decl. Go ahead and create a non-forward decl
1833 // now.
1834 if (T.Verify() && !T.isForwardDecl()) return T;
1835
1836 // Otherwise create the type.
1837 llvm::DIType Res = CreateLimitedTypeNode(Ty, Unit);
1838
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001839 if (T.Verify() && T.isForwardDecl())
Michael J. Spencer50e3faa2012-06-08 23:47:12 +00001840 ReplaceMap.push_back(std::make_pair(Ty.getAsOpaquePtr(),
1841 static_cast<llvm::Value*>(T)));
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001842
Eric Christopher9965dea2012-02-16 22:54:45 +00001843 // And update the type cache.
1844 TypeCache[Ty.getAsOpaquePtr()] = Res;
1845 return Res;
1846}
1847
1848// TODO: Currently used for context chains when limiting debug info.
1849llvm::DIType CGDebugInfo::CreateLimitedType(const RecordType *Ty) {
1850 RecordDecl *RD = Ty->getDecl();
1851
1852 // Get overall information about the record type for the debug info.
1853 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1854 unsigned Line = getLineNumber(RD->getLocation());
1855 StringRef RDName = RD->getName();
1856
1857 llvm::DIDescriptor RDContext;
Alexey Samsonov3a70cd62012-04-27 07:24:20 +00001858 if (CGM.getCodeGenOpts().DebugInfo == CodeGenOptions::LimitedDebugInfo)
Eric Christopher9965dea2012-02-16 22:54:45 +00001859 RDContext = createContextChain(cast<Decl>(RD->getDeclContext()));
1860 else
1861 RDContext = getContextDescriptor(cast<Decl>(RD->getDeclContext()));
1862
1863 // If this is just a forward declaration, construct an appropriately
1864 // marked node and just return it.
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001865 if (!RD->getDefinition())
1866 return createRecordFwdDecl(RD, RDContext);
Eric Christopher9965dea2012-02-16 22:54:45 +00001867
1868 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1869 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1870 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Benjamin Kramer6181e562012-03-20 19:49:14 +00001871 llvm::TrackingVH<llvm::MDNode> RealDecl;
Eric Christopher9965dea2012-02-16 22:54:45 +00001872
1873 if (RD->isUnion())
1874 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
1875 Size, Align, 0, llvm::DIArray());
1876 else if (CXXDecl) {
1877 RDName = getClassName(RD);
1878
1879 // FIXME: This could be a struct type giving a default visibility different
1880 // than C++ class type, but needs llvm metadata changes first.
1881 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
1882 Size, Align, 0, 0, llvm::DIType(),
Eric Christopher86211df2012-02-20 18:05:24 +00001883 llvm::DIArray(), llvm::DIType(),
Eric Christopher9965dea2012-02-16 22:54:45 +00001884 llvm::DIArray());
1885 } else
1886 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1887 Size, Align, 0, llvm::DIArray());
1888
1889 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
1890 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = llvm::DIType(RealDecl);
1891
1892 if (CXXDecl) {
1893 // A class's primary base or the class itself contains the vtable.
1894 llvm::MDNode *ContainingType = NULL;
1895 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1896 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1897 // Seek non virtual primary base root.
1898 while (1) {
1899 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1900 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
1901 if (PBT && !BRL.isPrimaryBaseVirtual())
1902 PBase = PBT;
1903 else
1904 break;
1905 }
1906 ContainingType =
1907 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), DefUnit);
1908 }
1909 else if (CXXDecl->isDynamicClass())
1910 ContainingType = RealDecl;
1911
Eric Christopher1e009d52012-02-17 07:09:48 +00001912 RealDecl->replaceOperandWith(12, ContainingType);
Eric Christopher9965dea2012-02-16 22:54:45 +00001913 }
1914 return llvm::DIType(RealDecl);
1915}
1916
1917/// CreateLimitedTypeNode - Create a new debug type node, but only forward
1918/// declare composite types that haven't been processed yet.
1919llvm::DIType CGDebugInfo::CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) {
1920
1921 // Work out details of type.
1922 switch (Ty->getTypeClass()) {
1923#define TYPE(Class, Base)
1924#define ABSTRACT_TYPE(Class, Base)
1925#define NON_CANONICAL_TYPE(Class, Base)
1926#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1927 #include "clang/AST/TypeNodes.def"
1928 llvm_unreachable("Dependent types cannot show up in debug information");
1929
1930 case Type::Record:
1931 return CreateLimitedType(cast<RecordType>(Ty));
1932 default:
1933 return CreateTypeNode(Ty, Unit);
1934 }
1935}
1936
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001937/// CreateMemberType - Create new member and increase Offset by FType's size.
1938llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001939 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001940 uint64_t *Offset) {
1941 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1942 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1943 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001944 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001945 FieldSize, FieldAlign,
1946 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001947 *Offset += FieldSize;
1948 return Ty;
1949}
1950
Devang Patel120bf322011-04-23 00:08:01 +00001951/// getFunctionDeclaration - Return debug info descriptor to describe method
1952/// declaration for the given method definition.
1953llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1954 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1955 if (!FD) return llvm::DISubprogram();
1956
1957 // Setup context.
1958 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1959
Devang Patel22a5cdf2011-04-29 23:42:32 +00001960 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001961 MI = SPCache.find(FD->getCanonicalDecl());
Devang Patel22a5cdf2011-04-29 23:42:32 +00001962 if (MI != SPCache.end()) {
Richard Smithe7259aa2012-08-17 04:17:54 +00001963 llvm::Value *V = MI->second;
1964 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(V));
Devang Patel22a5cdf2011-04-29 23:42:32 +00001965 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1966 return SP;
1967 }
1968
Devang Patel120bf322011-04-23 00:08:01 +00001969 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1970 E = FD->redecls_end(); I != E; ++I) {
1971 const FunctionDecl *NextFD = *I;
1972 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001973 MI = SPCache.find(NextFD->getCanonicalDecl());
Devang Patel120bf322011-04-23 00:08:01 +00001974 if (MI != SPCache.end()) {
Richard Smithe7259aa2012-08-17 04:17:54 +00001975 llvm::Value *V = MI->second;
1976 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(V));
Devang Patel120bf322011-04-23 00:08:01 +00001977 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1978 return SP;
1979 }
1980 }
1981 return llvm::DISubprogram();
1982}
1983
Devang Patel1c296522011-05-31 20:46:46 +00001984// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1985// implicit parameter "this".
Eric Christopherab5278e2011-10-11 23:00:51 +00001986llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D,
1987 QualType FnType,
Devang Patel1c296522011-05-31 20:46:46 +00001988 llvm::DIFile F) {
Eric Christopher363e5ac2012-08-07 00:14:25 +00001989
Devang Patel1c296522011-05-31 20:46:46 +00001990 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1991 return getOrCreateMethodType(Method, F);
Nick Lewycky7480d962011-11-10 00:34:02 +00001992 if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00001993 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001994 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00001995
1996 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00001997 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00001998 // "self" pointer is always first argument.
1999 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
2000 // "cmd" pointer is always second argument.
2001 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Pateld127bcb2011-05-31 22:21:11 +00002002 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00002003 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00002004 PE = OMethod->param_end(); PI != PE; ++PI)
2005 Elts.push_back(getOrCreateType((*PI)->getType(), F));
2006
Devang Patelc478f212011-05-31 21:18:50 +00002007 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
2008 return DBuilder.createSubroutineType(F, EltTypeArray);
2009 }
Devang Patel1c296522011-05-31 20:46:46 +00002010 return getOrCreateType(FnType, F);
2011}
2012
Eric Christopher451b4412012-03-20 23:28:32 +00002013/// EmitFunctionStart - Constructs the debug code for entering a function.
Devang Patel9c6c3a02010-01-14 00:36:21 +00002014void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002015 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00002016 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00002017
Chris Lattner5f9e2722011-07-23 10:55:15 +00002018 StringRef Name;
2019 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00002020
Eric Christopheraa2164c2011-09-29 00:00:45 +00002021 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002022
Devang Patel9c6c3a02010-01-14 00:36:21 +00002023 const Decl *D = GD.getDecl();
Eric Christopherea320472012-04-03 00:44:15 +00002024 // Use the location of the declaration.
2025 SourceLocation Loc = D->getLocation();
Eric Christopher73fb3502011-10-13 21:45:18 +00002026
Devang Patel3951e712010-10-07 22:03:49 +00002027 unsigned Flags = 0;
Eric Christopherea320472012-04-03 00:44:15 +00002028 llvm::DIFile Unit = getOrCreateFile(Loc);
Devang Patel0692f832010-10-11 21:58:41 +00002029 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00002030 llvm::DIArray TParamsArray;
Devang Patel9c6c3a02010-01-14 00:36:21 +00002031 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Eric Christopherbf979472011-11-14 18:55:02 +00002032 // If there is a DISubprogram for this function available then use it.
Devang Patel4125fd22010-01-19 01:54:44 +00002033 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00002034 FI = SPCache.find(FD->getCanonicalDecl());
Devang Patel4125fd22010-01-19 01:54:44 +00002035 if (FI != SPCache.end()) {
Richard Smithe7259aa2012-08-17 04:17:54 +00002036 llvm::Value *V = FI->second;
2037 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(V));
Devang Patelab699792010-05-07 18:12:35 +00002038 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
2039 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002040 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00002041 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00002042 return;
2043 }
2044 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00002045 Name = getFunctionName(FD);
2046 // Use mangled name as linkage name for c/c++ functions.
Eric Christopher43443de2012-04-12 00:35:06 +00002047 if (FD->hasPrototype()) {
Devang Patel2df74c02011-05-02 22:37:48 +00002048 LinkageName = CGM.getMangledName(GD);
Eric Christopher43443de2012-04-12 00:35:06 +00002049 Flags |= llvm::DIDescriptor::FlagPrototyped;
2050 }
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002051 if (LinkageName == Name ||
2052 CGM.getCodeGenOpts().DebugInfo <= CodeGenOptions::DebugLineTablesOnly)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002053 LinkageName = StringRef();
Eric Christopher43443de2012-04-12 00:35:06 +00002054
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002055 if (CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo) {
2056 if (const NamespaceDecl *NSDecl =
2057 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
2058 FDContext = getOrCreateNameSpace(NSDecl);
2059 else if (const RecordDecl *RDecl =
2060 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
2061 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00002062
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002063 // Collect template parameters.
2064 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
2065 }
David Chisnall70b9b442010-09-02 17:16:32 +00002066 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00002067 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00002068 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00002069 } else {
Devang Patel58faf202010-10-22 17:11:50 +00002070 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00002071 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00002072 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00002073 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002074 if (!Name.empty() && Name[0] == '\01')
2075 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002076
Eric Christopherea320472012-04-03 00:44:15 +00002077 unsigned LineNo = getLineNumber(Loc);
Devang Patele2472482010-09-29 21:05:52 +00002078 if (D->isImplicit())
2079 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopherea320472012-04-03 00:44:15 +00002080
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002081 llvm::DIType DIFnType;
2082 llvm::DISubprogram SPDecl;
2083 if (CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo) {
2084 DIFnType = getOrCreateFunctionType(D, FnType, Unit);
2085 SPDecl = getFunctionDeclaration(D);
2086 } else {
2087 // Create fake but valid subroutine type. Otherwise
2088 // llvm::DISubprogram::Verify() would return false, and
2089 // subprogram DIE will miss DW_AT_decl_file and
2090 // DW_AT_decl_line fields.
2091 SmallVector<llvm::Value*, 16> Elts;
2092 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
2093 DIFnType = DBuilder.createSubroutineType(Unit, EltTypeArray);
2094 }
2095 llvm::DISubprogram SP;
2096 SP = DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
2097 LineNo, DIFnType,
2098 Fn->hasInternalLinkage(), true/*definition*/,
2099 getLineNumber(CurLoc), Flags,
2100 CGM.getLangOpts().Optimize,
2101 Fn, TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00002102
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002103 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00002104 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002105 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00002106 RegionMap[D] = llvm::WeakVH(SP);
Eric Christopher69a1b742011-09-29 00:00:37 +00002107}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002108
Eric Christopher5321bc42011-09-29 00:00:41 +00002109/// EmitLocation - Emit metadata to indicate a change in line/column
2110/// information in the source file.
Eric Christopher73fb3502011-10-13 21:45:18 +00002111void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
2112
2113 // Update our current location
2114 setLocation(Loc);
2115
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002116 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00002117
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002118 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00002119 SourceManager &SM = CGM.getContext().getSourceManager();
Eric Christopher73fb3502011-10-13 21:45:18 +00002120 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00002121 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00002122 // New Builder may not be in sync with CGDebugInfo.
2123 if (!Builder.getCurrentDebugLocation().isUnknown())
2124 return;
Eric Christopher414ee4b2011-09-29 00:00:35 +00002125
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002126 // Update last state.
2127 PrevLoc = CurLoc;
2128
Eric Christopheraa2164c2011-09-29 00:00:45 +00002129 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00002130 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
2131 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00002132 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002133}
2134
Eric Christopher73fb3502011-10-13 21:45:18 +00002135/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
2136/// the stack.
2137void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
Devang Patel8fae0602009-11-13 19:10:24 +00002138 llvm::DIDescriptor D =
Eric Christopher73fb3502011-10-13 21:45:18 +00002139 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
Devang Patel53bc5182012-02-08 00:10:20 +00002140 llvm::DIDescriptor() :
2141 llvm::DIDescriptor(LexicalBlockStack.back()),
2142 getOrCreateFile(CurLoc),
2143 getLineNumber(CurLoc),
2144 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00002145 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002146 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002147}
2148
Eric Christopher73fb3502011-10-13 21:45:18 +00002149/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
2150/// region - beginning of a DW_TAG_lexical_block.
2151void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) {
2152 // Set our current location.
2153 setLocation(Loc);
2154
2155 // Create a new lexical block and push it on the stack.
2156 CreateLexicalBlock(Loc);
2157
2158 // Emit a line table change for the current location inside the new scope.
2159 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
Devang Patel53bc5182012-02-08 00:10:20 +00002160 getColumnNumber(Loc),
2161 LexicalBlockStack.back()));
Eric Christopher73fb3502011-10-13 21:45:18 +00002162}
2163
Eric Christopheraa2164c2011-09-29 00:00:45 +00002164/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00002165/// region - end of a DW_TAG_lexical_block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002166void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002167 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Eric Christopherc852e9f2012-07-11 15:32:13 +00002168
2169 // Provide an entry in the line table for the end of the block.
2170 EmitLocation(Builder, Loc);
2171
Eric Christopheraa2164c2011-09-29 00:00:45 +00002172 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002173}
2174
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002175/// EmitFunctionEnd - Constructs the debug code for exiting a function.
2176void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002177 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002178 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00002179 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002180
2181 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00002182 while (LexicalBlockStack.size() != RCount)
Eric Christopher73fb3502011-10-13 21:45:18 +00002183 EmitLexicalBlockEnd(Builder, CurLoc);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002184 FnBeginRegionCount.pop_back();
2185}
2186
Devang Patel809b9bb2010-02-10 18:49:08 +00002187// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
2188// See BuildByRefType.
2189llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
2190 uint64_t *XOffset) {
2191
Chris Lattner5f9e2722011-07-23 10:55:15 +00002192 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00002193 QualType FType;
2194 uint64_t FieldSize, FieldOffset;
2195 unsigned FieldAlign;
2196
Devang Patel17800552010-03-09 00:44:50 +00002197 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002198 QualType Type = VD->getType();
2199
2200 FieldOffset = 0;
2201 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002202 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2203 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002204 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002205 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2206 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2207
John McCall6b5a61b2011-02-07 10:33:21 +00002208 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00002209 if (HasCopyAndDispose) {
2210 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002211 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
2212 &FieldOffset));
2213 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
2214 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002215 }
2216
2217 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00002218 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002219 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00002220 CharUnits FieldOffsetInBytes
2221 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
2222 CharUnits AlignedOffsetInBytes
2223 = FieldOffsetInBytes.RoundUpToAlignment(Align);
2224 CharUnits NumPaddingBytes
2225 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00002226
Ken Dyck573be632011-04-22 17:34:18 +00002227 if (NumPaddingBytes.isPositive()) {
2228 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00002229 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2230 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002231 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002232 }
2233 }
2234
2235 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002236 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00002237 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00002238 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00002239
2240 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00002241 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002242 0, FieldSize, FieldAlign,
2243 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00002244 EltTys.push_back(FieldTy);
2245 FieldOffset += FieldSize;
2246
Jay Foadc556ef22011-04-24 10:11:03 +00002247 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00002248
Devang Patele2472482010-09-29 21:05:52 +00002249 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00002250
Devang Patel16674e82011-02-22 18:56:36 +00002251 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00002252 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00002253}
Devang Patel823d8e92010-12-08 22:42:58 +00002254
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002255/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00002256void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00002257 llvm::Value *Storage,
2258 unsigned ArgNo, CGBuilderTy &Builder) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002259 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
Eric Christopheraa2164c2011-09-29 00:00:45 +00002260 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00002261
Devang Patel17800552010-03-09 00:44:50 +00002262 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002263 llvm::DIType Ty;
2264 uint64_t XOffset = 0;
2265 if (VD->hasAttr<BlocksAttr>())
2266 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2267 else
2268 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00002269
Devang Patelf4e54a22010-05-07 23:05:55 +00002270 // If there is not any debug info for type then do not emit debug info
2271 // for this variable.
2272 if (!Ty)
2273 return;
2274
Devang Patel34753802011-02-16 01:11:51 +00002275 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
2276 // If Storage is an aggregate returned as 'sret' then let debugger know
2277 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00002278 if (Arg->hasStructRetAttr())
Eric Christopher37e4cea2012-05-19 01:36:50 +00002279 Ty = DBuilder.createReferenceType(llvm::dwarf::DW_TAG_reference_type, Ty);
Devang Patel34753802011-02-16 01:11:51 +00002280 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
2281 // If an aggregate variable has non trivial destructor or non trivial copy
2282 // constructor than it is pass indirectly. Let debug info know about this
2283 // by using reference of the aggregate type as a argument type.
Eric Christopherab5278e2011-10-11 23:00:51 +00002284 if (!Record->hasTrivialCopyConstructor() ||
2285 !Record->hasTrivialDestructor())
Eric Christopher37e4cea2012-05-19 01:36:50 +00002286 Ty = DBuilder.createReferenceType(llvm::dwarf::DW_TAG_reference_type, Ty);
Devang Patel34753802011-02-16 01:11:51 +00002287 }
2288 }
Devang Patel0691f932011-02-10 00:40:52 +00002289
Chris Lattner9c85ba32008-11-10 06:08:34 +00002290 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002291 unsigned Line = getLineNumber(VD->getLocation());
2292 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00002293 unsigned Flags = 0;
2294 if (VD->isImplicit())
2295 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002296 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00002297
Chris Lattner5f9e2722011-07-23 10:55:15 +00002298 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002299 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002300 if (VD->hasAttr<BlocksAttr>()) {
2301 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002302 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002303 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002304 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002305 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002306 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002307 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002308 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002309 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2310 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002311 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002312 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002313 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2314
2315 // Create the descriptor for the variable.
2316 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002317 DBuilder.createComplexVariable(Tag,
Eric Christopherab5278e2011-10-11 23:00:51 +00002318 llvm::DIDescriptor(Scope),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002319 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002320 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002321
2322 // Insert an llvm.dbg.declare into the current block.
2323 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002324 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002325 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2326 return;
Eric Christophera135f2c2012-05-08 18:56:47 +00002327 } else if (isa<VariableArrayType>(VD->getType())) {
2328 // These are "complex" variables in that they need an op_deref.
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002329 // Create the descriptor for the variable.
Eric Christophera135f2c2012-05-08 18:56:47 +00002330 llvm::Value *Addr = llvm::ConstantInt::get(CGM.Int64Ty,
2331 llvm::DIBuilder::OpDeref);
2332 llvm::DIVariable D =
2333 DBuilder.createComplexVariable(Tag,
2334 llvm::DIDescriptor(Scope),
2335 Name, Unit, Line, Ty,
2336 Addr, ArgNo);
2337
2338 // Insert an llvm.dbg.declare into the current block.
2339 llvm::Instruction *Call =
2340 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
2341 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2342 return;
2343 }
2344
2345 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002346 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002347 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002348 Name, Unit, Line, Ty,
David Blaikie4e4d0842012-03-11 07:00:24 +00002349 CGM.getLangOpts().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002350
2351 // Insert an llvm.dbg.declare into the current block.
2352 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002353 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002354 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002355 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002356 }
2357
2358 // If VD is an anonymous union then Storage represents value for
2359 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002360 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2361 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2362 if (RD->isUnion()) {
2363 for (RecordDecl::field_iterator I = RD->field_begin(),
2364 E = RD->field_end();
2365 I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00002366 FieldDecl *Field = *I;
John McCall8178df32011-02-22 22:38:33 +00002367 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002368 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002369
John McCall8178df32011-02-22 22:38:33 +00002370 // Ignore unnamed fields. Do not ignore unnamed records.
2371 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2372 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002373
John McCall8178df32011-02-22 22:38:33 +00002374 // Use VarDecl's Tag, Scope and Line number.
2375 llvm::DIVariable D =
2376 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2377 FieldName, Unit, Line, FieldTy,
David Blaikie4e4d0842012-03-11 07:00:24 +00002378 CGM.getLangOpts().Optimize, Flags,
Devang Patel093ac462011-03-03 20:13:15 +00002379 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002380
John McCall8178df32011-02-22 22:38:33 +00002381 // Insert an llvm.dbg.declare into the current block.
2382 llvm::Instruction *Call =
2383 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
John McCall8178df32011-02-22 22:38:33 +00002384 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002385 }
John McCall8178df32011-02-22 22:38:33 +00002386 }
2387 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002388}
2389
Devang Patele2d01912011-04-25 23:43:36 +00002390void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2391 llvm::Value *Storage,
2392 CGBuilderTy &Builder) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002393 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
Devang Patele2d01912011-04-25 23:43:36 +00002394 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2395}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002396
Devang Patele2d01912011-04-25 23:43:36 +00002397void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2398 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2399 const CGBlockInfo &blockInfo) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002400 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
Eric Christopheraa2164c2011-09-29 00:00:45 +00002401 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002402
Devang Patel2b594b92010-04-26 23:28:46 +00002403 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002404 return;
Devang Patele2d01912011-04-25 23:43:36 +00002405
John McCall6b5a61b2011-02-07 10:33:21 +00002406 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002407
Mike Stumpb1a6e682009-09-30 02:43:10 +00002408 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002409 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002410 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002411 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002412 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2413 else
2414 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002415
2416 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002417 unsigned Line = getLineNumber(VD->getLocation());
2418 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002419
John McCall6b5a61b2011-02-07 10:33:21 +00002420 const llvm::TargetData &target = CGM.getTargetData();
2421
2422 CharUnits offset = CharUnits::fromQuantity(
2423 target.getStructLayout(blockInfo.StructureType)
2424 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2425
Chris Lattner5f9e2722011-07-23 10:55:15 +00002426 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002427 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002428 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002429 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002430 if (isByRef) {
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002431 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2432 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002433 // offset of __forwarding field
Eric Christopherab5278e2011-10-11 23:00:51 +00002434 offset = CGM.getContext()
2435 .toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattner14b1a362010-01-25 03:29:35 +00002436 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002437 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2438 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002439 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002440 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002441 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002442 }
2443
2444 // Create the descriptor for the variable.
2445 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002446 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002447 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002448 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002449 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002450 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002451 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Eric Christopher73fb3502011-10-13 21:45:18 +00002452 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2453 LexicalBlockStack.back()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002454}
2455
Chris Lattner9c85ba32008-11-10 06:08:34 +00002456/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2457/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002458void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002459 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002460 CGBuilderTy &Builder) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002461 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
Devang Patel093ac462011-03-03 20:13:15 +00002462 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002463}
2464
John McCall8178df32011-02-22 22:38:33 +00002465namespace {
2466 struct BlockLayoutChunk {
2467 uint64_t OffsetInBits;
2468 const BlockDecl::Capture *Capture;
2469 };
2470 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2471 return l.OffsetInBits < r.OffsetInBits;
2472 }
2473}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002474
John McCall8178df32011-02-22 22:38:33 +00002475void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2476 llvm::Value *addr,
2477 CGBuilderTy &Builder) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002478 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
John McCall8178df32011-02-22 22:38:33 +00002479 ASTContext &C = CGM.getContext();
2480 const BlockDecl *blockDecl = block.getBlockDecl();
2481
2482 // Collect some general information about the block's location.
2483 SourceLocation loc = blockDecl->getCaretLocation();
2484 llvm::DIFile tunit = getOrCreateFile(loc);
2485 unsigned line = getLineNumber(loc);
2486 unsigned column = getColumnNumber(loc);
2487
2488 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002489 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002490
2491 const llvm::StructLayout *blockLayout =
2492 CGM.getTargetData().getStructLayout(block.StructureType);
2493
Chris Lattner5f9e2722011-07-23 10:55:15 +00002494 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002495 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2496 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002497 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002498 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2499 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002500 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002501 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2502 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002503 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002504 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2505 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002506 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002507 fields.push_back(createFieldType("__descriptor",
2508 C.getPointerType(block.NeedsCopyDispose ?
2509 C.getBlockDescriptorExtendedType() :
2510 C.getBlockDescriptorType()),
2511 0, loc, AS_public,
2512 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002513 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002514
2515 // We want to sort the captures by offset, not because DWARF
2516 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002517 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002518
2519 // 'this' capture.
2520 if (blockDecl->capturesCXXThis()) {
2521 BlockLayoutChunk chunk;
2522 chunk.OffsetInBits =
2523 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2524 chunk.Capture = 0;
2525 chunks.push_back(chunk);
2526 }
2527
2528 // Variable captures.
2529 for (BlockDecl::capture_const_iterator
2530 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2531 i != e; ++i) {
2532 const BlockDecl::Capture &capture = *i;
2533 const VarDecl *variable = capture.getVariable();
2534 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2535
2536 // Ignore constant captures.
2537 if (captureInfo.isConstant())
2538 continue;
2539
2540 BlockLayoutChunk chunk;
2541 chunk.OffsetInBits =
2542 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2543 chunk.Capture = &capture;
2544 chunks.push_back(chunk);
2545 }
2546
2547 // Sort by offset.
2548 llvm::array_pod_sort(chunks.begin(), chunks.end());
2549
Chris Lattner5f9e2722011-07-23 10:55:15 +00002550 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002551 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2552 uint64_t offsetInBits = i->OffsetInBits;
2553 const BlockDecl::Capture *capture = i->Capture;
2554
2555 // If we have a null capture, this must be the C++ 'this' capture.
2556 if (!capture) {
2557 const CXXMethodDecl *method =
2558 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2559 QualType type = method->getThisType(C);
2560
2561 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002562 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002563 continue;
2564 }
2565
2566 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002567 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002568
2569 llvm::DIType fieldType;
2570 if (capture->isByRef()) {
2571 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2572
2573 // FIXME: this creates a second copy of this type!
2574 uint64_t xoffset;
2575 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2576 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002577 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002578 ptrInfo.first, ptrInfo.second,
2579 offsetInBits, 0, fieldType);
2580 } else {
2581 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002582 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002583 }
2584 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002585 }
2586
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002587 SmallString<36> typeName;
John McCall8178df32011-02-22 22:38:33 +00002588 llvm::raw_svector_ostream(typeName)
2589 << "__block_literal_" << CGM.getUniqueBlockCount();
2590
Jay Foadc556ef22011-04-24 10:11:03 +00002591 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002592
2593 llvm::DIType type =
2594 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2595 CGM.getContext().toBits(block.BlockSize),
2596 CGM.getContext().toBits(block.BlockAlign),
2597 0, fieldsArray);
2598 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2599
2600 // Get overall information about the block.
2601 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002602 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002603 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002604
2605 // Create the descriptor for the parameter.
2606 llvm::DIVariable debugVar =
2607 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2608 llvm::DIDescriptor(scope),
2609 name, tunit, line, type,
David Blaikie4e4d0842012-03-11 07:00:24 +00002610 CGM.getLangOpts().Optimize, flags,
Devang Patel093ac462011-03-03 20:13:15 +00002611 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002612
2613 // Insert an llvm.dbg.value into the current block.
2614 llvm::Instruction *declare =
2615 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2616 Builder.GetInsertBlock());
2617 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2618}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002619
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002620/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002621void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002622 const VarDecl *D) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002623 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002624 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002625 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002626 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002627
Eric Christopher73fb3502011-10-13 21:45:18 +00002628 setLocation(D->getLocation());
2629
Devang Pateleb6d79b2010-02-01 21:34:11 +00002630 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002631 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002632
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002633 // CodeGen turns int[] into int[1] so we'll do the same here.
Benjamin Kramer65263b42012-08-04 17:00:46 +00002634 llvm::APInt ConstVal(32, 1);
Anders Carlsson20f12a22009-12-06 18:00:51 +00002635 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002636
Anders Carlsson20f12a22009-12-06 18:00:51 +00002637 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00002638 ArrayType::Normal, 0);
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002639 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002640 StringRef DeclName = D->getName();
2641 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002642 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2643 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002644 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002645 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002646 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002647 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002648 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002649 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002650 Unit, LineNo, getOrCreateType(T, Unit),
2651 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002652}
2653
Devang Patel9ca36b62009-02-26 21:10:26 +00002654/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002655void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002656 ObjCInterfaceDecl *ID) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002657 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
Devang Patel9ca36b62009-02-26 21:10:26 +00002658 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002659 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002660 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002661
Chris Lattner5f9e2722011-07-23 10:55:15 +00002662 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002663
Devang Pateld6c5a262010-02-01 21:52:22 +00002664 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002665 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002666
Devang Patel9ca36b62009-02-26 21:10:26 +00002667 // CodeGen turns int[] into int[1] so we'll do the same here.
Benjamin Kramer65263b42012-08-04 17:00:46 +00002668 llvm::APInt ConstVal(32, 1);
Anders Carlsson20f12a22009-12-06 18:00:51 +00002669 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002670
Anders Carlsson20f12a22009-12-06 18:00:51 +00002671 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002672 ArrayType::Normal, 0);
2673 }
2674
Devang Patel16674e82011-02-22 18:56:36 +00002675 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002676 getOrCreateType(T, Unit),
2677 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002678}
Devang Patelabb485f2010-02-01 19:16:32 +00002679
Devang Patel25c2c8f2010-08-10 17:53:33 +00002680/// EmitGlobalVariable - Emit global variable's debug info.
2681void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002682 llvm::Constant *Init) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002683 assert(CGM.getCodeGenOpts().DebugInfo >= CodeGenOptions::LimitedDebugInfo);
Devang Patel8d308382010-08-10 07:24:25 +00002684 // Create the descriptor for the variable.
2685 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002686 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002687 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002688 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
Benjamin Kramer527e6162012-06-20 18:11:18 +00002689 const EnumDecl *ED = cast<EnumDecl>(ECD->getDeclContext());
2690 assert(isa<EnumType>(ED->getTypeForDecl()) && "Enum without EnumType?");
2691 Ty = getOrCreateType(QualType(ED->getTypeForDecl(), 0), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002692 }
Devang Patel0317ab02010-08-10 18:27:15 +00002693 // Do not use DIGlobalVariable for enums.
2694 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2695 return;
Devang Patel16674e82011-02-22 18:56:36 +00002696 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002697 getLineNumber(VD->getLocation()),
2698 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002699}
2700
Devang Patelabb485f2010-02-01 19:16:32 +00002701/// getOrCreateNamesSpace - Return namespace descriptor for the given
2702/// namespace decl.
2703llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002704CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002705 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2706 NameSpaceCache.find(NSDecl);
2707 if (I != NameSpaceCache.end())
2708 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2709
Devang Patel8ab870d2010-05-12 23:46:38 +00002710 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002711 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002712 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002713 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002714 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002715 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002716 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002717 return NS;
2718}
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002719
2720void CGDebugInfo::finalize(void) {
2721 for (std::vector<std::pair<void *, llvm::WeakVH> >::const_iterator VI
2722 = ReplaceMap.begin(), VE = ReplaceMap.end(); VI != VE; ++VI) {
2723 llvm::DIType Ty, RepTy;
2724 // Verify that the debug info still exists.
Richard Smithe7259aa2012-08-17 04:17:54 +00002725 if (llvm::Value *V = VI->second)
2726 Ty = llvm::DIType(cast<llvm::MDNode>(V));
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002727
2728 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2729 TypeCache.find(VI->first);
2730 if (it != TypeCache.end()) {
2731 // Verify that the debug info still exists.
Richard Smithe7259aa2012-08-17 04:17:54 +00002732 if (llvm::Value *V = it->second)
2733 RepTy = llvm::DIType(cast<llvm::MDNode>(V));
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002734 }
2735
Eric Christopher86211df2012-02-20 18:05:24 +00002736 if (Ty.Verify() && Ty.isForwardDecl() && RepTy.Verify()) {
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002737 Ty.replaceAllUsesWith(RepTy);
Eric Christopher86211df2012-02-20 18:05:24 +00002738 }
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002739 }
2740 DBuilder.finalize();
2741}