blob: 76ba2ec4b38e26878d5cb38cf2b39d023e5cf0eb [file] [log] [blame]
Sanjiv Gupta15cb6692008-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 Stump2e722b92009-09-30 02:43:10 +000015#include "CodeGenFunction.h"
Sanjiv Gupta15cb6692008-05-08 08:54:20 +000016#include "CodeGenModule.h"
John McCallad7c5c12011-02-08 08:22:06 +000017#include "CGBlocks.h"
Sanjiv Gupta98070572008-05-25 05:15:42 +000018#include "clang/AST/ASTContext.h"
Devang Patel96b7f552010-08-27 17:47:47 +000019#include "clang/AST/DeclFriend.h"
Devang Patelf4c205b2009-02-26 21:10:26 +000020#include "clang/AST/DeclObjC.h"
Devang Patel6c018202010-07-20 20:24:18 +000021#include "clang/AST/DeclTemplate.h"
Chris Lattnercd2523b2008-11-11 07:01:36 +000022#include "clang/AST/Expr.h"
Anders Carlsson15b73de2009-07-18 19:43:29 +000023#include "clang/AST/RecordLayout.h"
Benjamin Kramer3307c5082012-02-04 12:31:12 +000024#include "clang/Basic/SourceManager.h"
Benjamin Kramer7ec12c92012-02-07 22:29:24 +000025#include "clang/Basic/FileManager.h"
Mike Stumpc3844be2009-09-15 21:48:34 +000026#include "clang/Basic/Version.h"
Chandler Carruth85098242010-06-15 23:19:56 +000027#include "clang/Frontend/CodeGenOptions.h"
Sanjiv Gupta15cb6692008-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 Gupta15cb6692008-05-08 08:54:20 +000033#include "llvm/ADT/StringExtras.h"
34#include "llvm/ADT/SmallVector.h"
Sanjiv Gupta98070572008-05-25 05:15:42 +000035#include "llvm/Support/Dwarf.h"
Benjamin Kramerfd0b05f2011-10-14 18:45:11 +000036#include "llvm/Support/FileSystem.h"
John McCall351762c2011-02-07 10:33:21 +000037#include "llvm/Target/TargetData.h"
Sanjiv Gupta15cb6692008-05-08 08:54:20 +000038using namespace clang;
39using namespace clang::CodeGen;
40
Anders Carlsson3efc6e62009-12-06 18:00:51 +000041CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
Devang Patel00afcbe2010-12-08 22:42:58 +000042 : CGM(CGM), DBuilder(CGM.getModule()),
Dan Gohman196f7102010-08-20 22:02:57 +000043 BlockLiteralGenericSet(false) {
Devang Patel408dcf62010-03-09 00:44:50 +000044 CreateCompileUnit();
Sanjiv Gupta15cb6692008-05-08 08:54:20 +000045}
46
Chris Lattneraffb3732008-11-10 06:08:34 +000047CGDebugInfo::~CGDebugInfo() {
Eric Christopherfefafac2011-10-11 23:00:51 +000048 assert(LexicalBlockStack.empty() &&
49 "Region stack mismatch, stack not empty!");
Sanjiv Gupta15cb6692008-05-08 08:54:20 +000050}
51
Chris Lattneraffb3732008-11-10 06:08:34 +000052void CGDebugInfo::setLocation(SourceLocation Loc) {
Eric Christopherfb4cd402011-10-11 23:00:45 +000053 // If the new location isn't valid return.
54 if (!Loc.isValid()) return;
55
56 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
Eric Christopher7cdf9482011-10-13 21:45:18 +000057
58 // If we've changed files in the middle of a lexical scope go ahead
59 // and create a new lexical scope with file node if it's different
60 // from the one in the scope.
61 if (LexicalBlockStack.empty()) return;
62
63 SourceManager &SM = CGM.getContext().getSourceManager();
64 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
65 PresumedLoc PPLoc = SM.getPresumedLoc(PrevLoc);
66
67 if (PCLoc.isInvalid() || PPLoc.isInvalid() ||
68 !strcmp(PPLoc.getFilename(), PCLoc.getFilename()))
69 return;
70
71 llvm::MDNode *LB = LexicalBlockStack.back();
72 llvm::DIScope Scope = llvm::DIScope(LB);
73 if (Scope.isLexicalBlockFile()) {
74 llvm::DILexicalBlockFile LBF = llvm::DILexicalBlockFile(LB);
75 llvm::DIDescriptor D
76 = DBuilder.createLexicalBlockFile(LBF.getScope(),
Devang Patel00fca3a2012-02-08 00:10:20 +000077 getOrCreateFile(CurLoc));
Eric Christopher7cdf9482011-10-13 21:45:18 +000078 llvm::MDNode *N = D;
79 LexicalBlockStack.pop_back();
80 LexicalBlockStack.push_back(N);
81 } else if (Scope.isLexicalBlock()) {
82 llvm::DIDescriptor D
83 = DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc));
84 llvm::MDNode *N = D;
85 LexicalBlockStack.pop_back();
86 LexicalBlockStack.push_back(N);
87 }
Sanjiv Gupta98070572008-05-25 05:15:42 +000088}
89
Devang Patel7bfc5962010-01-28 23:15:27 +000090/// getContextDescriptor - Get context info for the decl.
Devang Patel8c445292010-12-09 00:33:05 +000091llvm::DIDescriptor CGDebugInfo::getContextDescriptor(const Decl *Context) {
Devang Patel7b7f46f2010-02-01 21:34:11 +000092 if (!Context)
Devang Patel8c445292010-12-09 00:33:05 +000093 return TheCU;
Devang Patel7b7f46f2010-02-01 21:34:11 +000094
95 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
96 I = RegionMap.find(Context);
97 if (I != RegionMap.end())
Gabor Greifbf986082010-09-18 13:00:17 +000098 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
Devang Patele8fb4b72010-02-01 22:40:08 +000099
Devang Patel7b7f46f2010-02-01 21:34:11 +0000100 // Check namespace.
101 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
Devang Patel8c445292010-12-09 00:33:05 +0000102 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
Devang Patel98f21712010-05-13 23:52:37 +0000103
104 if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context)) {
105 if (!RDecl->isDependentType()) {
Devang Patel8e007302010-10-28 17:27:32 +0000106 llvm::DIType Ty = getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
Devang Patel8c445292010-12-09 00:33:05 +0000107 getOrCreateMainFile());
Devang Patel98f21712010-05-13 23:52:37 +0000108 return llvm::DIDescriptor(Ty);
109 }
110 }
Devang Patel8c445292010-12-09 00:33:05 +0000111 return TheCU;
Devang Patelfaf7e9a2009-10-06 00:35:31 +0000112}
113
Devang Patel934661e2010-01-14 00:36:21 +0000114/// getFunctionName - Get function name for the given FunctionDecl. If the
115/// name is constructred on demand (e.g. C++ destructor) then the name
116/// is stored on the side.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000117StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
Devang Patel934661e2010-01-14 00:36:21 +0000118 assert (FD && "Invalid FunctionDecl!");
119 IdentifierInfo *FII = FD->getIdentifier();
Eric Christopherd36ad662012-03-14 00:25:46 +0000120 FunctionTemplateSpecializationInfo *Info
121 = FD->getTemplateSpecializationInfo();
122 if (!Info && FII)
Devang Patel934661e2010-01-14 00:36:21 +0000123 return FII->getName();
124
125 // Otherwise construct human readable name for debug info.
126 std::string NS = FD->getNameAsString();
127
Eric Christopherd36ad662012-03-14 00:25:46 +0000128 // Add any template specialization args.
129 if (Info) {
130 const TemplateArgumentList *TArgs = Info->TemplateArguments;
131 const TemplateArgument *Args = TArgs->data();
132 unsigned NumArgs = TArgs->size();
133 PrintingPolicy Policy(CGM.getLangOpts());
134 NS += TemplateSpecializationType::PrintTemplateArgumentList(Args,
135 NumArgs,
136 Policy);
137 }
138
Devang Patel934661e2010-01-14 00:36:21 +0000139 // Copy this name on the side and use its reference.
Devang Patel0d61eeb2010-01-28 18:21:00 +0000140 char *StrPtr = DebugInfoNames.Allocate<char>(NS.length());
Benjamin Kramer8f8f4052010-01-23 18:16:07 +0000141 memcpy(StrPtr, NS.data(), NS.length());
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000142 return StringRef(StrPtr, NS.length());
Devang Patel934661e2010-01-14 00:36:21 +0000143}
144
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000145StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000146 SmallString<256> MethodName;
David Chisnallcf607442010-09-02 18:01:51 +0000147 llvm::raw_svector_ostream OS(MethodName);
148 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
149 const DeclContext *DC = OMD->getDeclContext();
Devang Patel8e007302010-10-28 17:27:32 +0000150 if (const ObjCImplementationDecl *OID =
151 dyn_cast<const ObjCImplementationDecl>(DC)) {
David Chisnallcf607442010-09-02 18:01:51 +0000152 OS << OID->getName();
Devang Patel8e007302010-10-28 17:27:32 +0000153 } else if (const ObjCInterfaceDecl *OID =
154 dyn_cast<const ObjCInterfaceDecl>(DC)) {
Fariborz Jahanianf34011e2010-10-18 17:51:06 +0000155 OS << OID->getName();
Devang Patel8e007302010-10-28 17:27:32 +0000156 } else if (const ObjCCategoryImplDecl *OCD =
157 dyn_cast<const ObjCCategoryImplDecl>(DC)){
David Chisnallcf607442010-09-02 18:01:51 +0000158 OS << ((NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
159 OCD->getIdentifier()->getNameStart() << ')';
160 }
161 OS << ' ' << OMD->getSelector().getAsString() << ']';
162
163 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
164 memcpy(StrPtr, MethodName.begin(), OS.tell());
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000165 return StringRef(StrPtr, OS.tell());
David Chisnallcf607442010-09-02 18:01:51 +0000166}
167
Devang Patel43cfa5d2011-04-18 17:30:25 +0000168/// getSelectorName - Return selector name. This is used for debugging
Devang Patel7294d742011-04-16 00:37:51 +0000169/// info.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000170StringRef CGDebugInfo::getSelectorName(Selector S) {
Benjamin Kramer47b5b312011-10-14 18:45:16 +0000171 const std::string &SName = S.getAsString();
172 char *StrPtr = DebugInfoNames.Allocate<char>(SName.size());
173 memcpy(StrPtr, SName.data(), SName.size());
174 return StringRef(StrPtr, SName.size());
Devang Patel7294d742011-04-16 00:37:51 +0000175}
176
Devang Patel6c018202010-07-20 20:24:18 +0000177/// getClassName - Get class name including template argument list.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000178StringRef
Eric Christopherb2db8e42012-02-08 01:53:14 +0000179CGDebugInfo::getClassName(const RecordDecl *RD) {
180 const ClassTemplateSpecializationDecl *Spec
Devang Patel6c018202010-07-20 20:24:18 +0000181 = dyn_cast<ClassTemplateSpecializationDecl>(RD);
182 if (!Spec)
183 return RD->getName();
184
185 const TemplateArgument *Args;
186 unsigned NumArgs;
187 std::string Buffer;
188 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
189 const TemplateSpecializationType *TST =
190 cast<TemplateSpecializationType>(TAW->getType());
191 Args = TST->getArgs();
192 NumArgs = TST->getNumArgs();
193 } else {
194 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Douglas Gregor1ccc8412010-11-07 23:05:16 +0000195 Args = TemplateArgs.data();
196 NumArgs = TemplateArgs.size();
Devang Patel6c018202010-07-20 20:24:18 +0000197 }
198 Buffer = RD->getIdentifier()->getNameStart();
David Blaikiebbafb8a2012-03-11 07:00:24 +0000199 PrintingPolicy Policy(CGM.getLangOpts());
Devang Patel6c018202010-07-20 20:24:18 +0000200 Buffer += TemplateSpecializationType::PrintTemplateArgumentList(Args,
201 NumArgs,
202 Policy);
203
204 // Copy this name on the side and use its reference.
205 char *StrPtr = DebugInfoNames.Allocate<char>(Buffer.length());
206 memcpy(StrPtr, Buffer.data(), Buffer.length());
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000207 return StringRef(StrPtr, Buffer.length());
Devang Patel6c018202010-07-20 20:24:18 +0000208}
209
Devang Patel408dcf62010-03-09 00:44:50 +0000210/// getOrCreateFile - Get the file debug info descriptor for the input location.
211llvm::DIFile CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
Devang Patel00afcbe2010-12-08 22:42:58 +0000212 if (!Loc.isValid())
213 // If Location is not valid then use main input file.
Devang Pateld7185b72011-02-22 18:56:36 +0000214 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Patel00afcbe2010-12-08 22:42:58 +0000215
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000216 SourceManager &SM = CGM.getContext().getSourceManager();
Devang Patel408dcf62010-03-09 00:44:50 +0000217 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
Ted Kremenekdbb8cd12010-03-30 00:27:51 +0000218
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000219 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
Douglas Gregorad3832e2010-11-11 20:45:16 +0000220 // If the location is not valid then use main input file.
Devang Pateld7185b72011-02-22 18:56:36 +0000221 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Douglas Gregorad3832e2010-11-11 20:45:16 +0000222
Ted Kremenekdbb8cd12010-03-30 00:27:51 +0000223 // Cache the results.
224 const char *fname = PLoc.getFilename();
225 llvm::DenseMap<const char *, llvm::WeakVH>::iterator it =
226 DIFileCache.find(fname);
227
228 if (it != DIFileCache.end()) {
229 // Verify that the information still exists.
230 if (&*it->second)
231 return llvm::DIFile(cast<llvm::MDNode>(it->second));
232 }
233
Devang Pateld7185b72011-02-22 18:56:36 +0000234 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
Ted Kremenekdbb8cd12010-03-30 00:27:51 +0000235
Devang Patelba4ad7f2010-05-07 18:12:35 +0000236 DIFileCache[fname] = F;
Ted Kremenekdbb8cd12010-03-30 00:27:51 +0000237 return F;
Devang Patel408dcf62010-03-09 00:44:50 +0000238}
Devang Patelc5ffabc2010-05-12 23:46:38 +0000239
Devang Pateled23f182010-10-28 22:03:20 +0000240/// getOrCreateMainFile - Get the file info for main compile unit.
241llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
Devang Pateld7185b72011-02-22 18:56:36 +0000242 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
Devang Pateled23f182010-10-28 22:03:20 +0000243}
244
Devang Patelc5ffabc2010-05-12 23:46:38 +0000245/// getLineNumber - Get line number for the location. If location is invalid
246/// then use current location.
247unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
Devang Patelf93d0b82012-02-06 23:24:13 +0000248 if (Loc.isInvalid() && CurLoc.isInvalid())
249 return 0;
Devang Patelc5ffabc2010-05-12 23:46:38 +0000250 SourceManager &SM = CGM.getContext().getSourceManager();
251 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregorad3832e2010-11-11 20:45:16 +0000252 return PLoc.isValid()? PLoc.getLine() : 0;
Devang Patelc5ffabc2010-05-12 23:46:38 +0000253}
254
255/// getColumnNumber - Get column number for the location. If location is
256/// invalid then use current location.
257unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc) {
Devang Patelf93d0b82012-02-06 23:24:13 +0000258 if (Loc.isInvalid() && CurLoc.isInvalid())
259 return 0;
Devang Patelc5ffabc2010-05-12 23:46:38 +0000260 SourceManager &SM = CGM.getContext().getSourceManager();
261 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
Douglas Gregorad3832e2010-11-11 20:45:16 +0000262 return PLoc.isValid()? PLoc.getColumn() : 0;
Devang Patelc5ffabc2010-05-12 23:46:38 +0000263}
264
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000265StringRef CGDebugInfo::getCurrentDirname() {
Nick Lewyckyba743b72011-10-21 02:32:14 +0000266 if (!CGM.getCodeGenOpts().DebugCompilationDir.empty())
267 return CGM.getCodeGenOpts().DebugCompilationDir;
268
Devang Patel6014edd2010-07-27 15:17:16 +0000269 if (!CWDName.empty())
270 return CWDName;
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000271 SmallString<256> CWD;
Benjamin Kramerfd0b05f2011-10-14 18:45:11 +0000272 llvm::sys::fs::current_path(CWD);
273 char *CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
274 memcpy(CompDirnamePtr, CWD.data(), CWD.size());
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000275 return CWDName = StringRef(CompDirnamePtr, CWD.size());
Devang Patel6014edd2010-07-27 15:17:16 +0000276}
277
Devang Patel408dcf62010-03-09 00:44:50 +0000278/// CreateCompileUnit - Create new compile unit.
279void CGDebugInfo::CreateCompileUnit() {
280
281 // Get absolute path name.
Douglas Gregorc6b5a3d2010-03-18 23:46:43 +0000282 SourceManager &SM = CGM.getContext().getSourceManager();
Douglas Gregorfc7a4812010-03-19 14:49:09 +0000283 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
284 if (MainFileName.empty())
Devang Patela42d3ea2010-03-12 21:04:27 +0000285 MainFileName = "<unknown>";
Douglas Gregorfc7a4812010-03-19 14:49:09 +0000286
Douglas Gregor65f7a3f2010-03-22 21:28:29 +0000287 // The main file name provided via the "-main-file-name" option contains just
288 // the file name itself with no path information. This file name may have had
289 // a relative path, so we look into the actual file entry for the main
290 // file to determine the real absolute path for the file.
Devang Patelcb9fe9e2010-07-23 23:04:28 +0000291 std::string MainFileDir;
Devang Patel6014edd2010-07-27 15:17:16 +0000292 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
Douglas Gregorfc7a4812010-03-19 14:49:09 +0000293 MainFileDir = MainFile->getDir()->getName();
Devang Patel6014edd2010-07-27 15:17:16 +0000294 if (MainFileDir != ".")
295 MainFileName = MainFileDir + "/" + MainFileName;
296 }
Douglas Gregorfc7a4812010-03-19 14:49:09 +0000297
Devang Patel6014edd2010-07-27 15:17:16 +0000298 // Save filename string.
299 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
300 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000301 StringRef Filename(FilenamePtr, MainFileName.length());
Devang Patel6014edd2010-07-27 15:17:16 +0000302
Chris Lattner8c37df42009-03-25 03:28:08 +0000303 unsigned LangTag;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000304 const LangOptions &LO = CGM.getLangOpts();
Chris Lattner8c37df42009-03-25 03:28:08 +0000305 if (LO.CPlusPlus) {
306 if (LO.ObjC1)
307 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
308 else
309 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
310 } else if (LO.ObjC1) {
Devang Patel94406c92009-03-24 20:35:51 +0000311 LangTag = llvm::dwarf::DW_LANG_ObjC;
Chris Lattner8c37df42009-03-25 03:28:08 +0000312 } else if (LO.C99) {
Devang Patel94406c92009-03-24 20:35:51 +0000313 LangTag = llvm::dwarf::DW_LANG_C99;
Chris Lattner8c37df42009-03-25 03:28:08 +0000314 } else {
315 LangTag = llvm::dwarf::DW_LANG_C89;
316 }
Devang Patel75009452009-04-17 21:06:59 +0000317
Daniel Dunbar64c222a2010-08-24 17:41:09 +0000318 std::string Producer = getClangFullVersion();
Chris Lattner5912de12009-05-02 01:00:04 +0000319
320 // Figure out which version of the ObjC runtime we have.
321 unsigned RuntimeVers = 0;
322 if (LO.ObjC1)
323 RuntimeVers = LO.ObjCNonFragileABI ? 2 : 1;
Mike Stump11289f42009-09-09 15:08:12 +0000324
Sanjiv Gupta15cb6692008-05-08 08:54:20 +0000325 // Create new compile unit.
Devang Pateld7185b72011-02-22 18:56:36 +0000326 DBuilder.createCompileUnit(
Devang Patel4f6e73b2010-07-27 20:49:59 +0000327 LangTag, Filename, getCurrentDirname(),
Devang Patel00afcbe2010-12-08 22:42:58 +0000328 Producer,
Daniel Dunbar24c7f5e2009-12-18 02:43:17 +0000329 LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers);
Devang Patel00afcbe2010-12-08 22:42:58 +0000330 // FIXME - Eliminate TheCU.
331 TheCU = llvm::DICompileUnit(DBuilder.getCU());
Sanjiv Gupta15cb6692008-05-08 08:54:20 +0000332}
333
Devang Patel410dc002009-02-25 01:36:11 +0000334/// CreateType - Get the Basic type from the cache or create a new
Chris Lattneraffb3732008-11-10 06:08:34 +0000335/// one if necessary.
Devang Patel86f30f52010-11-01 16:52:40 +0000336llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
Chris Lattneraffb3732008-11-10 06:08:34 +0000337 unsigned Encoding = 0;
Devang Patelc7f16ab2010-07-28 23:23:29 +0000338 const char *BTName = NULL;
Chris Lattneraffb3732008-11-10 06:08:34 +0000339 switch (BT->getKind()) {
John McCalle314e272011-10-18 21:02:43 +0000340#define BUILTIN_TYPE(Id, SingletonId)
341#define PLACEHOLDER_TYPE(Id, SingletonId) \
342 case BuiltinType::Id:
343#include "clang/AST/BuiltinTypes.def"
Devang Patelb0fa5b52011-09-12 18:50:21 +0000344 case BuiltinType::Dependent:
John McCalle314e272011-10-18 21:02:43 +0000345 llvm_unreachable("Unexpected builtin type");
Devang Patelb0fa5b52011-09-12 18:50:21 +0000346 case BuiltinType::NullPtr:
Devang Patelecaf9ac2011-09-14 23:14:14 +0000347 return DBuilder.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000348 createNullPtrType(BT->getName(CGM.getContext().getLangOpts()));
Chris Lattneraffb3732008-11-10 06:08:34 +0000349 case BuiltinType::Void:
350 return llvm::DIType();
Devang Patela652fab2010-07-28 01:33:15 +0000351 case BuiltinType::ObjCClass:
Eric Christophere908a7a2012-02-20 18:05:04 +0000352 return DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christopher8678a4a2012-02-20 23:02:36 +0000353 "objc_class", getOrCreateMainFile(),
354 0);
Devang Patela652fab2010-07-28 01:33:15 +0000355 case BuiltinType::ObjCId: {
356 // typedef struct objc_class *Class;
357 // typedef struct objc_object {
358 // Class isa;
359 // } *id;
360
Eric Christopher55b2bfa2012-02-23 00:43:12 +0000361 // TODO: Cache these two types to avoid duplicates.
Eric Christophere908a7a2012-02-20 18:05:04 +0000362 llvm::DIType OCTy =
363 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christopher8678a4a2012-02-20 23:02:36 +0000364 "objc_class", getOrCreateMainFile(),
365 0);
Devang Patela652fab2010-07-28 01:33:15 +0000366 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
367
Devang Pateld7185b72011-02-22 18:56:36 +0000368 llvm::DIType ISATy = DBuilder.createPointerType(OCTy, Size);
Devang Patela652fab2010-07-28 01:33:15 +0000369
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000370 SmallVector<llvm::Value *, 16> EltTys;
Devang Patela652fab2010-07-28 01:33:15 +0000371 llvm::DIType FieldTy =
Devang Patel15013e72011-06-24 22:00:59 +0000372 DBuilder.createMemberType(getOrCreateMainFile(), "isa",
373 getOrCreateMainFile(), 0, Size,
374 0, 0, 0, ISATy);
Devang Patela652fab2010-07-28 01:33:15 +0000375 EltTys.push_back(FieldTy);
Jay Foaddbf81d82011-04-24 10:11:03 +0000376 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patela652fab2010-07-28 01:33:15 +0000377
Devang Pateld7185b72011-02-22 18:56:36 +0000378 return DBuilder.createStructType(TheCU, "objc_object",
Devang Patel00afcbe2010-12-08 22:42:58 +0000379 getOrCreateMainFile(),
380 0, 0, 0, 0, Elements);
Devang Patela652fab2010-07-28 01:33:15 +0000381 }
Devang Patel19ba2b42011-02-09 03:15:05 +0000382 case BuiltinType::ObjCSel: {
Eric Christophere908a7a2012-02-20 18:05:04 +0000383 return
384 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christopher8678a4a2012-02-20 23:02:36 +0000385 "objc_selector", getOrCreateMainFile(),
386 0);
Devang Patel19ba2b42011-02-09 03:15:05 +0000387 }
Chris Lattneraffb3732008-11-10 06:08:34 +0000388 case BuiltinType::UChar:
389 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
390 case BuiltinType::Char_S:
391 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
Devang Patel98ca8ae2011-09-12 17:11:58 +0000392 case BuiltinType::Char16:
393 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
Chris Lattneraffb3732008-11-10 06:08:34 +0000394 case BuiltinType::UShort:
395 case BuiltinType::UInt:
Devang Patel979aba52011-05-05 17:06:30 +0000396 case BuiltinType::UInt128:
Chris Lattneraffb3732008-11-10 06:08:34 +0000397 case BuiltinType::ULong:
Devang Patel964d7582011-09-10 00:44:49 +0000398 case BuiltinType::WChar_U:
Chris Lattneraffb3732008-11-10 06:08:34 +0000399 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
400 case BuiltinType::Short:
401 case BuiltinType::Int:
Devang Patel979aba52011-05-05 17:06:30 +0000402 case BuiltinType::Int128:
Chris Lattneraffb3732008-11-10 06:08:34 +0000403 case BuiltinType::Long:
Devang Patel964d7582011-09-10 00:44:49 +0000404 case BuiltinType::WChar_S:
Chris Lattneraffb3732008-11-10 06:08:34 +0000405 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
406 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000407 case BuiltinType::Half:
Chris Lattneraffb3732008-11-10 06:08:34 +0000408 case BuiltinType::Float:
Devang Patel551e1122009-10-12 22:28:31 +0000409 case BuiltinType::LongDouble:
Chris Lattneraffb3732008-11-10 06:08:34 +0000410 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
Mike Stump11289f42009-09-09 15:08:12 +0000411 }
Devang Patelc7f16ab2010-07-28 23:23:29 +0000412
413 switch (BT->getKind()) {
414 case BuiltinType::Long: BTName = "long int"; break;
415 case BuiltinType::LongLong: BTName = "long long int"; break;
416 case BuiltinType::ULong: BTName = "long unsigned int"; break;
417 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
418 default:
David Blaikiebbafb8a2012-03-11 07:00:24 +0000419 BTName = BT->getName(CGM.getContext().getLangOpts());
Devang Patelc7f16ab2010-07-28 23:23:29 +0000420 break;
421 }
Chris Lattneraffb3732008-11-10 06:08:34 +0000422 // Bit size, align and offset of the type.
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000423 uint64_t Size = CGM.getContext().getTypeSize(BT);
424 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Devang Patele21912d2009-10-20 19:55:01 +0000425 llvm::DIType DbgTy =
Devang Pateld7185b72011-02-22 18:56:36 +0000426 DBuilder.createBasicType(BTName, Size, Align, Encoding);
Devang Patele21912d2009-10-20 19:55:01 +0000427 return DbgTy;
Chris Lattneraffb3732008-11-10 06:08:34 +0000428}
Sanjiv Gupta15cb6692008-05-08 08:54:20 +0000429
Devang Patel4591f772010-12-09 00:25:29 +0000430llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
Chris Lattner7b0344f2009-04-23 06:13:01 +0000431 // Bit size, align and offset of the type.
432 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
433 if (Ty->isComplexIntegerType())
434 Encoding = llvm::dwarf::DW_ATE_lo_user;
Mike Stump11289f42009-09-09 15:08:12 +0000435
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000436 uint64_t Size = CGM.getContext().getTypeSize(Ty);
437 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Devang Patele21912d2009-10-20 19:55:01 +0000438 llvm::DIType DbgTy =
Devang Pateld7185b72011-02-22 18:56:36 +0000439 DBuilder.createBasicType("complex", Size, Align, Encoding);
Devang Patel00afcbe2010-12-08 22:42:58 +0000440
Devang Patele21912d2009-10-20 19:55:01 +0000441 return DbgTy;
Chris Lattner7b0344f2009-04-23 06:13:01 +0000442}
443
John McCall0cf15512009-09-25 01:40:47 +0000444/// CreateCVRType - Get the qualified type from the cache or create
Sanjiv Gupta19292422008-06-07 04:46:53 +0000445/// a new one if necessary.
Devang Patel408dcf62010-03-09 00:44:50 +0000446llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
John McCall0cf15512009-09-25 01:40:47 +0000447 QualifierCollector Qc;
448 const Type *T = Qc.strip(Ty);
449
450 // Ignore these qualifiers for now.
451 Qc.removeObjCGCAttr();
452 Qc.removeAddressSpace();
John McCall31168b02011-06-15 23:02:42 +0000453 Qc.removeObjCLifetime();
John McCall0cf15512009-09-25 01:40:47 +0000454
Chris Lattneraffb3732008-11-10 06:08:34 +0000455 // We will create one Derived type for one qualifier and recurse to handle any
456 // additional ones.
Chris Lattneraffb3732008-11-10 06:08:34 +0000457 unsigned Tag;
John McCall0cf15512009-09-25 01:40:47 +0000458 if (Qc.hasConst()) {
Chris Lattneraffb3732008-11-10 06:08:34 +0000459 Tag = llvm::dwarf::DW_TAG_const_type;
John McCall0cf15512009-09-25 01:40:47 +0000460 Qc.removeConst();
461 } else if (Qc.hasVolatile()) {
Chris Lattneraffb3732008-11-10 06:08:34 +0000462 Tag = llvm::dwarf::DW_TAG_volatile_type;
John McCall0cf15512009-09-25 01:40:47 +0000463 Qc.removeVolatile();
464 } else if (Qc.hasRestrict()) {
Chris Lattneraffb3732008-11-10 06:08:34 +0000465 Tag = llvm::dwarf::DW_TAG_restrict_type;
John McCall0cf15512009-09-25 01:40:47 +0000466 Qc.removeRestrict();
467 } else {
468 assert(Qc.empty() && "Unknown type qualifier for debug info");
469 return getOrCreateType(QualType(T, 0), Unit);
Sanjiv Gupta98070572008-05-25 05:15:42 +0000470 }
Mike Stump11289f42009-09-09 15:08:12 +0000471
John McCall717d9b02010-12-10 11:01:00 +0000472 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
John McCall0cf15512009-09-25 01:40:47 +0000473
Daniel Dunbara290ded2008-10-31 03:54:29 +0000474 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
475 // CVR derived types.
Devang Pateld7185b72011-02-22 18:56:36 +0000476 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Devang Patel00afcbe2010-12-08 22:42:58 +0000477
Devang Patele21912d2009-10-20 19:55:01 +0000478 return DbgTy;
Sanjiv Gupta98070572008-05-25 05:15:42 +0000479}
480
Daniel Dunbarf5c79702009-07-14 01:20:56 +0000481llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
Devang Patel408dcf62010-03-09 00:44:50 +0000482 llvm::DIFile Unit) {
Devang Patele21912d2009-10-20 19:55:01 +0000483 llvm::DIType DbgTy =
Anders Carlsson443f6772009-11-06 19:19:55 +0000484 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
485 Ty->getPointeeType(), Unit);
Devang Patele21912d2009-10-20 19:55:01 +0000486 return DbgTy;
Daniel Dunbarf5c79702009-07-14 01:20:56 +0000487}
488
Chris Lattneraffb3732008-11-10 06:08:34 +0000489llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
Devang Patel408dcf62010-03-09 00:44:50 +0000490 llvm::DIFile Unit) {
Anders Carlsson443f6772009-11-06 19:19:55 +0000491 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
492 Ty->getPointeeType(), Unit);
493}
494
Eric Christopher000b14e2012-01-25 02:06:59 +0000495// Creates a forward declaration for a RecordDecl in the given context.
496llvm::DIType CGDebugInfo::createRecordFwdDecl(const RecordDecl *RD,
Devang Patel00fca3a2012-02-08 00:10:20 +0000497 llvm::DIDescriptor Ctx) {
Eric Christopher000b14e2012-01-25 02:06:59 +0000498 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
499 unsigned Line = getLineNumber(RD->getLocation());
Eric Christopherfe525232012-02-13 15:08:45 +0000500 StringRef RDName = RD->getName();
501
502 // Get the tag.
Eric Christopher000b14e2012-01-25 02:06:59 +0000503 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Eric Christopherfe525232012-02-13 15:08:45 +0000504 unsigned Tag = 0;
505 if (CXXDecl) {
506 RDName = getClassName(RD);
507 Tag = llvm::dwarf::DW_TAG_class_type;
508 }
Eric Christopher000b14e2012-01-25 02:06:59 +0000509 else if (RD->isStruct())
Eric Christopherfe525232012-02-13 15:08:45 +0000510 Tag = llvm::dwarf::DW_TAG_structure_type;
Eric Christopher000b14e2012-01-25 02:06:59 +0000511 else if (RD->isUnion())
Eric Christopherfe525232012-02-13 15:08:45 +0000512 Tag = llvm::dwarf::DW_TAG_union_type;
Eric Christopher000b14e2012-01-25 02:06:59 +0000513 else
514 llvm_unreachable("Unknown RecordDecl type!");
Eric Christopherfe525232012-02-13 15:08:45 +0000515
516 // Create the type.
Eric Christopher1a0c8822012-02-18 00:50:14 +0000517 return DBuilder.createForwardDecl(Tag, RDName, DefUnit, Line);
Eric Christopher000b14e2012-01-25 02:06:59 +0000518}
519
Eric Christopher45c4d472012-01-20 22:10:15 +0000520// Walk up the context chain and create forward decls for record decls,
521// and normal descriptors for namespaces.
522llvm::DIDescriptor CGDebugInfo::createContextChain(const Decl *Context) {
523 if (!Context)
524 return TheCU;
525
526 // See if we already have the parent.
527 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
528 I = RegionMap.find(Context);
529 if (I != RegionMap.end())
530 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(&*I->second));
531
532 // Check namespace.
533 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
534 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
535
536 if (const RecordDecl *RD = dyn_cast<RecordDecl>(Context)) {
537 if (!RD->isDependentType()) {
Eric Christopher4c006e52012-02-16 22:54:45 +0000538 llvm::DIType Ty = getOrCreateLimitedType(CGM.getContext().getTypeDeclType(RD),
539 getOrCreateMainFile());
Eric Christopher45c4d472012-01-20 22:10:15 +0000540 return llvm::DIDescriptor(Ty);
541 }
542 }
543 return TheCU;
544}
545
Eric Christopher47300ad2011-09-13 23:45:09 +0000546/// CreatePointeeType - Create Pointee type. If Pointee is a record
Devang Patel91bbb552010-09-30 19:05:55 +0000547/// then emit record's fwd if debug info size reduction is enabled.
548llvm::DIType CGDebugInfo::CreatePointeeType(QualType PointeeTy,
549 llvm::DIFile Unit) {
550 if (!CGM.getCodeGenOpts().LimitDebugInfo)
551 return getOrCreateType(PointeeTy, Unit);
Devang Patel242ce912011-10-24 23:15:17 +0000552
553 // Limit debug info for the pointee type.
554
Eric Christophercd888132011-12-16 23:40:18 +0000555 // If we have an existing type, use that, it's still smaller than creating
556 // a new type.
557 llvm::DIType Ty = getTypeOrNull(PointeeTy);
558 if (Ty.Verify()) return Ty;
559
Devang Patel242ce912011-10-24 23:15:17 +0000560 // Handle qualifiers.
561 if (PointeeTy.hasLocalQualifiers())
562 return CreateQualifiedType(PointeeTy, Unit);
563
Devang Patel91bbb552010-09-30 19:05:55 +0000564 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
565 RecordDecl *RD = RTy->getDecl();
Devang Patel91bbb552010-09-30 19:05:55 +0000566 llvm::DIDescriptor FDContext =
John McCall147d0212011-02-22 22:38:33 +0000567 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
Eric Christopher66562a42012-02-20 18:05:24 +0000568 llvm::DIType RetTy = createRecordFwdDecl(RD, FDContext);
569 TypeCache[QualType(RTy, 0).getAsOpaquePtr()] = RetTy;
570 return RetTy;
Devang Patel91bbb552010-09-30 19:05:55 +0000571 }
572 return getOrCreateType(PointeeTy, Unit);
Eric Christopher8a41bd82012-02-13 14:56:11 +0000573
Devang Patel91bbb552010-09-30 19:05:55 +0000574}
575
Anders Carlsson443f6772009-11-06 19:19:55 +0000576llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
577 const Type *Ty,
578 QualType PointeeTy,
Devang Patel408dcf62010-03-09 00:44:50 +0000579 llvm::DIFile Unit) {
Devang Patel00afcbe2010-12-08 22:42:58 +0000580 if (Tag == llvm::dwarf::DW_TAG_reference_type)
Devang Pateld7185b72011-02-22 18:56:36 +0000581 return DBuilder.createReferenceType(CreatePointeeType(PointeeTy, Unit));
Devang Patel00afcbe2010-12-08 22:42:58 +0000582
Sanjiv Gupta98070572008-05-25 05:15:42 +0000583 // Bit size, align and offset of the type.
Anders Carlsson443f6772009-11-06 19:19:55 +0000584 // Size is always the size of a pointer. We can't use getTypeSize here
585 // because that does not return the correct value for references.
Peter Collingbourne599cb8e2011-03-18 22:38:29 +0000586 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
Douglas Gregore8bbc122011-09-02 00:18:52 +0000587 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000588 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump11289f42009-09-09 15:08:12 +0000589
Nick Lewycky16790352011-11-10 00:34:02 +0000590 return DBuilder.createPointerType(CreatePointeeType(PointeeTy, Unit),
591 Size, Align);
Sanjiv Gupta98070572008-05-25 05:15:42 +0000592}
593
Mike Stump31f099c2009-05-14 02:03:51 +0000594llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
Devang Patel408dcf62010-03-09 00:44:50 +0000595 llvm::DIFile Unit) {
Mike Stump31f099c2009-05-14 02:03:51 +0000596 if (BlockLiteralGenericSet)
597 return BlockLiteralGeneric;
598
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000599 SmallVector<llvm::Value *, 8> EltTys;
Mike Stump31f099c2009-05-14 02:03:51 +0000600 llvm::DIType FieldTy;
Mike Stump31f099c2009-05-14 02:03:51 +0000601 QualType FType;
602 uint64_t FieldSize, FieldOffset;
603 unsigned FieldAlign;
Mike Stump31f099c2009-05-14 02:03:51 +0000604 llvm::DIArray Elements;
605 llvm::DIType EltTy, DescTy;
606
607 FieldOffset = 0;
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000608 FType = CGM.getContext().UnsignedLongTy;
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +0000609 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
610 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
Mike Stump31f099c2009-05-14 02:03:51 +0000611
Jay Foaddbf81d82011-04-24 10:11:03 +0000612 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump31f099c2009-05-14 02:03:51 +0000613 EltTys.clear();
614
Devang Pateldb2732a2010-09-29 21:05:52 +0000615 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
Devang Patelc5ffabc2010-05-12 23:46:38 +0000616 unsigned LineNo = getLineNumber(CurLoc);
Mike Stump581b9ad2009-10-02 02:30:50 +0000617
Devang Pateld7185b72011-02-22 18:56:36 +0000618 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
Devang Patel00afcbe2010-12-08 22:42:58 +0000619 Unit, LineNo, FieldOffset, 0,
620 Flags, Elements);
Mike Stump11289f42009-09-09 15:08:12 +0000621
Mike Stump31f099c2009-05-14 02:03:51 +0000622 // Bit size, align and offset of the type.
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000623 uint64_t Size = CGM.getContext().getTypeSize(Ty);
Mike Stump11289f42009-09-09 15:08:12 +0000624
Devang Pateld7185b72011-02-22 18:56:36 +0000625 DescTy = DBuilder.createPointerType(EltTy, Size);
Mike Stump31f099c2009-05-14 02:03:51 +0000626
627 FieldOffset = 0;
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000628 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +0000629 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000630 FType = CGM.getContext().IntTy;
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +0000631 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
632 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
Benjamin Kramer20f2d432010-04-24 20:26:20 +0000633 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +0000634 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
Mike Stump31f099c2009-05-14 02:03:51 +0000635
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000636 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Mike Stump31f099c2009-05-14 02:03:51 +0000637 FieldTy = DescTy;
Anders Carlsson3efc6e62009-12-06 18:00:51 +0000638 FieldSize = CGM.getContext().getTypeSize(Ty);
639 FieldAlign = CGM.getContext().getTypeAlign(Ty);
Devang Patel15013e72011-06-24 22:00:59 +0000640 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
Devang Patel00afcbe2010-12-08 22:42:58 +0000641 LineNo, FieldSize, FieldAlign,
642 FieldOffset, 0, FieldTy);
Mike Stump31f099c2009-05-14 02:03:51 +0000643 EltTys.push_back(FieldTy);
644
645 FieldOffset += FieldSize;
Jay Foaddbf81d82011-04-24 10:11:03 +0000646 Elements = DBuilder.getOrCreateArray(EltTys);
Mike Stump31f099c2009-05-14 02:03:51 +0000647
Devang Pateld7185b72011-02-22 18:56:36 +0000648 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
Devang Patel00afcbe2010-12-08 22:42:58 +0000649 Unit, LineNo, FieldOffset, 0,
650 Flags, Elements);
Mike Stump11289f42009-09-09 15:08:12 +0000651
Mike Stump31f099c2009-05-14 02:03:51 +0000652 BlockLiteralGenericSet = true;
Devang Pateld7185b72011-02-22 18:56:36 +0000653 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
Mike Stump31f099c2009-05-14 02:03:51 +0000654 return BlockLiteralGeneric;
655}
656
Nick Lewycky16790352011-11-10 00:34:02 +0000657llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty, llvm::DIFile Unit) {
Chris Lattneraffb3732008-11-10 06:08:34 +0000658 // Typedefs are derived from some other type. If we have a typedef of a
659 // typedef, make sure to emit the whole chain.
660 llvm::DIType Src = getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit);
Devang Patel00afcbe2010-12-08 22:42:58 +0000661 if (!Src.Verify())
662 return llvm::DIType();
Chris Lattneraffb3732008-11-10 06:08:34 +0000663 // We don't set size information, but do specify where the typedef was
664 // declared.
Devang Patelc5ffabc2010-05-12 23:46:38 +0000665 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
Devang Patelf1e2a7f2011-06-03 17:23:47 +0000666 const TypedefNameDecl *TyDecl = Ty->getDecl();
Eric Christopher4c006e52012-02-16 22:54:45 +0000667
Nick Lewycky16790352011-11-10 00:34:02 +0000668 llvm::DIDescriptor TypedefContext =
Devang Patelf1e2a7f2011-06-03 17:23:47 +0000669 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
Eric Christopher4c006e52012-02-16 22:54:45 +0000670
671 return
Nick Lewycky16790352011-11-10 00:34:02 +0000672 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
Sanjiv Gupta98070572008-05-25 05:15:42 +0000673}
674
Chris Lattneraffb3732008-11-10 06:08:34 +0000675llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
Devang Patel408dcf62010-03-09 00:44:50 +0000676 llvm::DIFile Unit) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000677 SmallVector<llvm::Value *, 16> EltTys;
Sanjiv Gupta98070572008-05-25 05:15:42 +0000678
Chris Lattneraffb3732008-11-10 06:08:34 +0000679 // Add the result type at least.
680 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
Mike Stump11289f42009-09-09 15:08:12 +0000681
Chris Lattneraffb3732008-11-10 06:08:34 +0000682 // Set up remainder of arguments if there is a prototype.
683 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
Devang Patel284fa412010-10-06 20:51:45 +0000684 if (isa<FunctionNoProtoType>(Ty))
Devang Pateld7185b72011-02-22 18:56:36 +0000685 EltTys.push_back(DBuilder.createUnspecifiedParameter());
Devang Patel284fa412010-10-06 20:51:45 +0000686 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) {
Eric Christopher8a41bd82012-02-13 14:56:11 +0000687 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
688 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
Sanjiv Gupta98070572008-05-25 05:15:42 +0000689 }
690
Jay Foaddbf81d82011-04-24 10:11:03 +0000691 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
Mike Stump11289f42009-09-09 15:08:12 +0000692
Devang Pateld7185b72011-02-22 18:56:36 +0000693 llvm::DIType DbgTy = DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patele21912d2009-10-20 19:55:01 +0000694 return DbgTy;
Sanjiv Gupta98070572008-05-25 05:15:42 +0000695}
696
Eric Christopher8a41bd82012-02-13 14:56:11 +0000697
Eric Christophera15e6352012-01-26 01:57:13 +0000698void CGDebugInfo::
699CollectRecordStaticVars(const RecordDecl *RD, llvm::DIType FwdDecl) {
700
701 for (RecordDecl::decl_iterator I = RD->decls_begin(), E = RD->decls_end();
702 I != E; ++I)
703 if (const VarDecl *V = dyn_cast<VarDecl>(*I)) {
704 if (V->getInit()) {
705 const APValue *Value = V->evaluateValue();
706 if (Value && Value->isInt()) {
707 llvm::ConstantInt *CI
708 = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
709
710 // Create the descriptor for static variable.
711 llvm::DIFile VUnit = getOrCreateFile(V->getLocation());
712 StringRef VName = V->getName();
713 llvm::DIType VTy = getOrCreateType(V->getType(), VUnit);
714 // Do not use DIGlobalVariable for enums.
715 if (VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type) {
716 DBuilder.createStaticVariable(FwdDecl, VName, VName, VUnit,
717 getLineNumber(V->getLocation()),
718 VTy, true, CI);
719 }
720 }
721 }
722 }
723}
724
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000725llvm::DIType CGDebugInfo::createFieldType(StringRef name,
John McCall147d0212011-02-22 22:38:33 +0000726 QualType type,
Richard Smithcaf33902011-10-10 18:28:20 +0000727 uint64_t sizeInBitsOverride,
John McCall147d0212011-02-22 22:38:33 +0000728 SourceLocation loc,
729 AccessSpecifier AS,
730 uint64_t offsetInBits,
Devang Patel15013e72011-06-24 22:00:59 +0000731 llvm::DIFile tunit,
732 llvm::DIDescriptor scope) {
John McCall147d0212011-02-22 22:38:33 +0000733 llvm::DIType debugType = getOrCreateType(type, tunit);
734
735 // Get the location for the field.
736 llvm::DIFile file = getOrCreateFile(loc);
737 unsigned line = getLineNumber(loc);
738
739 uint64_t sizeInBits = 0;
740 unsigned alignInBits = 0;
741 if (!type->isIncompleteArrayType()) {
742 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
743
Richard Smithcaf33902011-10-10 18:28:20 +0000744 if (sizeInBitsOverride)
745 sizeInBits = sizeInBitsOverride;
John McCall147d0212011-02-22 22:38:33 +0000746 }
747
748 unsigned flags = 0;
749 if (AS == clang::AS_private)
750 flags |= llvm::DIDescriptor::FlagPrivate;
751 else if (AS == clang::AS_protected)
752 flags |= llvm::DIDescriptor::FlagProtected;
753
Devang Patel15013e72011-06-24 22:00:59 +0000754 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
755 alignInBits, offsetInBits, flags, debugType);
John McCall147d0212011-02-22 22:38:33 +0000756}
757
Devang Patel889ce762010-01-19 00:00:59 +0000758/// CollectRecordFields - A helper function to collect debug info for
759/// record fields. This is used while creating debug info entry for a Record.
760void CGDebugInfo::
John McCall147d0212011-02-22 22:38:33 +0000761CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000762 SmallVectorImpl<llvm::Value *> &elements,
Devang Patel15013e72011-06-24 22:00:59 +0000763 llvm::DIType RecordTy) {
John McCall147d0212011-02-22 22:38:33 +0000764 unsigned fieldNo = 0;
765 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
Eric Christopher4b6753c2012-03-01 21:36:52 +0000766 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(record);
767
768 // For C++11 Lambdas a Fields will be the same as a Capture, but the Capture
769 // has the name and the location of the variable so we should iterate over
770 // both concurrently.
771 if (CXXDecl && CXXDecl->isLambda()) {
772 RecordDecl::field_iterator Field = CXXDecl->field_begin();
773 unsigned fieldno = 0;
774 for (CXXRecordDecl::capture_const_iterator I = CXXDecl->captures_begin(),
775 E = CXXDecl->captures_end(); I != E; ++I, ++Field, ++fieldno) {
776 const LambdaExpr::Capture C = *I;
777 // TODO: Need to handle 'this' in some way by probably renaming the
778 // this of the lambda class and having a field member of 'this'.
779 if (C.capturesVariable()) {
780 VarDecl *V = C.getCapturedVar();
781 llvm::DIFile VUnit = getOrCreateFile(C.getLocation());
782 StringRef VName = V->getName();
783 uint64_t SizeInBitsOverride = 0;
784 if (Field->isBitField()) {
785 SizeInBitsOverride = Field->getBitWidthValue(CGM.getContext());
786 assert(SizeInBitsOverride && "found named 0-width bitfield");
787 }
788 llvm::DIType fieldType
789 = createFieldType(VName, Field->getType(), SizeInBitsOverride, C.getLocation(),
790 Field->getAccess(), layout.getFieldOffset(fieldno),
791 VUnit, RecordTy);
792 elements.push_back(fieldType);
793 }
794 }
795 } else {
796 bool IsMsStruct = record->hasAttr<MsStructAttr>();
797 const FieldDecl *LastFD = 0;
798 for (RecordDecl::field_iterator I = record->field_begin(),
799 E = record->field_end();
800 I != E; ++I, ++fieldNo) {
801 FieldDecl *field = *I;
802
803 if (IsMsStruct) {
804 // Zero-length bitfields following non-bitfield members are ignored
805 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
806 --fieldNo;
807 continue;
808 }
809 LastFD = field;
810 }
811
812 StringRef name = field->getName();
813 QualType type = field->getType();
814
815 // Ignore unnamed fields unless they're anonymous structs/unions.
816 if (name.empty() && !type->isRecordType()) {
817 LastFD = field;
Fariborz Jahanian6d003c32011-04-28 23:43:23 +0000818 continue;
819 }
Eric Christopher4b6753c2012-03-01 21:36:52 +0000820
821 uint64_t SizeInBitsOverride = 0;
822 if (field->isBitField()) {
823 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
824 assert(SizeInBitsOverride && "found named 0-width bitfield");
825 }
826
827 llvm::DIType fieldType
828 = createFieldType(name, type, SizeInBitsOverride,
829 field->getLocation(), field->getAccess(),
830 layout.getFieldOffset(fieldNo), tunit, RecordTy);
831
832 elements.push_back(fieldType);
Fariborz Jahanian6d003c32011-04-28 23:43:23 +0000833 }
Devang Patel889ce762010-01-19 00:00:59 +0000834 }
835}
836
Devang Patel3d4e6d92010-01-28 00:28:01 +0000837/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
838/// function type is not updated to include implicit "this" pointer. Use this
839/// routine to get a method type which includes "this" pointer.
840llvm::DIType
841CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
Devang Patel408dcf62010-03-09 00:44:50 +0000842 llvm::DIFile Unit) {
Douglas Gregorc8be9522010-05-04 18:18:31 +0000843 llvm::DIType FnTy
844 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(),
845 0),
846 Unit);
Eric Christopher947bb5a2012-03-13 23:40:48 +0000847
Devang Patel3d4e6d92010-01-28 00:28:01 +0000848 // Add "this" pointer.
Devang Patelba4ad7f2010-05-07 18:12:35 +0000849 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
Devang Patel3d4e6d92010-01-28 00:28:01 +0000850 assert (Args.getNumElements() && "Invalid number of arguments!");
851
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000852 SmallVector<llvm::Value *, 16> Elts;
Devang Patel3d4e6d92010-01-28 00:28:01 +0000853
854 // First element is always return type. For 'void' functions it is NULL.
855 Elts.push_back(Args.getElement(0));
856
Eric Christopher19329c42011-09-14 01:10:50 +0000857 if (!Method->isStatic()) {
858 // "this" pointer is always first argument.
859 QualType ThisPtr = Method->getThisType(CGM.getContext());
Devang Patelfa59ac32011-10-28 21:12:13 +0000860
861 const CXXRecordDecl *RD = Method->getParent();
862 if (isa<ClassTemplateSpecializationDecl>(RD)) {
863 // Create pointer type directly in this case.
864 const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
865 QualType PointeeTy = ThisPtrTy->getPointeeType();
866 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
867 uint64_t Size = CGM.getContext().getTargetInfo().getPointerWidth(AS);
868 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
Nick Lewycky2219ef02011-11-09 04:25:21 +0000869 llvm::DIType PointeeType = getOrCreateType(PointeeTy, Unit);
Eric Christopher39e39c82012-02-09 07:26:21 +0000870 llvm::DIType ThisPtrType = DBuilder.createPointerType(PointeeType, Size, Align);
Devang Patelfa59ac32011-10-28 21:12:13 +0000871 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
Eric Christopher39e39c82012-02-09 07:26:21 +0000872 // TODO: This and the artificial type below are misleading, the
873 // types aren't artificial the argument is, but the current
874 // metadata doesn't represent that.
875 ThisPtrType = DBuilder.createArtificialType(ThisPtrType);
Devang Patelfa59ac32011-10-28 21:12:13 +0000876 Elts.push_back(ThisPtrType);
877 } else {
Eric Christopher39e39c82012-02-09 07:26:21 +0000878 llvm::DIType ThisPtrType = getOrCreateType(ThisPtr, Unit);
Devang Patelfa59ac32011-10-28 21:12:13 +0000879 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
Eric Christopher39e39c82012-02-09 07:26:21 +0000880 ThisPtrType = DBuilder.createArtificialType(ThisPtrType);
Devang Patelfa59ac32011-10-28 21:12:13 +0000881 Elts.push_back(ThisPtrType);
882 }
Eric Christopher19329c42011-09-14 01:10:50 +0000883 }
Devang Patel3d4e6d92010-01-28 00:28:01 +0000884
885 // Copy rest of the arguments.
886 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
887 Elts.push_back(Args.getElement(i));
888
Jay Foaddbf81d82011-04-24 10:11:03 +0000889 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
Devang Patel3d4e6d92010-01-28 00:28:01 +0000890
Devang Pateld7185b72011-02-22 18:56:36 +0000891 return DBuilder.createSubroutineType(Unit, EltTypeArray);
Devang Patel3d4e6d92010-01-28 00:28:01 +0000892}
893
Devang Patelf79199d2010-10-22 17:11:50 +0000894/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
895/// inside a function.
896static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
Nick Lewycky16790352011-11-10 00:34:02 +0000897 if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
Devang Patelf79199d2010-10-22 17:11:50 +0000898 return isFunctionLocalClass(NRD);
Nick Lewycky16790352011-11-10 00:34:02 +0000899 if (isa<FunctionDecl>(RD->getDeclContext()))
Devang Patelf79199d2010-10-22 17:11:50 +0000900 return true;
901 return false;
Devang Patelf79199d2010-10-22 17:11:50 +0000902}
Nick Lewycky2219ef02011-11-09 04:25:21 +0000903
Anders Carlssonb85f0ab2010-01-26 04:49:33 +0000904/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
905/// a single member function GlobalDecl.
906llvm::DISubprogram
Anders Carlsson17ed0492010-01-26 05:19:50 +0000907CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
Devang Patel408dcf62010-03-09 00:44:50 +0000908 llvm::DIFile Unit,
Dan Gohman196f7102010-08-20 22:02:57 +0000909 llvm::DIType RecordTy) {
Anders Carlsson17ed0492010-01-26 05:19:50 +0000910 bool IsCtorOrDtor =
911 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
912
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000913 StringRef MethodName = getFunctionName(Method);
Devang Patel3d4e6d92010-01-28 00:28:01 +0000914 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit);
Anders Carlsson17ed0492010-01-26 05:19:50 +0000915
916 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
917 // make sense to give a single ctor/dtor a linkage name.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000918 StringRef MethodLinkageName;
Devang Patelf79199d2010-10-22 17:11:50 +0000919 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
Anders Carlssonea836bc2010-06-22 16:16:50 +0000920 MethodLinkageName = CGM.getMangledName(Method);
Anders Carlsson17ed0492010-01-26 05:19:50 +0000921
Anders Carlssonb85f0ab2010-01-26 04:49:33 +0000922 // Get the location for the method.
Devang Patelc5ffabc2010-05-12 23:46:38 +0000923 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
924 unsigned MethodLine = getLineNumber(Method->getLocation());
Anders Carlssonb85f0ab2010-01-26 04:49:33 +0000925
926 // Collect virtual method info.
927 llvm::DIType ContainingType;
928 unsigned Virtuality = 0;
929 unsigned VIndex = 0;
Anders Carlsson17ed0492010-01-26 05:19:50 +0000930
Anders Carlssonb85f0ab2010-01-26 04:49:33 +0000931 if (Method->isVirtual()) {
Anders Carlsson17ed0492010-01-26 05:19:50 +0000932 if (Method->isPure())
933 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
934 else
935 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
936
937 // It doesn't make sense to give a virtual destructor a vtable index,
938 // since a single destructor has two entries in the vtable.
939 if (!isa<CXXDestructorDecl>(Method))
Peter Collingbournea8341662011-09-26 01:56:30 +0000940 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
Anders Carlssonb85f0ab2010-01-26 04:49:33 +0000941 ContainingType = RecordTy;
942 }
943
Devang Pateldb2732a2010-09-29 21:05:52 +0000944 unsigned Flags = 0;
945 if (Method->isImplicit())
946 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patel330b65e2010-09-29 21:46:16 +0000947 AccessSpecifier Access = Method->getAccess();
948 if (Access == clang::AS_private)
949 Flags |= llvm::DIDescriptor::FlagPrivate;
950 else if (Access == clang::AS_protected)
951 Flags |= llvm::DIDescriptor::FlagProtected;
Devang Pateld18c5aa2010-10-01 23:32:17 +0000952 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
953 if (CXXC->isExplicit())
954 Flags |= llvm::DIDescriptor::FlagExplicit;
955 } else if (const CXXConversionDecl *CXXC =
956 dyn_cast<CXXConversionDecl>(Method)) {
957 if (CXXC->isExplicit())
958 Flags |= llvm::DIDescriptor::FlagExplicit;
959 }
Devang Patel251f8592010-10-07 22:03:49 +0000960 if (Method->hasPrototype())
961 Flags |= llvm::DIDescriptor::FlagPrototyped;
Eric Christopher947bb5a2012-03-13 23:40:48 +0000962
963 llvm::DIArray TParamsArray = CollectFunctionTemplateParams(Method, Unit);
Anders Carlssonb85f0ab2010-01-26 04:49:33 +0000964 llvm::DISubprogram SP =
Nick Lewycky0112b112011-09-01 21:49:51 +0000965 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Devang Patel00afcbe2010-12-08 22:42:58 +0000966 MethodDefUnit, MethodLine,
967 MethodTy, /*isLocalToUnit=*/false,
968 /* isDefinition=*/ false,
969 Virtuality, VIndex, ContainingType,
Eric Christopher947bb5a2012-03-13 23:40:48 +0000970 Flags, CGM.getLangOpts().Optimize, NULL,
971 TParamsArray);
Anders Carlsson17ed0492010-01-26 05:19:50 +0000972
Eric Christopher459532e2011-11-17 23:45:00 +0000973 SPCache[Method->getCanonicalDecl()] = llvm::WeakVH(SP);
Anders Carlssonb85f0ab2010-01-26 04:49:33 +0000974
975 return SP;
976}
977
Devang Patel7a12ad02010-01-19 01:54:44 +0000978/// CollectCXXMemberFunctions - A helper function to collect debug info for
Eric Christopherffbc4d02012-01-12 01:26:51 +0000979/// C++ member functions. This is used while creating debug info entry for
Devang Patel7a12ad02010-01-19 01:54:44 +0000980/// a Record.
981void CGDebugInfo::
Devang Patel408dcf62010-03-09 00:44:50 +0000982CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000983 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman196f7102010-08-20 22:02:57 +0000984 llvm::DIType RecordTy) {
Eric Christopher947bb5a2012-03-13 23:40:48 +0000985
986 // Since we want more than just the individual member decls if we
987 // have templated functions iterate over every declaration to gather
988 // the functions.
989 for(DeclContext::decl_iterator I = RD->decls_begin(),
990 E = RD->decls_end(); I != E; ++I) {
991 Decl *D = *I;
992 if (D->isImplicit() && !D->isUsed())
Anders Carlssonc1821152010-01-26 04:40:11 +0000993 continue;
Devang Patel7a12ad02010-01-19 01:54:44 +0000994
Eric Christopher947bb5a2012-03-13 23:40:48 +0000995 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
996 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
997 else if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D))
998 for (FunctionTemplateDecl::spec_iterator SI = FTD->spec_begin(),
999 SE = FTD->spec_end(); SI != SE; ++SI) {
1000 FunctionDecl *FD = *SI;
1001 if (CXXMethodDecl *M = dyn_cast<CXXMethodDecl>(FD))
1002 EltTys.push_back(CreateCXXMemberFunction(M, Unit, RecordTy));
1003 }
Devang Patel7a12ad02010-01-19 01:54:44 +00001004 }
1005}
1006
Devang Patel96b7f552010-08-27 17:47:47 +00001007/// CollectCXXFriends - A helper function to collect debug info for
1008/// C++ base classes. This is used while creating debug info entry for
1009/// a Record.
1010void CGDebugInfo::
1011CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001012 SmallVectorImpl<llvm::Value *> &EltTys,
Devang Patel96b7f552010-08-27 17:47:47 +00001013 llvm::DIType RecordTy) {
Eric Christopher8c363622012-01-12 01:26:58 +00001014 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
Devang Patel96b7f552010-08-27 17:47:47 +00001015 BE = RD->friend_end(); BI != BE; ++BI) {
Nick Lewycky0112b112011-09-01 21:49:51 +00001016 if ((*BI)->isUnsupportedFriend())
1017 continue;
Devang Patel00afcbe2010-12-08 22:42:58 +00001018 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Devang Pateld7185b72011-02-22 18:56:36 +00001019 EltTys.push_back(DBuilder.createFriend(RecordTy,
Devang Patel00afcbe2010-12-08 22:42:58 +00001020 getOrCreateType(TInfo->getType(),
1021 Unit)));
Devang Patel96b7f552010-08-27 17:47:47 +00001022 }
1023}
1024
Devang Patelc54353d2010-01-25 23:32:18 +00001025/// CollectCXXBases - A helper function to collect debug info for
1026/// C++ base classes. This is used while creating debug info entry for
1027/// a Record.
1028void CGDebugInfo::
Devang Patel408dcf62010-03-09 00:44:50 +00001029CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001030 SmallVectorImpl<llvm::Value *> &EltTys,
Dan Gohman196f7102010-08-20 22:02:57 +00001031 llvm::DIType RecordTy) {
Devang Patelc54353d2010-01-25 23:32:18 +00001032
Devang Patel1c0954c2010-02-01 21:39:52 +00001033 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1034 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
1035 BE = RD->bases_end(); BI != BE; ++BI) {
Devang Patel128aa9d2010-01-28 21:54:15 +00001036 unsigned BFlags = 0;
Devang Patel84852bb2011-04-04 20:36:06 +00001037 uint64_t BaseOffset;
Devang Patel128aa9d2010-01-28 21:54:15 +00001038
1039 const CXXRecordDecl *Base =
1040 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
1041
1042 if (BI->isVirtual()) {
Anders Carlsson4cbe83c2010-03-11 07:15:17 +00001043 // virtual base offset offset is -ve. The code generator emits dwarf
Devang Patel0ae70d12010-02-09 19:09:28 +00001044 // expression where it expects +ve number.
Ken Dyckbb4e9772011-04-07 12:37:09 +00001045 BaseOffset =
Peter Collingbournea8341662011-09-26 01:56:30 +00001046 0 - CGM.getVTableContext()
1047 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
Devang Pateldb2732a2010-09-29 21:05:52 +00001048 BFlags = llvm::DIDescriptor::FlagVirtual;
Devang Patel128aa9d2010-01-28 21:54:15 +00001049 } else
Devang Patel84852bb2011-04-04 20:36:06 +00001050 BaseOffset = RL.getBaseClassOffsetInBits(Base);
Ken Dyckbb4e9772011-04-07 12:37:09 +00001051 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
1052 // BI->isVirtual() and bits when not.
Devang Patel128aa9d2010-01-28 21:54:15 +00001053
1054 AccessSpecifier Access = BI->getAccessSpecifier();
1055 if (Access == clang::AS_private)
Devang Pateldb2732a2010-09-29 21:05:52 +00001056 BFlags |= llvm::DIDescriptor::FlagPrivate;
Devang Patel128aa9d2010-01-28 21:54:15 +00001057 else if (Access == clang::AS_protected)
Devang Pateldb2732a2010-09-29 21:05:52 +00001058 BFlags |= llvm::DIDescriptor::FlagProtected;
Devang Patel128aa9d2010-01-28 21:54:15 +00001059
Devang Patel00afcbe2010-12-08 22:42:58 +00001060 llvm::DIType DTy =
Devang Pateld7185b72011-02-22 18:56:36 +00001061 DBuilder.createInheritance(RecordTy,
Devang Patel00afcbe2010-12-08 22:42:58 +00001062 getOrCreateType(BI->getType(), Unit),
Devang Patel84852bb2011-04-04 20:36:06 +00001063 BaseOffset, BFlags);
Devang Patel128aa9d2010-01-28 21:54:15 +00001064 EltTys.push_back(DTy);
1065 }
Devang Patelc54353d2010-01-25 23:32:18 +00001066}
1067
Devang Patelb87c4282011-04-05 22:54:11 +00001068/// CollectTemplateParams - A helper function to collect template parameters.
Devang Patel7522abd2011-04-05 17:30:54 +00001069llvm::DIArray CGDebugInfo::
Devang Patelb87c4282011-04-05 22:54:11 +00001070CollectTemplateParams(const TemplateParameterList *TPList,
1071 const TemplateArgumentList &TAList,
1072 llvm::DIFile Unit) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001073 SmallVector<llvm::Value *, 16> TemplateParams;
Devang Patel98d26c92011-04-05 20:15:06 +00001074 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
1075 const TemplateArgument &TA = TAList[i];
Devang Patelb87c4282011-04-05 22:54:11 +00001076 const NamedDecl *ND = TPList->getParam(i);
Devang Patel7522abd2011-04-05 17:30:54 +00001077 if (TA.getKind() == TemplateArgument::Type) {
1078 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
1079 llvm::DITemplateTypeParameter TTP =
Devang Patel98d26c92011-04-05 20:15:06 +00001080 DBuilder.createTemplateTypeParameter(TheCU, ND->getName(), TTy);
Devang Patel7522abd2011-04-05 17:30:54 +00001081 TemplateParams.push_back(TTP);
1082 } else if (TA.getKind() == TemplateArgument::Integral) {
1083 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
Devang Patel7522abd2011-04-05 17:30:54 +00001084 llvm::DITemplateValueParameter TVP =
Devang Patel98d26c92011-04-05 20:15:06 +00001085 DBuilder.createTemplateValueParameter(TheCU, ND->getName(), TTy,
1086 TA.getAsIntegral()->getZExtValue());
Devang Patel7522abd2011-04-05 17:30:54 +00001087 TemplateParams.push_back(TVP);
1088 }
1089 }
Jay Foaddbf81d82011-04-24 10:11:03 +00001090 return DBuilder.getOrCreateArray(TemplateParams);
Devang Patel7522abd2011-04-05 17:30:54 +00001091}
1092
Devang Patelb87c4282011-04-05 22:54:11 +00001093/// CollectFunctionTemplateParams - A helper function to collect debug
1094/// info for function template parameters.
1095llvm::DIArray CGDebugInfo::
1096CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
Eric Christopherfefafac2011-10-11 23:00:51 +00001097 if (FD->getTemplatedKind() ==
1098 FunctionDecl::TK_FunctionTemplateSpecialization) {
Devang Patelb87c4282011-04-05 22:54:11 +00001099 const TemplateParameterList *TList =
Eric Christopherfefafac2011-10-11 23:00:51 +00001100 FD->getTemplateSpecializationInfo()->getTemplate()
1101 ->getTemplateParameters();
Devang Patelb87c4282011-04-05 22:54:11 +00001102 return
1103 CollectTemplateParams(TList, *FD->getTemplateSpecializationArgs(), Unit);
1104 }
1105 return llvm::DIArray();
1106}
1107
1108/// CollectCXXTemplateParams - A helper function to collect debug info for
1109/// template parameters.
1110llvm::DIArray CGDebugInfo::
1111CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
1112 llvm::DIFile Unit) {
1113 llvm::PointerUnion<ClassTemplateDecl *,
1114 ClassTemplatePartialSpecializationDecl *>
1115 PU = TSpecial->getSpecializedTemplateOrPartial();
1116
1117 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
1118 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
1119 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
1120 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
1121 return CollectTemplateParams(TPList, TAList, Unit);
1122}
1123
Devang Patel84033fb2010-01-28 18:11:52 +00001124/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
Devang Patel408dcf62010-03-09 00:44:50 +00001125llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
Devang Pateld3cbaa12010-03-08 20:53:17 +00001126 if (VTablePtrType.isValid())
Devang Patel84033fb2010-01-28 18:11:52 +00001127 return VTablePtrType;
1128
1129 ASTContext &Context = CGM.getContext();
1130
1131 /* Function type */
Devang Patel00afcbe2010-12-08 22:42:58 +00001132 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
Jay Foaddbf81d82011-04-24 10:11:03 +00001133 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
Devang Pateld7185b72011-02-22 18:56:36 +00001134 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
Devang Patel84033fb2010-01-28 18:11:52 +00001135 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
Devang Pateld7185b72011-02-22 18:56:36 +00001136 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
Devang Patel00afcbe2010-12-08 22:42:58 +00001137 "__vtbl_ptr_type");
Devang Pateld7185b72011-02-22 18:56:36 +00001138 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
Devang Patel84033fb2010-01-28 18:11:52 +00001139 return VTablePtrType;
1140}
1141
Anders Carlsson11e51402010-04-17 20:15:18 +00001142/// getVTableName - Get vtable name for the given Class.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001143StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
Eric Christopherbfecca32012-01-25 21:47:09 +00001144 // Construct gdb compatible name name.
Devang Patel1c0954c2010-02-01 21:39:52 +00001145 std::string Name = "_vptr$" + RD->getNameAsString();
Devang Patel84033fb2010-01-28 18:11:52 +00001146
1147 // Copy this name on the side and use its reference.
Devang Patel0d61eeb2010-01-28 18:21:00 +00001148 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
Devang Patel84033fb2010-01-28 18:11:52 +00001149 memcpy(StrPtr, Name.data(), Name.length());
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001150 return StringRef(StrPtr, Name.length());
Devang Patel84033fb2010-01-28 18:11:52 +00001151}
1152
1153
Anders Carlsson11e51402010-04-17 20:15:18 +00001154/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
Devang Patel84033fb2010-01-28 18:11:52 +00001155/// debug info entry in EltTys vector.
1156void CGDebugInfo::
Anders Carlsson11e51402010-04-17 20:15:18 +00001157CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001158 SmallVectorImpl<llvm::Value *> &EltTys) {
Devang Patel1c0954c2010-02-01 21:39:52 +00001159 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
Devang Patel84033fb2010-01-28 18:11:52 +00001160
1161 // If there is a primary base then it will hold vtable info.
1162 if (RL.getPrimaryBase())
1163 return;
1164
1165 // If this class is not dynamic then there is not any vtable info to collect.
Devang Patel1c0954c2010-02-01 21:39:52 +00001166 if (!RD->isDynamicClass())
Devang Patel84033fb2010-01-28 18:11:52 +00001167 return;
1168
1169 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1170 llvm::DIType VPTR
Devang Patel15013e72011-06-24 22:00:59 +00001171 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Devang Patel00afcbe2010-12-08 22:42:58 +00001172 0, Size, 0, 0, 0,
1173 getOrCreateVTablePtrType(Unit));
Devang Patel84033fb2010-01-28 18:11:52 +00001174 EltTys.push_back(VPTR);
1175}
1176
Devang Patel91bbb552010-09-30 19:05:55 +00001177/// getOrCreateRecordType - Emit record type's standalone debug info.
1178llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
1179 SourceLocation Loc) {
Nick Lewycky2219ef02011-11-09 04:25:21 +00001180 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
Devang Patel91bbb552010-09-30 19:05:55 +00001181 return T;
1182}
1183
Devang Patel410dc002009-02-25 01:36:11 +00001184/// CreateType - get structure or union type.
Devang Patel283e89d2011-01-17 22:23:07 +00001185llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty) {
Devang Patel3efd1472010-02-01 21:52:22 +00001186 RecordDecl *RD = Ty->getDecl();
Mike Stump11289f42009-09-09 15:08:12 +00001187
Chris Lattneraffb3732008-11-10 06:08:34 +00001188 // Get overall information about the record type for the debug info.
Devang Patelc5ffabc2010-05-12 23:46:38 +00001189 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
Mike Stump11289f42009-09-09 15:08:12 +00001190
Chris Lattneraffb3732008-11-10 06:08:34 +00001191 // Records and classes and unions can all be recursive. To handle them, we
1192 // first generate a debug descriptor for the struct as a forward declaration.
1193 // Then (if it is a definition) we go through and get debug info for all of
1194 // its members. Finally, we create a descriptor for the complete type (which
1195 // may refer to the forward decl if the struct is recursive) and replace all
1196 // uses of the forward declaration with the final definition.
Eric Christopher45c4d472012-01-20 22:10:15 +00001197
Eric Christopher4c006e52012-02-16 22:54:45 +00001198 llvm::DIType FwdDecl = getOrCreateLimitedType(QualType(Ty, 0), DefUnit);
Devang Patel8f3f76f2010-07-08 19:56:29 +00001199
Eric Christopher4c006e52012-02-16 22:54:45 +00001200 if (FwdDecl.isForwardDecl())
1201 return FwdDecl;
Benjamin Kramer8cc491a2012-03-20 19:49:14 +00001202
1203 llvm::TrackingVH<llvm::MDNode> FwdDeclNode(FwdDecl);
1204
Devang Patel01bb5ce2010-03-11 20:01:48 +00001205 // Push the struct on region stack.
Eric Christopher2f45aaa2011-09-29 00:00:45 +00001206 LexicalBlockStack.push_back(FwdDeclNode);
Devang Patelba4ad7f2010-05-07 18:12:35 +00001207 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
Chris Lattneraffb3732008-11-10 06:08:34 +00001208
Eric Christopher4c006e52012-02-16 22:54:45 +00001209 // Add this to the completed types cache since we're completing it.
1210 CompletedTypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
1211
Chris Lattneraffb3732008-11-10 06:08:34 +00001212 // Convert all the elements.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001213 SmallVector<llvm::Value *, 16> EltTys;
Chris Lattneraffb3732008-11-10 06:08:34 +00001214
Eric Christopher8913bd62012-01-26 07:01:04 +00001215 // Note: The split of CXXDecl information here is intentional, the
1216 // gdb tests will depend on a certain ordering at printout. The debug
1217 // information offsets are still correct if we merge them all together
1218 // though.
Devang Patel3efd1472010-02-01 21:52:22 +00001219 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Devang Patel946edc12010-01-28 21:41:35 +00001220 if (CXXDecl) {
Eric Christopher57200332012-01-26 06:20:57 +00001221 CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl);
1222 CollectVTableInfo(CXXDecl, DefUnit, EltTys);
Eric Christopher8913bd62012-01-26 07:01:04 +00001223 }
1224
1225 // Collect static variables with initializers and other fields.
1226 CollectRecordStaticVars(RD, FwdDecl);
1227 CollectRecordFields(RD, DefUnit, EltTys, FwdDecl);
1228 llvm::DIArray TParamsArray;
1229 if (CXXDecl) {
Eric Christopher57200332012-01-26 06:20:57 +00001230 CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl);
1231 CollectCXXFriends(CXXDecl, DefUnit, EltTys, FwdDecl);
Devang Patel7522abd2011-04-05 17:30:54 +00001232 if (const ClassTemplateSpecializationDecl *TSpecial
1233 = dyn_cast<ClassTemplateSpecializationDecl>(RD))
Eric Christopher57200332012-01-26 06:20:57 +00001234 TParamsArray = CollectCXXTemplateParams(TSpecial, DefUnit);
Devang Patel00afcbe2010-12-08 22:42:58 +00001235 }
Devang Patelabb44132010-01-28 00:54:21 +00001236
Eric Christopher2f45aaa2011-09-29 00:00:45 +00001237 LexicalBlockStack.pop_back();
Devang Patel00afcbe2010-12-08 22:42:58 +00001238 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator RI =
1239 RegionMap.find(Ty->getDecl());
1240 if (RI != RegionMap.end())
1241 RegionMap.erase(RI);
1242
Jay Foaddbf81d82011-04-24 10:11:03 +00001243 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Eric Christopher4c006e52012-02-16 22:54:45 +00001244 // FIXME: Magic numbers ahoy! These should be changed when we
1245 // get some enums in llvm/Analysis/DebugInfo.h to refer to
1246 // them.
Eric Christopher9a897052012-02-15 23:51:20 +00001247 if (RD->isUnion())
Benjamin Kramer8cc491a2012-03-20 19:49:14 +00001248 FwdDeclNode->replaceOperandWith(10, Elements);
Eric Christopher9a897052012-02-15 23:51:20 +00001249 else if (CXXDecl) {
Benjamin Kramer8cc491a2012-03-20 19:49:14 +00001250 FwdDeclNode->replaceOperandWith(10, Elements);
1251 FwdDeclNode->replaceOperandWith(13, TParamsArray);
Eric Christopher9a897052012-02-15 23:51:20 +00001252 } else
Benjamin Kramer8cc491a2012-03-20 19:49:14 +00001253 FwdDeclNode->replaceOperandWith(10, Elements);
Eric Christopher9a897052012-02-15 23:51:20 +00001254
Benjamin Kramer8cc491a2012-03-20 19:49:14 +00001255 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDeclNode);
1256 return llvm::DIType(FwdDeclNode);
Chris Lattneraffb3732008-11-10 06:08:34 +00001257}
1258
John McCall8b07ec22010-05-15 11:32:37 +00001259/// CreateType - get objective-c object type.
1260llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1261 llvm::DIFile Unit) {
1262 // Ignore protocols.
1263 return getOrCreateType(Ty->getBaseType(), Unit);
1264}
1265
Devang Patelf4c205b2009-02-26 21:10:26 +00001266/// CreateType - get objective-c interface type.
1267llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
Devang Patel408dcf62010-03-09 00:44:50 +00001268 llvm::DIFile Unit) {
Devang Patel3efd1472010-02-01 21:52:22 +00001269 ObjCInterfaceDecl *ID = Ty->getDecl();
Douglas Gregor2f53a0b2010-11-30 06:38:09 +00001270 if (!ID)
1271 return llvm::DIType();
Devang Patelf4c205b2009-02-26 21:10:26 +00001272
1273 // Get overall information about the record type for the debug info.
Devang Patel408dcf62010-03-09 00:44:50 +00001274 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
Devang Patelc5ffabc2010-05-12 23:46:38 +00001275 unsigned Line = getLineNumber(ID->getLocation());
Devang Patel408dcf62010-03-09 00:44:50 +00001276 unsigned RuntimeLang = TheCU.getLanguage();
Chris Lattnerc6ad2582009-05-02 01:13:16 +00001277
Eric Christopherfab289a2011-10-06 00:31:18 +00001278 // If this is just a forward declaration return a special forward-declaration
1279 // debug type since we won't be able to lay out the entire type.
Douglas Gregorc8b0c9d2011-12-15 23:32:29 +00001280 ObjCInterfaceDecl *Def = ID->getDefinition();
1281 if (!Def) {
Devang Patel00afcbe2010-12-08 22:42:58 +00001282 llvm::DIType FwdDecl =
Eric Christophere908a7a2012-02-20 18:05:04 +00001283 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
1284 ID->getName(), DefUnit, Line,
1285 RuntimeLang);
Dan Gohman66427b12010-08-23 21:15:56 +00001286 return FwdDecl;
1287 }
Douglas Gregorc8b0c9d2011-12-15 23:32:29 +00001288 ID = Def;
Dan Gohman66427b12010-08-23 21:15:56 +00001289
Eric Christopher4c006e52012-02-16 22:54:45 +00001290 // Bit size, align and offset of the type.
1291 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1292 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Mike Stump11289f42009-09-09 15:08:12 +00001293
Eric Christopher4c006e52012-02-16 22:54:45 +00001294 unsigned Flags = 0;
1295 if (ID->getImplementation())
1296 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
1297
1298 llvm::DIType RealDecl =
1299 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
1300 Line, Size, Align, Flags,
1301 llvm::DIArray(), RuntimeLang);
1302
Eric Christopher7a5fdd82012-02-27 08:23:23 +00001303 // Otherwise, insert it into the CompletedTypeCache so that recursive uses
1304 // will find it and we're emitting the complete type.
1305 CompletedTypeCache[QualType(Ty, 0).getAsOpaquePtr()] = RealDecl;
Devang Patel01bb5ce2010-03-11 20:01:48 +00001306 // Push the struct on region stack.
Benjamin Kramer8cc491a2012-03-20 19:49:14 +00001307 llvm::TrackingVH<llvm::MDNode> FwdDeclNode(RealDecl);
Eric Christopher4c006e52012-02-16 22:54:45 +00001308
Eric Christopher2f45aaa2011-09-29 00:00:45 +00001309 LexicalBlockStack.push_back(FwdDeclNode);
Eric Christopher4c006e52012-02-16 22:54:45 +00001310 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
Devang Patelf4c205b2009-02-26 21:10:26 +00001311
1312 // Convert all the elements.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001313 SmallVector<llvm::Value *, 16> EltTys;
Devang Patelf4c205b2009-02-26 21:10:26 +00001314
Devang Patel3efd1472010-02-01 21:52:22 +00001315 ObjCInterfaceDecl *SClass = ID->getSuperClass();
Devang Patelc0f58ea2009-03-10 21:30:26 +00001316 if (SClass) {
Mike Stump11289f42009-09-09 15:08:12 +00001317 llvm::DIType SClassTy =
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001318 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
Douglas Gregor2f53a0b2010-11-30 06:38:09 +00001319 if (!SClassTy.isValid())
1320 return llvm::DIType();
1321
Mike Stump11289f42009-09-09 15:08:12 +00001322 llvm::DIType InhTag =
Eric Christopher4c006e52012-02-16 22:54:45 +00001323 DBuilder.createInheritance(RealDecl, SClassTy, 0, 0);
Devang Patelc0f58ea2009-03-10 21:30:26 +00001324 EltTys.push_back(InhTag);
1325 }
1326
Devang Patel37a5c952012-02-07 18:40:30 +00001327 for (ObjCContainerDecl::prop_iterator I = ID->prop_begin(),
1328 E = ID->prop_end(); I != E; ++I) {
1329 const ObjCPropertyDecl *PD = *I;
1330 llvm::MDNode *PropertyNode =
1331 DBuilder.createObjCProperty(PD->getName(),
Devang Patel56a321d2012-02-07 18:55:08 +00001332 getSelectorName(PD->getGetterName()),
1333 getSelectorName(PD->getSetterName()),
1334 PD->getPropertyAttributes());
Devang Patel37a5c952012-02-07 18:40:30 +00001335 EltTys.push_back(PropertyNode);
1336 }
1337
Devang Patel3efd1472010-02-01 21:52:22 +00001338 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
Devang Patelf4c205b2009-02-26 21:10:26 +00001339 unsigned FieldNo = 0;
Fariborz Jahanian885e9df2010-10-01 00:01:53 +00001340 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
Fariborz Jahanian77890872010-10-11 23:55:47 +00001341 Field = Field->getNextIvar(), ++FieldNo) {
Devang Patelf4c205b2009-02-26 21:10:26 +00001342 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Douglas Gregor2f53a0b2010-11-30 06:38:09 +00001343 if (!FieldTy.isValid())
1344 return llvm::DIType();
1345
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001346 StringRef FieldName = Field->getName();
Devang Patelf4c205b2009-02-26 21:10:26 +00001347
Devang Pateldf348f12009-04-27 22:40:36 +00001348 // Ignore unnamed fields.
Devang Patel58bf6e12009-11-25 17:37:31 +00001349 if (FieldName.empty())
Devang Pateldf348f12009-04-27 22:40:36 +00001350 continue;
1351
Devang Patelf4c205b2009-02-26 21:10:26 +00001352 // Get the location for the field.
Devang Patelc5ffabc2010-05-12 23:46:38 +00001353 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1354 unsigned FieldLine = getLineNumber(Field->getLocation());
Devang Patel9f804932009-03-20 18:24:39 +00001355 QualType FType = Field->getType();
1356 uint64_t FieldSize = 0;
1357 unsigned FieldAlign = 0;
Devang Patelec4bad52009-03-19 00:23:53 +00001358
Devang Patel9f804932009-03-20 18:24:39 +00001359 if (!FType->isIncompleteArrayType()) {
Mike Stump11289f42009-09-09 15:08:12 +00001360
Devang Patel9f804932009-03-20 18:24:39 +00001361 // Bit size, align and offset of the type.
Richard Smithcaf33902011-10-10 18:28:20 +00001362 FieldSize = Field->isBitField()
1363 ? Field->getBitWidthValue(CGM.getContext())
1364 : CGM.getContext().getTypeSize(FType);
1365 FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel9f804932009-03-20 18:24:39 +00001366 }
1367
Eric Christopherfab289a2011-10-06 00:31:18 +00001368 // We can't know the offset of our ivar in the structure if we're using
1369 // the non-fragile abi and the debugger should ignore the value anyways.
1370 // Call it the FieldNo+1 due to how debuggers use the information,
1371 // e.g. negating the value when it needs a lookup in the dynamic table.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001372 uint64_t FieldOffset = CGM.getLangOpts().ObjCNonFragileABI ? FieldNo+1
Eric Christopherfab289a2011-10-06 00:31:18 +00001373 : RL.getFieldOffset(FieldNo);
Mike Stump11289f42009-09-09 15:08:12 +00001374
Devang Patelec4bad52009-03-19 00:23:53 +00001375 unsigned Flags = 0;
1376 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
Devang Pateldb2732a2010-09-29 21:05:52 +00001377 Flags = llvm::DIDescriptor::FlagProtected;
Devang Patelec4bad52009-03-19 00:23:53 +00001378 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
Devang Pateldb2732a2010-09-29 21:05:52 +00001379 Flags = llvm::DIDescriptor::FlagPrivate;
Mike Stump11289f42009-09-09 15:08:12 +00001380
Devang Patela21bbb22012-02-04 01:15:04 +00001381 llvm::MDNode *PropertyNode = NULL;
Devang Patel37a5c952012-02-07 18:40:30 +00001382 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) {
Devang Patel5a540652011-09-19 18:54:16 +00001383 if (ObjCPropertyImplDecl *PImpD =
Devang Patel37a5c952012-02-07 18:40:30 +00001384 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) {
1385 if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) {
Devang Patel56a321d2012-02-07 18:55:08 +00001386 PropertyNode =
1387 DBuilder.createObjCProperty(PD->getName(),
Devang Patel37a5c952012-02-07 18:40:30 +00001388 getSelectorName(PD->getGetterName()),
1389 getSelectorName(PD->getSetterName()),
1390 PD->getPropertyAttributes());
Devang Patel00fca3a2012-02-08 00:10:20 +00001391 }
Devang Patel37a5c952012-02-07 18:40:30 +00001392 }
Devang Patela21bbb22012-02-04 01:15:04 +00001393 }
Devang Patel9d6c8572011-04-16 00:12:55 +00001394 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1395 FieldLine, FieldSize, FieldAlign,
1396 FieldOffset, Flags, FieldTy,
Devang Patel60fc2422012-02-06 18:20:02 +00001397 PropertyNode);
Devang Patelf4c205b2009-02-26 21:10:26 +00001398 EltTys.push_back(FieldTy);
1399 }
Mike Stump11289f42009-09-09 15:08:12 +00001400
Jay Foaddbf81d82011-04-24 10:11:03 +00001401 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Benjamin Kramer8cc491a2012-03-20 19:49:14 +00001402 FwdDeclNode->replaceOperandWith(10, Elements);
Eric Christopher4c006e52012-02-16 22:54:45 +00001403
Eric Christopher2f45aaa2011-09-29 00:00:45 +00001404 LexicalBlockStack.pop_back();
Benjamin Kramer8cc491a2012-03-20 19:49:14 +00001405 return llvm::DIType(FwdDeclNode);
Devang Patelf4c205b2009-02-26 21:10:26 +00001406}
1407
Nick Lewycky2219ef02011-11-09 04:25:21 +00001408llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty, llvm::DIFile Unit) {
Devang Patelb4073382010-02-23 22:59:39 +00001409 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
Devang Patel0b37e792011-04-08 21:56:52 +00001410 int64_t NumElems = Ty->getNumElements();
1411 int64_t LowerBound = 0;
1412 if (NumElems == 0)
1413 // If number of elements are not known then this is an unbounded array.
1414 // Use Low = 1, Hi = 0 to express such arrays.
1415 LowerBound = 1;
1416 else
Devang Patelb4073382010-02-23 22:59:39 +00001417 --NumElems;
Devang Patelb4073382010-02-23 22:59:39 +00001418
Devang Patel0b37e792011-04-08 21:56:52 +00001419 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(LowerBound, NumElems);
Jay Foaddbf81d82011-04-24 10:11:03 +00001420 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
Devang Patelb4073382010-02-23 22:59:39 +00001421
1422 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1423 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1424
1425 return
Devang Pateld7185b72011-02-22 18:56:36 +00001426 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
Devang Patelb4073382010-02-23 22:59:39 +00001427}
1428
Chris Lattneraffb3732008-11-10 06:08:34 +00001429llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
Devang Patel408dcf62010-03-09 00:44:50 +00001430 llvm::DIFile Unit) {
Anders Carlssond8cd7b62009-01-05 01:23:29 +00001431 uint64_t Size;
1432 uint64_t Align;
Mike Stump11289f42009-09-09 15:08:12 +00001433
1434
Nuno Lopesbb537dc2009-01-28 00:35:17 +00001435 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
Anders Carlssond8cd7b62009-01-05 01:23:29 +00001436 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
Anders Carlssond8cd7b62009-01-05 01:23:29 +00001437 Size = 0;
1438 Align =
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001439 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
Nuno Lopesbb537dc2009-01-28 00:35:17 +00001440 } else if (Ty->isIncompleteArrayType()) {
1441 Size = 0;
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001442 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
Devang Patela540f142011-04-04 23:18:38 +00001443 } else if (Ty->isDependentSizedArrayType() || Ty->isIncompleteType()) {
Devang Patel1ffe2342011-04-01 19:02:33 +00001444 Size = 0;
1445 Align = 0;
Anders Carlssond8cd7b62009-01-05 01:23:29 +00001446 } else {
1447 // Size and align of the whole array, not the element type.
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001448 Size = CGM.getContext().getTypeSize(Ty);
1449 Align = CGM.getContext().getTypeAlign(Ty);
Anders Carlssond8cd7b62009-01-05 01:23:29 +00001450 }
Mike Stump11289f42009-09-09 15:08:12 +00001451
Chris Lattneraffb3732008-11-10 06:08:34 +00001452 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1453 // interior arrays, do we care? Why aren't nested arrays represented the
1454 // obvious/recursive way?
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001455 SmallVector<llvm::Value *, 8> Subscripts;
Chris Lattneraffb3732008-11-10 06:08:34 +00001456 QualType EltTy(Ty, 0);
Devang Patelc0601d12010-10-06 18:30:00 +00001457 if (Ty->isIncompleteArrayType())
Chris Lattneraffb3732008-11-10 06:08:34 +00001458 EltTy = Ty->getElementType();
Devang Patelc0601d12010-10-06 18:30:00 +00001459 else {
1460 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
Devang Patel0b37e792011-04-08 21:56:52 +00001461 int64_t UpperBound = 0;
1462 int64_t LowerBound = 0;
Nick Lewyckyd85ae782011-04-09 00:25:15 +00001463 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty)) {
Devang Patelc0601d12010-10-06 18:30:00 +00001464 if (CAT->getSize().getZExtValue())
Devang Patel0b37e792011-04-08 21:56:52 +00001465 UpperBound = CAT->getSize().getZExtValue() - 1;
Nick Lewyckyd85ae782011-04-09 00:25:15 +00001466 } else
Devang Patel0b37e792011-04-08 21:56:52 +00001467 // This is an unbounded array. Use Low = 1, Hi = 0 to express such
1468 // arrays.
1469 LowerBound = 1;
1470
Devang Patelc0601d12010-10-06 18:30:00 +00001471 // FIXME: Verify this is right for VLAs.
Eric Christopherfefafac2011-10-11 23:00:51 +00001472 Subscripts.push_back(DBuilder.getOrCreateSubrange(LowerBound,
1473 UpperBound));
Devang Patelc0601d12010-10-06 18:30:00 +00001474 EltTy = Ty->getElementType();
1475 }
Sanjiv Gupta224e8ea2008-06-09 10:47:41 +00001476 }
Mike Stump11289f42009-09-09 15:08:12 +00001477
Jay Foaddbf81d82011-04-24 10:11:03 +00001478 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
Chris Lattneraffb3732008-11-10 06:08:34 +00001479
Devang Patele21912d2009-10-20 19:55:01 +00001480 llvm::DIType DbgTy =
Devang Pateld7185b72011-02-22 18:56:36 +00001481 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
Devang Patel00afcbe2010-12-08 22:42:58 +00001482 SubscriptArray);
Devang Patele21912d2009-10-20 19:55:01 +00001483 return DbgTy;
Chris Lattneraffb3732008-11-10 06:08:34 +00001484}
1485
Anders Carlsson443f6772009-11-06 19:19:55 +00001486llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Devang Patel408dcf62010-03-09 00:44:50 +00001487 llvm::DIFile Unit) {
Anders Carlsson443f6772009-11-06 19:19:55 +00001488 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
1489 Ty, Ty->getPointeeType(), Unit);
1490}
Chris Lattneraffb3732008-11-10 06:08:34 +00001491
Douglas Gregorb8c7fe92011-01-22 01:58:15 +00001492llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1493 llvm::DIFile Unit) {
1494 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
1495 Ty, Ty->getPointeeType(), Unit);
1496}
1497
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001498llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Devang Patel408dcf62010-03-09 00:44:50 +00001499 llvm::DIFile U) {
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001500 QualType PointerDiffTy = CGM.getContext().getPointerDiffType();
1501 llvm::DIType PointerDiffDITy = getOrCreateType(PointerDiffTy, U);
1502
1503 if (!Ty->getPointeeType()->isFunctionType()) {
1504 // We have a data member pointer type.
1505 return PointerDiffDITy;
1506 }
1507
1508 // We have a member function pointer type. Treat it as a struct with two
1509 // ptrdiff_t members.
1510 std::pair<uint64_t, unsigned> Info = CGM.getContext().getTypeInfo(Ty);
1511
1512 uint64_t FieldOffset = 0;
Devang Patel00afcbe2010-12-08 22:42:58 +00001513 llvm::Value *ElementTypes[2];
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001514
1515 // FIXME: This should probably be a function type instead.
1516 ElementTypes[0] =
Devang Patel15013e72011-06-24 22:00:59 +00001517 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel00afcbe2010-12-08 22:42:58 +00001518 Info.first, Info.second, FieldOffset, 0,
1519 PointerDiffDITy);
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001520 FieldOffset += Info.first;
1521
1522 ElementTypes[1] =
Devang Patel15013e72011-06-24 22:00:59 +00001523 DBuilder.createMemberType(U, "ptr", U, 0,
Devang Patel00afcbe2010-12-08 22:42:58 +00001524 Info.first, Info.second, FieldOffset, 0,
1525 PointerDiffDITy);
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001526
Jay Foaddbf81d82011-04-24 10:11:03 +00001527 llvm::DIArray Elements = DBuilder.getOrCreateArray(ElementTypes);
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001528
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001529 return DBuilder.createStructType(U, StringRef("test"),
Devang Patel00afcbe2010-12-08 22:42:58 +00001530 U, 0, FieldOffset,
1531 0, 0, Elements);
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001532}
1533
Eli Friedman0dfb8892011-10-06 23:00:33 +00001534llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
1535 llvm::DIFile U) {
1536 // Ignore the atomic wrapping
1537 // FIXME: What is the correct representation?
1538 return getOrCreateType(Ty->getValueType(), U);
1539}
1540
Devang Patel41c20972010-08-23 22:07:25 +00001541/// CreateEnumType - get enumeration type.
Devang Patel283e89d2011-01-17 22:23:07 +00001542llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1543 llvm::DIFile Unit = getOrCreateFile(ED->getLocation());
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001544 SmallVector<llvm::Value *, 16> Enumerators;
Devang Patel41c20972010-08-23 22:07:25 +00001545
1546 // Create DIEnumerator elements for each enumerator.
1547 for (EnumDecl::enumerator_iterator
1548 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1549 Enum != EnumEnd; ++Enum) {
Devang Patel00afcbe2010-12-08 22:42:58 +00001550 Enumerators.push_back(
Devang Pateld7185b72011-02-22 18:56:36 +00001551 DBuilder.createEnumerator(Enum->getName(),
Devang Patel00afcbe2010-12-08 22:42:58 +00001552 Enum->getInitVal().getZExtValue()));
Devang Patel41c20972010-08-23 22:07:25 +00001553 }
1554
1555 // Return a CompositeType for the enum itself.
Jay Foaddbf81d82011-04-24 10:11:03 +00001556 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
Devang Patel41c20972010-08-23 22:07:25 +00001557
1558 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1559 unsigned Line = getLineNumber(ED->getLocation());
1560 uint64_t Size = 0;
Devang Patel22e99c22010-08-24 18:14:06 +00001561 uint64_t Align = 0;
1562 if (!ED->getTypeForDecl()->isIncompleteType()) {
1563 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1564 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1565 }
Devang Patel1bee63f2010-10-27 23:23:58 +00001566 llvm::DIDescriptor EnumContext =
John McCall147d0212011-02-22 22:38:33 +00001567 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Devang Patel41c20972010-08-23 22:07:25 +00001568 llvm::DIType DbgTy =
Devang Pateld7185b72011-02-22 18:56:36 +00001569 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
Devang Patel00afcbe2010-12-08 22:42:58 +00001570 Size, Align, EltArray);
Devang Patel41c20972010-08-23 22:07:25 +00001571 return DbgTy;
1572}
1573
Douglas Gregor0f139a12009-12-21 20:18:30 +00001574static QualType UnwrapTypeForDebugInfo(QualType T) {
1575 do {
1576 QualType LastT = T;
1577 switch (T->getTypeClass()) {
1578 default:
1579 return T;
1580 case Type::TemplateSpecialization:
1581 T = cast<TemplateSpecializationType>(T)->desugar();
1582 break;
John McCall424cec92011-01-19 06:33:43 +00001583 case Type::TypeOfExpr:
1584 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
Douglas Gregor0f139a12009-12-21 20:18:30 +00001585 break;
Douglas Gregor0f139a12009-12-21 20:18:30 +00001586 case Type::TypeOf:
1587 T = cast<TypeOfType>(T)->getUnderlyingType();
1588 break;
1589 case Type::Decltype:
1590 T = cast<DecltypeType>(T)->getUnderlyingType();
1591 break;
Alexis Hunte852b102011-05-24 22:41:36 +00001592 case Type::UnaryTransform:
1593 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1594 break;
John McCall81904512011-01-06 01:58:22 +00001595 case Type::Attributed:
1596 T = cast<AttributedType>(T)->getEquivalentType();
John McCall4223a9e2011-03-04 04:00:19 +00001597 break;
Abramo Bagnara6150c882010-05-11 21:36:43 +00001598 case Type::Elaborated:
1599 T = cast<ElaboratedType>(T)->getNamedType();
Douglas Gregor0f139a12009-12-21 20:18:30 +00001600 break;
Abramo Bagnara924a8f32010-12-10 16:29:40 +00001601 case Type::Paren:
1602 T = cast<ParenType>(T)->getInnerType();
1603 break;
Douglas Gregor0f139a12009-12-21 20:18:30 +00001604 case Type::SubstTemplateTypeParm:
1605 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
1606 break;
Anders Carlsson829c4132011-03-06 16:43:04 +00001607 case Type::Auto:
1608 T = cast<AutoType>(T)->getDeducedType();
1609 break;
Douglas Gregor0f139a12009-12-21 20:18:30 +00001610 }
1611
1612 assert(T != LastT && "Type unwrapping failed to unwrap!");
1613 if (T == LastT)
1614 return T;
1615 } while (true);
Anders Carlsson0acee6e2009-11-14 21:08:12 +00001616}
1617
Eric Christophercd888132011-12-16 23:40:18 +00001618/// getType - Get the type from the cache or return null type if it doesn't exist.
1619llvm::DIType CGDebugInfo::getTypeOrNull(QualType Ty) {
Mike Stump11289f42009-09-09 15:08:12 +00001620
Douglas Gregor0f139a12009-12-21 20:18:30 +00001621 // Unwrap the type as needed for debug information.
1622 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher8a41bd82012-02-13 14:56:11 +00001623
Daniel Dunbar1cbaae52009-09-19 19:27:24 +00001624 // Check for existing entry.
Ted Kremenek23c29f02010-03-29 18:29:57 +00001625 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
Daniel Dunbar1cbaae52009-09-19 19:27:24 +00001626 TypeCache.find(Ty.getAsOpaquePtr());
Daniel Dunbar99961382009-09-19 20:17:48 +00001627 if (it != TypeCache.end()) {
1628 // Verify that the debug info still exists.
1629 if (&*it->second)
1630 return llvm::DIType(cast<llvm::MDNode>(it->second));
1631 }
Daniel Dunbarde870bd2009-09-19 19:27:14 +00001632
Eric Christophercd888132011-12-16 23:40:18 +00001633 return llvm::DIType();
1634}
1635
Eric Christopher4c006e52012-02-16 22:54:45 +00001636/// getCompletedTypeOrNull - Get the type from the cache or return null if it
1637/// doesn't exist.
1638llvm::DIType CGDebugInfo::getCompletedTypeOrNull(QualType Ty) {
1639
1640 // Unwrap the type as needed for debug information.
1641 Ty = UnwrapTypeForDebugInfo(Ty);
1642
1643 // Check for existing entry.
1644 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
1645 CompletedTypeCache.find(Ty.getAsOpaquePtr());
1646 if (it != CompletedTypeCache.end()) {
1647 // Verify that the debug info still exists.
1648 if (&*it->second)
1649 return llvm::DIType(cast<llvm::MDNode>(it->second));
1650 }
1651
1652 return llvm::DIType();
1653}
1654
1655
Eric Christophercd888132011-12-16 23:40:18 +00001656/// getOrCreateType - Get the type from the cache or create a new
1657/// one if necessary.
1658llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile Unit) {
1659 if (Ty.isNull())
1660 return llvm::DIType();
1661
1662 // Unwrap the type as needed for debug information.
1663 Ty = UnwrapTypeForDebugInfo(Ty);
Eric Christopher8a41bd82012-02-13 14:56:11 +00001664
Eric Christopher4c006e52012-02-16 22:54:45 +00001665 llvm::DIType T = getCompletedTypeOrNull(Ty);
1666
Eric Christopher8a41bd82012-02-13 14:56:11 +00001667 if (T.Verify()) return T;
Eric Christophercd888132011-12-16 23:40:18 +00001668
Daniel Dunbar1cbaae52009-09-19 19:27:24 +00001669 // Otherwise create the type.
1670 llvm::DIType Res = CreateTypeNode(Ty, Unit);
Eric Christopher1c3785a2012-02-18 00:50:17 +00001671
1672 llvm::DIType TC = getTypeOrNull(Ty);
1673 if (TC.Verify() && TC.isForwardDecl())
1674 ReplaceMap.push_back(std::make_pair(Ty.getAsOpaquePtr(), TC));
Eric Christopher4c006e52012-02-16 22:54:45 +00001675
Anders Carlsson6037e782009-11-14 20:52:05 +00001676 // And update the type cache.
Eric Christopher4c006e52012-02-16 22:54:45 +00001677 TypeCache[Ty.getAsOpaquePtr()] = Res;
1678
1679 if (!Res.isForwardDecl())
1680 CompletedTypeCache[Ty.getAsOpaquePtr()] = Res;
Daniel Dunbar1cbaae52009-09-19 19:27:24 +00001681 return Res;
Daniel Dunbarde870bd2009-09-19 19:27:14 +00001682}
1683
Anders Carlsson6037e782009-11-14 20:52:05 +00001684/// CreateTypeNode - Create a new debug type node.
Nick Lewycky6aad6df2011-11-09 04:27:23 +00001685llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile Unit) {
John McCall0cf15512009-09-25 01:40:47 +00001686 // Handle qualifiers, which recursively handles what they refer to.
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00001687 if (Ty.hasLocalQualifiers())
John McCall0cf15512009-09-25 01:40:47 +00001688 return CreateQualifiedType(Ty, Unit);
Sanjiv Gupta98070572008-05-25 05:15:42 +00001689
Douglas Gregor0915b432009-12-21 19:57:21 +00001690 const char *Diag = 0;
1691
Sanjiv Gupta98070572008-05-25 05:15:42 +00001692 // Work out details of type.
Chris Lattneraffb3732008-11-10 06:08:34 +00001693 switch (Ty->getTypeClass()) {
Douglas Gregordeaad8c2009-02-26 23:50:07 +00001694#define TYPE(Class, Base)
1695#define ABSTRACT_TYPE(Class, Base)
1696#define NON_CANONICAL_TYPE(Class, Base)
1697#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1698#include "clang/AST/TypeNodes.def"
David Blaikie83d382b2011-09-23 05:06:16 +00001699 llvm_unreachable("Dependent types cannot show up in debug information");
Argyrios Kyrtzidise9189262009-08-19 01:28:17 +00001700
Anders Carlsson25ed5c22009-11-06 18:24:04 +00001701 case Type::ExtVector:
Devang Patelb4073382010-02-23 22:59:39 +00001702 case Type::Vector:
1703 return CreateType(cast<VectorType>(Ty), Unit);
Daniel Dunbarf5c79702009-07-14 01:20:56 +00001704 case Type::ObjCObjectPointer:
Daniel Dunbarde870bd2009-09-19 19:27:14 +00001705 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
John McCall8b07ec22010-05-15 11:32:37 +00001706 case Type::ObjCObject:
1707 return CreateType(cast<ObjCObjectType>(Ty), Unit);
Mike Stump11289f42009-09-09 15:08:12 +00001708 case Type::ObjCInterface:
Daniel Dunbarde870bd2009-09-19 19:27:14 +00001709 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
Nick Lewycky2219ef02011-11-09 04:25:21 +00001710 case Type::Builtin:
1711 return CreateType(cast<BuiltinType>(Ty));
1712 case Type::Complex:
1713 return CreateType(cast<ComplexType>(Ty));
1714 case Type::Pointer:
1715 return CreateType(cast<PointerType>(Ty), Unit);
Mike Stump31f099c2009-05-14 02:03:51 +00001716 case Type::BlockPointer:
Daniel Dunbarde870bd2009-09-19 19:27:14 +00001717 return CreateType(cast<BlockPointerType>(Ty), Unit);
Nick Lewycky2219ef02011-11-09 04:25:21 +00001718 case Type::Typedef:
1719 return CreateType(cast<TypedefType>(Ty), Unit);
Douglas Gregordeaad8c2009-02-26 23:50:07 +00001720 case Type::Record:
Nick Lewycky2219ef02011-11-09 04:25:21 +00001721 return CreateType(cast<RecordType>(Ty));
Douglas Gregordeaad8c2009-02-26 23:50:07 +00001722 case Type::Enum:
Nick Lewycky2219ef02011-11-09 04:25:21 +00001723 return CreateEnumType(cast<EnumType>(Ty)->getDecl());
Chris Lattneraffb3732008-11-10 06:08:34 +00001724 case Type::FunctionProto:
1725 case Type::FunctionNoProto:
Daniel Dunbarde870bd2009-09-19 19:27:14 +00001726 return CreateType(cast<FunctionType>(Ty), Unit);
Chris Lattneraffb3732008-11-10 06:08:34 +00001727 case Type::ConstantArray:
1728 case Type::VariableArray:
1729 case Type::IncompleteArray:
Daniel Dunbarde870bd2009-09-19 19:27:14 +00001730 return CreateType(cast<ArrayType>(Ty), Unit);
Anders Carlsson443f6772009-11-06 19:19:55 +00001731
1732 case Type::LValueReference:
1733 return CreateType(cast<LValueReferenceType>(Ty), Unit);
Douglas Gregorb8c7fe92011-01-22 01:58:15 +00001734 case Type::RValueReference:
1735 return CreateType(cast<RValueReferenceType>(Ty), Unit);
Anders Carlsson443f6772009-11-06 19:19:55 +00001736
Anders Carlsson3efc6e62009-12-06 18:00:51 +00001737 case Type::MemberPointer:
1738 return CreateType(cast<MemberPointerType>(Ty), Unit);
Douglas Gregor0915b432009-12-21 19:57:21 +00001739
Eli Friedman0dfb8892011-10-06 23:00:33 +00001740 case Type::Atomic:
1741 return CreateType(cast<AtomicType>(Ty), Unit);
1742
John McCall81904512011-01-06 01:58:22 +00001743 case Type::Attributed:
Douglas Gregor0915b432009-12-21 19:57:21 +00001744 case Type::TemplateSpecialization:
Douglas Gregor0915b432009-12-21 19:57:21 +00001745 case Type::Elaborated:
Abramo Bagnara924a8f32010-12-10 16:29:40 +00001746 case Type::Paren:
Douglas Gregor0915b432009-12-21 19:57:21 +00001747 case Type::SubstTemplateTypeParm:
Douglas Gregor0915b432009-12-21 19:57:21 +00001748 case Type::TypeOfExpr:
1749 case Type::TypeOf:
Douglas Gregor0f139a12009-12-21 20:18:30 +00001750 case Type::Decltype:
Alexis Hunte852b102011-05-24 22:41:36 +00001751 case Type::UnaryTransform:
Richard Smith30482bc2011-02-20 03:19:35 +00001752 case Type::Auto:
Douglas Gregor0f139a12009-12-21 20:18:30 +00001753 llvm_unreachable("type should have been unwrapped!");
Sanjiv Gupta98070572008-05-25 05:15:42 +00001754 }
Douglas Gregor0915b432009-12-21 19:57:21 +00001755
1756 assert(Diag && "Fall through without a diagnostic?");
David Blaikie9c902b52011-09-25 23:23:43 +00001757 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
Douglas Gregor0915b432009-12-21 19:57:21 +00001758 "debug information for %0 is not yet supported");
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00001759 CGM.getDiags().Report(DiagID)
Douglas Gregor0915b432009-12-21 19:57:21 +00001760 << Diag;
1761 return llvm::DIType();
Sanjiv Gupta98070572008-05-25 05:15:42 +00001762}
1763
Eric Christopher4c006e52012-02-16 22:54:45 +00001764/// getOrCreateLimitedType - Get the type from the cache or create a new
1765/// limited type if necessary.
1766llvm::DIType CGDebugInfo::getOrCreateLimitedType(QualType Ty,
1767 llvm::DIFile Unit) {
1768 if (Ty.isNull())
1769 return llvm::DIType();
1770
1771 // Unwrap the type as needed for debug information.
1772 Ty = UnwrapTypeForDebugInfo(Ty);
1773
1774 llvm::DIType T = getTypeOrNull(Ty);
1775
1776 // We may have cached a forward decl when we could have created
1777 // a non-forward decl. Go ahead and create a non-forward decl
1778 // now.
1779 if (T.Verify() && !T.isForwardDecl()) return T;
1780
1781 // Otherwise create the type.
1782 llvm::DIType Res = CreateLimitedTypeNode(Ty, Unit);
1783
Eric Christopher1c3785a2012-02-18 00:50:17 +00001784 if (T.Verify() && T.isForwardDecl())
1785 ReplaceMap.push_back(std::make_pair(Ty.getAsOpaquePtr(), T));
1786
Eric Christopher4c006e52012-02-16 22:54:45 +00001787 // And update the type cache.
1788 TypeCache[Ty.getAsOpaquePtr()] = Res;
1789 return Res;
1790}
1791
1792// TODO: Currently used for context chains when limiting debug info.
1793llvm::DIType CGDebugInfo::CreateLimitedType(const RecordType *Ty) {
1794 RecordDecl *RD = Ty->getDecl();
1795
1796 // Get overall information about the record type for the debug info.
1797 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1798 unsigned Line = getLineNumber(RD->getLocation());
1799 StringRef RDName = RD->getName();
1800
1801 llvm::DIDescriptor RDContext;
1802 if (CGM.getCodeGenOpts().LimitDebugInfo)
1803 RDContext = createContextChain(cast<Decl>(RD->getDeclContext()));
1804 else
1805 RDContext = getContextDescriptor(cast<Decl>(RD->getDeclContext()));
1806
1807 // If this is just a forward declaration, construct an appropriately
1808 // marked node and just return it.
Eric Christopher1c3785a2012-02-18 00:50:17 +00001809 if (!RD->getDefinition())
1810 return createRecordFwdDecl(RD, RDContext);
Eric Christopher4c006e52012-02-16 22:54:45 +00001811
1812 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1813 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1814 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
Benjamin Kramer8cc491a2012-03-20 19:49:14 +00001815 llvm::TrackingVH<llvm::MDNode> RealDecl;
Eric Christopher4c006e52012-02-16 22:54:45 +00001816
1817 if (RD->isUnion())
1818 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
1819 Size, Align, 0, llvm::DIArray());
1820 else if (CXXDecl) {
1821 RDName = getClassName(RD);
1822
1823 // FIXME: This could be a struct type giving a default visibility different
1824 // than C++ class type, but needs llvm metadata changes first.
1825 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
1826 Size, Align, 0, 0, llvm::DIType(),
Eric Christopher66562a42012-02-20 18:05:24 +00001827 llvm::DIArray(), llvm::DIType(),
Eric Christopher4c006e52012-02-16 22:54:45 +00001828 llvm::DIArray());
1829 } else
1830 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
1831 Size, Align, 0, llvm::DIArray());
1832
1833 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
1834 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = llvm::DIType(RealDecl);
1835
1836 if (CXXDecl) {
1837 // A class's primary base or the class itself contains the vtable.
1838 llvm::MDNode *ContainingType = NULL;
1839 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1840 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
1841 // Seek non virtual primary base root.
1842 while (1) {
1843 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
1844 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
1845 if (PBT && !BRL.isPrimaryBaseVirtual())
1846 PBase = PBT;
1847 else
1848 break;
1849 }
1850 ContainingType =
1851 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), DefUnit);
1852 }
1853 else if (CXXDecl->isDynamicClass())
1854 ContainingType = RealDecl;
1855
Eric Christopher2939e6e2012-02-17 07:09:48 +00001856 RealDecl->replaceOperandWith(12, ContainingType);
Eric Christopher4c006e52012-02-16 22:54:45 +00001857 }
1858 return llvm::DIType(RealDecl);
1859}
1860
1861/// CreateLimitedTypeNode - Create a new debug type node, but only forward
1862/// declare composite types that haven't been processed yet.
1863llvm::DIType CGDebugInfo::CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) {
1864
1865 // Work out details of type.
1866 switch (Ty->getTypeClass()) {
1867#define TYPE(Class, Base)
1868#define ABSTRACT_TYPE(Class, Base)
1869#define NON_CANONICAL_TYPE(Class, Base)
1870#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1871 #include "clang/AST/TypeNodes.def"
1872 llvm_unreachable("Dependent types cannot show up in debug information");
1873
1874 case Type::Record:
1875 return CreateLimitedType(cast<RecordType>(Ty));
1876 default:
1877 return CreateTypeNode(Ty, Unit);
1878 }
1879}
1880
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +00001881/// CreateMemberType - Create new member and increase Offset by FType's size.
1882llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001883 StringRef Name,
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +00001884 uint64_t *Offset) {
1885 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
1886 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
1887 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
Devang Patel15013e72011-06-24 22:00:59 +00001888 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
Devang Patel00afcbe2010-12-08 22:42:58 +00001889 FieldSize, FieldAlign,
1890 *Offset, 0, FieldTy);
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +00001891 *Offset += FieldSize;
1892 return Ty;
1893}
1894
Devang Patela6cb0642011-04-23 00:08:01 +00001895/// getFunctionDeclaration - Return debug info descriptor to describe method
1896/// declaration for the given method definition.
1897llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
1898 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1899 if (!FD) return llvm::DISubprogram();
1900
1901 // Setup context.
1902 getContextDescriptor(cast<Decl>(D->getDeclContext()));
1903
Devang Patela3e3fde2011-04-29 23:42:32 +00001904 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopher459532e2011-11-17 23:45:00 +00001905 MI = SPCache.find(FD->getCanonicalDecl());
Devang Patela3e3fde2011-04-29 23:42:32 +00001906 if (MI != SPCache.end()) {
1907 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1908 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1909 return SP;
1910 }
1911
Devang Patela6cb0642011-04-23 00:08:01 +00001912 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
1913 E = FD->redecls_end(); I != E; ++I) {
1914 const FunctionDecl *NextFD = *I;
1915 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopher459532e2011-11-17 23:45:00 +00001916 MI = SPCache.find(NextFD->getCanonicalDecl());
Devang Patela6cb0642011-04-23 00:08:01 +00001917 if (MI != SPCache.end()) {
1918 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(&*MI->second));
1919 if (SP.isSubprogram() && !llvm::DISubprogram(SP).isDefinition())
1920 return SP;
1921 }
1922 }
1923 return llvm::DISubprogram();
1924}
1925
Devang Patel2780e452011-05-31 20:46:46 +00001926// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
1927// implicit parameter "this".
Eric Christopherfefafac2011-10-11 23:00:51 +00001928llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D,
1929 QualType FnType,
Devang Patel2780e452011-05-31 20:46:46 +00001930 llvm::DIFile F) {
1931 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1932 return getOrCreateMethodType(Method, F);
Nick Lewycky16790352011-11-10 00:34:02 +00001933 if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
Devang Patel7ce99c32011-05-31 21:18:50 +00001934 // Add "self" and "_cmd"
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001935 SmallVector<llvm::Value *, 16> Elts;
Devang Patel7ce99c32011-05-31 21:18:50 +00001936
1937 // First element is always return type. For 'void' functions it is NULL.
Devang Patel5c71c212011-05-31 22:21:11 +00001938 Elts.push_back(getOrCreateType(OMethod->getResultType(), F));
Devang Patel7ce99c32011-05-31 21:18:50 +00001939 // "self" pointer is always first argument.
1940 Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F));
1941 // "cmd" pointer is always second argument.
1942 Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F));
Devang Patel5c71c212011-05-31 22:21:11 +00001943 // Get rest of the arguments.
Argyrios Kyrtzidisb8c3aaf2011-10-03 06:37:04 +00001944 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Devang Patel5c71c212011-05-31 22:21:11 +00001945 PE = OMethod->param_end(); PI != PE; ++PI)
1946 Elts.push_back(getOrCreateType((*PI)->getType(), F));
1947
Devang Patel7ce99c32011-05-31 21:18:50 +00001948 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1949 return DBuilder.createSubroutineType(F, EltTypeArray);
1950 }
Devang Patel2780e452011-05-31 20:46:46 +00001951 return getOrCreateType(FnType, F);
1952}
1953
Sanjiv Gupta98070572008-05-25 05:15:42 +00001954/// EmitFunctionStart - Constructs the debug code for entering a function -
1955/// "llvm.dbg.func.start.".
Devang Patel934661e2010-01-14 00:36:21 +00001956void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
Sanjiv Gupta98070572008-05-25 05:15:42 +00001957 llvm::Function *Fn,
Chris Lattneraffb3732008-11-10 06:08:34 +00001958 CGBuilderTy &Builder) {
Mike Stump11289f42009-09-09 15:08:12 +00001959
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001960 StringRef Name;
1961 StringRef LinkageName;
Devang Patel934661e2010-01-14 00:36:21 +00001962
Eric Christopher2f45aaa2011-09-29 00:00:45 +00001963 FnBeginRegionCount.push_back(LexicalBlockStack.size());
Devang Patel0884a602010-07-22 22:29:16 +00001964
Devang Patel934661e2010-01-14 00:36:21 +00001965 const Decl *D = GD.getDecl();
Eric Christopher7cdf9482011-10-13 21:45:18 +00001966
Devang Patel251f8592010-10-07 22:03:49 +00001967 unsigned Flags = 0;
Devang Patel33ddf692010-10-11 21:58:41 +00001968 llvm::DIFile Unit = getOrCreateFile(CurLoc);
1969 llvm::DIDescriptor FDContext(Unit);
Devang Patelb87c4282011-04-05 22:54:11 +00001970 llvm::DIArray TParamsArray;
Devang Patel934661e2010-01-14 00:36:21 +00001971 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Eric Christopher04832b92011-11-14 18:55:02 +00001972 // If there is a DISubprogram for this function available then use it.
Devang Patel7a12ad02010-01-19 01:54:44 +00001973 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
Eric Christopher459532e2011-11-17 23:45:00 +00001974 FI = SPCache.find(FD->getCanonicalDecl());
Devang Patel7a12ad02010-01-19 01:54:44 +00001975 if (FI != SPCache.end()) {
Gabor Greifbf986082010-09-18 13:00:17 +00001976 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(&*FI->second));
Devang Patelba4ad7f2010-05-07 18:12:35 +00001977 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
1978 llvm::MDNode *SPN = SP;
Eric Christopher2f45aaa2011-09-29 00:00:45 +00001979 LexicalBlockStack.push_back(SPN);
Devang Patelba4ad7f2010-05-07 18:12:35 +00001980 RegionMap[D] = llvm::WeakVH(SP);
Devang Patel7a12ad02010-01-19 01:54:44 +00001981 return;
1982 }
1983 }
Devang Patel934661e2010-01-14 00:36:21 +00001984 Name = getFunctionName(FD);
1985 // Use mangled name as linkage name for c/c++ functions.
Devang Patel04ab75c2011-05-02 22:49:30 +00001986 if (!Fn->hasInternalLinkage())
Devang Patelb7ff0da2011-05-02 22:37:48 +00001987 LinkageName = CGM.getMangledName(GD);
Devang Patelf79199d2010-10-22 17:11:50 +00001988 if (LinkageName == Name)
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001989 LinkageName = StringRef();
Devang Patel251f8592010-10-07 22:03:49 +00001990 if (FD->hasPrototype())
1991 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel33ddf692010-10-11 21:58:41 +00001992 if (const NamespaceDecl *NSDecl =
1993 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
Devang Patel8c445292010-12-09 00:33:05 +00001994 FDContext = getOrCreateNameSpace(NSDecl);
Devang Patelf9076f32011-05-17 00:20:09 +00001995 else if (const RecordDecl *RDecl =
1996 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
1997 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
Devang Patelb87c4282011-04-05 22:54:11 +00001998
1999 // Collect template parameters.
2000 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
David Chisnall6bf98ff2010-09-02 17:16:32 +00002001 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
David Chisnallcf607442010-09-02 18:01:51 +00002002 Name = getObjCMethodName(OMD);
Devang Patel251f8592010-10-07 22:03:49 +00002003 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel934661e2010-01-14 00:36:21 +00002004 } else {
Devang Patelf79199d2010-10-22 17:11:50 +00002005 // Use llvm function name.
Devang Patel934661e2010-01-14 00:36:21 +00002006 Name = Fn->getName();
Devang Patel251f8592010-10-07 22:03:49 +00002007 Flags |= llvm::DIDescriptor::FlagPrototyped;
Devang Patel934661e2010-01-14 00:36:21 +00002008 }
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +00002009 if (!Name.empty() && Name[0] == '\01')
2010 Name = Name.substr(1);
Mike Stump11289f42009-09-09 15:08:12 +00002011
Devang Patel84715932010-04-24 00:49:16 +00002012 // It is expected that CurLoc is set before using EmitFunctionStart.
2013 // Usually, CurLoc points to the left bracket location of compound
2014 // statement representing function body.
Devang Patelc5ffabc2010-05-12 23:46:38 +00002015 unsigned LineNo = getLineNumber(CurLoc);
Devang Pateldb2732a2010-09-29 21:05:52 +00002016 if (D->isImplicit())
2017 Flags |= llvm::DIDescriptor::FlagArtificial;
Devang Patela6cb0642011-04-23 00:08:01 +00002018 llvm::DISubprogram SPDecl = getFunctionDeclaration(D);
Chris Lattneraffb3732008-11-10 06:08:34 +00002019 llvm::DISubprogram SP =
Devang Pateld7185b72011-02-22 18:56:36 +00002020 DBuilder.createFunction(FDContext, Name, LinkageName, Unit,
Devang Patel2780e452011-05-31 20:46:46 +00002021 LineNo, getOrCreateFunctionType(D, FnType, Unit),
Devang Patel00afcbe2010-12-08 22:42:58 +00002022 Fn->hasInternalLinkage(), true/*definition*/,
David Blaikiebbafb8a2012-03-11 07:00:24 +00002023 Flags, CGM.getLangOpts().Optimize, Fn,
Devang Patela6cb0642011-04-23 00:08:01 +00002024 TParamsArray, SPDecl);
Mike Stump11289f42009-09-09 15:08:12 +00002025
Sanjiv Gupta98070572008-05-25 05:15:42 +00002026 // Push function on region stack.
Devang Patelba4ad7f2010-05-07 18:12:35 +00002027 llvm::MDNode *SPN = SP;
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002028 LexicalBlockStack.push_back(SPN);
Devang Patelba4ad7f2010-05-07 18:12:35 +00002029 RegionMap[D] = llvm::WeakVH(SP);
Eric Christopher4fd315f2011-09-29 00:00:37 +00002030}
Sanjiv Gupta98070572008-05-25 05:15:42 +00002031
Eric Christopherbfa4dc52011-09-29 00:00:41 +00002032/// EmitLocation - Emit metadata to indicate a change in line/column
2033/// information in the source file.
Eric Christopher7cdf9482011-10-13 21:45:18 +00002034void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
2035
2036 // Update our current location
2037 setLocation(Loc);
2038
Sanjiv Gupta98070572008-05-25 05:15:42 +00002039 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
Mike Stump11289f42009-09-09 15:08:12 +00002040
Sanjiv Gupta15cb6692008-05-08 08:54:20 +00002041 // Don't bother if things are the same as last time.
Anders Carlsson3efc6e62009-12-06 18:00:51 +00002042 SourceManager &SM = CGM.getContext().getSourceManager();
Eric Christopher7cdf9482011-10-13 21:45:18 +00002043 if (CurLoc == PrevLoc ||
Chandler Carruth35f53202011-07-25 16:49:02 +00002044 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
Devang Patela2c048e2010-04-05 21:09:15 +00002045 // New Builder may not be in sync with CGDebugInfo.
2046 if (!Builder.getCurrentDebugLocation().isUnknown())
2047 return;
Eric Christophere6556572011-09-29 00:00:35 +00002048
Sanjiv Gupta15cb6692008-05-08 08:54:20 +00002049 // Update last state.
2050 PrevLoc = CurLoc;
2051
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002052 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patelc5ffabc2010-05-12 23:46:38 +00002053 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(CurLoc),
2054 getColumnNumber(CurLoc),
Chris Lattner18a584b2010-04-02 20:21:43 +00002055 Scope));
Sanjiv Gupta15cb6692008-05-08 08:54:20 +00002056}
2057
Eric Christopher7cdf9482011-10-13 21:45:18 +00002058/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
2059/// the stack.
2060void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
Devang Patelb40f2952009-11-13 19:10:24 +00002061 llvm::DIDescriptor D =
Eric Christopher7cdf9482011-10-13 21:45:18 +00002062 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
Devang Patel00fca3a2012-02-08 00:10:20 +00002063 llvm::DIDescriptor() :
2064 llvm::DIDescriptor(LexicalBlockStack.back()),
2065 getOrCreateFile(CurLoc),
2066 getLineNumber(CurLoc),
2067 getColumnNumber(CurLoc));
Devang Patelba4ad7f2010-05-07 18:12:35 +00002068 llvm::MDNode *DN = D;
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002069 LexicalBlockStack.push_back(DN);
Sanjiv Gupta15cb6692008-05-08 08:54:20 +00002070}
2071
Eric Christopher7cdf9482011-10-13 21:45:18 +00002072/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
2073/// region - beginning of a DW_TAG_lexical_block.
2074void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) {
2075 // Set our current location.
2076 setLocation(Loc);
2077
2078 // Create a new lexical block and push it on the stack.
2079 CreateLexicalBlock(Loc);
2080
2081 // Emit a line table change for the current location inside the new scope.
2082 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
Devang Patel00fca3a2012-02-08 00:10:20 +00002083 getColumnNumber(Loc),
2084 LexicalBlockStack.back()));
Eric Christopher7cdf9482011-10-13 21:45:18 +00002085}
2086
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002087/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
Eric Christopher9c13eea2011-09-26 15:03:22 +00002088/// region - end of a DW_TAG_lexical_block.
Eric Christopher7cdf9482011-10-13 21:45:18 +00002089void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) {
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002090 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar380827c2008-10-17 01:07:56 +00002091
Eric Christopher7cdf9482011-10-13 21:45:18 +00002092 // Provide an entry in the line table for the end of the block.
2093 EmitLocation(Builder, Loc);
Mike Stump11289f42009-09-09 15:08:12 +00002094
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002095 LexicalBlockStack.pop_back();
Sanjiv Gupta15cb6692008-05-08 08:54:20 +00002096}
2097
Devang Patel0884a602010-07-22 22:29:16 +00002098/// EmitFunctionEnd - Constructs the debug code for exiting a function.
2099void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002100 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel0884a602010-07-22 22:29:16 +00002101 unsigned RCount = FnBeginRegionCount.back();
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002102 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
Devang Patel0884a602010-07-22 22:29:16 +00002103
2104 // Pop all regions for this function.
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002105 while (LexicalBlockStack.size() != RCount)
Eric Christopher7cdf9482011-10-13 21:45:18 +00002106 EmitLexicalBlockEnd(Builder, CurLoc);
Devang Patel0884a602010-07-22 22:29:16 +00002107 FnBeginRegionCount.pop_back();
2108}
2109
Devang Patel535fdaf2010-02-10 18:49:08 +00002110// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
2111// See BuildByRefType.
2112llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
2113 uint64_t *XOffset) {
2114
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002115 SmallVector<llvm::Value *, 5> EltTys;
Devang Patel535fdaf2010-02-10 18:49:08 +00002116 QualType FType;
2117 uint64_t FieldSize, FieldOffset;
2118 unsigned FieldAlign;
2119
Devang Patel408dcf62010-03-09 00:44:50 +00002120 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel535fdaf2010-02-10 18:49:08 +00002121 QualType Type = VD->getType();
2122
2123 FieldOffset = 0;
2124 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +00002125 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2126 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
Devang Patel535fdaf2010-02-10 18:49:08 +00002127 FType = CGM.getContext().IntTy;
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +00002128 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2129 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2130
John McCall351762c2011-02-07 10:33:21 +00002131 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type);
Devang Patel535fdaf2010-02-10 18:49:08 +00002132 if (HasCopyAndDispose) {
2133 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +00002134 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
2135 &FieldOffset));
2136 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
2137 &FieldOffset));
Devang Patel535fdaf2010-02-10 18:49:08 +00002138 }
2139
2140 CharUnits Align = CGM.getContext().getDeclAlign(VD);
Ken Dyck8159c1f2011-04-22 17:34:18 +00002141 if (Align > CGM.getContext().toCharUnitsFromBits(
Douglas Gregore8bbc122011-09-02 00:18:52 +00002142 CGM.getContext().getTargetInfo().getPointerAlign(0))) {
Ken Dyck8159c1f2011-04-22 17:34:18 +00002143 CharUnits FieldOffsetInBytes
2144 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
2145 CharUnits AlignedOffsetInBytes
2146 = FieldOffsetInBytes.RoundUpToAlignment(Align);
2147 CharUnits NumPaddingBytes
2148 = AlignedOffsetInBytes - FieldOffsetInBytes;
Devang Patel535fdaf2010-02-10 18:49:08 +00002149
Ken Dyck8159c1f2011-04-22 17:34:18 +00002150 if (NumPaddingBytes.isPositive()) {
2151 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
Devang Patel535fdaf2010-02-10 18:49:08 +00002152 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2153 pad, ArrayType::Normal, 0);
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +00002154 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
Devang Patel535fdaf2010-02-10 18:49:08 +00002155 }
2156 }
2157
2158 FType = Type;
Benjamin Kramerbbb5dea2010-04-24 20:19:58 +00002159 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
Devang Patel535fdaf2010-02-10 18:49:08 +00002160 FieldSize = CGM.getContext().getTypeSize(FType);
Ken Dyck8159c1f2011-04-22 17:34:18 +00002161 FieldAlign = CGM.getContext().toBits(Align);
Devang Patel535fdaf2010-02-10 18:49:08 +00002162
2163 *XOffset = FieldOffset;
Devang Patel15013e72011-06-24 22:00:59 +00002164 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
Devang Patel00afcbe2010-12-08 22:42:58 +00002165 0, FieldSize, FieldAlign,
2166 FieldOffset, 0, FieldTy);
Devang Patel535fdaf2010-02-10 18:49:08 +00002167 EltTys.push_back(FieldTy);
2168 FieldOffset += FieldSize;
2169
Jay Foaddbf81d82011-04-24 10:11:03 +00002170 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Devang Patel535fdaf2010-02-10 18:49:08 +00002171
Devang Pateldb2732a2010-09-29 21:05:52 +00002172 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Devang Patel535fdaf2010-02-10 18:49:08 +00002173
Devang Pateld7185b72011-02-22 18:56:36 +00002174 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
Devang Patel00afcbe2010-12-08 22:42:58 +00002175 Elements);
Devang Patel535fdaf2010-02-10 18:49:08 +00002176}
Devang Patel00afcbe2010-12-08 22:42:58 +00002177
Sanjiv Gupta18de6242008-05-30 10:30:31 +00002178/// EmitDeclare - Emit local variable declaration debug info.
Devang Patel1c0954c2010-02-01 21:39:52 +00002179void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Devang Patel68a15252011-03-03 20:13:15 +00002180 llvm::Value *Storage,
2181 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002182 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Daniel Dunbar380827c2008-10-17 01:07:56 +00002183
Devang Patel408dcf62010-03-09 00:44:50 +00002184 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel535fdaf2010-02-10 18:49:08 +00002185 llvm::DIType Ty;
2186 uint64_t XOffset = 0;
2187 if (VD->hasAttr<BlocksAttr>())
2188 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2189 else
2190 Ty = getOrCreateType(VD->getType(), Unit);
Chris Lattner362d8ae2009-05-05 04:57:08 +00002191
Devang Patel67eba802010-05-07 23:05:55 +00002192 // If there is not any debug info for type then do not emit debug info
2193 // for this variable.
2194 if (!Ty)
2195 return;
2196
Devang Patel25468052011-02-16 01:11:51 +00002197 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage)) {
2198 // If Storage is an aggregate returned as 'sret' then let debugger know
2199 // about this.
Devang Patel425909d2011-02-10 00:40:52 +00002200 if (Arg->hasStructRetAttr())
Devang Pateld7185b72011-02-22 18:56:36 +00002201 Ty = DBuilder.createReferenceType(Ty);
Devang Patel25468052011-02-16 01:11:51 +00002202 else if (CXXRecordDecl *Record = VD->getType()->getAsCXXRecordDecl()) {
2203 // If an aggregate variable has non trivial destructor or non trivial copy
2204 // constructor than it is pass indirectly. Let debug info know about this
2205 // by using reference of the aggregate type as a argument type.
Eric Christopherfefafac2011-10-11 23:00:51 +00002206 if (!Record->hasTrivialCopyConstructor() ||
2207 !Record->hasTrivialDestructor())
Devang Pateld7185b72011-02-22 18:56:36 +00002208 Ty = DBuilder.createReferenceType(Ty);
Devang Patel25468052011-02-16 01:11:51 +00002209 }
2210 }
Devang Patel425909d2011-02-10 00:40:52 +00002211
Chris Lattneraffb3732008-11-10 06:08:34 +00002212 // Get location information.
Devang Patelc5ffabc2010-05-12 23:46:38 +00002213 unsigned Line = getLineNumber(VD->getLocation());
2214 unsigned Column = getColumnNumber(VD->getLocation());
Devang Patel7c086222010-09-29 23:09:21 +00002215 unsigned Flags = 0;
2216 if (VD->isImplicit())
2217 Flags |= llvm::DIDescriptor::FlagArtificial;
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002218 llvm::MDNode *Scope = LexicalBlockStack.back();
Devang Patel67f70aa2010-10-12 23:24:54 +00002219
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002220 StringRef Name = VD->getName();
Devang Patel67f70aa2010-10-12 23:24:54 +00002221 if (!Name.empty()) {
Devang Patelbc474982011-01-11 00:30:27 +00002222 if (VD->hasAttr<BlocksAttr>()) {
2223 CharUnits offset = CharUnits::fromQuantity(32);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002224 SmallVector<llvm::Value *, 9> addr;
Chris Lattnerece04092012-02-07 00:39:47 +00002225 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel2d6390d2011-02-18 23:29:22 +00002226 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelbc474982011-01-11 00:30:27 +00002227 // offset of __forwarding field
Ken Dyckbbe38622011-04-22 17:41:34 +00002228 offset = CGM.getContext().toCharUnitsFromBits(
Douglas Gregore8bbc122011-09-02 00:18:52 +00002229 CGM.getContext().getTargetInfo().getPointerWidth(0));
Devang Patelbc474982011-01-11 00:30:27 +00002230 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel2d6390d2011-02-18 23:29:22 +00002231 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2232 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Devang Patelbc474982011-01-11 00:30:27 +00002233 // offset of x field
Ken Dyckbbe38622011-04-22 17:41:34 +00002234 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Devang Patelbc474982011-01-11 00:30:27 +00002235 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2236
2237 // Create the descriptor for the variable.
2238 llvm::DIVariable D =
Devang Pateld7185b72011-02-22 18:56:36 +00002239 DBuilder.createComplexVariable(Tag,
Eric Christopherfefafac2011-10-11 23:00:51 +00002240 llvm::DIDescriptor(Scope),
Devang Patelbc474982011-01-11 00:30:27 +00002241 VD->getName(), Unit, Line, Ty,
Jay Foaddbf81d82011-04-24 10:11:03 +00002242 addr, ArgNo);
Devang Patelbc474982011-01-11 00:30:27 +00002243
2244 // Insert an llvm.dbg.declare into the current block.
2245 llvm::Instruction *Call =
Devang Pateld7185b72011-02-22 18:56:36 +00002246 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patelbc474982011-01-11 00:30:27 +00002247 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2248 return;
2249 }
2250 // Create the descriptor for the variable.
Devang Patel67f70aa2010-10-12 23:24:54 +00002251 llvm::DIVariable D =
Devang Pateld7185b72011-02-22 18:56:36 +00002252 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Devang Patel00afcbe2010-12-08 22:42:58 +00002253 Name, Unit, Line, Ty,
David Blaikiebbafb8a2012-03-11 07:00:24 +00002254 CGM.getLangOpts().Optimize, Flags, ArgNo);
Devang Patel67f70aa2010-10-12 23:24:54 +00002255
2256 // Insert an llvm.dbg.declare into the current block.
2257 llvm::Instruction *Call =
Devang Pateld7185b72011-02-22 18:56:36 +00002258 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Devang Patel67f70aa2010-10-12 23:24:54 +00002259 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patel31d1e212010-10-29 16:21:19 +00002260 return;
Devang Patel67f70aa2010-10-12 23:24:54 +00002261 }
2262
2263 // If VD is an anonymous union then Storage represents value for
2264 // all union fields.
John McCall147d0212011-02-22 22:38:33 +00002265 if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2266 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2267 if (RD->isUnion()) {
2268 for (RecordDecl::field_iterator I = RD->field_begin(),
2269 E = RD->field_end();
2270 I != E; ++I) {
2271 FieldDecl *Field = *I;
2272 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002273 StringRef FieldName = Field->getName();
Devang Patel67f70aa2010-10-12 23:24:54 +00002274
John McCall147d0212011-02-22 22:38:33 +00002275 // Ignore unnamed fields. Do not ignore unnamed records.
2276 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2277 continue;
Devang Patel67f70aa2010-10-12 23:24:54 +00002278
John McCall147d0212011-02-22 22:38:33 +00002279 // Use VarDecl's Tag, Scope and Line number.
2280 llvm::DIVariable D =
2281 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2282 FieldName, Unit, Line, FieldTy,
David Blaikiebbafb8a2012-03-11 07:00:24 +00002283 CGM.getLangOpts().Optimize, Flags,
Devang Patel68a15252011-03-03 20:13:15 +00002284 ArgNo);
Devang Patel67f70aa2010-10-12 23:24:54 +00002285
John McCall147d0212011-02-22 22:38:33 +00002286 // Insert an llvm.dbg.declare into the current block.
2287 llvm::Instruction *Call =
2288 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
John McCall147d0212011-02-22 22:38:33 +00002289 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Devang Patel67f70aa2010-10-12 23:24:54 +00002290 }
John McCall147d0212011-02-22 22:38:33 +00002291 }
2292 }
Sanjiv Gupta18de6242008-05-30 10:30:31 +00002293}
2294
Devang Patel4f325d12011-04-25 23:43:36 +00002295void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2296 llvm::Value *Storage,
2297 CGBuilderTy &Builder) {
2298 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2299}
Mike Stump2e722b92009-09-30 02:43:10 +00002300
Devang Patel4f325d12011-04-25 23:43:36 +00002301void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
2302 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
2303 const CGBlockInfo &blockInfo) {
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002304 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Devang Patel4f325d12011-04-25 23:43:36 +00002305
Devang Patel42fb6f82010-04-26 23:28:46 +00002306 if (Builder.GetInsertBlock() == 0)
Mike Stump2e722b92009-09-30 02:43:10 +00002307 return;
Devang Patel4f325d12011-04-25 23:43:36 +00002308
John McCall351762c2011-02-07 10:33:21 +00002309 bool isByRef = VD->hasAttr<BlocksAttr>();
Devang Patel4f325d12011-04-25 23:43:36 +00002310
Mike Stump2e722b92009-09-30 02:43:10 +00002311 uint64_t XOffset = 0;
Devang Patel408dcf62010-03-09 00:44:50 +00002312 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Devang Patel535fdaf2010-02-10 18:49:08 +00002313 llvm::DIType Ty;
John McCall351762c2011-02-07 10:33:21 +00002314 if (isByRef)
Devang Patel535fdaf2010-02-10 18:49:08 +00002315 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2316 else
2317 Ty = getOrCreateType(VD->getType(), Unit);
Mike Stump2e722b92009-09-30 02:43:10 +00002318
2319 // Get location information.
Devang Patelc5ffabc2010-05-12 23:46:38 +00002320 unsigned Line = getLineNumber(VD->getLocation());
2321 unsigned Column = getColumnNumber(VD->getLocation());
Mike Stump2e722b92009-09-30 02:43:10 +00002322
John McCall351762c2011-02-07 10:33:21 +00002323 const llvm::TargetData &target = CGM.getTargetData();
2324
2325 CharUnits offset = CharUnits::fromQuantity(
2326 target.getStructLayout(blockInfo.StructureType)
2327 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2328
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002329 SmallVector<llvm::Value *, 9> addr;
Chris Lattnerece04092012-02-07 00:39:47 +00002330 llvm::Type *Int64Ty = CGM.Int64Ty;
Devang Patel2d6390d2011-02-18 23:29:22 +00002331 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Chris Lattnerbf784782010-01-25 03:29:35 +00002332 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
John McCall351762c2011-02-07 10:33:21 +00002333 if (isByRef) {
Devang Patel2d6390d2011-02-18 23:29:22 +00002334 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2335 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck40775002010-01-11 17:06:35 +00002336 // offset of __forwarding field
Eric Christopherfefafac2011-10-11 23:00:51 +00002337 offset = CGM.getContext()
2338 .toCharUnitsFromBits(target.getPointerSizeInBits());
Chris Lattnerbf784782010-01-25 03:29:35 +00002339 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Devang Patel2d6390d2011-02-18 23:29:22 +00002340 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2341 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
Ken Dyck40775002010-01-11 17:06:35 +00002342 // offset of x field
Ken Dyckbbe38622011-04-22 17:41:34 +00002343 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
Chris Lattnerbf784782010-01-25 03:29:35 +00002344 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
Mike Stump2e722b92009-09-30 02:43:10 +00002345 }
2346
2347 // Create the descriptor for the variable.
2348 llvm::DIVariable D =
Devang Patel4f325d12011-04-25 23:43:36 +00002349 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002350 llvm::DIDescriptor(LexicalBlockStack.back()),
Jay Foaddbf81d82011-04-24 10:11:03 +00002351 VD->getName(), Unit, Line, Ty, addr);
Mike Stump2e722b92009-09-30 02:43:10 +00002352 // Insert an llvm.dbg.declare into the current block.
Eric Christopher7cdf9482011-10-13 21:45:18 +00002353 llvm::Instruction *Call =
Devang Patel420c8de2011-04-25 23:52:27 +00002354 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
Eric Christopher7cdf9482011-10-13 21:45:18 +00002355 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2356 LexicalBlockStack.back()));
Mike Stump2e722b92009-09-30 02:43:10 +00002357}
2358
Chris Lattneraffb3732008-11-10 06:08:34 +00002359/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2360/// variable declaration.
Devang Patel3efd1472010-02-01 21:52:22 +00002361void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
Devang Patel68a15252011-03-03 20:13:15 +00002362 unsigned ArgNo,
Devang Patel25468052011-02-16 01:11:51 +00002363 CGBuilderTy &Builder) {
Devang Patel68a15252011-03-03 20:13:15 +00002364 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
Chris Lattneraffb3732008-11-10 06:08:34 +00002365}
2366
John McCall147d0212011-02-22 22:38:33 +00002367namespace {
2368 struct BlockLayoutChunk {
2369 uint64_t OffsetInBits;
2370 const BlockDecl::Capture *Capture;
2371 };
2372 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2373 return l.OffsetInBits < r.OffsetInBits;
2374 }
2375}
Chris Lattneraffb3732008-11-10 06:08:34 +00002376
John McCall147d0212011-02-22 22:38:33 +00002377void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
2378 llvm::Value *addr,
2379 CGBuilderTy &Builder) {
2380 ASTContext &C = CGM.getContext();
2381 const BlockDecl *blockDecl = block.getBlockDecl();
2382
2383 // Collect some general information about the block's location.
2384 SourceLocation loc = blockDecl->getCaretLocation();
2385 llvm::DIFile tunit = getOrCreateFile(loc);
2386 unsigned line = getLineNumber(loc);
2387 unsigned column = getColumnNumber(loc);
2388
2389 // Build the debug-info type for the block literal.
Nick Lewyckyfc49f722011-05-02 01:41:48 +00002390 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
John McCall147d0212011-02-22 22:38:33 +00002391
2392 const llvm::StructLayout *blockLayout =
2393 CGM.getTargetData().getStructLayout(block.StructureType);
2394
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002395 SmallVector<llvm::Value*, 16> fields;
John McCall147d0212011-02-22 22:38:33 +00002396 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2397 blockLayout->getElementOffsetInBits(0),
Devang Patel15013e72011-06-24 22:00:59 +00002398 tunit, tunit));
John McCall147d0212011-02-22 22:38:33 +00002399 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2400 blockLayout->getElementOffsetInBits(1),
Devang Patel15013e72011-06-24 22:00:59 +00002401 tunit, tunit));
John McCall147d0212011-02-22 22:38:33 +00002402 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2403 blockLayout->getElementOffsetInBits(2),
Devang Patel15013e72011-06-24 22:00:59 +00002404 tunit, tunit));
John McCall147d0212011-02-22 22:38:33 +00002405 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2406 blockLayout->getElementOffsetInBits(3),
Devang Patel15013e72011-06-24 22:00:59 +00002407 tunit, tunit));
John McCall147d0212011-02-22 22:38:33 +00002408 fields.push_back(createFieldType("__descriptor",
2409 C.getPointerType(block.NeedsCopyDispose ?
2410 C.getBlockDescriptorExtendedType() :
2411 C.getBlockDescriptorType()),
2412 0, loc, AS_public,
2413 blockLayout->getElementOffsetInBits(4),
Devang Patel15013e72011-06-24 22:00:59 +00002414 tunit, tunit));
John McCall147d0212011-02-22 22:38:33 +00002415
2416 // We want to sort the captures by offset, not because DWARF
2417 // requires this, but because we're paranoid about debuggers.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002418 SmallVector<BlockLayoutChunk, 8> chunks;
John McCall147d0212011-02-22 22:38:33 +00002419
2420 // 'this' capture.
2421 if (blockDecl->capturesCXXThis()) {
2422 BlockLayoutChunk chunk;
2423 chunk.OffsetInBits =
2424 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2425 chunk.Capture = 0;
2426 chunks.push_back(chunk);
2427 }
2428
2429 // Variable captures.
2430 for (BlockDecl::capture_const_iterator
2431 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2432 i != e; ++i) {
2433 const BlockDecl::Capture &capture = *i;
2434 const VarDecl *variable = capture.getVariable();
2435 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2436
2437 // Ignore constant captures.
2438 if (captureInfo.isConstant())
2439 continue;
2440
2441 BlockLayoutChunk chunk;
2442 chunk.OffsetInBits =
2443 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2444 chunk.Capture = &capture;
2445 chunks.push_back(chunk);
2446 }
2447
2448 // Sort by offset.
2449 llvm::array_pod_sort(chunks.begin(), chunks.end());
2450
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002451 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall147d0212011-02-22 22:38:33 +00002452 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2453 uint64_t offsetInBits = i->OffsetInBits;
2454 const BlockDecl::Capture *capture = i->Capture;
2455
2456 // If we have a null capture, this must be the C++ 'this' capture.
2457 if (!capture) {
2458 const CXXMethodDecl *method =
2459 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2460 QualType type = method->getThisType(C);
2461
2462 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
Devang Patel15013e72011-06-24 22:00:59 +00002463 offsetInBits, tunit, tunit));
John McCall147d0212011-02-22 22:38:33 +00002464 continue;
2465 }
2466
2467 const VarDecl *variable = capture->getVariable();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002468 StringRef name = variable->getName();
John McCall81a325e2011-03-02 06:57:14 +00002469
2470 llvm::DIType fieldType;
2471 if (capture->isByRef()) {
2472 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2473
2474 // FIXME: this creates a second copy of this type!
2475 uint64_t xoffset;
2476 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2477 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
Devang Patel15013e72011-06-24 22:00:59 +00002478 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
John McCall81a325e2011-03-02 06:57:14 +00002479 ptrInfo.first, ptrInfo.second,
2480 offsetInBits, 0, fieldType);
2481 } else {
2482 fieldType = createFieldType(name, variable->getType(), 0,
Devang Patel15013e72011-06-24 22:00:59 +00002483 loc, AS_public, offsetInBits, tunit, tunit);
John McCall81a325e2011-03-02 06:57:14 +00002484 }
2485 fields.push_back(fieldType);
John McCall147d0212011-02-22 22:38:33 +00002486 }
2487
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00002488 SmallString<36> typeName;
John McCall147d0212011-02-22 22:38:33 +00002489 llvm::raw_svector_ostream(typeName)
2490 << "__block_literal_" << CGM.getUniqueBlockCount();
2491
Jay Foaddbf81d82011-04-24 10:11:03 +00002492 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
John McCall147d0212011-02-22 22:38:33 +00002493
2494 llvm::DIType type =
2495 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2496 CGM.getContext().toBits(block.BlockSize),
2497 CGM.getContext().toBits(block.BlockAlign),
2498 0, fieldsArray);
2499 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2500
2501 // Get overall information about the block.
2502 unsigned flags = llvm::DIDescriptor::FlagArtificial;
Eric Christopher2f45aaa2011-09-29 00:00:45 +00002503 llvm::MDNode *scope = LexicalBlockStack.back();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002504 StringRef name = ".block_descriptor";
John McCall147d0212011-02-22 22:38:33 +00002505
2506 // Create the descriptor for the parameter.
2507 llvm::DIVariable debugVar =
2508 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
2509 llvm::DIDescriptor(scope),
2510 name, tunit, line, type,
David Blaikiebbafb8a2012-03-11 07:00:24 +00002511 CGM.getLangOpts().Optimize, flags,
Devang Patel68a15252011-03-03 20:13:15 +00002512 cast<llvm::Argument>(addr)->getArgNo() + 1);
John McCall147d0212011-02-22 22:38:33 +00002513
2514 // Insert an llvm.dbg.value into the current block.
2515 llvm::Instruction *declare =
2516 DBuilder.insertDbgValueIntrinsic(addr, 0, debugVar,
2517 Builder.GetInsertBlock());
2518 declare->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2519}
Chris Lattneraffb3732008-11-10 06:08:34 +00002520
Sanjiv Gupta158143a2008-06-05 08:59:10 +00002521/// EmitGlobalVariable - Emit information about a global variable.
Mike Stump11289f42009-09-09 15:08:12 +00002522void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Patel7b7f46f2010-02-01 21:34:11 +00002523 const VarDecl *D) {
Sanjiv Gupta158143a2008-06-05 08:59:10 +00002524 // Create global variable debug descriptor.
Devang Patel408dcf62010-03-09 00:44:50 +00002525 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
Devang Patelc5ffabc2010-05-12 23:46:38 +00002526 unsigned LineNo = getLineNumber(D->getLocation());
Chris Lattner86d7d912008-11-24 03:54:41 +00002527
Eric Christopher7cdf9482011-10-13 21:45:18 +00002528 setLocation(D->getLocation());
2529
Devang Patel7b7f46f2010-02-01 21:34:11 +00002530 QualType T = D->getType();
Anders Carlssonf7a9a922008-11-26 17:40:42 +00002531 if (T->isIncompleteArrayType()) {
Mike Stump11289f42009-09-09 15:08:12 +00002532
Anders Carlssonf7a9a922008-11-26 17:40:42 +00002533 // CodeGen turns int[] into int[1] so we'll do the same here.
2534 llvm::APSInt ConstVal(32);
Mike Stump11289f42009-09-09 15:08:12 +00002535
Anders Carlssonf7a9a922008-11-26 17:40:42 +00002536 ConstVal = 1;
Anders Carlsson3efc6e62009-12-06 18:00:51 +00002537 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump11289f42009-09-09 15:08:12 +00002538
Anders Carlsson3efc6e62009-12-06 18:00:51 +00002539 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Nick Lewycky2219ef02011-11-09 04:25:21 +00002540 ArrayType::Normal, 0);
Anders Carlssonf7a9a922008-11-26 17:40:42 +00002541 }
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002542 StringRef DeclName = D->getName();
2543 StringRef LinkageName;
Devang Patel84d40a42011-02-09 19:16:38 +00002544 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
2545 && !isa<ObjCMethodDecl>(D->getDeclContext()))
Devang Patel98f21712010-05-13 23:52:37 +00002546 LinkageName = Var->getName();
Devang Patelf79199d2010-10-22 17:11:50 +00002547 if (LinkageName == DeclName)
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002548 LinkageName = StringRef();
Devang Patel7b7f46f2010-02-01 21:34:11 +00002549 llvm::DIDescriptor DContext =
Devang Patel8c445292010-12-09 00:33:05 +00002550 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
Devang Pateld7185b72011-02-22 18:56:36 +00002551 DBuilder.createStaticVariable(DContext, DeclName, LinkageName,
Devang Patel00afcbe2010-12-08 22:42:58 +00002552 Unit, LineNo, getOrCreateType(T, Unit),
2553 Var->hasInternalLinkage(), Var);
Sanjiv Gupta158143a2008-06-05 08:59:10 +00002554}
2555
Devang Patelf4c205b2009-02-26 21:10:26 +00002556/// EmitGlobalVariable - Emit information about an objective-c interface.
Mike Stump11289f42009-09-09 15:08:12 +00002557void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
Devang Patel3efd1472010-02-01 21:52:22 +00002558 ObjCInterfaceDecl *ID) {
Devang Patelf4c205b2009-02-26 21:10:26 +00002559 // Create global variable debug descriptor.
Devang Patel408dcf62010-03-09 00:44:50 +00002560 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
Devang Patelc5ffabc2010-05-12 23:46:38 +00002561 unsigned LineNo = getLineNumber(ID->getLocation());
Devang Patelf4c205b2009-02-26 21:10:26 +00002562
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002563 StringRef Name = ID->getName();
Devang Patelf4c205b2009-02-26 21:10:26 +00002564
Devang Patel3efd1472010-02-01 21:52:22 +00002565 QualType T = CGM.getContext().getObjCInterfaceType(ID);
Devang Patelf4c205b2009-02-26 21:10:26 +00002566 if (T->isIncompleteArrayType()) {
Mike Stump11289f42009-09-09 15:08:12 +00002567
Devang Patelf4c205b2009-02-26 21:10:26 +00002568 // CodeGen turns int[] into int[1] so we'll do the same here.
2569 llvm::APSInt ConstVal(32);
Mike Stump11289f42009-09-09 15:08:12 +00002570
Devang Patelf4c205b2009-02-26 21:10:26 +00002571 ConstVal = 1;
Anders Carlsson3efc6e62009-12-06 18:00:51 +00002572 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
Mike Stump11289f42009-09-09 15:08:12 +00002573
Anders Carlsson3efc6e62009-12-06 18:00:51 +00002574 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
Devang Patelf4c205b2009-02-26 21:10:26 +00002575 ArrayType::Normal, 0);
2576 }
2577
Devang Pateld7185b72011-02-22 18:56:36 +00002578 DBuilder.createGlobalVariable(Name, Unit, LineNo,
Devang Patel00afcbe2010-12-08 22:42:58 +00002579 getOrCreateType(T, Unit),
2580 Var->hasInternalLinkage(), Var);
Devang Patelf4c205b2009-02-26 21:10:26 +00002581}
Devang Patel973f2eb2010-02-01 19:16:32 +00002582
Devang Pateldc866e12010-08-10 17:53:33 +00002583/// EmitGlobalVariable - Emit global variable's debug info.
2584void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
John McCalla2fabff2010-10-09 01:34:31 +00002585 llvm::Constant *Init) {
Devang Patele03edfd2010-08-10 07:24:25 +00002586 // Create the descriptor for the variable.
2587 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002588 StringRef Name = VD->getName();
Devang Patel76e3b532010-08-10 18:27:15 +00002589 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
Devang Patel41c20972010-08-23 22:07:25 +00002590 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
2591 if (const EnumDecl *ED = dyn_cast<EnumDecl>(ECD->getDeclContext()))
Devang Patel283e89d2011-01-17 22:23:07 +00002592 Ty = CreateEnumType(ED);
Devang Patel41c20972010-08-23 22:07:25 +00002593 }
Devang Patel76e3b532010-08-10 18:27:15 +00002594 // Do not use DIGlobalVariable for enums.
2595 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
2596 return;
Devang Pateld7185b72011-02-22 18:56:36 +00002597 DBuilder.createStaticVariable(Unit, Name, Name, Unit,
Devang Patel00afcbe2010-12-08 22:42:58 +00002598 getLineNumber(VD->getLocation()),
2599 Ty, true, Init);
Devang Patele03edfd2010-08-10 07:24:25 +00002600}
2601
Devang Patel973f2eb2010-02-01 19:16:32 +00002602/// getOrCreateNamesSpace - Return namespace descriptor for the given
2603/// namespace decl.
2604llvm::DINameSpace
Devang Patel8c445292010-12-09 00:33:05 +00002605CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Devang Patel973f2eb2010-02-01 19:16:32 +00002606 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
2607 NameSpaceCache.find(NSDecl);
2608 if (I != NameSpaceCache.end())
2609 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
2610
Devang Patelc5ffabc2010-05-12 23:46:38 +00002611 unsigned LineNo = getLineNumber(NSDecl->getLocation());
Devang Patelfaadd7b2010-10-28 19:12:46 +00002612 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Devang Patel973f2eb2010-02-01 19:16:32 +00002613 llvm::DIDescriptor Context =
Devang Patel8c445292010-12-09 00:33:05 +00002614 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
Devang Patel973f2eb2010-02-01 19:16:32 +00002615 llvm::DINameSpace NS =
Devang Pateld7185b72011-02-22 18:56:36 +00002616 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
Devang Patelba4ad7f2010-05-07 18:12:35 +00002617 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
Devang Patel973f2eb2010-02-01 19:16:32 +00002618 return NS;
2619}
Eric Christopher1c3785a2012-02-18 00:50:17 +00002620
2621void CGDebugInfo::finalize(void) {
2622 for (std::vector<std::pair<void *, llvm::WeakVH> >::const_iterator VI
2623 = ReplaceMap.begin(), VE = ReplaceMap.end(); VI != VE; ++VI) {
2624 llvm::DIType Ty, RepTy;
2625 // Verify that the debug info still exists.
2626 if (&*VI->second)
2627 Ty = llvm::DIType(cast<llvm::MDNode>(VI->second));
2628
2629 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
2630 TypeCache.find(VI->first);
2631 if (it != TypeCache.end()) {
2632 // Verify that the debug info still exists.
2633 if (&*it->second)
2634 RepTy = llvm::DIType(cast<llvm::MDNode>(it->second));
2635 }
2636
Eric Christopher66562a42012-02-20 18:05:24 +00002637 if (Ty.Verify() && Ty.isForwardDecl() && RepTy.Verify()) {
Eric Christopher1c3785a2012-02-18 00:50:17 +00002638 Ty.replaceAllUsesWith(RepTy);
Eric Christopher66562a42012-02-20 18:05:24 +00002639 }
Eric Christopher1c3785a2012-02-18 00:50:17 +00002640 }
2641 DBuilder.finalize();
2642}