blob: 7dfaaa470801210a2769313a69c1e2fbcbd16e34 [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"
Micah Villmow25a6a842012-10-08 16:25:52 +000037#include "llvm/DataLayout.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)){
Roman Divacky31ba6132012-09-06 15:59:27 +0000160 OS << ((const NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
David Chisnall52044a22010-09-02 18:01:51 +0000161 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
Eric Christopher25dfaac2012-10-18 22:08:02 +0000257/// getColumnNumber - Get column number for the location.
Devang Patel8ab870d2010-05-12 23:46:38 +0000258unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
Eric Christopher25dfaac2012-10-18 22:08:02 +0000259 // We may not want column information at all.
Eric Christopherda3301e2012-10-18 21:52:18 +0000260 if (!CGM.getCodeGenOpts().DebugColumnInfo)
261 return 0;
Eric Christopher25dfaac2012-10-18 22:08:02 +0000262
263 // If the location is invalid then use the current column.
264 if (Loc.isInvalid() && CurLoc.isInvalid())
265 return 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000266 SourceManager &SM = CGM.getContext().getSourceManager();
267 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000268 return PLoc.isValid()? PLoc.getColumn() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000269}
270
Chris Lattner5f9e2722011-07-23 10:55:15 +0000271StringRef CGDebugInfo::getCurrentDirname() {
Nick Lewycky7c4fd912011-10-21 02:32:14 +0000272 if (!CGM.getCodeGenOpts().DebugCompilationDir.empty())
273 return CGM.getCodeGenOpts().DebugCompilationDir;
274
Devang Patelac4d13c2010-07-27 15:17:16 +0000275 if (!CWDName.empty())
276 return CWDName;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000277 SmallString<256> CWD;
Benjamin Kramerbcbca752011-10-14 18:45:11 +0000278 llvm::sys::fs::current_path(CWD);
279 char *CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
280 memcpy(CompDirnamePtr, CWD.data(), CWD.size());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000281 return CWDName = StringRef(CompDirnamePtr, CWD.size());
Devang Patelac4d13c2010-07-27 15:17:16 +0000282}
283
Devang Patel17800552010-03-09 00:44:50 +0000284/// CreateCompileUnit - Create new compile unit.
285void CGDebugInfo::CreateCompileUnit() {
286
287 // Get absolute path name.
Douglas Gregorac91b4c2010-03-18 23:46:43 +0000288 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000289 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
290 if (MainFileName.empty())
Devang Patel22fe5852010-03-12 21:04:27 +0000291 MainFileName = "<unknown>";
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000292
Douglas Gregorf6728fc2010-03-22 21:28:29 +0000293 // The main file name provided via the "-main-file-name" option contains just
294 // the file name itself with no path information. This file name may have had
295 // a relative path, so we look into the actual file entry for the main
296 // file to determine the real absolute path for the file.
Devang Patel6e6bc392010-07-23 23:04:28 +0000297 std::string MainFileDir;
Devang Patelac4d13c2010-07-27 15:17:16 +0000298 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000299 MainFileDir = MainFile->getDir()->getName();
Devang Patelac4d13c2010-07-27 15:17:16 +0000300 if (MainFileDir != ".")
301 MainFileName = MainFileDir + "/" + MainFileName;
302 }
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000303
Devang Patelac4d13c2010-07-27 15:17:16 +0000304 // Save filename string.
305 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
306 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000307 StringRef Filename(FilenamePtr, MainFileName.length());
Devang Patelac4d13c2010-07-27 15:17:16 +0000308
Chris Lattner515455a2009-03-25 03:28:08 +0000309 unsigned LangTag;
David Blaikie4e4d0842012-03-11 07:00:24 +0000310 const LangOptions &LO = CGM.getLangOpts();
Chris Lattner515455a2009-03-25 03:28:08 +0000311 if (LO.CPlusPlus) {
312 if (LO.ObjC1)
313 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
314 else
315 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
316 } else if (LO.ObjC1) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000317 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner515455a2009-03-25 03:28:08 +0000318 } else if (LO.C99) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000319 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner515455a2009-03-25 03:28:08 +0000320 } else {
321 LangTag = llvm::dwarf::DW_LANG_C89;
322 }
Devang Patel446c6192009-04-17 21:06:59 +0000323
Daniel Dunbar19f19832010-08-24 17:41:09 +0000324 std::string Producer = getClangFullVersion();
Chris Lattner4c2577a2009-05-02 01:00:04 +0000325
326 // Figure out which version of the ObjC runtime we have.
327 unsigned RuntimeVers = 0;
328 if (LO.ObjC1)
John McCall260611a2012-06-20 06:18:46 +0000329 RuntimeVers = LO.ObjCRuntime.isNonFragile() ? 2 : 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000330
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000331 // Create new compile unit.
Devang Patel16674e82011-02-22 18:56:36 +0000332 DBuilder.createCompileUnit(
Devang Patel58115002010-07-27 20:49:59 +0000333 LangTag, Filename, getCurrentDirname(),
Devang Patel823d8e92010-12-08 22:42:58 +0000334 Producer,
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000335 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel823d8e92010-12-08 22:42:58 +0000336 // FIXME - Eliminate TheCU.
337 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000338}
339
Devang Patel65e99f22009-02-25 01:36:11 +0000340/// CreateType - Get the Basic type from the cache or create a new
Chris Lattner9c85ba32008-11-10 06:08:34 +0000341/// one if necessary.
Devang Patelf1d1d9a2010-11-01 16:52:40 +0000342llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000343 unsigned Encoding = 0;
Argyrios Kyrtzidis27a00972012-05-05 04:20:28 +0000344 StringRef BTName;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000345 switch (BT->getKind()) {
John McCalle0a22d02011-10-18 21:02:43 +0000346#define BUILTIN_TYPE(Id, SingletonId)
347#define PLACEHOLDER_TYPE(Id, SingletonId) \
348 case BuiltinType::Id:
349#include "clang/AST/BuiltinTypes.def"
Devang Patele7566cf2011-09-12 18:50:21 +0000350 case BuiltinType::Dependent:
John McCalle0a22d02011-10-18 21:02:43 +0000351 llvm_unreachable("Unexpected builtin type");
Devang Patele7566cf2011-09-12 18:50:21 +0000352 case BuiltinType::NullPtr:
Devang Patelf60dca32011-09-14 23:14:14 +0000353 return DBuilder.
Richard Smith7edf9e32012-11-01 22:30:59 +0000354 createNullPtrType(BT->getName(CGM.getLangOpts()));
Chris Lattner9c85ba32008-11-10 06:08:34 +0000355 case BuiltinType::Void:
356 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000357 case BuiltinType::ObjCClass:
Eric Christopherbf3a9662012-08-20 23:32:17 +0000358 if (ClassTy.Verify())
359 return ClassTy;
360 ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
361 "objc_class", TheCU,
362 getOrCreateMainFile(), 0);
363 return ClassTy;
Devang Patelc8972c62010-07-28 01:33:15 +0000364 case BuiltinType::ObjCId: {
365 // typedef struct objc_class *Class;
366 // typedef struct objc_object {
367 // Class isa;
368 // } *id;
369
Eric Christopherbf3a9662012-08-20 23:32:17 +0000370 if (ObjTy.Verify())
371 return ObjTy;
372
373 if (!ClassTy.Verify())
374 ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
375 "objc_class", TheCU,
376 getOrCreateMainFile(), 0);
377
Devang Patelc8972c62010-07-28 01:33:15 +0000378 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
379
Eric Christopherbf3a9662012-08-20 23:32:17 +0000380 llvm::DIType ISATy = DBuilder.createPointerType(ClassTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000381
Eric Christopherbf3a9662012-08-20 23:32:17 +0000382 llvm::DIType FwdTy = DBuilder.createStructType(TheCU, "objc_object",
Eric Christopher003e7562012-08-17 22:54:57 +0000383 getOrCreateMainFile(),
Eric Christopherbf3a9662012-08-20 23:32:17 +0000384 0, 0, 0, 0,
385 llvm::DIArray());
386
387 llvm::TrackingVH<llvm::MDNode> ObjNode(FwdTy);
Eric Christopher003e7562012-08-17 22:54:57 +0000388 SmallVector<llvm::Value *, 1> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000389 llvm::DIType FieldTy =
Eric Christopherbf3a9662012-08-20 23:32:17 +0000390 DBuilder.createMemberType(llvm::DIDescriptor(ObjNode), "isa",
Devang Patel1d323e02011-06-24 22:00:59 +0000391 getOrCreateMainFile(), 0, Size,
392 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000393 EltTys.push_back(FieldTy);
Jay Foadc556ef22011-04-24 10:11:03 +0000394 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Eric Christopher003e7562012-08-17 22:54:57 +0000395
Eric Christopherbf3a9662012-08-20 23:32:17 +0000396 ObjNode->replaceOperandWith(10, Elements);
397 ObjTy = llvm::DIType(ObjNode);
398 return ObjTy;
Devang Patelc8972c62010-07-28 01:33:15 +0000399 }
Devang Patel6e108ce2011-02-09 03:15:05 +0000400 case BuiltinType::ObjCSel: {
Eric Christopherbf3a9662012-08-20 23:32:17 +0000401 if (SelTy.Verify())
402 return SelTy;
403 SelTy =
Eric Christopher917bc8d2012-02-20 18:05:04 +0000404 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christopher87380aa2012-04-23 19:00:24 +0000405 "objc_selector", TheCU, getOrCreateMainFile(),
Eric Christophere86b9ea2012-02-20 23:02:36 +0000406 0);
Eric Christopherbf3a9662012-08-20 23:32:17 +0000407 return SelTy;
Devang Patel6e108ce2011-02-09 03:15:05 +0000408 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000409 case BuiltinType::UChar:
410 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
411 case BuiltinType::Char_S:
412 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patele8ee3f22011-09-12 17:11:58 +0000413 case BuiltinType::Char16:
414 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000415 case BuiltinType::UShort:
416 case BuiltinType::UInt:
Devang Patel31c79b42011-05-05 17:06:30 +0000417 case BuiltinType::UInt128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000418 case BuiltinType::ULong:
Devang Patel68f76b12011-09-10 00:44:49 +0000419 case BuiltinType::WChar_U:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000420 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
421 case BuiltinType::Short:
422 case BuiltinType::Int:
Devang Patel31c79b42011-05-05 17:06:30 +0000423 case BuiltinType::Int128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000424 case BuiltinType::Long:
Devang Patel68f76b12011-09-10 00:44:49 +0000425 case BuiltinType::WChar_S:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000426 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
427 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000428 case BuiltinType::Half:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000429 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000430 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000431 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000432 }
Devang Patel05127ca2010-07-28 23:23:29 +0000433
434 switch (BT->getKind()) {
435 case BuiltinType::Long: BTName = "long int"; break;
436 case BuiltinType::LongLong: BTName = "long long int"; break;
437 case BuiltinType::ULong: BTName = "long unsigned int"; break;
438 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
439 default:
Richard Smith7edf9e32012-11-01 22:30:59 +0000440 BTName = BT->getName(CGM.getLangOpts());
Devang Patel05127ca2010-07-28 23:23:29 +0000441 break;
442 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000443 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000444 uint64_t Size = CGM.getContext().getTypeSize(BT);
445 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000446 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000447 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000448 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000449}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000450
Devang Patel344ff5d2010-12-09 00:25:29 +0000451llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000452 // Bit size, align and offset of the type.
453 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
454 if (Ty->isComplexIntegerType())
455 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000456
Anders Carlsson20f12a22009-12-06 18:00:51 +0000457 uint64_t Size = CGM.getContext().getTypeSize(Ty);
458 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000459 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000460 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel823d8e92010-12-08 22:42:58 +0000461
Devang Patelca80a5f2009-10-20 19:55:01 +0000462 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000463}
464
John McCalla1805292009-09-25 01:40:47 +0000465/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000466/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000467llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000468 QualifierCollector Qc;
469 const Type *T = Qc.strip(Ty);
470
471 // Ignore these qualifiers for now.
472 Qc.removeObjCGCAttr();
473 Qc.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +0000474 Qc.removeObjCLifetime();
John McCalla1805292009-09-25 01:40:47 +0000475
Chris Lattner9c85ba32008-11-10 06:08:34 +0000476 // We will create one Derived type for one qualifier and recurse to handle any
477 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000478 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000479 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000480 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000481 Qc.removeConst();
482 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000483 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000484 Qc.removeVolatile();
485 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000486 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000487 Qc.removeRestrict();
488 } else {
489 assert(Qc.empty() && "Unknown type qualifier for debug info");
490 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000491 }
Mike Stump1eb44332009-09-09 15:08:12 +0000492
John McCall49f4e1c2010-12-10 11:01:00 +0000493 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCalla1805292009-09-25 01:40:47 +0000494
Daniel Dunbar3845f862008-10-31 03:54:29 +0000495 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
496 // CVR derived types.
Devang Patel16674e82011-02-22 18:56:36 +0000497 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000498
Devang Patelca80a5f2009-10-20 19:55:01 +0000499 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000500}
501
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000502llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000503 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000504 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000505 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
506 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000507 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000508}
509
Chris Lattner9c85ba32008-11-10 06:08:34 +0000510llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000511 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000512 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
513 Ty->getPointeeType(), Unit);
514}
515
Eric Christopher5d613b52012-01-25 02:06:59 +0000516// Creates a forward declaration for a RecordDecl in the given context.
517llvm::DIType CGDebugInfo::createRecordFwdDecl(const RecordDecl *RD,
Devang Patel53bc5182012-02-08 00:10:20 +0000518 llvm::DIDescriptor Ctx) {
Eric Christopher5d613b52012-01-25 02:06:59 +0000519 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
520 unsigned Line = getLineNumber(RD->getLocation());
David Blaikie9417b052012-11-02 20:49:01 +0000521 StringRef RDName = getClassName(RD);
Eric Christophere88a71f2012-02-13 15:08:45 +0000522
Eric Christophere88a71f2012-02-13 15:08:45 +0000523 unsigned Tag = 0;
David Blaikie9417b052012-11-02 20:49:01 +0000524 if (RD->isStruct() || RD->isInterface())
Joao Matos17d35c32012-08-31 22:18:20 +0000525 Tag = llvm::dwarf::DW_TAG_structure_type;
526 else if (RD->isUnion())
527 Tag = llvm::dwarf::DW_TAG_union_type;
David Blaikie9417b052012-11-02 20:49:01 +0000528 else {
529 assert(RD->isClass());
530 Tag = llvm::dwarf::DW_TAG_class_type;
531 }
Eric Christophere88a71f2012-02-13 15:08:45 +0000532
533 // Create the type.
Eric Christopher87380aa2012-04-23 19:00:24 +0000534 return DBuilder.createForwardDecl(Tag, RDName, Ctx, DefUnit, Line);
Eric Christopher5d613b52012-01-25 02:06:59 +0000535}
536
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000537// Walk up the context chain and create forward decls for record decls,
538// and normal descriptors for namespaces.
539llvm::DIDescriptor CGDebugInfo::createContextChain(const Decl *Context) {
540 if (!Context)
541 return TheCU;
542
543 // See if we already have the parent.
544 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
545 I = RegionMap.find(Context);
Richard Smithe7259aa2012-08-17 04:17:54 +0000546 if (I != RegionMap.end()) {
547 llvm::Value *V = I->second;
548 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(V));
549 }
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000550
551 // Check namespace.
552 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
553 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
554
555 if (const RecordDecl *RD = dyn_cast<RecordDecl>(Context)) {
556 if (!RD->isDependentType()) {
Eric Christopher9965dea2012-02-16 22:54:45 +0000557 llvm::DIType Ty = getOrCreateLimitedType(CGM.getContext().getTypeDeclType(RD),
558 getOrCreateMainFile());
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000559 return llvm::DIDescriptor(Ty);
560 }
561 }
562 return TheCU;
563}
564
Eric Christopheredc95922011-09-13 23:45:09 +0000565/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000566/// then emit record's fwd if debug info size reduction is enabled.
567llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
568 llvm::DIFile Unit) {
Douglas Gregor4cdad312012-10-23 20:05:01 +0000569 if (CGM.getCodeGenOpts().getDebugInfo() != CodeGenOptions::LimitedDebugInfo)
Devang Patelc69e1cf2010-09-30 19:05:55 +0000570 return getOrCreateType(PointeeTy, Unit);
Devang Patel41422512011-10-24 23:15:17 +0000571
572 // Limit debug info for the pointee type.
573
Eric Christopher973bbb62011-12-16 23:40:18 +0000574 // If we have an existing type, use that, it's still smaller than creating
575 // a new type.
576 llvm::DIType Ty = getTypeOrNull(PointeeTy);
577 if (Ty.Verify()) return Ty;
578
Devang Patel41422512011-10-24 23:15:17 +0000579 // Handle qualifiers.
580 if (PointeeTy.hasLocalQualifiers())
Eric Christopherd0a97c42012-08-07 00:18:40 +0000581 return CreateQualifiedType(PointeeTy, Unit);
Devang Patel41422512011-10-24 23:15:17 +0000582
Devang Patelc69e1cf2010-09-30 19:05:55 +0000583 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
584 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000585 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000586 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Eric Christopher86211df2012-02-20 18:05:24 +0000587 llvm::DIType RetTy = createRecordFwdDecl(RD, FDContext);
588 TypeCache[QualType(RTy, 0).getAsOpaquePtr()] = RetTy;
589 return RetTy;
Devang Patelc69e1cf2010-09-30 19:05:55 +0000590 }
591 return getOrCreateType(PointeeTy, Unit);
Eric Christopher42e75da2012-02-13 14:56:11 +0000592
Devang Patelc69e1cf2010-09-30 19:05:55 +0000593}
594
Anders Carlssona031b352009-11-06 19:19:55 +0000595llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
596 const Type *Ty,
597 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000598 llvm::DIFile Unit) {
Eric Christopher37e4cea2012-05-19 01:36:50 +0000599 if (Tag == llvm::dwarf::DW_TAG_reference_type ||
600 Tag == llvm::dwarf::DW_TAG_rvalue_reference_type)
601 return DBuilder.createReferenceType(Tag,
602 CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000603
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000604 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000605 // Size is always the size of a pointer. We can't use getTypeSize here
606 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000607 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000608 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000609 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000610
Nick Lewycky7480d962011-11-10 00:34:02 +0000611 return DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit),
612 Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000613}
614
Mike Stump9bc093c2009-05-14 02:03:51 +0000615llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000616 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000617 if (BlockLiteralGenericSet)
618 return BlockLiteralGeneric;
619
Chris Lattner5f9e2722011-07-23 10:55:15 +0000620 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000621 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000622 QualType FType;
623 uint64_t FieldSize, FieldOffset;
624 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000625 llvm::DIArray Elements;
626 llvm::DIType EltTy, DescTy;
627
628 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000629 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000630 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
631 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000632
Jay Foadc556ef22011-04-24 10:11:03 +0000633 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000634 EltTys.clear();
635
Devang Patele2472482010-09-29 21:05:52 +0000636 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000637 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000638
Devang Patel16674e82011-02-22 18:56:36 +0000639 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000640 Unit, LineNo, FieldOffset, 0,
641 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Mike Stump9bc093c2009-05-14 02:03:51 +0000643 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000644 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Devang Patel16674e82011-02-22 18:56:36 +0000646 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000647
648 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000649 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000650 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000651 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000652 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
653 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000654 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000655 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000656
Anders Carlsson20f12a22009-12-06 18:00:51 +0000657 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000658 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000659 FieldSize = CGM.getContext().getTypeSize(Ty);
660 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000661 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000662 LineNo, FieldSize, FieldAlign,
663 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000664 EltTys.push_back(FieldTy);
665
666 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000667 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000668
Devang Patel16674e82011-02-22 18:56:36 +0000669 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000670 Unit, LineNo, FieldOffset, 0,
671 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000672
Mike Stump9bc093c2009-05-14 02:03:51 +0000673 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000674 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000675 return BlockLiteralGeneric;
676}
677
Nick Lewycky7480d962011-11-10 00:34:02 +0000678llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty, llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000679 // Typedefs are derived from some other type. If we have a typedef of a
680 // typedef, make sure to emit the whole chain.
681 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000682 if (!Src.Verify())
683 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000684 // We don't set size information, but do specify where the typedef was
685 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000686 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000687 const TypedefNameDecl *TyDecl = Ty->getDecl();
Eric Christopher9965dea2012-02-16 22:54:45 +0000688
Nick Lewycky7480d962011-11-10 00:34:02 +0000689 llvm::DIDescriptor TypedefContext =
Devang Patelc4903122011-06-03 17:23:47 +0000690 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
Eric Christopher9965dea2012-02-16 22:54:45 +0000691
692 return
Nick Lewycky7480d962011-11-10 00:34:02 +0000693 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000694}
695
Chris Lattner9c85ba32008-11-10 06:08:34 +0000696llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000697 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000698 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000699
Chris Lattner9c85ba32008-11-10 06:08:34 +0000700 // Add the result type at least.
701 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000702
Chris Lattner9c85ba32008-11-10 06:08:34 +0000703 // Set up remainder of arguments if there is a prototype.
704 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000705 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000706 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Eric Christopheraa6eccc2012-08-04 00:11:22 +0000707 else if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Ty)) {
Eric Christopherd0a97c42012-08-07 00:18:40 +0000708 for (unsigned i = 0, e = FPT->getNumArgs(); i != e; ++i)
Eric Christopheraa6eccc2012-08-04 00:11:22 +0000709 EltTys.push_back(getOrCreateType(FPT->getArgType(i), Unit));
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000710 }
711
Jay Foadc556ef22011-04-24 10:11:03 +0000712 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Eric Christopherd9f07d42012-05-16 22:02:36 +0000713 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000714}
715
Eric Christopher42e75da2012-02-13 14:56:11 +0000716
Eric Christopher6faa5542012-01-26 01:57:13 +0000717void CGDebugInfo::
718CollectRecordStaticVars(const RecordDecl *RD, llvm::DIType FwdDecl) {
719
720 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
721 I != E; ++I)
722 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
723 if (V->getInit()) {
724 const APValue *Value = V->evaluateValue();
725 if (Value && Value->isInt()) {
726 llvm::ConstantInt *CI
727 = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
728
729 // Create the descriptor for static variable.
730 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
731 StringRef VName = V->getName();
732 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
733 // Do not use DIGlobalVariable for enums.
734 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
735 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
736 getLineNumber(V->getLocation()),
737 VTy, true, CI);
738 }
739 }
740 }
741 }
742}
743
Chris Lattner5f9e2722011-07-23 10:55:15 +0000744llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000745 QualType type,
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000746 uint64_t sizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000747 SourceLocation loc,
748 AccessSpecifier AS,
749 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000750 llvm::DIFile tunit,
751 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000752 llvm::DIType debugType = getOrCreateType(type, tunit);
753
754 // Get the location for the field.
755 llvm::DIFile file = getOrCreateFile(loc);
756 unsigned line = getLineNumber(loc);
757
758 uint64_t sizeInBits = 0;
759 unsigned alignInBits = 0;
760 if (!type->isIncompleteArrayType()) {
761 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
762
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000763 if (sizeInBitsOverride)
764 sizeInBits = sizeInBitsOverride;
John McCall8178df32011-02-22 22:38:33 +0000765 }
766
767 unsigned flags = 0;
768 if (AS == clang::AS_private)
769 flags |= llvm::DIDescriptor::FlagPrivate;
770 else if (AS == clang::AS_protected)
771 flags |= llvm::DIDescriptor::FlagProtected;
772
Devang Patel1d323e02011-06-24 22:00:59 +0000773 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
774 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000775}
776
Devang Patel428deb52010-01-19 00:00:59 +0000777/// CollectRecordFields - A helper function to collect debug info for
778/// record fields. This is used while creating debug info entry for a Record.
779void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000780CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000781 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000782 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000783 unsigned fieldNo = 0;
784 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
Eric Christopherad8de512012-03-01 21:36:52 +0000785 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(record);
786
Eric Christopherda970d22012-06-28 01:20:05 +0000787 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
Eric Christopherad8de512012-03-01 21:36:52 +0000788 // has the name and the location of the variable so we should iterate over
789 // both concurrently.
790 if (CXXDecl && CXXDecl->isLambda()) {
791 RecordDecl::field_iterator Field = CXXDecl->field_begin();
792 unsigned fieldno = 0;
793 for (CXXRecordDecl::capture_const_iterator I = CXXDecl->captures_begin(),
794 E = CXXDecl->captures_end(); I != E; ++I, ++Field, ++fieldno) {
795 const LambdaExpr::Capture C = *I;
Eric Christopherad8de512012-03-01 21:36:52 +0000796 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);
Eric Christopher28e3c992012-09-19 21:47:34 +0000810 } else {
Eric Christopher20ec2c42012-09-19 22:01:42 +0000811 // TODO: Need to handle 'this' in some way by probably renaming the
812 // this of the lambda class and having a field member of 'this' or
Eric Christopher847665d2012-09-19 22:40:44 +0000813 // by using AT_object_pointer for the function and having that be
Eric Christopher20ec2c42012-09-19 22:01:42 +0000814 // used as 'this' for semantic references.
Eric Christopher28e3c992012-09-19 21:47:34 +0000815 assert(C.capturesThis() && "Field that isn't captured and isn't this?");
816 FieldDecl *f = *Field;
817 llvm::DIFile VUnit = getOrCreateFile(f->getLocation());
818 QualType type = f->getType();
819 llvm::DIType fieldType
820 = createFieldType("this", type, 0, f->getLocation(), f->getAccess(),
821 layout.getFieldOffset(fieldNo), VUnit, RecordTy);
822
823 elements.push_back(fieldType);
Eric Christopherad8de512012-03-01 21:36:52 +0000824 }
825 }
826 } else {
Eli Friedman5f608ae2012-10-12 23:29:20 +0000827 bool IsMsStruct = record->isMsStruct(CGM.getContext());
Eric Christopherad8de512012-03-01 21:36:52 +0000828 const FieldDecl *LastFD = 0;
829 for (RecordDecl::field_iterator I = record->field_begin(),
830 E = record->field_end();
831 I != E; ++I, ++fieldNo) {
David Blaikie581deb32012-06-06 20:45:41 +0000832 FieldDecl *field = *I;
Eric Christopherad8de512012-03-01 21:36:52 +0000833
834 if (IsMsStruct) {
835 // Zero-length bitfields following non-bitfield members are ignored
836 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
837 --fieldNo;
838 continue;
839 }
840 LastFD = field;
841 }
842
843 StringRef name = field->getName();
844 QualType type = field->getType();
845
846 // Ignore unnamed fields unless they're anonymous structs/unions.
847 if (name.empty() && !type->isRecordType()) {
848 LastFD = field;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000849 continue;
850 }
Eric Christopherad8de512012-03-01 21:36:52 +0000851
852 uint64_t SizeInBitsOverride = 0;
853 if (field->isBitField()) {
854 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
855 assert(SizeInBitsOverride && "found named 0-width bitfield");
856 }
857
858 llvm::DIType fieldType
859 = createFieldType(name, type, SizeInBitsOverride,
860 field->getLocation(), field->getAccess(),
861 layout.getFieldOffset(fieldNo), tunit, RecordTy);
862
863 elements.push_back(fieldType);
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000864 }
Devang Patel428deb52010-01-19 00:00:59 +0000865 }
866}
867
Devang Patela6da1922010-01-28 00:28:01 +0000868/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
869/// function type is not updated to include implicit "this" pointer. Use this
870/// routine to get a method type which includes "this" pointer.
871llvm::DIType
872CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000873 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000874 llvm::DIType FnTy
875 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
876 0),
877 Unit);
Eric Christopher3b10cfe2012-03-13 23:40:48 +0000878
Devang Patela6da1922010-01-28 00:28:01 +0000879 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000880 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000881 assert (Args.getNumElements() && "Invalid number of arguments!");
882
Chris Lattner5f9e2722011-07-23 10:55:15 +0000883 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000884
885 // First element is always return type. For 'void' functions it is NULL.
886 Elts.push_back(Args.getElement(0));
887
Eric Christopher2121cda2011-09-14 01:10:50 +0000888 if (!Method->isStatic()) {
889 // "this" pointer is always first argument.
890 QualType ThisPtr = Method->getThisType(CGM.getContext());
Devang Patelef8857d2011-10-28 21:12:13 +0000891
892 const CXXRecordDecl *RD = Method->getParent();
893 if (isa<ClassTemplateSpecializationDecl>(RD)) {
894 // Create pointer type directly in this case.
895 const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
896 QualType PointeeTy = ThisPtrTy->getPointeeType();
897 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
898 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
899 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000900 llvm::DIType PointeeType = getOrCreateType(PointeeTy, Unit);
Eric Christopher3b8e1972012-02-09 07:26:21 +0000901 llvm::DIType ThisPtrType = DBuilder.createPointerType(PointeeType, Size, Align);
Devang Patelef8857d2011-10-28 21:12:13 +0000902 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
Eric Christopher3b8e1972012-02-09 07:26:21 +0000903 // TODO: This and the artificial type below are misleading, the
904 // types aren't artificial the argument is, but the current
905 // metadata doesn't represent that.
Eric Christopherd5a73dc2012-09-12 23:36:49 +0000906 ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType);
Devang Patelef8857d2011-10-28 21:12:13 +0000907 Elts.push_back(ThisPtrType);
908 } else {
Eric Christopher3b8e1972012-02-09 07:26:21 +0000909 llvm::DIType ThisPtrType = getOrCreateType(ThisPtr, Unit);
Devang Patelef8857d2011-10-28 21:12:13 +0000910 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
Eric Christopherd5a73dc2012-09-12 23:36:49 +0000911 ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType);
Devang Patelef8857d2011-10-28 21:12:13 +0000912 Elts.push_back(ThisPtrType);
913 }
Eric Christopher2121cda2011-09-14 01:10:50 +0000914 }
Devang Patela6da1922010-01-28 00:28:01 +0000915
916 // Copy rest of the arguments.
917 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
918 Elts.push_back(Args.getElement(i));
919
Jay Foadc556ef22011-04-24 10:11:03 +0000920 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000921
Devang Patel16674e82011-02-22 18:56:36 +0000922 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000923}
924
Devang Patel58faf202010-10-22 17:11:50 +0000925/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
926/// inside a function.
927static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
Nick Lewycky7480d962011-11-10 00:34:02 +0000928 if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000929 return isFunctionLocalClass(NRD);
Nick Lewycky7480d962011-11-10 00:34:02 +0000930 if (isa<FunctionDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000931 return true;
932 return false;
Devang Patel58faf202010-10-22 17:11:50 +0000933}
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000934
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000935/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
936/// a single member function GlobalDecl.
937llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000938CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000939 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000940 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000941 bool IsCtorOrDtor =
942 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
943
Chris Lattner5f9e2722011-07-23 10:55:15 +0000944 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000945 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Eric Christopheraa6eccc2012-08-04 00:11:22 +0000946
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000947 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
948 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000949 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000950 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000951 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000952
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000953 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000954 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
955 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000956
957 // Collect virtual method info.
958 llvm::DIType ContainingType;
959 unsigned Virtuality = 0;
960 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000961
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000962 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000963 if (Method->isPure())
964 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
965 else
966 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
967
968 // It doesn't make sense to give a virtual destructor a vtable index,
969 // since a single destructor has two entries in the vtable.
970 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000971 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000972 ContainingType = RecordTy;
973 }
974
Devang Patele2472482010-09-29 21:05:52 +0000975 unsigned Flags = 0;
976 if (Method->isImplicit())
977 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000978 AccessSpecifier Access = Method->getAccess();
979 if (Access == clang::AS_private)
980 Flags |= llvm::DIDescriptor::FlagPrivate;
981 else if (Access == clang::AS_protected)
982 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000983 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
984 if (CXXC->isExplicit())
985 Flags |= llvm::DIDescriptor::FlagExplicit;
986 } else if (const CXXConversionDecl *CXXC =
987 dyn_cast<CXXConversionDecl>(Method)) {
988 if (CXXC->isExplicit())
989 Flags |= llvm::DIDescriptor::FlagExplicit;
990 }
Devang Patel3951e712010-10-07 22:03:49 +0000991 if (Method->hasPrototype())
992 Flags |= llvm::DIDescriptor::FlagPrototyped;
Eric Christopher3b10cfe2012-03-13 23:40:48 +0000993
994 llvm::DIArray TParamsArray = CollectFunctionTemplateParams(Method, Unit);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000995 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000996 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000997 MethodDefUnit, MethodLine,
998 MethodTy, /*isLocalToUnit=*/false,
999 /* isDefinition=*/ false,
1000 Virtuality, VIndex, ContainingType,
Eric Christopher3b10cfe2012-03-13 23:40:48 +00001001 Flags, CGM.getLangOpts().Optimize, NULL,
1002 TParamsArray);
Anders Carlsson4433f1c2010-01-26 05:19:50 +00001003
Eric Christopherdeae6a82011-11-17 23:45:00 +00001004 SPCache[Method->getCanonicalDecl()] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +00001005
1006 return SP;
1007}
1008
Devang Patel4125fd22010-01-19 01:54:44 +00001009/// CollectCXXMemberFunctions - A helper function to collect debug info for
Eric Christopher7c9b2fd2012-01-12 01:26:51 +00001010/// C++ member functions. This is used while creating debug info entry for
Devang Patel4125fd22010-01-19 01:54:44 +00001011/// a Record.
1012void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +00001013CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001014 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +00001015 llvm::DIType RecordTy) {
Eric Christopher3b10cfe2012-03-13 23:40:48 +00001016
1017 // Since we want more than just the individual member decls if we
1018 // have templated functions iterate over every declaration to gather
1019 // the functions.
1020 for(DeclContext::decl_iterator I = RD->decls_begin(),
1021 E = RD->decls_end(); I != E; ++I) {
1022 Decl *D = *I;
1023 if (D->isImplicit() && !D->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +00001024 continue;
Devang Patel4125fd22010-01-19 01:54:44 +00001025
Eric Christopher9556b392012-10-17 17:37:17 +00001026 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1027 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Eric Christopher3b10cfe2012-03-13 23:40:48 +00001028 else if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D))
1029 for (FunctionTemplateDecl::spec_iterator SI = FTD->spec_begin(),
Eric Christopher860de6b2012-08-13 02:07:42 +00001030 SE = FTD->spec_end(); SI != SE; ++SI)
1031 EltTys.push_back(CreateCXXMemberFunction(cast<CXXMethodDecl>(*SI), Unit,
1032 RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +00001033 }
1034}
1035
Devang Patel2ed8f002010-08-27 17:47:47 +00001036/// CollectCXXFriends - A helper function to collect debug info for
1037/// C++ base classes. This is used while creating debug info entry for
1038/// a Record.
1039void CGDebugInfo::
1040CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001041 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +00001042 llvm::DIType RecordTy) {
Eric Christopher121c67d2012-01-12 01:26:58 +00001043 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
Devang Patel2ed8f002010-08-27 17:47:47 +00001044 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +00001045 if ((*BI)->isUnsupportedFriend())
1046 continue;
Devang Patel823d8e92010-12-08 22:42:58 +00001047 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +00001048 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +00001049 getOrCreateType(TInfo->getType(),
1050 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +00001051 }
1052}
1053
Devang Patela245c5b2010-01-25 23:32:18 +00001054/// CollectCXXBases - A helper function to collect debug info for
1055/// C++ base classes. This is used while creating debug info entry for
1056/// a Record.
1057void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +00001058CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001059 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +00001060 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +00001061
Devang Patel239cec62010-02-01 21:39:52 +00001062 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1063 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
1064 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +00001065 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +00001066 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +00001067
1068 const CXXRecordDecl *Base =
1069 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
1070
1071 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +00001072 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +00001073 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +00001074 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +00001075 0 - CGM.getVTableContext()
1076 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +00001077 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +00001078 } else
Benjamin Kramerd4f51982012-07-04 18:45:14 +00001079 BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base));
Ken Dyck14c65ca2011-04-07 12:37:09 +00001080 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
1081 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +00001082
1083 AccessSpecifier Access = BI->getAccessSpecifier();
1084 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +00001085 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +00001086 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +00001087 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +00001088
Devang Patel823d8e92010-12-08 22:42:58 +00001089 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +00001090 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +00001091 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +00001092 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +00001093 EltTys.push_back(DTy);
1094 }
Devang Patela245c5b2010-01-25 23:32:18 +00001095}
1096
Devang Patel5ecb1df2011-04-05 22:54:11 +00001097/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +00001098llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +00001099CollectTemplateParams(const TemplateParameterList *TPList,
1100 const TemplateArgumentList &TAList,
1101 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001102 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +00001103 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
1104 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +00001105 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +00001106 if (TA.getKind() == TemplateArgument::Type) {
1107 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
1108 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001109 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +00001110 TemplateParams.push_back(TTP);
1111 } else if (TA.getKind() == TemplateArgument::Integral) {
1112 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +00001113 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001114 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
Benjamin Kramer85524372012-06-07 15:09:51 +00001115 TA.getAsIntegral().getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +00001116 TemplateParams.push_back(TVP);
1117 }
1118 }
Jay Foadc556ef22011-04-24 10:11:03 +00001119 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +00001120}
1121
Devang Patel5ecb1df2011-04-05 22:54:11 +00001122/// CollectFunctionTemplateParams - A helper function to collect debug
1123/// info for function template parameters.
1124llvm::DIArray CGDebugInfo::
1125CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherab5278e2011-10-11 23:00:51 +00001126 if (FD->getTemplatedKind() ==
1127 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patel5ecb1df2011-04-05 22:54:11 +00001128 const TemplateParameterList *TList =
Eric Christopherab5278e2011-10-11 23:00:51 +00001129 FD->getTemplateSpecializationInfo()->getTemplate()
1130 ->getTemplateParameters();
Devang Patel5ecb1df2011-04-05 22:54:11 +00001131 return
1132 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
1133 }
1134 return llvm::DIArray();
1135}
1136
1137/// CollectCXXTemplateParams - A helper function to collect debug info for
1138/// template parameters.
1139llvm::DIArray CGDebugInfo::
1140CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
1141 llvm::DIFile Unit) {
1142 llvm::PointerUnion<ClassTemplateDecl *,
1143 ClassTemplatePartialSpecializationDecl *>
1144 PU = TSpecial->getSpecializedTemplateOrPartial();
1145
1146 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
1147 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
1148 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
1149 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
1150 return CollectTemplateParams(TPList, TAList, Unit);
1151}
1152
Devang Patel4ce3f202010-01-28 18:11:52 +00001153/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +00001154llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +00001155 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +00001156 return VTablePtrType;
1157
1158 ASTContext &Context = CGM.getContext();
1159
1160 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +00001161 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +00001162 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +00001163 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +00001164 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +00001165 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001166 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +00001167 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +00001168 return VTablePtrType;
1169}
1170
Anders Carlsson046c2942010-04-17 20:15:18 +00001171/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001172StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Eric Christopher51cb75a2012-01-25 21:47:09 +00001173 // Construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +00001174 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +00001175
1176 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +00001177 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001178 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001179 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001180}
1181
1182
Anders Carlsson046c2942010-04-17 20:15:18 +00001183/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +00001184/// debug info entry in EltTys vector.
1185void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +00001186CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001187 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +00001188 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +00001189
1190 // If there is a primary base then it will hold vtable info.
1191 if (RL.getPrimaryBase())
1192 return;
1193
1194 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +00001195 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +00001196 return;
1197
1198 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1199 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +00001200 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001201 0, Size, 0, 0, 0,
1202 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +00001203 EltTys.push_back(VPTR);
1204}
1205
Devang Patelc69e1cf2010-09-30 19:05:55 +00001206/// getOrCreateRecordType - Emit record type's standalone debug info.
1207llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1208 SourceLocation Loc) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00001209 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001210 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patelc69e1cf2010-09-30 19:05:55 +00001211 return T;
1212}
1213
Eric Christopherbe6c6862012-04-11 05:56:05 +00001214/// getOrCreateInterfaceType - Emit an objective c interface type standalone
1215/// debug info.
1216llvm::DIType CGDebugInfo::getOrCreateInterfaceType(QualType D,
1217 SourceLocation Loc) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00001218 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
Eric Christopherbe6c6862012-04-11 05:56:05 +00001219 llvm::DIType T = getOrCreateType(D, getOrCreateFile(Loc));
1220 DBuilder.retainType(T);
1221 return T;
1222}
1223
Devang Patel65e99f22009-02-25 01:36:11 +00001224/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +00001225llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001226 RecordDecl *RD = Ty->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001227
Chris Lattner9c85ba32008-11-10 06:08:34 +00001228 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001229 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001230
Chris Lattner9c85ba32008-11-10 06:08:34 +00001231 // Records and classes and unions can all be recursive. To handle them, we
1232 // first generate a debug descriptor for the struct as a forward declaration.
1233 // Then (if it is a definition) we go through and get debug info for all of
1234 // its members. Finally, we create a descriptor for the complete type (which
1235 // may refer to the forward decl if the struct is recursive) and replace all
1236 // uses of the forward declaration with the final definition.
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001237
Eric Christopher9965dea2012-02-16 22:54:45 +00001238 llvm::DIType FwdDecl = getOrCreateLimitedType(QualType(Ty, 0), DefUnit);
Devang Patel0b897992010-07-08 19:56:29 +00001239
Eric Christopher9965dea2012-02-16 22:54:45 +00001240 if (FwdDecl.isForwardDecl())
1241 return FwdDecl;
Benjamin Kramer6181e562012-03-20 19:49:14 +00001242
1243 llvm::TrackingVH<llvm::MDNode> FwdDeclNode(FwdDecl);
1244
Devang Patele4c1ea02010-03-11 20:01:48 +00001245 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001246 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001247 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001248
Eric Christopher9965dea2012-02-16 22:54:45 +00001249 // Add this to the completed types cache since we're completing it.
1250 CompletedTypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
1251
Chris Lattner9c85ba32008-11-10 06:08:34 +00001252 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001253 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001254
Eric Christopher1c081d92012-01-26 07:01:04 +00001255 // Note: The split of CXXDecl information here is intentional, the
1256 // gdb tests will depend on a certain ordering at printout. The debug
1257 // information offsets are still correct if we merge them all together
1258 // though.
Devang Pateld6c5a262010-02-01 21:52:22 +00001259 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +00001260 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001261 CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl);
1262 CollectVTableInfo(CXXDecl, DefUnit, EltTys);
Eric Christopher1c081d92012-01-26 07:01:04 +00001263 }
1264
1265 // Collect static variables with initializers and other fields.
1266 CollectRecordStaticVars(RD, FwdDecl);
1267 CollectRecordFields(RD, DefUnit, EltTys, FwdDecl);
1268 llvm::DIArray TParamsArray;
1269 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001270 CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl);
1271 CollectCXXFriends(CXXDecl, DefUnit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001272 if (const ClassTemplateSpecializationDecl *TSpecial
1273 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
Eric Christopher3ee8c912012-01-26 06:20:57 +00001274 TParamsArray = CollectCXXTemplateParams(TSpecial, DefUnit);
Devang Patel823d8e92010-12-08 22:42:58 +00001275 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001276
Eric Christopheraa2164c2011-09-29 00:00:45 +00001277 LexicalBlockStack.pop_back();
Benjamin Kramer7e423922012-03-24 18:22:12 +00001278 RegionMap.erase(Ty->getDecl());
Devang Patel823d8e92010-12-08 22:42:58 +00001279
Jay Foadc556ef22011-04-24 10:11:03 +00001280 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Eric Christopher9965dea2012-02-16 22:54:45 +00001281 // FIXME: Magic numbers ahoy! These should be changed when we
1282 // get some enums in llvm/Analysis/DebugInfo.h to refer to
1283 // them.
Eric Christopher64a04302012-02-15 23:51:20 +00001284 if (RD->isUnion())
Benjamin Kramer6181e562012-03-20 19:49:14 +00001285 FwdDeclNode->replaceOperandWith(10, Elements);
Eric Christopher64a04302012-02-15 23:51:20 +00001286 else if (CXXDecl) {
Benjamin Kramer6181e562012-03-20 19:49:14 +00001287 FwdDeclNode->replaceOperandWith(10, Elements);
1288 FwdDeclNode->replaceOperandWith(13, TParamsArray);
Eric Christopher64a04302012-02-15 23:51:20 +00001289 } else
Benjamin Kramer6181e562012-03-20 19:49:14 +00001290 FwdDeclNode->replaceOperandWith(10, Elements);
Eric Christopher64a04302012-02-15 23:51:20 +00001291
Benjamin Kramer6181e562012-03-20 19:49:14 +00001292 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDeclNode);
1293 return llvm::DIType(FwdDeclNode);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001294}
1295
John McCallc12c5bb2010-05-15 11:32:37 +00001296/// CreateType - get objective-c object type.
1297llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1298 llvm::DIFile Unit) {
1299 // Ignore protocols.
1300 return getOrCreateType(Ty->getBaseType(), Unit);
1301}
1302
Devang Patel9ca36b62009-02-26 21:10:26 +00001303/// CreateType - get objective-c interface type.
1304llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001305 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001306 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001307 if (!ID)
1308 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001309
1310 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001311 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001312 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001313 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001314
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001315 // If this is just a forward declaration return a special forward-declaration
1316 // debug type since we won't be able to lay out the entire type.
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001317 ObjCInterfaceDecl *Def = ID->getDefinition();
1318 if (!Def) {
Devang Patel823d8e92010-12-08 22:42:58 +00001319 llvm::DIType FwdDecl =
Eric Christopher917bc8d2012-02-20 18:05:04 +00001320 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christopher87380aa2012-04-23 19:00:24 +00001321 ID->getName(), TheCU, DefUnit, Line,
Eric Christopher917bc8d2012-02-20 18:05:04 +00001322 RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001323 return FwdDecl;
1324 }
Eric Christopherbe6c6862012-04-11 05:56:05 +00001325
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001326 ID = Def;
Dan Gohman45f7c782010-08-23 21:15:56 +00001327
Eric Christopher9965dea2012-02-16 22:54:45 +00001328 // Bit size, align and offset of the type.
1329 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1330 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001331
Eric Christopher9965dea2012-02-16 22:54:45 +00001332 unsigned Flags = 0;
1333 if (ID->getImplementation())
1334 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
1335
1336 llvm::DIType RealDecl =
1337 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
1338 Line, Size, Align, Flags,
1339 llvm::DIArray(), RuntimeLang);
Eric Christopherbe6c6862012-04-11 05:56:05 +00001340
Eric Christopheraf3db7d2012-02-27 08:23:23 +00001341 // Otherwise, insert it into the CompletedTypeCache so that recursive uses
1342 // will find it and we're emitting the complete type.
1343 CompletedTypeCache[QualType(Ty, 0).getAsOpaquePtr()] = RealDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001344 // Push the struct on region stack.
Benjamin Kramer6181e562012-03-20 19:49:14 +00001345 llvm::TrackingVH<llvm::MDNode> FwdDeclNode(RealDecl);
Eric Christopher9965dea2012-02-16 22:54:45 +00001346
Eric Christopheraa2164c2011-09-29 00:00:45 +00001347 LexicalBlockStack.push_back(FwdDeclNode);
Eric Christopher9965dea2012-02-16 22:54:45 +00001348 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001349
1350 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001351 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001352
Devang Pateld6c5a262010-02-01 21:52:22 +00001353 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001354 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001355 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001356 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001357 if (!SClassTy.isValid())
1358 return llvm::DIType();
1359
Mike Stump1eb44332009-09-09 15:08:12 +00001360 llvm::DIType InhTag =
Eric Christopher9965dea2012-02-16 22:54:45 +00001361 DBuilder.createInheritance(RealDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001362 EltTys.push_back(InhTag);
1363 }
1364
Devang Patel693fcaa2012-02-07 18:40:30 +00001365 for (ObjCContainerDecl::prop_iterator I = ID->prop_begin(),
1366 E = ID->prop_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00001367 const ObjCPropertyDecl *PD = *I;
Eric Christopher51c03712012-03-29 08:43:37 +00001368 SourceLocation Loc = PD->getLocation();
1369 llvm::DIFile PUnit = getOrCreateFile(Loc);
1370 unsigned PLine = getLineNumber(Loc);
Eric Christopher78af8fd2012-04-05 22:03:32 +00001371 ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
1372 ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
Devang Patel693fcaa2012-02-07 18:40:30 +00001373 llvm::MDNode *PropertyNode =
1374 DBuilder.createObjCProperty(PD->getName(),
Eric Christopher51c03712012-03-29 08:43:37 +00001375 PUnit, PLine,
Eric Christopher78af8fd2012-04-05 22:03:32 +00001376 (Getter && Getter->isImplicit()) ? "" :
Eric Christopherecae5962012-03-29 17:31:33 +00001377 getSelectorName(PD->getGetterName()),
Eric Christopher78af8fd2012-04-05 22:03:32 +00001378 (Setter && Setter->isImplicit()) ? "" :
Eric Christopherecae5962012-03-29 17:31:33 +00001379 getSelectorName(PD->getSetterName()),
Eric Christopher51c03712012-03-29 08:43:37 +00001380 PD->getPropertyAttributes(),
1381 getOrCreateType(PD->getType(), PUnit));
Devang Patel693fcaa2012-02-07 18:40:30 +00001382 EltTys.push_back(PropertyNode);
1383 }
1384
Devang Pateld6c5a262010-02-01 21:52:22 +00001385 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00001386 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001387 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001388 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001389 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001390 if (!FieldTy.isValid())
1391 return llvm::DIType();
1392
Chris Lattner5f9e2722011-07-23 10:55:15 +00001393 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001394
Devang Patelde135022009-04-27 22:40:36 +00001395 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001396 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001397 continue;
1398
Devang Patel9ca36b62009-02-26 21:10:26 +00001399 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001400 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1401 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001402 QualType FType = Field->getType();
1403 uint64_t FieldSize = 0;
1404 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001405
Devang Patel99c20eb2009-03-20 18:24:39 +00001406 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001407
Devang Patel99c20eb2009-03-20 18:24:39 +00001408 // Bit size, align and offset of the type.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001409 FieldSize = Field->isBitField()
1410 ? Field->getBitWidthValue(CGM.getContext())
1411 : CGM.getContext().getTypeSize(FType);
1412 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001413 }
1414
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001415 // We can't know the offset of our ivar in the structure if we're using
1416 // the non-fragile abi and the debugger should ignore the value anyways.
1417 // Call it the FieldNo+1 due to how debuggers use the information,
1418 // e.g. negating the value when it needs a lookup in the dynamic table.
John McCall260611a2012-06-20 06:18:46 +00001419 uint64_t FieldOffset = CGM.getLangOpts().ObjCRuntime.isNonFragile()
1420 ? FieldNo+1 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001421
Devang Patelc20482b2009-03-19 00:23:53 +00001422 unsigned Flags = 0;
1423 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001424 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001425 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001426 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001427
Devang Patel693a70d2012-02-04 01:15:04 +00001428 llvm::MDNode *PropertyNode = NULL;
Devang Patel693fcaa2012-02-07 18:40:30 +00001429 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) {
Devang Patel8c6f9c42011-09-19 18:54:16 +00001430 if (ObjCPropertyImplDecl *PImpD =
Devang Patel693fcaa2012-02-07 18:40:30 +00001431 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) {
1432 if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) {
Eric Christopher51c03712012-03-29 08:43:37 +00001433 SourceLocation Loc = PD->getLocation();
1434 llvm::DIFile PUnit = getOrCreateFile(Loc);
1435 unsigned PLine = getLineNumber(Loc);
Eric Christopher78af8fd2012-04-05 22:03:32 +00001436 ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
1437 ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
1438 PropertyNode =
1439 DBuilder.createObjCProperty(PD->getName(),
1440 PUnit, PLine,
1441 (Getter && Getter->isImplicit()) ? "" :
Eric Christopherecae5962012-03-29 17:31:33 +00001442 getSelectorName(PD->getGetterName()),
Eric Christopher78af8fd2012-04-05 22:03:32 +00001443 (Setter && Setter->isImplicit()) ? "" :
Eric Christopherecae5962012-03-29 17:31:33 +00001444 getSelectorName(PD->getSetterName()),
Eric Christopher78af8fd2012-04-05 22:03:32 +00001445 PD->getPropertyAttributes(),
1446 getOrCreateType(PD->getType(), PUnit));
Devang Patel53bc5182012-02-08 00:10:20 +00001447 }
Devang Patel693fcaa2012-02-07 18:40:30 +00001448 }
Devang Patel693a70d2012-02-04 01:15:04 +00001449 }
Devang Patelfa936d82011-04-16 00:12:55 +00001450 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1451 FieldLine, FieldSize, FieldAlign,
1452 FieldOffset, Flags, FieldTy,
Devang Patel5f3c7fa2012-02-06 18:20:02 +00001453 PropertyNode);
Devang Patel9ca36b62009-02-26 21:10:26 +00001454 EltTys.push_back(FieldTy);
1455 }
Mike Stump1eb44332009-09-09 15:08:12 +00001456
Jay Foadc556ef22011-04-24 10:11:03 +00001457 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Benjamin Kramer6181e562012-03-20 19:49:14 +00001458 FwdDeclNode->replaceOperandWith(10, Elements);
Eric Christopher9965dea2012-02-16 22:54:45 +00001459
Eric Christopheraa2164c2011-09-29 00:00:45 +00001460 LexicalBlockStack.pop_back();
Benjamin Kramer6181e562012-03-20 19:49:14 +00001461 return llvm::DIType(FwdDeclNode);
Devang Patel9ca36b62009-02-26 21:10:26 +00001462}
1463
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001464llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty, llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001465 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001466 int64_t NumElems = Ty->getNumElements();
1467 int64_t LowerBound = 0;
1468 if (NumElems == 0)
1469 // If number of elements are not known then this is an unbounded array.
1470 // Use Low = 1, Hi = 0 to express such arrays.
1471 LowerBound = 1;
1472 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001473 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001474
Devang Patel6cf37dd2011-04-08 21:56:52 +00001475 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001476 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001477
1478 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1479 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1480
1481 return
Devang Patel16674e82011-02-22 18:56:36 +00001482 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001483}
1484
Chris Lattner9c85ba32008-11-10 06:08:34 +00001485llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001486 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001487 uint64_t Size;
1488 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001489
Nuno Lopes010d5142009-01-28 00:35:17 +00001490 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001491 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001492 Size = 0;
1493 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001494 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001495 } else if (Ty->isIncompleteArrayType()) {
1496 Size = 0;
Eric Christopherc7fb7482012-08-07 00:48:43 +00001497 if (Ty->getElementType()->isIncompleteType())
1498 Align = 0;
1499 else
1500 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001501 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001502 Size = 0;
1503 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001504 } else {
1505 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001506 Size = CGM.getContext().getTypeSize(Ty);
1507 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001508 }
Mike Stump1eb44332009-09-09 15:08:12 +00001509
Chris Lattner9c85ba32008-11-10 06:08:34 +00001510 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1511 // interior arrays, do we care? Why aren't nested arrays represented the
1512 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001513 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001514 QualType EltTy(Ty, 0);
Eric Christophere6d11972012-05-21 22:13:23 +00001515 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
1516 int64_t UpperBound = 0;
1517 int64_t LowerBound = 0;
1518 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
1519 if (CAT->getSize().getZExtValue())
1520 UpperBound = CAT->getSize().getZExtValue() - 1;
1521 } else
1522 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1523 // arrays.
1524 LowerBound = 1;
1525
1526 // FIXME: Verify this is right for VLAs.
1527 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1528 UpperBound));
Chris Lattner9c85ba32008-11-10 06:08:34 +00001529 EltTy = Ty->getElementType();
Sanjiv Gupta507de852008-06-09 10:47:41 +00001530 }
Mike Stump1eb44332009-09-09 15:08:12 +00001531
Jay Foadc556ef22011-04-24 10:11:03 +00001532 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001533
Devang Patelca80a5f2009-10-20 19:55:01 +00001534 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001535 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001536 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001537 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001538}
1539
Anders Carlssona031b352009-11-06 19:19:55 +00001540llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001541 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001542 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1543 Ty, Ty->getPointeeType(), Unit);
1544}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001545
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001546llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1547 llvm::DIFile Unit) {
1548 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1549 Ty, Ty->getPointeeType(), Unit);
1550}
1551
Anders Carlsson20f12a22009-12-06 18:00:51 +00001552llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001553 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001554 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1555 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1556
1557 if (!Ty->getPointeeType()->isFunctionType()) {
1558 // We have a data member pointer type.
1559 return PointerDiffDITy;
1560 }
1561
1562 // We have a member function pointer type. Treat it as a struct with two
1563 // ptrdiff_t members.
1564 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1565
1566 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001567 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001568
Eric Christopher3e078812012-08-04 00:11:20 +00001569 // FIXME: This should be a DW_TAG_pointer_to_member type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001570 ElementTypes[0] =
Devang Patel1d323e02011-06-24 22:00:59 +00001571 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001572 Info.first, Info.second, FieldOffset, 0,
1573 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001574 FieldOffset += Info.first;
1575
1576 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001577 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001578 Info.first, Info.second, FieldOffset, 0,
1579 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001580
Jay Foadc556ef22011-04-24 10:11:03 +00001581 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001582
Chris Lattner5f9e2722011-07-23 10:55:15 +00001583 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001584 U, 0, FieldOffset,
1585 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001586}
1587
Eli Friedmanb001de72011-10-06 23:00:33 +00001588llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1589 llvm::DIFile U) {
1590 // Ignore the atomic wrapping
1591 // FIXME: What is the correct representation?
1592 return getOrCreateType(Ty->getValueType(), U);
1593}
1594
Devang Patel6237cea2010-08-23 22:07:25 +00001595/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001596llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
Eli Friedmane6b39bc2012-10-05 01:49:33 +00001597 uint64_t Size = 0;
1598 uint64_t Align = 0;
1599 if (!ED->getTypeForDecl()->isIncompleteType()) {
1600 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1601 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1602 }
1603
1604 // If this is just a forward declaration, construct an appropriately
1605 // marked node and just return it.
1606 if (!ED->getDefinition()) {
1607 llvm::DIDescriptor EDContext;
1608 EDContext = getContextDescriptor(cast<Decl>(ED->getDeclContext()));
1609 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1610 unsigned Line = getLineNumber(ED->getLocation());
1611 StringRef EDName = ED->getName();
1612 return DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_enumeration_type,
1613 EDName, EDContext, DefUnit, Line, 0,
1614 Size, Align);
1615 }
Devang Patel6237cea2010-08-23 22:07:25 +00001616
1617 // Create DIEnumerator elements for each enumerator.
Eli Friedmane6b39bc2012-10-05 01:49:33 +00001618 SmallVector<llvm::Value *, 16> Enumerators;
1619 ED = ED->getDefinition();
Devang Patel6237cea2010-08-23 22:07:25 +00001620 for (EnumDecl::enumerator_iterator
1621 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1622 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001623 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001624 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001625 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001626 }
1627
1628 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001629 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001630
1631 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1632 unsigned Line = getLineNumber(ED->getLocation());
Devang Patel4bc48872010-10-27 23:23:58 +00001633 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001634 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Eric Christopher9ee5f462012-05-23 00:09:47 +00001635 llvm::DIType ClassTy = ED->isScopedUsingClassTag() ?
1636 getOrCreateType(ED->getIntegerType(), DefUnit) : llvm::DIType();
Devang Patel6237cea2010-08-23 22:07:25 +00001637 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001638 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Eric Christopher9ee5f462012-05-23 00:09:47 +00001639 Size, Align, EltArray,
Eli Friedmane6b39bc2012-10-05 01:49:33 +00001640 ClassTy);
Devang Patel6237cea2010-08-23 22:07:25 +00001641 return DbgTy;
1642}
1643
Douglas Gregor840943d2009-12-21 20:18:30 +00001644static QualType UnwrapTypeForDebugInfo(QualType T) {
1645 do {
1646 QualType LastT = T;
1647 switch (T->getTypeClass()) {
1648 default:
1649 return T;
1650 case Type::TemplateSpecialization:
1651 T = cast<TemplateSpecializationType>(T)->desugar();
1652 break;
John McCallf4c73712011-01-19 06:33:43 +00001653 case Type::TypeOfExpr:
1654 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001655 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001656 case Type::TypeOf:
1657 T = cast<TypeOfType>(T)->getUnderlyingType();
1658 break;
1659 case Type::Decltype:
1660 T = cast<DecltypeType>(T)->getUnderlyingType();
1661 break;
Sean Huntca63c202011-05-24 22:41:36 +00001662 case Type::UnaryTransform:
1663 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1664 break;
John McCall9d156a72011-01-06 01:58:22 +00001665 case Type::Attributed:
1666 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001667 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001668 case Type::Elaborated:
1669 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001670 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001671 case Type::Paren:
1672 T = cast<ParenType>(T)->getInnerType();
1673 break;
Eric Christopher363e5ac2012-08-07 00:14:25 +00001674 case Type::SubstTemplateTypeParm: {
1675 // We need to keep the qualifiers handy since getReplacementType()
1676 // will strip them away.
1677 unsigned Quals = T.getLocalFastQualifiers();
Douglas Gregor840943d2009-12-21 20:18:30 +00001678 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
Eric Christopher363e5ac2012-08-07 00:14:25 +00001679 T.addFastQualifiers(Quals);
1680 }
Douglas Gregor840943d2009-12-21 20:18:30 +00001681 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001682 case Type::Auto:
1683 T = cast<AutoType>(T)->getDeducedType();
1684 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001685 }
1686
1687 assert(T != LastT && "Type unwrapping failed to unwrap!");
1688 if (T == LastT)
1689 return T;
1690 } while (true);
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001691}
1692
Eric Christopher973bbb62011-12-16 23:40:18 +00001693/// getType - Get the type from the cache or return null type if it doesn't exist.
1694llvm::DIType CGDebugInfo::getTypeOrNull(QualType Ty) {
Mike Stump1eb44332009-09-09 15:08:12 +00001695
Douglas Gregor840943d2009-12-21 20:18:30 +00001696 // Unwrap the type as needed for debug information.
1697 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher42e75da2012-02-13 14:56:11 +00001698
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001699 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001700 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001701 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001702 if (it != TypeCache.end()) {
1703 // Verify that the debug info still exists.
Richard Smithe7259aa2012-08-17 04:17:54 +00001704 if (llvm::Value *V = it->second)
1705 return llvm::DIType(cast<llvm::MDNode>(V));
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001706 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001707
Eric Christopher973bbb62011-12-16 23:40:18 +00001708 return llvm::DIType();
1709}
1710
Eric Christopher9965dea2012-02-16 22:54:45 +00001711/// getCompletedTypeOrNull - Get the type from the cache or return null if it
1712/// doesn't exist.
1713llvm::DIType CGDebugInfo::getCompletedTypeOrNull(QualType Ty) {
1714
1715 // Unwrap the type as needed for debug information.
1716 Ty = UnwrapTypeForDebugInfo(Ty);
1717
1718 // Check for existing entry.
1719 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
1720 CompletedTypeCache.find(Ty.getAsOpaquePtr());
1721 if (it != CompletedTypeCache.end()) {
1722 // Verify that the debug info still exists.
Richard Smithe7259aa2012-08-17 04:17:54 +00001723 if (llvm::Value *V = it->second)
1724 return llvm::DIType(cast<llvm::MDNode>(V));
Eric Christopher9965dea2012-02-16 22:54:45 +00001725 }
1726
1727 return llvm::DIType();
1728}
1729
1730
Eric Christopher973bbb62011-12-16 23:40:18 +00001731/// getOrCreateType - Get the type from the cache or create a new
1732/// one if necessary.
1733llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile Unit) {
1734 if (Ty.isNull())
1735 return llvm::DIType();
1736
1737 // Unwrap the type as needed for debug information.
1738 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher363e5ac2012-08-07 00:14:25 +00001739
Eric Christopher9965dea2012-02-16 22:54:45 +00001740 llvm::DIType T = getCompletedTypeOrNull(Ty);
1741
Eric Christopher363e5ac2012-08-07 00:14:25 +00001742 if (T.Verify())
1743 return T;
Eric Christopher973bbb62011-12-16 23:40:18 +00001744
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001745 // Otherwise create the type.
1746 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001747
1748 llvm::DIType TC = getTypeOrNull(Ty);
1749 if (TC.Verify() && TC.isForwardDecl())
Michael J. Spencer50e3faa2012-06-08 23:47:12 +00001750 ReplaceMap.push_back(std::make_pair(Ty.getAsOpaquePtr(),
1751 static_cast<llvm::Value*>(TC)));
Eric Christopher9965dea2012-02-16 22:54:45 +00001752
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001753 // And update the type cache.
Eric Christopher9965dea2012-02-16 22:54:45 +00001754 TypeCache[Ty.getAsOpaquePtr()] = Res;
1755
1756 if (!Res.isForwardDecl())
1757 CompletedTypeCache[Ty.getAsOpaquePtr()] = Res;
Eric Christopher363e5ac2012-08-07 00:14:25 +00001758
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001759 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001760}
1761
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001762/// CreateTypeNode - Create a new debug type node.
Nick Lewycky7b3819d2011-11-09 04:27:23 +00001763llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001764 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001765 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001766 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001767
Douglas Gregor2101a822009-12-21 19:57:21 +00001768 const char *Diag = 0;
1769
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001770 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001771 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001772#define TYPE(Class, Base)
1773#define ABSTRACT_TYPE(Class, Base)
1774#define NON_CANONICAL_TYPE(Class, Base)
1775#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1776#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001777 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001778
Anders Carlssonbfe69952009-11-06 18:24:04 +00001779 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001780 case Type::Vector:
1781 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001782 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001783 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001784 case Type::ObjCObject:
1785 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001786 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001787 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001788 case Type::Builtin:
1789 return CreateType(cast<BuiltinType>(Ty));
1790 case Type::Complex:
1791 return CreateType(cast<ComplexType>(Ty));
1792 case Type::Pointer:
1793 return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001794 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001795 return CreateType(cast<BlockPointerType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001796 case Type::Typedef:
1797 return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001798 case Type::Record:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001799 return CreateType(cast<RecordType>(Ty));
Douglas Gregor72564e72009-02-26 23:50:07 +00001800 case Type::Enum:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001801 return CreateEnumType(cast<EnumType>(Ty)->getDecl());
Chris Lattner9c85ba32008-11-10 06:08:34 +00001802 case Type::FunctionProto:
1803 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001804 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001805 case Type::ConstantArray:
1806 case Type::VariableArray:
1807 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001808 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001809
1810 case Type::LValueReference:
1811 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001812 case Type::RValueReference:
1813 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001814
Anders Carlsson20f12a22009-12-06 18:00:51 +00001815 case Type::MemberPointer:
1816 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001817
Eli Friedmanb001de72011-10-06 23:00:33 +00001818 case Type::Atomic:
1819 return CreateType(cast<AtomicType>(Ty), Unit);
1820
John McCall9d156a72011-01-06 01:58:22 +00001821 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001822 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001823 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001824 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001825 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001826 case Type::TypeOfExpr:
1827 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001828 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001829 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001830 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001831 llvm_unreachable("type should have been unwrapped!");
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001832 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001833
1834 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001835 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001836 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001837 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001838 << Diag;
1839 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001840}
1841
Eric Christopher9965dea2012-02-16 22:54:45 +00001842/// getOrCreateLimitedType - Get the type from the cache or create a new
1843/// limited type if necessary.
1844llvm::DIType CGDebugInfo::getOrCreateLimitedType(QualType Ty,
1845 llvm::DIFile Unit) {
1846 if (Ty.isNull())
1847 return llvm::DIType();
1848
1849 // Unwrap the type as needed for debug information.
1850 Ty = UnwrapTypeForDebugInfo(Ty);
1851
1852 llvm::DIType T = getTypeOrNull(Ty);
1853
1854 // We may have cached a forward decl when we could have created
1855 // a non-forward decl. Go ahead and create a non-forward decl
1856 // now.
1857 if (T.Verify() && !T.isForwardDecl()) return T;
1858
1859 // Otherwise create the type.
1860 llvm::DIType Res = CreateLimitedTypeNode(Ty, Unit);
1861
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001862 if (T.Verify() && T.isForwardDecl())
Michael J. Spencer50e3faa2012-06-08 23:47:12 +00001863 ReplaceMap.push_back(std::make_pair(Ty.getAsOpaquePtr(),
1864 static_cast<llvm::Value*>(T)));
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001865
Eric Christopher9965dea2012-02-16 22:54:45 +00001866 // And update the type cache.
1867 TypeCache[Ty.getAsOpaquePtr()] = Res;
1868 return Res;
1869}
1870
1871// TODO: Currently used for context chains when limiting debug info.
1872llvm::DIType CGDebugInfo::CreateLimitedType(const RecordType *Ty) {
1873 RecordDecl *RD = Ty->getDecl();
1874
1875 // Get overall information about the record type for the debug info.
1876 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1877 unsigned Line = getLineNumber(RD->getLocation());
David Blaikie70ae1222012-11-02 23:40:00 +00001878 StringRef RDName = getClassName(RD);
Eric Christopher9965dea2012-02-16 22:54:45 +00001879
1880 llvm::DIDescriptor RDContext;
Douglas Gregor4cdad312012-10-23 20:05:01 +00001881 if (CGM.getCodeGenOpts().getDebugInfo() == CodeGenOptions::LimitedDebugInfo)
Eric Christopher9965dea2012-02-16 22:54:45 +00001882 RDContext = createContextChain(cast<Decl>(RD->getDeclContext()));
1883 else
1884 RDContext = getContextDescriptor(cast<Decl>(RD->getDeclContext()));
1885
1886 // If this is just a forward declaration, construct an appropriately
1887 // marked node and just return it.
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001888 if (!RD->getDefinition())
1889 return createRecordFwdDecl(RD, RDContext);
Eric Christopher9965dea2012-02-16 22:54:45 +00001890
1891 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1892 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1893 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Benjamin Kramer6181e562012-03-20 19:49:14 +00001894 llvm::TrackingVH<llvm::MDNode> RealDecl;
Eric Christopher9965dea2012-02-16 22:54:45 +00001895
1896 if (RD->isUnion())
1897 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
1898 Size, Align, 0, llvm::DIArray());
David Blaikie70ae1222012-11-02 23:40:00 +00001899 else if (RD->isClass()) {
Eric Christopher9965dea2012-02-16 22:54:45 +00001900 // FIXME: This could be a struct type giving a default visibility different
1901 // than C++ class type, but needs llvm metadata changes first.
1902 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
1903 Size, Align, 0, 0, llvm::DIType(),
Eric Christopher86211df2012-02-20 18:05:24 +00001904 llvm::DIArray(), llvm::DIType(),
Eric Christopher9965dea2012-02-16 22:54:45 +00001905 llvm::DIArray());
1906 } else
1907 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1908 Size, Align, 0, llvm::DIArray());
1909
1910 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
1911 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = llvm::DIType(RealDecl);
1912
1913 if (CXXDecl) {
1914 // A class's primary base or the class itself contains the vtable.
1915 llvm::MDNode *ContainingType = NULL;
1916 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1917 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1918 // Seek non virtual primary base root.
1919 while (1) {
1920 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1921 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
1922 if (PBT && !BRL.isPrimaryBaseVirtual())
1923 PBase = PBT;
1924 else
1925 break;
1926 }
1927 ContainingType =
1928 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), DefUnit);
1929 }
1930 else if (CXXDecl->isDynamicClass())
1931 ContainingType = RealDecl;
1932
Eric Christopher1e009d52012-02-17 07:09:48 +00001933 RealDecl->replaceOperandWith(12, ContainingType);
Eric Christopher9965dea2012-02-16 22:54:45 +00001934 }
1935 return llvm::DIType(RealDecl);
1936}
1937
1938/// CreateLimitedTypeNode - Create a new debug type node, but only forward
1939/// declare composite types that haven't been processed yet.
1940llvm::DIType CGDebugInfo::CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) {
1941
1942 // Work out details of type.
1943 switch (Ty->getTypeClass()) {
1944#define TYPE(Class, Base)
1945#define ABSTRACT_TYPE(Class, Base)
1946#define NON_CANONICAL_TYPE(Class, Base)
1947#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1948 #include "clang/AST/TypeNodes.def"
1949 llvm_unreachable("Dependent types cannot show up in debug information");
1950
1951 case Type::Record:
1952 return CreateLimitedType(cast<RecordType>(Ty));
1953 default:
1954 return CreateTypeNode(Ty, Unit);
1955 }
1956}
1957
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001958/// CreateMemberType - Create new member and increase Offset by FType's size.
1959llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001960 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001961 uint64_t *Offset) {
1962 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1963 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1964 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001965 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001966 FieldSize, FieldAlign,
1967 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001968 *Offset += FieldSize;
1969 return Ty;
1970}
1971
Devang Patel120bf322011-04-23 00:08:01 +00001972/// getFunctionDeclaration - Return debug info descriptor to describe method
1973/// declaration for the given method definition.
1974llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1975 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1976 if (!FD) return llvm::DISubprogram();
1977
1978 // Setup context.
1979 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1980
Devang Patel22a5cdf2011-04-29 23:42:32 +00001981 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001982 MI = SPCache.find(FD->getCanonicalDecl());
Devang Patel22a5cdf2011-04-29 23:42:32 +00001983 if (MI != SPCache.end()) {
Richard Smithe7259aa2012-08-17 04:17:54 +00001984 llvm::Value *V = MI->second;
1985 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(V));
Devang Patel22a5cdf2011-04-29 23:42:32 +00001986 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1987 return SP;
1988 }
1989
Devang Patel120bf322011-04-23 00:08:01 +00001990 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1991 E = FD->redecls_end(); I != E; ++I) {
1992 const FunctionDecl *NextFD = *I;
1993 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001994 MI = SPCache.find(NextFD->getCanonicalDecl());
Devang Patel120bf322011-04-23 00:08:01 +00001995 if (MI != SPCache.end()) {
Richard Smithe7259aa2012-08-17 04:17:54 +00001996 llvm::Value *V = MI->second;
1997 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(V));
Devang Patel120bf322011-04-23 00:08:01 +00001998 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1999 return SP;
2000 }
2001 }
2002 return llvm::DISubprogram();
2003}
2004
Devang Patel1c296522011-05-31 20:46:46 +00002005// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
2006// implicit parameter "this".
Eric Christopher85f90bd2012-09-11 01:36:56 +00002007llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl *D,
Eric Christopherab5278e2011-10-11 23:00:51 +00002008 QualType FnType,
Devang Patel1c296522011-05-31 20:46:46 +00002009 llvm::DIFile F) {
Eric Christopher363e5ac2012-08-07 00:14:25 +00002010
Devang Patel1c296522011-05-31 20:46:46 +00002011 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
2012 return getOrCreateMethodType(Method, F);
Nick Lewycky7480d962011-11-10 00:34:02 +00002013 if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00002014 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00002015 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00002016
2017 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00002018 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00002019 // "self" pointer is always first argument.
Eric Christopher3ed6b912012-09-11 01:36:54 +00002020 llvm::DIType SelfTy = getOrCreateType(OMethod->getSelfDecl()->getType(), F);
Eric Christopherd5a73dc2012-09-12 23:36:49 +00002021 Elts.push_back(DBuilder.createObjectPointerType(SelfTy));
Eric Christopher85f90bd2012-09-11 01:36:56 +00002022 // "_cmd" pointer is always second argument.
Eric Christopher3ed6b912012-09-11 01:36:54 +00002023 llvm::DIType CmdTy = getOrCreateType(OMethod->getCmdDecl()->getType(), F);
2024 Elts.push_back(DBuilder.createArtificialType(CmdTy));
Devang Pateld127bcb2011-05-31 22:21:11 +00002025 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00002026 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00002027 PE = OMethod->param_end(); PI != PE; ++PI)
2028 Elts.push_back(getOrCreateType((*PI)->getType(), F));
2029
Devang Patelc478f212011-05-31 21:18:50 +00002030 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
2031 return DBuilder.createSubroutineType(F, EltTypeArray);
2032 }
Devang Patel1c296522011-05-31 20:46:46 +00002033 return getOrCreateType(FnType, F);
2034}
2035
Eric Christopher451b4412012-03-20 23:28:32 +00002036/// EmitFunctionStart - Constructs the debug code for entering a function.
Devang Patel9c6c3a02010-01-14 00:36:21 +00002037void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002038 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00002039 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00002040
Chris Lattner5f9e2722011-07-23 10:55:15 +00002041 StringRef Name;
2042 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00002043
Eric Christopheraa2164c2011-09-29 00:00:45 +00002044 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002045
Devang Patel9c6c3a02010-01-14 00:36:21 +00002046 const Decl *D = GD.getDecl();
Alexey Samsonov34b41f82012-10-25 10:18:50 +00002047 // Function may lack declaration in source code if it is created by Clang
2048 // CodeGen (examples: _GLOBAL__I_a, __cxx_global_array_dtor, thunk).
2049 bool HasDecl = (D != 0);
Eric Christopherea320472012-04-03 00:44:15 +00002050 // Use the location of the declaration.
Alexey Samsonov34b41f82012-10-25 10:18:50 +00002051 SourceLocation Loc;
2052 if (HasDecl)
2053 Loc = D->getLocation();
2054
Devang Patel3951e712010-10-07 22:03:49 +00002055 unsigned Flags = 0;
Eric Christopherea320472012-04-03 00:44:15 +00002056 llvm::DIFile Unit = getOrCreateFile(Loc);
Devang Patel0692f832010-10-11 21:58:41 +00002057 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00002058 llvm::DIArray TParamsArray;
Alexey Samsonov34b41f82012-10-25 10:18:50 +00002059 if (!HasDecl) {
2060 // Use llvm function name.
2061 Name = Fn->getName();
2062 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Eric Christopherbf979472011-11-14 18:55:02 +00002063 // If there is a DISubprogram for this function available then use it.
Devang Patel4125fd22010-01-19 01:54:44 +00002064 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00002065 FI = SPCache.find(FD->getCanonicalDecl());
Devang Patel4125fd22010-01-19 01:54:44 +00002066 if (FI != SPCache.end()) {
Richard Smithe7259aa2012-08-17 04:17:54 +00002067 llvm::Value *V = FI->second;
2068 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(V));
Devang Patelab699792010-05-07 18:12:35 +00002069 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
2070 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002071 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00002072 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00002073 return;
2074 }
2075 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00002076 Name = getFunctionName(FD);
2077 // Use mangled name as linkage name for c/c++ functions.
Eric Christopher43443de2012-04-12 00:35:06 +00002078 if (FD->hasPrototype()) {
Devang Patel2df74c02011-05-02 22:37:48 +00002079 LinkageName = CGM.getMangledName(GD);
Eric Christopher43443de2012-04-12 00:35:06 +00002080 Flags |= llvm::DIDescriptor::FlagPrototyped;
2081 }
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002082 if (LinkageName == Name ||
Douglas Gregor4cdad312012-10-23 20:05:01 +00002083 CGM.getCodeGenOpts().getDebugInfo() <= CodeGenOptions::DebugLineTablesOnly)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002084 LinkageName = StringRef();
Eric Christopher43443de2012-04-12 00:35:06 +00002085
Douglas Gregor4cdad312012-10-23 20:05:01 +00002086 if (CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002087 if (const NamespaceDecl *NSDecl =
2088 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
2089 FDContext = getOrCreateNameSpace(NSDecl);
2090 else if (const RecordDecl *RDecl =
2091 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
2092 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00002093
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002094 // Collect template parameters.
2095 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
2096 }
David Chisnall70b9b442010-09-02 17:16:32 +00002097 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00002098 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00002099 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00002100 } else {
Devang Patel58faf202010-10-22 17:11:50 +00002101 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00002102 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00002103 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00002104 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002105 if (!Name.empty() && Name[0] == '\01')
2106 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002107
Eric Christopherea320472012-04-03 00:44:15 +00002108 unsigned LineNo = getLineNumber(Loc);
Alexey Samsonov34b41f82012-10-25 10:18:50 +00002109 if (!HasDecl || D->isImplicit())
Devang Patele2472482010-09-29 21:05:52 +00002110 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopherea320472012-04-03 00:44:15 +00002111
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002112 llvm::DIType DIFnType;
2113 llvm::DISubprogram SPDecl;
Alexey Samsonov34b41f82012-10-25 10:18:50 +00002114 if (HasDecl &&
2115 CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00002116 DIFnType = getOrCreateFunctionType(D, FnType, Unit);
2117 SPDecl = getFunctionDeclaration(D);
2118 } else {
2119 // Create fake but valid subroutine type. Otherwise
2120 // llvm::DISubprogram::Verify() would return false, and
2121 // subprogram DIE will miss DW_AT_decl_file and
2122 // DW_AT_decl_line fields.
2123 SmallVector<llvm::Value*, 16> Elts;
2124 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
2125 DIFnType = DBuilder.createSubroutineType(Unit, EltTypeArray);
2126 }
2127 llvm::DISubprogram SP;
2128 SP = DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
2129 LineNo, DIFnType,
2130 Fn->hasInternalLinkage(), true/*definition*/,
2131 getLineNumber(CurLoc), Flags,
2132 CGM.getLangOpts().Optimize,
2133 Fn, TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00002134
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002135 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00002136 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002137 LexicalBlockStack.push_back(SPN);
Alexey Samsonov34b41f82012-10-25 10:18:50 +00002138 if (HasDecl)
2139 RegionMap[D] = llvm::WeakVH(SP);
Eric Christopher69a1b742011-09-29 00:00:37 +00002140}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002141
Eric Christopher5321bc42011-09-29 00:00:41 +00002142/// EmitLocation - Emit metadata to indicate a change in line/column
2143/// information in the source file.
Eric Christopher73fb3502011-10-13 21:45:18 +00002144void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
2145
2146 // Update our current location
2147 setLocation(Loc);
2148
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002149 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00002150
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002151 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00002152 SourceManager &SM = CGM.getContext().getSourceManager();
Eric Christopher73fb3502011-10-13 21:45:18 +00002153 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00002154 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00002155 // New Builder may not be in sync with CGDebugInfo.
2156 if (!Builder.getCurrentDebugLocation().isUnknown())
2157 return;
Eric Christopher414ee4b2011-09-29 00:00:35 +00002158
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002159 // Update last state.
2160 PrevLoc = CurLoc;
2161
Eric Christopheraa2164c2011-09-29 00:00:45 +00002162 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00002163 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
2164 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00002165 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002166}
2167
Eric Christopher73fb3502011-10-13 21:45:18 +00002168/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
2169/// the stack.
2170void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
Devang Patel8fae0602009-11-13 19:10:24 +00002171 llvm::DIDescriptor D =
Eric Christopher73fb3502011-10-13 21:45:18 +00002172 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
Devang Patel53bc5182012-02-08 00:10:20 +00002173 llvm::DIDescriptor() :
2174 llvm::DIDescriptor(LexicalBlockStack.back()),
2175 getOrCreateFile(CurLoc),
2176 getLineNumber(CurLoc),
2177 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00002178 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002179 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002180}
2181
Eric Christopher73fb3502011-10-13 21:45:18 +00002182/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
2183/// region - beginning of a DW_TAG_lexical_block.
2184void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) {
2185 // Set our current location.
2186 setLocation(Loc);
2187
2188 // Create a new lexical block and push it on the stack.
2189 CreateLexicalBlock(Loc);
2190
2191 // Emit a line table change for the current location inside the new scope.
2192 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
Devang Patel53bc5182012-02-08 00:10:20 +00002193 getColumnNumber(Loc),
2194 LexicalBlockStack.back()));
Eric Christopher73fb3502011-10-13 21:45:18 +00002195}
2196
Eric Christopheraa2164c2011-09-29 00:00:45 +00002197/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00002198/// region - end of a DW_TAG_lexical_block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002199void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002200 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Eric Christopherc852e9f2012-07-11 15:32:13 +00002201
2202 // Provide an entry in the line table for the end of the block.
2203 EmitLocation(Builder, Loc);
2204
Eric Christopheraa2164c2011-09-29 00:00:45 +00002205 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002206}
2207
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002208/// EmitFunctionEnd - Constructs the debug code for exiting a function.
2209void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002210 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002211 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00002212 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002213
2214 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00002215 while (LexicalBlockStack.size() != RCount)
Eric Christopher73fb3502011-10-13 21:45:18 +00002216 EmitLexicalBlockEnd(Builder, CurLoc);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002217 FnBeginRegionCount.pop_back();
2218}
2219
Devang Patel809b9bb2010-02-10 18:49:08 +00002220// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
2221// See BuildByRefType.
2222llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
2223 uint64_t *XOffset) {
2224
Chris Lattner5f9e2722011-07-23 10:55:15 +00002225 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00002226 QualType FType;
2227 uint64_t FieldSize, FieldOffset;
2228 unsigned FieldAlign;
2229
Devang Patel17800552010-03-09 00:44:50 +00002230 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002231 QualType Type = VD->getType();
2232
2233 FieldOffset = 0;
2234 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002235 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2236 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002237 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002238 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2239 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2240
John McCall6b5a61b2011-02-07 10:33:21 +00002241 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00002242 if (HasCopyAndDispose) {
2243 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002244 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
2245 &FieldOffset));
2246 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
2247 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002248 }
2249
2250 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00002251 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002252 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00002253 CharUnits FieldOffsetInBytes
2254 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
2255 CharUnits AlignedOffsetInBytes
2256 = FieldOffsetInBytes.RoundUpToAlignment(Align);
2257 CharUnits NumPaddingBytes
2258 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00002259
Ken Dyck573be632011-04-22 17:34:18 +00002260 if (NumPaddingBytes.isPositive()) {
2261 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00002262 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2263 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002264 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002265 }
2266 }
2267
2268 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002269 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00002270 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00002271 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00002272
2273 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00002274 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002275 0, FieldSize, FieldAlign,
2276 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00002277 EltTys.push_back(FieldTy);
2278 FieldOffset += FieldSize;
2279
Jay Foadc556ef22011-04-24 10:11:03 +00002280 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00002281
Devang Patele2472482010-09-29 21:05:52 +00002282 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00002283
Devang Patel16674e82011-02-22 18:56:36 +00002284 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00002285 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00002286}
Devang Patel823d8e92010-12-08 22:42:58 +00002287
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002288/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00002289void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00002290 llvm::Value *Storage,
2291 unsigned ArgNo, CGBuilderTy &Builder) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00002292 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
Eric Christopheraa2164c2011-09-29 00:00:45 +00002293 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00002294
Devang Patel17800552010-03-09 00:44:50 +00002295 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002296 llvm::DIType Ty;
2297 uint64_t XOffset = 0;
2298 if (VD->hasAttr<BlocksAttr>())
2299 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2300 else
2301 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00002302
Eric Christopher195ff582012-09-19 21:47:29 +00002303 // If there is no debug info for this type then do not emit debug info
Devang Patelf4e54a22010-05-07 23:05:55 +00002304 // for this variable.
2305 if (!Ty)
2306 return;
2307
Devang Patel34753802011-02-16 01:11:51 +00002308 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
2309 // If Storage is an aggregate returned as 'sret' then let debugger know
2310 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00002311 if (Arg->hasStructRetAttr())
Eric Christopher37e4cea2012-05-19 01:36:50 +00002312 Ty = DBuilder.createReferenceType(llvm::dwarf::DW_TAG_reference_type, Ty);
Devang Patel34753802011-02-16 01:11:51 +00002313 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
2314 // If an aggregate variable has non trivial destructor or non trivial copy
2315 // constructor than it is pass indirectly. Let debug info know about this
2316 // by using reference of the aggregate type as a argument type.
Eric Christopherab5278e2011-10-11 23:00:51 +00002317 if (!Record->hasTrivialCopyConstructor() ||
2318 !Record->hasTrivialDestructor())
Eric Christopher37e4cea2012-05-19 01:36:50 +00002319 Ty = DBuilder.createReferenceType(llvm::dwarf::DW_TAG_reference_type, Ty);
Devang Patel34753802011-02-16 01:11:51 +00002320 }
2321 }
Devang Patel0691f932011-02-10 00:40:52 +00002322
Chris Lattner9c85ba32008-11-10 06:08:34 +00002323 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002324 unsigned Line = getLineNumber(VD->getLocation());
2325 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00002326 unsigned Flags = 0;
2327 if (VD->isImplicit())
2328 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopherd5a73dc2012-09-12 23:36:49 +00002329 // If this is the first argument and it is implicit then
2330 // give it an object pointer flag.
2331 // FIXME: There has to be a better way to do this, but for static
2332 // functions there won't be an implicit param at arg1 and
2333 // otherwise it is 'self' or 'this'.
2334 if (isa<ImplicitParamDecl>(VD) && ArgNo == 1)
2335 Flags |= llvm::DIDescriptor::FlagObjectPointer;
2336
Eric Christopheraa2164c2011-09-29 00:00:45 +00002337 llvm::MDNode *Scope = LexicalBlockStack.back();
Eric Christopherd5a73dc2012-09-12 23:36:49 +00002338
Chris Lattner5f9e2722011-07-23 10:55:15 +00002339 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002340 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002341 if (VD->hasAttr<BlocksAttr>()) {
2342 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002343 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002344 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002345 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002346 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002347 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002348 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002349 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002350 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2351 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002352 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002353 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002354 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2355
2356 // Create the descriptor for the variable.
2357 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002358 DBuilder.createComplexVariable(Tag,
Eric Christopherab5278e2011-10-11 23:00:51 +00002359 llvm::DIDescriptor(Scope),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002360 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002361 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002362
2363 // Insert an llvm.dbg.declare into the current block.
2364 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002365 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002366 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2367 return;
Eric Christophera135f2c2012-05-08 18:56:47 +00002368 } else if (isa<VariableArrayType>(VD->getType())) {
2369 // These are "complex" variables in that they need an op_deref.
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002370 // Create the descriptor for the variable.
Eric Christophera135f2c2012-05-08 18:56:47 +00002371 llvm::Value *Addr = llvm::ConstantInt::get(CGM.Int64Ty,
2372 llvm::DIBuilder::OpDeref);
2373 llvm::DIVariable D =
2374 DBuilder.createComplexVariable(Tag,
2375 llvm::DIDescriptor(Scope),
2376 Name, Unit, Line, Ty,
2377 Addr, ArgNo);
2378
2379 // Insert an llvm.dbg.declare into the current block.
2380 llvm::Instruction *Call =
2381 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
2382 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2383 return;
2384 }
2385
2386 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002387 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002388 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002389 Name, Unit, Line, Ty,
David Blaikie4e4d0842012-03-11 07:00:24 +00002390 CGM.getLangOpts().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002391
2392 // Insert an llvm.dbg.declare into the current block.
2393 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002394 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002395 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002396 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002397 }
2398
2399 // If VD is an anonymous union then Storage represents value for
2400 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002401 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2402 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2403 if (RD->isUnion()) {
2404 for (RecordDecl::field_iterator I = RD->field_begin(),
2405 E = RD->field_end();
2406 I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00002407 FieldDecl *Field = *I;
John McCall8178df32011-02-22 22:38:33 +00002408 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002409 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002410
John McCall8178df32011-02-22 22:38:33 +00002411 // Ignore unnamed fields. Do not ignore unnamed records.
2412 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2413 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002414
John McCall8178df32011-02-22 22:38:33 +00002415 // Use VarDecl's Tag, Scope and Line number.
2416 llvm::DIVariable D =
2417 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2418 FieldName, Unit, Line, FieldTy,
David Blaikie4e4d0842012-03-11 07:00:24 +00002419 CGM.getLangOpts().Optimize, Flags,
Devang Patel093ac462011-03-03 20:13:15 +00002420 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002421
John McCall8178df32011-02-22 22:38:33 +00002422 // Insert an llvm.dbg.declare into the current block.
2423 llvm::Instruction *Call =
2424 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
John McCall8178df32011-02-22 22:38:33 +00002425 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002426 }
John McCall8178df32011-02-22 22:38:33 +00002427 }
2428 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002429}
2430
Devang Patele2d01912011-04-25 23:43:36 +00002431void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2432 llvm::Value *Storage,
2433 CGBuilderTy &Builder) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00002434 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
Devang Patele2d01912011-04-25 23:43:36 +00002435 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2436}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002437
Eric Christopher245d5a32012-09-21 22:18:42 +00002438void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(const VarDecl *VD,
2439 llvm::Value *Storage,
2440 CGBuilderTy &Builder,
2441 const CGBlockInfo &blockInfo) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00002442 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
Eric Christopheraa2164c2011-09-29 00:00:45 +00002443 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002444
Devang Patel2b594b92010-04-26 23:28:46 +00002445 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002446 return;
Devang Patele2d01912011-04-25 23:43:36 +00002447
John McCall6b5a61b2011-02-07 10:33:21 +00002448 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002449
Mike Stumpb1a6e682009-09-30 02:43:10 +00002450 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002451 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002452 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002453 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002454 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2455 else
2456 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002457
Eric Christopher245d5a32012-09-21 22:18:42 +00002458 // Self is passed along as an implicit non-arg variable in a
2459 // block. Mark it as the object pointer.
2460 if (isa<ImplicitParamDecl>(VD) && VD->getName() == "self")
2461 Ty = DBuilder.createObjectPointerType(Ty);
2462
Mike Stumpb1a6e682009-09-30 02:43:10 +00002463 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002464 unsigned Line = getLineNumber(VD->getLocation());
2465 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002466
Micah Villmow25a6a842012-10-08 16:25:52 +00002467 const llvm::DataLayout &target = CGM.getDataLayout();
John McCall6b5a61b2011-02-07 10:33:21 +00002468
2469 CharUnits offset = CharUnits::fromQuantity(
2470 target.getStructLayout(blockInfo.StructureType)
2471 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2472
Chris Lattner5f9e2722011-07-23 10:55:15 +00002473 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002474 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002475 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002476 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002477 if (isByRef) {
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002478 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2479 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002480 // offset of __forwarding field
Eric Christopherab5278e2011-10-11 23:00:51 +00002481 offset = CGM.getContext()
Micah Villmowcadaf4b2012-10-11 17:21:41 +00002482 .toCharUnitsFromBits(target.getPointerSizeInBits(0));
Chris Lattner14b1a362010-01-25 03:29:35 +00002483 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002484 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2485 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002486 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002487 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002488 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002489 }
2490
2491 // Create the descriptor for the variable.
2492 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002493 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002494 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002495 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002496 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002497 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002498 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Eric Christopher73fb3502011-10-13 21:45:18 +00002499 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2500 LexicalBlockStack.back()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002501}
2502
Chris Lattner9c85ba32008-11-10 06:08:34 +00002503/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2504/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002505void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002506 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002507 CGBuilderTy &Builder) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00002508 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
Devang Patel093ac462011-03-03 20:13:15 +00002509 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002510}
2511
John McCall8178df32011-02-22 22:38:33 +00002512namespace {
2513 struct BlockLayoutChunk {
2514 uint64_t OffsetInBits;
2515 const BlockDecl::Capture *Capture;
2516 };
2517 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2518 return l.OffsetInBits < r.OffsetInBits;
2519 }
2520}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002521
John McCall8178df32011-02-22 22:38:33 +00002522void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2523 llvm::Value *addr,
2524 CGBuilderTy &Builder) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00002525 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
John McCall8178df32011-02-22 22:38:33 +00002526 ASTContext &C = CGM.getContext();
2527 const BlockDecl *blockDecl = block.getBlockDecl();
2528
2529 // Collect some general information about the block's location.
2530 SourceLocation loc = blockDecl->getCaretLocation();
2531 llvm::DIFile tunit = getOrCreateFile(loc);
2532 unsigned line = getLineNumber(loc);
2533 unsigned column = getColumnNumber(loc);
2534
2535 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002536 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002537
2538 const llvm::StructLayout *blockLayout =
Micah Villmow25a6a842012-10-08 16:25:52 +00002539 CGM.getDataLayout().getStructLayout(block.StructureType);
John McCall8178df32011-02-22 22:38:33 +00002540
Chris Lattner5f9e2722011-07-23 10:55:15 +00002541 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002542 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2543 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002544 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002545 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2546 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002547 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002548 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2549 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002550 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002551 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2552 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002553 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002554 fields.push_back(createFieldType("__descriptor",
2555 C.getPointerType(block.NeedsCopyDispose ?
2556 C.getBlockDescriptorExtendedType() :
2557 C.getBlockDescriptorType()),
2558 0, loc, AS_public,
2559 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002560 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002561
2562 // We want to sort the captures by offset, not because DWARF
2563 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002564 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002565
2566 // 'this' capture.
2567 if (blockDecl->capturesCXXThis()) {
2568 BlockLayoutChunk chunk;
2569 chunk.OffsetInBits =
2570 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2571 chunk.Capture = 0;
2572 chunks.push_back(chunk);
2573 }
2574
2575 // Variable captures.
2576 for (BlockDecl::capture_const_iterator
2577 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2578 i != e; ++i) {
2579 const BlockDecl::Capture &capture = *i;
2580 const VarDecl *variable = capture.getVariable();
2581 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2582
2583 // Ignore constant captures.
2584 if (captureInfo.isConstant())
2585 continue;
2586
2587 BlockLayoutChunk chunk;
2588 chunk.OffsetInBits =
2589 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2590 chunk.Capture = &capture;
2591 chunks.push_back(chunk);
2592 }
2593
2594 // Sort by offset.
2595 llvm::array_pod_sort(chunks.begin(), chunks.end());
2596
Chris Lattner5f9e2722011-07-23 10:55:15 +00002597 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002598 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2599 uint64_t offsetInBits = i->OffsetInBits;
2600 const BlockDecl::Capture *capture = i->Capture;
2601
2602 // If we have a null capture, this must be the C++ 'this' capture.
2603 if (!capture) {
2604 const CXXMethodDecl *method =
2605 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2606 QualType type = method->getThisType(C);
2607
2608 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002609 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002610 continue;
2611 }
2612
2613 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002614 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002615
2616 llvm::DIType fieldType;
2617 if (capture->isByRef()) {
2618 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2619
2620 // FIXME: this creates a second copy of this type!
2621 uint64_t xoffset;
2622 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2623 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002624 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002625 ptrInfo.first, ptrInfo.second,
2626 offsetInBits, 0, fieldType);
2627 } else {
2628 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002629 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002630 }
2631 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002632 }
2633
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002634 SmallString<36> typeName;
John McCall8178df32011-02-22 22:38:33 +00002635 llvm::raw_svector_ostream(typeName)
2636 << "__block_literal_" << CGM.getUniqueBlockCount();
2637
Jay Foadc556ef22011-04-24 10:11:03 +00002638 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002639
2640 llvm::DIType type =
2641 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2642 CGM.getContext().toBits(block.BlockSize),
2643 CGM.getContext().toBits(block.BlockAlign),
2644 0, fieldsArray);
2645 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2646
2647 // Get overall information about the block.
2648 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002649 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002650 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002651
2652 // Create the descriptor for the parameter.
2653 llvm::DIVariable debugVar =
2654 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2655 llvm::DIDescriptor(scope),
2656 name, tunit, line, type,
David Blaikie4e4d0842012-03-11 07:00:24 +00002657 CGM.getLangOpts().Optimize, flags,
Devang Patel093ac462011-03-03 20:13:15 +00002658 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002659
2660 // Insert an llvm.dbg.value into the current block.
2661 llvm::Instruction *declare =
2662 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2663 Builder.GetInsertBlock());
2664 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2665}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002666
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002667/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002668void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002669 const VarDecl *D) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00002670 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002671 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002672 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002673 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002674
Eric Christopher73fb3502011-10-13 21:45:18 +00002675 setLocation(D->getLocation());
2676
Devang Pateleb6d79b2010-02-01 21:34:11 +00002677 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002678 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002679
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002680 // CodeGen turns int[] into int[1] so we'll do the same here.
Benjamin Kramer65263b42012-08-04 17:00:46 +00002681 llvm::APInt ConstVal(32, 1);
Anders Carlsson20f12a22009-12-06 18:00:51 +00002682 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002683
Anders Carlsson20f12a22009-12-06 18:00:51 +00002684 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00002685 ArrayType::Normal, 0);
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002686 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002687 StringRef DeclName = D->getName();
2688 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002689 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2690 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002691 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002692 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002693 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002694 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002695 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002696 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002697 Unit, LineNo, getOrCreateType(T, Unit),
2698 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002699}
2700
Devang Patel9ca36b62009-02-26 21:10:26 +00002701/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002702void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002703 ObjCInterfaceDecl *ID) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00002704 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
Devang Patel9ca36b62009-02-26 21:10:26 +00002705 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002706 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002707 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002708
Chris Lattner5f9e2722011-07-23 10:55:15 +00002709 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002710
Devang Pateld6c5a262010-02-01 21:52:22 +00002711 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002712 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002713
Devang Patel9ca36b62009-02-26 21:10:26 +00002714 // CodeGen turns int[] into int[1] so we'll do the same here.
Benjamin Kramer65263b42012-08-04 17:00:46 +00002715 llvm::APInt ConstVal(32, 1);
Anders Carlsson20f12a22009-12-06 18:00:51 +00002716 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002717
Anders Carlsson20f12a22009-12-06 18:00:51 +00002718 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002719 ArrayType::Normal, 0);
2720 }
2721
Devang Patel16674e82011-02-22 18:56:36 +00002722 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002723 getOrCreateType(T, Unit),
2724 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002725}
Devang Patelabb485f2010-02-01 19:16:32 +00002726
Devang Patel25c2c8f2010-08-10 17:53:33 +00002727/// EmitGlobalVariable - Emit global variable's debug info.
2728void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002729 llvm::Constant *Init) {
Douglas Gregor4cdad312012-10-23 20:05:01 +00002730 assert(CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo);
Devang Patel8d308382010-08-10 07:24:25 +00002731 // Create the descriptor for the variable.
2732 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002733 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002734 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002735 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
Benjamin Kramer527e6162012-06-20 18:11:18 +00002736 const EnumDecl *ED = cast<EnumDecl>(ECD->getDeclContext());
2737 assert(isa<EnumType>(ED->getTypeForDecl()) && "Enum without EnumType?");
2738 Ty = getOrCreateType(QualType(ED->getTypeForDecl(), 0), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002739 }
Devang Patel0317ab02010-08-10 18:27:15 +00002740 // Do not use DIGlobalVariable for enums.
2741 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2742 return;
Devang Patel16674e82011-02-22 18:56:36 +00002743 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002744 getLineNumber(VD->getLocation()),
2745 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002746}
2747
Devang Patelabb485f2010-02-01 19:16:32 +00002748/// getOrCreateNamesSpace - Return namespace descriptor for the given
2749/// namespace decl.
2750llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002751CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002752 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2753 NameSpaceCache.find(NSDecl);
2754 if (I != NameSpaceCache.end())
2755 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2756
Devang Patel8ab870d2010-05-12 23:46:38 +00002757 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002758 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002759 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002760 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002761 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002762 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002763 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002764 return NS;
2765}
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002766
2767void CGDebugInfo::finalize(void) {
2768 for (std::vector<std::pair<void *, llvm::WeakVH> >::const_iterator VI
2769 = ReplaceMap.begin(), VE = ReplaceMap.end(); VI != VE; ++VI) {
2770 llvm::DIType Ty, RepTy;
2771 // Verify that the debug info still exists.
Richard Smithe7259aa2012-08-17 04:17:54 +00002772 if (llvm::Value *V = VI->second)
2773 Ty = llvm::DIType(cast<llvm::MDNode>(V));
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002774
2775 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2776 TypeCache.find(VI->first);
2777 if (it != TypeCache.end()) {
2778 // Verify that the debug info still exists.
Richard Smithe7259aa2012-08-17 04:17:54 +00002779 if (llvm::Value *V = it->second)
2780 RepTy = llvm::DIType(cast<llvm::MDNode>(V));
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002781 }
2782
Eric Christopher86211df2012-02-20 18:05:24 +00002783 if (Ty.Verify() && Ty.isForwardDecl() && RepTy.Verify()) {
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002784 Ty.replaceAllUsesWith(RepTy);
Eric Christopher86211df2012-02-20 18:05:24 +00002785 }
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002786 }
2787 DBuilder.finalize();
2788}