blob: b894326bd8832f1d6f63871a7d5da4c30a9d7368 [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");
John McCall0ddaeb92011-10-17 18:09:15 +0000332 case BuiltinType::ARCUnbridgedCast:
333 llvm_unreachable("Unexpected builtin type ARCUnbridgedCast");
Devang Patele7566cf2011-09-12 18:50:21 +0000334 case BuiltinType::NullPtr:
Devang Patelf60dca32011-09-14 23:14:14 +0000335 return DBuilder.
336 createNullPtrType(BT->getName(CGM.getContext().getLangOptions()));
Chris Lattner9c85ba32008-11-10 06:08:34 +0000337 case BuiltinType::Void:
338 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000339 case BuiltinType::ObjCClass:
Devang Patel16674e82011-02-22 18:56:36 +0000340 return DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000341 getOrCreateMainFile(), 0, 0, 0,
342 llvm::DIDescriptor::FlagFwdDecl,
343 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000344 case BuiltinType::ObjCId: {
345 // typedef struct objc_class *Class;
346 // typedef struct objc_object {
347 // Class isa;
348 // } *id;
349
350 llvm::DIType OCTy =
Devang Patel16674e82011-02-22 18:56:36 +0000351 DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000352 getOrCreateMainFile(), 0, 0, 0,
353 llvm::DIDescriptor::FlagFwdDecl,
354 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000355 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
356
Devang Patel16674e82011-02-22 18:56:36 +0000357 llvm::DIType ISATy = DBuilder.createPointerType(OCTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000358
Chris Lattner5f9e2722011-07-23 10:55:15 +0000359 SmallVector<llvm::Value *, 16> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000360 llvm::DIType FieldTy =
Devang Patel1d323e02011-06-24 22:00:59 +0000361 DBuilder.createMemberType(getOrCreateMainFile(), "isa",
362 getOrCreateMainFile(), 0, Size,
363 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000364 EltTys.push_back(FieldTy);
Jay Foadc556ef22011-04-24 10:11:03 +0000365 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patelc8972c62010-07-28 01:33:15 +0000366
Devang Patel16674e82011-02-22 18:56:36 +0000367 return DBuilder.createStructType(TheCU, "objc_object",
Devang Patel823d8e92010-12-08 22:42:58 +0000368 getOrCreateMainFile(),
369 0, 0, 0, 0, Elements);
Devang Patelc8972c62010-07-28 01:33:15 +0000370 }
Devang Patel6e108ce2011-02-09 03:15:05 +0000371 case BuiltinType::ObjCSel: {
Devang Patel16674e82011-02-22 18:56:36 +0000372 return DBuilder.createStructType(TheCU, "objc_selector",
Devang Patel6e108ce2011-02-09 03:15:05 +0000373 getOrCreateMainFile(), 0, 0, 0,
374 llvm::DIDescriptor::FlagFwdDecl,
375 llvm::DIArray());
376 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000377 case BuiltinType::UChar:
378 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
379 case BuiltinType::Char_S:
380 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patele8ee3f22011-09-12 17:11:58 +0000381 case BuiltinType::Char16:
382 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000383 case BuiltinType::UShort:
384 case BuiltinType::UInt:
Devang Patel31c79b42011-05-05 17:06:30 +0000385 case BuiltinType::UInt128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000386 case BuiltinType::ULong:
Devang Patel68f76b12011-09-10 00:44:49 +0000387 case BuiltinType::WChar_U:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000388 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
389 case BuiltinType::Short:
390 case BuiltinType::Int:
Devang Patel31c79b42011-05-05 17:06:30 +0000391 case BuiltinType::Int128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000392 case BuiltinType::Long:
Devang Patel68f76b12011-09-10 00:44:49 +0000393 case BuiltinType::WChar_S:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000394 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
395 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000396 case BuiltinType::Half:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000397 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000398 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000399 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000400 }
Devang Patel05127ca2010-07-28 23:23:29 +0000401
402 switch (BT->getKind()) {
403 case BuiltinType::Long: BTName = "long int"; break;
404 case BuiltinType::LongLong: BTName = "long long int"; break;
405 case BuiltinType::ULong: BTName = "long unsigned int"; break;
406 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
407 default:
408 BTName = BT->getName(CGM.getContext().getLangOptions());
409 break;
410 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000411 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000412 uint64_t Size = CGM.getContext().getTypeSize(BT);
413 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000414 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000415 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000416 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000417}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000418
Devang Patel344ff5d2010-12-09 00:25:29 +0000419llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000420 // Bit size, align and offset of the type.
421 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
422 if (Ty->isComplexIntegerType())
423 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Anders Carlsson20f12a22009-12-06 18:00:51 +0000425 uint64_t Size = CGM.getContext().getTypeSize(Ty);
426 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000427 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000428 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel823d8e92010-12-08 22:42:58 +0000429
Devang Patelca80a5f2009-10-20 19:55:01 +0000430 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000431}
432
John McCalla1805292009-09-25 01:40:47 +0000433/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000434/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000435llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000436 QualifierCollector Qc;
437 const Type *T = Qc.strip(Ty);
438
439 // Ignore these qualifiers for now.
440 Qc.removeObjCGCAttr();
441 Qc.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +0000442 Qc.removeObjCLifetime();
John McCalla1805292009-09-25 01:40:47 +0000443
Chris Lattner9c85ba32008-11-10 06:08:34 +0000444 // We will create one Derived type for one qualifier and recurse to handle any
445 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000446 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000447 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000448 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000449 Qc.removeConst();
450 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000451 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000452 Qc.removeVolatile();
453 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000454 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000455 Qc.removeRestrict();
456 } else {
457 assert(Qc.empty() && "Unknown type qualifier for debug info");
458 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000459 }
Mike Stump1eb44332009-09-09 15:08:12 +0000460
John McCall49f4e1c2010-12-10 11:01:00 +0000461 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCalla1805292009-09-25 01:40:47 +0000462
Daniel Dunbar3845f862008-10-31 03:54:29 +0000463 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
464 // CVR derived types.
Devang Patel16674e82011-02-22 18:56:36 +0000465 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000466
Devang Patelca80a5f2009-10-20 19:55:01 +0000467 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000468}
469
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000470llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000471 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000472 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000473 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
474 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000475 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000476}
477
Chris Lattner9c85ba32008-11-10 06:08:34 +0000478llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000479 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000480 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
481 Ty->getPointeeType(), Unit);
482}
483
Eric Christopheredc95922011-09-13 23:45:09 +0000484/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000485/// then emit record's fwd if debug info size reduction is enabled.
486llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
487 llvm::DIFile Unit) {
488 if (!CGM.getCodeGenOpts().LimitDebugInfo)
489 return getOrCreateType(PointeeTy, Unit);
490
491 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
492 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000493 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
494 unsigned Line = getLineNumber(RD->getLocation());
495 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000496 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel823d8e92010-12-08 22:42:58 +0000497
498 if (RD->isStruct())
Devang Patel16674e82011-02-22 18:56:36 +0000499 return DBuilder.createStructType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000500 Line, 0, 0, llvm::DIType::FlagFwdDecl,
501 llvm::DIArray());
502 else if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +0000503 return DBuilder.createUnionType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000504 Line, 0, 0, llvm::DIType::FlagFwdDecl,
505 llvm::DIArray());
506 else {
507 assert(RD->isClass() && "Unknown RecordType!");
Devang Patel16674e82011-02-22 18:56:36 +0000508 return DBuilder.createClassType(FDContext, RD->getName(), DefUnit,
Devang Patel823d8e92010-12-08 22:42:58 +0000509 Line, 0, 0, 0, llvm::DIType::FlagFwdDecl,
510 llvm::DIType(), llvm::DIArray());
511 }
Devang Patelc69e1cf2010-09-30 19:05:55 +0000512 }
513 return getOrCreateType(PointeeTy, Unit);
514
515}
516
Anders Carlssona031b352009-11-06 19:19:55 +0000517llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
518 const Type *Ty,
519 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000520 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000521
522 if (Tag == llvm::dwarf::DW_TAG_reference_type)
Devang Patel16674e82011-02-22 18:56:36 +0000523 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000524
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000525 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000526 // Size is always the size of a pointer. We can't use getTypeSize here
527 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000528 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000529 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000530 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Devang Patel823d8e92010-12-08 22:42:58 +0000532 return
Devang Patel16674e82011-02-22 18:56:36 +0000533 DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit), Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000534}
535
Mike Stump9bc093c2009-05-14 02:03:51 +0000536llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000537 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000538 if (BlockLiteralGenericSet)
539 return BlockLiteralGeneric;
540
Chris Lattner5f9e2722011-07-23 10:55:15 +0000541 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000542 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000543 QualType FType;
544 uint64_t FieldSize, FieldOffset;
545 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000546 llvm::DIArray Elements;
547 llvm::DIType EltTy, DescTy;
548
549 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000550 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000551 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
552 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000553
Jay Foadc556ef22011-04-24 10:11:03 +0000554 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000555 EltTys.clear();
556
Devang Patele2472482010-09-29 21:05:52 +0000557 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000558 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000559
Devang Patel16674e82011-02-22 18:56:36 +0000560 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000561 Unit, LineNo, FieldOffset, 0,
562 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000563
Mike Stump9bc093c2009-05-14 02:03:51 +0000564 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000565 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000566
Devang Patel16674e82011-02-22 18:56:36 +0000567 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000568
569 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000570 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000571 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000572 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000573 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
574 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000575 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000576 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000577
Anders Carlsson20f12a22009-12-06 18:00:51 +0000578 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000579 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000580 FieldSize = CGM.getContext().getTypeSize(Ty);
581 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000582 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000583 LineNo, FieldSize, FieldAlign,
584 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000585 EltTys.push_back(FieldTy);
586
587 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000588 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000589
Devang Patel16674e82011-02-22 18:56:36 +0000590 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000591 Unit, LineNo, FieldOffset, 0,
592 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Mike Stump9bc093c2009-05-14 02:03:51 +0000594 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000595 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000596 return BlockLiteralGeneric;
597}
598
Chris Lattner9c85ba32008-11-10 06:08:34 +0000599llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000600 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000601 // Typedefs are derived from some other type. If we have a typedef of a
602 // typedef, make sure to emit the whole chain.
603 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000604 if (!Src.Verify())
605 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000606 // We don't set size information, but do specify where the typedef was
607 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000608 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000609 const TypedefNameDecl *TyDecl = Ty->getDecl();
610 llvm::DIDescriptor TydefContext =
611 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
612
613 return
614 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TydefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000615}
616
Chris Lattner9c85ba32008-11-10 06:08:34 +0000617llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000618 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000619 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000620
Chris Lattner9c85ba32008-11-10 06:08:34 +0000621 // Add the result type at least.
622 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000623
Chris Lattner9c85ba32008-11-10 06:08:34 +0000624 // Set up remainder of arguments if there is a prototype.
625 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000626 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000627 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Devang Patelaf164bb2010-10-06 20:51:45 +0000628 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000629 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
630 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000631 }
632
Jay Foadc556ef22011-04-24 10:11:03 +0000633 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Mike Stump1eb44332009-09-09 15:08:12 +0000634
Devang Patel16674e82011-02-22 18:56:36 +0000635 llvm::DIType DbgTy = DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patelca80a5f2009-10-20 19:55:01 +0000636 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000637}
638
Chris Lattner5f9e2722011-07-23 10:55:15 +0000639llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000640 QualType type,
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000641 uint64_t sizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000642 SourceLocation loc,
643 AccessSpecifier AS,
644 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000645 llvm::DIFile tunit,
646 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000647 llvm::DIType debugType = getOrCreateType(type, tunit);
648
649 // Get the location for the field.
650 llvm::DIFile file = getOrCreateFile(loc);
651 unsigned line = getLineNumber(loc);
652
653 uint64_t sizeInBits = 0;
654 unsigned alignInBits = 0;
655 if (!type->isIncompleteArrayType()) {
656 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
657
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000658 if (sizeInBitsOverride)
659 sizeInBits = sizeInBitsOverride;
John McCall8178df32011-02-22 22:38:33 +0000660 }
661
662 unsigned flags = 0;
663 if (AS == clang::AS_private)
664 flags |= llvm::DIDescriptor::FlagPrivate;
665 else if (AS == clang::AS_protected)
666 flags |= llvm::DIDescriptor::FlagProtected;
667
Devang Patel1d323e02011-06-24 22:00:59 +0000668 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
669 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000670}
671
Devang Patel428deb52010-01-19 00:00:59 +0000672/// CollectRecordFields - A helper function to collect debug info for
673/// record fields. This is used while creating debug info entry for a Record.
674void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000675CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000676 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000677 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000678 unsigned fieldNo = 0;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000679 const FieldDecl *LastFD = 0;
680 bool IsMsStruct = record->hasAttr<MsStructAttr>();
681
John McCall8178df32011-02-22 22:38:33 +0000682 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
683 for (RecordDecl::field_iterator I = record->field_begin(),
684 E = record->field_end();
685 I != E; ++I, ++fieldNo) {
686 FieldDecl *field = *I;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000687 if (IsMsStruct) {
688 // Zero-length bitfields following non-bitfield members are ignored
Fariborz Jahanian855a8e72011-05-03 20:21:04 +0000689 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000690 --fieldNo;
691 continue;
692 }
693 LastFD = field;
694 }
Devang Patel428deb52010-01-19 00:00:59 +0000695
Chris Lattner5f9e2722011-07-23 10:55:15 +0000696 StringRef name = field->getName();
John McCall8178df32011-02-22 22:38:33 +0000697 QualType type = field->getType();
698
699 // Ignore unnamed fields unless they're anonymous structs/unions.
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000700 if (name.empty() && !type->isRecordType()) {
701 LastFD = field;
Devang Patel428deb52010-01-19 00:00:59 +0000702 continue;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000703 }
Devang Patel428deb52010-01-19 00:00:59 +0000704
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000705 uint64_t SizeInBitsOverride = 0;
706 if (field->isBitField()) {
707 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
708 assert(SizeInBitsOverride && "found named 0-width bitfield");
709 }
710
John McCall8178df32011-02-22 22:38:33 +0000711 llvm::DIType fieldType
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000712 = createFieldType(name, type, SizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000713 field->getLocation(), field->getAccess(),
Devang Patel1d323e02011-06-24 22:00:59 +0000714 layout.getFieldOffset(fieldNo), tunit, RecordTy);
Devang Patel428deb52010-01-19 00:00:59 +0000715
John McCall8178df32011-02-22 22:38:33 +0000716 elements.push_back(fieldType);
Devang Patel428deb52010-01-19 00:00:59 +0000717 }
718}
719
Devang Patela6da1922010-01-28 00:28:01 +0000720/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
721/// function type is not updated to include implicit "this" pointer. Use this
722/// routine to get a method type which includes "this" pointer.
723llvm::DIType
724CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000725 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000726 llvm::DIType FnTy
727 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
728 0),
729 Unit);
Devang Pateld774d1e2010-01-28 21:43:50 +0000730
Devang Patela6da1922010-01-28 00:28:01 +0000731 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000732 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000733 assert (Args.getNumElements() && "Invalid number of arguments!");
734
Chris Lattner5f9e2722011-07-23 10:55:15 +0000735 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000736
737 // First element is always return type. For 'void' functions it is NULL.
738 Elts.push_back(Args.getElement(0));
739
Eric Christopher2121cda2011-09-14 01:10:50 +0000740 if (!Method->isStatic()) {
741 // "this" pointer is always first argument.
742 QualType ThisPtr = Method->getThisType(CGM.getContext());
743 llvm::DIType ThisPtrType =
744 DBuilder.createArtificialType(getOrCreateType(ThisPtr, Unit));
745
746 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
747 Elts.push_back(ThisPtrType);
748 }
Devang Patela6da1922010-01-28 00:28:01 +0000749
750 // Copy rest of the arguments.
751 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
752 Elts.push_back(Args.getElement(i));
753
Jay Foadc556ef22011-04-24 10:11:03 +0000754 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000755
Devang Patel16674e82011-02-22 18:56:36 +0000756 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000757}
758
Devang Patel58faf202010-10-22 17:11:50 +0000759/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
760/// inside a function.
761static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
762 if (const CXXRecordDecl *NRD =
763 dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
764 return isFunctionLocalClass(NRD);
765 else if (isa<FunctionDecl>(RD->getDeclContext()))
766 return true;
767 return false;
768
769}
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000770/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
771/// a single member function GlobalDecl.
772llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000773CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000774 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000775 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000776 bool IsCtorOrDtor =
777 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
778
Chris Lattner5f9e2722011-07-23 10:55:15 +0000779 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000780 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000781
782 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
783 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000784 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000785 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000786 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000787
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000788 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000789 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
790 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000791
792 // Collect virtual method info.
793 llvm::DIType ContainingType;
794 unsigned Virtuality = 0;
795 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000796
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000797 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000798 if (Method->isPure())
799 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
800 else
801 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
802
803 // It doesn't make sense to give a virtual destructor a vtable index,
804 // since a single destructor has two entries in the vtable.
805 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000806 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000807 ContainingType = RecordTy;
808 }
809
Devang Patele2472482010-09-29 21:05:52 +0000810 unsigned Flags = 0;
811 if (Method->isImplicit())
812 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000813 AccessSpecifier Access = Method->getAccess();
814 if (Access == clang::AS_private)
815 Flags |= llvm::DIDescriptor::FlagPrivate;
816 else if (Access == clang::AS_protected)
817 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000818 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
819 if (CXXC->isExplicit())
820 Flags |= llvm::DIDescriptor::FlagExplicit;
821 } else if (const CXXConversionDecl *CXXC =
822 dyn_cast<CXXConversionDecl>(Method)) {
823 if (CXXC->isExplicit())
824 Flags |= llvm::DIDescriptor::FlagExplicit;
825 }
Devang Patel3951e712010-10-07 22:03:49 +0000826 if (Method->hasPrototype())
827 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Pateld78a0192010-10-01 23:32:17 +0000828
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000829 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000830 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000831 MethodDefUnit, MethodLine,
832 MethodTy, /*isLocalToUnit=*/false,
833 /* isDefinition=*/ false,
834 Virtuality, VIndex, ContainingType,
835 Flags, CGM.getLangOptions().Optimize);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000836
Devang Patel22a5cdf2011-04-29 23:42:32 +0000837 SPCache[Method] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000838
839 return SP;
840}
841
Devang Patel4125fd22010-01-19 01:54:44 +0000842/// CollectCXXMemberFunctions - A helper function to collect debug info for
843/// C++ member functions.This is used while creating debug info entry for
844/// a Record.
845void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000846CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000847 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000848 llvm::DIType RecordTy) {
Devang Patel239cec62010-02-01 21:39:52 +0000849 for(CXXRecordDecl::method_iterator I = RD->method_begin(),
850 E = RD->method_end(); I != E; ++I) {
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000851 const CXXMethodDecl *Method = *I;
Anders Carlssonbea9b232010-01-26 04:40:11 +0000852
Devang Pateld5322da2010-02-09 19:09:28 +0000853 if (Method->isImplicit() && !Method->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +0000854 continue;
Devang Patel4125fd22010-01-19 01:54:44 +0000855
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000856 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +0000857 }
858}
859
Devang Patel2ed8f002010-08-27 17:47:47 +0000860/// CollectCXXFriends - A helper function to collect debug info for
861/// C++ base classes. This is used while creating debug info entry for
862/// a Record.
863void CGDebugInfo::
864CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000865 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +0000866 llvm::DIType RecordTy) {
Devang Patel2ed8f002010-08-27 17:47:47 +0000867 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
868 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +0000869 if ((*BI)->isUnsupportedFriend())
870 continue;
Devang Patel823d8e92010-12-08 22:42:58 +0000871 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +0000872 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000873 getOrCreateType(TInfo->getType(),
874 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +0000875 }
876}
877
Devang Patela245c5b2010-01-25 23:32:18 +0000878/// CollectCXXBases - A helper function to collect debug info for
879/// C++ base classes. This is used while creating debug info entry for
880/// a Record.
881void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000882CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000883 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000884 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +0000885
Devang Patel239cec62010-02-01 21:39:52 +0000886 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
887 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
888 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +0000889 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +0000890 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +0000891
892 const CXXRecordDecl *Base =
893 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
894
895 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +0000896 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +0000897 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +0000898 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000899 0 - CGM.getVTableContext()
900 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +0000901 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +0000902 } else
Devang Patel62c117d2011-04-04 20:36:06 +0000903 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Ken Dyck14c65ca2011-04-07 12:37:09 +0000904 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
905 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +0000906
907 AccessSpecifier Access = BI->getAccessSpecifier();
908 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +0000909 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +0000910 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +0000911 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +0000912
Devang Patel823d8e92010-12-08 22:42:58 +0000913 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +0000914 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000915 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +0000916 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +0000917 EltTys.push_back(DTy);
918 }
Devang Patela245c5b2010-01-25 23:32:18 +0000919}
920
Devang Patel5ecb1df2011-04-05 22:54:11 +0000921/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +0000922llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +0000923CollectTemplateParams(const TemplateParameterList *TPList,
924 const TemplateArgumentList &TAList,
925 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000926 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +0000927 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
928 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +0000929 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +0000930 if (TA.getKind() == TemplateArgument::Type) {
931 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
932 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +0000933 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +0000934 TemplateParams.push_back(TTP);
935 } else if (TA.getKind() == TemplateArgument::Integral) {
936 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +0000937 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +0000938 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
939 TA.getAsIntegral()->getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +0000940 TemplateParams.push_back(TVP);
941 }
942 }
Jay Foadc556ef22011-04-24 10:11:03 +0000943 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +0000944}
945
Devang Patel5ecb1df2011-04-05 22:54:11 +0000946/// CollectFunctionTemplateParams - A helper function to collect debug
947/// info for function template parameters.
948llvm::DIArray CGDebugInfo::
949CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherab5278e2011-10-11 23:00:51 +0000950 if (FD->getTemplatedKind() ==
951 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patel5ecb1df2011-04-05 22:54:11 +0000952 const TemplateParameterList *TList =
Eric Christopherab5278e2011-10-11 23:00:51 +0000953 FD->getTemplateSpecializationInfo()->getTemplate()
954 ->getTemplateParameters();
Devang Patel5ecb1df2011-04-05 22:54:11 +0000955 return
956 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
957 }
958 return llvm::DIArray();
959}
960
961/// CollectCXXTemplateParams - A helper function to collect debug info for
962/// template parameters.
963llvm::DIArray CGDebugInfo::
964CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
965 llvm::DIFile Unit) {
966 llvm::PointerUnion<ClassTemplateDecl *,
967 ClassTemplatePartialSpecializationDecl *>
968 PU = TSpecial->getSpecializedTemplateOrPartial();
969
970 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
971 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
972 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
973 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
974 return CollectTemplateParams(TPList, TAList, Unit);
975}
976
Devang Patel4ce3f202010-01-28 18:11:52 +0000977/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +0000978llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +0000979 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +0000980 return VTablePtrType;
981
982 ASTContext &Context = CGM.getContext();
983
984 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +0000985 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +0000986 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +0000987 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +0000988 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +0000989 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +0000990 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +0000991 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +0000992 return VTablePtrType;
993}
994
Anders Carlsson046c2942010-04-17 20:15:18 +0000995/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000996StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Devang Patel4ce3f202010-01-28 18:11:52 +0000997 // Otherwise construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +0000998 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +0000999
1000 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +00001001 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001002 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001003 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001004}
1005
1006
Anders Carlsson046c2942010-04-17 20:15:18 +00001007/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +00001008/// debug info entry in EltTys vector.
1009void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +00001010CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001011 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +00001012 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +00001013
1014 // If there is a primary base then it will hold vtable info.
1015 if (RL.getPrimaryBase())
1016 return;
1017
1018 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +00001019 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +00001020 return;
1021
1022 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1023 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +00001024 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001025 0, Size, 0, 0, 0,
1026 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +00001027 EltTys.push_back(VPTR);
1028}
1029
Devang Patelc69e1cf2010-09-30 19:05:55 +00001030/// getOrCreateRecordType - Emit record type's standalone debug info.
1031llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1032 SourceLocation Loc) {
1033 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patel16674e82011-02-22 18:56:36 +00001034 DBuilder.retainType(T);
Devang Patelc69e1cf2010-09-30 19:05:55 +00001035 return T;
1036}
1037
Devang Patel65e99f22009-02-25 01:36:11 +00001038/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +00001039llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001040 RecordDecl *RD = Ty->getDecl();
Devang Patel31f7d022011-01-17 22:23:07 +00001041 llvm::DIFile Unit = getOrCreateFile(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001042
Chris Lattner9c85ba32008-11-10 06:08:34 +00001043 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001044 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1045 unsigned Line = getLineNumber(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001046
Chris Lattner9c85ba32008-11-10 06:08:34 +00001047 // Records and classes and unions can all be recursive. To handle them, we
1048 // first generate a debug descriptor for the struct as a forward declaration.
1049 // Then (if it is a definition) we go through and get debug info for all of
1050 // its members. Finally, we create a descriptor for the complete type (which
1051 // may refer to the forward decl if the struct is recursive) and replace all
1052 // uses of the forward declaration with the final definition.
Devang Patel0b897992010-07-08 19:56:29 +00001053 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +00001054 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel0b897992010-07-08 19:56:29 +00001055
1056 // If this is just a forward declaration, construct an appropriately
1057 // marked node and just return it.
1058 if (!RD->getDefinition()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001059 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001060 DBuilder.createStructType(FDContext, RD->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001061 DefUnit, Line, 0, 0,
1062 llvm::DIDescriptor::FlagFwdDecl,
1063 llvm::DIArray());
Devang Patel0b897992010-07-08 19:56:29 +00001064
1065 return FwdDecl;
1066 }
Devang Pateld0f251b2010-01-20 23:56:40 +00001067
Devang Patel16674e82011-02-22 18:56:36 +00001068 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001069
Devang Patelab699792010-05-07 18:12:35 +00001070 llvm::MDNode *MN = FwdDecl;
1071 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001072 // Otherwise, insert it into the TypeCache so that recursive uses will find
1073 // it.
Devang Patelab699792010-05-07 18:12:35 +00001074 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001075 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001076 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001077 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001078
1079 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001080 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001081
Devang Pateld6c5a262010-02-01 21:52:22 +00001082 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel3064afe2010-01-28 21:41:35 +00001083 if (CXXDecl) {
1084 CollectCXXBases(CXXDecl, Unit, EltTys, FwdDecl);
Anders Carlsson046c2942010-04-17 20:15:18 +00001085 CollectVTableInfo(CXXDecl, Unit, EltTys);
Devang Patel3064afe2010-01-28 21:41:35 +00001086 }
Devang Pateldabc3e92010-08-12 00:02:44 +00001087
1088 // Collect static variables with initializers.
1089 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
1090 I != E; ++I)
1091 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
1092 if (const Expr *Init = V->getInit()) {
1093 Expr::EvalResult Result;
1094 if (Init->Evaluate(Result, CGM.getContext()) && Result.Val.isInt()) {
1095 llvm::ConstantInt *CI
1096 = llvm::ConstantInt::get(CGM.getLLVMContext(), Result.Val.getInt());
1097
1098 // Create the descriptor for static variable.
1099 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001100 StringRef VName = V->getName();
Devang Pateldabc3e92010-08-12 00:02:44 +00001101 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
1102 // Do not use DIGlobalVariable for enums.
1103 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
Devang Patel16674e82011-02-22 18:56:36 +00001104 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
Devang Patel823d8e92010-12-08 22:42:58 +00001105 getLineNumber(V->getLocation()),
1106 VTy, true, CI);
Devang Pateldabc3e92010-08-12 00:02:44 +00001107 }
1108 }
1109 }
1110 }
1111
Devang Patel1d323e02011-06-24 22:00:59 +00001112 CollectRecordFields(RD, Unit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001113 llvm::DIArray TParamsArray;
Devang Patel4ce3f202010-01-28 18:11:52 +00001114 if (CXXDecl) {
Devang Patel4125fd22010-01-19 01:54:44 +00001115 CollectCXXMemberFunctions(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel2ed8f002010-08-27 17:47:47 +00001116 CollectCXXFriends(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001117 if (const ClassTemplateSpecializationDecl *TSpecial
1118 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
1119 TParamsArray = CollectCXXTemplateParams(TSpecial, Unit);
Devang Patel823d8e92010-12-08 22:42:58 +00001120 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001121
Eric Christopheraa2164c2011-09-29 00:00:45 +00001122 LexicalBlockStack.pop_back();
Devang Patel823d8e92010-12-08 22:42:58 +00001123 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1124 RegionMap.find(Ty->getDecl());
1125 if (RI != RegionMap.end())
1126 RegionMap.erase(RI);
1127
1128 llvm::DIDescriptor RDContext =
John McCall8178df32011-02-22 22:38:33 +00001129 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Chris Lattner5f9e2722011-07-23 10:55:15 +00001130 StringRef RDName = RD->getName();
Devang Patel823d8e92010-12-08 22:42:58 +00001131 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1132 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Jay Foadc556ef22011-04-24 10:11:03 +00001133 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel823d8e92010-12-08 22:42:58 +00001134 llvm::MDNode *RealDecl = NULL;
1135
Devang Patel5c5b5872011-02-28 22:32:45 +00001136 if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +00001137 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
Devang Patel5c5b5872011-02-28 22:32:45 +00001138 Size, Align, 0, Elements);
1139 else if (CXXDecl) {
Devang Patel823d8e92010-12-08 22:42:58 +00001140 RDName = getClassName(RD);
1141 // A class's primary base or the class itself contains the vtable.
1142 llvm::MDNode *ContainingType = NULL;
Devang Pateld6c5a262010-02-01 21:52:22 +00001143 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel5bc794f2010-10-14 22:59:23 +00001144 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1145 // Seek non virtual primary base root.
1146 while (1) {
1147 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1148 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
Anders Carlssonc9e814b2010-11-24 23:12:57 +00001149 if (PBT && !BRL.isPrimaryBaseVirtual())
Devang Patel5bc794f2010-10-14 22:59:23 +00001150 PBase = PBT;
1151 else
1152 break;
1153 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001154 ContainingType =
Devang Patelab699792010-05-07 18:12:35 +00001155 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), Unit);
Devang Patel5bc794f2010-10-14 22:59:23 +00001156 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001157 else if (CXXDecl->isDynamicClass())
Devang Patelab699792010-05-07 18:12:35 +00001158 ContainingType = FwdDecl;
Devang Patel9c1714b2011-04-05 17:30:54 +00001159
Devang Patel16674e82011-02-22 18:56:36 +00001160 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001161 Size, Align, 0, 0, llvm::DIType(),
Devang Patelfa275df2011-02-02 21:38:49 +00001162 Elements, ContainingType,
1163 TParamsArray);
Devang Patel5c5b5872011-02-28 22:32:45 +00001164 } else
1165 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1166 Size, Align, 0, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +00001167
Chris Lattner9c85ba32008-11-10 06:08:34 +00001168 // Now that we have a real decl for the struct, replace anything using the
1169 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001170 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001171 RegionMap[RD] = llvm::WeakVH(RealDecl);
Devang Patel823d8e92010-12-08 22:42:58 +00001172 return llvm::DIType(RealDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001173}
1174
John McCallc12c5bb2010-05-15 11:32:37 +00001175/// CreateType - get objective-c object type.
1176llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1177 llvm::DIFile Unit) {
1178 // Ignore protocols.
1179 return getOrCreateType(Ty->getBaseType(), Unit);
1180}
1181
Devang Patel9ca36b62009-02-26 21:10:26 +00001182/// CreateType - get objective-c interface type.
1183llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001184 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001185 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001186 if (!ID)
1187 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001188
1189 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001190 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001191 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001192 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001193
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001194 // If this is just a forward declaration return a special forward-declaration
1195 // debug type since we won't be able to lay out the entire type.
Dan Gohman45f7c782010-08-23 21:15:56 +00001196 if (ID->isForwardDecl()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001197 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001198 DBuilder.createStructType(Unit, ID->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001199 DefUnit, Line, 0, 0, 0,
1200 llvm::DIArray(), RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001201 return FwdDecl;
1202 }
1203
Eric Christopher1cd1d742011-10-06 00:30:52 +00001204 // To handle a recursive interface, we first generate a debug descriptor
1205 // for the struct as a forward declaration. Then (if it is a definition)
1206 // we go through and get debug info for all of its members. Finally, we
1207 // create a descriptor for the complete type (which may refer to the
1208 // forward decl if the struct is recursive) and replace all uses of the
1209 // forward declaration with the final definition.
Devang Patel16674e82011-02-22 18:56:36 +00001210 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001211
Devang Patelab699792010-05-07 18:12:35 +00001212 llvm::MDNode *MN = FwdDecl;
1213 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Devang Patel9ca36b62009-02-26 21:10:26 +00001214 // Otherwise, insert it into the TypeCache so that recursive uses will find
1215 // it.
Devang Patelab699792010-05-07 18:12:35 +00001216 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001217 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001218 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001219 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001220
1221 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001222 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001223
Devang Pateld6c5a262010-02-01 21:52:22 +00001224 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001225 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001226 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001227 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001228 if (!SClassTy.isValid())
1229 return llvm::DIType();
1230
Mike Stump1eb44332009-09-09 15:08:12 +00001231 llvm::DIType InhTag =
Devang Patel16674e82011-02-22 18:56:36 +00001232 DBuilder.createInheritance(FwdDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001233 EltTys.push_back(InhTag);
1234 }
1235
Devang Pateld6c5a262010-02-01 21:52:22 +00001236 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel8c6f9c42011-09-19 18:54:16 +00001237 ObjCImplementationDecl *ImpD = ID->getImplementation();
Devang Patel9ca36b62009-02-26 21:10:26 +00001238 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001239 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001240 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001241 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001242 if (!FieldTy.isValid())
1243 return llvm::DIType();
1244
Chris Lattner5f9e2722011-07-23 10:55:15 +00001245 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001246
Devang Patelde135022009-04-27 22:40:36 +00001247 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001248 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001249 continue;
1250
Devang Patel9ca36b62009-02-26 21:10:26 +00001251 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001252 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1253 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001254 QualType FType = Field->getType();
1255 uint64_t FieldSize = 0;
1256 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001257
Devang Patel99c20eb2009-03-20 18:24:39 +00001258 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001259
Devang Patel99c20eb2009-03-20 18:24:39 +00001260 // Bit size, align and offset of the type.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001261 FieldSize = Field->isBitField()
1262 ? Field->getBitWidthValue(CGM.getContext())
1263 : CGM.getContext().getTypeSize(FType);
1264 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001265 }
1266
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001267 // We can't know the offset of our ivar in the structure if we're using
1268 // the non-fragile abi and the debugger should ignore the value anyways.
1269 // Call it the FieldNo+1 due to how debuggers use the information,
1270 // e.g. negating the value when it needs a lookup in the dynamic table.
1271 uint64_t FieldOffset = CGM.getLangOptions().ObjCNonFragileABI ? FieldNo+1
1272 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001273
Devang Patelc20482b2009-03-19 00:23:53 +00001274 unsigned Flags = 0;
1275 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001276 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001277 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001278 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001279
Chris Lattner5f9e2722011-07-23 10:55:15 +00001280 StringRef PropertyName;
1281 StringRef PropertyGetter;
1282 StringRef PropertySetter;
Eli Friedman10292cc2011-04-17 06:40:15 +00001283 unsigned PropertyAttributes = 0;
Devang Patel8c6f9c42011-09-19 18:54:16 +00001284 ObjCPropertyDecl *PD = NULL;
1285 if (ImpD)
1286 if (ObjCPropertyImplDecl *PImpD =
Eric Christopherab5278e2011-10-11 23:00:51 +00001287 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier()))
1288 PD = PImpD->getPropertyDecl();
Devang Patel8c6f9c42011-09-19 18:54:16 +00001289 if (PD) {
Devang Patelfa936d82011-04-16 00:12:55 +00001290 PropertyName = PD->getName();
Devang Patel90c1eed2011-04-16 00:37:51 +00001291 PropertyGetter = getSelectorName(PD->getGetterName());
1292 PropertySetter = getSelectorName(PD->getSetterName());
Devang Patelfa936d82011-04-16 00:12:55 +00001293 PropertyAttributes = PD->getPropertyAttributes();
Devang Patel8c6f9c42011-09-19 18:54:16 +00001294 }
Devang Patelfa936d82011-04-16 00:12:55 +00001295 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1296 FieldLine, FieldSize, FieldAlign,
1297 FieldOffset, Flags, FieldTy,
1298 PropertyName, PropertyGetter,
1299 PropertySetter, PropertyAttributes);
Devang Patel9ca36b62009-02-26 21:10:26 +00001300 EltTys.push_back(FieldTy);
1301 }
Mike Stump1eb44332009-09-09 15:08:12 +00001302
Jay Foadc556ef22011-04-24 10:11:03 +00001303 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel9ca36b62009-02-26 21:10:26 +00001304
Eric Christopheraa2164c2011-09-29 00:00:45 +00001305 LexicalBlockStack.pop_back();
Devang Patele4c1ea02010-03-11 20:01:48 +00001306 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1307 RegionMap.find(Ty->getDecl());
1308 if (RI != RegionMap.end())
1309 RegionMap.erase(RI);
1310
Devang Patel9ca36b62009-02-26 21:10:26 +00001311 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001312 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1313 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001314
Devang Patel707b1e92011-05-12 19:07:41 +00001315 unsigned Flags = 0;
Devang Patelf568b642011-05-12 21:14:54 +00001316 if (ID->getImplementation())
Devang Patelaad16092011-05-12 21:29:57 +00001317 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
Devang Patel707b1e92011-05-12 19:07:41 +00001318
Devang Patel823d8e92010-12-08 22:42:58 +00001319 llvm::DIType RealDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001320 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
Devang Patel707b1e92011-05-12 19:07:41 +00001321 Line, Size, Align, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001322 Elements, RuntimeLang);
Devang Patel9ca36b62009-02-26 21:10:26 +00001323
1324 // Now that we have a real decl for the struct, replace anything using the
1325 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001326 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001327 RegionMap[ID] = llvm::WeakVH(RealDecl);
Devang Patelfe09eab2009-07-13 17:03:14 +00001328
Devang Patel9ca36b62009-02-26 21:10:26 +00001329 return RealDecl;
1330}
1331
Devang Patel31f7d022011-01-17 22:23:07 +00001332llvm::DIType CGDebugInfo::CreateType(const TagType *Ty) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001333 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
Devang Patel31f7d022011-01-17 22:23:07 +00001334 return CreateType(RT);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001335 else if (const EnumType *ET = dyn_cast<EnumType>(Ty))
Devang Patel31f7d022011-01-17 22:23:07 +00001336 return CreateEnumType(ET->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001337
Chris Lattner9c85ba32008-11-10 06:08:34 +00001338 return llvm::DIType();
1339}
1340
Devang Patel70c23cd2010-02-23 22:59:39 +00001341llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty,
Eli Friedmana7e68452010-08-22 01:00:03 +00001342 llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001343 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001344 int64_t NumElems = Ty->getNumElements();
1345 int64_t LowerBound = 0;
1346 if (NumElems == 0)
1347 // If number of elements are not known then this is an unbounded array.
1348 // Use Low = 1, Hi = 0 to express such arrays.
1349 LowerBound = 1;
1350 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001351 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001352
Devang Patel6cf37dd2011-04-08 21:56:52 +00001353 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001354 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001355
1356 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1357 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1358
1359 return
Devang Patel16674e82011-02-22 18:56:36 +00001360 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001361}
1362
Chris Lattner9c85ba32008-11-10 06:08:34 +00001363llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001364 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001365 uint64_t Size;
1366 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001367
1368
Nuno Lopes010d5142009-01-28 00:35:17 +00001369 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001370 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001371 Size = 0;
1372 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001373 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001374 } else if (Ty->isIncompleteArrayType()) {
1375 Size = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001376 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001377 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001378 Size = 0;
1379 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001380 } else {
1381 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001382 Size = CGM.getContext().getTypeSize(Ty);
1383 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001384 }
Mike Stump1eb44332009-09-09 15:08:12 +00001385
Chris Lattner9c85ba32008-11-10 06:08:34 +00001386 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1387 // interior arrays, do we care? Why aren't nested arrays represented the
1388 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001389 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001390 QualType EltTy(Ty, 0);
Devang Patelcdf523c2010-10-06 18:30:00 +00001391 if (Ty->isIncompleteArrayType())
Chris Lattner9c85ba32008-11-10 06:08:34 +00001392 EltTy = Ty->getElementType();
Devang Patelcdf523c2010-10-06 18:30:00 +00001393 else {
1394 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
Devang Patel6cf37dd2011-04-08 21:56:52 +00001395 int64_t UpperBound = 0;
1396 int64_t LowerBound = 0;
Nick Lewycky3894c072011-04-09 00:25:15 +00001397 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
Devang Patelcdf523c2010-10-06 18:30:00 +00001398 if (CAT->getSize().getZExtValue())
Devang Patel6cf37dd2011-04-08 21:56:52 +00001399 UpperBound = CAT->getSize().getZExtValue() - 1;
Nick Lewycky3894c072011-04-09 00:25:15 +00001400 } else
Devang Patel6cf37dd2011-04-08 21:56:52 +00001401 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1402 // arrays.
1403 LowerBound = 1;
1404
Devang Patelcdf523c2010-10-06 18:30:00 +00001405 // FIXME: Verify this is right for VLAs.
Eric Christopherab5278e2011-10-11 23:00:51 +00001406 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1407 UpperBound));
Devang Patelcdf523c2010-10-06 18:30:00 +00001408 EltTy = Ty->getElementType();
1409 }
Sanjiv Gupta507de852008-06-09 10:47:41 +00001410 }
Mike Stump1eb44332009-09-09 15:08:12 +00001411
Jay Foadc556ef22011-04-24 10:11:03 +00001412 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001413
Devang Patelca80a5f2009-10-20 19:55:01 +00001414 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001415 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001416 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001417 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001418}
1419
Anders Carlssona031b352009-11-06 19:19:55 +00001420llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001421 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001422 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1423 Ty, Ty->getPointeeType(), Unit);
1424}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001425
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001426llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1427 llvm::DIFile Unit) {
1428 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1429 Ty, Ty->getPointeeType(), Unit);
1430}
1431
Anders Carlsson20f12a22009-12-06 18:00:51 +00001432llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001433 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001434 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1435 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1436
1437 if (!Ty->getPointeeType()->isFunctionType()) {
1438 // We have a data member pointer type.
1439 return PointerDiffDITy;
1440 }
1441
1442 // We have a member function pointer type. Treat it as a struct with two
1443 // ptrdiff_t members.
1444 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1445
1446 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001447 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001448
1449 // FIXME: This should probably be a function type instead.
1450 ElementTypes[0] =
Devang Patel1d323e02011-06-24 22:00:59 +00001451 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001452 Info.first, Info.second, FieldOffset, 0,
1453 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001454 FieldOffset += Info.first;
1455
1456 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001457 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001458 Info.first, Info.second, FieldOffset, 0,
1459 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001460
Jay Foadc556ef22011-04-24 10:11:03 +00001461 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001462
Chris Lattner5f9e2722011-07-23 10:55:15 +00001463 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001464 U, 0, FieldOffset,
1465 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001466}
1467
Eli Friedmanb001de72011-10-06 23:00:33 +00001468llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1469 llvm::DIFile U) {
1470 // Ignore the atomic wrapping
1471 // FIXME: What is the correct representation?
1472 return getOrCreateType(Ty->getValueType(), U);
1473}
1474
Devang Patel6237cea2010-08-23 22:07:25 +00001475/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001476llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1477 llvm::DIFile Unit = getOrCreateFile(ED->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001478 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001479
1480 // Create DIEnumerator elements for each enumerator.
1481 for (EnumDecl::enumerator_iterator
1482 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1483 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001484 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001485 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001486 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001487 }
1488
1489 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001490 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001491
1492 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1493 unsigned Line = getLineNumber(ED->getLocation());
1494 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001495 uint64_t Align = 0;
1496 if (!ED->getTypeForDecl()->isIncompleteType()) {
1497 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1498 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1499 }
Devang Patel4bc48872010-10-27 23:23:58 +00001500 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001501 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Devang Patel6237cea2010-08-23 22:07:25 +00001502 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001503 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001504 Size, Align, EltArray);
Devang Patel6237cea2010-08-23 22:07:25 +00001505 return DbgTy;
1506}
1507
Douglas Gregor840943d2009-12-21 20:18:30 +00001508static QualType UnwrapTypeForDebugInfo(QualType T) {
1509 do {
1510 QualType LastT = T;
1511 switch (T->getTypeClass()) {
1512 default:
1513 return T;
1514 case Type::TemplateSpecialization:
1515 T = cast<TemplateSpecializationType>(T)->desugar();
1516 break;
John McCallf4c73712011-01-19 06:33:43 +00001517 case Type::TypeOfExpr:
1518 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001519 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001520 case Type::TypeOf:
1521 T = cast<TypeOfType>(T)->getUnderlyingType();
1522 break;
1523 case Type::Decltype:
1524 T = cast<DecltypeType>(T)->getUnderlyingType();
1525 break;
Sean Huntca63c202011-05-24 22:41:36 +00001526 case Type::UnaryTransform:
1527 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1528 break;
John McCall9d156a72011-01-06 01:58:22 +00001529 case Type::Attributed:
1530 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001531 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001532 case Type::Elaborated:
1533 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001534 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001535 case Type::Paren:
1536 T = cast<ParenType>(T)->getInnerType();
1537 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001538 case Type::SubstTemplateTypeParm:
1539 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1540 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001541 case Type::Auto:
1542 T = cast<AutoType>(T)->getDeducedType();
1543 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001544 }
1545
1546 assert(T != LastT && "Type unwrapping failed to unwrap!");
1547 if (T == LastT)
1548 return T;
1549 } while (true);
1550
1551 return T;
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001552}
1553
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001554/// getOrCreateType - Get the type from the cache or create a new
1555/// one if necessary.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001556llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001557 llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +00001558 if (Ty.isNull())
1559 return llvm::DIType();
Mike Stump1eb44332009-09-09 15:08:12 +00001560
Douglas Gregor840943d2009-12-21 20:18:30 +00001561 // Unwrap the type as needed for debug information.
1562 Ty = UnwrapTypeForDebugInfo(Ty);
Devang Patele80d5672011-03-23 16:29:39 +00001563
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001564 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001565 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001566 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001567 if (it != TypeCache.end()) {
1568 // Verify that the debug info still exists.
1569 if (&*it->second)
1570 return llvm::DIType(cast<llvm::MDNode>(it->second));
1571 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001572
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001573 // Otherwise create the type.
1574 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001575
1576 // And update the type cache.
Devang Patelab699792010-05-07 18:12:35 +00001577 TypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001578 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001579}
1580
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001581/// CreateTypeNode - Create a new debug type node.
Daniel Dunbar03faac32009-09-19 19:27:14 +00001582llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty,
Devang Patel17800552010-03-09 00:44:50 +00001583 llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001584 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001585 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001586 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001587
Douglas Gregor2101a822009-12-21 19:57:21 +00001588 const char *Diag = 0;
1589
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001590 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001591 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001592#define TYPE(Class, Base)
1593#define ABSTRACT_TYPE(Class, Base)
1594#define NON_CANONICAL_TYPE(Class, Base)
1595#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1596#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001597 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001598
Anders Carlssonbfe69952009-11-06 18:24:04 +00001599 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001600 case Type::Vector:
1601 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001602 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001603 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001604 case Type::ObjCObject:
1605 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001606 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001607 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Devang Patelf1d1d9a2010-11-01 16:52:40 +00001608 case Type::Builtin: return CreateType(cast<BuiltinType>(Ty));
Devang Patel344ff5d2010-12-09 00:25:29 +00001609 case Type::Complex: return CreateType(cast<ComplexType>(Ty));
Daniel Dunbar03faac32009-09-19 19:27:14 +00001610 case Type::Pointer: return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001611 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001612 return CreateType(cast<BlockPointerType>(Ty), Unit);
1613 case Type::Typedef: return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001614 case Type::Record:
Douglas Gregor72564e72009-02-26 23:50:07 +00001615 case Type::Enum:
Devang Patel31f7d022011-01-17 22:23:07 +00001616 return CreateType(cast<TagType>(Ty));
Chris Lattner9c85ba32008-11-10 06:08:34 +00001617 case Type::FunctionProto:
1618 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001619 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001620 case Type::ConstantArray:
1621 case Type::VariableArray:
1622 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001623 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001624
1625 case Type::LValueReference:
1626 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001627 case Type::RValueReference:
1628 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001629
Anders Carlsson20f12a22009-12-06 18:00:51 +00001630 case Type::MemberPointer:
1631 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001632
Eli Friedmanb001de72011-10-06 23:00:33 +00001633 case Type::Atomic:
1634 return CreateType(cast<AtomicType>(Ty), Unit);
1635
John McCall9d156a72011-01-06 01:58:22 +00001636 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001637 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001638 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001639 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001640 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001641 case Type::TypeOfExpr:
1642 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001643 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001644 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001645 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001646 llvm_unreachable("type should have been unwrapped!");
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001647 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001648 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001649
1650 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001651 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001652 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001653 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001654 << Diag;
1655 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001656}
1657
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001658/// CreateMemberType - Create new member and increase Offset by FType's size.
1659llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001660 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001661 uint64_t *Offset) {
1662 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1663 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1664 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001665 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001666 FieldSize, FieldAlign,
1667 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001668 *Offset += FieldSize;
1669 return Ty;
1670}
1671
Devang Patel120bf322011-04-23 00:08:01 +00001672/// getFunctionDeclaration - Return debug info descriptor to describe method
1673/// declaration for the given method definition.
1674llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1675 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1676 if (!FD) return llvm::DISubprogram();
1677
1678 // Setup context.
1679 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1680
Devang Patel22a5cdf2011-04-29 23:42:32 +00001681 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1682 MI = SPCache.find(FD);
1683 if (MI != SPCache.end()) {
1684 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1685 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1686 return SP;
1687 }
1688
Devang Patel120bf322011-04-23 00:08:01 +00001689 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1690 E = FD->redecls_end(); I != E; ++I) {
1691 const FunctionDecl *NextFD = *I;
1692 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1693 MI = SPCache.find(NextFD);
1694 if (MI != SPCache.end()) {
1695 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1696 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1697 return SP;
1698 }
1699 }
1700 return llvm::DISubprogram();
1701}
1702
Devang Patel1c296522011-05-31 20:46:46 +00001703// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1704// implicit parameter "this".
Eric Christopherab5278e2011-10-11 23:00:51 +00001705llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D,
1706 QualType FnType,
Devang Patel1c296522011-05-31 20:46:46 +00001707 llvm::DIFile F) {
1708 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1709 return getOrCreateMethodType(Method, F);
Devang Patelc478f212011-05-31 21:18:50 +00001710 else if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00001711 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001712 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00001713
1714 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00001715 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00001716 // "self" pointer is always first argument.
1717 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
1718 // "cmd" pointer is always second argument.
1719 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Pateld127bcb2011-05-31 22:21:11 +00001720 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001721 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00001722 PE = OMethod->param_end(); PI != PE; ++PI)
1723 Elts.push_back(getOrCreateType((*PI)->getType(), F));
1724
Devang Patelc478f212011-05-31 21:18:50 +00001725 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1726 return DBuilder.createSubroutineType(F, EltTypeArray);
1727 }
Devang Patel1c296522011-05-31 20:46:46 +00001728 return getOrCreateType(FnType, F);
1729}
1730
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001731/// EmitFunctionStart - Constructs the debug code for entering a function -
1732/// "llvm.dbg.func.start.".
Devang Patel9c6c3a02010-01-14 00:36:21 +00001733void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001734 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001735 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00001736
Chris Lattner5f9e2722011-07-23 10:55:15 +00001737 StringRef Name;
1738 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001739
Eric Christopheraa2164c2011-09-29 00:00:45 +00001740 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001741
Devang Patel9c6c3a02010-01-14 00:36:21 +00001742 const Decl *D = GD.getDecl();
Eric Christopher73fb3502011-10-13 21:45:18 +00001743
Devang Patel3951e712010-10-07 22:03:49 +00001744 unsigned Flags = 0;
Devang Patel0692f832010-10-11 21:58:41 +00001745 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1746 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00001747 llvm::DIArray TParamsArray;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001748 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Devang Patel4125fd22010-01-19 01:54:44 +00001749 // If there is a DISubprogram for this function available then use it.
1750 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
1751 FI = SPCache.find(FD);
1752 if (FI != SPCache.end()) {
Gabor Greif38c9b172010-09-18 13:00:17 +00001753 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelab699792010-05-07 18:12:35 +00001754 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1755 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001756 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001757 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00001758 return;
1759 }
1760 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00001761 Name = getFunctionName(FD);
1762 // Use mangled name as linkage name for c/c++ functions.
Devang Patela87a2b22011-05-02 22:49:30 +00001763 if (!Fn->hasInternalLinkage())
Devang Patel2df74c02011-05-02 22:37:48 +00001764 LinkageName = CGM.getMangledName(GD);
Devang Patel58faf202010-10-22 17:11:50 +00001765 if (LinkageName == Name)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001766 LinkageName = StringRef();
Devang Patel3951e712010-10-07 22:03:49 +00001767 if (FD->hasPrototype())
1768 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel0692f832010-10-11 21:58:41 +00001769 if (const NamespaceDecl *NSDecl =
1770 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
Devang Patel170cef32010-12-09 00:33:05 +00001771 FDContext = getOrCreateNameSpace(NSDecl);
Devang Patelbc6a1912011-05-17 00:20:09 +00001772 else if (const RecordDecl *RDecl =
1773 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
1774 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00001775
1776 // Collect template parameters.
1777 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
David Chisnall70b9b442010-09-02 17:16:32 +00001778 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00001779 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00001780 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001781 } else {
Devang Patel58faf202010-10-22 17:11:50 +00001782 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00001783 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00001784 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001785 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001786 if (!Name.empty() && Name[0] == '\01')
1787 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001788
Devang Patel970c6182010-04-24 00:49:16 +00001789 // It is expected that CurLoc is set before using EmitFunctionStart.
1790 // Usually, CurLoc points to the left bracket location of compound
1791 // statement representing function body.
Devang Patel8ab870d2010-05-12 23:46:38 +00001792 unsigned LineNo = getLineNumber(CurLoc);
Devang Patele2472482010-09-29 21:05:52 +00001793 if (D->isImplicit())
1794 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel120bf322011-04-23 00:08:01 +00001795 llvm::DISubprogram SPDecl = getFunctionDeclaration(D);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001796 llvm::DISubprogram SP =
Devang Patel16674e82011-02-22 18:56:36 +00001797 DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
Devang Patel1c296522011-05-31 20:46:46 +00001798 LineNo, getOrCreateFunctionType(D, FnType, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001799 Fn->hasInternalLinkage(), true/*definition*/,
Devang Patel5ecb1df2011-04-05 22:54:11 +00001800 Flags, CGM.getLangOptions().Optimize, Fn,
Devang Patel120bf322011-04-23 00:08:01 +00001801 TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001802
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001803 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00001804 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001805 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001806 RegionMap[D] = llvm::WeakVH(SP);
Eric Christopher69a1b742011-09-29 00:00:37 +00001807}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001808
Eric Christopher5321bc42011-09-29 00:00:41 +00001809/// EmitLocation - Emit metadata to indicate a change in line/column
1810/// information in the source file.
Eric Christopher73fb3502011-10-13 21:45:18 +00001811void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
1812
1813 // Update our current location
1814 setLocation(Loc);
1815
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001816 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001817
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001818 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001819 SourceManager &SM = CGM.getContext().getSourceManager();
Eric Christopher73fb3502011-10-13 21:45:18 +00001820 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00001821 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00001822 // New Builder may not be in sync with CGDebugInfo.
1823 if (!Builder.getCurrentDebugLocation().isUnknown())
1824 return;
Eric Christopher414ee4b2011-09-29 00:00:35 +00001825
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001826 // Update last state.
1827 PrevLoc = CurLoc;
1828
Eric Christopheraa2164c2011-09-29 00:00:45 +00001829 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00001830 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
1831 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00001832 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001833}
1834
Eric Christopher73fb3502011-10-13 21:45:18 +00001835/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
1836/// the stack.
1837void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
Devang Patel8fae0602009-11-13 19:10:24 +00001838 llvm::DIDescriptor D =
Eric Christopher73fb3502011-10-13 21:45:18 +00001839 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
1840 llvm::DIDescriptor() :
1841 llvm::DIDescriptor(LexicalBlockStack.back()),
1842 getOrCreateFile(CurLoc),
1843 getLineNumber(CurLoc),
1844 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00001845 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001846 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001847}
1848
Eric Christopher73fb3502011-10-13 21:45:18 +00001849/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
1850/// region - beginning of a DW_TAG_lexical_block.
1851void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) {
1852 // Set our current location.
1853 setLocation(Loc);
1854
1855 // Create a new lexical block and push it on the stack.
1856 CreateLexicalBlock(Loc);
1857
1858 // Emit a line table change for the current location inside the new scope.
1859 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
1860 getColumnNumber(Loc),
1861 LexicalBlockStack.back()));
1862}
1863
Eric Christopheraa2164c2011-09-29 00:00:45 +00001864/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00001865/// region - end of a DW_TAG_lexical_block.
Eric Christopher73fb3502011-10-13 21:45:18 +00001866void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001867 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00001868
Eric Christopher73fb3502011-10-13 21:45:18 +00001869 // Provide an entry in the line table for the end of the block.
1870 EmitLocation(Builder, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +00001871
Eric Christopheraa2164c2011-09-29 00:00:45 +00001872 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001873}
1874
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001875/// EmitFunctionEnd - Constructs the debug code for exiting a function.
1876void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001877 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001878 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00001879 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001880
1881 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001882 while (LexicalBlockStack.size() != RCount)
Eric Christopher73fb3502011-10-13 21:45:18 +00001883 EmitLexicalBlockEnd(Builder, CurLoc);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001884 FnBeginRegionCount.pop_back();
1885}
1886
Devang Patel809b9bb2010-02-10 18:49:08 +00001887// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
1888// See BuildByRefType.
1889llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
1890 uint64_t *XOffset) {
1891
Chris Lattner5f9e2722011-07-23 10:55:15 +00001892 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00001893 QualType FType;
1894 uint64_t FieldSize, FieldOffset;
1895 unsigned FieldAlign;
1896
Devang Patel17800552010-03-09 00:44:50 +00001897 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001898 QualType Type = VD->getType();
1899
1900 FieldOffset = 0;
1901 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001902 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
1903 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001904 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001905 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
1906 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
1907
John McCall6b5a61b2011-02-07 10:33:21 +00001908 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00001909 if (HasCopyAndDispose) {
1910 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001911 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
1912 &FieldOffset));
1913 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
1914 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001915 }
1916
1917 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00001918 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001919 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00001920 CharUnits FieldOffsetInBytes
1921 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
1922 CharUnits AlignedOffsetInBytes
1923 = FieldOffsetInBytes.RoundUpToAlignment(Align);
1924 CharUnits NumPaddingBytes
1925 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00001926
Ken Dyck573be632011-04-22 17:34:18 +00001927 if (NumPaddingBytes.isPositive()) {
1928 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00001929 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
1930 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001931 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001932 }
1933 }
1934
1935 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001936 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00001937 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00001938 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00001939
1940 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00001941 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001942 0, FieldSize, FieldAlign,
1943 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00001944 EltTys.push_back(FieldTy);
1945 FieldOffset += FieldSize;
1946
Jay Foadc556ef22011-04-24 10:11:03 +00001947 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00001948
Devang Patele2472482010-09-29 21:05:52 +00001949 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00001950
Devang Patel16674e82011-02-22 18:56:36 +00001951 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001952 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00001953}
Devang Patel823d8e92010-12-08 22:42:58 +00001954
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00001955/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00001956void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00001957 llvm::Value *Storage,
1958 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001959 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00001960
Devang Patel17800552010-03-09 00:44:50 +00001961 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001962 llvm::DIType Ty;
1963 uint64_t XOffset = 0;
1964 if (VD->hasAttr<BlocksAttr>())
1965 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
1966 else
1967 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00001968
Devang Patelf4e54a22010-05-07 23:05:55 +00001969 // If there is not any debug info for type then do not emit debug info
1970 // for this variable.
1971 if (!Ty)
1972 return;
1973
Devang Patel34753802011-02-16 01:11:51 +00001974 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
1975 // If Storage is an aggregate returned as 'sret' then let debugger know
1976 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00001977 if (Arg->hasStructRetAttr())
Devang Patel16674e82011-02-22 18:56:36 +00001978 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00001979 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
1980 // If an aggregate variable has non trivial destructor or non trivial copy
1981 // constructor than it is pass indirectly. Let debug info know about this
1982 // by using reference of the aggregate type as a argument type.
Eric Christopherab5278e2011-10-11 23:00:51 +00001983 if (!Record->hasTrivialCopyConstructor() ||
1984 !Record->hasTrivialDestructor())
Devang Patel16674e82011-02-22 18:56:36 +00001985 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00001986 }
1987 }
Devang Patel0691f932011-02-10 00:40:52 +00001988
Chris Lattner9c85ba32008-11-10 06:08:34 +00001989 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00001990 unsigned Line = getLineNumber(VD->getLocation());
1991 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00001992 unsigned Flags = 0;
1993 if (VD->isImplicit())
1994 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001995 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00001996
Chris Lattner5f9e2722011-07-23 10:55:15 +00001997 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00001998 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00001999 if (VD->hasAttr<BlocksAttr>()) {
2000 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002001 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002002 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002003 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002004 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002005 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002006 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002007 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002008 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2009 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002010 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002011 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002012 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2013
2014 // Create the descriptor for the variable.
2015 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002016 DBuilder.createComplexVariable(Tag,
Eric Christopherab5278e2011-10-11 23:00:51 +00002017 llvm::DIDescriptor(Scope),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002018 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002019 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002020
2021 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002022 // Insert an llvm.dbg.declare into the current block.
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002023 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002024 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002025 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2026 return;
2027 }
2028 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002029 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002030 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002031 Name, Unit, Line, Ty,
Devang Patel093ac462011-03-03 20:13:15 +00002032 CGM.getLangOptions().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002033
2034 // Insert an llvm.dbg.declare into the current block.
2035 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002036 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002037 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002038 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002039 }
2040
2041 // If VD is an anonymous union then Storage represents value for
2042 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002043 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2044 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2045 if (RD->isUnion()) {
2046 for (RecordDecl::field_iterator I = RD->field_begin(),
2047 E = RD->field_end();
2048 I != E; ++I) {
2049 FieldDecl *Field = *I;
2050 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002051 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002052
John McCall8178df32011-02-22 22:38:33 +00002053 // Ignore unnamed fields. Do not ignore unnamed records.
2054 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2055 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002056
John McCall8178df32011-02-22 22:38:33 +00002057 // Use VarDecl's Tag, Scope and Line number.
2058 llvm::DIVariable D =
2059 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2060 FieldName, Unit, Line, FieldTy,
Devang Patel093ac462011-03-03 20:13:15 +00002061 CGM.getLangOptions().Optimize, Flags,
2062 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002063
John McCall8178df32011-02-22 22:38:33 +00002064 // Insert an llvm.dbg.declare into the current block.
2065 llvm::Instruction *Call =
2066 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
John McCall8178df32011-02-22 22:38:33 +00002067 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002068 }
John McCall8178df32011-02-22 22:38:33 +00002069 }
2070 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002071}
2072
Devang Patele2d01912011-04-25 23:43:36 +00002073void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2074 llvm::Value *Storage,
2075 CGBuilderTy &Builder) {
2076 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2077}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002078
Devang Patele2d01912011-04-25 23:43:36 +00002079void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2080 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2081 const CGBlockInfo &blockInfo) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002082 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002083
Devang Patel2b594b92010-04-26 23:28:46 +00002084 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002085 return;
Devang Patele2d01912011-04-25 23:43:36 +00002086
John McCall6b5a61b2011-02-07 10:33:21 +00002087 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002088
Mike Stumpb1a6e682009-09-30 02:43:10 +00002089 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002090 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002091 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002092 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002093 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2094 else
2095 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002096
2097 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002098 unsigned Line = getLineNumber(VD->getLocation());
2099 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002100
John McCall6b5a61b2011-02-07 10:33:21 +00002101 const llvm::TargetData &target = CGM.getTargetData();
2102
2103 CharUnits offset = CharUnits::fromQuantity(
2104 target.getStructLayout(blockInfo.StructureType)
2105 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2106
Chris Lattner5f9e2722011-07-23 10:55:15 +00002107 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002108 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002109 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002110 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002111 if (isByRef) {
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002112 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2113 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002114 // offset of __forwarding field
Eric Christopherab5278e2011-10-11 23:00:51 +00002115 offset = CGM.getContext()
2116 .toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattner14b1a362010-01-25 03:29:35 +00002117 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002118 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2119 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002120 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002121 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002122 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002123 }
2124
2125 // Create the descriptor for the variable.
2126 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002127 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002128 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002129 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002130 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002131 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002132 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Eric Christopher73fb3502011-10-13 21:45:18 +00002133 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2134 LexicalBlockStack.back()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002135}
2136
Chris Lattner9c85ba32008-11-10 06:08:34 +00002137/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2138/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002139void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002140 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002141 CGBuilderTy &Builder) {
Devang Patel093ac462011-03-03 20:13:15 +00002142 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002143}
2144
John McCall8178df32011-02-22 22:38:33 +00002145namespace {
2146 struct BlockLayoutChunk {
2147 uint64_t OffsetInBits;
2148 const BlockDecl::Capture *Capture;
2149 };
2150 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2151 return l.OffsetInBits < r.OffsetInBits;
2152 }
2153}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002154
John McCall8178df32011-02-22 22:38:33 +00002155void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2156 llvm::Value *addr,
2157 CGBuilderTy &Builder) {
2158 ASTContext &C = CGM.getContext();
2159 const BlockDecl *blockDecl = block.getBlockDecl();
2160
2161 // Collect some general information about the block's location.
2162 SourceLocation loc = blockDecl->getCaretLocation();
2163 llvm::DIFile tunit = getOrCreateFile(loc);
2164 unsigned line = getLineNumber(loc);
2165 unsigned column = getColumnNumber(loc);
2166
2167 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002168 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002169
2170 const llvm::StructLayout *blockLayout =
2171 CGM.getTargetData().getStructLayout(block.StructureType);
2172
Chris Lattner5f9e2722011-07-23 10:55:15 +00002173 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002174 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2175 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002176 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002177 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2178 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002179 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002180 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2181 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002182 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002183 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2184 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002185 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002186 fields.push_back(createFieldType("__descriptor",
2187 C.getPointerType(block.NeedsCopyDispose ?
2188 C.getBlockDescriptorExtendedType() :
2189 C.getBlockDescriptorType()),
2190 0, loc, AS_public,
2191 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002192 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002193
2194 // We want to sort the captures by offset, not because DWARF
2195 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002196 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002197
2198 // 'this' capture.
2199 if (blockDecl->capturesCXXThis()) {
2200 BlockLayoutChunk chunk;
2201 chunk.OffsetInBits =
2202 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2203 chunk.Capture = 0;
2204 chunks.push_back(chunk);
2205 }
2206
2207 // Variable captures.
2208 for (BlockDecl::capture_const_iterator
2209 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2210 i != e; ++i) {
2211 const BlockDecl::Capture &capture = *i;
2212 const VarDecl *variable = capture.getVariable();
2213 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2214
2215 // Ignore constant captures.
2216 if (captureInfo.isConstant())
2217 continue;
2218
2219 BlockLayoutChunk chunk;
2220 chunk.OffsetInBits =
2221 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2222 chunk.Capture = &capture;
2223 chunks.push_back(chunk);
2224 }
2225
2226 // Sort by offset.
2227 llvm::array_pod_sort(chunks.begin(), chunks.end());
2228
Chris Lattner5f9e2722011-07-23 10:55:15 +00002229 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002230 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2231 uint64_t offsetInBits = i->OffsetInBits;
2232 const BlockDecl::Capture *capture = i->Capture;
2233
2234 // If we have a null capture, this must be the C++ 'this' capture.
2235 if (!capture) {
2236 const CXXMethodDecl *method =
2237 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2238 QualType type = method->getThisType(C);
2239
2240 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002241 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002242 continue;
2243 }
2244
2245 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002246 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002247
2248 llvm::DIType fieldType;
2249 if (capture->isByRef()) {
2250 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2251
2252 // FIXME: this creates a second copy of this type!
2253 uint64_t xoffset;
2254 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2255 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002256 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002257 ptrInfo.first, ptrInfo.second,
2258 offsetInBits, 0, fieldType);
2259 } else {
2260 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002261 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002262 }
2263 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002264 }
2265
2266 llvm::SmallString<36> typeName;
2267 llvm::raw_svector_ostream(typeName)
2268 << "__block_literal_" << CGM.getUniqueBlockCount();
2269
Jay Foadc556ef22011-04-24 10:11:03 +00002270 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002271
2272 llvm::DIType type =
2273 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2274 CGM.getContext().toBits(block.BlockSize),
2275 CGM.getContext().toBits(block.BlockAlign),
2276 0, fieldsArray);
2277 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2278
2279 // Get overall information about the block.
2280 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002281 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002282 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002283
2284 // Create the descriptor for the parameter.
2285 llvm::DIVariable debugVar =
2286 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2287 llvm::DIDescriptor(scope),
2288 name, tunit, line, type,
Devang Patel093ac462011-03-03 20:13:15 +00002289 CGM.getLangOptions().Optimize, flags,
2290 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002291
2292 // Insert an llvm.dbg.value into the current block.
2293 llvm::Instruction *declare =
2294 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2295 Builder.GetInsertBlock());
2296 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2297}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002298
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002299/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002300void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002301 const VarDecl *D) {
2302
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002303 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002304 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002305 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002306
Eric Christopher73fb3502011-10-13 21:45:18 +00002307 setLocation(D->getLocation());
2308
Devang Pateleb6d79b2010-02-01 21:34:11 +00002309 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002310 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002311
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002312 // CodeGen turns int[] into int[1] so we'll do the same here.
2313 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002314
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002315 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002316 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002317
Anders Carlsson20f12a22009-12-06 18:00:51 +00002318 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002319 ArrayType::Normal, 0);
2320 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002321 StringRef DeclName = D->getName();
2322 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002323 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2324 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002325 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002326 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002327 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002328 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002329 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002330 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002331 Unit, LineNo, getOrCreateType(T, Unit),
2332 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002333}
2334
Devang Patel9ca36b62009-02-26 21:10:26 +00002335/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002336void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002337 ObjCInterfaceDecl *ID) {
Devang Patel9ca36b62009-02-26 21:10:26 +00002338 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002339 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002340 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002341
Chris Lattner5f9e2722011-07-23 10:55:15 +00002342 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002343
Devang Pateld6c5a262010-02-01 21:52:22 +00002344 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002345 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002346
Devang Patel9ca36b62009-02-26 21:10:26 +00002347 // CodeGen turns int[] into int[1] so we'll do the same here.
2348 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002349
Devang Patel9ca36b62009-02-26 21:10:26 +00002350 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002351 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002352
Anders Carlsson20f12a22009-12-06 18:00:51 +00002353 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002354 ArrayType::Normal, 0);
2355 }
2356
Devang Patel16674e82011-02-22 18:56:36 +00002357 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002358 getOrCreateType(T, Unit),
2359 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002360}
Devang Patelabb485f2010-02-01 19:16:32 +00002361
Devang Patel25c2c8f2010-08-10 17:53:33 +00002362/// EmitGlobalVariable - Emit global variable's debug info.
2363void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002364 llvm::Constant *Init) {
Devang Patel8d308382010-08-10 07:24:25 +00002365 // Create the descriptor for the variable.
2366 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002367 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002368 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002369 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
2370 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
Devang Patel31f7d022011-01-17 22:23:07 +00002371 Ty = CreateEnumType(ED);
Devang Patel6237cea2010-08-23 22:07:25 +00002372 }
Devang Patel0317ab02010-08-10 18:27:15 +00002373 // Do not use DIGlobalVariable for enums.
2374 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2375 return;
Devang Patel16674e82011-02-22 18:56:36 +00002376 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002377 getLineNumber(VD->getLocation()),
2378 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002379}
2380
Devang Patelabb485f2010-02-01 19:16:32 +00002381/// getOrCreateNamesSpace - Return namespace descriptor for the given
2382/// namespace decl.
2383llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002384CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002385 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2386 NameSpaceCache.find(NSDecl);
2387 if (I != NameSpaceCache.end())
2388 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2389
Devang Patel8ab870d2010-05-12 23:46:38 +00002390 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002391 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002392 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002393 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002394 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002395 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002396 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002397 return NS;
2398}
Devang Patele80d5672011-03-23 16:29:39 +00002399
2400/// UpdateCompletedType - Update type cache because the type is now
2401/// translated.
2402void CGDebugInfo::UpdateCompletedType(const TagDecl *TD) {
2403 QualType Ty = CGM.getContext().getTagDeclType(TD);
2404
2405 // If the type exist in type cache then remove it from the cache.
2406 // There is no need to prepare debug info for the completed type
2407 // right now. It will be generated on demand lazily.
2408 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2409 TypeCache.find(Ty.getAsOpaquePtr());
2410 if (it != TypeCache.end())
2411 TypeCache.erase(it);
2412}