1 //===--- 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"
16 #include "CGCXXABI.h"
17 #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 "clang/Lex/HeaderSearchOptions.h"
31 #include "clang/Lex/ModuleMap.h"
32 #include "clang/Lex/PreprocessorOptions.h"
33 #include "llvm/ADT/SmallVector.h"
34 #include "llvm/ADT/StringExtras.h"
35 #include "llvm/IR/Constants.h"
36 #include "llvm/IR/DataLayout.h"
37 #include "llvm/IR/DerivedTypes.h"
38 #include "llvm/IR/Instructions.h"
39 #include "llvm/IR/Intrinsics.h"
40 #include "llvm/IR/Module.h"
41 #include "llvm/Support/FileSystem.h"
42 #include "llvm/Support/Path.h"
43 using namespace clang;
44 using namespace clang::CodeGen;
45 
46 CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
47     : CGM(CGM), DebugKind(CGM.getCodeGenOpts().getDebugInfo()),
48       DebugTypeExtRefs(CGM.getCodeGenOpts().DebugTypeExtRefs),
49       DBuilder(CGM.getModule()) {
50   for (const auto &KV : CGM.getCodeGenOpts().DebugPrefixMap)
51     DebugPrefixMap[KV.first] = KV.second;
52   CreateCompileUnit();
53 }
54 
55 CGDebugInfo::~CGDebugInfo() {
56   assert(LexicalBlockStack.empty() &&
57          "Region stack mismatch, stack not empty!");
58 }
59 
60 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF,
61                                        SourceLocation TemporaryLocation)
62     : CGF(&CGF) {
63   init(TemporaryLocation);
64 }
65 
66 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF,
67                                        bool DefaultToEmpty,
68                                        SourceLocation TemporaryLocation)
69     : CGF(&CGF) {
70   init(TemporaryLocation, DefaultToEmpty);
71 }
72 
73 void ApplyDebugLocation::init(SourceLocation TemporaryLocation,
74                               bool DefaultToEmpty) {
75   auto *DI = CGF->getDebugInfo();
76   if (!DI) {
77     CGF = nullptr;
78     return;
79   }
80 
81   OriginalLocation = CGF->Builder.getCurrentDebugLocation();
82   if (TemporaryLocation.isValid()) {
83     DI->EmitLocation(CGF->Builder, TemporaryLocation);
84     return;
85   }
86 
87   if (DefaultToEmpty) {
88     CGF->Builder.SetCurrentDebugLocation(llvm::DebugLoc());
89     return;
90   }
91 
92   // Construct a location that has a valid scope, but no line info.
93   assert(!DI->LexicalBlockStack.empty());
94   CGF->Builder.SetCurrentDebugLocation(
95       llvm::DebugLoc::get(0, 0, DI->LexicalBlockStack.back()));
96 }
97 
98 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, const Expr *E)
99     : CGF(&CGF) {
100   init(E->getExprLoc());
101 }
102 
103 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, llvm::DebugLoc Loc)
104     : CGF(&CGF) {
105   if (!CGF.getDebugInfo()) {
106     this->CGF = nullptr;
107     return;
108   }
109   OriginalLocation = CGF.Builder.getCurrentDebugLocation();
110   if (Loc)
111     CGF.Builder.SetCurrentDebugLocation(std::move(Loc));
112 }
113 
114 ApplyDebugLocation::~ApplyDebugLocation() {
115   // Query CGF so the location isn't overwritten when location updates are
116   // temporarily disabled (for C++ default function arguments)
117   if (CGF)
118     CGF->Builder.SetCurrentDebugLocation(std::move(OriginalLocation));
119 }
120 
121 void CGDebugInfo::setLocation(SourceLocation Loc) {
122   // If the new location isn't valid return.
123   if (Loc.isInvalid())
124     return;
125 
126   CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
127 
128   // If we've changed files in the middle of a lexical scope go ahead
129   // and create a new lexical scope with file node if it's different
130   // from the one in the scope.
131   if (LexicalBlockStack.empty())
132     return;
133 
134   SourceManager &SM = CGM.getContext().getSourceManager();
135   auto *Scope = cast<llvm::DIScope>(LexicalBlockStack.back());
136   PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
137 
138   if (PCLoc.isInvalid() || Scope->getFilename() == PCLoc.getFilename())
139     return;
140 
141   if (auto *LBF = dyn_cast<llvm::DILexicalBlockFile>(Scope)) {
142     LexicalBlockStack.pop_back();
143     LexicalBlockStack.emplace_back(DBuilder.createLexicalBlockFile(
144         LBF->getScope(), getOrCreateFile(CurLoc)));
145   } else if (isa<llvm::DILexicalBlock>(Scope) ||
146              isa<llvm::DISubprogram>(Scope)) {
147     LexicalBlockStack.pop_back();
148     LexicalBlockStack.emplace_back(
149         DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc)));
150   }
151 }
152 
153 llvm::DIScope *CGDebugInfo::getDeclContextDescriptor(const Decl *D) {
154   llvm::DIScope *Mod = getParentModuleOrNull(D);
155   return getContextDescriptor(cast<Decl>(D->getDeclContext()),
156                               Mod ? Mod : TheCU);
157 }
158 
159 llvm::DIScope *CGDebugInfo::getContextDescriptor(const Decl *Context,
160                                                  llvm::DIScope *Default) {
161   if (!Context)
162     return Default;
163 
164   auto I = RegionMap.find(Context);
165   if (I != RegionMap.end()) {
166     llvm::Metadata *V = I->second;
167     return dyn_cast_or_null<llvm::DIScope>(V);
168   }
169 
170   // Check namespace.
171   if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
172     return getOrCreateNameSpace(NSDecl);
173 
174   if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context))
175     if (!RDecl->isDependentType())
176       return getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
177                              getOrCreateMainFile());
178   return Default;
179 }
180 
181 StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
182   assert(FD && "Invalid FunctionDecl!");
183   IdentifierInfo *FII = FD->getIdentifier();
184   FunctionTemplateSpecializationInfo *Info =
185       FD->getTemplateSpecializationInfo();
186 
187   if (!Info && FII && !CGM.getCodeGenOpts().EmitCodeView)
188     return FII->getName();
189 
190   // Otherwise construct human readable name for debug info.
191   SmallString<128> NS;
192   llvm::raw_svector_ostream OS(NS);
193   PrintingPolicy Policy(CGM.getLangOpts());
194 
195   if (CGM.getCodeGenOpts().EmitCodeView) {
196     // Print a fully qualified name like MSVC would.
197     Policy.MSVCFormatting = true;
198     FD->printQualifiedName(OS, Policy);
199   } else {
200     // Print the unqualified name with some template arguments. This is what
201     // DWARF-based debuggers expect.
202     FD->printName(OS);
203     // Add any template specialization args.
204     if (Info) {
205       const TemplateArgumentList *TArgs = Info->TemplateArguments;
206       const TemplateArgument *Args = TArgs->data();
207       unsigned NumArgs = TArgs->size();
208       TemplateSpecializationType::PrintTemplateArgumentList(OS, Args, NumArgs,
209                                                             Policy);
210     }
211   }
212 
213   // Copy this name on the side and use its reference.
214   return internString(OS.str());
215 }
216 
217 StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
218   SmallString<256> MethodName;
219   llvm::raw_svector_ostream OS(MethodName);
220   OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
221   const DeclContext *DC = OMD->getDeclContext();
222   if (const ObjCImplementationDecl *OID =
223           dyn_cast<const ObjCImplementationDecl>(DC)) {
224     OS << OID->getName();
225   } else if (const ObjCInterfaceDecl *OID =
226                  dyn_cast<const ObjCInterfaceDecl>(DC)) {
227     OS << OID->getName();
228   } else if (const ObjCCategoryDecl *OC = dyn_cast<ObjCCategoryDecl>(DC)) {
229     if (OC->IsClassExtension()) {
230       OS << OC->getClassInterface()->getName();
231     } else {
232       OS << ((const NamedDecl *)OC)->getIdentifier()->getNameStart() << '('
233          << OC->getIdentifier()->getNameStart() << ')';
234     }
235   } else if (const ObjCCategoryImplDecl *OCD =
236                  dyn_cast<const ObjCCategoryImplDecl>(DC)) {
237     OS << ((const NamedDecl *)OCD)->getIdentifier()->getNameStart() << '('
238        << OCD->getIdentifier()->getNameStart() << ')';
239   } else if (isa<ObjCProtocolDecl>(DC)) {
240     // We can extract the type of the class from the self pointer.
241     if (ImplicitParamDecl *SelfDecl = OMD->getSelfDecl()) {
242       QualType ClassTy =
243           cast<ObjCObjectPointerType>(SelfDecl->getType())->getPointeeType();
244       ClassTy.print(OS, PrintingPolicy(LangOptions()));
245     }
246   }
247   OS << ' ' << OMD->getSelector().getAsString() << ']';
248 
249   return internString(OS.str());
250 }
251 
252 StringRef CGDebugInfo::getSelectorName(Selector S) {
253   return internString(S.getAsString());
254 }
255 
256 StringRef CGDebugInfo::getClassName(const RecordDecl *RD) {
257   // quick optimization to avoid having to intern strings that are already
258   // stored reliably elsewhere
259   if (!isa<ClassTemplateSpecializationDecl>(RD))
260     return RD->getName();
261 
262   SmallString<128> Name;
263   {
264     llvm::raw_svector_ostream OS(Name);
265     RD->getNameForDiagnostic(OS, CGM.getContext().getPrintingPolicy(),
266                              /*Qualified*/ false);
267   }
268 
269   // Copy this name on the side and use its reference.
270   return internString(Name);
271 }
272 
273 llvm::DIFile *CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
274   if (!Loc.isValid())
275     // If Location is not valid then use main input file.
276     return DBuilder.createFile(remapDIPath(TheCU->getFilename()),
277                                remapDIPath(TheCU->getDirectory()));
278 
279   SourceManager &SM = CGM.getContext().getSourceManager();
280   PresumedLoc PLoc = SM.getPresumedLoc(Loc);
281 
282   if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
283     // If the location is not valid then use main input file.
284     return DBuilder.createFile(remapDIPath(TheCU->getFilename()),
285                                remapDIPath(TheCU->getDirectory()));
286 
287   // Cache the results.
288   const char *fname = PLoc.getFilename();
289   auto it = DIFileCache.find(fname);
290 
291   if (it != DIFileCache.end()) {
292     // Verify that the information still exists.
293     if (llvm::Metadata *V = it->second)
294       return cast<llvm::DIFile>(V);
295   }
296 
297   llvm::DIFile *F = DBuilder.createFile(remapDIPath(PLoc.getFilename()),
298                                         remapDIPath(getCurrentDirname()));
299 
300   DIFileCache[fname].reset(F);
301   return F;
302 }
303 
304 llvm::DIFile *CGDebugInfo::getOrCreateMainFile() {
305   return DBuilder.createFile(remapDIPath(TheCU->getFilename()),
306                              remapDIPath(TheCU->getDirectory()));
307 }
308 
309 std::string CGDebugInfo::remapDIPath(StringRef Path) const {
310   for (const auto &Entry : DebugPrefixMap)
311     if (Path.startswith(Entry.first))
312       return (Twine(Entry.second) + Path.substr(Entry.first.size())).str();
313   return Path.str();
314 }
315 
316 unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
317   if (Loc.isInvalid() && CurLoc.isInvalid())
318     return 0;
319   SourceManager &SM = CGM.getContext().getSourceManager();
320   PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
321   return PLoc.isValid() ? PLoc.getLine() : 0;
322 }
323 
324 unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc, bool Force) {
325   // We may not want column information at all.
326   if (!Force && !CGM.getCodeGenOpts().DebugColumnInfo)
327     return 0;
328 
329   // If the location is invalid then use the current column.
330   if (Loc.isInvalid() && CurLoc.isInvalid())
331     return 0;
332   SourceManager &SM = CGM.getContext().getSourceManager();
333   PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
334   return PLoc.isValid() ? PLoc.getColumn() : 0;
335 }
336 
337 StringRef CGDebugInfo::getCurrentDirname() {
338   if (!CGM.getCodeGenOpts().DebugCompilationDir.empty())
339     return CGM.getCodeGenOpts().DebugCompilationDir;
340 
341   if (!CWDName.empty())
342     return CWDName;
343   SmallString<256> CWD;
344   llvm::sys::fs::current_path(CWD);
345   return CWDName = internString(CWD);
346 }
347 
348 void CGDebugInfo::CreateCompileUnit() {
349 
350   // Should we be asking the SourceManager for the main file name, instead of
351   // accepting it as an argument? This just causes the main file name to
352   // mismatch with source locations and create extra lexical scopes or
353   // mismatched debug info (a CU with a DW_AT_file of "-", because that's what
354   // the driver passed, but functions/other things have DW_AT_file of "<stdin>"
355   // because that's what the SourceManager says)
356 
357   // Get absolute path name.
358   SourceManager &SM = CGM.getContext().getSourceManager();
359   std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
360   if (MainFileName.empty())
361     MainFileName = "<stdin>";
362 
363   // The main file name provided via the "-main-file-name" option contains just
364   // the file name itself with no path information. This file name may have had
365   // a relative path, so we look into the actual file entry for the main
366   // file to determine the real absolute path for the file.
367   std::string MainFileDir;
368   if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
369     MainFileDir = remapDIPath(MainFile->getDir()->getName());
370     if (MainFileDir != ".") {
371       llvm::SmallString<1024> MainFileDirSS(MainFileDir);
372       llvm::sys::path::append(MainFileDirSS, MainFileName);
373       MainFileName = MainFileDirSS.str();
374     }
375   }
376 
377   llvm::dwarf::SourceLanguage LangTag;
378   const LangOptions &LO = CGM.getLangOpts();
379   if (LO.CPlusPlus) {
380     if (LO.ObjC1)
381       LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
382     else
383       LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
384   } else if (LO.ObjC1) {
385     LangTag = llvm::dwarf::DW_LANG_ObjC;
386   } else if (LO.C99) {
387     LangTag = llvm::dwarf::DW_LANG_C99;
388   } else {
389     LangTag = llvm::dwarf::DW_LANG_C89;
390   }
391 
392   std::string Producer = getClangFullVersion();
393 
394   // Figure out which version of the ObjC runtime we have.
395   unsigned RuntimeVers = 0;
396   if (LO.ObjC1)
397     RuntimeVers = LO.ObjCRuntime.isNonFragile() ? 2 : 1;
398 
399   llvm::DICompileUnit::DebugEmissionKind EmissionKind;
400   switch (DebugKind) {
401   case codegenoptions::NoDebugInfo:
402   case codegenoptions::LocTrackingOnly:
403     EmissionKind = llvm::DICompileUnit::NoDebug;
404     break;
405   case codegenoptions::DebugLineTablesOnly:
406     EmissionKind = llvm::DICompileUnit::LineTablesOnly;
407     break;
408   case codegenoptions::LimitedDebugInfo:
409   case codegenoptions::FullDebugInfo:
410     EmissionKind = llvm::DICompileUnit::FullDebug;
411     break;
412   }
413 
414   // Create new compile unit.
415   // FIXME - Eliminate TheCU.
416   TheCU = DBuilder.createCompileUnit(
417       LangTag, remapDIPath(MainFileName), remapDIPath(getCurrentDirname()),
418       Producer, LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers,
419       CGM.getCodeGenOpts().SplitDwarfFile, EmissionKind, 0 /* DWOid */);
420 }
421 
422 llvm::DIType *CGDebugInfo::CreateType(const BuiltinType *BT) {
423   llvm::dwarf::TypeKind Encoding;
424   StringRef BTName;
425   switch (BT->getKind()) {
426 #define BUILTIN_TYPE(Id, SingletonId)
427 #define PLACEHOLDER_TYPE(Id, SingletonId) case BuiltinType::Id:
428 #include "clang/AST/BuiltinTypes.def"
429   case BuiltinType::Dependent:
430     llvm_unreachable("Unexpected builtin type");
431   case BuiltinType::NullPtr:
432     return DBuilder.createNullPtrType();
433   case BuiltinType::Void:
434     return nullptr;
435   case BuiltinType::ObjCClass:
436     if (!ClassTy)
437       ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
438                                            "objc_class", TheCU,
439                                            getOrCreateMainFile(), 0);
440     return ClassTy;
441   case BuiltinType::ObjCId: {
442     // typedef struct objc_class *Class;
443     // typedef struct objc_object {
444     //  Class isa;
445     // } *id;
446 
447     if (ObjTy)
448       return ObjTy;
449 
450     if (!ClassTy)
451       ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
452                                            "objc_class", TheCU,
453                                            getOrCreateMainFile(), 0);
454 
455     unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
456 
457     auto *ISATy = DBuilder.createPointerType(ClassTy, Size);
458 
459     ObjTy =
460         DBuilder.createStructType(TheCU, "objc_object", getOrCreateMainFile(),
461                                   0, 0, 0, 0, nullptr, llvm::DINodeArray());
462 
463     DBuilder.replaceArrays(
464         ObjTy,
465         DBuilder.getOrCreateArray(&*DBuilder.createMemberType(
466             ObjTy, "isa", getOrCreateMainFile(), 0, Size, 0, 0, 0, ISATy)));
467     return ObjTy;
468   }
469   case BuiltinType::ObjCSel: {
470     if (!SelTy)
471       SelTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
472                                          "objc_selector", TheCU,
473                                          getOrCreateMainFile(), 0);
474     return SelTy;
475   }
476 
477 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
478   case BuiltinType::Id: \
479     return getOrCreateStructPtrType("opencl_" #ImgType "_" #Suffix "_t", \
480                                     SingletonId);
481 #include "clang/AST/OpenCLImageTypes.def"
482   case BuiltinType::OCLSampler:
483     return DBuilder.createBasicType(
484         "opencl_sampler_t", CGM.getContext().getTypeSize(BT),
485         CGM.getContext().getTypeAlign(BT), llvm::dwarf::DW_ATE_unsigned);
486   case BuiltinType::OCLEvent:
487     return getOrCreateStructPtrType("opencl_event_t", OCLEventDITy);
488   case BuiltinType::OCLClkEvent:
489     return getOrCreateStructPtrType("opencl_clk_event_t", OCLClkEventDITy);
490   case BuiltinType::OCLQueue:
491     return getOrCreateStructPtrType("opencl_queue_t", OCLQueueDITy);
492   case BuiltinType::OCLNDRange:
493     return getOrCreateStructPtrType("opencl_ndrange_t", OCLNDRangeDITy);
494   case BuiltinType::OCLReserveID:
495     return getOrCreateStructPtrType("opencl_reserve_id_t", OCLReserveIDDITy);
496 
497   case BuiltinType::UChar:
498   case BuiltinType::Char_U:
499     Encoding = llvm::dwarf::DW_ATE_unsigned_char;
500     break;
501   case BuiltinType::Char_S:
502   case BuiltinType::SChar:
503     Encoding = llvm::dwarf::DW_ATE_signed_char;
504     break;
505   case BuiltinType::Char16:
506   case BuiltinType::Char32:
507     Encoding = llvm::dwarf::DW_ATE_UTF;
508     break;
509   case BuiltinType::UShort:
510   case BuiltinType::UInt:
511   case BuiltinType::UInt128:
512   case BuiltinType::ULong:
513   case BuiltinType::WChar_U:
514   case BuiltinType::ULongLong:
515     Encoding = llvm::dwarf::DW_ATE_unsigned;
516     break;
517   case BuiltinType::Short:
518   case BuiltinType::Int:
519   case BuiltinType::Int128:
520   case BuiltinType::Long:
521   case BuiltinType::WChar_S:
522   case BuiltinType::LongLong:
523     Encoding = llvm::dwarf::DW_ATE_signed;
524     break;
525   case BuiltinType::Bool:
526     Encoding = llvm::dwarf::DW_ATE_boolean;
527     break;
528   case BuiltinType::Half:
529   case BuiltinType::Float:
530   case BuiltinType::LongDouble:
531   case BuiltinType::Double:
532     Encoding = llvm::dwarf::DW_ATE_float;
533     break;
534   }
535 
536   switch (BT->getKind()) {
537   case BuiltinType::Long:
538     BTName = "long int";
539     break;
540   case BuiltinType::LongLong:
541     BTName = "long long int";
542     break;
543   case BuiltinType::ULong:
544     BTName = "long unsigned int";
545     break;
546   case BuiltinType::ULongLong:
547     BTName = "long long unsigned int";
548     break;
549   default:
550     BTName = BT->getName(CGM.getLangOpts());
551     break;
552   }
553   // Bit size, align and offset of the type.
554   uint64_t Size = CGM.getContext().getTypeSize(BT);
555   uint64_t Align = CGM.getContext().getTypeAlign(BT);
556   return DBuilder.createBasicType(BTName, Size, Align, Encoding);
557 }
558 
559 llvm::DIType *CGDebugInfo::CreateType(const ComplexType *Ty) {
560   // Bit size, align and offset of the type.
561   llvm::dwarf::TypeKind Encoding = llvm::dwarf::DW_ATE_complex_float;
562   if (Ty->isComplexIntegerType())
563     Encoding = llvm::dwarf::DW_ATE_lo_user;
564 
565   uint64_t Size = CGM.getContext().getTypeSize(Ty);
566   uint64_t Align = CGM.getContext().getTypeAlign(Ty);
567   return DBuilder.createBasicType("complex", Size, Align, Encoding);
568 }
569 
570 llvm::DIType *CGDebugInfo::CreateQualifiedType(QualType Ty,
571                                                llvm::DIFile *Unit) {
572   QualifierCollector Qc;
573   const Type *T = Qc.strip(Ty);
574 
575   // Ignore these qualifiers for now.
576   Qc.removeObjCGCAttr();
577   Qc.removeAddressSpace();
578   Qc.removeObjCLifetime();
579 
580   // We will create one Derived type for one qualifier and recurse to handle any
581   // additional ones.
582   llvm::dwarf::Tag Tag;
583   if (Qc.hasConst()) {
584     Tag = llvm::dwarf::DW_TAG_const_type;
585     Qc.removeConst();
586   } else if (Qc.hasVolatile()) {
587     Tag = llvm::dwarf::DW_TAG_volatile_type;
588     Qc.removeVolatile();
589   } else if (Qc.hasRestrict()) {
590     Tag = llvm::dwarf::DW_TAG_restrict_type;
591     Qc.removeRestrict();
592   } else {
593     assert(Qc.empty() && "Unknown type qualifier for debug info");
594     return getOrCreateType(QualType(T, 0), Unit);
595   }
596 
597   auto *FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
598 
599   // No need to fill in the Name, Line, Size, Alignment, Offset in case of
600   // CVR derived types.
601   return DBuilder.createQualifiedType(Tag, FromTy);
602 }
603 
604 llvm::DIType *CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
605                                       llvm::DIFile *Unit) {
606 
607   // The frontend treats 'id' as a typedef to an ObjCObjectType,
608   // whereas 'id<protocol>' is treated as an ObjCPointerType. For the
609   // debug info, we want to emit 'id' in both cases.
610   if (Ty->isObjCQualifiedIdType())
611     return getOrCreateType(CGM.getContext().getObjCIdType(), Unit);
612 
613   return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
614                                Ty->getPointeeType(), Unit);
615 }
616 
617 llvm::DIType *CGDebugInfo::CreateType(const PointerType *Ty,
618                                       llvm::DIFile *Unit) {
619   return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
620                                Ty->getPointeeType(), Unit);
621 }
622 
623 /// \return whether a C++ mangling exists for the type defined by TD.
624 static bool hasCXXMangling(const TagDecl *TD, llvm::DICompileUnit *TheCU) {
625   switch (TheCU->getSourceLanguage()) {
626   case llvm::dwarf::DW_LANG_C_plus_plus:
627     return true;
628   case llvm::dwarf::DW_LANG_ObjC_plus_plus:
629     return isa<CXXRecordDecl>(TD) || isa<EnumDecl>(TD);
630   default:
631     return false;
632   }
633 }
634 
635 /// In C++ mode, types have linkage, so we can rely on the ODR and
636 /// on their mangled names, if they're external.
637 static SmallString<256> getUniqueTagTypeName(const TagType *Ty,
638                                              CodeGenModule &CGM,
639                                              llvm::DICompileUnit *TheCU) {
640   SmallString<256> FullName;
641   const TagDecl *TD = Ty->getDecl();
642 
643   if (!hasCXXMangling(TD, TheCU) || !TD->isExternallyVisible())
644     return FullName;
645 
646   // Microsoft Mangler does not have support for mangleCXXRTTIName yet.
647   if (CGM.getTarget().getCXXABI().isMicrosoft())
648     return FullName;
649 
650   // TODO: This is using the RTTI name. Is there a better way to get
651   // a unique string for a type?
652   llvm::raw_svector_ostream Out(FullName);
653   CGM.getCXXABI().getMangleContext().mangleCXXRTTIName(QualType(Ty, 0), Out);
654   return FullName;
655 }
656 
657 /// \return the approproate DWARF tag for a composite type.
658 static llvm::dwarf::Tag getTagForRecord(const RecordDecl *RD) {
659    llvm::dwarf::Tag Tag;
660   if (RD->isStruct() || RD->isInterface())
661     Tag = llvm::dwarf::DW_TAG_structure_type;
662   else if (RD->isUnion())
663     Tag = llvm::dwarf::DW_TAG_union_type;
664   else {
665     // FIXME: This could be a struct type giving a default visibility different
666     // than C++ class type, but needs llvm metadata changes first.
667     assert(RD->isClass());
668     Tag = llvm::dwarf::DW_TAG_class_type;
669   }
670   return Tag;
671 }
672 
673 llvm::DICompositeType *
674 CGDebugInfo::getOrCreateRecordFwdDecl(const RecordType *Ty,
675                                       llvm::DIScope *Ctx) {
676   const RecordDecl *RD = Ty->getDecl();
677   if (llvm::DIType *T = getTypeOrNull(CGM.getContext().getRecordType(RD)))
678     return cast<llvm::DICompositeType>(T);
679   llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation());
680   unsigned Line = getLineNumber(RD->getLocation());
681   StringRef RDName = getClassName(RD);
682 
683   uint64_t Size = 0;
684   uint64_t Align = 0;
685 
686   const RecordDecl *D = RD->getDefinition();
687   if (D && D->isCompleteDefinition()) {
688     Size = CGM.getContext().getTypeSize(Ty);
689     Align = CGM.getContext().getTypeAlign(Ty);
690   }
691 
692   // Create the type.
693   SmallString<256> FullName = getUniqueTagTypeName(Ty, CGM, TheCU);
694   llvm::DICompositeType *RetTy = DBuilder.createReplaceableCompositeType(
695       getTagForRecord(RD), RDName, Ctx, DefUnit, Line, 0, Size, Align,
696       llvm::DINode::FlagFwdDecl, FullName);
697   ReplaceMap.emplace_back(
698       std::piecewise_construct, std::make_tuple(Ty),
699       std::make_tuple(static_cast<llvm::Metadata *>(RetTy)));
700   return RetTy;
701 }
702 
703 llvm::DIType *CGDebugInfo::CreatePointerLikeType(llvm::dwarf::Tag Tag,
704                                                  const Type *Ty,
705                                                  QualType PointeeTy,
706                                                  llvm::DIFile *Unit) {
707   // Bit size, align and offset of the type.
708   // Size is always the size of a pointer. We can't use getTypeSize here
709   // because that does not return the correct value for references.
710   unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
711   uint64_t Size = CGM.getTarget().getPointerWidth(AS);
712   uint64_t Align = CGM.getContext().getTypeAlign(Ty);
713 
714   if (Tag == llvm::dwarf::DW_TAG_reference_type ||
715       Tag == llvm::dwarf::DW_TAG_rvalue_reference_type)
716     return DBuilder.createReferenceType(Tag, getOrCreateType(PointeeTy, Unit),
717                                         Size, Align);
718   else
719     return DBuilder.createPointerType(getOrCreateType(PointeeTy, Unit), Size,
720                                       Align);
721 }
722 
723 llvm::DIType *CGDebugInfo::getOrCreateStructPtrType(StringRef Name,
724                                                     llvm::DIType *&Cache) {
725   if (Cache)
726     return Cache;
727   Cache = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, Name,
728                                      TheCU, getOrCreateMainFile(), 0);
729   unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
730   Cache = DBuilder.createPointerType(Cache, Size);
731   return Cache;
732 }
733 
734 llvm::DIType *CGDebugInfo::CreateType(const BlockPointerType *Ty,
735                                       llvm::DIFile *Unit) {
736   SmallVector<llvm::Metadata *, 8> EltTys;
737   QualType FType;
738   uint64_t FieldSize, FieldOffset;
739   unsigned FieldAlign;
740   llvm::DINodeArray Elements;
741 
742   FieldOffset = 0;
743   FType = CGM.getContext().UnsignedLongTy;
744   EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
745   EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
746 
747   Elements = DBuilder.getOrCreateArray(EltTys);
748   EltTys.clear();
749 
750   unsigned Flags = llvm::DINode::FlagAppleBlock;
751   unsigned LineNo = 0;
752 
753   auto *EltTy =
754       DBuilder.createStructType(Unit, "__block_descriptor", nullptr, LineNo,
755                                 FieldOffset, 0, Flags, nullptr, Elements);
756 
757   // Bit size, align and offset of the type.
758   uint64_t Size = CGM.getContext().getTypeSize(Ty);
759 
760   auto *DescTy = DBuilder.createPointerType(EltTy, Size);
761 
762   FieldOffset = 0;
763   FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
764   EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
765   FType = CGM.getContext().IntTy;
766   EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
767   EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
768   FType = CGM.getContext().getPointerType(Ty->getPointeeType());
769   EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
770 
771   FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
772   FieldSize = CGM.getContext().getTypeSize(Ty);
773   FieldAlign = CGM.getContext().getTypeAlign(Ty);
774   EltTys.push_back(DBuilder.createMemberType(Unit, "__descriptor", nullptr, LineNo,
775                                              FieldSize, FieldAlign, FieldOffset,
776                                              0, DescTy));
777 
778   FieldOffset += FieldSize;
779   Elements = DBuilder.getOrCreateArray(EltTys);
780 
781   // The __block_literal_generic structs are marked with a special
782   // DW_AT_APPLE_BLOCK attribute and are an implementation detail only
783   // the debugger needs to know about. To allow type uniquing, emit
784   // them without a name or a location.
785   EltTy =
786       DBuilder.createStructType(Unit, "", nullptr, LineNo,
787                                 FieldOffset, 0, Flags, nullptr, Elements);
788 
789   return DBuilder.createPointerType(EltTy, Size);
790 }
791 
792 llvm::DIType *CGDebugInfo::CreateType(const TemplateSpecializationType *Ty,
793                                       llvm::DIFile *Unit) {
794   assert(Ty->isTypeAlias());
795   llvm::DIType *Src = getOrCreateType(Ty->getAliasedType(), Unit);
796 
797   SmallString<128> NS;
798   llvm::raw_svector_ostream OS(NS);
799   Ty->getTemplateName().print(OS, CGM.getContext().getPrintingPolicy(),
800                               /*qualified*/ false);
801 
802   TemplateSpecializationType::PrintTemplateArgumentList(
803       OS, Ty->getArgs(), Ty->getNumArgs(),
804       CGM.getContext().getPrintingPolicy());
805 
806   TypeAliasDecl *AliasDecl = cast<TypeAliasTemplateDecl>(
807       Ty->getTemplateName().getAsTemplateDecl())->getTemplatedDecl();
808 
809   SourceLocation Loc = AliasDecl->getLocation();
810   return DBuilder.createTypedef(Src, OS.str(), getOrCreateFile(Loc),
811                                 getLineNumber(Loc),
812                                 getDeclContextDescriptor(AliasDecl));
813 }
814 
815 llvm::DIType *CGDebugInfo::CreateType(const TypedefType *Ty,
816                                       llvm::DIFile *Unit) {
817   // We don't set size information, but do specify where the typedef was
818   // declared.
819   SourceLocation Loc = Ty->getDecl()->getLocation();
820 
821   // Typedefs are derived from some other type.
822   return DBuilder.createTypedef(
823       getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit),
824       Ty->getDecl()->getName(), getOrCreateFile(Loc), getLineNumber(Loc),
825       getDeclContextDescriptor(Ty->getDecl()));
826 }
827 
828 llvm::DIType *CGDebugInfo::CreateType(const FunctionType *Ty,
829                                       llvm::DIFile *Unit) {
830   SmallVector<llvm::Metadata *, 16> EltTys;
831 
832   // Add the result type at least.
833   EltTys.push_back(getOrCreateType(Ty->getReturnType(), Unit));
834 
835   // Set up remainder of arguments if there is a prototype.
836   // otherwise emit it as a variadic function.
837   if (isa<FunctionNoProtoType>(Ty))
838     EltTys.push_back(DBuilder.createUnspecifiedParameter());
839   else if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Ty)) {
840     for (unsigned i = 0, e = FPT->getNumParams(); i != e; ++i)
841       EltTys.push_back(getOrCreateType(FPT->getParamType(i), Unit));
842     if (FPT->isVariadic())
843       EltTys.push_back(DBuilder.createUnspecifiedParameter());
844   }
845 
846   llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(EltTys);
847   return DBuilder.createSubroutineType(EltTypeArray);
848 }
849 
850 /// Convert an AccessSpecifier into the corresponding DINode flag.
851 /// As an optimization, return 0 if the access specifier equals the
852 /// default for the containing type.
853 static unsigned getAccessFlag(AccessSpecifier Access, const RecordDecl *RD) {
854   AccessSpecifier Default = clang::AS_none;
855   if (RD && RD->isClass())
856     Default = clang::AS_private;
857   else if (RD && (RD->isStruct() || RD->isUnion()))
858     Default = clang::AS_public;
859 
860   if (Access == Default)
861     return 0;
862 
863   switch (Access) {
864   case clang::AS_private:
865     return llvm::DINode::FlagPrivate;
866   case clang::AS_protected:
867     return llvm::DINode::FlagProtected;
868   case clang::AS_public:
869     return llvm::DINode::FlagPublic;
870   case clang::AS_none:
871     return 0;
872   }
873   llvm_unreachable("unexpected access enumerator");
874 }
875 
876 llvm::DIType *CGDebugInfo::createFieldType(
877     StringRef name, QualType type, uint64_t sizeInBitsOverride,
878     SourceLocation loc, AccessSpecifier AS, uint64_t offsetInBits,
879     llvm::DIFile *tunit, llvm::DIScope *scope, const RecordDecl *RD) {
880   llvm::DIType *debugType = getOrCreateType(type, tunit);
881 
882   // Get the location for the field.
883   llvm::DIFile *file = getOrCreateFile(loc);
884   unsigned line = getLineNumber(loc);
885 
886   uint64_t SizeInBits = 0;
887   unsigned AlignInBits = 0;
888   if (!type->isIncompleteArrayType()) {
889     TypeInfo TI = CGM.getContext().getTypeInfo(type);
890     SizeInBits = TI.Width;
891     AlignInBits = TI.Align;
892 
893     if (sizeInBitsOverride)
894       SizeInBits = sizeInBitsOverride;
895   }
896 
897   unsigned flags = getAccessFlag(AS, RD);
898   return DBuilder.createMemberType(scope, name, file, line, SizeInBits,
899                                    AlignInBits, offsetInBits, flags, debugType);
900 }
901 
902 void CGDebugInfo::CollectRecordLambdaFields(
903     const CXXRecordDecl *CXXDecl, SmallVectorImpl<llvm::Metadata *> &elements,
904     llvm::DIType *RecordTy) {
905   // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
906   // has the name and the location of the variable so we should iterate over
907   // both concurrently.
908   const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(CXXDecl);
909   RecordDecl::field_iterator Field = CXXDecl->field_begin();
910   unsigned fieldno = 0;
911   for (CXXRecordDecl::capture_const_iterator I = CXXDecl->captures_begin(),
912                                              E = CXXDecl->captures_end();
913        I != E; ++I, ++Field, ++fieldno) {
914     const LambdaCapture &C = *I;
915     if (C.capturesVariable()) {
916       VarDecl *V = C.getCapturedVar();
917       llvm::DIFile *VUnit = getOrCreateFile(C.getLocation());
918       StringRef VName = V->getName();
919       uint64_t SizeInBitsOverride = 0;
920       if (Field->isBitField()) {
921         SizeInBitsOverride = Field->getBitWidthValue(CGM.getContext());
922         assert(SizeInBitsOverride && "found named 0-width bitfield");
923       }
924       llvm::DIType *fieldType = createFieldType(
925           VName, Field->getType(), SizeInBitsOverride, C.getLocation(),
926           Field->getAccess(), layout.getFieldOffset(fieldno), VUnit, RecordTy,
927           CXXDecl);
928       elements.push_back(fieldType);
929     } else if (C.capturesThis()) {
930       // TODO: Need to handle 'this' in some way by probably renaming the
931       // this of the lambda class and having a field member of 'this' or
932       // by using AT_object_pointer for the function and having that be
933       // used as 'this' for semantic references.
934       FieldDecl *f = *Field;
935       llvm::DIFile *VUnit = getOrCreateFile(f->getLocation());
936       QualType type = f->getType();
937       llvm::DIType *fieldType = createFieldType(
938           "this", type, 0, f->getLocation(), f->getAccess(),
939           layout.getFieldOffset(fieldno), VUnit, RecordTy, CXXDecl);
940 
941       elements.push_back(fieldType);
942     }
943   }
944 }
945 
946 llvm::DIDerivedType *
947 CGDebugInfo::CreateRecordStaticField(const VarDecl *Var, llvm::DIType *RecordTy,
948                                      const RecordDecl *RD) {
949   // Create the descriptor for the static variable, with or without
950   // constant initializers.
951   Var = Var->getCanonicalDecl();
952   llvm::DIFile *VUnit = getOrCreateFile(Var->getLocation());
953   llvm::DIType *VTy = getOrCreateType(Var->getType(), VUnit);
954 
955   unsigned LineNumber = getLineNumber(Var->getLocation());
956   StringRef VName = Var->getName();
957   llvm::Constant *C = nullptr;
958   if (Var->getInit()) {
959     const APValue *Value = Var->evaluateValue();
960     if (Value) {
961       if (Value->isInt())
962         C = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
963       if (Value->isFloat())
964         C = llvm::ConstantFP::get(CGM.getLLVMContext(), Value->getFloat());
965     }
966   }
967 
968   unsigned Flags = getAccessFlag(Var->getAccess(), RD);
969   llvm::DIDerivedType *GV = DBuilder.createStaticMemberType(
970       RecordTy, VName, VUnit, LineNumber, VTy, Flags, C);
971   StaticDataMemberCache[Var->getCanonicalDecl()].reset(GV);
972   return GV;
973 }
974 
975 void CGDebugInfo::CollectRecordNormalField(
976     const FieldDecl *field, uint64_t OffsetInBits, llvm::DIFile *tunit,
977     SmallVectorImpl<llvm::Metadata *> &elements, llvm::DIType *RecordTy,
978     const RecordDecl *RD) {
979   StringRef name = field->getName();
980   QualType type = field->getType();
981 
982   // Ignore unnamed fields unless they're anonymous structs/unions.
983   if (name.empty() && !type->isRecordType())
984     return;
985 
986   uint64_t SizeInBitsOverride = 0;
987   if (field->isBitField()) {
988     SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
989     assert(SizeInBitsOverride && "found named 0-width bitfield");
990   }
991 
992   llvm::DIType *fieldType =
993       createFieldType(name, type, SizeInBitsOverride, field->getLocation(),
994                       field->getAccess(), OffsetInBits, tunit, RecordTy, RD);
995 
996   elements.push_back(fieldType);
997 }
998 
999 void CGDebugInfo::CollectRecordFields(
1000     const RecordDecl *record, llvm::DIFile *tunit,
1001     SmallVectorImpl<llvm::Metadata *> &elements,
1002     llvm::DICompositeType *RecordTy) {
1003   const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(record);
1004 
1005   if (CXXDecl && CXXDecl->isLambda())
1006     CollectRecordLambdaFields(CXXDecl, elements, RecordTy);
1007   else {
1008     const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
1009 
1010     // Field number for non-static fields.
1011     unsigned fieldNo = 0;
1012 
1013     // Static and non-static members should appear in the same order as
1014     // the corresponding declarations in the source program.
1015     for (const auto *I : record->decls())
1016       if (const auto *V = dyn_cast<VarDecl>(I)) {
1017         // Reuse the existing static member declaration if one exists
1018         auto MI = StaticDataMemberCache.find(V->getCanonicalDecl());
1019         if (MI != StaticDataMemberCache.end()) {
1020           assert(MI->second &&
1021                  "Static data member declaration should still exist");
1022           elements.push_back(MI->second);
1023         } else {
1024           auto Field = CreateRecordStaticField(V, RecordTy, record);
1025           elements.push_back(Field);
1026         }
1027       } else if (const auto *field = dyn_cast<FieldDecl>(I)) {
1028         CollectRecordNormalField(field, layout.getFieldOffset(fieldNo), tunit,
1029                                  elements, RecordTy, record);
1030 
1031         // Bump field number for next field.
1032         ++fieldNo;
1033       }
1034   }
1035 }
1036 
1037 llvm::DISubroutineType *
1038 CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
1039                                    llvm::DIFile *Unit) {
1040   const FunctionProtoType *Func = Method->getType()->getAs<FunctionProtoType>();
1041   if (Method->isStatic())
1042     return cast_or_null<llvm::DISubroutineType>(
1043         getOrCreateType(QualType(Func, 0), Unit));
1044   return getOrCreateInstanceMethodType(Method->getThisType(CGM.getContext()),
1045                                        Func, Unit);
1046 }
1047 
1048 llvm::DISubroutineType *CGDebugInfo::getOrCreateInstanceMethodType(
1049     QualType ThisPtr, const FunctionProtoType *Func, llvm::DIFile *Unit) {
1050   // Add "this" pointer.
1051   llvm::DITypeRefArray Args(
1052       cast<llvm::DISubroutineType>(getOrCreateType(QualType(Func, 0), Unit))
1053           ->getTypeArray());
1054   assert(Args.size() && "Invalid number of arguments!");
1055 
1056   SmallVector<llvm::Metadata *, 16> Elts;
1057 
1058   // First element is always return type. For 'void' functions it is NULL.
1059   Elts.push_back(Args[0]);
1060 
1061   // "this" pointer is always first argument.
1062   const CXXRecordDecl *RD = ThisPtr->getPointeeCXXRecordDecl();
1063   if (isa<ClassTemplateSpecializationDecl>(RD)) {
1064     // Create pointer type directly in this case.
1065     const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
1066     QualType PointeeTy = ThisPtrTy->getPointeeType();
1067     unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
1068     uint64_t Size = CGM.getTarget().getPointerWidth(AS);
1069     uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
1070     llvm::DIType *PointeeType = getOrCreateType(PointeeTy, Unit);
1071     llvm::DIType *ThisPtrType =
1072         DBuilder.createPointerType(PointeeType, Size, Align);
1073     TypeCache[ThisPtr.getAsOpaquePtr()].reset(ThisPtrType);
1074     // TODO: This and the artificial type below are misleading, the
1075     // types aren't artificial the argument is, but the current
1076     // metadata doesn't represent that.
1077     ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType);
1078     Elts.push_back(ThisPtrType);
1079   } else {
1080     llvm::DIType *ThisPtrType = getOrCreateType(ThisPtr, Unit);
1081     TypeCache[ThisPtr.getAsOpaquePtr()].reset(ThisPtrType);
1082     ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType);
1083     Elts.push_back(ThisPtrType);
1084   }
1085 
1086   // Copy rest of the arguments.
1087   for (unsigned i = 1, e = Args.size(); i != e; ++i)
1088     Elts.push_back(Args[i]);
1089 
1090   llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(Elts);
1091 
1092   unsigned Flags = 0;
1093   if (Func->getExtProtoInfo().RefQualifier == RQ_LValue)
1094     Flags |= llvm::DINode::FlagLValueReference;
1095   if (Func->getExtProtoInfo().RefQualifier == RQ_RValue)
1096     Flags |= llvm::DINode::FlagRValueReference;
1097 
1098   return DBuilder.createSubroutineType(EltTypeArray, Flags);
1099 }
1100 
1101 /// isFunctionLocalClass - Return true if CXXRecordDecl is defined
1102 /// inside a function.
1103 static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
1104   if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
1105     return isFunctionLocalClass(NRD);
1106   if (isa<FunctionDecl>(RD->getDeclContext()))
1107     return true;
1108   return false;
1109 }
1110 
1111 llvm::DISubprogram *CGDebugInfo::CreateCXXMemberFunction(
1112     const CXXMethodDecl *Method, llvm::DIFile *Unit, llvm::DIType *RecordTy) {
1113   bool IsCtorOrDtor =
1114       isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
1115 
1116   StringRef MethodName = getFunctionName(Method);
1117   llvm::DISubroutineType *MethodTy = getOrCreateMethodType(Method, Unit);
1118 
1119   // Since a single ctor/dtor corresponds to multiple functions, it doesn't
1120   // make sense to give a single ctor/dtor a linkage name.
1121   StringRef MethodLinkageName;
1122   if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
1123     MethodLinkageName = CGM.getMangledName(Method);
1124 
1125   // Get the location for the method.
1126   llvm::DIFile *MethodDefUnit = nullptr;
1127   unsigned MethodLine = 0;
1128   if (!Method->isImplicit()) {
1129     MethodDefUnit = getOrCreateFile(Method->getLocation());
1130     MethodLine = getLineNumber(Method->getLocation());
1131   }
1132 
1133   // Collect virtual method info.
1134   llvm::DIType *ContainingType = nullptr;
1135   unsigned Virtuality = 0;
1136   unsigned VIndex = 0;
1137 
1138   if (Method->isVirtual()) {
1139     if (Method->isPure())
1140       Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
1141     else
1142       Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
1143 
1144     // It doesn't make sense to give a virtual destructor a vtable index,
1145     // since a single destructor has two entries in the vtable.
1146     // FIXME: Add proper support for debug info for virtual calls in
1147     // the Microsoft ABI, where we may use multiple vptrs to make a vftable
1148     // lookup if we have multiple or virtual inheritance.
1149     if (!isa<CXXDestructorDecl>(Method) &&
1150         !CGM.getTarget().getCXXABI().isMicrosoft())
1151       VIndex = CGM.getItaniumVTableContext().getMethodVTableIndex(Method);
1152     ContainingType = RecordTy;
1153   }
1154 
1155   unsigned Flags = 0;
1156   if (Method->isImplicit())
1157     Flags |= llvm::DINode::FlagArtificial;
1158   Flags |= getAccessFlag(Method->getAccess(), Method->getParent());
1159   if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
1160     if (CXXC->isExplicit())
1161       Flags |= llvm::DINode::FlagExplicit;
1162   } else if (const CXXConversionDecl *CXXC =
1163                  dyn_cast<CXXConversionDecl>(Method)) {
1164     if (CXXC->isExplicit())
1165       Flags |= llvm::DINode::FlagExplicit;
1166   }
1167   if (Method->hasPrototype())
1168     Flags |= llvm::DINode::FlagPrototyped;
1169   if (Method->getRefQualifier() == RQ_LValue)
1170     Flags |= llvm::DINode::FlagLValueReference;
1171   if (Method->getRefQualifier() == RQ_RValue)
1172     Flags |= llvm::DINode::FlagRValueReference;
1173 
1174   llvm::DINodeArray TParamsArray = CollectFunctionTemplateParams(Method, Unit);
1175   llvm::DISubprogram *SP = DBuilder.createMethod(
1176       RecordTy, MethodName, MethodLinkageName, MethodDefUnit, MethodLine,
1177       MethodTy, /*isLocalToUnit=*/false,
1178       /* isDefinition=*/false, Virtuality, VIndex, ContainingType, Flags,
1179       CGM.getLangOpts().Optimize, TParamsArray.get());
1180 
1181   SPCache[Method->getCanonicalDecl()].reset(SP);
1182 
1183   return SP;
1184 }
1185 
1186 void CGDebugInfo::CollectCXXMemberFunctions(
1187     const CXXRecordDecl *RD, llvm::DIFile *Unit,
1188     SmallVectorImpl<llvm::Metadata *> &EltTys, llvm::DIType *RecordTy) {
1189 
1190   // Since we want more than just the individual member decls if we
1191   // have templated functions iterate over every declaration to gather
1192   // the functions.
1193   for (const auto *I : RD->decls()) {
1194     const auto *Method = dyn_cast<CXXMethodDecl>(I);
1195     // If the member is implicit, don't add it to the member list. This avoids
1196     // the member being added to type units by LLVM, while still allowing it
1197     // to be emitted into the type declaration/reference inside the compile
1198     // unit.
1199     // Ditto 'nodebug' methods, for consistency with CodeGenFunction.cpp.
1200     // FIXME: Handle Using(Shadow?)Decls here to create
1201     // DW_TAG_imported_declarations inside the class for base decls brought into
1202     // derived classes. GDB doesn't seem to notice/leverage these when I tried
1203     // it, so I'm not rushing to fix this. (GCC seems to produce them, if
1204     // referenced)
1205     if (!Method || Method->isImplicit() || Method->hasAttr<NoDebugAttr>())
1206       continue;
1207 
1208     if (Method->getType()->getAs<FunctionProtoType>()->getContainedAutoType())
1209       continue;
1210 
1211     // Reuse the existing member function declaration if it exists.
1212     // It may be associated with the declaration of the type & should be
1213     // reused as we're building the definition.
1214     //
1215     // This situation can arise in the vtable-based debug info reduction where
1216     // implicit members are emitted in a non-vtable TU.
1217     auto MI = SPCache.find(Method->getCanonicalDecl());
1218     EltTys.push_back(MI == SPCache.end()
1219                          ? CreateCXXMemberFunction(Method, Unit, RecordTy)
1220                          : static_cast<llvm::Metadata *>(MI->second));
1221   }
1222 }
1223 
1224 void CGDebugInfo::CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile *Unit,
1225                                   SmallVectorImpl<llvm::Metadata *> &EltTys,
1226                                   llvm::DIType *RecordTy) {
1227   const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1228   for (const auto &BI : RD->bases()) {
1229     unsigned BFlags = 0;
1230     uint64_t BaseOffset;
1231 
1232     const CXXRecordDecl *Base =
1233         cast<CXXRecordDecl>(BI.getType()->getAs<RecordType>()->getDecl());
1234 
1235     if (BI.isVirtual()) {
1236       if (CGM.getTarget().getCXXABI().isItaniumFamily()) {
1237         // virtual base offset offset is -ve. The code generator emits dwarf
1238         // expression where it expects +ve number.
1239         BaseOffset = 0 - CGM.getItaniumVTableContext()
1240                              .getVirtualBaseOffsetOffset(RD, Base)
1241                              .getQuantity();
1242       } else {
1243         // In the MS ABI, store the vbtable offset, which is analogous to the
1244         // vbase offset offset in Itanium.
1245         BaseOffset =
1246             4 * CGM.getMicrosoftVTableContext().getVBTableIndex(RD, Base);
1247       }
1248       BFlags = llvm::DINode::FlagVirtual;
1249     } else
1250       BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base));
1251     // FIXME: Inconsistent units for BaseOffset. It is in bytes when
1252     // BI->isVirtual() and bits when not.
1253 
1254     BFlags |= getAccessFlag(BI.getAccessSpecifier(), RD);
1255     llvm::DIType *DTy = DBuilder.createInheritance(
1256         RecordTy, getOrCreateType(BI.getType(), Unit), BaseOffset, BFlags);
1257     EltTys.push_back(DTy);
1258   }
1259 }
1260 
1261 llvm::DINodeArray
1262 CGDebugInfo::CollectTemplateParams(const TemplateParameterList *TPList,
1263                                    ArrayRef<TemplateArgument> TAList,
1264                                    llvm::DIFile *Unit) {
1265   SmallVector<llvm::Metadata *, 16> TemplateParams;
1266   for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
1267     const TemplateArgument &TA = TAList[i];
1268     StringRef Name;
1269     if (TPList)
1270       Name = TPList->getParam(i)->getName();
1271     switch (TA.getKind()) {
1272     case TemplateArgument::Type: {
1273       llvm::DIType *TTy = getOrCreateType(TA.getAsType(), Unit);
1274       TemplateParams.push_back(
1275           DBuilder.createTemplateTypeParameter(TheCU, Name, TTy));
1276     } break;
1277     case TemplateArgument::Integral: {
1278       llvm::DIType *TTy = getOrCreateType(TA.getIntegralType(), Unit);
1279       TemplateParams.push_back(DBuilder.createTemplateValueParameter(
1280           TheCU, Name, TTy,
1281           llvm::ConstantInt::get(CGM.getLLVMContext(), TA.getAsIntegral())));
1282     } break;
1283     case TemplateArgument::Declaration: {
1284       const ValueDecl *D = TA.getAsDecl();
1285       QualType T = TA.getParamTypeForDecl().getDesugaredType(CGM.getContext());
1286       llvm::DIType *TTy = getOrCreateType(T, Unit);
1287       llvm::Constant *V = nullptr;
1288       const CXXMethodDecl *MD;
1289       // Variable pointer template parameters have a value that is the address
1290       // of the variable.
1291       if (const auto *VD = dyn_cast<VarDecl>(D))
1292         V = CGM.GetAddrOfGlobalVar(VD);
1293       // Member function pointers have special support for building them, though
1294       // this is currently unsupported in LLVM CodeGen.
1295       else if ((MD = dyn_cast<CXXMethodDecl>(D)) && MD->isInstance())
1296         V = CGM.getCXXABI().EmitMemberFunctionPointer(MD);
1297       else if (const auto *FD = dyn_cast<FunctionDecl>(D))
1298         V = CGM.GetAddrOfFunction(FD);
1299       // Member data pointers have special handling too to compute the fixed
1300       // offset within the object.
1301       else if (const auto *MPT = dyn_cast<MemberPointerType>(T.getTypePtr())) {
1302         // These five lines (& possibly the above member function pointer
1303         // handling) might be able to be refactored to use similar code in
1304         // CodeGenModule::getMemberPointerConstant
1305         uint64_t fieldOffset = CGM.getContext().getFieldOffset(D);
1306         CharUnits chars =
1307             CGM.getContext().toCharUnitsFromBits((int64_t)fieldOffset);
1308         V = CGM.getCXXABI().EmitMemberDataPointer(MPT, chars);
1309       }
1310       TemplateParams.push_back(DBuilder.createTemplateValueParameter(
1311           TheCU, Name, TTy,
1312           cast_or_null<llvm::Constant>(V->stripPointerCasts())));
1313     } break;
1314     case TemplateArgument::NullPtr: {
1315       QualType T = TA.getNullPtrType();
1316       llvm::DIType *TTy = getOrCreateType(T, Unit);
1317       llvm::Constant *V = nullptr;
1318       // Special case member data pointer null values since they're actually -1
1319       // instead of zero.
1320       if (const MemberPointerType *MPT =
1321               dyn_cast<MemberPointerType>(T.getTypePtr()))
1322         // But treat member function pointers as simple zero integers because
1323         // it's easier than having a special case in LLVM's CodeGen. If LLVM
1324         // CodeGen grows handling for values of non-null member function
1325         // pointers then perhaps we could remove this special case and rely on
1326         // EmitNullMemberPointer for member function pointers.
1327         if (MPT->isMemberDataPointer())
1328           V = CGM.getCXXABI().EmitNullMemberPointer(MPT);
1329       if (!V)
1330         V = llvm::ConstantInt::get(CGM.Int8Ty, 0);
1331       TemplateParams.push_back(DBuilder.createTemplateValueParameter(
1332           TheCU, Name, TTy, cast<llvm::Constant>(V)));
1333     } break;
1334     case TemplateArgument::Template:
1335       TemplateParams.push_back(DBuilder.createTemplateTemplateParameter(
1336           TheCU, Name, nullptr,
1337           TA.getAsTemplate().getAsTemplateDecl()->getQualifiedNameAsString()));
1338       break;
1339     case TemplateArgument::Pack:
1340       TemplateParams.push_back(DBuilder.createTemplateParameterPack(
1341           TheCU, Name, nullptr,
1342           CollectTemplateParams(nullptr, TA.getPackAsArray(), Unit)));
1343       break;
1344     case TemplateArgument::Expression: {
1345       const Expr *E = TA.getAsExpr();
1346       QualType T = E->getType();
1347       if (E->isGLValue())
1348         T = CGM.getContext().getLValueReferenceType(T);
1349       llvm::Constant *V = CGM.EmitConstantExpr(E, T);
1350       assert(V && "Expression in template argument isn't constant");
1351       llvm::DIType *TTy = getOrCreateType(T, Unit);
1352       TemplateParams.push_back(DBuilder.createTemplateValueParameter(
1353           TheCU, Name, TTy, cast<llvm::Constant>(V->stripPointerCasts())));
1354     } break;
1355     // And the following should never occur:
1356     case TemplateArgument::TemplateExpansion:
1357     case TemplateArgument::Null:
1358       llvm_unreachable(
1359           "These argument types shouldn't exist in concrete types");
1360     }
1361   }
1362   return DBuilder.getOrCreateArray(TemplateParams);
1363 }
1364 
1365 llvm::DINodeArray
1366 CGDebugInfo::CollectFunctionTemplateParams(const FunctionDecl *FD,
1367                                            llvm::DIFile *Unit) {
1368   if (FD->getTemplatedKind() ==
1369       FunctionDecl::TK_FunctionTemplateSpecialization) {
1370     const TemplateParameterList *TList = FD->getTemplateSpecializationInfo()
1371                                              ->getTemplate()
1372                                              ->getTemplateParameters();
1373     return CollectTemplateParams(
1374         TList, FD->getTemplateSpecializationArgs()->asArray(), Unit);
1375   }
1376   return llvm::DINodeArray();
1377 }
1378 
1379 llvm::DINodeArray CGDebugInfo::CollectCXXTemplateParams(
1380     const ClassTemplateSpecializationDecl *TSpecial, llvm::DIFile *Unit) {
1381   // Always get the full list of parameters, not just the ones from
1382   // the specialization.
1383   TemplateParameterList *TPList =
1384       TSpecial->getSpecializedTemplate()->getTemplateParameters();
1385   const TemplateArgumentList &TAList = TSpecial->getTemplateArgs();
1386   return CollectTemplateParams(TPList, TAList.asArray(), Unit);
1387 }
1388 
1389 llvm::DIType *CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile *Unit) {
1390   if (VTablePtrType)
1391     return VTablePtrType;
1392 
1393   ASTContext &Context = CGM.getContext();
1394 
1395   /* Function type */
1396   llvm::Metadata *STy = getOrCreateType(Context.IntTy, Unit);
1397   llvm::DITypeRefArray SElements = DBuilder.getOrCreateTypeArray(STy);
1398   llvm::DIType *SubTy = DBuilder.createSubroutineType(SElements);
1399   unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
1400   llvm::DIType *vtbl_ptr_type =
1401       DBuilder.createPointerType(SubTy, Size, 0, "__vtbl_ptr_type");
1402   VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
1403   return VTablePtrType;
1404 }
1405 
1406 StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
1407   // Copy the gdb compatible name on the side and use its reference.
1408   return internString("_vptr$", RD->getNameAsString());
1409 }
1410 
1411 void CGDebugInfo::CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile *Unit,
1412                                     SmallVectorImpl<llvm::Metadata *> &EltTys) {
1413   const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1414 
1415   // If there is a primary base then it will hold vtable info.
1416   if (RL.getPrimaryBase())
1417     return;
1418 
1419   // If this class is not dynamic then there is not any vtable info to collect.
1420   if (!RD->isDynamicClass())
1421     return;
1422 
1423   unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1424   llvm::DIType *VPTR = DBuilder.createMemberType(
1425       Unit, getVTableName(RD), Unit, 0, Size, 0, 0,
1426       llvm::DINode::FlagArtificial, getOrCreateVTablePtrType(Unit));
1427   EltTys.push_back(VPTR);
1428 }
1429 
1430 llvm::DIType *CGDebugInfo::getOrCreateRecordType(QualType RTy,
1431                                                  SourceLocation Loc) {
1432   assert(DebugKind >= codegenoptions::LimitedDebugInfo);
1433   llvm::DIType *T = getOrCreateType(RTy, getOrCreateFile(Loc));
1434   return T;
1435 }
1436 
1437 llvm::DIType *CGDebugInfo::getOrCreateInterfaceType(QualType D,
1438                                                     SourceLocation Loc) {
1439   return getOrCreateStandaloneType(D, Loc);
1440 }
1441 
1442 llvm::DIType *CGDebugInfo::getOrCreateStandaloneType(QualType D,
1443                                                      SourceLocation Loc) {
1444   assert(DebugKind >= codegenoptions::LimitedDebugInfo);
1445   assert(!D.isNull() && "null type");
1446   llvm::DIType *T = getOrCreateType(D, getOrCreateFile(Loc));
1447   assert(T && "could not create debug info for type");
1448 
1449   // Composite types with UIDs were already retained by DIBuilder
1450   // because they are only referenced by name in the IR.
1451   if (auto *CTy = dyn_cast<llvm::DICompositeType>(T))
1452     if (!CTy->getIdentifier().empty())
1453       return T;
1454   RetainedTypes.push_back(D.getAsOpaquePtr());
1455   return T;
1456 }
1457 
1458 void CGDebugInfo::completeType(const EnumDecl *ED) {
1459   if (DebugKind <= codegenoptions::DebugLineTablesOnly)
1460     return;
1461   QualType Ty = CGM.getContext().getEnumType(ED);
1462   void *TyPtr = Ty.getAsOpaquePtr();
1463   auto I = TypeCache.find(TyPtr);
1464   if (I == TypeCache.end() || !cast<llvm::DIType>(I->second)->isForwardDecl())
1465     return;
1466   llvm::DIType *Res = CreateTypeDefinition(Ty->castAs<EnumType>());
1467   assert(!Res->isForwardDecl());
1468   TypeCache[TyPtr].reset(Res);
1469 }
1470 
1471 void CGDebugInfo::completeType(const RecordDecl *RD) {
1472   if (DebugKind > codegenoptions::LimitedDebugInfo ||
1473       !CGM.getLangOpts().CPlusPlus)
1474     completeRequiredType(RD);
1475 }
1476 
1477 void CGDebugInfo::completeRequiredType(const RecordDecl *RD) {
1478   if (DebugKind <= codegenoptions::DebugLineTablesOnly)
1479     return;
1480 
1481   if (const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD))
1482     if (CXXDecl->isDynamicClass())
1483       return;
1484 
1485   if (DebugTypeExtRefs && RD->isFromASTFile())
1486     return;
1487 
1488   QualType Ty = CGM.getContext().getRecordType(RD);
1489   llvm::DIType *T = getTypeOrNull(Ty);
1490   if (T && T->isForwardDecl())
1491     completeClassData(RD);
1492 }
1493 
1494 void CGDebugInfo::completeClassData(const RecordDecl *RD) {
1495   if (DebugKind <= codegenoptions::DebugLineTablesOnly)
1496     return;
1497   QualType Ty = CGM.getContext().getRecordType(RD);
1498   void *TyPtr = Ty.getAsOpaquePtr();
1499   auto I = TypeCache.find(TyPtr);
1500   if (I != TypeCache.end() && !cast<llvm::DIType>(I->second)->isForwardDecl())
1501     return;
1502   llvm::DIType *Res = CreateTypeDefinition(Ty->castAs<RecordType>());
1503   assert(!Res->isForwardDecl());
1504   TypeCache[TyPtr].reset(Res);
1505 }
1506 
1507 static bool hasExplicitMemberDefinition(CXXRecordDecl::method_iterator I,
1508                                         CXXRecordDecl::method_iterator End) {
1509   for (; I != End; ++I)
1510     if (FunctionDecl *Tmpl = I->getInstantiatedFromMemberFunction())
1511       if (!Tmpl->isImplicit() && Tmpl->isThisDeclarationADefinition() &&
1512           !I->getMemberSpecializationInfo()->isExplicitSpecialization())
1513         return true;
1514   return false;
1515 }
1516 
1517 static bool shouldOmitDefinition(codegenoptions::DebugInfoKind DebugKind,
1518                                  bool DebugTypeExtRefs, const RecordDecl *RD,
1519                                  const LangOptions &LangOpts) {
1520   // Does the type exist in an imported clang module?
1521   if (DebugTypeExtRefs && RD->isFromASTFile() && RD->getDefinition() &&
1522       (RD->isExternallyVisible() || !RD->getName().empty()))
1523     return true;
1524 
1525   if (DebugKind > codegenoptions::LimitedDebugInfo)
1526     return false;
1527 
1528   if (!LangOpts.CPlusPlus)
1529     return false;
1530 
1531   if (!RD->isCompleteDefinitionRequired())
1532     return true;
1533 
1534   const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
1535 
1536   if (!CXXDecl)
1537     return false;
1538 
1539   if (CXXDecl->hasDefinition() && CXXDecl->isDynamicClass())
1540     return true;
1541 
1542   TemplateSpecializationKind Spec = TSK_Undeclared;
1543   if (const ClassTemplateSpecializationDecl *SD =
1544           dyn_cast<ClassTemplateSpecializationDecl>(RD))
1545     Spec = SD->getSpecializationKind();
1546 
1547   if (Spec == TSK_ExplicitInstantiationDeclaration &&
1548       hasExplicitMemberDefinition(CXXDecl->method_begin(),
1549                                   CXXDecl->method_end()))
1550     return true;
1551 
1552   return false;
1553 }
1554 
1555 llvm::DIType *CGDebugInfo::CreateType(const RecordType *Ty) {
1556   RecordDecl *RD = Ty->getDecl();
1557   llvm::DIType *T = cast_or_null<llvm::DIType>(getTypeOrNull(QualType(Ty, 0)));
1558   if (T || shouldOmitDefinition(DebugKind, DebugTypeExtRefs, RD,
1559                                 CGM.getLangOpts())) {
1560     if (!T)
1561       T = getOrCreateRecordFwdDecl(Ty, getDeclContextDescriptor(RD));
1562     return T;
1563   }
1564 
1565   return CreateTypeDefinition(Ty);
1566 }
1567 
1568 llvm::DIType *CGDebugInfo::CreateTypeDefinition(const RecordType *Ty) {
1569   RecordDecl *RD = Ty->getDecl();
1570 
1571   // Get overall information about the record type for the debug info.
1572   llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation());
1573 
1574   // Records and classes and unions can all be recursive.  To handle them, we
1575   // first generate a debug descriptor for the struct as a forward declaration.
1576   // Then (if it is a definition) we go through and get debug info for all of
1577   // its members.  Finally, we create a descriptor for the complete type (which
1578   // may refer to the forward decl if the struct is recursive) and replace all
1579   // uses of the forward declaration with the final definition.
1580   llvm::DICompositeType *FwdDecl = getOrCreateLimitedType(Ty, DefUnit);
1581 
1582   const RecordDecl *D = RD->getDefinition();
1583   if (!D || !D->isCompleteDefinition())
1584     return FwdDecl;
1585 
1586   if (const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD))
1587     CollectContainingType(CXXDecl, FwdDecl);
1588 
1589   // Push the struct on region stack.
1590   LexicalBlockStack.emplace_back(&*FwdDecl);
1591   RegionMap[Ty->getDecl()].reset(FwdDecl);
1592 
1593   // Convert all the elements.
1594   SmallVector<llvm::Metadata *, 16> EltTys;
1595   // what about nested types?
1596 
1597   // Note: The split of CXXDecl information here is intentional, the
1598   // gdb tests will depend on a certain ordering at printout. The debug
1599   // information offsets are still correct if we merge them all together
1600   // though.
1601   const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
1602   if (CXXDecl) {
1603     CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl);
1604     CollectVTableInfo(CXXDecl, DefUnit, EltTys);
1605   }
1606 
1607   // Collect data fields (including static variables and any initializers).
1608   CollectRecordFields(RD, DefUnit, EltTys, FwdDecl);
1609   if (CXXDecl)
1610     CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl);
1611 
1612   LexicalBlockStack.pop_back();
1613   RegionMap.erase(Ty->getDecl());
1614 
1615   llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys);
1616   DBuilder.replaceArrays(FwdDecl, Elements);
1617 
1618   if (FwdDecl->isTemporary())
1619     FwdDecl =
1620         llvm::MDNode::replaceWithPermanent(llvm::TempDICompositeType(FwdDecl));
1621 
1622   RegionMap[Ty->getDecl()].reset(FwdDecl);
1623   return FwdDecl;
1624 }
1625 
1626 llvm::DIType *CGDebugInfo::CreateType(const ObjCObjectType *Ty,
1627                                       llvm::DIFile *Unit) {
1628   // Ignore protocols.
1629   return getOrCreateType(Ty->getBaseType(), Unit);
1630 }
1631 
1632 /// \return true if Getter has the default name for the property PD.
1633 static bool hasDefaultGetterName(const ObjCPropertyDecl *PD,
1634                                  const ObjCMethodDecl *Getter) {
1635   assert(PD);
1636   if (!Getter)
1637     return true;
1638 
1639   assert(Getter->getDeclName().isObjCZeroArgSelector());
1640   return PD->getName() ==
1641          Getter->getDeclName().getObjCSelector().getNameForSlot(0);
1642 }
1643 
1644 /// \return true if Setter has the default name for the property PD.
1645 static bool hasDefaultSetterName(const ObjCPropertyDecl *PD,
1646                                  const ObjCMethodDecl *Setter) {
1647   assert(PD);
1648   if (!Setter)
1649     return true;
1650 
1651   assert(Setter->getDeclName().isObjCOneArgSelector());
1652   return SelectorTable::constructSetterName(PD->getName()) ==
1653          Setter->getDeclName().getObjCSelector().getNameForSlot(0);
1654 }
1655 
1656 llvm::DIType *CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
1657                                       llvm::DIFile *Unit) {
1658   ObjCInterfaceDecl *ID = Ty->getDecl();
1659   if (!ID)
1660     return nullptr;
1661 
1662   // Return a forward declaration if this type was imported from a clang module.
1663   if (DebugTypeExtRefs && ID->isFromASTFile() && ID->getDefinition())
1664     return DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
1665                                       ID->getName(),
1666                                       getDeclContextDescriptor(ID), Unit, 0);
1667 
1668   // Get overall information about the record type for the debug info.
1669   llvm::DIFile *DefUnit = getOrCreateFile(ID->getLocation());
1670   unsigned Line = getLineNumber(ID->getLocation());
1671   auto RuntimeLang =
1672       static_cast<llvm::dwarf::SourceLanguage>(TheCU->getSourceLanguage());
1673 
1674   // If this is just a forward declaration return a special forward-declaration
1675   // debug type since we won't be able to lay out the entire type.
1676   ObjCInterfaceDecl *Def = ID->getDefinition();
1677   if (!Def || !Def->getImplementation()) {
1678     llvm::DIScope *Mod = getParentModuleOrNull(ID);
1679     llvm::DIType *FwdDecl = DBuilder.createReplaceableCompositeType(
1680         llvm::dwarf::DW_TAG_structure_type, ID->getName(), Mod ? Mod : TheCU,
1681         DefUnit, Line, RuntimeLang);
1682     ObjCInterfaceCache.push_back(ObjCInterfaceCacheEntry(Ty, FwdDecl, Unit));
1683     return FwdDecl;
1684   }
1685 
1686   return CreateTypeDefinition(Ty, Unit);
1687 }
1688 
1689 llvm::DIModule *
1690 CGDebugInfo::getOrCreateModuleRef(ExternalASTSource::ASTSourceDescriptor Mod,
1691                                   bool CreateSkeletonCU) {
1692   // Use the Module pointer as the key into the cache. This is a
1693   // nullptr if the "Module" is a PCH, which is safe because we don't
1694   // support chained PCH debug info, so there can only be a single PCH.
1695   const Module *M = Mod.getModuleOrNull();
1696   auto ModRef = ModuleCache.find(M);
1697   if (ModRef != ModuleCache.end())
1698     return cast<llvm::DIModule>(ModRef->second);
1699 
1700   // Macro definitions that were defined with "-D" on the command line.
1701   SmallString<128> ConfigMacros;
1702   {
1703     llvm::raw_svector_ostream OS(ConfigMacros);
1704     const auto &PPOpts = CGM.getPreprocessorOpts();
1705     unsigned I = 0;
1706     // Translate the macro definitions back into a commmand line.
1707     for (auto &M : PPOpts.Macros) {
1708       if (++I > 1)
1709         OS << " ";
1710       const std::string &Macro = M.first;
1711       bool Undef = M.second;
1712       OS << "\"-" << (Undef ? 'U' : 'D');
1713       for (char c : Macro)
1714         switch (c) {
1715         case '\\' : OS << "\\\\"; break;
1716         case '"'  : OS << "\\\""; break;
1717         default: OS << c;
1718         }
1719       OS << '\"';
1720     }
1721   }
1722 
1723   bool IsRootModule = M ? !M->Parent : true;
1724   if (CreateSkeletonCU && IsRootModule) {
1725     // PCH files don't have a signature field in the control block,
1726     // but LLVM detects skeleton CUs by looking for a non-zero DWO id.
1727     uint64_t Signature = Mod.getSignature() ? Mod.getSignature() : ~1ULL;
1728     llvm::DIBuilder DIB(CGM.getModule());
1729     DIB.createCompileUnit(TheCU->getSourceLanguage(), Mod.getModuleName(),
1730                           Mod.getPath(), TheCU->getProducer(), true,
1731                           StringRef(), 0, Mod.getASTFile(),
1732                           llvm::DICompileUnit::FullDebug, Signature);
1733     DIB.finalize();
1734   }
1735   llvm::DIModule *Parent =
1736       IsRootModule ? nullptr
1737                    : getOrCreateModuleRef(
1738                          ExternalASTSource::ASTSourceDescriptor(*M->Parent),
1739                          CreateSkeletonCU);
1740   llvm::DIModule *DIMod =
1741       DBuilder.createModule(Parent, Mod.getModuleName(), ConfigMacros,
1742                             Mod.getPath(), CGM.getHeaderSearchOpts().Sysroot);
1743   ModuleCache[M].reset(DIMod);
1744   return DIMod;
1745 }
1746 
1747 llvm::DIType *CGDebugInfo::CreateTypeDefinition(const ObjCInterfaceType *Ty,
1748                                                 llvm::DIFile *Unit) {
1749   ObjCInterfaceDecl *ID = Ty->getDecl();
1750   llvm::DIFile *DefUnit = getOrCreateFile(ID->getLocation());
1751   unsigned Line = getLineNumber(ID->getLocation());
1752   unsigned RuntimeLang = TheCU->getSourceLanguage();
1753 
1754   // Bit size, align and offset of the type.
1755   uint64_t Size = CGM.getContext().getTypeSize(Ty);
1756   uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1757 
1758   unsigned Flags = 0;
1759   if (ID->getImplementation())
1760     Flags |= llvm::DINode::FlagObjcClassComplete;
1761 
1762   llvm::DIScope *Mod = getParentModuleOrNull(ID);
1763   llvm::DICompositeType *RealDecl = DBuilder.createStructType(
1764       Mod ? Mod : Unit, ID->getName(), DefUnit, Line, Size, Align, Flags,
1765       nullptr, llvm::DINodeArray(), RuntimeLang);
1766 
1767   QualType QTy(Ty, 0);
1768   TypeCache[QTy.getAsOpaquePtr()].reset(RealDecl);
1769 
1770   // Push the struct on region stack.
1771   LexicalBlockStack.emplace_back(RealDecl);
1772   RegionMap[Ty->getDecl()].reset(RealDecl);
1773 
1774   // Convert all the elements.
1775   SmallVector<llvm::Metadata *, 16> EltTys;
1776 
1777   ObjCInterfaceDecl *SClass = ID->getSuperClass();
1778   if (SClass) {
1779     llvm::DIType *SClassTy =
1780         getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
1781     if (!SClassTy)
1782       return nullptr;
1783 
1784     llvm::DIType *InhTag = DBuilder.createInheritance(RealDecl, SClassTy, 0, 0);
1785     EltTys.push_back(InhTag);
1786   }
1787 
1788   // Create entries for all of the properties.
1789   auto AddProperty = [&](const ObjCPropertyDecl *PD) {
1790     SourceLocation Loc = PD->getLocation();
1791     llvm::DIFile *PUnit = getOrCreateFile(Loc);
1792     unsigned PLine = getLineNumber(Loc);
1793     ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
1794     ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
1795     llvm::MDNode *PropertyNode = DBuilder.createObjCProperty(
1796         PD->getName(), PUnit, PLine,
1797         hasDefaultGetterName(PD, Getter) ? ""
1798                                          : getSelectorName(PD->getGetterName()),
1799         hasDefaultSetterName(PD, Setter) ? ""
1800                                          : getSelectorName(PD->getSetterName()),
1801         PD->getPropertyAttributes(), getOrCreateType(PD->getType(), PUnit));
1802     EltTys.push_back(PropertyNode);
1803   };
1804   {
1805     llvm::SmallPtrSet<const IdentifierInfo*, 16> PropertySet;
1806     for (const ObjCCategoryDecl *ClassExt : ID->known_extensions())
1807       for (auto *PD : ClassExt->properties()) {
1808         PropertySet.insert(PD->getIdentifier());
1809         AddProperty(PD);
1810       }
1811     for (const auto *PD : ID->properties()) {
1812       // Don't emit duplicate metadata for properties that were already in a
1813       // class extension.
1814       if (!PropertySet.insert(PD->getIdentifier()).second)
1815         continue;
1816       AddProperty(PD);
1817     }
1818   }
1819 
1820   const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
1821   unsigned FieldNo = 0;
1822   for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
1823        Field = Field->getNextIvar(), ++FieldNo) {
1824     llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit);
1825     if (!FieldTy)
1826       return nullptr;
1827 
1828     StringRef FieldName = Field->getName();
1829 
1830     // Ignore unnamed fields.
1831     if (FieldName.empty())
1832       continue;
1833 
1834     // Get the location for the field.
1835     llvm::DIFile *FieldDefUnit = getOrCreateFile(Field->getLocation());
1836     unsigned FieldLine = getLineNumber(Field->getLocation());
1837     QualType FType = Field->getType();
1838     uint64_t FieldSize = 0;
1839     unsigned FieldAlign = 0;
1840 
1841     if (!FType->isIncompleteArrayType()) {
1842 
1843       // Bit size, align and offset of the type.
1844       FieldSize = Field->isBitField()
1845                       ? Field->getBitWidthValue(CGM.getContext())
1846                       : CGM.getContext().getTypeSize(FType);
1847       FieldAlign = CGM.getContext().getTypeAlign(FType);
1848     }
1849 
1850     uint64_t FieldOffset;
1851     if (CGM.getLangOpts().ObjCRuntime.isNonFragile()) {
1852       // We don't know the runtime offset of an ivar if we're using the
1853       // non-fragile ABI.  For bitfields, use the bit offset into the first
1854       // byte of storage of the bitfield.  For other fields, use zero.
1855       if (Field->isBitField()) {
1856         FieldOffset =
1857             CGM.getObjCRuntime().ComputeBitfieldBitOffset(CGM, ID, Field);
1858         FieldOffset %= CGM.getContext().getCharWidth();
1859       } else {
1860         FieldOffset = 0;
1861       }
1862     } else {
1863       FieldOffset = RL.getFieldOffset(FieldNo);
1864     }
1865 
1866     unsigned Flags = 0;
1867     if (Field->getAccessControl() == ObjCIvarDecl::Protected)
1868       Flags = llvm::DINode::FlagProtected;
1869     else if (Field->getAccessControl() == ObjCIvarDecl::Private)
1870       Flags = llvm::DINode::FlagPrivate;
1871     else if (Field->getAccessControl() == ObjCIvarDecl::Public)
1872       Flags = llvm::DINode::FlagPublic;
1873 
1874     llvm::MDNode *PropertyNode = nullptr;
1875     if (ObjCImplementationDecl *ImpD = ID->getImplementation()) {
1876       if (ObjCPropertyImplDecl *PImpD =
1877               ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) {
1878         if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) {
1879           SourceLocation Loc = PD->getLocation();
1880           llvm::DIFile *PUnit = getOrCreateFile(Loc);
1881           unsigned PLine = getLineNumber(Loc);
1882           ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
1883           ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
1884           PropertyNode = DBuilder.createObjCProperty(
1885               PD->getName(), PUnit, PLine,
1886               hasDefaultGetterName(PD, Getter) ? "" : getSelectorName(
1887                                                           PD->getGetterName()),
1888               hasDefaultSetterName(PD, Setter) ? "" : getSelectorName(
1889                                                           PD->getSetterName()),
1890               PD->getPropertyAttributes(),
1891               getOrCreateType(PD->getType(), PUnit));
1892         }
1893       }
1894     }
1895     FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit, FieldLine,
1896                                       FieldSize, FieldAlign, FieldOffset, Flags,
1897                                       FieldTy, PropertyNode);
1898     EltTys.push_back(FieldTy);
1899   }
1900 
1901   llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys);
1902   DBuilder.replaceArrays(RealDecl, Elements);
1903 
1904   LexicalBlockStack.pop_back();
1905   return RealDecl;
1906 }
1907 
1908 llvm::DIType *CGDebugInfo::CreateType(const VectorType *Ty,
1909                                       llvm::DIFile *Unit) {
1910   llvm::DIType *ElementTy = getOrCreateType(Ty->getElementType(), Unit);
1911   int64_t Count = Ty->getNumElements();
1912   if (Count == 0)
1913     // If number of elements are not known then this is an unbounded array.
1914     // Use Count == -1 to express such arrays.
1915     Count = -1;
1916 
1917   llvm::Metadata *Subscript = DBuilder.getOrCreateSubrange(0, Count);
1918   llvm::DINodeArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
1919 
1920   uint64_t Size = CGM.getContext().getTypeSize(Ty);
1921   uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1922 
1923   return DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
1924 }
1925 
1926 llvm::DIType *CGDebugInfo::CreateType(const ArrayType *Ty, llvm::DIFile *Unit) {
1927   uint64_t Size;
1928   uint64_t Align;
1929 
1930   // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
1931   if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
1932     Size = 0;
1933     Align =
1934         CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
1935   } else if (Ty->isIncompleteArrayType()) {
1936     Size = 0;
1937     if (Ty->getElementType()->isIncompleteType())
1938       Align = 0;
1939     else
1940       Align = CGM.getContext().getTypeAlign(Ty->getElementType());
1941   } else if (Ty->isIncompleteType()) {
1942     Size = 0;
1943     Align = 0;
1944   } else {
1945     // Size and align of the whole array, not the element type.
1946     Size = CGM.getContext().getTypeSize(Ty);
1947     Align = CGM.getContext().getTypeAlign(Ty);
1948   }
1949 
1950   // Add the dimensions of the array.  FIXME: This loses CV qualifiers from
1951   // interior arrays, do we care?  Why aren't nested arrays represented the
1952   // obvious/recursive way?
1953   SmallVector<llvm::Metadata *, 8> Subscripts;
1954   QualType EltTy(Ty, 0);
1955   while ((Ty = dyn_cast<ArrayType>(EltTy))) {
1956     // If the number of elements is known, then count is that number. Otherwise,
1957     // it's -1. This allows us to represent a subrange with an array of 0
1958     // elements, like this:
1959     //
1960     //   struct foo {
1961     //     int x[0];
1962     //   };
1963     int64_t Count = -1; // Count == -1 is an unbounded array.
1964     if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty))
1965       Count = CAT->getSize().getZExtValue();
1966 
1967     // FIXME: Verify this is right for VLAs.
1968     Subscripts.push_back(DBuilder.getOrCreateSubrange(0, Count));
1969     EltTy = Ty->getElementType();
1970   }
1971 
1972   llvm::DINodeArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
1973 
1974   return DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
1975                                   SubscriptArray);
1976 }
1977 
1978 llvm::DIType *CGDebugInfo::CreateType(const LValueReferenceType *Ty,
1979                                       llvm::DIFile *Unit) {
1980   return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type, Ty,
1981                                Ty->getPointeeType(), Unit);
1982 }
1983 
1984 llvm::DIType *CGDebugInfo::CreateType(const RValueReferenceType *Ty,
1985                                       llvm::DIFile *Unit) {
1986   return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type, Ty,
1987                                Ty->getPointeeType(), Unit);
1988 }
1989 
1990 llvm::DIType *CGDebugInfo::CreateType(const MemberPointerType *Ty,
1991                                       llvm::DIFile *U) {
1992   uint64_t Size =
1993       !Ty->isIncompleteType() ? CGM.getContext().getTypeSize(Ty) : 0;
1994   llvm::DIType *ClassType = getOrCreateType(QualType(Ty->getClass(), 0), U);
1995   if (Ty->isMemberDataPointerType())
1996     return DBuilder.createMemberPointerType(
1997         getOrCreateType(Ty->getPointeeType(), U), ClassType, Size);
1998 
1999   const FunctionProtoType *FPT =
2000       Ty->getPointeeType()->getAs<FunctionProtoType>();
2001   return DBuilder.createMemberPointerType(
2002       getOrCreateInstanceMethodType(CGM.getContext().getPointerType(QualType(
2003                                         Ty->getClass(), FPT->getTypeQuals())),
2004                                     FPT, U),
2005       ClassType, Size);
2006 }
2007 
2008 llvm::DIType *CGDebugInfo::CreateType(const AtomicType *Ty, llvm::DIFile *U) {
2009   // Ignore the atomic wrapping
2010   // FIXME: What is the correct representation?
2011   return getOrCreateType(Ty->getValueType(), U);
2012 }
2013 
2014 llvm::DIType* CGDebugInfo::CreateType(const PipeType *Ty,
2015                                      llvm::DIFile *U) {
2016   return getOrCreateType(Ty->getElementType(), U);
2017 }
2018 
2019 llvm::DIType *CGDebugInfo::CreateEnumType(const EnumType *Ty) {
2020   const EnumDecl *ED = Ty->getDecl();
2021 
2022   uint64_t Size = 0;
2023   uint64_t Align = 0;
2024   if (!ED->getTypeForDecl()->isIncompleteType()) {
2025     Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
2026     Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
2027   }
2028 
2029   SmallString<256> FullName = getUniqueTagTypeName(Ty, CGM, TheCU);
2030 
2031   bool isImportedFromModule =
2032       DebugTypeExtRefs && ED->isFromASTFile() && ED->getDefinition();
2033 
2034   // If this is just a forward declaration, construct an appropriately
2035   // marked node and just return it.
2036   if (isImportedFromModule || !ED->getDefinition()) {
2037     // Note that it is possible for enums to be created as part of
2038     // their own declcontext. In this case a FwdDecl will be created
2039     // twice. This doesn't cause a problem because both FwdDecls are
2040     // entered into the ReplaceMap: finalize() will replace the first
2041     // FwdDecl with the second and then replace the second with
2042     // complete type.
2043     llvm::DIScope *EDContext = getDeclContextDescriptor(ED);
2044     llvm::DIFile *DefUnit = getOrCreateFile(ED->getLocation());
2045     llvm::TempDIScope TmpContext(DBuilder.createReplaceableCompositeType(
2046         llvm::dwarf::DW_TAG_enumeration_type, "", TheCU, DefUnit, 0));
2047 
2048     unsigned Line = getLineNumber(ED->getLocation());
2049     StringRef EDName = ED->getName();
2050     llvm::DIType *RetTy = DBuilder.createReplaceableCompositeType(
2051         llvm::dwarf::DW_TAG_enumeration_type, EDName, EDContext, DefUnit, Line,
2052         0, Size, Align, llvm::DINode::FlagFwdDecl, FullName);
2053 
2054     ReplaceMap.emplace_back(
2055         std::piecewise_construct, std::make_tuple(Ty),
2056         std::make_tuple(static_cast<llvm::Metadata *>(RetTy)));
2057     return RetTy;
2058   }
2059 
2060   return CreateTypeDefinition(Ty);
2061 }
2062 
2063 llvm::DIType *CGDebugInfo::CreateTypeDefinition(const EnumType *Ty) {
2064   const EnumDecl *ED = Ty->getDecl();
2065   uint64_t Size = 0;
2066   uint64_t Align = 0;
2067   if (!ED->getTypeForDecl()->isIncompleteType()) {
2068     Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
2069     Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
2070   }
2071 
2072   SmallString<256> FullName = getUniqueTagTypeName(Ty, CGM, TheCU);
2073 
2074   // Create elements for each enumerator.
2075   SmallVector<llvm::Metadata *, 16> Enumerators;
2076   ED = ED->getDefinition();
2077   for (const auto *Enum : ED->enumerators()) {
2078     Enumerators.push_back(DBuilder.createEnumerator(
2079         Enum->getName(), Enum->getInitVal().getSExtValue()));
2080   }
2081 
2082   // Return a CompositeType for the enum itself.
2083   llvm::DINodeArray EltArray = DBuilder.getOrCreateArray(Enumerators);
2084 
2085   llvm::DIFile *DefUnit = getOrCreateFile(ED->getLocation());
2086   unsigned Line = getLineNumber(ED->getLocation());
2087   llvm::DIScope *EnumContext = getDeclContextDescriptor(ED);
2088   llvm::DIType *ClassTy =
2089       ED->isFixed() ? getOrCreateType(ED->getIntegerType(), DefUnit) : nullptr;
2090   return DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit,
2091                                         Line, Size, Align, EltArray, ClassTy,
2092                                         FullName);
2093 }
2094 
2095 static QualType UnwrapTypeForDebugInfo(QualType T, const ASTContext &C) {
2096   Qualifiers Quals;
2097   do {
2098     Qualifiers InnerQuals = T.getLocalQualifiers();
2099     // Qualifiers::operator+() doesn't like it if you add a Qualifier
2100     // that is already there.
2101     Quals += Qualifiers::removeCommonQualifiers(Quals, InnerQuals);
2102     Quals += InnerQuals;
2103     QualType LastT = T;
2104     switch (T->getTypeClass()) {
2105     default:
2106       return C.getQualifiedType(T.getTypePtr(), Quals);
2107     case Type::TemplateSpecialization: {
2108       const auto *Spec = cast<TemplateSpecializationType>(T);
2109       if (Spec->isTypeAlias())
2110         return C.getQualifiedType(T.getTypePtr(), Quals);
2111       T = Spec->desugar();
2112       break;
2113     }
2114     case Type::TypeOfExpr:
2115       T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
2116       break;
2117     case Type::TypeOf:
2118       T = cast<TypeOfType>(T)->getUnderlyingType();
2119       break;
2120     case Type::Decltype:
2121       T = cast<DecltypeType>(T)->getUnderlyingType();
2122       break;
2123     case Type::UnaryTransform:
2124       T = cast<UnaryTransformType>(T)->getUnderlyingType();
2125       break;
2126     case Type::Attributed:
2127       T = cast<AttributedType>(T)->getEquivalentType();
2128       break;
2129     case Type::Elaborated:
2130       T = cast<ElaboratedType>(T)->getNamedType();
2131       break;
2132     case Type::Paren:
2133       T = cast<ParenType>(T)->getInnerType();
2134       break;
2135     case Type::SubstTemplateTypeParm:
2136       T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
2137       break;
2138     case Type::Auto:
2139       QualType DT = cast<AutoType>(T)->getDeducedType();
2140       assert(!DT.isNull() && "Undeduced types shouldn't reach here.");
2141       T = DT;
2142       break;
2143     }
2144 
2145     assert(T != LastT && "Type unwrapping failed to unwrap!");
2146     (void)LastT;
2147   } while (true);
2148 }
2149 
2150 llvm::DIType *CGDebugInfo::getTypeOrNull(QualType Ty) {
2151 
2152   // Unwrap the type as needed for debug information.
2153   Ty = UnwrapTypeForDebugInfo(Ty, CGM.getContext());
2154 
2155   auto it = TypeCache.find(Ty.getAsOpaquePtr());
2156   if (it != TypeCache.end()) {
2157     // Verify that the debug info still exists.
2158     if (llvm::Metadata *V = it->second)
2159       return cast<llvm::DIType>(V);
2160   }
2161 
2162   return nullptr;
2163 }
2164 
2165 void CGDebugInfo::completeTemplateDefinition(
2166     const ClassTemplateSpecializationDecl &SD) {
2167   if (DebugKind <= codegenoptions::DebugLineTablesOnly)
2168     return;
2169 
2170   completeClassData(&SD);
2171   // In case this type has no member function definitions being emitted, ensure
2172   // it is retained
2173   RetainedTypes.push_back(CGM.getContext().getRecordType(&SD).getAsOpaquePtr());
2174 }
2175 
2176 llvm::DIType *CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile *Unit) {
2177   if (Ty.isNull())
2178     return nullptr;
2179 
2180   // Unwrap the type as needed for debug information.
2181   Ty = UnwrapTypeForDebugInfo(Ty, CGM.getContext());
2182 
2183   if (auto *T = getTypeOrNull(Ty))
2184     return T;
2185 
2186   llvm::DIType *Res = CreateTypeNode(Ty, Unit);
2187   void* TyPtr = Ty.getAsOpaquePtr();
2188 
2189   // And update the type cache.
2190   TypeCache[TyPtr].reset(Res);
2191 
2192   return Res;
2193 }
2194 
2195 llvm::DIModule *CGDebugInfo::getParentModuleOrNull(const Decl *D) {
2196   // A forward declaration inside a module header does not belong to the module.
2197   if (isa<RecordDecl>(D) && !cast<RecordDecl>(D)->getDefinition())
2198     return nullptr;
2199   if (DebugTypeExtRefs && D->isFromASTFile()) {
2200     // Record a reference to an imported clang module or precompiled header.
2201     auto *Reader = CGM.getContext().getExternalSource();
2202     auto Idx = D->getOwningModuleID();
2203     auto Info = Reader->getSourceDescriptor(Idx);
2204     if (Info)
2205       return getOrCreateModuleRef(*Info, /*SkeletonCU=*/true);
2206   } else if (ClangModuleMap) {
2207     // We are building a clang module or a precompiled header.
2208     //
2209     // TODO: When D is a CXXRecordDecl or a C++ Enum, the ODR applies
2210     // and it wouldn't be necessary to specify the parent scope
2211     // because the type is already unique by definition (it would look
2212     // like the output of -fno-standalone-debug). On the other hand,
2213     // the parent scope helps a consumer to quickly locate the object
2214     // file where the type's definition is located, so it might be
2215     // best to make this behavior a command line or debugger tuning
2216     // option.
2217     FullSourceLoc Loc(D->getLocation(), CGM.getContext().getSourceManager());
2218     if (Module *M = ClangModuleMap->inferModuleFromLocation(Loc)) {
2219       // This is a (sub-)module.
2220       auto Info = ExternalASTSource::ASTSourceDescriptor(*M);
2221       return getOrCreateModuleRef(Info, /*SkeletonCU=*/false);
2222     } else {
2223       // This the precompiled header being built.
2224       return getOrCreateModuleRef(PCHDescriptor, /*SkeletonCU=*/false);
2225     }
2226   }
2227 
2228   return nullptr;
2229 }
2230 
2231 llvm::DIType *CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile *Unit) {
2232   // Handle qualifiers, which recursively handles what they refer to.
2233   if (Ty.hasLocalQualifiers())
2234     return CreateQualifiedType(Ty, Unit);
2235 
2236   // Work out details of type.
2237   switch (Ty->getTypeClass()) {
2238 #define TYPE(Class, Base)
2239 #define ABSTRACT_TYPE(Class, Base)
2240 #define NON_CANONICAL_TYPE(Class, Base)
2241 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
2242 #include "clang/AST/TypeNodes.def"
2243     llvm_unreachable("Dependent types cannot show up in debug information");
2244 
2245   case Type::ExtVector:
2246   case Type::Vector:
2247     return CreateType(cast<VectorType>(Ty), Unit);
2248   case Type::ObjCObjectPointer:
2249     return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
2250   case Type::ObjCObject:
2251     return CreateType(cast<ObjCObjectType>(Ty), Unit);
2252   case Type::ObjCInterface:
2253     return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
2254   case Type::Builtin:
2255     return CreateType(cast<BuiltinType>(Ty));
2256   case Type::Complex:
2257     return CreateType(cast<ComplexType>(Ty));
2258   case Type::Pointer:
2259     return CreateType(cast<PointerType>(Ty), Unit);
2260   case Type::Adjusted:
2261   case Type::Decayed:
2262     // Decayed and adjusted types use the adjusted type in LLVM and DWARF.
2263     return CreateType(
2264         cast<PointerType>(cast<AdjustedType>(Ty)->getAdjustedType()), Unit);
2265   case Type::BlockPointer:
2266     return CreateType(cast<BlockPointerType>(Ty), Unit);
2267   case Type::Typedef:
2268     return CreateType(cast<TypedefType>(Ty), Unit);
2269   case Type::Record:
2270     return CreateType(cast<RecordType>(Ty));
2271   case Type::Enum:
2272     return CreateEnumType(cast<EnumType>(Ty));
2273   case Type::FunctionProto:
2274   case Type::FunctionNoProto:
2275     return CreateType(cast<FunctionType>(Ty), Unit);
2276   case Type::ConstantArray:
2277   case Type::VariableArray:
2278   case Type::IncompleteArray:
2279     return CreateType(cast<ArrayType>(Ty), Unit);
2280 
2281   case Type::LValueReference:
2282     return CreateType(cast<LValueReferenceType>(Ty), Unit);
2283   case Type::RValueReference:
2284     return CreateType(cast<RValueReferenceType>(Ty), Unit);
2285 
2286   case Type::MemberPointer:
2287     return CreateType(cast<MemberPointerType>(Ty), Unit);
2288 
2289   case Type::Atomic:
2290     return CreateType(cast<AtomicType>(Ty), Unit);
2291 
2292   case Type::Pipe:
2293     return CreateType(cast<PipeType>(Ty), Unit);
2294 
2295   case Type::TemplateSpecialization:
2296     return CreateType(cast<TemplateSpecializationType>(Ty), Unit);
2297 
2298   case Type::Auto:
2299   case Type::Attributed:
2300   case Type::Elaborated:
2301   case Type::Paren:
2302   case Type::SubstTemplateTypeParm:
2303   case Type::TypeOfExpr:
2304   case Type::TypeOf:
2305   case Type::Decltype:
2306   case Type::UnaryTransform:
2307   case Type::PackExpansion:
2308     break;
2309   }
2310 
2311   llvm_unreachable("type should have been unwrapped!");
2312 }
2313 
2314 llvm::DICompositeType *CGDebugInfo::getOrCreateLimitedType(const RecordType *Ty,
2315                                                            llvm::DIFile *Unit) {
2316   QualType QTy(Ty, 0);
2317 
2318   auto *T = cast_or_null<llvm::DICompositeType>(getTypeOrNull(QTy));
2319 
2320   // We may have cached a forward decl when we could have created
2321   // a non-forward decl. Go ahead and create a non-forward decl
2322   // now.
2323   if (T && !T->isForwardDecl())
2324     return T;
2325 
2326   // Otherwise create the type.
2327   llvm::DICompositeType *Res = CreateLimitedType(Ty);
2328 
2329   // Propagate members from the declaration to the definition
2330   // CreateType(const RecordType*) will overwrite this with the members in the
2331   // correct order if the full type is needed.
2332   DBuilder.replaceArrays(Res, T ? T->getElements() : llvm::DINodeArray());
2333 
2334   // And update the type cache.
2335   TypeCache[QTy.getAsOpaquePtr()].reset(Res);
2336   return Res;
2337 }
2338 
2339 // TODO: Currently used for context chains when limiting debug info.
2340 llvm::DICompositeType *CGDebugInfo::CreateLimitedType(const RecordType *Ty) {
2341   RecordDecl *RD = Ty->getDecl();
2342 
2343   // Get overall information about the record type for the debug info.
2344   llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation());
2345   unsigned Line = getLineNumber(RD->getLocation());
2346   StringRef RDName = getClassName(RD);
2347 
2348   llvm::DIScope *RDContext = getDeclContextDescriptor(RD);
2349 
2350   // If we ended up creating the type during the context chain construction,
2351   // just return that.
2352   auto *T = cast_or_null<llvm::DICompositeType>(
2353       getTypeOrNull(CGM.getContext().getRecordType(RD)));
2354   if (T && (!T->isForwardDecl() || !RD->getDefinition()))
2355     return T;
2356 
2357   // If this is just a forward or incomplete declaration, construct an
2358   // appropriately marked node and just return it.
2359   const RecordDecl *D = RD->getDefinition();
2360   if (!D || !D->isCompleteDefinition())
2361     return getOrCreateRecordFwdDecl(Ty, RDContext);
2362 
2363   uint64_t Size = CGM.getContext().getTypeSize(Ty);
2364   uint64_t Align = CGM.getContext().getTypeAlign(Ty);
2365 
2366   SmallString<256> FullName = getUniqueTagTypeName(Ty, CGM, TheCU);
2367 
2368   llvm::DICompositeType *RealDecl = DBuilder.createReplaceableCompositeType(
2369       getTagForRecord(RD), RDName, RDContext, DefUnit, Line, 0, Size, Align, 0,
2370       FullName);
2371 
2372   RegionMap[Ty->getDecl()].reset(RealDecl);
2373   TypeCache[QualType(Ty, 0).getAsOpaquePtr()].reset(RealDecl);
2374 
2375   if (const ClassTemplateSpecializationDecl *TSpecial =
2376           dyn_cast<ClassTemplateSpecializationDecl>(RD))
2377     DBuilder.replaceArrays(RealDecl, llvm::DINodeArray(),
2378                            CollectCXXTemplateParams(TSpecial, DefUnit));
2379   return RealDecl;
2380 }
2381 
2382 void CGDebugInfo::CollectContainingType(const CXXRecordDecl *RD,
2383                                         llvm::DICompositeType *RealDecl) {
2384   // A class's primary base or the class itself contains the vtable.
2385   llvm::DICompositeType *ContainingType = nullptr;
2386   const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
2387   if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
2388     // Seek non-virtual primary base root.
2389     while (1) {
2390       const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
2391       const CXXRecordDecl *PBT = BRL.getPrimaryBase();
2392       if (PBT && !BRL.isPrimaryBaseVirtual())
2393         PBase = PBT;
2394       else
2395         break;
2396     }
2397     ContainingType = cast<llvm::DICompositeType>(
2398         getOrCreateType(QualType(PBase->getTypeForDecl(), 0),
2399                         getOrCreateFile(RD->getLocation())));
2400   } else if (RD->isDynamicClass())
2401     ContainingType = RealDecl;
2402 
2403   DBuilder.replaceVTableHolder(RealDecl, ContainingType);
2404 }
2405 
2406 llvm::DIType *CGDebugInfo::CreateMemberType(llvm::DIFile *Unit, QualType FType,
2407                                             StringRef Name, uint64_t *Offset) {
2408   llvm::DIType *FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
2409   uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
2410   unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
2411   llvm::DIType *Ty = DBuilder.createMemberType(Unit, Name, Unit, 0, FieldSize,
2412                                                FieldAlign, *Offset, 0, FieldTy);
2413   *Offset += FieldSize;
2414   return Ty;
2415 }
2416 
2417 void CGDebugInfo::collectFunctionDeclProps(GlobalDecl GD, llvm::DIFile *Unit,
2418                                            StringRef &Name,
2419                                            StringRef &LinkageName,
2420                                            llvm::DIScope *&FDContext,
2421                                            llvm::DINodeArray &TParamsArray,
2422                                            unsigned &Flags) {
2423   const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
2424   Name = getFunctionName(FD);
2425   // Use mangled name as linkage name for C/C++ functions.
2426   if (FD->hasPrototype()) {
2427     LinkageName = CGM.getMangledName(GD);
2428     Flags |= llvm::DINode::FlagPrototyped;
2429   }
2430   // No need to replicate the linkage name if it isn't different from the
2431   // subprogram name, no need to have it at all unless coverage is enabled or
2432   // debug is set to more than just line tables.
2433   if (LinkageName == Name || (!CGM.getCodeGenOpts().EmitGcovArcs &&
2434                               !CGM.getCodeGenOpts().EmitGcovNotes &&
2435                               DebugKind <= codegenoptions::DebugLineTablesOnly))
2436     LinkageName = StringRef();
2437 
2438   if (DebugKind >= codegenoptions::LimitedDebugInfo) {
2439     if (const NamespaceDecl *NSDecl =
2440         dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
2441       FDContext = getOrCreateNameSpace(NSDecl);
2442     else if (const RecordDecl *RDecl =
2443              dyn_cast_or_null<RecordDecl>(FD->getDeclContext())) {
2444       llvm::DIScope *Mod = getParentModuleOrNull(RDecl);
2445       FDContext = getContextDescriptor(RDecl, Mod ? Mod : TheCU);
2446     }
2447     // Collect template parameters.
2448     TParamsArray = CollectFunctionTemplateParams(FD, Unit);
2449   }
2450 }
2451 
2452 void CGDebugInfo::collectVarDeclProps(const VarDecl *VD, llvm::DIFile *&Unit,
2453                                       unsigned &LineNo, QualType &T,
2454                                       StringRef &Name, StringRef &LinkageName,
2455                                       llvm::DIScope *&VDContext) {
2456   Unit = getOrCreateFile(VD->getLocation());
2457   LineNo = getLineNumber(VD->getLocation());
2458 
2459   setLocation(VD->getLocation());
2460 
2461   T = VD->getType();
2462   if (T->isIncompleteArrayType()) {
2463     // CodeGen turns int[] into int[1] so we'll do the same here.
2464     llvm::APInt ConstVal(32, 1);
2465     QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
2466 
2467     T = CGM.getContext().getConstantArrayType(ET, ConstVal,
2468                                               ArrayType::Normal, 0);
2469   }
2470 
2471   Name = VD->getName();
2472   if (VD->getDeclContext() && !isa<FunctionDecl>(VD->getDeclContext()) &&
2473       !isa<ObjCMethodDecl>(VD->getDeclContext()))
2474     LinkageName = CGM.getMangledName(VD);
2475   if (LinkageName == Name)
2476     LinkageName = StringRef();
2477 
2478   // Since we emit declarations (DW_AT_members) for static members, place the
2479   // definition of those static members in the namespace they were declared in
2480   // in the source code (the lexical decl context).
2481   // FIXME: Generalize this for even non-member global variables where the
2482   // declaration and definition may have different lexical decl contexts, once
2483   // we have support for emitting declarations of (non-member) global variables.
2484   const DeclContext *DC = VD->isStaticDataMember() ? VD->getLexicalDeclContext()
2485                                                    : VD->getDeclContext();
2486   // When a record type contains an in-line initialization of a static data
2487   // member, and the record type is marked as __declspec(dllexport), an implicit
2488   // definition of the member will be created in the record context.  DWARF
2489   // doesn't seem to have a nice way to describe this in a form that consumers
2490   // are likely to understand, so fake the "normal" situation of a definition
2491   // outside the class by putting it in the global scope.
2492   if (DC->isRecord())
2493     DC = CGM.getContext().getTranslationUnitDecl();
2494 
2495  llvm::DIScope *Mod = getParentModuleOrNull(VD);
2496  VDContext = getContextDescriptor(cast<Decl>(DC), Mod ? Mod : TheCU);
2497 }
2498 
2499 llvm::DISubprogram *
2500 CGDebugInfo::getFunctionForwardDeclaration(const FunctionDecl *FD) {
2501   llvm::DINodeArray TParamsArray;
2502   StringRef Name, LinkageName;
2503   unsigned Flags = 0;
2504   SourceLocation Loc = FD->getLocation();
2505   llvm::DIFile *Unit = getOrCreateFile(Loc);
2506   llvm::DIScope *DContext = Unit;
2507   unsigned Line = getLineNumber(Loc);
2508 
2509   collectFunctionDeclProps(FD, Unit, Name, LinkageName, DContext,
2510                            TParamsArray, Flags);
2511   // Build function type.
2512   SmallVector<QualType, 16> ArgTypes;
2513   for (const ParmVarDecl *Parm: FD->parameters())
2514     ArgTypes.push_back(Parm->getType());
2515   QualType FnType =
2516     CGM.getContext().getFunctionType(FD->getReturnType(), ArgTypes,
2517                                      FunctionProtoType::ExtProtoInfo());
2518   llvm::DISubprogram *SP = DBuilder.createTempFunctionFwdDecl(
2519       DContext, Name, LinkageName, Unit, Line,
2520       getOrCreateFunctionType(FD, FnType, Unit), !FD->isExternallyVisible(),
2521       /* isDefinition = */ false, 0, Flags, CGM.getLangOpts().Optimize,
2522       TParamsArray.get(), getFunctionDeclaration(FD));
2523   const FunctionDecl *CanonDecl = cast<FunctionDecl>(FD->getCanonicalDecl());
2524   FwdDeclReplaceMap.emplace_back(std::piecewise_construct,
2525                                  std::make_tuple(CanonDecl),
2526                                  std::make_tuple(SP));
2527   return SP;
2528 }
2529 
2530 llvm::DIGlobalVariable *
2531 CGDebugInfo::getGlobalVariableForwardDeclaration(const VarDecl *VD) {
2532   QualType T;
2533   StringRef Name, LinkageName;
2534   SourceLocation Loc = VD->getLocation();
2535   llvm::DIFile *Unit = getOrCreateFile(Loc);
2536   llvm::DIScope *DContext = Unit;
2537   unsigned Line = getLineNumber(Loc);
2538 
2539   collectVarDeclProps(VD, Unit, Line, T, Name, LinkageName, DContext);
2540   auto *GV = DBuilder.createTempGlobalVariableFwdDecl(
2541       DContext, Name, LinkageName, Unit, Line, getOrCreateType(T, Unit),
2542       !VD->isExternallyVisible(), nullptr, nullptr);
2543   FwdDeclReplaceMap.emplace_back(
2544       std::piecewise_construct,
2545       std::make_tuple(cast<VarDecl>(VD->getCanonicalDecl())),
2546       std::make_tuple(static_cast<llvm::Metadata *>(GV)));
2547   return GV;
2548 }
2549 
2550 llvm::DINode *CGDebugInfo::getDeclarationOrDefinition(const Decl *D) {
2551   // We only need a declaration (not a definition) of the type - so use whatever
2552   // we would otherwise do to get a type for a pointee. (forward declarations in
2553   // limited debug info, full definitions (if the type definition is available)
2554   // in unlimited debug info)
2555   if (const TypeDecl *TD = dyn_cast<TypeDecl>(D))
2556     return getOrCreateType(CGM.getContext().getTypeDeclType(TD),
2557                            getOrCreateFile(TD->getLocation()));
2558   auto I = DeclCache.find(D->getCanonicalDecl());
2559 
2560   if (I != DeclCache.end())
2561     return dyn_cast_or_null<llvm::DINode>(I->second);
2562 
2563   // No definition for now. Emit a forward definition that might be
2564   // merged with a potential upcoming definition.
2565   if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D))
2566     return getFunctionForwardDeclaration(FD);
2567   else if (const auto *VD = dyn_cast<VarDecl>(D))
2568     return getGlobalVariableForwardDeclaration(VD);
2569 
2570   return nullptr;
2571 }
2572 
2573 llvm::DISubprogram *CGDebugInfo::getFunctionDeclaration(const Decl *D) {
2574   if (!D || DebugKind <= codegenoptions::DebugLineTablesOnly)
2575     return nullptr;
2576 
2577   const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
2578   if (!FD)
2579     return nullptr;
2580 
2581   // Setup context.
2582   auto *S = getDeclContextDescriptor(D);
2583 
2584   auto MI = SPCache.find(FD->getCanonicalDecl());
2585   if (MI == SPCache.end()) {
2586     if (const CXXMethodDecl *MD =
2587             dyn_cast<CXXMethodDecl>(FD->getCanonicalDecl())) {
2588       return CreateCXXMemberFunction(MD, getOrCreateFile(MD->getLocation()),
2589                                      cast<llvm::DICompositeType>(S));
2590     }
2591   }
2592   if (MI != SPCache.end()) {
2593     auto *SP = dyn_cast_or_null<llvm::DISubprogram>(MI->second);
2594     if (SP && !SP->isDefinition())
2595       return SP;
2596   }
2597 
2598   for (auto NextFD : FD->redecls()) {
2599     auto MI = SPCache.find(NextFD->getCanonicalDecl());
2600     if (MI != SPCache.end()) {
2601       auto *SP = dyn_cast_or_null<llvm::DISubprogram>(MI->second);
2602       if (SP && !SP->isDefinition())
2603         return SP;
2604     }
2605   }
2606   return nullptr;
2607 }
2608 
2609 // getOrCreateFunctionType - Construct type. If it is a c++ method, include
2610 // implicit parameter "this".
2611 llvm::DISubroutineType *CGDebugInfo::getOrCreateFunctionType(const Decl *D,
2612                                                              QualType FnType,
2613                                                              llvm::DIFile *F) {
2614   if (!D || DebugKind <= codegenoptions::DebugLineTablesOnly)
2615     // Create fake but valid subroutine type. Otherwise -verify would fail, and
2616     // subprogram DIE will miss DW_AT_decl_file and DW_AT_decl_line fields.
2617     return DBuilder.createSubroutineType(DBuilder.getOrCreateTypeArray(None));
2618 
2619   if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
2620     return getOrCreateMethodType(Method, F);
2621   if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
2622     // Add "self" and "_cmd"
2623     SmallVector<llvm::Metadata *, 16> Elts;
2624 
2625     // First element is always return type. For 'void' functions it is NULL.
2626     QualType ResultTy = OMethod->getReturnType();
2627 
2628     // Replace the instancetype keyword with the actual type.
2629     if (ResultTy == CGM.getContext().getObjCInstanceType())
2630       ResultTy = CGM.getContext().getPointerType(
2631           QualType(OMethod->getClassInterface()->getTypeForDecl(), 0));
2632 
2633     Elts.push_back(getOrCreateType(ResultTy, F));
2634     // "self" pointer is always first argument.
2635     QualType SelfDeclTy;
2636     if (auto *SelfDecl = OMethod->getSelfDecl())
2637       SelfDeclTy = SelfDecl->getType();
2638     else if (auto *FPT = dyn_cast<FunctionProtoType>(FnType))
2639       if (FPT->getNumParams() > 1)
2640         SelfDeclTy = FPT->getParamType(0);
2641     if (!SelfDeclTy.isNull())
2642       Elts.push_back(CreateSelfType(SelfDeclTy, getOrCreateType(SelfDeclTy, F)));
2643     // "_cmd" pointer is always second argument.
2644     Elts.push_back(DBuilder.createArtificialType(
2645         getOrCreateType(CGM.getContext().getObjCSelType(), F)));
2646     // Get rest of the arguments.
2647     for (const auto *PI : OMethod->params())
2648       Elts.push_back(getOrCreateType(PI->getType(), F));
2649     // Variadic methods need a special marker at the end of the type list.
2650     if (OMethod->isVariadic())
2651       Elts.push_back(DBuilder.createUnspecifiedParameter());
2652 
2653     llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(Elts);
2654     return DBuilder.createSubroutineType(EltTypeArray);
2655   }
2656 
2657   // Handle variadic function types; they need an additional
2658   // unspecified parameter.
2659   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2660     if (FD->isVariadic()) {
2661       SmallVector<llvm::Metadata *, 16> EltTys;
2662       EltTys.push_back(getOrCreateType(FD->getReturnType(), F));
2663       if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FnType))
2664         for (unsigned i = 0, e = FPT->getNumParams(); i != e; ++i)
2665           EltTys.push_back(getOrCreateType(FPT->getParamType(i), F));
2666       EltTys.push_back(DBuilder.createUnspecifiedParameter());
2667       llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(EltTys);
2668       return DBuilder.createSubroutineType(EltTypeArray);
2669     }
2670 
2671   return cast<llvm::DISubroutineType>(getOrCreateType(FnType, F));
2672 }
2673 
2674 void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, SourceLocation Loc,
2675                                     SourceLocation ScopeLoc, QualType FnType,
2676                                     llvm::Function *Fn, CGBuilderTy &Builder) {
2677 
2678   StringRef Name;
2679   StringRef LinkageName;
2680 
2681   FnBeginRegionCount.push_back(LexicalBlockStack.size());
2682 
2683   const Decl *D = GD.getDecl();
2684   bool HasDecl = (D != nullptr);
2685 
2686   unsigned Flags = 0;
2687   llvm::DIFile *Unit = getOrCreateFile(Loc);
2688   llvm::DIScope *FDContext = Unit;
2689   llvm::DINodeArray TParamsArray;
2690   if (!HasDecl) {
2691     // Use llvm function name.
2692     LinkageName = Fn->getName();
2693   } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
2694     // If there is a subprogram for this function available then use it.
2695     auto FI = SPCache.find(FD->getCanonicalDecl());
2696     if (FI != SPCache.end()) {
2697       auto *SP = dyn_cast_or_null<llvm::DISubprogram>(FI->second);
2698       if (SP && SP->isDefinition()) {
2699         LexicalBlockStack.emplace_back(SP);
2700         RegionMap[D].reset(SP);
2701         return;
2702       }
2703     }
2704     collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext,
2705                              TParamsArray, Flags);
2706   } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
2707     Name = getObjCMethodName(OMD);
2708     Flags |= llvm::DINode::FlagPrototyped;
2709   } else {
2710     // Use llvm function name.
2711     Name = Fn->getName();
2712     Flags |= llvm::DINode::FlagPrototyped;
2713   }
2714   if (!Name.empty() && Name[0] == '\01')
2715     Name = Name.substr(1);
2716 
2717   if (!HasDecl || D->isImplicit()) {
2718     Flags |= llvm::DINode::FlagArtificial;
2719     // Artificial functions without a location should not silently reuse CurLoc.
2720     if (Loc.isInvalid())
2721       CurLoc = SourceLocation();
2722   }
2723   unsigned LineNo = getLineNumber(Loc);
2724   unsigned ScopeLine = getLineNumber(ScopeLoc);
2725 
2726   // FIXME: The function declaration we're constructing here is mostly reusing
2727   // declarations from CXXMethodDecl and not constructing new ones for arbitrary
2728   // FunctionDecls. When/if we fix this we can have FDContext be TheCU/null for
2729   // all subprograms instead of the actual context since subprogram definitions
2730   // are emitted as CU level entities by the backend.
2731   llvm::DISubprogram *SP = DBuilder.createFunction(
2732       FDContext, Name, LinkageName, Unit, LineNo,
2733       getOrCreateFunctionType(D, FnType, Unit), Fn->hasInternalLinkage(),
2734       true /*definition*/, ScopeLine, Flags, CGM.getLangOpts().Optimize,
2735       TParamsArray.get(), getFunctionDeclaration(D));
2736   Fn->setSubprogram(SP);
2737   // We might get here with a VarDecl in the case we're generating
2738   // code for the initialization of globals. Do not record these decls
2739   // as they will overwrite the actual VarDecl Decl in the cache.
2740   if (HasDecl && isa<FunctionDecl>(D))
2741     DeclCache[D->getCanonicalDecl()].reset(static_cast<llvm::Metadata *>(SP));
2742 
2743   // Push the function onto the lexical block stack.
2744   LexicalBlockStack.emplace_back(SP);
2745 
2746   if (HasDecl)
2747     RegionMap[D].reset(SP);
2748 }
2749 
2750 void CGDebugInfo::EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc,
2751                                    QualType FnType) {
2752   StringRef Name;
2753   StringRef LinkageName;
2754 
2755   const Decl *D = GD.getDecl();
2756   if (!D)
2757     return;
2758 
2759   unsigned Flags = 0;
2760   llvm::DIFile *Unit = getOrCreateFile(Loc);
2761   llvm::DIScope *FDContext = getDeclContextDescriptor(D);
2762   llvm::DINodeArray TParamsArray;
2763   if (isa<FunctionDecl>(D)) {
2764     // If there is a DISubprogram for this function available then use it.
2765     collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext,
2766                              TParamsArray, Flags);
2767   } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
2768     Name = getObjCMethodName(OMD);
2769     Flags |= llvm::DINode::FlagPrototyped;
2770   } else {
2771     llvm_unreachable("not a function or ObjC method");
2772   }
2773   if (!Name.empty() && Name[0] == '\01')
2774     Name = Name.substr(1);
2775 
2776   if (D->isImplicit()) {
2777     Flags |= llvm::DINode::FlagArtificial;
2778     // Artificial functions without a location should not silently reuse CurLoc.
2779     if (Loc.isInvalid())
2780       CurLoc = SourceLocation();
2781   }
2782   unsigned LineNo = getLineNumber(Loc);
2783   unsigned ScopeLine = 0;
2784 
2785   DBuilder.createFunction(FDContext, Name, LinkageName, Unit, LineNo,
2786                           getOrCreateFunctionType(D, FnType, Unit),
2787                           false /*internalLinkage*/, true /*definition*/,
2788                           ScopeLine, Flags, CGM.getLangOpts().Optimize,
2789                           TParamsArray.get(), getFunctionDeclaration(D));
2790 }
2791 
2792 void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
2793   // Update our current location
2794   setLocation(Loc);
2795 
2796   if (CurLoc.isInvalid() || CurLoc.isMacroID())
2797     return;
2798 
2799   llvm::MDNode *Scope = LexicalBlockStack.back();
2800   Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(
2801       getLineNumber(CurLoc), getColumnNumber(CurLoc), Scope));
2802 }
2803 
2804 void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
2805   llvm::MDNode *Back = nullptr;
2806   if (!LexicalBlockStack.empty())
2807     Back = LexicalBlockStack.back().get();
2808   LexicalBlockStack.emplace_back(DBuilder.createLexicalBlock(
2809       cast<llvm::DIScope>(Back), getOrCreateFile(CurLoc), getLineNumber(CurLoc),
2810       getColumnNumber(CurLoc)));
2811 }
2812 
2813 void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder,
2814                                         SourceLocation Loc) {
2815   // Set our current location.
2816   setLocation(Loc);
2817 
2818   // Emit a line table change for the current location inside the new scope.
2819   Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(
2820       getLineNumber(Loc), getColumnNumber(Loc), LexicalBlockStack.back()));
2821 
2822   if (DebugKind <= codegenoptions::DebugLineTablesOnly)
2823     return;
2824 
2825   // Create a new lexical block and push it on the stack.
2826   CreateLexicalBlock(Loc);
2827 }
2828 
2829 void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder,
2830                                       SourceLocation Loc) {
2831   assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
2832 
2833   // Provide an entry in the line table for the end of the block.
2834   EmitLocation(Builder, Loc);
2835 
2836   if (DebugKind <= codegenoptions::DebugLineTablesOnly)
2837     return;
2838 
2839   LexicalBlockStack.pop_back();
2840 }
2841 
2842 void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
2843   assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
2844   unsigned RCount = FnBeginRegionCount.back();
2845   assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
2846 
2847   // Pop all regions for this function.
2848   while (LexicalBlockStack.size() != RCount) {
2849     // Provide an entry in the line table for the end of the block.
2850     EmitLocation(Builder, CurLoc);
2851     LexicalBlockStack.pop_back();
2852   }
2853   FnBeginRegionCount.pop_back();
2854 }
2855 
2856 llvm::DIType *CGDebugInfo::EmitTypeForVarWithBlocksAttr(const VarDecl *VD,
2857                                                         uint64_t *XOffset) {
2858 
2859   SmallVector<llvm::Metadata *, 5> EltTys;
2860   QualType FType;
2861   uint64_t FieldSize, FieldOffset;
2862   unsigned FieldAlign;
2863 
2864   llvm::DIFile *Unit = getOrCreateFile(VD->getLocation());
2865   QualType Type = VD->getType();
2866 
2867   FieldOffset = 0;
2868   FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2869   EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
2870   EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
2871   FType = CGM.getContext().IntTy;
2872   EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
2873   EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
2874 
2875   bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type, VD);
2876   if (HasCopyAndDispose) {
2877     FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2878     EltTys.push_back(
2879         CreateMemberType(Unit, FType, "__copy_helper", &FieldOffset));
2880     EltTys.push_back(
2881         CreateMemberType(Unit, FType, "__destroy_helper", &FieldOffset));
2882   }
2883   bool HasByrefExtendedLayout;
2884   Qualifiers::ObjCLifetime Lifetime;
2885   if (CGM.getContext().getByrefLifetime(Type, Lifetime,
2886                                         HasByrefExtendedLayout) &&
2887       HasByrefExtendedLayout) {
2888     FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
2889     EltTys.push_back(
2890         CreateMemberType(Unit, FType, "__byref_variable_layout", &FieldOffset));
2891   }
2892 
2893   CharUnits Align = CGM.getContext().getDeclAlign(VD);
2894   if (Align > CGM.getContext().toCharUnitsFromBits(
2895                   CGM.getTarget().getPointerAlign(0))) {
2896     CharUnits FieldOffsetInBytes =
2897         CGM.getContext().toCharUnitsFromBits(FieldOffset);
2898     CharUnits AlignedOffsetInBytes = FieldOffsetInBytes.alignTo(Align);
2899     CharUnits NumPaddingBytes = AlignedOffsetInBytes - FieldOffsetInBytes;
2900 
2901     if (NumPaddingBytes.isPositive()) {
2902       llvm::APInt pad(32, NumPaddingBytes.getQuantity());
2903       FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
2904                                                     pad, ArrayType::Normal, 0);
2905       EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
2906     }
2907   }
2908 
2909   FType = Type;
2910   llvm::DIType *FieldTy = getOrCreateType(FType, Unit);
2911   FieldSize = CGM.getContext().getTypeSize(FType);
2912   FieldAlign = CGM.getContext().toBits(Align);
2913 
2914   *XOffset = FieldOffset;
2915   FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit, 0, FieldSize,
2916                                       FieldAlign, FieldOffset, 0, FieldTy);
2917   EltTys.push_back(FieldTy);
2918   FieldOffset += FieldSize;
2919 
2920   llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys);
2921 
2922   unsigned Flags = llvm::DINode::FlagBlockByrefStruct;
2923 
2924   return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
2925                                    nullptr, Elements);
2926 }
2927 
2928 void CGDebugInfo::EmitDeclare(const VarDecl *VD, llvm::Value *Storage,
2929                               llvm::Optional<unsigned> ArgNo,
2930                               CGBuilderTy &Builder) {
2931   assert(DebugKind >= codegenoptions::LimitedDebugInfo);
2932   assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
2933 
2934   bool Unwritten =
2935       VD->isImplicit() || (isa<Decl>(VD->getDeclContext()) &&
2936                            cast<Decl>(VD->getDeclContext())->isImplicit());
2937   llvm::DIFile *Unit = nullptr;
2938   if (!Unwritten)
2939     Unit = getOrCreateFile(VD->getLocation());
2940   llvm::DIType *Ty;
2941   uint64_t XOffset = 0;
2942   if (VD->hasAttr<BlocksAttr>())
2943     Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
2944   else
2945     Ty = getOrCreateType(VD->getType(), Unit);
2946 
2947   // If there is no debug info for this type then do not emit debug info
2948   // for this variable.
2949   if (!Ty)
2950     return;
2951 
2952   // Get location information.
2953   unsigned Line = 0;
2954   unsigned Column = 0;
2955   if (!Unwritten) {
2956     Line = getLineNumber(VD->getLocation());
2957     Column = getColumnNumber(VD->getLocation());
2958   }
2959   SmallVector<int64_t, 9> Expr;
2960   unsigned Flags = 0;
2961   if (VD->isImplicit())
2962     Flags |= llvm::DINode::FlagArtificial;
2963   // If this is the first argument and it is implicit then
2964   // give it an object pointer flag.
2965   // FIXME: There has to be a better way to do this, but for static
2966   // functions there won't be an implicit param at arg1 and
2967   // otherwise it is 'self' or 'this'.
2968   if (isa<ImplicitParamDecl>(VD) && ArgNo && *ArgNo == 1)
2969     Flags |= llvm::DINode::FlagObjectPointer;
2970   if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage))
2971     if (Arg->getType()->isPointerTy() && !Arg->hasByValAttr() &&
2972         !VD->getType()->isPointerType())
2973       Expr.push_back(llvm::dwarf::DW_OP_deref);
2974 
2975   auto *Scope = cast<llvm::DIScope>(LexicalBlockStack.back());
2976 
2977   StringRef Name = VD->getName();
2978   if (!Name.empty()) {
2979     if (VD->hasAttr<BlocksAttr>()) {
2980       CharUnits offset = CharUnits::fromQuantity(32);
2981       Expr.push_back(llvm::dwarf::DW_OP_plus);
2982       // offset of __forwarding field
2983       offset = CGM.getContext().toCharUnitsFromBits(
2984           CGM.getTarget().getPointerWidth(0));
2985       Expr.push_back(offset.getQuantity());
2986       Expr.push_back(llvm::dwarf::DW_OP_deref);
2987       Expr.push_back(llvm::dwarf::DW_OP_plus);
2988       // offset of x field
2989       offset = CGM.getContext().toCharUnitsFromBits(XOffset);
2990       Expr.push_back(offset.getQuantity());
2991 
2992       // Create the descriptor for the variable.
2993       auto *D = ArgNo
2994                     ? DBuilder.createParameterVariable(Scope, VD->getName(),
2995                                                        *ArgNo, Unit, Line, Ty)
2996                     : DBuilder.createAutoVariable(Scope, VD->getName(), Unit,
2997                                                   Line, Ty);
2998 
2999       // Insert an llvm.dbg.declare into the current block.
3000       DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(Expr),
3001                              llvm::DebugLoc::get(Line, Column, Scope),
3002                              Builder.GetInsertBlock());
3003       return;
3004     } else if (isa<VariableArrayType>(VD->getType()))
3005       Expr.push_back(llvm::dwarf::DW_OP_deref);
3006   } else if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
3007     // If VD is an anonymous union then Storage represents value for
3008     // all union fields.
3009     const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
3010     if (RD->isUnion() && RD->isAnonymousStructOrUnion()) {
3011       // GDB has trouble finding local variables in anonymous unions, so we emit
3012       // artifical local variables for each of the members.
3013       //
3014       // FIXME: Remove this code as soon as GDB supports this.
3015       // The debug info verifier in LLVM operates based on the assumption that a
3016       // variable has the same size as its storage and we had to disable the check
3017       // for artificial variables.
3018       for (const auto *Field : RD->fields()) {
3019         llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit);
3020         StringRef FieldName = Field->getName();
3021 
3022         // Ignore unnamed fields. Do not ignore unnamed records.
3023         if (FieldName.empty() && !isa<RecordType>(Field->getType()))
3024           continue;
3025 
3026         // Use VarDecl's Tag, Scope and Line number.
3027         auto *D = DBuilder.createAutoVariable(
3028             Scope, FieldName, Unit, Line, FieldTy, CGM.getLangOpts().Optimize,
3029             Flags | llvm::DINode::FlagArtificial);
3030 
3031         // Insert an llvm.dbg.declare into the current block.
3032         DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(Expr),
3033                                llvm::DebugLoc::get(Line, Column, Scope),
3034                                Builder.GetInsertBlock());
3035       }
3036     }
3037   }
3038 
3039   // Create the descriptor for the variable.
3040   auto *D =
3041       ArgNo
3042           ? DBuilder.createParameterVariable(Scope, Name, *ArgNo, Unit, Line,
3043                                              Ty, CGM.getLangOpts().Optimize,
3044                                              Flags)
3045           : DBuilder.createAutoVariable(Scope, Name, Unit, Line, Ty,
3046                                         CGM.getLangOpts().Optimize, Flags);
3047 
3048   // Insert an llvm.dbg.declare into the current block.
3049   DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(Expr),
3050                          llvm::DebugLoc::get(Line, Column, Scope),
3051                          Builder.GetInsertBlock());
3052 }
3053 
3054 void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
3055                                             llvm::Value *Storage,
3056                                             CGBuilderTy &Builder) {
3057   assert(DebugKind >= codegenoptions::LimitedDebugInfo);
3058   EmitDeclare(VD, Storage, llvm::None, Builder);
3059 }
3060 
3061 llvm::DIType *CGDebugInfo::CreateSelfType(const QualType &QualTy,
3062                                           llvm::DIType *Ty) {
3063   llvm::DIType *CachedTy = getTypeOrNull(QualTy);
3064   if (CachedTy)
3065     Ty = CachedTy;
3066   return DBuilder.createObjectPointerType(Ty);
3067 }
3068 
3069 void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
3070     const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
3071     const CGBlockInfo &blockInfo, llvm::Instruction *InsertPoint) {
3072   assert(DebugKind >= codegenoptions::LimitedDebugInfo);
3073   assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
3074 
3075   if (Builder.GetInsertBlock() == nullptr)
3076     return;
3077 
3078   bool isByRef = VD->hasAttr<BlocksAttr>();
3079 
3080   uint64_t XOffset = 0;
3081   llvm::DIFile *Unit = getOrCreateFile(VD->getLocation());
3082   llvm::DIType *Ty;
3083   if (isByRef)
3084     Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
3085   else
3086     Ty = getOrCreateType(VD->getType(), Unit);
3087 
3088   // Self is passed along as an implicit non-arg variable in a
3089   // block. Mark it as the object pointer.
3090   if (isa<ImplicitParamDecl>(VD) && VD->getName() == "self")
3091     Ty = CreateSelfType(VD->getType(), Ty);
3092 
3093   // Get location information.
3094   unsigned Line = getLineNumber(VD->getLocation());
3095   unsigned Column = getColumnNumber(VD->getLocation());
3096 
3097   const llvm::DataLayout &target = CGM.getDataLayout();
3098 
3099   CharUnits offset = CharUnits::fromQuantity(
3100       target.getStructLayout(blockInfo.StructureType)
3101           ->getElementOffset(blockInfo.getCapture(VD).getIndex()));
3102 
3103   SmallVector<int64_t, 9> addr;
3104   if (isa<llvm::AllocaInst>(Storage))
3105     addr.push_back(llvm::dwarf::DW_OP_deref);
3106   addr.push_back(llvm::dwarf::DW_OP_plus);
3107   addr.push_back(offset.getQuantity());
3108   if (isByRef) {
3109     addr.push_back(llvm::dwarf::DW_OP_deref);
3110     addr.push_back(llvm::dwarf::DW_OP_plus);
3111     // offset of __forwarding field
3112     offset =
3113         CGM.getContext().toCharUnitsFromBits(target.getPointerSizeInBits(0));
3114     addr.push_back(offset.getQuantity());
3115     addr.push_back(llvm::dwarf::DW_OP_deref);
3116     addr.push_back(llvm::dwarf::DW_OP_plus);
3117     // offset of x field
3118     offset = CGM.getContext().toCharUnitsFromBits(XOffset);
3119     addr.push_back(offset.getQuantity());
3120   }
3121 
3122   // Create the descriptor for the variable.
3123   auto *D = DBuilder.createAutoVariable(
3124       cast<llvm::DILocalScope>(LexicalBlockStack.back()), VD->getName(), Unit,
3125       Line, Ty);
3126 
3127   // Insert an llvm.dbg.declare into the current block.
3128   auto DL = llvm::DebugLoc::get(Line, Column, LexicalBlockStack.back());
3129   if (InsertPoint)
3130     DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(addr), DL,
3131                            InsertPoint);
3132   else
3133     DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(addr), DL,
3134                            Builder.GetInsertBlock());
3135 }
3136 
3137 void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
3138                                            unsigned ArgNo,
3139                                            CGBuilderTy &Builder) {
3140   assert(DebugKind >= codegenoptions::LimitedDebugInfo);
3141   EmitDeclare(VD, AI, ArgNo, Builder);
3142 }
3143 
3144 namespace {
3145 struct BlockLayoutChunk {
3146   uint64_t OffsetInBits;
3147   const BlockDecl::Capture *Capture;
3148 };
3149 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
3150   return l.OffsetInBits < r.OffsetInBits;
3151 }
3152 }
3153 
3154 void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
3155                                                        llvm::Value *Arg,
3156                                                        unsigned ArgNo,
3157                                                        llvm::Value *LocalAddr,
3158                                                        CGBuilderTy &Builder) {
3159   assert(DebugKind >= codegenoptions::LimitedDebugInfo);
3160   ASTContext &C = CGM.getContext();
3161   const BlockDecl *blockDecl = block.getBlockDecl();
3162 
3163   // Collect some general information about the block's location.
3164   SourceLocation loc = blockDecl->getCaretLocation();
3165   llvm::DIFile *tunit = getOrCreateFile(loc);
3166   unsigned line = getLineNumber(loc);
3167   unsigned column = getColumnNumber(loc);
3168 
3169   // Build the debug-info type for the block literal.
3170   getDeclContextDescriptor(blockDecl);
3171 
3172   const llvm::StructLayout *blockLayout =
3173       CGM.getDataLayout().getStructLayout(block.StructureType);
3174 
3175   SmallVector<llvm::Metadata *, 16> fields;
3176   fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
3177                                    blockLayout->getElementOffsetInBits(0),
3178                                    tunit, tunit));
3179   fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
3180                                    blockLayout->getElementOffsetInBits(1),
3181                                    tunit, tunit));
3182   fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
3183                                    blockLayout->getElementOffsetInBits(2),
3184                                    tunit, tunit));
3185   auto *FnTy = block.getBlockExpr()->getFunctionType();
3186   auto FnPtrType = CGM.getContext().getPointerType(FnTy->desugar());
3187   fields.push_back(createFieldType("__FuncPtr", FnPtrType, 0, loc, AS_public,
3188                                    blockLayout->getElementOffsetInBits(3),
3189                                    tunit, tunit));
3190   fields.push_back(createFieldType(
3191       "__descriptor", C.getPointerType(block.NeedsCopyDispose
3192                                            ? C.getBlockDescriptorExtendedType()
3193                                            : C.getBlockDescriptorType()),
3194       0, loc, AS_public, blockLayout->getElementOffsetInBits(4), tunit, tunit));
3195 
3196   // We want to sort the captures by offset, not because DWARF
3197   // requires this, but because we're paranoid about debuggers.
3198   SmallVector<BlockLayoutChunk, 8> chunks;
3199 
3200   // 'this' capture.
3201   if (blockDecl->capturesCXXThis()) {
3202     BlockLayoutChunk chunk;
3203     chunk.OffsetInBits =
3204         blockLayout->getElementOffsetInBits(block.CXXThisIndex);
3205     chunk.Capture = nullptr;
3206     chunks.push_back(chunk);
3207   }
3208 
3209   // Variable captures.
3210   for (const auto &capture : blockDecl->captures()) {
3211     const VarDecl *variable = capture.getVariable();
3212     const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
3213 
3214     // Ignore constant captures.
3215     if (captureInfo.isConstant())
3216       continue;
3217 
3218     BlockLayoutChunk chunk;
3219     chunk.OffsetInBits =
3220         blockLayout->getElementOffsetInBits(captureInfo.getIndex());
3221     chunk.Capture = &capture;
3222     chunks.push_back(chunk);
3223   }
3224 
3225   // Sort by offset.
3226   llvm::array_pod_sort(chunks.begin(), chunks.end());
3227 
3228   for (SmallVectorImpl<BlockLayoutChunk>::iterator i = chunks.begin(),
3229                                                    e = chunks.end();
3230        i != e; ++i) {
3231     uint64_t offsetInBits = i->OffsetInBits;
3232     const BlockDecl::Capture *capture = i->Capture;
3233 
3234     // If we have a null capture, this must be the C++ 'this' capture.
3235     if (!capture) {
3236       const CXXMethodDecl *method =
3237           cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
3238       QualType type = method->getThisType(C);
3239 
3240       fields.push_back(createFieldType("this", type, 0, loc, AS_public,
3241                                        offsetInBits, tunit, tunit));
3242       continue;
3243     }
3244 
3245     const VarDecl *variable = capture->getVariable();
3246     StringRef name = variable->getName();
3247 
3248     llvm::DIType *fieldType;
3249     if (capture->isByRef()) {
3250       TypeInfo PtrInfo = C.getTypeInfo(C.VoidPtrTy);
3251 
3252       // FIXME: this creates a second copy of this type!
3253       uint64_t xoffset;
3254       fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
3255       fieldType = DBuilder.createPointerType(fieldType, PtrInfo.Width);
3256       fieldType =
3257           DBuilder.createMemberType(tunit, name, tunit, line, PtrInfo.Width,
3258                                     PtrInfo.Align, offsetInBits, 0, fieldType);
3259     } else {
3260       fieldType = createFieldType(name, variable->getType(), 0, loc, AS_public,
3261                                   offsetInBits, tunit, tunit);
3262     }
3263     fields.push_back(fieldType);
3264   }
3265 
3266   SmallString<36> typeName;
3267   llvm::raw_svector_ostream(typeName) << "__block_literal_"
3268                                       << CGM.getUniqueBlockCount();
3269 
3270   llvm::DINodeArray fieldsArray = DBuilder.getOrCreateArray(fields);
3271 
3272   llvm::DIType *type = DBuilder.createStructType(
3273       tunit, typeName.str(), tunit, line,
3274       CGM.getContext().toBits(block.BlockSize),
3275       CGM.getContext().toBits(block.BlockAlign), 0, nullptr, fieldsArray);
3276   type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
3277 
3278   // Get overall information about the block.
3279   unsigned flags = llvm::DINode::FlagArtificial;
3280   auto *scope = cast<llvm::DILocalScope>(LexicalBlockStack.back());
3281 
3282   // Create the descriptor for the parameter.
3283   auto *debugVar = DBuilder.createParameterVariable(
3284       scope, Arg->getName(), ArgNo, tunit, line, type,
3285       CGM.getLangOpts().Optimize, flags);
3286 
3287   if (LocalAddr) {
3288     // Insert an llvm.dbg.value into the current block.
3289     DBuilder.insertDbgValueIntrinsic(
3290         LocalAddr, 0, debugVar, DBuilder.createExpression(),
3291         llvm::DebugLoc::get(line, column, scope), Builder.GetInsertBlock());
3292   }
3293 
3294   // Insert an llvm.dbg.declare into the current block.
3295   DBuilder.insertDeclare(Arg, debugVar, DBuilder.createExpression(),
3296                          llvm::DebugLoc::get(line, column, scope),
3297                          Builder.GetInsertBlock());
3298 }
3299 
3300 llvm::DIDerivedType *
3301 CGDebugInfo::getOrCreateStaticDataMemberDeclarationOrNull(const VarDecl *D) {
3302   if (!D->isStaticDataMember())
3303     return nullptr;
3304 
3305   auto MI = StaticDataMemberCache.find(D->getCanonicalDecl());
3306   if (MI != StaticDataMemberCache.end()) {
3307     assert(MI->second && "Static data member declaration should still exist");
3308     return MI->second;
3309   }
3310 
3311   // If the member wasn't found in the cache, lazily construct and add it to the
3312   // type (used when a limited form of the type is emitted).
3313   auto DC = D->getDeclContext();
3314   auto *Ctxt = cast<llvm::DICompositeType>(getDeclContextDescriptor(D));
3315   return CreateRecordStaticField(D, Ctxt, cast<RecordDecl>(DC));
3316 }
3317 
3318 llvm::DIGlobalVariable *CGDebugInfo::CollectAnonRecordDecls(
3319     const RecordDecl *RD, llvm::DIFile *Unit, unsigned LineNo,
3320     StringRef LinkageName, llvm::GlobalVariable *Var, llvm::DIScope *DContext) {
3321   llvm::DIGlobalVariable *GV = nullptr;
3322 
3323   for (const auto *Field : RD->fields()) {
3324     llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit);
3325     StringRef FieldName = Field->getName();
3326 
3327     // Ignore unnamed fields, but recurse into anonymous records.
3328     if (FieldName.empty()) {
3329       const RecordType *RT = dyn_cast<RecordType>(Field->getType());
3330       if (RT)
3331         GV = CollectAnonRecordDecls(RT->getDecl(), Unit, LineNo, LinkageName,
3332                                     Var, DContext);
3333       continue;
3334     }
3335     // Use VarDecl's Tag, Scope and Line number.
3336     GV = DBuilder.createGlobalVariable(DContext, FieldName, LinkageName, Unit,
3337                                        LineNo, FieldTy,
3338                                        Var->hasInternalLinkage(), Var, nullptr);
3339   }
3340   return GV;
3341 }
3342 
3343 void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
3344                                      const VarDecl *D) {
3345   assert(DebugKind >= codegenoptions::LimitedDebugInfo);
3346   // Create global variable debug descriptor.
3347   llvm::DIFile *Unit = nullptr;
3348   llvm::DIScope *DContext = nullptr;
3349   unsigned LineNo;
3350   StringRef DeclName, LinkageName;
3351   QualType T;
3352   collectVarDeclProps(D, Unit, LineNo, T, DeclName, LinkageName, DContext);
3353 
3354   // Attempt to store one global variable for the declaration - even if we
3355   // emit a lot of fields.
3356   llvm::DIGlobalVariable *GV = nullptr;
3357 
3358   // If this is an anonymous union then we'll want to emit a global
3359   // variable for each member of the anonymous union so that it's possible
3360   // to find the name of any field in the union.
3361   if (T->isUnionType() && DeclName.empty()) {
3362     const RecordDecl *RD = T->castAs<RecordType>()->getDecl();
3363     assert(RD->isAnonymousStructOrUnion() &&
3364            "unnamed non-anonymous struct or union?");
3365     GV = CollectAnonRecordDecls(RD, Unit, LineNo, LinkageName, Var, DContext);
3366   } else {
3367     GV = DBuilder.createGlobalVariable(
3368         DContext, DeclName, LinkageName, Unit, LineNo, getOrCreateType(T, Unit),
3369         Var->hasInternalLinkage(), Var,
3370         getOrCreateStaticDataMemberDeclarationOrNull(D));
3371   }
3372   DeclCache[D->getCanonicalDecl()].reset(static_cast<llvm::Metadata *>(GV));
3373 }
3374 
3375 void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
3376                                      llvm::Constant *Init) {
3377   assert(DebugKind >= codegenoptions::LimitedDebugInfo);
3378   // Create the descriptor for the variable.
3379   llvm::DIFile *Unit = getOrCreateFile(VD->getLocation());
3380   StringRef Name = VD->getName();
3381   llvm::DIType *Ty = getOrCreateType(VD->getType(), Unit);
3382   if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
3383     const EnumDecl *ED = cast<EnumDecl>(ECD->getDeclContext());
3384     assert(isa<EnumType>(ED->getTypeForDecl()) && "Enum without EnumType?");
3385     Ty = getOrCreateType(QualType(ED->getTypeForDecl(), 0), Unit);
3386   }
3387   // Do not use global variables for enums.
3388   //
3389   // FIXME: why not?
3390   if (Ty->getTag() == llvm::dwarf::DW_TAG_enumeration_type)
3391     return;
3392   // Do not emit separate definitions for function local const/statics.
3393   if (isa<FunctionDecl>(VD->getDeclContext()))
3394     return;
3395   VD = cast<ValueDecl>(VD->getCanonicalDecl());
3396   auto *VarD = cast<VarDecl>(VD);
3397   if (VarD->isStaticDataMember()) {
3398     auto *RD = cast<RecordDecl>(VarD->getDeclContext());
3399     getDeclContextDescriptor(VarD);
3400     // Ensure that the type is retained even though it's otherwise unreferenced.
3401     RetainedTypes.push_back(
3402         CGM.getContext().getRecordType(RD).getAsOpaquePtr());
3403     return;
3404   }
3405 
3406   llvm::DIScope *DContext = getDeclContextDescriptor(VD);
3407 
3408   auto &GV = DeclCache[VD];
3409   if (GV)
3410     return;
3411   GV.reset(DBuilder.createGlobalVariable(
3412       DContext, Name, StringRef(), Unit, getLineNumber(VD->getLocation()), Ty,
3413       true, Init, getOrCreateStaticDataMemberDeclarationOrNull(VarD)));
3414 }
3415 
3416 llvm::DIScope *CGDebugInfo::getCurrentContextDescriptor(const Decl *D) {
3417   if (!LexicalBlockStack.empty())
3418     return LexicalBlockStack.back();
3419   llvm::DIScope *Mod = getParentModuleOrNull(D);
3420   return getContextDescriptor(D, Mod ? Mod : TheCU);
3421 }
3422 
3423 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) {
3424   if (CGM.getCodeGenOpts().getDebugInfo() < codegenoptions::LimitedDebugInfo)
3425     return;
3426   const NamespaceDecl *NSDecl = UD.getNominatedNamespace();
3427   if (!NSDecl->isAnonymousNamespace() ||
3428       CGM.getCodeGenOpts().DebugExplicitImport) {
3429     DBuilder.createImportedModule(
3430         getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())),
3431         getOrCreateNameSpace(NSDecl),
3432         getLineNumber(UD.getLocation()));
3433   }
3434 }
3435 
3436 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) {
3437   if (CGM.getCodeGenOpts().getDebugInfo() < codegenoptions::LimitedDebugInfo)
3438     return;
3439   assert(UD.shadow_size() &&
3440          "We shouldn't be codegening an invalid UsingDecl containing no decls");
3441   // Emitting one decl is sufficient - debuggers can detect that this is an
3442   // overloaded name & provide lookup for all the overloads.
3443   const UsingShadowDecl &USD = **UD.shadow_begin();
3444   if (llvm::DINode *Target =
3445           getDeclarationOrDefinition(USD.getUnderlyingDecl()))
3446     DBuilder.createImportedDeclaration(
3447         getCurrentContextDescriptor(cast<Decl>(USD.getDeclContext())), Target,
3448         getLineNumber(USD.getLocation()));
3449 }
3450 
3451 void CGDebugInfo::EmitImportDecl(const ImportDecl &ID) {
3452   if (Module *M = ID.getImportedModule()) {
3453     auto Info = ExternalASTSource::ASTSourceDescriptor(*M);
3454     DBuilder.createImportedDeclaration(
3455         getCurrentContextDescriptor(cast<Decl>(ID.getDeclContext())),
3456         getOrCreateModuleRef(Info, DebugTypeExtRefs),
3457         getLineNumber(ID.getLocation()));
3458   }
3459 }
3460 
3461 llvm::DIImportedEntity *
3462 CGDebugInfo::EmitNamespaceAlias(const NamespaceAliasDecl &NA) {
3463   if (CGM.getCodeGenOpts().getDebugInfo() < codegenoptions::LimitedDebugInfo)
3464     return nullptr;
3465   auto &VH = NamespaceAliasCache[&NA];
3466   if (VH)
3467     return cast<llvm::DIImportedEntity>(VH);
3468   llvm::DIImportedEntity *R;
3469   if (const NamespaceAliasDecl *Underlying =
3470           dyn_cast<NamespaceAliasDecl>(NA.getAliasedNamespace()))
3471     // This could cache & dedup here rather than relying on metadata deduping.
3472     R = DBuilder.createImportedDeclaration(
3473         getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())),
3474         EmitNamespaceAlias(*Underlying), getLineNumber(NA.getLocation()),
3475         NA.getName());
3476   else
3477     R = DBuilder.createImportedDeclaration(
3478         getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())),
3479         getOrCreateNameSpace(cast<NamespaceDecl>(NA.getAliasedNamespace())),
3480         getLineNumber(NA.getLocation()), NA.getName());
3481   VH.reset(R);
3482   return R;
3483 }
3484 
3485 llvm::DINamespace *
3486 CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
3487   NSDecl = NSDecl->getCanonicalDecl();
3488   auto I = NameSpaceCache.find(NSDecl);
3489   if (I != NameSpaceCache.end())
3490     return cast<llvm::DINamespace>(I->second);
3491 
3492   unsigned LineNo = getLineNumber(NSDecl->getLocation());
3493   llvm::DIFile *FileD = getOrCreateFile(NSDecl->getLocation());
3494   llvm::DIScope *Context = getDeclContextDescriptor(NSDecl);
3495   llvm::DINamespace *NS =
3496       DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
3497   NameSpaceCache[NSDecl].reset(NS);
3498   return NS;
3499 }
3500 
3501 void CGDebugInfo::setDwoId(uint64_t Signature) {
3502   assert(TheCU && "no main compile unit");
3503   TheCU->setDWOId(Signature);
3504 }
3505 
3506 
3507 void CGDebugInfo::finalize() {
3508   // Creating types might create further types - invalidating the current
3509   // element and the size(), so don't cache/reference them.
3510   for (size_t i = 0; i != ObjCInterfaceCache.size(); ++i) {
3511     ObjCInterfaceCacheEntry E = ObjCInterfaceCache[i];
3512     llvm::DIType *Ty = E.Type->getDecl()->getDefinition()
3513                            ? CreateTypeDefinition(E.Type, E.Unit)
3514                            : E.Decl;
3515     DBuilder.replaceTemporary(llvm::TempDIType(E.Decl), Ty);
3516   }
3517 
3518   for (auto p : ReplaceMap) {
3519     assert(p.second);
3520     auto *Ty = cast<llvm::DIType>(p.second);
3521     assert(Ty->isForwardDecl());
3522 
3523     auto it = TypeCache.find(p.first);
3524     assert(it != TypeCache.end());
3525     assert(it->second);
3526 
3527     DBuilder.replaceTemporary(llvm::TempDIType(Ty),
3528                               cast<llvm::DIType>(it->second));
3529   }
3530 
3531   for (const auto &p : FwdDeclReplaceMap) {
3532     assert(p.second);
3533     llvm::TempMDNode FwdDecl(cast<llvm::MDNode>(p.second));
3534     llvm::Metadata *Repl;
3535 
3536     auto it = DeclCache.find(p.first);
3537     // If there has been no definition for the declaration, call RAUW
3538     // with ourselves, that will destroy the temporary MDNode and
3539     // replace it with a standard one, avoiding leaking memory.
3540     if (it == DeclCache.end())
3541       Repl = p.second;
3542     else
3543       Repl = it->second;
3544 
3545     DBuilder.replaceTemporary(std::move(FwdDecl), cast<llvm::MDNode>(Repl));
3546   }
3547 
3548   // We keep our own list of retained types, because we need to look
3549   // up the final type in the type cache.
3550   for (auto &RT : RetainedTypes)
3551     if (auto MD = TypeCache[RT])
3552       DBuilder.retainType(cast<llvm::DIType>(MD));
3553 
3554   DBuilder.finalize();
3555 }
3556 
3557 void CGDebugInfo::EmitExplicitCastType(QualType Ty) {
3558   if (CGM.getCodeGenOpts().getDebugInfo() < codegenoptions::LimitedDebugInfo)
3559     return;
3560 
3561   if (auto *DieTy = getOrCreateType(Ty, getOrCreateMainFile()))
3562     // Don't ignore in case of explicit cast where it is referenced indirectly.
3563     DBuilder.retainType(DieTy);
3564 }
3565