blob: 5f56e1695917b1eaa5961b1d0815e533e13c246b [file] [log] [blame]
Guy Benyei7f92f2d2012-12-18 14:30:41 +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"
15#include "CGBlocks.h"
David Blaikie9dfd2432013-05-10 21:53:14 +000016#include "CGCXXABI.h"
Guy Benyei7f92f2d2012-12-18 14:30:41 +000017#include "CGObjCRuntime.h"
18#include "CodeGenFunction.h"
19#include "CodeGenModule.h"
20#include "clang/AST/ASTContext.h"
21#include "clang/AST/DeclFriend.h"
22#include "clang/AST/DeclObjC.h"
23#include "clang/AST/DeclTemplate.h"
24#include "clang/AST/Expr.h"
25#include "clang/AST/RecordLayout.h"
26#include "clang/Basic/FileManager.h"
27#include "clang/Basic/SourceManager.h"
28#include "clang/Basic/Version.h"
29#include "clang/Frontend/CodeGenOptions.h"
30#include "llvm/ADT/SmallVector.h"
31#include "llvm/ADT/StringExtras.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000032#include "llvm/IR/Constants.h"
33#include "llvm/IR/DataLayout.h"
34#include "llvm/IR/DerivedTypes.h"
35#include "llvm/IR/Instructions.h"
36#include "llvm/IR/Intrinsics.h"
37#include "llvm/IR/Module.h"
Guy Benyei7f92f2d2012-12-18 14:30:41 +000038#include "llvm/Support/Dwarf.h"
39#include "llvm/Support/FileSystem.h"
40using namespace clang;
41using namespace clang::CodeGen;
42
43CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
Eric Christopher688cf5b2013-07-14 21:12:44 +000044 : CGM(CGM), DebugKind(CGM.getCodeGenOpts().getDebugInfo()),
45 DBuilder(CGM.getModule()) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +000046 CreateCompileUnit();
47}
48
49CGDebugInfo::~CGDebugInfo() {
50 assert(LexicalBlockStack.empty() &&
51 "Region stack mismatch, stack not empty!");
52}
53
Adrian Prantled6bbe42013-07-18 00:28:02 +000054
55NoLocation::NoLocation(CodeGenFunction &CGF, CGBuilderTy &B)
56 : DI(CGF.getDebugInfo()), Builder(B) {
57 if (DI) {
58 SavedLoc = DI->getLocation();
59 DI->CurLoc = SourceLocation();
60 Builder.SetCurrentDebugLocation(llvm::DebugLoc());
61 }
62}
63
64NoLocation::~NoLocation() {
65 if (DI) {
66 assert(Builder.getCurrentDebugLocation().isUnknown());
67 DI->CurLoc = SavedLoc;
68 }
69}
70
Adrian Prantlb061ce22013-07-18 01:36:04 +000071ArtificialLocation::ArtificialLocation(CodeGenFunction &CGF, CGBuilderTy &B)
Adrian Prantled6bbe42013-07-18 00:28:02 +000072 : DI(CGF.getDebugInfo()), Builder(B) {
73 if (DI) {
74 SavedLoc = DI->getLocation();
Adrian Prantlb6cdc962013-07-24 20:34:39 +000075 DI->CurLoc = SourceLocation();
76 Builder.SetCurrentDebugLocation(llvm::DebugLoc());
77 }
78}
79
80void ArtificialLocation::Emit() {
81 if (DI) {
Adrian Prantled6bbe42013-07-18 00:28:02 +000082 // Sync the Builder.
83 DI->EmitLocation(Builder, SavedLoc);
84 DI->CurLoc = SourceLocation();
85 // Construct a location that has a valid scope, but no line info.
Adrian Prantlb6cdc962013-07-24 20:34:39 +000086 assert(!DI->LexicalBlockStack.empty());
87 llvm::DIDescriptor Scope(DI->LexicalBlockStack.back());
Adrian Prantled6bbe42013-07-18 00:28:02 +000088 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(0, 0, Scope));
89 }
90}
91
Adrian Prantlb061ce22013-07-18 01:36:04 +000092ArtificialLocation::~ArtificialLocation() {
Adrian Prantled6bbe42013-07-18 00:28:02 +000093 if (DI) {
94 assert(Builder.getCurrentDebugLocation().getLine() == 0);
95 DI->CurLoc = SavedLoc;
96 }
97}
98
Guy Benyei7f92f2d2012-12-18 14:30:41 +000099void CGDebugInfo::setLocation(SourceLocation Loc) {
100 // If the new location isn't valid return.
Adrian Prantl5f4554f2013-07-18 00:27:56 +0000101 if (Loc.isInvalid()) return;
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000102
103 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
104
105 // If we've changed files in the middle of a lexical scope go ahead
106 // and create a new lexical scope with file node if it's different
107 // from the one in the scope.
108 if (LexicalBlockStack.empty()) return;
109
110 SourceManager &SM = CGM.getContext().getSourceManager();
111 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
112 PresumedLoc PPLoc = SM.getPresumedLoc(PrevLoc);
113
114 if (PCLoc.isInvalid() || PPLoc.isInvalid() ||
115 !strcmp(PPLoc.getFilename(), PCLoc.getFilename()))
116 return;
117
118 llvm::MDNode *LB = LexicalBlockStack.back();
119 llvm::DIScope Scope = llvm::DIScope(LB);
120 if (Scope.isLexicalBlockFile()) {
121 llvm::DILexicalBlockFile LBF = llvm::DILexicalBlockFile(LB);
122 llvm::DIDescriptor D
123 = DBuilder.createLexicalBlockFile(LBF.getScope(),
124 getOrCreateFile(CurLoc));
125 llvm::MDNode *N = D;
126 LexicalBlockStack.pop_back();
127 LexicalBlockStack.push_back(N);
David Blaikiea6504852013-01-26 22:16:26 +0000128 } else if (Scope.isLexicalBlock() || Scope.isSubprogram()) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000129 llvm::DIDescriptor D
130 = DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc));
131 llvm::MDNode *N = D;
132 LexicalBlockStack.pop_back();
133 LexicalBlockStack.push_back(N);
134 }
135}
136
137/// getContextDescriptor - Get context info for the decl.
David Blaikiebb000792013-04-19 06:56:38 +0000138llvm::DIScope CGDebugInfo::getContextDescriptor(const Decl *Context) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000139 if (!Context)
140 return TheCU;
141
142 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
143 I = RegionMap.find(Context);
144 if (I != RegionMap.end()) {
145 llvm::Value *V = I->second;
David Blaikiebb000792013-04-19 06:56:38 +0000146 return llvm::DIScope(dyn_cast_or_null<llvm::MDNode>(V));
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000147 }
148
149 // Check namespace.
150 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
David Blaikiebb000792013-04-19 06:56:38 +0000151 return getOrCreateNameSpace(NSDecl);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000152
David Blaikiebb000792013-04-19 06:56:38 +0000153 if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context))
154 if (!RDecl->isDependentType())
155 return getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000156 getOrCreateMainFile());
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000157 return TheCU;
158}
159
160/// getFunctionName - Get function name for the given FunctionDecl. If the
161/// name is constructred on demand (e.g. C++ destructor) then the name
162/// is stored on the side.
163StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
164 assert (FD && "Invalid FunctionDecl!");
165 IdentifierInfo *FII = FD->getIdentifier();
166 FunctionTemplateSpecializationInfo *Info
167 = FD->getTemplateSpecializationInfo();
168 if (!Info && FII)
169 return FII->getName();
170
171 // Otherwise construct human readable name for debug info.
Benjamin Kramer5eada842013-02-22 15:46:01 +0000172 SmallString<128> NS;
173 llvm::raw_svector_ostream OS(NS);
174 FD->printName(OS);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000175
176 // Add any template specialization args.
177 if (Info) {
178 const TemplateArgumentList *TArgs = Info->TemplateArguments;
179 const TemplateArgument *Args = TArgs->data();
180 unsigned NumArgs = TArgs->size();
181 PrintingPolicy Policy(CGM.getLangOpts());
Benjamin Kramer5eada842013-02-22 15:46:01 +0000182 TemplateSpecializationType::PrintTemplateArgumentList(OS, Args, NumArgs,
183 Policy);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000184 }
185
186 // Copy this name on the side and use its reference.
Benjamin Kramer5eada842013-02-22 15:46:01 +0000187 OS.flush();
188 char *StrPtr = DebugInfoNames.Allocate<char>(NS.size());
189 memcpy(StrPtr, NS.data(), NS.size());
190 return StringRef(StrPtr, NS.size());
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000191}
192
193StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
194 SmallString<256> MethodName;
195 llvm::raw_svector_ostream OS(MethodName);
196 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
197 const DeclContext *DC = OMD->getDeclContext();
Eric Christopher6537f082013-05-16 00:45:12 +0000198 if (const ObjCImplementationDecl *OID =
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000199 dyn_cast<const ObjCImplementationDecl>(DC)) {
200 OS << OID->getName();
Eric Christopher6537f082013-05-16 00:45:12 +0000201 } else if (const ObjCInterfaceDecl *OID =
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000202 dyn_cast<const ObjCInterfaceDecl>(DC)) {
203 OS << OID->getName();
Eric Christopher6537f082013-05-16 00:45:12 +0000204 } else if (const ObjCCategoryImplDecl *OCD =
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000205 dyn_cast<const ObjCCategoryImplDecl>(DC)){
206 OS << ((const NamedDecl *)OCD)->getIdentifier()->getNameStart() << '(' <<
207 OCD->getIdentifier()->getNameStart() << ')';
Adrian Prantlb5092242013-05-17 23:58:45 +0000208 } else if (isa<ObjCProtocolDecl>(DC)) {
Adrian Prantl687ecae2013-05-17 23:49:10 +0000209 // We can extract the type of the class from the self pointer.
210 if (ImplicitParamDecl* SelfDecl = OMD->getSelfDecl()) {
211 QualType ClassTy =
212 cast<ObjCObjectPointerType>(SelfDecl->getType())->getPointeeType();
213 ClassTy.print(OS, PrintingPolicy(LangOptions()));
214 }
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000215 }
216 OS << ' ' << OMD->getSelector().getAsString() << ']';
217
218 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
219 memcpy(StrPtr, MethodName.begin(), OS.tell());
220 return StringRef(StrPtr, OS.tell());
221}
222
223/// getSelectorName - Return selector name. This is used for debugging
224/// info.
225StringRef CGDebugInfo::getSelectorName(Selector S) {
226 const std::string &SName = S.getAsString();
227 char *StrPtr = DebugInfoNames.Allocate<char>(SName.size());
228 memcpy(StrPtr, SName.data(), SName.size());
229 return StringRef(StrPtr, SName.size());
230}
231
232/// getClassName - Get class name including template argument list.
Eric Christopher6537f082013-05-16 00:45:12 +0000233StringRef
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000234CGDebugInfo::getClassName(const RecordDecl *RD) {
235 const ClassTemplateSpecializationDecl *Spec
236 = dyn_cast<ClassTemplateSpecializationDecl>(RD);
237 if (!Spec)
238 return RD->getName();
239
240 const TemplateArgument *Args;
241 unsigned NumArgs;
242 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
243 const TemplateSpecializationType *TST =
244 cast<TemplateSpecializationType>(TAW->getType());
245 Args = TST->getArgs();
246 NumArgs = TST->getNumArgs();
247 } else {
248 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
249 Args = TemplateArgs.data();
250 NumArgs = TemplateArgs.size();
251 }
252 StringRef Name = RD->getIdentifier()->getName();
253 PrintingPolicy Policy(CGM.getLangOpts());
Benjamin Kramer5eada842013-02-22 15:46:01 +0000254 SmallString<128> TemplateArgList;
255 {
256 llvm::raw_svector_ostream OS(TemplateArgList);
257 TemplateSpecializationType::PrintTemplateArgumentList(OS, Args, NumArgs,
258 Policy);
259 }
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000260
261 // Copy this name on the side and use its reference.
262 size_t Length = Name.size() + TemplateArgList.size();
263 char *StrPtr = DebugInfoNames.Allocate<char>(Length);
264 memcpy(StrPtr, Name.data(), Name.size());
265 memcpy(StrPtr + Name.size(), TemplateArgList.data(), TemplateArgList.size());
266 return StringRef(StrPtr, Length);
267}
268
269/// getOrCreateFile - Get the file debug info descriptor for the input location.
270llvm::DIFile CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
271 if (!Loc.isValid())
272 // If Location is not valid then use main input file.
273 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
274
275 SourceManager &SM = CGM.getContext().getSourceManager();
276 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
277
278 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
279 // If the location is not valid then use main input file.
280 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
281
282 // Cache the results.
283 const char *fname = PLoc.getFilename();
284 llvm::DenseMap<const char *, llvm::WeakVH>::iterator it =
285 DIFileCache.find(fname);
286
287 if (it != DIFileCache.end()) {
288 // Verify that the information still exists.
289 if (llvm::Value *V = it->second)
290 return llvm::DIFile(cast<llvm::MDNode>(V));
291 }
292
293 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
294
295 DIFileCache[fname] = F;
296 return F;
297}
298
299/// getOrCreateMainFile - Get the file info for main compile unit.
300llvm::DIFile CGDebugInfo::getOrCreateMainFile() {
301 return DBuilder.createFile(TheCU.getFilename(), TheCU.getDirectory());
302}
303
304/// getLineNumber - Get line number for the location. If location is invalid
305/// then use current location.
306unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
307 if (Loc.isInvalid() && CurLoc.isInvalid())
308 return 0;
309 SourceManager &SM = CGM.getContext().getSourceManager();
310 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
311 return PLoc.isValid()? PLoc.getLine() : 0;
312}
313
314/// getColumnNumber - Get column number for the location.
Adrian Prantl00df5ea2013-03-12 20:43:25 +0000315unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc, bool Force) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000316 // We may not want column information at all.
Adrian Prantl00df5ea2013-03-12 20:43:25 +0000317 if (!Force && !CGM.getCodeGenOpts().DebugColumnInfo)
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000318 return 0;
319
320 // If the location is invalid then use the current column.
321 if (Loc.isInvalid() && CurLoc.isInvalid())
322 return 0;
323 SourceManager &SM = CGM.getContext().getSourceManager();
324 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
325 return PLoc.isValid()? PLoc.getColumn() : 0;
326}
327
328StringRef CGDebugInfo::getCurrentDirname() {
329 if (!CGM.getCodeGenOpts().DebugCompilationDir.empty())
330 return CGM.getCodeGenOpts().DebugCompilationDir;
331
332 if (!CWDName.empty())
333 return CWDName;
334 SmallString<256> CWD;
335 llvm::sys::fs::current_path(CWD);
336 char *CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
337 memcpy(CompDirnamePtr, CWD.data(), CWD.size());
338 return CWDName = StringRef(CompDirnamePtr, CWD.size());
339}
340
341/// CreateCompileUnit - Create new compile unit.
342void CGDebugInfo::CreateCompileUnit() {
343
344 // Get absolute path name.
345 SourceManager &SM = CGM.getContext().getSourceManager();
346 std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
347 if (MainFileName.empty())
348 MainFileName = "<unknown>";
349
350 // The main file name provided via the "-main-file-name" option contains just
351 // the file name itself with no path information. This file name may have had
352 // a relative path, so we look into the actual file entry for the main
353 // file to determine the real absolute path for the file.
354 std::string MainFileDir;
355 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
356 MainFileDir = MainFile->getDir()->getName();
357 if (MainFileDir != ".")
358 MainFileName = MainFileDir + "/" + MainFileName;
359 }
360
361 // Save filename string.
362 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
363 memcpy(FilenamePtr, MainFileName.c_str(), MainFileName.length());
364 StringRef Filename(FilenamePtr, MainFileName.length());
Eric Christopherff971d72013-02-22 23:50:16 +0000365
366 // Save split dwarf file string.
367 std::string SplitDwarfFile = CGM.getCodeGenOpts().SplitDwarfFile;
368 char *SplitDwarfPtr = DebugInfoNames.Allocate<char>(SplitDwarfFile.length());
369 memcpy(SplitDwarfPtr, SplitDwarfFile.c_str(), SplitDwarfFile.length());
370 StringRef SplitDwarfFilename(SplitDwarfPtr, SplitDwarfFile.length());
Eric Christopher6537f082013-05-16 00:45:12 +0000371
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000372 unsigned LangTag;
373 const LangOptions &LO = CGM.getLangOpts();
374 if (LO.CPlusPlus) {
375 if (LO.ObjC1)
376 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
377 else
378 LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
379 } else if (LO.ObjC1) {
380 LangTag = llvm::dwarf::DW_LANG_ObjC;
381 } else if (LO.C99) {
382 LangTag = llvm::dwarf::DW_LANG_C99;
383 } else {
384 LangTag = llvm::dwarf::DW_LANG_C89;
385 }
386
387 std::string Producer = getClangFullVersion();
388
389 // Figure out which version of the ObjC runtime we have.
390 unsigned RuntimeVers = 0;
391 if (LO.ObjC1)
392 RuntimeVers = LO.ObjCRuntime.isNonFragile() ? 2 : 1;
393
394 // Create new compile unit.
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000395 // FIXME - Eliminate TheCU.
Eric Christopher8fed3f42013-07-19 00:51:58 +0000396 TheCU = DBuilder.createCompileUnit(LangTag, Filename, getCurrentDirname(),
397 Producer, LO.Optimize,
398 CGM.getCodeGenOpts().DwarfDebugFlags,
399 RuntimeVers, SplitDwarfFilename);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000400}
401
402/// CreateType - Get the Basic type from the cache or create a new
403/// one if necessary.
404llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) {
405 unsigned Encoding = 0;
406 StringRef BTName;
407 switch (BT->getKind()) {
408#define BUILTIN_TYPE(Id, SingletonId)
409#define PLACEHOLDER_TYPE(Id, SingletonId) \
410 case BuiltinType::Id:
411#include "clang/AST/BuiltinTypes.def"
412 case BuiltinType::Dependent:
413 llvm_unreachable("Unexpected builtin type");
414 case BuiltinType::NullPtr:
Peter Collingbourne24118f52013-06-27 22:51:01 +0000415 return DBuilder.createNullPtrType();
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000416 case BuiltinType::Void:
417 return llvm::DIType();
418 case BuiltinType::ObjCClass:
Eric Christopherb2d13922013-07-18 00:52:50 +0000419 if (ClassTy)
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000420 return ClassTy;
421 ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
422 "objc_class", TheCU,
423 getOrCreateMainFile(), 0);
424 return ClassTy;
425 case BuiltinType::ObjCId: {
426 // typedef struct objc_class *Class;
427 // typedef struct objc_object {
428 // Class isa;
429 // } *id;
430
Eric Christopherb2d13922013-07-18 00:52:50 +0000431 if (ObjTy)
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000432 return ObjTy;
433
Eric Christopherb2d13922013-07-18 00:52:50 +0000434 if (!ClassTy)
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000435 ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
436 "objc_class", TheCU,
437 getOrCreateMainFile(), 0);
438
439 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
Eric Christopher6537f082013-05-16 00:45:12 +0000440
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000441 llvm::DIType ISATy = DBuilder.createPointerType(ClassTy, Size);
442
Eric Christopherf068c922013-04-02 22:59:11 +0000443 ObjTy =
David Blaikiec1d0af12013-02-25 01:07:08 +0000444 DBuilder.createStructType(TheCU, "objc_object", getOrCreateMainFile(),
445 0, 0, 0, 0, llvm::DIType(), llvm::DIArray());
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000446
Eric Christopherf068c922013-04-02 22:59:11 +0000447 ObjTy.setTypeArray(DBuilder.getOrCreateArray(&*DBuilder.createMemberType(
448 ObjTy, "isa", getOrCreateMainFile(), 0, Size, 0, 0, 0, ISATy)));
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000449 return ObjTy;
450 }
451 case BuiltinType::ObjCSel: {
Eric Christopherb2d13922013-07-18 00:52:50 +0000452 if (SelTy)
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000453 return SelTy;
454 SelTy =
455 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
456 "objc_selector", TheCU, getOrCreateMainFile(),
457 0);
458 return SelTy;
459 }
Guy Benyeib13621d2012-12-18 14:38:23 +0000460
461 case BuiltinType::OCLImage1d:
462 return getOrCreateStructPtrType("opencl_image1d_t",
463 OCLImage1dDITy);
464 case BuiltinType::OCLImage1dArray:
Eric Christopher6537f082013-05-16 00:45:12 +0000465 return getOrCreateStructPtrType("opencl_image1d_array_t",
Guy Benyeib13621d2012-12-18 14:38:23 +0000466 OCLImage1dArrayDITy);
467 case BuiltinType::OCLImage1dBuffer:
468 return getOrCreateStructPtrType("opencl_image1d_buffer_t",
469 OCLImage1dBufferDITy);
470 case BuiltinType::OCLImage2d:
471 return getOrCreateStructPtrType("opencl_image2d_t",
472 OCLImage2dDITy);
473 case BuiltinType::OCLImage2dArray:
474 return getOrCreateStructPtrType("opencl_image2d_array_t",
475 OCLImage2dArrayDITy);
476 case BuiltinType::OCLImage3d:
477 return getOrCreateStructPtrType("opencl_image3d_t",
478 OCLImage3dDITy);
Guy Benyei21f18c42013-02-07 10:55:47 +0000479 case BuiltinType::OCLSampler:
480 return DBuilder.createBasicType("opencl_sampler_t",
481 CGM.getContext().getTypeSize(BT),
482 CGM.getContext().getTypeAlign(BT),
483 llvm::dwarf::DW_ATE_unsigned);
Guy Benyeie6b9d802013-01-20 12:31:11 +0000484 case BuiltinType::OCLEvent:
485 return getOrCreateStructPtrType("opencl_event_t",
486 OCLEventDITy);
Guy Benyeib13621d2012-12-18 14:38:23 +0000487
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000488 case BuiltinType::UChar:
489 case BuiltinType::Char_U: Encoding = llvm::dwarf::DW_ATE_unsigned_char; break;
490 case BuiltinType::Char_S:
491 case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break;
492 case BuiltinType::Char16:
493 case BuiltinType::Char32: Encoding = llvm::dwarf::DW_ATE_UTF; break;
494 case BuiltinType::UShort:
495 case BuiltinType::UInt:
496 case BuiltinType::UInt128:
497 case BuiltinType::ULong:
498 case BuiltinType::WChar_U:
499 case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break;
500 case BuiltinType::Short:
501 case BuiltinType::Int:
502 case BuiltinType::Int128:
503 case BuiltinType::Long:
504 case BuiltinType::WChar_S:
505 case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break;
506 case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break;
507 case BuiltinType::Half:
508 case BuiltinType::Float:
509 case BuiltinType::LongDouble:
510 case BuiltinType::Double: Encoding = llvm::dwarf::DW_ATE_float; break;
511 }
512
513 switch (BT->getKind()) {
514 case BuiltinType::Long: BTName = "long int"; break;
515 case BuiltinType::LongLong: BTName = "long long int"; break;
516 case BuiltinType::ULong: BTName = "long unsigned int"; break;
517 case BuiltinType::ULongLong: BTName = "long long unsigned int"; break;
518 default:
519 BTName = BT->getName(CGM.getLangOpts());
520 break;
521 }
522 // Bit size, align and offset of the type.
523 uint64_t Size = CGM.getContext().getTypeSize(BT);
524 uint64_t Align = CGM.getContext().getTypeAlign(BT);
Eric Christopher6537f082013-05-16 00:45:12 +0000525 llvm::DIType DbgTy =
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000526 DBuilder.createBasicType(BTName, Size, Align, Encoding);
527 return DbgTy;
528}
529
530llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) {
531 // Bit size, align and offset of the type.
532 unsigned Encoding = llvm::dwarf::DW_ATE_complex_float;
533 if (Ty->isComplexIntegerType())
534 Encoding = llvm::dwarf::DW_ATE_lo_user;
535
536 uint64_t Size = CGM.getContext().getTypeSize(Ty);
537 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
Eric Christopher6537f082013-05-16 00:45:12 +0000538 llvm::DIType DbgTy =
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000539 DBuilder.createBasicType("complex", Size, Align, Encoding);
540
541 return DbgTy;
542}
543
544/// CreateCVRType - Get the qualified type from the cache or create
545/// a new one if necessary.
Eric Christopher56b108a2013-06-07 22:54:39 +0000546llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit,
547 bool Declaration) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000548 QualifierCollector Qc;
549 const Type *T = Qc.strip(Ty);
550
551 // Ignore these qualifiers for now.
552 Qc.removeObjCGCAttr();
553 Qc.removeAddressSpace();
554 Qc.removeObjCLifetime();
555
556 // We will create one Derived type for one qualifier and recurse to handle any
557 // additional ones.
558 unsigned Tag;
559 if (Qc.hasConst()) {
560 Tag = llvm::dwarf::DW_TAG_const_type;
561 Qc.removeConst();
562 } else if (Qc.hasVolatile()) {
563 Tag = llvm::dwarf::DW_TAG_volatile_type;
564 Qc.removeVolatile();
565 } else if (Qc.hasRestrict()) {
566 Tag = llvm::dwarf::DW_TAG_restrict_type;
567 Qc.removeRestrict();
568 } else {
569 assert(Qc.empty() && "Unknown type qualifier for debug info");
570 return getOrCreateType(QualType(T, 0), Unit);
571 }
572
Eric Christopher56b108a2013-06-07 22:54:39 +0000573 llvm::DIType FromTy =
574 getOrCreateType(Qc.apply(CGM.getContext(), T), Unit, Declaration);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000575
576 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
577 // CVR derived types.
578 llvm::DIType DbgTy = DBuilder.createQualifiedType(Tag, FromTy);
Eric Christopher6537f082013-05-16 00:45:12 +0000579
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000580 return DbgTy;
581}
582
583llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
584 llvm::DIFile Unit) {
Fariborz Jahanian05f8ff12013-02-21 20:42:11 +0000585
586 // The frontend treats 'id' as a typedef to an ObjCObjectType,
587 // whereas 'id<protocol>' is treated as an ObjCPointerType. For the
588 // debug info, we want to emit 'id' in both cases.
589 if (Ty->isObjCQualifiedIdType())
590 return getOrCreateType(CGM.getContext().getObjCIdType(), Unit);
591
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000592 llvm::DIType DbgTy =
Eric Christopher6537f082013-05-16 00:45:12 +0000593 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000594 Ty->getPointeeType(), Unit);
595 return DbgTy;
596}
597
598llvm::DIType CGDebugInfo::CreateType(const PointerType *Ty,
599 llvm::DIFile Unit) {
Eric Christopher6537f082013-05-16 00:45:12 +0000600 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000601 Ty->getPointeeType(), Unit);
602}
603
604// Creates a forward declaration for a RecordDecl in the given context.
David Blaikiec5cd1a72013-08-15 20:17:25 +0000605llvm::DIType CGDebugInfo::getOrCreateRecordFwdDecl(const RecordDecl *RD,
606 llvm::DIDescriptor Ctx) {
607 if (llvm::DIType T = getTypeOrNull(CGM.getContext().getRecordType(RD)))
David Blaikie951094b2013-08-15 18:59:40 +0000608 return T;
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000609 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
610 unsigned Line = getLineNumber(RD->getLocation());
611 StringRef RDName = getClassName(RD);
612
613 unsigned Tag = 0;
614 if (RD->isStruct() || RD->isInterface())
615 Tag = llvm::dwarf::DW_TAG_structure_type;
616 else if (RD->isUnion())
617 Tag = llvm::dwarf::DW_TAG_union_type;
618 else {
619 assert(RD->isClass());
620 Tag = llvm::dwarf::DW_TAG_class_type;
621 }
622
623 // Create the type.
624 return DBuilder.createForwardDecl(Tag, RDName, Ctx, DefUnit, Line);
625}
626
627// Walk up the context chain and create forward decls for record decls,
628// and normal descriptors for namespaces.
629llvm::DIDescriptor CGDebugInfo::createContextChain(const Decl *Context) {
630 if (!Context)
631 return TheCU;
632
633 // See if we already have the parent.
634 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
635 I = RegionMap.find(Context);
636 if (I != RegionMap.end()) {
637 llvm::Value *V = I->second;
638 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(V));
639 }
Eric Christopher6537f082013-05-16 00:45:12 +0000640
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000641 // Check namespace.
642 if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
643 return llvm::DIDescriptor(getOrCreateNameSpace(NSDecl));
644
645 if (const RecordDecl *RD = dyn_cast<RecordDecl>(Context)) {
646 if (!RD->isDependentType()) {
David Blaikie4a077162013-08-12 22:24:20 +0000647 llvm::DIType Ty = getOrCreateLimitedType(
648 CGM.getContext().getRecordType(RD)->castAs<RecordType>(), getOrCreateMainFile());
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000649 return llvm::DIDescriptor(Ty);
650 }
651 }
652 return TheCU;
653}
654
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000655llvm::DIType CGDebugInfo::CreatePointerLikeType(unsigned Tag,
Eric Christopher6537f082013-05-16 00:45:12 +0000656 const Type *Ty,
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000657 QualType PointeeTy,
658 llvm::DIFile Unit) {
659 if (Tag == llvm::dwarf::DW_TAG_reference_type ||
660 Tag == llvm::dwarf::DW_TAG_rvalue_reference_type)
David Blaikieb0f77b02013-05-24 21:33:22 +0000661 return DBuilder.createReferenceType(
David Blaikieb3c23772013-08-12 23:14:36 +0000662 Tag, getOrCreateType(PointeeTy, Unit, true));
Fariborz Jahanian05f8ff12013-02-21 20:42:11 +0000663
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000664 // Bit size, align and offset of the type.
665 // Size is always the size of a pointer. We can't use getTypeSize here
666 // because that does not return the correct value for references.
667 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
John McCall64aa4b32013-04-16 22:48:15 +0000668 uint64_t Size = CGM.getTarget().getPointerWidth(AS);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000669 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
670
David Blaikieb3c23772013-08-12 23:14:36 +0000671 return DBuilder.createPointerType(getOrCreateType(PointeeTy, Unit, true),
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000672 Size, Align);
673}
674
Eric Christopherf0890c42013-05-16 00:52:20 +0000675llvm::DIType CGDebugInfo::getOrCreateStructPtrType(StringRef Name,
676 llvm::DIType &Cache) {
Eric Christopherb2d13922013-07-18 00:52:50 +0000677 if (Cache)
Guy Benyeib13621d2012-12-18 14:38:23 +0000678 return Cache;
David Blaikie1e97c1e2013-05-21 17:58:54 +0000679 Cache = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, Name,
680 TheCU, getOrCreateMainFile(), 0);
681 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
682 Cache = DBuilder.createPointerType(Cache, Size);
683 return Cache;
Guy Benyeib13621d2012-12-18 14:38:23 +0000684}
685
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000686llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
687 llvm::DIFile Unit) {
Eric Christopherb2d13922013-07-18 00:52:50 +0000688 if (BlockLiteralGeneric)
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000689 return BlockLiteralGeneric;
690
691 SmallVector<llvm::Value *, 8> EltTys;
692 llvm::DIType FieldTy;
693 QualType FType;
694 uint64_t FieldSize, FieldOffset;
695 unsigned FieldAlign;
696 llvm::DIArray Elements;
697 llvm::DIType EltTy, DescTy;
698
699 FieldOffset = 0;
700 FType = CGM.getContext().UnsignedLongTy;
701 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
702 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
703
704 Elements = DBuilder.getOrCreateArray(EltTys);
705 EltTys.clear();
706
707 unsigned Flags = llvm::DIDescriptor::FlagAppleBlock;
708 unsigned LineNo = getLineNumber(CurLoc);
709
710 EltTy = DBuilder.createStructType(Unit, "__block_descriptor",
711 Unit, LineNo, FieldOffset, 0,
David Blaikiec1d0af12013-02-25 01:07:08 +0000712 Flags, llvm::DIType(), Elements);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000713
714 // Bit size, align and offset of the type.
715 uint64_t Size = CGM.getContext().getTypeSize(Ty);
716
717 DescTy = DBuilder.createPointerType(EltTy, Size);
718
719 FieldOffset = 0;
720 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
721 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
722 FType = CGM.getContext().IntTy;
723 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
724 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
725 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
726 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
727
728 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
729 FieldTy = DescTy;
730 FieldSize = CGM.getContext().getTypeSize(Ty);
731 FieldAlign = CGM.getContext().getTypeAlign(Ty);
732 FieldTy = DBuilder.createMemberType(Unit, "__descriptor", Unit,
733 LineNo, FieldSize, FieldAlign,
734 FieldOffset, 0, FieldTy);
735 EltTys.push_back(FieldTy);
736
737 FieldOffset += FieldSize;
738 Elements = DBuilder.getOrCreateArray(EltTys);
739
740 EltTy = DBuilder.createStructType(Unit, "__block_literal_generic",
741 Unit, LineNo, FieldOffset, 0,
David Blaikiec1d0af12013-02-25 01:07:08 +0000742 Flags, llvm::DIType(), Elements);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000743
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000744 BlockLiteralGeneric = DBuilder.createPointerType(EltTy, Size);
745 return BlockLiteralGeneric;
746}
747
David Blaikie5f6e2f42013-06-05 05:32:23 +0000748llvm::DIType CGDebugInfo::CreateType(const TypedefType *Ty, llvm::DIFile Unit,
749 bool Declaration) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000750 // Typedefs are derived from some other type. If we have a typedef of a
751 // typedef, make sure to emit the whole chain.
David Blaikieb0f77b02013-05-24 21:33:22 +0000752 llvm::DIType Src =
David Blaikie5f6e2f42013-06-05 05:32:23 +0000753 getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit, Declaration);
Eric Christopherb2d13922013-07-18 00:52:50 +0000754 if (!Src)
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000755 return llvm::DIType();
756 // We don't set size information, but do specify where the typedef was
757 // declared.
758 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
759 const TypedefNameDecl *TyDecl = Ty->getDecl();
Eric Christopher6537f082013-05-16 00:45:12 +0000760
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000761 llvm::DIDescriptor TypedefContext =
762 getContextDescriptor(cast<Decl>(Ty->getDecl()->getDeclContext()));
Eric Christopher6537f082013-05-16 00:45:12 +0000763
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000764 return
765 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
766}
767
768llvm::DIType CGDebugInfo::CreateType(const FunctionType *Ty,
769 llvm::DIFile Unit) {
770 SmallVector<llvm::Value *, 16> EltTys;
771
772 // Add the result type at least.
773 EltTys.push_back(getOrCreateType(Ty->getResultType(), Unit));
774
775 // Set up remainder of arguments if there is a prototype.
776 // FIXME: IF NOT, HOW IS THIS REPRESENTED? llvm-gcc doesn't represent '...'!
777 if (isa<FunctionNoProtoType>(Ty))
778 EltTys.push_back(DBuilder.createUnspecifiedParameter());
779 else if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Ty)) {
780 for (unsigned i = 0, e = FPT->getNumArgs(); i != e; ++i)
781 EltTys.push_back(getOrCreateType(FPT->getArgType(i), Unit));
782 }
783
784 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(EltTys);
785 return DBuilder.createSubroutineType(Unit, EltTypeArray);
786}
787
788
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000789llvm::DIType CGDebugInfo::createFieldType(StringRef name,
790 QualType type,
791 uint64_t sizeInBitsOverride,
792 SourceLocation loc,
793 AccessSpecifier AS,
794 uint64_t offsetInBits,
795 llvm::DIFile tunit,
796 llvm::DIDescriptor scope) {
797 llvm::DIType debugType = getOrCreateType(type, tunit);
798
799 // Get the location for the field.
800 llvm::DIFile file = getOrCreateFile(loc);
801 unsigned line = getLineNumber(loc);
802
803 uint64_t sizeInBits = 0;
804 unsigned alignInBits = 0;
805 if (!type->isIncompleteArrayType()) {
806 llvm::tie(sizeInBits, alignInBits) = CGM.getContext().getTypeInfo(type);
807
808 if (sizeInBitsOverride)
809 sizeInBits = sizeInBitsOverride;
810 }
811
812 unsigned flags = 0;
813 if (AS == clang::AS_private)
814 flags |= llvm::DIDescriptor::FlagPrivate;
815 else if (AS == clang::AS_protected)
816 flags |= llvm::DIDescriptor::FlagProtected;
817
818 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
819 alignInBits, offsetInBits, flags, debugType);
820}
821
Eric Christopher0395de32013-01-16 01:22:32 +0000822/// CollectRecordLambdaFields - Helper for CollectRecordFields.
823void CGDebugInfo::
824CollectRecordLambdaFields(const CXXRecordDecl *CXXDecl,
825 SmallVectorImpl<llvm::Value *> &elements,
826 llvm::DIType RecordTy) {
827 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
828 // has the name and the location of the variable so we should iterate over
829 // both concurrently.
830 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(CXXDecl);
831 RecordDecl::field_iterator Field = CXXDecl->field_begin();
832 unsigned fieldno = 0;
833 for (CXXRecordDecl::capture_const_iterator I = CXXDecl->captures_begin(),
834 E = CXXDecl->captures_end(); I != E; ++I, ++Field, ++fieldno) {
835 const LambdaExpr::Capture C = *I;
836 if (C.capturesVariable()) {
837 VarDecl *V = C.getCapturedVar();
838 llvm::DIFile VUnit = getOrCreateFile(C.getLocation());
839 StringRef VName = V->getName();
840 uint64_t SizeInBitsOverride = 0;
841 if (Field->isBitField()) {
842 SizeInBitsOverride = Field->getBitWidthValue(CGM.getContext());
843 assert(SizeInBitsOverride && "found named 0-width bitfield");
844 }
845 llvm::DIType fieldType
846 = createFieldType(VName, Field->getType(), SizeInBitsOverride,
847 C.getLocation(), Field->getAccess(),
848 layout.getFieldOffset(fieldno), VUnit, RecordTy);
849 elements.push_back(fieldType);
850 } else {
851 // TODO: Need to handle 'this' in some way by probably renaming the
852 // this of the lambda class and having a field member of 'this' or
853 // by using AT_object_pointer for the function and having that be
854 // used as 'this' for semantic references.
855 assert(C.capturesThis() && "Field that isn't captured and isn't this?");
856 FieldDecl *f = *Field;
857 llvm::DIFile VUnit = getOrCreateFile(f->getLocation());
858 QualType type = f->getType();
859 llvm::DIType fieldType
860 = createFieldType("this", type, 0, f->getLocation(), f->getAccess(),
861 layout.getFieldOffset(fieldno), VUnit, RecordTy);
862
863 elements.push_back(fieldType);
864 }
865 }
866}
867
868/// CollectRecordStaticField - Helper for CollectRecordFields.
869void CGDebugInfo::
870CollectRecordStaticField(const VarDecl *Var,
871 SmallVectorImpl<llvm::Value *> &elements,
872 llvm::DIType RecordTy) {
873 // Create the descriptor for the static variable, with or without
874 // constant initializers.
875 llvm::DIFile VUnit = getOrCreateFile(Var->getLocation());
876 llvm::DIType VTy = getOrCreateType(Var->getType(), VUnit);
877
David Blaikie327a36a2013-08-15 22:18:13 +0000878 assert(VTy.getTag() != llvm::dwarf::DW_TAG_enumeration_type &&
David Blaikie409ab562013-08-15 21:55:56 +0000879 "Do not describe enums as static members");
Eric Christopher0395de32013-01-16 01:22:32 +0000880
881 unsigned LineNumber = getLineNumber(Var->getLocation());
882 StringRef VName = Var->getName();
David Blaikiea89701b2013-01-20 01:19:17 +0000883 llvm::Constant *C = NULL;
Eric Christopher0395de32013-01-16 01:22:32 +0000884 if (Var->getInit()) {
885 const APValue *Value = Var->evaluateValue();
David Blaikiea89701b2013-01-20 01:19:17 +0000886 if (Value) {
887 if (Value->isInt())
888 C = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
889 if (Value->isFloat())
890 C = llvm::ConstantFP::get(CGM.getLLVMContext(), Value->getFloat());
891 }
Eric Christopher0395de32013-01-16 01:22:32 +0000892 }
893
894 unsigned Flags = 0;
895 AccessSpecifier Access = Var->getAccess();
896 if (Access == clang::AS_private)
897 Flags |= llvm::DIDescriptor::FlagPrivate;
898 else if (Access == clang::AS_protected)
899 Flags |= llvm::DIDescriptor::FlagProtected;
900
901 llvm::DIType GV = DBuilder.createStaticMemberType(RecordTy, VName, VUnit,
David Blaikiea89701b2013-01-20 01:19:17 +0000902 LineNumber, VTy, Flags, C);
Eric Christopher0395de32013-01-16 01:22:32 +0000903 elements.push_back(GV);
904 StaticDataMemberCache[Var->getCanonicalDecl()] = llvm::WeakVH(GV);
905}
906
907/// CollectRecordNormalField - Helper for CollectRecordFields.
908void CGDebugInfo::
909CollectRecordNormalField(const FieldDecl *field, uint64_t OffsetInBits,
910 llvm::DIFile tunit,
911 SmallVectorImpl<llvm::Value *> &elements,
912 llvm::DIType RecordTy) {
913 StringRef name = field->getName();
914 QualType type = field->getType();
915
916 // Ignore unnamed fields unless they're anonymous structs/unions.
917 if (name.empty() && !type->isRecordType())
918 return;
919
920 uint64_t SizeInBitsOverride = 0;
921 if (field->isBitField()) {
922 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
923 assert(SizeInBitsOverride && "found named 0-width bitfield");
924 }
925
926 llvm::DIType fieldType
927 = createFieldType(name, type, SizeInBitsOverride,
928 field->getLocation(), field->getAccess(),
929 OffsetInBits, tunit, RecordTy);
930
931 elements.push_back(fieldType);
932}
933
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000934/// CollectRecordFields - A helper function to collect debug info for
935/// record fields. This is used while creating debug info entry for a Record.
936void CGDebugInfo::
937CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
938 SmallVectorImpl<llvm::Value *> &elements,
939 llvm::DIType RecordTy) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000940 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(record);
941
Eric Christopher0395de32013-01-16 01:22:32 +0000942 if (CXXDecl && CXXDecl->isLambda())
943 CollectRecordLambdaFields(CXXDecl, elements, RecordTy);
944 else {
945 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000946
Eric Christopher0395de32013-01-16 01:22:32 +0000947 // Field number for non-static fields.
Eric Christopherfd5ac0d2013-01-04 17:59:07 +0000948 unsigned fieldNo = 0;
Eric Christopher0395de32013-01-16 01:22:32 +0000949
Eric Christopher0395de32013-01-16 01:22:32 +0000950 // Static and non-static members should appear in the same order as
951 // the corresponding declarations in the source program.
952 for (RecordDecl::decl_iterator I = record->decls_begin(),
953 E = record->decls_end(); I != E; ++I)
954 if (const VarDecl *V = dyn_cast<VarDecl>(*I))
955 CollectRecordStaticField(V, elements, RecordTy);
956 else if (FieldDecl *field = dyn_cast<FieldDecl>(*I)) {
Eric Christopher0395de32013-01-16 01:22:32 +0000957 CollectRecordNormalField(field, layout.getFieldOffset(fieldNo),
958 tunit, elements, RecordTy);
959
960 // Bump field number for next field.
961 ++fieldNo;
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000962 }
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000963 }
964}
965
966/// getOrCreateMethodType - CXXMethodDecl's type is a FunctionType. This
967/// function type is not updated to include implicit "this" pointer. Use this
968/// routine to get a method type which includes "this" pointer.
David Blaikie9a845292013-05-22 23:22:42 +0000969llvm::DICompositeType
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000970CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
971 llvm::DIFile Unit) {
David Blaikie9c78f9b2013-01-07 23:06:35 +0000972 const FunctionProtoType *Func = Method->getType()->getAs<FunctionProtoType>();
David Blaikie67f8b5e2013-01-07 22:24:59 +0000973 if (Method->isStatic())
David Blaikie9a845292013-05-22 23:22:42 +0000974 return llvm::DICompositeType(getOrCreateType(QualType(Func, 0), Unit));
David Blaikie9c78f9b2013-01-07 23:06:35 +0000975 return getOrCreateInstanceMethodType(Method->getThisType(CGM.getContext()),
976 Func, Unit);
977}
David Blaikie67f8b5e2013-01-07 22:24:59 +0000978
David Blaikie9a845292013-05-22 23:22:42 +0000979llvm::DICompositeType CGDebugInfo::getOrCreateInstanceMethodType(
David Blaikie9c78f9b2013-01-07 23:06:35 +0000980 QualType ThisPtr, const FunctionProtoType *Func, llvm::DIFile Unit) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000981 // Add "this" pointer.
David Blaikie9c78f9b2013-01-07 23:06:35 +0000982 llvm::DIArray Args = llvm::DICompositeType(
983 getOrCreateType(QualType(Func, 0), Unit)).getTypeArray();
Guy Benyei7f92f2d2012-12-18 14:30:41 +0000984 assert (Args.getNumElements() && "Invalid number of arguments!");
985
986 SmallVector<llvm::Value *, 16> Elts;
987
988 // First element is always return type. For 'void' functions it is NULL.
989 Elts.push_back(Args.getElement(0));
990
David Blaikie67f8b5e2013-01-07 22:24:59 +0000991 // "this" pointer is always first argument.
David Blaikie9c78f9b2013-01-07 23:06:35 +0000992 const CXXRecordDecl *RD = ThisPtr->getPointeeCXXRecordDecl();
David Blaikie67f8b5e2013-01-07 22:24:59 +0000993 if (isa<ClassTemplateSpecializationDecl>(RD)) {
994 // Create pointer type directly in this case.
995 const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
996 QualType PointeeTy = ThisPtrTy->getPointeeType();
997 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
John McCall64aa4b32013-04-16 22:48:15 +0000998 uint64_t Size = CGM.getTarget().getPointerWidth(AS);
David Blaikie67f8b5e2013-01-07 22:24:59 +0000999 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
1000 llvm::DIType PointeeType = getOrCreateType(PointeeTy, Unit);
Eric Christopherf0890c42013-05-16 00:52:20 +00001001 llvm::DIType ThisPtrType =
1002 DBuilder.createPointerType(PointeeType, Size, Align);
David Blaikie67f8b5e2013-01-07 22:24:59 +00001003 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
1004 // TODO: This and the artificial type below are misleading, the
1005 // types aren't artificial the argument is, but the current
1006 // metadata doesn't represent that.
1007 ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType);
1008 Elts.push_back(ThisPtrType);
1009 } else {
1010 llvm::DIType ThisPtrType = getOrCreateType(ThisPtr, Unit);
1011 TypeCache[ThisPtr.getAsOpaquePtr()] = ThisPtrType;
1012 ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType);
1013 Elts.push_back(ThisPtrType);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001014 }
1015
1016 // Copy rest of the arguments.
1017 for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i)
1018 Elts.push_back(Args.getElement(i));
1019
1020 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
1021
1022 return DBuilder.createSubroutineType(Unit, EltTypeArray);
1023}
1024
Eric Christopher6537f082013-05-16 00:45:12 +00001025/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001026/// inside a function.
1027static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
1028 if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
1029 return isFunctionLocalClass(NRD);
1030 if (isa<FunctionDecl>(RD->getDeclContext()))
1031 return true;
1032 return false;
1033}
1034
1035/// CreateCXXMemberFunction - A helper function to create a DISubprogram for
1036/// a single member function GlobalDecl.
1037llvm::DISubprogram
1038CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method,
1039 llvm::DIFile Unit,
1040 llvm::DIType RecordTy) {
Eric Christopher6537f082013-05-16 00:45:12 +00001041 bool IsCtorOrDtor =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001042 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
Eric Christopher6537f082013-05-16 00:45:12 +00001043
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001044 StringRef MethodName = getFunctionName(Method);
David Blaikie9a845292013-05-22 23:22:42 +00001045 llvm::DICompositeType MethodTy = getOrCreateMethodType(Method, Unit);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001046
1047 // Since a single ctor/dtor corresponds to multiple functions, it doesn't
1048 // make sense to give a single ctor/dtor a linkage name.
1049 StringRef MethodLinkageName;
1050 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
1051 MethodLinkageName = CGM.getMangledName(Method);
1052
1053 // Get the location for the method.
1054 llvm::DIFile MethodDefUnit = getOrCreateFile(Method->getLocation());
1055 unsigned MethodLine = getLineNumber(Method->getLocation());
1056
1057 // Collect virtual method info.
1058 llvm::DIType ContainingType;
Eric Christopher6537f082013-05-16 00:45:12 +00001059 unsigned Virtuality = 0;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001060 unsigned VIndex = 0;
Eric Christopher6537f082013-05-16 00:45:12 +00001061
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001062 if (Method->isVirtual()) {
1063 if (Method->isPure())
1064 Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
1065 else
1066 Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
Eric Christopher6537f082013-05-16 00:45:12 +00001067
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001068 // It doesn't make sense to give a virtual destructor a vtable index,
1069 // since a single destructor has two entries in the vtable.
1070 if (!isa<CXXDestructorDecl>(Method))
1071 VIndex = CGM.getVTableContext().getMethodVTableIndex(Method);
1072 ContainingType = RecordTy;
1073 }
1074
1075 unsigned Flags = 0;
1076 if (Method->isImplicit())
1077 Flags |= llvm::DIDescriptor::FlagArtificial;
1078 AccessSpecifier Access = Method->getAccess();
1079 if (Access == clang::AS_private)
1080 Flags |= llvm::DIDescriptor::FlagPrivate;
1081 else if (Access == clang::AS_protected)
1082 Flags |= llvm::DIDescriptor::FlagProtected;
1083 if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
1084 if (CXXC->isExplicit())
1085 Flags |= llvm::DIDescriptor::FlagExplicit;
Eric Christopher6537f082013-05-16 00:45:12 +00001086 } else if (const CXXConversionDecl *CXXC =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001087 dyn_cast<CXXConversionDecl>(Method)) {
1088 if (CXXC->isExplicit())
1089 Flags |= llvm::DIDescriptor::FlagExplicit;
1090 }
1091 if (Method->hasPrototype())
1092 Flags |= llvm::DIDescriptor::FlagPrototyped;
1093
1094 llvm::DIArray TParamsArray = CollectFunctionTemplateParams(Method, Unit);
1095 llvm::DISubprogram SP =
Eric Christopher6537f082013-05-16 00:45:12 +00001096 DBuilder.createMethod(RecordTy, MethodName, MethodLinkageName,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001097 MethodDefUnit, MethodLine,
Eric Christopher6537f082013-05-16 00:45:12 +00001098 MethodTy, /*isLocalToUnit=*/false,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001099 /* isDefinition=*/ false,
1100 Virtuality, VIndex, ContainingType,
1101 Flags, CGM.getLangOpts().Optimize, NULL,
1102 TParamsArray);
Eric Christopher6537f082013-05-16 00:45:12 +00001103
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001104 SPCache[Method->getCanonicalDecl()] = llvm::WeakVH(SP);
1105
1106 return SP;
1107}
1108
1109/// CollectCXXMemberFunctions - A helper function to collect debug info for
Eric Christopher6537f082013-05-16 00:45:12 +00001110/// C++ member functions. This is used while creating debug info entry for
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001111/// a Record.
1112void CGDebugInfo::
1113CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit,
1114 SmallVectorImpl<llvm::Value *> &EltTys,
1115 llvm::DIType RecordTy) {
1116
1117 // Since we want more than just the individual member decls if we
1118 // have templated functions iterate over every declaration to gather
1119 // the functions.
1120 for(DeclContext::decl_iterator I = RD->decls_begin(),
1121 E = RD->decls_end(); I != E; ++I) {
1122 Decl *D = *I;
David Blaikied6d5d692013-08-09 17:20:05 +00001123 if (D->isImplicit())
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001124 continue;
1125
1126 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1127 EltTys.push_back(CreateCXXMemberFunction(Method, Unit, RecordTy));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001128 }
Eric Christopher6537f082013-05-16 00:45:12 +00001129}
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001130
1131/// CollectCXXFriends - A helper function to collect debug info for
1132/// C++ base classes. This is used while creating debug info entry for
1133/// a Record.
1134void CGDebugInfo::
1135CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit,
1136 SmallVectorImpl<llvm::Value *> &EltTys,
1137 llvm::DIType RecordTy) {
1138 for (CXXRecordDecl::friend_iterator BI = RD->friend_begin(),
1139 BE = RD->friend_end(); BI != BE; ++BI) {
1140 if ((*BI)->isUnsupportedFriend())
1141 continue;
1142 if (TypeSourceInfo *TInfo = (*BI)->getFriendType())
Eric Christopher6537f082013-05-16 00:45:12 +00001143 EltTys.push_back(DBuilder.createFriend(RecordTy,
1144 getOrCreateType(TInfo->getType(),
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001145 Unit)));
1146 }
1147}
1148
1149/// CollectCXXBases - A helper function to collect debug info for
Eric Christopher6537f082013-05-16 00:45:12 +00001150/// C++ base classes. This is used while creating debug info entry for
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001151/// a Record.
1152void CGDebugInfo::
1153CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit,
1154 SmallVectorImpl<llvm::Value *> &EltTys,
1155 llvm::DIType RecordTy) {
1156
1157 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1158 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
1159 BE = RD->bases_end(); BI != BE; ++BI) {
1160 unsigned BFlags = 0;
1161 uint64_t BaseOffset;
Eric Christopher6537f082013-05-16 00:45:12 +00001162
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001163 const CXXRecordDecl *Base =
1164 cast<CXXRecordDecl>(BI->getType()->getAs<RecordType>()->getDecl());
Eric Christopher6537f082013-05-16 00:45:12 +00001165
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001166 if (BI->isVirtual()) {
1167 // virtual base offset offset is -ve. The code generator emits dwarf
1168 // expression where it expects +ve number.
Eric Christopher6537f082013-05-16 00:45:12 +00001169 BaseOffset =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001170 0 - CGM.getVTableContext()
1171 .getVirtualBaseOffsetOffset(RD, Base).getQuantity();
1172 BFlags = llvm::DIDescriptor::FlagVirtual;
1173 } else
1174 BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base));
1175 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
1176 // BI->isVirtual() and bits when not.
Eric Christopher6537f082013-05-16 00:45:12 +00001177
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001178 AccessSpecifier Access = BI->getAccessSpecifier();
1179 if (Access == clang::AS_private)
1180 BFlags |= llvm::DIDescriptor::FlagPrivate;
1181 else if (Access == clang::AS_protected)
1182 BFlags |= llvm::DIDescriptor::FlagProtected;
Eric Christopher6537f082013-05-16 00:45:12 +00001183
1184 llvm::DIType DTy =
1185 DBuilder.createInheritance(RecordTy,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001186 getOrCreateType(BI->getType(), Unit),
1187 BaseOffset, BFlags);
1188 EltTys.push_back(DTy);
1189 }
1190}
1191
1192/// CollectTemplateParams - A helper function to collect template parameters.
1193llvm::DIArray CGDebugInfo::
1194CollectTemplateParams(const TemplateParameterList *TPList,
David Blaikie35178dc2013-06-22 18:59:18 +00001195 ArrayRef<TemplateArgument> TAList,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001196 llvm::DIFile Unit) {
Eric Christopher6537f082013-05-16 00:45:12 +00001197 SmallVector<llvm::Value *, 16> TemplateParams;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001198 for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
1199 const TemplateArgument &TA = TAList[i];
David Blaikie35178dc2013-06-22 18:59:18 +00001200 StringRef Name;
1201 if (TPList)
1202 Name = TPList->getParam(i)->getName();
David Blaikie9dfd2432013-05-10 21:53:14 +00001203 switch (TA.getKind()) {
1204 case TemplateArgument::Type: {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001205 llvm::DIType TTy = getOrCreateType(TA.getAsType(), Unit);
1206 llvm::DITemplateTypeParameter TTP =
David Blaikie35178dc2013-06-22 18:59:18 +00001207 DBuilder.createTemplateTypeParameter(TheCU, Name, TTy);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001208 TemplateParams.push_back(TTP);
David Blaikie9dfd2432013-05-10 21:53:14 +00001209 } break;
1210 case TemplateArgument::Integral: {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001211 llvm::DIType TTy = getOrCreateType(TA.getIntegralType(), Unit);
1212 llvm::DITemplateValueParameter TVP =
David Blaikie9dfd2432013-05-10 21:53:14 +00001213 DBuilder.createTemplateValueParameter(
David Blaikie35178dc2013-06-22 18:59:18 +00001214 TheCU, Name, TTy,
David Blaikie9dfd2432013-05-10 21:53:14 +00001215 llvm::ConstantInt::get(CGM.getLLVMContext(), TA.getAsIntegral()));
1216 TemplateParams.push_back(TVP);
1217 } break;
1218 case TemplateArgument::Declaration: {
1219 const ValueDecl *D = TA.getAsDecl();
1220 bool InstanceMember = D->isCXXInstanceMember();
1221 QualType T = InstanceMember
1222 ? CGM.getContext().getMemberPointerType(
1223 D->getType(), cast<RecordDecl>(D->getDeclContext())
1224 ->getTypeForDecl())
1225 : CGM.getContext().getPointerType(D->getType());
1226 llvm::DIType TTy = getOrCreateType(T, Unit);
1227 llvm::Value *V = 0;
1228 // Variable pointer template parameters have a value that is the address
1229 // of the variable.
1230 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
1231 V = CGM.GetAddrOfGlobalVar(VD);
1232 // Member function pointers have special support for building them, though
1233 // this is currently unsupported in LLVM CodeGen.
David Blaikief8aa1552013-05-13 06:57:50 +00001234 if (InstanceMember) {
David Blaikie9dfd2432013-05-10 21:53:14 +00001235 if (const CXXMethodDecl *method = dyn_cast<CXXMethodDecl>(D))
1236 V = CGM.getCXXABI().EmitMemberPointer(method);
David Blaikief8aa1552013-05-13 06:57:50 +00001237 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
1238 V = CGM.GetAddrOfFunction(FD);
David Blaikie9dfd2432013-05-10 21:53:14 +00001239 // Member data pointers have special handling too to compute the fixed
1240 // offset within the object.
1241 if (isa<FieldDecl>(D)) {
1242 // These five lines (& possibly the above member function pointer
1243 // handling) might be able to be refactored to use similar code in
1244 // CodeGenModule::getMemberPointerConstant
1245 uint64_t fieldOffset = CGM.getContext().getFieldOffset(D);
1246 CharUnits chars =
1247 CGM.getContext().toCharUnitsFromBits((int64_t) fieldOffset);
1248 V = CGM.getCXXABI().EmitMemberDataPointer(
1249 cast<MemberPointerType>(T.getTypePtr()), chars);
1250 }
1251 llvm::DITemplateValueParameter TVP =
David Blaikie35178dc2013-06-22 18:59:18 +00001252 DBuilder.createTemplateValueParameter(TheCU, Name, TTy, V);
David Blaikie9dfd2432013-05-10 21:53:14 +00001253 TemplateParams.push_back(TVP);
1254 } break;
1255 case TemplateArgument::NullPtr: {
1256 QualType T = TA.getNullPtrType();
1257 llvm::DIType TTy = getOrCreateType(T, Unit);
1258 llvm::Value *V = 0;
1259 // Special case member data pointer null values since they're actually -1
1260 // instead of zero.
1261 if (const MemberPointerType *MPT =
1262 dyn_cast<MemberPointerType>(T.getTypePtr()))
1263 // But treat member function pointers as simple zero integers because
1264 // it's easier than having a special case in LLVM's CodeGen. If LLVM
1265 // CodeGen grows handling for values of non-null member function
1266 // pointers then perhaps we could remove this special case and rely on
1267 // EmitNullMemberPointer for member function pointers.
1268 if (MPT->isMemberDataPointer())
1269 V = CGM.getCXXABI().EmitNullMemberPointer(MPT);
1270 if (!V)
1271 V = llvm::ConstantInt::get(CGM.Int8Ty, 0);
1272 llvm::DITemplateValueParameter TVP =
David Blaikie35178dc2013-06-22 18:59:18 +00001273 DBuilder.createTemplateValueParameter(TheCU, Name, TTy, V);
David Blaikie9dfd2432013-05-10 21:53:14 +00001274 TemplateParams.push_back(TVP);
1275 } break;
David Blaikie35178dc2013-06-22 18:59:18 +00001276 case TemplateArgument::Template: {
1277 llvm::DITemplateValueParameter TVP =
1278 DBuilder.createTemplateTemplateParameter(
1279 TheCU, Name, llvm::DIType(),
1280 TA.getAsTemplate().getAsTemplateDecl()
1281 ->getQualifiedNameAsString());
1282 TemplateParams.push_back(TVP);
1283 } break;
1284 case TemplateArgument::Pack: {
1285 llvm::DITemplateValueParameter TVP =
1286 DBuilder.createTemplateParameterPack(
1287 TheCU, Name, llvm::DIType(),
1288 CollectTemplateParams(NULL, TA.getPackAsArray(), Unit));
1289 TemplateParams.push_back(TVP);
1290 } break;
David Blaikiee8065122013-05-10 23:36:06 +00001291 // And the following should never occur:
David Blaikie9dfd2432013-05-10 21:53:14 +00001292 case TemplateArgument::Expression:
1293 case TemplateArgument::TemplateExpansion:
David Blaikie9dfd2432013-05-10 21:53:14 +00001294 case TemplateArgument::Null:
1295 llvm_unreachable(
1296 "These argument types shouldn't exist in concrete types");
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001297 }
1298 }
1299 return DBuilder.getOrCreateArray(TemplateParams);
1300}
1301
1302/// CollectFunctionTemplateParams - A helper function to collect debug
1303/// info for function template parameters.
1304llvm::DIArray CGDebugInfo::
1305CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) {
1306 if (FD->getTemplatedKind() ==
1307 FunctionDecl::TK_FunctionTemplateSpecialization) {
1308 const TemplateParameterList *TList =
1309 FD->getTemplateSpecializationInfo()->getTemplate()
1310 ->getTemplateParameters();
David Blaikie35178dc2013-06-22 18:59:18 +00001311 return CollectTemplateParams(
1312 TList, FD->getTemplateSpecializationArgs()->asArray(), Unit);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001313 }
1314 return llvm::DIArray();
1315}
1316
1317/// CollectCXXTemplateParams - A helper function to collect debug info for
1318/// template parameters.
1319llvm::DIArray CGDebugInfo::
1320CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial,
1321 llvm::DIFile Unit) {
1322 llvm::PointerUnion<ClassTemplateDecl *,
1323 ClassTemplatePartialSpecializationDecl *>
1324 PU = TSpecial->getSpecializedTemplateOrPartial();
Eric Christopher6537f082013-05-16 00:45:12 +00001325
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001326 TemplateParameterList *TPList = PU.is<ClassTemplateDecl *>() ?
1327 PU.get<ClassTemplateDecl *>()->getTemplateParameters() :
1328 PU.get<ClassTemplatePartialSpecializationDecl *>()->getTemplateParameters();
1329 const TemplateArgumentList &TAList = TSpecial->getTemplateInstantiationArgs();
David Blaikie35178dc2013-06-22 18:59:18 +00001330 return CollectTemplateParams(TPList, TAList.asArray(), Unit);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001331}
1332
1333/// getOrCreateVTablePtrType - Return debug info descriptor for vtable.
1334llvm::DIType CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile Unit) {
1335 if (VTablePtrType.isValid())
1336 return VTablePtrType;
1337
1338 ASTContext &Context = CGM.getContext();
1339
1340 /* Function type */
1341 llvm::Value *STy = getOrCreateType(Context.IntTy, Unit);
1342 llvm::DIArray SElements = DBuilder.getOrCreateArray(STy);
1343 llvm::DIType SubTy = DBuilder.createSubroutineType(Unit, SElements);
1344 unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
1345 llvm::DIType vtbl_ptr_type = DBuilder.createPointerType(SubTy, Size, 0,
1346 "__vtbl_ptr_type");
1347 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
1348 return VTablePtrType;
1349}
1350
1351/// getVTableName - Get vtable name for the given Class.
1352StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
1353 // Construct gdb compatible name name.
1354 std::string Name = "_vptr$" + RD->getNameAsString();
1355
1356 // Copy this name on the side and use its reference.
1357 char *StrPtr = DebugInfoNames.Allocate<char>(Name.length());
1358 memcpy(StrPtr, Name.data(), Name.length());
1359 return StringRef(StrPtr, Name.length());
1360}
1361
1362
1363/// CollectVTableInfo - If the C++ class has vtable info then insert appropriate
1364/// debug info entry in EltTys vector.
1365void CGDebugInfo::
1366CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit,
1367 SmallVectorImpl<llvm::Value *> &EltTys) {
1368 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1369
1370 // If there is a primary base then it will hold vtable info.
1371 if (RL.getPrimaryBase())
1372 return;
1373
1374 // If this class is not dynamic then there is not any vtable info to collect.
1375 if (!RD->isDynamicClass())
1376 return;
1377
1378 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1379 llvm::DIType VPTR
1380 = DBuilder.createMemberType(Unit, getVTableName(RD), Unit,
Eric Christopherf0890c42013-05-16 00:52:20 +00001381 0, Size, 0, 0,
1382 llvm::DIDescriptor::FlagArtificial,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001383 getOrCreateVTablePtrType(Unit));
1384 EltTys.push_back(VPTR);
1385}
1386
Eric Christopher6537f082013-05-16 00:45:12 +00001387/// getOrCreateRecordType - Emit record type's standalone debug info.
1388llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001389 SourceLocation Loc) {
Eric Christopher13c97672013-05-16 00:45:23 +00001390 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001391 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
1392 return T;
1393}
1394
1395/// getOrCreateInterfaceType - Emit an objective c interface type standalone
1396/// debug info.
1397llvm::DIType CGDebugInfo::getOrCreateInterfaceType(QualType D,
Eric Christopherbe5f1be2013-02-21 22:35:08 +00001398 SourceLocation Loc) {
Eric Christopher13c97672013-05-16 00:45:23 +00001399 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001400 llvm::DIType T = getOrCreateType(D, getOrCreateFile(Loc));
Adrian Prantlebbd7e02013-03-11 18:33:46 +00001401 RetainedTypes.push_back(D.getAsOpaquePtr());
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001402 return T;
1403}
1404
David Blaikie27804892013-08-15 20:49:17 +00001405void CGDebugInfo::completeType(const RecordDecl *RD) {
1406 if (DebugKind > CodeGenOptions::LimitedDebugInfo ||
1407 !CGM.getLangOpts().CPlusPlus)
1408 completeRequiredType(RD);
1409}
1410
1411void CGDebugInfo::completeRequiredType(const RecordDecl *RD) {
1412 QualType Ty = CGM.getContext().getRecordType(RD);
1413 llvm::DIType T = getTypeOrNull(Ty);
1414 if (!T || !T.isForwardDecl())
1415 return;
1416 void* TyPtr = Ty.getAsOpaquePtr();
1417 if (CompletedTypeCache.count(TyPtr))
1418 return;
1419 llvm::DIType Res = CreateTypeDefinition(Ty->castAs<RecordType>());
1420 assert(!Res.isForwardDecl());
1421 CompletedTypeCache[TyPtr] = Res;
1422 TypeCache[TyPtr] = Res;
1423}
1424
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001425/// CreateType - get structure or union type.
David Blaikie5f6e2f42013-06-05 05:32:23 +00001426llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty, bool Declaration) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001427 RecordDecl *RD = Ty->getDecl();
Adrian Prantl776bfa12013-06-18 23:32:21 +00001428 // Limited debug info should only remove struct definitions that can
1429 // safely be replaced by a forward declaration in the source code.
David Blaikie658cd2c2013-07-13 21:08:14 +00001430 if (DebugKind <= CodeGenOptions::LimitedDebugInfo && Declaration &&
David Blaikieac00b792013-08-01 20:57:40 +00001431 !RD->isCompleteDefinitionRequired() && CGM.getLangOpts().CPlusPlus) {
David Blaikie5f6e2f42013-06-05 05:32:23 +00001432 llvm::DIDescriptor FDContext =
1433 getContextDescriptor(cast<Decl>(RD->getDeclContext()));
David Blaikie951094b2013-08-15 18:59:40 +00001434 llvm::DIType RetTy = getOrCreateRecordFwdDecl(RD, FDContext);
David Blaikie5f6e2f42013-06-05 05:32:23 +00001435 return RetTy;
1436 }
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001437
David Blaikie27804892013-08-15 20:49:17 +00001438 return CreateTypeDefinition(Ty);
1439}
1440
1441llvm::DIType CGDebugInfo::CreateTypeDefinition(const RecordType *Ty) {
1442 RecordDecl *RD = Ty->getDecl();
1443
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001444 // Get overall information about the record type for the debug info.
1445 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
1446
1447 // Records and classes and unions can all be recursive. To handle them, we
1448 // first generate a debug descriptor for the struct as a forward declaration.
1449 // Then (if it is a definition) we go through and get debug info for all of
1450 // its members. Finally, we create a descriptor for the complete type (which
1451 // may refer to the forward decl if the struct is recursive) and replace all
1452 // uses of the forward declaration with the final definition.
1453
David Blaikie4a077162013-08-12 22:24:20 +00001454 llvm::DICompositeType FwdDecl(getOrCreateLimitedType(Ty, DefUnit));
Manman Renb6b0a712013-07-02 19:01:53 +00001455 assert(FwdDecl.isCompositeType() &&
David Blaikie9a845292013-05-22 23:22:42 +00001456 "The debug type of a RecordType should be a llvm::DICompositeType");
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001457
1458 if (FwdDecl.isForwardDecl())
1459 return FwdDecl;
1460
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001461 // Push the struct on region stack.
Eric Christopherf068c922013-04-02 22:59:11 +00001462 LexicalBlockStack.push_back(&*FwdDecl);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001463 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
1464
Adrian Prantl4919de62013-03-06 22:03:30 +00001465 // Add this to the completed-type cache while we're completing it recursively.
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001466 CompletedTypeCache[QualType(Ty, 0).getAsOpaquePtr()] = FwdDecl;
1467
1468 // Convert all the elements.
1469 SmallVector<llvm::Value *, 16> EltTys;
1470
1471 // Note: The split of CXXDecl information here is intentional, the
1472 // gdb tests will depend on a certain ordering at printout. The debug
1473 // information offsets are still correct if we merge them all together
1474 // though.
1475 const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
1476 if (CXXDecl) {
1477 CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl);
1478 CollectVTableInfo(CXXDecl, DefUnit, EltTys);
1479 }
1480
Eric Christopher0395de32013-01-16 01:22:32 +00001481 // Collect data fields (including static variables and any initializers).
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001482 CollectRecordFields(RD, DefUnit, EltTys, FwdDecl);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001483 if (CXXDecl) {
1484 CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl);
1485 CollectCXXFriends(CXXDecl, DefUnit, EltTys, FwdDecl);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001486 }
1487
1488 LexicalBlockStack.pop_back();
1489 RegionMap.erase(Ty->getDecl());
1490
1491 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
David Blaikie80588332013-08-01 20:31:40 +00001492 FwdDecl.setTypeArray(Elements);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001493
Eric Christopherf068c922013-04-02 22:59:11 +00001494 RegionMap[Ty->getDecl()] = llvm::WeakVH(FwdDecl);
1495 return FwdDecl;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001496}
1497
1498/// CreateType - get objective-c object type.
1499llvm::DIType CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1500 llvm::DIFile Unit) {
1501 // Ignore protocols.
1502 return getOrCreateType(Ty->getBaseType(), Unit);
1503}
1504
Adrian Prantl5ae17a12013-06-07 01:10:45 +00001505
1506/// \return true if Getter has the default name for the property PD.
1507static bool hasDefaultGetterName(const ObjCPropertyDecl *PD,
1508 const ObjCMethodDecl *Getter) {
1509 assert(PD);
1510 if (!Getter)
1511 return true;
1512
1513 assert(Getter->getDeclName().isObjCZeroArgSelector());
1514 return PD->getName() ==
1515 Getter->getDeclName().getObjCSelector().getNameForSlot(0);
1516}
1517
1518/// \return true if Setter has the default name for the property PD.
1519static bool hasDefaultSetterName(const ObjCPropertyDecl *PD,
1520 const ObjCMethodDecl *Setter) {
1521 assert(PD);
1522 if (!Setter)
1523 return true;
1524
1525 assert(Setter->getDeclName().isObjCOneArgSelector());
Adrian Prantl80e8ea92013-06-07 22:29:12 +00001526 return SelectorTable::constructSetterName(PD->getName()) ==
Adrian Prantl5ae17a12013-06-07 01:10:45 +00001527 Setter->getDeclName().getObjCSelector().getNameForSlot(0);
1528}
1529
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001530/// CreateType - get objective-c interface type.
1531llvm::DIType CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
1532 llvm::DIFile Unit) {
1533 ObjCInterfaceDecl *ID = Ty->getDecl();
1534 if (!ID)
1535 return llvm::DIType();
1536
1537 // Get overall information about the record type for the debug info.
1538 llvm::DIFile DefUnit = getOrCreateFile(ID->getLocation());
1539 unsigned Line = getLineNumber(ID->getLocation());
1540 unsigned RuntimeLang = TheCU.getLanguage();
1541
1542 // If this is just a forward declaration return a special forward-declaration
1543 // debug type since we won't be able to lay out the entire type.
1544 ObjCInterfaceDecl *Def = ID->getDefinition();
1545 if (!Def) {
1546 llvm::DIType FwdDecl =
1547 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
Eric Christopherbe5f1be2013-02-21 22:35:08 +00001548 ID->getName(), TheCU, DefUnit, Line,
1549 RuntimeLang);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001550 return FwdDecl;
1551 }
1552
1553 ID = Def;
1554
1555 // Bit size, align and offset of the type.
1556 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1557 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1558
1559 unsigned Flags = 0;
1560 if (ID->getImplementation())
1561 Flags |= llvm::DIDescriptor::FlagObjcClassComplete;
1562
Eric Christopherf068c922013-04-02 22:59:11 +00001563 llvm::DICompositeType RealDecl =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001564 DBuilder.createStructType(Unit, ID->getName(), DefUnit,
1565 Line, Size, Align, Flags,
David Blaikiec1d0af12013-02-25 01:07:08 +00001566 llvm::DIType(), llvm::DIArray(), RuntimeLang);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001567
1568 // Otherwise, insert it into the CompletedTypeCache so that recursive uses
1569 // will find it and we're emitting the complete type.
Adrian Prantl4919de62013-03-06 22:03:30 +00001570 QualType QualTy = QualType(Ty, 0);
1571 CompletedTypeCache[QualTy.getAsOpaquePtr()] = RealDecl;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001572
Eric Christopherd3003dc2013-07-14 21:00:07 +00001573 // Push the struct on region stack.
Eric Christopherf068c922013-04-02 22:59:11 +00001574 LexicalBlockStack.push_back(static_cast<llvm::MDNode*>(RealDecl));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001575 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
1576
1577 // Convert all the elements.
1578 SmallVector<llvm::Value *, 16> EltTys;
1579
1580 ObjCInterfaceDecl *SClass = ID->getSuperClass();
1581 if (SClass) {
1582 llvm::DIType SClassTy =
1583 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
1584 if (!SClassTy.isValid())
1585 return llvm::DIType();
Eric Christopher6537f082013-05-16 00:45:12 +00001586
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001587 llvm::DIType InhTag =
1588 DBuilder.createInheritance(RealDecl, SClassTy, 0, 0);
1589 EltTys.push_back(InhTag);
1590 }
1591
Eric Christopherd3003dc2013-07-14 21:00:07 +00001592 // Create entries for all of the properties.
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001593 for (ObjCContainerDecl::prop_iterator I = ID->prop_begin(),
1594 E = ID->prop_end(); I != E; ++I) {
1595 const ObjCPropertyDecl *PD = *I;
1596 SourceLocation Loc = PD->getLocation();
1597 llvm::DIFile PUnit = getOrCreateFile(Loc);
1598 unsigned PLine = getLineNumber(Loc);
1599 ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
1600 ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
1601 llvm::MDNode *PropertyNode =
1602 DBuilder.createObjCProperty(PD->getName(),
Eric Christopherbe5f1be2013-02-21 22:35:08 +00001603 PUnit, PLine,
Adrian Prantl5ae17a12013-06-07 01:10:45 +00001604 hasDefaultGetterName(PD, Getter) ? "" :
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001605 getSelectorName(PD->getGetterName()),
Adrian Prantl5ae17a12013-06-07 01:10:45 +00001606 hasDefaultSetterName(PD, Setter) ? "" :
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001607 getSelectorName(PD->getSetterName()),
1608 PD->getPropertyAttributes(),
Eric Christopherbe5f1be2013-02-21 22:35:08 +00001609 getOrCreateType(PD->getType(), PUnit));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001610 EltTys.push_back(PropertyNode);
1611 }
1612
1613 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
1614 unsigned FieldNo = 0;
1615 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
1616 Field = Field->getNextIvar(), ++FieldNo) {
1617 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
1618 if (!FieldTy.isValid())
1619 return llvm::DIType();
Eric Christopher6537f082013-05-16 00:45:12 +00001620
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001621 StringRef FieldName = Field->getName();
1622
1623 // Ignore unnamed fields.
1624 if (FieldName.empty())
1625 continue;
1626
1627 // Get the location for the field.
1628 llvm::DIFile FieldDefUnit = getOrCreateFile(Field->getLocation());
1629 unsigned FieldLine = getLineNumber(Field->getLocation());
1630 QualType FType = Field->getType();
1631 uint64_t FieldSize = 0;
1632 unsigned FieldAlign = 0;
1633
1634 if (!FType->isIncompleteArrayType()) {
1635
1636 // Bit size, align and offset of the type.
1637 FieldSize = Field->isBitField()
Eric Christopherd3003dc2013-07-14 21:00:07 +00001638 ? Field->getBitWidthValue(CGM.getContext())
1639 : CGM.getContext().getTypeSize(FType);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001640 FieldAlign = CGM.getContext().getTypeAlign(FType);
1641 }
1642
1643 uint64_t FieldOffset;
1644 if (CGM.getLangOpts().ObjCRuntime.isNonFragile()) {
1645 // We don't know the runtime offset of an ivar if we're using the
1646 // non-fragile ABI. For bitfields, use the bit offset into the first
1647 // byte of storage of the bitfield. For other fields, use zero.
1648 if (Field->isBitField()) {
1649 FieldOffset = CGM.getObjCRuntime().ComputeBitfieldBitOffset(
1650 CGM, ID, Field);
1651 FieldOffset %= CGM.getContext().getCharWidth();
1652 } else {
1653 FieldOffset = 0;
1654 }
1655 } else {
1656 FieldOffset = RL.getFieldOffset(FieldNo);
1657 }
1658
1659 unsigned Flags = 0;
1660 if (Field->getAccessControl() == ObjCIvarDecl::Protected)
1661 Flags = llvm::DIDescriptor::FlagProtected;
1662 else if (Field->getAccessControl() == ObjCIvarDecl::Private)
1663 Flags = llvm::DIDescriptor::FlagPrivate;
1664
1665 llvm::MDNode *PropertyNode = NULL;
1666 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) {
Eric Christopher6537f082013-05-16 00:45:12 +00001667 if (ObjCPropertyImplDecl *PImpD =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001668 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) {
1669 if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) {
Eric Christopherbe5f1be2013-02-21 22:35:08 +00001670 SourceLocation Loc = PD->getLocation();
1671 llvm::DIFile PUnit = getOrCreateFile(Loc);
1672 unsigned PLine = getLineNumber(Loc);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001673 ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
1674 ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
1675 PropertyNode =
1676 DBuilder.createObjCProperty(PD->getName(),
1677 PUnit, PLine,
Adrian Prantl5ae17a12013-06-07 01:10:45 +00001678 hasDefaultGetterName(PD, Getter) ? "" :
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001679 getSelectorName(PD->getGetterName()),
Adrian Prantl5ae17a12013-06-07 01:10:45 +00001680 hasDefaultSetterName(PD, Setter) ? "" :
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001681 getSelectorName(PD->getSetterName()),
1682 PD->getPropertyAttributes(),
1683 getOrCreateType(PD->getType(), PUnit));
1684 }
1685 }
1686 }
1687 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
1688 FieldLine, FieldSize, FieldAlign,
1689 FieldOffset, Flags, FieldTy,
1690 PropertyNode);
1691 EltTys.push_back(FieldTy);
1692 }
1693
1694 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Eric Christopherf068c922013-04-02 22:59:11 +00001695 RealDecl.setTypeArray(Elements);
Adrian Prantl4919de62013-03-06 22:03:30 +00001696
1697 // If the implementation is not yet set, we do not want to mark it
1698 // as complete. An implementation may declare additional
1699 // private ivars that we would miss otherwise.
1700 if (ID->getImplementation() == 0)
1701 CompletedTypeCache.erase(QualTy.getAsOpaquePtr());
Eric Christopher6537f082013-05-16 00:45:12 +00001702
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001703 LexicalBlockStack.pop_back();
Eric Christopherf068c922013-04-02 22:59:11 +00001704 return RealDecl;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001705}
1706
1707llvm::DIType CGDebugInfo::CreateType(const VectorType *Ty, llvm::DIFile Unit) {
1708 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit);
1709 int64_t Count = Ty->getNumElements();
1710 if (Count == 0)
1711 // If number of elements are not known then this is an unbounded array.
1712 // Use Count == -1 to express such arrays.
1713 Count = -1;
1714
1715 llvm::Value *Subscript = DBuilder.getOrCreateSubrange(0, Count);
1716 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
1717
1718 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1719 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1720
1721 return DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
1722}
1723
1724llvm::DIType CGDebugInfo::CreateType(const ArrayType *Ty,
1725 llvm::DIFile Unit) {
1726 uint64_t Size;
1727 uint64_t Align;
1728
1729 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
1730 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
1731 Size = 0;
1732 Align =
1733 CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
1734 } else if (Ty->isIncompleteArrayType()) {
1735 Size = 0;
1736 if (Ty->getElementType()->isIncompleteType())
1737 Align = 0;
1738 else
1739 Align = CGM.getContext().getTypeAlign(Ty->getElementType());
David Blaikie089db2e2013-05-09 20:48:12 +00001740 } else if (Ty->isIncompleteType()) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001741 Size = 0;
1742 Align = 0;
1743 } else {
1744 // Size and align of the whole array, not the element type.
1745 Size = CGM.getContext().getTypeSize(Ty);
1746 Align = CGM.getContext().getTypeAlign(Ty);
1747 }
1748
1749 // Add the dimensions of the array. FIXME: This loses CV qualifiers from
1750 // interior arrays, do we care? Why aren't nested arrays represented the
1751 // obvious/recursive way?
1752 SmallVector<llvm::Value *, 8> Subscripts;
1753 QualType EltTy(Ty, 0);
1754 while ((Ty = dyn_cast<ArrayType>(EltTy))) {
1755 // If the number of elements is known, then count is that number. Otherwise,
1756 // it's -1. This allows us to represent a subrange with an array of 0
1757 // elements, like this:
1758 //
1759 // struct foo {
1760 // int x[0];
1761 // };
1762 int64_t Count = -1; // Count == -1 is an unbounded array.
1763 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty))
1764 Count = CAT->getSize().getZExtValue();
Eric Christopher6537f082013-05-16 00:45:12 +00001765
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001766 // FIXME: Verify this is right for VLAs.
1767 Subscripts.push_back(DBuilder.getOrCreateSubrange(0, Count));
1768 EltTy = Ty->getElementType();
1769 }
1770
1771 llvm::DIArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
1772
Eric Christopher6537f082013-05-16 00:45:12 +00001773 llvm::DIType DbgTy =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001774 DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
1775 SubscriptArray);
1776 return DbgTy;
1777}
1778
Eric Christopher6537f082013-05-16 00:45:12 +00001779llvm::DIType CGDebugInfo::CreateType(const LValueReferenceType *Ty,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001780 llvm::DIFile Unit) {
Eric Christopher6537f082013-05-16 00:45:12 +00001781 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001782 Ty, Ty->getPointeeType(), Unit);
1783}
1784
Eric Christopher6537f082013-05-16 00:45:12 +00001785llvm::DIType CGDebugInfo::CreateType(const RValueReferenceType *Ty,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001786 llvm::DIFile Unit) {
Eric Christopher6537f082013-05-16 00:45:12 +00001787 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001788 Ty, Ty->getPointeeType(), Unit);
1789}
1790
Eric Christopher6537f082013-05-16 00:45:12 +00001791llvm::DIType CGDebugInfo::CreateType(const MemberPointerType *Ty,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001792 llvm::DIFile U) {
David Blaikiee8d75142013-01-19 19:20:56 +00001793 llvm::DIType ClassType = getOrCreateType(QualType(Ty->getClass(), 0), U);
1794 if (!Ty->getPointeeType()->isFunctionType())
1795 return DBuilder.createMemberPointerType(
David Blaikieb3c23772013-08-12 23:14:36 +00001796 getOrCreateType(Ty->getPointeeType(), U, true), ClassType);
David Blaikiee8d75142013-01-19 19:20:56 +00001797 return DBuilder.createMemberPointerType(getOrCreateInstanceMethodType(
1798 CGM.getContext().getPointerType(
1799 QualType(Ty->getClass(), Ty->getPointeeType().getCVRQualifiers())),
1800 Ty->getPointeeType()->getAs<FunctionProtoType>(), U),
1801 ClassType);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001802}
1803
Eric Christopher6537f082013-05-16 00:45:12 +00001804llvm::DIType CGDebugInfo::CreateType(const AtomicType *Ty,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001805 llvm::DIFile U) {
1806 // Ignore the atomic wrapping
1807 // FIXME: What is the correct representation?
1808 return getOrCreateType(Ty->getValueType(), U);
1809}
1810
1811/// CreateEnumType - get enumeration type.
1812llvm::DIType CGDebugInfo::CreateEnumType(const EnumDecl *ED) {
1813 uint64_t Size = 0;
1814 uint64_t Align = 0;
1815 if (!ED->getTypeForDecl()->isIncompleteType()) {
1816 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
1817 Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
1818 }
1819
1820 // If this is just a forward declaration, construct an appropriately
1821 // marked node and just return it.
1822 if (!ED->getDefinition()) {
1823 llvm::DIDescriptor EDContext;
1824 EDContext = getContextDescriptor(cast<Decl>(ED->getDeclContext()));
1825 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1826 unsigned Line = getLineNumber(ED->getLocation());
1827 StringRef EDName = ED->getName();
1828 return DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_enumeration_type,
1829 EDName, EDContext, DefUnit, Line, 0,
1830 Size, Align);
1831 }
1832
1833 // Create DIEnumerator elements for each enumerator.
1834 SmallVector<llvm::Value *, 16> Enumerators;
1835 ED = ED->getDefinition();
1836 for (EnumDecl::enumerator_iterator
1837 Enum = ED->enumerator_begin(), EnumEnd = ED->enumerator_end();
1838 Enum != EnumEnd; ++Enum) {
1839 Enumerators.push_back(
1840 DBuilder.createEnumerator(Enum->getName(),
David Blaikieac8f43c2013-06-24 07:13:13 +00001841 Enum->getInitVal().getSExtValue()));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001842 }
1843
1844 // Return a CompositeType for the enum itself.
1845 llvm::DIArray EltArray = DBuilder.getOrCreateArray(Enumerators);
1846
1847 llvm::DIFile DefUnit = getOrCreateFile(ED->getLocation());
1848 unsigned Line = getLineNumber(ED->getLocation());
Eric Christopher6537f082013-05-16 00:45:12 +00001849 llvm::DIDescriptor EnumContext =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001850 getContextDescriptor(cast<Decl>(ED->getDeclContext()));
Adrian Prantl59d6a712013-04-19 19:56:39 +00001851 llvm::DIType ClassTy = ED->isFixed() ?
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001852 getOrCreateType(ED->getIntegerType(), DefUnit) : llvm::DIType();
Eric Christopher6537f082013-05-16 00:45:12 +00001853 llvm::DIType DbgTy =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001854 DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, Line,
1855 Size, Align, EltArray,
1856 ClassTy);
1857 return DbgTy;
1858}
1859
David Blaikie4b12be62013-01-21 04:37:12 +00001860static QualType UnwrapTypeForDebugInfo(QualType T, const ASTContext &C) {
1861 Qualifiers Quals;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001862 do {
David Blaikie4b12be62013-01-21 04:37:12 +00001863 Quals += T.getLocalQualifiers();
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001864 QualType LastT = T;
1865 switch (T->getTypeClass()) {
1866 default:
David Blaikie4b12be62013-01-21 04:37:12 +00001867 return C.getQualifiedType(T.getTypePtr(), Quals);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001868 case Type::TemplateSpecialization:
1869 T = cast<TemplateSpecializationType>(T)->desugar();
1870 break;
1871 case Type::TypeOfExpr:
1872 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
1873 break;
1874 case Type::TypeOf:
1875 T = cast<TypeOfType>(T)->getUnderlyingType();
1876 break;
1877 case Type::Decltype:
1878 T = cast<DecltypeType>(T)->getUnderlyingType();
1879 break;
1880 case Type::UnaryTransform:
1881 T = cast<UnaryTransformType>(T)->getUnderlyingType();
1882 break;
1883 case Type::Attributed:
1884 T = cast<AttributedType>(T)->getEquivalentType();
1885 break;
1886 case Type::Elaborated:
1887 T = cast<ElaboratedType>(T)->getNamedType();
1888 break;
1889 case Type::Paren:
1890 T = cast<ParenType>(T)->getInnerType();
1891 break;
David Blaikie4b12be62013-01-21 04:37:12 +00001892 case Type::SubstTemplateTypeParm:
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001893 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001894 break;
1895 case Type::Auto:
David Blaikie91296482013-05-24 21:24:35 +00001896 QualType DT = cast<AutoType>(T)->getDeducedType();
1897 if (DT.isNull())
1898 return T;
1899 T = DT;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001900 break;
1901 }
Eric Christopher6537f082013-05-16 00:45:12 +00001902
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001903 assert(T != LastT && "Type unwrapping failed to unwrap!");
NAKAMURA Takumid24c9ab2013-01-21 10:51:28 +00001904 (void)LastT;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001905 } while (true);
1906}
1907
Eric Christopherf0890c42013-05-16 00:52:20 +00001908/// getType - Get the type from the cache or return null type if it doesn't
1909/// exist.
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001910llvm::DIType CGDebugInfo::getTypeOrNull(QualType Ty) {
1911
1912 // Unwrap the type as needed for debug information.
David Blaikie4b12be62013-01-21 04:37:12 +00001913 Ty = UnwrapTypeForDebugInfo(Ty, CGM.getContext());
Eric Christopher6537f082013-05-16 00:45:12 +00001914
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001915 // Check for existing entry.
Adrian Prantlebbd7e02013-03-11 18:33:46 +00001916 if (Ty->getTypeClass() == Type::ObjCInterface) {
1917 llvm::Value *V = getCachedInterfaceTypeOrNull(Ty);
1918 if (V)
1919 return llvm::DIType(cast<llvm::MDNode>(V));
1920 else return llvm::DIType();
1921 }
1922
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001923 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
1924 TypeCache.find(Ty.getAsOpaquePtr());
1925 if (it != TypeCache.end()) {
1926 // Verify that the debug info still exists.
1927 if (llvm::Value *V = it->second)
1928 return llvm::DIType(cast<llvm::MDNode>(V));
1929 }
1930
1931 return llvm::DIType();
1932}
1933
1934/// getCompletedTypeOrNull - Get the type from the cache or return null if it
1935/// doesn't exist.
1936llvm::DIType CGDebugInfo::getCompletedTypeOrNull(QualType Ty) {
1937
1938 // Unwrap the type as needed for debug information.
David Blaikie4b12be62013-01-21 04:37:12 +00001939 Ty = UnwrapTypeForDebugInfo(Ty, CGM.getContext());
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001940
1941 // Check for existing entry.
Adrian Prantl4919de62013-03-06 22:03:30 +00001942 llvm::Value *V = 0;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001943 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
1944 CompletedTypeCache.find(Ty.getAsOpaquePtr());
Adrian Prantl4919de62013-03-06 22:03:30 +00001945 if (it != CompletedTypeCache.end())
1946 V = it->second;
1947 else {
Adrian Prantlebbd7e02013-03-11 18:33:46 +00001948 V = getCachedInterfaceTypeOrNull(Ty);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001949 }
1950
Adrian Prantl4919de62013-03-06 22:03:30 +00001951 // Verify that any cached debug info still exists.
David Blaikie00383082013-08-13 04:21:38 +00001952 return llvm::DIType(cast_or_null<llvm::MDNode>(V));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001953}
1954
Adrian Prantlebbd7e02013-03-11 18:33:46 +00001955/// getCachedInterfaceTypeOrNull - Get the type from the interface
1956/// cache, unless it needs to regenerated. Otherwise return null.
1957llvm::Value *CGDebugInfo::getCachedInterfaceTypeOrNull(QualType Ty) {
1958 // Is there a cached interface that hasn't changed?
1959 llvm::DenseMap<void *, std::pair<llvm::WeakVH, unsigned > >
1960 ::iterator it1 = ObjCInterfaceCache.find(Ty.getAsOpaquePtr());
1961
1962 if (it1 != ObjCInterfaceCache.end())
1963 if (ObjCInterfaceDecl* Decl = getObjCInterfaceDecl(Ty))
1964 if (Checksum(Decl) == it1->second.second)
1965 // Return cached forward declaration.
1966 return it1->second.first;
1967
1968 return 0;
1969}
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001970
1971/// getOrCreateType - Get the type from the cache or create a new
1972/// one if necessary.
Eric Christopher56b108a2013-06-07 22:54:39 +00001973llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile Unit,
1974 bool Declaration) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001975 if (Ty.isNull())
1976 return llvm::DIType();
1977
1978 // Unwrap the type as needed for debug information.
David Blaikie4b12be62013-01-21 04:37:12 +00001979 Ty = UnwrapTypeForDebugInfo(Ty, CGM.getContext());
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001980
David Blaikie00383082013-08-13 04:21:38 +00001981 if (llvm::DIType T = getCompletedTypeOrNull(Ty)) {
David Blaikief0c31d92013-06-21 21:03:11 +00001982 // If we're looking for a definition, make sure we have definitions of any
1983 // underlying types.
1984 if (const TypedefType* TTy = dyn_cast<TypedefType>(Ty))
1985 getOrCreateType(TTy->getDecl()->getUnderlyingType(), Unit, Declaration);
1986 if (Ty.hasLocalQualifiers())
1987 getOrCreateType(QualType(Ty.getTypePtr(), 0), Unit, Declaration);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001988 return T;
David Blaikief0c31d92013-06-21 21:03:11 +00001989 }
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001990
1991 // Otherwise create the type.
David Blaikie5f6e2f42013-06-05 05:32:23 +00001992 llvm::DIType Res = CreateTypeNode(Ty, Unit, Declaration);
Adrian Prantlebbd7e02013-03-11 18:33:46 +00001993 void* TyPtr = Ty.getAsOpaquePtr();
1994
1995 // And update the type cache.
1996 TypeCache[TyPtr] = Res;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00001997
David Blaikie492b1022013-08-15 21:21:19 +00001998 // FIXME: this getTypeOrNull call seems silly when we just inserted the type
1999 // into the cache - but getTypeOrNull has a special case for cached interface
2000 // types. We should probably just pull that out as a special case for the
2001 // "else" block below & skip the otherwise needless lookup.
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002002 llvm::DIType TC = getTypeOrNull(Ty);
Eric Christopherb2d13922013-07-18 00:52:50 +00002003 if (TC && TC.isForwardDecl())
Adrian Prantlebbd7e02013-03-11 18:33:46 +00002004 ReplaceMap.push_back(std::make_pair(TyPtr, static_cast<llvm::Value*>(TC)));
2005 else if (ObjCInterfaceDecl* Decl = getObjCInterfaceDecl(Ty)) {
2006 // Interface types may have elements added to them by a
2007 // subsequent implementation or extension, so we keep them in
2008 // the ObjCInterfaceCache together with a checksum. Instead of
Adrian Prantlf06989b2013-05-08 23:37:22 +00002009 // the (possibly) incomplete interface type, we return a forward
Adrian Prantlebbd7e02013-03-11 18:33:46 +00002010 // declaration that gets RAUW'd in CGDebugInfo::finalize().
David Blaikiee2eb89a2013-05-21 18:29:40 +00002011 std::pair<llvm::WeakVH, unsigned> &V = ObjCInterfaceCache[TyPtr];
2012 if (V.first)
2013 return llvm::DIType(cast<llvm::MDNode>(V.first));
2014 TC = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
2015 Decl->getName(), TheCU, Unit,
2016 getLineNumber(Decl->getLocation()),
2017 TheCU.getLanguage());
2018 // Store the forward declaration in the cache.
2019 V.first = TC;
2020 V.second = Checksum(Decl);
Adrian Prantlebbd7e02013-03-11 18:33:46 +00002021
David Blaikiee2eb89a2013-05-21 18:29:40 +00002022 // Register the type for replacement in finalize().
2023 ReplaceMap.push_back(std::make_pair(TyPtr, static_cast<llvm::Value*>(TC)));
2024
Adrian Prantlebbd7e02013-03-11 18:33:46 +00002025 return TC;
Adrian Prantl4919de62013-03-06 22:03:30 +00002026 }
2027
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002028 if (!Res.isForwardDecl())
Adrian Prantlebbd7e02013-03-11 18:33:46 +00002029 CompletedTypeCache[TyPtr] = Res;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002030
2031 return Res;
2032}
2033
Adrian Prantlb5a50072013-06-07 01:10:41 +00002034/// Currently the checksum of an interface includes the number of
2035/// ivars and property accessors.
Eric Christopher56b108a2013-06-07 22:54:39 +00002036unsigned CGDebugInfo::Checksum(const ObjCInterfaceDecl *ID) {
Adrian Prantl4f97f852013-06-07 01:10:48 +00002037 // The assumption is that the number of ivars can only increase
2038 // monotonically, so it is safe to just use their current number as
2039 // a checksum.
Adrian Prantlb5a50072013-06-07 01:10:41 +00002040 unsigned Sum = 0;
2041 for (const ObjCIvarDecl *Ivar = ID->all_declared_ivar_begin();
2042 Ivar != 0; Ivar = Ivar->getNextIvar())
2043 ++Sum;
2044
2045 return Sum;
Adrian Prantl4919de62013-03-06 22:03:30 +00002046}
2047
2048ObjCInterfaceDecl *CGDebugInfo::getObjCInterfaceDecl(QualType Ty) {
2049 switch (Ty->getTypeClass()) {
2050 case Type::ObjCObjectPointer:
Eric Christopherf0890c42013-05-16 00:52:20 +00002051 return getObjCInterfaceDecl(cast<ObjCObjectPointerType>(Ty)
2052 ->getPointeeType());
Adrian Prantl4919de62013-03-06 22:03:30 +00002053 case Type::ObjCInterface:
2054 return cast<ObjCInterfaceType>(Ty)->getDecl();
2055 default:
2056 return 0;
2057 }
2058}
2059
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002060/// CreateTypeNode - Create a new debug type node.
Eric Christopher56b108a2013-06-07 22:54:39 +00002061llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile Unit,
2062 bool Declaration) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002063 // Handle qualifiers, which recursively handles what they refer to.
2064 if (Ty.hasLocalQualifiers())
David Blaikie5f6e2f42013-06-05 05:32:23 +00002065 return CreateQualifiedType(Ty, Unit, Declaration);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002066
2067 const char *Diag = 0;
Eric Christopher6537f082013-05-16 00:45:12 +00002068
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002069 // Work out details of type.
2070 switch (Ty->getTypeClass()) {
2071#define TYPE(Class, Base)
2072#define ABSTRACT_TYPE(Class, Base)
2073#define NON_CANONICAL_TYPE(Class, Base)
2074#define DEPENDENT_TYPE(Class, Base) case Type::Class:
2075#include "clang/AST/TypeNodes.def"
2076 llvm_unreachable("Dependent types cannot show up in debug information");
2077
2078 case Type::ExtVector:
2079 case Type::Vector:
2080 return CreateType(cast<VectorType>(Ty), Unit);
2081 case Type::ObjCObjectPointer:
2082 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
2083 case Type::ObjCObject:
2084 return CreateType(cast<ObjCObjectType>(Ty), Unit);
2085 case Type::ObjCInterface:
2086 return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
2087 case Type::Builtin:
2088 return CreateType(cast<BuiltinType>(Ty));
2089 case Type::Complex:
2090 return CreateType(cast<ComplexType>(Ty));
2091 case Type::Pointer:
2092 return CreateType(cast<PointerType>(Ty), Unit);
Reid Kleckner12df2462013-06-24 17:51:48 +00002093 case Type::Decayed:
2094 // Decayed types are just pointers in LLVM and DWARF.
2095 return CreateType(
2096 cast<PointerType>(cast<DecayedType>(Ty)->getDecayedType()), Unit);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002097 case Type::BlockPointer:
2098 return CreateType(cast<BlockPointerType>(Ty), Unit);
2099 case Type::Typedef:
David Blaikie5f6e2f42013-06-05 05:32:23 +00002100 return CreateType(cast<TypedefType>(Ty), Unit, Declaration);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002101 case Type::Record:
David Blaikie5f6e2f42013-06-05 05:32:23 +00002102 return CreateType(cast<RecordType>(Ty), Declaration);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002103 case Type::Enum:
2104 return CreateEnumType(cast<EnumType>(Ty)->getDecl());
2105 case Type::FunctionProto:
2106 case Type::FunctionNoProto:
2107 return CreateType(cast<FunctionType>(Ty), Unit);
2108 case Type::ConstantArray:
2109 case Type::VariableArray:
2110 case Type::IncompleteArray:
2111 return CreateType(cast<ArrayType>(Ty), Unit);
2112
2113 case Type::LValueReference:
2114 return CreateType(cast<LValueReferenceType>(Ty), Unit);
2115 case Type::RValueReference:
2116 return CreateType(cast<RValueReferenceType>(Ty), Unit);
2117
2118 case Type::MemberPointer:
2119 return CreateType(cast<MemberPointerType>(Ty), Unit);
2120
2121 case Type::Atomic:
2122 return CreateType(cast<AtomicType>(Ty), Unit);
2123
2124 case Type::Attributed:
2125 case Type::TemplateSpecialization:
2126 case Type::Elaborated:
2127 case Type::Paren:
2128 case Type::SubstTemplateTypeParm:
2129 case Type::TypeOfExpr:
2130 case Type::TypeOf:
2131 case Type::Decltype:
2132 case Type::UnaryTransform:
David Blaikie226399c2013-07-13 21:08:08 +00002133 case Type::PackExpansion:
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002134 llvm_unreachable("type should have been unwrapped!");
David Blaikie91296482013-05-24 21:24:35 +00002135 case Type::Auto:
2136 Diag = "auto";
2137 break;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002138 }
Eric Christopher6537f082013-05-16 00:45:12 +00002139
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002140 assert(Diag && "Fall through without a diagnostic?");
2141 unsigned DiagID = CGM.getDiags().getCustomDiagID(DiagnosticsEngine::Error,
2142 "debug information for %0 is not yet supported");
2143 CGM.getDiags().Report(DiagID)
2144 << Diag;
2145 return llvm::DIType();
2146}
2147
2148/// getOrCreateLimitedType - Get the type from the cache or create a new
2149/// limited type if necessary.
David Blaikie4a077162013-08-12 22:24:20 +00002150llvm::DIType CGDebugInfo::getOrCreateLimitedType(const RecordType *Ty,
Eric Christopherbe5f1be2013-02-21 22:35:08 +00002151 llvm::DIFile Unit) {
David Blaikie4a077162013-08-12 22:24:20 +00002152 QualType QTy(Ty, 0);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002153
David Blaikie4a077162013-08-12 22:24:20 +00002154 llvm::DIType T = getTypeOrNull(QTy);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002155
2156 // We may have cached a forward decl when we could have created
2157 // a non-forward decl. Go ahead and create a non-forward decl
2158 // now.
Eric Christopherb2d13922013-07-18 00:52:50 +00002159 if (T && !T.isForwardDecl()) return T;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002160
2161 // Otherwise create the type.
David Blaikie4a077162013-08-12 22:24:20 +00002162 llvm::DIType Res = CreateLimitedType(Ty);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002163
Eric Christopherb2d13922013-07-18 00:52:50 +00002164 if (T && T.isForwardDecl())
David Blaikie4a077162013-08-12 22:24:20 +00002165 ReplaceMap.push_back(
2166 std::make_pair(QTy.getAsOpaquePtr(), static_cast<llvm::Value *>(T)));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002167
2168 // And update the type cache.
David Blaikie4a077162013-08-12 22:24:20 +00002169 TypeCache[QTy.getAsOpaquePtr()] = Res;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002170 return Res;
2171}
2172
2173// TODO: Currently used for context chains when limiting debug info.
2174llvm::DIType CGDebugInfo::CreateLimitedType(const RecordType *Ty) {
2175 RecordDecl *RD = Ty->getDecl();
Eric Christopher6537f082013-05-16 00:45:12 +00002176
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002177 // Get overall information about the record type for the debug info.
2178 llvm::DIFile DefUnit = getOrCreateFile(RD->getLocation());
2179 unsigned Line = getLineNumber(RD->getLocation());
2180 StringRef RDName = getClassName(RD);
2181
2182 llvm::DIDescriptor RDContext;
Eric Christopher13c97672013-05-16 00:45:23 +00002183 if (DebugKind == CodeGenOptions::LimitedDebugInfo)
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002184 RDContext = createContextChain(cast<Decl>(RD->getDeclContext()));
2185 else
2186 RDContext = getContextDescriptor(cast<Decl>(RD->getDeclContext()));
2187
2188 // If this is just a forward declaration, construct an appropriately
2189 // marked node and just return it.
2190 if (!RD->getDefinition())
David Blaikie951094b2013-08-15 18:59:40 +00002191 return getOrCreateRecordFwdDecl(RD, RDContext);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002192
2193 uint64_t Size = CGM.getContext().getTypeSize(Ty);
2194 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
David Blaikie2fcadbe2013-03-26 23:47:35 +00002195 llvm::DICompositeType RealDecl;
Eric Christopher6537f082013-05-16 00:45:12 +00002196
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002197 if (RD->isUnion())
2198 RealDecl = DBuilder.createUnionType(RDContext, RDName, DefUnit, Line,
Eric Christopherbe5f1be2013-02-21 22:35:08 +00002199 Size, Align, 0, llvm::DIArray());
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002200 else if (RD->isClass()) {
2201 // FIXME: This could be a struct type giving a default visibility different
2202 // than C++ class type, but needs llvm metadata changes first.
2203 RealDecl = DBuilder.createClassType(RDContext, RDName, DefUnit, Line,
Eric Christopherbe5f1be2013-02-21 22:35:08 +00002204 Size, Align, 0, 0, llvm::DIType(),
2205 llvm::DIArray(), llvm::DIType(),
2206 llvm::DIArray());
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002207 } else
2208 RealDecl = DBuilder.createStructType(RDContext, RDName, DefUnit, Line,
Eric Christopherf0890c42013-05-16 00:52:20 +00002209 Size, Align, 0, llvm::DIType(),
2210 llvm::DIArray());
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002211
2212 RegionMap[Ty->getDecl()] = llvm::WeakVH(RealDecl);
David Blaikie2fcadbe2013-03-26 23:47:35 +00002213 TypeCache[QualType(Ty, 0).getAsOpaquePtr()] = RealDecl;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002214
David Blaikie841b37c2013-08-01 18:23:24 +00002215 if (const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD)) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002216 // A class's primary base or the class itself contains the vtable.
David Blaikie2fcadbe2013-03-26 23:47:35 +00002217 llvm::DICompositeType ContainingType;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002218 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
2219 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
2220 // Seek non virtual primary base root.
2221 while (1) {
Eric Christopherbe5f1be2013-02-21 22:35:08 +00002222 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
2223 const CXXRecordDecl *PBT = BRL.getPrimaryBase();
2224 if (PBT && !BRL.isPrimaryBaseVirtual())
2225 PBase = PBT;
2226 else
2227 break;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002228 }
David Blaikie2fcadbe2013-03-26 23:47:35 +00002229 ContainingType = llvm::DICompositeType(
2230 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), DefUnit));
2231 } else if (CXXDecl->isDynamicClass())
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002232 ContainingType = RealDecl;
2233
David Blaikie2fcadbe2013-03-26 23:47:35 +00002234 RealDecl.setContainingType(ContainingType);
David Blaikie80588332013-08-01 20:31:40 +00002235 if (const ClassTemplateSpecializationDecl *TSpecial =
2236 dyn_cast<ClassTemplateSpecializationDecl>(CXXDecl))
2237 RealDecl.setTypeArray(llvm::DIArray(),
2238 CollectCXXTemplateParams(TSpecial, DefUnit));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002239 }
David Blaikiefab829d2013-08-15 22:42:12 +00002240 return RealDecl;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002241}
2242
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002243/// CreateMemberType - Create new member and increase Offset by FType's size.
2244llvm::DIType CGDebugInfo::CreateMemberType(llvm::DIFile Unit, QualType FType,
2245 StringRef Name,
2246 uint64_t *Offset) {
2247 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
2248 uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
2249 unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
2250 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0,
2251 FieldSize, FieldAlign,
2252 *Offset, 0, FieldTy);
2253 *Offset += FieldSize;
2254 return Ty;
2255}
2256
David Blaikie9faebd22013-05-20 04:58:53 +00002257llvm::DIDescriptor CGDebugInfo::getDeclarationOrDefinition(const Decl *D) {
2258 // We only need a declaration (not a definition) of the type - so use whatever
2259 // we would otherwise do to get a type for a pointee. (forward declarations in
2260 // limited debug info, full definitions (if the type definition is available)
2261 // in unlimited debug info)
David Blaikieb3c23772013-08-12 23:14:36 +00002262 if (const TypeDecl *TD = dyn_cast<TypeDecl>(D))
2263 return getOrCreateType(CGM.getContext().getTypeDeclType(TD),
2264 getOrCreateFile(TD->getLocation()), true);
David Blaikie9faebd22013-05-20 04:58:53 +00002265 // Otherwise fall back to a fairly rudimentary cache of existing declarations.
2266 // This doesn't handle providing declarations (for functions or variables) for
2267 // entities without definitions in this TU, nor when the definition proceeds
2268 // the call to this function.
2269 // FIXME: This should be split out into more specific maps with support for
2270 // emitting forward declarations and merging definitions with declarations,
2271 // the same way as we do for types.
2272 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator I =
2273 DeclCache.find(D->getCanonicalDecl());
2274 if (I == DeclCache.end())
2275 return llvm::DIDescriptor();
2276 llvm::Value *V = I->second;
2277 return llvm::DIDescriptor(dyn_cast_or_null<llvm::MDNode>(V));
2278}
2279
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002280/// getFunctionDeclaration - Return debug info descriptor to describe method
2281/// declaration for the given method definition.
2282llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) {
David Blaikie23e66db2013-06-22 00:09:36 +00002283 if (!D || DebugKind == CodeGenOptions::DebugLineTablesOnly)
2284 return llvm::DISubprogram();
2285
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002286 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
2287 if (!FD) return llvm::DISubprogram();
2288
2289 // Setup context.
David Blaikied6d5d692013-08-09 17:20:05 +00002290 llvm::DIScope S = getContextDescriptor(cast<Decl>(D->getDeclContext()));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002291
2292 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
2293 MI = SPCache.find(FD->getCanonicalDecl());
David Blaikied6d5d692013-08-09 17:20:05 +00002294 if (MI == SPCache.end()) {
2295 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
2296 llvm::DICompositeType T(S);
2297 llvm::DISubprogram SP = CreateCXXMemberFunction(MD, getOrCreateFile(MD->getLocation()), T);
2298 T.addMember(SP);
2299 return SP;
2300 }
2301 }
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002302 if (MI != SPCache.end()) {
2303 llvm::Value *V = MI->second;
2304 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(V));
David Blaikie23e66db2013-06-22 00:09:36 +00002305 if (SP.isSubprogram() && !SP.isDefinition())
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002306 return SP;
2307 }
2308
2309 for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
2310 E = FD->redecls_end(); I != E; ++I) {
2311 const FunctionDecl *NextFD = *I;
2312 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
2313 MI = SPCache.find(NextFD->getCanonicalDecl());
2314 if (MI != SPCache.end()) {
2315 llvm::Value *V = MI->second;
2316 llvm::DISubprogram SP(dyn_cast_or_null<llvm::MDNode>(V));
David Blaikie23e66db2013-06-22 00:09:36 +00002317 if (SP.isSubprogram() && !SP.isDefinition())
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002318 return SP;
2319 }
2320 }
2321 return llvm::DISubprogram();
2322}
2323
2324// getOrCreateFunctionType - Construct DIType. If it is a c++ method, include
2325// implicit parameter "this".
David Blaikie9a845292013-05-22 23:22:42 +00002326llvm::DICompositeType CGDebugInfo::getOrCreateFunctionType(const Decl *D,
2327 QualType FnType,
2328 llvm::DIFile F) {
David Blaikie23e66db2013-06-22 00:09:36 +00002329 if (!D || DebugKind == CodeGenOptions::DebugLineTablesOnly)
2330 // Create fake but valid subroutine type. Otherwise
2331 // llvm::DISubprogram::Verify() would return false, and
2332 // subprogram DIE will miss DW_AT_decl_file and
2333 // DW_AT_decl_line fields.
2334 return DBuilder.createSubroutineType(F, DBuilder.getOrCreateArray(None));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002335
2336 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
2337 return getOrCreateMethodType(Method, F);
2338 if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
2339 // Add "self" and "_cmd"
2340 SmallVector<llvm::Value *, 16> Elts;
2341
2342 // First element is always return type. For 'void' functions it is NULL.
Adrian Prantl0cb00022013-05-22 21:37:49 +00002343 QualType ResultTy = OMethod->getResultType();
2344
2345 // Replace the instancetype keyword with the actual type.
2346 if (ResultTy == CGM.getContext().getObjCInstanceType())
2347 ResultTy = CGM.getContext().getPointerType(
2348 QualType(OMethod->getClassInterface()->getTypeForDecl(), 0));
2349
Adrian Prantl566a9c32013-05-10 21:08:31 +00002350 Elts.push_back(getOrCreateType(ResultTy, F));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002351 // "self" pointer is always first argument.
Adrian Prantle86fcc42013-03-29 19:20:29 +00002352 QualType SelfDeclTy = OMethod->getSelfDecl()->getType();
2353 llvm::DIType SelfTy = getOrCreateType(SelfDeclTy, F);
2354 Elts.push_back(CreateSelfType(SelfDeclTy, SelfTy));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002355 // "_cmd" pointer is always second argument.
2356 llvm::DIType CmdTy = getOrCreateType(OMethod->getCmdDecl()->getType(), F);
2357 Elts.push_back(DBuilder.createArtificialType(CmdTy));
2358 // Get rest of the arguments.
Eric Christopher6537f082013-05-16 00:45:12 +00002359 for (ObjCMethodDecl::param_const_iterator PI = OMethod->param_begin(),
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002360 PE = OMethod->param_end(); PI != PE; ++PI)
2361 Elts.push_back(getOrCreateType((*PI)->getType(), F));
2362
2363 llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts);
2364 return DBuilder.createSubroutineType(F, EltTypeArray);
2365 }
David Blaikie9a845292013-05-22 23:22:42 +00002366 return llvm::DICompositeType(getOrCreateType(FnType, F));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002367}
2368
2369/// EmitFunctionStart - Constructs the debug code for entering a function.
2370void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
2371 llvm::Function *Fn,
2372 CGBuilderTy &Builder) {
2373
2374 StringRef Name;
2375 StringRef LinkageName;
2376
2377 FnBeginRegionCount.push_back(LexicalBlockStack.size());
2378
2379 const Decl *D = GD.getDecl();
2380 // Function may lack declaration in source code if it is created by Clang
2381 // CodeGen (examples: _GLOBAL__I_a, __cxx_global_array_dtor, thunk).
2382 bool HasDecl = (D != 0);
2383 // Use the location of the declaration.
2384 SourceLocation Loc;
2385 if (HasDecl)
2386 Loc = D->getLocation();
2387
2388 unsigned Flags = 0;
2389 llvm::DIFile Unit = getOrCreateFile(Loc);
2390 llvm::DIDescriptor FDContext(Unit);
2391 llvm::DIArray TParamsArray;
2392 if (!HasDecl) {
2393 // Use llvm function name.
2394 Name = Fn->getName();
2395 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
2396 // If there is a DISubprogram for this function available then use it.
2397 llvm::DenseMap<const FunctionDecl *, llvm::WeakVH>::iterator
2398 FI = SPCache.find(FD->getCanonicalDecl());
2399 if (FI != SPCache.end()) {
2400 llvm::Value *V = FI->second;
2401 llvm::DIDescriptor SP(dyn_cast_or_null<llvm::MDNode>(V));
2402 if (SP.isSubprogram() && llvm::DISubprogram(SP).isDefinition()) {
2403 llvm::MDNode *SPN = SP;
2404 LexicalBlockStack.push_back(SPN);
2405 RegionMap[D] = llvm::WeakVH(SP);
2406 return;
2407 }
2408 }
2409 Name = getFunctionName(FD);
Nick Lewyckyf2b5e072013-03-20 01:38:16 +00002410 // Use mangled name as linkage name for C/C++ functions.
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002411 if (FD->hasPrototype()) {
2412 LinkageName = CGM.getMangledName(GD);
2413 Flags |= llvm::DIDescriptor::FlagPrototyped;
2414 }
Nick Lewyckyf2b5e072013-03-20 01:38:16 +00002415 // No need to replicate the linkage name if it isn't different from the
2416 // subprogram name, no need to have it at all unless coverage is enabled or
2417 // debug is set to more than just line tables.
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002418 if (LinkageName == Name ||
Nick Lewyckyf2b5e072013-03-20 01:38:16 +00002419 (!CGM.getCodeGenOpts().EmitGcovArcs &&
2420 !CGM.getCodeGenOpts().EmitGcovNotes &&
Eric Christopher13c97672013-05-16 00:45:23 +00002421 DebugKind <= CodeGenOptions::DebugLineTablesOnly))
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002422 LinkageName = StringRef();
2423
Eric Christopher13c97672013-05-16 00:45:23 +00002424 if (DebugKind >= CodeGenOptions::LimitedDebugInfo) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002425 if (const NamespaceDecl *NSDecl =
2426 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
2427 FDContext = getOrCreateNameSpace(NSDecl);
2428 else if (const RecordDecl *RDecl =
2429 dyn_cast_or_null<RecordDecl>(FD->getDeclContext()))
2430 FDContext = getContextDescriptor(cast<Decl>(RDecl->getDeclContext()));
2431
2432 // Collect template parameters.
2433 TParamsArray = CollectFunctionTemplateParams(FD, Unit);
2434 }
2435 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
2436 Name = getObjCMethodName(OMD);
2437 Flags |= llvm::DIDescriptor::FlagPrototyped;
2438 } else {
2439 // Use llvm function name.
2440 Name = Fn->getName();
2441 Flags |= llvm::DIDescriptor::FlagPrototyped;
2442 }
2443 if (!Name.empty() && Name[0] == '\01')
2444 Name = Name.substr(1);
2445
2446 unsigned LineNo = getLineNumber(Loc);
2447 if (!HasDecl || D->isImplicit())
2448 Flags |= llvm::DIDescriptor::FlagArtificial;
2449
David Blaikie23e66db2013-06-22 00:09:36 +00002450 llvm::DISubprogram SP = DBuilder.createFunction(
2451 FDContext, Name, LinkageName, Unit, LineNo,
2452 getOrCreateFunctionType(D, FnType, Unit), Fn->hasInternalLinkage(),
2453 true /*definition*/, getLineNumber(CurLoc), Flags,
2454 CGM.getLangOpts().Optimize, Fn, TParamsArray, getFunctionDeclaration(D));
David Blaikie9faebd22013-05-20 04:58:53 +00002455 if (HasDecl)
2456 DeclCache.insert(std::make_pair(D->getCanonicalDecl(), llvm::WeakVH(SP)));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002457
2458 // Push function on region stack.
2459 llvm::MDNode *SPN = SP;
2460 LexicalBlockStack.push_back(SPN);
2461 if (HasDecl)
2462 RegionMap[D] = llvm::WeakVH(SP);
2463}
2464
2465/// EmitLocation - Emit metadata to indicate a change in line/column
Adrian Prantl18a0cd52013-07-18 00:27:59 +00002466/// information in the source file. If the location is invalid, the
2467/// previous location will be reused.
Adrian Prantl00df5ea2013-03-12 20:43:25 +00002468void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc,
2469 bool ForceColumnInfo) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002470 // Update our current location
2471 setLocation(Loc);
2472
2473 if (CurLoc.isInvalid() || CurLoc.isMacroID()) return;
2474
2475 // Don't bother if things are the same as last time.
2476 SourceManager &SM = CGM.getContext().getSourceManager();
2477 if (CurLoc == PrevLoc ||
2478 SM.getExpansionLoc(CurLoc) == SM.getExpansionLoc(PrevLoc))
2479 // New Builder may not be in sync with CGDebugInfo.
David Blaikie0a0f93c2013-02-01 19:09:49 +00002480 if (!Builder.getCurrentDebugLocation().isUnknown() &&
2481 Builder.getCurrentDebugLocation().getScope(CGM.getLLVMContext()) ==
2482 LexicalBlockStack.back())
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002483 return;
Eric Christopher6537f082013-05-16 00:45:12 +00002484
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002485 // Update last state.
2486 PrevLoc = CurLoc;
2487
2488 llvm::MDNode *Scope = LexicalBlockStack.back();
Adrian Prantl00df5ea2013-03-12 20:43:25 +00002489 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get
2490 (getLineNumber(CurLoc),
2491 getColumnNumber(CurLoc, ForceColumnInfo),
2492 Scope));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002493}
2494
2495/// CreateLexicalBlock - Creates a new lexical block node and pushes it on
2496/// the stack.
2497void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
2498 llvm::DIDescriptor D =
2499 DBuilder.createLexicalBlock(LexicalBlockStack.empty() ?
2500 llvm::DIDescriptor() :
2501 llvm::DIDescriptor(LexicalBlockStack.back()),
2502 getOrCreateFile(CurLoc),
2503 getLineNumber(CurLoc),
2504 getColumnNumber(CurLoc));
2505 llvm::MDNode *DN = D;
2506 LexicalBlockStack.push_back(DN);
2507}
2508
2509/// EmitLexicalBlockStart - Constructs the debug code for entering a declarative
2510/// region - beginning of a DW_TAG_lexical_block.
Eric Christopherf0890c42013-05-16 00:52:20 +00002511void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder,
2512 SourceLocation Loc) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002513 // Set our current location.
2514 setLocation(Loc);
2515
2516 // Create a new lexical block and push it on the stack.
2517 CreateLexicalBlock(Loc);
2518
2519 // Emit a line table change for the current location inside the new scope.
2520 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(getLineNumber(Loc),
2521 getColumnNumber(Loc),
2522 LexicalBlockStack.back()));
2523}
2524
2525/// EmitLexicalBlockEnd - Constructs the debug code for exiting a declarative
2526/// region - end of a DW_TAG_lexical_block.
Eric Christopherf0890c42013-05-16 00:52:20 +00002527void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder,
2528 SourceLocation Loc) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002529 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
2530
2531 // Provide an entry in the line table for the end of the block.
2532 EmitLocation(Builder, Loc);
2533
2534 LexicalBlockStack.pop_back();
2535}
2536
2537/// EmitFunctionEnd - Constructs the debug code for exiting a function.
2538void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
2539 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
2540 unsigned RCount = FnBeginRegionCount.back();
2541 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
2542
2543 // Pop all regions for this function.
2544 while (LexicalBlockStack.size() != RCount)
2545 EmitLexicalBlockEnd(Builder, CurLoc);
2546 FnBeginRegionCount.pop_back();
2547}
2548
Eric Christopher6537f082013-05-16 00:45:12 +00002549// EmitTypeForVarWithBlocksAttr - Build up structure info for the byref.
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002550// See BuildByRefType.
2551llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const VarDecl *VD,
2552 uint64_t *XOffset) {
2553
2554 SmallVector<llvm::Value *, 5> EltTys;
2555 QualType FType;
2556 uint64_t FieldSize, FieldOffset;
2557 unsigned FieldAlign;
Eric Christopher6537f082013-05-16 00:45:12 +00002558
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002559 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
Eric Christopher6537f082013-05-16 00:45:12 +00002560 QualType Type = VD->getType();
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002561
2562 FieldOffset = 0;
2563 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2564 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2565 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
2566 FType = CGM.getContext().IntTy;
2567 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2568 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2569
2570 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type, VD);
2571 if (HasCopyAndDispose) {
2572 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2573 EltTys.push_back(CreateMemberType(Unit, FType, "__copy_helper",
2574 &FieldOffset));
2575 EltTys.push_back(CreateMemberType(Unit, FType, "__destroy_helper",
2576 &FieldOffset));
2577 }
2578 bool HasByrefExtendedLayout;
2579 Qualifiers::ObjCLifetime Lifetime;
2580 if (CGM.getContext().getByrefLifetime(Type,
2581 Lifetime, HasByrefExtendedLayout)
Adrian Prantl1f437912013-07-23 00:12:14 +00002582 && HasByrefExtendedLayout) {
2583 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002584 EltTys.push_back(CreateMemberType(Unit, FType,
2585 "__byref_variable_layout",
2586 &FieldOffset));
Adrian Prantl1f437912013-07-23 00:12:14 +00002587 }
Eric Christopher6537f082013-05-16 00:45:12 +00002588
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002589 CharUnits Align = CGM.getContext().getDeclAlign(VD);
2590 if (Align > CGM.getContext().toCharUnitsFromBits(
John McCall64aa4b32013-04-16 22:48:15 +00002591 CGM.getTarget().getPointerAlign(0))) {
Eric Christopher6537f082013-05-16 00:45:12 +00002592 CharUnits FieldOffsetInBytes
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002593 = CGM.getContext().toCharUnitsFromBits(FieldOffset);
2594 CharUnits AlignedOffsetInBytes
2595 = FieldOffsetInBytes.RoundUpToAlignment(Align);
2596 CharUnits NumPaddingBytes
2597 = AlignedOffsetInBytes - FieldOffsetInBytes;
Eric Christopher6537f082013-05-16 00:45:12 +00002598
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002599 if (NumPaddingBytes.isPositive()) {
2600 llvm::APInt pad(32, NumPaddingBytes.getQuantity());
2601 FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2602 pad, ArrayType::Normal, 0);
2603 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
2604 }
2605 }
Eric Christopher6537f082013-05-16 00:45:12 +00002606
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002607 FType = Type;
2608 llvm::DIType FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
2609 FieldSize = CGM.getContext().getTypeSize(FType);
2610 FieldAlign = CGM.getContext().toBits(Align);
2611
Eric Christopher6537f082013-05-16 00:45:12 +00002612 *XOffset = FieldOffset;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002613 FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit,
2614 0, FieldSize, FieldAlign,
2615 FieldOffset, 0, FieldTy);
2616 EltTys.push_back(FieldTy);
2617 FieldOffset += FieldSize;
Eric Christopher6537f082013-05-16 00:45:12 +00002618
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002619 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
Eric Christopher6537f082013-05-16 00:45:12 +00002620
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002621 unsigned Flags = llvm::DIDescriptor::FlagBlockByrefStruct;
Eric Christopher6537f082013-05-16 00:45:12 +00002622
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002623 return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
David Blaikiec1d0af12013-02-25 01:07:08 +00002624 llvm::DIType(), Elements);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002625}
2626
2627/// EmitDeclare - Emit local variable declaration debug info.
2628void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
Eric Christopher6537f082013-05-16 00:45:12 +00002629 llvm::Value *Storage,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002630 unsigned ArgNo, CGBuilderTy &Builder) {
Eric Christopher13c97672013-05-16 00:45:23 +00002631 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002632 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
2633
2634 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
2635 llvm::DIType Ty;
2636 uint64_t XOffset = 0;
2637 if (VD->hasAttr<BlocksAttr>())
2638 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
Eric Christopher6537f082013-05-16 00:45:12 +00002639 else
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002640 Ty = getOrCreateType(VD->getType(), Unit);
2641
2642 // If there is no debug info for this type then do not emit debug info
2643 // for this variable.
2644 if (!Ty)
2645 return;
2646
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002647 // Get location information.
2648 unsigned Line = getLineNumber(VD->getLocation());
2649 unsigned Column = getColumnNumber(VD->getLocation());
2650 unsigned Flags = 0;
2651 if (VD->isImplicit())
2652 Flags |= llvm::DIDescriptor::FlagArtificial;
2653 // If this is the first argument and it is implicit then
2654 // give it an object pointer flag.
2655 // FIXME: There has to be a better way to do this, but for static
2656 // functions there won't be an implicit param at arg1 and
2657 // otherwise it is 'self' or 'this'.
2658 if (isa<ImplicitParamDecl>(VD) && ArgNo == 1)
2659 Flags |= llvm::DIDescriptor::FlagObjectPointer;
David Blaikie41c9bae2013-06-19 21:53:53 +00002660 if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage))
Eric Christopher7dab97b2013-07-17 22:52:53 +00002661 if (Arg->getType()->isPointerTy() && !Arg->hasByValAttr() &&
2662 !VD->getType()->isPointerType())
David Blaikie41c9bae2013-06-19 21:53:53 +00002663 Flags |= llvm::DIDescriptor::FlagIndirectVariable;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002664
2665 llvm::MDNode *Scope = LexicalBlockStack.back();
2666
2667 StringRef Name = VD->getName();
2668 if (!Name.empty()) {
2669 if (VD->hasAttr<BlocksAttr>()) {
2670 CharUnits offset = CharUnits::fromQuantity(32);
2671 SmallVector<llvm::Value *, 9> addr;
2672 llvm::Type *Int64Ty = CGM.Int64Ty;
2673 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
2674 // offset of __forwarding field
2675 offset = CGM.getContext().toCharUnitsFromBits(
John McCall64aa4b32013-04-16 22:48:15 +00002676 CGM.getTarget().getPointerWidth(0));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002677 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2678 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2679 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
2680 // offset of x field
2681 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
2682 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2683
2684 // Create the descriptor for the variable.
2685 llvm::DIVariable D =
Eric Christopher6537f082013-05-16 00:45:12 +00002686 DBuilder.createComplexVariable(Tag,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002687 llvm::DIDescriptor(Scope),
2688 VD->getName(), Unit, Line, Ty,
2689 addr, ArgNo);
Eric Christopher6537f082013-05-16 00:45:12 +00002690
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002691 // Insert an llvm.dbg.declare into the current block.
2692 llvm::Instruction *Call =
2693 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
2694 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2695 return;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002696 }
David Blaikie436653b2013-01-05 05:58:35 +00002697 } else if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
2698 // If VD is an anonymous union then Storage represents value for
2699 // all union fields.
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002700 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
David Blaikied8180cf2013-01-05 20:03:07 +00002701 if (RD->isUnion() && RD->isAnonymousStructOrUnion()) {
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002702 for (RecordDecl::field_iterator I = RD->field_begin(),
2703 E = RD->field_end();
2704 I != E; ++I) {
2705 FieldDecl *Field = *I;
2706 llvm::DIType FieldTy = getOrCreateType(Field->getType(), Unit);
2707 StringRef FieldName = Field->getName();
Eric Christopher6537f082013-05-16 00:45:12 +00002708
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002709 // Ignore unnamed fields. Do not ignore unnamed records.
2710 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2711 continue;
Eric Christopher6537f082013-05-16 00:45:12 +00002712
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002713 // Use VarDecl's Tag, Scope and Line number.
2714 llvm::DIVariable D =
2715 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
Eric Christopher6537f082013-05-16 00:45:12 +00002716 FieldName, Unit, Line, FieldTy,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002717 CGM.getLangOpts().Optimize, Flags,
2718 ArgNo);
Eric Christopher6537f082013-05-16 00:45:12 +00002719
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002720 // Insert an llvm.dbg.declare into the current block.
2721 llvm::Instruction *Call =
2722 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
2723 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2724 }
David Blaikied8180cf2013-01-05 20:03:07 +00002725 return;
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002726 }
2727 }
David Blaikie436653b2013-01-05 05:58:35 +00002728
2729 // Create the descriptor for the variable.
2730 llvm::DIVariable D =
2731 DBuilder.createLocalVariable(Tag, llvm::DIDescriptor(Scope),
2732 Name, Unit, Line, Ty,
2733 CGM.getLangOpts().Optimize, Flags, ArgNo);
2734
2735 // Insert an llvm.dbg.declare into the current block.
2736 llvm::Instruction *Call =
2737 DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
2738 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002739}
2740
2741void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
2742 llvm::Value *Storage,
2743 CGBuilderTy &Builder) {
Eric Christopher13c97672013-05-16 00:45:23 +00002744 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002745 EmitDeclare(VD, llvm::dwarf::DW_TAG_auto_variable, Storage, 0, Builder);
2746}
2747
Adrian Prantle86fcc42013-03-29 19:20:29 +00002748/// Look up the completed type for a self pointer in the TypeCache and
2749/// create a copy of it with the ObjectPointer and Artificial flags
2750/// set. If the type is not cached, a new one is created. This should
2751/// never happen though, since creating a type for the implicit self
2752/// argument implies that we already parsed the interface definition
2753/// and the ivar declarations in the implementation.
Eric Christopherf0890c42013-05-16 00:52:20 +00002754llvm::DIType CGDebugInfo::CreateSelfType(const QualType &QualTy,
2755 llvm::DIType Ty) {
Adrian Prantle86fcc42013-03-29 19:20:29 +00002756 llvm::DIType CachedTy = getTypeOrNull(QualTy);
Eric Christopherb2d13922013-07-18 00:52:50 +00002757 if (CachedTy) Ty = CachedTy;
Adrian Prantle86fcc42013-03-29 19:20:29 +00002758 else DEBUG(llvm::dbgs() << "No cached type for self.");
2759 return DBuilder.createObjectPointerType(Ty);
2760}
2761
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002762void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(const VarDecl *VD,
2763 llvm::Value *Storage,
2764 CGBuilderTy &Builder,
2765 const CGBlockInfo &blockInfo) {
Eric Christopher13c97672013-05-16 00:45:23 +00002766 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002767 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
Eric Christopher6537f082013-05-16 00:45:12 +00002768
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002769 if (Builder.GetInsertBlock() == 0)
2770 return;
Eric Christopher6537f082013-05-16 00:45:12 +00002771
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002772 bool isByRef = VD->hasAttr<BlocksAttr>();
Eric Christopher6537f082013-05-16 00:45:12 +00002773
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002774 uint64_t XOffset = 0;
2775 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
2776 llvm::DIType Ty;
2777 if (isByRef)
2778 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
Eric Christopher6537f082013-05-16 00:45:12 +00002779 else
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002780 Ty = getOrCreateType(VD->getType(), Unit);
2781
2782 // Self is passed along as an implicit non-arg variable in a
2783 // block. Mark it as the object pointer.
2784 if (isa<ImplicitParamDecl>(VD) && VD->getName() == "self")
Adrian Prantle86fcc42013-03-29 19:20:29 +00002785 Ty = CreateSelfType(VD->getType(), Ty);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002786
2787 // Get location information.
2788 unsigned Line = getLineNumber(VD->getLocation());
2789 unsigned Column = getColumnNumber(VD->getLocation());
2790
2791 const llvm::DataLayout &target = CGM.getDataLayout();
2792
2793 CharUnits offset = CharUnits::fromQuantity(
2794 target.getStructLayout(blockInfo.StructureType)
2795 ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
2796
2797 SmallVector<llvm::Value *, 9> addr;
2798 llvm::Type *Int64Ty = CGM.Int64Ty;
Adrian Prantl9b97adf2013-03-29 19:20:35 +00002799 if (isa<llvm::AllocaInst>(Storage))
2800 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002801 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
2802 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2803 if (isByRef) {
2804 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2805 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
2806 // offset of __forwarding field
2807 offset = CGM.getContext()
2808 .toCharUnitsFromBits(target.getPointerSizeInBits(0));
2809 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2810 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpDeref));
2811 addr.push_back(llvm::ConstantInt::get(Int64Ty, llvm::DIBuilder::OpPlus));
2812 // offset of x field
2813 offset = CGM.getContext().toCharUnitsFromBits(XOffset);
2814 addr.push_back(llvm::ConstantInt::get(Int64Ty, offset.getQuantity()));
2815 }
2816
2817 // Create the descriptor for the variable.
2818 llvm::DIVariable D =
Eric Christopher6537f082013-05-16 00:45:12 +00002819 DBuilder.createComplexVariable(llvm::dwarf::DW_TAG_auto_variable,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002820 llvm::DIDescriptor(LexicalBlockStack.back()),
2821 VD->getName(), Unit, Line, Ty, addr);
Adrian Prantl9b97adf2013-03-29 19:20:35 +00002822
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002823 // Insert an llvm.dbg.declare into the current block.
2824 llvm::Instruction *Call =
2825 DBuilder.insertDeclare(Storage, D, Builder.GetInsertPoint());
2826 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column,
2827 LexicalBlockStack.back()));
2828}
2829
2830/// EmitDeclareOfArgVariable - Emit call to llvm.dbg.declare for an argument
2831/// variable declaration.
2832void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
2833 unsigned ArgNo,
2834 CGBuilderTy &Builder) {
Eric Christopher13c97672013-05-16 00:45:23 +00002835 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002836 EmitDeclare(VD, llvm::dwarf::DW_TAG_arg_variable, AI, ArgNo, Builder);
2837}
2838
2839namespace {
2840 struct BlockLayoutChunk {
2841 uint64_t OffsetInBits;
2842 const BlockDecl::Capture *Capture;
2843 };
2844 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
2845 return l.OffsetInBits < r.OffsetInBits;
2846 }
2847}
2848
2849void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
Adrian Prantl836e7c92013-03-14 17:53:33 +00002850 llvm::Value *Arg,
2851 llvm::Value *LocalAddr,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002852 CGBuilderTy &Builder) {
Eric Christopher13c97672013-05-16 00:45:23 +00002853 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002854 ASTContext &C = CGM.getContext();
2855 const BlockDecl *blockDecl = block.getBlockDecl();
2856
2857 // Collect some general information about the block's location.
2858 SourceLocation loc = blockDecl->getCaretLocation();
2859 llvm::DIFile tunit = getOrCreateFile(loc);
2860 unsigned line = getLineNumber(loc);
2861 unsigned column = getColumnNumber(loc);
Eric Christopher6537f082013-05-16 00:45:12 +00002862
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002863 // Build the debug-info type for the block literal.
2864 getContextDescriptor(cast<Decl>(blockDecl->getDeclContext()));
2865
2866 const llvm::StructLayout *blockLayout =
2867 CGM.getDataLayout().getStructLayout(block.StructureType);
2868
2869 SmallVector<llvm::Value*, 16> fields;
2870 fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
2871 blockLayout->getElementOffsetInBits(0),
2872 tunit, tunit));
2873 fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
2874 blockLayout->getElementOffsetInBits(1),
2875 tunit, tunit));
2876 fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
2877 blockLayout->getElementOffsetInBits(2),
2878 tunit, tunit));
2879 fields.push_back(createFieldType("__FuncPtr", C.VoidPtrTy, 0, loc, AS_public,
2880 blockLayout->getElementOffsetInBits(3),
2881 tunit, tunit));
2882 fields.push_back(createFieldType("__descriptor",
2883 C.getPointerType(block.NeedsCopyDispose ?
2884 C.getBlockDescriptorExtendedType() :
2885 C.getBlockDescriptorType()),
2886 0, loc, AS_public,
2887 blockLayout->getElementOffsetInBits(4),
2888 tunit, tunit));
2889
2890 // We want to sort the captures by offset, not because DWARF
2891 // requires this, but because we're paranoid about debuggers.
2892 SmallVector<BlockLayoutChunk, 8> chunks;
2893
2894 // 'this' capture.
2895 if (blockDecl->capturesCXXThis()) {
2896 BlockLayoutChunk chunk;
2897 chunk.OffsetInBits =
2898 blockLayout->getElementOffsetInBits(block.CXXThisIndex);
2899 chunk.Capture = 0;
2900 chunks.push_back(chunk);
2901 }
2902
2903 // Variable captures.
2904 for (BlockDecl::capture_const_iterator
2905 i = blockDecl->capture_begin(), e = blockDecl->capture_end();
2906 i != e; ++i) {
2907 const BlockDecl::Capture &capture = *i;
2908 const VarDecl *variable = capture.getVariable();
2909 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2910
2911 // Ignore constant captures.
2912 if (captureInfo.isConstant())
2913 continue;
2914
2915 BlockLayoutChunk chunk;
2916 chunk.OffsetInBits =
2917 blockLayout->getElementOffsetInBits(captureInfo.getIndex());
2918 chunk.Capture = &capture;
2919 chunks.push_back(chunk);
2920 }
2921
2922 // Sort by offset.
2923 llvm::array_pod_sort(chunks.begin(), chunks.end());
2924
2925 for (SmallVectorImpl<BlockLayoutChunk>::iterator
2926 i = chunks.begin(), e = chunks.end(); i != e; ++i) {
2927 uint64_t offsetInBits = i->OffsetInBits;
2928 const BlockDecl::Capture *capture = i->Capture;
2929
2930 // If we have a null capture, this must be the C++ 'this' capture.
2931 if (!capture) {
2932 const CXXMethodDecl *method =
2933 cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
2934 QualType type = method->getThisType(C);
2935
2936 fields.push_back(createFieldType("this", type, 0, loc, AS_public,
2937 offsetInBits, tunit, tunit));
2938 continue;
2939 }
2940
2941 const VarDecl *variable = capture->getVariable();
2942 StringRef name = variable->getName();
2943
2944 llvm::DIType fieldType;
2945 if (capture->isByRef()) {
2946 std::pair<uint64_t,unsigned> ptrInfo = C.getTypeInfo(C.VoidPtrTy);
2947
2948 // FIXME: this creates a second copy of this type!
2949 uint64_t xoffset;
2950 fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
2951 fieldType = DBuilder.createPointerType(fieldType, ptrInfo.first);
2952 fieldType = DBuilder.createMemberType(tunit, name, tunit, line,
2953 ptrInfo.first, ptrInfo.second,
2954 offsetInBits, 0, fieldType);
2955 } else {
2956 fieldType = createFieldType(name, variable->getType(), 0,
2957 loc, AS_public, offsetInBits, tunit, tunit);
2958 }
2959 fields.push_back(fieldType);
2960 }
2961
2962 SmallString<36> typeName;
2963 llvm::raw_svector_ostream(typeName)
2964 << "__block_literal_" << CGM.getUniqueBlockCount();
2965
2966 llvm::DIArray fieldsArray = DBuilder.getOrCreateArray(fields);
2967
2968 llvm::DIType type =
2969 DBuilder.createStructType(tunit, typeName.str(), tunit, line,
2970 CGM.getContext().toBits(block.BlockSize),
2971 CGM.getContext().toBits(block.BlockAlign),
David Blaikiec1d0af12013-02-25 01:07:08 +00002972 0, llvm::DIType(), fieldsArray);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002973 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
2974
2975 // Get overall information about the block.
2976 unsigned flags = llvm::DIDescriptor::FlagArtificial;
2977 llvm::MDNode *scope = LexicalBlockStack.back();
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002978
2979 // Create the descriptor for the parameter.
2980 llvm::DIVariable debugVar =
2981 DBuilder.createLocalVariable(llvm::dwarf::DW_TAG_arg_variable,
Eric Christopher6537f082013-05-16 00:45:12 +00002982 llvm::DIDescriptor(scope),
Adrian Prantl836e7c92013-03-14 17:53:33 +00002983 Arg->getName(), tunit, line, type,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002984 CGM.getLangOpts().Optimize, flags,
Adrian Prantl836e7c92013-03-14 17:53:33 +00002985 cast<llvm::Argument>(Arg)->getArgNo() + 1);
2986
Adrian Prantlbea407c2013-03-14 21:52:59 +00002987 if (LocalAddr) {
Adrian Prantl836e7c92013-03-14 17:53:33 +00002988 // Insert an llvm.dbg.value into the current block.
Adrian Prantlbea407c2013-03-14 21:52:59 +00002989 llvm::Instruction *DbgVal =
2990 DBuilder.insertDbgValueIntrinsic(LocalAddr, 0, debugVar,
Eric Christopherf068c922013-04-02 22:59:11 +00002991 Builder.GetInsertBlock());
Adrian Prantlbea407c2013-03-14 21:52:59 +00002992 DbgVal->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
2993 }
Adrian Prantl836e7c92013-03-14 17:53:33 +00002994
Adrian Prantlbea407c2013-03-14 21:52:59 +00002995 // Insert an llvm.dbg.declare into the current block.
2996 llvm::Instruction *DbgDecl =
2997 DBuilder.insertDeclare(Arg, debugVar, Builder.GetInsertBlock());
2998 DbgDecl->setDebugLoc(llvm::DebugLoc::get(line, column, scope));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00002999}
3000
David Blaikief1f5cc32013-08-15 22:30:23 +00003001/// If D is an out-of-class definition of a static data member of a class, find
3002/// its corresponding in-class declaration.
3003llvm::DIDerivedType
3004CGDebugInfo::getStaticDataMemberDeclarationOrNull(const VarDecl *D) {
3005 if (!D->isStaticDataMember())
3006 return llvm::DIDerivedType();
3007 return getStaticDataMemberDeclaration(D);
3008}
3009
3010llvm::DIDerivedType
3011CGDebugInfo::getStaticDataMemberDeclaration(const VarDecl *D) {
3012 llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
3013 MI = StaticDataMemberCache.find(D->getCanonicalDecl());
3014 if (MI != StaticDataMemberCache.end())
3015 // Verify the info still exists.
3016 if (llvm::Value *V = MI->second)
3017 return llvm::DIDerivedType(cast<llvm::MDNode>(V));
3018 llvm_unreachable(
3019 "A static data member declaration should be available at this point");
Eric Christopher0395de32013-01-16 01:22:32 +00003020}
3021
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003022/// EmitGlobalVariable - Emit information about a global variable.
3023void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
3024 const VarDecl *D) {
Eric Christopher13c97672013-05-16 00:45:23 +00003025 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003026 // Create global variable debug descriptor.
3027 llvm::DIFile Unit = getOrCreateFile(D->getLocation());
3028 unsigned LineNo = getLineNumber(D->getLocation());
3029
3030 setLocation(D->getLocation());
3031
3032 QualType T = D->getType();
3033 if (T->isIncompleteArrayType()) {
3034
3035 // CodeGen turns int[] into int[1] so we'll do the same here.
3036 llvm::APInt ConstVal(32, 1);
3037 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
3038
3039 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
3040 ArrayType::Normal, 0);
3041 }
3042 StringRef DeclName = D->getName();
3043 StringRef LinkageName;
3044 if (D->getDeclContext() && !isa<FunctionDecl>(D->getDeclContext())
3045 && !isa<ObjCMethodDecl>(D->getDeclContext()))
3046 LinkageName = Var->getName();
3047 if (LinkageName == DeclName)
3048 LinkageName = StringRef();
Eric Christopher6537f082013-05-16 00:45:12 +00003049 llvm::DIDescriptor DContext =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003050 getContextDescriptor(dyn_cast<Decl>(D->getDeclContext()));
David Blaikief1f5cc32013-08-15 22:30:23 +00003051 llvm::DIGlobalVariable GV = DBuilder.createStaticVariable(
3052 DContext, DeclName, LinkageName, Unit, LineNo, getOrCreateType(T, Unit),
3053 Var->hasInternalLinkage(), Var, getStaticDataMemberDeclarationOrNull(D));
David Blaikie9faebd22013-05-20 04:58:53 +00003054 DeclCache.insert(std::make_pair(D->getCanonicalDecl(), llvm::WeakVH(GV)));
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003055}
3056
3057/// EmitGlobalVariable - Emit information about an objective-c interface.
3058void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
3059 ObjCInterfaceDecl *ID) {
Eric Christopher13c97672013-05-16 00:45:23 +00003060 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003061 // Create global variable debug descriptor.
3062 llvm::DIFile Unit = getOrCreateFile(ID->getLocation());
3063 unsigned LineNo = getLineNumber(ID->getLocation());
3064
3065 StringRef Name = ID->getName();
3066
3067 QualType T = CGM.getContext().getObjCInterfaceType(ID);
3068 if (T->isIncompleteArrayType()) {
3069
3070 // CodeGen turns int[] into int[1] so we'll do the same here.
3071 llvm::APInt ConstVal(32, 1);
3072 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
3073
3074 T = CGM.getContext().getConstantArrayType(ET, ConstVal,
3075 ArrayType::Normal, 0);
3076 }
3077
3078 DBuilder.createGlobalVariable(Name, Unit, LineNo,
3079 getOrCreateType(T, Unit),
3080 Var->hasInternalLinkage(), Var);
3081}
3082
3083/// EmitGlobalVariable - Emit global variable's debug info.
Eric Christopher6537f082013-05-16 00:45:12 +00003084void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003085 llvm::Constant *Init) {
Eric Christopher13c97672013-05-16 00:45:23 +00003086 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003087 // Create the descriptor for the variable.
3088 llvm::DIFile Unit = getOrCreateFile(VD->getLocation());
3089 StringRef Name = VD->getName();
3090 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit);
3091 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
3092 const EnumDecl *ED = cast<EnumDecl>(ECD->getDeclContext());
3093 assert(isa<EnumType>(ED->getTypeForDecl()) && "Enum without EnumType?");
3094 Ty = getOrCreateType(QualType(ED->getTypeForDecl(), 0), Unit);
3095 }
3096 // Do not use DIGlobalVariable for enums.
3097 if (Ty.getTag() == llvm::dwarf::DW_TAG_enumeration_type)
3098 return;
David Blaikie27ab0362013-08-15 21:42:43 +00003099 llvm::DIGlobalVariable GV = DBuilder.createStaticVariable(
3100 Unit, Name, Name, Unit, getLineNumber(VD->getLocation()), Ty, true, Init,
David Blaikief1f5cc32013-08-15 22:30:23 +00003101 getStaticDataMemberDeclarationOrNull(cast<VarDecl>(VD)));
David Blaikie9faebd22013-05-20 04:58:53 +00003102 DeclCache.insert(std::make_pair(VD->getCanonicalDecl(), llvm::WeakVH(GV)));
3103}
3104
3105llvm::DIScope CGDebugInfo::getCurrentContextDescriptor(const Decl *D) {
3106 if (!LexicalBlockStack.empty())
3107 return llvm::DIScope(LexicalBlockStack.back());
3108 return getContextDescriptor(D);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003109}
3110
David Blaikie957dac52013-04-22 06:13:21 +00003111void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) {
David Blaikie9faebd22013-05-20 04:58:53 +00003112 if (CGM.getCodeGenOpts().getDebugInfo() < CodeGenOptions::LimitedDebugInfo)
3113 return;
David Blaikie957dac52013-04-22 06:13:21 +00003114 DBuilder.createImportedModule(
David Blaikie9faebd22013-05-20 04:58:53 +00003115 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())),
3116 getOrCreateNameSpace(UD.getNominatedNamespace()),
David Blaikie957dac52013-04-22 06:13:21 +00003117 getLineNumber(UD.getLocation()));
3118}
3119
David Blaikie9faebd22013-05-20 04:58:53 +00003120void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) {
3121 if (CGM.getCodeGenOpts().getDebugInfo() < CodeGenOptions::LimitedDebugInfo)
3122 return;
3123 assert(UD.shadow_size() &&
3124 "We shouldn't be codegening an invalid UsingDecl containing no decls");
3125 // Emitting one decl is sufficient - debuggers can detect that this is an
3126 // overloaded name & provide lookup for all the overloads.
3127 const UsingShadowDecl &USD = **UD.shadow_begin();
Eric Christopher56b108a2013-06-07 22:54:39 +00003128 if (llvm::DIDescriptor Target =
3129 getDeclarationOrDefinition(USD.getUnderlyingDecl()))
David Blaikie9faebd22013-05-20 04:58:53 +00003130 DBuilder.createImportedDeclaration(
3131 getCurrentContextDescriptor(cast<Decl>(USD.getDeclContext())), Target,
3132 getLineNumber(USD.getLocation()));
3133}
3134
David Blaikiefc46ebc2013-05-20 22:50:41 +00003135llvm::DIImportedEntity
3136CGDebugInfo::EmitNamespaceAlias(const NamespaceAliasDecl &NA) {
3137 if (CGM.getCodeGenOpts().getDebugInfo() < CodeGenOptions::LimitedDebugInfo)
3138 return llvm::DIImportedEntity(0);
3139 llvm::WeakVH &VH = NamespaceAliasCache[&NA];
3140 if (VH)
3141 return llvm::DIImportedEntity(cast<llvm::MDNode>(VH));
3142 llvm::DIImportedEntity R(0);
3143 if (const NamespaceAliasDecl *Underlying =
3144 dyn_cast<NamespaceAliasDecl>(NA.getAliasedNamespace()))
3145 // This could cache & dedup here rather than relying on metadata deduping.
3146 R = DBuilder.createImportedModule(
3147 getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())),
3148 EmitNamespaceAlias(*Underlying), getLineNumber(NA.getLocation()),
3149 NA.getName());
3150 else
3151 R = DBuilder.createImportedModule(
3152 getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())),
3153 getOrCreateNameSpace(cast<NamespaceDecl>(NA.getAliasedNamespace())),
3154 getLineNumber(NA.getLocation()), NA.getName());
3155 VH = R;
3156 return R;
3157}
3158
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003159/// getOrCreateNamesSpace - Return namespace descriptor for the given
3160/// namespace decl.
Eric Christopher6537f082013-05-16 00:45:12 +00003161llvm::DINameSpace
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003162CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
Eric Christopher6537f082013-05-16 00:45:12 +00003163 llvm::DenseMap<const NamespaceDecl *, llvm::WeakVH>::iterator I =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003164 NameSpaceCache.find(NSDecl);
3165 if (I != NameSpaceCache.end())
3166 return llvm::DINameSpace(cast<llvm::MDNode>(I->second));
Eric Christopher6537f082013-05-16 00:45:12 +00003167
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003168 unsigned LineNo = getLineNumber(NSDecl->getLocation());
3169 llvm::DIFile FileD = getOrCreateFile(NSDecl->getLocation());
Eric Christopher6537f082013-05-16 00:45:12 +00003170 llvm::DIDescriptor Context =
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003171 getContextDescriptor(dyn_cast<Decl>(NSDecl->getDeclContext()));
3172 llvm::DINameSpace NS =
3173 DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
3174 NameSpaceCache[NSDecl] = llvm::WeakVH(NS);
3175 return NS;
3176}
3177
3178void CGDebugInfo::finalize() {
3179 for (std::vector<std::pair<void *, llvm::WeakVH> >::const_iterator VI
3180 = ReplaceMap.begin(), VE = ReplaceMap.end(); VI != VE; ++VI) {
3181 llvm::DIType Ty, RepTy;
3182 // Verify that the debug info still exists.
3183 if (llvm::Value *V = VI->second)
3184 Ty = llvm::DIType(cast<llvm::MDNode>(V));
Eric Christopher6537f082013-05-16 00:45:12 +00003185
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003186 llvm::DenseMap<void *, llvm::WeakVH>::iterator it =
3187 TypeCache.find(VI->first);
3188 if (it != TypeCache.end()) {
3189 // Verify that the debug info still exists.
3190 if (llvm::Value *V = it->second)
3191 RepTy = llvm::DIType(cast<llvm::MDNode>(V));
3192 }
Adrian Prantlebbd7e02013-03-11 18:33:46 +00003193
Eric Christopherb2d13922013-07-18 00:52:50 +00003194 if (Ty && Ty.isForwardDecl() && RepTy)
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003195 Ty.replaceAllUsesWith(RepTy);
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003196 }
Adrian Prantlebbd7e02013-03-11 18:33:46 +00003197
3198 // We keep our own list of retained types, because we need to look
3199 // up the final type in the type cache.
3200 for (std::vector<void *>::const_iterator RI = RetainedTypes.begin(),
3201 RE = RetainedTypes.end(); RI != RE; ++RI)
3202 DBuilder.retainType(llvm::DIType(cast<llvm::MDNode>(TypeCache[*RI])));
3203
Guy Benyei7f92f2d2012-12-18 14:30:41 +00003204 DBuilder.finalize();
3205}