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