blob: 47aaf43dd47359d0a07647bcffbc06348800993f [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/Diagnostic.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000025#include "clang/Basic/FileManager.h"
Benjamin Kramer00bd44d2012-02-04 12:31:12 +000026#include "clang/Basic/SourceManager.h"
Mike Stump5a862172009-09-15 21:48:34 +000027#include "clang/Basic/Version.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000028#include "clang/Frontend/CodeGenOptions.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000029#include "llvm/Constants.h"
30#include "llvm/DerivedTypes.h"
31#include "llvm/Instructions.h"
32#include "llvm/Intrinsics.h"
33#include "llvm/Module.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000034#include "llvm/ADT/StringExtras.h"
35#include "llvm/ADT/SmallVector.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000036#include "llvm/Support/Dwarf.h"
Benjamin Kramerbcbca752011-10-14 18:45:11 +000037#include "llvm/Support/FileSystem.h"
John McCall6b5a61b2011-02-07 10:33:21 +000038#include "llvm/Target/TargetData.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000039using namespace clang;
40using namespace clang::CodeGen;
41
Anders Carlsson20f12a22009-12-06 18:00:51 +000042CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
Devang Patel823d8e92010-12-08 22:42:58 +000043 : CGM(CGM), DBuilder(CGM.getModule()),
Dan Gohman4cac5b42010-08-20 22:02:57 +000044 BlockLiteralGenericSet(false) {
Devang Patel17800552010-03-09 00:44:50 +000045 CreateCompileUnit();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000046}
47
Chris Lattner9c85ba32008-11-10 06:08:34 +000048CGDebugInfo::~CGDebugInfo() {
Eric Christopherab5278e2011-10-11 23:00:51 +000049 assert(LexicalBlockStack.empty() &&
50 "Region stack mismatch, stack not empty!");
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000051}
52
Chris Lattner9c85ba32008-11-10 06:08:34 +000053void CGDebugInfo::setLocation(SourceLocation Loc) {
Eric Christopher944542e2011-10-11 23:00:45 +000054 // If the new location isn't valid return.
55 if (!Loc.isValid()) return;
56
57 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
Eric Christopher73fb3502011-10-13 21:45:18 +000058
59 // If we've changed files in the middle of a lexical scope go ahead
60 // and create a new lexical scope with file node if it's different
61 // from the one in the scope.
62 if (LexicalBlockStack.empty()) return;
63
64 SourceManager &SM = CGM.getContext().getSourceManager();
65 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
66 PresumedLoc PPLoc = SM.getPresumedLoc(PrevLoc);
67
68 if (PCLoc.isInvalid() || PPLoc.isInvalid() ||
69 !strcmp(PPLoc.getFilename(), PCLoc.getFilename()))
70 return;
71
72 llvm::MDNode *LB = LexicalBlockStack.back();
73 llvm::DIScope Scope = llvm::DIScope(LB);
74 if (Scope.isLexicalBlockFile()) {
75 llvm::DILexicalBlockFile LBF = llvm::DILexicalBlockFile(LB);
76 llvm::DIDescriptor D
77 = DBuilder.createLexicalBlockFile(LBF.getScope(),
78 getOrCreateFile(CurLoc));
79 llvm::MDNode *N = D;
80 LexicalBlockStack.pop_back();
81 LexicalBlockStack.push_back(N);
82 } else if (Scope.isLexicalBlock()) {
83 llvm::DIDescriptor D
84 = DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc));
85 llvm::MDNode *N = D;
86 LexicalBlockStack.pop_back();
87 LexicalBlockStack.push_back(N);
88 }
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000089}
90
Devang Patel33583052010-01-28 23:15:27 +000091/// getContextDescriptor - Get context info for the decl.
Devang Patel170cef32010-12-09 00:33:05 +000092llvm::DIDescriptor CGDebugInfo::getContextDescriptor(const Decl *Context) {
Devang Pateleb6d79b2010-02-01 21:34:11 +000093 if (!Context)
Devang Patel170cef32010-12-09 00:33:05 +000094 return TheCU;
Devang Pateleb6d79b2010-02-01 21:34:11 +000095
96 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
97 I = RegionMap.find(Context);
98 if (I != RegionMap.end())
Gabor Greif38c9b172010-09-18 13:00:17 +000099 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
Devang Patel411894b2010-02-01 22:40:08 +0000100
Devang Pateleb6d79b2010-02-01 21:34:11 +0000101 // Check namespace.
102 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
Devang Patel170cef32010-12-09 00:33:05 +0000103 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
Devang Patel8b90a782010-05-13 23:52:37 +0000104
105 if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context)) {
106 if (!RDecl->isDependentType()) {
Devang Patela2e57692010-10-28 17:27:32 +0000107 llvm::DIType Ty = getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
Devang Patel170cef32010-12-09 00:33:05 +0000108 getOrCreateMainFile());
Devang Patel8b90a782010-05-13 23:52:37 +0000109 return llvm::DIDescriptor(Ty);
110 }
111 }
Devang Patel170cef32010-12-09 00:33:05 +0000112 return TheCU;
Devang Patel979ec2e2009-10-06 00:35:31 +0000113}
114
Devang Patel9c6c3a02010-01-14 00:36:21 +0000115/// getFunctionName - Get function name for the given FunctionDecl. If the
116/// name is constructred on demand (e.g. C++ destructor) then the name
117/// is stored on the side.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000118StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
Devang Patel9c6c3a02010-01-14 00:36:21 +0000119 assert (FD && "Invalid FunctionDecl!");
120 IdentifierInfo *FII = FD->getIdentifier();
121 if (FII)
122 return FII->getName();
123
124 // Otherwise construct human readable name for debug info.
125 std::string NS = FD->getNameAsString();
126
127 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +0000128 char *StrPtr = DebugInfoNames.Allocate<char>(NS.length());
Benjamin Kramer1b627dc2010-01-23 18:16:07 +0000129 memcpy(StrPtr, NS.data(), NS.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000130 return StringRef(StrPtr, NS.length());
Devang Patel9c6c3a02010-01-14 00:36:21 +0000131}
132
Chris Lattner5f9e2722011-07-23 10:55:15 +0000133StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000134 SmallString<256> MethodName;
David Chisnall52044a22010-09-02 18:01:51 +0000135 llvm::raw_svector_ostream OS(MethodName);
136 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
137 const DeclContext *DC = OMD->getDeclContext();
Devang Patela2e57692010-10-28 17:27:32 +0000138 if (const ObjCImplementationDecl *OID =
139 dyn_cast<const ObjCImplementationDecl>(DC)) {
David Chisnall52044a22010-09-02 18:01:51 +0000140 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000141 } else if (const ObjCInterfaceDecl *OID =
142 dyn_cast<const ObjCInterfaceDecl>(DC)) {
Fariborz Jahanian1a4c9372010-10-18 17:51:06 +0000143 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000144 } else if (const ObjCCategoryImplDecl *OCD =
145 dyn_cast<const ObjCCategoryImplDecl>(DC)){
David Chisnall52044a22010-09-02 18:01:51 +0000146 OS << ((NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
147 OCD->getIdentifier()->getNameStart() << ')';
148 }
149 OS << ' ' << OMD->getSelector().getAsString() << ']';
150
151 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
152 memcpy(StrPtr, MethodName.begin(), OS.tell());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000153 return StringRef(StrPtr, OS.tell());
David Chisnall52044a22010-09-02 18:01:51 +0000154}
155
Devang Patel1f15c192011-04-18 17:30:25 +0000156/// getSelectorName - Return selector name. This is used for debugging
Devang Patel90c1eed2011-04-16 00:37:51 +0000157/// info.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000158StringRef CGDebugInfo::getSelectorName(Selector S) {
Benjamin Kramer2b5cfbc2011-10-14 18:45:16 +0000159 const std::string &SName = S.getAsString();
160 char *StrPtr = DebugInfoNames.Allocate<char>(SName.size());
161 memcpy(StrPtr, SName.data(), SName.size());
162 return StringRef(StrPtr, SName.size());
Devang Patel90c1eed2011-04-16 00:37:51 +0000163}
164
Devang Patel700a1cb2010-07-20 20:24:18 +0000165/// getClassName - Get class name including template argument list.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000166StringRef
Devang Patel700a1cb2010-07-20 20:24:18 +0000167CGDebugInfo::getClassName(RecordDecl *RD) {
168 ClassTemplateSpecializationDecl *Spec
169 = dyn_cast<ClassTemplateSpecializationDecl>(RD);
170 if (!Spec)
171 return RD->getName();
172
173 const TemplateArgument *Args;
174 unsigned NumArgs;
175 std::string Buffer;
176 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
177 const TemplateSpecializationType *TST =
178 cast<TemplateSpecializationType>(TAW->getType());
179 Args = TST->getArgs();
180 NumArgs = TST->getNumArgs();
181 } else {
182 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Douglas Gregor910f8002010-11-07 23:05:16 +0000183 Args = TemplateArgs.data();
184 NumArgs = TemplateArgs.size();
Devang Patel700a1cb2010-07-20 20:24:18 +0000185 }
186 Buffer = RD->getIdentifier()->getNameStart();
187 PrintingPolicy Policy(CGM.getLangOptions());
188 Buffer += TemplateSpecializationType::PrintTemplateArgumentList(Args,
189 NumArgs,
190 Policy);
191
192 // Copy this name on the side and use its reference.
193 char *StrPtr = DebugInfoNames.Allocate<char>(Buffer.length());
194 memcpy(StrPtr, Buffer.data(), Buffer.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000195 return StringRef(StrPtr, Buffer.length());
Devang Patel700a1cb2010-07-20 20:24:18 +0000196}
197
Devang Patel17800552010-03-09 00:44:50 +0000198/// getOrCreateFile - Get the file debug info descriptor for the input location.
199llvm::DIFile CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
Devang Patel823d8e92010-12-08 22:42:58 +0000200 if (!Loc.isValid())
201 // If Location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000202 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel823d8e92010-12-08 22:42:58 +0000203
Anders Carlsson20f12a22009-12-06 18:00:51 +0000204 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patel17800552010-03-09 00:44:50 +0000205 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Ted Kremenek9c250392010-03-30 00:27:51 +0000206
Chris Lattner5f9e2722011-07-23 10:55:15 +0000207 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
Douglas Gregor8c457a82010-11-11 20:45:16 +0000208 // If the location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000209 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Douglas Gregor8c457a82010-11-11 20:45:16 +0000210
Ted Kremenek9c250392010-03-30 00:27:51 +0000211 // Cache the results.
212 const char *fname = PLoc.getFilename();
213 llvm::DenseMap<const char *, llvm::WeakVH>::iterator it =
214 DIFileCache.find(fname);
215
216 if (it != DIFileCache.end()) {
217 // Verify that the information still exists.
218 if (&*it->second)
219 return llvm::DIFile(cast<llvm::MDNode>(it->second));
220 }
221
Devang Patel16674e82011-02-22 18:56:36 +0000222 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
Ted Kremenek9c250392010-03-30 00:27:51 +0000223
Devang Patelab699792010-05-07 18:12:35 +0000224 DIFileCache[fname] = F;
Ted Kremenek9c250392010-03-30 00:27:51 +0000225 return F;
Devang Patel17800552010-03-09 00:44:50 +0000226}
Devang Patel8ab870d2010-05-12 23:46:38 +0000227
Devang Patel532105f2010-10-28 22:03:20 +0000228/// getOrCreateMainFile - Get the file info for main compile unit.
229llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
Devang Patel16674e82011-02-22 18:56:36 +0000230 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel532105f2010-10-28 22:03:20 +0000231}
232
Devang Patel8ab870d2010-05-12 23:46:38 +0000233/// getLineNumber - Get line number for the location. If location is invalid
234/// then use current location.
235unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
Devang Patel362ed2a2012-02-06 23:24:13 +0000236 if (Loc.isInvalid() && CurLoc.isInvalid())
237 return 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000238 SourceManager &SM = CGM.getContext().getSourceManager();
239 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000240 return PLoc.isValid()? PLoc.getLine() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000241}
242
243/// getColumnNumber - Get column number for the location. If location is
244/// invalid then use current location.
245unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
Devang Patel362ed2a2012-02-06 23:24:13 +0000246 if (Loc.isInvalid() && CurLoc.isInvalid())
247 return 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000248 SourceManager &SM = CGM.getContext().getSourceManager();
249 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000250 return PLoc.isValid()? PLoc.getColumn() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000251}
252
Chris Lattner5f9e2722011-07-23 10:55:15 +0000253StringRef CGDebugInfo::getCurrentDirname() {
Nick Lewycky7c4fd912011-10-21 02:32:14 +0000254 if (!CGM.getCodeGenOpts().DebugCompilationDir.empty())
255 return CGM.getCodeGenOpts().DebugCompilationDir;
256
Devang Patelac4d13c2010-07-27 15:17:16 +0000257 if (!CWDName.empty())
258 return CWDName;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000259 SmallString<256> CWD;
Benjamin Kramerbcbca752011-10-14 18:45:11 +0000260 llvm::sys::fs::current_path(CWD);
261 char *CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
262 memcpy(CompDirnamePtr, CWD.data(), CWD.size());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000263 return CWDName = StringRef(CompDirnamePtr, CWD.size());
Devang Patelac4d13c2010-07-27 15:17:16 +0000264}
265
Devang Patel17800552010-03-09 00:44:50 +0000266/// CreateCompileUnit - Create new compile unit.
267void CGDebugInfo::CreateCompileUnit() {
268
269 // Get absolute path name.
Douglas Gregorac91b4c2010-03-18 23:46:43 +0000270 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000271 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
272 if (MainFileName.empty())
Devang Patel22fe5852010-03-12 21:04:27 +0000273 MainFileName = "<unknown>";
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000274
Douglas Gregorf6728fc2010-03-22 21:28:29 +0000275 // The main file name provided via the "-main-file-name" option contains just
276 // the file name itself with no path information. This file name may have had
277 // a relative path, so we look into the actual file entry for the main
278 // file to determine the real absolute path for the file.
Devang Patel6e6bc392010-07-23 23:04:28 +0000279 std::string MainFileDir;
Devang Patelac4d13c2010-07-27 15:17:16 +0000280 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000281 MainFileDir = MainFile->getDir()->getName();
Devang Patelac4d13c2010-07-27 15:17:16 +0000282 if (MainFileDir != ".")
283 MainFileName = MainFileDir + "/" + MainFileName;
284 }
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000285
Devang Patelac4d13c2010-07-27 15:17:16 +0000286 // Save filename string.
287 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
288 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000289 StringRef Filename(FilenamePtr, MainFileName.length());
Devang Patelac4d13c2010-07-27 15:17:16 +0000290
Chris Lattner515455a2009-03-25 03:28:08 +0000291 unsigned LangTag;
Devang Patel17800552010-03-09 00:44:50 +0000292 const LangOptions &LO = CGM.getLangOptions();
Chris Lattner515455a2009-03-25 03:28:08 +0000293 if (LO.CPlusPlus) {
294 if (LO.ObjC1)
295 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
296 else
297 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
298 } else if (LO.ObjC1) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000299 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner515455a2009-03-25 03:28:08 +0000300 } else if (LO.C99) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000301 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner515455a2009-03-25 03:28:08 +0000302 } else {
303 LangTag = llvm::dwarf::DW_LANG_C89;
304 }
Devang Patel446c6192009-04-17 21:06:59 +0000305
Daniel Dunbar19f19832010-08-24 17:41:09 +0000306 std::string Producer = getClangFullVersion();
Chris Lattner4c2577a2009-05-02 01:00:04 +0000307
308 // Figure out which version of the ObjC runtime we have.
309 unsigned RuntimeVers = 0;
310 if (LO.ObjC1)
311 RuntimeVers = LO.ObjCNonFragileABI ? 2 : 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000312
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000313 // Create new compile unit.
Devang Patel16674e82011-02-22 18:56:36 +0000314 DBuilder.createCompileUnit(
Devang Patel58115002010-07-27 20:49:59 +0000315 LangTag, Filename, getCurrentDirname(),
Devang Patel823d8e92010-12-08 22:42:58 +0000316 Producer,
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000317 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel823d8e92010-12-08 22:42:58 +0000318 // FIXME - Eliminate TheCU.
319 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000320}
321
Devang Patel65e99f22009-02-25 01:36:11 +0000322/// CreateType - Get the Basic type from the cache or create a new
Chris Lattner9c85ba32008-11-10 06:08:34 +0000323/// one if necessary.
Devang Patelf1d1d9a2010-11-01 16:52:40 +0000324llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000325 unsigned Encoding = 0;
Devang Patel05127ca2010-07-28 23:23:29 +0000326 const char *BTName = NULL;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000327 switch (BT->getKind()) {
John McCalle0a22d02011-10-18 21:02:43 +0000328#define BUILTIN_TYPE(Id, SingletonId)
329#define PLACEHOLDER_TYPE(Id, SingletonId) \
330 case BuiltinType::Id:
331#include "clang/AST/BuiltinTypes.def"
Devang Patele7566cf2011-09-12 18:50:21 +0000332 case BuiltinType::Dependent:
John McCalle0a22d02011-10-18 21:02:43 +0000333 llvm_unreachable("Unexpected builtin type");
Devang Patele7566cf2011-09-12 18:50:21 +0000334 case BuiltinType::NullPtr:
Devang Patelf60dca32011-09-14 23:14:14 +0000335 return DBuilder.
336 createNullPtrType(BT->getName(CGM.getContext().getLangOptions()));
Chris Lattner9c85ba32008-11-10 06:08:34 +0000337 case BuiltinType::Void:
338 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000339 case BuiltinType::ObjCClass:
Devang Patel16674e82011-02-22 18:56:36 +0000340 return DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000341 getOrCreateMainFile(), 0, 0, 0,
342 llvm::DIDescriptor::FlagFwdDecl,
343 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000344 case BuiltinType::ObjCId: {
345 // typedef struct objc_class *Class;
346 // typedef struct objc_object {
347 // Class isa;
348 // } *id;
349
350 llvm::DIType OCTy =
Devang Patel16674e82011-02-22 18:56:36 +0000351 DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000352 getOrCreateMainFile(), 0, 0, 0,
353 llvm::DIDescriptor::FlagFwdDecl,
354 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000355 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
356
Devang Patel16674e82011-02-22 18:56:36 +0000357 llvm::DIType ISATy = DBuilder.createPointerType(OCTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000358
Chris Lattner5f9e2722011-07-23 10:55:15 +0000359 SmallVector<llvm::Value *, 16> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000360 llvm::DIType FieldTy =
Devang Patel1d323e02011-06-24 22:00:59 +0000361 DBuilder.createMemberType(getOrCreateMainFile(), "isa",
362 getOrCreateMainFile(), 0, Size,
363 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000364 EltTys.push_back(FieldTy);
Jay Foadc556ef22011-04-24 10:11:03 +0000365 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patelc8972c62010-07-28 01:33:15 +0000366
Devang Patel16674e82011-02-22 18:56:36 +0000367 return DBuilder.createStructType(TheCU, "objc_object",
Devang Patel823d8e92010-12-08 22:42:58 +0000368 getOrCreateMainFile(),
369 0, 0, 0, 0, Elements);
Devang Patelc8972c62010-07-28 01:33:15 +0000370 }
Devang Patel6e108ce2011-02-09 03:15:05 +0000371 case BuiltinType::ObjCSel: {
Devang Patel16674e82011-02-22 18:56:36 +0000372 return DBuilder.createStructType(TheCU, "objc_selector",
Devang Patel6e108ce2011-02-09 03:15:05 +0000373 getOrCreateMainFile(), 0, 0, 0,
374 llvm::DIDescriptor::FlagFwdDecl,
375 llvm::DIArray());
376 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000377 case BuiltinType::UChar:
378 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
379 case BuiltinType::Char_S:
380 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patele8ee3f22011-09-12 17:11:58 +0000381 case BuiltinType::Char16:
382 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000383 case BuiltinType::UShort:
384 case BuiltinType::UInt:
Devang Patel31c79b42011-05-05 17:06:30 +0000385 case BuiltinType::UInt128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000386 case BuiltinType::ULong:
Devang Patel68f76b12011-09-10 00:44:49 +0000387 case BuiltinType::WChar_U:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000388 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
389 case BuiltinType::Short:
390 case BuiltinType::Int:
Devang Patel31c79b42011-05-05 17:06:30 +0000391 case BuiltinType::Int128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000392 case BuiltinType::Long:
Devang Patel68f76b12011-09-10 00:44:49 +0000393 case BuiltinType::WChar_S:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000394 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
395 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000396 case BuiltinType::Half:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000397 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000398 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000399 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000400 }
Devang Patel05127ca2010-07-28 23:23:29 +0000401
402 switch (BT->getKind()) {
403 case BuiltinType::Long: BTName = "long int"; break;
404 case BuiltinType::LongLong: BTName = "long long int"; break;
405 case BuiltinType::ULong: BTName = "long unsigned int"; break;
406 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
407 default:
408 BTName = BT->getName(CGM.getContext().getLangOptions());
409 break;
410 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000411 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000412 uint64_t Size = CGM.getContext().getTypeSize(BT);
413 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000414 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000415 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000416 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000417}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000418
Devang Patel344ff5d2010-12-09 00:25:29 +0000419llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000420 // Bit size, align and offset of the type.
421 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
422 if (Ty->isComplexIntegerType())
423 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Anders Carlsson20f12a22009-12-06 18:00:51 +0000425 uint64_t Size = CGM.getContext().getTypeSize(Ty);
426 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000427 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000428 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel823d8e92010-12-08 22:42:58 +0000429
Devang Patelca80a5f2009-10-20 19:55:01 +0000430 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000431}
432
John McCalla1805292009-09-25 01:40:47 +0000433/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000434/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000435llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000436 QualifierCollector Qc;
437 const Type *T = Qc.strip(Ty);
438
439 // Ignore these qualifiers for now.
440 Qc.removeObjCGCAttr();
441 Qc.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +0000442 Qc.removeObjCLifetime();
John McCalla1805292009-09-25 01:40:47 +0000443
Chris Lattner9c85ba32008-11-10 06:08:34 +0000444 // We will create one Derived type for one qualifier and recurse to handle any
445 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000446 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000447 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000448 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000449 Qc.removeConst();
450 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000451 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000452 Qc.removeVolatile();
453 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000454 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000455 Qc.removeRestrict();
456 } else {
457 assert(Qc.empty() && "Unknown type qualifier for debug info");
458 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000459 }
Mike Stump1eb44332009-09-09 15:08:12 +0000460
John McCall49f4e1c2010-12-10 11:01:00 +0000461 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCalla1805292009-09-25 01:40:47 +0000462
Daniel Dunbar3845f862008-10-31 03:54:29 +0000463 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
464 // CVR derived types.
Devang Patel16674e82011-02-22 18:56:36 +0000465 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000466
Devang Patelca80a5f2009-10-20 19:55:01 +0000467 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000468}
469
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000470llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000471 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000472 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000473 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
474 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000475 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000476}
477
Chris Lattner9c85ba32008-11-10 06:08:34 +0000478llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000479 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000480 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
481 Ty->getPointeeType(), Unit);
482}
483
Eric Christopher5d613b52012-01-25 02:06:59 +0000484// Creates a forward declaration for a RecordDecl in the given context.
485llvm::DIType CGDebugInfo::createRecordFwdDecl(const RecordDecl *RD,
486 llvm::DIDescriptor Ctx) {
487
488 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
489 unsigned Line = getLineNumber(RD->getLocation());
490 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
491
492 if (CXXDecl)
493 return DBuilder.createClassType(Ctx, RD->getName(), DefUnit,
494 Line, 0, 0, 0,
495 llvm::DIType::FlagFwdDecl,
496 llvm::DIType(), llvm::DIArray());
497 else if (RD->isStruct())
498 return DBuilder.createStructType(Ctx, RD->getName(), DefUnit,
499 Line, 0, 0, llvm::DIType::FlagFwdDecl,
500 llvm::DIArray());
501 else if (RD->isUnion())
502 return DBuilder.createUnionType(Ctx, RD->getName(), DefUnit,
503 Line, 0, 0, llvm::DIType::FlagFwdDecl,
504 llvm::DIArray());
505 else
506 llvm_unreachable("Unknown RecordDecl type!");
507}
508
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000509// Walk up the context chain and create forward decls for record decls,
510// and normal descriptors for namespaces.
511llvm::DIDescriptor CGDebugInfo::createContextChain(const Decl *Context) {
512 if (!Context)
513 return TheCU;
514
515 // See if we already have the parent.
516 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
517 I = RegionMap.find(Context);
518 if (I != RegionMap.end())
519 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
520
521 // Check namespace.
522 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
523 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
524
525 if (const RecordDecl *RD = dyn_cast<RecordDecl>(Context)) {
526 if (!RD->isDependentType()) {
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000527 llvm::DIDescriptor FDContext =
528 createContextChain(cast<Decl>(RD->getDeclContext()));
Eric Christopher5d613b52012-01-25 02:06:59 +0000529 llvm::DIType Ty = createRecordFwdDecl(RD, FDContext);
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000530
531 RegionMap[Context] = llvm::WeakVH(Ty);
532 return llvm::DIDescriptor(Ty);
533 }
534 }
535 return TheCU;
536}
537
Eric Christopheredc95922011-09-13 23:45:09 +0000538/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000539/// then emit record's fwd if debug info size reduction is enabled.
540llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
541 llvm::DIFile Unit) {
542 if (!CGM.getCodeGenOpts().LimitDebugInfo)
543 return getOrCreateType(PointeeTy, Unit);
Devang Patel41422512011-10-24 23:15:17 +0000544
545 // Limit debug info for the pointee type.
546
Eric Christopher973bbb62011-12-16 23:40:18 +0000547 // If we have an existing type, use that, it's still smaller than creating
548 // a new type.
549 llvm::DIType Ty = getTypeOrNull(PointeeTy);
550 if (Ty.Verify()) return Ty;
551
Devang Patel41422512011-10-24 23:15:17 +0000552 // Handle qualifiers.
553 if (PointeeTy.hasLocalQualifiers())
554 return CreateQualifiedType(PointeeTy, Unit);
555
Devang Patelc69e1cf2010-09-30 19:05:55 +0000556 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
557 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000558 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000559 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Eric Christopher5d613b52012-01-25 02:06:59 +0000560 return createRecordFwdDecl(RD, FDContext);
Devang Patelc69e1cf2010-09-30 19:05:55 +0000561 }
562 return getOrCreateType(PointeeTy, Unit);
563
564}
565
Anders Carlssona031b352009-11-06 19:19:55 +0000566llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
567 const Type *Ty,
568 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000569 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000570 if (Tag == llvm::dwarf::DW_TAG_reference_type)
Devang Patel16674e82011-02-22 18:56:36 +0000571 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000572
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000573 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000574 // Size is always the size of a pointer. We can't use getTypeSize here
575 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000576 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000577 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000578 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000579
Nick Lewycky7480d962011-11-10 00:34:02 +0000580 return DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit),
581 Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000582}
583
Mike Stump9bc093c2009-05-14 02:03:51 +0000584llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000585 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000586 if (BlockLiteralGenericSet)
587 return BlockLiteralGeneric;
588
Chris Lattner5f9e2722011-07-23 10:55:15 +0000589 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000590 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000591 QualType FType;
592 uint64_t FieldSize, FieldOffset;
593 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000594 llvm::DIArray Elements;
595 llvm::DIType EltTy, DescTy;
596
597 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000598 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000599 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
600 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000601
Jay Foadc556ef22011-04-24 10:11:03 +0000602 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000603 EltTys.clear();
604
Devang Patele2472482010-09-29 21:05:52 +0000605 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000606 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000607
Devang Patel16674e82011-02-22 18:56:36 +0000608 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000609 Unit, LineNo, FieldOffset, 0,
610 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000611
Mike Stump9bc093c2009-05-14 02:03:51 +0000612 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000613 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000614
Devang Patel16674e82011-02-22 18:56:36 +0000615 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000616
617 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000618 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000619 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000620 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000621 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
622 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000623 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000624 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000625
Anders Carlsson20f12a22009-12-06 18:00:51 +0000626 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000627 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000628 FieldSize = CGM.getContext().getTypeSize(Ty);
629 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000630 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000631 LineNo, FieldSize, FieldAlign,
632 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000633 EltTys.push_back(FieldTy);
634
635 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000636 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000637
Devang Patel16674e82011-02-22 18:56:36 +0000638 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000639 Unit, LineNo, FieldOffset, 0,
640 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000641
Mike Stump9bc093c2009-05-14 02:03:51 +0000642 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000643 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000644 return BlockLiteralGeneric;
645}
646
Nick Lewycky7480d962011-11-10 00:34:02 +0000647llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty, llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000648 // Typedefs are derived from some other type. If we have a typedef of a
649 // typedef, make sure to emit the whole chain.
650 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000651 if (!Src.Verify())
652 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000653 // We don't set size information, but do specify where the typedef was
654 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000655 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000656 const TypedefNameDecl *TyDecl = Ty->getDecl();
Nick Lewycky7480d962011-11-10 00:34:02 +0000657 llvm::DIDescriptor TypedefContext =
Devang Patelc4903122011-06-03 17:23:47 +0000658 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
659
660 return
Nick Lewycky7480d962011-11-10 00:34:02 +0000661 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000662}
663
Chris Lattner9c85ba32008-11-10 06:08:34 +0000664llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000665 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000666 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000667
Chris Lattner9c85ba32008-11-10 06:08:34 +0000668 // Add the result type at least.
669 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000670
Chris Lattner9c85ba32008-11-10 06:08:34 +0000671 // Set up remainder of arguments if there is a prototype.
672 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000673 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000674 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Devang Patelaf164bb2010-10-06 20:51:45 +0000675 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Eric Christopher0086a5b2012-02-01 06:07:23 +0000676 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i) {
677 if (CGM.getCodeGenOpts().LimitDebugInfo)
678 EltTys.push_back(getOrCreateLimitedType(FTP->getArgType(i), Unit));
679 else
680 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
681 }
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000682 }
683
Jay Foadc556ef22011-04-24 10:11:03 +0000684 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Mike Stump1eb44332009-09-09 15:08:12 +0000685
Devang Patel16674e82011-02-22 18:56:36 +0000686 llvm::DIType DbgTy = DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patelca80a5f2009-10-20 19:55:01 +0000687 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000688}
689
Eric Christopher6faa5542012-01-26 01:57:13 +0000690void CGDebugInfo::
691CollectRecordStaticVars(const RecordDecl *RD, llvm::DIType FwdDecl) {
692
693 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
694 I != E; ++I)
695 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
696 if (V->getInit()) {
697 const APValue *Value = V->evaluateValue();
698 if (Value && Value->isInt()) {
699 llvm::ConstantInt *CI
700 = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
701
702 // Create the descriptor for static variable.
703 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
704 StringRef VName = V->getName();
705 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
706 // Do not use DIGlobalVariable for enums.
707 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
708 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
709 getLineNumber(V->getLocation()),
710 VTy, true, CI);
711 }
712 }
713 }
714 }
715}
716
Chris Lattner5f9e2722011-07-23 10:55:15 +0000717llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000718 QualType type,
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000719 uint64_t sizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000720 SourceLocation loc,
721 AccessSpecifier AS,
722 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000723 llvm::DIFile tunit,
724 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000725 llvm::DIType debugType = getOrCreateType(type, tunit);
726
727 // Get the location for the field.
728 llvm::DIFile file = getOrCreateFile(loc);
729 unsigned line = getLineNumber(loc);
730
731 uint64_t sizeInBits = 0;
732 unsigned alignInBits = 0;
733 if (!type->isIncompleteArrayType()) {
734 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
735
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000736 if (sizeInBitsOverride)
737 sizeInBits = sizeInBitsOverride;
John McCall8178df32011-02-22 22:38:33 +0000738 }
739
740 unsigned flags = 0;
741 if (AS == clang::AS_private)
742 flags |= llvm::DIDescriptor::FlagPrivate;
743 else if (AS == clang::AS_protected)
744 flags |= llvm::DIDescriptor::FlagProtected;
745
Devang Patel1d323e02011-06-24 22:00:59 +0000746 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
747 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000748}
749
Devang Patel428deb52010-01-19 00:00:59 +0000750/// CollectRecordFields - A helper function to collect debug info for
751/// record fields. This is used while creating debug info entry for a Record.
752void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000753CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000754 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000755 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000756 unsigned fieldNo = 0;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000757 const FieldDecl *LastFD = 0;
758 bool IsMsStruct = record->hasAttr<MsStructAttr>();
759
John McCall8178df32011-02-22 22:38:33 +0000760 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
761 for (RecordDecl::field_iterator I = record->field_begin(),
762 E = record->field_end();
763 I != E; ++I, ++fieldNo) {
764 FieldDecl *field = *I;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000765 if (IsMsStruct) {
766 // Zero-length bitfields following non-bitfield members are ignored
Fariborz Jahanian855a8e72011-05-03 20:21:04 +0000767 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000768 --fieldNo;
769 continue;
770 }
771 LastFD = field;
772 }
Devang Patel428deb52010-01-19 00:00:59 +0000773
Chris Lattner5f9e2722011-07-23 10:55:15 +0000774 StringRef name = field->getName();
John McCall8178df32011-02-22 22:38:33 +0000775 QualType type = field->getType();
776
777 // Ignore unnamed fields unless they're anonymous structs/unions.
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000778 if (name.empty() && !type->isRecordType()) {
779 LastFD = field;
Devang Patel428deb52010-01-19 00:00:59 +0000780 continue;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000781 }
Devang Patel428deb52010-01-19 00:00:59 +0000782
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000783 uint64_t SizeInBitsOverride = 0;
784 if (field->isBitField()) {
785 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
786 assert(SizeInBitsOverride && "found named 0-width bitfield");
787 }
788
John McCall8178df32011-02-22 22:38:33 +0000789 llvm::DIType fieldType
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000790 = createFieldType(name, type, SizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000791 field->getLocation(), field->getAccess(),
Devang Patel1d323e02011-06-24 22:00:59 +0000792 layout.getFieldOffset(fieldNo), tunit, RecordTy);
Devang Patel428deb52010-01-19 00:00:59 +0000793
John McCall8178df32011-02-22 22:38:33 +0000794 elements.push_back(fieldType);
Devang Patel428deb52010-01-19 00:00:59 +0000795 }
796}
797
Devang Patela6da1922010-01-28 00:28:01 +0000798/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
799/// function type is not updated to include implicit "this" pointer. Use this
800/// routine to get a method type which includes "this" pointer.
801llvm::DIType
802CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000803 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000804 llvm::DIType FnTy
805 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
806 0),
807 Unit);
Devang Pateld774d1e2010-01-28 21:43:50 +0000808
Devang Patela6da1922010-01-28 00:28:01 +0000809 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000810 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000811 assert (Args.getNumElements() && "Invalid number of arguments!");
812
Chris Lattner5f9e2722011-07-23 10:55:15 +0000813 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000814
815 // First element is always return type. For 'void' functions it is NULL.
816 Elts.push_back(Args.getElement(0));
817
Eric Christopher2121cda2011-09-14 01:10:50 +0000818 if (!Method->isStatic()) {
819 // "this" pointer is always first argument.
820 QualType ThisPtr = Method->getThisType(CGM.getContext());
Devang Patelef8857d2011-10-28 21:12:13 +0000821
822 const CXXRecordDecl *RD = Method->getParent();
823 if (isa<ClassTemplateSpecializationDecl>(RD)) {
824 // Create pointer type directly in this case.
825 const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
826 QualType PointeeTy = ThisPtrTy->getPointeeType();
827 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
828 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
829 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000830 llvm::DIType PointeeType = getOrCreateType(PointeeTy, Unit);
Devang Patelef8857d2011-10-28 21:12:13 +0000831 llvm::DIType ThisPtrType =
832 DBuilder.createArtificialType
833 (DBuilder.createPointerType(PointeeType, Size, Align));
834 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
835 Elts.push_back(ThisPtrType);
836 } else {
837 llvm::DIType ThisPtrType =
838 DBuilder.createArtificialType(getOrCreateType(ThisPtr, Unit));
839 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
840 Elts.push_back(ThisPtrType);
841 }
Eric Christopher2121cda2011-09-14 01:10:50 +0000842 }
Devang Patela6da1922010-01-28 00:28:01 +0000843
844 // Copy rest of the arguments.
845 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
846 Elts.push_back(Args.getElement(i));
847
Jay Foadc556ef22011-04-24 10:11:03 +0000848 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000849
Devang Patel16674e82011-02-22 18:56:36 +0000850 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000851}
852
Devang Patel58faf202010-10-22 17:11:50 +0000853/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
854/// inside a function.
855static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
Nick Lewycky7480d962011-11-10 00:34:02 +0000856 if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000857 return isFunctionLocalClass(NRD);
Nick Lewycky7480d962011-11-10 00:34:02 +0000858 if (isa<FunctionDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000859 return true;
860 return false;
Devang Patel58faf202010-10-22 17:11:50 +0000861}
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000862
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000863/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
864/// a single member function GlobalDecl.
865llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000866CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000867 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000868 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000869 bool IsCtorOrDtor =
870 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
871
Chris Lattner5f9e2722011-07-23 10:55:15 +0000872 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000873 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000874
875 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
876 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000877 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000878 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000879 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000880
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000881 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000882 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
883 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000884
885 // Collect virtual method info.
886 llvm::DIType ContainingType;
887 unsigned Virtuality = 0;
888 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000889
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000890 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000891 if (Method->isPure())
892 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
893 else
894 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
895
896 // It doesn't make sense to give a virtual destructor a vtable index,
897 // since a single destructor has two entries in the vtable.
898 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000899 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000900 ContainingType = RecordTy;
901 }
902
Devang Patele2472482010-09-29 21:05:52 +0000903 unsigned Flags = 0;
904 if (Method->isImplicit())
905 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000906 AccessSpecifier Access = Method->getAccess();
907 if (Access == clang::AS_private)
908 Flags |= llvm::DIDescriptor::FlagPrivate;
909 else if (Access == clang::AS_protected)
910 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000911 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
912 if (CXXC->isExplicit())
913 Flags |= llvm::DIDescriptor::FlagExplicit;
914 } else if (const CXXConversionDecl *CXXC =
915 dyn_cast<CXXConversionDecl>(Method)) {
916 if (CXXC->isExplicit())
917 Flags |= llvm::DIDescriptor::FlagExplicit;
918 }
Devang Patel3951e712010-10-07 22:03:49 +0000919 if (Method->hasPrototype())
920 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Pateld78a0192010-10-01 23:32:17 +0000921
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000922 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000923 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000924 MethodDefUnit, MethodLine,
925 MethodTy, /*isLocalToUnit=*/false,
926 /* isDefinition=*/ false,
927 Virtuality, VIndex, ContainingType,
928 Flags, CGM.getLangOptions().Optimize);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000929
Eric Christopherdeae6a82011-11-17 23:45:00 +0000930 SPCache[Method->getCanonicalDecl()] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000931
932 return SP;
933}
934
Devang Patel4125fd22010-01-19 01:54:44 +0000935/// CollectCXXMemberFunctions - A helper function to collect debug info for
Eric Christopher7c9b2fd2012-01-12 01:26:51 +0000936/// C++ member functions. This is used while creating debug info entry for
Devang Patel4125fd22010-01-19 01:54:44 +0000937/// a Record.
938void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000939CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000940 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000941 llvm::DIType RecordTy) {
Devang Patel239cec62010-02-01 21:39:52 +0000942 for(CXXRecordDecl::method_iterator I = RD->method_begin(),
943 E = RD->method_end(); I != E; ++I) {
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000944 const CXXMethodDecl *Method = *I;
Anders Carlssonbea9b232010-01-26 04:40:11 +0000945
Devang Pateld5322da2010-02-09 19:09:28 +0000946 if (Method->isImplicit() && !Method->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +0000947 continue;
Devang Patel4125fd22010-01-19 01:54:44 +0000948
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000949 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +0000950 }
951}
952
Devang Patel2ed8f002010-08-27 17:47:47 +0000953/// CollectCXXFriends - A helper function to collect debug info for
954/// C++ base classes. This is used while creating debug info entry for
955/// a Record.
956void CGDebugInfo::
957CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000958 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +0000959 llvm::DIType RecordTy) {
Eric Christopher121c67d2012-01-12 01:26:58 +0000960 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
Devang Patel2ed8f002010-08-27 17:47:47 +0000961 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +0000962 if ((*BI)->isUnsupportedFriend())
963 continue;
Devang Patel823d8e92010-12-08 22:42:58 +0000964 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +0000965 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000966 getOrCreateType(TInfo->getType(),
967 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +0000968 }
969}
970
Devang Patela245c5b2010-01-25 23:32:18 +0000971/// CollectCXXBases - A helper function to collect debug info for
972/// C++ base classes. This is used while creating debug info entry for
973/// a Record.
974void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000975CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000976 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000977 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +0000978
Devang Patel239cec62010-02-01 21:39:52 +0000979 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
980 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
981 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +0000982 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +0000983 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +0000984
985 const CXXRecordDecl *Base =
986 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
987
988 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +0000989 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +0000990 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +0000991 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000992 0 - CGM.getVTableContext()
993 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +0000994 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +0000995 } else
Devang Patel62c117d2011-04-04 20:36:06 +0000996 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Ken Dyck14c65ca2011-04-07 12:37:09 +0000997 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
998 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +0000999
1000 AccessSpecifier Access = BI->getAccessSpecifier();
1001 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +00001002 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +00001003 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +00001004 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +00001005
Devang Patel823d8e92010-12-08 22:42:58 +00001006 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +00001007 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +00001008 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +00001009 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +00001010 EltTys.push_back(DTy);
1011 }
Devang Patela245c5b2010-01-25 23:32:18 +00001012}
1013
Devang Patel5ecb1df2011-04-05 22:54:11 +00001014/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +00001015llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +00001016CollectTemplateParams(const TemplateParameterList *TPList,
1017 const TemplateArgumentList &TAList,
1018 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001019 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +00001020 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
1021 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +00001022 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +00001023 if (TA.getKind() == TemplateArgument::Type) {
1024 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
1025 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001026 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +00001027 TemplateParams.push_back(TTP);
1028 } else if (TA.getKind() == TemplateArgument::Integral) {
1029 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +00001030 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001031 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
1032 TA.getAsIntegral()->getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +00001033 TemplateParams.push_back(TVP);
1034 }
1035 }
Jay Foadc556ef22011-04-24 10:11:03 +00001036 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +00001037}
1038
Devang Patel5ecb1df2011-04-05 22:54:11 +00001039/// CollectFunctionTemplateParams - A helper function to collect debug
1040/// info for function template parameters.
1041llvm::DIArray CGDebugInfo::
1042CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherab5278e2011-10-11 23:00:51 +00001043 if (FD->getTemplatedKind() ==
1044 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patel5ecb1df2011-04-05 22:54:11 +00001045 const TemplateParameterList *TList =
Eric Christopherab5278e2011-10-11 23:00:51 +00001046 FD->getTemplateSpecializationInfo()->getTemplate()
1047 ->getTemplateParameters();
Devang Patel5ecb1df2011-04-05 22:54:11 +00001048 return
1049 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
1050 }
1051 return llvm::DIArray();
1052}
1053
1054/// CollectCXXTemplateParams - A helper function to collect debug info for
1055/// template parameters.
1056llvm::DIArray CGDebugInfo::
1057CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
1058 llvm::DIFile Unit) {
1059 llvm::PointerUnion<ClassTemplateDecl *,
1060 ClassTemplatePartialSpecializationDecl *>
1061 PU = TSpecial->getSpecializedTemplateOrPartial();
1062
1063 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
1064 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
1065 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
1066 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
1067 return CollectTemplateParams(TPList, TAList, Unit);
1068}
1069
Devang Patel4ce3f202010-01-28 18:11:52 +00001070/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +00001071llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +00001072 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +00001073 return VTablePtrType;
1074
1075 ASTContext &Context = CGM.getContext();
1076
1077 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +00001078 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +00001079 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +00001080 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +00001081 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +00001082 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001083 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +00001084 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +00001085 return VTablePtrType;
1086}
1087
Anders Carlsson046c2942010-04-17 20:15:18 +00001088/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001089StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Eric Christopher51cb75a2012-01-25 21:47:09 +00001090 // Construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +00001091 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +00001092
1093 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +00001094 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001095 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001096 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001097}
1098
1099
Anders Carlsson046c2942010-04-17 20:15:18 +00001100/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +00001101/// debug info entry in EltTys vector.
1102void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +00001103CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001104 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +00001105 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +00001106
1107 // If there is a primary base then it will hold vtable info.
1108 if (RL.getPrimaryBase())
1109 return;
1110
1111 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +00001112 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +00001113 return;
1114
1115 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1116 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +00001117 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001118 0, Size, 0, 0, 0,
1119 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +00001120 EltTys.push_back(VPTR);
1121}
1122
Devang Patelc69e1cf2010-09-30 19:05:55 +00001123/// getOrCreateRecordType - Emit record type's standalone debug info.
1124llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1125 SourceLocation Loc) {
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001126 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patel16674e82011-02-22 18:56:36 +00001127 DBuilder.retainType(T);
Devang Patelc69e1cf2010-09-30 19:05:55 +00001128 return T;
1129}
1130
Devang Patel65e99f22009-02-25 01:36:11 +00001131/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +00001132llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001133 RecordDecl *RD = Ty->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001134
Chris Lattner9c85ba32008-11-10 06:08:34 +00001135 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001136 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1137 unsigned Line = getLineNumber(RD->getLocation());
Eric Christopherde983d82012-01-26 02:05:28 +00001138 StringRef RDName = RD->getName();
Mike Stump1eb44332009-09-09 15:08:12 +00001139
Chris Lattner9c85ba32008-11-10 06:08:34 +00001140 // Records and classes and unions can all be recursive. To handle them, we
1141 // first generate a debug descriptor for the struct as a forward declaration.
1142 // Then (if it is a definition) we go through and get debug info for all of
1143 // its members. Finally, we create a descriptor for the complete type (which
1144 // may refer to the forward decl if the struct is recursive) and replace all
1145 // uses of the forward declaration with the final definition.
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001146
Eric Christopherde983d82012-01-26 02:05:28 +00001147 llvm::DIDescriptor RDContext;
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001148 if (CGM.getCodeGenOpts().LimitDebugInfo)
Eric Christopherde983d82012-01-26 02:05:28 +00001149 RDContext = createContextChain(cast<Decl>(RD->getDeclContext()));
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001150 else
Eric Christopherde983d82012-01-26 02:05:28 +00001151 RDContext = getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel0b897992010-07-08 19:56:29 +00001152
1153 // If this is just a forward declaration, construct an appropriately
1154 // marked node and just return it.
Eric Christopher5b78a242012-01-26 07:11:58 +00001155 if (!RD->getDefinition())
1156 return createRecordFwdDecl(RD, RDContext);
Devang Pateld0f251b2010-01-20 23:56:40 +00001157
Devang Patel16674e82011-02-22 18:56:36 +00001158 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001159
Devang Patelab699792010-05-07 18:12:35 +00001160 llvm::MDNode *MN = FwdDecl;
1161 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001162 // Otherwise, insert it into the TypeCache so that recursive uses will find
1163 // it.
Devang Patelab699792010-05-07 18:12:35 +00001164 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001165 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001166 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001167 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001168
1169 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001170 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001171
Eric Christopher1c081d92012-01-26 07:01:04 +00001172 // Note: The split of CXXDecl information here is intentional, the
1173 // gdb tests will depend on a certain ordering at printout. The debug
1174 // information offsets are still correct if we merge them all together
1175 // though.
Devang Pateld6c5a262010-02-01 21:52:22 +00001176 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +00001177 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001178 CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl);
1179 CollectVTableInfo(CXXDecl, DefUnit, EltTys);
Eric Christopher1c081d92012-01-26 07:01:04 +00001180 }
1181
1182 // Collect static variables with initializers and other fields.
1183 CollectRecordStaticVars(RD, FwdDecl);
1184 CollectRecordFields(RD, DefUnit, EltTys, FwdDecl);
1185 llvm::DIArray TParamsArray;
1186 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001187 CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl);
1188 CollectCXXFriends(CXXDecl, DefUnit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001189 if (const ClassTemplateSpecializationDecl *TSpecial
1190 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
Eric Christopher3ee8c912012-01-26 06:20:57 +00001191 TParamsArray = CollectCXXTemplateParams(TSpecial, DefUnit);
Devang Patel823d8e92010-12-08 22:42:58 +00001192 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001193
Eric Christopheraa2164c2011-09-29 00:00:45 +00001194 LexicalBlockStack.pop_back();
Devang Patel823d8e92010-12-08 22:42:58 +00001195 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1196 RegionMap.find(Ty->getDecl());
1197 if (RI != RegionMap.end())
1198 RegionMap.erase(RI);
1199
Devang Patel823d8e92010-12-08 22:42:58 +00001200 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1201 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Jay Foadc556ef22011-04-24 10:11:03 +00001202 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel823d8e92010-12-08 22:42:58 +00001203 llvm::MDNode *RealDecl = NULL;
1204
Devang Patel5c5b5872011-02-28 22:32:45 +00001205 if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +00001206 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
Devang Patel5c5b5872011-02-28 22:32:45 +00001207 Size, Align, 0, Elements);
1208 else if (CXXDecl) {
Devang Patel823d8e92010-12-08 22:42:58 +00001209 RDName = getClassName(RD);
1210 // A class's primary base or the class itself contains the vtable.
1211 llvm::MDNode *ContainingType = NULL;
Devang Pateld6c5a262010-02-01 21:52:22 +00001212 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel5bc794f2010-10-14 22:59:23 +00001213 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1214 // Seek non virtual primary base root.
1215 while (1) {
1216 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1217 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
Anders Carlssonc9e814b2010-11-24 23:12:57 +00001218 if (PBT && !BRL.isPrimaryBaseVirtual())
Devang Patel5bc794f2010-10-14 22:59:23 +00001219 PBase = PBT;
1220 else
1221 break;
1222 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001223 ContainingType =
Eric Christopher3ee8c912012-01-26 06:20:57 +00001224 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), DefUnit);
Devang Patel5bc794f2010-10-14 22:59:23 +00001225 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001226 else if (CXXDecl->isDynamicClass())
Devang Patelab699792010-05-07 18:12:35 +00001227 ContainingType = FwdDecl;
Devang Patel9c1714b2011-04-05 17:30:54 +00001228
Eric Christopher435e1062011-12-16 23:40:14 +00001229 // FIXME: This could be a struct type giving a default visibility different
1230 // than C++ class type, but needs llvm metadata changes first.
1231 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
1232 Size, Align, 0, 0, llvm::DIType(),
1233 Elements, ContainingType,
1234 TParamsArray);
1235 } else
Devang Patel5c5b5872011-02-28 22:32:45 +00001236 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1237 Size, Align, 0, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +00001238
Chris Lattner9c85ba32008-11-10 06:08:34 +00001239 // Now that we have a real decl for the struct, replace anything using the
1240 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001241 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001242 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
Devang Patel823d8e92010-12-08 22:42:58 +00001243 return llvm::DIType(RealDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001244}
1245
John McCallc12c5bb2010-05-15 11:32:37 +00001246/// CreateType - get objective-c object type.
1247llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1248 llvm::DIFile Unit) {
1249 // Ignore protocols.
1250 return getOrCreateType(Ty->getBaseType(), Unit);
1251}
1252
Devang Patel9ca36b62009-02-26 21:10:26 +00001253/// CreateType - get objective-c interface type.
1254llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001255 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001256 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001257 if (!ID)
1258 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001259
1260 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001261 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001262 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001263 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001264
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001265 // If this is just a forward declaration return a special forward-declaration
1266 // debug type since we won't be able to lay out the entire type.
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001267 ObjCInterfaceDecl *Def = ID->getDefinition();
1268 if (!Def) {
Devang Patel823d8e92010-12-08 22:42:58 +00001269 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001270 DBuilder.createStructType(Unit, ID->getName(),
Eric Christopherd5a3b782011-11-29 23:57:40 +00001271 DefUnit, Line, 0, 0,
1272 llvm::DIDescriptor::FlagFwdDecl,
Devang Patel823d8e92010-12-08 22:42:58 +00001273 llvm::DIArray(), RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001274 return FwdDecl;
1275 }
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001276 ID = Def;
Dan Gohman45f7c782010-08-23 21:15:56 +00001277
Eric Christopher1cd1d742011-10-06 00:30:52 +00001278 // To handle a recursive interface, we first generate a debug descriptor
1279 // for the struct as a forward declaration. Then (if it is a definition)
1280 // we go through and get debug info for all of its members. Finally, we
1281 // create a descriptor for the complete type (which may refer to the
1282 // forward decl if the struct is recursive) and replace all uses of the
1283 // forward declaration with the final definition.
Devang Patel16674e82011-02-22 18:56:36 +00001284 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001285
Devang Patelab699792010-05-07 18:12:35 +00001286 llvm::MDNode *MN = FwdDecl;
1287 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Devang Patel9ca36b62009-02-26 21:10:26 +00001288 // Otherwise, insert it into the TypeCache so that recursive uses will find
1289 // it.
Devang Patelab699792010-05-07 18:12:35 +00001290 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001291 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001292 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001293 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001294
1295 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001296 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001297
Devang Pateld6c5a262010-02-01 21:52:22 +00001298 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001299 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001300 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001301 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001302 if (!SClassTy.isValid())
1303 return llvm::DIType();
1304
Mike Stump1eb44332009-09-09 15:08:12 +00001305 llvm::DIType InhTag =
Devang Patel16674e82011-02-22 18:56:36 +00001306 DBuilder.createInheritance(FwdDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001307 EltTys.push_back(InhTag);
1308 }
1309
Devang Patel693fcaa2012-02-07 18:40:30 +00001310 for (ObjCContainerDecl::prop_iterator I = ID->prop_begin(),
1311 E = ID->prop_end(); I != E; ++I) {
1312 const ObjCPropertyDecl *PD = *I;
1313 llvm::MDNode *PropertyNode =
1314 DBuilder.createObjCProperty(PD->getName(),
1315 getSelectorName(PD->getGetterName()),
1316 getSelectorName(PD->getSetterName()),
1317 PD->getPropertyAttributes());
1318 EltTys.push_back(PropertyNode);
1319 }
1320
Devang Pateld6c5a262010-02-01 21:52:22 +00001321 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00001322 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001323 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001324 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001325 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001326 if (!FieldTy.isValid())
1327 return llvm::DIType();
1328
Chris Lattner5f9e2722011-07-23 10:55:15 +00001329 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001330
Devang Patelde135022009-04-27 22:40:36 +00001331 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001332 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001333 continue;
1334
Devang Patel9ca36b62009-02-26 21:10:26 +00001335 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001336 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1337 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001338 QualType FType = Field->getType();
1339 uint64_t FieldSize = 0;
1340 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001341
Devang Patel99c20eb2009-03-20 18:24:39 +00001342 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001343
Devang Patel99c20eb2009-03-20 18:24:39 +00001344 // Bit size, align and offset of the type.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001345 FieldSize = Field->isBitField()
1346 ? Field->getBitWidthValue(CGM.getContext())
1347 : CGM.getContext().getTypeSize(FType);
1348 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001349 }
1350
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001351 // We can't know the offset of our ivar in the structure if we're using
1352 // the non-fragile abi and the debugger should ignore the value anyways.
1353 // Call it the FieldNo+1 due to how debuggers use the information,
1354 // e.g. negating the value when it needs a lookup in the dynamic table.
1355 uint64_t FieldOffset = CGM.getLangOptions().ObjCNonFragileABI ? FieldNo+1
1356 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001357
Devang Patelc20482b2009-03-19 00:23:53 +00001358 unsigned Flags = 0;
1359 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001360 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001361 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001362 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001363
Devang Patel693a70d2012-02-04 01:15:04 +00001364 llvm::MDNode *PropertyNode = NULL;
Devang Patel693fcaa2012-02-07 18:40:30 +00001365 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) {
Devang Patel8c6f9c42011-09-19 18:54:16 +00001366 if (ObjCPropertyImplDecl *PImpD =
Devang Patel693fcaa2012-02-07 18:40:30 +00001367 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) {
1368 if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) {
1369 PropertyNode =
1370 DBuilder.createObjCProperty(PD->getName(),
1371 getSelectorName(PD->getGetterName()),
1372 getSelectorName(PD->getSetterName()),
1373 PD->getPropertyAttributes());
1374 }
1375 }
Devang Patel693a70d2012-02-04 01:15:04 +00001376 }
Devang Patelfa936d82011-04-16 00:12:55 +00001377 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1378 FieldLine, FieldSize, FieldAlign,
1379 FieldOffset, Flags, FieldTy,
Devang Patel5f3c7fa2012-02-06 18:20:02 +00001380 PropertyNode);
Devang Patel9ca36b62009-02-26 21:10:26 +00001381 EltTys.push_back(FieldTy);
1382 }
Mike Stump1eb44332009-09-09 15:08:12 +00001383
Jay Foadc556ef22011-04-24 10:11:03 +00001384 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel9ca36b62009-02-26 21:10:26 +00001385
Eric Christopheraa2164c2011-09-29 00:00:45 +00001386 LexicalBlockStack.pop_back();
Devang Patele4c1ea02010-03-11 20:01:48 +00001387 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1388 RegionMap.find(Ty->getDecl());
1389 if (RI != RegionMap.end())
1390 RegionMap.erase(RI);
1391
Devang Patel9ca36b62009-02-26 21:10:26 +00001392 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001393 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1394 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001395
Devang Patel707b1e92011-05-12 19:07:41 +00001396 unsigned Flags = 0;
Devang Patelf568b642011-05-12 21:14:54 +00001397 if (ID->getImplementation())
Devang Patelaad16092011-05-12 21:29:57 +00001398 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
Devang Patel707b1e92011-05-12 19:07:41 +00001399
Devang Patel823d8e92010-12-08 22:42:58 +00001400 llvm::DIType RealDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001401 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
Devang Patel707b1e92011-05-12 19:07:41 +00001402 Line, Size, Align, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001403 Elements, RuntimeLang);
Devang Patel9ca36b62009-02-26 21:10:26 +00001404
1405 // Now that we have a real decl for the struct, replace anything using the
1406 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001407 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001408 RegionMap[ID] = llvm::WeakVH(RealDecl);
Devang Patelfe09eab2009-07-13 17:03:14 +00001409
Devang Patel9ca36b62009-02-26 21:10:26 +00001410 return RealDecl;
1411}
1412
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001413llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty, llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001414 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001415 int64_t NumElems = Ty->getNumElements();
1416 int64_t LowerBound = 0;
1417 if (NumElems == 0)
1418 // If number of elements are not known then this is an unbounded array.
1419 // Use Low = 1, Hi = 0 to express such arrays.
1420 LowerBound = 1;
1421 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001422 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001423
Devang Patel6cf37dd2011-04-08 21:56:52 +00001424 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001425 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001426
1427 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1428 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1429
1430 return
Devang Patel16674e82011-02-22 18:56:36 +00001431 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001432}
1433
Chris Lattner9c85ba32008-11-10 06:08:34 +00001434llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001435 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001436 uint64_t Size;
1437 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001438
1439
Nuno Lopes010d5142009-01-28 00:35:17 +00001440 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001441 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001442 Size = 0;
1443 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001444 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001445 } else if (Ty->isIncompleteArrayType()) {
1446 Size = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001447 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001448 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001449 Size = 0;
1450 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001451 } else {
1452 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001453 Size = CGM.getContext().getTypeSize(Ty);
1454 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001455 }
Mike Stump1eb44332009-09-09 15:08:12 +00001456
Chris Lattner9c85ba32008-11-10 06:08:34 +00001457 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1458 // interior arrays, do we care? Why aren't nested arrays represented the
1459 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001460 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001461 QualType EltTy(Ty, 0);
Devang Patelcdf523c2010-10-06 18:30:00 +00001462 if (Ty->isIncompleteArrayType())
Chris Lattner9c85ba32008-11-10 06:08:34 +00001463 EltTy = Ty->getElementType();
Devang Patelcdf523c2010-10-06 18:30:00 +00001464 else {
1465 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
Devang Patel6cf37dd2011-04-08 21:56:52 +00001466 int64_t UpperBound = 0;
1467 int64_t LowerBound = 0;
Nick Lewycky3894c072011-04-09 00:25:15 +00001468 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
Devang Patelcdf523c2010-10-06 18:30:00 +00001469 if (CAT->getSize().getZExtValue())
Devang Patel6cf37dd2011-04-08 21:56:52 +00001470 UpperBound = CAT->getSize().getZExtValue() - 1;
Nick Lewycky3894c072011-04-09 00:25:15 +00001471 } else
Devang Patel6cf37dd2011-04-08 21:56:52 +00001472 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1473 // arrays.
1474 LowerBound = 1;
1475
Devang Patelcdf523c2010-10-06 18:30:00 +00001476 // FIXME: Verify this is right for VLAs.
Eric Christopherab5278e2011-10-11 23:00:51 +00001477 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1478 UpperBound));
Devang Patelcdf523c2010-10-06 18:30:00 +00001479 EltTy = Ty->getElementType();
1480 }
Sanjiv Gupta507de852008-06-09 10:47:41 +00001481 }
Mike Stump1eb44332009-09-09 15:08:12 +00001482
Jay Foadc556ef22011-04-24 10:11:03 +00001483 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001484
Devang Patelca80a5f2009-10-20 19:55:01 +00001485 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001486 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001487 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001488 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001489}
1490
Anders Carlssona031b352009-11-06 19:19:55 +00001491llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001492 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001493 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1494 Ty, Ty->getPointeeType(), Unit);
1495}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001496
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001497llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1498 llvm::DIFile Unit) {
1499 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1500 Ty, Ty->getPointeeType(), Unit);
1501}
1502
Anders Carlsson20f12a22009-12-06 18:00:51 +00001503llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001504 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001505 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1506 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1507
1508 if (!Ty->getPointeeType()->isFunctionType()) {
1509 // We have a data member pointer type.
1510 return PointerDiffDITy;
1511 }
1512
1513 // We have a member function pointer type. Treat it as a struct with two
1514 // ptrdiff_t members.
1515 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1516
1517 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001518 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001519
1520 // FIXME: This should probably be a function type instead.
1521 ElementTypes[0] =
Devang Patel1d323e02011-06-24 22:00:59 +00001522 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001523 Info.first, Info.second, FieldOffset, 0,
1524 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001525 FieldOffset += Info.first;
1526
1527 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001528 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001529 Info.first, Info.second, FieldOffset, 0,
1530 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001531
Jay Foadc556ef22011-04-24 10:11:03 +00001532 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001533
Chris Lattner5f9e2722011-07-23 10:55:15 +00001534 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001535 U, 0, FieldOffset,
1536 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001537}
1538
Eli Friedmanb001de72011-10-06 23:00:33 +00001539llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1540 llvm::DIFile U) {
1541 // Ignore the atomic wrapping
1542 // FIXME: What is the correct representation?
1543 return getOrCreateType(Ty->getValueType(), U);
1544}
1545
Devang Patel6237cea2010-08-23 22:07:25 +00001546/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001547llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1548 llvm::DIFile Unit = getOrCreateFile(ED->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001549 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001550
1551 // Create DIEnumerator elements for each enumerator.
1552 for (EnumDecl::enumerator_iterator
1553 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1554 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001555 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001556 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001557 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001558 }
1559
1560 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001561 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001562
1563 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1564 unsigned Line = getLineNumber(ED->getLocation());
1565 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001566 uint64_t Align = 0;
1567 if (!ED->getTypeForDecl()->isIncompleteType()) {
1568 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1569 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1570 }
Devang Patel4bc48872010-10-27 23:23:58 +00001571 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001572 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Devang Patel6237cea2010-08-23 22:07:25 +00001573 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001574 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001575 Size, Align, EltArray);
Devang Patel6237cea2010-08-23 22:07:25 +00001576 return DbgTy;
1577}
1578
Douglas Gregor840943d2009-12-21 20:18:30 +00001579static QualType UnwrapTypeForDebugInfo(QualType T) {
1580 do {
1581 QualType LastT = T;
1582 switch (T->getTypeClass()) {
1583 default:
1584 return T;
1585 case Type::TemplateSpecialization:
1586 T = cast<TemplateSpecializationType>(T)->desugar();
1587 break;
John McCallf4c73712011-01-19 06:33:43 +00001588 case Type::TypeOfExpr:
1589 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001590 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001591 case Type::TypeOf:
1592 T = cast<TypeOfType>(T)->getUnderlyingType();
1593 break;
1594 case Type::Decltype:
1595 T = cast<DecltypeType>(T)->getUnderlyingType();
1596 break;
Sean Huntca63c202011-05-24 22:41:36 +00001597 case Type::UnaryTransform:
1598 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1599 break;
John McCall9d156a72011-01-06 01:58:22 +00001600 case Type::Attributed:
1601 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001602 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001603 case Type::Elaborated:
1604 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001605 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001606 case Type::Paren:
1607 T = cast<ParenType>(T)->getInnerType();
1608 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001609 case Type::SubstTemplateTypeParm:
1610 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1611 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001612 case Type::Auto:
1613 T = cast<AutoType>(T)->getDeducedType();
1614 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001615 }
1616
1617 assert(T != LastT && "Type unwrapping failed to unwrap!");
1618 if (T == LastT)
1619 return T;
1620 } while (true);
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001621}
1622
Eric Christopher973bbb62011-12-16 23:40:18 +00001623/// getType - Get the type from the cache or return null type if it doesn't exist.
1624llvm::DIType CGDebugInfo::getTypeOrNull(QualType Ty) {
Mike Stump1eb44332009-09-09 15:08:12 +00001625
Douglas Gregor840943d2009-12-21 20:18:30 +00001626 // Unwrap the type as needed for debug information.
1627 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher973bbb62011-12-16 23:40:18 +00001628
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001629 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001630 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001631 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001632 if (it != TypeCache.end()) {
1633 // Verify that the debug info still exists.
1634 if (&*it->second)
1635 return llvm::DIType(cast<llvm::MDNode>(it->second));
1636 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001637
Eric Christopher973bbb62011-12-16 23:40:18 +00001638 return llvm::DIType();
1639}
1640
1641/// getOrCreateType - Get the type from the cache or create a new
1642/// one if necessary.
1643llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile Unit) {
1644 if (Ty.isNull())
1645 return llvm::DIType();
1646
1647 // Unwrap the type as needed for debug information.
1648 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher271ce542012-02-01 23:39:00 +00001649
1650 // Check if we already have the type. If we've gotten here and
1651 // have a forward declaration of the type we may want the full type.
1652 // Go ahead and create it if that's the case.
Eric Christopher973bbb62011-12-16 23:40:18 +00001653 llvm::DIType T = getTypeOrNull(Ty);
Eric Christopher271ce542012-02-01 23:39:00 +00001654 if (T.Verify() && !T.isForwardDecl()) return T;
Eric Christopher973bbb62011-12-16 23:40:18 +00001655
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001656 // Otherwise create the type.
1657 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001658
1659 // And update the type cache.
Devang Patelab699792010-05-07 18:12:35 +00001660 TypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001661 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001662}
1663
Eric Christopher0086a5b2012-02-01 06:07:23 +00001664/// getOrCreateLimitedType - Get the type from the cache or create a new
1665/// limited type if necessary.
1666llvm::DIType CGDebugInfo::getOrCreateLimitedType(QualType Ty,
1667 llvm::DIFile Unit) {
1668 if (Ty.isNull())
1669 return llvm::DIType();
1670
1671 // Unwrap the type as needed for debug information.
1672 Ty = UnwrapTypeForDebugInfo(Ty);
1673
1674 llvm::DIType T = getTypeOrNull(Ty);
1675 if (T.Verify()) return T;
1676
1677 // Otherwise create the type.
1678 llvm::DIType Res = CreateLimitedTypeNode(Ty, Unit);
1679
1680 // And update the type cache.
1681 TypeCache[Ty.getAsOpaquePtr()] = Res;
1682 return Res;
1683}
1684
1685// TODO: Not safe to use for inner types or for fields. Currently only
1686// used for by value arguments to functions anything else needs to be
1687// audited carefully.
1688llvm::DIType CGDebugInfo::CreateLimitedType(const RecordType *Ty) {
1689 RecordDecl *RD = Ty->getDecl();
1690
1691 // For templated records we want the full type information and
1692 // our forward decls don't handle this correctly.
1693 if (isa<ClassTemplateSpecializationDecl>(RD))
1694 return CreateType(Ty);
1695
1696 llvm::DIDescriptor RDContext
1697 = createContextChain(cast<Decl>(RD->getDeclContext()));
1698
1699 return createRecordFwdDecl(RD, RDContext);
1700}
1701
1702/// CreateLimitedTypeNode - Create a new debug type node, but only forward
1703/// declare composite types that haven't been processed yet.
1704llvm::DIType CGDebugInfo::CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) {
1705
1706 // Work out details of type.
1707 switch (Ty->getTypeClass()) {
1708#define TYPE(Class, Base)
1709#define ABSTRACT_TYPE(Class, Base)
1710#define NON_CANONICAL_TYPE(Class, Base)
1711#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1712 #include "clang/AST/TypeNodes.def"
1713 llvm_unreachable("Dependent types cannot show up in debug information");
1714
1715 case Type::Record:
1716 return CreateLimitedType(cast<RecordType>(Ty));
1717 default:
1718 return CreateTypeNode(Ty, Unit);
1719 }
1720}
1721
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001722/// CreateTypeNode - Create a new debug type node.
Nick Lewycky7b3819d2011-11-09 04:27:23 +00001723llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001724 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001725 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001726 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001727
Douglas Gregor2101a822009-12-21 19:57:21 +00001728 const char *Diag = 0;
1729
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001730 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001731 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001732#define TYPE(Class, Base)
1733#define ABSTRACT_TYPE(Class, Base)
1734#define NON_CANONICAL_TYPE(Class, Base)
1735#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1736#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001737 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001738
Anders Carlssonbfe69952009-11-06 18:24:04 +00001739 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001740 case Type::Vector:
1741 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001742 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001743 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001744 case Type::ObjCObject:
1745 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001746 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001747 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001748 case Type::Builtin:
1749 return CreateType(cast<BuiltinType>(Ty));
1750 case Type::Complex:
1751 return CreateType(cast<ComplexType>(Ty));
1752 case Type::Pointer:
1753 return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001754 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001755 return CreateType(cast<BlockPointerType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001756 case Type::Typedef:
1757 return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001758 case Type::Record:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001759 return CreateType(cast<RecordType>(Ty));
Douglas Gregor72564e72009-02-26 23:50:07 +00001760 case Type::Enum:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001761 return CreateEnumType(cast<EnumType>(Ty)->getDecl());
Chris Lattner9c85ba32008-11-10 06:08:34 +00001762 case Type::FunctionProto:
1763 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001764 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001765 case Type::ConstantArray:
1766 case Type::VariableArray:
1767 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001768 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001769
1770 case Type::LValueReference:
1771 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001772 case Type::RValueReference:
1773 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001774
Anders Carlsson20f12a22009-12-06 18:00:51 +00001775 case Type::MemberPointer:
1776 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001777
Eli Friedmanb001de72011-10-06 23:00:33 +00001778 case Type::Atomic:
1779 return CreateType(cast<AtomicType>(Ty), Unit);
1780
John McCall9d156a72011-01-06 01:58:22 +00001781 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001782 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001783 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001784 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001785 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001786 case Type::TypeOfExpr:
1787 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001788 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001789 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001790 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001791 llvm_unreachable("type should have been unwrapped!");
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001792 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001793
1794 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001795 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001796 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001797 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001798 << Diag;
1799 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001800}
1801
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001802/// CreateMemberType - Create new member and increase Offset by FType's size.
1803llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001804 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001805 uint64_t *Offset) {
1806 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1807 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1808 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001809 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001810 FieldSize, FieldAlign,
1811 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001812 *Offset += FieldSize;
1813 return Ty;
1814}
1815
Devang Patel120bf322011-04-23 00:08:01 +00001816/// getFunctionDeclaration - Return debug info descriptor to describe method
1817/// declaration for the given method definition.
1818llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1819 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1820 if (!FD) return llvm::DISubprogram();
1821
1822 // Setup context.
1823 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1824
Devang Patel22a5cdf2011-04-29 23:42:32 +00001825 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001826 MI = SPCache.find(FD->getCanonicalDecl());
Devang Patel22a5cdf2011-04-29 23:42:32 +00001827 if (MI != SPCache.end()) {
1828 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1829 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1830 return SP;
1831 }
1832
Devang Patel120bf322011-04-23 00:08:01 +00001833 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1834 E = FD->redecls_end(); I != E; ++I) {
1835 const FunctionDecl *NextFD = *I;
1836 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001837 MI = SPCache.find(NextFD->getCanonicalDecl());
Devang Patel120bf322011-04-23 00:08:01 +00001838 if (MI != SPCache.end()) {
1839 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1840 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1841 return SP;
1842 }
1843 }
1844 return llvm::DISubprogram();
1845}
1846
Devang Patel1c296522011-05-31 20:46:46 +00001847// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1848// implicit parameter "this".
Eric Christopherab5278e2011-10-11 23:00:51 +00001849llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D,
1850 QualType FnType,
Devang Patel1c296522011-05-31 20:46:46 +00001851 llvm::DIFile F) {
1852 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1853 return getOrCreateMethodType(Method, F);
Nick Lewycky7480d962011-11-10 00:34:02 +00001854 if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00001855 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001856 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00001857
1858 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00001859 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00001860 // "self" pointer is always first argument.
1861 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
1862 // "cmd" pointer is always second argument.
1863 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Pateld127bcb2011-05-31 22:21:11 +00001864 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001865 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00001866 PE = OMethod->param_end(); PI != PE; ++PI)
1867 Elts.push_back(getOrCreateType((*PI)->getType(), F));
1868
Devang Patelc478f212011-05-31 21:18:50 +00001869 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1870 return DBuilder.createSubroutineType(F, EltTypeArray);
1871 }
Devang Patel1c296522011-05-31 20:46:46 +00001872 return getOrCreateType(FnType, F);
1873}
1874
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001875/// EmitFunctionStart - Constructs the debug code for entering a function -
1876/// "llvm.dbg.func.start.".
Devang Patel9c6c3a02010-01-14 00:36:21 +00001877void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001878 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001879 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00001880
Chris Lattner5f9e2722011-07-23 10:55:15 +00001881 StringRef Name;
1882 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001883
Eric Christopheraa2164c2011-09-29 00:00:45 +00001884 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001885
Devang Patel9c6c3a02010-01-14 00:36:21 +00001886 const Decl *D = GD.getDecl();
Eric Christopher73fb3502011-10-13 21:45:18 +00001887
Devang Patel3951e712010-10-07 22:03:49 +00001888 unsigned Flags = 0;
Devang Patel0692f832010-10-11 21:58:41 +00001889 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1890 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00001891 llvm::DIArray TParamsArray;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001892 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Eric Christopherbf979472011-11-14 18:55:02 +00001893 // If there is a DISubprogram for this function available then use it.
Devang Patel4125fd22010-01-19 01:54:44 +00001894 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001895 FI = SPCache.find(FD->getCanonicalDecl());
Devang Patel4125fd22010-01-19 01:54:44 +00001896 if (FI != SPCache.end()) {
Gabor Greif38c9b172010-09-18 13:00:17 +00001897 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelab699792010-05-07 18:12:35 +00001898 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1899 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001900 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001901 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00001902 return;
1903 }
1904 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00001905 Name = getFunctionName(FD);
1906 // Use mangled name as linkage name for c/c++ functions.
Devang Patela87a2b22011-05-02 22:49:30 +00001907 if (!Fn->hasInternalLinkage())
Devang Patel2df74c02011-05-02 22:37:48 +00001908 LinkageName = CGM.getMangledName(GD);
Devang Patel58faf202010-10-22 17:11:50 +00001909 if (LinkageName == Name)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001910 LinkageName = StringRef();
Devang Patel3951e712010-10-07 22:03:49 +00001911 if (FD->hasPrototype())
1912 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel0692f832010-10-11 21:58:41 +00001913 if (const NamespaceDecl *NSDecl =
1914 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
Devang Patel170cef32010-12-09 00:33:05 +00001915 FDContext = getOrCreateNameSpace(NSDecl);
Devang Patelbc6a1912011-05-17 00:20:09 +00001916 else if (const RecordDecl *RDecl =
1917 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
1918 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00001919
1920 // Collect template parameters.
1921 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
David Chisnall70b9b442010-09-02 17:16:32 +00001922 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00001923 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00001924 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001925 } else {
Devang Patel58faf202010-10-22 17:11:50 +00001926 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00001927 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00001928 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001929 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001930 if (!Name.empty() && Name[0] == '\01')
1931 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001932
Devang Patel970c6182010-04-24 00:49:16 +00001933 // It is expected that CurLoc is set before using EmitFunctionStart.
1934 // Usually, CurLoc points to the left bracket location of compound
1935 // statement representing function body.
Devang Patel8ab870d2010-05-12 23:46:38 +00001936 unsigned LineNo = getLineNumber(CurLoc);
Devang Patele2472482010-09-29 21:05:52 +00001937 if (D->isImplicit())
1938 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel120bf322011-04-23 00:08:01 +00001939 llvm::DISubprogram SPDecl = getFunctionDeclaration(D);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001940 llvm::DISubprogram SP =
Devang Patel16674e82011-02-22 18:56:36 +00001941 DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
Devang Patel1c296522011-05-31 20:46:46 +00001942 LineNo, getOrCreateFunctionType(D, FnType, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001943 Fn->hasInternalLinkage(), true/*definition*/,
Devang Patel5ecb1df2011-04-05 22:54:11 +00001944 Flags, CGM.getLangOptions().Optimize, Fn,
Devang Patel120bf322011-04-23 00:08:01 +00001945 TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001946
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001947 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00001948 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001949 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001950 RegionMap[D] = llvm::WeakVH(SP);
Eric Christopher69a1b742011-09-29 00:00:37 +00001951}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001952
Eric Christopher5321bc42011-09-29 00:00:41 +00001953/// EmitLocation - Emit metadata to indicate a change in line/column
1954/// information in the source file.
Eric Christopher73fb3502011-10-13 21:45:18 +00001955void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
1956
1957 // Update our current location
1958 setLocation(Loc);
1959
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001960 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001961
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001962 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001963 SourceManager &SM = CGM.getContext().getSourceManager();
Eric Christopher73fb3502011-10-13 21:45:18 +00001964 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00001965 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00001966 // New Builder may not be in sync with CGDebugInfo.
1967 if (!Builder.getCurrentDebugLocation().isUnknown())
1968 return;
Eric Christopher414ee4b2011-09-29 00:00:35 +00001969
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001970 // Update last state.
1971 PrevLoc = CurLoc;
1972
Eric Christopheraa2164c2011-09-29 00:00:45 +00001973 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00001974 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
1975 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00001976 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001977}
1978
Eric Christopher73fb3502011-10-13 21:45:18 +00001979/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
1980/// the stack.
1981void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
Devang Patel8fae0602009-11-13 19:10:24 +00001982 llvm::DIDescriptor D =
Eric Christopher73fb3502011-10-13 21:45:18 +00001983 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
1984 llvm::DIDescriptor() :
1985 llvm::DIDescriptor(LexicalBlockStack.back()),
1986 getOrCreateFile(CurLoc),
1987 getLineNumber(CurLoc),
1988 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00001989 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001990 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001991}
1992
Eric Christopher73fb3502011-10-13 21:45:18 +00001993/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
1994/// region - beginning of a DW_TAG_lexical_block.
1995void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) {
1996 // Set our current location.
1997 setLocation(Loc);
1998
1999 // Create a new lexical block and push it on the stack.
2000 CreateLexicalBlock(Loc);
2001
2002 // Emit a line table change for the current location inside the new scope.
2003 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
2004 getColumnNumber(Loc),
2005 LexicalBlockStack.back()));
2006}
2007
Eric Christopheraa2164c2011-09-29 00:00:45 +00002008/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00002009/// region - end of a DW_TAG_lexical_block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002010void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002011 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00002012
Eric Christopher73fb3502011-10-13 21:45:18 +00002013 // Provide an entry in the line table for the end of the block.
2014 EmitLocation(Builder, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +00002015
Eric Christopheraa2164c2011-09-29 00:00:45 +00002016 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002017}
2018
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002019/// EmitFunctionEnd - Constructs the debug code for exiting a function.
2020void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002021 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002022 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00002023 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002024
2025 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00002026 while (LexicalBlockStack.size() != RCount)
Eric Christopher73fb3502011-10-13 21:45:18 +00002027 EmitLexicalBlockEnd(Builder, CurLoc);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002028 FnBeginRegionCount.pop_back();
2029}
2030
Devang Patel809b9bb2010-02-10 18:49:08 +00002031// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
2032// See BuildByRefType.
2033llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
2034 uint64_t *XOffset) {
2035
Chris Lattner5f9e2722011-07-23 10:55:15 +00002036 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00002037 QualType FType;
2038 uint64_t FieldSize, FieldOffset;
2039 unsigned FieldAlign;
2040
Devang Patel17800552010-03-09 00:44:50 +00002041 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002042 QualType Type = VD->getType();
2043
2044 FieldOffset = 0;
2045 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002046 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2047 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002048 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002049 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2050 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2051
John McCall6b5a61b2011-02-07 10:33:21 +00002052 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00002053 if (HasCopyAndDispose) {
2054 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002055 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
2056 &FieldOffset));
2057 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
2058 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002059 }
2060
2061 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00002062 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002063 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00002064 CharUnits FieldOffsetInBytes
2065 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
2066 CharUnits AlignedOffsetInBytes
2067 = FieldOffsetInBytes.RoundUpToAlignment(Align);
2068 CharUnits NumPaddingBytes
2069 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00002070
Ken Dyck573be632011-04-22 17:34:18 +00002071 if (NumPaddingBytes.isPositive()) {
2072 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00002073 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2074 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002075 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002076 }
2077 }
2078
2079 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002080 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00002081 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00002082 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00002083
2084 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00002085 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002086 0, FieldSize, FieldAlign,
2087 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00002088 EltTys.push_back(FieldTy);
2089 FieldOffset += FieldSize;
2090
Jay Foadc556ef22011-04-24 10:11:03 +00002091 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00002092
Devang Patele2472482010-09-29 21:05:52 +00002093 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00002094
Devang Patel16674e82011-02-22 18:56:36 +00002095 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00002096 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00002097}
Devang Patel823d8e92010-12-08 22:42:58 +00002098
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002099/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00002100void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00002101 llvm::Value *Storage,
2102 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002103 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00002104
Devang Patel17800552010-03-09 00:44:50 +00002105 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002106 llvm::DIType Ty;
2107 uint64_t XOffset = 0;
2108 if (VD->hasAttr<BlocksAttr>())
2109 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2110 else
2111 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00002112
Devang Patelf4e54a22010-05-07 23:05:55 +00002113 // If there is not any debug info for type then do not emit debug info
2114 // for this variable.
2115 if (!Ty)
2116 return;
2117
Devang Patel34753802011-02-16 01:11:51 +00002118 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
2119 // If Storage is an aggregate returned as 'sret' then let debugger know
2120 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00002121 if (Arg->hasStructRetAttr())
Devang Patel16674e82011-02-22 18:56:36 +00002122 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00002123 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
2124 // If an aggregate variable has non trivial destructor or non trivial copy
2125 // constructor than it is pass indirectly. Let debug info know about this
2126 // by using reference of the aggregate type as a argument type.
Eric Christopherab5278e2011-10-11 23:00:51 +00002127 if (!Record->hasTrivialCopyConstructor() ||
2128 !Record->hasTrivialDestructor())
Devang Patel16674e82011-02-22 18:56:36 +00002129 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00002130 }
2131 }
Devang Patel0691f932011-02-10 00:40:52 +00002132
Chris Lattner9c85ba32008-11-10 06:08:34 +00002133 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002134 unsigned Line = getLineNumber(VD->getLocation());
2135 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00002136 unsigned Flags = 0;
2137 if (VD->isImplicit())
2138 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002139 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00002140
Chris Lattner5f9e2722011-07-23 10:55:15 +00002141 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002142 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002143 if (VD->hasAttr<BlocksAttr>()) {
2144 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002145 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002146 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002147 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002148 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002149 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002150 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002151 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002152 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2153 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002154 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002155 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002156 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2157
2158 // Create the descriptor for the variable.
2159 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002160 DBuilder.createComplexVariable(Tag,
Eric Christopherab5278e2011-10-11 23:00:51 +00002161 llvm::DIDescriptor(Scope),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002162 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002163 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002164
2165 // Insert an llvm.dbg.declare into the current block.
2166 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002167 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002168 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2169 return;
2170 }
2171 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002172 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002173 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002174 Name, Unit, Line, Ty,
Devang Patel093ac462011-03-03 20:13:15 +00002175 CGM.getLangOptions().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002176
2177 // Insert an llvm.dbg.declare into the current block.
2178 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002179 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002180 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002181 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002182 }
2183
2184 // If VD is an anonymous union then Storage represents value for
2185 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002186 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2187 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2188 if (RD->isUnion()) {
2189 for (RecordDecl::field_iterator I = RD->field_begin(),
2190 E = RD->field_end();
2191 I != E; ++I) {
2192 FieldDecl *Field = *I;
2193 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002194 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002195
John McCall8178df32011-02-22 22:38:33 +00002196 // Ignore unnamed fields. Do not ignore unnamed records.
2197 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2198 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002199
John McCall8178df32011-02-22 22:38:33 +00002200 // Use VarDecl's Tag, Scope and Line number.
2201 llvm::DIVariable D =
2202 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2203 FieldName, Unit, Line, FieldTy,
Devang Patel093ac462011-03-03 20:13:15 +00002204 CGM.getLangOptions().Optimize, Flags,
2205 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002206
John McCall8178df32011-02-22 22:38:33 +00002207 // Insert an llvm.dbg.declare into the current block.
2208 llvm::Instruction *Call =
2209 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
John McCall8178df32011-02-22 22:38:33 +00002210 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002211 }
John McCall8178df32011-02-22 22:38:33 +00002212 }
2213 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002214}
2215
Devang Patele2d01912011-04-25 23:43:36 +00002216void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2217 llvm::Value *Storage,
2218 CGBuilderTy &Builder) {
2219 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2220}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002221
Devang Patele2d01912011-04-25 23:43:36 +00002222void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2223 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2224 const CGBlockInfo &blockInfo) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002225 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002226
Devang Patel2b594b92010-04-26 23:28:46 +00002227 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002228 return;
Devang Patele2d01912011-04-25 23:43:36 +00002229
John McCall6b5a61b2011-02-07 10:33:21 +00002230 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002231
Mike Stumpb1a6e682009-09-30 02:43:10 +00002232 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002233 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002234 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002235 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002236 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2237 else
2238 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002239
2240 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002241 unsigned Line = getLineNumber(VD->getLocation());
2242 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002243
John McCall6b5a61b2011-02-07 10:33:21 +00002244 const llvm::TargetData &target = CGM.getTargetData();
2245
2246 CharUnits offset = CharUnits::fromQuantity(
2247 target.getStructLayout(blockInfo.StructureType)
2248 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2249
Chris Lattner5f9e2722011-07-23 10:55:15 +00002250 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002251 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002252 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002253 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002254 if (isByRef) {
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002255 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2256 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002257 // offset of __forwarding field
Eric Christopherab5278e2011-10-11 23:00:51 +00002258 offset = CGM.getContext()
2259 .toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattner14b1a362010-01-25 03:29:35 +00002260 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002261 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2262 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002263 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002264 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002265 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002266 }
2267
2268 // Create the descriptor for the variable.
2269 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002270 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002271 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002272 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002273 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002274 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002275 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Eric Christopher73fb3502011-10-13 21:45:18 +00002276 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2277 LexicalBlockStack.back()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002278}
2279
Chris Lattner9c85ba32008-11-10 06:08:34 +00002280/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2281/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002282void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002283 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002284 CGBuilderTy &Builder) {
Devang Patel093ac462011-03-03 20:13:15 +00002285 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002286}
2287
John McCall8178df32011-02-22 22:38:33 +00002288namespace {
2289 struct BlockLayoutChunk {
2290 uint64_t OffsetInBits;
2291 const BlockDecl::Capture *Capture;
2292 };
2293 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2294 return l.OffsetInBits < r.OffsetInBits;
2295 }
2296}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002297
John McCall8178df32011-02-22 22:38:33 +00002298void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2299 llvm::Value *addr,
2300 CGBuilderTy &Builder) {
2301 ASTContext &C = CGM.getContext();
2302 const BlockDecl *blockDecl = block.getBlockDecl();
2303
2304 // Collect some general information about the block's location.
2305 SourceLocation loc = blockDecl->getCaretLocation();
2306 llvm::DIFile tunit = getOrCreateFile(loc);
2307 unsigned line = getLineNumber(loc);
2308 unsigned column = getColumnNumber(loc);
2309
2310 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002311 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002312
2313 const llvm::StructLayout *blockLayout =
2314 CGM.getTargetData().getStructLayout(block.StructureType);
2315
Chris Lattner5f9e2722011-07-23 10:55:15 +00002316 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002317 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2318 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002319 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002320 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2321 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002322 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002323 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2324 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002325 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002326 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2327 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002328 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002329 fields.push_back(createFieldType("__descriptor",
2330 C.getPointerType(block.NeedsCopyDispose ?
2331 C.getBlockDescriptorExtendedType() :
2332 C.getBlockDescriptorType()),
2333 0, loc, AS_public,
2334 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002335 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002336
2337 // We want to sort the captures by offset, not because DWARF
2338 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002339 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002340
2341 // 'this' capture.
2342 if (blockDecl->capturesCXXThis()) {
2343 BlockLayoutChunk chunk;
2344 chunk.OffsetInBits =
2345 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2346 chunk.Capture = 0;
2347 chunks.push_back(chunk);
2348 }
2349
2350 // Variable captures.
2351 for (BlockDecl::capture_const_iterator
2352 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2353 i != e; ++i) {
2354 const BlockDecl::Capture &capture = *i;
2355 const VarDecl *variable = capture.getVariable();
2356 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2357
2358 // Ignore constant captures.
2359 if (captureInfo.isConstant())
2360 continue;
2361
2362 BlockLayoutChunk chunk;
2363 chunk.OffsetInBits =
2364 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2365 chunk.Capture = &capture;
2366 chunks.push_back(chunk);
2367 }
2368
2369 // Sort by offset.
2370 llvm::array_pod_sort(chunks.begin(), chunks.end());
2371
Chris Lattner5f9e2722011-07-23 10:55:15 +00002372 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002373 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2374 uint64_t offsetInBits = i->OffsetInBits;
2375 const BlockDecl::Capture *capture = i->Capture;
2376
2377 // If we have a null capture, this must be the C++ 'this' capture.
2378 if (!capture) {
2379 const CXXMethodDecl *method =
2380 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2381 QualType type = method->getThisType(C);
2382
2383 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002384 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002385 continue;
2386 }
2387
2388 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002389 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002390
2391 llvm::DIType fieldType;
2392 if (capture->isByRef()) {
2393 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2394
2395 // FIXME: this creates a second copy of this type!
2396 uint64_t xoffset;
2397 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2398 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002399 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002400 ptrInfo.first, ptrInfo.second,
2401 offsetInBits, 0, fieldType);
2402 } else {
2403 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002404 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002405 }
2406 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002407 }
2408
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002409 SmallString<36> typeName;
John McCall8178df32011-02-22 22:38:33 +00002410 llvm::raw_svector_ostream(typeName)
2411 << "__block_literal_" << CGM.getUniqueBlockCount();
2412
Jay Foadc556ef22011-04-24 10:11:03 +00002413 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002414
2415 llvm::DIType type =
2416 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2417 CGM.getContext().toBits(block.BlockSize),
2418 CGM.getContext().toBits(block.BlockAlign),
2419 0, fieldsArray);
2420 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2421
2422 // Get overall information about the block.
2423 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002424 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002425 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002426
2427 // Create the descriptor for the parameter.
2428 llvm::DIVariable debugVar =
2429 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2430 llvm::DIDescriptor(scope),
2431 name, tunit, line, type,
Devang Patel093ac462011-03-03 20:13:15 +00002432 CGM.getLangOptions().Optimize, flags,
2433 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002434
2435 // Insert an llvm.dbg.value into the current block.
2436 llvm::Instruction *declare =
2437 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2438 Builder.GetInsertBlock());
2439 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2440}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002441
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002442/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002443void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002444 const VarDecl *D) {
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002445 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002446 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002447 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002448
Eric Christopher73fb3502011-10-13 21:45:18 +00002449 setLocation(D->getLocation());
2450
Devang Pateleb6d79b2010-02-01 21:34:11 +00002451 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002452 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002453
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002454 // CodeGen turns int[] into int[1] so we'll do the same here.
2455 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002456
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002457 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002458 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002459
Anders Carlsson20f12a22009-12-06 18:00:51 +00002460 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00002461 ArrayType::Normal, 0);
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002462 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002463 StringRef DeclName = D->getName();
2464 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002465 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2466 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002467 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002468 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002469 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002470 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002471 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002472 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002473 Unit, LineNo, getOrCreateType(T, Unit),
2474 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002475}
2476
Devang Patel9ca36b62009-02-26 21:10:26 +00002477/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002478void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002479 ObjCInterfaceDecl *ID) {
Devang Patel9ca36b62009-02-26 21:10:26 +00002480 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002481 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002482 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002483
Chris Lattner5f9e2722011-07-23 10:55:15 +00002484 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002485
Devang Pateld6c5a262010-02-01 21:52:22 +00002486 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002487 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002488
Devang Patel9ca36b62009-02-26 21:10:26 +00002489 // CodeGen turns int[] into int[1] so we'll do the same here.
2490 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002491
Devang Patel9ca36b62009-02-26 21:10:26 +00002492 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002493 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002494
Anders Carlsson20f12a22009-12-06 18:00:51 +00002495 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002496 ArrayType::Normal, 0);
2497 }
2498
Devang Patel16674e82011-02-22 18:56:36 +00002499 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002500 getOrCreateType(T, Unit),
2501 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002502}
Devang Patelabb485f2010-02-01 19:16:32 +00002503
Devang Patel25c2c8f2010-08-10 17:53:33 +00002504/// EmitGlobalVariable - Emit global variable's debug info.
2505void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002506 llvm::Constant *Init) {
Devang Patel8d308382010-08-10 07:24:25 +00002507 // Create the descriptor for the variable.
2508 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002509 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002510 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002511 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
2512 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
Devang Patel31f7d022011-01-17 22:23:07 +00002513 Ty = CreateEnumType(ED);
Devang Patel6237cea2010-08-23 22:07:25 +00002514 }
Devang Patel0317ab02010-08-10 18:27:15 +00002515 // Do not use DIGlobalVariable for enums.
2516 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2517 return;
Devang Patel16674e82011-02-22 18:56:36 +00002518 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002519 getLineNumber(VD->getLocation()),
2520 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002521}
2522
Devang Patelabb485f2010-02-01 19:16:32 +00002523/// getOrCreateNamesSpace - Return namespace descriptor for the given
2524/// namespace decl.
2525llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002526CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002527 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2528 NameSpaceCache.find(NSDecl);
2529 if (I != NameSpaceCache.end())
2530 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2531
Devang Patel8ab870d2010-05-12 23:46:38 +00002532 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002533 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002534 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002535 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002536 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002537 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002538 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002539 return NS;
2540}
Devang Patele80d5672011-03-23 16:29:39 +00002541
2542/// UpdateCompletedType - Update type cache because the type is now
2543/// translated.
2544void CGDebugInfo::UpdateCompletedType(const TagDecl *TD) {
2545 QualType Ty = CGM.getContext().getTagDeclType(TD);
2546
2547 // If the type exist in type cache then remove it from the cache.
2548 // There is no need to prepare debug info for the completed type
2549 // right now. It will be generated on demand lazily.
2550 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2551 TypeCache.find(Ty.getAsOpaquePtr());
2552 if (it != TypeCache.end())
2553 TypeCache.erase(it);
2554}