blob: 98aa20c8d6108e4439d1e2f08c8373e139e92712 [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;
Devang Patel17800552010-03-09 00:44:50 +0000226}
Devang Patel8ab870d2010-05-12 23:46:38 +0000227
Devang Patel532105f2010-10-28 22:03:20 +0000228/// getOrCreateMainFile - Get the file info for main compile unit.
229llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
Devang Patel16674e82011-02-22 18:56:36 +0000230 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel532105f2010-10-28 22:03:20 +0000231}
232
Devang Patel8ab870d2010-05-12 23:46:38 +0000233/// getLineNumber - Get line number for the location. If location is invalid
234/// then use current location.
235unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
Benjamin Kramerc95ff942011-10-14 18:45:06 +0000236 assert((Loc.isValid() || CurLoc.isValid()) && "Invalid current location!");
Devang Patel8ab870d2010-05-12 23:46:38 +0000237 SourceManager &SM = CGM.getContext().getSourceManager();
238 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000239 return PLoc.isValid()? PLoc.getLine() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000240}
241
242/// getColumnNumber - Get column number for the location. If location is
243/// invalid then use current location.
244unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
Benjamin Kramerc95ff942011-10-14 18:45:06 +0000245 assert((Loc.isValid() || CurLoc.isValid()) && "Invalid current location!");
Devang Patel8ab870d2010-05-12 23:46:38 +0000246 SourceManager &SM = CGM.getContext().getSourceManager();
247 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregor8c457a82010-11-11 20:45:16 +0000248 return PLoc.isValid()? PLoc.getColumn() : 0;
Devang Patel8ab870d2010-05-12 23:46:38 +0000249}
250
Chris Lattner5f9e2722011-07-23 10:55:15 +0000251StringRef CGDebugInfo::getCurrentDirname() {
Nick Lewycky7c4fd912011-10-21 02:32:14 +0000252 if (!CGM.getCodeGenOpts().DebugCompilationDir.empty())
253 return CGM.getCodeGenOpts().DebugCompilationDir;
254
Devang Patelac4d13c2010-07-27 15:17:16 +0000255 if (!CWDName.empty())
256 return CWDName;
Benjamin Kramerbcbca752011-10-14 18:45:11 +0000257 llvm::SmallString<256> CWD;
258 llvm::sys::fs::current_path(CWD);
259 char *CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
260 memcpy(CompDirnamePtr, CWD.data(), CWD.size());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000261 return CWDName = StringRef(CompDirnamePtr, CWD.size());
Devang Patelac4d13c2010-07-27 15:17:16 +0000262}
263
Devang Patel17800552010-03-09 00:44:50 +0000264/// CreateCompileUnit - Create new compile unit.
265void CGDebugInfo::CreateCompileUnit() {
266
267 // Get absolute path name.
Douglas Gregorac91b4c2010-03-18 23:46:43 +0000268 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000269 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
270 if (MainFileName.empty())
Devang Patel22fe5852010-03-12 21:04:27 +0000271 MainFileName = "<unknown>";
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000272
Douglas Gregorf6728fc2010-03-22 21:28:29 +0000273 // The main file name provided via the "-main-file-name" option contains just
274 // the file name itself with no path information. This file name may have had
275 // a relative path, so we look into the actual file entry for the main
276 // file to determine the real absolute path for the file.
Devang Patel6e6bc392010-07-23 23:04:28 +0000277 std::string MainFileDir;
Devang Patelac4d13c2010-07-27 15:17:16 +0000278 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000279 MainFileDir = MainFile->getDir()->getName();
Devang Patelac4d13c2010-07-27 15:17:16 +0000280 if (MainFileDir != ".")
281 MainFileName = MainFileDir + "/" + MainFileName;
282 }
Douglas Gregorf7ad5002010-03-19 14:49:09 +0000283
Devang Patelac4d13c2010-07-27 15:17:16 +0000284 // Save filename string.
285 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
286 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +0000287 StringRef Filename(FilenamePtr, MainFileName.length());
Devang Patelac4d13c2010-07-27 15:17:16 +0000288
Chris Lattner515455a2009-03-25 03:28:08 +0000289 unsigned LangTag;
Devang Patel17800552010-03-09 00:44:50 +0000290 const LangOptions &LO = CGM.getLangOptions();
Chris Lattner515455a2009-03-25 03:28:08 +0000291 if (LO.CPlusPlus) {
292 if (LO.ObjC1)
293 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
294 else
295 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
296 } else if (LO.ObjC1) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000297 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner515455a2009-03-25 03:28:08 +0000298 } else if (LO.C99) {
Devang Patel8d9aefc2009-03-24 20:35:51 +0000299 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner515455a2009-03-25 03:28:08 +0000300 } else {
301 LangTag = llvm::dwarf::DW_LANG_C89;
302 }
Devang Patel446c6192009-04-17 21:06:59 +0000303
Daniel Dunbar19f19832010-08-24 17:41:09 +0000304 std::string Producer = getClangFullVersion();
Chris Lattner4c2577a2009-05-02 01:00:04 +0000305
306 // Figure out which version of the ObjC runtime we have.
307 unsigned RuntimeVers = 0;
308 if (LO.ObjC1)
309 RuntimeVers = LO.ObjCNonFragileABI ? 2 : 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000310
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000311 // Create new compile unit.
Devang Patel16674e82011-02-22 18:56:36 +0000312 DBuilder.createCompileUnit(
Devang Patel58115002010-07-27 20:49:59 +0000313 LangTag, Filename, getCurrentDirname(),
Devang Patel823d8e92010-12-08 22:42:58 +0000314 Producer,
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000315 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel823d8e92010-12-08 22:42:58 +0000316 // FIXME - Eliminate TheCU.
317 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000318}
319
Devang Patel65e99f22009-02-25 01:36:11 +0000320/// CreateType - Get the Basic type from the cache or create a new
Chris Lattner9c85ba32008-11-10 06:08:34 +0000321/// one if necessary.
Devang Patelf1d1d9a2010-11-01 16:52:40 +0000322llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000323 unsigned Encoding = 0;
Devang Patel05127ca2010-07-28 23:23:29 +0000324 const char *BTName = NULL;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000325 switch (BT->getKind()) {
John McCalle0a22d02011-10-18 21:02:43 +0000326#define BUILTIN_TYPE(Id, SingletonId)
327#define PLACEHOLDER_TYPE(Id, SingletonId) \
328 case BuiltinType::Id:
329#include "clang/AST/BuiltinTypes.def"
Devang Patele7566cf2011-09-12 18:50:21 +0000330 case BuiltinType::Dependent:
John McCalle0a22d02011-10-18 21:02:43 +0000331 llvm_unreachable("Unexpected builtin type");
Devang Patele7566cf2011-09-12 18:50:21 +0000332 case BuiltinType::NullPtr:
Devang Patelf60dca32011-09-14 23:14:14 +0000333 return DBuilder.
334 createNullPtrType(BT->getName(CGM.getContext().getLangOptions()));
Chris Lattner9c85ba32008-11-10 06:08:34 +0000335 case BuiltinType::Void:
336 return llvm::DIType();
Devang Patelc8972c62010-07-28 01:33:15 +0000337 case BuiltinType::ObjCClass:
Devang Patel16674e82011-02-22 18:56:36 +0000338 return DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000339 getOrCreateMainFile(), 0, 0, 0,
340 llvm::DIDescriptor::FlagFwdDecl,
341 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000342 case BuiltinType::ObjCId: {
343 // typedef struct objc_class *Class;
344 // typedef struct objc_object {
345 // Class isa;
346 // } *id;
347
348 llvm::DIType OCTy =
Devang Patel16674e82011-02-22 18:56:36 +0000349 DBuilder.createStructType(TheCU, "objc_class",
Devang Patel823d8e92010-12-08 22:42:58 +0000350 getOrCreateMainFile(), 0, 0, 0,
351 llvm::DIDescriptor::FlagFwdDecl,
352 llvm::DIArray());
Devang Patelc8972c62010-07-28 01:33:15 +0000353 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
354
Devang Patel16674e82011-02-22 18:56:36 +0000355 llvm::DIType ISATy = DBuilder.createPointerType(OCTy, Size);
Devang Patelc8972c62010-07-28 01:33:15 +0000356
Chris Lattner5f9e2722011-07-23 10:55:15 +0000357 SmallVector<llvm::Value *, 16> EltTys;
Devang Patelc8972c62010-07-28 01:33:15 +0000358 llvm::DIType FieldTy =
Devang Patel1d323e02011-06-24 22:00:59 +0000359 DBuilder.createMemberType(getOrCreateMainFile(), "isa",
360 getOrCreateMainFile(), 0, Size,
361 0, 0, 0, ISATy);
Devang Patelc8972c62010-07-28 01:33:15 +0000362 EltTys.push_back(FieldTy);
Jay Foadc556ef22011-04-24 10:11:03 +0000363 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patelc8972c62010-07-28 01:33:15 +0000364
Devang Patel16674e82011-02-22 18:56:36 +0000365 return DBuilder.createStructType(TheCU, "objc_object",
Devang Patel823d8e92010-12-08 22:42:58 +0000366 getOrCreateMainFile(),
367 0, 0, 0, 0, Elements);
Devang Patelc8972c62010-07-28 01:33:15 +0000368 }
Devang Patel6e108ce2011-02-09 03:15:05 +0000369 case BuiltinType::ObjCSel: {
Devang Patel16674e82011-02-22 18:56:36 +0000370 return DBuilder.createStructType(TheCU, "objc_selector",
Devang Patel6e108ce2011-02-09 03:15:05 +0000371 getOrCreateMainFile(), 0, 0, 0,
372 llvm::DIDescriptor::FlagFwdDecl,
373 llvm::DIArray());
374 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000375 case BuiltinType::UChar:
376 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
377 case BuiltinType::Char_S:
378 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patele8ee3f22011-09-12 17:11:58 +0000379 case BuiltinType::Char16:
380 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000381 case BuiltinType::UShort:
382 case BuiltinType::UInt:
Devang Patel31c79b42011-05-05 17:06:30 +0000383 case BuiltinType::UInt128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000384 case BuiltinType::ULong:
Devang Patel68f76b12011-09-10 00:44:49 +0000385 case BuiltinType::WChar_U:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000386 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
387 case BuiltinType::Short:
388 case BuiltinType::Int:
Devang Patel31c79b42011-05-05 17:06:30 +0000389 case BuiltinType::Int128:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000390 case BuiltinType::Long:
Devang Patel68f76b12011-09-10 00:44:49 +0000391 case BuiltinType::WChar_S:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000392 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
393 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000394 case BuiltinType::Half:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000395 case BuiltinType::Float:
Devang Patel7c173cb2009-10-12 22:28:31 +0000396 case BuiltinType::LongDouble:
Chris Lattner9c85ba32008-11-10 06:08:34 +0000397 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000398 }
Devang Patel05127ca2010-07-28 23:23:29 +0000399
400 switch (BT->getKind()) {
401 case BuiltinType::Long: BTName = "long int"; break;
402 case BuiltinType::LongLong: BTName = "long long int"; break;
403 case BuiltinType::ULong: BTName = "long unsigned int"; break;
404 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
405 default:
406 BTName = BT->getName(CGM.getContext().getLangOptions());
407 break;
408 }
Chris Lattner9c85ba32008-11-10 06:08:34 +0000409 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000410 uint64_t Size = CGM.getContext().getTypeSize(BT);
411 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patelca80a5f2009-10-20 19:55:01 +0000412 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000413 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patelca80a5f2009-10-20 19:55:01 +0000414 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +0000415}
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000416
Devang Patel344ff5d2010-12-09 00:25:29 +0000417llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattnerb7003772009-04-23 06:13:01 +0000418 // Bit size, align and offset of the type.
419 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
420 if (Ty->isComplexIntegerType())
421 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump1eb44332009-09-09 15:08:12 +0000422
Anders Carlsson20f12a22009-12-06 18:00:51 +0000423 uint64_t Size = CGM.getContext().getTypeSize(Ty);
424 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patelca80a5f2009-10-20 19:55:01 +0000425 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +0000426 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel823d8e92010-12-08 22:42:58 +0000427
Devang Patelca80a5f2009-10-20 19:55:01 +0000428 return DbgTy;
Chris Lattnerb7003772009-04-23 06:13:01 +0000429}
430
John McCalla1805292009-09-25 01:40:47 +0000431/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Guptaf58c27a2008-06-07 04:46:53 +0000432/// a new one if necessary.
Devang Patel17800552010-03-09 00:44:50 +0000433llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +0000434 QualifierCollector Qc;
435 const Type *T = Qc.strip(Ty);
436
437 // Ignore these qualifiers for now.
438 Qc.removeObjCGCAttr();
439 Qc.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +0000440 Qc.removeObjCLifetime();
John McCalla1805292009-09-25 01:40:47 +0000441
Chris Lattner9c85ba32008-11-10 06:08:34 +0000442 // We will create one Derived type for one qualifier and recurse to handle any
443 // additional ones.
Chris Lattner9c85ba32008-11-10 06:08:34 +0000444 unsigned Tag;
John McCalla1805292009-09-25 01:40:47 +0000445 if (Qc.hasConst()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000446 Tag = llvm::dwarf::DW_TAG_const_type;
John McCalla1805292009-09-25 01:40:47 +0000447 Qc.removeConst();
448 } else if (Qc.hasVolatile()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000449 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCalla1805292009-09-25 01:40:47 +0000450 Qc.removeVolatile();
451 } else if (Qc.hasRestrict()) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000452 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCalla1805292009-09-25 01:40:47 +0000453 Qc.removeRestrict();
454 } else {
455 assert(Qc.empty() && "Unknown type qualifier for debug info");
456 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000457 }
Mike Stump1eb44332009-09-09 15:08:12 +0000458
John McCall49f4e1c2010-12-10 11:01:00 +0000459 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCalla1805292009-09-25 01:40:47 +0000460
Daniel Dunbar3845f862008-10-31 03:54:29 +0000461 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
462 // CVR derived types.
Devang Patel16674e82011-02-22 18:56:36 +0000463 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel823d8e92010-12-08 22:42:58 +0000464
Devang Patelca80a5f2009-10-20 19:55:01 +0000465 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000466}
467
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000468llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000469 llvm::DIFile Unit) {
Devang Patelca80a5f2009-10-20 19:55:01 +0000470 llvm::DIType DbgTy =
Anders Carlssona031b352009-11-06 19:19:55 +0000471 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
472 Ty->getPointeeType(), Unit);
Devang Patelca80a5f2009-10-20 19:55:01 +0000473 return DbgTy;
Daniel Dunbar9df4bb32009-07-14 01:20:56 +0000474}
475
Chris Lattner9c85ba32008-11-10 06:08:34 +0000476llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000477 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +0000478 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
479 Ty->getPointeeType(), Unit);
480}
481
Eric Christopher5d613b52012-01-25 02:06:59 +0000482// Creates a forward declaration for a RecordDecl in the given context.
483llvm::DIType CGDebugInfo::createRecordFwdDecl(const RecordDecl *RD,
484 llvm::DIDescriptor Ctx) {
485
486 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
487 unsigned Line = getLineNumber(RD->getLocation());
488 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
489
490 if (CXXDecl)
491 return DBuilder.createClassType(Ctx, RD->getName(), DefUnit,
492 Line, 0, 0, 0,
493 llvm::DIType::FlagFwdDecl,
494 llvm::DIType(), llvm::DIArray());
495 else if (RD->isStruct())
496 return DBuilder.createStructType(Ctx, RD->getName(), DefUnit,
497 Line, 0, 0, llvm::DIType::FlagFwdDecl,
498 llvm::DIArray());
499 else if (RD->isUnion())
500 return DBuilder.createUnionType(Ctx, RD->getName(), DefUnit,
501 Line, 0, 0, llvm::DIType::FlagFwdDecl,
502 llvm::DIArray());
503 else
504 llvm_unreachable("Unknown RecordDecl type!");
505}
506
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000507// Walk up the context chain and create forward decls for record decls,
508// and normal descriptors for namespaces.
509llvm::DIDescriptor CGDebugInfo::createContextChain(const Decl *Context) {
510 if (!Context)
511 return TheCU;
512
513 // See if we already have the parent.
514 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
515 I = RegionMap.find(Context);
516 if (I != RegionMap.end())
517 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
518
519 // Check namespace.
520 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
521 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
522
523 if (const RecordDecl *RD = dyn_cast<RecordDecl>(Context)) {
524 if (!RD->isDependentType()) {
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000525 llvm::DIDescriptor FDContext =
526 createContextChain(cast<Decl>(RD->getDeclContext()));
Eric Christopher5d613b52012-01-25 02:06:59 +0000527 llvm::DIType Ty = createRecordFwdDecl(RD, FDContext);
Eric Christopher4ddca8a2012-01-20 22:10:15 +0000528
529 RegionMap[Context] = llvm::WeakVH(Ty);
530 return llvm::DIDescriptor(Ty);
531 }
532 }
533 return TheCU;
534}
535
Eric Christopheredc95922011-09-13 23:45:09 +0000536/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patelc69e1cf2010-09-30 19:05:55 +0000537/// then emit record's fwd if debug info size reduction is enabled.
538llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
539 llvm::DIFile Unit) {
540 if (!CGM.getCodeGenOpts().LimitDebugInfo)
541 return getOrCreateType(PointeeTy, Unit);
Devang Patel41422512011-10-24 23:15:17 +0000542
543 // Limit debug info for the pointee type.
544
Eric Christopher973bbb62011-12-16 23:40:18 +0000545 // If we have an existing type, use that, it's still smaller than creating
546 // a new type.
547 llvm::DIType Ty = getTypeOrNull(PointeeTy);
548 if (Ty.Verify()) return Ty;
549
Devang Patel41422512011-10-24 23:15:17 +0000550 // Handle qualifiers.
551 if (PointeeTy.hasLocalQualifiers())
552 return CreateQualifiedType(PointeeTy, Unit);
553
Devang Patelc69e1cf2010-09-30 19:05:55 +0000554 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
555 RecordDecl *RD = RTy->getDecl();
Devang Patelc69e1cf2010-09-30 19:05:55 +0000556 llvm::DIDescriptor FDContext =
John McCall8178df32011-02-22 22:38:33 +0000557 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Eric Christopher5d613b52012-01-25 02:06:59 +0000558 return createRecordFwdDecl(RD, FDContext);
Devang Patelc69e1cf2010-09-30 19:05:55 +0000559 }
560 return getOrCreateType(PointeeTy, Unit);
561
562}
563
Anders Carlssona031b352009-11-06 19:19:55 +0000564llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
565 const Type *Ty,
566 QualType PointeeTy,
Devang Patel17800552010-03-09 00:44:50 +0000567 llvm::DIFile Unit) {
Devang Patel823d8e92010-12-08 22:42:58 +0000568 if (Tag == llvm::dwarf::DW_TAG_reference_type)
Devang Patel16674e82011-02-22 18:56:36 +0000569 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
Devang Patel823d8e92010-12-08 22:42:58 +0000570
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000571 // Bit size, align and offset of the type.
Anders Carlssona031b352009-11-06 19:19:55 +0000572 // Size is always the size of a pointer. We can't use getTypeSize here
573 // because that does not return the correct value for references.
Peter Collingbourne207f4d82011-03-18 22:38:29 +0000574 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000575 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson20f12a22009-12-06 18:00:51 +0000576 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Nick Lewycky7480d962011-11-10 00:34:02 +0000578 return DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit),
579 Size, Align);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000580}
581
Mike Stump9bc093c2009-05-14 02:03:51 +0000582llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000583 llvm::DIFile Unit) {
Mike Stump9bc093c2009-05-14 02:03:51 +0000584 if (BlockLiteralGenericSet)
585 return BlockLiteralGeneric;
586
Chris Lattner5f9e2722011-07-23 10:55:15 +0000587 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump9bc093c2009-05-14 02:03:51 +0000588 llvm::DIType FieldTy;
Mike Stump9bc093c2009-05-14 02:03:51 +0000589 QualType FType;
590 uint64_t FieldSize, FieldOffset;
591 unsigned FieldAlign;
Mike Stump9bc093c2009-05-14 02:03:51 +0000592 llvm::DIArray Elements;
593 llvm::DIType EltTy, DescTy;
594
595 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000596 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000597 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
598 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000599
Jay Foadc556ef22011-04-24 10:11:03 +0000600 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000601 EltTys.clear();
602
Devang Patele2472482010-09-29 21:05:52 +0000603 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patel8ab870d2010-05-12 23:46:38 +0000604 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump3d363c52009-10-02 02:30:50 +0000605
Devang Patel16674e82011-02-22 18:56:36 +0000606 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel823d8e92010-12-08 22:42:58 +0000607 Unit, LineNo, FieldOffset, 0,
608 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000609
Mike Stump9bc093c2009-05-14 02:03:51 +0000610 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +0000611 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Devang Patel16674e82011-02-22 18:56:36 +0000613 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000614
615 FieldOffset = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000616 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000617 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson20f12a22009-12-06 18:00:51 +0000618 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000619 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
620 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramerd3651cc2010-04-24 20:26:20 +0000621 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +0000622 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump9bc093c2009-05-14 02:03:51 +0000623
Anders Carlsson20f12a22009-12-06 18:00:51 +0000624 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000625 FieldTy = DescTy;
Anders Carlsson20f12a22009-12-06 18:00:51 +0000626 FieldSize = CGM.getContext().getTypeSize(Ty);
627 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel1d323e02011-06-24 22:00:59 +0000628 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel823d8e92010-12-08 22:42:58 +0000629 LineNo, FieldSize, FieldAlign,
630 FieldOffset, 0, FieldTy);
Mike Stump9bc093c2009-05-14 02:03:51 +0000631 EltTys.push_back(FieldTy);
632
633 FieldOffset += FieldSize;
Jay Foadc556ef22011-04-24 10:11:03 +0000634 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump9bc093c2009-05-14 02:03:51 +0000635
Devang Patel16674e82011-02-22 18:56:36 +0000636 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel823d8e92010-12-08 22:42:58 +0000637 Unit, LineNo, FieldOffset, 0,
638 Flags, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +0000639
Mike Stump9bc093c2009-05-14 02:03:51 +0000640 BlockLiteralGenericSet = true;
Devang Patel16674e82011-02-22 18:56:36 +0000641 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump9bc093c2009-05-14 02:03:51 +0000642 return BlockLiteralGeneric;
643}
644
Nick Lewycky7480d962011-11-10 00:34:02 +0000645llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty, llvm::DIFile Unit) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000646 // Typedefs are derived from some other type. If we have a typedef of a
647 // typedef, make sure to emit the whole chain.
648 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel823d8e92010-12-08 22:42:58 +0000649 if (!Src.Verify())
650 return llvm::DIType();
Chris Lattner9c85ba32008-11-10 06:08:34 +0000651 // We don't set size information, but do specify where the typedef was
652 // declared.
Devang Patel8ab870d2010-05-12 23:46:38 +0000653 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelc4903122011-06-03 17:23:47 +0000654 const TypedefNameDecl *TyDecl = Ty->getDecl();
Nick Lewycky7480d962011-11-10 00:34:02 +0000655 llvm::DIDescriptor TypedefContext =
Devang Patelc4903122011-06-03 17:23:47 +0000656 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
657
658 return
Nick Lewycky7480d962011-11-10 00:34:02 +0000659 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000660}
661
Chris Lattner9c85ba32008-11-10 06:08:34 +0000662llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel17800552010-03-09 00:44:50 +0000663 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000664 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000665
Chris Lattner9c85ba32008-11-10 06:08:34 +0000666 // Add the result type at least.
667 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Chris Lattner9c85ba32008-11-10 06:08:34 +0000669 // Set up remainder of arguments if there is a prototype.
670 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patelaf164bb2010-10-06 20:51:45 +0000671 if (isa<FunctionNoProtoType>(Ty))
Devang Patel16674e82011-02-22 18:56:36 +0000672 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Devang Patelaf164bb2010-10-06 20:51:45 +0000673 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Chris Lattner9c85ba32008-11-10 06:08:34 +0000674 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
675 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000676 }
677
Jay Foadc556ef22011-04-24 10:11:03 +0000678 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Mike Stump1eb44332009-09-09 15:08:12 +0000679
Devang Patel16674e82011-02-22 18:56:36 +0000680 llvm::DIType DbgTy = DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patelca80a5f2009-10-20 19:55:01 +0000681 return DbgTy;
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +0000682}
683
Eric Christopher6faa5542012-01-26 01:57:13 +0000684
685void CGDebugInfo::
686CollectRecordStaticVars(const RecordDecl *RD, llvm::DIType FwdDecl) {
687
688 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
689 I != E; ++I)
690 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
691 if (V->getInit()) {
692 const APValue *Value = V->evaluateValue();
693 if (Value && Value->isInt()) {
694 llvm::ConstantInt *CI
695 = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
696
697 // Create the descriptor for static variable.
698 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
699 StringRef VName = V->getName();
700 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
701 // Do not use DIGlobalVariable for enums.
702 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
703 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
704 getLineNumber(V->getLocation()),
705 VTy, true, CI);
706 }
707 }
708 }
709 }
710}
711
Chris Lattner5f9e2722011-07-23 10:55:15 +0000712llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall8178df32011-02-22 22:38:33 +0000713 QualType type,
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000714 uint64_t sizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000715 SourceLocation loc,
716 AccessSpecifier AS,
717 uint64_t offsetInBits,
Devang Patel1d323e02011-06-24 22:00:59 +0000718 llvm::DIFile tunit,
719 llvm::DIDescriptor scope) {
John McCall8178df32011-02-22 22:38:33 +0000720 llvm::DIType debugType = getOrCreateType(type, tunit);
721
722 // Get the location for the field.
723 llvm::DIFile file = getOrCreateFile(loc);
724 unsigned line = getLineNumber(loc);
725
726 uint64_t sizeInBits = 0;
727 unsigned alignInBits = 0;
728 if (!type->isIncompleteArrayType()) {
729 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
730
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000731 if (sizeInBitsOverride)
732 sizeInBits = sizeInBitsOverride;
John McCall8178df32011-02-22 22:38:33 +0000733 }
734
735 unsigned flags = 0;
736 if (AS == clang::AS_private)
737 flags |= llvm::DIDescriptor::FlagPrivate;
738 else if (AS == clang::AS_protected)
739 flags |= llvm::DIDescriptor::FlagProtected;
740
Devang Patel1d323e02011-06-24 22:00:59 +0000741 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
742 alignInBits, offsetInBits, flags, debugType);
John McCall8178df32011-02-22 22:38:33 +0000743}
744
Devang Patel428deb52010-01-19 00:00:59 +0000745/// CollectRecordFields - A helper function to collect debug info for
746/// record fields. This is used while creating debug info entry for a Record.
747void CGDebugInfo::
John McCall8178df32011-02-22 22:38:33 +0000748CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000749 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel1d323e02011-06-24 22:00:59 +0000750 llvm::DIType RecordTy) {
John McCall8178df32011-02-22 22:38:33 +0000751 unsigned fieldNo = 0;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000752 const FieldDecl *LastFD = 0;
753 bool IsMsStruct = record->hasAttr<MsStructAttr>();
754
John McCall8178df32011-02-22 22:38:33 +0000755 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
756 for (RecordDecl::field_iterator I = record->field_begin(),
757 E = record->field_end();
758 I != E; ++I, ++fieldNo) {
759 FieldDecl *field = *I;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000760 if (IsMsStruct) {
761 // Zero-length bitfields following non-bitfield members are ignored
Fariborz Jahanian855a8e72011-05-03 20:21:04 +0000762 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000763 --fieldNo;
764 continue;
765 }
766 LastFD = field;
767 }
Devang Patel428deb52010-01-19 00:00:59 +0000768
Chris Lattner5f9e2722011-07-23 10:55:15 +0000769 StringRef name = field->getName();
John McCall8178df32011-02-22 22:38:33 +0000770 QualType type = field->getType();
771
772 // Ignore unnamed fields unless they're anonymous structs/unions.
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000773 if (name.empty() && !type->isRecordType()) {
774 LastFD = field;
Devang Patel428deb52010-01-19 00:00:59 +0000775 continue;
Fariborz Jahanianfbc3cc62011-04-28 23:43:23 +0000776 }
Devang Patel428deb52010-01-19 00:00:59 +0000777
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000778 uint64_t SizeInBitsOverride = 0;
779 if (field->isBitField()) {
780 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
781 assert(SizeInBitsOverride && "found named 0-width bitfield");
782 }
783
John McCall8178df32011-02-22 22:38:33 +0000784 llvm::DIType fieldType
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000785 = createFieldType(name, type, SizeInBitsOverride,
John McCall8178df32011-02-22 22:38:33 +0000786 field->getLocation(), field->getAccess(),
Devang Patel1d323e02011-06-24 22:00:59 +0000787 layout.getFieldOffset(fieldNo), tunit, RecordTy);
Devang Patel428deb52010-01-19 00:00:59 +0000788
John McCall8178df32011-02-22 22:38:33 +0000789 elements.push_back(fieldType);
Devang Patel428deb52010-01-19 00:00:59 +0000790 }
791}
792
Devang Patela6da1922010-01-28 00:28:01 +0000793/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
794/// function type is not updated to include implicit "this" pointer. Use this
795/// routine to get a method type which includes "this" pointer.
796llvm::DIType
797CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000798 llvm::DIFile Unit) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +0000799 llvm::DIType FnTy
800 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
801 0),
802 Unit);
Devang Pateld774d1e2010-01-28 21:43:50 +0000803
Devang Patela6da1922010-01-28 00:28:01 +0000804 // Add "this" pointer.
Devang Patelab699792010-05-07 18:12:35 +0000805 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patela6da1922010-01-28 00:28:01 +0000806 assert (Args.getNumElements() && "Invalid number of arguments!");
807
Chris Lattner5f9e2722011-07-23 10:55:15 +0000808 SmallVector<llvm::Value *, 16> Elts;
Devang Patela6da1922010-01-28 00:28:01 +0000809
810 // First element is always return type. For 'void' functions it is NULL.
811 Elts.push_back(Args.getElement(0));
812
Eric Christopher2121cda2011-09-14 01:10:50 +0000813 if (!Method->isStatic()) {
814 // "this" pointer is always first argument.
815 QualType ThisPtr = Method->getThisType(CGM.getContext());
Devang Patelef8857d2011-10-28 21:12:13 +0000816
817 const CXXRecordDecl *RD = Method->getParent();
818 if (isa<ClassTemplateSpecializationDecl>(RD)) {
819 // Create pointer type directly in this case.
820 const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
821 QualType PointeeTy = ThisPtrTy->getPointeeType();
822 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
823 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
824 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000825 llvm::DIType PointeeType = getOrCreateType(PointeeTy, Unit);
Devang Patelef8857d2011-10-28 21:12:13 +0000826 llvm::DIType ThisPtrType =
827 DBuilder.createArtificialType
828 (DBuilder.createPointerType(PointeeType, Size, Align));
829 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
830 Elts.push_back(ThisPtrType);
831 } else {
832 llvm::DIType ThisPtrType =
833 DBuilder.createArtificialType(getOrCreateType(ThisPtr, Unit));
834 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
835 Elts.push_back(ThisPtrType);
836 }
Eric Christopher2121cda2011-09-14 01:10:50 +0000837 }
Devang Patela6da1922010-01-28 00:28:01 +0000838
839 // Copy rest of the arguments.
840 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
841 Elts.push_back(Args.getElement(i));
842
Jay Foadc556ef22011-04-24 10:11:03 +0000843 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patela6da1922010-01-28 00:28:01 +0000844
Devang Patel16674e82011-02-22 18:56:36 +0000845 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patela6da1922010-01-28 00:28:01 +0000846}
847
Devang Patel58faf202010-10-22 17:11:50 +0000848/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
849/// inside a function.
850static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
Nick Lewycky7480d962011-11-10 00:34:02 +0000851 if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000852 return isFunctionLocalClass(NRD);
Nick Lewycky7480d962011-11-10 00:34:02 +0000853 if (isa<FunctionDecl>(RD->getDeclContext()))
Devang Patel58faf202010-10-22 17:11:50 +0000854 return true;
855 return false;
Devang Patel58faf202010-10-22 17:11:50 +0000856}
Nick Lewyckyd4c100e2011-11-09 04:25:21 +0000857
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000858/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
859/// a single member function GlobalDecl.
860llvm::DISubprogram
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000861CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel17800552010-03-09 00:44:50 +0000862 llvm::DIFile Unit,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000863 llvm::DIType RecordTy) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000864 bool IsCtorOrDtor =
865 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
866
Chris Lattner5f9e2722011-07-23 10:55:15 +0000867 StringRef MethodName = getFunctionName(Method);
Devang Patela6da1922010-01-28 00:28:01 +0000868 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000869
870 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
871 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000872 StringRef MethodLinkageName;
Devang Patel58faf202010-10-22 17:11:50 +0000873 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlsson9a20d552010-06-22 16:16:50 +0000874 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000875
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000876 // Get the location for the method.
Devang Patel8ab870d2010-05-12 23:46:38 +0000877 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
878 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000879
880 // Collect virtual method info.
881 llvm::DIType ContainingType;
882 unsigned Virtuality = 0;
883 unsigned VIndex = 0;
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000884
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000885 if (Method->isVirtual()) {
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000886 if (Method->isPure())
887 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
888 else
889 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
890
891 // It doesn't make sense to give a virtual destructor a vtable index,
892 // since a single destructor has two entries in the vtable.
893 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000894 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000895 ContainingType = RecordTy;
896 }
897
Devang Patele2472482010-09-29 21:05:52 +0000898 unsigned Flags = 0;
899 if (Method->isImplicit())
900 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel10a7a6a2010-09-29 21:46:16 +0000901 AccessSpecifier Access = Method->getAccess();
902 if (Access == clang::AS_private)
903 Flags |= llvm::DIDescriptor::FlagPrivate;
904 else if (Access == clang::AS_protected)
905 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld78a0192010-10-01 23:32:17 +0000906 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
907 if (CXXC->isExplicit())
908 Flags |= llvm::DIDescriptor::FlagExplicit;
909 } else if (const CXXConversionDecl *CXXC =
910 dyn_cast<CXXConversionDecl>(Method)) {
911 if (CXXC->isExplicit())
912 Flags |= llvm::DIDescriptor::FlagExplicit;
913 }
Devang Patel3951e712010-10-07 22:03:49 +0000914 if (Method->hasPrototype())
915 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Pateld78a0192010-10-01 23:32:17 +0000916
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000917 llvm::DISubprogram SP =
Nick Lewycky7803ec82011-09-01 21:49:51 +0000918 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +0000919 MethodDefUnit, MethodLine,
920 MethodTy, /*isLocalToUnit=*/false,
921 /* isDefinition=*/ false,
922 Virtuality, VIndex, ContainingType,
923 Flags, CGM.getLangOptions().Optimize);
Anders Carlsson4433f1c2010-01-26 05:19:50 +0000924
Eric Christopherdeae6a82011-11-17 23:45:00 +0000925 SPCache[Method->getCanonicalDecl()] = llvm::WeakVH(SP);
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000926
927 return SP;
928}
929
Devang Patel4125fd22010-01-19 01:54:44 +0000930/// CollectCXXMemberFunctions - A helper function to collect debug info for
Eric Christopher7c9b2fd2012-01-12 01:26:51 +0000931/// C++ member functions. This is used while creating debug info entry for
Devang Patel4125fd22010-01-19 01:54:44 +0000932/// a Record.
933void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000934CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000935 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000936 llvm::DIType RecordTy) {
Devang Patel239cec62010-02-01 21:39:52 +0000937 for(CXXRecordDecl::method_iterator I = RD->method_begin(),
938 E = RD->method_end(); I != E; ++I) {
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000939 const CXXMethodDecl *Method = *I;
Anders Carlssonbea9b232010-01-26 04:40:11 +0000940
Devang Pateld5322da2010-02-09 19:09:28 +0000941 if (Method->isImplicit() && !Method->isUsed())
Anders Carlssonbea9b232010-01-26 04:40:11 +0000942 continue;
Devang Patel4125fd22010-01-19 01:54:44 +0000943
Anders Carlssond6f9a0d2010-01-26 04:49:33 +0000944 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Devang Patel4125fd22010-01-19 01:54:44 +0000945 }
946}
947
Devang Patel2ed8f002010-08-27 17:47:47 +0000948/// CollectCXXFriends - A helper function to collect debug info for
949/// C++ base classes. This is used while creating debug info entry for
950/// a Record.
951void CGDebugInfo::
952CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000953 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel2ed8f002010-08-27 17:47:47 +0000954 llvm::DIType RecordTy) {
Eric Christopher121c67d2012-01-12 01:26:58 +0000955 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
Devang Patel2ed8f002010-08-27 17:47:47 +0000956 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky7803ec82011-09-01 21:49:51 +0000957 if ((*BI)->isUnsupportedFriend())
958 continue;
Devang Patel823d8e92010-12-08 22:42:58 +0000959 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Patel16674e82011-02-22 18:56:36 +0000960 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +0000961 getOrCreateType(TInfo->getType(),
962 Unit)));
Devang Patel2ed8f002010-08-27 17:47:47 +0000963 }
964}
965
Devang Patela245c5b2010-01-25 23:32:18 +0000966/// CollectCXXBases - A helper function to collect debug info for
967/// C++ base classes. This is used while creating debug info entry for
968/// a Record.
969void CGDebugInfo::
Devang Patel17800552010-03-09 00:44:50 +0000970CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000971 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman4cac5b42010-08-20 22:02:57 +0000972 llvm::DIType RecordTy) {
Devang Patela245c5b2010-01-25 23:32:18 +0000973
Devang Patel239cec62010-02-01 21:39:52 +0000974 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
975 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
976 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patelca7daed2010-01-28 21:54:15 +0000977 unsigned BFlags = 0;
Devang Patel62c117d2011-04-04 20:36:06 +0000978 uint64_t BaseOffset;
Devang Patelca7daed2010-01-28 21:54:15 +0000979
980 const CXXRecordDecl *Base =
981 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
982
983 if (BI->isVirtual()) {
Anders Carlssonbba16072010-03-11 07:15:17 +0000984 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Pateld5322da2010-02-09 19:09:28 +0000985 // expression where it expects +ve number.
Ken Dyck14c65ca2011-04-07 12:37:09 +0000986 BaseOffset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000987 0 - CGM.getVTableContext()
988 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Patele2472482010-09-29 21:05:52 +0000989 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patelca7daed2010-01-28 21:54:15 +0000990 } else
Devang Patel62c117d2011-04-04 20:36:06 +0000991 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Ken Dyck14c65ca2011-04-07 12:37:09 +0000992 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
993 // BI->isVirtual() and bits when not.
Devang Patelca7daed2010-01-28 21:54:15 +0000994
995 AccessSpecifier Access = BI->getAccessSpecifier();
996 if (Access == clang::AS_private)
Devang Patele2472482010-09-29 21:05:52 +0000997 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patelca7daed2010-01-28 21:54:15 +0000998 else if (Access == clang::AS_protected)
Devang Patele2472482010-09-29 21:05:52 +0000999 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patelca7daed2010-01-28 21:54:15 +00001000
Devang Patel823d8e92010-12-08 22:42:58 +00001001 llvm::DIType DTy =
Devang Patel16674e82011-02-22 18:56:36 +00001002 DBuilder.createInheritance(RecordTy,
Devang Patel823d8e92010-12-08 22:42:58 +00001003 getOrCreateType(BI->getType(), Unit),
Devang Patel62c117d2011-04-04 20:36:06 +00001004 BaseOffset, BFlags);
Devang Patelca7daed2010-01-28 21:54:15 +00001005 EltTys.push_back(DTy);
1006 }
Devang Patela245c5b2010-01-25 23:32:18 +00001007}
1008
Devang Patel5ecb1df2011-04-05 22:54:11 +00001009/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel9c1714b2011-04-05 17:30:54 +00001010llvm::DIArray CGDebugInfo::
Devang Patel5ecb1df2011-04-05 22:54:11 +00001011CollectTemplateParams(const TemplateParameterList *TPList,
1012 const TemplateArgumentList &TAList,
1013 llvm::DIFile Unit) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001014 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patelc5ce2972011-04-05 20:15:06 +00001015 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
1016 const TemplateArgument &TA = TAList[i];
Devang Patel5ecb1df2011-04-05 22:54:11 +00001017 const NamedDecl *ND = TPList->getParam(i);
Devang Patel9c1714b2011-04-05 17:30:54 +00001018 if (TA.getKind() == TemplateArgument::Type) {
1019 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
1020 llvm::DITemplateTypeParameter TTP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001021 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel9c1714b2011-04-05 17:30:54 +00001022 TemplateParams.push_back(TTP);
1023 } else if (TA.getKind() == TemplateArgument::Integral) {
1024 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel9c1714b2011-04-05 17:30:54 +00001025 llvm::DITemplateValueParameter TVP =
Devang Patelc5ce2972011-04-05 20:15:06 +00001026 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
1027 TA.getAsIntegral()->getZExtValue());
Devang Patel9c1714b2011-04-05 17:30:54 +00001028 TemplateParams.push_back(TVP);
1029 }
1030 }
Jay Foadc556ef22011-04-24 10:11:03 +00001031 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel9c1714b2011-04-05 17:30:54 +00001032}
1033
Devang Patel5ecb1df2011-04-05 22:54:11 +00001034/// CollectFunctionTemplateParams - A helper function to collect debug
1035/// info for function template parameters.
1036llvm::DIArray CGDebugInfo::
1037CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherab5278e2011-10-11 23:00:51 +00001038 if (FD->getTemplatedKind() ==
1039 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patel5ecb1df2011-04-05 22:54:11 +00001040 const TemplateParameterList *TList =
Eric Christopherab5278e2011-10-11 23:00:51 +00001041 FD->getTemplateSpecializationInfo()->getTemplate()
1042 ->getTemplateParameters();
Devang Patel5ecb1df2011-04-05 22:54:11 +00001043 return
1044 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
1045 }
1046 return llvm::DIArray();
1047}
1048
1049/// CollectCXXTemplateParams - A helper function to collect debug info for
1050/// template parameters.
1051llvm::DIArray CGDebugInfo::
1052CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
1053 llvm::DIFile Unit) {
1054 llvm::PointerUnion<ClassTemplateDecl *,
1055 ClassTemplatePartialSpecializationDecl *>
1056 PU = TSpecial->getSpecializedTemplateOrPartial();
1057
1058 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
1059 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
1060 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
1061 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
1062 return CollectTemplateParams(TPList, TAList, Unit);
1063}
1064
Devang Patel4ce3f202010-01-28 18:11:52 +00001065/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel17800552010-03-09 00:44:50 +00001066llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Patel0804e6e2010-03-08 20:53:17 +00001067 if (VTablePtrType.isValid())
Devang Patel4ce3f202010-01-28 18:11:52 +00001068 return VTablePtrType;
1069
1070 ASTContext &Context = CGM.getContext();
1071
1072 /* Function type */
Devang Patel823d8e92010-12-08 22:42:58 +00001073 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foadc556ef22011-04-24 10:11:03 +00001074 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Patel16674e82011-02-22 18:56:36 +00001075 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel4ce3f202010-01-28 18:11:52 +00001076 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Patel16674e82011-02-22 18:56:36 +00001077 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001078 "__vtbl_ptr_type");
Devang Patel16674e82011-02-22 18:56:36 +00001079 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel4ce3f202010-01-28 18:11:52 +00001080 return VTablePtrType;
1081}
1082
Anders Carlsson046c2942010-04-17 20:15:18 +00001083/// getVTableName - Get vtable name for the given Class.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001084StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Eric Christopher51cb75a2012-01-25 21:47:09 +00001085 // Construct gdb compatible name name.
Devang Patel239cec62010-02-01 21:39:52 +00001086 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel4ce3f202010-01-28 18:11:52 +00001087
1088 // Copy this name on the side and use its reference.
Devang Patel89f05f82010-01-28 18:21:00 +00001089 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001090 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001091 return StringRef(StrPtr, Name.length());
Devang Patel4ce3f202010-01-28 18:11:52 +00001092}
1093
1094
Anders Carlsson046c2942010-04-17 20:15:18 +00001095/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel4ce3f202010-01-28 18:11:52 +00001096/// debug info entry in EltTys vector.
1097void CGDebugInfo::
Anders Carlsson046c2942010-04-17 20:15:18 +00001098CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001099 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel239cec62010-02-01 21:39:52 +00001100 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel4ce3f202010-01-28 18:11:52 +00001101
1102 // If there is a primary base then it will hold vtable info.
1103 if (RL.getPrimaryBase())
1104 return;
1105
1106 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel239cec62010-02-01 21:39:52 +00001107 if (!RD->isDynamicClass())
Devang Patel4ce3f202010-01-28 18:11:52 +00001108 return;
1109
1110 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1111 llvm::DIType VPTR
Devang Patel1d323e02011-06-24 22:00:59 +00001112 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00001113 0, Size, 0, 0, 0,
1114 getOrCreateVTablePtrType(Unit));
Devang Patel4ce3f202010-01-28 18:11:52 +00001115 EltTys.push_back(VPTR);
1116}
1117
Devang Patelc69e1cf2010-09-30 19:05:55 +00001118/// getOrCreateRecordType - Emit record type's standalone debug info.
1119llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1120 SourceLocation Loc) {
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001121 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patel16674e82011-02-22 18:56:36 +00001122 DBuilder.retainType(T);
Devang Patelc69e1cf2010-09-30 19:05:55 +00001123 return T;
1124}
1125
Devang Patel65e99f22009-02-25 01:36:11 +00001126/// CreateType - get structure or union type.
Devang Patel31f7d022011-01-17 22:23:07 +00001127llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001128 RecordDecl *RD = Ty->getDecl();
Devang Patel31f7d022011-01-17 22:23:07 +00001129 llvm::DIFile Unit = getOrCreateFile(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001130
Chris Lattner9c85ba32008-11-10 06:08:34 +00001131 // Get overall information about the record type for the debug info.
Devang Patel8ab870d2010-05-12 23:46:38 +00001132 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1133 unsigned Line = getLineNumber(RD->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001134
Chris Lattner9c85ba32008-11-10 06:08:34 +00001135 // Records and classes and unions can all be recursive. To handle them, we
1136 // first generate a debug descriptor for the struct as a forward declaration.
1137 // Then (if it is a definition) we go through and get debug info for all of
1138 // its members. Finally, we create a descriptor for the complete type (which
1139 // may refer to the forward decl if the struct is recursive) and replace all
1140 // uses of the forward declaration with the final definition.
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001141
1142 llvm::DIDescriptor FDContext;
1143 if (CGM.getCodeGenOpts().LimitDebugInfo)
1144 FDContext = createContextChain(cast<Decl>(RD->getDeclContext()));
1145 else
1146 FDContext = getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Devang Patel0b897992010-07-08 19:56:29 +00001147
1148 // If this is just a forward declaration, construct an appropriately
1149 // marked node and just return it.
1150 if (!RD->getDefinition()) {
Devang Patel823d8e92010-12-08 22:42:58 +00001151 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001152 DBuilder.createStructType(FDContext, RD->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001153 DefUnit, Line, 0, 0,
1154 llvm::DIDescriptor::FlagFwdDecl,
1155 llvm::DIArray());
Devang Patel0b897992010-07-08 19:56:29 +00001156
1157 return FwdDecl;
1158 }
Devang Pateld0f251b2010-01-20 23:56:40 +00001159
Devang Patel16674e82011-02-22 18:56:36 +00001160 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001161
Devang Patelab699792010-05-07 18:12:35 +00001162 llvm::MDNode *MN = FwdDecl;
1163 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001164 // Otherwise, insert it into the TypeCache so that recursive uses will find
1165 // it.
Devang Patelab699792010-05-07 18:12:35 +00001166 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001167 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001168 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001169 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001170
1171 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001172 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001173
Eric Christopher027cb302012-01-26 01:57:29 +00001174 // Collect static variables with initializers.
1175 CollectRecordStaticVars(RD, FwdDecl);
1176 CollectRecordFields(RD, Unit, EltTys, FwdDecl);
1177
1178 // Collect C++ information.
Devang Pateld6c5a262010-02-01 21:52:22 +00001179 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Eric Christopher027cb302012-01-26 01:57:29 +00001180 llvm::DIArray TParamsArray;
Devang Patel3064afe2010-01-28 21:41:35 +00001181 if (CXXDecl) {
1182 CollectCXXBases(CXXDecl, Unit, EltTys, FwdDecl);
Anders Carlsson046c2942010-04-17 20:15:18 +00001183 CollectVTableInfo(CXXDecl, Unit, EltTys);
Devang Patel4125fd22010-01-19 01:54:44 +00001184 CollectCXXMemberFunctions(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel2ed8f002010-08-27 17:47:47 +00001185 CollectCXXFriends(CXXDecl, Unit, EltTys, FwdDecl);
Devang Patel9c1714b2011-04-05 17:30:54 +00001186 if (const ClassTemplateSpecializationDecl *TSpecial
1187 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
1188 TParamsArray = CollectCXXTemplateParams(TSpecial, Unit);
Devang Patel823d8e92010-12-08 22:42:58 +00001189 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001190
Eric Christopheraa2164c2011-09-29 00:00:45 +00001191 LexicalBlockStack.pop_back();
Devang Patel823d8e92010-12-08 22:42:58 +00001192 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1193 RegionMap.find(Ty->getDecl());
1194 if (RI != RegionMap.end())
1195 RegionMap.erase(RI);
1196
1197 llvm::DIDescriptor RDContext =
John McCall8178df32011-02-22 22:38:33 +00001198 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Chris Lattner5f9e2722011-07-23 10:55:15 +00001199 StringRef RDName = RD->getName();
Devang Patel823d8e92010-12-08 22:42:58 +00001200 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1201 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Jay Foadc556ef22011-04-24 10:11:03 +00001202 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel823d8e92010-12-08 22:42:58 +00001203 llvm::MDNode *RealDecl = NULL;
1204
Devang Patel5c5b5872011-02-28 22:32:45 +00001205 if (RD->isUnion())
Devang Patel16674e82011-02-22 18:56:36 +00001206 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
Devang Patel5c5b5872011-02-28 22:32:45 +00001207 Size, Align, 0, Elements);
1208 else if (CXXDecl) {
Devang Patel823d8e92010-12-08 22:42:58 +00001209 RDName = getClassName(RD);
1210 // A class's primary base or the class itself contains the vtable.
1211 llvm::MDNode *ContainingType = NULL;
Devang Pateld6c5a262010-02-01 21:52:22 +00001212 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel5bc794f2010-10-14 22:59:23 +00001213 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1214 // Seek non virtual primary base root.
1215 while (1) {
1216 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1217 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
Anders Carlssonc9e814b2010-11-24 23:12:57 +00001218 if (PBT && !BRL.isPrimaryBaseVirtual())
Devang Patel5bc794f2010-10-14 22:59:23 +00001219 PBase = PBT;
1220 else
1221 break;
1222 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001223 ContainingType =
Devang Patelab699792010-05-07 18:12:35 +00001224 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), Unit);
Devang Patel5bc794f2010-10-14 22:59:23 +00001225 }
Devang Patel0ac8f312010-01-28 00:54:21 +00001226 else if (CXXDecl->isDynamicClass())
Devang Patelab699792010-05-07 18:12:35 +00001227 ContainingType = FwdDecl;
Devang Patel9c1714b2011-04-05 17:30:54 +00001228
Eric Christopher435e1062011-12-16 23:40:14 +00001229 // FIXME: This could be a struct type giving a default visibility different
1230 // than C++ class type, but needs llvm metadata changes first.
1231 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
1232 Size, Align, 0, 0, llvm::DIType(),
1233 Elements, ContainingType,
1234 TParamsArray);
1235 } else
Devang Patel5c5b5872011-02-28 22:32:45 +00001236 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1237 Size, Align, 0, Elements);
Mike Stump1eb44332009-09-09 15:08:12 +00001238
Chris Lattner9c85ba32008-11-10 06:08:34 +00001239 // Now that we have a real decl for the struct, replace anything using the
1240 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001241 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Eric Christopher4ddca8a2012-01-20 22:10:15 +00001242 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
Devang Patel823d8e92010-12-08 22:42:58 +00001243 return llvm::DIType(RealDecl);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001244}
1245
John McCallc12c5bb2010-05-15 11:32:37 +00001246/// CreateType - get objective-c object type.
1247llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1248 llvm::DIFile Unit) {
1249 // Ignore protocols.
1250 return getOrCreateType(Ty->getBaseType(), Unit);
1251}
1252
Devang Patel9ca36b62009-02-26 21:10:26 +00001253/// CreateType - get objective-c interface type.
1254llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001255 llvm::DIFile Unit) {
Devang Pateld6c5a262010-02-01 21:52:22 +00001256 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregora6a28972010-11-30 06:38:09 +00001257 if (!ID)
1258 return llvm::DIType();
Devang Patel9ca36b62009-02-26 21:10:26 +00001259
1260 // Get overall information about the record type for the debug info.
Devang Patel17800552010-03-09 00:44:50 +00001261 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00001262 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel17800552010-03-09 00:44:50 +00001263 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerac7c8142009-05-02 01:13:16 +00001264
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001265 // If this is just a forward declaration return a special forward-declaration
1266 // debug type since we won't be able to lay out the entire type.
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001267 ObjCInterfaceDecl *Def = ID->getDefinition();
1268 if (!Def) {
Devang Patel823d8e92010-12-08 22:42:58 +00001269 llvm::DIType FwdDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001270 DBuilder.createStructType(Unit, ID->getName(),
Eric Christopherd5a3b782011-11-29 23:57:40 +00001271 DefUnit, Line, 0, 0,
1272 llvm::DIDescriptor::FlagFwdDecl,
Devang Patel823d8e92010-12-08 22:42:58 +00001273 llvm::DIArray(), RuntimeLang);
Dan Gohman45f7c782010-08-23 21:15:56 +00001274 return FwdDecl;
1275 }
Douglas Gregor7c1f1f12011-12-15 23:32:29 +00001276 ID = Def;
Dan Gohman45f7c782010-08-23 21:15:56 +00001277
Eric Christopher1cd1d742011-10-06 00:30:52 +00001278 // To handle a recursive interface, we first generate a debug descriptor
1279 // for the struct as a forward declaration. Then (if it is a definition)
1280 // we go through and get debug info for all of its members. Finally, we
1281 // create a descriptor for the complete type (which may refer to the
1282 // forward decl if the struct is recursive) and replace all uses of the
1283 // forward declaration with the final definition.
Devang Patel16674e82011-02-22 18:56:36 +00001284 llvm::DIType FwdDecl = DBuilder.createTemporaryType(DefUnit);
Mike Stump1eb44332009-09-09 15:08:12 +00001285
Devang Patelab699792010-05-07 18:12:35 +00001286 llvm::MDNode *MN = FwdDecl;
1287 llvm::TrackingVH<llvm::MDNode> FwdDeclNode = MN;
Devang Patel9ca36b62009-02-26 21:10:26 +00001288 // Otherwise, insert it into the TypeCache so that recursive uses will find
1289 // it.
Devang Patelab699792010-05-07 18:12:35 +00001290 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
Devang Patele4c1ea02010-03-11 20:01:48 +00001291 // Push the struct on region stack.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001292 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelab699792010-05-07 18:12:35 +00001293 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Devang Patel9ca36b62009-02-26 21:10:26 +00001294
1295 // Convert all the elements.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001296 SmallVector<llvm::Value *, 16> EltTys;
Devang Patel9ca36b62009-02-26 21:10:26 +00001297
Devang Pateld6c5a262010-02-01 21:52:22 +00001298 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelfbe899f2009-03-10 21:30:26 +00001299 if (SClass) {
Mike Stump1eb44332009-09-09 15:08:12 +00001300 llvm::DIType SClassTy =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001301 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001302 if (!SClassTy.isValid())
1303 return llvm::DIType();
1304
Mike Stump1eb44332009-09-09 15:08:12 +00001305 llvm::DIType InhTag =
Devang Patel16674e82011-02-22 18:56:36 +00001306 DBuilder.createInheritance(FwdDecl, SClassTy, 0, 0);
Devang Patelfbe899f2009-03-10 21:30:26 +00001307 EltTys.push_back(InhTag);
1308 }
1309
Devang Pateld6c5a262010-02-01 21:52:22 +00001310 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patel8c6f9c42011-09-19 18:54:16 +00001311 ObjCImplementationDecl *ImpD = ID->getImplementation();
Devang Patel9ca36b62009-02-26 21:10:26 +00001312 unsigned FieldNo = 0;
Fariborz Jahanian97477392010-10-01 00:01:53 +00001313 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanianfe8fdba2010-10-11 23:55:47 +00001314 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patel9ca36b62009-02-26 21:10:26 +00001315 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregora6a28972010-11-30 06:38:09 +00001316 if (!FieldTy.isValid())
1317 return llvm::DIType();
1318
Chris Lattner5f9e2722011-07-23 10:55:15 +00001319 StringRef FieldName = Field->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00001320
Devang Patelde135022009-04-27 22:40:36 +00001321 // Ignore unnamed fields.
Devang Patel73621622009-11-25 17:37:31 +00001322 if (FieldName.empty())
Devang Patelde135022009-04-27 22:40:36 +00001323 continue;
1324
Devang Patel9ca36b62009-02-26 21:10:26 +00001325 // Get the location for the field.
Devang Patel8ab870d2010-05-12 23:46:38 +00001326 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1327 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel99c20eb2009-03-20 18:24:39 +00001328 QualType FType = Field->getType();
1329 uint64_t FieldSize = 0;
1330 unsigned FieldAlign = 0;
Devang Patelc20482b2009-03-19 00:23:53 +00001331
Devang Patel99c20eb2009-03-20 18:24:39 +00001332 if (!FType->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001333
Devang Patel99c20eb2009-03-20 18:24:39 +00001334 // Bit size, align and offset of the type.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001335 FieldSize = Field->isBitField()
1336 ? Field->getBitWidthValue(CGM.getContext())
1337 : CGM.getContext().getTypeSize(FType);
1338 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel99c20eb2009-03-20 18:24:39 +00001339 }
1340
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001341 // We can't know the offset of our ivar in the structure if we're using
1342 // the non-fragile abi and the debugger should ignore the value anyways.
1343 // Call it the FieldNo+1 due to how debuggers use the information,
1344 // e.g. negating the value when it needs a lookup in the dynamic table.
1345 uint64_t FieldOffset = CGM.getLangOptions().ObjCNonFragileABI ? FieldNo+1
1346 : RL.getFieldOffset(FieldNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001347
Devang Patelc20482b2009-03-19 00:23:53 +00001348 unsigned Flags = 0;
1349 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Patele2472482010-09-29 21:05:52 +00001350 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelc20482b2009-03-19 00:23:53 +00001351 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Patele2472482010-09-29 21:05:52 +00001352 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump1eb44332009-09-09 15:08:12 +00001353
Chris Lattner5f9e2722011-07-23 10:55:15 +00001354 StringRef PropertyName;
1355 StringRef PropertyGetter;
1356 StringRef PropertySetter;
Eli Friedman10292cc2011-04-17 06:40:15 +00001357 unsigned PropertyAttributes = 0;
Devang Patel8c6f9c42011-09-19 18:54:16 +00001358 ObjCPropertyDecl *PD = NULL;
1359 if (ImpD)
1360 if (ObjCPropertyImplDecl *PImpD =
Eric Christopherab5278e2011-10-11 23:00:51 +00001361 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier()))
1362 PD = PImpD->getPropertyDecl();
Devang Patel8c6f9c42011-09-19 18:54:16 +00001363 if (PD) {
Devang Patelfa936d82011-04-16 00:12:55 +00001364 PropertyName = PD->getName();
Devang Patel90c1eed2011-04-16 00:37:51 +00001365 PropertyGetter = getSelectorName(PD->getGetterName());
1366 PropertySetter = getSelectorName(PD->getSetterName());
Devang Patelfa936d82011-04-16 00:12:55 +00001367 PropertyAttributes = PD->getPropertyAttributes();
Devang Patel8c6f9c42011-09-19 18:54:16 +00001368 }
Devang Patelfa936d82011-04-16 00:12:55 +00001369 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1370 FieldLine, FieldSize, FieldAlign,
1371 FieldOffset, Flags, FieldTy,
1372 PropertyName, PropertyGetter,
1373 PropertySetter, PropertyAttributes);
Devang Patel9ca36b62009-02-26 21:10:26 +00001374 EltTys.push_back(FieldTy);
1375 }
Mike Stump1eb44332009-09-09 15:08:12 +00001376
Jay Foadc556ef22011-04-24 10:11:03 +00001377 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel9ca36b62009-02-26 21:10:26 +00001378
Eric Christopheraa2164c2011-09-29 00:00:45 +00001379 LexicalBlockStack.pop_back();
Devang Patele4c1ea02010-03-11 20:01:48 +00001380 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1381 RegionMap.find(Ty->getDecl());
1382 if (RI != RegionMap.end())
1383 RegionMap.erase(RI);
1384
Devang Patel9ca36b62009-02-26 21:10:26 +00001385 // Bit size, align and offset of the type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001386 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1387 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001388
Devang Patel707b1e92011-05-12 19:07:41 +00001389 unsigned Flags = 0;
Devang Patelf568b642011-05-12 21:14:54 +00001390 if (ID->getImplementation())
Devang Patelaad16092011-05-12 21:29:57 +00001391 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
Devang Patel707b1e92011-05-12 19:07:41 +00001392
Devang Patel823d8e92010-12-08 22:42:58 +00001393 llvm::DIType RealDecl =
Devang Patel16674e82011-02-22 18:56:36 +00001394 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
Devang Patel707b1e92011-05-12 19:07:41 +00001395 Line, Size, Align, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00001396 Elements, RuntimeLang);
Devang Patel9ca36b62009-02-26 21:10:26 +00001397
1398 // Now that we have a real decl for the struct, replace anything using the
1399 // old decl with the new one. This will recursively update the debug info.
Dan Gohman4cac5b42010-08-20 22:02:57 +00001400 llvm::DIType(FwdDeclNode).replaceAllUsesWith(RealDecl);
Devang Patelab699792010-05-07 18:12:35 +00001401 RegionMap[ID] = llvm::WeakVH(RealDecl);
Devang Patelfe09eab2009-07-13 17:03:14 +00001402
Devang Patel9ca36b62009-02-26 21:10:26 +00001403 return RealDecl;
1404}
1405
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001406llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty, llvm::DIFile Unit) {
Devang Patel70c23cd2010-02-23 22:59:39 +00001407 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel6cf37dd2011-04-08 21:56:52 +00001408 int64_t NumElems = Ty->getNumElements();
1409 int64_t LowerBound = 0;
1410 if (NumElems == 0)
1411 // If number of elements are not known then this is an unbounded array.
1412 // Use Low = 1, Hi = 0 to express such arrays.
1413 LowerBound = 1;
1414 else
Devang Patel70c23cd2010-02-23 22:59:39 +00001415 --NumElems;
Devang Patel70c23cd2010-02-23 22:59:39 +00001416
Devang Patel6cf37dd2011-04-08 21:56:52 +00001417 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foadc556ef22011-04-24 10:11:03 +00001418 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patel70c23cd2010-02-23 22:59:39 +00001419
1420 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1421 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1422
1423 return
Devang Patel16674e82011-02-22 18:56:36 +00001424 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patel70c23cd2010-02-23 22:59:39 +00001425}
1426
Chris Lattner9c85ba32008-11-10 06:08:34 +00001427llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001428 llvm::DIFile Unit) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001429 uint64_t Size;
1430 uint64_t Align;
Mike Stump1eb44332009-09-09 15:08:12 +00001431
1432
Nuno Lopes010d5142009-01-28 00:35:17 +00001433 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlsson835c9092009-01-05 01:23:29 +00001434 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlsson835c9092009-01-05 01:23:29 +00001435 Size = 0;
1436 Align =
Anders Carlsson20f12a22009-12-06 18:00:51 +00001437 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopes010d5142009-01-28 00:35:17 +00001438 } else if (Ty->isIncompleteArrayType()) {
1439 Size = 0;
Anders Carlsson20f12a22009-12-06 18:00:51 +00001440 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patelba690a42011-04-04 23:18:38 +00001441 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patelae503df2011-04-01 19:02:33 +00001442 Size = 0;
1443 Align = 0;
Anders Carlsson835c9092009-01-05 01:23:29 +00001444 } else {
1445 // Size and align of the whole array, not the element type.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001446 Size = CGM.getContext().getTypeSize(Ty);
1447 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlsson835c9092009-01-05 01:23:29 +00001448 }
Mike Stump1eb44332009-09-09 15:08:12 +00001449
Chris Lattner9c85ba32008-11-10 06:08:34 +00001450 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1451 // interior arrays, do we care? Why aren't nested arrays represented the
1452 // obvious/recursive way?
Chris Lattner5f9e2722011-07-23 10:55:15 +00001453 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001454 QualType EltTy(Ty, 0);
Devang Patelcdf523c2010-10-06 18:30:00 +00001455 if (Ty->isIncompleteArrayType())
Chris Lattner9c85ba32008-11-10 06:08:34 +00001456 EltTy = Ty->getElementType();
Devang Patelcdf523c2010-10-06 18:30:00 +00001457 else {
1458 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
Devang Patel6cf37dd2011-04-08 21:56:52 +00001459 int64_t UpperBound = 0;
1460 int64_t LowerBound = 0;
Nick Lewycky3894c072011-04-09 00:25:15 +00001461 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
Devang Patelcdf523c2010-10-06 18:30:00 +00001462 if (CAT->getSize().getZExtValue())
Devang Patel6cf37dd2011-04-08 21:56:52 +00001463 UpperBound = CAT->getSize().getZExtValue() - 1;
Nick Lewycky3894c072011-04-09 00:25:15 +00001464 } else
Devang Patel6cf37dd2011-04-08 21:56:52 +00001465 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1466 // arrays.
1467 LowerBound = 1;
1468
Devang Patelcdf523c2010-10-06 18:30:00 +00001469 // FIXME: Verify this is right for VLAs.
Eric Christopherab5278e2011-10-11 23:00:51 +00001470 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1471 UpperBound));
Devang Patelcdf523c2010-10-06 18:30:00 +00001472 EltTy = Ty->getElementType();
1473 }
Sanjiv Gupta507de852008-06-09 10:47:41 +00001474 }
Mike Stump1eb44332009-09-09 15:08:12 +00001475
Jay Foadc556ef22011-04-24 10:11:03 +00001476 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001477
Devang Patelca80a5f2009-10-20 19:55:01 +00001478 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001479 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001480 SubscriptArray);
Devang Patelca80a5f2009-10-20 19:55:01 +00001481 return DbgTy;
Chris Lattner9c85ba32008-11-10 06:08:34 +00001482}
1483
Anders Carlssona031b352009-11-06 19:19:55 +00001484llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001485 llvm::DIFile Unit) {
Anders Carlssona031b352009-11-06 19:19:55 +00001486 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1487 Ty, Ty->getPointeeType(), Unit);
1488}
Chris Lattner9c85ba32008-11-10 06:08:34 +00001489
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001490llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1491 llvm::DIFile Unit) {
1492 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1493 Ty, Ty->getPointeeType(), Unit);
1494}
1495
Anders Carlsson20f12a22009-12-06 18:00:51 +00001496llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel17800552010-03-09 00:44:50 +00001497 llvm::DIFile U) {
Anders Carlsson20f12a22009-12-06 18:00:51 +00001498 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1499 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1500
1501 if (!Ty->getPointeeType()->isFunctionType()) {
1502 // We have a data member pointer type.
1503 return PointerDiffDITy;
1504 }
1505
1506 // We have a member function pointer type. Treat it as a struct with two
1507 // ptrdiff_t members.
1508 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1509
1510 uint64_t FieldOffset = 0;
Devang Patel823d8e92010-12-08 22:42:58 +00001511 llvm::Value *ElementTypes[2];
Anders Carlsson20f12a22009-12-06 18:00:51 +00001512
1513 // FIXME: This should probably be a function type instead.
1514 ElementTypes[0] =
Devang Patel1d323e02011-06-24 22:00:59 +00001515 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001516 Info.first, Info.second, FieldOffset, 0,
1517 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001518 FieldOffset += Info.first;
1519
1520 ElementTypes[1] =
Devang Patel1d323e02011-06-24 22:00:59 +00001521 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001522 Info.first, Info.second, FieldOffset, 0,
1523 PointerDiffDITy);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001524
Jay Foadc556ef22011-04-24 10:11:03 +00001525 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001526
Chris Lattner5f9e2722011-07-23 10:55:15 +00001527 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel823d8e92010-12-08 22:42:58 +00001528 U, 0, FieldOffset,
1529 0, 0, Elements);
Anders Carlsson20f12a22009-12-06 18:00:51 +00001530}
1531
Eli Friedmanb001de72011-10-06 23:00:33 +00001532llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1533 llvm::DIFile U) {
1534 // Ignore the atomic wrapping
1535 // FIXME: What is the correct representation?
1536 return getOrCreateType(Ty->getValueType(), U);
1537}
1538
Devang Patel6237cea2010-08-23 22:07:25 +00001539/// CreateEnumType - get enumeration type.
Devang Patel31f7d022011-01-17 22:23:07 +00001540llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1541 llvm::DIFile Unit = getOrCreateFile(ED->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001542 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel6237cea2010-08-23 22:07:25 +00001543
1544 // Create DIEnumerator elements for each enumerator.
1545 for (EnumDecl::enumerator_iterator
1546 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1547 Enum != EnumEnd; ++Enum) {
Devang Patel823d8e92010-12-08 22:42:58 +00001548 Enumerators.push_back(
Devang Patel16674e82011-02-22 18:56:36 +00001549 DBuilder.createEnumerator(Enum->getName(),
Devang Patel823d8e92010-12-08 22:42:58 +00001550 Enum->getInitVal().getZExtValue()));
Devang Patel6237cea2010-08-23 22:07:25 +00001551 }
1552
1553 // Return a CompositeType for the enum itself.
Jay Foadc556ef22011-04-24 10:11:03 +00001554 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel6237cea2010-08-23 22:07:25 +00001555
1556 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1557 unsigned Line = getLineNumber(ED->getLocation());
1558 uint64_t Size = 0;
Devang Patelffc52e72010-08-24 18:14:06 +00001559 uint64_t Align = 0;
1560 if (!ED->getTypeForDecl()->isIncompleteType()) {
1561 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1562 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1563 }
Devang Patel4bc48872010-10-27 23:23:58 +00001564 llvm::DIDescriptor EnumContext =
John McCall8178df32011-02-22 22:38:33 +00001565 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Devang Patel6237cea2010-08-23 22:07:25 +00001566 llvm::DIType DbgTy =
Devang Patel16674e82011-02-22 18:56:36 +00001567 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Devang Patel823d8e92010-12-08 22:42:58 +00001568 Size, Align, EltArray);
Devang Patel6237cea2010-08-23 22:07:25 +00001569 return DbgTy;
1570}
1571
Douglas Gregor840943d2009-12-21 20:18:30 +00001572static QualType UnwrapTypeForDebugInfo(QualType T) {
1573 do {
1574 QualType LastT = T;
1575 switch (T->getTypeClass()) {
1576 default:
1577 return T;
1578 case Type::TemplateSpecialization:
1579 T = cast<TemplateSpecializationType>(T)->desugar();
1580 break;
John McCallf4c73712011-01-19 06:33:43 +00001581 case Type::TypeOfExpr:
1582 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001583 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001584 case Type::TypeOf:
1585 T = cast<TypeOfType>(T)->getUnderlyingType();
1586 break;
1587 case Type::Decltype:
1588 T = cast<DecltypeType>(T)->getUnderlyingType();
1589 break;
Sean Huntca63c202011-05-24 22:41:36 +00001590 case Type::UnaryTransform:
1591 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1592 break;
John McCall9d156a72011-01-06 01:58:22 +00001593 case Type::Attributed:
1594 T = cast<AttributedType>(T)->getEquivalentType();
John McCall14aa2172011-03-04 04:00:19 +00001595 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001596 case Type::Elaborated:
1597 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor840943d2009-12-21 20:18:30 +00001598 break;
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001599 case Type::Paren:
1600 T = cast<ParenType>(T)->getInnerType();
1601 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001602 case Type::SubstTemplateTypeParm:
1603 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1604 break;
Anders Carlssonebc32792011-03-06 16:43:04 +00001605 case Type::Auto:
1606 T = cast<AutoType>(T)->getDeducedType();
1607 break;
Douglas Gregor840943d2009-12-21 20:18:30 +00001608 }
1609
1610 assert(T != LastT && "Type unwrapping failed to unwrap!");
1611 if (T == LastT)
1612 return T;
1613 } while (true);
Anders Carlsson5b6117a2009-11-14 21:08:12 +00001614}
1615
Eric Christopher973bbb62011-12-16 23:40:18 +00001616/// getType - Get the type from the cache or return null type if it doesn't exist.
1617llvm::DIType CGDebugInfo::getTypeOrNull(QualType Ty) {
Mike Stump1eb44332009-09-09 15:08:12 +00001618
Douglas Gregor840943d2009-12-21 20:18:30 +00001619 // Unwrap the type as needed for debug information.
1620 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher973bbb62011-12-16 23:40:18 +00001621
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001622 // Check for existing entry.
Ted Kremenek590838b2010-03-29 18:29:57 +00001623 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001624 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar65f13c32009-09-19 20:17:48 +00001625 if (it != TypeCache.end()) {
1626 // Verify that the debug info still exists.
1627 if (&*it->second)
1628 return llvm::DIType(cast<llvm::MDNode>(it->second));
1629 }
Daniel Dunbar03faac32009-09-19 19:27:14 +00001630
Eric Christopher973bbb62011-12-16 23:40:18 +00001631 return llvm::DIType();
1632}
1633
1634/// getOrCreateType - Get the type from the cache or create a new
1635/// one if necessary.
1636llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile Unit) {
1637 if (Ty.isNull())
1638 return llvm::DIType();
1639
1640 // Unwrap the type as needed for debug information.
1641 Ty = UnwrapTypeForDebugInfo(Ty);
1642
1643 llvm::DIType T = getTypeOrNull(Ty);
1644 if (T.Verify()) return T;
1645
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001646 // Otherwise create the type.
1647 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001648
1649 // And update the type cache.
Devang Patelab699792010-05-07 18:12:35 +00001650 TypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar23e81ba2009-09-19 19:27:24 +00001651 return Res;
Daniel Dunbar03faac32009-09-19 19:27:14 +00001652}
1653
Anders Carlsson0dd57c62009-11-14 20:52:05 +00001654/// CreateTypeNode - Create a new debug type node.
Nick Lewycky7b3819d2011-11-09 04:27:23 +00001655llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile Unit) {
John McCalla1805292009-09-25 01:40:47 +00001656 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001657 if (Ty.hasLocalQualifiers())
John McCalla1805292009-09-25 01:40:47 +00001658 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001659
Douglas Gregor2101a822009-12-21 19:57:21 +00001660 const char *Diag = 0;
1661
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001662 // Work out details of type.
Chris Lattner9c85ba32008-11-10 06:08:34 +00001663 switch (Ty->getTypeClass()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001664#define TYPE(Class, Base)
1665#define ABSTRACT_TYPE(Class, Base)
1666#define NON_CANONICAL_TYPE(Class, Base)
1667#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1668#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +00001669 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001670
Anders Carlssonbfe69952009-11-06 18:24:04 +00001671 case Type::ExtVector:
Devang Patel70c23cd2010-02-23 22:59:39 +00001672 case Type::Vector:
1673 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbar9df4bb32009-07-14 01:20:56 +00001674 case Type::ObjCObjectPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001675 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCallc12c5bb2010-05-15 11:32:37 +00001676 case Type::ObjCObject:
1677 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump1eb44332009-09-09 15:08:12 +00001678 case Type::ObjCInterface:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001679 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001680 case Type::Builtin:
1681 return CreateType(cast<BuiltinType>(Ty));
1682 case Type::Complex:
1683 return CreateType(cast<ComplexType>(Ty));
1684 case Type::Pointer:
1685 return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump9bc093c2009-05-14 02:03:51 +00001686 case Type::BlockPointer:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001687 return CreateType(cast<BlockPointerType>(Ty), Unit);
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001688 case Type::Typedef:
1689 return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregor72564e72009-02-26 23:50:07 +00001690 case Type::Record:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001691 return CreateType(cast<RecordType>(Ty));
Douglas Gregor72564e72009-02-26 23:50:07 +00001692 case Type::Enum:
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00001693 return CreateEnumType(cast<EnumType>(Ty)->getDecl());
Chris Lattner9c85ba32008-11-10 06:08:34 +00001694 case Type::FunctionProto:
1695 case Type::FunctionNoProto:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001696 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001697 case Type::ConstantArray:
1698 case Type::VariableArray:
1699 case Type::IncompleteArray:
Daniel Dunbar03faac32009-09-19 19:27:14 +00001700 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001701
1702 case Type::LValueReference:
1703 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregor36b8ee62011-01-22 01:58:15 +00001704 case Type::RValueReference:
1705 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlssona031b352009-11-06 19:19:55 +00001706
Anders Carlsson20f12a22009-12-06 18:00:51 +00001707 case Type::MemberPointer:
1708 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor2101a822009-12-21 19:57:21 +00001709
Eli Friedmanb001de72011-10-06 23:00:33 +00001710 case Type::Atomic:
1711 return CreateType(cast<AtomicType>(Ty), Unit);
1712
John McCall9d156a72011-01-06 01:58:22 +00001713 case Type::Attributed:
Douglas Gregor2101a822009-12-21 19:57:21 +00001714 case Type::TemplateSpecialization:
Douglas Gregor2101a822009-12-21 19:57:21 +00001715 case Type::Elaborated:
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001716 case Type::Paren:
Douglas Gregor2101a822009-12-21 19:57:21 +00001717 case Type::SubstTemplateTypeParm:
Douglas Gregor2101a822009-12-21 19:57:21 +00001718 case Type::TypeOfExpr:
1719 case Type::TypeOf:
Douglas Gregor840943d2009-12-21 20:18:30 +00001720 case Type::Decltype:
Sean Huntca63c202011-05-24 22:41:36 +00001721 case Type::UnaryTransform:
Richard Smith34b41d92011-02-20 03:19:35 +00001722 case Type::Auto:
Douglas Gregor840943d2009-12-21 20:18:30 +00001723 llvm_unreachable("type should have been unwrapped!");
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001724 }
Douglas Gregor2101a822009-12-21 19:57:21 +00001725
1726 assert(Diag && "Fall through without a diagnostic?");
David Blaikied6471f72011-09-25 23:23:43 +00001727 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor2101a822009-12-21 19:57:21 +00001728 "debug information for %0 is not yet supported");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001729 CGM.getDiags().Report(DiagID)
Douglas Gregor2101a822009-12-21 19:57:21 +00001730 << Diag;
1731 return llvm::DIType();
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001732}
1733
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001734/// CreateMemberType - Create new member and increase Offset by FType's size.
1735llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001736 StringRef Name,
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001737 uint64_t *Offset) {
1738 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1739 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1740 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel1d323e02011-06-24 22:00:59 +00001741 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel823d8e92010-12-08 22:42:58 +00001742 FieldSize, FieldAlign,
1743 *Offset, 0, FieldTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001744 *Offset += FieldSize;
1745 return Ty;
1746}
1747
Devang Patel120bf322011-04-23 00:08:01 +00001748/// getFunctionDeclaration - Return debug info descriptor to describe method
1749/// declaration for the given method definition.
1750llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1751 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1752 if (!FD) return llvm::DISubprogram();
1753
1754 // Setup context.
1755 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1756
Devang Patel22a5cdf2011-04-29 23:42:32 +00001757 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001758 MI = SPCache.find(FD->getCanonicalDecl());
Devang Patel22a5cdf2011-04-29 23:42:32 +00001759 if (MI != SPCache.end()) {
1760 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1761 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1762 return SP;
1763 }
1764
Devang Patel120bf322011-04-23 00:08:01 +00001765 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1766 E = FD->redecls_end(); I != E; ++I) {
1767 const FunctionDecl *NextFD = *I;
1768 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001769 MI = SPCache.find(NextFD->getCanonicalDecl());
Devang Patel120bf322011-04-23 00:08:01 +00001770 if (MI != SPCache.end()) {
1771 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1772 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1773 return SP;
1774 }
1775 }
1776 return llvm::DISubprogram();
1777}
1778
Devang Patel1c296522011-05-31 20:46:46 +00001779// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1780// implicit parameter "this".
Eric Christopherab5278e2011-10-11 23:00:51 +00001781llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D,
1782 QualType FnType,
Devang Patel1c296522011-05-31 20:46:46 +00001783 llvm::DIFile F) {
1784 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1785 return getOrCreateMethodType(Method, F);
Nick Lewycky7480d962011-11-10 00:34:02 +00001786 if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patelc478f212011-05-31 21:18:50 +00001787 // Add "self" and "_cmd"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001788 SmallVector<llvm::Value *, 16> Elts;
Devang Patelc478f212011-05-31 21:18:50 +00001789
1790 // First element is always return type. For 'void' functions it is NULL.
Devang Pateld127bcb2011-05-31 22:21:11 +00001791 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patelc478f212011-05-31 21:18:50 +00001792 // "self" pointer is always first argument.
1793 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
1794 // "cmd" pointer is always second argument.
1795 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Pateld127bcb2011-05-31 22:21:11 +00001796 // Get rest of the arguments.
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001797 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Pateld127bcb2011-05-31 22:21:11 +00001798 PE = OMethod->param_end(); PI != PE; ++PI)
1799 Elts.push_back(getOrCreateType((*PI)->getType(), F));
1800
Devang Patelc478f212011-05-31 21:18:50 +00001801 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1802 return DBuilder.createSubroutineType(F, EltTypeArray);
1803 }
Devang Patel1c296522011-05-31 20:46:46 +00001804 return getOrCreateType(FnType, F);
1805}
1806
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001807/// EmitFunctionStart - Constructs the debug code for entering a function -
1808/// "llvm.dbg.func.start.".
Devang Patel9c6c3a02010-01-14 00:36:21 +00001809void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001810 llvm::Function *Fn,
Chris Lattner9c85ba32008-11-10 06:08:34 +00001811 CGBuilderTy &Builder) {
Mike Stump1eb44332009-09-09 15:08:12 +00001812
Chris Lattner5f9e2722011-07-23 10:55:15 +00001813 StringRef Name;
1814 StringRef LinkageName;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001815
Eric Christopheraa2164c2011-09-29 00:00:45 +00001816 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001817
Devang Patel9c6c3a02010-01-14 00:36:21 +00001818 const Decl *D = GD.getDecl();
Eric Christopher73fb3502011-10-13 21:45:18 +00001819
Devang Patel3951e712010-10-07 22:03:49 +00001820 unsigned Flags = 0;
Devang Patel0692f832010-10-11 21:58:41 +00001821 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1822 llvm::DIDescriptor FDContext(Unit);
Devang Patel5ecb1df2011-04-05 22:54:11 +00001823 llvm::DIArray TParamsArray;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001824 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Eric Christopherbf979472011-11-14 18:55:02 +00001825 // If there is a DISubprogram for this function available then use it.
Devang Patel4125fd22010-01-19 01:54:44 +00001826 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopherdeae6a82011-11-17 23:45:00 +00001827 FI = SPCache.find(FD->getCanonicalDecl());
Devang Patel4125fd22010-01-19 01:54:44 +00001828 if (FI != SPCache.end()) {
Gabor Greif38c9b172010-09-18 13:00:17 +00001829 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelab699792010-05-07 18:12:35 +00001830 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1831 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001832 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001833 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel4125fd22010-01-19 01:54:44 +00001834 return;
1835 }
1836 }
Devang Patel9c6c3a02010-01-14 00:36:21 +00001837 Name = getFunctionName(FD);
1838 // Use mangled name as linkage name for c/c++ functions.
Devang Patela87a2b22011-05-02 22:49:30 +00001839 if (!Fn->hasInternalLinkage())
Devang Patel2df74c02011-05-02 22:37:48 +00001840 LinkageName = CGM.getMangledName(GD);
Devang Patel58faf202010-10-22 17:11:50 +00001841 if (LinkageName == Name)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001842 LinkageName = StringRef();
Devang Patel3951e712010-10-07 22:03:49 +00001843 if (FD->hasPrototype())
1844 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel0692f832010-10-11 21:58:41 +00001845 if (const NamespaceDecl *NSDecl =
1846 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
Devang Patel170cef32010-12-09 00:33:05 +00001847 FDContext = getOrCreateNameSpace(NSDecl);
Devang Patelbc6a1912011-05-17 00:20:09 +00001848 else if (const RecordDecl *RDecl =
1849 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
1850 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patel5ecb1df2011-04-05 22:54:11 +00001851
1852 // Collect template parameters.
1853 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
David Chisnall70b9b442010-09-02 17:16:32 +00001854 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnall52044a22010-09-02 18:01:51 +00001855 Name = getObjCMethodName(OMD);
Devang Patel3951e712010-10-07 22:03:49 +00001856 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001857 } else {
Devang Patel58faf202010-10-22 17:11:50 +00001858 // Use llvm function name.
Devang Patel9c6c3a02010-01-14 00:36:21 +00001859 Name = Fn->getName();
Devang Patel3951e712010-10-07 22:03:49 +00001860 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel9c6c3a02010-01-14 00:36:21 +00001861 }
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001862 if (!Name.empty() && Name[0] == '\01')
1863 Name = Name.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00001864
Devang Patel970c6182010-04-24 00:49:16 +00001865 // It is expected that CurLoc is set before using EmitFunctionStart.
1866 // Usually, CurLoc points to the left bracket location of compound
1867 // statement representing function body.
Devang Patel8ab870d2010-05-12 23:46:38 +00001868 unsigned LineNo = getLineNumber(CurLoc);
Devang Patele2472482010-09-29 21:05:52 +00001869 if (D->isImplicit())
1870 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel120bf322011-04-23 00:08:01 +00001871 llvm::DISubprogram SPDecl = getFunctionDeclaration(D);
Chris Lattner9c85ba32008-11-10 06:08:34 +00001872 llvm::DISubprogram SP =
Devang Patel16674e82011-02-22 18:56:36 +00001873 DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
Devang Patel1c296522011-05-31 20:46:46 +00001874 LineNo, getOrCreateFunctionType(D, FnType, Unit),
Devang Patel823d8e92010-12-08 22:42:58 +00001875 Fn->hasInternalLinkage(), true/*definition*/,
Devang Patel5ecb1df2011-04-05 22:54:11 +00001876 Flags, CGM.getLangOptions().Optimize, Fn,
Devang Patel120bf322011-04-23 00:08:01 +00001877 TParamsArray, SPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001878
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001879 // Push function on region stack.
Devang Patelab699792010-05-07 18:12:35 +00001880 llvm::MDNode *SPN = SP;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001881 LexicalBlockStack.push_back(SPN);
Devang Patelab699792010-05-07 18:12:35 +00001882 RegionMap[D] = llvm::WeakVH(SP);
Eric Christopher69a1b742011-09-29 00:00:37 +00001883}
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001884
Eric Christopher5321bc42011-09-29 00:00:41 +00001885/// EmitLocation - Emit metadata to indicate a change in line/column
1886/// information in the source file.
Eric Christopher73fb3502011-10-13 21:45:18 +00001887void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
1888
1889 // Update our current location
1890 setLocation(Loc);
1891
Sanjiv Gupta1c6a38b2008-05-25 05:15:42 +00001892 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001893
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001894 // Don't bother if things are the same as last time.
Anders Carlsson20f12a22009-12-06 18:00:51 +00001895 SourceManager &SM = CGM.getContext().getSourceManager();
Eric Christopher73fb3502011-10-13 21:45:18 +00001896 if (CurLoc == PrevLoc ||
Chandler Carruth40278532011-07-25 16:49:02 +00001897 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patel4800ea62010-04-05 21:09:15 +00001898 // New Builder may not be in sync with CGDebugInfo.
1899 if (!Builder.getCurrentDebugLocation().isUnknown())
1900 return;
Eric Christopher414ee4b2011-09-29 00:00:35 +00001901
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001902 // Update last state.
1903 PrevLoc = CurLoc;
1904
Eric Christopheraa2164c2011-09-29 00:00:45 +00001905 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel8ab870d2010-05-12 23:46:38 +00001906 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
1907 getColumnNumber(CurLoc),
Chris Lattnere541d012010-04-02 20:21:43 +00001908 Scope));
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001909}
1910
Eric Christopher73fb3502011-10-13 21:45:18 +00001911/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
1912/// the stack.
1913void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
Devang Patel8fae0602009-11-13 19:10:24 +00001914 llvm::DIDescriptor D =
Eric Christopher73fb3502011-10-13 21:45:18 +00001915 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
1916 llvm::DIDescriptor() :
1917 llvm::DIDescriptor(LexicalBlockStack.back()),
1918 getOrCreateFile(CurLoc),
1919 getLineNumber(CurLoc),
1920 getColumnNumber(CurLoc));
Devang Patelab699792010-05-07 18:12:35 +00001921 llvm::MDNode *DN = D;
Eric Christopheraa2164c2011-09-29 00:00:45 +00001922 LexicalBlockStack.push_back(DN);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001923}
1924
Eric Christopher73fb3502011-10-13 21:45:18 +00001925/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
1926/// region - beginning of a DW_TAG_lexical_block.
1927void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) {
1928 // Set our current location.
1929 setLocation(Loc);
1930
1931 // Create a new lexical block and push it on the stack.
1932 CreateLexicalBlock(Loc);
1933
1934 // Emit a line table change for the current location inside the new scope.
1935 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
1936 getColumnNumber(Loc),
1937 LexicalBlockStack.back()));
1938}
1939
Eric Christopheraa2164c2011-09-29 00:00:45 +00001940/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher43202ae2011-09-26 15:03:22 +00001941/// region - end of a DW_TAG_lexical_block.
Eric Christopher73fb3502011-10-13 21:45:18 +00001942void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001943 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00001944
Eric Christopher73fb3502011-10-13 21:45:18 +00001945 // Provide an entry in the line table for the end of the block.
1946 EmitLocation(Builder, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +00001947
Eric Christopheraa2164c2011-09-29 00:00:45 +00001948 LexicalBlockStack.pop_back();
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +00001949}
1950
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001951/// EmitFunctionEnd - Constructs the debug code for exiting a function.
1952void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00001953 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001954 unsigned RCount = FnBeginRegionCount.back();
Eric Christopheraa2164c2011-09-29 00:00:45 +00001955 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001956
1957 // Pop all regions for this function.
Eric Christopheraa2164c2011-09-29 00:00:45 +00001958 while (LexicalBlockStack.size() != RCount)
Eric Christopher73fb3502011-10-13 21:45:18 +00001959 EmitLexicalBlockEnd(Builder, CurLoc);
Devang Patel5a6fbcf2010-07-22 22:29:16 +00001960 FnBeginRegionCount.pop_back();
1961}
1962
Devang Patel809b9bb2010-02-10 18:49:08 +00001963// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
1964// See BuildByRefType.
1965llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
1966 uint64_t *XOffset) {
1967
Chris Lattner5f9e2722011-07-23 10:55:15 +00001968 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel809b9bb2010-02-10 18:49:08 +00001969 QualType FType;
1970 uint64_t FieldSize, FieldOffset;
1971 unsigned FieldAlign;
1972
Devang Patel17800552010-03-09 00:44:50 +00001973 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00001974 QualType Type = VD->getType();
1975
1976 FieldOffset = 0;
1977 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001978 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
1979 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001980 FType = CGM.getContext().IntTy;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001981 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
1982 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
1983
John McCall6b5a61b2011-02-07 10:33:21 +00001984 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel809b9bb2010-02-10 18:49:08 +00001985 if (HasCopyAndDispose) {
1986 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00001987 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
1988 &FieldOffset));
1989 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
1990 &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00001991 }
1992
1993 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck573be632011-04-22 17:34:18 +00001994 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001995 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck573be632011-04-22 17:34:18 +00001996 CharUnits FieldOffsetInBytes
1997 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
1998 CharUnits AlignedOffsetInBytes
1999 = FieldOffsetInBytes.RoundUpToAlignment(Align);
2000 CharUnits NumPaddingBytes
2001 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel809b9bb2010-02-10 18:49:08 +00002002
Ken Dyck573be632011-04-22 17:34:18 +00002003 if (NumPaddingBytes.isPositive()) {
2004 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel809b9bb2010-02-10 18:49:08 +00002005 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2006 pad, ArrayType::Normal, 0);
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002007 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel809b9bb2010-02-10 18:49:08 +00002008 }
2009 }
2010
2011 FType = Type;
Benjamin Kramer48c70f62010-04-24 20:19:58 +00002012 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel809b9bb2010-02-10 18:49:08 +00002013 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck573be632011-04-22 17:34:18 +00002014 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel809b9bb2010-02-10 18:49:08 +00002015
2016 *XOffset = FieldOffset;
Devang Patel1d323e02011-06-24 22:00:59 +00002017 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002018 0, FieldSize, FieldAlign,
2019 FieldOffset, 0, FieldTy);
Devang Patel809b9bb2010-02-10 18:49:08 +00002020 EltTys.push_back(FieldTy);
2021 FieldOffset += FieldSize;
2022
Jay Foadc556ef22011-04-24 10:11:03 +00002023 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel809b9bb2010-02-10 18:49:08 +00002024
Devang Patele2472482010-09-29 21:05:52 +00002025 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel809b9bb2010-02-10 18:49:08 +00002026
Devang Patel16674e82011-02-22 18:56:36 +00002027 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel823d8e92010-12-08 22:42:58 +00002028 Elements);
Devang Patel809b9bb2010-02-10 18:49:08 +00002029}
Devang Patel823d8e92010-12-08 22:42:58 +00002030
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002031/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel239cec62010-02-01 21:39:52 +00002032void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel093ac462011-03-03 20:13:15 +00002033 llvm::Value *Storage,
2034 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002035 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar5273f512008-10-17 01:07:56 +00002036
Devang Patel17800552010-03-09 00:44:50 +00002037 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002038 llvm::DIType Ty;
2039 uint64_t XOffset = 0;
2040 if (VD->hasAttr<BlocksAttr>())
2041 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2042 else
2043 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner650cea92009-05-05 04:57:08 +00002044
Devang Patelf4e54a22010-05-07 23:05:55 +00002045 // If there is not any debug info for type then do not emit debug info
2046 // for this variable.
2047 if (!Ty)
2048 return;
2049
Devang Patel34753802011-02-16 01:11:51 +00002050 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
2051 // If Storage is an aggregate returned as 'sret' then let debugger know
2052 // about this.
Devang Patel0691f932011-02-10 00:40:52 +00002053 if (Arg->hasStructRetAttr())
Devang Patel16674e82011-02-22 18:56:36 +00002054 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00002055 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
2056 // If an aggregate variable has non trivial destructor or non trivial copy
2057 // constructor than it is pass indirectly. Let debug info know about this
2058 // by using reference of the aggregate type as a argument type.
Eric Christopherab5278e2011-10-11 23:00:51 +00002059 if (!Record->hasTrivialCopyConstructor() ||
2060 !Record->hasTrivialDestructor())
Devang Patel16674e82011-02-22 18:56:36 +00002061 Ty = DBuilder.createReferenceType(Ty);
Devang Patel34753802011-02-16 01:11:51 +00002062 }
2063 }
Devang Patel0691f932011-02-10 00:40:52 +00002064
Chris Lattner9c85ba32008-11-10 06:08:34 +00002065 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002066 unsigned Line = getLineNumber(VD->getLocation());
2067 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patelaca745b2010-09-29 23:09:21 +00002068 unsigned Flags = 0;
2069 if (VD->isImplicit())
2070 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002071 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelcebbedd2010-10-12 23:24:54 +00002072
Chris Lattner5f9e2722011-07-23 10:55:15 +00002073 StringRef Name = VD->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002074 if (!Name.empty()) {
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002075 if (VD->hasAttr<BlocksAttr>()) {
2076 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002077 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002078 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002079 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002080 // offset of __forwarding field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002081 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002082 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002083 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002084 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2085 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002086 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002087 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002088 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2089
2090 // Create the descriptor for the variable.
2091 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002092 DBuilder.createComplexVariable(Tag,
Eric Christopherab5278e2011-10-11 23:00:51 +00002093 llvm::DIDescriptor(Scope),
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002094 VD->getName(), Unit, Line, Ty,
Jay Foadc556ef22011-04-24 10:11:03 +00002095 addr, ArgNo);
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002096
2097 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002098 // Insert an llvm.dbg.declare into the current block.
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002099 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002100 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelb1fd0eb2011-01-11 00:30:27 +00002101 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2102 return;
2103 }
2104 // Create the descriptor for the variable.
Devang Patelcebbedd2010-10-12 23:24:54 +00002105 llvm::DIVariable D =
Devang Patel16674e82011-02-22 18:56:36 +00002106 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel823d8e92010-12-08 22:42:58 +00002107 Name, Unit, Line, Ty,
Devang Patel093ac462011-03-03 20:13:15 +00002108 CGM.getLangOptions().Optimize, Flags, ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002109
2110 // Insert an llvm.dbg.declare into the current block.
2111 llvm::Instruction *Call =
Devang Patel16674e82011-02-22 18:56:36 +00002112 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelcebbedd2010-10-12 23:24:54 +00002113 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelf4dd9622010-10-29 16:21:19 +00002114 return;
Devang Patelcebbedd2010-10-12 23:24:54 +00002115 }
2116
2117 // If VD is an anonymous union then Storage represents value for
2118 // all union fields.
John McCall8178df32011-02-22 22:38:33 +00002119 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2120 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2121 if (RD->isUnion()) {
2122 for (RecordDecl::field_iterator I = RD->field_begin(),
2123 E = RD->field_end();
2124 I != E; ++I) {
2125 FieldDecl *Field = *I;
2126 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002127 StringRef FieldName = Field->getName();
Devang Patelcebbedd2010-10-12 23:24:54 +00002128
John McCall8178df32011-02-22 22:38:33 +00002129 // Ignore unnamed fields. Do not ignore unnamed records.
2130 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2131 continue;
Devang Patelcebbedd2010-10-12 23:24:54 +00002132
John McCall8178df32011-02-22 22:38:33 +00002133 // Use VarDecl's Tag, Scope and Line number.
2134 llvm::DIVariable D =
2135 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2136 FieldName, Unit, Line, FieldTy,
Devang Patel093ac462011-03-03 20:13:15 +00002137 CGM.getLangOptions().Optimize, Flags,
2138 ArgNo);
Devang Patelcebbedd2010-10-12 23:24:54 +00002139
John McCall8178df32011-02-22 22:38:33 +00002140 // Insert an llvm.dbg.declare into the current block.
2141 llvm::Instruction *Call =
2142 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
John McCall8178df32011-02-22 22:38:33 +00002143 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patelcebbedd2010-10-12 23:24:54 +00002144 }
John McCall8178df32011-02-22 22:38:33 +00002145 }
2146 }
Sanjiv Guptacc9b1632008-05-30 10:30:31 +00002147}
2148
Devang Patele2d01912011-04-25 23:43:36 +00002149void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2150 llvm::Value *Storage,
2151 CGBuilderTy &Builder) {
2152 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2153}
Mike Stumpb1a6e682009-09-30 02:43:10 +00002154
Devang Patele2d01912011-04-25 23:43:36 +00002155void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2156 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2157 const CGBlockInfo &blockInfo) {
Eric Christopheraa2164c2011-09-29 00:00:45 +00002158 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patele2d01912011-04-25 23:43:36 +00002159
Devang Patel2b594b92010-04-26 23:28:46 +00002160 if (Builder.GetInsertBlock() == 0)
Mike Stumpb1a6e682009-09-30 02:43:10 +00002161 return;
Devang Patele2d01912011-04-25 23:43:36 +00002162
John McCall6b5a61b2011-02-07 10:33:21 +00002163 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patele2d01912011-04-25 23:43:36 +00002164
Mike Stumpb1a6e682009-09-30 02:43:10 +00002165 uint64_t XOffset = 0;
Devang Patel17800552010-03-09 00:44:50 +00002166 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel809b9bb2010-02-10 18:49:08 +00002167 llvm::DIType Ty;
John McCall6b5a61b2011-02-07 10:33:21 +00002168 if (isByRef)
Devang Patel809b9bb2010-02-10 18:49:08 +00002169 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2170 else
2171 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002172
2173 // Get location information.
Devang Patel8ab870d2010-05-12 23:46:38 +00002174 unsigned Line = getLineNumber(VD->getLocation());
2175 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stumpb1a6e682009-09-30 02:43:10 +00002176
John McCall6b5a61b2011-02-07 10:33:21 +00002177 const llvm::TargetData &target = CGM.getTargetData();
2178
2179 CharUnits offset = CharUnits::fromQuantity(
2180 target.getStructLayout(blockInfo.StructureType)
2181 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2182
Chris Lattner5f9e2722011-07-23 10:55:15 +00002183 SmallVector<llvm::Value *, 9> addr;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002184 llvm::Type *Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002185 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattner14b1a362010-01-25 03:29:35 +00002186 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall6b5a61b2011-02-07 10:33:21 +00002187 if (isByRef) {
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002188 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2189 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002190 // offset of __forwarding field
Eric Christopherab5278e2011-10-11 23:00:51 +00002191 offset = CGM.getContext()
2192 .toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattner14b1a362010-01-25 03:29:35 +00002193 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel4a4e2ef2011-02-18 23:29:22 +00002194 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2195 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck199c3d62010-01-11 17:06:35 +00002196 // offset of x field
Ken Dyck0ebce0e2011-04-22 17:41:34 +00002197 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattner14b1a362010-01-25 03:29:35 +00002198 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002199 }
2200
2201 // Create the descriptor for the variable.
2202 llvm::DIVariable D =
Devang Patele2d01912011-04-25 23:43:36 +00002203 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopheraa2164c2011-09-29 00:00:45 +00002204 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foadc556ef22011-04-24 10:11:03 +00002205 VD->getName(), Unit, Line, Ty, addr);
Mike Stumpb1a6e682009-09-30 02:43:10 +00002206 // Insert an llvm.dbg.declare into the current block.
Eric Christopher73fb3502011-10-13 21:45:18 +00002207 llvm::Instruction *Call =
Devang Patel50811d22011-04-25 23:52:27 +00002208 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Eric Christopher73fb3502011-10-13 21:45:18 +00002209 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2210 LexicalBlockStack.back()));
Mike Stumpb1a6e682009-09-30 02:43:10 +00002211}
2212
Chris Lattner9c85ba32008-11-10 06:08:34 +00002213/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2214/// variable declaration.
Devang Pateld6c5a262010-02-01 21:52:22 +00002215void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel093ac462011-03-03 20:13:15 +00002216 unsigned ArgNo,
Devang Patel34753802011-02-16 01:11:51 +00002217 CGBuilderTy &Builder) {
Devang Patel093ac462011-03-03 20:13:15 +00002218 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattner9c85ba32008-11-10 06:08:34 +00002219}
2220
John McCall8178df32011-02-22 22:38:33 +00002221namespace {
2222 struct BlockLayoutChunk {
2223 uint64_t OffsetInBits;
2224 const BlockDecl::Capture *Capture;
2225 };
2226 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2227 return l.OffsetInBits < r.OffsetInBits;
2228 }
2229}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002230
John McCall8178df32011-02-22 22:38:33 +00002231void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2232 llvm::Value *addr,
2233 CGBuilderTy &Builder) {
2234 ASTContext &C = CGM.getContext();
2235 const BlockDecl *blockDecl = block.getBlockDecl();
2236
2237 // Collect some general information about the block's location.
2238 SourceLocation loc = blockDecl->getCaretLocation();
2239 llvm::DIFile tunit = getOrCreateFile(loc);
2240 unsigned line = getLineNumber(loc);
2241 unsigned column = getColumnNumber(loc);
2242
2243 // Build the debug-info type for the block literal.
Nick Lewycky7d4b1592011-05-02 01:41:48 +00002244 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall8178df32011-02-22 22:38:33 +00002245
2246 const llvm::StructLayout *blockLayout =
2247 CGM.getTargetData().getStructLayout(block.StructureType);
2248
Chris Lattner5f9e2722011-07-23 10:55:15 +00002249 SmallVector<llvm::Value*, 16> fields;
John McCall8178df32011-02-22 22:38:33 +00002250 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2251 blockLayout->getElementOffsetInBits(0),
Devang Patel1d323e02011-06-24 22:00:59 +00002252 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002253 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2254 blockLayout->getElementOffsetInBits(1),
Devang Patel1d323e02011-06-24 22:00:59 +00002255 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002256 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2257 blockLayout->getElementOffsetInBits(2),
Devang Patel1d323e02011-06-24 22:00:59 +00002258 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002259 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2260 blockLayout->getElementOffsetInBits(3),
Devang Patel1d323e02011-06-24 22:00:59 +00002261 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002262 fields.push_back(createFieldType("__descriptor",
2263 C.getPointerType(block.NeedsCopyDispose ?
2264 C.getBlockDescriptorExtendedType() :
2265 C.getBlockDescriptorType()),
2266 0, loc, AS_public,
2267 blockLayout->getElementOffsetInBits(4),
Devang Patel1d323e02011-06-24 22:00:59 +00002268 tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002269
2270 // We want to sort the captures by offset, not because DWARF
2271 // requires this, but because we're paranoid about debuggers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002272 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall8178df32011-02-22 22:38:33 +00002273
2274 // 'this' capture.
2275 if (blockDecl->capturesCXXThis()) {
2276 BlockLayoutChunk chunk;
2277 chunk.OffsetInBits =
2278 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2279 chunk.Capture = 0;
2280 chunks.push_back(chunk);
2281 }
2282
2283 // Variable captures.
2284 for (BlockDecl::capture_const_iterator
2285 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2286 i != e; ++i) {
2287 const BlockDecl::Capture &capture = *i;
2288 const VarDecl *variable = capture.getVariable();
2289 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2290
2291 // Ignore constant captures.
2292 if (captureInfo.isConstant())
2293 continue;
2294
2295 BlockLayoutChunk chunk;
2296 chunk.OffsetInBits =
2297 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2298 chunk.Capture = &capture;
2299 chunks.push_back(chunk);
2300 }
2301
2302 // Sort by offset.
2303 llvm::array_pod_sort(chunks.begin(), chunks.end());
2304
Chris Lattner5f9e2722011-07-23 10:55:15 +00002305 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall8178df32011-02-22 22:38:33 +00002306 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2307 uint64_t offsetInBits = i->OffsetInBits;
2308 const BlockDecl::Capture *capture = i->Capture;
2309
2310 // If we have a null capture, this must be the C++ 'this' capture.
2311 if (!capture) {
2312 const CXXMethodDecl *method =
2313 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2314 QualType type = method->getThisType(C);
2315
2316 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel1d323e02011-06-24 22:00:59 +00002317 offsetInBits, tunit, tunit));
John McCall8178df32011-02-22 22:38:33 +00002318 continue;
2319 }
2320
2321 const VarDecl *variable = capture->getVariable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002322 StringRef name = variable->getName();
John McCalld113a6f2011-03-02 06:57:14 +00002323
2324 llvm::DIType fieldType;
2325 if (capture->isByRef()) {
2326 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2327
2328 // FIXME: this creates a second copy of this type!
2329 uint64_t xoffset;
2330 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2331 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel1d323e02011-06-24 22:00:59 +00002332 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCalld113a6f2011-03-02 06:57:14 +00002333 ptrInfo.first, ptrInfo.second,
2334 offsetInBits, 0, fieldType);
2335 } else {
2336 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel1d323e02011-06-24 22:00:59 +00002337 loc, AS_public, offsetInBits, tunit, tunit);
John McCalld113a6f2011-03-02 06:57:14 +00002338 }
2339 fields.push_back(fieldType);
John McCall8178df32011-02-22 22:38:33 +00002340 }
2341
2342 llvm::SmallString<36> typeName;
2343 llvm::raw_svector_ostream(typeName)
2344 << "__block_literal_" << CGM.getUniqueBlockCount();
2345
Jay Foadc556ef22011-04-24 10:11:03 +00002346 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall8178df32011-02-22 22:38:33 +00002347
2348 llvm::DIType type =
2349 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2350 CGM.getContext().toBits(block.BlockSize),
2351 CGM.getContext().toBits(block.BlockAlign),
2352 0, fieldsArray);
2353 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2354
2355 // Get overall information about the block.
2356 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopheraa2164c2011-09-29 00:00:45 +00002357 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002358 StringRef name = ".block_descriptor";
John McCall8178df32011-02-22 22:38:33 +00002359
2360 // Create the descriptor for the parameter.
2361 llvm::DIVariable debugVar =
2362 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2363 llvm::DIDescriptor(scope),
2364 name, tunit, line, type,
Devang Patel093ac462011-03-03 20:13:15 +00002365 CGM.getLangOptions().Optimize, flags,
2366 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall8178df32011-02-22 22:38:33 +00002367
2368 // Insert an llvm.dbg.value into the current block.
2369 llvm::Instruction *declare =
2370 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2371 Builder.GetInsertBlock());
2372 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2373}
Chris Lattner9c85ba32008-11-10 06:08:34 +00002374
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002375/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump1eb44332009-09-09 15:08:12 +00002376void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateleb6d79b2010-02-01 21:34:11 +00002377 const VarDecl *D) {
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002378 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002379 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002380 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002381
Eric Christopher73fb3502011-10-13 21:45:18 +00002382 setLocation(D->getLocation());
2383
Devang Pateleb6d79b2010-02-01 21:34:11 +00002384 QualType T = D->getType();
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002385 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002386
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002387 // CodeGen turns int[] into int[1] so we'll do the same here.
2388 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002389
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002390 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002391 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002392
Anders Carlsson20f12a22009-12-06 18:00:51 +00002393 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Nick Lewyckyd4c100e2011-11-09 04:25:21 +00002394 ArrayType::Normal, 0);
Anders Carlsson4d6e8dd2008-11-26 17:40:42 +00002395 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00002396 StringRef DeclName = D->getName();
2397 StringRef LinkageName;
Devang Pateleb4c45b2011-02-09 19:16:38 +00002398 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2399 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel8b90a782010-05-13 23:52:37 +00002400 LinkageName = Var->getName();
Devang Patel58faf202010-10-22 17:11:50 +00002401 if (LinkageName == DeclName)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002402 LinkageName = StringRef();
Devang Pateleb6d79b2010-02-01 21:34:11 +00002403 llvm::DIDescriptor DContext =
Devang Patel170cef32010-12-09 00:33:05 +00002404 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Patel16674e82011-02-22 18:56:36 +00002405 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel823d8e92010-12-08 22:42:58 +00002406 Unit, LineNo, getOrCreateType(T, Unit),
2407 Var->hasInternalLinkage(), Var);
Sanjiv Gupta686226b2008-06-05 08:59:10 +00002408}
2409
Devang Patel9ca36b62009-02-26 21:10:26 +00002410/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump1eb44332009-09-09 15:08:12 +00002411void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Pateld6c5a262010-02-01 21:52:22 +00002412 ObjCInterfaceDecl *ID) {
Devang Patel9ca36b62009-02-26 21:10:26 +00002413 // Create global variable debug descriptor.
Devang Patel17800552010-03-09 00:44:50 +00002414 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patel8ab870d2010-05-12 23:46:38 +00002415 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patel9ca36b62009-02-26 21:10:26 +00002416
Chris Lattner5f9e2722011-07-23 10:55:15 +00002417 StringRef Name = ID->getName();
Devang Patel9ca36b62009-02-26 21:10:26 +00002418
Devang Pateld6c5a262010-02-01 21:52:22 +00002419 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patel9ca36b62009-02-26 21:10:26 +00002420 if (T->isIncompleteArrayType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002421
Devang Patel9ca36b62009-02-26 21:10:26 +00002422 // CodeGen turns int[] into int[1] so we'll do the same here.
2423 llvm::APSInt ConstVal(32);
Mike Stump1eb44332009-09-09 15:08:12 +00002424
Devang Patel9ca36b62009-02-26 21:10:26 +00002425 ConstVal = 1;
Anders Carlsson20f12a22009-12-06 18:00:51 +00002426 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00002427
Anders Carlsson20f12a22009-12-06 18:00:51 +00002428 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patel9ca36b62009-02-26 21:10:26 +00002429 ArrayType::Normal, 0);
2430 }
2431
Devang Patel16674e82011-02-22 18:56:36 +00002432 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel823d8e92010-12-08 22:42:58 +00002433 getOrCreateType(T, Unit),
2434 Var->hasInternalLinkage(), Var);
Devang Patel9ca36b62009-02-26 21:10:26 +00002435}
Devang Patelabb485f2010-02-01 19:16:32 +00002436
Devang Patel25c2c8f2010-08-10 17:53:33 +00002437/// EmitGlobalVariable - Emit global variable's debug info.
2438void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCall189d6ef2010-10-09 01:34:31 +00002439 llvm::Constant *Init) {
Devang Patel8d308382010-08-10 07:24:25 +00002440 // Create the descriptor for the variable.
2441 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002442 StringRef Name = VD->getName();
Devang Patel0317ab02010-08-10 18:27:15 +00002443 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel6237cea2010-08-23 22:07:25 +00002444 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
2445 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
Devang Patel31f7d022011-01-17 22:23:07 +00002446 Ty = CreateEnumType(ED);
Devang Patel6237cea2010-08-23 22:07:25 +00002447 }
Devang Patel0317ab02010-08-10 18:27:15 +00002448 // Do not use DIGlobalVariable for enums.
2449 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2450 return;
Devang Patel16674e82011-02-22 18:56:36 +00002451 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel823d8e92010-12-08 22:42:58 +00002452 getLineNumber(VD->getLocation()),
2453 Ty, true, Init);
Devang Patel8d308382010-08-10 07:24:25 +00002454}
2455
Devang Patelabb485f2010-02-01 19:16:32 +00002456/// getOrCreateNamesSpace - Return namespace descriptor for the given
2457/// namespace decl.
2458llvm::DINameSpace
Devang Patel170cef32010-12-09 00:33:05 +00002459CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patelabb485f2010-02-01 19:16:32 +00002460 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2461 NameSpaceCache.find(NSDecl);
2462 if (I != NameSpaceCache.end())
2463 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2464
Devang Patel8ab870d2010-05-12 23:46:38 +00002465 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patel8c376682010-10-28 19:12:46 +00002466 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patelabb485f2010-02-01 19:16:32 +00002467 llvm::DIDescriptor Context =
Devang Patel170cef32010-12-09 00:33:05 +00002468 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patelabb485f2010-02-01 19:16:32 +00002469 llvm::DINameSpace NS =
Devang Patel16674e82011-02-22 18:56:36 +00002470 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelab699792010-05-07 18:12:35 +00002471 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patelabb485f2010-02-01 19:16:32 +00002472 return NS;
2473}
Devang Patele80d5672011-03-23 16:29:39 +00002474
2475/// UpdateCompletedType - Update type cache because the type is now
2476/// translated.
2477void CGDebugInfo::UpdateCompletedType(const TagDecl *TD) {
2478 QualType Ty = CGM.getContext().getTagDeclType(TD);
2479
2480 // If the type exist in type cache then remove it from the cache.
2481 // There is no need to prepare debug info for the completed type
2482 // right now. It will be generated on demand lazily.
2483 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2484 TypeCache.find(Ty.getAsOpaquePtr());
2485 if (it != TypeCache.end())
2486 TypeCache.erase(it);
2487}