blob: 1392091e66e1719ef4d760a444c4c45e79a04697 [file] [log] [blame]
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001//===--- CGDebugInfo.cpp - Emit Debug Information for a Module ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This coordinates the debug information generation while generating code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CGDebugInfo.h"
Mike Stumpb1a6e682009-09-30 02:43:10 +000015#include "CodeGenFunction.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000016#include "CodeGenModule.h"
John McCalld16c2cf2011-02-08 08:22:06 +000017#include "CGBlocks.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000018#include "clang/AST/ASTContext.h"
Devang Patel2ed8f002010-08-27 17:47:47 +000019#include "clang/AST/DeclFriend.h"
Devang Patel9ca36b62009-02-26 21:10:26 +000020#include "clang/AST/DeclObjC.h"
Devang Patel700a1cb2010-07-20 20:24:18 +000021#include "clang/AST/DeclTemplate.h"
Chris Lattner3cc5c402008-11-11 07:01:36 +000022#include "clang/AST/Expr.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000023#include "clang/AST/RecordLayout.h"
Benjamin Kramer00bd44d2012-02-04 12:31:12 +000024#include "clang/Basic/SourceManager.h"
Benjamin Kramerd7a3e2c2012-02-07 22:29:24 +000025#include "clang/Basic/FileManager.h"
Mike Stump5a862172009-09-15 21:48:34 +000026#include "clang/Basic/Version.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000027#include "clang/Frontend/CodeGenOptions.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000028#include "llvm/Constants.h"
29#include "llvm/DerivedTypes.h"
30#include "llvm/Instructions.h"
31#include "llvm/Intrinsics.h"
32#include "llvm/Module.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000033#include "llvm/ADT/StringExtras.h"
34#include "llvm/ADT/SmallVector.h"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000035#include "llvm/Support/Dwarf.h"
Benjamin Kramerbcbca752011-10-14 18:45:11 +000036#include "llvm/Support/FileSystem.h"
John McCall6b5a61b2011-02-07 10:33:21 +000037#include "llvm/Target/TargetData.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000038using namespace clang;
39using namespace clang::CodeGen;
40
Anders Carlsson20f12a22009-12-06 18:00:51 +000041CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
Devang Patel823d8e92010-12-08 22:42:58 +000042 : CGM(CGM), DBuilder(CGM.getModule()),
Dan Gohman4cac5b42010-08-20 22:02:57 +000043 BlockLiteralGenericSet(false) {
Devang Patel17800552010-03-09 00:44:50 +000044 CreateCompileUnit();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000045}
46
Chris Lattner9c85ba32008-11-10 06:08:34 +000047CGDebugInfo::~CGDebugInfo() {
Eric Christopherab5278e2011-10-11 23:00:51 +000048 assert(LexicalBlockStack.empty() &&
49 "Region stack mismatch, stack not empty!");
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000050}
51
Chris Lattner9c85ba32008-11-10 06:08:34 +000052void CGDebugInfo::setLocation(SourceLocation Loc) {
Eric Christopher944542e2011-10-11 23:00:45 +000053 // If the new location isn't valid return.
54 if (!Loc.isValid()) return;
55
56 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
Eric Christopher73fb3502011-10-13 21:45:18 +000057
58 // If we've changed files in the middle of a lexical scope go ahead
59 // and create a new lexical scope with file node if it's different
60 // from the one in the scope.
61 if (LexicalBlockStack.empty()) return;
62
63 SourceManager &SM = CGM.getContext().getSourceManager();
64 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
65 PresumedLoc PPLoc = SM.getPresumedLoc(PrevLoc);
66
67 if (PCLoc.isInvalid() || PPLoc.isInvalid() ||
68 !strcmp(PPLoc.getFilename(), PCLoc.getFilename()))
69 return;
70
71 llvm::MDNode *LB = LexicalBlockStack.back();
72 llvm::DIScope Scope = llvm::DIScope(LB);
73 if (Scope.isLexicalBlockFile()) {
74 llvm::DILexicalBlockFile LBF = llvm::DILexicalBlockFile(LB);
75 llvm::DIDescriptor D
76 = DBuilder.createLexicalBlockFile(LBF.getScope(),
Devang Patel53bc5182012-02-08 00:10:20 +000077 getOrCreateFile(CurLoc));
Eric Christopher73fb3502011-10-13 21:45:18 +000078 llvm::MDNode *N = D;
79 LexicalBlockStack.pop_back();
80 LexicalBlockStack.push_back(N);
81 } else if (Scope.isLexicalBlock()) {
82 llvm::DIDescriptor D
83 = DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc));
84 llvm::MDNode *N = D;
85 LexicalBlockStack.pop_back();
86 LexicalBlockStack.push_back(N);
87 }
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000088}
89
Devang Patel33583052010-01-28 23:15:27 +000090/// getContextDescriptor - Get context info for the decl.
Devang Patel170cef32010-12-09 00:33:05 +000091llvm::DIDescriptor CGDebugInfo::getContextDescriptor(const Decl *Context) {
Devang Pateleb6d79b2010-02-01 21:34:11 +000092 if (!Context)
Devang Patel170cef32010-12-09 00:33:05 +000093 return TheCU;
Devang Pateleb6d79b2010-02-01 21:34:11 +000094
95 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
96 I = RegionMap.find(Context);
97 if (I != RegionMap.end())
Gabor Greif38c9b172010-09-18 13:00:17 +000098 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
Devang Patel411894b2010-02-01 22:40:08 +000099
Devang Pateleb6d79b2010-02-01 21:34:11 +0000100 // Check namespace.
101 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
Devang Patel170cef32010-12-09 00:33:05 +0000102 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
Devang Patel8b90a782010-05-13 23:52:37 +0000103
104 if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context)) {
105 if (!RDecl->isDependentType()) {
Devang Patela2e57692010-10-28 17:27:32 +0000106 llvm::DIType Ty = getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
Devang Patel170cef32010-12-09 00:33:05 +0000107 getOrCreateMainFile());
Devang Patel8b90a782010-05-13 23:52:37 +0000108 return llvm::DIDescriptor(Ty);
109 }
110 }
Devang Patel170cef32010-12-09 00:33:05 +0000111 return TheCU;
Devang Patel979ec2e2009-10-06 00:35:31 +0000112}
113
Devang Patel9c6c3a02010-01-14 00:36:21 +0000114/// getFunctionName - Get function name for the given FunctionDecl. If the
115/// name is constructred on demand (e.g. C++ destructor) then the name
116/// is stored on the side.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000117StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
Devang Patel9c6c3a02010-01-14 00:36:21 +0000118 assert (FD && "Invalid FunctionDecl!");
119 IdentifierInfo *FII = FD->getIdentifier();
120 if (FII)
121 return FII->getName();
122
123 // Otherwise construct human readable name for debug info.
124 std::string NS = FD->getNameAsString();
125
126 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +0000127 char *StrPtr = DebugInfoNames.Allocate<char>(NS.length());
Benjamin Kramer1b627dc2010-01-23 18:16:07 +0000128 memcpy(StrPtr, NS.data(), NS.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000129 return StringRef(StrPtr, NS.length());
Devang Patel9c6c3a02010-01-14 00:36:21 +0000130}
131
Chris Lattner5f9e2722011-07-23 10:55:15 +0000132StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000133 SmallString<256> MethodName;
David Chisnall52044a22010-09-02 18:01:51 +0000134 llvm::raw_svector_ostream OS(MethodName);
135 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
136 const DeclContext *DC = OMD->getDeclContext();
Devang Patela2e57692010-10-28 17:27:32 +0000137 if (const ObjCImplementationDecl *OID =
138 dyn_cast<const ObjCImplementationDecl>(DC)) {
David Chisnall52044a22010-09-02 18:01:51 +0000139 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000140 } else if (const ObjCInterfaceDecl *OID =
141 dyn_cast<const ObjCInterfaceDecl>(DC)) {
Fariborz Jahanian1a4c9372010-10-18 17:51:06 +0000142 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000143 } else if (const ObjCCategoryImplDecl *OCD =
144 dyn_cast<const ObjCCategoryImplDecl>(DC)){
David Chisnall52044a22010-09-02 18:01:51 +0000145 OS << ((NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
146 OCD->getIdentifier()->getNameStart() << ')';
147 }
148 OS << ' ' << OMD->getSelector().getAsString() << ']';
149
150 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
151 memcpy(StrPtr, MethodName.begin(), OS.tell());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000152 return StringRef(StrPtr, OS.tell());
David Chisnall52044a22010-09-02 18:01:51 +0000153}
154
Devang Patel1f15c192011-04-18 17:30:25 +0000155/// getSelectorName - Return selector name. This is used for debugging
Devang Patel90c1eed2011-04-16 00:37:51 +0000156/// info.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000157StringRef CGDebugInfo::getSelectorName(Selector S) {
Benjamin Kramer2b5cfbc2011-10-14 18:45:16 +0000158 const std::string &SName = S.getAsString();
159 char *StrPtr = DebugInfoNames.Allocate<char>(SName.size());
160 memcpy(StrPtr, SName.data(), SName.size());
161 return StringRef(StrPtr, SName.size());
Devang Patel90c1eed2011-04-16 00:37:51 +0000162}
163
Devang Patel700a1cb2010-07-20 20:24:18 +0000164/// getClassName - Get class name including template argument list.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000165StringRef
Eric Christopher9caf4402012-02-08 01:53:14 +0000166CGDebugInfo::getClassName(const RecordDecl *RD) {
167 const ClassTemplateSpecializationDecl *Spec
Devang Patel700a1cb2010-07-20 20:24:18 +0000168 = dyn_cast<ClassTemplateSpecializationDecl>(RD);
169 if (!Spec)
170 return RD->getName();
171
172 const TemplateArgument *Args;
173 unsigned NumArgs;
174 std::string Buffer;
175 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
176 const TemplateSpecializationType *TST =
177 cast<TemplateSpecializationType>(TAW->getType());
178 Args = TST->getArgs();
179 NumArgs = TST->getNumArgs();
180 } else {
181 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Douglas Gregor910f8002010-11-07 23:05:16 +0000182 Args = TemplateArgs.data();
183 NumArgs = TemplateArgs.size();
Devang Patel700a1cb2010-07-20 20:24:18 +0000184 }
185 Buffer = RD->getIdentifier()->getNameStart();
186 PrintingPolicy Policy(CGM.getLangOptions());
187 Buffer += TemplateSpecializationType::PrintTemplateArgumentList(Args,
188 NumArgs,
189 Policy);
190
191 // Copy this name on the side and use its reference.
192 char *StrPtr = DebugInfoNames.Allocate<char>(Buffer.length());
193 memcpy(StrPtr, Buffer.data(), Buffer.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000194 return StringRef(StrPtr, Buffer.length());
Devang Patel700a1cb2010-07-20 20:24:18 +0000195}
196
Devang Patel17800552010-03-09 00:44:50 +0000197/// getOrCreateFile - Get the file debug info descriptor for the input location.
198llvm::DIFile CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
Devang Patel823d8e92010-12-08 22:42:58 +0000199 if (!Loc.isValid())
200 // If Location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000201 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel823d8e92010-12-08 22:42:58 +0000202
Anders Carlsson20f12a22009-12-06 18:00:51 +0000203 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patel17800552010-03-09 00:44:50 +0000204 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Ted Kremenek9c250392010-03-30 00:27:51 +0000205
Chris Lattner5f9e2722011-07-23 10:55:15 +0000206 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
Douglas Gregor8c457a82010-11-11 20:45:16 +0000207 // If the location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000208 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Douglas Gregor8c457a82010-11-11 20:45:16 +0000209
Ted Kremenek9c250392010-03-30 00:27:51 +0000210 // Cache the results.
211 const char *fname = PLoc.getFilename();
212 llvm::DenseMap<const char *, llvm::WeakVH>::iterator it =
213 DIFileCache.find(fname);
214
215 if (it != DIFileCache.end()) {
216 // Verify that the information still exists.
217 if (&*it->second)
218 return llvm::DIFile(cast<llvm::MDNode>(it->second));
219 }
220
Devang Patel16674e82011-02-22 18:56:36 +0000221 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
Ted Kremenek9c250392010-03-30 00:27:51 +0000222
Devang Patelab699792010-05-07 18:12:35 +0000223 DIFileCache[fname] = F;
Ted Kremenek9c250392010-03-30 00:27:51 +0000224 return F;
Devang Patel17800552010-03-09 00:44:50 +0000225}
Devang Patel8ab870d2010-05-12 23:46:38 +0000226
Devang Patel532105f2010-10-28 22:03:20 +0000227/// getOrCreateMainFile - Get the file info for main compile unit.
228llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
Devang Patel16674e82011-02-22 18:56:36 +0000229 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel532105f2010-10-28 22:03:20 +0000230}
231
Devang Patel8ab870d2010-05-12 23:46:38 +0000232/// getLineNumber - Get line number for the location. If location is invalid
233/// then use current location.
234unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
Devang Patel362ed2a2012-02-06 23:24:13 +0000235 if (Loc.isInvalid() && CurLoc.isInvalid())
236 return 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000237 SourceManager &SM = CGM.getContext().getSourceManager();
238 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000239 return PLoc.isValid()? PLoc.getLine() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000240}
241
242/// getColumnNumber - Get column number for the location. If location is
243/// invalid then use current location.
244unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
Devang Patel362ed2a2012-02-06 23:24:13 +0000245 if (Loc.isInvalid() && CurLoc.isInvalid())
246 return 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000247 SourceManager &SM = CGM.getContext().getSourceManager();
248 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000249 return PLoc.isValid()? PLoc.getColumn() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000250}
251
Chris Lattner5f9e2722011-07-23 10:55:15 +0000252StringRef CGDebugInfo::getCurrentDirname() {
Nick Lewycky7c4fd912011-10-21 02:32:14 +0000253 if (!CGM.getCodeGenOpts().DebugCompilationDir.empty())
254 return CGM.getCodeGenOpts().DebugCompilationDir;
255
Devang Patelac4d13c2010-07-27 15:17:16 +0000256 if (!CWDName.empty())
257 return CWDName;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000258 SmallString<256> CWD;
Benjamin Kramerbcbca752011-10-14 18:45:11 +0000259 llvm::sys::fs::current_path(CWD);
260 char *CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
261 memcpy(CompDirnamePtr, CWD.data(), CWD.size());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000262 return CWDName = StringRef(CompDirnamePtr, CWD.size());
Devang Patelac4d13c2010-07-27 15:17:16 +0000263}
264
Devang Patel17800552010-03-09 00:44:50 +0000265/// CreateCompileUnit - Create new compile unit.
266void CGDebugInfo::CreateCompileUnit() {
267
268 // Get absolute path name.
Douglas Gregorac91b4c2010-03-18 23:46:43 +0000269 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000270 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
271 if (MainFileName.empty())
Devang Patel22fe5852010-03-12 21:04:27 +0000272 MainFileName = "<unknown>";
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000273
Douglas Gregorf6728fc2010-03-22 21:28:29 +0000274 // The main file name provided via the "-main-file-name" option contains just
275 // the file name itself with no path information. This file name may have had
276 // a relative path, so we look into the actual file entry for the main
277 // file to determine the real absolute path for the file.
Devang Patel6e6bc392010-07-23 23:04:28 +0000278 std::string MainFileDir;
Devang Patelac4d13c2010-07-27 15:17:16 +0000279 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000280 MainFileDir = MainFile->getDir()->getName();
Devang Patelac4d13c2010-07-27 15:17:16 +0000281 if (MainFileDir != ".")
282 MainFileName = MainFileDir + "/" + MainFileName;
283 }
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000284
Devang Patelac4d13c2010-07-27 15:17:16 +0000285 // Save filename string.
286 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
287 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000288 StringRef Filename(FilenamePtr, MainFileName.length());
Devang Patelac4d13c2010-07-27 15:17:16 +0000289
Chris Lattner515455a2009-03-25 03:28:08 +0000290 unsigned LangTag;
Devang Patel17800552010-03-09 00:44:50 +0000291 const LangOptions &LO = CGM.getLangOptions();
Chris Lattner515455a2009-03-25 03:28:08 +0000292 if (LO.CPlusPlus) {
293 if (LO.ObjC1)
294 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
295 else
296 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
297 } else if (LO.ObjC1) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000298 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner515455a2009-03-25 03:28:08 +0000299 } else if (LO.C99) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000300 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner515455a2009-03-25 03:28:08 +0000301 } else {
302 LangTag = llvm::dwarf::DW_LANG_C89;
303 }
Devang Patel446c6192009-04-17 21:06:59 +0000304
Daniel Dunbar19f19832010-08-24 17:41:09 +0000305 std::string Producer = getClangFullVersion();
Chris Lattner4c2577a2009-05-02 01:00:04 +0000306
307 // Figure out which version of the ObjC runtime we have.
308 unsigned RuntimeVers = 0;
309 if (LO.ObjC1)
310 RuntimeVers = LO.ObjCNonFragileABI ? 2 : 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000311
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000312 // Create new compile unit.
Devang Patel16674e82011-02-22 18:56:36 +0000313 DBuilder.createCompileUnit(
Devang Patel58115002010-07-27 20:49:59 +0000314 LangTag, Filename, getCurrentDirname(),
Devang Patel823d8e92010-12-08 22:42:58 +0000315 Producer,
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000316 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel823d8e92010-12-08 22:42:58 +0000317 // FIXME - Eliminate TheCU.
318 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000319}
320
Devang Patel65e99f22009-02-25 01:36:11 +0000321/// CreateType - Get the Basic type from the cache or create a new
Chris Lattner9c85ba32008-11-10 06:08:34 +0000322/// one if necessary.
Devang Patelf1d1d9a2010-11-01 16:52:40 +0000323llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000324 unsigned Encoding = 0;
Devang Patel05127ca2010-07-28 23:23:29 +0000325 const char *BTName = NULL;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000326 switch (BT->getKind()) {
John McCalle0a22d02011-10-18 21:02:43 +0000327#define BUILTIN_TYPE(Id, SingletonId)
328#define PLACEHOLDER_TYPE(Id, SingletonId) \
329 case BuiltinType::Id:
330#include "clang/AST/BuiltinTypes.def"
Devang Patele7566cf2011-09-12 18:50:21 +0000331 case BuiltinType::Dependent:
John McCalle0a22d02011-10-18 21:02:43 +0000332 llvm_unreachable("Unexpected builtin type");
Devang Patele7566cf2011-09-12 18:50:21 +0000333 case BuiltinType::NullPtr:
Devang Patelf60dca32011-09-14 23:14:14 +0000334 return DBuilder.
335 createNullPtrType(BT->getName(CGM.getContext().getLangOptions()));
Chris Lattner9c85ba32008-11-10 06:08:34 +0000336 case BuiltinType::Void:
337 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000338 case BuiltinType::ObjCClass:
Devang Patel16674e82011-02-22 18:56:36 +0000339 return DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000340 getOrCreateMainFile(), 0, 0, 0,
341 llvm::DIDescriptor::FlagFwdDecl,
342 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000343 case BuiltinType::ObjCId: {
344 // typedef struct objc_class *Class;
345 // typedef struct objc_object {
346 // Class isa;
347 // } *id;
348
349 llvm::DIType OCTy =
Devang Patel16674e82011-02-22 18:56:36 +0000350 DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000351 getOrCreateMainFile(), 0, 0, 0,
352 llvm::DIDescriptor::FlagFwdDecl,
353 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000354 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
355
Devang Patel16674e82011-02-22 18:56:36 +0000356 llvm::DIType ISATy = DBuilder.createPointerType(OCTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000357
Chris Lattner5f9e2722011-07-23 10:55:15 +0000358 SmallVector<llvm::Value *, 16> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000359 llvm::DIType FieldTy =
Devang Patel1d323e02011-06-24 22:00:59 +0000360 DBuilder.createMemberType(getOrCreateMainFile(), "isa",
361 getOrCreateMainFile(), 0, Size,
362 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000363 EltTys.push_back(FieldTy);
Jay Foadc556ef22011-04-24 10:11:03 +0000364 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patelc8972c62010-07-28 01:33:15 +0000365
Devang Patel16674e82011-02-22 18:56:36 +0000366 return DBuilder.createStructType(TheCU, "objc_object",
Devang Patel823d8e92010-12-08 22:42:58 +0000367 getOrCreateMainFile(),
368 0, 0, 0, 0, Elements);
Devang Patelc8972c62010-07-28 01:33:15 +0000369 }
Devang Patel6e108ce2011-02-09 03:15:05 +0000370 case BuiltinType::ObjCSel: {
Devang Patel16674e82011-02-22 18:56:36 +0000371 return DBuilder.createStructType(TheCU, "objc_selector",
Devang Patel6e108ce2011-02-09 03:15:05 +0000372 getOrCreateMainFile(), 0, 0, 0,
373 llvm::DIDescriptor::FlagFwdDecl,
374 llvm::DIArray());
375 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000376 case BuiltinType::UChar:
377 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
378 case BuiltinType::Char_S:
379 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patele8ee3f22011-09-12 17:11:58 +0000380 case BuiltinType::Char16:
381 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000382 case BuiltinType::UShort:
383 case BuiltinType::UInt:
Devang Patel31c79b42011-05-05 17:06:30 +0000384 case BuiltinType::UInt128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000385 case BuiltinType::ULong:
Devang Patel68f76b12011-09-10 00:44:49 +0000386 case BuiltinType::WChar_U:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000387 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
388 case BuiltinType::Short:
389 case BuiltinType::Int:
Devang Patel31c79b42011-05-05 17:06:30 +0000390 case BuiltinType::Int128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000391 case BuiltinType::Long:
Devang Patel68f76b12011-09-10 00:44:49 +0000392 case BuiltinType::WChar_S:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000393 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
394 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000395 case BuiltinType::Half:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000396 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000397 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000398 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000399 }
Devang Patel05127ca2010-07-28 23:23:29 +0000400
401 switch (BT->getKind()) {
402 case BuiltinType::Long: BTName = "long int"; break;
403 case BuiltinType::LongLong: BTName = "long long int"; break;
404 case BuiltinType::ULong: BTName = "long unsigned int"; break;
405 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
406 default:
407 BTName = BT->getName(CGM.getContext().getLangOptions());
408 break;
409 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000410 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000411 uint64_t Size = CGM.getContext().getTypeSize(BT);
412 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000413 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000414 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000415 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000416}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000417
Devang Patel344ff5d2010-12-09 00:25:29 +0000418llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000419 // Bit size, align and offset of the type.
420 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
421 if (Ty->isComplexIntegerType())
422 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000423
Anders Carlsson20f12a22009-12-06 18:00:51 +0000424 uint64_t Size = CGM.getContext().getTypeSize(Ty);
425 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000426 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000427 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel823d8e92010-12-08 22:42:58 +0000428
Devang Patelca80a5f2009-10-20 19:55:01 +0000429 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000430}
431
John McCalla1805292009-09-25 01:40:47 +0000432/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000433/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000434llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000435 QualifierCollector Qc;
436 const Type *T = Qc.strip(Ty);
437
438 // Ignore these qualifiers for now.
439 Qc.removeObjCGCAttr();
440 Qc.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +0000441 Qc.removeObjCLifetime();
John McCalla1805292009-09-25 01:40:47 +0000442
Chris Lattner9c85ba32008-11-10 06:08:34 +0000443 // We will create one Derived type for one qualifier and recurse to handle any
444 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000445 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000446 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000447 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000448 Qc.removeConst();
449 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000450 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000451 Qc.removeVolatile();
452 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000453 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000454 Qc.removeRestrict();
455 } else {
456 assert(Qc.empty() && "Unknown type qualifier for debug info");
457 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000458 }
Mike Stump1eb44332009-09-09 15:08:12 +0000459
John McCall49f4e1c2010-12-10 11:01:00 +0000460 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCalla1805292009-09-25 01:40:47 +0000461
Daniel Dunbar3845f862008-10-31 03:54:29 +0000462 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
463 // CVR derived types.
Devang Patel16674e82011-02-22 18:56:36 +0000464 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000465
Devang Patelca80a5f2009-10-20 19:55:01 +0000466 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000467}
468
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000469llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000470 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000471 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000472 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
473 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000474 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000475}
476
Chris Lattner9c85ba32008-11-10 06:08:34 +0000477llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000478 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000479 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
480 Ty->getPointeeType(), Unit);
481}
482
Eric Christopher5d613b52012-01-25 02:06:59 +0000483// Creates a forward declaration for a RecordDecl in the given context.
484llvm::DIType CGDebugInfo::createRecordFwdDecl(const RecordDecl *RD,
Devang Patel53bc5182012-02-08 00:10:20 +0000485 llvm::DIDescriptor Ctx) {
Eric Christopher5d613b52012-01-25 02:06:59 +0000486
487 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
488 unsigned Line = getLineNumber(RD->getLocation());
Eric Christopher9caf4402012-02-08 01:53:14 +0000489 StringRef RDName = RD->getName();
Eric Christopher2f764a92012-02-08 00:23:18 +0000490
491 // Get the tag.
Eric Christopher5d613b52012-01-25 02:06:59 +0000492 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Eric Christopher2f764a92012-02-08 00:23:18 +0000493 unsigned Tag = 0;
Eric Christopher9caf4402012-02-08 01:53:14 +0000494 if (CXXDecl) {
495 RDName = getClassName(RD);
Eric Christopher2f764a92012-02-08 00:23:18 +0000496 Tag = llvm::dwarf::DW_TAG_class_type;
Eric Christopher9caf4402012-02-08 01:53:14 +0000497 }
Eric Christopher5d613b52012-01-25 02:06:59 +0000498 else if (RD->isStruct())
Eric Christopher2f764a92012-02-08 00:23:18 +0000499 Tag = llvm::dwarf::DW_TAG_structure_type;
Eric Christopher5d613b52012-01-25 02:06:59 +0000500 else if (RD->isUnion())
Eric Christopher2f764a92012-02-08 00:23:18 +0000501 Tag = llvm::dwarf::DW_TAG_union_type;
Eric Christopher5d613b52012-01-25 02:06:59 +0000502 else
503 llvm_unreachable("Unknown RecordDecl type!");
Eric Christopher2f764a92012-02-08 00:23:18 +0000504
505 // Create the type.
Eric Christopher9caf4402012-02-08 01:53:14 +0000506 return DBuilder.createForwardDecl(Tag, RDName, DefUnit,
Eric Christopher2f764a92012-02-08 00:23:18 +0000507 Line);
Eric Christopher5d613b52012-01-25 02:06:59 +0000508}
509
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000510// Walk up the context chain and create forward decls for record decls,
511// and normal descriptors for namespaces.
512llvm::DIDescriptor CGDebugInfo::createContextChain(const Decl *Context) {
513 if (!Context)
514 return TheCU;
515
516 // See if we already have the parent.
517 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
518 I = RegionMap.find(Context);
519 if (I != RegionMap.end())
520 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
521
522 // Check namespace.
523 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
524 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
525
526 if (const RecordDecl *RD = dyn_cast<RecordDecl>(Context)) {
527 if (!RD->isDependentType()) {
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000528 llvm::DIDescriptor FDContext =
529 createContextChain(cast<Decl>(RD->getDeclContext()));
Eric Christopher5d613b52012-01-25 02:06:59 +0000530 llvm::DIType Ty = createRecordFwdDecl(RD, FDContext);
Eric Christopher2f764a92012-02-08 00:23:18 +0000531 TypeCache[QualType(RD->getTypeForDecl(),0).getAsOpaquePtr()] = Ty;
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000532 RegionMap[Context] = llvm::WeakVH(Ty);
533 return llvm::DIDescriptor(Ty);
534 }
535 }
536 return TheCU;
537}
538
Eric Christopheredc95922011-09-13 23:45:09 +0000539/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000540/// then emit record's fwd if debug info size reduction is enabled.
541llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
542 llvm::DIFile Unit) {
543 if (!CGM.getCodeGenOpts().LimitDebugInfo)
544 return getOrCreateType(PointeeTy, Unit);
Devang Patel41422512011-10-24 23:15:17 +0000545
546 // Limit debug info for the pointee type.
547
Eric Christopher973bbb62011-12-16 23:40:18 +0000548 // If we have an existing type, use that, it's still smaller than creating
549 // a new type.
550 llvm::DIType Ty = getTypeOrNull(PointeeTy);
551 if (Ty.Verify()) return Ty;
552
Devang Patel41422512011-10-24 23:15:17 +0000553 // Handle qualifiers.
554 if (PointeeTy.hasLocalQualifiers())
555 return CreateQualifiedType(PointeeTy, Unit);
556
Devang Patelc69e1cf2010-09-30 19:05:55 +0000557 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
558 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000559 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000560 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Eric Christopher2f764a92012-02-08 00:23:18 +0000561 llvm::DIType DTy = createRecordFwdDecl(RD, FDContext);
562 TypeCache[PointeeTy.getAsOpaquePtr()] = DTy;
Devang Patelc69e1cf2010-09-30 19:05:55 +0000563 }
564 return getOrCreateType(PointeeTy, Unit);
Devang Patelc69e1cf2010-09-30 19:05:55 +0000565}
566
Anders Carlssona031b352009-11-06 19:19:55 +0000567llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
568 const Type *Ty,
569 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000570 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000571 if (Tag == llvm::dwarf::DW_TAG_reference_type)
Devang Patel16674e82011-02-22 18:56:36 +0000572 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000573
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000574 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000575 // Size is always the size of a pointer. We can't use getTypeSize here
576 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000577 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000578 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000579 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000580
Nick Lewycky7480d962011-11-10 00:34:02 +0000581 return DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit),
582 Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000583}
584
Mike Stump9bc093c2009-05-14 02:03:51 +0000585llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000586 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000587 if (BlockLiteralGenericSet)
588 return BlockLiteralGeneric;
589
Chris Lattner5f9e2722011-07-23 10:55:15 +0000590 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000591 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000592 QualType FType;
593 uint64_t FieldSize, FieldOffset;
594 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000595 llvm::DIArray Elements;
596 llvm::DIType EltTy, DescTy;
597
598 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000599 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000600 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
601 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000602
Jay Foadc556ef22011-04-24 10:11:03 +0000603 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000604 EltTys.clear();
605
Devang Patele2472482010-09-29 21:05:52 +0000606 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000607 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000608
Devang Patel16674e82011-02-22 18:56:36 +0000609 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000610 Unit, LineNo, FieldOffset, 0,
611 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Mike Stump9bc093c2009-05-14 02:03:51 +0000613 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000614 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000615
Devang Patel16674e82011-02-22 18:56:36 +0000616 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000617
618 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000619 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000620 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000621 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000622 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
623 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000624 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000625 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000626
Anders Carlsson20f12a22009-12-06 18:00:51 +0000627 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000628 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000629 FieldSize = CGM.getContext().getTypeSize(Ty);
630 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000631 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000632 LineNo, FieldSize, FieldAlign,
633 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000634 EltTys.push_back(FieldTy);
635
636 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000637 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000638
Devang Patel16674e82011-02-22 18:56:36 +0000639 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000640 Unit, LineNo, FieldOffset, 0,
641 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Mike Stump9bc093c2009-05-14 02:03:51 +0000643 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000644 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000645 return BlockLiteralGeneric;
646}
647
Nick Lewycky7480d962011-11-10 00:34:02 +0000648llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty, llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000649 // Typedefs are derived from some other type. If we have a typedef of a
650 // typedef, make sure to emit the whole chain.
651 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000652 if (!Src.Verify())
653 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000654 // We don't set size information, but do specify where the typedef was
655 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000656 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000657 const TypedefNameDecl *TyDecl = Ty->getDecl();
Nick Lewycky7480d962011-11-10 00:34:02 +0000658 llvm::DIDescriptor TypedefContext =
Devang Patelc4903122011-06-03 17:23:47 +0000659 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
660
661 return
Nick Lewycky7480d962011-11-10 00:34:02 +0000662 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000663}
664
Chris Lattner9c85ba32008-11-10 06:08:34 +0000665llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000666 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000667 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000668
Chris Lattner9c85ba32008-11-10 06:08:34 +0000669 // Add the result type at least.
670 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000671
Chris Lattner9c85ba32008-11-10 06:08:34 +0000672 // Set up remainder of arguments if there is a prototype.
673 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000674 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000675 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Devang Patelaf164bb2010-10-06 20:51:45 +0000676 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Eric Christopher0086a5b2012-02-01 06:07:23 +0000677 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i) {
678 if (CGM.getCodeGenOpts().LimitDebugInfo)
679 EltTys.push_back(getOrCreateLimitedType(FTP->getArgType(i), Unit));
680 else
681 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
682 }
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000683 }
684
Jay Foadc556ef22011-04-24 10:11:03 +0000685 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Mike Stump1eb44332009-09-09 15:08:12 +0000686
Devang Patel16674e82011-02-22 18:56:36 +0000687 llvm::DIType DbgTy = DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patelca80a5f2009-10-20 19:55:01 +0000688 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000689}
690
Eric Christopher6faa5542012-01-26 01:57:13 +0000691void CGDebugInfo::
692CollectRecordStaticVars(const RecordDecl *RD, llvm::DIType FwdDecl) {
693
694 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
695 I != E; ++I)
696 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
697 if (V->getInit()) {
698 const APValue *Value = V->evaluateValue();
699 if (Value && Value->isInt()) {
700 llvm::ConstantInt *CI
701 = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
702
703 // Create the descriptor for static variable.
704 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
705 StringRef VName = V->getName();
706 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
707 // Do not use DIGlobalVariable for enums.
708 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
709 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
710 getLineNumber(V->getLocation()),
711 VTy, true, CI);
712 }
713 }
714 }
715 }
716}
717
Chris Lattner5f9e2722011-07-23 10:55:15 +0000718llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000719 QualType type,
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000720 uint64_t sizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000721 SourceLocation loc,
722 AccessSpecifier AS,
723 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000724 llvm::DIFile tunit,
725 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000726 llvm::DIType debugType = getOrCreateType(type, tunit);
727
728 // Get the location for the field.
729 llvm::DIFile file = getOrCreateFile(loc);
730 unsigned line = getLineNumber(loc);
731
732 uint64_t sizeInBits = 0;
733 unsigned alignInBits = 0;
734 if (!type->isIncompleteArrayType()) {
735 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
736
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000737 if (sizeInBitsOverride)
738 sizeInBits = sizeInBitsOverride;
John McCall8178df32011-02-22 22:38:33 +0000739 }
740
741 unsigned flags = 0;
742 if (AS == clang::AS_private)
743 flags |= llvm::DIDescriptor::FlagPrivate;
744 else if (AS == clang::AS_protected)
745 flags |= llvm::DIDescriptor::FlagProtected;
746
Devang Patel1d323e02011-06-24 22:00:59 +0000747 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
748 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000749}
750
Devang Patel428deb52010-01-19 00:00:59 +0000751/// CollectRecordFields - A helper function to collect debug info for
752/// record fields. This is used while creating debug info entry for a Record.
753void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000754CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000755 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000756 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000757 unsigned fieldNo = 0;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000758 const FieldDecl *LastFD = 0;
759 bool IsMsStruct = record->hasAttr<MsStructAttr>();
760
John McCall8178df32011-02-22 22:38:33 +0000761 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
762 for (RecordDecl::field_iterator I = record->field_begin(),
763 E = record->field_end();
764 I != E; ++I, ++fieldNo) {
765 FieldDecl *field = *I;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000766 if (IsMsStruct) {
767 // Zero-length bitfields following non-bitfield members are ignored
Fariborz Jahanian855a8e72011-05-03 20:21:04 +0000768 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000769 --fieldNo;
770 continue;
771 }
772 LastFD = field;
773 }
Devang Patel428deb52010-01-19 00:00:59 +0000774
Chris Lattner5f9e2722011-07-23 10:55:15 +0000775 StringRef name = field->getName();
John McCall8178df32011-02-22 22:38:33 +0000776 QualType type = field->getType();
777
778 // Ignore unnamed fields unless they're anonymous structs/unions.
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000779 if (name.empty() && !type->isRecordType()) {
780 LastFD = field;
Devang Patel428deb52010-01-19 00:00:59 +0000781 continue;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000782 }
Devang Patel428deb52010-01-19 00:00:59 +0000783
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000784 uint64_t SizeInBitsOverride = 0;
785 if (field->isBitField()) {
786 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
787 assert(SizeInBitsOverride && "found named 0-width bitfield");
788 }
789
John McCall8178df32011-02-22 22:38:33 +0000790 llvm::DIType fieldType
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000791 = createFieldType(name, type, SizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000792 field->getLocation(), field->getAccess(),
Devang Patel1d323e02011-06-24 22:00:59 +0000793 layout.getFieldOffset(fieldNo), tunit, RecordTy);
Devang Patel428deb52010-01-19 00:00:59 +0000794
John McCall8178df32011-02-22 22:38:33 +0000795 elements.push_back(fieldType);
Devang Patel428deb52010-01-19 00:00:59 +0000796 }
797}
798
Devang Patela6da1922010-01-28 00:28:01 +0000799/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
800/// function type is not updated to include implicit "this" pointer. Use this
801/// routine to get a method type which includes "this" pointer.
802llvm::DIType
803CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000804 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000805 llvm::DIType FnTy
806 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
807 0),
808 Unit);
Devang Pateld774d1e2010-01-28 21:43:50 +0000809
Devang Patela6da1922010-01-28 00:28:01 +0000810 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000811 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000812 assert (Args.getNumElements() && "Invalid number of arguments!");
813
Chris Lattner5f9e2722011-07-23 10:55:15 +0000814 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000815
816 // First element is always return type. For 'void' functions it is NULL.
817 Elts.push_back(Args.getElement(0));
818
Eric Christopher2121cda2011-09-14 01:10:50 +0000819 if (!Method->isStatic()) {
820 // "this" pointer is always first argument.
821 QualType ThisPtr = Method->getThisType(CGM.getContext());
Devang Patelef8857d2011-10-28 21:12:13 +0000822
823 const CXXRecordDecl *RD = Method->getParent();
824 if (isa<ClassTemplateSpecializationDecl>(RD)) {
825 // Create pointer type directly in this case.
826 const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
827 QualType PointeeTy = ThisPtrTy->getPointeeType();
828 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
829 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
830 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000831 llvm::DIType PointeeType = getOrCreateType(PointeeTy, Unit);
Devang Patelef8857d2011-10-28 21:12:13 +0000832 llvm::DIType ThisPtrType =
833 DBuilder.createArtificialType
834 (DBuilder.createPointerType(PointeeType, Size, Align));
835 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
836 Elts.push_back(ThisPtrType);
837 } else {
838 llvm::DIType ThisPtrType =
839 DBuilder.createArtificialType(getOrCreateType(ThisPtr, Unit));
840 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
841 Elts.push_back(ThisPtrType);
842 }
Eric Christopher2121cda2011-09-14 01:10:50 +0000843 }
Devang Patela6da1922010-01-28 00:28:01 +0000844
845 // Copy rest of the arguments.
846 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
847 Elts.push_back(Args.getElement(i));
848
Jay Foadc556ef22011-04-24 10:11:03 +0000849 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000850
Devang Patel16674e82011-02-22 18:56:36 +0000851 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000852}
853
Devang Patel58faf202010-10-22 17:11:50 +0000854/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
855/// inside a function.
856static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
Nick Lewycky7480d962011-11-10 00:34:02 +0000857 if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000858 return isFunctionLocalClass(NRD);
Nick Lewycky7480d962011-11-10 00:34:02 +0000859 if (isa<FunctionDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000860 return true;
861 return false;
Devang Patel58faf202010-10-22 17:11:50 +0000862}
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000863
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000864/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
865/// a single member function GlobalDecl.
866llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000867CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000868 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000869 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000870 bool IsCtorOrDtor =
871 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
872
Chris Lattner5f9e2722011-07-23 10:55:15 +0000873 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000874 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000875
876 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
877 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000878 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000879 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000880 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000881
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000882 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000883 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
884 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000885
886 // Collect virtual method info.
887 llvm::DIType ContainingType;
888 unsigned Virtuality = 0;
889 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000890
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000891 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000892 if (Method->isPure())
893 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
894 else
895 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
896
897 // It doesn't make sense to give a virtual destructor a vtable index,
898 // since a single destructor has two entries in the vtable.
899 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000900 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000901 ContainingType = RecordTy;
902 }
903
Devang Patele2472482010-09-29 21:05:52 +0000904 unsigned Flags = 0;
905 if (Method->isImplicit())
906 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000907 AccessSpecifier Access = Method->getAccess();
908 if (Access == clang::AS_private)
909 Flags |= llvm::DIDescriptor::FlagPrivate;
910 else if (Access == clang::AS_protected)
911 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000912 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
913 if (CXXC->isExplicit())
914 Flags |= llvm::DIDescriptor::FlagExplicit;
915 } else if (const CXXConversionDecl *CXXC =
916 dyn_cast<CXXConversionDecl>(Method)) {
917 if (CXXC->isExplicit())
918 Flags |= llvm::DIDescriptor::FlagExplicit;
919 }
Devang Patel3951e712010-10-07 22:03:49 +0000920 if (Method->hasPrototype())
921 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Pateld78a0192010-10-01 23:32:17 +0000922
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000923 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000924 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000925 MethodDefUnit, MethodLine,
926 MethodTy, /*isLocalToUnit=*/false,
927 /* isDefinition=*/ false,
928 Virtuality, VIndex, ContainingType,
929 Flags, CGM.getLangOptions().Optimize);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000930
Eric Christopherdeae6a82011-11-17 23:45:00 +0000931 SPCache[Method->getCanonicalDecl()] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000932
933 return SP;
934}
935
Devang Patel4125fd22010-01-19 01:54:44 +0000936/// CollectCXXMemberFunctions - A helper function to collect debug info for
Eric Christopher7c9b2fd2012-01-12 01:26:51 +0000937/// C++ member functions. This is used while creating debug info entry for
Devang Patel4125fd22010-01-19 01:54:44 +0000938/// a Record.
939void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000940CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000941 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000942 llvm::DIType RecordTy) {
Devang Patel239cec62010-02-01 21:39:52 +0000943 for(CXXRecordDecl::method_iterator I = RD->method_begin(),
944 E = RD->method_end(); I != E; ++I) {
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000945 const CXXMethodDecl *Method = *I;
Anders Carlssonbea9b232010-01-26 04:40:11 +0000946
Devang Pateld5322da2010-02-09 19:09:28 +0000947 if (Method->isImplicit() && !Method->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +0000948 continue;
Devang Patel4125fd22010-01-19 01:54:44 +0000949
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000950 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +0000951 }
952}
953
Devang Patel2ed8f002010-08-27 17:47:47 +0000954/// CollectCXXFriends - A helper function to collect debug info for
955/// C++ base classes. This is used while creating debug info entry for
956/// a Record.
957void CGDebugInfo::
958CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000959 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +0000960 llvm::DIType RecordTy) {
Eric Christopher121c67d2012-01-12 01:26:58 +0000961 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
Devang Patel2ed8f002010-08-27 17:47:47 +0000962 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +0000963 if ((*BI)->isUnsupportedFriend())
964 continue;
Devang Patel823d8e92010-12-08 22:42:58 +0000965 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +0000966 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000967 getOrCreateType(TInfo->getType(),
968 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +0000969 }
970}
971
Devang Patela245c5b2010-01-25 23:32:18 +0000972/// CollectCXXBases - A helper function to collect debug info for
973/// C++ base classes. This is used while creating debug info entry for
974/// a Record.
975void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000976CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000977 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000978 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +0000979
Devang Patel239cec62010-02-01 21:39:52 +0000980 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
981 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
982 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +0000983 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +0000984 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +0000985
986 const CXXRecordDecl *Base =
987 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
988
989 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +0000990 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +0000991 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +0000992 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000993 0 - CGM.getVTableContext()
994 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +0000995 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +0000996 } else
Devang Patel62c117d2011-04-04 20:36:06 +0000997 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Ken Dyck14c65ca2011-04-07 12:37:09 +0000998 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
999 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +00001000
1001 AccessSpecifier Access = BI->getAccessSpecifier();
1002 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +00001003 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +00001004 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +00001005 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +00001006
Devang Patel823d8e92010-12-08 22:42:58 +00001007 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +00001008 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +00001009 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +00001010 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +00001011 EltTys.push_back(DTy);
1012 }
Devang Patela245c5b2010-01-25 23:32:18 +00001013}
1014
Devang Patel5ecb1df2011-04-05 22:54:11 +00001015/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +00001016llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +00001017CollectTemplateParams(const TemplateParameterList *TPList,
1018 const TemplateArgumentList &TAList,
1019 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001020 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +00001021 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
1022 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +00001023 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +00001024 if (TA.getKind() == TemplateArgument::Type) {
1025 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
1026 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001027 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +00001028 TemplateParams.push_back(TTP);
1029 } else if (TA.getKind() == TemplateArgument::Integral) {
1030 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +00001031 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001032 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
1033 TA.getAsIntegral()->getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +00001034 TemplateParams.push_back(TVP);
1035 }
1036 }
Jay Foadc556ef22011-04-24 10:11:03 +00001037 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +00001038}
1039
Devang Patel5ecb1df2011-04-05 22:54:11 +00001040/// CollectFunctionTemplateParams - A helper function to collect debug
1041/// info for function template parameters.
1042llvm::DIArray CGDebugInfo::
1043CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherab5278e2011-10-11 23:00:51 +00001044 if (FD->getTemplatedKind() ==
1045 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patel5ecb1df2011-04-05 22:54:11 +00001046 const TemplateParameterList *TList =
Eric Christopherab5278e2011-10-11 23:00:51 +00001047 FD->getTemplateSpecializationInfo()->getTemplate()
1048 ->getTemplateParameters();
Devang Patel5ecb1df2011-04-05 22:54:11 +00001049 return
1050 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
1051 }
1052 return llvm::DIArray();
1053}
1054
1055/// CollectCXXTemplateParams - A helper function to collect debug info for
1056/// template parameters.
1057llvm::DIArray CGDebugInfo::
1058CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
1059 llvm::DIFile Unit) {
1060 llvm::PointerUnion<ClassTemplateDecl *,
1061 ClassTemplatePartialSpecializationDecl *>
1062 PU = TSpecial->getSpecializedTemplateOrPartial();
1063
1064 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
1065 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
1066 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
1067 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
1068 return CollectTemplateParams(TPList, TAList, Unit);
1069}
1070
Devang Patel4ce3f202010-01-28 18:11:52 +00001071/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +00001072llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +00001073 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +00001074 return VTablePtrType;
1075
1076 ASTContext &Context = CGM.getContext();
1077
1078 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +00001079 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +00001080 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +00001081 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +00001082 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +00001083 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001084 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +00001085 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +00001086 return VTablePtrType;
1087}
1088
Anders Carlsson046c2942010-04-17 20:15:18 +00001089/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001090StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Eric Christopher51cb75a2012-01-25 21:47:09 +00001091 // Construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +00001092 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +00001093
1094 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +00001095 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001096 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001097 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001098}
1099
1100
Anders Carlsson046c2942010-04-17 20:15:18 +00001101/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +00001102/// debug info entry in EltTys vector.
1103void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +00001104CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001105 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +00001106 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +00001107
1108 // If there is a primary base then it will hold vtable info.
1109 if (RL.getPrimaryBase())
1110 return;
1111
1112 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +00001113 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +00001114 return;
1115
1116 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1117 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +00001118 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001119 0, Size, 0, 0, 0,
1120 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +00001121 EltTys.push_back(VPTR);
1122}
1123
Devang Patelc69e1cf2010-09-30 19:05:55 +00001124/// getOrCreateRecordType - Emit record type's standalone debug info.
1125llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1126 SourceLocation Loc) {
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001127 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patel16674e82011-02-22 18:56:36 +00001128 DBuilder.retainType(T);
Devang Patelc69e1cf2010-09-30 19:05:55 +00001129 return T;
1130}
1131
Devang Patel65e99f22009-02-25 01:36:11 +00001132/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +00001133llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001134 RecordDecl *RD = Ty->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001135
Chris Lattner9c85ba32008-11-10 06:08:34 +00001136 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001137 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1138 unsigned Line = getLineNumber(RD->getLocation());
Eric Christopherde983d82012-01-26 02:05:28 +00001139 StringRef RDName = RD->getName();
Mike Stump1eb44332009-09-09 15:08:12 +00001140
Chris Lattner9c85ba32008-11-10 06:08:34 +00001141 // Records and classes and unions can all be recursive. To handle them, we
1142 // first generate a debug descriptor for the struct as a forward declaration.
1143 // Then (if it is a definition) we go through and get debug info for all of
1144 // its members. Finally, we create a descriptor for the complete type (which
1145 // may refer to the forward decl if the struct is recursive) and replace all
1146 // uses of the forward declaration with the final definition.
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001147
Eric Christopherde983d82012-01-26 02:05:28 +00001148 llvm::DIDescriptor RDContext;
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001149 if (CGM.getCodeGenOpts().LimitDebugInfo)
Eric Christopherde983d82012-01-26 02:05:28 +00001150 RDContext = createContextChain(cast<Decl>(RD->getDeclContext()));
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001151 else
Eric Christopherde983d82012-01-26 02:05:28 +00001152 RDContext = getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel0b897992010-07-08 19:56:29 +00001153
1154 // If this is just a forward declaration, construct an appropriately
1155 // marked node and just return it.
Eric Christopher2f764a92012-02-08 00:23:18 +00001156 if (!RD->getDefinition()) {
1157 llvm::DIType FwdTy = createRecordFwdDecl(RD, RDContext);
1158 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdTy;
1159 return FwdTy;
1160 }
Devang Pateld0f251b2010-01-20 23:56:40 +00001161
Eric Christopher2f764a92012-02-08 00:23:18 +00001162 // Create a temporary type here - different than normal forward declared
1163 // types.
Devang Patel16674e82011-02-22 18:56:36 +00001164 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001165
Devang Patelab699792010-05-07 18:12:35 +00001166 llvm::MDNode *MN = FwdDecl;
1167 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001168 // Otherwise, insert it into the TypeCache so that recursive uses will find
1169 // it.
Devang Patelab699792010-05-07 18:12:35 +00001170 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001171 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001172 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001173 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001174
1175 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001176 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001177
Eric Christopher1c081d92012-01-26 07:01:04 +00001178 // Note: The split of CXXDecl information here is intentional, the
1179 // gdb tests will depend on a certain ordering at printout. The debug
1180 // information offsets are still correct if we merge them all together
1181 // though.
Devang Pateld6c5a262010-02-01 21:52:22 +00001182 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +00001183 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001184 CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl);
1185 CollectVTableInfo(CXXDecl, DefUnit, EltTys);
Eric Christopher1c081d92012-01-26 07:01:04 +00001186 }
1187
1188 // Collect static variables with initializers and other fields.
1189 CollectRecordStaticVars(RD, FwdDecl);
1190 CollectRecordFields(RD, DefUnit, EltTys, FwdDecl);
1191 llvm::DIArray TParamsArray;
1192 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001193 CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl);
1194 CollectCXXFriends(CXXDecl, DefUnit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001195 if (const ClassTemplateSpecializationDecl *TSpecial
1196 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
Eric Christopher3ee8c912012-01-26 06:20:57 +00001197 TParamsArray = CollectCXXTemplateParams(TSpecial, DefUnit);
Devang Patel823d8e92010-12-08 22:42:58 +00001198 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001199
Eric Christopheraa2164c2011-09-29 00:00:45 +00001200 LexicalBlockStack.pop_back();
Devang Patel823d8e92010-12-08 22:42:58 +00001201 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1202 RegionMap.find(Ty->getDecl());
1203 if (RI != RegionMap.end())
1204 RegionMap.erase(RI);
1205
Devang Patel823d8e92010-12-08 22:42:58 +00001206 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1207 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Jay Foadc556ef22011-04-24 10:11:03 +00001208 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel823d8e92010-12-08 22:42:58 +00001209 llvm::MDNode *RealDecl = NULL;
1210
Devang Patel5c5b5872011-02-28 22:32:45 +00001211 if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +00001212 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
Devang Patel5c5b5872011-02-28 22:32:45 +00001213 Size, Align, 0, Elements);
1214 else if (CXXDecl) {
Devang Patel823d8e92010-12-08 22:42:58 +00001215 RDName = getClassName(RD);
1216 // A class's primary base or the class itself contains the vtable.
1217 llvm::MDNode *ContainingType = NULL;
Devang Pateld6c5a262010-02-01 21:52:22 +00001218 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel5bc794f2010-10-14 22:59:23 +00001219 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1220 // Seek non virtual primary base root.
1221 while (1) {
1222 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1223 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
Anders Carlssonc9e814b2010-11-24 23:12:57 +00001224 if (PBT && !BRL.isPrimaryBaseVirtual())
Devang Patel5bc794f2010-10-14 22:59:23 +00001225 PBase = PBT;
1226 else
1227 break;
1228 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001229 ContainingType =
Eric Christopher3ee8c912012-01-26 06:20:57 +00001230 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), DefUnit);
Devang Patel5bc794f2010-10-14 22:59:23 +00001231 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001232 else if (CXXDecl->isDynamicClass())
Devang Patelab699792010-05-07 18:12:35 +00001233 ContainingType = FwdDecl;
Devang Patel9c1714b2011-04-05 17:30:54 +00001234
Eric Christopher435e1062011-12-16 23:40:14 +00001235 // FIXME: This could be a struct type giving a default visibility different
1236 // than C++ class type, but needs llvm metadata changes first.
1237 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
1238 Size, Align, 0, 0, llvm::DIType(),
1239 Elements, ContainingType,
1240 TParamsArray);
1241 } else
Devang Patel5c5b5872011-02-28 22:32:45 +00001242 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1243 Size, Align, 0, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +00001244
Chris Lattner9c85ba32008-11-10 06:08:34 +00001245 // Now that we have a real decl for the struct, replace anything using the
1246 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001247 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001248 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
Devang Patel823d8e92010-12-08 22:42:58 +00001249 return llvm::DIType(RealDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001250}
1251
John McCallc12c5bb2010-05-15 11:32:37 +00001252/// CreateType - get objective-c object type.
1253llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1254 llvm::DIFile Unit) {
1255 // Ignore protocols.
1256 return getOrCreateType(Ty->getBaseType(), Unit);
1257}
1258
Devang Patel9ca36b62009-02-26 21:10:26 +00001259/// CreateType - get objective-c interface type.
1260llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001261 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001262 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001263 if (!ID)
1264 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001265
1266 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001267 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001268 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001269 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001270
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001271 // If this is just a forward declaration return a special forward-declaration
1272 // debug type since we won't be able to lay out the entire type.
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001273 ObjCInterfaceDecl *Def = ID->getDefinition();
1274 if (!Def) {
Devang Patel823d8e92010-12-08 22:42:58 +00001275 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001276 DBuilder.createStructType(Unit, ID->getName(),
Eric Christopherd5a3b782011-11-29 23:57:40 +00001277 DefUnit, Line, 0, 0,
1278 llvm::DIDescriptor::FlagFwdDecl,
Devang Patel823d8e92010-12-08 22:42:58 +00001279 llvm::DIArray(), RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001280 return FwdDecl;
1281 }
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001282 ID = Def;
Dan Gohman45f7c782010-08-23 21:15:56 +00001283
Eric Christopher1cd1d742011-10-06 00:30:52 +00001284 // To handle a recursive interface, we first generate a debug descriptor
1285 // for the struct as a forward declaration. Then (if it is a definition)
1286 // we go through and get debug info for all of its members. Finally, we
1287 // create a descriptor for the complete type (which may refer to the
1288 // forward decl if the struct is recursive) and replace all uses of the
1289 // forward declaration with the final definition.
Devang Patel16674e82011-02-22 18:56:36 +00001290 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001291
Devang Patelab699792010-05-07 18:12:35 +00001292 llvm::MDNode *MN = FwdDecl;
1293 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Devang Patel9ca36b62009-02-26 21:10:26 +00001294 // Otherwise, insert it into the TypeCache so that recursive uses will find
1295 // it.
Devang Patelab699792010-05-07 18:12:35 +00001296 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001297 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001298 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001299 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001300
1301 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001302 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001303
Devang Pateld6c5a262010-02-01 21:52:22 +00001304 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001305 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001306 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001307 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001308 if (!SClassTy.isValid())
1309 return llvm::DIType();
1310
Mike Stump1eb44332009-09-09 15:08:12 +00001311 llvm::DIType InhTag =
Devang Patel16674e82011-02-22 18:56:36 +00001312 DBuilder.createInheritance(FwdDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001313 EltTys.push_back(InhTag);
1314 }
1315
Devang Patel693fcaa2012-02-07 18:40:30 +00001316 for (ObjCContainerDecl::prop_iterator I = ID->prop_begin(),
1317 E = ID->prop_end(); I != E; ++I) {
1318 const ObjCPropertyDecl *PD = *I;
1319 llvm::MDNode *PropertyNode =
1320 DBuilder.createObjCProperty(PD->getName(),
Devang Patel7fb86302012-02-07 18:55:08 +00001321 getSelectorName(PD->getGetterName()),
1322 getSelectorName(PD->getSetterName()),
1323 PD->getPropertyAttributes());
Devang Patel693fcaa2012-02-07 18:40:30 +00001324 EltTys.push_back(PropertyNode);
1325 }
1326
Devang Pateld6c5a262010-02-01 21:52:22 +00001327 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00001328 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001329 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001330 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001331 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001332 if (!FieldTy.isValid())
1333 return llvm::DIType();
1334
Chris Lattner5f9e2722011-07-23 10:55:15 +00001335 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001336
Devang Patelde135022009-04-27 22:40:36 +00001337 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001338 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001339 continue;
1340
Devang Patel9ca36b62009-02-26 21:10:26 +00001341 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001342 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1343 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001344 QualType FType = Field->getType();
1345 uint64_t FieldSize = 0;
1346 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001347
Devang Patel99c20eb2009-03-20 18:24:39 +00001348 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001349
Devang Patel99c20eb2009-03-20 18:24:39 +00001350 // Bit size, align and offset of the type.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001351 FieldSize = Field->isBitField()
1352 ? Field->getBitWidthValue(CGM.getContext())
1353 : CGM.getContext().getTypeSize(FType);
1354 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001355 }
1356
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001357 // We can't know the offset of our ivar in the structure if we're using
1358 // the non-fragile abi and the debugger should ignore the value anyways.
1359 // Call it the FieldNo+1 due to how debuggers use the information,
1360 // e.g. negating the value when it needs a lookup in the dynamic table.
1361 uint64_t FieldOffset = CGM.getLangOptions().ObjCNonFragileABI ? FieldNo+1
1362 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001363
Devang Patelc20482b2009-03-19 00:23:53 +00001364 unsigned Flags = 0;
1365 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001366 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001367 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001368 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001369
Devang Patel693a70d2012-02-04 01:15:04 +00001370 llvm::MDNode *PropertyNode = NULL;
Devang Patel693fcaa2012-02-07 18:40:30 +00001371 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) {
Devang Patel8c6f9c42011-09-19 18:54:16 +00001372 if (ObjCPropertyImplDecl *PImpD =
Devang Patel693fcaa2012-02-07 18:40:30 +00001373 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) {
1374 if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) {
Devang Patel7fb86302012-02-07 18:55:08 +00001375 PropertyNode =
1376 DBuilder.createObjCProperty(PD->getName(),
Devang Patel693fcaa2012-02-07 18:40:30 +00001377 getSelectorName(PD->getGetterName()),
1378 getSelectorName(PD->getSetterName()),
1379 PD->getPropertyAttributes());
Devang Patel53bc5182012-02-08 00:10:20 +00001380 }
Devang Patel693fcaa2012-02-07 18:40:30 +00001381 }
Devang Patel693a70d2012-02-04 01:15:04 +00001382 }
Devang Patelfa936d82011-04-16 00:12:55 +00001383 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1384 FieldLine, FieldSize, FieldAlign,
1385 FieldOffset, Flags, FieldTy,
Devang Patel5f3c7fa2012-02-06 18:20:02 +00001386 PropertyNode);
Devang Patel9ca36b62009-02-26 21:10:26 +00001387 EltTys.push_back(FieldTy);
1388 }
Mike Stump1eb44332009-09-09 15:08:12 +00001389
Jay Foadc556ef22011-04-24 10:11:03 +00001390 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel9ca36b62009-02-26 21:10:26 +00001391
Eric Christopheraa2164c2011-09-29 00:00:45 +00001392 LexicalBlockStack.pop_back();
Devang Patele4c1ea02010-03-11 20:01:48 +00001393 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1394 RegionMap.find(Ty->getDecl());
1395 if (RI != RegionMap.end())
1396 RegionMap.erase(RI);
1397
Devang Patel9ca36b62009-02-26 21:10:26 +00001398 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001399 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1400 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001401
Devang Patel707b1e92011-05-12 19:07:41 +00001402 unsigned Flags = 0;
Devang Patelf568b642011-05-12 21:14:54 +00001403 if (ID->getImplementation())
Devang Patelaad16092011-05-12 21:29:57 +00001404 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
Devang Patel707b1e92011-05-12 19:07:41 +00001405
Devang Patel823d8e92010-12-08 22:42:58 +00001406 llvm::DIType RealDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001407 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
Devang Patel707b1e92011-05-12 19:07:41 +00001408 Line, Size, Align, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001409 Elements, RuntimeLang);
Devang Patel9ca36b62009-02-26 21:10:26 +00001410
1411 // Now that we have a real decl for the struct, replace anything using the
1412 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001413 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001414 RegionMap[ID] = llvm::WeakVH(RealDecl);
Devang Patelfe09eab2009-07-13 17:03:14 +00001415
Devang Patel9ca36b62009-02-26 21:10:26 +00001416 return RealDecl;
1417}
1418
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001419llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty, llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001420 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001421 int64_t NumElems = Ty->getNumElements();
1422 int64_t LowerBound = 0;
1423 if (NumElems == 0)
1424 // If number of elements are not known then this is an unbounded array.
1425 // Use Low = 1, Hi = 0 to express such arrays.
1426 LowerBound = 1;
1427 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001428 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001429
Devang Patel6cf37dd2011-04-08 21:56:52 +00001430 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001431 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001432
1433 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1434 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1435
1436 return
Devang Patel16674e82011-02-22 18:56:36 +00001437 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001438}
1439
Chris Lattner9c85ba32008-11-10 06:08:34 +00001440llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001441 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001442 uint64_t Size;
1443 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001444
1445
Nuno Lopes010d5142009-01-28 00:35:17 +00001446 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001447 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001448 Size = 0;
1449 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001450 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001451 } else if (Ty->isIncompleteArrayType()) {
1452 Size = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001453 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001454 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001455 Size = 0;
1456 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001457 } else {
1458 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001459 Size = CGM.getContext().getTypeSize(Ty);
1460 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001461 }
Mike Stump1eb44332009-09-09 15:08:12 +00001462
Chris Lattner9c85ba32008-11-10 06:08:34 +00001463 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1464 // interior arrays, do we care? Why aren't nested arrays represented the
1465 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001466 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001467 QualType EltTy(Ty, 0);
Devang Patelcdf523c2010-10-06 18:30:00 +00001468 if (Ty->isIncompleteArrayType())
Chris Lattner9c85ba32008-11-10 06:08:34 +00001469 EltTy = Ty->getElementType();
Devang Patelcdf523c2010-10-06 18:30:00 +00001470 else {
1471 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
Devang Patel6cf37dd2011-04-08 21:56:52 +00001472 int64_t UpperBound = 0;
1473 int64_t LowerBound = 0;
Nick Lewycky3894c072011-04-09 00:25:15 +00001474 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
Devang Patelcdf523c2010-10-06 18:30:00 +00001475 if (CAT->getSize().getZExtValue())
Devang Patel6cf37dd2011-04-08 21:56:52 +00001476 UpperBound = CAT->getSize().getZExtValue() - 1;
Nick Lewycky3894c072011-04-09 00:25:15 +00001477 } else
Devang Patel6cf37dd2011-04-08 21:56:52 +00001478 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1479 // arrays.
1480 LowerBound = 1;
1481
Devang Patelcdf523c2010-10-06 18:30:00 +00001482 // FIXME: Verify this is right for VLAs.
Eric Christopherab5278e2011-10-11 23:00:51 +00001483 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1484 UpperBound));
Devang Patelcdf523c2010-10-06 18:30:00 +00001485 EltTy = Ty->getElementType();
1486 }
Sanjiv Gupta507de852008-06-09 10:47:41 +00001487 }
Mike Stump1eb44332009-09-09 15:08:12 +00001488
Jay Foadc556ef22011-04-24 10:11:03 +00001489 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001490
Devang Patelca80a5f2009-10-20 19:55:01 +00001491 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001492 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001493 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001494 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001495}
1496
Anders Carlssona031b352009-11-06 19:19:55 +00001497llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001498 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001499 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1500 Ty, Ty->getPointeeType(), Unit);
1501}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001502
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001503llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1504 llvm::DIFile Unit) {
1505 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1506 Ty, Ty->getPointeeType(), Unit);
1507}
1508
Anders Carlsson20f12a22009-12-06 18:00:51 +00001509llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001510 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001511 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1512 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1513
1514 if (!Ty->getPointeeType()->isFunctionType()) {
1515 // We have a data member pointer type.
1516 return PointerDiffDITy;
1517 }
1518
1519 // We have a member function pointer type. Treat it as a struct with two
1520 // ptrdiff_t members.
1521 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1522
1523 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001524 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001525
1526 // FIXME: This should probably be a function type instead.
1527 ElementTypes[0] =
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 FieldOffset += Info.first;
1532
1533 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001534 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001535 Info.first, Info.second, FieldOffset, 0,
1536 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001537
Jay Foadc556ef22011-04-24 10:11:03 +00001538 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001539
Chris Lattner5f9e2722011-07-23 10:55:15 +00001540 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001541 U, 0, FieldOffset,
1542 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001543}
1544
Eli Friedmanb001de72011-10-06 23:00:33 +00001545llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1546 llvm::DIFile U) {
1547 // Ignore the atomic wrapping
1548 // FIXME: What is the correct representation?
1549 return getOrCreateType(Ty->getValueType(), U);
1550}
1551
Devang Patel6237cea2010-08-23 22:07:25 +00001552/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001553llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1554 llvm::DIFile Unit = getOrCreateFile(ED->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001555 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001556
1557 // Create DIEnumerator elements for each enumerator.
1558 for (EnumDecl::enumerator_iterator
1559 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1560 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001561 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001562 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001563 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001564 }
1565
1566 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001567 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001568
1569 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1570 unsigned Line = getLineNumber(ED->getLocation());
1571 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001572 uint64_t Align = 0;
1573 if (!ED->getTypeForDecl()->isIncompleteType()) {
1574 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1575 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1576 }
Devang Patel4bc48872010-10-27 23:23:58 +00001577 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001578 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Devang Patel6237cea2010-08-23 22:07:25 +00001579 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001580 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001581 Size, Align, EltArray);
Devang Patel6237cea2010-08-23 22:07:25 +00001582 return DbgTy;
1583}
1584
Douglas Gregor840943d2009-12-21 20:18:30 +00001585static QualType UnwrapTypeForDebugInfo(QualType T) {
1586 do {
1587 QualType LastT = T;
1588 switch (T->getTypeClass()) {
1589 default:
1590 return T;
1591 case Type::TemplateSpecialization:
1592 T = cast<TemplateSpecializationType>(T)->desugar();
1593 break;
John McCallf4c73712011-01-19 06:33:43 +00001594 case Type::TypeOfExpr:
1595 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001596 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001597 case Type::TypeOf:
1598 T = cast<TypeOfType>(T)->getUnderlyingType();
1599 break;
1600 case Type::Decltype:
1601 T = cast<DecltypeType>(T)->getUnderlyingType();
1602 break;
Sean Huntca63c202011-05-24 22:41:36 +00001603 case Type::UnaryTransform:
1604 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1605 break;
John McCall9d156a72011-01-06 01:58:22 +00001606 case Type::Attributed:
1607 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001608 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001609 case Type::Elaborated:
1610 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001611 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001612 case Type::Paren:
1613 T = cast<ParenType>(T)->getInnerType();
1614 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001615 case Type::SubstTemplateTypeParm:
1616 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1617 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001618 case Type::Auto:
1619 T = cast<AutoType>(T)->getDeducedType();
1620 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001621 }
1622
1623 assert(T != LastT && "Type unwrapping failed to unwrap!");
1624 if (T == LastT)
1625 return T;
1626 } while (true);
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001627}
1628
Eric Christopher973bbb62011-12-16 23:40:18 +00001629/// getType - Get the type from the cache or return null type if it doesn't exist.
1630llvm::DIType CGDebugInfo::getTypeOrNull(QualType Ty) {
Mike Stump1eb44332009-09-09 15:08:12 +00001631
Douglas Gregor840943d2009-12-21 20:18:30 +00001632 // Unwrap the type as needed for debug information.
1633 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher2f764a92012-02-08 00:23:18 +00001634
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001635 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001636 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001637 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001638 if (it != TypeCache.end()) {
1639 // Verify that the debug info still exists.
1640 if (&*it->second)
1641 return llvm::DIType(cast<llvm::MDNode>(it->second));
1642 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001643
Eric Christopher973bbb62011-12-16 23:40:18 +00001644 return llvm::DIType();
1645}
1646
1647/// getOrCreateType - Get the type from the cache or create a new
1648/// one if necessary.
1649llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile Unit) {
1650 if (Ty.isNull())
1651 return llvm::DIType();
1652
1653 // Unwrap the type as needed for debug information.
1654 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher271ce542012-02-01 23:39:00 +00001655
1656 // Check if we already have the type. If we've gotten here and
1657 // have a forward declaration of the type we may want the full type.
1658 // Go ahead and create it if that's the case.
Eric Christopher973bbb62011-12-16 23:40:18 +00001659 llvm::DIType T = getTypeOrNull(Ty);
Eric Christopher271ce542012-02-01 23:39:00 +00001660 if (T.Verify() && !T.isForwardDecl()) return T;
Eric Christopher973bbb62011-12-16 23:40:18 +00001661
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001662 // Otherwise create the type.
1663 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001664
1665 // And update the type cache.
Eric Christopher2f764a92012-02-08 00:23:18 +00001666 TypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001667 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001668}
1669
Eric Christopher0086a5b2012-02-01 06:07:23 +00001670/// getOrCreateLimitedType - Get the type from the cache or create a new
1671/// limited type if necessary.
1672llvm::DIType CGDebugInfo::getOrCreateLimitedType(QualType Ty,
Devang Patel53bc5182012-02-08 00:10:20 +00001673 llvm::DIFile Unit) {
Eric Christopher0086a5b2012-02-01 06:07:23 +00001674 if (Ty.isNull())
1675 return llvm::DIType();
1676
1677 // Unwrap the type as needed for debug information.
1678 Ty = UnwrapTypeForDebugInfo(Ty);
1679
1680 llvm::DIType T = getTypeOrNull(Ty);
1681 if (T.Verify()) return T;
1682
1683 // Otherwise create the type.
1684 llvm::DIType Res = CreateLimitedTypeNode(Ty, Unit);
1685
1686 // And update the type cache.
1687 TypeCache[Ty.getAsOpaquePtr()] = Res;
1688 return Res;
1689}
1690
1691// TODO: Not safe to use for inner types or for fields. Currently only
1692// used for by value arguments to functions anything else needs to be
1693// audited carefully.
1694llvm::DIType CGDebugInfo::CreateLimitedType(const RecordType *Ty) {
1695 RecordDecl *RD = Ty->getDecl();
1696
1697 // For templated records we want the full type information and
1698 // our forward decls don't handle this correctly.
1699 if (isa<ClassTemplateSpecializationDecl>(RD))
1700 return CreateType(Ty);
1701
1702 llvm::DIDescriptor RDContext
1703 = createContextChain(cast<Decl>(RD->getDeclContext()));
1704
1705 return createRecordFwdDecl(RD, RDContext);
1706}
1707
1708/// CreateLimitedTypeNode - Create a new debug type node, but only forward
1709/// declare composite types that haven't been processed yet.
1710llvm::DIType CGDebugInfo::CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) {
1711
1712 // Work out details of type.
1713 switch (Ty->getTypeClass()) {
1714#define TYPE(Class, Base)
1715#define ABSTRACT_TYPE(Class, Base)
1716#define NON_CANONICAL_TYPE(Class, Base)
1717#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1718 #include "clang/AST/TypeNodes.def"
1719 llvm_unreachable("Dependent types cannot show up in debug information");
1720
1721 case Type::Record:
1722 return CreateLimitedType(cast<RecordType>(Ty));
1723 default:
1724 return CreateTypeNode(Ty, Unit);
1725 }
1726}
1727
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001728/// CreateTypeNode - Create a new debug type node.
Nick Lewycky7b3819d2011-11-09 04:27:23 +00001729llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001730 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001731 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001732 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001733
Douglas Gregor2101a822009-12-21 19:57:21 +00001734 const char *Diag = 0;
1735
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001736 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001737 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001738#define TYPE(Class, Base)
1739#define ABSTRACT_TYPE(Class, Base)
1740#define NON_CANONICAL_TYPE(Class, Base)
1741#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1742#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001743 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001744
Anders Carlssonbfe69952009-11-06 18:24:04 +00001745 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001746 case Type::Vector:
1747 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001748 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001749 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001750 case Type::ObjCObject:
1751 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001752 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001753 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001754 case Type::Builtin:
1755 return CreateType(cast<BuiltinType>(Ty));
1756 case Type::Complex:
1757 return CreateType(cast<ComplexType>(Ty));
1758 case Type::Pointer:
1759 return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001760 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001761 return CreateType(cast<BlockPointerType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001762 case Type::Typedef:
1763 return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001764 case Type::Record:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001765 return CreateType(cast<RecordType>(Ty));
Douglas Gregor72564e72009-02-26 23:50:07 +00001766 case Type::Enum:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001767 return CreateEnumType(cast<EnumType>(Ty)->getDecl());
Chris Lattner9c85ba32008-11-10 06:08:34 +00001768 case Type::FunctionProto:
1769 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001770 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001771 case Type::ConstantArray:
1772 case Type::VariableArray:
1773 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001774 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001775
1776 case Type::LValueReference:
1777 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001778 case Type::RValueReference:
1779 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001780
Anders Carlsson20f12a22009-12-06 18:00:51 +00001781 case Type::MemberPointer:
1782 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001783
Eli Friedmanb001de72011-10-06 23:00:33 +00001784 case Type::Atomic:
1785 return CreateType(cast<AtomicType>(Ty), Unit);
1786
John McCall9d156a72011-01-06 01:58:22 +00001787 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001788 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001789 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001790 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001791 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001792 case Type::TypeOfExpr:
1793 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001794 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001795 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001796 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001797 llvm_unreachable("type should have been unwrapped!");
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001798 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001799
1800 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001801 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001802 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001803 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001804 << Diag;
1805 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001806}
1807
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001808/// CreateMemberType - Create new member and increase Offset by FType's size.
1809llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001810 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001811 uint64_t *Offset) {
1812 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1813 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1814 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001815 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001816 FieldSize, FieldAlign,
1817 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001818 *Offset += FieldSize;
1819 return Ty;
1820}
1821
Devang Patel120bf322011-04-23 00:08:01 +00001822/// getFunctionDeclaration - Return debug info descriptor to describe method
1823/// declaration for the given method definition.
1824llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1825 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1826 if (!FD) return llvm::DISubprogram();
1827
1828 // Setup context.
1829 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1830
Devang Patel22a5cdf2011-04-29 23:42:32 +00001831 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001832 MI = SPCache.find(FD->getCanonicalDecl());
Devang Patel22a5cdf2011-04-29 23:42:32 +00001833 if (MI != SPCache.end()) {
1834 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1835 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1836 return SP;
1837 }
1838
Devang Patel120bf322011-04-23 00:08:01 +00001839 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1840 E = FD->redecls_end(); I != E; ++I) {
1841 const FunctionDecl *NextFD = *I;
1842 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001843 MI = SPCache.find(NextFD->getCanonicalDecl());
Devang Patel120bf322011-04-23 00:08:01 +00001844 if (MI != SPCache.end()) {
1845 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1846 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1847 return SP;
1848 }
1849 }
1850 return llvm::DISubprogram();
1851}
1852
Devang Patel1c296522011-05-31 20:46:46 +00001853// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1854// implicit parameter "this".
Eric Christopherab5278e2011-10-11 23:00:51 +00001855llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D,
1856 QualType FnType,
Devang Patel1c296522011-05-31 20:46:46 +00001857 llvm::DIFile F) {
1858 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1859 return getOrCreateMethodType(Method, F);
Nick Lewycky7480d962011-11-10 00:34:02 +00001860 if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00001861 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001862 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00001863
1864 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00001865 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00001866 // "self" pointer is always first argument.
1867 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
1868 // "cmd" pointer is always second argument.
1869 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Pateld127bcb2011-05-31 22:21:11 +00001870 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001871 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00001872 PE = OMethod->param_end(); PI != PE; ++PI)
1873 Elts.push_back(getOrCreateType((*PI)->getType(), F));
1874
Devang Patelc478f212011-05-31 21:18:50 +00001875 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1876 return DBuilder.createSubroutineType(F, EltTypeArray);
1877 }
Devang Patel1c296522011-05-31 20:46:46 +00001878 return getOrCreateType(FnType, F);
1879}
1880
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001881/// EmitFunctionStart - Constructs the debug code for entering a function -
1882/// "llvm.dbg.func.start.".
Devang Patel9c6c3a02010-01-14 00:36:21 +00001883void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001884 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001885 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00001886
Chris Lattner5f9e2722011-07-23 10:55:15 +00001887 StringRef Name;
1888 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001889
Eric Christopheraa2164c2011-09-29 00:00:45 +00001890 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001891
Devang Patel9c6c3a02010-01-14 00:36:21 +00001892 const Decl *D = GD.getDecl();
Eric Christopher73fb3502011-10-13 21:45:18 +00001893
Devang Patel3951e712010-10-07 22:03:49 +00001894 unsigned Flags = 0;
Devang Patel0692f832010-10-11 21:58:41 +00001895 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1896 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00001897 llvm::DIArray TParamsArray;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001898 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Eric Christopherbf979472011-11-14 18:55:02 +00001899 // If there is a DISubprogram for this function available then use it.
Devang Patel4125fd22010-01-19 01:54:44 +00001900 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001901 FI = SPCache.find(FD->getCanonicalDecl());
Devang Patel4125fd22010-01-19 01:54:44 +00001902 if (FI != SPCache.end()) {
Gabor Greif38c9b172010-09-18 13:00:17 +00001903 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelab699792010-05-07 18:12:35 +00001904 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1905 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001906 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001907 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00001908 return;
1909 }
1910 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00001911 Name = getFunctionName(FD);
1912 // Use mangled name as linkage name for c/c++ functions.
Devang Patela87a2b22011-05-02 22:49:30 +00001913 if (!Fn->hasInternalLinkage())
Devang Patel2df74c02011-05-02 22:37:48 +00001914 LinkageName = CGM.getMangledName(GD);
Devang Patel58faf202010-10-22 17:11:50 +00001915 if (LinkageName == Name)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001916 LinkageName = StringRef();
Devang Patel3951e712010-10-07 22:03:49 +00001917 if (FD->hasPrototype())
1918 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel0692f832010-10-11 21:58:41 +00001919 if (const NamespaceDecl *NSDecl =
1920 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
Devang Patel170cef32010-12-09 00:33:05 +00001921 FDContext = getOrCreateNameSpace(NSDecl);
Devang Patelbc6a1912011-05-17 00:20:09 +00001922 else if (const RecordDecl *RDecl =
1923 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
1924 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00001925
1926 // Collect template parameters.
1927 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
David Chisnall70b9b442010-09-02 17:16:32 +00001928 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00001929 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00001930 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001931 } else {
Devang Patel58faf202010-10-22 17:11:50 +00001932 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00001933 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00001934 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001935 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001936 if (!Name.empty() && Name[0] == '\01')
1937 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001938
Devang Patel970c6182010-04-24 00:49:16 +00001939 // It is expected that CurLoc is set before using EmitFunctionStart.
1940 // Usually, CurLoc points to the left bracket location of compound
1941 // statement representing function body.
Devang Patel8ab870d2010-05-12 23:46:38 +00001942 unsigned LineNo = getLineNumber(CurLoc);
Devang Patele2472482010-09-29 21:05:52 +00001943 if (D->isImplicit())
1944 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel120bf322011-04-23 00:08:01 +00001945 llvm::DISubprogram SPDecl = getFunctionDeclaration(D);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001946 llvm::DISubprogram SP =
Devang Patel16674e82011-02-22 18:56:36 +00001947 DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
Devang Patel1c296522011-05-31 20:46:46 +00001948 LineNo, getOrCreateFunctionType(D, FnType, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001949 Fn->hasInternalLinkage(), true/*definition*/,
Devang Patel5ecb1df2011-04-05 22:54:11 +00001950 Flags, CGM.getLangOptions().Optimize, Fn,
Devang Patel120bf322011-04-23 00:08:01 +00001951 TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001952
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001953 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00001954 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001955 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001956 RegionMap[D] = llvm::WeakVH(SP);
Eric Christopher69a1b742011-09-29 00:00:37 +00001957}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001958
Eric Christopher5321bc42011-09-29 00:00:41 +00001959/// EmitLocation - Emit metadata to indicate a change in line/column
1960/// information in the source file.
Eric Christopher73fb3502011-10-13 21:45:18 +00001961void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
1962
1963 // Update our current location
1964 setLocation(Loc);
1965
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001966 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001967
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001968 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001969 SourceManager &SM = CGM.getContext().getSourceManager();
Eric Christopher73fb3502011-10-13 21:45:18 +00001970 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00001971 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00001972 // New Builder may not be in sync with CGDebugInfo.
1973 if (!Builder.getCurrentDebugLocation().isUnknown())
1974 return;
Eric Christopher414ee4b2011-09-29 00:00:35 +00001975
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001976 // Update last state.
1977 PrevLoc = CurLoc;
1978
Eric Christopheraa2164c2011-09-29 00:00:45 +00001979 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00001980 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
1981 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00001982 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001983}
1984
Eric Christopher73fb3502011-10-13 21:45:18 +00001985/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
1986/// the stack.
1987void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
Devang Patel8fae0602009-11-13 19:10:24 +00001988 llvm::DIDescriptor D =
Eric Christopher73fb3502011-10-13 21:45:18 +00001989 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
Devang Patel53bc5182012-02-08 00:10:20 +00001990 llvm::DIDescriptor() :
1991 llvm::DIDescriptor(LexicalBlockStack.back()),
1992 getOrCreateFile(CurLoc),
1993 getLineNumber(CurLoc),
1994 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00001995 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001996 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001997}
1998
Eric Christopher73fb3502011-10-13 21:45:18 +00001999/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
2000/// region - beginning of a DW_TAG_lexical_block.
2001void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) {
2002 // Set our current location.
2003 setLocation(Loc);
2004
2005 // Create a new lexical block and push it on the stack.
2006 CreateLexicalBlock(Loc);
2007
2008 // Emit a line table change for the current location inside the new scope.
2009 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
Devang Patel53bc5182012-02-08 00:10:20 +00002010 getColumnNumber(Loc),
2011 LexicalBlockStack.back()));
Eric Christopher73fb3502011-10-13 21:45:18 +00002012}
2013
Eric Christopheraa2164c2011-09-29 00:00:45 +00002014/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00002015/// region - end of a DW_TAG_lexical_block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002016void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002017 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00002018
Eric Christopher73fb3502011-10-13 21:45:18 +00002019 // Provide an entry in the line table for the end of the block.
2020 EmitLocation(Builder, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +00002021
Eric Christopheraa2164c2011-09-29 00:00:45 +00002022 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002023}
2024
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002025/// EmitFunctionEnd - Constructs the debug code for exiting a function.
2026void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002027 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002028 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00002029 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002030
2031 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00002032 while (LexicalBlockStack.size() != RCount)
Eric Christopher73fb3502011-10-13 21:45:18 +00002033 EmitLexicalBlockEnd(Builder, CurLoc);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002034 FnBeginRegionCount.pop_back();
2035}
2036
Devang Patel809b9bb2010-02-10 18:49:08 +00002037// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
2038// See BuildByRefType.
2039llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
2040 uint64_t *XOffset) {
2041
Chris Lattner5f9e2722011-07-23 10:55:15 +00002042 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00002043 QualType FType;
2044 uint64_t FieldSize, FieldOffset;
2045 unsigned FieldAlign;
2046
Devang Patel17800552010-03-09 00:44:50 +00002047 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002048 QualType Type = VD->getType();
2049
2050 FieldOffset = 0;
2051 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002052 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2053 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002054 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002055 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2056 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2057
John McCall6b5a61b2011-02-07 10:33:21 +00002058 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00002059 if (HasCopyAndDispose) {
2060 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002061 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
2062 &FieldOffset));
2063 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
2064 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002065 }
2066
2067 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00002068 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002069 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00002070 CharUnits FieldOffsetInBytes
2071 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
2072 CharUnits AlignedOffsetInBytes
2073 = FieldOffsetInBytes.RoundUpToAlignment(Align);
2074 CharUnits NumPaddingBytes
2075 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00002076
Ken Dyck573be632011-04-22 17:34:18 +00002077 if (NumPaddingBytes.isPositive()) {
2078 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00002079 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2080 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002081 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002082 }
2083 }
2084
2085 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002086 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00002087 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00002088 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00002089
2090 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00002091 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002092 0, FieldSize, FieldAlign,
2093 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00002094 EltTys.push_back(FieldTy);
2095 FieldOffset += FieldSize;
2096
Jay Foadc556ef22011-04-24 10:11:03 +00002097 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00002098
Devang Patele2472482010-09-29 21:05:52 +00002099 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00002100
Devang Patel16674e82011-02-22 18:56:36 +00002101 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00002102 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00002103}
Devang Patel823d8e92010-12-08 22:42:58 +00002104
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002105/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00002106void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00002107 llvm::Value *Storage,
2108 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002109 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00002110
Devang Patel17800552010-03-09 00:44:50 +00002111 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002112 llvm::DIType Ty;
2113 uint64_t XOffset = 0;
2114 if (VD->hasAttr<BlocksAttr>())
2115 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2116 else
2117 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00002118
Devang Patelf4e54a22010-05-07 23:05:55 +00002119 // If there is not any debug info for type then do not emit debug info
2120 // for this variable.
2121 if (!Ty)
2122 return;
2123
Devang Patel34753802011-02-16 01:11:51 +00002124 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
2125 // If Storage is an aggregate returned as 'sret' then let debugger know
2126 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00002127 if (Arg->hasStructRetAttr())
Devang Patel16674e82011-02-22 18:56:36 +00002128 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00002129 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
2130 // If an aggregate variable has non trivial destructor or non trivial copy
2131 // constructor than it is pass indirectly. Let debug info know about this
2132 // by using reference of the aggregate type as a argument type.
Eric Christopherab5278e2011-10-11 23:00:51 +00002133 if (!Record->hasTrivialCopyConstructor() ||
2134 !Record->hasTrivialDestructor())
Devang Patel16674e82011-02-22 18:56:36 +00002135 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00002136 }
2137 }
Devang Patel0691f932011-02-10 00:40:52 +00002138
Chris Lattner9c85ba32008-11-10 06:08:34 +00002139 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002140 unsigned Line = getLineNumber(VD->getLocation());
2141 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00002142 unsigned Flags = 0;
2143 if (VD->isImplicit())
2144 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002145 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00002146
Chris Lattner5f9e2722011-07-23 10:55:15 +00002147 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002148 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002149 if (VD->hasAttr<BlocksAttr>()) {
2150 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002151 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002152 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002153 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002154 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002155 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002156 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002157 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002158 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2159 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002160 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002161 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002162 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2163
2164 // Create the descriptor for the variable.
2165 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002166 DBuilder.createComplexVariable(Tag,
Eric Christopherab5278e2011-10-11 23:00:51 +00002167 llvm::DIDescriptor(Scope),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002168 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002169 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002170
2171 // Insert an llvm.dbg.declare into the current block.
2172 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002173 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002174 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2175 return;
2176 }
2177 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002178 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002179 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002180 Name, Unit, Line, Ty,
Devang Patel093ac462011-03-03 20:13:15 +00002181 CGM.getLangOptions().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002182
2183 // Insert an llvm.dbg.declare into the current block.
2184 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002185 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002186 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002187 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002188 }
2189
2190 // If VD is an anonymous union then Storage represents value for
2191 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002192 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2193 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2194 if (RD->isUnion()) {
2195 for (RecordDecl::field_iterator I = RD->field_begin(),
2196 E = RD->field_end();
2197 I != E; ++I) {
2198 FieldDecl *Field = *I;
2199 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002200 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002201
John McCall8178df32011-02-22 22:38:33 +00002202 // Ignore unnamed fields. Do not ignore unnamed records.
2203 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2204 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002205
John McCall8178df32011-02-22 22:38:33 +00002206 // Use VarDecl's Tag, Scope and Line number.
2207 llvm::DIVariable D =
2208 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2209 FieldName, Unit, Line, FieldTy,
Devang Patel093ac462011-03-03 20:13:15 +00002210 CGM.getLangOptions().Optimize, Flags,
2211 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002212
John McCall8178df32011-02-22 22:38:33 +00002213 // Insert an llvm.dbg.declare into the current block.
2214 llvm::Instruction *Call =
2215 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
John McCall8178df32011-02-22 22:38:33 +00002216 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002217 }
John McCall8178df32011-02-22 22:38:33 +00002218 }
2219 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002220}
2221
Devang Patele2d01912011-04-25 23:43:36 +00002222void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2223 llvm::Value *Storage,
2224 CGBuilderTy &Builder) {
2225 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2226}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002227
Devang Patele2d01912011-04-25 23:43:36 +00002228void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2229 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2230 const CGBlockInfo &blockInfo) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002231 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002232
Devang Patel2b594b92010-04-26 23:28:46 +00002233 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002234 return;
Devang Patele2d01912011-04-25 23:43:36 +00002235
John McCall6b5a61b2011-02-07 10:33:21 +00002236 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002237
Mike Stumpb1a6e682009-09-30 02:43:10 +00002238 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002239 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002240 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002241 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002242 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2243 else
2244 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002245
2246 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002247 unsigned Line = getLineNumber(VD->getLocation());
2248 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002249
John McCall6b5a61b2011-02-07 10:33:21 +00002250 const llvm::TargetData &target = CGM.getTargetData();
2251
2252 CharUnits offset = CharUnits::fromQuantity(
2253 target.getStructLayout(blockInfo.StructureType)
2254 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2255
Chris Lattner5f9e2722011-07-23 10:55:15 +00002256 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002257 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002258 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002259 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002260 if (isByRef) {
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 __forwarding field
Eric Christopherab5278e2011-10-11 23:00:51 +00002264 offset = CGM.getContext()
2265 .toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattner14b1a362010-01-25 03:29:35 +00002266 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002267 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2268 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002269 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002270 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002271 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002272 }
2273
2274 // Create the descriptor for the variable.
2275 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002276 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002277 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002278 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002279 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002280 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002281 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Eric Christopher73fb3502011-10-13 21:45:18 +00002282 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2283 LexicalBlockStack.back()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002284}
2285
Chris Lattner9c85ba32008-11-10 06:08:34 +00002286/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2287/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002288void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002289 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002290 CGBuilderTy &Builder) {
Devang Patel093ac462011-03-03 20:13:15 +00002291 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002292}
2293
John McCall8178df32011-02-22 22:38:33 +00002294namespace {
2295 struct BlockLayoutChunk {
2296 uint64_t OffsetInBits;
2297 const BlockDecl::Capture *Capture;
2298 };
2299 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2300 return l.OffsetInBits < r.OffsetInBits;
2301 }
2302}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002303
John McCall8178df32011-02-22 22:38:33 +00002304void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2305 llvm::Value *addr,
2306 CGBuilderTy &Builder) {
2307 ASTContext &C = CGM.getContext();
2308 const BlockDecl *blockDecl = block.getBlockDecl();
2309
2310 // Collect some general information about the block's location.
2311 SourceLocation loc = blockDecl->getCaretLocation();
2312 llvm::DIFile tunit = getOrCreateFile(loc);
2313 unsigned line = getLineNumber(loc);
2314 unsigned column = getColumnNumber(loc);
2315
2316 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002317 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002318
2319 const llvm::StructLayout *blockLayout =
2320 CGM.getTargetData().getStructLayout(block.StructureType);
2321
Chris Lattner5f9e2722011-07-23 10:55:15 +00002322 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002323 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2324 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002325 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002326 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2327 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002328 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002329 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2330 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002331 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002332 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2333 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002334 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002335 fields.push_back(createFieldType("__descriptor",
2336 C.getPointerType(block.NeedsCopyDispose ?
2337 C.getBlockDescriptorExtendedType() :
2338 C.getBlockDescriptorType()),
2339 0, loc, AS_public,
2340 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002341 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002342
2343 // We want to sort the captures by offset, not because DWARF
2344 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002345 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002346
2347 // 'this' capture.
2348 if (blockDecl->capturesCXXThis()) {
2349 BlockLayoutChunk chunk;
2350 chunk.OffsetInBits =
2351 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2352 chunk.Capture = 0;
2353 chunks.push_back(chunk);
2354 }
2355
2356 // Variable captures.
2357 for (BlockDecl::capture_const_iterator
2358 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2359 i != e; ++i) {
2360 const BlockDecl::Capture &capture = *i;
2361 const VarDecl *variable = capture.getVariable();
2362 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2363
2364 // Ignore constant captures.
2365 if (captureInfo.isConstant())
2366 continue;
2367
2368 BlockLayoutChunk chunk;
2369 chunk.OffsetInBits =
2370 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2371 chunk.Capture = &capture;
2372 chunks.push_back(chunk);
2373 }
2374
2375 // Sort by offset.
2376 llvm::array_pod_sort(chunks.begin(), chunks.end());
2377
Chris Lattner5f9e2722011-07-23 10:55:15 +00002378 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002379 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2380 uint64_t offsetInBits = i->OffsetInBits;
2381 const BlockDecl::Capture *capture = i->Capture;
2382
2383 // If we have a null capture, this must be the C++ 'this' capture.
2384 if (!capture) {
2385 const CXXMethodDecl *method =
2386 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2387 QualType type = method->getThisType(C);
2388
2389 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002390 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002391 continue;
2392 }
2393
2394 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002395 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002396
2397 llvm::DIType fieldType;
2398 if (capture->isByRef()) {
2399 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2400
2401 // FIXME: this creates a second copy of this type!
2402 uint64_t xoffset;
2403 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2404 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002405 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002406 ptrInfo.first, ptrInfo.second,
2407 offsetInBits, 0, fieldType);
2408 } else {
2409 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002410 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002411 }
2412 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002413 }
2414
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002415 SmallString<36> typeName;
John McCall8178df32011-02-22 22:38:33 +00002416 llvm::raw_svector_ostream(typeName)
2417 << "__block_literal_" << CGM.getUniqueBlockCount();
2418
Jay Foadc556ef22011-04-24 10:11:03 +00002419 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002420
2421 llvm::DIType type =
2422 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2423 CGM.getContext().toBits(block.BlockSize),
2424 CGM.getContext().toBits(block.BlockAlign),
2425 0, fieldsArray);
2426 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2427
2428 // Get overall information about the block.
2429 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002430 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002431 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002432
2433 // Create the descriptor for the parameter.
2434 llvm::DIVariable debugVar =
2435 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2436 llvm::DIDescriptor(scope),
2437 name, tunit, line, type,
Devang Patel093ac462011-03-03 20:13:15 +00002438 CGM.getLangOptions().Optimize, flags,
2439 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002440
2441 // Insert an llvm.dbg.value into the current block.
2442 llvm::Instruction *declare =
2443 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2444 Builder.GetInsertBlock());
2445 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2446}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002447
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002448/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002449void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002450 const VarDecl *D) {
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002451 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002452 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002453 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002454
Eric Christopher73fb3502011-10-13 21:45:18 +00002455 setLocation(D->getLocation());
2456
Devang Pateleb6d79b2010-02-01 21:34:11 +00002457 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002458 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002459
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002460 // CodeGen turns int[] into int[1] so we'll do the same here.
2461 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002462
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002463 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002464 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002465
Anders Carlsson20f12a22009-12-06 18:00:51 +00002466 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00002467 ArrayType::Normal, 0);
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002468 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002469 StringRef DeclName = D->getName();
2470 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002471 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2472 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002473 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002474 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002475 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002476 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002477 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002478 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002479 Unit, LineNo, getOrCreateType(T, Unit),
2480 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002481}
2482
Devang Patel9ca36b62009-02-26 21:10:26 +00002483/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002484void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002485 ObjCInterfaceDecl *ID) {
Devang Patel9ca36b62009-02-26 21:10:26 +00002486 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002487 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002488 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002489
Chris Lattner5f9e2722011-07-23 10:55:15 +00002490 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002491
Devang Pateld6c5a262010-02-01 21:52:22 +00002492 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002493 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002494
Devang Patel9ca36b62009-02-26 21:10:26 +00002495 // CodeGen turns int[] into int[1] so we'll do the same here.
2496 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002497
Devang Patel9ca36b62009-02-26 21:10:26 +00002498 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002499 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002500
Anders Carlsson20f12a22009-12-06 18:00:51 +00002501 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002502 ArrayType::Normal, 0);
2503 }
2504
Devang Patel16674e82011-02-22 18:56:36 +00002505 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002506 getOrCreateType(T, Unit),
2507 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002508}
Devang Patelabb485f2010-02-01 19:16:32 +00002509
Devang Patel25c2c8f2010-08-10 17:53:33 +00002510/// EmitGlobalVariable - Emit global variable's debug info.
2511void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002512 llvm::Constant *Init) {
Devang Patel8d308382010-08-10 07:24:25 +00002513 // Create the descriptor for the variable.
2514 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002515 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002516 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002517 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
2518 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
Devang Patel31f7d022011-01-17 22:23:07 +00002519 Ty = CreateEnumType(ED);
Devang Patel6237cea2010-08-23 22:07:25 +00002520 }
Devang Patel0317ab02010-08-10 18:27:15 +00002521 // Do not use DIGlobalVariable for enums.
2522 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2523 return;
Devang Patel16674e82011-02-22 18:56:36 +00002524 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002525 getLineNumber(VD->getLocation()),
2526 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002527}
2528
Devang Patelabb485f2010-02-01 19:16:32 +00002529/// getOrCreateNamesSpace - Return namespace descriptor for the given
2530/// namespace decl.
2531llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002532CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002533 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2534 NameSpaceCache.find(NSDecl);
2535 if (I != NameSpaceCache.end())
2536 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2537
Devang Patel8ab870d2010-05-12 23:46:38 +00002538 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002539 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002540 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002541 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002542 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002543 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002544 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002545 return NS;
2546}
Devang Patele80d5672011-03-23 16:29:39 +00002547
2548/// UpdateCompletedType - Update type cache because the type is now
2549/// translated.
2550void CGDebugInfo::UpdateCompletedType(const TagDecl *TD) {
2551 QualType Ty = CGM.getContext().getTagDeclType(TD);
2552
2553 // If the type exist in type cache then remove it from the cache.
2554 // There is no need to prepare debug info for the completed type
2555 // right now. It will be generated on demand lazily.
2556 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2557 TypeCache.find(Ty.getAsOpaquePtr());
2558 if (it != TypeCache.end())
2559 TypeCache.erase(it);
2560}