blob: c7a9b407d264477973391c9e7abd4017efee36b0 [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"
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000024#include "clang/Basic/SourceManager.h"
25#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 Gupta1c6a38b2008-05-25 05:15:42 +000038#include "llvm/Target/TargetMachine.h"
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000039using namespace clang;
40using namespace clang::CodeGen;
41
Anders Carlsson20f12a22009-12-06 18:00:51 +000042CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
Devang Patel823d8e92010-12-08 22:42:58 +000043 : CGM(CGM), DBuilder(CGM.getModule()),
Dan Gohman4cac5b42010-08-20 22:02:57 +000044 BlockLiteralGenericSet(false) {
Devang Patel17800552010-03-09 00:44:50 +000045 CreateCompileUnit();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000046}
47
Chris Lattner9c85ba32008-11-10 06:08:34 +000048CGDebugInfo::~CGDebugInfo() {
Eric Christopherab5278e2011-10-11 23:00:51 +000049 assert(LexicalBlockStack.empty() &&
50 "Region stack mismatch, stack not empty!");
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000051}
52
Chris Lattner9c85ba32008-11-10 06:08:34 +000053void CGDebugInfo::setLocation(SourceLocation Loc) {
Eric Christopher944542e2011-10-11 23:00:45 +000054 // If the new location isn't valid return.
55 if (!Loc.isValid()) return;
56
57 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
Eric Christopher73fb3502011-10-13 21:45:18 +000058
59 // If we've changed files in the middle of a lexical scope go ahead
60 // and create a new lexical scope with file node if it's different
61 // from the one in the scope.
62 if (LexicalBlockStack.empty()) return;
63
64 SourceManager &SM = CGM.getContext().getSourceManager();
65 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
66 PresumedLoc PPLoc = SM.getPresumedLoc(PrevLoc);
67
68 if (PCLoc.isInvalid() || PPLoc.isInvalid() ||
69 !strcmp(PPLoc.getFilename(), PCLoc.getFilename()))
70 return;
71
72 llvm::MDNode *LB = LexicalBlockStack.back();
73 llvm::DIScope Scope = llvm::DIScope(LB);
74 if (Scope.isLexicalBlockFile()) {
75 llvm::DILexicalBlockFile LBF = llvm::DILexicalBlockFile(LB);
76 llvm::DIDescriptor D
77 = DBuilder.createLexicalBlockFile(LBF.getScope(),
78 getOrCreateFile(CurLoc));
79 llvm::MDNode *N = D;
80 LexicalBlockStack.pop_back();
81 LexicalBlockStack.push_back(N);
82 } else if (Scope.isLexicalBlock()) {
83 llvm::DIDescriptor D
84 = DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc));
85 llvm::MDNode *N = D;
86 LexicalBlockStack.pop_back();
87 LexicalBlockStack.push_back(N);
88 }
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +000089}
90
Devang Patel33583052010-01-28 23:15:27 +000091/// getContextDescriptor - Get context info for the decl.
Devang Patel170cef32010-12-09 00:33:05 +000092llvm::DIDescriptor CGDebugInfo::getContextDescriptor(const Decl *Context) {
Devang Pateleb6d79b2010-02-01 21:34:11 +000093 if (!Context)
Devang Patel170cef32010-12-09 00:33:05 +000094 return TheCU;
Devang Pateleb6d79b2010-02-01 21:34:11 +000095
96 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
97 I = RegionMap.find(Context);
98 if (I != RegionMap.end())
Gabor Greif38c9b172010-09-18 13:00:17 +000099 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
Devang Patel411894b2010-02-01 22:40:08 +0000100
Devang Pateleb6d79b2010-02-01 21:34:11 +0000101 // Check namespace.
102 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
Devang Patel170cef32010-12-09 00:33:05 +0000103 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
Devang Patel8b90a782010-05-13 23:52:37 +0000104
105 if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context)) {
106 if (!RDecl->isDependentType()) {
Devang Patela2e57692010-10-28 17:27:32 +0000107 llvm::DIType Ty = getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
Devang Patel170cef32010-12-09 00:33:05 +0000108 getOrCreateMainFile());
Devang Patel8b90a782010-05-13 23:52:37 +0000109 return llvm::DIDescriptor(Ty);
110 }
111 }
Devang Patel170cef32010-12-09 00:33:05 +0000112 return TheCU;
Devang Patel979ec2e2009-10-06 00:35:31 +0000113}
114
Devang Patel9c6c3a02010-01-14 00:36:21 +0000115/// getFunctionName - Get function name for the given FunctionDecl. If the
116/// name is constructred on demand (e.g. C++ destructor) then the name
117/// is stored on the side.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000118StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
Devang Patel9c6c3a02010-01-14 00:36:21 +0000119 assert (FD && "Invalid FunctionDecl!");
120 IdentifierInfo *FII = FD->getIdentifier();
121 if (FII)
122 return FII->getName();
123
124 // Otherwise construct human readable name for debug info.
125 std::string NS = FD->getNameAsString();
126
127 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +0000128 char *StrPtr = DebugInfoNames.Allocate<char>(NS.length());
Benjamin Kramer1b627dc2010-01-23 18:16:07 +0000129 memcpy(StrPtr, NS.data(), NS.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000130 return StringRef(StrPtr, NS.length());
Devang Patel9c6c3a02010-01-14 00:36:21 +0000131}
132
Chris Lattner5f9e2722011-07-23 10:55:15 +0000133StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
David Chisnall52044a22010-09-02 18:01:51 +0000134 llvm::SmallString<256> MethodName;
135 llvm::raw_svector_ostream OS(MethodName);
136 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
137 const DeclContext *DC = OMD->getDeclContext();
Devang Patela2e57692010-10-28 17:27:32 +0000138 if (const ObjCImplementationDecl *OID =
139 dyn_cast<const ObjCImplementationDecl>(DC)) {
David Chisnall52044a22010-09-02 18:01:51 +0000140 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000141 } else if (const ObjCInterfaceDecl *OID =
142 dyn_cast<const ObjCInterfaceDecl>(DC)) {
Fariborz Jahanian1a4c9372010-10-18 17:51:06 +0000143 OS << OID->getName();
Devang Patela2e57692010-10-28 17:27:32 +0000144 } else if (const ObjCCategoryImplDecl *OCD =
145 dyn_cast<const ObjCCategoryImplDecl>(DC)){
David Chisnall52044a22010-09-02 18:01:51 +0000146 OS << ((NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
147 OCD->getIdentifier()->getNameStart() << ')';
148 }
149 OS << ' ' << OMD->getSelector().getAsString() << ']';
150
151 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
152 memcpy(StrPtr, MethodName.begin(), OS.tell());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000153 return StringRef(StrPtr, OS.tell());
David Chisnall52044a22010-09-02 18:01:51 +0000154}
155
Devang Patel1f15c192011-04-18 17:30:25 +0000156/// getSelectorName - Return selector name. This is used for debugging
Devang Patel90c1eed2011-04-16 00:37:51 +0000157/// info.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000158StringRef CGDebugInfo::getSelectorName(Selector S) {
Benjamin Kramer2b5cfbc2011-10-14 18:45:16 +0000159 const std::string &SName = S.getAsString();
160 char *StrPtr = DebugInfoNames.Allocate<char>(SName.size());
161 memcpy(StrPtr, SName.data(), SName.size());
162 return StringRef(StrPtr, SName.size());
Devang Patel90c1eed2011-04-16 00:37:51 +0000163}
164
Devang Patel700a1cb2010-07-20 20:24:18 +0000165/// getClassName - Get class name including template argument list.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000166StringRef
Devang Patel700a1cb2010-07-20 20:24:18 +0000167CGDebugInfo::getClassName(RecordDecl *RD) {
168 ClassTemplateSpecializationDecl *Spec
169 = dyn_cast<ClassTemplateSpecializationDecl>(RD);
170 if (!Spec)
171 return RD->getName();
172
173 const TemplateArgument *Args;
174 unsigned NumArgs;
175 std::string Buffer;
176 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
177 const TemplateSpecializationType *TST =
178 cast<TemplateSpecializationType>(TAW->getType());
179 Args = TST->getArgs();
180 NumArgs = TST->getNumArgs();
181 } else {
182 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Douglas Gregor910f8002010-11-07 23:05:16 +0000183 Args = TemplateArgs.data();
184 NumArgs = TemplateArgs.size();
Devang Patel700a1cb2010-07-20 20:24:18 +0000185 }
186 Buffer = RD->getIdentifier()->getNameStart();
187 PrintingPolicy Policy(CGM.getLangOptions());
188 Buffer += TemplateSpecializationType::PrintTemplateArgumentList(Args,
189 NumArgs,
190 Policy);
191
192 // Copy this name on the side and use its reference.
193 char *StrPtr = DebugInfoNames.Allocate<char>(Buffer.length());
194 memcpy(StrPtr, Buffer.data(), Buffer.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000195 return StringRef(StrPtr, Buffer.length());
Devang Patel700a1cb2010-07-20 20:24:18 +0000196}
197
Devang Patel17800552010-03-09 00:44:50 +0000198/// getOrCreateFile - Get the file debug info descriptor for the input location.
199llvm::DIFile CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
Devang Patel823d8e92010-12-08 22:42:58 +0000200 if (!Loc.isValid())
201 // If Location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000202 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel823d8e92010-12-08 22:42:58 +0000203
Anders Carlsson20f12a22009-12-06 18:00:51 +0000204 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patel17800552010-03-09 00:44:50 +0000205 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Ted Kremenek9c250392010-03-30 00:27:51 +0000206
Chris Lattner5f9e2722011-07-23 10:55:15 +0000207 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
Douglas Gregor8c457a82010-11-11 20:45:16 +0000208 // If the location is not valid then use main input file.
Devang Patel16674e82011-02-22 18:56:36 +0000209 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Douglas Gregor8c457a82010-11-11 20:45:16 +0000210
Ted Kremenek9c250392010-03-30 00:27:51 +0000211 // Cache the results.
212 const char *fname = PLoc.getFilename();
213 llvm::DenseMap<const char *, llvm::WeakVH>::iterator it =
214 DIFileCache.find(fname);
215
216 if (it != DIFileCache.end()) {
217 // Verify that the information still exists.
218 if (&*it->second)
219 return llvm::DIFile(cast<llvm::MDNode>(it->second));
220 }
221
Devang Patel16674e82011-02-22 18:56:36 +0000222 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
Ted Kremenek9c250392010-03-30 00:27:51 +0000223
Devang Patelab699792010-05-07 18:12:35 +0000224 DIFileCache[fname] = F;
Ted Kremenek9c250392010-03-30 00:27:51 +0000225 return F;
226
Devang Patel17800552010-03-09 00:44:50 +0000227}
Devang Patel8ab870d2010-05-12 23:46:38 +0000228
Devang Patel532105f2010-10-28 22:03:20 +0000229/// getOrCreateMainFile - Get the file info for main compile unit.
230llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
Devang Patel16674e82011-02-22 18:56:36 +0000231 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel532105f2010-10-28 22:03:20 +0000232}
233
Devang Patel8ab870d2010-05-12 23:46:38 +0000234/// getLineNumber - Get line number for the location. If location is invalid
235/// then use current location.
236unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
Benjamin Kramerc95ff942011-10-14 18:45:06 +0000237 assert((Loc.isValid() || CurLoc.isValid()) && "Invalid current location!");
Devang Patel8ab870d2010-05-12 23:46:38 +0000238 SourceManager &SM = CGM.getContext().getSourceManager();
239 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000240 return PLoc.isValid()? PLoc.getLine() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000241}
242
243/// getColumnNumber - Get column number for the location. If location is
244/// invalid then use current location.
245unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
Benjamin Kramerc95ff942011-10-14 18:45:06 +0000246 assert((Loc.isValid() || CurLoc.isValid()) && "Invalid current location!");
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() {
Devang Patelac4d13c2010-07-27 15:17:16 +0000253 if (!CWDName.empty())
254 return CWDName;
Benjamin Kramerbcbca752011-10-14 18:45:11 +0000255 llvm::SmallString<256> CWD;
256 llvm::sys::fs::current_path(CWD);
257 char *CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
258 memcpy(CompDirnamePtr, CWD.data(), CWD.size());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000259 return CWDName = StringRef(CompDirnamePtr, CWD.size());
Devang Patelac4d13c2010-07-27 15:17:16 +0000260}
261
Devang Patel17800552010-03-09 00:44:50 +0000262/// CreateCompileUnit - Create new compile unit.
263void CGDebugInfo::CreateCompileUnit() {
264
265 // Get absolute path name.
Douglas Gregorac91b4c2010-03-18 23:46:43 +0000266 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000267 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
268 if (MainFileName.empty())
Devang Patel22fe5852010-03-12 21:04:27 +0000269 MainFileName = "<unknown>";
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000270
Douglas Gregorf6728fc2010-03-22 21:28:29 +0000271 // The main file name provided via the "-main-file-name" option contains just
272 // the file name itself with no path information. This file name may have had
273 // a relative path, so we look into the actual file entry for the main
274 // file to determine the real absolute path for the file.
Devang Patel6e6bc392010-07-23 23:04:28 +0000275 std::string MainFileDir;
Devang Patelac4d13c2010-07-27 15:17:16 +0000276 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000277 MainFileDir = MainFile->getDir()->getName();
Devang Patelac4d13c2010-07-27 15:17:16 +0000278 if (MainFileDir != ".")
279 MainFileName = MainFileDir + "/" + MainFileName;
280 }
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000281
Devang Patelac4d13c2010-07-27 15:17:16 +0000282 // Save filename string.
283 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
284 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000285 StringRef Filename(FilenamePtr, MainFileName.length());
Devang Patelac4d13c2010-07-27 15:17:16 +0000286
Chris Lattner515455a2009-03-25 03:28:08 +0000287 unsigned LangTag;
Devang Patel17800552010-03-09 00:44:50 +0000288 const LangOptions &LO = CGM.getLangOptions();
Chris Lattner515455a2009-03-25 03:28:08 +0000289 if (LO.CPlusPlus) {
290 if (LO.ObjC1)
291 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
292 else
293 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
294 } else if (LO.ObjC1) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000295 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner515455a2009-03-25 03:28:08 +0000296 } else if (LO.C99) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000297 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner515455a2009-03-25 03:28:08 +0000298 } else {
299 LangTag = llvm::dwarf::DW_LANG_C89;
300 }
Devang Patel446c6192009-04-17 21:06:59 +0000301
Daniel Dunbar19f19832010-08-24 17:41:09 +0000302 std::string Producer = getClangFullVersion();
Chris Lattner4c2577a2009-05-02 01:00:04 +0000303
304 // Figure out which version of the ObjC runtime we have.
305 unsigned RuntimeVers = 0;
306 if (LO.ObjC1)
307 RuntimeVers = LO.ObjCNonFragileABI ? 2 : 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000308
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000309 // Create new compile unit.
Devang Patel16674e82011-02-22 18:56:36 +0000310 DBuilder.createCompileUnit(
Devang Patel58115002010-07-27 20:49:59 +0000311 LangTag, Filename, getCurrentDirname(),
Devang Patel823d8e92010-12-08 22:42:58 +0000312 Producer,
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000313 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel823d8e92010-12-08 22:42:58 +0000314 // FIXME - Eliminate TheCU.
315 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000316}
317
Devang Patel65e99f22009-02-25 01:36:11 +0000318/// CreateType - Get the Basic type from the cache or create a new
Chris Lattner9c85ba32008-11-10 06:08:34 +0000319/// one if necessary.
Devang Patelf1d1d9a2010-11-01 16:52:40 +0000320llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000321 unsigned Encoding = 0;
Devang Patel05127ca2010-07-28 23:23:29 +0000322 const char *BTName = NULL;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000323 switch (BT->getKind()) {
Devang Patele7566cf2011-09-12 18:50:21 +0000324 case BuiltinType::Dependent:
David Blaikieb219cfc2011-09-23 05:06:16 +0000325 llvm_unreachable("Unexpected builtin type Dependent");
Devang Patele7566cf2011-09-12 18:50:21 +0000326 case BuiltinType::Overload:
David Blaikieb219cfc2011-09-23 05:06:16 +0000327 llvm_unreachable("Unexpected builtin type Overload");
Devang Patele7566cf2011-09-12 18:50:21 +0000328 case BuiltinType::BoundMember:
David Blaikieb219cfc2011-09-23 05:06:16 +0000329 llvm_unreachable("Unexpected builtin type BoundMember");
Devang Patele7566cf2011-09-12 18:50:21 +0000330 case BuiltinType::UnknownAny:
David Blaikieb219cfc2011-09-23 05:06:16 +0000331 llvm_unreachable("Unexpected builtin type UnknownAny");
Devang Patele7566cf2011-09-12 18:50:21 +0000332 case BuiltinType::NullPtr:
Devang Patelf60dca32011-09-14 23:14:14 +0000333 return DBuilder.
334 createNullPtrType(BT->getName(CGM.getContext().getLangOptions()));
Chris Lattner9c85ba32008-11-10 06:08:34 +0000335 case BuiltinType::Void:
336 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000337 case BuiltinType::ObjCClass:
Devang Patel16674e82011-02-22 18:56:36 +0000338 return DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000339 getOrCreateMainFile(), 0, 0, 0,
340 llvm::DIDescriptor::FlagFwdDecl,
341 llvm::DIArray());
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
348 llvm::DIType OCTy =
Devang Patel16674e82011-02-22 18:56:36 +0000349 DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000350 getOrCreateMainFile(), 0, 0, 0,
351 llvm::DIDescriptor::FlagFwdDecl,
352 llvm::DIArray());
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: {
Devang Patel16674e82011-02-22 18:56:36 +0000370 return DBuilder.createStructType(TheCU, "objc_selector",
Devang Patel6e108ce2011-02-09 03:15:05 +0000371 getOrCreateMainFile(), 0, 0, 0,
372 llvm::DIDescriptor::FlagFwdDecl,
373 llvm::DIArray());
374 }
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:
406 BTName = BT->getName(CGM.getContext().getLangOptions());
407 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 Christopheredc95922011-09-13 23:45:09 +0000482/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000483/// then emit record's fwd if debug info size reduction is enabled.
484llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
485 llvm::DIFile Unit) {
486 if (!CGM.getCodeGenOpts().LimitDebugInfo)
487 return getOrCreateType(PointeeTy, Unit);
488
489 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
490 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000491 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
492 unsigned Line = getLineNumber(RD->getLocation());
493 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000494 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel823d8e92010-12-08 22:42:58 +0000495
496 if (RD->isStruct())
Devang Patel16674e82011-02-22 18:56:36 +0000497 return DBuilder.createStructType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000498 Line, 0, 0, llvm::DIType::FlagFwdDecl,
499 llvm::DIArray());
500 else if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +0000501 return DBuilder.createUnionType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000502 Line, 0, 0, llvm::DIType::FlagFwdDecl,
503 llvm::DIArray());
504 else {
505 assert(RD->isClass() && "Unknown RecordType!");
Devang Patel16674e82011-02-22 18:56:36 +0000506 return DBuilder.createClassType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000507 Line, 0, 0, 0, llvm::DIType::FlagFwdDecl,
508 llvm::DIType(), llvm::DIArray());
509 }
Devang Patelc69e1cf2010-09-30 19:05:55 +0000510 }
511 return getOrCreateType(PointeeTy, Unit);
512
513}
514
Anders Carlssona031b352009-11-06 19:19:55 +0000515llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
516 const Type *Ty,
517 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000518 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000519
520 if (Tag == llvm::dwarf::DW_TAG_reference_type)
Devang Patel16674e82011-02-22 18:56:36 +0000521 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000522
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000523 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000524 // Size is always the size of a pointer. We can't use getTypeSize here
525 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000526 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000527 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000528 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Devang Patel823d8e92010-12-08 22:42:58 +0000530 return
Devang Patel16674e82011-02-22 18:56:36 +0000531 DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit), Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000532}
533
Mike Stump9bc093c2009-05-14 02:03:51 +0000534llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000535 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000536 if (BlockLiteralGenericSet)
537 return BlockLiteralGeneric;
538
Chris Lattner5f9e2722011-07-23 10:55:15 +0000539 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000540 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000541 QualType FType;
542 uint64_t FieldSize, FieldOffset;
543 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000544 llvm::DIArray Elements;
545 llvm::DIType EltTy, DescTy;
546
547 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000548 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000549 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
550 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000551
Jay Foadc556ef22011-04-24 10:11:03 +0000552 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000553 EltTys.clear();
554
Devang Patele2472482010-09-29 21:05:52 +0000555 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000556 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000557
Devang Patel16674e82011-02-22 18:56:36 +0000558 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000559 Unit, LineNo, FieldOffset, 0,
560 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000561
Mike Stump9bc093c2009-05-14 02:03:51 +0000562 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000563 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Devang Patel16674e82011-02-22 18:56:36 +0000565 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000566
567 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000568 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000569 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000570 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000571 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
572 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000573 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000574 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000575
Anders Carlsson20f12a22009-12-06 18:00:51 +0000576 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000577 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000578 FieldSize = CGM.getContext().getTypeSize(Ty);
579 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000580 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000581 LineNo, FieldSize, FieldAlign,
582 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000583 EltTys.push_back(FieldTy);
584
585 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000586 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000587
Devang Patel16674e82011-02-22 18:56:36 +0000588 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000589 Unit, LineNo, FieldOffset, 0,
590 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000591
Mike Stump9bc093c2009-05-14 02:03:51 +0000592 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000593 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000594 return BlockLiteralGeneric;
595}
596
Chris Lattner9c85ba32008-11-10 06:08:34 +0000597llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000598 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000599 // Typedefs are derived from some other type. If we have a typedef of a
600 // typedef, make sure to emit the whole chain.
601 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000602 if (!Src.Verify())
603 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000604 // We don't set size information, but do specify where the typedef was
605 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000606 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000607 const TypedefNameDecl *TyDecl = Ty->getDecl();
608 llvm::DIDescriptor TydefContext =
609 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
610
611 return
612 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TydefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000613}
614
Chris Lattner9c85ba32008-11-10 06:08:34 +0000615llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000616 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000617 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000618
Chris Lattner9c85ba32008-11-10 06:08:34 +0000619 // Add the result type at least.
620 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Chris Lattner9c85ba32008-11-10 06:08:34 +0000622 // Set up remainder of arguments if there is a prototype.
623 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000624 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000625 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Devang Patelaf164bb2010-10-06 20:51:45 +0000626 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000627 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
628 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000629 }
630
Jay Foadc556ef22011-04-24 10:11:03 +0000631 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Mike Stump1eb44332009-09-09 15:08:12 +0000632
Devang Patel16674e82011-02-22 18:56:36 +0000633 llvm::DIType DbgTy = DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patelca80a5f2009-10-20 19:55:01 +0000634 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000635}
636
Chris Lattner5f9e2722011-07-23 10:55:15 +0000637llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000638 QualType type,
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000639 uint64_t sizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000640 SourceLocation loc,
641 AccessSpecifier AS,
642 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000643 llvm::DIFile tunit,
644 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000645 llvm::DIType debugType = getOrCreateType(type, tunit);
646
647 // Get the location for the field.
648 llvm::DIFile file = getOrCreateFile(loc);
649 unsigned line = getLineNumber(loc);
650
651 uint64_t sizeInBits = 0;
652 unsigned alignInBits = 0;
653 if (!type->isIncompleteArrayType()) {
654 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
655
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000656 if (sizeInBitsOverride)
657 sizeInBits = sizeInBitsOverride;
John McCall8178df32011-02-22 22:38:33 +0000658 }
659
660 unsigned flags = 0;
661 if (AS == clang::AS_private)
662 flags |= llvm::DIDescriptor::FlagPrivate;
663 else if (AS == clang::AS_protected)
664 flags |= llvm::DIDescriptor::FlagProtected;
665
Devang Patel1d323e02011-06-24 22:00:59 +0000666 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
667 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000668}
669
Devang Patel428deb52010-01-19 00:00:59 +0000670/// CollectRecordFields - A helper function to collect debug info for
671/// record fields. This is used while creating debug info entry for a Record.
672void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000673CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000674 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000675 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000676 unsigned fieldNo = 0;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000677 const FieldDecl *LastFD = 0;
678 bool IsMsStruct = record->hasAttr<MsStructAttr>();
679
John McCall8178df32011-02-22 22:38:33 +0000680 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
681 for (RecordDecl::field_iterator I = record->field_begin(),
682 E = record->field_end();
683 I != E; ++I, ++fieldNo) {
684 FieldDecl *field = *I;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000685 if (IsMsStruct) {
686 // Zero-length bitfields following non-bitfield members are ignored
Fariborz Jahanian855a8e72011-05-03 20:21:04 +0000687 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000688 --fieldNo;
689 continue;
690 }
691 LastFD = field;
692 }
Devang Patel428deb52010-01-19 00:00:59 +0000693
Chris Lattner5f9e2722011-07-23 10:55:15 +0000694 StringRef name = field->getName();
John McCall8178df32011-02-22 22:38:33 +0000695 QualType type = field->getType();
696
697 // Ignore unnamed fields unless they're anonymous structs/unions.
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000698 if (name.empty() && !type->isRecordType()) {
699 LastFD = field;
Devang Patel428deb52010-01-19 00:00:59 +0000700 continue;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000701 }
Devang Patel428deb52010-01-19 00:00:59 +0000702
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000703 uint64_t SizeInBitsOverride = 0;
704 if (field->isBitField()) {
705 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
706 assert(SizeInBitsOverride && "found named 0-width bitfield");
707 }
708
John McCall8178df32011-02-22 22:38:33 +0000709 llvm::DIType fieldType
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000710 = createFieldType(name, type, SizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000711 field->getLocation(), field->getAccess(),
Devang Patel1d323e02011-06-24 22:00:59 +0000712 layout.getFieldOffset(fieldNo), tunit, RecordTy);
Devang Patel428deb52010-01-19 00:00:59 +0000713
John McCall8178df32011-02-22 22:38:33 +0000714 elements.push_back(fieldType);
Devang Patel428deb52010-01-19 00:00:59 +0000715 }
716}
717
Devang Patela6da1922010-01-28 00:28:01 +0000718/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
719/// function type is not updated to include implicit "this" pointer. Use this
720/// routine to get a method type which includes "this" pointer.
721llvm::DIType
722CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000723 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000724 llvm::DIType FnTy
725 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
726 0),
727 Unit);
Devang Pateld774d1e2010-01-28 21:43:50 +0000728
Devang Patela6da1922010-01-28 00:28:01 +0000729 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000730 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000731 assert (Args.getNumElements() && "Invalid number of arguments!");
732
Chris Lattner5f9e2722011-07-23 10:55:15 +0000733 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000734
735 // First element is always return type. For 'void' functions it is NULL.
736 Elts.push_back(Args.getElement(0));
737
Eric Christopher2121cda2011-09-14 01:10:50 +0000738 if (!Method->isStatic()) {
739 // "this" pointer is always first argument.
740 QualType ThisPtr = Method->getThisType(CGM.getContext());
741 llvm::DIType ThisPtrType =
742 DBuilder.createArtificialType(getOrCreateType(ThisPtr, Unit));
743
744 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
745 Elts.push_back(ThisPtrType);
746 }
Devang Patela6da1922010-01-28 00:28:01 +0000747
748 // Copy rest of the arguments.
749 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
750 Elts.push_back(Args.getElement(i));
751
Jay Foadc556ef22011-04-24 10:11:03 +0000752 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000753
Devang Patel16674e82011-02-22 18:56:36 +0000754 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000755}
756
Devang Patel58faf202010-10-22 17:11:50 +0000757/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
758/// inside a function.
759static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
760 if (const CXXRecordDecl *NRD =
761 dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
762 return isFunctionLocalClass(NRD);
763 else if (isa<FunctionDecl>(RD->getDeclContext()))
764 return true;
765 return false;
766
767}
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000768/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
769/// a single member function GlobalDecl.
770llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000771CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000772 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000773 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000774 bool IsCtorOrDtor =
775 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
776
Chris Lattner5f9e2722011-07-23 10:55:15 +0000777 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000778 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000779
780 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
781 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000782 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000783 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000784 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000785
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000786 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000787 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
788 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000789
790 // Collect virtual method info.
791 llvm::DIType ContainingType;
792 unsigned Virtuality = 0;
793 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000794
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000795 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000796 if (Method->isPure())
797 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
798 else
799 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
800
801 // It doesn't make sense to give a virtual destructor a vtable index,
802 // since a single destructor has two entries in the vtable.
803 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000804 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000805 ContainingType = RecordTy;
806 }
807
Devang Patele2472482010-09-29 21:05:52 +0000808 unsigned Flags = 0;
809 if (Method->isImplicit())
810 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000811 AccessSpecifier Access = Method->getAccess();
812 if (Access == clang::AS_private)
813 Flags |= llvm::DIDescriptor::FlagPrivate;
814 else if (Access == clang::AS_protected)
815 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000816 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
817 if (CXXC->isExplicit())
818 Flags |= llvm::DIDescriptor::FlagExplicit;
819 } else if (const CXXConversionDecl *CXXC =
820 dyn_cast<CXXConversionDecl>(Method)) {
821 if (CXXC->isExplicit())
822 Flags |= llvm::DIDescriptor::FlagExplicit;
823 }
Devang Patel3951e712010-10-07 22:03:49 +0000824 if (Method->hasPrototype())
825 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Pateld78a0192010-10-01 23:32:17 +0000826
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000827 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000828 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000829 MethodDefUnit, MethodLine,
830 MethodTy, /*isLocalToUnit=*/false,
831 /* isDefinition=*/ false,
832 Virtuality, VIndex, ContainingType,
833 Flags, CGM.getLangOptions().Optimize);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000834
Devang Patel22a5cdf2011-04-29 23:42:32 +0000835 SPCache[Method] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000836
837 return SP;
838}
839
Devang Patel4125fd22010-01-19 01:54:44 +0000840/// CollectCXXMemberFunctions - A helper function to collect debug info for
841/// C++ member functions.This is used while creating debug info entry for
842/// a Record.
843void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000844CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000845 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000846 llvm::DIType RecordTy) {
Devang Patel239cec62010-02-01 21:39:52 +0000847 for(CXXRecordDecl::method_iterator I = RD->method_begin(),
848 E = RD->method_end(); I != E; ++I) {
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000849 const CXXMethodDecl *Method = *I;
Anders Carlssonbea9b232010-01-26 04:40:11 +0000850
Devang Pateld5322da2010-02-09 19:09:28 +0000851 if (Method->isImplicit() && !Method->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +0000852 continue;
Devang Patel4125fd22010-01-19 01:54:44 +0000853
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000854 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +0000855 }
856}
857
Devang Patel2ed8f002010-08-27 17:47:47 +0000858/// CollectCXXFriends - A helper function to collect debug info for
859/// C++ base classes. This is used while creating debug info entry for
860/// a Record.
861void CGDebugInfo::
862CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000863 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +0000864 llvm::DIType RecordTy) {
Devang Patel2ed8f002010-08-27 17:47:47 +0000865 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
866 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +0000867 if ((*BI)->isUnsupportedFriend())
868 continue;
Devang Patel823d8e92010-12-08 22:42:58 +0000869 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +0000870 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000871 getOrCreateType(TInfo->getType(),
872 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +0000873 }
874}
875
Devang Patela245c5b2010-01-25 23:32:18 +0000876/// CollectCXXBases - A helper function to collect debug info for
877/// C++ base classes. This is used while creating debug info entry for
878/// a Record.
879void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000880CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000881 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000882 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +0000883
Devang Patel239cec62010-02-01 21:39:52 +0000884 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
885 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
886 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +0000887 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +0000888 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +0000889
890 const CXXRecordDecl *Base =
891 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
892
893 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +0000894 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +0000895 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +0000896 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000897 0 - CGM.getVTableContext()
898 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +0000899 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +0000900 } else
Devang Patel62c117d2011-04-04 20:36:06 +0000901 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Ken Dyck14c65ca2011-04-07 12:37:09 +0000902 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
903 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +0000904
905 AccessSpecifier Access = BI->getAccessSpecifier();
906 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +0000907 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +0000908 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +0000909 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +0000910
Devang Patel823d8e92010-12-08 22:42:58 +0000911 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +0000912 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000913 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +0000914 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +0000915 EltTys.push_back(DTy);
916 }
Devang Patela245c5b2010-01-25 23:32:18 +0000917}
918
Devang Patel5ecb1df2011-04-05 22:54:11 +0000919/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +0000920llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +0000921CollectTemplateParams(const TemplateParameterList *TPList,
922 const TemplateArgumentList &TAList,
923 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000924 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +0000925 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
926 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +0000927 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +0000928 if (TA.getKind() == TemplateArgument::Type) {
929 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
930 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +0000931 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +0000932 TemplateParams.push_back(TTP);
933 } else if (TA.getKind() == TemplateArgument::Integral) {
934 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +0000935 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +0000936 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
937 TA.getAsIntegral()->getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +0000938 TemplateParams.push_back(TVP);
939 }
940 }
Jay Foadc556ef22011-04-24 10:11:03 +0000941 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +0000942}
943
Devang Patel5ecb1df2011-04-05 22:54:11 +0000944/// CollectFunctionTemplateParams - A helper function to collect debug
945/// info for function template parameters.
946llvm::DIArray CGDebugInfo::
947CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherab5278e2011-10-11 23:00:51 +0000948 if (FD->getTemplatedKind() ==
949 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patel5ecb1df2011-04-05 22:54:11 +0000950 const TemplateParameterList *TList =
Eric Christopherab5278e2011-10-11 23:00:51 +0000951 FD->getTemplateSpecializationInfo()->getTemplate()
952 ->getTemplateParameters();
Devang Patel5ecb1df2011-04-05 22:54:11 +0000953 return
954 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
955 }
956 return llvm::DIArray();
957}
958
959/// CollectCXXTemplateParams - A helper function to collect debug info for
960/// template parameters.
961llvm::DIArray CGDebugInfo::
962CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
963 llvm::DIFile Unit) {
964 llvm::PointerUnion<ClassTemplateDecl *,
965 ClassTemplatePartialSpecializationDecl *>
966 PU = TSpecial->getSpecializedTemplateOrPartial();
967
968 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
969 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
970 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
971 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
972 return CollectTemplateParams(TPList, TAList, Unit);
973}
974
Devang Patel4ce3f202010-01-28 18:11:52 +0000975/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +0000976llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +0000977 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +0000978 return VTablePtrType;
979
980 ASTContext &Context = CGM.getContext();
981
982 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +0000983 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +0000984 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +0000985 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +0000986 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +0000987 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +0000988 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +0000989 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +0000990 return VTablePtrType;
991}
992
Anders Carlsson046c2942010-04-17 20:15:18 +0000993/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000994StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Devang Patel4ce3f202010-01-28 18:11:52 +0000995 // Otherwise construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +0000996 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +0000997
998 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +0000999 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001000 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001001 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001002}
1003
1004
Anders Carlsson046c2942010-04-17 20:15:18 +00001005/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +00001006/// debug info entry in EltTys vector.
1007void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +00001008CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001009 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +00001010 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +00001011
1012 // If there is a primary base then it will hold vtable info.
1013 if (RL.getPrimaryBase())
1014 return;
1015
1016 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +00001017 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +00001018 return;
1019
1020 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1021 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +00001022 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001023 0, Size, 0, 0, 0,
1024 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +00001025 EltTys.push_back(VPTR);
1026}
1027
Devang Patelc69e1cf2010-09-30 19:05:55 +00001028/// getOrCreateRecordType - Emit record type's standalone debug info.
1029llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1030 SourceLocation Loc) {
1031 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patel16674e82011-02-22 18:56:36 +00001032 DBuilder.retainType(T);
Devang Patelc69e1cf2010-09-30 19:05:55 +00001033 return T;
1034}
1035
Devang Patel65e99f22009-02-25 01:36:11 +00001036/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +00001037llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001038 RecordDecl *RD = Ty->getDecl();
Devang Patel31f7d022011-01-17 22:23:07 +00001039 llvm::DIFile Unit = getOrCreateFile(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001040
Chris Lattner9c85ba32008-11-10 06:08:34 +00001041 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001042 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1043 unsigned Line = getLineNumber(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001044
Chris Lattner9c85ba32008-11-10 06:08:34 +00001045 // Records and classes and unions can all be recursive. To handle them, we
1046 // first generate a debug descriptor for the struct as a forward declaration.
1047 // Then (if it is a definition) we go through and get debug info for all of
1048 // its members. Finally, we create a descriptor for the complete type (which
1049 // may refer to the forward decl if the struct is recursive) and replace all
1050 // uses of the forward declaration with the final definition.
Devang Patel0b897992010-07-08 19:56:29 +00001051 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +00001052 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel0b897992010-07-08 19:56:29 +00001053
1054 // If this is just a forward declaration, construct an appropriately
1055 // marked node and just return it.
1056 if (!RD->getDefinition()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001057 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001058 DBuilder.createStructType(FDContext, RD->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001059 DefUnit, Line, 0, 0,
1060 llvm::DIDescriptor::FlagFwdDecl,
1061 llvm::DIArray());
Devang Patel0b897992010-07-08 19:56:29 +00001062
1063 return FwdDecl;
1064 }
Devang Pateld0f251b2010-01-20 23:56:40 +00001065
Devang Patel16674e82011-02-22 18:56:36 +00001066 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001067
Devang Patelab699792010-05-07 18:12:35 +00001068 llvm::MDNode *MN = FwdDecl;
1069 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001070 // Otherwise, insert it into the TypeCache so that recursive uses will find
1071 // it.
Devang Patelab699792010-05-07 18:12:35 +00001072 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001073 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001074 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001075 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001076
1077 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001078 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001079
Devang Pateld6c5a262010-02-01 21:52:22 +00001080 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +00001081 if (CXXDecl) {
1082 CollectCXXBases(CXXDecl, Unit, EltTys, FwdDecl);
Anders Carlsson046c2942010-04-17 20:15:18 +00001083 CollectVTableInfo(CXXDecl, Unit, EltTys);
Devang Patel3064afe2010-01-28 21:41:35 +00001084 }
Devang Pateldabc3e92010-08-12 00:02:44 +00001085
1086 // Collect static variables with initializers.
1087 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
1088 I != E; ++I)
1089 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
1090 if (const Expr *Init = V->getInit()) {
1091 Expr::EvalResult Result;
1092 if (Init->Evaluate(Result, CGM.getContext()) && Result.Val.isInt()) {
1093 llvm::ConstantInt *CI
1094 = llvm::ConstantInt::get(CGM.getLLVMContext(), Result.Val.getInt());
1095
1096 // Create the descriptor for static variable.
1097 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001098 StringRef VName = V->getName();
Devang Pateldabc3e92010-08-12 00:02:44 +00001099 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
1100 // Do not use DIGlobalVariable for enums.
1101 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
Devang Patel16674e82011-02-22 18:56:36 +00001102 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
Devang Patel823d8e92010-12-08 22:42:58 +00001103 getLineNumber(V->getLocation()),
1104 VTy, true, CI);
Devang Pateldabc3e92010-08-12 00:02:44 +00001105 }
1106 }
1107 }
1108 }
1109
Devang Patel1d323e02011-06-24 22:00:59 +00001110 CollectRecordFields(RD, Unit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001111 llvm::DIArray TParamsArray;
Devang Patel4ce3f202010-01-28 18:11:52 +00001112 if (CXXDecl) {
Devang Patel4125fd22010-01-19 01:54:44 +00001113 CollectCXXMemberFunctions(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel2ed8f002010-08-27 17:47:47 +00001114 CollectCXXFriends(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001115 if (const ClassTemplateSpecializationDecl *TSpecial
1116 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
1117 TParamsArray = CollectCXXTemplateParams(TSpecial, Unit);
Devang Patel823d8e92010-12-08 22:42:58 +00001118 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001119
Eric Christopheraa2164c2011-09-29 00:00:45 +00001120 LexicalBlockStack.pop_back();
Devang Patel823d8e92010-12-08 22:42:58 +00001121 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1122 RegionMap.find(Ty->getDecl());
1123 if (RI != RegionMap.end())
1124 RegionMap.erase(RI);
1125
1126 llvm::DIDescriptor RDContext =
John McCall8178df32011-02-22 22:38:33 +00001127 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Chris Lattner5f9e2722011-07-23 10:55:15 +00001128 StringRef RDName = RD->getName();
Devang Patel823d8e92010-12-08 22:42:58 +00001129 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1130 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Jay Foadc556ef22011-04-24 10:11:03 +00001131 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel823d8e92010-12-08 22:42:58 +00001132 llvm::MDNode *RealDecl = NULL;
1133
Devang Patel5c5b5872011-02-28 22:32:45 +00001134 if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +00001135 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
Devang Patel5c5b5872011-02-28 22:32:45 +00001136 Size, Align, 0, Elements);
1137 else if (CXXDecl) {
Devang Patel823d8e92010-12-08 22:42:58 +00001138 RDName = getClassName(RD);
1139 // A class's primary base or the class itself contains the vtable.
1140 llvm::MDNode *ContainingType = NULL;
Devang Pateld6c5a262010-02-01 21:52:22 +00001141 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel5bc794f2010-10-14 22:59:23 +00001142 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1143 // Seek non virtual primary base root.
1144 while (1) {
1145 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1146 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
Anders Carlssonc9e814b2010-11-24 23:12:57 +00001147 if (PBT && !BRL.isPrimaryBaseVirtual())
Devang Patel5bc794f2010-10-14 22:59:23 +00001148 PBase = PBT;
1149 else
1150 break;
1151 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001152 ContainingType =
Devang Patelab699792010-05-07 18:12:35 +00001153 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), Unit);
Devang Patel5bc794f2010-10-14 22:59:23 +00001154 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001155 else if (CXXDecl->isDynamicClass())
Devang Patelab699792010-05-07 18:12:35 +00001156 ContainingType = FwdDecl;
Devang Patel9c1714b2011-04-05 17:30:54 +00001157
Devang Patel16674e82011-02-22 18:56:36 +00001158 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001159 Size, Align, 0, 0, llvm::DIType(),
Devang Patelfa275df2011-02-02 21:38:49 +00001160 Elements, ContainingType,
1161 TParamsArray);
Devang Patel5c5b5872011-02-28 22:32:45 +00001162 } else
1163 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1164 Size, Align, 0, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +00001165
Chris Lattner9c85ba32008-11-10 06:08:34 +00001166 // Now that we have a real decl for the struct, replace anything using the
1167 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001168 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001169 RegionMap[RD] = llvm::WeakVH(RealDecl);
Devang Patel823d8e92010-12-08 22:42:58 +00001170 return llvm::DIType(RealDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001171}
1172
John McCallc12c5bb2010-05-15 11:32:37 +00001173/// CreateType - get objective-c object type.
1174llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1175 llvm::DIFile Unit) {
1176 // Ignore protocols.
1177 return getOrCreateType(Ty->getBaseType(), Unit);
1178}
1179
Devang Patel9ca36b62009-02-26 21:10:26 +00001180/// CreateType - get objective-c interface type.
1181llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001182 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001183 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001184 if (!ID)
1185 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001186
1187 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001188 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001189 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001190 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001191
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001192 // If this is just a forward declaration return a special forward-declaration
1193 // debug type since we won't be able to lay out the entire type.
Dan Gohman45f7c782010-08-23 21:15:56 +00001194 if (ID->isForwardDecl()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001195 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001196 DBuilder.createStructType(Unit, ID->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001197 DefUnit, Line, 0, 0, 0,
1198 llvm::DIArray(), RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001199 return FwdDecl;
1200 }
1201
Eric Christopher1cd1d742011-10-06 00:30:52 +00001202 // To handle a recursive interface, we first generate a debug descriptor
1203 // for the struct as a forward declaration. Then (if it is a definition)
1204 // we go through and get debug info for all of its members. Finally, we
1205 // create a descriptor for the complete type (which may refer to the
1206 // forward decl if the struct is recursive) and replace all uses of the
1207 // forward declaration with the final definition.
Devang Patel16674e82011-02-22 18:56:36 +00001208 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001209
Devang Patelab699792010-05-07 18:12:35 +00001210 llvm::MDNode *MN = FwdDecl;
1211 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Devang Patel9ca36b62009-02-26 21:10:26 +00001212 // Otherwise, insert it into the TypeCache so that recursive uses will find
1213 // it.
Devang Patelab699792010-05-07 18:12:35 +00001214 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001215 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001216 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001217 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001218
1219 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001220 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001221
Devang Pateld6c5a262010-02-01 21:52:22 +00001222 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001223 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001224 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001225 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001226 if (!SClassTy.isValid())
1227 return llvm::DIType();
1228
Mike Stump1eb44332009-09-09 15:08:12 +00001229 llvm::DIType InhTag =
Devang Patel16674e82011-02-22 18:56:36 +00001230 DBuilder.createInheritance(FwdDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001231 EltTys.push_back(InhTag);
1232 }
1233
Devang Pateld6c5a262010-02-01 21:52:22 +00001234 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel8c6f9c42011-09-19 18:54:16 +00001235 ObjCImplementationDecl *ImpD = ID->getImplementation();
Devang Patel9ca36b62009-02-26 21:10:26 +00001236 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001237 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001238 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001239 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001240 if (!FieldTy.isValid())
1241 return llvm::DIType();
1242
Chris Lattner5f9e2722011-07-23 10:55:15 +00001243 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001244
Devang Patelde135022009-04-27 22:40:36 +00001245 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001246 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001247 continue;
1248
Devang Patel9ca36b62009-02-26 21:10:26 +00001249 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001250 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1251 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001252 QualType FType = Field->getType();
1253 uint64_t FieldSize = 0;
1254 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001255
Devang Patel99c20eb2009-03-20 18:24:39 +00001256 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001257
Devang Patel99c20eb2009-03-20 18:24:39 +00001258 // Bit size, align and offset of the type.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001259 FieldSize = Field->isBitField()
1260 ? Field->getBitWidthValue(CGM.getContext())
1261 : CGM.getContext().getTypeSize(FType);
1262 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001263 }
1264
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001265 // We can't know the offset of our ivar in the structure if we're using
1266 // the non-fragile abi and the debugger should ignore the value anyways.
1267 // Call it the FieldNo+1 due to how debuggers use the information,
1268 // e.g. negating the value when it needs a lookup in the dynamic table.
1269 uint64_t FieldOffset = CGM.getLangOptions().ObjCNonFragileABI ? FieldNo+1
1270 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001271
Devang Patelc20482b2009-03-19 00:23:53 +00001272 unsigned Flags = 0;
1273 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001274 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001275 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001276 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001277
Chris Lattner5f9e2722011-07-23 10:55:15 +00001278 StringRef PropertyName;
1279 StringRef PropertyGetter;
1280 StringRef PropertySetter;
Eli Friedman10292cc2011-04-17 06:40:15 +00001281 unsigned PropertyAttributes = 0;
Devang Patel8c6f9c42011-09-19 18:54:16 +00001282 ObjCPropertyDecl *PD = NULL;
1283 if (ImpD)
1284 if (ObjCPropertyImplDecl *PImpD =
Eric Christopherab5278e2011-10-11 23:00:51 +00001285 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier()))
1286 PD = PImpD->getPropertyDecl();
Devang Patel8c6f9c42011-09-19 18:54:16 +00001287 if (PD) {
Devang Patelfa936d82011-04-16 00:12:55 +00001288 PropertyName = PD->getName();
Devang Patel90c1eed2011-04-16 00:37:51 +00001289 PropertyGetter = getSelectorName(PD->getGetterName());
1290 PropertySetter = getSelectorName(PD->getSetterName());
Devang Patelfa936d82011-04-16 00:12:55 +00001291 PropertyAttributes = PD->getPropertyAttributes();
Devang Patel8c6f9c42011-09-19 18:54:16 +00001292 }
Devang Patelfa936d82011-04-16 00:12:55 +00001293 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1294 FieldLine, FieldSize, FieldAlign,
1295 FieldOffset, Flags, FieldTy,
1296 PropertyName, PropertyGetter,
1297 PropertySetter, PropertyAttributes);
Devang Patel9ca36b62009-02-26 21:10:26 +00001298 EltTys.push_back(FieldTy);
1299 }
Mike Stump1eb44332009-09-09 15:08:12 +00001300
Jay Foadc556ef22011-04-24 10:11:03 +00001301 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel9ca36b62009-02-26 21:10:26 +00001302
Eric Christopheraa2164c2011-09-29 00:00:45 +00001303 LexicalBlockStack.pop_back();
Devang Patele4c1ea02010-03-11 20:01:48 +00001304 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1305 RegionMap.find(Ty->getDecl());
1306 if (RI != RegionMap.end())
1307 RegionMap.erase(RI);
1308
Devang Patel9ca36b62009-02-26 21:10:26 +00001309 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001310 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1311 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001312
Devang Patel707b1e92011-05-12 19:07:41 +00001313 unsigned Flags = 0;
Devang Patelf568b642011-05-12 21:14:54 +00001314 if (ID->getImplementation())
Devang Patelaad16092011-05-12 21:29:57 +00001315 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
Devang Patel707b1e92011-05-12 19:07:41 +00001316
Devang Patel823d8e92010-12-08 22:42:58 +00001317 llvm::DIType RealDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001318 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
Devang Patel707b1e92011-05-12 19:07:41 +00001319 Line, Size, Align, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001320 Elements, RuntimeLang);
Devang Patel9ca36b62009-02-26 21:10:26 +00001321
1322 // Now that we have a real decl for the struct, replace anything using the
1323 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001324 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001325 RegionMap[ID] = llvm::WeakVH(RealDecl);
Devang Patelfe09eab2009-07-13 17:03:14 +00001326
Devang Patel9ca36b62009-02-26 21:10:26 +00001327 return RealDecl;
1328}
1329
Devang Patel31f7d022011-01-17 22:23:07 +00001330llvm::DIType CGDebugInfo::CreateType(const TagType *Ty) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001331 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
Devang Patel31f7d022011-01-17 22:23:07 +00001332 return CreateType(RT);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001333 else if (const EnumType *ET = dyn_cast<EnumType>(Ty))
Devang Patel31f7d022011-01-17 22:23:07 +00001334 return CreateEnumType(ET->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001335
Chris Lattner9c85ba32008-11-10 06:08:34 +00001336 return llvm::DIType();
1337}
1338
Devang Patel70c23cd2010-02-23 22:59:39 +00001339llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty,
Eli Friedmana7e68452010-08-22 01:00:03 +00001340 llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001341 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001342 int64_t NumElems = Ty->getNumElements();
1343 int64_t LowerBound = 0;
1344 if (NumElems == 0)
1345 // If number of elements are not known then this is an unbounded array.
1346 // Use Low = 1, Hi = 0 to express such arrays.
1347 LowerBound = 1;
1348 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001349 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001350
Devang Patel6cf37dd2011-04-08 21:56:52 +00001351 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001352 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001353
1354 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1355 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1356
1357 return
Devang Patel16674e82011-02-22 18:56:36 +00001358 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001359}
1360
Chris Lattner9c85ba32008-11-10 06:08:34 +00001361llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001362 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001363 uint64_t Size;
1364 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001365
1366
Nuno Lopes010d5142009-01-28 00:35:17 +00001367 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001368 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001369 Size = 0;
1370 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001371 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001372 } else if (Ty->isIncompleteArrayType()) {
1373 Size = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001374 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001375 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001376 Size = 0;
1377 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001378 } else {
1379 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001380 Size = CGM.getContext().getTypeSize(Ty);
1381 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001382 }
Mike Stump1eb44332009-09-09 15:08:12 +00001383
Chris Lattner9c85ba32008-11-10 06:08:34 +00001384 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1385 // interior arrays, do we care? Why aren't nested arrays represented the
1386 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001387 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001388 QualType EltTy(Ty, 0);
Devang Patelcdf523c2010-10-06 18:30:00 +00001389 if (Ty->isIncompleteArrayType())
Chris Lattner9c85ba32008-11-10 06:08:34 +00001390 EltTy = Ty->getElementType();
Devang Patelcdf523c2010-10-06 18:30:00 +00001391 else {
1392 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
Devang Patel6cf37dd2011-04-08 21:56:52 +00001393 int64_t UpperBound = 0;
1394 int64_t LowerBound = 0;
Nick Lewycky3894c072011-04-09 00:25:15 +00001395 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
Devang Patelcdf523c2010-10-06 18:30:00 +00001396 if (CAT->getSize().getZExtValue())
Devang Patel6cf37dd2011-04-08 21:56:52 +00001397 UpperBound = CAT->getSize().getZExtValue() - 1;
Nick Lewycky3894c072011-04-09 00:25:15 +00001398 } else
Devang Patel6cf37dd2011-04-08 21:56:52 +00001399 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1400 // arrays.
1401 LowerBound = 1;
1402
Devang Patelcdf523c2010-10-06 18:30:00 +00001403 // FIXME: Verify this is right for VLAs.
Eric Christopherab5278e2011-10-11 23:00:51 +00001404 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1405 UpperBound));
Devang Patelcdf523c2010-10-06 18:30:00 +00001406 EltTy = Ty->getElementType();
1407 }
Sanjiv Gupta507de852008-06-09 10:47:41 +00001408 }
Mike Stump1eb44332009-09-09 15:08:12 +00001409
Jay Foadc556ef22011-04-24 10:11:03 +00001410 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001411
Devang Patelca80a5f2009-10-20 19:55:01 +00001412 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001413 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001414 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001415 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001416}
1417
Anders Carlssona031b352009-11-06 19:19:55 +00001418llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001419 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001420 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1421 Ty, Ty->getPointeeType(), Unit);
1422}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001423
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001424llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1425 llvm::DIFile Unit) {
1426 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1427 Ty, Ty->getPointeeType(), Unit);
1428}
1429
Anders Carlsson20f12a22009-12-06 18:00:51 +00001430llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001431 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001432 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1433 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1434
1435 if (!Ty->getPointeeType()->isFunctionType()) {
1436 // We have a data member pointer type.
1437 return PointerDiffDITy;
1438 }
1439
1440 // We have a member function pointer type. Treat it as a struct with two
1441 // ptrdiff_t members.
1442 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1443
1444 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001445 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001446
1447 // FIXME: This should probably be a function type instead.
1448 ElementTypes[0] =
Devang Patel1d323e02011-06-24 22:00:59 +00001449 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001450 Info.first, Info.second, FieldOffset, 0,
1451 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001452 FieldOffset += Info.first;
1453
1454 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001455 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001456 Info.first, Info.second, FieldOffset, 0,
1457 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001458
Jay Foadc556ef22011-04-24 10:11:03 +00001459 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001460
Chris Lattner5f9e2722011-07-23 10:55:15 +00001461 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001462 U, 0, FieldOffset,
1463 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001464}
1465
Eli Friedmanb001de72011-10-06 23:00:33 +00001466llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1467 llvm::DIFile U) {
1468 // Ignore the atomic wrapping
1469 // FIXME: What is the correct representation?
1470 return getOrCreateType(Ty->getValueType(), U);
1471}
1472
Devang Patel6237cea2010-08-23 22:07:25 +00001473/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001474llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1475 llvm::DIFile Unit = getOrCreateFile(ED->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001476 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001477
1478 // Create DIEnumerator elements for each enumerator.
1479 for (EnumDecl::enumerator_iterator
1480 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1481 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001482 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001483 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001484 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001485 }
1486
1487 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001488 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001489
1490 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1491 unsigned Line = getLineNumber(ED->getLocation());
1492 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001493 uint64_t Align = 0;
1494 if (!ED->getTypeForDecl()->isIncompleteType()) {
1495 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1496 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1497 }
Devang Patel4bc48872010-10-27 23:23:58 +00001498 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001499 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Devang Patel6237cea2010-08-23 22:07:25 +00001500 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001501 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001502 Size, Align, EltArray);
Devang Patel6237cea2010-08-23 22:07:25 +00001503 return DbgTy;
1504}
1505
Douglas Gregor840943d2009-12-21 20:18:30 +00001506static QualType UnwrapTypeForDebugInfo(QualType T) {
1507 do {
1508 QualType LastT = T;
1509 switch (T->getTypeClass()) {
1510 default:
1511 return T;
1512 case Type::TemplateSpecialization:
1513 T = cast<TemplateSpecializationType>(T)->desugar();
1514 break;
John McCallf4c73712011-01-19 06:33:43 +00001515 case Type::TypeOfExpr:
1516 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001517 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001518 case Type::TypeOf:
1519 T = cast<TypeOfType>(T)->getUnderlyingType();
1520 break;
1521 case Type::Decltype:
1522 T = cast<DecltypeType>(T)->getUnderlyingType();
1523 break;
Sean Huntca63c202011-05-24 22:41:36 +00001524 case Type::UnaryTransform:
1525 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1526 break;
John McCall9d156a72011-01-06 01:58:22 +00001527 case Type::Attributed:
1528 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001529 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001530 case Type::Elaborated:
1531 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001532 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001533 case Type::Paren:
1534 T = cast<ParenType>(T)->getInnerType();
1535 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001536 case Type::SubstTemplateTypeParm:
1537 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1538 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001539 case Type::Auto:
1540 T = cast<AutoType>(T)->getDeducedType();
1541 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001542 }
1543
1544 assert(T != LastT && "Type unwrapping failed to unwrap!");
1545 if (T == LastT)
1546 return T;
1547 } while (true);
1548
1549 return T;
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001550}
1551
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001552/// getOrCreateType - Get the type from the cache or create a new
1553/// one if necessary.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001554llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001555 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001556 if (Ty.isNull())
1557 return llvm::DIType();
Mike Stump1eb44332009-09-09 15:08:12 +00001558
Douglas Gregor840943d2009-12-21 20:18:30 +00001559 // Unwrap the type as needed for debug information.
1560 Ty = UnwrapTypeForDebugInfo(Ty);
Devang Patele80d5672011-03-23 16:29:39 +00001561
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001562 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001563 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001564 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001565 if (it != TypeCache.end()) {
1566 // Verify that the debug info still exists.
1567 if (&*it->second)
1568 return llvm::DIType(cast<llvm::MDNode>(it->second));
1569 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001570
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001571 // Otherwise create the type.
1572 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001573
1574 // And update the type cache.
Devang Patelab699792010-05-07 18:12:35 +00001575 TypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001576 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001577}
1578
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001579/// CreateTypeNode - Create a new debug type node.
Daniel Dunbar03faac32009-09-19 19:27:14 +00001580llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001581 llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001582 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001583 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001584 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001585
Douglas Gregor2101a822009-12-21 19:57:21 +00001586 const char *Diag = 0;
1587
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001588 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001589 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001590#define TYPE(Class, Base)
1591#define ABSTRACT_TYPE(Class, Base)
1592#define NON_CANONICAL_TYPE(Class, Base)
1593#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1594#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001595 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001596
Anders Carlssonbfe69952009-11-06 18:24:04 +00001597 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001598 case Type::Vector:
1599 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001600 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001601 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001602 case Type::ObjCObject:
1603 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001604 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001605 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Devang Patelf1d1d9a2010-11-01 16:52:40 +00001606 case Type::Builtin: return CreateType(cast<BuiltinType>(Ty));
Devang Patel344ff5d2010-12-09 00:25:29 +00001607 case Type::Complex: return CreateType(cast<ComplexType>(Ty));
Daniel Dunbar03faac32009-09-19 19:27:14 +00001608 case Type::Pointer: return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001609 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001610 return CreateType(cast<BlockPointerType>(Ty), Unit);
1611 case Type::Typedef: return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001612 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00001613 case Type::Enum:
Devang Patel31f7d022011-01-17 22:23:07 +00001614 return CreateType(cast<TagType>(Ty));
Chris Lattner9c85ba32008-11-10 06:08:34 +00001615 case Type::FunctionProto:
1616 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001617 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001618 case Type::ConstantArray:
1619 case Type::VariableArray:
1620 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001621 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001622
1623 case Type::LValueReference:
1624 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001625 case Type::RValueReference:
1626 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001627
Anders Carlsson20f12a22009-12-06 18:00:51 +00001628 case Type::MemberPointer:
1629 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001630
Eli Friedmanb001de72011-10-06 23:00:33 +00001631 case Type::Atomic:
1632 return CreateType(cast<AtomicType>(Ty), Unit);
1633
John McCall9d156a72011-01-06 01:58:22 +00001634 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001635 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001636 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001637 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001638 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001639 case Type::TypeOfExpr:
1640 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001641 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001642 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001643 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001644 llvm_unreachable("type should have been unwrapped!");
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001645 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001646 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001647
1648 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001649 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001650 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001651 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001652 << Diag;
1653 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001654}
1655
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001656/// CreateMemberType - Create new member and increase Offset by FType's size.
1657llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001658 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001659 uint64_t *Offset) {
1660 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1661 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1662 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001663 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001664 FieldSize, FieldAlign,
1665 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001666 *Offset += FieldSize;
1667 return Ty;
1668}
1669
Devang Patel120bf322011-04-23 00:08:01 +00001670/// getFunctionDeclaration - Return debug info descriptor to describe method
1671/// declaration for the given method definition.
1672llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1673 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1674 if (!FD) return llvm::DISubprogram();
1675
1676 // Setup context.
1677 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1678
Devang Patel22a5cdf2011-04-29 23:42:32 +00001679 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1680 MI = SPCache.find(FD);
1681 if (MI != SPCache.end()) {
1682 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1683 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1684 return SP;
1685 }
1686
Devang Patel120bf322011-04-23 00:08:01 +00001687 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1688 E = FD->redecls_end(); I != E; ++I) {
1689 const FunctionDecl *NextFD = *I;
1690 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1691 MI = SPCache.find(NextFD);
1692 if (MI != SPCache.end()) {
1693 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1694 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1695 return SP;
1696 }
1697 }
1698 return llvm::DISubprogram();
1699}
1700
Devang Patel1c296522011-05-31 20:46:46 +00001701// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1702// implicit parameter "this".
Eric Christopherab5278e2011-10-11 23:00:51 +00001703llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D,
1704 QualType FnType,
Devang Patel1c296522011-05-31 20:46:46 +00001705 llvm::DIFile F) {
1706 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1707 return getOrCreateMethodType(Method, F);
Devang Patelc478f212011-05-31 21:18:50 +00001708 else if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00001709 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001710 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00001711
1712 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00001713 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00001714 // "self" pointer is always first argument.
1715 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
1716 // "cmd" pointer is always second argument.
1717 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Pateld127bcb2011-05-31 22:21:11 +00001718 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001719 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00001720 PE = OMethod->param_end(); PI != PE; ++PI)
1721 Elts.push_back(getOrCreateType((*PI)->getType(), F));
1722
Devang Patelc478f212011-05-31 21:18:50 +00001723 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1724 return DBuilder.createSubroutineType(F, EltTypeArray);
1725 }
Devang Patel1c296522011-05-31 20:46:46 +00001726 return getOrCreateType(FnType, F);
1727}
1728
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001729/// EmitFunctionStart - Constructs the debug code for entering a function -
1730/// "llvm.dbg.func.start.".
Devang Patel9c6c3a02010-01-14 00:36:21 +00001731void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001732 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001733 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00001734
Chris Lattner5f9e2722011-07-23 10:55:15 +00001735 StringRef Name;
1736 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001737
Eric Christopheraa2164c2011-09-29 00:00:45 +00001738 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001739
Devang Patel9c6c3a02010-01-14 00:36:21 +00001740 const Decl *D = GD.getDecl();
Eric Christopher73fb3502011-10-13 21:45:18 +00001741
Devang Patel3951e712010-10-07 22:03:49 +00001742 unsigned Flags = 0;
Devang Patel0692f832010-10-11 21:58:41 +00001743 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1744 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00001745 llvm::DIArray TParamsArray;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001746 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Devang Patel4125fd22010-01-19 01:54:44 +00001747 // If there is a DISubprogram for this function available then use it.
1748 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1749 FI = SPCache.find(FD);
1750 if (FI != SPCache.end()) {
Gabor Greif38c9b172010-09-18 13:00:17 +00001751 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelab699792010-05-07 18:12:35 +00001752 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1753 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001754 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001755 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00001756 return;
1757 }
1758 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00001759 Name = getFunctionName(FD);
1760 // Use mangled name as linkage name for c/c++ functions.
Devang Patela87a2b22011-05-02 22:49:30 +00001761 if (!Fn->hasInternalLinkage())
Devang Patel2df74c02011-05-02 22:37:48 +00001762 LinkageName = CGM.getMangledName(GD);
Devang Patel58faf202010-10-22 17:11:50 +00001763 if (LinkageName == Name)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001764 LinkageName = StringRef();
Devang Patel3951e712010-10-07 22:03:49 +00001765 if (FD->hasPrototype())
1766 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel0692f832010-10-11 21:58:41 +00001767 if (const NamespaceDecl *NSDecl =
1768 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
Devang Patel170cef32010-12-09 00:33:05 +00001769 FDContext = getOrCreateNameSpace(NSDecl);
Devang Patelbc6a1912011-05-17 00:20:09 +00001770 else if (const RecordDecl *RDecl =
1771 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
1772 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00001773
1774 // Collect template parameters.
1775 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
David Chisnall70b9b442010-09-02 17:16:32 +00001776 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00001777 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00001778 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001779 } else {
Devang Patel58faf202010-10-22 17:11:50 +00001780 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00001781 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00001782 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001783 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001784 if (!Name.empty() && Name[0] == '\01')
1785 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001786
Devang Patel970c6182010-04-24 00:49:16 +00001787 // It is expected that CurLoc is set before using EmitFunctionStart.
1788 // Usually, CurLoc points to the left bracket location of compound
1789 // statement representing function body.
Devang Patel8ab870d2010-05-12 23:46:38 +00001790 unsigned LineNo = getLineNumber(CurLoc);
Devang Patele2472482010-09-29 21:05:52 +00001791 if (D->isImplicit())
1792 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel120bf322011-04-23 00:08:01 +00001793 llvm::DISubprogram SPDecl = getFunctionDeclaration(D);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001794 llvm::DISubprogram SP =
Devang Patel16674e82011-02-22 18:56:36 +00001795 DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
Devang Patel1c296522011-05-31 20:46:46 +00001796 LineNo, getOrCreateFunctionType(D, FnType, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001797 Fn->hasInternalLinkage(), true/*definition*/,
Devang Patel5ecb1df2011-04-05 22:54:11 +00001798 Flags, CGM.getLangOptions().Optimize, Fn,
Devang Patel120bf322011-04-23 00:08:01 +00001799 TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001800
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001801 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00001802 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001803 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001804 RegionMap[D] = llvm::WeakVH(SP);
Eric Christopher69a1b742011-09-29 00:00:37 +00001805}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001806
Eric Christopher5321bc42011-09-29 00:00:41 +00001807/// EmitLocation - Emit metadata to indicate a change in line/column
1808/// information in the source file.
Eric Christopher73fb3502011-10-13 21:45:18 +00001809void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
1810
1811 // Update our current location
1812 setLocation(Loc);
1813
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001814 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001815
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001816 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001817 SourceManager &SM = CGM.getContext().getSourceManager();
Eric Christopher73fb3502011-10-13 21:45:18 +00001818 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00001819 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00001820 // New Builder may not be in sync with CGDebugInfo.
1821 if (!Builder.getCurrentDebugLocation().isUnknown())
1822 return;
Eric Christopher414ee4b2011-09-29 00:00:35 +00001823
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001824 // Update last state.
1825 PrevLoc = CurLoc;
1826
Eric Christopheraa2164c2011-09-29 00:00:45 +00001827 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00001828 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
1829 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00001830 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001831}
1832
Eric Christopher73fb3502011-10-13 21:45:18 +00001833/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
1834/// the stack.
1835void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
Devang Patel8fae0602009-11-13 19:10:24 +00001836 llvm::DIDescriptor D =
Eric Christopher73fb3502011-10-13 21:45:18 +00001837 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
1838 llvm::DIDescriptor() :
1839 llvm::DIDescriptor(LexicalBlockStack.back()),
1840 getOrCreateFile(CurLoc),
1841 getLineNumber(CurLoc),
1842 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00001843 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001844 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001845}
1846
Eric Christopher73fb3502011-10-13 21:45:18 +00001847/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
1848/// region - beginning of a DW_TAG_lexical_block.
1849void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) {
1850 // Set our current location.
1851 setLocation(Loc);
1852
1853 // Create a new lexical block and push it on the stack.
1854 CreateLexicalBlock(Loc);
1855
1856 // Emit a line table change for the current location inside the new scope.
1857 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
1858 getColumnNumber(Loc),
1859 LexicalBlockStack.back()));
1860}
1861
Eric Christopheraa2164c2011-09-29 00:00:45 +00001862/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00001863/// region - end of a DW_TAG_lexical_block.
Eric Christopher73fb3502011-10-13 21:45:18 +00001864void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001865 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00001866
Eric Christopher73fb3502011-10-13 21:45:18 +00001867 // Provide an entry in the line table for the end of the block.
1868 EmitLocation(Builder, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +00001869
Eric Christopheraa2164c2011-09-29 00:00:45 +00001870 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001871}
1872
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001873/// EmitFunctionEnd - Constructs the debug code for exiting a function.
1874void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001875 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001876 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00001877 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001878
1879 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001880 while (LexicalBlockStack.size() != RCount)
Eric Christopher73fb3502011-10-13 21:45:18 +00001881 EmitLexicalBlockEnd(Builder, CurLoc);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001882 FnBeginRegionCount.pop_back();
1883}
1884
Devang Patel809b9bb2010-02-10 18:49:08 +00001885// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
1886// See BuildByRefType.
1887llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
1888 uint64_t *XOffset) {
1889
Chris Lattner5f9e2722011-07-23 10:55:15 +00001890 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00001891 QualType FType;
1892 uint64_t FieldSize, FieldOffset;
1893 unsigned FieldAlign;
1894
Devang Patel17800552010-03-09 00:44:50 +00001895 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001896 QualType Type = VD->getType();
1897
1898 FieldOffset = 0;
1899 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001900 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
1901 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001902 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001903 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
1904 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
1905
John McCall6b5a61b2011-02-07 10:33:21 +00001906 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00001907 if (HasCopyAndDispose) {
1908 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001909 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
1910 &FieldOffset));
1911 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
1912 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001913 }
1914
1915 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00001916 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001917 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00001918 CharUnits FieldOffsetInBytes
1919 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
1920 CharUnits AlignedOffsetInBytes
1921 = FieldOffsetInBytes.RoundUpToAlignment(Align);
1922 CharUnits NumPaddingBytes
1923 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00001924
Ken Dyck573be632011-04-22 17:34:18 +00001925 if (NumPaddingBytes.isPositive()) {
1926 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00001927 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
1928 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001929 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001930 }
1931 }
1932
1933 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001934 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00001935 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00001936 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00001937
1938 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00001939 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001940 0, FieldSize, FieldAlign,
1941 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00001942 EltTys.push_back(FieldTy);
1943 FieldOffset += FieldSize;
1944
Jay Foadc556ef22011-04-24 10:11:03 +00001945 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00001946
Devang Patele2472482010-09-29 21:05:52 +00001947 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00001948
Devang Patel16674e82011-02-22 18:56:36 +00001949 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001950 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00001951}
Devang Patel823d8e92010-12-08 22:42:58 +00001952
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00001953/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00001954void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00001955 llvm::Value *Storage,
1956 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001957 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00001958
Devang Patel17800552010-03-09 00:44:50 +00001959 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001960 llvm::DIType Ty;
1961 uint64_t XOffset = 0;
1962 if (VD->hasAttr<BlocksAttr>())
1963 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
1964 else
1965 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00001966
Devang Patelf4e54a22010-05-07 23:05:55 +00001967 // If there is not any debug info for type then do not emit debug info
1968 // for this variable.
1969 if (!Ty)
1970 return;
1971
Devang Patel34753802011-02-16 01:11:51 +00001972 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
1973 // If Storage is an aggregate returned as 'sret' then let debugger know
1974 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00001975 if (Arg->hasStructRetAttr())
Devang Patel16674e82011-02-22 18:56:36 +00001976 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00001977 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
1978 // If an aggregate variable has non trivial destructor or non trivial copy
1979 // constructor than it is pass indirectly. Let debug info know about this
1980 // by using reference of the aggregate type as a argument type.
Eric Christopherab5278e2011-10-11 23:00:51 +00001981 if (!Record->hasTrivialCopyConstructor() ||
1982 !Record->hasTrivialDestructor())
Devang Patel16674e82011-02-22 18:56:36 +00001983 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00001984 }
1985 }
Devang Patel0691f932011-02-10 00:40:52 +00001986
Chris Lattner9c85ba32008-11-10 06:08:34 +00001987 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00001988 unsigned Line = getLineNumber(VD->getLocation());
1989 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00001990 unsigned Flags = 0;
1991 if (VD->isImplicit())
1992 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001993 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00001994
Chris Lattner5f9e2722011-07-23 10:55:15 +00001995 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00001996 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00001997 if (VD->hasAttr<BlocksAttr>()) {
1998 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001999 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002000 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002001 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002002 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002003 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002004 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002005 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002006 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2007 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002008 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002009 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002010 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2011
2012 // Create the descriptor for the variable.
2013 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002014 DBuilder.createComplexVariable(Tag,
Eric Christopherab5278e2011-10-11 23:00:51 +00002015 llvm::DIDescriptor(Scope),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002016 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002017 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002018
2019 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002020 // Insert an llvm.dbg.declare into the current block.
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002021 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002022 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002023 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2024 return;
2025 }
2026 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002027 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002028 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002029 Name, Unit, Line, Ty,
Devang Patel093ac462011-03-03 20:13:15 +00002030 CGM.getLangOptions().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002031
2032 // Insert an llvm.dbg.declare into the current block.
2033 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002034 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002035 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002036 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002037 }
2038
2039 // If VD is an anonymous union then Storage represents value for
2040 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002041 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2042 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2043 if (RD->isUnion()) {
2044 for (RecordDecl::field_iterator I = RD->field_begin(),
2045 E = RD->field_end();
2046 I != E; ++I) {
2047 FieldDecl *Field = *I;
2048 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002049 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002050
John McCall8178df32011-02-22 22:38:33 +00002051 // Ignore unnamed fields. Do not ignore unnamed records.
2052 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2053 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002054
John McCall8178df32011-02-22 22:38:33 +00002055 // Use VarDecl's Tag, Scope and Line number.
2056 llvm::DIVariable D =
2057 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2058 FieldName, Unit, Line, FieldTy,
Devang Patel093ac462011-03-03 20:13:15 +00002059 CGM.getLangOptions().Optimize, Flags,
2060 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002061
John McCall8178df32011-02-22 22:38:33 +00002062 // Insert an llvm.dbg.declare into the current block.
2063 llvm::Instruction *Call =
2064 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
John McCall8178df32011-02-22 22:38:33 +00002065 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002066 }
John McCall8178df32011-02-22 22:38:33 +00002067 }
2068 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002069}
2070
Devang Patele2d01912011-04-25 23:43:36 +00002071void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2072 llvm::Value *Storage,
2073 CGBuilderTy &Builder) {
2074 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2075}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002076
Devang Patele2d01912011-04-25 23:43:36 +00002077void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2078 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2079 const CGBlockInfo &blockInfo) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002080 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002081
Devang Patel2b594b92010-04-26 23:28:46 +00002082 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002083 return;
Devang Patele2d01912011-04-25 23:43:36 +00002084
John McCall6b5a61b2011-02-07 10:33:21 +00002085 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002086
Mike Stumpb1a6e682009-09-30 02:43:10 +00002087 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002088 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002089 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002090 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002091 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2092 else
2093 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002094
2095 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002096 unsigned Line = getLineNumber(VD->getLocation());
2097 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002098
John McCall6b5a61b2011-02-07 10:33:21 +00002099 const llvm::TargetData &target = CGM.getTargetData();
2100
2101 CharUnits offset = CharUnits::fromQuantity(
2102 target.getStructLayout(blockInfo.StructureType)
2103 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2104
Chris Lattner5f9e2722011-07-23 10:55:15 +00002105 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002106 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002107 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002108 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002109 if (isByRef) {
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002110 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2111 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002112 // offset of __forwarding field
Eric Christopherab5278e2011-10-11 23:00:51 +00002113 offset = CGM.getContext()
2114 .toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattner14b1a362010-01-25 03:29:35 +00002115 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002116 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2117 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002118 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002119 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002120 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002121 }
2122
2123 // Create the descriptor for the variable.
2124 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002125 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002126 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002127 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002128 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002129 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002130 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Eric Christopher73fb3502011-10-13 21:45:18 +00002131 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2132 LexicalBlockStack.back()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002133}
2134
Chris Lattner9c85ba32008-11-10 06:08:34 +00002135/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2136/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002137void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002138 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002139 CGBuilderTy &Builder) {
Devang Patel093ac462011-03-03 20:13:15 +00002140 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002141}
2142
John McCall8178df32011-02-22 22:38:33 +00002143namespace {
2144 struct BlockLayoutChunk {
2145 uint64_t OffsetInBits;
2146 const BlockDecl::Capture *Capture;
2147 };
2148 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2149 return l.OffsetInBits < r.OffsetInBits;
2150 }
2151}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002152
John McCall8178df32011-02-22 22:38:33 +00002153void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2154 llvm::Value *addr,
2155 CGBuilderTy &Builder) {
2156 ASTContext &C = CGM.getContext();
2157 const BlockDecl *blockDecl = block.getBlockDecl();
2158
2159 // Collect some general information about the block's location.
2160 SourceLocation loc = blockDecl->getCaretLocation();
2161 llvm::DIFile tunit = getOrCreateFile(loc);
2162 unsigned line = getLineNumber(loc);
2163 unsigned column = getColumnNumber(loc);
2164
2165 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002166 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002167
2168 const llvm::StructLayout *blockLayout =
2169 CGM.getTargetData().getStructLayout(block.StructureType);
2170
Chris Lattner5f9e2722011-07-23 10:55:15 +00002171 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002172 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2173 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002174 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002175 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2176 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002177 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002178 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2179 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002180 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002181 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2182 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002183 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002184 fields.push_back(createFieldType("__descriptor",
2185 C.getPointerType(block.NeedsCopyDispose ?
2186 C.getBlockDescriptorExtendedType() :
2187 C.getBlockDescriptorType()),
2188 0, loc, AS_public,
2189 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002190 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002191
2192 // We want to sort the captures by offset, not because DWARF
2193 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002194 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002195
2196 // 'this' capture.
2197 if (blockDecl->capturesCXXThis()) {
2198 BlockLayoutChunk chunk;
2199 chunk.OffsetInBits =
2200 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2201 chunk.Capture = 0;
2202 chunks.push_back(chunk);
2203 }
2204
2205 // Variable captures.
2206 for (BlockDecl::capture_const_iterator
2207 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2208 i != e; ++i) {
2209 const BlockDecl::Capture &capture = *i;
2210 const VarDecl *variable = capture.getVariable();
2211 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2212
2213 // Ignore constant captures.
2214 if (captureInfo.isConstant())
2215 continue;
2216
2217 BlockLayoutChunk chunk;
2218 chunk.OffsetInBits =
2219 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2220 chunk.Capture = &capture;
2221 chunks.push_back(chunk);
2222 }
2223
2224 // Sort by offset.
2225 llvm::array_pod_sort(chunks.begin(), chunks.end());
2226
Chris Lattner5f9e2722011-07-23 10:55:15 +00002227 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002228 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2229 uint64_t offsetInBits = i->OffsetInBits;
2230 const BlockDecl::Capture *capture = i->Capture;
2231
2232 // If we have a null capture, this must be the C++ 'this' capture.
2233 if (!capture) {
2234 const CXXMethodDecl *method =
2235 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2236 QualType type = method->getThisType(C);
2237
2238 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002239 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002240 continue;
2241 }
2242
2243 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002244 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002245
2246 llvm::DIType fieldType;
2247 if (capture->isByRef()) {
2248 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2249
2250 // FIXME: this creates a second copy of this type!
2251 uint64_t xoffset;
2252 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2253 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002254 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002255 ptrInfo.first, ptrInfo.second,
2256 offsetInBits, 0, fieldType);
2257 } else {
2258 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002259 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002260 }
2261 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002262 }
2263
2264 llvm::SmallString<36> typeName;
2265 llvm::raw_svector_ostream(typeName)
2266 << "__block_literal_" << CGM.getUniqueBlockCount();
2267
Jay Foadc556ef22011-04-24 10:11:03 +00002268 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002269
2270 llvm::DIType type =
2271 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2272 CGM.getContext().toBits(block.BlockSize),
2273 CGM.getContext().toBits(block.BlockAlign),
2274 0, fieldsArray);
2275 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2276
2277 // Get overall information about the block.
2278 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002279 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002280 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002281
2282 // Create the descriptor for the parameter.
2283 llvm::DIVariable debugVar =
2284 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2285 llvm::DIDescriptor(scope),
2286 name, tunit, line, type,
Devang Patel093ac462011-03-03 20:13:15 +00002287 CGM.getLangOptions().Optimize, flags,
2288 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002289
2290 // Insert an llvm.dbg.value into the current block.
2291 llvm::Instruction *declare =
2292 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2293 Builder.GetInsertBlock());
2294 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2295}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002296
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002297/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002298void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002299 const VarDecl *D) {
2300
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002301 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002302 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002303 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002304
Eric Christopher73fb3502011-10-13 21:45:18 +00002305 setLocation(D->getLocation());
2306
Devang Pateleb6d79b2010-02-01 21:34:11 +00002307 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002308 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002309
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002310 // CodeGen turns int[] into int[1] so we'll do the same here.
2311 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002312
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002313 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002314 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002315
Anders Carlsson20f12a22009-12-06 18:00:51 +00002316 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002317 ArrayType::Normal, 0);
2318 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002319 StringRef DeclName = D->getName();
2320 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002321 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2322 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002323 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002324 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002325 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002326 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002327 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002328 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002329 Unit, LineNo, getOrCreateType(T, Unit),
2330 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002331}
2332
Devang Patel9ca36b62009-02-26 21:10:26 +00002333/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002334void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002335 ObjCInterfaceDecl *ID) {
Devang Patel9ca36b62009-02-26 21:10:26 +00002336 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002337 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002338 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002339
Chris Lattner5f9e2722011-07-23 10:55:15 +00002340 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002341
Devang Pateld6c5a262010-02-01 21:52:22 +00002342 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002343 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002344
Devang Patel9ca36b62009-02-26 21:10:26 +00002345 // CodeGen turns int[] into int[1] so we'll do the same here.
2346 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002347
Devang Patel9ca36b62009-02-26 21:10:26 +00002348 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002349 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002350
Anders Carlsson20f12a22009-12-06 18:00:51 +00002351 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002352 ArrayType::Normal, 0);
2353 }
2354
Devang Patel16674e82011-02-22 18:56:36 +00002355 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002356 getOrCreateType(T, Unit),
2357 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002358}
Devang Patelabb485f2010-02-01 19:16:32 +00002359
Devang Patel25c2c8f2010-08-10 17:53:33 +00002360/// EmitGlobalVariable - Emit global variable's debug info.
2361void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002362 llvm::Constant *Init) {
Devang Patel8d308382010-08-10 07:24:25 +00002363 // Create the descriptor for the variable.
2364 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002365 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002366 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002367 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
2368 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
Devang Patel31f7d022011-01-17 22:23:07 +00002369 Ty = CreateEnumType(ED);
Devang Patel6237cea2010-08-23 22:07:25 +00002370 }
Devang Patel0317ab02010-08-10 18:27:15 +00002371 // Do not use DIGlobalVariable for enums.
2372 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2373 return;
Devang Patel16674e82011-02-22 18:56:36 +00002374 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002375 getLineNumber(VD->getLocation()),
2376 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002377}
2378
Devang Patelabb485f2010-02-01 19:16:32 +00002379/// getOrCreateNamesSpace - Return namespace descriptor for the given
2380/// namespace decl.
2381llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002382CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002383 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2384 NameSpaceCache.find(NSDecl);
2385 if (I != NameSpaceCache.end())
2386 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2387
Devang Patel8ab870d2010-05-12 23:46:38 +00002388 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002389 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002390 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002391 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002392 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002393 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002394 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002395 return NS;
2396}
Devang Patele80d5672011-03-23 16:29:39 +00002397
2398/// UpdateCompletedType - Update type cache because the type is now
2399/// translated.
2400void CGDebugInfo::UpdateCompletedType(const TagDecl *TD) {
2401 QualType Ty = CGM.getContext().getTagDeclType(TD);
2402
2403 // If the type exist in type cache then remove it from the cache.
2404 // There is no need to prepare debug info for the completed type
2405 // right now. It will be generated on demand lazily.
2406 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2407 TypeCache.find(Ty.getAsOpaquePtr());
2408 if (it != TypeCache.end())
2409 TypeCache.erase(it);
2410}