blob: bd37197ae3c4a610d66a5b5dc9f99fd52c1e8241 [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();
David Blaikie4e4d0842012-03-11 07:00:24 +0000186 PrintingPolicy Policy(CGM.getLangOpts());
Devang Patel700a1cb2010-07-20 20:24:18 +0000187 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;
David Blaikie4e4d0842012-03-11 07:00:24 +0000291 const LangOptions &LO = CGM.getLangOpts();
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.
David Blaikie4e4d0842012-03-11 07:00:24 +0000335 createNullPtrType(BT->getName(CGM.getContext().getLangOpts()));
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:
Eric Christopher917bc8d2012-02-20 18:05:04 +0000339 return DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christophere86b9ea2012-02-20 23:02:36 +0000340 "objc_class", getOrCreateMainFile(),
341 0);
Devang Patelc8972c62010-07-28 01:33:15 +0000342 case BuiltinType::ObjCId: {
343 // typedef struct objc_class *Class;
344 // typedef struct objc_object {
345 // Class isa;
346 // } *id;
347
Eric Christopherb45cfea2012-02-23 00:43:12 +0000348 // TODO: Cache these two types to avoid duplicates.
Eric Christopher917bc8d2012-02-20 18:05:04 +0000349 llvm::DIType OCTy =
350 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christophere86b9ea2012-02-20 23:02:36 +0000351 "objc_class", getOrCreateMainFile(),
352 0);
Devang Patelc8972c62010-07-28 01:33:15 +0000353 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
354
Devang Patel16674e82011-02-22 18:56:36 +0000355 llvm::DIType ISATy = DBuilder.createPointerType(OCTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000356
Chris Lattner5f9e2722011-07-23 10:55:15 +0000357 SmallVector<llvm::Value *, 16> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000358 llvm::DIType FieldTy =
Devang Patel1d323e02011-06-24 22:00:59 +0000359 DBuilder.createMemberType(getOrCreateMainFile(), "isa",
360 getOrCreateMainFile(), 0, Size,
361 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000362 EltTys.push_back(FieldTy);
Jay Foadc556ef22011-04-24 10:11:03 +0000363 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patelc8972c62010-07-28 01:33:15 +0000364
Devang Patel16674e82011-02-22 18:56:36 +0000365 return DBuilder.createStructType(TheCU, "objc_object",
Devang Patel823d8e92010-12-08 22:42:58 +0000366 getOrCreateMainFile(),
367 0, 0, 0, 0, Elements);
Devang Patelc8972c62010-07-28 01:33:15 +0000368 }
Devang Patel6e108ce2011-02-09 03:15:05 +0000369 case BuiltinType::ObjCSel: {
Eric Christopher917bc8d2012-02-20 18:05:04 +0000370 return
371 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christophere86b9ea2012-02-20 23:02:36 +0000372 "objc_selector", getOrCreateMainFile(),
373 0);
Devang Patel6e108ce2011-02-09 03:15:05 +0000374 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000375 case BuiltinType::UChar:
376 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
377 case BuiltinType::Char_S:
378 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patele8ee3f22011-09-12 17:11:58 +0000379 case BuiltinType::Char16:
380 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000381 case BuiltinType::UShort:
382 case BuiltinType::UInt:
Devang Patel31c79b42011-05-05 17:06:30 +0000383 case BuiltinType::UInt128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000384 case BuiltinType::ULong:
Devang Patel68f76b12011-09-10 00:44:49 +0000385 case BuiltinType::WChar_U:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000386 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
387 case BuiltinType::Short:
388 case BuiltinType::Int:
Devang Patel31c79b42011-05-05 17:06:30 +0000389 case BuiltinType::Int128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000390 case BuiltinType::Long:
Devang Patel68f76b12011-09-10 00:44:49 +0000391 case BuiltinType::WChar_S:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000392 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
393 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000394 case BuiltinType::Half:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000395 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000396 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000397 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000398 }
Devang Patel05127ca2010-07-28 23:23:29 +0000399
400 switch (BT->getKind()) {
401 case BuiltinType::Long: BTName = "long int"; break;
402 case BuiltinType::LongLong: BTName = "long long int"; break;
403 case BuiltinType::ULong: BTName = "long unsigned int"; break;
404 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
405 default:
David Blaikie4e4d0842012-03-11 07:00:24 +0000406 BTName = BT->getName(CGM.getContext().getLangOpts());
Devang Patel05127ca2010-07-28 23:23:29 +0000407 break;
408 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000409 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000410 uint64_t Size = CGM.getContext().getTypeSize(BT);
411 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000412 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000413 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000414 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000415}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000416
Devang Patel344ff5d2010-12-09 00:25:29 +0000417llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000418 // Bit size, align and offset of the type.
419 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
420 if (Ty->isComplexIntegerType())
421 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000422
Anders Carlsson20f12a22009-12-06 18:00:51 +0000423 uint64_t Size = CGM.getContext().getTypeSize(Ty);
424 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000425 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000426 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel823d8e92010-12-08 22:42:58 +0000427
Devang Patelca80a5f2009-10-20 19:55:01 +0000428 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000429}
430
John McCalla1805292009-09-25 01:40:47 +0000431/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000432/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000433llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000434 QualifierCollector Qc;
435 const Type *T = Qc.strip(Ty);
436
437 // Ignore these qualifiers for now.
438 Qc.removeObjCGCAttr();
439 Qc.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +0000440 Qc.removeObjCLifetime();
John McCalla1805292009-09-25 01:40:47 +0000441
Chris Lattner9c85ba32008-11-10 06:08:34 +0000442 // We will create one Derived type for one qualifier and recurse to handle any
443 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000444 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000445 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000446 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000447 Qc.removeConst();
448 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000449 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000450 Qc.removeVolatile();
451 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000452 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000453 Qc.removeRestrict();
454 } else {
455 assert(Qc.empty() && "Unknown type qualifier for debug info");
456 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000457 }
Mike Stump1eb44332009-09-09 15:08:12 +0000458
John McCall49f4e1c2010-12-10 11:01:00 +0000459 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCalla1805292009-09-25 01:40:47 +0000460
Daniel Dunbar3845f862008-10-31 03:54:29 +0000461 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
462 // CVR derived types.
Devang Patel16674e82011-02-22 18:56:36 +0000463 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000464
Devang Patelca80a5f2009-10-20 19:55:01 +0000465 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000466}
467
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000468llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000469 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000470 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000471 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
472 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000473 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000474}
475
Chris Lattner9c85ba32008-11-10 06:08:34 +0000476llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000477 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000478 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
479 Ty->getPointeeType(), Unit);
480}
481
Eric Christopher5d613b52012-01-25 02:06:59 +0000482// Creates a forward declaration for a RecordDecl in the given context.
483llvm::DIType CGDebugInfo::createRecordFwdDecl(const RecordDecl *RD,
Devang Patel53bc5182012-02-08 00:10:20 +0000484 llvm::DIDescriptor Ctx) {
Eric Christopher5d613b52012-01-25 02:06:59 +0000485 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
486 unsigned Line = getLineNumber(RD->getLocation());
Eric Christophere88a71f2012-02-13 15:08:45 +0000487 StringRef RDName = RD->getName();
488
489 // Get the tag.
Eric Christopher5d613b52012-01-25 02:06:59 +0000490 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Eric Christophere88a71f2012-02-13 15:08:45 +0000491 unsigned Tag = 0;
492 if (CXXDecl) {
493 RDName = getClassName(RD);
494 Tag = llvm::dwarf::DW_TAG_class_type;
495 }
Eric Christopher5d613b52012-01-25 02:06:59 +0000496 else if (RD->isStruct())
Eric Christophere88a71f2012-02-13 15:08:45 +0000497 Tag = llvm::dwarf::DW_TAG_structure_type;
Eric Christopher5d613b52012-01-25 02:06:59 +0000498 else if (RD->isUnion())
Eric Christophere88a71f2012-02-13 15:08:45 +0000499 Tag = llvm::dwarf::DW_TAG_union_type;
Eric Christopher5d613b52012-01-25 02:06:59 +0000500 else
501 llvm_unreachable("Unknown RecordDecl type!");
Eric Christophere88a71f2012-02-13 15:08:45 +0000502
503 // Create the type.
Eric Christopher1486d2c2012-02-18 00:50:14 +0000504 return DBuilder.createForwardDecl(Tag, RDName, DefUnit, Line);
Eric Christopher5d613b52012-01-25 02:06:59 +0000505}
506
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000507// Walk up the context chain and create forward decls for record decls,
508// and normal descriptors for namespaces.
509llvm::DIDescriptor CGDebugInfo::createContextChain(const Decl *Context) {
510 if (!Context)
511 return TheCU;
512
513 // See if we already have the parent.
514 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
515 I = RegionMap.find(Context);
516 if (I != RegionMap.end())
517 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
518
519 // Check namespace.
520 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
521 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
522
523 if (const RecordDecl *RD = dyn_cast<RecordDecl>(Context)) {
524 if (!RD->isDependentType()) {
Eric Christopher9965dea2012-02-16 22:54:45 +0000525 llvm::DIType Ty = getOrCreateLimitedType(CGM.getContext().getTypeDeclType(RD),
526 getOrCreateMainFile());
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000527 return llvm::DIDescriptor(Ty);
528 }
529 }
530 return TheCU;
531}
532
Eric Christopheredc95922011-09-13 23:45:09 +0000533/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000534/// then emit record's fwd if debug info size reduction is enabled.
535llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
536 llvm::DIFile Unit) {
537 if (!CGM.getCodeGenOpts().LimitDebugInfo)
538 return getOrCreateType(PointeeTy, Unit);
Devang Patel41422512011-10-24 23:15:17 +0000539
540 // Limit debug info for the pointee type.
541
Eric Christopher973bbb62011-12-16 23:40:18 +0000542 // If we have an existing type, use that, it's still smaller than creating
543 // a new type.
544 llvm::DIType Ty = getTypeOrNull(PointeeTy);
545 if (Ty.Verify()) return Ty;
546
Devang Patel41422512011-10-24 23:15:17 +0000547 // Handle qualifiers.
548 if (PointeeTy.hasLocalQualifiers())
549 return CreateQualifiedType(PointeeTy, Unit);
550
Devang Patelc69e1cf2010-09-30 19:05:55 +0000551 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
552 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000553 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000554 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Eric Christopher86211df2012-02-20 18:05:24 +0000555 llvm::DIType RetTy = createRecordFwdDecl(RD, FDContext);
556 TypeCache[QualType(RTy, 0).getAsOpaquePtr()] = RetTy;
557 return RetTy;
Devang Patelc69e1cf2010-09-30 19:05:55 +0000558 }
559 return getOrCreateType(PointeeTy, Unit);
Eric Christopher42e75da2012-02-13 14:56:11 +0000560
Devang Patelc69e1cf2010-09-30 19:05:55 +0000561}
562
Anders Carlssona031b352009-11-06 19:19:55 +0000563llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
564 const Type *Ty,
565 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000566 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000567 if (Tag == llvm::dwarf::DW_TAG_reference_type)
Devang Patel16674e82011-02-22 18:56:36 +0000568 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000569
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000570 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000571 // Size is always the size of a pointer. We can't use getTypeSize here
572 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000573 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000574 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000575 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000576
Nick Lewycky7480d962011-11-10 00:34:02 +0000577 return DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit),
578 Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000579}
580
Mike Stump9bc093c2009-05-14 02:03:51 +0000581llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000582 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000583 if (BlockLiteralGenericSet)
584 return BlockLiteralGeneric;
585
Chris Lattner5f9e2722011-07-23 10:55:15 +0000586 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000587 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000588 QualType FType;
589 uint64_t FieldSize, FieldOffset;
590 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000591 llvm::DIArray Elements;
592 llvm::DIType EltTy, DescTy;
593
594 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000595 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000596 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
597 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000598
Jay Foadc556ef22011-04-24 10:11:03 +0000599 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000600 EltTys.clear();
601
Devang Patele2472482010-09-29 21:05:52 +0000602 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000603 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000604
Devang Patel16674e82011-02-22 18:56:36 +0000605 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000606 Unit, LineNo, FieldOffset, 0,
607 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000608
Mike Stump9bc093c2009-05-14 02:03:51 +0000609 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000610 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000611
Devang Patel16674e82011-02-22 18:56:36 +0000612 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000613
614 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000615 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000616 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000617 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000618 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
619 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000620 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000621 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000622
Anders Carlsson20f12a22009-12-06 18:00:51 +0000623 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000624 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000625 FieldSize = CGM.getContext().getTypeSize(Ty);
626 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000627 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000628 LineNo, FieldSize, FieldAlign,
629 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000630 EltTys.push_back(FieldTy);
631
632 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000633 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000634
Devang Patel16674e82011-02-22 18:56:36 +0000635 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000636 Unit, LineNo, FieldOffset, 0,
637 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Mike Stump9bc093c2009-05-14 02:03:51 +0000639 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000640 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000641 return BlockLiteralGeneric;
642}
643
Nick Lewycky7480d962011-11-10 00:34:02 +0000644llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty, llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000645 // Typedefs are derived from some other type. If we have a typedef of a
646 // typedef, make sure to emit the whole chain.
647 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000648 if (!Src.Verify())
649 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000650 // We don't set size information, but do specify where the typedef was
651 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000652 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000653 const TypedefNameDecl *TyDecl = Ty->getDecl();
Eric Christopher9965dea2012-02-16 22:54:45 +0000654
Nick Lewycky7480d962011-11-10 00:34:02 +0000655 llvm::DIDescriptor TypedefContext =
Devang Patelc4903122011-06-03 17:23:47 +0000656 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
Eric Christopher9965dea2012-02-16 22:54:45 +0000657
658 return
Nick Lewycky7480d962011-11-10 00:34:02 +0000659 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000660}
661
Chris Lattner9c85ba32008-11-10 06:08:34 +0000662llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000663 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000664 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000665
Chris Lattner9c85ba32008-11-10 06:08:34 +0000666 // Add the result type at least.
667 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Chris Lattner9c85ba32008-11-10 06:08:34 +0000669 // Set up remainder of arguments if there is a prototype.
670 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000671 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000672 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Devang Patelaf164bb2010-10-06 20:51:45 +0000673 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Eric Christopher42e75da2012-02-13 14:56:11 +0000674 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
675 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000676 }
677
Jay Foadc556ef22011-04-24 10:11:03 +0000678 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Mike Stump1eb44332009-09-09 15:08:12 +0000679
Devang Patel16674e82011-02-22 18:56:36 +0000680 llvm::DIType DbgTy = DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patelca80a5f2009-10-20 19:55:01 +0000681 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000682}
683
Eric Christopher42e75da2012-02-13 14:56:11 +0000684
Eric Christopher6faa5542012-01-26 01:57:13 +0000685void CGDebugInfo::
686CollectRecordStaticVars(const RecordDecl *RD, llvm::DIType FwdDecl) {
687
688 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
689 I != E; ++I)
690 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
691 if (V->getInit()) {
692 const APValue *Value = V->evaluateValue();
693 if (Value && Value->isInt()) {
694 llvm::ConstantInt *CI
695 = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
696
697 // Create the descriptor for static variable.
698 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
699 StringRef VName = V->getName();
700 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
701 // Do not use DIGlobalVariable for enums.
702 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
703 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
704 getLineNumber(V->getLocation()),
705 VTy, true, CI);
706 }
707 }
708 }
709 }
710}
711
Chris Lattner5f9e2722011-07-23 10:55:15 +0000712llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000713 QualType type,
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000714 uint64_t sizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000715 SourceLocation loc,
716 AccessSpecifier AS,
717 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000718 llvm::DIFile tunit,
719 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000720 llvm::DIType debugType = getOrCreateType(type, tunit);
721
722 // Get the location for the field.
723 llvm::DIFile file = getOrCreateFile(loc);
724 unsigned line = getLineNumber(loc);
725
726 uint64_t sizeInBits = 0;
727 unsigned alignInBits = 0;
728 if (!type->isIncompleteArrayType()) {
729 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
730
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000731 if (sizeInBitsOverride)
732 sizeInBits = sizeInBitsOverride;
John McCall8178df32011-02-22 22:38:33 +0000733 }
734
735 unsigned flags = 0;
736 if (AS == clang::AS_private)
737 flags |= llvm::DIDescriptor::FlagPrivate;
738 else if (AS == clang::AS_protected)
739 flags |= llvm::DIDescriptor::FlagProtected;
740
Devang Patel1d323e02011-06-24 22:00:59 +0000741 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
742 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000743}
744
Devang Patel428deb52010-01-19 00:00:59 +0000745/// CollectRecordFields - A helper function to collect debug info for
746/// record fields. This is used while creating debug info entry for a Record.
747void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000748CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000749 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000750 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000751 unsigned fieldNo = 0;
752 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
Eric Christopherad8de512012-03-01 21:36:52 +0000753 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(record);
754
755 // For C++11 Lambdas a Fields will be the same as a Capture, but the Capture
756 // has the name and the location of the variable so we should iterate over
757 // both concurrently.
758 if (CXXDecl && CXXDecl->isLambda()) {
759 RecordDecl::field_iterator Field = CXXDecl->field_begin();
760 unsigned fieldno = 0;
761 for (CXXRecordDecl::capture_const_iterator I = CXXDecl->captures_begin(),
762 E = CXXDecl->captures_end(); I != E; ++I, ++Field, ++fieldno) {
763 const LambdaExpr::Capture C = *I;
764 // TODO: Need to handle 'this' in some way by probably renaming the
765 // this of the lambda class and having a field member of 'this'.
766 if (C.capturesVariable()) {
767 VarDecl *V = C.getCapturedVar();
768 llvm::DIFile VUnit = getOrCreateFile(C.getLocation());
769 StringRef VName = V->getName();
770 uint64_t SizeInBitsOverride = 0;
771 if (Field->isBitField()) {
772 SizeInBitsOverride = Field->getBitWidthValue(CGM.getContext());
773 assert(SizeInBitsOverride && "found named 0-width bitfield");
774 }
775 llvm::DIType fieldType
776 = createFieldType(VName, Field->getType(), SizeInBitsOverride, C.getLocation(),
777 Field->getAccess(), layout.getFieldOffset(fieldno),
778 VUnit, RecordTy);
779 elements.push_back(fieldType);
780 }
781 }
782 } else {
783 bool IsMsStruct = record->hasAttr<MsStructAttr>();
784 const FieldDecl *LastFD = 0;
785 for (RecordDecl::field_iterator I = record->field_begin(),
786 E = record->field_end();
787 I != E; ++I, ++fieldNo) {
788 FieldDecl *field = *I;
789
790 if (IsMsStruct) {
791 // Zero-length bitfields following non-bitfield members are ignored
792 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
793 --fieldNo;
794 continue;
795 }
796 LastFD = field;
797 }
798
799 StringRef name = field->getName();
800 QualType type = field->getType();
801
802 // Ignore unnamed fields unless they're anonymous structs/unions.
803 if (name.empty() && !type->isRecordType()) {
804 LastFD = field;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000805 continue;
806 }
Eric Christopherad8de512012-03-01 21:36:52 +0000807
808 uint64_t SizeInBitsOverride = 0;
809 if (field->isBitField()) {
810 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
811 assert(SizeInBitsOverride && "found named 0-width bitfield");
812 }
813
814 llvm::DIType fieldType
815 = createFieldType(name, type, SizeInBitsOverride,
816 field->getLocation(), field->getAccess(),
817 layout.getFieldOffset(fieldNo), tunit, RecordTy);
818
819 elements.push_back(fieldType);
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000820 }
Devang Patel428deb52010-01-19 00:00:59 +0000821 }
822}
823
Devang Patela6da1922010-01-28 00:28:01 +0000824/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
825/// function type is not updated to include implicit "this" pointer. Use this
826/// routine to get a method type which includes "this" pointer.
827llvm::DIType
828CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000829 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000830 llvm::DIType FnTy
831 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
832 0),
833 Unit);
Devang Pateld774d1e2010-01-28 21:43:50 +0000834
Devang Patela6da1922010-01-28 00:28:01 +0000835 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000836 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000837 assert (Args.getNumElements() && "Invalid number of arguments!");
838
Chris Lattner5f9e2722011-07-23 10:55:15 +0000839 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000840
841 // First element is always return type. For 'void' functions it is NULL.
842 Elts.push_back(Args.getElement(0));
843
Eric Christopher2121cda2011-09-14 01:10:50 +0000844 if (!Method->isStatic()) {
845 // "this" pointer is always first argument.
846 QualType ThisPtr = Method->getThisType(CGM.getContext());
Devang Patelef8857d2011-10-28 21:12:13 +0000847
848 const CXXRecordDecl *RD = Method->getParent();
849 if (isa<ClassTemplateSpecializationDecl>(RD)) {
850 // Create pointer type directly in this case.
851 const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
852 QualType PointeeTy = ThisPtrTy->getPointeeType();
853 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
854 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
855 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000856 llvm::DIType PointeeType = getOrCreateType(PointeeTy, Unit);
Eric Christopher3b8e1972012-02-09 07:26:21 +0000857 llvm::DIType ThisPtrType = DBuilder.createPointerType(PointeeType, Size, Align);
Devang Patelef8857d2011-10-28 21:12:13 +0000858 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
Eric Christopher3b8e1972012-02-09 07:26:21 +0000859 // TODO: This and the artificial type below are misleading, the
860 // types aren't artificial the argument is, but the current
861 // metadata doesn't represent that.
862 ThisPtrType = DBuilder.createArtificialType(ThisPtrType);
Devang Patelef8857d2011-10-28 21:12:13 +0000863 Elts.push_back(ThisPtrType);
864 } else {
Eric Christopher3b8e1972012-02-09 07:26:21 +0000865 llvm::DIType ThisPtrType = getOrCreateType(ThisPtr, Unit);
Devang Patelef8857d2011-10-28 21:12:13 +0000866 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
Eric Christopher3b8e1972012-02-09 07:26:21 +0000867 ThisPtrType = DBuilder.createArtificialType(ThisPtrType);
Devang Patelef8857d2011-10-28 21:12:13 +0000868 Elts.push_back(ThisPtrType);
869 }
Eric Christopher2121cda2011-09-14 01:10:50 +0000870 }
Devang Patela6da1922010-01-28 00:28:01 +0000871
872 // Copy rest of the arguments.
873 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
874 Elts.push_back(Args.getElement(i));
875
Jay Foadc556ef22011-04-24 10:11:03 +0000876 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000877
Devang Patel16674e82011-02-22 18:56:36 +0000878 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000879}
880
Devang Patel58faf202010-10-22 17:11:50 +0000881/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
882/// inside a function.
883static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
Nick Lewycky7480d962011-11-10 00:34:02 +0000884 if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000885 return isFunctionLocalClass(NRD);
Nick Lewycky7480d962011-11-10 00:34:02 +0000886 if (isa<FunctionDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000887 return true;
888 return false;
Devang Patel58faf202010-10-22 17:11:50 +0000889}
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000890
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000891/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
892/// a single member function GlobalDecl.
893llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000894CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000895 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000896 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000897 bool IsCtorOrDtor =
898 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
899
Chris Lattner5f9e2722011-07-23 10:55:15 +0000900 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000901 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000902
903 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
904 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000905 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000906 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000907 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000908
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000909 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000910 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
911 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000912
913 // Collect virtual method info.
914 llvm::DIType ContainingType;
915 unsigned Virtuality = 0;
916 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000917
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000918 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000919 if (Method->isPure())
920 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
921 else
922 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
923
924 // It doesn't make sense to give a virtual destructor a vtable index,
925 // since a single destructor has two entries in the vtable.
926 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000927 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000928 ContainingType = RecordTy;
929 }
930
Devang Patele2472482010-09-29 21:05:52 +0000931 unsigned Flags = 0;
932 if (Method->isImplicit())
933 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000934 AccessSpecifier Access = Method->getAccess();
935 if (Access == clang::AS_private)
936 Flags |= llvm::DIDescriptor::FlagPrivate;
937 else if (Access == clang::AS_protected)
938 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000939 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
940 if (CXXC->isExplicit())
941 Flags |= llvm::DIDescriptor::FlagExplicit;
942 } else if (const CXXConversionDecl *CXXC =
943 dyn_cast<CXXConversionDecl>(Method)) {
944 if (CXXC->isExplicit())
945 Flags |= llvm::DIDescriptor::FlagExplicit;
946 }
Devang Patel3951e712010-10-07 22:03:49 +0000947 if (Method->hasPrototype())
948 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Pateld78a0192010-10-01 23:32:17 +0000949
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000950 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000951 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000952 MethodDefUnit, MethodLine,
953 MethodTy, /*isLocalToUnit=*/false,
954 /* isDefinition=*/ false,
955 Virtuality, VIndex, ContainingType,
David Blaikie4e4d0842012-03-11 07:00:24 +0000956 Flags, CGM.getLangOpts().Optimize);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000957
Eric Christopherdeae6a82011-11-17 23:45:00 +0000958 SPCache[Method->getCanonicalDecl()] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000959
960 return SP;
961}
962
Devang Patel4125fd22010-01-19 01:54:44 +0000963/// CollectCXXMemberFunctions - A helper function to collect debug info for
Eric Christopher7c9b2fd2012-01-12 01:26:51 +0000964/// C++ member functions. This is used while creating debug info entry for
Devang Patel4125fd22010-01-19 01:54:44 +0000965/// a Record.
966void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000967CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000968 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000969 llvm::DIType RecordTy) {
Devang Patel239cec62010-02-01 21:39:52 +0000970 for(CXXRecordDecl::method_iterator I = RD->method_begin(),
971 E = RD->method_end(); I != E; ++I) {
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000972 const CXXMethodDecl *Method = *I;
Anders Carlssonbea9b232010-01-26 04:40:11 +0000973
Devang Pateld5322da2010-02-09 19:09:28 +0000974 if (Method->isImplicit() && !Method->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +0000975 continue;
Devang Patel4125fd22010-01-19 01:54:44 +0000976
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000977 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +0000978 }
979}
980
Devang Patel2ed8f002010-08-27 17:47:47 +0000981/// CollectCXXFriends - A helper function to collect debug info for
982/// C++ base classes. This is used while creating debug info entry for
983/// a Record.
984void CGDebugInfo::
985CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000986 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +0000987 llvm::DIType RecordTy) {
Eric Christopher121c67d2012-01-12 01:26:58 +0000988 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
Devang Patel2ed8f002010-08-27 17:47:47 +0000989 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +0000990 if ((*BI)->isUnsupportedFriend())
991 continue;
Devang Patel823d8e92010-12-08 22:42:58 +0000992 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +0000993 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000994 getOrCreateType(TInfo->getType(),
995 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +0000996 }
997}
998
Devang Patela245c5b2010-01-25 23:32:18 +0000999/// CollectCXXBases - A helper function to collect debug info for
1000/// C++ base classes. This is used while creating debug info entry for
1001/// a Record.
1002void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +00001003CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001004 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +00001005 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +00001006
Devang Patel239cec62010-02-01 21:39:52 +00001007 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1008 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
1009 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +00001010 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +00001011 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +00001012
1013 const CXXRecordDecl *Base =
1014 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
1015
1016 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +00001017 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +00001018 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +00001019 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +00001020 0 - CGM.getVTableContext()
1021 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +00001022 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +00001023 } else
Devang Patel62c117d2011-04-04 20:36:06 +00001024 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Ken Dyck14c65ca2011-04-07 12:37:09 +00001025 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
1026 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +00001027
1028 AccessSpecifier Access = BI->getAccessSpecifier();
1029 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +00001030 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +00001031 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +00001032 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +00001033
Devang Patel823d8e92010-12-08 22:42:58 +00001034 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +00001035 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +00001036 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +00001037 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +00001038 EltTys.push_back(DTy);
1039 }
Devang Patela245c5b2010-01-25 23:32:18 +00001040}
1041
Devang Patel5ecb1df2011-04-05 22:54:11 +00001042/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +00001043llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +00001044CollectTemplateParams(const TemplateParameterList *TPList,
1045 const TemplateArgumentList &TAList,
1046 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001047 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +00001048 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
1049 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +00001050 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +00001051 if (TA.getKind() == TemplateArgument::Type) {
1052 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
1053 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001054 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +00001055 TemplateParams.push_back(TTP);
1056 } else if (TA.getKind() == TemplateArgument::Integral) {
1057 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +00001058 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001059 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
1060 TA.getAsIntegral()->getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +00001061 TemplateParams.push_back(TVP);
1062 }
1063 }
Jay Foadc556ef22011-04-24 10:11:03 +00001064 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +00001065}
1066
Devang Patel5ecb1df2011-04-05 22:54:11 +00001067/// CollectFunctionTemplateParams - A helper function to collect debug
1068/// info for function template parameters.
1069llvm::DIArray CGDebugInfo::
1070CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherab5278e2011-10-11 23:00:51 +00001071 if (FD->getTemplatedKind() ==
1072 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patel5ecb1df2011-04-05 22:54:11 +00001073 const TemplateParameterList *TList =
Eric Christopherab5278e2011-10-11 23:00:51 +00001074 FD->getTemplateSpecializationInfo()->getTemplate()
1075 ->getTemplateParameters();
Devang Patel5ecb1df2011-04-05 22:54:11 +00001076 return
1077 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
1078 }
1079 return llvm::DIArray();
1080}
1081
1082/// CollectCXXTemplateParams - A helper function to collect debug info for
1083/// template parameters.
1084llvm::DIArray CGDebugInfo::
1085CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
1086 llvm::DIFile Unit) {
1087 llvm::PointerUnion<ClassTemplateDecl *,
1088 ClassTemplatePartialSpecializationDecl *>
1089 PU = TSpecial->getSpecializedTemplateOrPartial();
1090
1091 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
1092 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
1093 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
1094 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
1095 return CollectTemplateParams(TPList, TAList, Unit);
1096}
1097
Devang Patel4ce3f202010-01-28 18:11:52 +00001098/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +00001099llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +00001100 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +00001101 return VTablePtrType;
1102
1103 ASTContext &Context = CGM.getContext();
1104
1105 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +00001106 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +00001107 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +00001108 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +00001109 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +00001110 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001111 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +00001112 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +00001113 return VTablePtrType;
1114}
1115
Anders Carlsson046c2942010-04-17 20:15:18 +00001116/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001117StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Eric Christopher51cb75a2012-01-25 21:47:09 +00001118 // Construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +00001119 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +00001120
1121 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +00001122 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001123 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001124 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001125}
1126
1127
Anders Carlsson046c2942010-04-17 20:15:18 +00001128/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +00001129/// debug info entry in EltTys vector.
1130void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +00001131CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001132 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +00001133 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +00001134
1135 // If there is a primary base then it will hold vtable info.
1136 if (RL.getPrimaryBase())
1137 return;
1138
1139 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +00001140 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +00001141 return;
1142
1143 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1144 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +00001145 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001146 0, Size, 0, 0, 0,
1147 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +00001148 EltTys.push_back(VPTR);
1149}
1150
Devang Patelc69e1cf2010-09-30 19:05:55 +00001151/// getOrCreateRecordType - Emit record type's standalone debug info.
1152llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1153 SourceLocation Loc) {
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001154 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patelc69e1cf2010-09-30 19:05:55 +00001155 return T;
1156}
1157
Devang Patel65e99f22009-02-25 01:36:11 +00001158/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +00001159llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001160 RecordDecl *RD = Ty->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001161
Chris Lattner9c85ba32008-11-10 06:08:34 +00001162 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001163 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001164
Chris Lattner9c85ba32008-11-10 06:08:34 +00001165 // Records and classes and unions can all be recursive. To handle them, we
1166 // first generate a debug descriptor for the struct as a forward declaration.
1167 // Then (if it is a definition) we go through and get debug info for all of
1168 // its members. Finally, we create a descriptor for the complete type (which
1169 // may refer to the forward decl if the struct is recursive) and replace all
1170 // uses of the forward declaration with the final definition.
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001171
Eric Christopher9965dea2012-02-16 22:54:45 +00001172 llvm::DIType FwdDecl = getOrCreateLimitedType(QualType(Ty, 0), DefUnit);
Devang Patel0b897992010-07-08 19:56:29 +00001173
Eric Christopher9965dea2012-02-16 22:54:45 +00001174 if (FwdDecl.isForwardDecl())
1175 return FwdDecl;
1176
Devang Patelab699792010-05-07 18:12:35 +00001177 llvm::MDNode *MN = FwdDecl;
1178 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Eric Christopher9965dea2012-02-16 22:54:45 +00001179
Devang Patele4c1ea02010-03-11 20:01:48 +00001180 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001181 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001182 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001183
Eric Christopher9965dea2012-02-16 22:54:45 +00001184 // Add this to the completed types cache since we're completing it.
1185 CompletedTypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
1186
Chris Lattner9c85ba32008-11-10 06:08:34 +00001187 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001188 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001189
Eric Christopher1c081d92012-01-26 07:01:04 +00001190 // Note: The split of CXXDecl information here is intentional, the
1191 // gdb tests will depend on a certain ordering at printout. The debug
1192 // information offsets are still correct if we merge them all together
1193 // though.
Devang Pateld6c5a262010-02-01 21:52:22 +00001194 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +00001195 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001196 CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl);
1197 CollectVTableInfo(CXXDecl, DefUnit, EltTys);
Eric Christopher1c081d92012-01-26 07:01:04 +00001198 }
1199
1200 // Collect static variables with initializers and other fields.
1201 CollectRecordStaticVars(RD, FwdDecl);
1202 CollectRecordFields(RD, DefUnit, EltTys, FwdDecl);
1203 llvm::DIArray TParamsArray;
1204 if (CXXDecl) {
Eric Christopher3ee8c912012-01-26 06:20:57 +00001205 CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl);
1206 CollectCXXFriends(CXXDecl, DefUnit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001207 if (const ClassTemplateSpecializationDecl *TSpecial
1208 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
Eric Christopher3ee8c912012-01-26 06:20:57 +00001209 TParamsArray = CollectCXXTemplateParams(TSpecial, DefUnit);
Devang Patel823d8e92010-12-08 22:42:58 +00001210 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001211
Eric Christopheraa2164c2011-09-29 00:00:45 +00001212 LexicalBlockStack.pop_back();
Devang Patel823d8e92010-12-08 22:42:58 +00001213 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1214 RegionMap.find(Ty->getDecl());
1215 if (RI != RegionMap.end())
1216 RegionMap.erase(RI);
1217
Jay Foadc556ef22011-04-24 10:11:03 +00001218 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Eric Christopher9965dea2012-02-16 22:54:45 +00001219 // FIXME: Magic numbers ahoy! These should be changed when we
1220 // get some enums in llvm/Analysis/DebugInfo.h to refer to
1221 // them.
Eric Christopher64a04302012-02-15 23:51:20 +00001222 if (RD->isUnion())
Eric Christopher9965dea2012-02-16 22:54:45 +00001223 MN->replaceOperandWith(10, Elements);
Eric Christopher64a04302012-02-15 23:51:20 +00001224 else if (CXXDecl) {
Eric Christopher9965dea2012-02-16 22:54:45 +00001225 MN->replaceOperandWith(10, Elements);
1226 MN->replaceOperandWith(13, TParamsArray);
Eric Christopher64a04302012-02-15 23:51:20 +00001227 } else
Eric Christopher9965dea2012-02-16 22:54:45 +00001228 MN->replaceOperandWith(10, Elements);
Eric Christopher64a04302012-02-15 23:51:20 +00001229
Eric Christopher9965dea2012-02-16 22:54:45 +00001230 RegionMap[Ty->getDecl()] = llvm::WeakVH(MN);
1231 return llvm::DIType(MN);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001232}
1233
John McCallc12c5bb2010-05-15 11:32:37 +00001234/// CreateType - get objective-c object type.
1235llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1236 llvm::DIFile Unit) {
1237 // Ignore protocols.
1238 return getOrCreateType(Ty->getBaseType(), Unit);
1239}
1240
Devang Patel9ca36b62009-02-26 21:10:26 +00001241/// CreateType - get objective-c interface type.
1242llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001243 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001244 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001245 if (!ID)
1246 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001247
1248 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001249 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001250 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001251 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001252
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001253 // If this is just a forward declaration return a special forward-declaration
1254 // debug type since we won't be able to lay out the entire type.
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001255 ObjCInterfaceDecl *Def = ID->getDefinition();
1256 if (!Def) {
Devang Patel823d8e92010-12-08 22:42:58 +00001257 llvm::DIType FwdDecl =
Eric Christopher917bc8d2012-02-20 18:05:04 +00001258 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
1259 ID->getName(), DefUnit, Line,
1260 RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001261 return FwdDecl;
1262 }
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001263 ID = Def;
Dan Gohman45f7c782010-08-23 21:15:56 +00001264
Eric Christopher9965dea2012-02-16 22:54:45 +00001265 // Bit size, align and offset of the type.
1266 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1267 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001268
Eric Christopher9965dea2012-02-16 22:54:45 +00001269 unsigned Flags = 0;
1270 if (ID->getImplementation())
1271 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
1272
1273 llvm::DIType RealDecl =
1274 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
1275 Line, Size, Align, Flags,
1276 llvm::DIArray(), RuntimeLang);
1277
Eric Christopheraf3db7d2012-02-27 08:23:23 +00001278 // Otherwise, insert it into the CompletedTypeCache so that recursive uses
1279 // will find it and we're emitting the complete type.
1280 CompletedTypeCache[QualType(Ty, 0).getAsOpaquePtr()] = RealDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001281 // Push the struct on region stack.
Eric Christopher9965dea2012-02-16 22:54:45 +00001282 llvm::MDNode *MN = RealDecl;
1283 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
1284
Eric Christopheraa2164c2011-09-29 00:00:45 +00001285 LexicalBlockStack.push_back(FwdDeclNode);
Eric Christopher9965dea2012-02-16 22:54:45 +00001286 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001287
1288 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001289 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001290
Devang Pateld6c5a262010-02-01 21:52:22 +00001291 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001292 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001293 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001294 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001295 if (!SClassTy.isValid())
1296 return llvm::DIType();
1297
Mike Stump1eb44332009-09-09 15:08:12 +00001298 llvm::DIType InhTag =
Eric Christopher9965dea2012-02-16 22:54:45 +00001299 DBuilder.createInheritance(RealDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001300 EltTys.push_back(InhTag);
1301 }
1302
Devang Patel693fcaa2012-02-07 18:40:30 +00001303 for (ObjCContainerDecl::prop_iterator I = ID->prop_begin(),
1304 E = ID->prop_end(); I != E; ++I) {
1305 const ObjCPropertyDecl *PD = *I;
1306 llvm::MDNode *PropertyNode =
1307 DBuilder.createObjCProperty(PD->getName(),
Devang Patel7fb86302012-02-07 18:55:08 +00001308 getSelectorName(PD->getGetterName()),
1309 getSelectorName(PD->getSetterName()),
1310 PD->getPropertyAttributes());
Devang Patel693fcaa2012-02-07 18:40:30 +00001311 EltTys.push_back(PropertyNode);
1312 }
1313
Devang Pateld6c5a262010-02-01 21:52:22 +00001314 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00001315 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001316 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001317 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001318 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001319 if (!FieldTy.isValid())
1320 return llvm::DIType();
1321
Chris Lattner5f9e2722011-07-23 10:55:15 +00001322 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001323
Devang Patelde135022009-04-27 22:40:36 +00001324 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001325 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001326 continue;
1327
Devang Patel9ca36b62009-02-26 21:10:26 +00001328 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001329 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1330 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001331 QualType FType = Field->getType();
1332 uint64_t FieldSize = 0;
1333 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001334
Devang Patel99c20eb2009-03-20 18:24:39 +00001335 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001336
Devang Patel99c20eb2009-03-20 18:24:39 +00001337 // Bit size, align and offset of the type.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001338 FieldSize = Field->isBitField()
1339 ? Field->getBitWidthValue(CGM.getContext())
1340 : CGM.getContext().getTypeSize(FType);
1341 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001342 }
1343
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001344 // We can't know the offset of our ivar in the structure if we're using
1345 // the non-fragile abi and the debugger should ignore the value anyways.
1346 // Call it the FieldNo+1 due to how debuggers use the information,
1347 // e.g. negating the value when it needs a lookup in the dynamic table.
David Blaikie4e4d0842012-03-11 07:00:24 +00001348 uint64_t FieldOffset = CGM.getLangOpts().ObjCNonFragileABI ? FieldNo+1
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001349 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001350
Devang Patelc20482b2009-03-19 00:23:53 +00001351 unsigned Flags = 0;
1352 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001353 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001354 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001355 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001356
Devang Patel693a70d2012-02-04 01:15:04 +00001357 llvm::MDNode *PropertyNode = NULL;
Devang Patel693fcaa2012-02-07 18:40:30 +00001358 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) {
Devang Patel8c6f9c42011-09-19 18:54:16 +00001359 if (ObjCPropertyImplDecl *PImpD =
Devang Patel693fcaa2012-02-07 18:40:30 +00001360 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) {
1361 if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) {
Devang Patel7fb86302012-02-07 18:55:08 +00001362 PropertyNode =
1363 DBuilder.createObjCProperty(PD->getName(),
Devang Patel693fcaa2012-02-07 18:40:30 +00001364 getSelectorName(PD->getGetterName()),
1365 getSelectorName(PD->getSetterName()),
1366 PD->getPropertyAttributes());
Devang Patel53bc5182012-02-08 00:10:20 +00001367 }
Devang Patel693fcaa2012-02-07 18:40:30 +00001368 }
Devang Patel693a70d2012-02-04 01:15:04 +00001369 }
Devang Patelfa936d82011-04-16 00:12:55 +00001370 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1371 FieldLine, FieldSize, FieldAlign,
1372 FieldOffset, Flags, FieldTy,
Devang Patel5f3c7fa2012-02-06 18:20:02 +00001373 PropertyNode);
Devang Patel9ca36b62009-02-26 21:10:26 +00001374 EltTys.push_back(FieldTy);
1375 }
Mike Stump1eb44332009-09-09 15:08:12 +00001376
Jay Foadc556ef22011-04-24 10:11:03 +00001377 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Eric Christopher9965dea2012-02-16 22:54:45 +00001378 RealDecl->replaceOperandWith(10, Elements);
1379
Eric Christopheraa2164c2011-09-29 00:00:45 +00001380 LexicalBlockStack.pop_back();
Devang Patel9ca36b62009-02-26 21:10:26 +00001381 return RealDecl;
1382}
1383
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001384llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty, llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001385 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001386 int64_t NumElems = Ty->getNumElements();
1387 int64_t LowerBound = 0;
1388 if (NumElems == 0)
1389 // If number of elements are not known then this is an unbounded array.
1390 // Use Low = 1, Hi = 0 to express such arrays.
1391 LowerBound = 1;
1392 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001393 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001394
Devang Patel6cf37dd2011-04-08 21:56:52 +00001395 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001396 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001397
1398 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1399 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1400
1401 return
Devang Patel16674e82011-02-22 18:56:36 +00001402 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001403}
1404
Chris Lattner9c85ba32008-11-10 06:08:34 +00001405llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001406 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001407 uint64_t Size;
1408 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001409
1410
Nuno Lopes010d5142009-01-28 00:35:17 +00001411 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001412 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001413 Size = 0;
1414 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001415 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001416 } else if (Ty->isIncompleteArrayType()) {
1417 Size = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001418 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001419 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001420 Size = 0;
1421 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001422 } else {
1423 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001424 Size = CGM.getContext().getTypeSize(Ty);
1425 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001426 }
Mike Stump1eb44332009-09-09 15:08:12 +00001427
Chris Lattner9c85ba32008-11-10 06:08:34 +00001428 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1429 // interior arrays, do we care? Why aren't nested arrays represented the
1430 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001431 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001432 QualType EltTy(Ty, 0);
Devang Patelcdf523c2010-10-06 18:30:00 +00001433 if (Ty->isIncompleteArrayType())
Chris Lattner9c85ba32008-11-10 06:08:34 +00001434 EltTy = Ty->getElementType();
Devang Patelcdf523c2010-10-06 18:30:00 +00001435 else {
1436 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
Devang Patel6cf37dd2011-04-08 21:56:52 +00001437 int64_t UpperBound = 0;
1438 int64_t LowerBound = 0;
Nick Lewycky3894c072011-04-09 00:25:15 +00001439 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
Devang Patelcdf523c2010-10-06 18:30:00 +00001440 if (CAT->getSize().getZExtValue())
Devang Patel6cf37dd2011-04-08 21:56:52 +00001441 UpperBound = CAT->getSize().getZExtValue() - 1;
Nick Lewycky3894c072011-04-09 00:25:15 +00001442 } else
Devang Patel6cf37dd2011-04-08 21:56:52 +00001443 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1444 // arrays.
1445 LowerBound = 1;
1446
Devang Patelcdf523c2010-10-06 18:30:00 +00001447 // FIXME: Verify this is right for VLAs.
Eric Christopherab5278e2011-10-11 23:00:51 +00001448 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1449 UpperBound));
Devang Patelcdf523c2010-10-06 18:30:00 +00001450 EltTy = Ty->getElementType();
1451 }
Sanjiv Gupta507de852008-06-09 10:47:41 +00001452 }
Mike Stump1eb44332009-09-09 15:08:12 +00001453
Jay Foadc556ef22011-04-24 10:11:03 +00001454 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001455
Devang Patelca80a5f2009-10-20 19:55:01 +00001456 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001457 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001458 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001459 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001460}
1461
Anders Carlssona031b352009-11-06 19:19:55 +00001462llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001463 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001464 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1465 Ty, Ty->getPointeeType(), Unit);
1466}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001467
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001468llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1469 llvm::DIFile Unit) {
1470 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1471 Ty, Ty->getPointeeType(), Unit);
1472}
1473
Anders Carlsson20f12a22009-12-06 18:00:51 +00001474llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001475 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001476 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1477 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1478
1479 if (!Ty->getPointeeType()->isFunctionType()) {
1480 // We have a data member pointer type.
1481 return PointerDiffDITy;
1482 }
1483
1484 // We have a member function pointer type. Treat it as a struct with two
1485 // ptrdiff_t members.
1486 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1487
1488 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001489 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001490
1491 // FIXME: This should probably be a function type instead.
1492 ElementTypes[0] =
Devang Patel1d323e02011-06-24 22:00:59 +00001493 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001494 Info.first, Info.second, FieldOffset, 0,
1495 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001496 FieldOffset += Info.first;
1497
1498 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001499 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001500 Info.first, Info.second, FieldOffset, 0,
1501 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001502
Jay Foadc556ef22011-04-24 10:11:03 +00001503 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001504
Chris Lattner5f9e2722011-07-23 10:55:15 +00001505 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001506 U, 0, FieldOffset,
1507 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001508}
1509
Eli Friedmanb001de72011-10-06 23:00:33 +00001510llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1511 llvm::DIFile U) {
1512 // Ignore the atomic wrapping
1513 // FIXME: What is the correct representation?
1514 return getOrCreateType(Ty->getValueType(), U);
1515}
1516
Devang Patel6237cea2010-08-23 22:07:25 +00001517/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001518llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1519 llvm::DIFile Unit = getOrCreateFile(ED->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001520 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001521
1522 // Create DIEnumerator elements for each enumerator.
1523 for (EnumDecl::enumerator_iterator
1524 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1525 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001526 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001527 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001528 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001529 }
1530
1531 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001532 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001533
1534 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1535 unsigned Line = getLineNumber(ED->getLocation());
1536 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001537 uint64_t Align = 0;
1538 if (!ED->getTypeForDecl()->isIncompleteType()) {
1539 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1540 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1541 }
Devang Patel4bc48872010-10-27 23:23:58 +00001542 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001543 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Devang Patel6237cea2010-08-23 22:07:25 +00001544 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001545 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001546 Size, Align, EltArray);
Devang Patel6237cea2010-08-23 22:07:25 +00001547 return DbgTy;
1548}
1549
Douglas Gregor840943d2009-12-21 20:18:30 +00001550static QualType UnwrapTypeForDebugInfo(QualType T) {
1551 do {
1552 QualType LastT = T;
1553 switch (T->getTypeClass()) {
1554 default:
1555 return T;
1556 case Type::TemplateSpecialization:
1557 T = cast<TemplateSpecializationType>(T)->desugar();
1558 break;
John McCallf4c73712011-01-19 06:33:43 +00001559 case Type::TypeOfExpr:
1560 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001561 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001562 case Type::TypeOf:
1563 T = cast<TypeOfType>(T)->getUnderlyingType();
1564 break;
1565 case Type::Decltype:
1566 T = cast<DecltypeType>(T)->getUnderlyingType();
1567 break;
Sean Huntca63c202011-05-24 22:41:36 +00001568 case Type::UnaryTransform:
1569 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1570 break;
John McCall9d156a72011-01-06 01:58:22 +00001571 case Type::Attributed:
1572 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001573 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001574 case Type::Elaborated:
1575 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001576 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001577 case Type::Paren:
1578 T = cast<ParenType>(T)->getInnerType();
1579 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001580 case Type::SubstTemplateTypeParm:
1581 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1582 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001583 case Type::Auto:
1584 T = cast<AutoType>(T)->getDeducedType();
1585 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001586 }
1587
1588 assert(T != LastT && "Type unwrapping failed to unwrap!");
1589 if (T == LastT)
1590 return T;
1591 } while (true);
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001592}
1593
Eric Christopher973bbb62011-12-16 23:40:18 +00001594/// getType - Get the type from the cache or return null type if it doesn't exist.
1595llvm::DIType CGDebugInfo::getTypeOrNull(QualType Ty) {
Mike Stump1eb44332009-09-09 15:08:12 +00001596
Douglas Gregor840943d2009-12-21 20:18:30 +00001597 // Unwrap the type as needed for debug information.
1598 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher42e75da2012-02-13 14:56:11 +00001599
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001600 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001601 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001602 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001603 if (it != TypeCache.end()) {
1604 // Verify that the debug info still exists.
1605 if (&*it->second)
1606 return llvm::DIType(cast<llvm::MDNode>(it->second));
1607 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001608
Eric Christopher973bbb62011-12-16 23:40:18 +00001609 return llvm::DIType();
1610}
1611
Eric Christopher9965dea2012-02-16 22:54:45 +00001612/// getCompletedTypeOrNull - Get the type from the cache or return null if it
1613/// doesn't exist.
1614llvm::DIType CGDebugInfo::getCompletedTypeOrNull(QualType Ty) {
1615
1616 // Unwrap the type as needed for debug information.
1617 Ty = UnwrapTypeForDebugInfo(Ty);
1618
1619 // Check for existing entry.
1620 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
1621 CompletedTypeCache.find(Ty.getAsOpaquePtr());
1622 if (it != CompletedTypeCache.end()) {
1623 // Verify that the debug info still exists.
1624 if (&*it->second)
1625 return llvm::DIType(cast<llvm::MDNode>(it->second));
1626 }
1627
1628 return llvm::DIType();
1629}
1630
1631
Eric Christopher973bbb62011-12-16 23:40:18 +00001632/// getOrCreateType - Get the type from the cache or create a new
1633/// one if necessary.
1634llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile Unit) {
1635 if (Ty.isNull())
1636 return llvm::DIType();
1637
1638 // Unwrap the type as needed for debug information.
1639 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher42e75da2012-02-13 14:56:11 +00001640
Eric Christopher9965dea2012-02-16 22:54:45 +00001641 llvm::DIType T = getCompletedTypeOrNull(Ty);
1642
Eric Christopher42e75da2012-02-13 14:56:11 +00001643 if (T.Verify()) return T;
Eric Christopher973bbb62011-12-16 23:40:18 +00001644
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001645 // Otherwise create the type.
1646 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001647
1648 llvm::DIType TC = getTypeOrNull(Ty);
1649 if (TC.Verify() && TC.isForwardDecl())
1650 ReplaceMap.push_back(std::make_pair(Ty.getAsOpaquePtr(), TC));
Eric Christopher9965dea2012-02-16 22:54:45 +00001651
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001652 // And update the type cache.
Eric Christopher9965dea2012-02-16 22:54:45 +00001653 TypeCache[Ty.getAsOpaquePtr()] = Res;
1654
1655 if (!Res.isForwardDecl())
1656 CompletedTypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001657 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001658}
1659
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001660/// CreateTypeNode - Create a new debug type node.
Nick Lewycky7b3819d2011-11-09 04:27:23 +00001661llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001662 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001663 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001664 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001665
Douglas Gregor2101a822009-12-21 19:57:21 +00001666 const char *Diag = 0;
1667
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001668 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001669 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001670#define TYPE(Class, Base)
1671#define ABSTRACT_TYPE(Class, Base)
1672#define NON_CANONICAL_TYPE(Class, Base)
1673#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1674#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001675 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001676
Anders Carlssonbfe69952009-11-06 18:24:04 +00001677 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001678 case Type::Vector:
1679 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001680 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001681 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001682 case Type::ObjCObject:
1683 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001684 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001685 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001686 case Type::Builtin:
1687 return CreateType(cast<BuiltinType>(Ty));
1688 case Type::Complex:
1689 return CreateType(cast<ComplexType>(Ty));
1690 case Type::Pointer:
1691 return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001692 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001693 return CreateType(cast<BlockPointerType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001694 case Type::Typedef:
1695 return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001696 case Type::Record:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001697 return CreateType(cast<RecordType>(Ty));
Douglas Gregor72564e72009-02-26 23:50:07 +00001698 case Type::Enum:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001699 return CreateEnumType(cast<EnumType>(Ty)->getDecl());
Chris Lattner9c85ba32008-11-10 06:08:34 +00001700 case Type::FunctionProto:
1701 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001702 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001703 case Type::ConstantArray:
1704 case Type::VariableArray:
1705 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001706 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001707
1708 case Type::LValueReference:
1709 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001710 case Type::RValueReference:
1711 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001712
Anders Carlsson20f12a22009-12-06 18:00:51 +00001713 case Type::MemberPointer:
1714 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001715
Eli Friedmanb001de72011-10-06 23:00:33 +00001716 case Type::Atomic:
1717 return CreateType(cast<AtomicType>(Ty), Unit);
1718
John McCall9d156a72011-01-06 01:58:22 +00001719 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001720 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001721 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001722 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001723 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001724 case Type::TypeOfExpr:
1725 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001726 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001727 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001728 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001729 llvm_unreachable("type should have been unwrapped!");
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001730 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001731
1732 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001733 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001734 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001735 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001736 << Diag;
1737 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001738}
1739
Eric Christopher9965dea2012-02-16 22:54:45 +00001740/// getOrCreateLimitedType - Get the type from the cache or create a new
1741/// limited type if necessary.
1742llvm::DIType CGDebugInfo::getOrCreateLimitedType(QualType Ty,
1743 llvm::DIFile Unit) {
1744 if (Ty.isNull())
1745 return llvm::DIType();
1746
1747 // Unwrap the type as needed for debug information.
1748 Ty = UnwrapTypeForDebugInfo(Ty);
1749
1750 llvm::DIType T = getTypeOrNull(Ty);
1751
1752 // We may have cached a forward decl when we could have created
1753 // a non-forward decl. Go ahead and create a non-forward decl
1754 // now.
1755 if (T.Verify() && !T.isForwardDecl()) return T;
1756
1757 // Otherwise create the type.
1758 llvm::DIType Res = CreateLimitedTypeNode(Ty, Unit);
1759
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001760 if (T.Verify() && T.isForwardDecl())
1761 ReplaceMap.push_back(std::make_pair(Ty.getAsOpaquePtr(), T));
1762
Eric Christopher9965dea2012-02-16 22:54:45 +00001763 // And update the type cache.
1764 TypeCache[Ty.getAsOpaquePtr()] = Res;
1765 return Res;
1766}
1767
1768// TODO: Currently used for context chains when limiting debug info.
1769llvm::DIType CGDebugInfo::CreateLimitedType(const RecordType *Ty) {
1770 RecordDecl *RD = Ty->getDecl();
1771
1772 // Get overall information about the record type for the debug info.
1773 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1774 unsigned Line = getLineNumber(RD->getLocation());
1775 StringRef RDName = RD->getName();
1776
1777 llvm::DIDescriptor RDContext;
1778 if (CGM.getCodeGenOpts().LimitDebugInfo)
1779 RDContext = createContextChain(cast<Decl>(RD->getDeclContext()));
1780 else
1781 RDContext = getContextDescriptor(cast<Decl>(RD->getDeclContext()));
1782
1783 // If this is just a forward declaration, construct an appropriately
1784 // marked node and just return it.
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00001785 if (!RD->getDefinition())
1786 return createRecordFwdDecl(RD, RDContext);
Eric Christopher9965dea2012-02-16 22:54:45 +00001787
1788 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1789 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1790 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
1791 llvm::MDNode *RealDecl = NULL;
1792
1793 if (RD->isUnion())
1794 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
1795 Size, Align, 0, llvm::DIArray());
1796 else if (CXXDecl) {
1797 RDName = getClassName(RD);
1798
1799 // FIXME: This could be a struct type giving a default visibility different
1800 // than C++ class type, but needs llvm metadata changes first.
1801 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
1802 Size, Align, 0, 0, llvm::DIType(),
Eric Christopher86211df2012-02-20 18:05:24 +00001803 llvm::DIArray(), llvm::DIType(),
Eric Christopher9965dea2012-02-16 22:54:45 +00001804 llvm::DIArray());
1805 } else
1806 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1807 Size, Align, 0, llvm::DIArray());
1808
1809 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
1810 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = llvm::DIType(RealDecl);
1811
1812 if (CXXDecl) {
1813 // A class's primary base or the class itself contains the vtable.
1814 llvm::MDNode *ContainingType = NULL;
1815 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1816 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1817 // Seek non virtual primary base root.
1818 while (1) {
1819 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1820 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
1821 if (PBT && !BRL.isPrimaryBaseVirtual())
1822 PBase = PBT;
1823 else
1824 break;
1825 }
1826 ContainingType =
1827 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), DefUnit);
1828 }
1829 else if (CXXDecl->isDynamicClass())
1830 ContainingType = RealDecl;
1831
Eric Christopher1e009d52012-02-17 07:09:48 +00001832 RealDecl->replaceOperandWith(12, ContainingType);
Eric Christopher9965dea2012-02-16 22:54:45 +00001833 }
1834 return llvm::DIType(RealDecl);
1835}
1836
1837/// CreateLimitedTypeNode - Create a new debug type node, but only forward
1838/// declare composite types that haven't been processed yet.
1839llvm::DIType CGDebugInfo::CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) {
1840
1841 // Work out details of type.
1842 switch (Ty->getTypeClass()) {
1843#define TYPE(Class, Base)
1844#define ABSTRACT_TYPE(Class, Base)
1845#define NON_CANONICAL_TYPE(Class, Base)
1846#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1847 #include "clang/AST/TypeNodes.def"
1848 llvm_unreachable("Dependent types cannot show up in debug information");
1849
1850 case Type::Record:
1851 return CreateLimitedType(cast<RecordType>(Ty));
1852 default:
1853 return CreateTypeNode(Ty, Unit);
1854 }
1855}
1856
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001857/// CreateMemberType - Create new member and increase Offset by FType's size.
1858llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001859 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001860 uint64_t *Offset) {
1861 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1862 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1863 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001864 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001865 FieldSize, FieldAlign,
1866 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001867 *Offset += FieldSize;
1868 return Ty;
1869}
1870
Devang Patel120bf322011-04-23 00:08:01 +00001871/// getFunctionDeclaration - Return debug info descriptor to describe method
1872/// declaration for the given method definition.
1873llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1874 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1875 if (!FD) return llvm::DISubprogram();
1876
1877 // Setup context.
1878 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1879
Devang Patel22a5cdf2011-04-29 23:42:32 +00001880 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001881 MI = SPCache.find(FD->getCanonicalDecl());
Devang Patel22a5cdf2011-04-29 23:42:32 +00001882 if (MI != SPCache.end()) {
1883 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1884 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1885 return SP;
1886 }
1887
Devang Patel120bf322011-04-23 00:08:01 +00001888 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1889 E = FD->redecls_end(); I != E; ++I) {
1890 const FunctionDecl *NextFD = *I;
1891 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001892 MI = SPCache.find(NextFD->getCanonicalDecl());
Devang Patel120bf322011-04-23 00:08:01 +00001893 if (MI != SPCache.end()) {
1894 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1895 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1896 return SP;
1897 }
1898 }
1899 return llvm::DISubprogram();
1900}
1901
Devang Patel1c296522011-05-31 20:46:46 +00001902// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1903// implicit parameter "this".
Eric Christopherab5278e2011-10-11 23:00:51 +00001904llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D,
1905 QualType FnType,
Devang Patel1c296522011-05-31 20:46:46 +00001906 llvm::DIFile F) {
1907 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1908 return getOrCreateMethodType(Method, F);
Nick Lewycky7480d962011-11-10 00:34:02 +00001909 if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00001910 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001911 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00001912
1913 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00001914 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00001915 // "self" pointer is always first argument.
1916 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
1917 // "cmd" pointer is always second argument.
1918 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Pateld127bcb2011-05-31 22:21:11 +00001919 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001920 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00001921 PE = OMethod->param_end(); PI != PE; ++PI)
1922 Elts.push_back(getOrCreateType((*PI)->getType(), F));
1923
Devang Patelc478f212011-05-31 21:18:50 +00001924 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1925 return DBuilder.createSubroutineType(F, EltTypeArray);
1926 }
Devang Patel1c296522011-05-31 20:46:46 +00001927 return getOrCreateType(FnType, F);
1928}
1929
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001930/// EmitFunctionStart - Constructs the debug code for entering a function -
1931/// "llvm.dbg.func.start.".
Devang Patel9c6c3a02010-01-14 00:36:21 +00001932void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001933 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001934 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00001935
Chris Lattner5f9e2722011-07-23 10:55:15 +00001936 StringRef Name;
1937 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001938
Eric Christopheraa2164c2011-09-29 00:00:45 +00001939 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001940
Devang Patel9c6c3a02010-01-14 00:36:21 +00001941 const Decl *D = GD.getDecl();
Eric Christopher73fb3502011-10-13 21:45:18 +00001942
Devang Patel3951e712010-10-07 22:03:49 +00001943 unsigned Flags = 0;
Devang Patel0692f832010-10-11 21:58:41 +00001944 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1945 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00001946 llvm::DIArray TParamsArray;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001947 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Eric Christopherbf979472011-11-14 18:55:02 +00001948 // If there is a DISubprogram for this function available then use it.
Devang Patel4125fd22010-01-19 01:54:44 +00001949 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001950 FI = SPCache.find(FD->getCanonicalDecl());
Devang Patel4125fd22010-01-19 01:54:44 +00001951 if (FI != SPCache.end()) {
Gabor Greif38c9b172010-09-18 13:00:17 +00001952 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelab699792010-05-07 18:12:35 +00001953 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1954 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);
Devang Patel4125fd22010-01-19 01:54:44 +00001957 return;
1958 }
1959 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00001960 Name = getFunctionName(FD);
1961 // Use mangled name as linkage name for c/c++ functions.
Devang Patela87a2b22011-05-02 22:49:30 +00001962 if (!Fn->hasInternalLinkage())
Devang Patel2df74c02011-05-02 22:37:48 +00001963 LinkageName = CGM.getMangledName(GD);
Devang Patel58faf202010-10-22 17:11:50 +00001964 if (LinkageName == Name)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001965 LinkageName = StringRef();
Devang Patel3951e712010-10-07 22:03:49 +00001966 if (FD->hasPrototype())
1967 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel0692f832010-10-11 21:58:41 +00001968 if (const NamespaceDecl *NSDecl =
1969 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
Devang Patel170cef32010-12-09 00:33:05 +00001970 FDContext = getOrCreateNameSpace(NSDecl);
Devang Patelbc6a1912011-05-17 00:20:09 +00001971 else if (const RecordDecl *RDecl =
1972 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
1973 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00001974
1975 // Collect template parameters.
1976 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
David Chisnall70b9b442010-09-02 17:16:32 +00001977 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00001978 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00001979 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001980 } else {
Devang Patel58faf202010-10-22 17:11:50 +00001981 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00001982 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00001983 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001984 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001985 if (!Name.empty() && Name[0] == '\01')
1986 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001987
Devang Patel970c6182010-04-24 00:49:16 +00001988 // It is expected that CurLoc is set before using EmitFunctionStart.
1989 // Usually, CurLoc points to the left bracket location of compound
1990 // statement representing function body.
Devang Patel8ab870d2010-05-12 23:46:38 +00001991 unsigned LineNo = getLineNumber(CurLoc);
Devang Patele2472482010-09-29 21:05:52 +00001992 if (D->isImplicit())
1993 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel120bf322011-04-23 00:08:01 +00001994 llvm::DISubprogram SPDecl = getFunctionDeclaration(D);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001995 llvm::DISubprogram SP =
Devang Patel16674e82011-02-22 18:56:36 +00001996 DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
Devang Patel1c296522011-05-31 20:46:46 +00001997 LineNo, getOrCreateFunctionType(D, FnType, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001998 Fn->hasInternalLinkage(), true/*definition*/,
David Blaikie4e4d0842012-03-11 07:00:24 +00001999 Flags, CGM.getLangOpts().Optimize, Fn,
Devang Patel120bf322011-04-23 00:08:01 +00002000 TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00002001
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002002 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00002003 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002004 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00002005 RegionMap[D] = llvm::WeakVH(SP);
Eric Christopher69a1b742011-09-29 00:00:37 +00002006}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002007
Eric Christopher5321bc42011-09-29 00:00:41 +00002008/// EmitLocation - Emit metadata to indicate a change in line/column
2009/// information in the source file.
Eric Christopher73fb3502011-10-13 21:45:18 +00002010void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
2011
2012 // Update our current location
2013 setLocation(Loc);
2014
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00002015 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00002016
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002017 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00002018 SourceManager &SM = CGM.getContext().getSourceManager();
Eric Christopher73fb3502011-10-13 21:45:18 +00002019 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00002020 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00002021 // New Builder may not be in sync with CGDebugInfo.
2022 if (!Builder.getCurrentDebugLocation().isUnknown())
2023 return;
Eric Christopher414ee4b2011-09-29 00:00:35 +00002024
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002025 // Update last state.
2026 PrevLoc = CurLoc;
2027
Eric Christopheraa2164c2011-09-29 00:00:45 +00002028 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00002029 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
2030 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00002031 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002032}
2033
Eric Christopher73fb3502011-10-13 21:45:18 +00002034/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
2035/// the stack.
2036void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
Devang Patel8fae0602009-11-13 19:10:24 +00002037 llvm::DIDescriptor D =
Eric Christopher73fb3502011-10-13 21:45:18 +00002038 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
Devang Patel53bc5182012-02-08 00:10:20 +00002039 llvm::DIDescriptor() :
2040 llvm::DIDescriptor(LexicalBlockStack.back()),
2041 getOrCreateFile(CurLoc),
2042 getLineNumber(CurLoc),
2043 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00002044 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002045 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002046}
2047
Eric Christopher73fb3502011-10-13 21:45:18 +00002048/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
2049/// region - beginning of a DW_TAG_lexical_block.
2050void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) {
2051 // Set our current location.
2052 setLocation(Loc);
2053
2054 // Create a new lexical block and push it on the stack.
2055 CreateLexicalBlock(Loc);
2056
2057 // Emit a line table change for the current location inside the new scope.
2058 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
Devang Patel53bc5182012-02-08 00:10:20 +00002059 getColumnNumber(Loc),
2060 LexicalBlockStack.back()));
Eric Christopher73fb3502011-10-13 21:45:18 +00002061}
2062
Eric Christopheraa2164c2011-09-29 00:00:45 +00002063/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00002064/// region - end of a DW_TAG_lexical_block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002065void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002066 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00002067
Eric Christopher73fb3502011-10-13 21:45:18 +00002068 // Provide an entry in the line table for the end of the block.
2069 EmitLocation(Builder, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +00002070
Eric Christopheraa2164c2011-09-29 00:00:45 +00002071 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00002072}
2073
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002074/// EmitFunctionEnd - Constructs the debug code for exiting a function.
2075void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002076 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002077 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00002078 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002079
2080 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00002081 while (LexicalBlockStack.size() != RCount)
Eric Christopher73fb3502011-10-13 21:45:18 +00002082 EmitLexicalBlockEnd(Builder, CurLoc);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00002083 FnBeginRegionCount.pop_back();
2084}
2085
Devang Patel809b9bb2010-02-10 18:49:08 +00002086// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
2087// See BuildByRefType.
2088llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
2089 uint64_t *XOffset) {
2090
Chris Lattner5f9e2722011-07-23 10:55:15 +00002091 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00002092 QualType FType;
2093 uint64_t FieldSize, FieldOffset;
2094 unsigned FieldAlign;
2095
Devang Patel17800552010-03-09 00:44:50 +00002096 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002097 QualType Type = VD->getType();
2098
2099 FieldOffset = 0;
2100 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002101 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2102 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002103 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002104 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2105 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2106
John McCall6b5a61b2011-02-07 10:33:21 +00002107 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00002108 if (HasCopyAndDispose) {
2109 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002110 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
2111 &FieldOffset));
2112 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
2113 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002114 }
2115
2116 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00002117 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002118 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00002119 CharUnits FieldOffsetInBytes
2120 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
2121 CharUnits AlignedOffsetInBytes
2122 = FieldOffsetInBytes.RoundUpToAlignment(Align);
2123 CharUnits NumPaddingBytes
2124 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00002125
Ken Dyck573be632011-04-22 17:34:18 +00002126 if (NumPaddingBytes.isPositive()) {
2127 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00002128 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2129 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002130 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002131 }
2132 }
2133
2134 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002135 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00002136 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00002137 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00002138
2139 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00002140 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002141 0, FieldSize, FieldAlign,
2142 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00002143 EltTys.push_back(FieldTy);
2144 FieldOffset += FieldSize;
2145
Jay Foadc556ef22011-04-24 10:11:03 +00002146 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00002147
Devang Patele2472482010-09-29 21:05:52 +00002148 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00002149
Devang Patel16674e82011-02-22 18:56:36 +00002150 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00002151 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00002152}
Devang Patel823d8e92010-12-08 22:42:58 +00002153
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002154/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00002155void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00002156 llvm::Value *Storage,
2157 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002158 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00002159
Devang Patel17800552010-03-09 00:44:50 +00002160 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002161 llvm::DIType Ty;
2162 uint64_t XOffset = 0;
2163 if (VD->hasAttr<BlocksAttr>())
2164 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2165 else
2166 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00002167
Devang Patelf4e54a22010-05-07 23:05:55 +00002168 // If there is not any debug info for type then do not emit debug info
2169 // for this variable.
2170 if (!Ty)
2171 return;
2172
Devang Patel34753802011-02-16 01:11:51 +00002173 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
2174 // If Storage is an aggregate returned as 'sret' then let debugger know
2175 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00002176 if (Arg->hasStructRetAttr())
Devang Patel16674e82011-02-22 18:56:36 +00002177 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00002178 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
2179 // If an aggregate variable has non trivial destructor or non trivial copy
2180 // constructor than it is pass indirectly. Let debug info know about this
2181 // by using reference of the aggregate type as a argument type.
Eric Christopherab5278e2011-10-11 23:00:51 +00002182 if (!Record->hasTrivialCopyConstructor() ||
2183 !Record->hasTrivialDestructor())
Devang Patel16674e82011-02-22 18:56:36 +00002184 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00002185 }
2186 }
Devang Patel0691f932011-02-10 00:40:52 +00002187
Chris Lattner9c85ba32008-11-10 06:08:34 +00002188 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002189 unsigned Line = getLineNumber(VD->getLocation());
2190 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00002191 unsigned Flags = 0;
2192 if (VD->isImplicit())
2193 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002194 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00002195
Chris Lattner5f9e2722011-07-23 10:55:15 +00002196 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002197 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002198 if (VD->hasAttr<BlocksAttr>()) {
2199 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002200 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002201 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002202 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002203 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002204 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002205 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002206 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002207 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2208 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002209 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002210 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002211 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2212
2213 // Create the descriptor for the variable.
2214 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002215 DBuilder.createComplexVariable(Tag,
Eric Christopherab5278e2011-10-11 23:00:51 +00002216 llvm::DIDescriptor(Scope),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002217 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002218 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002219
2220 // Insert an llvm.dbg.declare into the current block.
2221 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002222 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002223 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2224 return;
2225 }
2226 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002227 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002228 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002229 Name, Unit, Line, Ty,
David Blaikie4e4d0842012-03-11 07:00:24 +00002230 CGM.getLangOpts().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002231
2232 // Insert an llvm.dbg.declare into the current block.
2233 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002234 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002235 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002236 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002237 }
2238
2239 // If VD is an anonymous union then Storage represents value for
2240 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002241 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2242 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2243 if (RD->isUnion()) {
2244 for (RecordDecl::field_iterator I = RD->field_begin(),
2245 E = RD->field_end();
2246 I != E; ++I) {
2247 FieldDecl *Field = *I;
2248 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002249 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002250
John McCall8178df32011-02-22 22:38:33 +00002251 // Ignore unnamed fields. Do not ignore unnamed records.
2252 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2253 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002254
John McCall8178df32011-02-22 22:38:33 +00002255 // Use VarDecl's Tag, Scope and Line number.
2256 llvm::DIVariable D =
2257 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2258 FieldName, Unit, Line, FieldTy,
David Blaikie4e4d0842012-03-11 07:00:24 +00002259 CGM.getLangOpts().Optimize, Flags,
Devang Patel093ac462011-03-03 20:13:15 +00002260 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002261
John McCall8178df32011-02-22 22:38:33 +00002262 // Insert an llvm.dbg.declare into the current block.
2263 llvm::Instruction *Call =
2264 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
John McCall8178df32011-02-22 22:38:33 +00002265 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002266 }
John McCall8178df32011-02-22 22:38:33 +00002267 }
2268 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002269}
2270
Devang Patele2d01912011-04-25 23:43:36 +00002271void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2272 llvm::Value *Storage,
2273 CGBuilderTy &Builder) {
2274 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2275}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002276
Devang Patele2d01912011-04-25 23:43:36 +00002277void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2278 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2279 const CGBlockInfo &blockInfo) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002280 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002281
Devang Patel2b594b92010-04-26 23:28:46 +00002282 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002283 return;
Devang Patele2d01912011-04-25 23:43:36 +00002284
John McCall6b5a61b2011-02-07 10:33:21 +00002285 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002286
Mike Stumpb1a6e682009-09-30 02:43:10 +00002287 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002288 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002289 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002290 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002291 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2292 else
2293 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002294
2295 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002296 unsigned Line = getLineNumber(VD->getLocation());
2297 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002298
John McCall6b5a61b2011-02-07 10:33:21 +00002299 const llvm::TargetData &target = CGM.getTargetData();
2300
2301 CharUnits offset = CharUnits::fromQuantity(
2302 target.getStructLayout(blockInfo.StructureType)
2303 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2304
Chris Lattner5f9e2722011-07-23 10:55:15 +00002305 SmallVector<llvm::Value *, 9> addr;
Chris Lattner8b418682012-02-07 00:39:47 +00002306 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002307 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002308 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002309 if (isByRef) {
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002310 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2311 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002312 // offset of __forwarding field
Eric Christopherab5278e2011-10-11 23:00:51 +00002313 offset = CGM.getContext()
2314 .toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattner14b1a362010-01-25 03:29:35 +00002315 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002316 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2317 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002318 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002319 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002320 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002321 }
2322
2323 // Create the descriptor for the variable.
2324 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002325 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002326 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002327 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002328 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002329 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002330 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Eric Christopher73fb3502011-10-13 21:45:18 +00002331 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2332 LexicalBlockStack.back()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002333}
2334
Chris Lattner9c85ba32008-11-10 06:08:34 +00002335/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2336/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002337void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002338 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002339 CGBuilderTy &Builder) {
Devang Patel093ac462011-03-03 20:13:15 +00002340 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002341}
2342
John McCall8178df32011-02-22 22:38:33 +00002343namespace {
2344 struct BlockLayoutChunk {
2345 uint64_t OffsetInBits;
2346 const BlockDecl::Capture *Capture;
2347 };
2348 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2349 return l.OffsetInBits < r.OffsetInBits;
2350 }
2351}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002352
John McCall8178df32011-02-22 22:38:33 +00002353void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2354 llvm::Value *addr,
2355 CGBuilderTy &Builder) {
2356 ASTContext &C = CGM.getContext();
2357 const BlockDecl *blockDecl = block.getBlockDecl();
2358
2359 // Collect some general information about the block's location.
2360 SourceLocation loc = blockDecl->getCaretLocation();
2361 llvm::DIFile tunit = getOrCreateFile(loc);
2362 unsigned line = getLineNumber(loc);
2363 unsigned column = getColumnNumber(loc);
2364
2365 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002366 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002367
2368 const llvm::StructLayout *blockLayout =
2369 CGM.getTargetData().getStructLayout(block.StructureType);
2370
Chris Lattner5f9e2722011-07-23 10:55:15 +00002371 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002372 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2373 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002374 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002375 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2376 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002377 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002378 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2379 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002380 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002381 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2382 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002383 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002384 fields.push_back(createFieldType("__descriptor",
2385 C.getPointerType(block.NeedsCopyDispose ?
2386 C.getBlockDescriptorExtendedType() :
2387 C.getBlockDescriptorType()),
2388 0, loc, AS_public,
2389 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002390 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002391
2392 // We want to sort the captures by offset, not because DWARF
2393 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002394 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002395
2396 // 'this' capture.
2397 if (blockDecl->capturesCXXThis()) {
2398 BlockLayoutChunk chunk;
2399 chunk.OffsetInBits =
2400 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2401 chunk.Capture = 0;
2402 chunks.push_back(chunk);
2403 }
2404
2405 // Variable captures.
2406 for (BlockDecl::capture_const_iterator
2407 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2408 i != e; ++i) {
2409 const BlockDecl::Capture &capture = *i;
2410 const VarDecl *variable = capture.getVariable();
2411 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2412
2413 // Ignore constant captures.
2414 if (captureInfo.isConstant())
2415 continue;
2416
2417 BlockLayoutChunk chunk;
2418 chunk.OffsetInBits =
2419 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2420 chunk.Capture = &capture;
2421 chunks.push_back(chunk);
2422 }
2423
2424 // Sort by offset.
2425 llvm::array_pod_sort(chunks.begin(), chunks.end());
2426
Chris Lattner5f9e2722011-07-23 10:55:15 +00002427 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002428 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2429 uint64_t offsetInBits = i->OffsetInBits;
2430 const BlockDecl::Capture *capture = i->Capture;
2431
2432 // If we have a null capture, this must be the C++ 'this' capture.
2433 if (!capture) {
2434 const CXXMethodDecl *method =
2435 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2436 QualType type = method->getThisType(C);
2437
2438 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002439 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002440 continue;
2441 }
2442
2443 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002444 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002445
2446 llvm::DIType fieldType;
2447 if (capture->isByRef()) {
2448 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2449
2450 // FIXME: this creates a second copy of this type!
2451 uint64_t xoffset;
2452 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2453 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002454 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002455 ptrInfo.first, ptrInfo.second,
2456 offsetInBits, 0, fieldType);
2457 } else {
2458 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002459 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002460 }
2461 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002462 }
2463
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002464 SmallString<36> typeName;
John McCall8178df32011-02-22 22:38:33 +00002465 llvm::raw_svector_ostream(typeName)
2466 << "__block_literal_" << CGM.getUniqueBlockCount();
2467
Jay Foadc556ef22011-04-24 10:11:03 +00002468 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002469
2470 llvm::DIType type =
2471 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2472 CGM.getContext().toBits(block.BlockSize),
2473 CGM.getContext().toBits(block.BlockAlign),
2474 0, fieldsArray);
2475 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2476
2477 // Get overall information about the block.
2478 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002479 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002480 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002481
2482 // Create the descriptor for the parameter.
2483 llvm::DIVariable debugVar =
2484 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2485 llvm::DIDescriptor(scope),
2486 name, tunit, line, type,
David Blaikie4e4d0842012-03-11 07:00:24 +00002487 CGM.getLangOpts().Optimize, flags,
Devang Patel093ac462011-03-03 20:13:15 +00002488 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002489
2490 // Insert an llvm.dbg.value into the current block.
2491 llvm::Instruction *declare =
2492 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2493 Builder.GetInsertBlock());
2494 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2495}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002496
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002497/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002498void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002499 const VarDecl *D) {
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002500 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002501 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002502 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002503
Eric Christopher73fb3502011-10-13 21:45:18 +00002504 setLocation(D->getLocation());
2505
Devang Pateleb6d79b2010-02-01 21:34:11 +00002506 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002507 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002508
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002509 // CodeGen turns int[] into int[1] so we'll do the same here.
2510 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002511
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002512 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002513 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002514
Anders Carlsson20f12a22009-12-06 18:00:51 +00002515 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00002516 ArrayType::Normal, 0);
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002517 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002518 StringRef DeclName = D->getName();
2519 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002520 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2521 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002522 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002523 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002524 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002525 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002526 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002527 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002528 Unit, LineNo, getOrCreateType(T, Unit),
2529 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002530}
2531
Devang Patel9ca36b62009-02-26 21:10:26 +00002532/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002533void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002534 ObjCInterfaceDecl *ID) {
Devang Patel9ca36b62009-02-26 21:10:26 +00002535 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002536 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002537 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002538
Chris Lattner5f9e2722011-07-23 10:55:15 +00002539 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002540
Devang Pateld6c5a262010-02-01 21:52:22 +00002541 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002542 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002543
Devang Patel9ca36b62009-02-26 21:10:26 +00002544 // CodeGen turns int[] into int[1] so we'll do the same here.
2545 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002546
Devang Patel9ca36b62009-02-26 21:10:26 +00002547 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002548 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002549
Anders Carlsson20f12a22009-12-06 18:00:51 +00002550 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002551 ArrayType::Normal, 0);
2552 }
2553
Devang Patel16674e82011-02-22 18:56:36 +00002554 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002555 getOrCreateType(T, Unit),
2556 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002557}
Devang Patelabb485f2010-02-01 19:16:32 +00002558
Devang Patel25c2c8f2010-08-10 17:53:33 +00002559/// EmitGlobalVariable - Emit global variable's debug info.
2560void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002561 llvm::Constant *Init) {
Devang Patel8d308382010-08-10 07:24:25 +00002562 // Create the descriptor for the variable.
2563 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002564 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002565 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002566 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
2567 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
Devang Patel31f7d022011-01-17 22:23:07 +00002568 Ty = CreateEnumType(ED);
Devang Patel6237cea2010-08-23 22:07:25 +00002569 }
Devang Patel0317ab02010-08-10 18:27:15 +00002570 // Do not use DIGlobalVariable for enums.
2571 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2572 return;
Devang Patel16674e82011-02-22 18:56:36 +00002573 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002574 getLineNumber(VD->getLocation()),
2575 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002576}
2577
Devang Patelabb485f2010-02-01 19:16:32 +00002578/// getOrCreateNamesSpace - Return namespace descriptor for the given
2579/// namespace decl.
2580llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002581CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002582 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2583 NameSpaceCache.find(NSDecl);
2584 if (I != NameSpaceCache.end())
2585 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2586
Devang Patel8ab870d2010-05-12 23:46:38 +00002587 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002588 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002589 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002590 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002591 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002592 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002593 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002594 return NS;
2595}
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002596
2597void CGDebugInfo::finalize(void) {
2598 for (std::vector<std::pair<void *, llvm::WeakVH> >::const_iterator VI
2599 = ReplaceMap.begin(), VE = ReplaceMap.end(); VI != VE; ++VI) {
2600 llvm::DIType Ty, RepTy;
2601 // Verify that the debug info still exists.
2602 if (&*VI->second)
2603 Ty = llvm::DIType(cast<llvm::MDNode>(VI->second));
2604
2605 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2606 TypeCache.find(VI->first);
2607 if (it != TypeCache.end()) {
2608 // Verify that the debug info still exists.
2609 if (&*it->second)
2610 RepTy = llvm::DIType(cast<llvm::MDNode>(it->second));
2611 }
2612
Eric Christopher86211df2012-02-20 18:05:24 +00002613 if (Ty.Verify() && Ty.isForwardDecl() && RepTy.Verify()) {
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002614 Ty.replaceAllUsesWith(RepTy);
Eric Christopher86211df2012-02-20 18:05:24 +00002615 }
Eric Christopher7ff0c5d2012-02-18 00:50:17 +00002616 }
2617 DBuilder.finalize();
2618}