1 //===- ASTContext.cpp - Context to hold long-lived AST nodes --------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 //  This file implements the ASTContext interface.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "clang/AST/ASTContext.h"
14 #include "CXXABI.h"
15 #include "Interp/Context.h"
16 #include "clang/AST/APValue.h"
17 #include "clang/AST/ASTConcept.h"
18 #include "clang/AST/ASTMutationListener.h"
19 #include "clang/AST/ASTTypeTraits.h"
20 #include "clang/AST/Attr.h"
21 #include "clang/AST/AttrIterator.h"
22 #include "clang/AST/CharUnits.h"
23 #include "clang/AST/Comment.h"
24 #include "clang/AST/Decl.h"
25 #include "clang/AST/DeclBase.h"
26 #include "clang/AST/DeclCXX.h"
27 #include "clang/AST/DeclContextInternals.h"
28 #include "clang/AST/DeclObjC.h"
29 #include "clang/AST/DeclOpenMP.h"
30 #include "clang/AST/DeclTemplate.h"
31 #include "clang/AST/DeclarationName.h"
32 #include "clang/AST/DependenceFlags.h"
33 #include "clang/AST/Expr.h"
34 #include "clang/AST/ExprCXX.h"
35 #include "clang/AST/ExprConcepts.h"
36 #include "clang/AST/ExternalASTSource.h"
37 #include "clang/AST/Mangle.h"
38 #include "clang/AST/MangleNumberingContext.h"
39 #include "clang/AST/NestedNameSpecifier.h"
40 #include "clang/AST/ParentMapContext.h"
41 #include "clang/AST/RawCommentList.h"
42 #include "clang/AST/RecordLayout.h"
43 #include "clang/AST/Stmt.h"
44 #include "clang/AST/TemplateBase.h"
45 #include "clang/AST/TemplateName.h"
46 #include "clang/AST/Type.h"
47 #include "clang/AST/TypeLoc.h"
48 #include "clang/AST/UnresolvedSet.h"
49 #include "clang/AST/VTableBuilder.h"
50 #include "clang/Basic/AddressSpaces.h"
51 #include "clang/Basic/Builtins.h"
52 #include "clang/Basic/CommentOptions.h"
53 #include "clang/Basic/ExceptionSpecificationType.h"
54 #include "clang/Basic/IdentifierTable.h"
55 #include "clang/Basic/LLVM.h"
56 #include "clang/Basic/LangOptions.h"
57 #include "clang/Basic/Linkage.h"
58 #include "clang/Basic/Module.h"
59 #include "clang/Basic/ObjCRuntime.h"
60 #include "clang/Basic/SanitizerBlacklist.h"
61 #include "clang/Basic/SourceLocation.h"
62 #include "clang/Basic/SourceManager.h"
63 #include "clang/Basic/Specifiers.h"
64 #include "clang/Basic/TargetCXXABI.h"
65 #include "clang/Basic/TargetInfo.h"
66 #include "clang/Basic/XRayLists.h"
67 #include "llvm/ADT/APFixedPoint.h"
68 #include "llvm/ADT/APInt.h"
69 #include "llvm/ADT/APSInt.h"
70 #include "llvm/ADT/ArrayRef.h"
71 #include "llvm/ADT/DenseMap.h"
72 #include "llvm/ADT/DenseSet.h"
73 #include "llvm/ADT/FoldingSet.h"
74 #include "llvm/ADT/None.h"
75 #include "llvm/ADT/Optional.h"
76 #include "llvm/ADT/PointerUnion.h"
77 #include "llvm/ADT/STLExtras.h"
78 #include "llvm/ADT/SmallPtrSet.h"
79 #include "llvm/ADT/SmallVector.h"
80 #include "llvm/ADT/StringExtras.h"
81 #include "llvm/ADT/StringRef.h"
82 #include "llvm/ADT/Triple.h"
83 #include "llvm/Support/Capacity.h"
84 #include "llvm/Support/Casting.h"
85 #include "llvm/Support/Compiler.h"
86 #include "llvm/Support/ErrorHandling.h"
87 #include "llvm/Support/MathExtras.h"
88 #include "llvm/Support/raw_ostream.h"
89 #include <algorithm>
90 #include <cassert>
91 #include <cstddef>
92 #include <cstdint>
93 #include <cstdlib>
94 #include <map>
95 #include <memory>
96 #include <string>
97 #include <tuple>
98 #include <utility>
99 
100 using namespace clang;
101 
102 enum FloatingRank {
103   BFloat16Rank, Float16Rank, HalfRank, FloatRank, DoubleRank, LongDoubleRank, Float128Rank
104 };
105 
106 /// \returns location that is relevant when searching for Doc comments related
107 /// to \p D.
108 static SourceLocation getDeclLocForCommentSearch(const Decl *D,
109                                                  SourceManager &SourceMgr) {
110   assert(D);
111 
112   // User can not attach documentation to implicit declarations.
113   if (D->isImplicit())
114     return {};
115 
116   // User can not attach documentation to implicit instantiations.
117   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
118     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
119       return {};
120   }
121 
122   if (const auto *VD = dyn_cast<VarDecl>(D)) {
123     if (VD->isStaticDataMember() &&
124         VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
125       return {};
126   }
127 
128   if (const auto *CRD = dyn_cast<CXXRecordDecl>(D)) {
129     if (CRD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
130       return {};
131   }
132 
133   if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(D)) {
134     TemplateSpecializationKind TSK = CTSD->getSpecializationKind();
135     if (TSK == TSK_ImplicitInstantiation ||
136         TSK == TSK_Undeclared)
137       return {};
138   }
139 
140   if (const auto *ED = dyn_cast<EnumDecl>(D)) {
141     if (ED->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
142       return {};
143   }
144   if (const auto *TD = dyn_cast<TagDecl>(D)) {
145     // When tag declaration (but not definition!) is part of the
146     // decl-specifier-seq of some other declaration, it doesn't get comment
147     if (TD->isEmbeddedInDeclarator() && !TD->isCompleteDefinition())
148       return {};
149   }
150   // TODO: handle comments for function parameters properly.
151   if (isa<ParmVarDecl>(D))
152     return {};
153 
154   // TODO: we could look up template parameter documentation in the template
155   // documentation.
156   if (isa<TemplateTypeParmDecl>(D) ||
157       isa<NonTypeTemplateParmDecl>(D) ||
158       isa<TemplateTemplateParmDecl>(D))
159     return {};
160 
161   // Find declaration location.
162   // For Objective-C declarations we generally don't expect to have multiple
163   // declarators, thus use declaration starting location as the "declaration
164   // location".
165   // For all other declarations multiple declarators are used quite frequently,
166   // so we use the location of the identifier as the "declaration location".
167   if (isa<ObjCMethodDecl>(D) || isa<ObjCContainerDecl>(D) ||
168       isa<ObjCPropertyDecl>(D) ||
169       isa<RedeclarableTemplateDecl>(D) ||
170       isa<ClassTemplateSpecializationDecl>(D) ||
171       // Allow association with Y across {} in `typedef struct X {} Y`.
172       isa<TypedefDecl>(D))
173     return D->getBeginLoc();
174   else {
175     const SourceLocation DeclLoc = D->getLocation();
176     if (DeclLoc.isMacroID()) {
177       if (isa<TypedefDecl>(D)) {
178         // If location of the typedef name is in a macro, it is because being
179         // declared via a macro. Try using declaration's starting location as
180         // the "declaration location".
181         return D->getBeginLoc();
182       } else if (const auto *TD = dyn_cast<TagDecl>(D)) {
183         // If location of the tag decl is inside a macro, but the spelling of
184         // the tag name comes from a macro argument, it looks like a special
185         // macro like NS_ENUM is being used to define the tag decl.  In that
186         // case, adjust the source location to the expansion loc so that we can
187         // attach the comment to the tag decl.
188         if (SourceMgr.isMacroArgExpansion(DeclLoc) &&
189             TD->isCompleteDefinition())
190           return SourceMgr.getExpansionLoc(DeclLoc);
191       }
192     }
193     return DeclLoc;
194   }
195 
196   return {};
197 }
198 
199 RawComment *ASTContext::getRawCommentForDeclNoCacheImpl(
200     const Decl *D, const SourceLocation RepresentativeLocForDecl,
201     const std::map<unsigned, RawComment *> &CommentsInTheFile) const {
202   // If the declaration doesn't map directly to a location in a file, we
203   // can't find the comment.
204   if (RepresentativeLocForDecl.isInvalid() ||
205       !RepresentativeLocForDecl.isFileID())
206     return nullptr;
207 
208   // If there are no comments anywhere, we won't find anything.
209   if (CommentsInTheFile.empty())
210     return nullptr;
211 
212   // Decompose the location for the declaration and find the beginning of the
213   // file buffer.
214   const std::pair<FileID, unsigned> DeclLocDecomp =
215       SourceMgr.getDecomposedLoc(RepresentativeLocForDecl);
216 
217   // Slow path.
218   auto OffsetCommentBehindDecl =
219       CommentsInTheFile.lower_bound(DeclLocDecomp.second);
220 
221   // First check whether we have a trailing comment.
222   if (OffsetCommentBehindDecl != CommentsInTheFile.end()) {
223     RawComment *CommentBehindDecl = OffsetCommentBehindDecl->second;
224     if ((CommentBehindDecl->isDocumentation() ||
225          LangOpts.CommentOpts.ParseAllComments) &&
226         CommentBehindDecl->isTrailingComment() &&
227         (isa<FieldDecl>(D) || isa<EnumConstantDecl>(D) || isa<VarDecl>(D) ||
228          isa<ObjCMethodDecl>(D) || isa<ObjCPropertyDecl>(D))) {
229 
230       // Check that Doxygen trailing comment comes after the declaration, starts
231       // on the same line and in the same file as the declaration.
232       if (SourceMgr.getLineNumber(DeclLocDecomp.first, DeclLocDecomp.second) ==
233           Comments.getCommentBeginLine(CommentBehindDecl, DeclLocDecomp.first,
234                                        OffsetCommentBehindDecl->first)) {
235         return CommentBehindDecl;
236       }
237     }
238   }
239 
240   // The comment just after the declaration was not a trailing comment.
241   // Let's look at the previous comment.
242   if (OffsetCommentBehindDecl == CommentsInTheFile.begin())
243     return nullptr;
244 
245   auto OffsetCommentBeforeDecl = --OffsetCommentBehindDecl;
246   RawComment *CommentBeforeDecl = OffsetCommentBeforeDecl->second;
247 
248   // Check that we actually have a non-member Doxygen comment.
249   if (!(CommentBeforeDecl->isDocumentation() ||
250         LangOpts.CommentOpts.ParseAllComments) ||
251       CommentBeforeDecl->isTrailingComment())
252     return nullptr;
253 
254   // Decompose the end of the comment.
255   const unsigned CommentEndOffset =
256       Comments.getCommentEndOffset(CommentBeforeDecl);
257 
258   // Get the corresponding buffer.
259   bool Invalid = false;
260   const char *Buffer = SourceMgr.getBufferData(DeclLocDecomp.first,
261                                                &Invalid).data();
262   if (Invalid)
263     return nullptr;
264 
265   // Extract text between the comment and declaration.
266   StringRef Text(Buffer + CommentEndOffset,
267                  DeclLocDecomp.second - CommentEndOffset);
268 
269   // There should be no other declarations or preprocessor directives between
270   // comment and declaration.
271   if (Text.find_first_of(";{}#@") != StringRef::npos)
272     return nullptr;
273 
274   return CommentBeforeDecl;
275 }
276 
277 RawComment *ASTContext::getRawCommentForDeclNoCache(const Decl *D) const {
278   const SourceLocation DeclLoc = getDeclLocForCommentSearch(D, SourceMgr);
279 
280   // If the declaration doesn't map directly to a location in a file, we
281   // can't find the comment.
282   if (DeclLoc.isInvalid() || !DeclLoc.isFileID())
283     return nullptr;
284 
285   if (ExternalSource && !CommentsLoaded) {
286     ExternalSource->ReadComments();
287     CommentsLoaded = true;
288   }
289 
290   if (Comments.empty())
291     return nullptr;
292 
293   const FileID File = SourceMgr.getDecomposedLoc(DeclLoc).first;
294   const auto CommentsInThisFile = Comments.getCommentsInFile(File);
295   if (!CommentsInThisFile || CommentsInThisFile->empty())
296     return nullptr;
297 
298   return getRawCommentForDeclNoCacheImpl(D, DeclLoc, *CommentsInThisFile);
299 }
300 
301 void ASTContext::addComment(const RawComment &RC) {
302   assert(LangOpts.RetainCommentsFromSystemHeaders ||
303          !SourceMgr.isInSystemHeader(RC.getSourceRange().getBegin()));
304   Comments.addComment(RC, LangOpts.CommentOpts, BumpAlloc);
305 }
306 
307 /// If we have a 'templated' declaration for a template, adjust 'D' to
308 /// refer to the actual template.
309 /// If we have an implicit instantiation, adjust 'D' to refer to template.
310 static const Decl &adjustDeclToTemplate(const Decl &D) {
311   if (const auto *FD = dyn_cast<FunctionDecl>(&D)) {
312     // Is this function declaration part of a function template?
313     if (const FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
314       return *FTD;
315 
316     // Nothing to do if function is not an implicit instantiation.
317     if (FD->getTemplateSpecializationKind() != TSK_ImplicitInstantiation)
318       return D;
319 
320     // Function is an implicit instantiation of a function template?
321     if (const FunctionTemplateDecl *FTD = FD->getPrimaryTemplate())
322       return *FTD;
323 
324     // Function is instantiated from a member definition of a class template?
325     if (const FunctionDecl *MemberDecl =
326             FD->getInstantiatedFromMemberFunction())
327       return *MemberDecl;
328 
329     return D;
330   }
331   if (const auto *VD = dyn_cast<VarDecl>(&D)) {
332     // Static data member is instantiated from a member definition of a class
333     // template?
334     if (VD->isStaticDataMember())
335       if (const VarDecl *MemberDecl = VD->getInstantiatedFromStaticDataMember())
336         return *MemberDecl;
337 
338     return D;
339   }
340   if (const auto *CRD = dyn_cast<CXXRecordDecl>(&D)) {
341     // Is this class declaration part of a class template?
342     if (const ClassTemplateDecl *CTD = CRD->getDescribedClassTemplate())
343       return *CTD;
344 
345     // Class is an implicit instantiation of a class template or partial
346     // specialization?
347     if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(CRD)) {
348       if (CTSD->getSpecializationKind() != TSK_ImplicitInstantiation)
349         return D;
350       llvm::PointerUnion<ClassTemplateDecl *,
351                          ClassTemplatePartialSpecializationDecl *>
352           PU = CTSD->getSpecializedTemplateOrPartial();
353       return PU.is<ClassTemplateDecl *>()
354                  ? *static_cast<const Decl *>(PU.get<ClassTemplateDecl *>())
355                  : *static_cast<const Decl *>(
356                        PU.get<ClassTemplatePartialSpecializationDecl *>());
357     }
358 
359     // Class is instantiated from a member definition of a class template?
360     if (const MemberSpecializationInfo *Info =
361             CRD->getMemberSpecializationInfo())
362       return *Info->getInstantiatedFrom();
363 
364     return D;
365   }
366   if (const auto *ED = dyn_cast<EnumDecl>(&D)) {
367     // Enum is instantiated from a member definition of a class template?
368     if (const EnumDecl *MemberDecl = ED->getInstantiatedFromMemberEnum())
369       return *MemberDecl;
370 
371     return D;
372   }
373   // FIXME: Adjust alias templates?
374   return D;
375 }
376 
377 const RawComment *ASTContext::getRawCommentForAnyRedecl(
378                                                 const Decl *D,
379                                                 const Decl **OriginalDecl) const {
380   if (!D) {
381     if (OriginalDecl)
382       OriginalDecl = nullptr;
383     return nullptr;
384   }
385 
386   D = &adjustDeclToTemplate(*D);
387 
388   // Any comment directly attached to D?
389   {
390     auto DeclComment = DeclRawComments.find(D);
391     if (DeclComment != DeclRawComments.end()) {
392       if (OriginalDecl)
393         *OriginalDecl = D;
394       return DeclComment->second;
395     }
396   }
397 
398   // Any comment attached to any redeclaration of D?
399   const Decl *CanonicalD = D->getCanonicalDecl();
400   if (!CanonicalD)
401     return nullptr;
402 
403   {
404     auto RedeclComment = RedeclChainComments.find(CanonicalD);
405     if (RedeclComment != RedeclChainComments.end()) {
406       if (OriginalDecl)
407         *OriginalDecl = RedeclComment->second;
408       auto CommentAtRedecl = DeclRawComments.find(RedeclComment->second);
409       assert(CommentAtRedecl != DeclRawComments.end() &&
410              "This decl is supposed to have comment attached.");
411       return CommentAtRedecl->second;
412     }
413   }
414 
415   // Any redeclarations of D that we haven't checked for comments yet?
416   // We can't use DenseMap::iterator directly since it'd get invalid.
417   auto LastCheckedRedecl = [this, CanonicalD]() -> const Decl * {
418     auto LookupRes = CommentlessRedeclChains.find(CanonicalD);
419     if (LookupRes != CommentlessRedeclChains.end())
420       return LookupRes->second;
421     return nullptr;
422   }();
423 
424   for (const auto Redecl : D->redecls()) {
425     assert(Redecl);
426     // Skip all redeclarations that have been checked previously.
427     if (LastCheckedRedecl) {
428       if (LastCheckedRedecl == Redecl) {
429         LastCheckedRedecl = nullptr;
430       }
431       continue;
432     }
433     const RawComment *RedeclComment = getRawCommentForDeclNoCache(Redecl);
434     if (RedeclComment) {
435       cacheRawCommentForDecl(*Redecl, *RedeclComment);
436       if (OriginalDecl)
437         *OriginalDecl = Redecl;
438       return RedeclComment;
439     }
440     CommentlessRedeclChains[CanonicalD] = Redecl;
441   }
442 
443   if (OriginalDecl)
444     *OriginalDecl = nullptr;
445   return nullptr;
446 }
447 
448 void ASTContext::cacheRawCommentForDecl(const Decl &OriginalD,
449                                         const RawComment &Comment) const {
450   assert(Comment.isDocumentation() || LangOpts.CommentOpts.ParseAllComments);
451   DeclRawComments.try_emplace(&OriginalD, &Comment);
452   const Decl *const CanonicalDecl = OriginalD.getCanonicalDecl();
453   RedeclChainComments.try_emplace(CanonicalDecl, &OriginalD);
454   CommentlessRedeclChains.erase(CanonicalDecl);
455 }
456 
457 static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod,
458                    SmallVectorImpl<const NamedDecl *> &Redeclared) {
459   const DeclContext *DC = ObjCMethod->getDeclContext();
460   if (const auto *IMD = dyn_cast<ObjCImplDecl>(DC)) {
461     const ObjCInterfaceDecl *ID = IMD->getClassInterface();
462     if (!ID)
463       return;
464     // Add redeclared method here.
465     for (const auto *Ext : ID->known_extensions()) {
466       if (ObjCMethodDecl *RedeclaredMethod =
467             Ext->getMethod(ObjCMethod->getSelector(),
468                                   ObjCMethod->isInstanceMethod()))
469         Redeclared.push_back(RedeclaredMethod);
470     }
471   }
472 }
473 
474 void ASTContext::attachCommentsToJustParsedDecls(ArrayRef<Decl *> Decls,
475                                                  const Preprocessor *PP) {
476   if (Comments.empty() || Decls.empty())
477     return;
478 
479   FileID File;
480   for (Decl *D : Decls) {
481     SourceLocation Loc = D->getLocation();
482     if (Loc.isValid()) {
483       // See if there are any new comments that are not attached to a decl.
484       // The location doesn't have to be precise - we care only about the file.
485       File = SourceMgr.getDecomposedLoc(Loc).first;
486       break;
487     }
488   }
489 
490   if (File.isInvalid())
491     return;
492 
493   auto CommentsInThisFile = Comments.getCommentsInFile(File);
494   if (!CommentsInThisFile || CommentsInThisFile->empty() ||
495       CommentsInThisFile->rbegin()->second->isAttached())
496     return;
497 
498   // There is at least one comment not attached to a decl.
499   // Maybe it should be attached to one of Decls?
500   //
501   // Note that this way we pick up not only comments that precede the
502   // declaration, but also comments that *follow* the declaration -- thanks to
503   // the lookahead in the lexer: we've consumed the semicolon and looked
504   // ahead through comments.
505 
506   for (const Decl *D : Decls) {
507     assert(D);
508     if (D->isInvalidDecl())
509       continue;
510 
511     D = &adjustDeclToTemplate(*D);
512 
513     const SourceLocation DeclLoc = getDeclLocForCommentSearch(D, SourceMgr);
514 
515     if (DeclLoc.isInvalid() || !DeclLoc.isFileID())
516       continue;
517 
518     if (DeclRawComments.count(D) > 0)
519       continue;
520 
521     if (RawComment *const DocComment =
522             getRawCommentForDeclNoCacheImpl(D, DeclLoc, *CommentsInThisFile)) {
523       cacheRawCommentForDecl(*D, *DocComment);
524       comments::FullComment *FC = DocComment->parse(*this, PP, D);
525       ParsedComments[D->getCanonicalDecl()] = FC;
526     }
527   }
528 }
529 
530 comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC,
531                                                     const Decl *D) const {
532   auto *ThisDeclInfo = new (*this) comments::DeclInfo;
533   ThisDeclInfo->CommentDecl = D;
534   ThisDeclInfo->IsFilled = false;
535   ThisDeclInfo->fill();
536   ThisDeclInfo->CommentDecl = FC->getDecl();
537   if (!ThisDeclInfo->TemplateParameters)
538     ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters;
539   comments::FullComment *CFC =
540     new (*this) comments::FullComment(FC->getBlocks(),
541                                       ThisDeclInfo);
542   return CFC;
543 }
544 
545 comments::FullComment *ASTContext::getLocalCommentForDeclUncached(const Decl *D) const {
546   const RawComment *RC = getRawCommentForDeclNoCache(D);
547   return RC ? RC->parse(*this, nullptr, D) : nullptr;
548 }
549 
550 comments::FullComment *ASTContext::getCommentForDecl(
551                                               const Decl *D,
552                                               const Preprocessor *PP) const {
553   if (!D || D->isInvalidDecl())
554     return nullptr;
555   D = &adjustDeclToTemplate(*D);
556 
557   const Decl *Canonical = D->getCanonicalDecl();
558   llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos =
559       ParsedComments.find(Canonical);
560 
561   if (Pos != ParsedComments.end()) {
562     if (Canonical != D) {
563       comments::FullComment *FC = Pos->second;
564       comments::FullComment *CFC = cloneFullComment(FC, D);
565       return CFC;
566     }
567     return Pos->second;
568   }
569 
570   const Decl *OriginalDecl = nullptr;
571 
572   const RawComment *RC = getRawCommentForAnyRedecl(D, &OriginalDecl);
573   if (!RC) {
574     if (isa<ObjCMethodDecl>(D) || isa<FunctionDecl>(D)) {
575       SmallVector<const NamedDecl*, 8> Overridden;
576       const auto *OMD = dyn_cast<ObjCMethodDecl>(D);
577       if (OMD && OMD->isPropertyAccessor())
578         if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
579           if (comments::FullComment *FC = getCommentForDecl(PDecl, PP))
580             return cloneFullComment(FC, D);
581       if (OMD)
582         addRedeclaredMethods(OMD, Overridden);
583       getOverriddenMethods(dyn_cast<NamedDecl>(D), Overridden);
584       for (unsigned i = 0, e = Overridden.size(); i < e; i++)
585         if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP))
586           return cloneFullComment(FC, D);
587     }
588     else if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
589       // Attach any tag type's documentation to its typedef if latter
590       // does not have one of its own.
591       QualType QT = TD->getUnderlyingType();
592       if (const auto *TT = QT->getAs<TagType>())
593         if (const Decl *TD = TT->getDecl())
594           if (comments::FullComment *FC = getCommentForDecl(TD, PP))
595             return cloneFullComment(FC, D);
596     }
597     else if (const auto *IC = dyn_cast<ObjCInterfaceDecl>(D)) {
598       while (IC->getSuperClass()) {
599         IC = IC->getSuperClass();
600         if (comments::FullComment *FC = getCommentForDecl(IC, PP))
601           return cloneFullComment(FC, D);
602       }
603     }
604     else if (const auto *CD = dyn_cast<ObjCCategoryDecl>(D)) {
605       if (const ObjCInterfaceDecl *IC = CD->getClassInterface())
606         if (comments::FullComment *FC = getCommentForDecl(IC, PP))
607           return cloneFullComment(FC, D);
608     }
609     else if (const auto *RD = dyn_cast<CXXRecordDecl>(D)) {
610       if (!(RD = RD->getDefinition()))
611         return nullptr;
612       // Check non-virtual bases.
613       for (const auto &I : RD->bases()) {
614         if (I.isVirtual() || (I.getAccessSpecifier() != AS_public))
615           continue;
616         QualType Ty = I.getType();
617         if (Ty.isNull())
618           continue;
619         if (const CXXRecordDecl *NonVirtualBase = Ty->getAsCXXRecordDecl()) {
620           if (!(NonVirtualBase= NonVirtualBase->getDefinition()))
621             continue;
622 
623           if (comments::FullComment *FC = getCommentForDecl((NonVirtualBase), PP))
624             return cloneFullComment(FC, D);
625         }
626       }
627       // Check virtual bases.
628       for (const auto &I : RD->vbases()) {
629         if (I.getAccessSpecifier() != AS_public)
630           continue;
631         QualType Ty = I.getType();
632         if (Ty.isNull())
633           continue;
634         if (const CXXRecordDecl *VirtualBase = Ty->getAsCXXRecordDecl()) {
635           if (!(VirtualBase= VirtualBase->getDefinition()))
636             continue;
637           if (comments::FullComment *FC = getCommentForDecl((VirtualBase), PP))
638             return cloneFullComment(FC, D);
639         }
640       }
641     }
642     return nullptr;
643   }
644 
645   // If the RawComment was attached to other redeclaration of this Decl, we
646   // should parse the comment in context of that other Decl.  This is important
647   // because comments can contain references to parameter names which can be
648   // different across redeclarations.
649   if (D != OriginalDecl && OriginalDecl)
650     return getCommentForDecl(OriginalDecl, PP);
651 
652   comments::FullComment *FC = RC->parse(*this, PP, D);
653   ParsedComments[Canonical] = FC;
654   return FC;
655 }
656 
657 void
658 ASTContext::CanonicalTemplateTemplateParm::Profile(llvm::FoldingSetNodeID &ID,
659                                                    const ASTContext &C,
660                                                TemplateTemplateParmDecl *Parm) {
661   ID.AddInteger(Parm->getDepth());
662   ID.AddInteger(Parm->getPosition());
663   ID.AddBoolean(Parm->isParameterPack());
664 
665   TemplateParameterList *Params = Parm->getTemplateParameters();
666   ID.AddInteger(Params->size());
667   for (TemplateParameterList::const_iterator P = Params->begin(),
668                                           PEnd = Params->end();
669        P != PEnd; ++P) {
670     if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
671       ID.AddInteger(0);
672       ID.AddBoolean(TTP->isParameterPack());
673       const TypeConstraint *TC = TTP->getTypeConstraint();
674       ID.AddBoolean(TC != nullptr);
675       if (TC)
676         TC->getImmediatelyDeclaredConstraint()->Profile(ID, C,
677                                                         /*Canonical=*/true);
678       if (TTP->isExpandedParameterPack()) {
679         ID.AddBoolean(true);
680         ID.AddInteger(TTP->getNumExpansionParameters());
681       } else
682         ID.AddBoolean(false);
683       continue;
684     }
685 
686     if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
687       ID.AddInteger(1);
688       ID.AddBoolean(NTTP->isParameterPack());
689       ID.AddPointer(NTTP->getType().getCanonicalType().getAsOpaquePtr());
690       if (NTTP->isExpandedParameterPack()) {
691         ID.AddBoolean(true);
692         ID.AddInteger(NTTP->getNumExpansionTypes());
693         for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
694           QualType T = NTTP->getExpansionType(I);
695           ID.AddPointer(T.getCanonicalType().getAsOpaquePtr());
696         }
697       } else
698         ID.AddBoolean(false);
699       continue;
700     }
701 
702     auto *TTP = cast<TemplateTemplateParmDecl>(*P);
703     ID.AddInteger(2);
704     Profile(ID, C, TTP);
705   }
706   Expr *RequiresClause = Parm->getTemplateParameters()->getRequiresClause();
707   ID.AddBoolean(RequiresClause != nullptr);
708   if (RequiresClause)
709     RequiresClause->Profile(ID, C, /*Canonical=*/true);
710 }
711 
712 static Expr *
713 canonicalizeImmediatelyDeclaredConstraint(const ASTContext &C, Expr *IDC,
714                                           QualType ConstrainedType) {
715   // This is a bit ugly - we need to form a new immediately-declared
716   // constraint that references the new parameter; this would ideally
717   // require semantic analysis (e.g. template<C T> struct S {}; - the
718   // converted arguments of C<T> could be an argument pack if C is
719   // declared as template<typename... T> concept C = ...).
720   // We don't have semantic analysis here so we dig deep into the
721   // ready-made constraint expr and change the thing manually.
722   ConceptSpecializationExpr *CSE;
723   if (const auto *Fold = dyn_cast<CXXFoldExpr>(IDC))
724     CSE = cast<ConceptSpecializationExpr>(Fold->getLHS());
725   else
726     CSE = cast<ConceptSpecializationExpr>(IDC);
727   ArrayRef<TemplateArgument> OldConverted = CSE->getTemplateArguments();
728   SmallVector<TemplateArgument, 3> NewConverted;
729   NewConverted.reserve(OldConverted.size());
730   if (OldConverted.front().getKind() == TemplateArgument::Pack) {
731     // The case:
732     // template<typename... T> concept C = true;
733     // template<C<int> T> struct S; -> constraint is C<{T, int}>
734     NewConverted.push_back(ConstrainedType);
735     for (auto &Arg : OldConverted.front().pack_elements().drop_front(1))
736       NewConverted.push_back(Arg);
737     TemplateArgument NewPack(NewConverted);
738 
739     NewConverted.clear();
740     NewConverted.push_back(NewPack);
741     assert(OldConverted.size() == 1 &&
742            "Template parameter pack should be the last parameter");
743   } else {
744     assert(OldConverted.front().getKind() == TemplateArgument::Type &&
745            "Unexpected first argument kind for immediately-declared "
746            "constraint");
747     NewConverted.push_back(ConstrainedType);
748     for (auto &Arg : OldConverted.drop_front(1))
749       NewConverted.push_back(Arg);
750   }
751   Expr *NewIDC = ConceptSpecializationExpr::Create(
752       C, CSE->getNamedConcept(), NewConverted, nullptr,
753       CSE->isInstantiationDependent(), CSE->containsUnexpandedParameterPack());
754 
755   if (auto *OrigFold = dyn_cast<CXXFoldExpr>(IDC))
756     NewIDC = new (C) CXXFoldExpr(
757         OrigFold->getType(), /*Callee*/nullptr, SourceLocation(), NewIDC,
758         BinaryOperatorKind::BO_LAnd, SourceLocation(), /*RHS=*/nullptr,
759         SourceLocation(), /*NumExpansions=*/None);
760   return NewIDC;
761 }
762 
763 TemplateTemplateParmDecl *
764 ASTContext::getCanonicalTemplateTemplateParmDecl(
765                                           TemplateTemplateParmDecl *TTP) const {
766   // Check if we already have a canonical template template parameter.
767   llvm::FoldingSetNodeID ID;
768   CanonicalTemplateTemplateParm::Profile(ID, *this, TTP);
769   void *InsertPos = nullptr;
770   CanonicalTemplateTemplateParm *Canonical
771     = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
772   if (Canonical)
773     return Canonical->getParam();
774 
775   // Build a canonical template parameter list.
776   TemplateParameterList *Params = TTP->getTemplateParameters();
777   SmallVector<NamedDecl *, 4> CanonParams;
778   CanonParams.reserve(Params->size());
779   for (TemplateParameterList::const_iterator P = Params->begin(),
780                                           PEnd = Params->end();
781        P != PEnd; ++P) {
782     if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
783       TemplateTypeParmDecl *NewTTP = TemplateTypeParmDecl::Create(*this,
784           getTranslationUnitDecl(), SourceLocation(), SourceLocation(),
785           TTP->getDepth(), TTP->getIndex(), nullptr, false,
786           TTP->isParameterPack(), TTP->hasTypeConstraint(),
787           TTP->isExpandedParameterPack() ?
788           llvm::Optional<unsigned>(TTP->getNumExpansionParameters()) : None);
789       if (const auto *TC = TTP->getTypeConstraint()) {
790         QualType ParamAsArgument(NewTTP->getTypeForDecl(), 0);
791         Expr *NewIDC = canonicalizeImmediatelyDeclaredConstraint(
792                 *this, TC->getImmediatelyDeclaredConstraint(),
793                 ParamAsArgument);
794         TemplateArgumentListInfo CanonArgsAsWritten;
795         if (auto *Args = TC->getTemplateArgsAsWritten())
796           for (const auto &ArgLoc : Args->arguments())
797             CanonArgsAsWritten.addArgument(
798                 TemplateArgumentLoc(ArgLoc.getArgument(),
799                                     TemplateArgumentLocInfo()));
800         NewTTP->setTypeConstraint(
801             NestedNameSpecifierLoc(),
802             DeclarationNameInfo(TC->getNamedConcept()->getDeclName(),
803                                 SourceLocation()), /*FoundDecl=*/nullptr,
804             // Actually canonicalizing a TemplateArgumentLoc is difficult so we
805             // simply omit the ArgsAsWritten
806             TC->getNamedConcept(), /*ArgsAsWritten=*/nullptr, NewIDC);
807       }
808       CanonParams.push_back(NewTTP);
809     } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
810       QualType T = getCanonicalType(NTTP->getType());
811       TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T);
812       NonTypeTemplateParmDecl *Param;
813       if (NTTP->isExpandedParameterPack()) {
814         SmallVector<QualType, 2> ExpandedTypes;
815         SmallVector<TypeSourceInfo *, 2> ExpandedTInfos;
816         for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
817           ExpandedTypes.push_back(getCanonicalType(NTTP->getExpansionType(I)));
818           ExpandedTInfos.push_back(
819                                 getTrivialTypeSourceInfo(ExpandedTypes.back()));
820         }
821 
822         Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
823                                                 SourceLocation(),
824                                                 SourceLocation(),
825                                                 NTTP->getDepth(),
826                                                 NTTP->getPosition(), nullptr,
827                                                 T,
828                                                 TInfo,
829                                                 ExpandedTypes,
830                                                 ExpandedTInfos);
831       } else {
832         Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
833                                                 SourceLocation(),
834                                                 SourceLocation(),
835                                                 NTTP->getDepth(),
836                                                 NTTP->getPosition(), nullptr,
837                                                 T,
838                                                 NTTP->isParameterPack(),
839                                                 TInfo);
840       }
841       if (AutoType *AT = T->getContainedAutoType()) {
842         if (AT->isConstrained()) {
843           Param->setPlaceholderTypeConstraint(
844               canonicalizeImmediatelyDeclaredConstraint(
845                   *this, NTTP->getPlaceholderTypeConstraint(), T));
846         }
847       }
848       CanonParams.push_back(Param);
849 
850     } else
851       CanonParams.push_back(getCanonicalTemplateTemplateParmDecl(
852                                            cast<TemplateTemplateParmDecl>(*P)));
853   }
854 
855   Expr *CanonRequiresClause = nullptr;
856   if (Expr *RequiresClause = TTP->getTemplateParameters()->getRequiresClause())
857     CanonRequiresClause = RequiresClause;
858 
859   TemplateTemplateParmDecl *CanonTTP
860     = TemplateTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
861                                        SourceLocation(), TTP->getDepth(),
862                                        TTP->getPosition(),
863                                        TTP->isParameterPack(),
864                                        nullptr,
865                          TemplateParameterList::Create(*this, SourceLocation(),
866                                                        SourceLocation(),
867                                                        CanonParams,
868                                                        SourceLocation(),
869                                                        CanonRequiresClause));
870 
871   // Get the new insert position for the node we care about.
872   Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
873   assert(!Canonical && "Shouldn't be in the map!");
874   (void)Canonical;
875 
876   // Create the canonical template template parameter entry.
877   Canonical = new (*this) CanonicalTemplateTemplateParm(CanonTTP);
878   CanonTemplateTemplateParms.InsertNode(Canonical, InsertPos);
879   return CanonTTP;
880 }
881 
882 CXXABI *ASTContext::createCXXABI(const TargetInfo &T) {
883   if (!LangOpts.CPlusPlus) return nullptr;
884 
885   switch (T.getCXXABI().getKind()) {
886   case TargetCXXABI::AppleARM64:
887   case TargetCXXABI::Fuchsia:
888   case TargetCXXABI::GenericARM: // Same as Itanium at this level
889   case TargetCXXABI::iOS:
890   case TargetCXXABI::WatchOS:
891   case TargetCXXABI::GenericAArch64:
892   case TargetCXXABI::GenericMIPS:
893   case TargetCXXABI::GenericItanium:
894   case TargetCXXABI::WebAssembly:
895   case TargetCXXABI::XL:
896     return CreateItaniumCXXABI(*this);
897   case TargetCXXABI::Microsoft:
898     return CreateMicrosoftCXXABI(*this);
899   }
900   llvm_unreachable("Invalid CXXABI type!");
901 }
902 
903 interp::Context &ASTContext::getInterpContext() {
904   if (!InterpContext) {
905     InterpContext.reset(new interp::Context(*this));
906   }
907   return *InterpContext.get();
908 }
909 
910 ParentMapContext &ASTContext::getParentMapContext() {
911   if (!ParentMapCtx)
912     ParentMapCtx.reset(new ParentMapContext(*this));
913   return *ParentMapCtx.get();
914 }
915 
916 static const LangASMap *getAddressSpaceMap(const TargetInfo &T,
917                                            const LangOptions &LOpts) {
918   if (LOpts.FakeAddressSpaceMap) {
919     // The fake address space map must have a distinct entry for each
920     // language-specific address space.
921     static const unsigned FakeAddrSpaceMap[] = {
922         0,  // Default
923         1,  // opencl_global
924         3,  // opencl_local
925         2,  // opencl_constant
926         0,  // opencl_private
927         4,  // opencl_generic
928         5,  // opencl_global_device
929         6,  // opencl_global_host
930         7,  // cuda_device
931         8,  // cuda_constant
932         9,  // cuda_shared
933         10, // ptr32_sptr
934         11, // ptr32_uptr
935         12  // ptr64
936     };
937     return &FakeAddrSpaceMap;
938   } else {
939     return &T.getAddressSpaceMap();
940   }
941 }
942 
943 static bool isAddrSpaceMapManglingEnabled(const TargetInfo &TI,
944                                           const LangOptions &LangOpts) {
945   switch (LangOpts.getAddressSpaceMapMangling()) {
946   case LangOptions::ASMM_Target:
947     return TI.useAddressSpaceMapMangling();
948   case LangOptions::ASMM_On:
949     return true;
950   case LangOptions::ASMM_Off:
951     return false;
952   }
953   llvm_unreachable("getAddressSpaceMapMangling() doesn't cover anything.");
954 }
955 
956 ASTContext::ASTContext(LangOptions &LOpts, SourceManager &SM,
957                        IdentifierTable &idents, SelectorTable &sels,
958                        Builtin::Context &builtins)
959     : ConstantArrayTypes(this_()), FunctionProtoTypes(this_()),
960       TemplateSpecializationTypes(this_()),
961       DependentTemplateSpecializationTypes(this_()), AutoTypes(this_()),
962       SubstTemplateTemplateParmPacks(this_()),
963       CanonTemplateTemplateParms(this_()), SourceMgr(SM), LangOpts(LOpts),
964       SanitizerBL(new SanitizerBlacklist(LangOpts.SanitizerBlacklistFiles, SM)),
965       XRayFilter(new XRayFunctionFilter(LangOpts.XRayAlwaysInstrumentFiles,
966                                         LangOpts.XRayNeverInstrumentFiles,
967                                         LangOpts.XRayAttrListFiles, SM)),
968       ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)),
969       PrintingPolicy(LOpts), Idents(idents), Selectors(sels),
970       BuiltinInfo(builtins), DeclarationNames(*this), Comments(SM),
971       CommentCommandTraits(BumpAlloc, LOpts.CommentOpts),
972       CompCategories(this_()), LastSDM(nullptr, 0) {
973   TUDecl = TranslationUnitDecl::Create(*this);
974   TraversalScope = {TUDecl};
975 }
976 
977 ASTContext::~ASTContext() {
978   // Release the DenseMaps associated with DeclContext objects.
979   // FIXME: Is this the ideal solution?
980   ReleaseDeclContextMaps();
981 
982   // Call all of the deallocation functions on all of their targets.
983   for (auto &Pair : Deallocations)
984     (Pair.first)(Pair.second);
985 
986   // ASTRecordLayout objects in ASTRecordLayouts must always be destroyed
987   // because they can contain DenseMaps.
988   for (llvm::DenseMap<const ObjCContainerDecl*,
989        const ASTRecordLayout*>::iterator
990        I = ObjCLayouts.begin(), E = ObjCLayouts.end(); I != E; )
991     // Increment in loop to prevent using deallocated memory.
992     if (auto *R = const_cast<ASTRecordLayout *>((I++)->second))
993       R->Destroy(*this);
994 
995   for (llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator
996        I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end(); I != E; ) {
997     // Increment in loop to prevent using deallocated memory.
998     if (auto *R = const_cast<ASTRecordLayout *>((I++)->second))
999       R->Destroy(*this);
1000   }
1001 
1002   for (llvm::DenseMap<const Decl*, AttrVec*>::iterator A = DeclAttrs.begin(),
1003                                                     AEnd = DeclAttrs.end();
1004        A != AEnd; ++A)
1005     A->second->~AttrVec();
1006 
1007   for (const auto &Value : ModuleInitializers)
1008     Value.second->~PerModuleInitializers();
1009 }
1010 
1011 void ASTContext::setTraversalScope(const std::vector<Decl *> &TopLevelDecls) {
1012   TraversalScope = TopLevelDecls;
1013   getParentMapContext().clear();
1014 }
1015 
1016 void ASTContext::AddDeallocation(void (*Callback)(void *), void *Data) const {
1017   Deallocations.push_back({Callback, Data});
1018 }
1019 
1020 void
1021 ASTContext::setExternalSource(IntrusiveRefCntPtr<ExternalASTSource> Source) {
1022   ExternalSource = std::move(Source);
1023 }
1024 
1025 void ASTContext::PrintStats() const {
1026   llvm::errs() << "\n*** AST Context Stats:\n";
1027   llvm::errs() << "  " << Types.size() << " types total.\n";
1028 
1029   unsigned counts[] = {
1030 #define TYPE(Name, Parent) 0,
1031 #define ABSTRACT_TYPE(Name, Parent)
1032 #include "clang/AST/TypeNodes.inc"
1033     0 // Extra
1034   };
1035 
1036   for (unsigned i = 0, e = Types.size(); i != e; ++i) {
1037     Type *T = Types[i];
1038     counts[(unsigned)T->getTypeClass()]++;
1039   }
1040 
1041   unsigned Idx = 0;
1042   unsigned TotalBytes = 0;
1043 #define TYPE(Name, Parent)                                              \
1044   if (counts[Idx])                                                      \
1045     llvm::errs() << "    " << counts[Idx] << " " << #Name               \
1046                  << " types, " << sizeof(Name##Type) << " each "        \
1047                  << "(" << counts[Idx] * sizeof(Name##Type)             \
1048                  << " bytes)\n";                                        \
1049   TotalBytes += counts[Idx] * sizeof(Name##Type);                       \
1050   ++Idx;
1051 #define ABSTRACT_TYPE(Name, Parent)
1052 #include "clang/AST/TypeNodes.inc"
1053 
1054   llvm::errs() << "Total bytes = " << TotalBytes << "\n";
1055 
1056   // Implicit special member functions.
1057   llvm::errs() << NumImplicitDefaultConstructorsDeclared << "/"
1058                << NumImplicitDefaultConstructors
1059                << " implicit default constructors created\n";
1060   llvm::errs() << NumImplicitCopyConstructorsDeclared << "/"
1061                << NumImplicitCopyConstructors
1062                << " implicit copy constructors created\n";
1063   if (getLangOpts().CPlusPlus)
1064     llvm::errs() << NumImplicitMoveConstructorsDeclared << "/"
1065                  << NumImplicitMoveConstructors
1066                  << " implicit move constructors created\n";
1067   llvm::errs() << NumImplicitCopyAssignmentOperatorsDeclared << "/"
1068                << NumImplicitCopyAssignmentOperators
1069                << " implicit copy assignment operators created\n";
1070   if (getLangOpts().CPlusPlus)
1071     llvm::errs() << NumImplicitMoveAssignmentOperatorsDeclared << "/"
1072                  << NumImplicitMoveAssignmentOperators
1073                  << " implicit move assignment operators created\n";
1074   llvm::errs() << NumImplicitDestructorsDeclared << "/"
1075                << NumImplicitDestructors
1076                << " implicit destructors created\n";
1077 
1078   if (ExternalSource) {
1079     llvm::errs() << "\n";
1080     ExternalSource->PrintStats();
1081   }
1082 
1083   BumpAlloc.PrintStats();
1084 }
1085 
1086 void ASTContext::mergeDefinitionIntoModule(NamedDecl *ND, Module *M,
1087                                            bool NotifyListeners) {
1088   if (NotifyListeners)
1089     if (auto *Listener = getASTMutationListener())
1090       Listener->RedefinedHiddenDefinition(ND, M);
1091 
1092   MergedDefModules[cast<NamedDecl>(ND->getCanonicalDecl())].push_back(M);
1093 }
1094 
1095 void ASTContext::deduplicateMergedDefinitonsFor(NamedDecl *ND) {
1096   auto It = MergedDefModules.find(cast<NamedDecl>(ND->getCanonicalDecl()));
1097   if (It == MergedDefModules.end())
1098     return;
1099 
1100   auto &Merged = It->second;
1101   llvm::DenseSet<Module*> Found;
1102   for (Module *&M : Merged)
1103     if (!Found.insert(M).second)
1104       M = nullptr;
1105   Merged.erase(std::remove(Merged.begin(), Merged.end(), nullptr), Merged.end());
1106 }
1107 
1108 ArrayRef<Module *>
1109 ASTContext::getModulesWithMergedDefinition(const NamedDecl *Def) {
1110   auto MergedIt =
1111       MergedDefModules.find(cast<NamedDecl>(Def->getCanonicalDecl()));
1112   if (MergedIt == MergedDefModules.end())
1113     return None;
1114   return MergedIt->second;
1115 }
1116 
1117 void ASTContext::PerModuleInitializers::resolve(ASTContext &Ctx) {
1118   if (LazyInitializers.empty())
1119     return;
1120 
1121   auto *Source = Ctx.getExternalSource();
1122   assert(Source && "lazy initializers but no external source");
1123 
1124   auto LazyInits = std::move(LazyInitializers);
1125   LazyInitializers.clear();
1126 
1127   for (auto ID : LazyInits)
1128     Initializers.push_back(Source->GetExternalDecl(ID));
1129 
1130   assert(LazyInitializers.empty() &&
1131          "GetExternalDecl for lazy module initializer added more inits");
1132 }
1133 
1134 void ASTContext::addModuleInitializer(Module *M, Decl *D) {
1135   // One special case: if we add a module initializer that imports another
1136   // module, and that module's only initializer is an ImportDecl, simplify.
1137   if (const auto *ID = dyn_cast<ImportDecl>(D)) {
1138     auto It = ModuleInitializers.find(ID->getImportedModule());
1139 
1140     // Maybe the ImportDecl does nothing at all. (Common case.)
1141     if (It == ModuleInitializers.end())
1142       return;
1143 
1144     // Maybe the ImportDecl only imports another ImportDecl.
1145     auto &Imported = *It->second;
1146     if (Imported.Initializers.size() + Imported.LazyInitializers.size() == 1) {
1147       Imported.resolve(*this);
1148       auto *OnlyDecl = Imported.Initializers.front();
1149       if (isa<ImportDecl>(OnlyDecl))
1150         D = OnlyDecl;
1151     }
1152   }
1153 
1154   auto *&Inits = ModuleInitializers[M];
1155   if (!Inits)
1156     Inits = new (*this) PerModuleInitializers;
1157   Inits->Initializers.push_back(D);
1158 }
1159 
1160 void ASTContext::addLazyModuleInitializers(Module *M, ArrayRef<uint32_t> IDs) {
1161   auto *&Inits = ModuleInitializers[M];
1162   if (!Inits)
1163     Inits = new (*this) PerModuleInitializers;
1164   Inits->LazyInitializers.insert(Inits->LazyInitializers.end(),
1165                                  IDs.begin(), IDs.end());
1166 }
1167 
1168 ArrayRef<Decl *> ASTContext::getModuleInitializers(Module *M) {
1169   auto It = ModuleInitializers.find(M);
1170   if (It == ModuleInitializers.end())
1171     return None;
1172 
1173   auto *Inits = It->second;
1174   Inits->resolve(*this);
1175   return Inits->Initializers;
1176 }
1177 
1178 ExternCContextDecl *ASTContext::getExternCContextDecl() const {
1179   if (!ExternCContext)
1180     ExternCContext = ExternCContextDecl::Create(*this, getTranslationUnitDecl());
1181 
1182   return ExternCContext;
1183 }
1184 
1185 BuiltinTemplateDecl *
1186 ASTContext::buildBuiltinTemplateDecl(BuiltinTemplateKind BTK,
1187                                      const IdentifierInfo *II) const {
1188   auto *BuiltinTemplate = BuiltinTemplateDecl::Create(*this, TUDecl, II, BTK);
1189   BuiltinTemplate->setImplicit();
1190   TUDecl->addDecl(BuiltinTemplate);
1191 
1192   return BuiltinTemplate;
1193 }
1194 
1195 BuiltinTemplateDecl *
1196 ASTContext::getMakeIntegerSeqDecl() const {
1197   if (!MakeIntegerSeqDecl)
1198     MakeIntegerSeqDecl = buildBuiltinTemplateDecl(BTK__make_integer_seq,
1199                                                   getMakeIntegerSeqName());
1200   return MakeIntegerSeqDecl;
1201 }
1202 
1203 BuiltinTemplateDecl *
1204 ASTContext::getTypePackElementDecl() const {
1205   if (!TypePackElementDecl)
1206     TypePackElementDecl = buildBuiltinTemplateDecl(BTK__type_pack_element,
1207                                                    getTypePackElementName());
1208   return TypePackElementDecl;
1209 }
1210 
1211 RecordDecl *ASTContext::buildImplicitRecord(StringRef Name,
1212                                             RecordDecl::TagKind TK) const {
1213   SourceLocation Loc;
1214   RecordDecl *NewDecl;
1215   if (getLangOpts().CPlusPlus)
1216     NewDecl = CXXRecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc,
1217                                     Loc, &Idents.get(Name));
1218   else
1219     NewDecl = RecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc, Loc,
1220                                  &Idents.get(Name));
1221   NewDecl->setImplicit();
1222   NewDecl->addAttr(TypeVisibilityAttr::CreateImplicit(
1223       const_cast<ASTContext &>(*this), TypeVisibilityAttr::Default));
1224   return NewDecl;
1225 }
1226 
1227 TypedefDecl *ASTContext::buildImplicitTypedef(QualType T,
1228                                               StringRef Name) const {
1229   TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T);
1230   TypedefDecl *NewDecl = TypedefDecl::Create(
1231       const_cast<ASTContext &>(*this), getTranslationUnitDecl(),
1232       SourceLocation(), SourceLocation(), &Idents.get(Name), TInfo);
1233   NewDecl->setImplicit();
1234   return NewDecl;
1235 }
1236 
1237 TypedefDecl *ASTContext::getInt128Decl() const {
1238   if (!Int128Decl)
1239     Int128Decl = buildImplicitTypedef(Int128Ty, "__int128_t");
1240   return Int128Decl;
1241 }
1242 
1243 TypedefDecl *ASTContext::getUInt128Decl() const {
1244   if (!UInt128Decl)
1245     UInt128Decl = buildImplicitTypedef(UnsignedInt128Ty, "__uint128_t");
1246   return UInt128Decl;
1247 }
1248 
1249 void ASTContext::InitBuiltinType(CanQualType &R, BuiltinType::Kind K) {
1250   auto *Ty = new (*this, TypeAlignment) BuiltinType(K);
1251   R = CanQualType::CreateUnsafe(QualType(Ty, 0));
1252   Types.push_back(Ty);
1253 }
1254 
1255 void ASTContext::InitBuiltinTypes(const TargetInfo &Target,
1256                                   const TargetInfo *AuxTarget) {
1257   assert((!this->Target || this->Target == &Target) &&
1258          "Incorrect target reinitialization");
1259   assert(VoidTy.isNull() && "Context reinitialized?");
1260 
1261   this->Target = &Target;
1262   this->AuxTarget = AuxTarget;
1263 
1264   ABI.reset(createCXXABI(Target));
1265   AddrSpaceMap = getAddressSpaceMap(Target, LangOpts);
1266   AddrSpaceMapMangling = isAddrSpaceMapManglingEnabled(Target, LangOpts);
1267 
1268   // C99 6.2.5p19.
1269   InitBuiltinType(VoidTy,              BuiltinType::Void);
1270 
1271   // C99 6.2.5p2.
1272   InitBuiltinType(BoolTy,              BuiltinType::Bool);
1273   // C99 6.2.5p3.
1274   if (LangOpts.CharIsSigned)
1275     InitBuiltinType(CharTy,            BuiltinType::Char_S);
1276   else
1277     InitBuiltinType(CharTy,            BuiltinType::Char_U);
1278   // C99 6.2.5p4.
1279   InitBuiltinType(SignedCharTy,        BuiltinType::SChar);
1280   InitBuiltinType(ShortTy,             BuiltinType::Short);
1281   InitBuiltinType(IntTy,               BuiltinType::Int);
1282   InitBuiltinType(LongTy,              BuiltinType::Long);
1283   InitBuiltinType(LongLongTy,          BuiltinType::LongLong);
1284 
1285   // C99 6.2.5p6.
1286   InitBuiltinType(UnsignedCharTy,      BuiltinType::UChar);
1287   InitBuiltinType(UnsignedShortTy,     BuiltinType::UShort);
1288   InitBuiltinType(UnsignedIntTy,       BuiltinType::UInt);
1289   InitBuiltinType(UnsignedLongTy,      BuiltinType::ULong);
1290   InitBuiltinType(UnsignedLongLongTy,  BuiltinType::ULongLong);
1291 
1292   // C99 6.2.5p10.
1293   InitBuiltinType(FloatTy,             BuiltinType::Float);
1294   InitBuiltinType(DoubleTy,            BuiltinType::Double);
1295   InitBuiltinType(LongDoubleTy,        BuiltinType::LongDouble);
1296 
1297   // GNU extension, __float128 for IEEE quadruple precision
1298   InitBuiltinType(Float128Ty,          BuiltinType::Float128);
1299 
1300   // C11 extension ISO/IEC TS 18661-3
1301   InitBuiltinType(Float16Ty,           BuiltinType::Float16);
1302 
1303   // ISO/IEC JTC1 SC22 WG14 N1169 Extension
1304   InitBuiltinType(ShortAccumTy,            BuiltinType::ShortAccum);
1305   InitBuiltinType(AccumTy,                 BuiltinType::Accum);
1306   InitBuiltinType(LongAccumTy,             BuiltinType::LongAccum);
1307   InitBuiltinType(UnsignedShortAccumTy,    BuiltinType::UShortAccum);
1308   InitBuiltinType(UnsignedAccumTy,         BuiltinType::UAccum);
1309   InitBuiltinType(UnsignedLongAccumTy,     BuiltinType::ULongAccum);
1310   InitBuiltinType(ShortFractTy,            BuiltinType::ShortFract);
1311   InitBuiltinType(FractTy,                 BuiltinType::Fract);
1312   InitBuiltinType(LongFractTy,             BuiltinType::LongFract);
1313   InitBuiltinType(UnsignedShortFractTy,    BuiltinType::UShortFract);
1314   InitBuiltinType(UnsignedFractTy,         BuiltinType::UFract);
1315   InitBuiltinType(UnsignedLongFractTy,     BuiltinType::ULongFract);
1316   InitBuiltinType(SatShortAccumTy,         BuiltinType::SatShortAccum);
1317   InitBuiltinType(SatAccumTy,              BuiltinType::SatAccum);
1318   InitBuiltinType(SatLongAccumTy,          BuiltinType::SatLongAccum);
1319   InitBuiltinType(SatUnsignedShortAccumTy, BuiltinType::SatUShortAccum);
1320   InitBuiltinType(SatUnsignedAccumTy,      BuiltinType::SatUAccum);
1321   InitBuiltinType(SatUnsignedLongAccumTy,  BuiltinType::SatULongAccum);
1322   InitBuiltinType(SatShortFractTy,         BuiltinType::SatShortFract);
1323   InitBuiltinType(SatFractTy,              BuiltinType::SatFract);
1324   InitBuiltinType(SatLongFractTy,          BuiltinType::SatLongFract);
1325   InitBuiltinType(SatUnsignedShortFractTy, BuiltinType::SatUShortFract);
1326   InitBuiltinType(SatUnsignedFractTy,      BuiltinType::SatUFract);
1327   InitBuiltinType(SatUnsignedLongFractTy,  BuiltinType::SatULongFract);
1328 
1329   // GNU extension, 128-bit integers.
1330   InitBuiltinType(Int128Ty,            BuiltinType::Int128);
1331   InitBuiltinType(UnsignedInt128Ty,    BuiltinType::UInt128);
1332 
1333   // C++ 3.9.1p5
1334   if (TargetInfo::isTypeSigned(Target.getWCharType()))
1335     InitBuiltinType(WCharTy,           BuiltinType::WChar_S);
1336   else  // -fshort-wchar makes wchar_t be unsigned.
1337     InitBuiltinType(WCharTy,           BuiltinType::WChar_U);
1338   if (LangOpts.CPlusPlus && LangOpts.WChar)
1339     WideCharTy = WCharTy;
1340   else {
1341     // C99 (or C++ using -fno-wchar).
1342     WideCharTy = getFromTargetType(Target.getWCharType());
1343   }
1344 
1345   WIntTy = getFromTargetType(Target.getWIntType());
1346 
1347   // C++20 (proposed)
1348   InitBuiltinType(Char8Ty,              BuiltinType::Char8);
1349 
1350   if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
1351     InitBuiltinType(Char16Ty,           BuiltinType::Char16);
1352   else // C99
1353     Char16Ty = getFromTargetType(Target.getChar16Type());
1354 
1355   if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
1356     InitBuiltinType(Char32Ty,           BuiltinType::Char32);
1357   else // C99
1358     Char32Ty = getFromTargetType(Target.getChar32Type());
1359 
1360   // Placeholder type for type-dependent expressions whose type is
1361   // completely unknown. No code should ever check a type against
1362   // DependentTy and users should never see it; however, it is here to
1363   // help diagnose failures to properly check for type-dependent
1364   // expressions.
1365   InitBuiltinType(DependentTy,         BuiltinType::Dependent);
1366 
1367   // Placeholder type for functions.
1368   InitBuiltinType(OverloadTy,          BuiltinType::Overload);
1369 
1370   // Placeholder type for bound members.
1371   InitBuiltinType(BoundMemberTy,       BuiltinType::BoundMember);
1372 
1373   // Placeholder type for pseudo-objects.
1374   InitBuiltinType(PseudoObjectTy,      BuiltinType::PseudoObject);
1375 
1376   // "any" type; useful for debugger-like clients.
1377   InitBuiltinType(UnknownAnyTy,        BuiltinType::UnknownAny);
1378 
1379   // Placeholder type for unbridged ARC casts.
1380   InitBuiltinType(ARCUnbridgedCastTy,  BuiltinType::ARCUnbridgedCast);
1381 
1382   // Placeholder type for builtin functions.
1383   InitBuiltinType(BuiltinFnTy,  BuiltinType::BuiltinFn);
1384 
1385   // Placeholder type for OMP array sections.
1386   if (LangOpts.OpenMP) {
1387     InitBuiltinType(OMPArraySectionTy, BuiltinType::OMPArraySection);
1388     InitBuiltinType(OMPArrayShapingTy, BuiltinType::OMPArrayShaping);
1389     InitBuiltinType(OMPIteratorTy, BuiltinType::OMPIterator);
1390   }
1391   if (LangOpts.MatrixTypes)
1392     InitBuiltinType(IncompleteMatrixIdxTy, BuiltinType::IncompleteMatrixIdx);
1393 
1394   // C99 6.2.5p11.
1395   FloatComplexTy      = getComplexType(FloatTy);
1396   DoubleComplexTy     = getComplexType(DoubleTy);
1397   LongDoubleComplexTy = getComplexType(LongDoubleTy);
1398   Float128ComplexTy   = getComplexType(Float128Ty);
1399 
1400   // Builtin types for 'id', 'Class', and 'SEL'.
1401   InitBuiltinType(ObjCBuiltinIdTy, BuiltinType::ObjCId);
1402   InitBuiltinType(ObjCBuiltinClassTy, BuiltinType::ObjCClass);
1403   InitBuiltinType(ObjCBuiltinSelTy, BuiltinType::ObjCSel);
1404 
1405   if (LangOpts.OpenCL) {
1406 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
1407     InitBuiltinType(SingletonId, BuiltinType::Id);
1408 #include "clang/Basic/OpenCLImageTypes.def"
1409 
1410     InitBuiltinType(OCLSamplerTy, BuiltinType::OCLSampler);
1411     InitBuiltinType(OCLEventTy, BuiltinType::OCLEvent);
1412     InitBuiltinType(OCLClkEventTy, BuiltinType::OCLClkEvent);
1413     InitBuiltinType(OCLQueueTy, BuiltinType::OCLQueue);
1414     InitBuiltinType(OCLReserveIDTy, BuiltinType::OCLReserveID);
1415 
1416 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
1417     InitBuiltinType(Id##Ty, BuiltinType::Id);
1418 #include "clang/Basic/OpenCLExtensionTypes.def"
1419   }
1420 
1421   if (Target.hasAArch64SVETypes()) {
1422 #define SVE_TYPE(Name, Id, SingletonId) \
1423     InitBuiltinType(SingletonId, BuiltinType::Id);
1424 #include "clang/Basic/AArch64SVEACLETypes.def"
1425   }
1426 
1427   if (Target.getTriple().isPPC64() &&
1428       Target.hasFeature("paired-vector-memops")) {
1429     if (Target.hasFeature("mma")) {
1430 #define PPC_VECTOR_MMA_TYPE(Name, Id, Size) \
1431       InitBuiltinType(Id##Ty, BuiltinType::Id);
1432 #include "clang/Basic/PPCTypes.def"
1433     }
1434 #define PPC_VECTOR_VSX_TYPE(Name, Id, Size) \
1435     InitBuiltinType(Id##Ty, BuiltinType::Id);
1436 #include "clang/Basic/PPCTypes.def"
1437   }
1438 
1439   // Builtin type for __objc_yes and __objc_no
1440   ObjCBuiltinBoolTy = (Target.useSignedCharForObjCBool() ?
1441                        SignedCharTy : BoolTy);
1442 
1443   ObjCConstantStringType = QualType();
1444 
1445   ObjCSuperType = QualType();
1446 
1447   // void * type
1448   if (LangOpts.OpenCLVersion >= 200) {
1449     auto Q = VoidTy.getQualifiers();
1450     Q.setAddressSpace(LangAS::opencl_generic);
1451     VoidPtrTy = getPointerType(getCanonicalType(
1452         getQualifiedType(VoidTy.getUnqualifiedType(), Q)));
1453   } else {
1454     VoidPtrTy = getPointerType(VoidTy);
1455   }
1456 
1457   // nullptr type (C++0x 2.14.7)
1458   InitBuiltinType(NullPtrTy,           BuiltinType::NullPtr);
1459 
1460   // half type (OpenCL 6.1.1.1) / ARM NEON __fp16
1461   InitBuiltinType(HalfTy, BuiltinType::Half);
1462 
1463   InitBuiltinType(BFloat16Ty, BuiltinType::BFloat16);
1464 
1465   // Builtin type used to help define __builtin_va_list.
1466   VaListTagDecl = nullptr;
1467 
1468   // MSVC predeclares struct _GUID, and we need it to create MSGuidDecls.
1469   if (LangOpts.MicrosoftExt || LangOpts.Borland) {
1470     MSGuidTagDecl = buildImplicitRecord("_GUID");
1471     TUDecl->addDecl(MSGuidTagDecl);
1472   }
1473 }
1474 
1475 DiagnosticsEngine &ASTContext::getDiagnostics() const {
1476   return SourceMgr.getDiagnostics();
1477 }
1478 
1479 AttrVec& ASTContext::getDeclAttrs(const Decl *D) {
1480   AttrVec *&Result = DeclAttrs[D];
1481   if (!Result) {
1482     void *Mem = Allocate(sizeof(AttrVec));
1483     Result = new (Mem) AttrVec;
1484   }
1485 
1486   return *Result;
1487 }
1488 
1489 /// Erase the attributes corresponding to the given declaration.
1490 void ASTContext::eraseDeclAttrs(const Decl *D) {
1491   llvm::DenseMap<const Decl*, AttrVec*>::iterator Pos = DeclAttrs.find(D);
1492   if (Pos != DeclAttrs.end()) {
1493     Pos->second->~AttrVec();
1494     DeclAttrs.erase(Pos);
1495   }
1496 }
1497 
1498 // FIXME: Remove ?
1499 MemberSpecializationInfo *
1500 ASTContext::getInstantiatedFromStaticDataMember(const VarDecl *Var) {
1501   assert(Var->isStaticDataMember() && "Not a static data member");
1502   return getTemplateOrSpecializationInfo(Var)
1503       .dyn_cast<MemberSpecializationInfo *>();
1504 }
1505 
1506 ASTContext::TemplateOrSpecializationInfo
1507 ASTContext::getTemplateOrSpecializationInfo(const VarDecl *Var) {
1508   llvm::DenseMap<const VarDecl *, TemplateOrSpecializationInfo>::iterator Pos =
1509       TemplateOrInstantiation.find(Var);
1510   if (Pos == TemplateOrInstantiation.end())
1511     return {};
1512 
1513   return Pos->second;
1514 }
1515 
1516 void
1517 ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl,
1518                                                 TemplateSpecializationKind TSK,
1519                                           SourceLocation PointOfInstantiation) {
1520   assert(Inst->isStaticDataMember() && "Not a static data member");
1521   assert(Tmpl->isStaticDataMember() && "Not a static data member");
1522   setTemplateOrSpecializationInfo(Inst, new (*this) MemberSpecializationInfo(
1523                                             Tmpl, TSK, PointOfInstantiation));
1524 }
1525 
1526 void
1527 ASTContext::setTemplateOrSpecializationInfo(VarDecl *Inst,
1528                                             TemplateOrSpecializationInfo TSI) {
1529   assert(!TemplateOrInstantiation[Inst] &&
1530          "Already noted what the variable was instantiated from");
1531   TemplateOrInstantiation[Inst] = TSI;
1532 }
1533 
1534 NamedDecl *
1535 ASTContext::getInstantiatedFromUsingDecl(NamedDecl *UUD) {
1536   auto Pos = InstantiatedFromUsingDecl.find(UUD);
1537   if (Pos == InstantiatedFromUsingDecl.end())
1538     return nullptr;
1539 
1540   return Pos->second;
1541 }
1542 
1543 void
1544 ASTContext::setInstantiatedFromUsingDecl(NamedDecl *Inst, NamedDecl *Pattern) {
1545   assert((isa<UsingDecl>(Pattern) ||
1546           isa<UnresolvedUsingValueDecl>(Pattern) ||
1547           isa<UnresolvedUsingTypenameDecl>(Pattern)) &&
1548          "pattern decl is not a using decl");
1549   assert((isa<UsingDecl>(Inst) ||
1550           isa<UnresolvedUsingValueDecl>(Inst) ||
1551           isa<UnresolvedUsingTypenameDecl>(Inst)) &&
1552          "instantiation did not produce a using decl");
1553   assert(!InstantiatedFromUsingDecl[Inst] && "pattern already exists");
1554   InstantiatedFromUsingDecl[Inst] = Pattern;
1555 }
1556 
1557 UsingShadowDecl *
1558 ASTContext::getInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst) {
1559   llvm::DenseMap<UsingShadowDecl*, UsingShadowDecl*>::const_iterator Pos
1560     = InstantiatedFromUsingShadowDecl.find(Inst);
1561   if (Pos == InstantiatedFromUsingShadowDecl.end())
1562     return nullptr;
1563 
1564   return Pos->second;
1565 }
1566 
1567 void
1568 ASTContext::setInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst,
1569                                                UsingShadowDecl *Pattern) {
1570   assert(!InstantiatedFromUsingShadowDecl[Inst] && "pattern already exists");
1571   InstantiatedFromUsingShadowDecl[Inst] = Pattern;
1572 }
1573 
1574 FieldDecl *ASTContext::getInstantiatedFromUnnamedFieldDecl(FieldDecl *Field) {
1575   llvm::DenseMap<FieldDecl *, FieldDecl *>::iterator Pos
1576     = InstantiatedFromUnnamedFieldDecl.find(Field);
1577   if (Pos == InstantiatedFromUnnamedFieldDecl.end())
1578     return nullptr;
1579 
1580   return Pos->second;
1581 }
1582 
1583 void ASTContext::setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst,
1584                                                      FieldDecl *Tmpl) {
1585   assert(!Inst->getDeclName() && "Instantiated field decl is not unnamed");
1586   assert(!Tmpl->getDeclName() && "Template field decl is not unnamed");
1587   assert(!InstantiatedFromUnnamedFieldDecl[Inst] &&
1588          "Already noted what unnamed field was instantiated from");
1589 
1590   InstantiatedFromUnnamedFieldDecl[Inst] = Tmpl;
1591 }
1592 
1593 ASTContext::overridden_cxx_method_iterator
1594 ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const {
1595   return overridden_methods(Method).begin();
1596 }
1597 
1598 ASTContext::overridden_cxx_method_iterator
1599 ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const {
1600   return overridden_methods(Method).end();
1601 }
1602 
1603 unsigned
1604 ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const {
1605   auto Range = overridden_methods(Method);
1606   return Range.end() - Range.begin();
1607 }
1608 
1609 ASTContext::overridden_method_range
1610 ASTContext::overridden_methods(const CXXMethodDecl *Method) const {
1611   llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos =
1612       OverriddenMethods.find(Method->getCanonicalDecl());
1613   if (Pos == OverriddenMethods.end())
1614     return overridden_method_range(nullptr, nullptr);
1615   return overridden_method_range(Pos->second.begin(), Pos->second.end());
1616 }
1617 
1618 void ASTContext::addOverriddenMethod(const CXXMethodDecl *Method,
1619                                      const CXXMethodDecl *Overridden) {
1620   assert(Method->isCanonicalDecl() && Overridden->isCanonicalDecl());
1621   OverriddenMethods[Method].push_back(Overridden);
1622 }
1623 
1624 void ASTContext::getOverriddenMethods(
1625                       const NamedDecl *D,
1626                       SmallVectorImpl<const NamedDecl *> &Overridden) const {
1627   assert(D);
1628 
1629   if (const auto *CXXMethod = dyn_cast<CXXMethodDecl>(D)) {
1630     Overridden.append(overridden_methods_begin(CXXMethod),
1631                       overridden_methods_end(CXXMethod));
1632     return;
1633   }
1634 
1635   const auto *Method = dyn_cast<ObjCMethodDecl>(D);
1636   if (!Method)
1637     return;
1638 
1639   SmallVector<const ObjCMethodDecl *, 8> OverDecls;
1640   Method->getOverriddenMethods(OverDecls);
1641   Overridden.append(OverDecls.begin(), OverDecls.end());
1642 }
1643 
1644 void ASTContext::addedLocalImportDecl(ImportDecl *Import) {
1645   assert(!Import->getNextLocalImport() &&
1646          "Import declaration already in the chain");
1647   assert(!Import->isFromASTFile() && "Non-local import declaration");
1648   if (!FirstLocalImport) {
1649     FirstLocalImport = Import;
1650     LastLocalImport = Import;
1651     return;
1652   }
1653 
1654   LastLocalImport->setNextLocalImport(Import);
1655   LastLocalImport = Import;
1656 }
1657 
1658 //===----------------------------------------------------------------------===//
1659 //                         Type Sizing and Analysis
1660 //===----------------------------------------------------------------------===//
1661 
1662 /// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
1663 /// scalar floating point type.
1664 const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
1665   switch (T->castAs<BuiltinType>()->getKind()) {
1666   default:
1667     llvm_unreachable("Not a floating point type!");
1668   case BuiltinType::BFloat16:
1669     return Target->getBFloat16Format();
1670   case BuiltinType::Float16:
1671   case BuiltinType::Half:
1672     return Target->getHalfFormat();
1673   case BuiltinType::Float:      return Target->getFloatFormat();
1674   case BuiltinType::Double:     return Target->getDoubleFormat();
1675   case BuiltinType::LongDouble:
1676     if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice)
1677       return AuxTarget->getLongDoubleFormat();
1678     return Target->getLongDoubleFormat();
1679   case BuiltinType::Float128:
1680     if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice)
1681       return AuxTarget->getFloat128Format();
1682     return Target->getFloat128Format();
1683   }
1684 }
1685 
1686 CharUnits ASTContext::getDeclAlign(const Decl *D, bool ForAlignof) const {
1687   unsigned Align = Target->getCharWidth();
1688 
1689   bool UseAlignAttrOnly = false;
1690   if (unsigned AlignFromAttr = D->getMaxAlignment()) {
1691     Align = AlignFromAttr;
1692 
1693     // __attribute__((aligned)) can increase or decrease alignment
1694     // *except* on a struct or struct member, where it only increases
1695     // alignment unless 'packed' is also specified.
1696     //
1697     // It is an error for alignas to decrease alignment, so we can
1698     // ignore that possibility;  Sema should diagnose it.
1699     if (isa<FieldDecl>(D)) {
1700       UseAlignAttrOnly = D->hasAttr<PackedAttr>() ||
1701         cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
1702     } else {
1703       UseAlignAttrOnly = true;
1704     }
1705   }
1706   else if (isa<FieldDecl>(D))
1707       UseAlignAttrOnly =
1708         D->hasAttr<PackedAttr>() ||
1709         cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
1710 
1711   // If we're using the align attribute only, just ignore everything
1712   // else about the declaration and its type.
1713   if (UseAlignAttrOnly) {
1714     // do nothing
1715   } else if (const auto *VD = dyn_cast<ValueDecl>(D)) {
1716     QualType T = VD->getType();
1717     if (const auto *RT = T->getAs<ReferenceType>()) {
1718       if (ForAlignof)
1719         T = RT->getPointeeType();
1720       else
1721         T = getPointerType(RT->getPointeeType());
1722     }
1723     QualType BaseT = getBaseElementType(T);
1724     if (T->isFunctionType())
1725       Align = getTypeInfoImpl(T.getTypePtr()).Align;
1726     else if (!BaseT->isIncompleteType()) {
1727       // Adjust alignments of declarations with array type by the
1728       // large-array alignment on the target.
1729       if (const ArrayType *arrayType = getAsArrayType(T)) {
1730         unsigned MinWidth = Target->getLargeArrayMinWidth();
1731         if (!ForAlignof && MinWidth) {
1732           if (isa<VariableArrayType>(arrayType))
1733             Align = std::max(Align, Target->getLargeArrayAlign());
1734           else if (isa<ConstantArrayType>(arrayType) &&
1735                    MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType)))
1736             Align = std::max(Align, Target->getLargeArrayAlign());
1737         }
1738       }
1739       Align = std::max(Align, getPreferredTypeAlign(T.getTypePtr()));
1740       if (BaseT.getQualifiers().hasUnaligned())
1741         Align = Target->getCharWidth();
1742       if (const auto *VD = dyn_cast<VarDecl>(D)) {
1743         if (VD->hasGlobalStorage() && !ForAlignof) {
1744           uint64_t TypeSize = getTypeSize(T.getTypePtr());
1745           Align = std::max(Align, getTargetInfo().getMinGlobalAlign(TypeSize));
1746         }
1747       }
1748     }
1749 
1750     // Fields can be subject to extra alignment constraints, like if
1751     // the field is packed, the struct is packed, or the struct has a
1752     // a max-field-alignment constraint (#pragma pack).  So calculate
1753     // the actual alignment of the field within the struct, and then
1754     // (as we're expected to) constrain that by the alignment of the type.
1755     if (const auto *Field = dyn_cast<FieldDecl>(VD)) {
1756       const RecordDecl *Parent = Field->getParent();
1757       // We can only produce a sensible answer if the record is valid.
1758       if (!Parent->isInvalidDecl()) {
1759         const ASTRecordLayout &Layout = getASTRecordLayout(Parent);
1760 
1761         // Start with the record's overall alignment.
1762         unsigned FieldAlign = toBits(Layout.getAlignment());
1763 
1764         // Use the GCD of that and the offset within the record.
1765         uint64_t Offset = Layout.getFieldOffset(Field->getFieldIndex());
1766         if (Offset > 0) {
1767           // Alignment is always a power of 2, so the GCD will be a power of 2,
1768           // which means we get to do this crazy thing instead of Euclid's.
1769           uint64_t LowBitOfOffset = Offset & (~Offset + 1);
1770           if (LowBitOfOffset < FieldAlign)
1771             FieldAlign = static_cast<unsigned>(LowBitOfOffset);
1772         }
1773 
1774         Align = std::min(Align, FieldAlign);
1775       }
1776     }
1777   }
1778 
1779   return toCharUnitsFromBits(Align);
1780 }
1781 
1782 CharUnits ASTContext::getExnObjectAlignment() const {
1783   return toCharUnitsFromBits(Target->getExnObjectAlignment());
1784 }
1785 
1786 // getTypeInfoDataSizeInChars - Return the size of a type, in
1787 // chars. If the type is a record, its data size is returned.  This is
1788 // the size of the memcpy that's performed when assigning this type
1789 // using a trivial copy/move assignment operator.
1790 TypeInfoChars ASTContext::getTypeInfoDataSizeInChars(QualType T) const {
1791   TypeInfoChars Info = getTypeInfoInChars(T);
1792 
1793   // In C++, objects can sometimes be allocated into the tail padding
1794   // of a base-class subobject.  We decide whether that's possible
1795   // during class layout, so here we can just trust the layout results.
1796   if (getLangOpts().CPlusPlus) {
1797     if (const auto *RT = T->getAs<RecordType>()) {
1798       const ASTRecordLayout &layout = getASTRecordLayout(RT->getDecl());
1799       Info.Width = layout.getDataSize();
1800     }
1801   }
1802 
1803   return Info;
1804 }
1805 
1806 /// getConstantArrayInfoInChars - Performing the computation in CharUnits
1807 /// instead of in bits prevents overflowing the uint64_t for some large arrays.
1808 TypeInfoChars
1809 static getConstantArrayInfoInChars(const ASTContext &Context,
1810                                    const ConstantArrayType *CAT) {
1811   TypeInfoChars EltInfo = Context.getTypeInfoInChars(CAT->getElementType());
1812   uint64_t Size = CAT->getSize().getZExtValue();
1813   assert((Size == 0 || static_cast<uint64_t>(EltInfo.Width.getQuantity()) <=
1814               (uint64_t)(-1)/Size) &&
1815          "Overflow in array type char size evaluation");
1816   uint64_t Width = EltInfo.Width.getQuantity() * Size;
1817   unsigned Align = EltInfo.Align.getQuantity();
1818   if (!Context.getTargetInfo().getCXXABI().isMicrosoft() ||
1819       Context.getTargetInfo().getPointerWidth(0) == 64)
1820     Width = llvm::alignTo(Width, Align);
1821   return TypeInfoChars(CharUnits::fromQuantity(Width),
1822                        CharUnits::fromQuantity(Align),
1823                        EltInfo.AlignIsRequired);
1824 }
1825 
1826 TypeInfoChars ASTContext::getTypeInfoInChars(const Type *T) const {
1827   if (const auto *CAT = dyn_cast<ConstantArrayType>(T))
1828     return getConstantArrayInfoInChars(*this, CAT);
1829   TypeInfo Info = getTypeInfo(T);
1830   return TypeInfoChars(toCharUnitsFromBits(Info.Width),
1831                        toCharUnitsFromBits(Info.Align),
1832                        Info.AlignIsRequired);
1833 }
1834 
1835 TypeInfoChars ASTContext::getTypeInfoInChars(QualType T) const {
1836   return getTypeInfoInChars(T.getTypePtr());
1837 }
1838 
1839 bool ASTContext::isAlignmentRequired(const Type *T) const {
1840   return getTypeInfo(T).AlignIsRequired;
1841 }
1842 
1843 bool ASTContext::isAlignmentRequired(QualType T) const {
1844   return isAlignmentRequired(T.getTypePtr());
1845 }
1846 
1847 unsigned ASTContext::getTypeAlignIfKnown(QualType T,
1848                                          bool NeedsPreferredAlignment) const {
1849   // An alignment on a typedef overrides anything else.
1850   if (const auto *TT = T->getAs<TypedefType>())
1851     if (unsigned Align = TT->getDecl()->getMaxAlignment())
1852       return Align;
1853 
1854   // If we have an (array of) complete type, we're done.
1855   T = getBaseElementType(T);
1856   if (!T->isIncompleteType())
1857     return NeedsPreferredAlignment ? getPreferredTypeAlign(T) : getTypeAlign(T);
1858 
1859   // If we had an array type, its element type might be a typedef
1860   // type with an alignment attribute.
1861   if (const auto *TT = T->getAs<TypedefType>())
1862     if (unsigned Align = TT->getDecl()->getMaxAlignment())
1863       return Align;
1864 
1865   // Otherwise, see if the declaration of the type had an attribute.
1866   if (const auto *TT = T->getAs<TagType>())
1867     return TT->getDecl()->getMaxAlignment();
1868 
1869   return 0;
1870 }
1871 
1872 TypeInfo ASTContext::getTypeInfo(const Type *T) const {
1873   TypeInfoMap::iterator I = MemoizedTypeInfo.find(T);
1874   if (I != MemoizedTypeInfo.end())
1875     return I->second;
1876 
1877   // This call can invalidate MemoizedTypeInfo[T], so we need a second lookup.
1878   TypeInfo TI = getTypeInfoImpl(T);
1879   MemoizedTypeInfo[T] = TI;
1880   return TI;
1881 }
1882 
1883 /// getTypeInfoImpl - Return the size of the specified type, in bits.  This
1884 /// method does not work on incomplete types.
1885 ///
1886 /// FIXME: Pointers into different addr spaces could have different sizes and
1887 /// alignment requirements: getPointerInfo should take an AddrSpace, this
1888 /// should take a QualType, &c.
1889 TypeInfo ASTContext::getTypeInfoImpl(const Type *T) const {
1890   uint64_t Width = 0;
1891   unsigned Align = 8;
1892   bool AlignIsRequired = false;
1893   unsigned AS = 0;
1894   switch (T->getTypeClass()) {
1895 #define TYPE(Class, Base)
1896 #define ABSTRACT_TYPE(Class, Base)
1897 #define NON_CANONICAL_TYPE(Class, Base)
1898 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
1899 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base)                       \
1900   case Type::Class:                                                            \
1901   assert(!T->isDependentType() && "should not see dependent types here");      \
1902   return getTypeInfo(cast<Class##Type>(T)->desugar().getTypePtr());
1903 #include "clang/AST/TypeNodes.inc"
1904     llvm_unreachable("Should not see dependent types");
1905 
1906   case Type::FunctionNoProto:
1907   case Type::FunctionProto:
1908     // GCC extension: alignof(function) = 32 bits
1909     Width = 0;
1910     Align = 32;
1911     break;
1912 
1913   case Type::IncompleteArray:
1914   case Type::VariableArray:
1915   case Type::ConstantArray: {
1916     // Model non-constant sized arrays as size zero, but track the alignment.
1917     uint64_t Size = 0;
1918     if (const auto *CAT = dyn_cast<ConstantArrayType>(T))
1919       Size = CAT->getSize().getZExtValue();
1920 
1921     TypeInfo EltInfo = getTypeInfo(cast<ArrayType>(T)->getElementType());
1922     assert((Size == 0 || EltInfo.Width <= (uint64_t)(-1) / Size) &&
1923            "Overflow in array type bit size evaluation");
1924     Width = EltInfo.Width * Size;
1925     Align = EltInfo.Align;
1926     AlignIsRequired = EltInfo.AlignIsRequired;
1927     if (!getTargetInfo().getCXXABI().isMicrosoft() ||
1928         getTargetInfo().getPointerWidth(0) == 64)
1929       Width = llvm::alignTo(Width, Align);
1930     break;
1931   }
1932 
1933   case Type::ExtVector:
1934   case Type::Vector: {
1935     const auto *VT = cast<VectorType>(T);
1936     TypeInfo EltInfo = getTypeInfo(VT->getElementType());
1937     Width = EltInfo.Width * VT->getNumElements();
1938     Align = Width;
1939     // If the alignment is not a power of 2, round up to the next power of 2.
1940     // This happens for non-power-of-2 length vectors.
1941     if (Align & (Align-1)) {
1942       Align = llvm::NextPowerOf2(Align);
1943       Width = llvm::alignTo(Width, Align);
1944     }
1945     // Adjust the alignment based on the target max.
1946     uint64_t TargetVectorAlign = Target->getMaxVectorAlign();
1947     if (TargetVectorAlign && TargetVectorAlign < Align)
1948       Align = TargetVectorAlign;
1949     if (VT->getVectorKind() == VectorType::SveFixedLengthDataVector)
1950       // Adjust the alignment for fixed-length SVE vectors. This is important
1951       // for non-power-of-2 vector lengths.
1952       Align = 128;
1953     else if (VT->getVectorKind() == VectorType::SveFixedLengthPredicateVector)
1954       // Adjust the alignment for fixed-length SVE predicates.
1955       Align = 16;
1956     break;
1957   }
1958 
1959   case Type::ConstantMatrix: {
1960     const auto *MT = cast<ConstantMatrixType>(T);
1961     TypeInfo ElementInfo = getTypeInfo(MT->getElementType());
1962     // The internal layout of a matrix value is implementation defined.
1963     // Initially be ABI compatible with arrays with respect to alignment and
1964     // size.
1965     Width = ElementInfo.Width * MT->getNumRows() * MT->getNumColumns();
1966     Align = ElementInfo.Align;
1967     break;
1968   }
1969 
1970   case Type::Builtin:
1971     switch (cast<BuiltinType>(T)->getKind()) {
1972     default: llvm_unreachable("Unknown builtin type!");
1973     case BuiltinType::Void:
1974       // GCC extension: alignof(void) = 8 bits.
1975       Width = 0;
1976       Align = 8;
1977       break;
1978     case BuiltinType::Bool:
1979       Width = Target->getBoolWidth();
1980       Align = Target->getBoolAlign();
1981       break;
1982     case BuiltinType::Char_S:
1983     case BuiltinType::Char_U:
1984     case BuiltinType::UChar:
1985     case BuiltinType::SChar:
1986     case BuiltinType::Char8:
1987       Width = Target->getCharWidth();
1988       Align = Target->getCharAlign();
1989       break;
1990     case BuiltinType::WChar_S:
1991     case BuiltinType::WChar_U:
1992       Width = Target->getWCharWidth();
1993       Align = Target->getWCharAlign();
1994       break;
1995     case BuiltinType::Char16:
1996       Width = Target->getChar16Width();
1997       Align = Target->getChar16Align();
1998       break;
1999     case BuiltinType::Char32:
2000       Width = Target->getChar32Width();
2001       Align = Target->getChar32Align();
2002       break;
2003     case BuiltinType::UShort:
2004     case BuiltinType::Short:
2005       Width = Target->getShortWidth();
2006       Align = Target->getShortAlign();
2007       break;
2008     case BuiltinType::UInt:
2009     case BuiltinType::Int:
2010       Width = Target->getIntWidth();
2011       Align = Target->getIntAlign();
2012       break;
2013     case BuiltinType::ULong:
2014     case BuiltinType::Long:
2015       Width = Target->getLongWidth();
2016       Align = Target->getLongAlign();
2017       break;
2018     case BuiltinType::ULongLong:
2019     case BuiltinType::LongLong:
2020       Width = Target->getLongLongWidth();
2021       Align = Target->getLongLongAlign();
2022       break;
2023     case BuiltinType::Int128:
2024     case BuiltinType::UInt128:
2025       Width = 128;
2026       Align = 128; // int128_t is 128-bit aligned on all targets.
2027       break;
2028     case BuiltinType::ShortAccum:
2029     case BuiltinType::UShortAccum:
2030     case BuiltinType::SatShortAccum:
2031     case BuiltinType::SatUShortAccum:
2032       Width = Target->getShortAccumWidth();
2033       Align = Target->getShortAccumAlign();
2034       break;
2035     case BuiltinType::Accum:
2036     case BuiltinType::UAccum:
2037     case BuiltinType::SatAccum:
2038     case BuiltinType::SatUAccum:
2039       Width = Target->getAccumWidth();
2040       Align = Target->getAccumAlign();
2041       break;
2042     case BuiltinType::LongAccum:
2043     case BuiltinType::ULongAccum:
2044     case BuiltinType::SatLongAccum:
2045     case BuiltinType::SatULongAccum:
2046       Width = Target->getLongAccumWidth();
2047       Align = Target->getLongAccumAlign();
2048       break;
2049     case BuiltinType::ShortFract:
2050     case BuiltinType::UShortFract:
2051     case BuiltinType::SatShortFract:
2052     case BuiltinType::SatUShortFract:
2053       Width = Target->getShortFractWidth();
2054       Align = Target->getShortFractAlign();
2055       break;
2056     case BuiltinType::Fract:
2057     case BuiltinType::UFract:
2058     case BuiltinType::SatFract:
2059     case BuiltinType::SatUFract:
2060       Width = Target->getFractWidth();
2061       Align = Target->getFractAlign();
2062       break;
2063     case BuiltinType::LongFract:
2064     case BuiltinType::ULongFract:
2065     case BuiltinType::SatLongFract:
2066     case BuiltinType::SatULongFract:
2067       Width = Target->getLongFractWidth();
2068       Align = Target->getLongFractAlign();
2069       break;
2070     case BuiltinType::BFloat16:
2071       Width = Target->getBFloat16Width();
2072       Align = Target->getBFloat16Align();
2073       break;
2074     case BuiltinType::Float16:
2075     case BuiltinType::Half:
2076       if (Target->hasFloat16Type() || !getLangOpts().OpenMP ||
2077           !getLangOpts().OpenMPIsDevice) {
2078         Width = Target->getHalfWidth();
2079         Align = Target->getHalfAlign();
2080       } else {
2081         assert(getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice &&
2082                "Expected OpenMP device compilation.");
2083         Width = AuxTarget->getHalfWidth();
2084         Align = AuxTarget->getHalfAlign();
2085       }
2086       break;
2087     case BuiltinType::Float:
2088       Width = Target->getFloatWidth();
2089       Align = Target->getFloatAlign();
2090       break;
2091     case BuiltinType::Double:
2092       Width = Target->getDoubleWidth();
2093       Align = Target->getDoubleAlign();
2094       break;
2095     case BuiltinType::LongDouble:
2096       if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice &&
2097           (Target->getLongDoubleWidth() != AuxTarget->getLongDoubleWidth() ||
2098            Target->getLongDoubleAlign() != AuxTarget->getLongDoubleAlign())) {
2099         Width = AuxTarget->getLongDoubleWidth();
2100         Align = AuxTarget->getLongDoubleAlign();
2101       } else {
2102         Width = Target->getLongDoubleWidth();
2103         Align = Target->getLongDoubleAlign();
2104       }
2105       break;
2106     case BuiltinType::Float128:
2107       if (Target->hasFloat128Type() || !getLangOpts().OpenMP ||
2108           !getLangOpts().OpenMPIsDevice) {
2109         Width = Target->getFloat128Width();
2110         Align = Target->getFloat128Align();
2111       } else {
2112         assert(getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice &&
2113                "Expected OpenMP device compilation.");
2114         Width = AuxTarget->getFloat128Width();
2115         Align = AuxTarget->getFloat128Align();
2116       }
2117       break;
2118     case BuiltinType::NullPtr:
2119       Width = Target->getPointerWidth(0); // C++ 3.9.1p11: sizeof(nullptr_t)
2120       Align = Target->getPointerAlign(0); //   == sizeof(void*)
2121       break;
2122     case BuiltinType::ObjCId:
2123     case BuiltinType::ObjCClass:
2124     case BuiltinType::ObjCSel:
2125       Width = Target->getPointerWidth(0);
2126       Align = Target->getPointerAlign(0);
2127       break;
2128     case BuiltinType::OCLSampler:
2129     case BuiltinType::OCLEvent:
2130     case BuiltinType::OCLClkEvent:
2131     case BuiltinType::OCLQueue:
2132     case BuiltinType::OCLReserveID:
2133 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
2134     case BuiltinType::Id:
2135 #include "clang/Basic/OpenCLImageTypes.def"
2136 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
2137   case BuiltinType::Id:
2138 #include "clang/Basic/OpenCLExtensionTypes.def"
2139       AS = getTargetAddressSpace(
2140           Target->getOpenCLTypeAddrSpace(getOpenCLTypeKind(T)));
2141       Width = Target->getPointerWidth(AS);
2142       Align = Target->getPointerAlign(AS);
2143       break;
2144     // The SVE types are effectively target-specific.  The length of an
2145     // SVE_VECTOR_TYPE is only known at runtime, but it is always a multiple
2146     // of 128 bits.  There is one predicate bit for each vector byte, so the
2147     // length of an SVE_PREDICATE_TYPE is always a multiple of 16 bits.
2148     //
2149     // Because the length is only known at runtime, we use a dummy value
2150     // of 0 for the static length.  The alignment values are those defined
2151     // by the Procedure Call Standard for the Arm Architecture.
2152 #define SVE_VECTOR_TYPE(Name, MangledName, Id, SingletonId, NumEls, ElBits,    \
2153                         IsSigned, IsFP, IsBF)                                  \
2154   case BuiltinType::Id:                                                        \
2155     Width = 0;                                                                 \
2156     Align = 128;                                                               \
2157     break;
2158 #define SVE_PREDICATE_TYPE(Name, MangledName, Id, SingletonId, NumEls)         \
2159   case BuiltinType::Id:                                                        \
2160     Width = 0;                                                                 \
2161     Align = 16;                                                                \
2162     break;
2163 #include "clang/Basic/AArch64SVEACLETypes.def"
2164 #define PPC_VECTOR_TYPE(Name, Id, Size)                                        \
2165   case BuiltinType::Id:                                                        \
2166     Width = Size;                                                              \
2167     Align = Size;                                                              \
2168     break;
2169 #include "clang/Basic/PPCTypes.def"
2170     }
2171     break;
2172   case Type::ObjCObjectPointer:
2173     Width = Target->getPointerWidth(0);
2174     Align = Target->getPointerAlign(0);
2175     break;
2176   case Type::BlockPointer:
2177     AS = getTargetAddressSpace(cast<BlockPointerType>(T)->getPointeeType());
2178     Width = Target->getPointerWidth(AS);
2179     Align = Target->getPointerAlign(AS);
2180     break;
2181   case Type::LValueReference:
2182   case Type::RValueReference:
2183     // alignof and sizeof should never enter this code path here, so we go
2184     // the pointer route.
2185     AS = getTargetAddressSpace(cast<ReferenceType>(T)->getPointeeType());
2186     Width = Target->getPointerWidth(AS);
2187     Align = Target->getPointerAlign(AS);
2188     break;
2189   case Type::Pointer:
2190     AS = getTargetAddressSpace(cast<PointerType>(T)->getPointeeType());
2191     Width = Target->getPointerWidth(AS);
2192     Align = Target->getPointerAlign(AS);
2193     break;
2194   case Type::MemberPointer: {
2195     const auto *MPT = cast<MemberPointerType>(T);
2196     CXXABI::MemberPointerInfo MPI = ABI->getMemberPointerInfo(MPT);
2197     Width = MPI.Width;
2198     Align = MPI.Align;
2199     break;
2200   }
2201   case Type::Complex: {
2202     // Complex types have the same alignment as their elements, but twice the
2203     // size.
2204     TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType());
2205     Width = EltInfo.Width * 2;
2206     Align = EltInfo.Align;
2207     break;
2208   }
2209   case Type::ObjCObject:
2210     return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr());
2211   case Type::Adjusted:
2212   case Type::Decayed:
2213     return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr());
2214   case Type::ObjCInterface: {
2215     const auto *ObjCI = cast<ObjCInterfaceType>(T);
2216     if (ObjCI->getDecl()->isInvalidDecl()) {
2217       Width = 8;
2218       Align = 8;
2219       break;
2220     }
2221     const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
2222     Width = toBits(Layout.getSize());
2223     Align = toBits(Layout.getAlignment());
2224     break;
2225   }
2226   case Type::ExtInt: {
2227     const auto *EIT = cast<ExtIntType>(T);
2228     Align =
2229         std::min(static_cast<unsigned>(std::max(
2230                      getCharWidth(), llvm::PowerOf2Ceil(EIT->getNumBits()))),
2231                  Target->getLongLongAlign());
2232     Width = llvm::alignTo(EIT->getNumBits(), Align);
2233     break;
2234   }
2235   case Type::Record:
2236   case Type::Enum: {
2237     const auto *TT = cast<TagType>(T);
2238 
2239     if (TT->getDecl()->isInvalidDecl()) {
2240       Width = 8;
2241       Align = 8;
2242       break;
2243     }
2244 
2245     if (const auto *ET = dyn_cast<EnumType>(TT)) {
2246       const EnumDecl *ED = ET->getDecl();
2247       TypeInfo Info =
2248           getTypeInfo(ED->getIntegerType()->getUnqualifiedDesugaredType());
2249       if (unsigned AttrAlign = ED->getMaxAlignment()) {
2250         Info.Align = AttrAlign;
2251         Info.AlignIsRequired = true;
2252       }
2253       return Info;
2254     }
2255 
2256     const auto *RT = cast<RecordType>(TT);
2257     const RecordDecl *RD = RT->getDecl();
2258     const ASTRecordLayout &Layout = getASTRecordLayout(RD);
2259     Width = toBits(Layout.getSize());
2260     Align = toBits(Layout.getAlignment());
2261     AlignIsRequired = RD->hasAttr<AlignedAttr>();
2262     break;
2263   }
2264 
2265   case Type::SubstTemplateTypeParm:
2266     return getTypeInfo(cast<SubstTemplateTypeParmType>(T)->
2267                        getReplacementType().getTypePtr());
2268 
2269   case Type::Auto:
2270   case Type::DeducedTemplateSpecialization: {
2271     const auto *A = cast<DeducedType>(T);
2272     assert(!A->getDeducedType().isNull() &&
2273            "cannot request the size of an undeduced or dependent auto type");
2274     return getTypeInfo(A->getDeducedType().getTypePtr());
2275   }
2276 
2277   case Type::Paren:
2278     return getTypeInfo(cast<ParenType>(T)->getInnerType().getTypePtr());
2279 
2280   case Type::MacroQualified:
2281     return getTypeInfo(
2282         cast<MacroQualifiedType>(T)->getUnderlyingType().getTypePtr());
2283 
2284   case Type::ObjCTypeParam:
2285     return getTypeInfo(cast<ObjCTypeParamType>(T)->desugar().getTypePtr());
2286 
2287   case Type::Typedef: {
2288     const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl();
2289     TypeInfo Info = getTypeInfo(Typedef->getUnderlyingType().getTypePtr());
2290     // If the typedef has an aligned attribute on it, it overrides any computed
2291     // alignment we have.  This violates the GCC documentation (which says that
2292     // attribute(aligned) can only round up) but matches its implementation.
2293     if (unsigned AttrAlign = Typedef->getMaxAlignment()) {
2294       Align = AttrAlign;
2295       AlignIsRequired = true;
2296     } else {
2297       Align = Info.Align;
2298       AlignIsRequired = Info.AlignIsRequired;
2299     }
2300     Width = Info.Width;
2301     break;
2302   }
2303 
2304   case Type::Elaborated:
2305     return getTypeInfo(cast<ElaboratedType>(T)->getNamedType().getTypePtr());
2306 
2307   case Type::Attributed:
2308     return getTypeInfo(
2309                   cast<AttributedType>(T)->getEquivalentType().getTypePtr());
2310 
2311   case Type::Atomic: {
2312     // Start with the base type information.
2313     TypeInfo Info = getTypeInfo(cast<AtomicType>(T)->getValueType());
2314     Width = Info.Width;
2315     Align = Info.Align;
2316 
2317     if (!Width) {
2318       // An otherwise zero-sized type should still generate an
2319       // atomic operation.
2320       Width = Target->getCharWidth();
2321       assert(Align);
2322     } else if (Width <= Target->getMaxAtomicPromoteWidth()) {
2323       // If the size of the type doesn't exceed the platform's max
2324       // atomic promotion width, make the size and alignment more
2325       // favorable to atomic operations:
2326 
2327       // Round the size up to a power of 2.
2328       if (!llvm::isPowerOf2_64(Width))
2329         Width = llvm::NextPowerOf2(Width);
2330 
2331       // Set the alignment equal to the size.
2332       Align = static_cast<unsigned>(Width);
2333     }
2334   }
2335   break;
2336 
2337   case Type::Pipe:
2338     Width = Target->getPointerWidth(getTargetAddressSpace(LangAS::opencl_global));
2339     Align = Target->getPointerAlign(getTargetAddressSpace(LangAS::opencl_global));
2340     break;
2341   }
2342 
2343   assert(llvm::isPowerOf2_32(Align) && "Alignment must be power of 2");
2344   return TypeInfo(Width, Align, AlignIsRequired);
2345 }
2346 
2347 unsigned ASTContext::getTypeUnadjustedAlign(const Type *T) const {
2348   UnadjustedAlignMap::iterator I = MemoizedUnadjustedAlign.find(T);
2349   if (I != MemoizedUnadjustedAlign.end())
2350     return I->second;
2351 
2352   unsigned UnadjustedAlign;
2353   if (const auto *RT = T->getAs<RecordType>()) {
2354     const RecordDecl *RD = RT->getDecl();
2355     const ASTRecordLayout &Layout = getASTRecordLayout(RD);
2356     UnadjustedAlign = toBits(Layout.getUnadjustedAlignment());
2357   } else if (const auto *ObjCI = T->getAs<ObjCInterfaceType>()) {
2358     const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
2359     UnadjustedAlign = toBits(Layout.getUnadjustedAlignment());
2360   } else {
2361     UnadjustedAlign = getTypeAlign(T->getUnqualifiedDesugaredType());
2362   }
2363 
2364   MemoizedUnadjustedAlign[T] = UnadjustedAlign;
2365   return UnadjustedAlign;
2366 }
2367 
2368 unsigned ASTContext::getOpenMPDefaultSimdAlign(QualType T) const {
2369   unsigned SimdAlign = getTargetInfo().getSimdDefaultAlign();
2370   return SimdAlign;
2371 }
2372 
2373 /// toCharUnitsFromBits - Convert a size in bits to a size in characters.
2374 CharUnits ASTContext::toCharUnitsFromBits(int64_t BitSize) const {
2375   return CharUnits::fromQuantity(BitSize / getCharWidth());
2376 }
2377 
2378 /// toBits - Convert a size in characters to a size in characters.
2379 int64_t ASTContext::toBits(CharUnits CharSize) const {
2380   return CharSize.getQuantity() * getCharWidth();
2381 }
2382 
2383 /// getTypeSizeInChars - Return the size of the specified type, in characters.
2384 /// This method does not work on incomplete types.
2385 CharUnits ASTContext::getTypeSizeInChars(QualType T) const {
2386   return getTypeInfoInChars(T).Width;
2387 }
2388 CharUnits ASTContext::getTypeSizeInChars(const Type *T) const {
2389   return getTypeInfoInChars(T).Width;
2390 }
2391 
2392 /// getTypeAlignInChars - Return the ABI-specified alignment of a type, in
2393 /// characters. This method does not work on incomplete types.
2394 CharUnits ASTContext::getTypeAlignInChars(QualType T) const {
2395   return toCharUnitsFromBits(getTypeAlign(T));
2396 }
2397 CharUnits ASTContext::getTypeAlignInChars(const Type *T) const {
2398   return toCharUnitsFromBits(getTypeAlign(T));
2399 }
2400 
2401 /// getTypeUnadjustedAlignInChars - Return the ABI-specified alignment of a
2402 /// type, in characters, before alignment adustments. This method does
2403 /// not work on incomplete types.
2404 CharUnits ASTContext::getTypeUnadjustedAlignInChars(QualType T) const {
2405   return toCharUnitsFromBits(getTypeUnadjustedAlign(T));
2406 }
2407 CharUnits ASTContext::getTypeUnadjustedAlignInChars(const Type *T) const {
2408   return toCharUnitsFromBits(getTypeUnadjustedAlign(T));
2409 }
2410 
2411 /// getPreferredTypeAlign - Return the "preferred" alignment of the specified
2412 /// type for the current target in bits.  This can be different than the ABI
2413 /// alignment in cases where it is beneficial for performance or backwards
2414 /// compatibility preserving to overalign a data type. (Note: despite the name,
2415 /// the preferred alignment is ABI-impacting, and not an optimization.)
2416 unsigned ASTContext::getPreferredTypeAlign(const Type *T) const {
2417   TypeInfo TI = getTypeInfo(T);
2418   unsigned ABIAlign = TI.Align;
2419 
2420   T = T->getBaseElementTypeUnsafe();
2421 
2422   // The preferred alignment of member pointers is that of a pointer.
2423   if (T->isMemberPointerType())
2424     return getPreferredTypeAlign(getPointerDiffType().getTypePtr());
2425 
2426   if (!Target->allowsLargerPreferedTypeAlignment())
2427     return ABIAlign;
2428 
2429   if (const auto *RT = T->getAs<RecordType>()) {
2430     if (TI.AlignIsRequired || RT->getDecl()->isInvalidDecl())
2431       return ABIAlign;
2432 
2433     unsigned PreferredAlign = static_cast<unsigned>(
2434         toBits(getASTRecordLayout(RT->getDecl()).PreferredAlignment));
2435     assert(PreferredAlign >= ABIAlign &&
2436            "PreferredAlign should be at least as large as ABIAlign.");
2437     return PreferredAlign;
2438   }
2439 
2440   // Double (and, for targets supporting AIX `power` alignment, long double) and
2441   // long long should be naturally aligned (despite requiring less alignment) if
2442   // possible.
2443   if (const auto *CT = T->getAs<ComplexType>())
2444     T = CT->getElementType().getTypePtr();
2445   if (const auto *ET = T->getAs<EnumType>())
2446     T = ET->getDecl()->getIntegerType().getTypePtr();
2447   if (T->isSpecificBuiltinType(BuiltinType::Double) ||
2448       T->isSpecificBuiltinType(BuiltinType::LongLong) ||
2449       T->isSpecificBuiltinType(BuiltinType::ULongLong) ||
2450       (T->isSpecificBuiltinType(BuiltinType::LongDouble) &&
2451        Target->defaultsToAIXPowerAlignment()))
2452     // Don't increase the alignment if an alignment attribute was specified on a
2453     // typedef declaration.
2454     if (!TI.AlignIsRequired)
2455       return std::max(ABIAlign, (unsigned)getTypeSize(T));
2456 
2457   return ABIAlign;
2458 }
2459 
2460 /// getTargetDefaultAlignForAttributeAligned - Return the default alignment
2461 /// for __attribute__((aligned)) on this target, to be used if no alignment
2462 /// value is specified.
2463 unsigned ASTContext::getTargetDefaultAlignForAttributeAligned() const {
2464   return getTargetInfo().getDefaultAlignForAttributeAligned();
2465 }
2466 
2467 /// getAlignOfGlobalVar - Return the alignment in bits that should be given
2468 /// to a global variable of the specified type.
2469 unsigned ASTContext::getAlignOfGlobalVar(QualType T) const {
2470   uint64_t TypeSize = getTypeSize(T.getTypePtr());
2471   return std::max(getPreferredTypeAlign(T),
2472                   getTargetInfo().getMinGlobalAlign(TypeSize));
2473 }
2474 
2475 /// getAlignOfGlobalVarInChars - Return the alignment in characters that
2476 /// should be given to a global variable of the specified type.
2477 CharUnits ASTContext::getAlignOfGlobalVarInChars(QualType T) const {
2478   return toCharUnitsFromBits(getAlignOfGlobalVar(T));
2479 }
2480 
2481 CharUnits ASTContext::getOffsetOfBaseWithVBPtr(const CXXRecordDecl *RD) const {
2482   CharUnits Offset = CharUnits::Zero();
2483   const ASTRecordLayout *Layout = &getASTRecordLayout(RD);
2484   while (const CXXRecordDecl *Base = Layout->getBaseSharingVBPtr()) {
2485     Offset += Layout->getBaseClassOffset(Base);
2486     Layout = &getASTRecordLayout(Base);
2487   }
2488   return Offset;
2489 }
2490 
2491 CharUnits ASTContext::getMemberPointerPathAdjustment(const APValue &MP) const {
2492   const ValueDecl *MPD = MP.getMemberPointerDecl();
2493   CharUnits ThisAdjustment = CharUnits::Zero();
2494   ArrayRef<const CXXRecordDecl*> Path = MP.getMemberPointerPath();
2495   bool DerivedMember = MP.isMemberPointerToDerivedMember();
2496   const CXXRecordDecl *RD = cast<CXXRecordDecl>(MPD->getDeclContext());
2497   for (unsigned I = 0, N = Path.size(); I != N; ++I) {
2498     const CXXRecordDecl *Base = RD;
2499     const CXXRecordDecl *Derived = Path[I];
2500     if (DerivedMember)
2501       std::swap(Base, Derived);
2502     ThisAdjustment += getASTRecordLayout(Derived).getBaseClassOffset(Base);
2503     RD = Path[I];
2504   }
2505   if (DerivedMember)
2506     ThisAdjustment = -ThisAdjustment;
2507   return ThisAdjustment;
2508 }
2509 
2510 /// DeepCollectObjCIvars -
2511 /// This routine first collects all declared, but not synthesized, ivars in
2512 /// super class and then collects all ivars, including those synthesized for
2513 /// current class. This routine is used for implementation of current class
2514 /// when all ivars, declared and synthesized are known.
2515 void ASTContext::DeepCollectObjCIvars(const ObjCInterfaceDecl *OI,
2516                                       bool leafClass,
2517                             SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const {
2518   if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass())
2519     DeepCollectObjCIvars(SuperClass, false, Ivars);
2520   if (!leafClass) {
2521     for (const auto *I : OI->ivars())
2522       Ivars.push_back(I);
2523   } else {
2524     auto *IDecl = const_cast<ObjCInterfaceDecl *>(OI);
2525     for (const ObjCIvarDecl *Iv = IDecl->all_declared_ivar_begin(); Iv;
2526          Iv= Iv->getNextIvar())
2527       Ivars.push_back(Iv);
2528   }
2529 }
2530 
2531 /// CollectInheritedProtocols - Collect all protocols in current class and
2532 /// those inherited by it.
2533 void ASTContext::CollectInheritedProtocols(const Decl *CDecl,
2534                           llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) {
2535   if (const auto *OI = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
2536     // We can use protocol_iterator here instead of
2537     // all_referenced_protocol_iterator since we are walking all categories.
2538     for (auto *Proto : OI->all_referenced_protocols()) {
2539       CollectInheritedProtocols(Proto, Protocols);
2540     }
2541 
2542     // Categories of this Interface.
2543     for (const auto *Cat : OI->visible_categories())
2544       CollectInheritedProtocols(Cat, Protocols);
2545 
2546     if (ObjCInterfaceDecl *SD = OI->getSuperClass())
2547       while (SD) {
2548         CollectInheritedProtocols(SD, Protocols);
2549         SD = SD->getSuperClass();
2550       }
2551   } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(CDecl)) {
2552     for (auto *Proto : OC->protocols()) {
2553       CollectInheritedProtocols(Proto, Protocols);
2554     }
2555   } else if (const auto *OP = dyn_cast<ObjCProtocolDecl>(CDecl)) {
2556     // Insert the protocol.
2557     if (!Protocols.insert(
2558           const_cast<ObjCProtocolDecl *>(OP->getCanonicalDecl())).second)
2559       return;
2560 
2561     for (auto *Proto : OP->protocols())
2562       CollectInheritedProtocols(Proto, Protocols);
2563   }
2564 }
2565 
2566 static bool unionHasUniqueObjectRepresentations(const ASTContext &Context,
2567                                                 const RecordDecl *RD) {
2568   assert(RD->isUnion() && "Must be union type");
2569   CharUnits UnionSize = Context.getTypeSizeInChars(RD->getTypeForDecl());
2570 
2571   for (const auto *Field : RD->fields()) {
2572     if (!Context.hasUniqueObjectRepresentations(Field->getType()))
2573       return false;
2574     CharUnits FieldSize = Context.getTypeSizeInChars(Field->getType());
2575     if (FieldSize != UnionSize)
2576       return false;
2577   }
2578   return !RD->field_empty();
2579 }
2580 
2581 static bool isStructEmpty(QualType Ty) {
2582   const RecordDecl *RD = Ty->castAs<RecordType>()->getDecl();
2583 
2584   if (!RD->field_empty())
2585     return false;
2586 
2587   if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RD))
2588     return ClassDecl->isEmpty();
2589 
2590   return true;
2591 }
2592 
2593 static llvm::Optional<int64_t>
2594 structHasUniqueObjectRepresentations(const ASTContext &Context,
2595                                      const RecordDecl *RD) {
2596   assert(!RD->isUnion() && "Must be struct/class type");
2597   const auto &Layout = Context.getASTRecordLayout(RD);
2598 
2599   int64_t CurOffsetInBits = 0;
2600   if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RD)) {
2601     if (ClassDecl->isDynamicClass())
2602       return llvm::None;
2603 
2604     SmallVector<std::pair<QualType, int64_t>, 4> Bases;
2605     for (const auto &Base : ClassDecl->bases()) {
2606       // Empty types can be inherited from, and non-empty types can potentially
2607       // have tail padding, so just make sure there isn't an error.
2608       if (!isStructEmpty(Base.getType())) {
2609         llvm::Optional<int64_t> Size = structHasUniqueObjectRepresentations(
2610             Context, Base.getType()->castAs<RecordType>()->getDecl());
2611         if (!Size)
2612           return llvm::None;
2613         Bases.emplace_back(Base.getType(), Size.getValue());
2614       }
2615     }
2616 
2617     llvm::sort(Bases, [&](const std::pair<QualType, int64_t> &L,
2618                           const std::pair<QualType, int64_t> &R) {
2619       return Layout.getBaseClassOffset(L.first->getAsCXXRecordDecl()) <
2620              Layout.getBaseClassOffset(R.first->getAsCXXRecordDecl());
2621     });
2622 
2623     for (const auto &Base : Bases) {
2624       int64_t BaseOffset = Context.toBits(
2625           Layout.getBaseClassOffset(Base.first->getAsCXXRecordDecl()));
2626       int64_t BaseSize = Base.second;
2627       if (BaseOffset != CurOffsetInBits)
2628         return llvm::None;
2629       CurOffsetInBits = BaseOffset + BaseSize;
2630     }
2631   }
2632 
2633   for (const auto *Field : RD->fields()) {
2634     if (!Field->getType()->isReferenceType() &&
2635         !Context.hasUniqueObjectRepresentations(Field->getType()))
2636       return llvm::None;
2637 
2638     int64_t FieldSizeInBits =
2639         Context.toBits(Context.getTypeSizeInChars(Field->getType()));
2640     if (Field->isBitField()) {
2641       int64_t BitfieldSize = Field->getBitWidthValue(Context);
2642 
2643       if (BitfieldSize > FieldSizeInBits)
2644         return llvm::None;
2645       FieldSizeInBits = BitfieldSize;
2646     }
2647 
2648     int64_t FieldOffsetInBits = Context.getFieldOffset(Field);
2649 
2650     if (FieldOffsetInBits != CurOffsetInBits)
2651       return llvm::None;
2652 
2653     CurOffsetInBits = FieldSizeInBits + FieldOffsetInBits;
2654   }
2655 
2656   return CurOffsetInBits;
2657 }
2658 
2659 bool ASTContext::hasUniqueObjectRepresentations(QualType Ty) const {
2660   // C++17 [meta.unary.prop]:
2661   //   The predicate condition for a template specialization
2662   //   has_unique_object_representations<T> shall be
2663   //   satisfied if and only if:
2664   //     (9.1) - T is trivially copyable, and
2665   //     (9.2) - any two objects of type T with the same value have the same
2666   //     object representation, where two objects
2667   //   of array or non-union class type are considered to have the same value
2668   //   if their respective sequences of
2669   //   direct subobjects have the same values, and two objects of union type
2670   //   are considered to have the same
2671   //   value if they have the same active member and the corresponding members
2672   //   have the same value.
2673   //   The set of scalar types for which this condition holds is
2674   //   implementation-defined. [ Note: If a type has padding
2675   //   bits, the condition does not hold; otherwise, the condition holds true
2676   //   for unsigned integral types. -- end note ]
2677   assert(!Ty.isNull() && "Null QualType sent to unique object rep check");
2678 
2679   // Arrays are unique only if their element type is unique.
2680   if (Ty->isArrayType())
2681     return hasUniqueObjectRepresentations(getBaseElementType(Ty));
2682 
2683   // (9.1) - T is trivially copyable...
2684   if (!Ty.isTriviallyCopyableType(*this))
2685     return false;
2686 
2687   // All integrals and enums are unique.
2688   if (Ty->isIntegralOrEnumerationType())
2689     return true;
2690 
2691   // All other pointers are unique.
2692   if (Ty->isPointerType())
2693     return true;
2694 
2695   if (Ty->isMemberPointerType()) {
2696     const auto *MPT = Ty->getAs<MemberPointerType>();
2697     return !ABI->getMemberPointerInfo(MPT).HasPadding;
2698   }
2699 
2700   if (Ty->isRecordType()) {
2701     const RecordDecl *Record = Ty->castAs<RecordType>()->getDecl();
2702 
2703     if (Record->isInvalidDecl())
2704       return false;
2705 
2706     if (Record->isUnion())
2707       return unionHasUniqueObjectRepresentations(*this, Record);
2708 
2709     Optional<int64_t> StructSize =
2710         structHasUniqueObjectRepresentations(*this, Record);
2711 
2712     return StructSize &&
2713            StructSize.getValue() == static_cast<int64_t>(getTypeSize(Ty));
2714   }
2715 
2716   // FIXME: More cases to handle here (list by rsmith):
2717   // vectors (careful about, eg, vector of 3 foo)
2718   // _Complex int and friends
2719   // _Atomic T
2720   // Obj-C block pointers
2721   // Obj-C object pointers
2722   // and perhaps OpenCL's various builtin types (pipe, sampler_t, event_t,
2723   // clk_event_t, queue_t, reserve_id_t)
2724   // There're also Obj-C class types and the Obj-C selector type, but I think it
2725   // makes sense for those to return false here.
2726 
2727   return false;
2728 }
2729 
2730 unsigned ASTContext::CountNonClassIvars(const ObjCInterfaceDecl *OI) const {
2731   unsigned count = 0;
2732   // Count ivars declared in class extension.
2733   for (const auto *Ext : OI->known_extensions())
2734     count += Ext->ivar_size();
2735 
2736   // Count ivar defined in this class's implementation.  This
2737   // includes synthesized ivars.
2738   if (ObjCImplementationDecl *ImplDecl = OI->getImplementation())
2739     count += ImplDecl->ivar_size();
2740 
2741   return count;
2742 }
2743 
2744 bool ASTContext::isSentinelNullExpr(const Expr *E) {
2745   if (!E)
2746     return false;
2747 
2748   // nullptr_t is always treated as null.
2749   if (E->getType()->isNullPtrType()) return true;
2750 
2751   if (E->getType()->isAnyPointerType() &&
2752       E->IgnoreParenCasts()->isNullPointerConstant(*this,
2753                                                 Expr::NPC_ValueDependentIsNull))
2754     return true;
2755 
2756   // Unfortunately, __null has type 'int'.
2757   if (isa<GNUNullExpr>(E)) return true;
2758 
2759   return false;
2760 }
2761 
2762 /// Get the implementation of ObjCInterfaceDecl, or nullptr if none
2763 /// exists.
2764 ObjCImplementationDecl *ASTContext::getObjCImplementation(ObjCInterfaceDecl *D) {
2765   llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
2766     I = ObjCImpls.find(D);
2767   if (I != ObjCImpls.end())
2768     return cast<ObjCImplementationDecl>(I->second);
2769   return nullptr;
2770 }
2771 
2772 /// Get the implementation of ObjCCategoryDecl, or nullptr if none
2773 /// exists.
2774 ObjCCategoryImplDecl *ASTContext::getObjCImplementation(ObjCCategoryDecl *D) {
2775   llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
2776     I = ObjCImpls.find(D);
2777   if (I != ObjCImpls.end())
2778     return cast<ObjCCategoryImplDecl>(I->second);
2779   return nullptr;
2780 }
2781 
2782 /// Set the implementation of ObjCInterfaceDecl.
2783 void ASTContext::setObjCImplementation(ObjCInterfaceDecl *IFaceD,
2784                            ObjCImplementationDecl *ImplD) {
2785   assert(IFaceD && ImplD && "Passed null params");
2786   ObjCImpls[IFaceD] = ImplD;
2787 }
2788 
2789 /// Set the implementation of ObjCCategoryDecl.
2790 void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD,
2791                            ObjCCategoryImplDecl *ImplD) {
2792   assert(CatD && ImplD && "Passed null params");
2793   ObjCImpls[CatD] = ImplD;
2794 }
2795 
2796 const ObjCMethodDecl *
2797 ASTContext::getObjCMethodRedeclaration(const ObjCMethodDecl *MD) const {
2798   return ObjCMethodRedecls.lookup(MD);
2799 }
2800 
2801 void ASTContext::setObjCMethodRedeclaration(const ObjCMethodDecl *MD,
2802                                             const ObjCMethodDecl *Redecl) {
2803   assert(!getObjCMethodRedeclaration(MD) && "MD already has a redeclaration");
2804   ObjCMethodRedecls[MD] = Redecl;
2805 }
2806 
2807 const ObjCInterfaceDecl *ASTContext::getObjContainingInterface(
2808                                               const NamedDecl *ND) const {
2809   if (const auto *ID = dyn_cast<ObjCInterfaceDecl>(ND->getDeclContext()))
2810     return ID;
2811   if (const auto *CD = dyn_cast<ObjCCategoryDecl>(ND->getDeclContext()))
2812     return CD->getClassInterface();
2813   if (const auto *IMD = dyn_cast<ObjCImplDecl>(ND->getDeclContext()))
2814     return IMD->getClassInterface();
2815 
2816   return nullptr;
2817 }
2818 
2819 /// Get the copy initialization expression of VarDecl, or nullptr if
2820 /// none exists.
2821 BlockVarCopyInit ASTContext::getBlockVarCopyInit(const VarDecl *VD) const {
2822   assert(VD && "Passed null params");
2823   assert(VD->hasAttr<BlocksAttr>() &&
2824          "getBlockVarCopyInits - not __block var");
2825   auto I = BlockVarCopyInits.find(VD);
2826   if (I != BlockVarCopyInits.end())
2827     return I->second;
2828   return {nullptr, false};
2829 }
2830 
2831 /// Set the copy initialization expression of a block var decl.
2832 void ASTContext::setBlockVarCopyInit(const VarDecl*VD, Expr *CopyExpr,
2833                                      bool CanThrow) {
2834   assert(VD && CopyExpr && "Passed null params");
2835   assert(VD->hasAttr<BlocksAttr>() &&
2836          "setBlockVarCopyInits - not __block var");
2837   BlockVarCopyInits[VD].setExprAndFlag(CopyExpr, CanThrow);
2838 }
2839 
2840 TypeSourceInfo *ASTContext::CreateTypeSourceInfo(QualType T,
2841                                                  unsigned DataSize) const {
2842   if (!DataSize)
2843     DataSize = TypeLoc::getFullDataSizeForType(T);
2844   else
2845     assert(DataSize == TypeLoc::getFullDataSizeForType(T) &&
2846            "incorrect data size provided to CreateTypeSourceInfo!");
2847 
2848   auto *TInfo =
2849     (TypeSourceInfo*)BumpAlloc.Allocate(sizeof(TypeSourceInfo) + DataSize, 8);
2850   new (TInfo) TypeSourceInfo(T);
2851   return TInfo;
2852 }
2853 
2854 TypeSourceInfo *ASTContext::getTrivialTypeSourceInfo(QualType T,
2855                                                      SourceLocation L) const {
2856   TypeSourceInfo *DI = CreateTypeSourceInfo(T);
2857   DI->getTypeLoc().initialize(const_cast<ASTContext &>(*this), L);
2858   return DI;
2859 }
2860 
2861 const ASTRecordLayout &
2862 ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) const {
2863   return getObjCLayout(D, nullptr);
2864 }
2865 
2866 const ASTRecordLayout &
2867 ASTContext::getASTObjCImplementationLayout(
2868                                         const ObjCImplementationDecl *D) const {
2869   return getObjCLayout(D->getClassInterface(), D);
2870 }
2871 
2872 //===----------------------------------------------------------------------===//
2873 //                   Type creation/memoization methods
2874 //===----------------------------------------------------------------------===//
2875 
2876 QualType
2877 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const {
2878   unsigned fastQuals = quals.getFastQualifiers();
2879   quals.removeFastQualifiers();
2880 
2881   // Check if we've already instantiated this type.
2882   llvm::FoldingSetNodeID ID;
2883   ExtQuals::Profile(ID, baseType, quals);
2884   void *insertPos = nullptr;
2885   if (ExtQuals *eq = ExtQualNodes.FindNodeOrInsertPos(ID, insertPos)) {
2886     assert(eq->getQualifiers() == quals);
2887     return QualType(eq, fastQuals);
2888   }
2889 
2890   // If the base type is not canonical, make the appropriate canonical type.
2891   QualType canon;
2892   if (!baseType->isCanonicalUnqualified()) {
2893     SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split();
2894     canonSplit.Quals.addConsistentQualifiers(quals);
2895     canon = getExtQualType(canonSplit.Ty, canonSplit.Quals);
2896 
2897     // Re-find the insert position.
2898     (void) ExtQualNodes.FindNodeOrInsertPos(ID, insertPos);
2899   }
2900 
2901   auto *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals);
2902   ExtQualNodes.InsertNode(eq, insertPos);
2903   return QualType(eq, fastQuals);
2904 }
2905 
2906 QualType ASTContext::getAddrSpaceQualType(QualType T,
2907                                           LangAS AddressSpace) const {
2908   QualType CanT = getCanonicalType(T);
2909   if (CanT.getAddressSpace() == AddressSpace)
2910     return T;
2911 
2912   // If we are composing extended qualifiers together, merge together
2913   // into one ExtQuals node.
2914   QualifierCollector Quals;
2915   const Type *TypeNode = Quals.strip(T);
2916 
2917   // If this type already has an address space specified, it cannot get
2918   // another one.
2919   assert(!Quals.hasAddressSpace() &&
2920          "Type cannot be in multiple addr spaces!");
2921   Quals.addAddressSpace(AddressSpace);
2922 
2923   return getExtQualType(TypeNode, Quals);
2924 }
2925 
2926 QualType ASTContext::removeAddrSpaceQualType(QualType T) const {
2927   // If the type is not qualified with an address space, just return it
2928   // immediately.
2929   if (!T.hasAddressSpace())
2930     return T;
2931 
2932   // If we are composing extended qualifiers together, merge together
2933   // into one ExtQuals node.
2934   QualifierCollector Quals;
2935   const Type *TypeNode;
2936 
2937   while (T.hasAddressSpace()) {
2938     TypeNode = Quals.strip(T);
2939 
2940     // If the type no longer has an address space after stripping qualifiers,
2941     // jump out.
2942     if (!QualType(TypeNode, 0).hasAddressSpace())
2943       break;
2944 
2945     // There might be sugar in the way. Strip it and try again.
2946     T = T.getSingleStepDesugaredType(*this);
2947   }
2948 
2949   Quals.removeAddressSpace();
2950 
2951   // Removal of the address space can mean there are no longer any
2952   // non-fast qualifiers, so creating an ExtQualType isn't possible (asserts)
2953   // or required.
2954   if (Quals.hasNonFastQualifiers())
2955     return getExtQualType(TypeNode, Quals);
2956   else
2957     return QualType(TypeNode, Quals.getFastQualifiers());
2958 }
2959 
2960 QualType ASTContext::getObjCGCQualType(QualType T,
2961                                        Qualifiers::GC GCAttr) const {
2962   QualType CanT = getCanonicalType(T);
2963   if (CanT.getObjCGCAttr() == GCAttr)
2964     return T;
2965 
2966   if (const auto *ptr = T->getAs<PointerType>()) {
2967     QualType Pointee = ptr->getPointeeType();
2968     if (Pointee->isAnyPointerType()) {
2969       QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
2970       return getPointerType(ResultType);
2971     }
2972   }
2973 
2974   // If we are composing extended qualifiers together, merge together
2975   // into one ExtQuals node.
2976   QualifierCollector Quals;
2977   const Type *TypeNode = Quals.strip(T);
2978 
2979   // If this type already has an ObjCGC specified, it cannot get
2980   // another one.
2981   assert(!Quals.hasObjCGCAttr() &&
2982          "Type cannot have multiple ObjCGCs!");
2983   Quals.addObjCGCAttr(GCAttr);
2984 
2985   return getExtQualType(TypeNode, Quals);
2986 }
2987 
2988 QualType ASTContext::removePtrSizeAddrSpace(QualType T) const {
2989   if (const PointerType *Ptr = T->getAs<PointerType>()) {
2990     QualType Pointee = Ptr->getPointeeType();
2991     if (isPtrSizeAddressSpace(Pointee.getAddressSpace())) {
2992       return getPointerType(removeAddrSpaceQualType(Pointee));
2993     }
2994   }
2995   return T;
2996 }
2997 
2998 const FunctionType *ASTContext::adjustFunctionType(const FunctionType *T,
2999                                                    FunctionType::ExtInfo Info) {
3000   if (T->getExtInfo() == Info)
3001     return T;
3002 
3003   QualType Result;
3004   if (const auto *FNPT = dyn_cast<FunctionNoProtoType>(T)) {
3005     Result = getFunctionNoProtoType(FNPT->getReturnType(), Info);
3006   } else {
3007     const auto *FPT = cast<FunctionProtoType>(T);
3008     FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
3009     EPI.ExtInfo = Info;
3010     Result = getFunctionType(FPT->getReturnType(), FPT->getParamTypes(), EPI);
3011   }
3012 
3013   return cast<FunctionType>(Result.getTypePtr());
3014 }
3015 
3016 void ASTContext::adjustDeducedFunctionResultType(FunctionDecl *FD,
3017                                                  QualType ResultType) {
3018   FD = FD->getMostRecentDecl();
3019   while (true) {
3020     const auto *FPT = FD->getType()->castAs<FunctionProtoType>();
3021     FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
3022     FD->setType(getFunctionType(ResultType, FPT->getParamTypes(), EPI));
3023     if (FunctionDecl *Next = FD->getPreviousDecl())
3024       FD = Next;
3025     else
3026       break;
3027   }
3028   if (ASTMutationListener *L = getASTMutationListener())
3029     L->DeducedReturnType(FD, ResultType);
3030 }
3031 
3032 /// Get a function type and produce the equivalent function type with the
3033 /// specified exception specification. Type sugar that can be present on a
3034 /// declaration of a function with an exception specification is permitted
3035 /// and preserved. Other type sugar (for instance, typedefs) is not.
3036 QualType ASTContext::getFunctionTypeWithExceptionSpec(
3037     QualType Orig, const FunctionProtoType::ExceptionSpecInfo &ESI) {
3038   // Might have some parens.
3039   if (const auto *PT = dyn_cast<ParenType>(Orig))
3040     return getParenType(
3041         getFunctionTypeWithExceptionSpec(PT->getInnerType(), ESI));
3042 
3043   // Might be wrapped in a macro qualified type.
3044   if (const auto *MQT = dyn_cast<MacroQualifiedType>(Orig))
3045     return getMacroQualifiedType(
3046         getFunctionTypeWithExceptionSpec(MQT->getUnderlyingType(), ESI),
3047         MQT->getMacroIdentifier());
3048 
3049   // Might have a calling-convention attribute.
3050   if (const auto *AT = dyn_cast<AttributedType>(Orig))
3051     return getAttributedType(
3052         AT->getAttrKind(),
3053         getFunctionTypeWithExceptionSpec(AT->getModifiedType(), ESI),
3054         getFunctionTypeWithExceptionSpec(AT->getEquivalentType(), ESI));
3055 
3056   // Anything else must be a function type. Rebuild it with the new exception
3057   // specification.
3058   const auto *Proto = Orig->castAs<FunctionProtoType>();
3059   return getFunctionType(
3060       Proto->getReturnType(), Proto->getParamTypes(),
3061       Proto->getExtProtoInfo().withExceptionSpec(ESI));
3062 }
3063 
3064 bool ASTContext::hasSameFunctionTypeIgnoringExceptionSpec(QualType T,
3065                                                           QualType U) {
3066   return hasSameType(T, U) ||
3067          (getLangOpts().CPlusPlus17 &&
3068           hasSameType(getFunctionTypeWithExceptionSpec(T, EST_None),
3069                       getFunctionTypeWithExceptionSpec(U, EST_None)));
3070 }
3071 
3072 QualType ASTContext::getFunctionTypeWithoutPtrSizes(QualType T) {
3073   if (const auto *Proto = T->getAs<FunctionProtoType>()) {
3074     QualType RetTy = removePtrSizeAddrSpace(Proto->getReturnType());
3075     SmallVector<QualType, 16> Args(Proto->param_types());
3076     for (unsigned i = 0, n = Args.size(); i != n; ++i)
3077       Args[i] = removePtrSizeAddrSpace(Args[i]);
3078     return getFunctionType(RetTy, Args, Proto->getExtProtoInfo());
3079   }
3080 
3081   if (const FunctionNoProtoType *Proto = T->getAs<FunctionNoProtoType>()) {
3082     QualType RetTy = removePtrSizeAddrSpace(Proto->getReturnType());
3083     return getFunctionNoProtoType(RetTy, Proto->getExtInfo());
3084   }
3085 
3086   return T;
3087 }
3088 
3089 bool ASTContext::hasSameFunctionTypeIgnoringPtrSizes(QualType T, QualType U) {
3090   return hasSameType(T, U) ||
3091          hasSameType(getFunctionTypeWithoutPtrSizes(T),
3092                      getFunctionTypeWithoutPtrSizes(U));
3093 }
3094 
3095 void ASTContext::adjustExceptionSpec(
3096     FunctionDecl *FD, const FunctionProtoType::ExceptionSpecInfo &ESI,
3097     bool AsWritten) {
3098   // Update the type.
3099   QualType Updated =
3100       getFunctionTypeWithExceptionSpec(FD->getType(), ESI);
3101   FD->setType(Updated);
3102 
3103   if (!AsWritten)
3104     return;
3105 
3106   // Update the type in the type source information too.
3107   if (TypeSourceInfo *TSInfo = FD->getTypeSourceInfo()) {
3108     // If the type and the type-as-written differ, we may need to update
3109     // the type-as-written too.
3110     if (TSInfo->getType() != FD->getType())
3111       Updated = getFunctionTypeWithExceptionSpec(TSInfo->getType(), ESI);
3112 
3113     // FIXME: When we get proper type location information for exceptions,
3114     // we'll also have to rebuild the TypeSourceInfo. For now, we just patch
3115     // up the TypeSourceInfo;
3116     assert(TypeLoc::getFullDataSizeForType(Updated) ==
3117                TypeLoc::getFullDataSizeForType(TSInfo->getType()) &&
3118            "TypeLoc size mismatch from updating exception specification");
3119     TSInfo->overrideType(Updated);
3120   }
3121 }
3122 
3123 /// getComplexType - Return the uniqued reference to the type for a complex
3124 /// number with the specified element type.
3125 QualType ASTContext::getComplexType(QualType T) const {
3126   // Unique pointers, to guarantee there is only one pointer of a particular
3127   // structure.
3128   llvm::FoldingSetNodeID ID;
3129   ComplexType::Profile(ID, T);
3130 
3131   void *InsertPos = nullptr;
3132   if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
3133     return QualType(CT, 0);
3134 
3135   // If the pointee type isn't canonical, this won't be a canonical type either,
3136   // so fill in the canonical type field.
3137   QualType Canonical;
3138   if (!T.isCanonical()) {
3139     Canonical = getComplexType(getCanonicalType(T));
3140 
3141     // Get the new insert position for the node we care about.
3142     ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
3143     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3144   }
3145   auto *New = new (*this, TypeAlignment) ComplexType(T, Canonical);
3146   Types.push_back(New);
3147   ComplexTypes.InsertNode(New, InsertPos);
3148   return QualType(New, 0);
3149 }
3150 
3151 /// getPointerType - Return the uniqued reference to the type for a pointer to
3152 /// the specified type.
3153 QualType ASTContext::getPointerType(QualType T) const {
3154   // Unique pointers, to guarantee there is only one pointer of a particular
3155   // structure.
3156   llvm::FoldingSetNodeID ID;
3157   PointerType::Profile(ID, T);
3158 
3159   void *InsertPos = nullptr;
3160   if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
3161     return QualType(PT, 0);
3162 
3163   // If the pointee type isn't canonical, this won't be a canonical type either,
3164   // so fill in the canonical type field.
3165   QualType Canonical;
3166   if (!T.isCanonical()) {
3167     Canonical = getPointerType(getCanonicalType(T));
3168 
3169     // Get the new insert position for the node we care about.
3170     PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
3171     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3172   }
3173   auto *New = new (*this, TypeAlignment) PointerType(T, Canonical);
3174   Types.push_back(New);
3175   PointerTypes.InsertNode(New, InsertPos);
3176   return QualType(New, 0);
3177 }
3178 
3179 QualType ASTContext::getAdjustedType(QualType Orig, QualType New) const {
3180   llvm::FoldingSetNodeID ID;
3181   AdjustedType::Profile(ID, Orig, New);
3182   void *InsertPos = nullptr;
3183   AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
3184   if (AT)
3185     return QualType(AT, 0);
3186 
3187   QualType Canonical = getCanonicalType(New);
3188 
3189   // Get the new insert position for the node we care about.
3190   AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
3191   assert(!AT && "Shouldn't be in the map!");
3192 
3193   AT = new (*this, TypeAlignment)
3194       AdjustedType(Type::Adjusted, Orig, New, Canonical);
3195   Types.push_back(AT);
3196   AdjustedTypes.InsertNode(AT, InsertPos);
3197   return QualType(AT, 0);
3198 }
3199 
3200 QualType ASTContext::getDecayedType(QualType T) const {
3201   assert((T->isArrayType() || T->isFunctionType()) && "T does not decay");
3202 
3203   QualType Decayed;
3204 
3205   // C99 6.7.5.3p7:
3206   //   A declaration of a parameter as "array of type" shall be
3207   //   adjusted to "qualified pointer to type", where the type
3208   //   qualifiers (if any) are those specified within the [ and ] of
3209   //   the array type derivation.
3210   if (T->isArrayType())
3211     Decayed = getArrayDecayedType(T);
3212 
3213   // C99 6.7.5.3p8:
3214   //   A declaration of a parameter as "function returning type"
3215   //   shall be adjusted to "pointer to function returning type", as
3216   //   in 6.3.2.1.
3217   if (T->isFunctionType())
3218     Decayed = getPointerType(T);
3219 
3220   llvm::FoldingSetNodeID ID;
3221   AdjustedType::Profile(ID, T, Decayed);
3222   void *InsertPos = nullptr;
3223   AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
3224   if (AT)
3225     return QualType(AT, 0);
3226 
3227   QualType Canonical = getCanonicalType(Decayed);
3228 
3229   // Get the new insert position for the node we care about.
3230   AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
3231   assert(!AT && "Shouldn't be in the map!");
3232 
3233   AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical);
3234   Types.push_back(AT);
3235   AdjustedTypes.InsertNode(AT, InsertPos);
3236   return QualType(AT, 0);
3237 }
3238 
3239 /// getBlockPointerType - Return the uniqued reference to the type for
3240 /// a pointer to the specified block.
3241 QualType ASTContext::getBlockPointerType(QualType T) const {
3242   assert(T->isFunctionType() && "block of function types only");
3243   // Unique pointers, to guarantee there is only one block of a particular
3244   // structure.
3245   llvm::FoldingSetNodeID ID;
3246   BlockPointerType::Profile(ID, T);
3247 
3248   void *InsertPos = nullptr;
3249   if (BlockPointerType *PT =
3250         BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
3251     return QualType(PT, 0);
3252 
3253   // If the block pointee type isn't canonical, this won't be a canonical
3254   // type either so fill in the canonical type field.
3255   QualType Canonical;
3256   if (!T.isCanonical()) {
3257     Canonical = getBlockPointerType(getCanonicalType(T));
3258 
3259     // Get the new insert position for the node we care about.
3260     BlockPointerType *NewIP =
3261       BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
3262     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3263   }
3264   auto *New = new (*this, TypeAlignment) BlockPointerType(T, Canonical);
3265   Types.push_back(New);
3266   BlockPointerTypes.InsertNode(New, InsertPos);
3267   return QualType(New, 0);
3268 }
3269 
3270 /// getLValueReferenceType - Return the uniqued reference to the type for an
3271 /// lvalue reference to the specified type.
3272 QualType
3273 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const {
3274   assert(getCanonicalType(T) != OverloadTy &&
3275          "Unresolved overloaded function type");
3276 
3277   // Unique pointers, to guarantee there is only one pointer of a particular
3278   // structure.
3279   llvm::FoldingSetNodeID ID;
3280   ReferenceType::Profile(ID, T, SpelledAsLValue);
3281 
3282   void *InsertPos = nullptr;
3283   if (LValueReferenceType *RT =
3284         LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
3285     return QualType(RT, 0);
3286 
3287   const auto *InnerRef = T->getAs<ReferenceType>();
3288 
3289   // If the referencee type isn't canonical, this won't be a canonical type
3290   // either, so fill in the canonical type field.
3291   QualType Canonical;
3292   if (!SpelledAsLValue || InnerRef || !T.isCanonical()) {
3293     QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
3294     Canonical = getLValueReferenceType(getCanonicalType(PointeeType));
3295 
3296     // Get the new insert position for the node we care about.
3297     LValueReferenceType *NewIP =
3298       LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
3299     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3300   }
3301 
3302   auto *New = new (*this, TypeAlignment) LValueReferenceType(T, Canonical,
3303                                                              SpelledAsLValue);
3304   Types.push_back(New);
3305   LValueReferenceTypes.InsertNode(New, InsertPos);
3306 
3307   return QualType(New, 0);
3308 }
3309 
3310 /// getRValueReferenceType - Return the uniqued reference to the type for an
3311 /// rvalue reference to the specified type.
3312 QualType ASTContext::getRValueReferenceType(QualType T) const {
3313   // Unique pointers, to guarantee there is only one pointer of a particular
3314   // structure.
3315   llvm::FoldingSetNodeID ID;
3316   ReferenceType::Profile(ID, T, false);
3317 
3318   void *InsertPos = nullptr;
3319   if (RValueReferenceType *RT =
3320         RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
3321     return QualType(RT, 0);
3322 
3323   const auto *InnerRef = T->getAs<ReferenceType>();
3324 
3325   // If the referencee type isn't canonical, this won't be a canonical type
3326   // either, so fill in the canonical type field.
3327   QualType Canonical;
3328   if (InnerRef || !T.isCanonical()) {
3329     QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
3330     Canonical = getRValueReferenceType(getCanonicalType(PointeeType));
3331 
3332     // Get the new insert position for the node we care about.
3333     RValueReferenceType *NewIP =
3334       RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
3335     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3336   }
3337 
3338   auto *New = new (*this, TypeAlignment) RValueReferenceType(T, Canonical);
3339   Types.push_back(New);
3340   RValueReferenceTypes.InsertNode(New, InsertPos);
3341   return QualType(New, 0);
3342 }
3343 
3344 /// getMemberPointerType - Return the uniqued reference to the type for a
3345 /// member pointer to the specified type, in the specified class.
3346 QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls) const {
3347   // Unique pointers, to guarantee there is only one pointer of a particular
3348   // structure.
3349   llvm::FoldingSetNodeID ID;
3350   MemberPointerType::Profile(ID, T, Cls);
3351 
3352   void *InsertPos = nullptr;
3353   if (MemberPointerType *PT =
3354       MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
3355     return QualType(PT, 0);
3356 
3357   // If the pointee or class type isn't canonical, this won't be a canonical
3358   // type either, so fill in the canonical type field.
3359   QualType Canonical;
3360   if (!T.isCanonical() || !Cls->isCanonicalUnqualified()) {
3361     Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls));
3362 
3363     // Get the new insert position for the node we care about.
3364     MemberPointerType *NewIP =
3365       MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
3366     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3367   }
3368   auto *New = new (*this, TypeAlignment) MemberPointerType(T, Cls, Canonical);
3369   Types.push_back(New);
3370   MemberPointerTypes.InsertNode(New, InsertPos);
3371   return QualType(New, 0);
3372 }
3373 
3374 /// getConstantArrayType - Return the unique reference to the type for an
3375 /// array of the specified element type.
3376 QualType ASTContext::getConstantArrayType(QualType EltTy,
3377                                           const llvm::APInt &ArySizeIn,
3378                                           const Expr *SizeExpr,
3379                                           ArrayType::ArraySizeModifier ASM,
3380                                           unsigned IndexTypeQuals) const {
3381   assert((EltTy->isDependentType() ||
3382           EltTy->isIncompleteType() || EltTy->isConstantSizeType()) &&
3383          "Constant array of VLAs is illegal!");
3384 
3385   // We only need the size as part of the type if it's instantiation-dependent.
3386   if (SizeExpr && !SizeExpr->isInstantiationDependent())
3387     SizeExpr = nullptr;
3388 
3389   // Convert the array size into a canonical width matching the pointer size for
3390   // the target.
3391   llvm::APInt ArySize(ArySizeIn);
3392   ArySize = ArySize.zextOrTrunc(Target->getMaxPointerWidth());
3393 
3394   llvm::FoldingSetNodeID ID;
3395   ConstantArrayType::Profile(ID, *this, EltTy, ArySize, SizeExpr, ASM,
3396                              IndexTypeQuals);
3397 
3398   void *InsertPos = nullptr;
3399   if (ConstantArrayType *ATP =
3400       ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
3401     return QualType(ATP, 0);
3402 
3403   // If the element type isn't canonical or has qualifiers, or the array bound
3404   // is instantiation-dependent, this won't be a canonical type either, so fill
3405   // in the canonical type field.
3406   QualType Canon;
3407   if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers() || SizeExpr) {
3408     SplitQualType canonSplit = getCanonicalType(EltTy).split();
3409     Canon = getConstantArrayType(QualType(canonSplit.Ty, 0), ArySize, nullptr,
3410                                  ASM, IndexTypeQuals);
3411     Canon = getQualifiedType(Canon, canonSplit.Quals);
3412 
3413     // Get the new insert position for the node we care about.
3414     ConstantArrayType *NewIP =
3415       ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
3416     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3417   }
3418 
3419   void *Mem = Allocate(
3420       ConstantArrayType::totalSizeToAlloc<const Expr *>(SizeExpr ? 1 : 0),
3421       TypeAlignment);
3422   auto *New = new (Mem)
3423     ConstantArrayType(EltTy, Canon, ArySize, SizeExpr, ASM, IndexTypeQuals);
3424   ConstantArrayTypes.InsertNode(New, InsertPos);
3425   Types.push_back(New);
3426   return QualType(New, 0);
3427 }
3428 
3429 /// getVariableArrayDecayedType - Turns the given type, which may be
3430 /// variably-modified, into the corresponding type with all the known
3431 /// sizes replaced with [*].
3432 QualType ASTContext::getVariableArrayDecayedType(QualType type) const {
3433   // Vastly most common case.
3434   if (!type->isVariablyModifiedType()) return type;
3435 
3436   QualType result;
3437 
3438   SplitQualType split = type.getSplitDesugaredType();
3439   const Type *ty = split.Ty;
3440   switch (ty->getTypeClass()) {
3441 #define TYPE(Class, Base)
3442 #define ABSTRACT_TYPE(Class, Base)
3443 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
3444 #include "clang/AST/TypeNodes.inc"
3445     llvm_unreachable("didn't desugar past all non-canonical types?");
3446 
3447   // These types should never be variably-modified.
3448   case Type::Builtin:
3449   case Type::Complex:
3450   case Type::Vector:
3451   case Type::DependentVector:
3452   case Type::ExtVector:
3453   case Type::DependentSizedExtVector:
3454   case Type::ConstantMatrix:
3455   case Type::DependentSizedMatrix:
3456   case Type::DependentAddressSpace:
3457   case Type::ObjCObject:
3458   case Type::ObjCInterface:
3459   case Type::ObjCObjectPointer:
3460   case Type::Record:
3461   case Type::Enum:
3462   case Type::UnresolvedUsing:
3463   case Type::TypeOfExpr:
3464   case Type::TypeOf:
3465   case Type::Decltype:
3466   case Type::UnaryTransform:
3467   case Type::DependentName:
3468   case Type::InjectedClassName:
3469   case Type::TemplateSpecialization:
3470   case Type::DependentTemplateSpecialization:
3471   case Type::TemplateTypeParm:
3472   case Type::SubstTemplateTypeParmPack:
3473   case Type::Auto:
3474   case Type::DeducedTemplateSpecialization:
3475   case Type::PackExpansion:
3476   case Type::ExtInt:
3477   case Type::DependentExtInt:
3478     llvm_unreachable("type should never be variably-modified");
3479 
3480   // These types can be variably-modified but should never need to
3481   // further decay.
3482   case Type::FunctionNoProto:
3483   case Type::FunctionProto:
3484   case Type::BlockPointer:
3485   case Type::MemberPointer:
3486   case Type::Pipe:
3487     return type;
3488 
3489   // These types can be variably-modified.  All these modifications
3490   // preserve structure except as noted by comments.
3491   // TODO: if we ever care about optimizing VLAs, there are no-op
3492   // optimizations available here.
3493   case Type::Pointer:
3494     result = getPointerType(getVariableArrayDecayedType(
3495                               cast<PointerType>(ty)->getPointeeType()));
3496     break;
3497 
3498   case Type::LValueReference: {
3499     const auto *lv = cast<LValueReferenceType>(ty);
3500     result = getLValueReferenceType(
3501                  getVariableArrayDecayedType(lv->getPointeeType()),
3502                                     lv->isSpelledAsLValue());
3503     break;
3504   }
3505 
3506   case Type::RValueReference: {
3507     const auto *lv = cast<RValueReferenceType>(ty);
3508     result = getRValueReferenceType(
3509                  getVariableArrayDecayedType(lv->getPointeeType()));
3510     break;
3511   }
3512 
3513   case Type::Atomic: {
3514     const auto *at = cast<AtomicType>(ty);
3515     result = getAtomicType(getVariableArrayDecayedType(at->getValueType()));
3516     break;
3517   }
3518 
3519   case Type::ConstantArray: {
3520     const auto *cat = cast<ConstantArrayType>(ty);
3521     result = getConstantArrayType(
3522                  getVariableArrayDecayedType(cat->getElementType()),
3523                                   cat->getSize(),
3524                                   cat->getSizeExpr(),
3525                                   cat->getSizeModifier(),
3526                                   cat->getIndexTypeCVRQualifiers());
3527     break;
3528   }
3529 
3530   case Type::DependentSizedArray: {
3531     const auto *dat = cast<DependentSizedArrayType>(ty);
3532     result = getDependentSizedArrayType(
3533                  getVariableArrayDecayedType(dat->getElementType()),
3534                                         dat->getSizeExpr(),
3535                                         dat->getSizeModifier(),
3536                                         dat->getIndexTypeCVRQualifiers(),
3537                                         dat->getBracketsRange());
3538     break;
3539   }
3540 
3541   // Turn incomplete types into [*] types.
3542   case Type::IncompleteArray: {
3543     const auto *iat = cast<IncompleteArrayType>(ty);
3544     result = getVariableArrayType(
3545                  getVariableArrayDecayedType(iat->getElementType()),
3546                                   /*size*/ nullptr,
3547                                   ArrayType::Normal,
3548                                   iat->getIndexTypeCVRQualifiers(),
3549                                   SourceRange());
3550     break;
3551   }
3552 
3553   // Turn VLA types into [*] types.
3554   case Type::VariableArray: {
3555     const auto *vat = cast<VariableArrayType>(ty);
3556     result = getVariableArrayType(
3557                  getVariableArrayDecayedType(vat->getElementType()),
3558                                   /*size*/ nullptr,
3559                                   ArrayType::Star,
3560                                   vat->getIndexTypeCVRQualifiers(),
3561                                   vat->getBracketsRange());
3562     break;
3563   }
3564   }
3565 
3566   // Apply the top-level qualifiers from the original.
3567   return getQualifiedType(result, split.Quals);
3568 }
3569 
3570 /// getVariableArrayType - Returns a non-unique reference to the type for a
3571 /// variable array of the specified element type.
3572 QualType ASTContext::getVariableArrayType(QualType EltTy,
3573                                           Expr *NumElts,
3574                                           ArrayType::ArraySizeModifier ASM,
3575                                           unsigned IndexTypeQuals,
3576                                           SourceRange Brackets) const {
3577   // Since we don't unique expressions, it isn't possible to unique VLA's
3578   // that have an expression provided for their size.
3579   QualType Canon;
3580 
3581   // Be sure to pull qualifiers off the element type.
3582   if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) {
3583     SplitQualType canonSplit = getCanonicalType(EltTy).split();
3584     Canon = getVariableArrayType(QualType(canonSplit.Ty, 0), NumElts, ASM,
3585                                  IndexTypeQuals, Brackets);
3586     Canon = getQualifiedType(Canon, canonSplit.Quals);
3587   }
3588 
3589   auto *New = new (*this, TypeAlignment)
3590     VariableArrayType(EltTy, Canon, NumElts, ASM, IndexTypeQuals, Brackets);
3591 
3592   VariableArrayTypes.push_back(New);
3593   Types.push_back(New);
3594   return QualType(New, 0);
3595 }
3596 
3597 /// getDependentSizedArrayType - Returns a non-unique reference to
3598 /// the type for a dependently-sized array of the specified element
3599 /// type.
3600 QualType ASTContext::getDependentSizedArrayType(QualType elementType,
3601                                                 Expr *numElements,
3602                                                 ArrayType::ArraySizeModifier ASM,
3603                                                 unsigned elementTypeQuals,
3604                                                 SourceRange brackets) const {
3605   assert((!numElements || numElements->isTypeDependent() ||
3606           numElements->isValueDependent()) &&
3607          "Size must be type- or value-dependent!");
3608 
3609   // Dependently-sized array types that do not have a specified number
3610   // of elements will have their sizes deduced from a dependent
3611   // initializer.  We do no canonicalization here at all, which is okay
3612   // because they can't be used in most locations.
3613   if (!numElements) {
3614     auto *newType
3615       = new (*this, TypeAlignment)
3616           DependentSizedArrayType(*this, elementType, QualType(),
3617                                   numElements, ASM, elementTypeQuals,
3618                                   brackets);
3619     Types.push_back(newType);
3620     return QualType(newType, 0);
3621   }
3622 
3623   // Otherwise, we actually build a new type every time, but we
3624   // also build a canonical type.
3625 
3626   SplitQualType canonElementType = getCanonicalType(elementType).split();
3627 
3628   void *insertPos = nullptr;
3629   llvm::FoldingSetNodeID ID;
3630   DependentSizedArrayType::Profile(ID, *this,
3631                                    QualType(canonElementType.Ty, 0),
3632                                    ASM, elementTypeQuals, numElements);
3633 
3634   // Look for an existing type with these properties.
3635   DependentSizedArrayType *canonTy =
3636     DependentSizedArrayTypes.FindNodeOrInsertPos(ID, insertPos);
3637 
3638   // If we don't have one, build one.
3639   if (!canonTy) {
3640     canonTy = new (*this, TypeAlignment)
3641       DependentSizedArrayType(*this, QualType(canonElementType.Ty, 0),
3642                               QualType(), numElements, ASM, elementTypeQuals,
3643                               brackets);
3644     DependentSizedArrayTypes.InsertNode(canonTy, insertPos);
3645     Types.push_back(canonTy);
3646   }
3647 
3648   // Apply qualifiers from the element type to the array.
3649   QualType canon = getQualifiedType(QualType(canonTy,0),
3650                                     canonElementType.Quals);
3651 
3652   // If we didn't need extra canonicalization for the element type or the size
3653   // expression, then just use that as our result.
3654   if (QualType(canonElementType.Ty, 0) == elementType &&
3655       canonTy->getSizeExpr() == numElements)
3656     return canon;
3657 
3658   // Otherwise, we need to build a type which follows the spelling
3659   // of the element type.
3660   auto *sugaredType
3661     = new (*this, TypeAlignment)
3662         DependentSizedArrayType(*this, elementType, canon, numElements,
3663                                 ASM, elementTypeQuals, brackets);
3664   Types.push_back(sugaredType);
3665   return QualType(sugaredType, 0);
3666 }
3667 
3668 QualType ASTContext::getIncompleteArrayType(QualType elementType,
3669                                             ArrayType::ArraySizeModifier ASM,
3670                                             unsigned elementTypeQuals) const {
3671   llvm::FoldingSetNodeID ID;
3672   IncompleteArrayType::Profile(ID, elementType, ASM, elementTypeQuals);
3673 
3674   void *insertPos = nullptr;
3675   if (IncompleteArrayType *iat =
3676        IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos))
3677     return QualType(iat, 0);
3678 
3679   // If the element type isn't canonical, this won't be a canonical type
3680   // either, so fill in the canonical type field.  We also have to pull
3681   // qualifiers off the element type.
3682   QualType canon;
3683 
3684   if (!elementType.isCanonical() || elementType.hasLocalQualifiers()) {
3685     SplitQualType canonSplit = getCanonicalType(elementType).split();
3686     canon = getIncompleteArrayType(QualType(canonSplit.Ty, 0),
3687                                    ASM, elementTypeQuals);
3688     canon = getQualifiedType(canon, canonSplit.Quals);
3689 
3690     // Get the new insert position for the node we care about.
3691     IncompleteArrayType *existing =
3692       IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos);
3693     assert(!existing && "Shouldn't be in the map!"); (void) existing;
3694   }
3695 
3696   auto *newType = new (*this, TypeAlignment)
3697     IncompleteArrayType(elementType, canon, ASM, elementTypeQuals);
3698 
3699   IncompleteArrayTypes.InsertNode(newType, insertPos);
3700   Types.push_back(newType);
3701   return QualType(newType, 0);
3702 }
3703 
3704 ASTContext::BuiltinVectorTypeInfo
3705 ASTContext::getBuiltinVectorTypeInfo(const BuiltinType *Ty) const {
3706 #define SVE_INT_ELTTY(BITS, ELTS, SIGNED, NUMVECTORS)                          \
3707   {getIntTypeForBitwidth(BITS, SIGNED), llvm::ElementCount::getScalable(ELTS), \
3708    NUMVECTORS};
3709 
3710 #define SVE_ELTTY(ELTTY, ELTS, NUMVECTORS)                                     \
3711   {ELTTY, llvm::ElementCount::getScalable(ELTS), NUMVECTORS};
3712 
3713   switch (Ty->getKind()) {
3714   default:
3715     llvm_unreachable("Unsupported builtin vector type");
3716   case BuiltinType::SveInt8:
3717     return SVE_INT_ELTTY(8, 16, true, 1);
3718   case BuiltinType::SveUint8:
3719     return SVE_INT_ELTTY(8, 16, false, 1);
3720   case BuiltinType::SveInt8x2:
3721     return SVE_INT_ELTTY(8, 16, true, 2);
3722   case BuiltinType::SveUint8x2:
3723     return SVE_INT_ELTTY(8, 16, false, 2);
3724   case BuiltinType::SveInt8x3:
3725     return SVE_INT_ELTTY(8, 16, true, 3);
3726   case BuiltinType::SveUint8x3:
3727     return SVE_INT_ELTTY(8, 16, false, 3);
3728   case BuiltinType::SveInt8x4:
3729     return SVE_INT_ELTTY(8, 16, true, 4);
3730   case BuiltinType::SveUint8x4:
3731     return SVE_INT_ELTTY(8, 16, false, 4);
3732   case BuiltinType::SveInt16:
3733     return SVE_INT_ELTTY(16, 8, true, 1);
3734   case BuiltinType::SveUint16:
3735     return SVE_INT_ELTTY(16, 8, false, 1);
3736   case BuiltinType::SveInt16x2:
3737     return SVE_INT_ELTTY(16, 8, true, 2);
3738   case BuiltinType::SveUint16x2:
3739     return SVE_INT_ELTTY(16, 8, false, 2);
3740   case BuiltinType::SveInt16x3:
3741     return SVE_INT_ELTTY(16, 8, true, 3);
3742   case BuiltinType::SveUint16x3:
3743     return SVE_INT_ELTTY(16, 8, false, 3);
3744   case BuiltinType::SveInt16x4:
3745     return SVE_INT_ELTTY(16, 8, true, 4);
3746   case BuiltinType::SveUint16x4:
3747     return SVE_INT_ELTTY(16, 8, false, 4);
3748   case BuiltinType::SveInt32:
3749     return SVE_INT_ELTTY(32, 4, true, 1);
3750   case BuiltinType::SveUint32:
3751     return SVE_INT_ELTTY(32, 4, false, 1);
3752   case BuiltinType::SveInt32x2:
3753     return SVE_INT_ELTTY(32, 4, true, 2);
3754   case BuiltinType::SveUint32x2:
3755     return SVE_INT_ELTTY(32, 4, false, 2);
3756   case BuiltinType::SveInt32x3:
3757     return SVE_INT_ELTTY(32, 4, true, 3);
3758   case BuiltinType::SveUint32x3:
3759     return SVE_INT_ELTTY(32, 4, false, 3);
3760   case BuiltinType::SveInt32x4:
3761     return SVE_INT_ELTTY(32, 4, true, 4);
3762   case BuiltinType::SveUint32x4:
3763     return SVE_INT_ELTTY(32, 4, false, 4);
3764   case BuiltinType::SveInt64:
3765     return SVE_INT_ELTTY(64, 2, true, 1);
3766   case BuiltinType::SveUint64:
3767     return SVE_INT_ELTTY(64, 2, false, 1);
3768   case BuiltinType::SveInt64x2:
3769     return SVE_INT_ELTTY(64, 2, true, 2);
3770   case BuiltinType::SveUint64x2:
3771     return SVE_INT_ELTTY(64, 2, false, 2);
3772   case BuiltinType::SveInt64x3:
3773     return SVE_INT_ELTTY(64, 2, true, 3);
3774   case BuiltinType::SveUint64x3:
3775     return SVE_INT_ELTTY(64, 2, false, 3);
3776   case BuiltinType::SveInt64x4:
3777     return SVE_INT_ELTTY(64, 2, true, 4);
3778   case BuiltinType::SveUint64x4:
3779     return SVE_INT_ELTTY(64, 2, false, 4);
3780   case BuiltinType::SveBool:
3781     return SVE_ELTTY(BoolTy, 16, 1);
3782   case BuiltinType::SveFloat16:
3783     return SVE_ELTTY(HalfTy, 8, 1);
3784   case BuiltinType::SveFloat16x2:
3785     return SVE_ELTTY(HalfTy, 8, 2);
3786   case BuiltinType::SveFloat16x3:
3787     return SVE_ELTTY(HalfTy, 8, 3);
3788   case BuiltinType::SveFloat16x4:
3789     return SVE_ELTTY(HalfTy, 8, 4);
3790   case BuiltinType::SveFloat32:
3791     return SVE_ELTTY(FloatTy, 4, 1);
3792   case BuiltinType::SveFloat32x2:
3793     return SVE_ELTTY(FloatTy, 4, 2);
3794   case BuiltinType::SveFloat32x3:
3795     return SVE_ELTTY(FloatTy, 4, 3);
3796   case BuiltinType::SveFloat32x4:
3797     return SVE_ELTTY(FloatTy, 4, 4);
3798   case BuiltinType::SveFloat64:
3799     return SVE_ELTTY(DoubleTy, 2, 1);
3800   case BuiltinType::SveFloat64x2:
3801     return SVE_ELTTY(DoubleTy, 2, 2);
3802   case BuiltinType::SveFloat64x3:
3803     return SVE_ELTTY(DoubleTy, 2, 3);
3804   case BuiltinType::SveFloat64x4:
3805     return SVE_ELTTY(DoubleTy, 2, 4);
3806   case BuiltinType::SveBFloat16:
3807     return SVE_ELTTY(BFloat16Ty, 8, 1);
3808   case BuiltinType::SveBFloat16x2:
3809     return SVE_ELTTY(BFloat16Ty, 8, 2);
3810   case BuiltinType::SveBFloat16x3:
3811     return SVE_ELTTY(BFloat16Ty, 8, 3);
3812   case BuiltinType::SveBFloat16x4:
3813     return SVE_ELTTY(BFloat16Ty, 8, 4);
3814   }
3815 }
3816 
3817 /// getScalableVectorType - Return the unique reference to a scalable vector
3818 /// type of the specified element type and size. VectorType must be a built-in
3819 /// type.
3820 QualType ASTContext::getScalableVectorType(QualType EltTy,
3821                                            unsigned NumElts) const {
3822   if (Target->hasAArch64SVETypes()) {
3823     uint64_t EltTySize = getTypeSize(EltTy);
3824 #define SVE_VECTOR_TYPE(Name, MangledName, Id, SingletonId, NumEls, ElBits,    \
3825                         IsSigned, IsFP, IsBF)                                  \
3826   if (!EltTy->isBooleanType() &&                                               \
3827       ((EltTy->hasIntegerRepresentation() &&                                   \
3828         EltTy->hasSignedIntegerRepresentation() == IsSigned) ||                \
3829        (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() &&      \
3830         IsFP && !IsBF) ||                                                      \
3831        (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() &&       \
3832         IsBF && !IsFP)) &&                                                     \
3833       EltTySize == ElBits && NumElts == NumEls) {                              \
3834     return SingletonId;                                                        \
3835   }
3836 #define SVE_PREDICATE_TYPE(Name, MangledName, Id, SingletonId, NumEls)         \
3837   if (EltTy->isBooleanType() && NumElts == NumEls)                             \
3838     return SingletonId;
3839 #include "clang/Basic/AArch64SVEACLETypes.def"
3840   }
3841   return QualType();
3842 }
3843 
3844 /// getVectorType - Return the unique reference to a vector type of
3845 /// the specified element type and size. VectorType must be a built-in type.
3846 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts,
3847                                    VectorType::VectorKind VecKind) const {
3848   assert(vecType->isBuiltinType());
3849 
3850   // Check if we've already instantiated a vector of this type.
3851   llvm::FoldingSetNodeID ID;
3852   VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
3853 
3854   void *InsertPos = nullptr;
3855   if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
3856     return QualType(VTP, 0);
3857 
3858   // If the element type isn't canonical, this won't be a canonical type either,
3859   // so fill in the canonical type field.
3860   QualType Canonical;
3861   if (!vecType.isCanonical()) {
3862     Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
3863 
3864     // Get the new insert position for the node we care about.
3865     VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3866     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3867   }
3868   auto *New = new (*this, TypeAlignment)
3869     VectorType(vecType, NumElts, Canonical, VecKind);
3870   VectorTypes.InsertNode(New, InsertPos);
3871   Types.push_back(New);
3872   return QualType(New, 0);
3873 }
3874 
3875 QualType
3876 ASTContext::getDependentVectorType(QualType VecType, Expr *SizeExpr,
3877                                    SourceLocation AttrLoc,
3878                                    VectorType::VectorKind VecKind) const {
3879   llvm::FoldingSetNodeID ID;
3880   DependentVectorType::Profile(ID, *this, getCanonicalType(VecType), SizeExpr,
3881                                VecKind);
3882   void *InsertPos = nullptr;
3883   DependentVectorType *Canon =
3884       DependentVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3885   DependentVectorType *New;
3886 
3887   if (Canon) {
3888     New = new (*this, TypeAlignment) DependentVectorType(
3889         *this, VecType, QualType(Canon, 0), SizeExpr, AttrLoc, VecKind);
3890   } else {
3891     QualType CanonVecTy = getCanonicalType(VecType);
3892     if (CanonVecTy == VecType) {
3893       New = new (*this, TypeAlignment) DependentVectorType(
3894           *this, VecType, QualType(), SizeExpr, AttrLoc, VecKind);
3895 
3896       DependentVectorType *CanonCheck =
3897           DependentVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3898       assert(!CanonCheck &&
3899              "Dependent-sized vector_size canonical type broken");
3900       (void)CanonCheck;
3901       DependentVectorTypes.InsertNode(New, InsertPos);
3902     } else {
3903       QualType CanonTy = getDependentVectorType(CanonVecTy, SizeExpr,
3904                                                 SourceLocation(), VecKind);
3905       New = new (*this, TypeAlignment) DependentVectorType(
3906           *this, VecType, CanonTy, SizeExpr, AttrLoc, VecKind);
3907     }
3908   }
3909 
3910   Types.push_back(New);
3911   return QualType(New, 0);
3912 }
3913 
3914 /// getExtVectorType - Return the unique reference to an extended vector type of
3915 /// the specified element type and size. VectorType must be a built-in type.
3916 QualType
3917 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const {
3918   assert(vecType->isBuiltinType() || vecType->isDependentType());
3919 
3920   // Check if we've already instantiated a vector of this type.
3921   llvm::FoldingSetNodeID ID;
3922   VectorType::Profile(ID, vecType, NumElts, Type::ExtVector,
3923                       VectorType::GenericVector);
3924   void *InsertPos = nullptr;
3925   if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
3926     return QualType(VTP, 0);
3927 
3928   // If the element type isn't canonical, this won't be a canonical type either,
3929   // so fill in the canonical type field.
3930   QualType Canonical;
3931   if (!vecType.isCanonical()) {
3932     Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
3933 
3934     // Get the new insert position for the node we care about.
3935     VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3936     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3937   }
3938   auto *New = new (*this, TypeAlignment)
3939     ExtVectorType(vecType, NumElts, Canonical);
3940   VectorTypes.InsertNode(New, InsertPos);
3941   Types.push_back(New);
3942   return QualType(New, 0);
3943 }
3944 
3945 QualType
3946 ASTContext::getDependentSizedExtVectorType(QualType vecType,
3947                                            Expr *SizeExpr,
3948                                            SourceLocation AttrLoc) const {
3949   llvm::FoldingSetNodeID ID;
3950   DependentSizedExtVectorType::Profile(ID, *this, getCanonicalType(vecType),
3951                                        SizeExpr);
3952 
3953   void *InsertPos = nullptr;
3954   DependentSizedExtVectorType *Canon
3955     = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3956   DependentSizedExtVectorType *New;
3957   if (Canon) {
3958     // We already have a canonical version of this array type; use it as
3959     // the canonical type for a newly-built type.
3960     New = new (*this, TypeAlignment)
3961       DependentSizedExtVectorType(*this, vecType, QualType(Canon, 0),
3962                                   SizeExpr, AttrLoc);
3963   } else {
3964     QualType CanonVecTy = getCanonicalType(vecType);
3965     if (CanonVecTy == vecType) {
3966       New = new (*this, TypeAlignment)
3967         DependentSizedExtVectorType(*this, vecType, QualType(), SizeExpr,
3968                                     AttrLoc);
3969 
3970       DependentSizedExtVectorType *CanonCheck
3971         = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3972       assert(!CanonCheck && "Dependent-sized ext_vector canonical type broken");
3973       (void)CanonCheck;
3974       DependentSizedExtVectorTypes.InsertNode(New, InsertPos);
3975     } else {
3976       QualType CanonExtTy = getDependentSizedExtVectorType(CanonVecTy, SizeExpr,
3977                                                            SourceLocation());
3978       New = new (*this, TypeAlignment) DependentSizedExtVectorType(
3979           *this, vecType, CanonExtTy, SizeExpr, AttrLoc);
3980     }
3981   }
3982 
3983   Types.push_back(New);
3984   return QualType(New, 0);
3985 }
3986 
3987 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows,
3988                                            unsigned NumColumns) const {
3989   llvm::FoldingSetNodeID ID;
3990   ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns,
3991                               Type::ConstantMatrix);
3992 
3993   assert(MatrixType::isValidElementType(ElementTy) &&
3994          "need a valid element type");
3995   assert(ConstantMatrixType::isDimensionValid(NumRows) &&
3996          ConstantMatrixType::isDimensionValid(NumColumns) &&
3997          "need valid matrix dimensions");
3998   void *InsertPos = nullptr;
3999   if (ConstantMatrixType *MTP = MatrixTypes.FindNodeOrInsertPos(ID, InsertPos))
4000     return QualType(MTP, 0);
4001 
4002   QualType Canonical;
4003   if (!ElementTy.isCanonical()) {
4004     Canonical =
4005         getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns);
4006 
4007     ConstantMatrixType *NewIP = MatrixTypes.FindNodeOrInsertPos(ID, InsertPos);
4008     assert(!NewIP && "Matrix type shouldn't already exist in the map");
4009     (void)NewIP;
4010   }
4011 
4012   auto *New = new (*this, TypeAlignment)
4013       ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical);
4014   MatrixTypes.InsertNode(New, InsertPos);
4015   Types.push_back(New);
4016   return QualType(New, 0);
4017 }
4018 
4019 QualType ASTContext::getDependentSizedMatrixType(QualType ElementTy,
4020                                                  Expr *RowExpr,
4021                                                  Expr *ColumnExpr,
4022                                                  SourceLocation AttrLoc) const {
4023   QualType CanonElementTy = getCanonicalType(ElementTy);
4024   llvm::FoldingSetNodeID ID;
4025   DependentSizedMatrixType::Profile(ID, *this, CanonElementTy, RowExpr,
4026                                     ColumnExpr);
4027 
4028   void *InsertPos = nullptr;
4029   DependentSizedMatrixType *Canon =
4030       DependentSizedMatrixTypes.FindNodeOrInsertPos(ID, InsertPos);
4031 
4032   if (!Canon) {
4033     Canon = new (*this, TypeAlignment) DependentSizedMatrixType(
4034         *this, CanonElementTy, QualType(), RowExpr, ColumnExpr, AttrLoc);
4035 #ifndef NDEBUG
4036     DependentSizedMatrixType *CanonCheck =
4037         DependentSizedMatrixTypes.FindNodeOrInsertPos(ID, InsertPos);
4038     assert(!CanonCheck && "Dependent-sized matrix canonical type broken");
4039 #endif
4040     DependentSizedMatrixTypes.InsertNode(Canon, InsertPos);
4041     Types.push_back(Canon);
4042   }
4043 
4044   // Already have a canonical version of the matrix type
4045   //
4046   // If it exactly matches the requested type, use it directly.
4047   if (Canon->getElementType() == ElementTy && Canon->getRowExpr() == RowExpr &&
4048       Canon->getRowExpr() == ColumnExpr)
4049     return QualType(Canon, 0);
4050 
4051   // Use Canon as the canonical type for newly-built type.
4052   DependentSizedMatrixType *New = new (*this, TypeAlignment)
4053       DependentSizedMatrixType(*this, ElementTy, QualType(Canon, 0), RowExpr,
4054                                ColumnExpr, AttrLoc);
4055   Types.push_back(New);
4056   return QualType(New, 0);
4057 }
4058 
4059 QualType ASTContext::getDependentAddressSpaceType(QualType PointeeType,
4060                                                   Expr *AddrSpaceExpr,
4061                                                   SourceLocation AttrLoc) const {
4062   assert(AddrSpaceExpr->isInstantiationDependent());
4063 
4064   QualType canonPointeeType = getCanonicalType(PointeeType);
4065 
4066   void *insertPos = nullptr;
4067   llvm::FoldingSetNodeID ID;
4068   DependentAddressSpaceType::Profile(ID, *this, canonPointeeType,
4069                                      AddrSpaceExpr);
4070 
4071   DependentAddressSpaceType *canonTy =
4072     DependentAddressSpaceTypes.FindNodeOrInsertPos(ID, insertPos);
4073 
4074   if (!canonTy) {
4075     canonTy = new (*this, TypeAlignment)
4076       DependentAddressSpaceType(*this, canonPointeeType,
4077                                 QualType(), AddrSpaceExpr, AttrLoc);
4078     DependentAddressSpaceTypes.InsertNode(canonTy, insertPos);
4079     Types.push_back(canonTy);
4080   }
4081 
4082   if (canonPointeeType == PointeeType &&
4083       canonTy->getAddrSpaceExpr() == AddrSpaceExpr)
4084     return QualType(canonTy, 0);
4085 
4086   auto *sugaredType
4087     = new (*this, TypeAlignment)
4088         DependentAddressSpaceType(*this, PointeeType, QualType(canonTy, 0),
4089                                   AddrSpaceExpr, AttrLoc);
4090   Types.push_back(sugaredType);
4091   return QualType(sugaredType, 0);
4092 }
4093 
4094 /// Determine whether \p T is canonical as the result type of a function.
4095 static bool isCanonicalResultType(QualType T) {
4096   return T.isCanonical() &&
4097          (T.getObjCLifetime() == Qualifiers::OCL_None ||
4098           T.getObjCLifetime() == Qualifiers::OCL_ExplicitNone);
4099 }
4100 
4101 /// getFunctionNoProtoType - Return a K&R style C function type like 'int()'.
4102 QualType
4103 ASTContext::getFunctionNoProtoType(QualType ResultTy,
4104                                    const FunctionType::ExtInfo &Info) const {
4105   // Unique functions, to guarantee there is only one function of a particular
4106   // structure.
4107   llvm::FoldingSetNodeID ID;
4108   FunctionNoProtoType::Profile(ID, ResultTy, Info);
4109 
4110   void *InsertPos = nullptr;
4111   if (FunctionNoProtoType *FT =
4112         FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
4113     return QualType(FT, 0);
4114 
4115   QualType Canonical;
4116   if (!isCanonicalResultType(ResultTy)) {
4117     Canonical =
4118       getFunctionNoProtoType(getCanonicalFunctionResultType(ResultTy), Info);
4119 
4120     // Get the new insert position for the node we care about.
4121     FunctionNoProtoType *NewIP =
4122       FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
4123     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
4124   }
4125 
4126   auto *New = new (*this, TypeAlignment)
4127     FunctionNoProtoType(ResultTy, Canonical, Info);
4128   Types.push_back(New);
4129   FunctionNoProtoTypes.InsertNode(New, InsertPos);
4130   return QualType(New, 0);
4131 }
4132 
4133 CanQualType
4134 ASTContext::getCanonicalFunctionResultType(QualType ResultType) const {
4135   CanQualType CanResultType = getCanonicalType(ResultType);
4136 
4137   // Canonical result types do not have ARC lifetime qualifiers.
4138   if (CanResultType.getQualifiers().hasObjCLifetime()) {
4139     Qualifiers Qs = CanResultType.getQualifiers();
4140     Qs.removeObjCLifetime();
4141     return CanQualType::CreateUnsafe(
4142              getQualifiedType(CanResultType.getUnqualifiedType(), Qs));
4143   }
4144 
4145   return CanResultType;
4146 }
4147 
4148 static bool isCanonicalExceptionSpecification(
4149     const FunctionProtoType::ExceptionSpecInfo &ESI, bool NoexceptInType) {
4150   if (ESI.Type == EST_None)
4151     return true;
4152   if (!NoexceptInType)
4153     return false;
4154 
4155   // C++17 onwards: exception specification is part of the type, as a simple
4156   // boolean "can this function type throw".
4157   if (ESI.Type == EST_BasicNoexcept)
4158     return true;
4159 
4160   // A noexcept(expr) specification is (possibly) canonical if expr is
4161   // value-dependent.
4162   if (ESI.Type == EST_DependentNoexcept)
4163     return true;
4164 
4165   // A dynamic exception specification is canonical if it only contains pack
4166   // expansions (so we can't tell whether it's non-throwing) and all its
4167   // contained types are canonical.
4168   if (ESI.Type == EST_Dynamic) {
4169     bool AnyPackExpansions = false;
4170     for (QualType ET : ESI.Exceptions) {
4171       if (!ET.isCanonical())
4172         return false;
4173       if (ET->getAs<PackExpansionType>())
4174         AnyPackExpansions = true;
4175     }
4176     return AnyPackExpansions;
4177   }
4178 
4179   return false;
4180 }
4181 
4182 QualType ASTContext::getFunctionTypeInternal(
4183     QualType ResultTy, ArrayRef<QualType> ArgArray,
4184     const FunctionProtoType::ExtProtoInfo &EPI, bool OnlyWantCanonical) const {
4185   size_t NumArgs = ArgArray.size();
4186 
4187   // Unique functions, to guarantee there is only one function of a particular
4188   // structure.
4189   llvm::FoldingSetNodeID ID;
4190   FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI,
4191                              *this, true);
4192 
4193   QualType Canonical;
4194   bool Unique = false;
4195 
4196   void *InsertPos = nullptr;
4197   if (FunctionProtoType *FPT =
4198         FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos)) {
4199     QualType Existing = QualType(FPT, 0);
4200 
4201     // If we find a pre-existing equivalent FunctionProtoType, we can just reuse
4202     // it so long as our exception specification doesn't contain a dependent
4203     // noexcept expression, or we're just looking for a canonical type.
4204     // Otherwise, we're going to need to create a type
4205     // sugar node to hold the concrete expression.
4206     if (OnlyWantCanonical || !isComputedNoexcept(EPI.ExceptionSpec.Type) ||
4207         EPI.ExceptionSpec.NoexceptExpr == FPT->getNoexceptExpr())
4208       return Existing;
4209 
4210     // We need a new type sugar node for this one, to hold the new noexcept
4211     // expression. We do no canonicalization here, but that's OK since we don't
4212     // expect to see the same noexcept expression much more than once.
4213     Canonical = getCanonicalType(Existing);
4214     Unique = true;
4215   }
4216 
4217   bool NoexceptInType = getLangOpts().CPlusPlus17;
4218   bool IsCanonicalExceptionSpec =
4219       isCanonicalExceptionSpecification(EPI.ExceptionSpec, NoexceptInType);
4220 
4221   // Determine whether the type being created is already canonical or not.
4222   bool isCanonical = !Unique && IsCanonicalExceptionSpec &&
4223                      isCanonicalResultType(ResultTy) && !EPI.HasTrailingReturn;
4224   for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
4225     if (!ArgArray[i].isCanonicalAsParam())
4226       isCanonical = false;
4227 
4228   if (OnlyWantCanonical)
4229     assert(isCanonical &&
4230            "given non-canonical parameters constructing canonical type");
4231 
4232   // If this type isn't canonical, get the canonical version of it if we don't
4233   // already have it. The exception spec is only partially part of the
4234   // canonical type, and only in C++17 onwards.
4235   if (!isCanonical && Canonical.isNull()) {
4236     SmallVector<QualType, 16> CanonicalArgs;
4237     CanonicalArgs.reserve(NumArgs);
4238     for (unsigned i = 0; i != NumArgs; ++i)
4239       CanonicalArgs.push_back(getCanonicalParamType(ArgArray[i]));
4240 
4241     llvm::SmallVector<QualType, 8> ExceptionTypeStorage;
4242     FunctionProtoType::ExtProtoInfo CanonicalEPI = EPI;
4243     CanonicalEPI.HasTrailingReturn = false;
4244 
4245     if (IsCanonicalExceptionSpec) {
4246       // Exception spec is already OK.
4247     } else if (NoexceptInType) {
4248       switch (EPI.ExceptionSpec.Type) {
4249       case EST_Unparsed: case EST_Unevaluated: case EST_Uninstantiated:
4250         // We don't know yet. It shouldn't matter what we pick here; no-one
4251         // should ever look at this.
4252         LLVM_FALLTHROUGH;
4253       case EST_None: case EST_MSAny: case EST_NoexceptFalse:
4254         CanonicalEPI.ExceptionSpec.Type = EST_None;
4255         break;
4256 
4257         // A dynamic exception specification is almost always "not noexcept",
4258         // with the exception that a pack expansion might expand to no types.
4259       case EST_Dynamic: {
4260         bool AnyPacks = false;
4261         for (QualType ET : EPI.ExceptionSpec.Exceptions) {
4262           if (ET->getAs<PackExpansionType>())
4263             AnyPacks = true;
4264           ExceptionTypeStorage.push_back(getCanonicalType(ET));
4265         }
4266         if (!AnyPacks)
4267           CanonicalEPI.ExceptionSpec.Type = EST_None;
4268         else {
4269           CanonicalEPI.ExceptionSpec.Type = EST_Dynamic;
4270           CanonicalEPI.ExceptionSpec.Exceptions = ExceptionTypeStorage;
4271         }
4272         break;
4273       }
4274 
4275       case EST_DynamicNone:
4276       case EST_BasicNoexcept:
4277       case EST_NoexceptTrue:
4278       case EST_NoThrow:
4279         CanonicalEPI.ExceptionSpec.Type = EST_BasicNoexcept;
4280         break;
4281 
4282       case EST_DependentNoexcept:
4283         llvm_unreachable("dependent noexcept is already canonical");
4284       }
4285     } else {
4286       CanonicalEPI.ExceptionSpec = FunctionProtoType::ExceptionSpecInfo();
4287     }
4288 
4289     // Adjust the canonical function result type.
4290     CanQualType CanResultTy = getCanonicalFunctionResultType(ResultTy);
4291     Canonical =
4292         getFunctionTypeInternal(CanResultTy, CanonicalArgs, CanonicalEPI, true);
4293 
4294     // Get the new insert position for the node we care about.
4295     FunctionProtoType *NewIP =
4296       FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
4297     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
4298   }
4299 
4300   // Compute the needed size to hold this FunctionProtoType and the
4301   // various trailing objects.
4302   auto ESH = FunctionProtoType::getExceptionSpecSize(
4303       EPI.ExceptionSpec.Type, EPI.ExceptionSpec.Exceptions.size());
4304   size_t Size = FunctionProtoType::totalSizeToAlloc<
4305       QualType, SourceLocation, FunctionType::FunctionTypeExtraBitfields,
4306       FunctionType::ExceptionType, Expr *, FunctionDecl *,
4307       FunctionProtoType::ExtParameterInfo, Qualifiers>(
4308       NumArgs, EPI.Variadic,
4309       FunctionProtoType::hasExtraBitfields(EPI.ExceptionSpec.Type),
4310       ESH.NumExceptionType, ESH.NumExprPtr, ESH.NumFunctionDeclPtr,
4311       EPI.ExtParameterInfos ? NumArgs : 0,
4312       EPI.TypeQuals.hasNonFastQualifiers() ? 1 : 0);
4313 
4314   auto *FTP = (FunctionProtoType *)Allocate(Size, TypeAlignment);
4315   FunctionProtoType::ExtProtoInfo newEPI = EPI;
4316   new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
4317   Types.push_back(FTP);
4318   if (!Unique)
4319     FunctionProtoTypes.InsertNode(FTP, InsertPos);
4320   return QualType(FTP, 0);
4321 }
4322 
4323 QualType ASTContext::getPipeType(QualType T, bool ReadOnly) const {
4324   llvm::FoldingSetNodeID ID;
4325   PipeType::Profile(ID, T, ReadOnly);
4326 
4327   void *InsertPos = nullptr;
4328   if (PipeType *PT = PipeTypes.FindNodeOrInsertPos(ID, InsertPos))
4329     return QualType(PT, 0);
4330 
4331   // If the pipe element type isn't canonical, this won't be a canonical type
4332   // either, so fill in the canonical type field.
4333   QualType Canonical;
4334   if (!T.isCanonical()) {
4335     Canonical = getPipeType(getCanonicalType(T), ReadOnly);
4336 
4337     // Get the new insert position for the node we care about.
4338     PipeType *NewIP = PipeTypes.FindNodeOrInsertPos(ID, InsertPos);
4339     assert(!NewIP && "Shouldn't be in the map!");
4340     (void)NewIP;
4341   }
4342   auto *New = new (*this, TypeAlignment) PipeType(T, Canonical, ReadOnly);
4343   Types.push_back(New);
4344   PipeTypes.InsertNode(New, InsertPos);
4345   return QualType(New, 0);
4346 }
4347 
4348 QualType ASTContext::adjustStringLiteralBaseType(QualType Ty) const {
4349   // OpenCL v1.1 s6.5.3: a string literal is in the constant address space.
4350   return LangOpts.OpenCL ? getAddrSpaceQualType(Ty, LangAS::opencl_constant)
4351                          : Ty;
4352 }
4353 
4354 QualType ASTContext::getReadPipeType(QualType T) const {
4355   return getPipeType(T, true);
4356 }
4357 
4358 QualType ASTContext::getWritePipeType(QualType T) const {
4359   return getPipeType(T, false);
4360 }
4361 
4362 QualType ASTContext::getExtIntType(bool IsUnsigned, unsigned NumBits) const {
4363   llvm::FoldingSetNodeID ID;
4364   ExtIntType::Profile(ID, IsUnsigned, NumBits);
4365 
4366   void *InsertPos = nullptr;
4367   if (ExtIntType *EIT = ExtIntTypes.FindNodeOrInsertPos(ID, InsertPos))
4368     return QualType(EIT, 0);
4369 
4370   auto *New = new (*this, TypeAlignment) ExtIntType(IsUnsigned, NumBits);
4371   ExtIntTypes.InsertNode(New, InsertPos);
4372   Types.push_back(New);
4373   return QualType(New, 0);
4374 }
4375 
4376 QualType ASTContext::getDependentExtIntType(bool IsUnsigned,
4377                                             Expr *NumBitsExpr) const {
4378   assert(NumBitsExpr->isInstantiationDependent() && "Only good for dependent");
4379   llvm::FoldingSetNodeID ID;
4380   DependentExtIntType::Profile(ID, *this, IsUnsigned, NumBitsExpr);
4381 
4382   void *InsertPos = nullptr;
4383   if (DependentExtIntType *Existing =
4384           DependentExtIntTypes.FindNodeOrInsertPos(ID, InsertPos))
4385     return QualType(Existing, 0);
4386 
4387   auto *New = new (*this, TypeAlignment)
4388       DependentExtIntType(*this, IsUnsigned, NumBitsExpr);
4389   DependentExtIntTypes.InsertNode(New, InsertPos);
4390 
4391   Types.push_back(New);
4392   return QualType(New, 0);
4393 }
4394 
4395 #ifndef NDEBUG
4396 static bool NeedsInjectedClassNameType(const RecordDecl *D) {
4397   if (!isa<CXXRecordDecl>(D)) return false;
4398   const auto *RD = cast<CXXRecordDecl>(D);
4399   if (isa<ClassTemplatePartialSpecializationDecl>(RD))
4400     return true;
4401   if (RD->getDescribedClassTemplate() &&
4402       !isa<ClassTemplateSpecializationDecl>(RD))
4403     return true;
4404   return false;
4405 }
4406 #endif
4407 
4408 /// getInjectedClassNameType - Return the unique reference to the
4409 /// injected class name type for the specified templated declaration.
4410 QualType ASTContext::getInjectedClassNameType(CXXRecordDecl *Decl,
4411                                               QualType TST) const {
4412   assert(NeedsInjectedClassNameType(Decl));
4413   if (Decl->TypeForDecl) {
4414     assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
4415   } else if (CXXRecordDecl *PrevDecl = Decl->getPreviousDecl()) {
4416     assert(PrevDecl->TypeForDecl && "previous declaration has no type");
4417     Decl->TypeForDecl = PrevDecl->TypeForDecl;
4418     assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
4419   } else {
4420     Type *newType =
4421       new (*this, TypeAlignment) InjectedClassNameType(Decl, TST);
4422     Decl->TypeForDecl = newType;
4423     Types.push_back(newType);
4424   }
4425   return QualType(Decl->TypeForDecl, 0);
4426 }
4427 
4428 /// getTypeDeclType - Return the unique reference to the type for the
4429 /// specified type declaration.
4430 QualType ASTContext::getTypeDeclTypeSlow(const TypeDecl *Decl) const {
4431   assert(Decl && "Passed null for Decl param");
4432   assert(!Decl->TypeForDecl && "TypeForDecl present in slow case");
4433 
4434   if (const auto *Typedef = dyn_cast<TypedefNameDecl>(Decl))
4435     return getTypedefType(Typedef);
4436 
4437   assert(!isa<TemplateTypeParmDecl>(Decl) &&
4438          "Template type parameter types are always available.");
4439 
4440   if (const auto *Record = dyn_cast<RecordDecl>(Decl)) {
4441     assert(Record->isFirstDecl() && "struct/union has previous declaration");
4442     assert(!NeedsInjectedClassNameType(Record));
4443     return getRecordType(Record);
4444   } else if (const auto *Enum = dyn_cast<EnumDecl>(Decl)) {
4445     assert(Enum->isFirstDecl() && "enum has previous declaration");
4446     return getEnumType(Enum);
4447   } else if (const auto *Using = dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) {
4448     Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Using);
4449     Decl->TypeForDecl = newType;
4450     Types.push_back(newType);
4451   } else
4452     llvm_unreachable("TypeDecl without a type?");
4453 
4454   return QualType(Decl->TypeForDecl, 0);
4455 }
4456 
4457 /// getTypedefType - Return the unique reference to the type for the
4458 /// specified typedef name decl.
4459 QualType ASTContext::getTypedefType(const TypedefNameDecl *Decl,
4460                                     QualType Underlying) const {
4461   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
4462 
4463   if (Underlying.isNull())
4464     Underlying = Decl->getUnderlyingType();
4465   QualType Canonical = getCanonicalType(Underlying);
4466   auto *newType = new (*this, TypeAlignment)
4467       TypedefType(Type::Typedef, Decl, Underlying, Canonical);
4468   Decl->TypeForDecl = newType;
4469   Types.push_back(newType);
4470   return QualType(newType, 0);
4471 }
4472 
4473 QualType ASTContext::getRecordType(const RecordDecl *Decl) const {
4474   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
4475 
4476   if (const RecordDecl *PrevDecl = Decl->getPreviousDecl())
4477     if (PrevDecl->TypeForDecl)
4478       return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
4479 
4480   auto *newType = new (*this, TypeAlignment) RecordType(Decl);
4481   Decl->TypeForDecl = newType;
4482   Types.push_back(newType);
4483   return QualType(newType, 0);
4484 }
4485 
4486 QualType ASTContext::getEnumType(const EnumDecl *Decl) const {
4487   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
4488 
4489   if (const EnumDecl *PrevDecl = Decl->getPreviousDecl())
4490     if (PrevDecl->TypeForDecl)
4491       return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
4492 
4493   auto *newType = new (*this, TypeAlignment) EnumType(Decl);
4494   Decl->TypeForDecl = newType;
4495   Types.push_back(newType);
4496   return QualType(newType, 0);
4497 }
4498 
4499 QualType ASTContext::getAttributedType(attr::Kind attrKind,
4500                                        QualType modifiedType,
4501                                        QualType equivalentType) {
4502   llvm::FoldingSetNodeID id;
4503   AttributedType::Profile(id, attrKind, modifiedType, equivalentType);
4504 
4505   void *insertPos = nullptr;
4506   AttributedType *type = AttributedTypes.FindNodeOrInsertPos(id, insertPos);
4507   if (type) return QualType(type, 0);
4508 
4509   QualType canon = getCanonicalType(equivalentType);
4510   type = new (*this, TypeAlignment)
4511       AttributedType(canon, attrKind, modifiedType, equivalentType);
4512 
4513   Types.push_back(type);
4514   AttributedTypes.InsertNode(type, insertPos);
4515 
4516   return QualType(type, 0);
4517 }
4518 
4519 /// Retrieve a substitution-result type.
4520 QualType
4521 ASTContext::getSubstTemplateTypeParmType(const TemplateTypeParmType *Parm,
4522                                          QualType Replacement) const {
4523   assert(Replacement.isCanonical()
4524          && "replacement types must always be canonical");
4525 
4526   llvm::FoldingSetNodeID ID;
4527   SubstTemplateTypeParmType::Profile(ID, Parm, Replacement);
4528   void *InsertPos = nullptr;
4529   SubstTemplateTypeParmType *SubstParm
4530     = SubstTemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
4531 
4532   if (!SubstParm) {
4533     SubstParm = new (*this, TypeAlignment)
4534       SubstTemplateTypeParmType(Parm, Replacement);
4535     Types.push_back(SubstParm);
4536     SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
4537   }
4538 
4539   return QualType(SubstParm, 0);
4540 }
4541 
4542 /// Retrieve a
4543 QualType ASTContext::getSubstTemplateTypeParmPackType(
4544                                           const TemplateTypeParmType *Parm,
4545                                               const TemplateArgument &ArgPack) {
4546 #ifndef NDEBUG
4547   for (const auto &P : ArgPack.pack_elements()) {
4548     assert(P.getKind() == TemplateArgument::Type &&"Pack contains a non-type");
4549     assert(P.getAsType().isCanonical() && "Pack contains non-canonical type");
4550   }
4551 #endif
4552 
4553   llvm::FoldingSetNodeID ID;
4554   SubstTemplateTypeParmPackType::Profile(ID, Parm, ArgPack);
4555   void *InsertPos = nullptr;
4556   if (SubstTemplateTypeParmPackType *SubstParm
4557         = SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos))
4558     return QualType(SubstParm, 0);
4559 
4560   QualType Canon;
4561   if (!Parm->isCanonicalUnqualified()) {
4562     Canon = getCanonicalType(QualType(Parm, 0));
4563     Canon = getSubstTemplateTypeParmPackType(cast<TemplateTypeParmType>(Canon),
4564                                              ArgPack);
4565     SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos);
4566   }
4567 
4568   auto *SubstParm
4569     = new (*this, TypeAlignment) SubstTemplateTypeParmPackType(Parm, Canon,
4570                                                                ArgPack);
4571   Types.push_back(SubstParm);
4572   SubstTemplateTypeParmPackTypes.InsertNode(SubstParm, InsertPos);
4573   return QualType(SubstParm, 0);
4574 }
4575 
4576 /// Retrieve the template type parameter type for a template
4577 /// parameter or parameter pack with the given depth, index, and (optionally)
4578 /// name.
4579 QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index,
4580                                              bool ParameterPack,
4581                                              TemplateTypeParmDecl *TTPDecl) const {
4582   llvm::FoldingSetNodeID ID;
4583   TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl);
4584   void *InsertPos = nullptr;
4585   TemplateTypeParmType *TypeParm
4586     = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
4587 
4588   if (TypeParm)
4589     return QualType(TypeParm, 0);
4590 
4591   if (TTPDecl) {
4592     QualType Canon = getTemplateTypeParmType(Depth, Index, ParameterPack);
4593     TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon);
4594 
4595     TemplateTypeParmType *TypeCheck
4596       = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
4597     assert(!TypeCheck && "Template type parameter canonical type broken");
4598     (void)TypeCheck;
4599   } else
4600     TypeParm = new (*this, TypeAlignment)
4601       TemplateTypeParmType(Depth, Index, ParameterPack);
4602 
4603   Types.push_back(TypeParm);
4604   TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos);
4605 
4606   return QualType(TypeParm, 0);
4607 }
4608 
4609 TypeSourceInfo *
4610 ASTContext::getTemplateSpecializationTypeInfo(TemplateName Name,
4611                                               SourceLocation NameLoc,
4612                                         const TemplateArgumentListInfo &Args,
4613                                               QualType Underlying) const {
4614   assert(!Name.getAsDependentTemplateName() &&
4615          "No dependent template names here!");
4616   QualType TST = getTemplateSpecializationType(Name, Args, Underlying);
4617 
4618   TypeSourceInfo *DI = CreateTypeSourceInfo(TST);
4619   TemplateSpecializationTypeLoc TL =
4620       DI->getTypeLoc().castAs<TemplateSpecializationTypeLoc>();
4621   TL.setTemplateKeywordLoc(SourceLocation());
4622   TL.setTemplateNameLoc(NameLoc);
4623   TL.setLAngleLoc(Args.getLAngleLoc());
4624   TL.setRAngleLoc(Args.getRAngleLoc());
4625   for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
4626     TL.setArgLocInfo(i, Args[i].getLocInfo());
4627   return DI;
4628 }
4629 
4630 QualType
4631 ASTContext::getTemplateSpecializationType(TemplateName Template,
4632                                           const TemplateArgumentListInfo &Args,
4633                                           QualType Underlying) const {
4634   assert(!Template.getAsDependentTemplateName() &&
4635          "No dependent template names here!");
4636 
4637   SmallVector<TemplateArgument, 4> ArgVec;
4638   ArgVec.reserve(Args.size());
4639   for (const TemplateArgumentLoc &Arg : Args.arguments())
4640     ArgVec.push_back(Arg.getArgument());
4641 
4642   return getTemplateSpecializationType(Template, ArgVec, Underlying);
4643 }
4644 
4645 #ifndef NDEBUG
4646 static bool hasAnyPackExpansions(ArrayRef<TemplateArgument> Args) {
4647   for (const TemplateArgument &Arg : Args)
4648     if (Arg.isPackExpansion())
4649       return true;
4650 
4651   return true;
4652 }
4653 #endif
4654 
4655 QualType
4656 ASTContext::getTemplateSpecializationType(TemplateName Template,
4657                                           ArrayRef<TemplateArgument> Args,
4658                                           QualType Underlying) const {
4659   assert(!Template.getAsDependentTemplateName() &&
4660          "No dependent template names here!");
4661   // Look through qualified template names.
4662   if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
4663     Template = TemplateName(QTN->getTemplateDecl());
4664 
4665   bool IsTypeAlias =
4666     Template.getAsTemplateDecl() &&
4667     isa<TypeAliasTemplateDecl>(Template.getAsTemplateDecl());
4668   QualType CanonType;
4669   if (!Underlying.isNull())
4670     CanonType = getCanonicalType(Underlying);
4671   else {
4672     // We can get here with an alias template when the specialization contains
4673     // a pack expansion that does not match up with a parameter pack.
4674     assert((!IsTypeAlias || hasAnyPackExpansions(Args)) &&
4675            "Caller must compute aliased type");
4676     IsTypeAlias = false;
4677     CanonType = getCanonicalTemplateSpecializationType(Template, Args);
4678   }
4679 
4680   // Allocate the (non-canonical) template specialization type, but don't
4681   // try to unique it: these types typically have location information that
4682   // we don't unique and don't want to lose.
4683   void *Mem = Allocate(sizeof(TemplateSpecializationType) +
4684                        sizeof(TemplateArgument) * Args.size() +
4685                        (IsTypeAlias? sizeof(QualType) : 0),
4686                        TypeAlignment);
4687   auto *Spec
4688     = new (Mem) TemplateSpecializationType(Template, Args, CanonType,
4689                                          IsTypeAlias ? Underlying : QualType());
4690 
4691   Types.push_back(Spec);
4692   return QualType(Spec, 0);
4693 }
4694 
4695 QualType ASTContext::getCanonicalTemplateSpecializationType(
4696     TemplateName Template, ArrayRef<TemplateArgument> Args) const {
4697   assert(!Template.getAsDependentTemplateName() &&
4698          "No dependent template names here!");
4699 
4700   // Look through qualified template names.
4701   if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
4702     Template = TemplateName(QTN->getTemplateDecl());
4703 
4704   // Build the canonical template specialization type.
4705   TemplateName CanonTemplate = getCanonicalTemplateName(Template);
4706   SmallVector<TemplateArgument, 4> CanonArgs;
4707   unsigned NumArgs = Args.size();
4708   CanonArgs.reserve(NumArgs);
4709   for (const TemplateArgument &Arg : Args)
4710     CanonArgs.push_back(getCanonicalTemplateArgument(Arg));
4711 
4712   // Determine whether this canonical template specialization type already
4713   // exists.
4714   llvm::FoldingSetNodeID ID;
4715   TemplateSpecializationType::Profile(ID, CanonTemplate,
4716                                       CanonArgs, *this);
4717 
4718   void *InsertPos = nullptr;
4719   TemplateSpecializationType *Spec
4720     = TemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
4721 
4722   if (!Spec) {
4723     // Allocate a new canonical template specialization type.
4724     void *Mem = Allocate((sizeof(TemplateSpecializationType) +
4725                           sizeof(TemplateArgument) * NumArgs),
4726                          TypeAlignment);
4727     Spec = new (Mem) TemplateSpecializationType(CanonTemplate,
4728                                                 CanonArgs,
4729                                                 QualType(), QualType());
4730     Types.push_back(Spec);
4731     TemplateSpecializationTypes.InsertNode(Spec, InsertPos);
4732   }
4733 
4734   assert(Spec->isDependentType() &&
4735          "Non-dependent template-id type must have a canonical type");
4736   return QualType(Spec, 0);
4737 }
4738 
4739 QualType ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword,
4740                                        NestedNameSpecifier *NNS,
4741                                        QualType NamedType,
4742                                        TagDecl *OwnedTagDecl) const {
4743   llvm::FoldingSetNodeID ID;
4744   ElaboratedType::Profile(ID, Keyword, NNS, NamedType, OwnedTagDecl);
4745 
4746   void *InsertPos = nullptr;
4747   ElaboratedType *T = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
4748   if (T)
4749     return QualType(T, 0);
4750 
4751   QualType Canon = NamedType;
4752   if (!Canon.isCanonical()) {
4753     Canon = getCanonicalType(NamedType);
4754     ElaboratedType *CheckT = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
4755     assert(!CheckT && "Elaborated canonical type broken");
4756     (void)CheckT;
4757   }
4758 
4759   void *Mem = Allocate(ElaboratedType::totalSizeToAlloc<TagDecl *>(!!OwnedTagDecl),
4760                        TypeAlignment);
4761   T = new (Mem) ElaboratedType(Keyword, NNS, NamedType, Canon, OwnedTagDecl);
4762 
4763   Types.push_back(T);
4764   ElaboratedTypes.InsertNode(T, InsertPos);
4765   return QualType(T, 0);
4766 }
4767 
4768 QualType
4769 ASTContext::getParenType(QualType InnerType) const {
4770   llvm::FoldingSetNodeID ID;
4771   ParenType::Profile(ID, InnerType);
4772 
4773   void *InsertPos = nullptr;
4774   ParenType *T = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
4775   if (T)
4776     return QualType(T, 0);
4777 
4778   QualType Canon = InnerType;
4779   if (!Canon.isCanonical()) {
4780     Canon = getCanonicalType(InnerType);
4781     ParenType *CheckT = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
4782     assert(!CheckT && "Paren canonical type broken");
4783     (void)CheckT;
4784   }
4785 
4786   T = new (*this, TypeAlignment) ParenType(InnerType, Canon);
4787   Types.push_back(T);
4788   ParenTypes.InsertNode(T, InsertPos);
4789   return QualType(T, 0);
4790 }
4791 
4792 QualType
4793 ASTContext::getMacroQualifiedType(QualType UnderlyingTy,
4794                                   const IdentifierInfo *MacroII) const {
4795   QualType Canon = UnderlyingTy;
4796   if (!Canon.isCanonical())
4797     Canon = getCanonicalType(UnderlyingTy);
4798 
4799   auto *newType = new (*this, TypeAlignment)
4800       MacroQualifiedType(UnderlyingTy, Canon, MacroII);
4801   Types.push_back(newType);
4802   return QualType(newType, 0);
4803 }
4804 
4805 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword,
4806                                           NestedNameSpecifier *NNS,
4807                                           const IdentifierInfo *Name,
4808                                           QualType Canon) const {
4809   if (Canon.isNull()) {
4810     NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
4811     if (CanonNNS != NNS)
4812       Canon = getDependentNameType(Keyword, CanonNNS, Name);
4813   }
4814 
4815   llvm::FoldingSetNodeID ID;
4816   DependentNameType::Profile(ID, Keyword, NNS, Name);
4817 
4818   void *InsertPos = nullptr;
4819   DependentNameType *T
4820     = DependentNameTypes.FindNodeOrInsertPos(ID, InsertPos);
4821   if (T)
4822     return QualType(T, 0);
4823 
4824   T = new (*this, TypeAlignment) DependentNameType(Keyword, NNS, Name, Canon);
4825   Types.push_back(T);
4826   DependentNameTypes.InsertNode(T, InsertPos);
4827   return QualType(T, 0);
4828 }
4829 
4830 QualType
4831 ASTContext::getDependentTemplateSpecializationType(
4832                                  ElaboratedTypeKeyword Keyword,
4833                                  NestedNameSpecifier *NNS,
4834                                  const IdentifierInfo *Name,
4835                                  const TemplateArgumentListInfo &Args) const {
4836   // TODO: avoid this copy
4837   SmallVector<TemplateArgument, 16> ArgCopy;
4838   for (unsigned I = 0, E = Args.size(); I != E; ++I)
4839     ArgCopy.push_back(Args[I].getArgument());
4840   return getDependentTemplateSpecializationType(Keyword, NNS, Name, ArgCopy);
4841 }
4842 
4843 QualType
4844 ASTContext::getDependentTemplateSpecializationType(
4845                                  ElaboratedTypeKeyword Keyword,
4846                                  NestedNameSpecifier *NNS,
4847                                  const IdentifierInfo *Name,
4848                                  ArrayRef<TemplateArgument> Args) const {
4849   assert((!NNS || NNS->isDependent()) &&
4850          "nested-name-specifier must be dependent");
4851 
4852   llvm::FoldingSetNodeID ID;
4853   DependentTemplateSpecializationType::Profile(ID, *this, Keyword, NNS,
4854                                                Name, Args);
4855 
4856   void *InsertPos = nullptr;
4857   DependentTemplateSpecializationType *T
4858     = DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
4859   if (T)
4860     return QualType(T, 0);
4861 
4862   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
4863 
4864   ElaboratedTypeKeyword CanonKeyword = Keyword;
4865   if (Keyword == ETK_None) CanonKeyword = ETK_Typename;
4866 
4867   bool AnyNonCanonArgs = false;
4868   unsigned NumArgs = Args.size();
4869   SmallVector<TemplateArgument, 16> CanonArgs(NumArgs);
4870   for (unsigned I = 0; I != NumArgs; ++I) {
4871     CanonArgs[I] = getCanonicalTemplateArgument(Args[I]);
4872     if (!CanonArgs[I].structurallyEquals(Args[I]))
4873       AnyNonCanonArgs = true;
4874   }
4875 
4876   QualType Canon;
4877   if (AnyNonCanonArgs || CanonNNS != NNS || CanonKeyword != Keyword) {
4878     Canon = getDependentTemplateSpecializationType(CanonKeyword, CanonNNS,
4879                                                    Name,
4880                                                    CanonArgs);
4881 
4882     // Find the insert position again.
4883     DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
4884   }
4885 
4886   void *Mem = Allocate((sizeof(DependentTemplateSpecializationType) +
4887                         sizeof(TemplateArgument) * NumArgs),
4888                        TypeAlignment);
4889   T = new (Mem) DependentTemplateSpecializationType(Keyword, NNS,
4890                                                     Name, Args, Canon);
4891   Types.push_back(T);
4892   DependentTemplateSpecializationTypes.InsertNode(T, InsertPos);
4893   return QualType(T, 0);
4894 }
4895 
4896 TemplateArgument ASTContext::getInjectedTemplateArg(NamedDecl *Param) {
4897   TemplateArgument Arg;
4898   if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
4899     QualType ArgType = getTypeDeclType(TTP);
4900     if (TTP->isParameterPack())
4901       ArgType = getPackExpansionType(ArgType, None);
4902 
4903     Arg = TemplateArgument(ArgType);
4904   } else if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
4905     QualType T =
4906         NTTP->getType().getNonPackExpansionType().getNonLValueExprType(*this);
4907     // For class NTTPs, ensure we include the 'const' so the type matches that
4908     // of a real template argument.
4909     // FIXME: It would be more faithful to model this as something like an
4910     // lvalue-to-rvalue conversion applied to a const-qualified lvalue.
4911     if (T->isRecordType())
4912       T.addConst();
4913     Expr *E = new (*this) DeclRefExpr(
4914         *this, NTTP, /*enclosing*/ false, T,
4915         Expr::getValueKindForType(NTTP->getType()), NTTP->getLocation());
4916 
4917     if (NTTP->isParameterPack())
4918       E = new (*this) PackExpansionExpr(DependentTy, E, NTTP->getLocation(),
4919                                         None);
4920     Arg = TemplateArgument(E);
4921   } else {
4922     auto *TTP = cast<TemplateTemplateParmDecl>(Param);
4923     if (TTP->isParameterPack())
4924       Arg = TemplateArgument(TemplateName(TTP), Optional<unsigned>());
4925     else
4926       Arg = TemplateArgument(TemplateName(TTP));
4927   }
4928 
4929   if (Param->isTemplateParameterPack())
4930     Arg = TemplateArgument::CreatePackCopy(*this, Arg);
4931 
4932   return Arg;
4933 }
4934 
4935 void
4936 ASTContext::getInjectedTemplateArgs(const TemplateParameterList *Params,
4937                                     SmallVectorImpl<TemplateArgument> &Args) {
4938   Args.reserve(Args.size() + Params->size());
4939 
4940   for (NamedDecl *Param : *Params)
4941     Args.push_back(getInjectedTemplateArg(Param));
4942 }
4943 
4944 QualType ASTContext::getPackExpansionType(QualType Pattern,
4945                                           Optional<unsigned> NumExpansions,
4946                                           bool ExpectPackInType) {
4947   assert((!ExpectPackInType || Pattern->containsUnexpandedParameterPack()) &&
4948          "Pack expansions must expand one or more parameter packs");
4949 
4950   llvm::FoldingSetNodeID ID;
4951   PackExpansionType::Profile(ID, Pattern, NumExpansions);
4952 
4953   void *InsertPos = nullptr;
4954   PackExpansionType *T = PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
4955   if (T)
4956     return QualType(T, 0);
4957 
4958   QualType Canon;
4959   if (!Pattern.isCanonical()) {
4960     Canon = getPackExpansionType(getCanonicalType(Pattern), NumExpansions,
4961                                  /*ExpectPackInType=*/false);
4962 
4963     // Find the insert position again, in case we inserted an element into
4964     // PackExpansionTypes and invalidated our insert position.
4965     PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
4966   }
4967 
4968   T = new (*this, TypeAlignment)
4969       PackExpansionType(Pattern, Canon, NumExpansions);
4970   Types.push_back(T);
4971   PackExpansionTypes.InsertNode(T, InsertPos);
4972   return QualType(T, 0);
4973 }
4974 
4975 /// CmpProtocolNames - Comparison predicate for sorting protocols
4976 /// alphabetically.
4977 static int CmpProtocolNames(ObjCProtocolDecl *const *LHS,
4978                             ObjCProtocolDecl *const *RHS) {
4979   return DeclarationName::compare((*LHS)->getDeclName(), (*RHS)->getDeclName());
4980 }
4981 
4982 static bool areSortedAndUniqued(ArrayRef<ObjCProtocolDecl *> Protocols) {
4983   if (Protocols.empty()) return true;
4984 
4985   if (Protocols[0]->getCanonicalDecl() != Protocols[0])
4986     return false;
4987 
4988   for (unsigned i = 1; i != Protocols.size(); ++i)
4989     if (CmpProtocolNames(&Protocols[i - 1], &Protocols[i]) >= 0 ||
4990         Protocols[i]->getCanonicalDecl() != Protocols[i])
4991       return false;
4992   return true;
4993 }
4994 
4995 static void
4996 SortAndUniqueProtocols(SmallVectorImpl<ObjCProtocolDecl *> &Protocols) {
4997   // Sort protocols, keyed by name.
4998   llvm::array_pod_sort(Protocols.begin(), Protocols.end(), CmpProtocolNames);
4999 
5000   // Canonicalize.
5001   for (ObjCProtocolDecl *&P : Protocols)
5002     P = P->getCanonicalDecl();
5003 
5004   // Remove duplicates.
5005   auto ProtocolsEnd = std::unique(Protocols.begin(), Protocols.end());
5006   Protocols.erase(ProtocolsEnd, Protocols.end());
5007 }
5008 
5009 QualType ASTContext::getObjCObjectType(QualType BaseType,
5010                                        ObjCProtocolDecl * const *Protocols,
5011                                        unsigned NumProtocols) const {
5012   return getObjCObjectType(BaseType, {},
5013                            llvm::makeArrayRef(Protocols, NumProtocols),
5014                            /*isKindOf=*/false);
5015 }
5016 
5017 QualType ASTContext::getObjCObjectType(
5018            QualType baseType,
5019            ArrayRef<QualType> typeArgs,
5020            ArrayRef<ObjCProtocolDecl *> protocols,
5021            bool isKindOf) const {
5022   // If the base type is an interface and there aren't any protocols or
5023   // type arguments to add, then the interface type will do just fine.
5024   if (typeArgs.empty() && protocols.empty() && !isKindOf &&
5025       isa<ObjCInterfaceType>(baseType))
5026     return baseType;
5027 
5028   // Look in the folding set for an existing type.
5029   llvm::FoldingSetNodeID ID;
5030   ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf);
5031   void *InsertPos = nullptr;
5032   if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
5033     return QualType(QT, 0);
5034 
5035   // Determine the type arguments to be used for canonicalization,
5036   // which may be explicitly specified here or written on the base
5037   // type.
5038   ArrayRef<QualType> effectiveTypeArgs = typeArgs;
5039   if (effectiveTypeArgs.empty()) {
5040     if (const auto *baseObject = baseType->getAs<ObjCObjectType>())
5041       effectiveTypeArgs = baseObject->getTypeArgs();
5042   }
5043 
5044   // Build the canonical type, which has the canonical base type and a
5045   // sorted-and-uniqued list of protocols and the type arguments
5046   // canonicalized.
5047   QualType canonical;
5048   bool typeArgsAreCanonical = std::all_of(effectiveTypeArgs.begin(),
5049                                           effectiveTypeArgs.end(),
5050                                           [&](QualType type) {
5051                                             return type.isCanonical();
5052                                           });
5053   bool protocolsSorted = areSortedAndUniqued(protocols);
5054   if (!typeArgsAreCanonical || !protocolsSorted || !baseType.isCanonical()) {
5055     // Determine the canonical type arguments.
5056     ArrayRef<QualType> canonTypeArgs;
5057     SmallVector<QualType, 4> canonTypeArgsVec;
5058     if (!typeArgsAreCanonical) {
5059       canonTypeArgsVec.reserve(effectiveTypeArgs.size());
5060       for (auto typeArg : effectiveTypeArgs)
5061         canonTypeArgsVec.push_back(getCanonicalType(typeArg));
5062       canonTypeArgs = canonTypeArgsVec;
5063     } else {
5064       canonTypeArgs = effectiveTypeArgs;
5065     }
5066 
5067     ArrayRef<ObjCProtocolDecl *> canonProtocols;
5068     SmallVector<ObjCProtocolDecl*, 8> canonProtocolsVec;
5069     if (!protocolsSorted) {
5070       canonProtocolsVec.append(protocols.begin(), protocols.end());
5071       SortAndUniqueProtocols(canonProtocolsVec);
5072       canonProtocols = canonProtocolsVec;
5073     } else {
5074       canonProtocols = protocols;
5075     }
5076 
5077     canonical = getObjCObjectType(getCanonicalType(baseType), canonTypeArgs,
5078                                   canonProtocols, isKindOf);
5079 
5080     // Regenerate InsertPos.
5081     ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos);
5082   }
5083 
5084   unsigned size = sizeof(ObjCObjectTypeImpl);
5085   size += typeArgs.size() * sizeof(QualType);
5086   size += protocols.size() * sizeof(ObjCProtocolDecl *);
5087   void *mem = Allocate(size, TypeAlignment);
5088   auto *T =
5089     new (mem) ObjCObjectTypeImpl(canonical, baseType, typeArgs, protocols,
5090                                  isKindOf);
5091 
5092   Types.push_back(T);
5093   ObjCObjectTypes.InsertNode(T, InsertPos);
5094   return QualType(T, 0);
5095 }
5096 
5097 /// Apply Objective-C protocol qualifiers to the given type.
5098 /// If this is for the canonical type of a type parameter, we can apply
5099 /// protocol qualifiers on the ObjCObjectPointerType.
5100 QualType
5101 ASTContext::applyObjCProtocolQualifiers(QualType type,
5102                   ArrayRef<ObjCProtocolDecl *> protocols, bool &hasError,
5103                   bool allowOnPointerType) const {
5104   hasError = false;
5105 
5106   if (const auto *objT = dyn_cast<ObjCTypeParamType>(type.getTypePtr())) {
5107     return getObjCTypeParamType(objT->getDecl(), protocols);
5108   }
5109 
5110   // Apply protocol qualifiers to ObjCObjectPointerType.
5111   if (allowOnPointerType) {
5112     if (const auto *objPtr =
5113             dyn_cast<ObjCObjectPointerType>(type.getTypePtr())) {
5114       const ObjCObjectType *objT = objPtr->getObjectType();
5115       // Merge protocol lists and construct ObjCObjectType.
5116       SmallVector<ObjCProtocolDecl*, 8> protocolsVec;
5117       protocolsVec.append(objT->qual_begin(),
5118                           objT->qual_end());
5119       protocolsVec.append(protocols.begin(), protocols.end());
5120       ArrayRef<ObjCProtocolDecl *> protocols = protocolsVec;
5121       type = getObjCObjectType(
5122              objT->getBaseType(),
5123              objT->getTypeArgsAsWritten(),
5124              protocols,
5125              objT->isKindOfTypeAsWritten());
5126       return getObjCObjectPointerType(type);
5127     }
5128   }
5129 
5130   // Apply protocol qualifiers to ObjCObjectType.
5131   if (const auto *objT = dyn_cast<ObjCObjectType>(type.getTypePtr())){
5132     // FIXME: Check for protocols to which the class type is already
5133     // known to conform.
5134 
5135     return getObjCObjectType(objT->getBaseType(),
5136                              objT->getTypeArgsAsWritten(),
5137                              protocols,
5138                              objT->isKindOfTypeAsWritten());
5139   }
5140 
5141   // If the canonical type is ObjCObjectType, ...
5142   if (type->isObjCObjectType()) {
5143     // Silently overwrite any existing protocol qualifiers.
5144     // TODO: determine whether that's the right thing to do.
5145 
5146     // FIXME: Check for protocols to which the class type is already
5147     // known to conform.
5148     return getObjCObjectType(type, {}, protocols, false);
5149   }
5150 
5151   // id<protocol-list>
5152   if (type->isObjCIdType()) {
5153     const auto *objPtr = type->castAs<ObjCObjectPointerType>();
5154     type = getObjCObjectType(ObjCBuiltinIdTy, {}, protocols,
5155                                  objPtr->isKindOfType());
5156     return getObjCObjectPointerType(type);
5157   }
5158 
5159   // Class<protocol-list>
5160   if (type->isObjCClassType()) {
5161     const auto *objPtr = type->castAs<ObjCObjectPointerType>();
5162     type = getObjCObjectType(ObjCBuiltinClassTy, {}, protocols,
5163                                  objPtr->isKindOfType());
5164     return getObjCObjectPointerType(type);
5165   }
5166 
5167   hasError = true;
5168   return type;
5169 }
5170 
5171 QualType
5172 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl,
5173                                  ArrayRef<ObjCProtocolDecl *> protocols) const {
5174   // Look in the folding set for an existing type.
5175   llvm::FoldingSetNodeID ID;
5176   ObjCTypeParamType::Profile(ID, Decl, Decl->getUnderlyingType(), protocols);
5177   void *InsertPos = nullptr;
5178   if (ObjCTypeParamType *TypeParam =
5179       ObjCTypeParamTypes.FindNodeOrInsertPos(ID, InsertPos))
5180     return QualType(TypeParam, 0);
5181 
5182   // We canonicalize to the underlying type.
5183   QualType Canonical = getCanonicalType(Decl->getUnderlyingType());
5184   if (!protocols.empty()) {
5185     // Apply the protocol qualifers.
5186     bool hasError;
5187     Canonical = getCanonicalType(applyObjCProtocolQualifiers(
5188         Canonical, protocols, hasError, true /*allowOnPointerType*/));
5189     assert(!hasError && "Error when apply protocol qualifier to bound type");
5190   }
5191 
5192   unsigned size = sizeof(ObjCTypeParamType);
5193   size += protocols.size() * sizeof(ObjCProtocolDecl *);
5194   void *mem = Allocate(size, TypeAlignment);
5195   auto *newType = new (mem) ObjCTypeParamType(Decl, Canonical, protocols);
5196 
5197   Types.push_back(newType);
5198   ObjCTypeParamTypes.InsertNode(newType, InsertPos);
5199   return QualType(newType, 0);
5200 }
5201 
5202 void ASTContext::adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig,
5203                                               ObjCTypeParamDecl *New) const {
5204   New->setTypeSourceInfo(getTrivialTypeSourceInfo(Orig->getUnderlyingType()));
5205   // Update TypeForDecl after updating TypeSourceInfo.
5206   auto NewTypeParamTy = cast<ObjCTypeParamType>(New->getTypeForDecl());
5207   SmallVector<ObjCProtocolDecl *, 8> protocols;
5208   protocols.append(NewTypeParamTy->qual_begin(), NewTypeParamTy->qual_end());
5209   QualType UpdatedTy = getObjCTypeParamType(New, protocols);
5210   New->setTypeForDecl(UpdatedTy.getTypePtr());
5211 }
5212 
5213 /// ObjCObjectAdoptsQTypeProtocols - Checks that protocols in IC's
5214 /// protocol list adopt all protocols in QT's qualified-id protocol
5215 /// list.
5216 bool ASTContext::ObjCObjectAdoptsQTypeProtocols(QualType QT,
5217                                                 ObjCInterfaceDecl *IC) {
5218   if (!QT->isObjCQualifiedIdType())
5219     return false;
5220 
5221   if (const auto *OPT = QT->getAs<ObjCObjectPointerType>()) {
5222     // If both the right and left sides have qualifiers.
5223     for (auto *Proto : OPT->quals()) {
5224       if (!IC->ClassImplementsProtocol(Proto, false))
5225         return false;
5226     }
5227     return true;
5228   }
5229   return false;
5230 }
5231 
5232 /// QIdProtocolsAdoptObjCObjectProtocols - Checks that protocols in
5233 /// QT's qualified-id protocol list adopt all protocols in IDecl's list
5234 /// of protocols.
5235 bool ASTContext::QIdProtocolsAdoptObjCObjectProtocols(QualType QT,
5236                                                 ObjCInterfaceDecl *IDecl) {
5237   if (!QT->isObjCQualifiedIdType())
5238     return false;
5239   const auto *OPT = QT->getAs<ObjCObjectPointerType>();
5240   if (!OPT)
5241     return false;
5242   if (!IDecl->hasDefinition())
5243     return false;
5244   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> InheritedProtocols;
5245   CollectInheritedProtocols(IDecl, InheritedProtocols);
5246   if (InheritedProtocols.empty())
5247     return false;
5248   // Check that if every protocol in list of id<plist> conforms to a protocol
5249   // of IDecl's, then bridge casting is ok.
5250   bool Conforms = false;
5251   for (auto *Proto : OPT->quals()) {
5252     Conforms = false;
5253     for (auto *PI : InheritedProtocols) {
5254       if (ProtocolCompatibleWithProtocol(Proto, PI)) {
5255         Conforms = true;
5256         break;
5257       }
5258     }
5259     if (!Conforms)
5260       break;
5261   }
5262   if (Conforms)
5263     return true;
5264 
5265   for (auto *PI : InheritedProtocols) {
5266     // If both the right and left sides have qualifiers.
5267     bool Adopts = false;
5268     for (auto *Proto : OPT->quals()) {
5269       // return 'true' if 'PI' is in the inheritance hierarchy of Proto
5270       if ((Adopts = ProtocolCompatibleWithProtocol(PI, Proto)))
5271         break;
5272     }
5273     if (!Adopts)
5274       return false;
5275   }
5276   return true;
5277 }
5278 
5279 /// getObjCObjectPointerType - Return a ObjCObjectPointerType type for
5280 /// the given object type.
5281 QualType ASTContext::getObjCObjectPointerType(QualType ObjectT) const {
5282   llvm::FoldingSetNodeID ID;
5283   ObjCObjectPointerType::Profile(ID, ObjectT);
5284 
5285   void *InsertPos = nullptr;
5286   if (ObjCObjectPointerType *QT =
5287               ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
5288     return QualType(QT, 0);
5289 
5290   // Find the canonical object type.
5291   QualType Canonical;
5292   if (!ObjectT.isCanonical()) {
5293     Canonical = getObjCObjectPointerType(getCanonicalType(ObjectT));
5294 
5295     // Regenerate InsertPos.
5296     ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
5297   }
5298 
5299   // No match.
5300   void *Mem = Allocate(sizeof(ObjCObjectPointerType), TypeAlignment);
5301   auto *QType =
5302     new (Mem) ObjCObjectPointerType(Canonical, ObjectT);
5303 
5304   Types.push_back(QType);
5305   ObjCObjectPointerTypes.InsertNode(QType, InsertPos);
5306   return QualType(QType, 0);
5307 }
5308 
5309 /// getObjCInterfaceType - Return the unique reference to the type for the
5310 /// specified ObjC interface decl. The list of protocols is optional.
5311 QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl,
5312                                           ObjCInterfaceDecl *PrevDecl) const {
5313   if (Decl->TypeForDecl)
5314     return QualType(Decl->TypeForDecl, 0);
5315 
5316   if (PrevDecl) {
5317     assert(PrevDecl->TypeForDecl && "previous decl has no TypeForDecl");
5318     Decl->TypeForDecl = PrevDecl->TypeForDecl;
5319     return QualType(PrevDecl->TypeForDecl, 0);
5320   }
5321 
5322   // Prefer the definition, if there is one.
5323   if (const ObjCInterfaceDecl *Def = Decl->getDefinition())
5324     Decl = Def;
5325 
5326   void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment);
5327   auto *T = new (Mem) ObjCInterfaceType(Decl);
5328   Decl->TypeForDecl = T;
5329   Types.push_back(T);
5330   return QualType(T, 0);
5331 }
5332 
5333 /// getTypeOfExprType - Unlike many "get<Type>" functions, we can't unique
5334 /// TypeOfExprType AST's (since expression's are never shared). For example,
5335 /// multiple declarations that refer to "typeof(x)" all contain different
5336 /// DeclRefExpr's. This doesn't effect the type checker, since it operates
5337 /// on canonical type's (which are always unique).
5338 QualType ASTContext::getTypeOfExprType(Expr *tofExpr) const {
5339   TypeOfExprType *toe;
5340   if (tofExpr->isTypeDependent()) {
5341     llvm::FoldingSetNodeID ID;
5342     DependentTypeOfExprType::Profile(ID, *this, tofExpr);
5343 
5344     void *InsertPos = nullptr;
5345     DependentTypeOfExprType *Canon
5346       = DependentTypeOfExprTypes.FindNodeOrInsertPos(ID, InsertPos);
5347     if (Canon) {
5348       // We already have a "canonical" version of an identical, dependent
5349       // typeof(expr) type. Use that as our canonical type.
5350       toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr,
5351                                           QualType((TypeOfExprType*)Canon, 0));
5352     } else {
5353       // Build a new, canonical typeof(expr) type.
5354       Canon
5355         = new (*this, TypeAlignment) DependentTypeOfExprType(*this, tofExpr);
5356       DependentTypeOfExprTypes.InsertNode(Canon, InsertPos);
5357       toe = Canon;
5358     }
5359   } else {
5360     QualType Canonical = getCanonicalType(tofExpr->getType());
5361     toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical);
5362   }
5363   Types.push_back(toe);
5364   return QualType(toe, 0);
5365 }
5366 
5367 /// getTypeOfType -  Unlike many "get<Type>" functions, we don't unique
5368 /// TypeOfType nodes. The only motivation to unique these nodes would be
5369 /// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
5370 /// an issue. This doesn't affect the type checker, since it operates
5371 /// on canonical types (which are always unique).
5372 QualType ASTContext::getTypeOfType(QualType tofType) const {
5373   QualType Canonical = getCanonicalType(tofType);
5374   auto *tot = new (*this, TypeAlignment) TypeOfType(tofType, Canonical);
5375   Types.push_back(tot);
5376   return QualType(tot, 0);
5377 }
5378 
5379 /// Unlike many "get<Type>" functions, we don't unique DecltypeType
5380 /// nodes. This would never be helpful, since each such type has its own
5381 /// expression, and would not give a significant memory saving, since there
5382 /// is an Expr tree under each such type.
5383 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const {
5384   DecltypeType *dt;
5385 
5386   // C++11 [temp.type]p2:
5387   //   If an expression e involves a template parameter, decltype(e) denotes a
5388   //   unique dependent type. Two such decltype-specifiers refer to the same
5389   //   type only if their expressions are equivalent (14.5.6.1).
5390   if (e->isInstantiationDependent()) {
5391     llvm::FoldingSetNodeID ID;
5392     DependentDecltypeType::Profile(ID, *this, e);
5393 
5394     void *InsertPos = nullptr;
5395     DependentDecltypeType *Canon
5396       = DependentDecltypeTypes.FindNodeOrInsertPos(ID, InsertPos);
5397     if (!Canon) {
5398       // Build a new, canonical decltype(expr) type.
5399       Canon = new (*this, TypeAlignment) DependentDecltypeType(*this, e);
5400       DependentDecltypeTypes.InsertNode(Canon, InsertPos);
5401     }
5402     dt = new (*this, TypeAlignment)
5403         DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0));
5404   } else {
5405     dt = new (*this, TypeAlignment)
5406         DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType));
5407   }
5408   Types.push_back(dt);
5409   return QualType(dt, 0);
5410 }
5411 
5412 /// getUnaryTransformationType - We don't unique these, since the memory
5413 /// savings are minimal and these are rare.
5414 QualType ASTContext::getUnaryTransformType(QualType BaseType,
5415                                            QualType UnderlyingType,
5416                                            UnaryTransformType::UTTKind Kind)
5417     const {
5418   UnaryTransformType *ut = nullptr;
5419 
5420   if (BaseType->isDependentType()) {
5421     // Look in the folding set for an existing type.
5422     llvm::FoldingSetNodeID ID;
5423     DependentUnaryTransformType::Profile(ID, getCanonicalType(BaseType), Kind);
5424 
5425     void *InsertPos = nullptr;
5426     DependentUnaryTransformType *Canon
5427       = DependentUnaryTransformTypes.FindNodeOrInsertPos(ID, InsertPos);
5428 
5429     if (!Canon) {
5430       // Build a new, canonical __underlying_type(type) type.
5431       Canon = new (*this, TypeAlignment)
5432              DependentUnaryTransformType(*this, getCanonicalType(BaseType),
5433                                          Kind);
5434       DependentUnaryTransformTypes.InsertNode(Canon, InsertPos);
5435     }
5436     ut = new (*this, TypeAlignment) UnaryTransformType (BaseType,
5437                                                         QualType(), Kind,
5438                                                         QualType(Canon, 0));
5439   } else {
5440     QualType CanonType = getCanonicalType(UnderlyingType);
5441     ut = new (*this, TypeAlignment) UnaryTransformType (BaseType,
5442                                                         UnderlyingType, Kind,
5443                                                         CanonType);
5444   }
5445   Types.push_back(ut);
5446   return QualType(ut, 0);
5447 }
5448 
5449 /// getAutoType - Return the uniqued reference to the 'auto' type which has been
5450 /// deduced to the given type, or to the canonical undeduced 'auto' type, or the
5451 /// canonical deduced-but-dependent 'auto' type.
5452 QualType
5453 ASTContext::getAutoType(QualType DeducedType, AutoTypeKeyword Keyword,
5454                         bool IsDependent, bool IsPack,
5455                         ConceptDecl *TypeConstraintConcept,
5456                         ArrayRef<TemplateArgument> TypeConstraintArgs) const {
5457   assert((!IsPack || IsDependent) && "only use IsPack for a dependent pack");
5458   if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto &&
5459       !TypeConstraintConcept && !IsDependent)
5460     return getAutoDeductType();
5461 
5462   // Look in the folding set for an existing type.
5463   void *InsertPos = nullptr;
5464   llvm::FoldingSetNodeID ID;
5465   AutoType::Profile(ID, *this, DeducedType, Keyword, IsDependent,
5466                     TypeConstraintConcept, TypeConstraintArgs);
5467   if (AutoType *AT = AutoTypes.FindNodeOrInsertPos(ID, InsertPos))
5468     return QualType(AT, 0);
5469 
5470   void *Mem = Allocate(sizeof(AutoType) +
5471                        sizeof(TemplateArgument) * TypeConstraintArgs.size(),
5472                        TypeAlignment);
5473   auto *AT = new (Mem) AutoType(
5474       DeducedType, Keyword,
5475       (IsDependent ? TypeDependence::DependentInstantiation
5476                    : TypeDependence::None) |
5477           (IsPack ? TypeDependence::UnexpandedPack : TypeDependence::None),
5478       TypeConstraintConcept, TypeConstraintArgs);
5479   Types.push_back(AT);
5480   if (InsertPos)
5481     AutoTypes.InsertNode(AT, InsertPos);
5482   return QualType(AT, 0);
5483 }
5484 
5485 /// Return the uniqued reference to the deduced template specialization type
5486 /// which has been deduced to the given type, or to the canonical undeduced
5487 /// such type, or the canonical deduced-but-dependent such type.
5488 QualType ASTContext::getDeducedTemplateSpecializationType(
5489     TemplateName Template, QualType DeducedType, bool IsDependent) const {
5490   // Look in the folding set for an existing type.
5491   void *InsertPos = nullptr;
5492   llvm::FoldingSetNodeID ID;
5493   DeducedTemplateSpecializationType::Profile(ID, Template, DeducedType,
5494                                              IsDependent);
5495   if (DeducedTemplateSpecializationType *DTST =
5496           DeducedTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos))
5497     return QualType(DTST, 0);
5498 
5499   auto *DTST = new (*this, TypeAlignment)
5500       DeducedTemplateSpecializationType(Template, DeducedType, IsDependent);
5501   Types.push_back(DTST);
5502   if (InsertPos)
5503     DeducedTemplateSpecializationTypes.InsertNode(DTST, InsertPos);
5504   return QualType(DTST, 0);
5505 }
5506 
5507 /// getAtomicType - Return the uniqued reference to the atomic type for
5508 /// the given value type.
5509 QualType ASTContext::getAtomicType(QualType T) const {
5510   // Unique pointers, to guarantee there is only one pointer of a particular
5511   // structure.
5512   llvm::FoldingSetNodeID ID;
5513   AtomicType::Profile(ID, T);
5514 
5515   void *InsertPos = nullptr;
5516   if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos))
5517     return QualType(AT, 0);
5518 
5519   // If the atomic value type isn't canonical, this won't be a canonical type
5520   // either, so fill in the canonical type field.
5521   QualType Canonical;
5522   if (!T.isCanonical()) {
5523     Canonical = getAtomicType(getCanonicalType(T));
5524 
5525     // Get the new insert position for the node we care about.
5526     AtomicType *NewIP = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos);
5527     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
5528   }
5529   auto *New = new (*this, TypeAlignment) AtomicType(T, Canonical);
5530   Types.push_back(New);
5531   AtomicTypes.InsertNode(New, InsertPos);
5532   return QualType(New, 0);
5533 }
5534 
5535 /// getAutoDeductType - Get type pattern for deducing against 'auto'.
5536 QualType ASTContext::getAutoDeductType() const {
5537   if (AutoDeductTy.isNull())
5538     AutoDeductTy = QualType(new (*this, TypeAlignment)
5539                                 AutoType(QualType(), AutoTypeKeyword::Auto,
5540                                          TypeDependence::None,
5541                                          /*concept*/ nullptr, /*args*/ {}),
5542                             0);
5543   return AutoDeductTy;
5544 }
5545 
5546 /// getAutoRRefDeductType - Get type pattern for deducing against 'auto &&'.
5547 QualType ASTContext::getAutoRRefDeductType() const {
5548   if (AutoRRefDeductTy.isNull())
5549     AutoRRefDeductTy = getRValueReferenceType(getAutoDeductType());
5550   assert(!AutoRRefDeductTy.isNull() && "can't build 'auto &&' pattern");
5551   return AutoRRefDeductTy;
5552 }
5553 
5554 /// getTagDeclType - Return the unique reference to the type for the
5555 /// specified TagDecl (struct/union/class/enum) decl.
5556 QualType ASTContext::getTagDeclType(const TagDecl *Decl) const {
5557   assert(Decl);
5558   // FIXME: What is the design on getTagDeclType when it requires casting
5559   // away const?  mutable?
5560   return getTypeDeclType(const_cast<TagDecl*>(Decl));
5561 }
5562 
5563 /// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
5564 /// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
5565 /// needs to agree with the definition in <stddef.h>.
5566 CanQualType ASTContext::getSizeType() const {
5567   return getFromTargetType(Target->getSizeType());
5568 }
5569 
5570 /// Return the unique signed counterpart of the integer type
5571 /// corresponding to size_t.
5572 CanQualType ASTContext::getSignedSizeType() const {
5573   return getFromTargetType(Target->getSignedSizeType());
5574 }
5575 
5576 /// getIntMaxType - Return the unique type for "intmax_t" (C99 7.18.1.5).
5577 CanQualType ASTContext::getIntMaxType() const {
5578   return getFromTargetType(Target->getIntMaxType());
5579 }
5580 
5581 /// getUIntMaxType - Return the unique type for "uintmax_t" (C99 7.18.1.5).
5582 CanQualType ASTContext::getUIntMaxType() const {
5583   return getFromTargetType(Target->getUIntMaxType());
5584 }
5585 
5586 /// getSignedWCharType - Return the type of "signed wchar_t".
5587 /// Used when in C++, as a GCC extension.
5588 QualType ASTContext::getSignedWCharType() const {
5589   // FIXME: derive from "Target" ?
5590   return WCharTy;
5591 }
5592 
5593 /// getUnsignedWCharType - Return the type of "unsigned wchar_t".
5594 /// Used when in C++, as a GCC extension.
5595 QualType ASTContext::getUnsignedWCharType() const {
5596   // FIXME: derive from "Target" ?
5597   return UnsignedIntTy;
5598 }
5599 
5600 QualType ASTContext::getIntPtrType() const {
5601   return getFromTargetType(Target->getIntPtrType());
5602 }
5603 
5604 QualType ASTContext::getUIntPtrType() const {
5605   return getCorrespondingUnsignedType(getIntPtrType());
5606 }
5607 
5608 /// getPointerDiffType - Return the unique type for "ptrdiff_t" (C99 7.17)
5609 /// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
5610 QualType ASTContext::getPointerDiffType() const {
5611   return getFromTargetType(Target->getPtrDiffType(0));
5612 }
5613 
5614 /// Return the unique unsigned counterpart of "ptrdiff_t"
5615 /// integer type. The standard (C11 7.21.6.1p7) refers to this type
5616 /// in the definition of %tu format specifier.
5617 QualType ASTContext::getUnsignedPointerDiffType() const {
5618   return getFromTargetType(Target->getUnsignedPtrDiffType(0));
5619 }
5620 
5621 /// Return the unique type for "pid_t" defined in
5622 /// <sys/types.h>. We need this to compute the correct type for vfork().
5623 QualType ASTContext::getProcessIDType() const {
5624   return getFromTargetType(Target->getProcessIDType());
5625 }
5626 
5627 //===----------------------------------------------------------------------===//
5628 //                              Type Operators
5629 //===----------------------------------------------------------------------===//
5630 
5631 CanQualType ASTContext::getCanonicalParamType(QualType T) const {
5632   // Push qualifiers into arrays, and then discard any remaining
5633   // qualifiers.
5634   T = getCanonicalType(T);
5635   T = getVariableArrayDecayedType(T);
5636   const Type *Ty = T.getTypePtr();
5637   QualType Result;
5638   if (isa<ArrayType>(Ty)) {
5639     Result = getArrayDecayedType(QualType(Ty,0));
5640   } else if (isa<FunctionType>(Ty)) {
5641     Result = getPointerType(QualType(Ty, 0));
5642   } else {
5643     Result = QualType(Ty, 0);
5644   }
5645 
5646   return CanQualType::CreateUnsafe(Result);
5647 }
5648 
5649 QualType ASTContext::getUnqualifiedArrayType(QualType type,
5650                                              Qualifiers &quals) {
5651   SplitQualType splitType = type.getSplitUnqualifiedType();
5652 
5653   // FIXME: getSplitUnqualifiedType() actually walks all the way to
5654   // the unqualified desugared type and then drops it on the floor.
5655   // We then have to strip that sugar back off with
5656   // getUnqualifiedDesugaredType(), which is silly.
5657   const auto *AT =
5658       dyn_cast<ArrayType>(splitType.Ty->getUnqualifiedDesugaredType());
5659 
5660   // If we don't have an array, just use the results in splitType.
5661   if (!AT) {
5662     quals = splitType.Quals;
5663     return QualType(splitType.Ty, 0);
5664   }
5665 
5666   // Otherwise, recurse on the array's element type.
5667   QualType elementType = AT->getElementType();
5668   QualType unqualElementType = getUnqualifiedArrayType(elementType, quals);
5669 
5670   // If that didn't change the element type, AT has no qualifiers, so we
5671   // can just use the results in splitType.
5672   if (elementType == unqualElementType) {
5673     assert(quals.empty()); // from the recursive call
5674     quals = splitType.Quals;
5675     return QualType(splitType.Ty, 0);
5676   }
5677 
5678   // Otherwise, add in the qualifiers from the outermost type, then
5679   // build the type back up.
5680   quals.addConsistentQualifiers(splitType.Quals);
5681 
5682   if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) {
5683     return getConstantArrayType(unqualElementType, CAT->getSize(),
5684                                 CAT->getSizeExpr(), CAT->getSizeModifier(), 0);
5685   }
5686 
5687   if (const auto *IAT = dyn_cast<IncompleteArrayType>(AT)) {
5688     return getIncompleteArrayType(unqualElementType, IAT->getSizeModifier(), 0);
5689   }
5690 
5691   if (const auto *VAT = dyn_cast<VariableArrayType>(AT)) {
5692     return getVariableArrayType(unqualElementType,
5693                                 VAT->getSizeExpr(),
5694                                 VAT->getSizeModifier(),
5695                                 VAT->getIndexTypeCVRQualifiers(),
5696                                 VAT->getBracketsRange());
5697   }
5698 
5699   const auto *DSAT = cast<DependentSizedArrayType>(AT);
5700   return getDependentSizedArrayType(unqualElementType, DSAT->getSizeExpr(),
5701                                     DSAT->getSizeModifier(), 0,
5702                                     SourceRange());
5703 }
5704 
5705 /// Attempt to unwrap two types that may both be array types with the same bound
5706 /// (or both be array types of unknown bound) for the purpose of comparing the
5707 /// cv-decomposition of two types per C++ [conv.qual].
5708 bool ASTContext::UnwrapSimilarArrayTypes(QualType &T1, QualType &T2) {
5709   bool UnwrappedAny = false;
5710   while (true) {
5711     auto *AT1 = getAsArrayType(T1);
5712     if (!AT1) return UnwrappedAny;
5713 
5714     auto *AT2 = getAsArrayType(T2);
5715     if (!AT2) return UnwrappedAny;
5716 
5717     // If we don't have two array types with the same constant bound nor two
5718     // incomplete array types, we've unwrapped everything we can.
5719     if (auto *CAT1 = dyn_cast<ConstantArrayType>(AT1)) {
5720       auto *CAT2 = dyn_cast<ConstantArrayType>(AT2);
5721       if (!CAT2 || CAT1->getSize() != CAT2->getSize())
5722         return UnwrappedAny;
5723     } else if (!isa<IncompleteArrayType>(AT1) ||
5724                !isa<IncompleteArrayType>(AT2)) {
5725       return UnwrappedAny;
5726     }
5727 
5728     T1 = AT1->getElementType();
5729     T2 = AT2->getElementType();
5730     UnwrappedAny = true;
5731   }
5732 }
5733 
5734 /// Attempt to unwrap two types that may be similar (C++ [conv.qual]).
5735 ///
5736 /// If T1 and T2 are both pointer types of the same kind, or both array types
5737 /// with the same bound, unwraps layers from T1 and T2 until a pointer type is
5738 /// unwrapped. Top-level qualifiers on T1 and T2 are ignored.
5739 ///
5740 /// This function will typically be called in a loop that successively
5741 /// "unwraps" pointer and pointer-to-member types to compare them at each
5742 /// level.
5743 ///
5744 /// \return \c true if a pointer type was unwrapped, \c false if we reached a
5745 /// pair of types that can't be unwrapped further.
5746 bool ASTContext::UnwrapSimilarTypes(QualType &T1, QualType &T2) {
5747   UnwrapSimilarArrayTypes(T1, T2);
5748 
5749   const auto *T1PtrType = T1->getAs<PointerType>();
5750   const auto *T2PtrType = T2->getAs<PointerType>();
5751   if (T1PtrType && T2PtrType) {
5752     T1 = T1PtrType->getPointeeType();
5753     T2 = T2PtrType->getPointeeType();
5754     return true;
5755   }
5756 
5757   const auto *T1MPType = T1->getAs<MemberPointerType>();
5758   const auto *T2MPType = T2->getAs<MemberPointerType>();
5759   if (T1MPType && T2MPType &&
5760       hasSameUnqualifiedType(QualType(T1MPType->getClass(), 0),
5761                              QualType(T2MPType->getClass(), 0))) {
5762     T1 = T1MPType->getPointeeType();
5763     T2 = T2MPType->getPointeeType();
5764     return true;
5765   }
5766 
5767   if (getLangOpts().ObjC) {
5768     const auto *T1OPType = T1->getAs<ObjCObjectPointerType>();
5769     const auto *T2OPType = T2->getAs<ObjCObjectPointerType>();
5770     if (T1OPType && T2OPType) {
5771       T1 = T1OPType->getPointeeType();
5772       T2 = T2OPType->getPointeeType();
5773       return true;
5774     }
5775   }
5776 
5777   // FIXME: Block pointers, too?
5778 
5779   return false;
5780 }
5781 
5782 bool ASTContext::hasSimilarType(QualType T1, QualType T2) {
5783   while (true) {
5784     Qualifiers Quals;
5785     T1 = getUnqualifiedArrayType(T1, Quals);
5786     T2 = getUnqualifiedArrayType(T2, Quals);
5787     if (hasSameType(T1, T2))
5788       return true;
5789     if (!UnwrapSimilarTypes(T1, T2))
5790       return false;
5791   }
5792 }
5793 
5794 bool ASTContext::hasCvrSimilarType(QualType T1, QualType T2) {
5795   while (true) {
5796     Qualifiers Quals1, Quals2;
5797     T1 = getUnqualifiedArrayType(T1, Quals1);
5798     T2 = getUnqualifiedArrayType(T2, Quals2);
5799 
5800     Quals1.removeCVRQualifiers();
5801     Quals2.removeCVRQualifiers();
5802     if (Quals1 != Quals2)
5803       return false;
5804 
5805     if (hasSameType(T1, T2))
5806       return true;
5807 
5808     if (!UnwrapSimilarTypes(T1, T2))
5809       return false;
5810   }
5811 }
5812 
5813 DeclarationNameInfo
5814 ASTContext::getNameForTemplate(TemplateName Name,
5815                                SourceLocation NameLoc) const {
5816   switch (Name.getKind()) {
5817   case TemplateName::QualifiedTemplate:
5818   case TemplateName::Template:
5819     // DNInfo work in progress: CHECKME: what about DNLoc?
5820     return DeclarationNameInfo(Name.getAsTemplateDecl()->getDeclName(),
5821                                NameLoc);
5822 
5823   case TemplateName::OverloadedTemplate: {
5824     OverloadedTemplateStorage *Storage = Name.getAsOverloadedTemplate();
5825     // DNInfo work in progress: CHECKME: what about DNLoc?
5826     return DeclarationNameInfo((*Storage->begin())->getDeclName(), NameLoc);
5827   }
5828 
5829   case TemplateName::AssumedTemplate: {
5830     AssumedTemplateStorage *Storage = Name.getAsAssumedTemplateName();
5831     return DeclarationNameInfo(Storage->getDeclName(), NameLoc);
5832   }
5833 
5834   case TemplateName::DependentTemplate: {
5835     DependentTemplateName *DTN = Name.getAsDependentTemplateName();
5836     DeclarationName DName;
5837     if (DTN->isIdentifier()) {
5838       DName = DeclarationNames.getIdentifier(DTN->getIdentifier());
5839       return DeclarationNameInfo(DName, NameLoc);
5840     } else {
5841       DName = DeclarationNames.getCXXOperatorName(DTN->getOperator());
5842       // DNInfo work in progress: FIXME: source locations?
5843       DeclarationNameLoc DNLoc =
5844           DeclarationNameLoc::makeCXXOperatorNameLoc(SourceRange());
5845       return DeclarationNameInfo(DName, NameLoc, DNLoc);
5846     }
5847   }
5848 
5849   case TemplateName::SubstTemplateTemplateParm: {
5850     SubstTemplateTemplateParmStorage *subst
5851       = Name.getAsSubstTemplateTemplateParm();
5852     return DeclarationNameInfo(subst->getParameter()->getDeclName(),
5853                                NameLoc);
5854   }
5855 
5856   case TemplateName::SubstTemplateTemplateParmPack: {
5857     SubstTemplateTemplateParmPackStorage *subst
5858       = Name.getAsSubstTemplateTemplateParmPack();
5859     return DeclarationNameInfo(subst->getParameterPack()->getDeclName(),
5860                                NameLoc);
5861   }
5862   }
5863 
5864   llvm_unreachable("bad template name kind!");
5865 }
5866 
5867 TemplateName ASTContext::getCanonicalTemplateName(TemplateName Name) const {
5868   switch (Name.getKind()) {
5869   case TemplateName::QualifiedTemplate:
5870   case TemplateName::Template: {
5871     TemplateDecl *Template = Name.getAsTemplateDecl();
5872     if (auto *TTP  = dyn_cast<TemplateTemplateParmDecl>(Template))
5873       Template = getCanonicalTemplateTemplateParmDecl(TTP);
5874 
5875     // The canonical template name is the canonical template declaration.
5876     return TemplateName(cast<TemplateDecl>(Template->getCanonicalDecl()));
5877   }
5878 
5879   case TemplateName::OverloadedTemplate:
5880   case TemplateName::AssumedTemplate:
5881     llvm_unreachable("cannot canonicalize unresolved template");
5882 
5883   case TemplateName::DependentTemplate: {
5884     DependentTemplateName *DTN = Name.getAsDependentTemplateName();
5885     assert(DTN && "Non-dependent template names must refer to template decls.");
5886     return DTN->CanonicalTemplateName;
5887   }
5888 
5889   case TemplateName::SubstTemplateTemplateParm: {
5890     SubstTemplateTemplateParmStorage *subst
5891       = Name.getAsSubstTemplateTemplateParm();
5892     return getCanonicalTemplateName(subst->getReplacement());
5893   }
5894 
5895   case TemplateName::SubstTemplateTemplateParmPack: {
5896     SubstTemplateTemplateParmPackStorage *subst
5897                                   = Name.getAsSubstTemplateTemplateParmPack();
5898     TemplateTemplateParmDecl *canonParameter
5899       = getCanonicalTemplateTemplateParmDecl(subst->getParameterPack());
5900     TemplateArgument canonArgPack
5901       = getCanonicalTemplateArgument(subst->getArgumentPack());
5902     return getSubstTemplateTemplateParmPack(canonParameter, canonArgPack);
5903   }
5904   }
5905 
5906   llvm_unreachable("bad template name!");
5907 }
5908 
5909 bool ASTContext::hasSameTemplateName(TemplateName X, TemplateName Y) {
5910   X = getCanonicalTemplateName(X);
5911   Y = getCanonicalTemplateName(Y);
5912   return X.getAsVoidPointer() == Y.getAsVoidPointer();
5913 }
5914 
5915 TemplateArgument
5916 ASTContext::getCanonicalTemplateArgument(const TemplateArgument &Arg) const {
5917   switch (Arg.getKind()) {
5918     case TemplateArgument::Null:
5919       return Arg;
5920 
5921     case TemplateArgument::Expression:
5922       return Arg;
5923 
5924     case TemplateArgument::Declaration: {
5925       auto *D = cast<ValueDecl>(Arg.getAsDecl()->getCanonicalDecl());
5926       return TemplateArgument(D, Arg.getParamTypeForDecl());
5927     }
5928 
5929     case TemplateArgument::NullPtr:
5930       return TemplateArgument(getCanonicalType(Arg.getNullPtrType()),
5931                               /*isNullPtr*/true);
5932 
5933     case TemplateArgument::Template:
5934       return TemplateArgument(getCanonicalTemplateName(Arg.getAsTemplate()));
5935 
5936     case TemplateArgument::TemplateExpansion:
5937       return TemplateArgument(getCanonicalTemplateName(
5938                                          Arg.getAsTemplateOrTemplatePattern()),
5939                               Arg.getNumTemplateExpansions());
5940 
5941     case TemplateArgument::Integral:
5942       return TemplateArgument(Arg, getCanonicalType(Arg.getIntegralType()));
5943 
5944     case TemplateArgument::Type:
5945       return TemplateArgument(getCanonicalType(Arg.getAsType()));
5946 
5947     case TemplateArgument::Pack: {
5948       if (Arg.pack_size() == 0)
5949         return Arg;
5950 
5951       auto *CanonArgs = new (*this) TemplateArgument[Arg.pack_size()];
5952       unsigned Idx = 0;
5953       for (TemplateArgument::pack_iterator A = Arg.pack_begin(),
5954                                         AEnd = Arg.pack_end();
5955            A != AEnd; (void)++A, ++Idx)
5956         CanonArgs[Idx] = getCanonicalTemplateArgument(*A);
5957 
5958       return TemplateArgument(llvm::makeArrayRef(CanonArgs, Arg.pack_size()));
5959     }
5960   }
5961 
5962   // Silence GCC warning
5963   llvm_unreachable("Unhandled template argument kind");
5964 }
5965 
5966 NestedNameSpecifier *
5967 ASTContext::getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) const {
5968   if (!NNS)
5969     return nullptr;
5970 
5971   switch (NNS->getKind()) {
5972   case NestedNameSpecifier::Identifier:
5973     // Canonicalize the prefix but keep the identifier the same.
5974     return NestedNameSpecifier::Create(*this,
5975                          getCanonicalNestedNameSpecifier(NNS->getPrefix()),
5976                                        NNS->getAsIdentifier());
5977 
5978   case NestedNameSpecifier::Namespace:
5979     // A namespace is canonical; build a nested-name-specifier with
5980     // this namespace and no prefix.
5981     return NestedNameSpecifier::Create(*this, nullptr,
5982                                  NNS->getAsNamespace()->getOriginalNamespace());
5983 
5984   case NestedNameSpecifier::NamespaceAlias:
5985     // A namespace is canonical; build a nested-name-specifier with
5986     // this namespace and no prefix.
5987     return NestedNameSpecifier::Create(*this, nullptr,
5988                                     NNS->getAsNamespaceAlias()->getNamespace()
5989                                                       ->getOriginalNamespace());
5990 
5991   case NestedNameSpecifier::TypeSpec:
5992   case NestedNameSpecifier::TypeSpecWithTemplate: {
5993     QualType T = getCanonicalType(QualType(NNS->getAsType(), 0));
5994 
5995     // If we have some kind of dependent-named type (e.g., "typename T::type"),
5996     // break it apart into its prefix and identifier, then reconsititute those
5997     // as the canonical nested-name-specifier. This is required to canonicalize
5998     // a dependent nested-name-specifier involving typedefs of dependent-name
5999     // types, e.g.,
6000     //   typedef typename T::type T1;
6001     //   typedef typename T1::type T2;
6002     if (const auto *DNT = T->getAs<DependentNameType>())
6003       return NestedNameSpecifier::Create(*this, DNT->getQualifier(),
6004                            const_cast<IdentifierInfo *>(DNT->getIdentifier()));
6005 
6006     // Otherwise, just canonicalize the type, and force it to be a TypeSpec.
6007     // FIXME: Why are TypeSpec and TypeSpecWithTemplate distinct in the
6008     // first place?
6009     return NestedNameSpecifier::Create(*this, nullptr, false,
6010                                        const_cast<Type *>(T.getTypePtr()));
6011   }
6012 
6013   case NestedNameSpecifier::Global:
6014   case NestedNameSpecifier::Super:
6015     // The global specifier and __super specifer are canonical and unique.
6016     return NNS;
6017   }
6018 
6019   llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
6020 }
6021 
6022 const ArrayType *ASTContext::getAsArrayType(QualType T) const {
6023   // Handle the non-qualified case efficiently.
6024   if (!T.hasLocalQualifiers()) {
6025     // Handle the common positive case fast.
6026     if (const auto *AT = dyn_cast<ArrayType>(T))
6027       return AT;
6028   }
6029 
6030   // Handle the common negative case fast.
6031   if (!isa<ArrayType>(T.getCanonicalType()))
6032     return nullptr;
6033 
6034   // Apply any qualifiers from the array type to the element type.  This
6035   // implements C99 6.7.3p8: "If the specification of an array type includes
6036   // any type qualifiers, the element type is so qualified, not the array type."
6037 
6038   // If we get here, we either have type qualifiers on the type, or we have
6039   // sugar such as a typedef in the way.  If we have type qualifiers on the type
6040   // we must propagate them down into the element type.
6041 
6042   SplitQualType split = T.getSplitDesugaredType();
6043   Qualifiers qs = split.Quals;
6044 
6045   // If we have a simple case, just return now.
6046   const auto *ATy = dyn_cast<ArrayType>(split.Ty);
6047   if (!ATy || qs.empty())
6048     return ATy;
6049 
6050   // Otherwise, we have an array and we have qualifiers on it.  Push the
6051   // qualifiers into the array element type and return a new array type.
6052   QualType NewEltTy = getQualifiedType(ATy->getElementType(), qs);
6053 
6054   if (const auto *CAT = dyn_cast<ConstantArrayType>(ATy))
6055     return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
6056                                                 CAT->getSizeExpr(),
6057                                                 CAT->getSizeModifier(),
6058                                            CAT->getIndexTypeCVRQualifiers()));
6059   if (const auto *IAT = dyn_cast<IncompleteArrayType>(ATy))
6060     return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
6061                                                   IAT->getSizeModifier(),
6062                                            IAT->getIndexTypeCVRQualifiers()));
6063 
6064   if (const auto *DSAT = dyn_cast<DependentSizedArrayType>(ATy))
6065     return cast<ArrayType>(
6066                      getDependentSizedArrayType(NewEltTy,
6067                                                 DSAT->getSizeExpr(),
6068                                                 DSAT->getSizeModifier(),
6069                                               DSAT->getIndexTypeCVRQualifiers(),
6070                                                 DSAT->getBracketsRange()));
6071 
6072   const auto *VAT = cast<VariableArrayType>(ATy);
6073   return cast<ArrayType>(getVariableArrayType(NewEltTy,
6074                                               VAT->getSizeExpr(),
6075                                               VAT->getSizeModifier(),
6076                                               VAT->getIndexTypeCVRQualifiers(),
6077                                               VAT->getBracketsRange()));
6078 }
6079 
6080 QualType ASTContext::getAdjustedParameterType(QualType T) const {
6081   if (T->isArrayType() || T->isFunctionType())
6082     return getDecayedType(T);
6083   return T;
6084 }
6085 
6086 QualType ASTContext::getSignatureParameterType(QualType T) const {
6087   T = getVariableArrayDecayedType(T);
6088   T = getAdjustedParameterType(T);
6089   return T.getUnqualifiedType();
6090 }
6091 
6092 QualType ASTContext::getExceptionObjectType(QualType T) const {
6093   // C++ [except.throw]p3:
6094   //   A throw-expression initializes a temporary object, called the exception
6095   //   object, the type of which is determined by removing any top-level
6096   //   cv-qualifiers from the static type of the operand of throw and adjusting
6097   //   the type from "array of T" or "function returning T" to "pointer to T"
6098   //   or "pointer to function returning T", [...]
6099   T = getVariableArrayDecayedType(T);
6100   if (T->isArrayType() || T->isFunctionType())
6101     T = getDecayedType(T);
6102   return T.getUnqualifiedType();
6103 }
6104 
6105 /// getArrayDecayedType - Return the properly qualified result of decaying the
6106 /// specified array type to a pointer.  This operation is non-trivial when
6107 /// handling typedefs etc.  The canonical type of "T" must be an array type,
6108 /// this returns a pointer to a properly qualified element of the array.
6109 ///
6110 /// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
6111 QualType ASTContext::getArrayDecayedType(QualType Ty) const {
6112   // Get the element type with 'getAsArrayType' so that we don't lose any
6113   // typedefs in the element type of the array.  This also handles propagation
6114   // of type qualifiers from the array type into the element type if present
6115   // (C99 6.7.3p8).
6116   const ArrayType *PrettyArrayType = getAsArrayType(Ty);
6117   assert(PrettyArrayType && "Not an array type!");
6118 
6119   QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
6120 
6121   // int x[restrict 4] ->  int *restrict
6122   QualType Result = getQualifiedType(PtrTy,
6123                                      PrettyArrayType->getIndexTypeQualifiers());
6124 
6125   // int x[_Nullable] -> int * _Nullable
6126   if (auto Nullability = Ty->getNullability(*this)) {
6127     Result = const_cast<ASTContext *>(this)->getAttributedType(
6128         AttributedType::getNullabilityAttrKind(*Nullability), Result, Result);
6129   }
6130   return Result;
6131 }
6132 
6133 QualType ASTContext::getBaseElementType(const ArrayType *array) const {
6134   return getBaseElementType(array->getElementType());
6135 }
6136 
6137 QualType ASTContext::getBaseElementType(QualType type) const {
6138   Qualifiers qs;
6139   while (true) {
6140     SplitQualType split = type.getSplitDesugaredType();
6141     const ArrayType *array = split.Ty->getAsArrayTypeUnsafe();
6142     if (!array) break;
6143 
6144     type = array->getElementType();
6145     qs.addConsistentQualifiers(split.Quals);
6146   }
6147 
6148   return getQualifiedType(type, qs);
6149 }
6150 
6151 /// getConstantArrayElementCount - Returns number of constant array elements.
6152 uint64_t
6153 ASTContext::getConstantArrayElementCount(const ConstantArrayType *CA)  const {
6154   uint64_t ElementCount = 1;
6155   do {
6156     ElementCount *= CA->getSize().getZExtValue();
6157     CA = dyn_cast_or_null<ConstantArrayType>(
6158       CA->getElementType()->getAsArrayTypeUnsafe());
6159   } while (CA);
6160   return ElementCount;
6161 }
6162 
6163 /// getFloatingRank - Return a relative rank for floating point types.
6164 /// This routine will assert if passed a built-in type that isn't a float.
6165 static FloatingRank getFloatingRank(QualType T) {
6166   if (const auto *CT = T->getAs<ComplexType>())
6167     return getFloatingRank(CT->getElementType());
6168 
6169   switch (T->castAs<BuiltinType>()->getKind()) {
6170   default: llvm_unreachable("getFloatingRank(): not a floating type");
6171   case BuiltinType::Float16:    return Float16Rank;
6172   case BuiltinType::Half:       return HalfRank;
6173   case BuiltinType::Float:      return FloatRank;
6174   case BuiltinType::Double:     return DoubleRank;
6175   case BuiltinType::LongDouble: return LongDoubleRank;
6176   case BuiltinType::Float128:   return Float128Rank;
6177   case BuiltinType::BFloat16:   return BFloat16Rank;
6178   }
6179 }
6180 
6181 /// getFloatingTypeOfSizeWithinDomain - Returns a real floating
6182 /// point or a complex type (based on typeDomain/typeSize).
6183 /// 'typeDomain' is a real floating point or complex type.
6184 /// 'typeSize' is a real floating point or complex type.
6185 QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
6186                                                        QualType Domain) const {
6187   FloatingRank EltRank = getFloatingRank(Size);
6188   if (Domain->isComplexType()) {
6189     switch (EltRank) {
6190     case BFloat16Rank: llvm_unreachable("Complex bfloat16 is not supported");
6191     case Float16Rank:
6192     case HalfRank: llvm_unreachable("Complex half is not supported");
6193     case FloatRank:      return FloatComplexTy;
6194     case DoubleRank:     return DoubleComplexTy;
6195     case LongDoubleRank: return LongDoubleComplexTy;
6196     case Float128Rank:   return Float128ComplexTy;
6197     }
6198   }
6199 
6200   assert(Domain->isRealFloatingType() && "Unknown domain!");
6201   switch (EltRank) {
6202   case Float16Rank:    return HalfTy;
6203   case BFloat16Rank:   return BFloat16Ty;
6204   case HalfRank:       return HalfTy;
6205   case FloatRank:      return FloatTy;
6206   case DoubleRank:     return DoubleTy;
6207   case LongDoubleRank: return LongDoubleTy;
6208   case Float128Rank:   return Float128Ty;
6209   }
6210   llvm_unreachable("getFloatingRank(): illegal value for rank");
6211 }
6212 
6213 /// getFloatingTypeOrder - Compare the rank of the two specified floating
6214 /// point types, ignoring the domain of the type (i.e. 'double' ==
6215 /// '_Complex double').  If LHS > RHS, return 1.  If LHS == RHS, return 0. If
6216 /// LHS < RHS, return -1.
6217 int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) const {
6218   FloatingRank LHSR = getFloatingRank(LHS);
6219   FloatingRank RHSR = getFloatingRank(RHS);
6220 
6221   if (LHSR == RHSR)
6222     return 0;
6223   if (LHSR > RHSR)
6224     return 1;
6225   return -1;
6226 }
6227 
6228 int ASTContext::getFloatingTypeSemanticOrder(QualType LHS, QualType RHS) const {
6229   if (&getFloatTypeSemantics(LHS) == &getFloatTypeSemantics(RHS))
6230     return 0;
6231   return getFloatingTypeOrder(LHS, RHS);
6232 }
6233 
6234 /// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
6235 /// routine will assert if passed a built-in type that isn't an integer or enum,
6236 /// or if it is not canonicalized.
6237 unsigned ASTContext::getIntegerRank(const Type *T) const {
6238   assert(T->isCanonicalUnqualified() && "T should be canonicalized");
6239 
6240   // Results in this 'losing' to any type of the same size, but winning if
6241   // larger.
6242   if (const auto *EIT = dyn_cast<ExtIntType>(T))
6243     return 0 + (EIT->getNumBits() << 3);
6244 
6245   switch (cast<BuiltinType>(T)->getKind()) {
6246   default: llvm_unreachable("getIntegerRank(): not a built-in integer");
6247   case BuiltinType::Bool:
6248     return 1 + (getIntWidth(BoolTy) << 3);
6249   case BuiltinType::Char_S:
6250   case BuiltinType::Char_U:
6251   case BuiltinType::SChar:
6252   case BuiltinType::UChar:
6253     return 2 + (getIntWidth(CharTy) << 3);
6254   case BuiltinType::Short:
6255   case BuiltinType::UShort:
6256     return 3 + (getIntWidth(ShortTy) << 3);
6257   case BuiltinType::Int:
6258   case BuiltinType::UInt:
6259     return 4 + (getIntWidth(IntTy) << 3);
6260   case BuiltinType::Long:
6261   case BuiltinType::ULong:
6262     return 5 + (getIntWidth(LongTy) << 3);
6263   case BuiltinType::LongLong:
6264   case BuiltinType::ULongLong:
6265     return 6 + (getIntWidth(LongLongTy) << 3);
6266   case BuiltinType::Int128:
6267   case BuiltinType::UInt128:
6268     return 7 + (getIntWidth(Int128Ty) << 3);
6269   }
6270 }
6271 
6272 /// Whether this is a promotable bitfield reference according
6273 /// to C99 6.3.1.1p2, bullet 2 (and GCC extensions).
6274 ///
6275 /// \returns the type this bit-field will promote to, or NULL if no
6276 /// promotion occurs.
6277 QualType ASTContext::isPromotableBitField(Expr *E) const {
6278   if (E->isTypeDependent() || E->isValueDependent())
6279     return {};
6280 
6281   // C++ [conv.prom]p5:
6282   //    If the bit-field has an enumerated type, it is treated as any other
6283   //    value of that type for promotion purposes.
6284   if (getLangOpts().CPlusPlus && E->getType()->isEnumeralType())
6285     return {};
6286 
6287   // FIXME: We should not do this unless E->refersToBitField() is true. This
6288   // matters in C where getSourceBitField() will find bit-fields for various
6289   // cases where the source expression is not a bit-field designator.
6290 
6291   FieldDecl *Field = E->getSourceBitField(); // FIXME: conditional bit-fields?
6292   if (!Field)
6293     return {};
6294 
6295   QualType FT = Field->getType();
6296 
6297   uint64_t BitWidth = Field->getBitWidthValue(*this);
6298   uint64_t IntSize = getTypeSize(IntTy);
6299   // C++ [conv.prom]p5:
6300   //   A prvalue for an integral bit-field can be converted to a prvalue of type
6301   //   int if int can represent all the values of the bit-field; otherwise, it
6302   //   can be converted to unsigned int if unsigned int can represent all the
6303   //   values of the bit-field. If the bit-field is larger yet, no integral
6304   //   promotion applies to it.
6305   // C11 6.3.1.1/2:
6306   //   [For a bit-field of type _Bool, int, signed int, or unsigned int:]
6307   //   If an int can represent all values of the original type (as restricted by
6308   //   the width, for a bit-field), the value is converted to an int; otherwise,
6309   //   it is converted to an unsigned int.
6310   //
6311   // FIXME: C does not permit promotion of a 'long : 3' bitfield to int.
6312   //        We perform that promotion here to match GCC and C++.
6313   // FIXME: C does not permit promotion of an enum bit-field whose rank is
6314   //        greater than that of 'int'. We perform that promotion to match GCC.
6315   if (BitWidth < IntSize)
6316     return IntTy;
6317 
6318   if (BitWidth == IntSize)
6319     return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
6320 
6321   // Bit-fields wider than int are not subject to promotions, and therefore act
6322   // like the base type. GCC has some weird bugs in this area that we
6323   // deliberately do not follow (GCC follows a pre-standard resolution to
6324   // C's DR315 which treats bit-width as being part of the type, and this leaks
6325   // into their semantics in some cases).
6326   return {};
6327 }
6328 
6329 /// getPromotedIntegerType - Returns the type that Promotable will
6330 /// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable
6331 /// integer type.
6332 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const {
6333   assert(!Promotable.isNull());
6334   assert(Promotable->isPromotableIntegerType());
6335   if (const auto *ET = Promotable->getAs<EnumType>())
6336     return ET->getDecl()->getPromotionType();
6337 
6338   if (const auto *BT = Promotable->getAs<BuiltinType>()) {
6339     // C++ [conv.prom]: A prvalue of type char16_t, char32_t, or wchar_t
6340     // (3.9.1) can be converted to a prvalue of the first of the following
6341     // types that can represent all the values of its underlying type:
6342     // int, unsigned int, long int, unsigned long int, long long int, or
6343     // unsigned long long int [...]
6344     // FIXME: Is there some better way to compute this?
6345     if (BT->getKind() == BuiltinType::WChar_S ||
6346         BT->getKind() == BuiltinType::WChar_U ||
6347         BT->getKind() == BuiltinType::Char8 ||
6348         BT->getKind() == BuiltinType::Char16 ||
6349         BT->getKind() == BuiltinType::Char32) {
6350       bool FromIsSigned = BT->getKind() == BuiltinType::WChar_S;
6351       uint64_t FromSize = getTypeSize(BT);
6352       QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy,
6353                                   LongLongTy, UnsignedLongLongTy };
6354       for (size_t Idx = 0; Idx < llvm::array_lengthof(PromoteTypes); ++Idx) {
6355         uint64_t ToSize = getTypeSize(PromoteTypes[Idx]);
6356         if (FromSize < ToSize ||
6357             (FromSize == ToSize &&
6358              FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType()))
6359           return PromoteTypes[Idx];
6360       }
6361       llvm_unreachable("char type should fit into long long");
6362     }
6363   }
6364 
6365   // At this point, we should have a signed or unsigned integer type.
6366   if (Promotable->isSignedIntegerType())
6367     return IntTy;
6368   uint64_t PromotableSize = getIntWidth(Promotable);
6369   uint64_t IntSize = getIntWidth(IntTy);
6370   assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize);
6371   return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy;
6372 }
6373 
6374 /// Recurses in pointer/array types until it finds an objc retainable
6375 /// type and returns its ownership.
6376 Qualifiers::ObjCLifetime ASTContext::getInnerObjCOwnership(QualType T) const {
6377   while (!T.isNull()) {
6378     if (T.getObjCLifetime() != Qualifiers::OCL_None)
6379       return T.getObjCLifetime();
6380     if (T->isArrayType())
6381       T = getBaseElementType(T);
6382     else if (const auto *PT = T->getAs<PointerType>())
6383       T = PT->getPointeeType();
6384     else if (const auto *RT = T->getAs<ReferenceType>())
6385       T = RT->getPointeeType();
6386     else
6387       break;
6388   }
6389 
6390   return Qualifiers::OCL_None;
6391 }
6392 
6393 static const Type *getIntegerTypeForEnum(const EnumType *ET) {
6394   // Incomplete enum types are not treated as integer types.
6395   // FIXME: In C++, enum types are never integer types.
6396   if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped())
6397     return ET->getDecl()->getIntegerType().getTypePtr();
6398   return nullptr;
6399 }
6400 
6401 /// getIntegerTypeOrder - Returns the highest ranked integer type:
6402 /// C99 6.3.1.8p1.  If LHS > RHS, return 1.  If LHS == RHS, return 0. If
6403 /// LHS < RHS, return -1.
6404 int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) const {
6405   const Type *LHSC = getCanonicalType(LHS).getTypePtr();
6406   const Type *RHSC = getCanonicalType(RHS).getTypePtr();
6407 
6408   // Unwrap enums to their underlying type.
6409   if (const auto *ET = dyn_cast<EnumType>(LHSC))
6410     LHSC = getIntegerTypeForEnum(ET);
6411   if (const auto *ET = dyn_cast<EnumType>(RHSC))
6412     RHSC = getIntegerTypeForEnum(ET);
6413 
6414   if (LHSC == RHSC) return 0;
6415 
6416   bool LHSUnsigned = LHSC->isUnsignedIntegerType();
6417   bool RHSUnsigned = RHSC->isUnsignedIntegerType();
6418 
6419   unsigned LHSRank = getIntegerRank(LHSC);
6420   unsigned RHSRank = getIntegerRank(RHSC);
6421 
6422   if (LHSUnsigned == RHSUnsigned) {  // Both signed or both unsigned.
6423     if (LHSRank == RHSRank) return 0;
6424     return LHSRank > RHSRank ? 1 : -1;
6425   }
6426 
6427   // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
6428   if (LHSUnsigned) {
6429     // If the unsigned [LHS] type is larger, return it.
6430     if (LHSRank >= RHSRank)
6431       return 1;
6432 
6433     // If the signed type can represent all values of the unsigned type, it
6434     // wins.  Because we are dealing with 2's complement and types that are
6435     // powers of two larger than each other, this is always safe.
6436     return -1;
6437   }
6438 
6439   // If the unsigned [RHS] type is larger, return it.
6440   if (RHSRank >= LHSRank)
6441     return -1;
6442 
6443   // If the signed type can represent all values of the unsigned type, it
6444   // wins.  Because we are dealing with 2's complement and types that are
6445   // powers of two larger than each other, this is always safe.
6446   return 1;
6447 }
6448 
6449 TypedefDecl *ASTContext::getCFConstantStringDecl() const {
6450   if (CFConstantStringTypeDecl)
6451     return CFConstantStringTypeDecl;
6452 
6453   assert(!CFConstantStringTagDecl &&
6454          "tag and typedef should be initialized together");
6455   CFConstantStringTagDecl = buildImplicitRecord("__NSConstantString_tag");
6456   CFConstantStringTagDecl->startDefinition();
6457 
6458   struct {
6459     QualType Type;
6460     const char *Name;
6461   } Fields[5];
6462   unsigned Count = 0;
6463 
6464   /// Objective-C ABI
6465   ///
6466   ///    typedef struct __NSConstantString_tag {
6467   ///      const int *isa;
6468   ///      int flags;
6469   ///      const char *str;
6470   ///      long length;
6471   ///    } __NSConstantString;
6472   ///
6473   /// Swift ABI (4.1, 4.2)
6474   ///
6475   ///    typedef struct __NSConstantString_tag {
6476   ///      uintptr_t _cfisa;
6477   ///      uintptr_t _swift_rc;
6478   ///      _Atomic(uint64_t) _cfinfoa;
6479   ///      const char *_ptr;
6480   ///      uint32_t _length;
6481   ///    } __NSConstantString;
6482   ///
6483   /// Swift ABI (5.0)
6484   ///
6485   ///    typedef struct __NSConstantString_tag {
6486   ///      uintptr_t _cfisa;
6487   ///      uintptr_t _swift_rc;
6488   ///      _Atomic(uint64_t) _cfinfoa;
6489   ///      const char *_ptr;
6490   ///      uintptr_t _length;
6491   ///    } __NSConstantString;
6492 
6493   const auto CFRuntime = getLangOpts().CFRuntime;
6494   if (static_cast<unsigned>(CFRuntime) <
6495       static_cast<unsigned>(LangOptions::CoreFoundationABI::Swift)) {
6496     Fields[Count++] = { getPointerType(IntTy.withConst()), "isa" };
6497     Fields[Count++] = { IntTy, "flags" };
6498     Fields[Count++] = { getPointerType(CharTy.withConst()), "str" };
6499     Fields[Count++] = { LongTy, "length" };
6500   } else {
6501     Fields[Count++] = { getUIntPtrType(), "_cfisa" };
6502     Fields[Count++] = { getUIntPtrType(), "_swift_rc" };
6503     Fields[Count++] = { getFromTargetType(Target->getUInt64Type()), "_swift_rc" };
6504     Fields[Count++] = { getPointerType(CharTy.withConst()), "_ptr" };
6505     if (CFRuntime == LangOptions::CoreFoundationABI::Swift4_1 ||
6506         CFRuntime == LangOptions::CoreFoundationABI::Swift4_2)
6507       Fields[Count++] = { IntTy, "_ptr" };
6508     else
6509       Fields[Count++] = { getUIntPtrType(), "_ptr" };
6510   }
6511 
6512   // Create fields
6513   for (unsigned i = 0; i < Count; ++i) {
6514     FieldDecl *Field =
6515         FieldDecl::Create(*this, CFConstantStringTagDecl, SourceLocation(),
6516                           SourceLocation(), &Idents.get(Fields[i].Name),
6517                           Fields[i].Type, /*TInfo=*/nullptr,
6518                           /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit);
6519     Field->setAccess(AS_public);
6520     CFConstantStringTagDecl->addDecl(Field);
6521   }
6522 
6523   CFConstantStringTagDecl->completeDefinition();
6524   // This type is designed to be compatible with NSConstantString, but cannot
6525   // use the same name, since NSConstantString is an interface.
6526   auto tagType = getTagDeclType(CFConstantStringTagDecl);
6527   CFConstantStringTypeDecl =
6528       buildImplicitTypedef(tagType, "__NSConstantString");
6529 
6530   return CFConstantStringTypeDecl;
6531 }
6532 
6533 RecordDecl *ASTContext::getCFConstantStringTagDecl() const {
6534   if (!CFConstantStringTagDecl)
6535     getCFConstantStringDecl(); // Build the tag and the typedef.
6536   return CFConstantStringTagDecl;
6537 }
6538 
6539 // getCFConstantStringType - Return the type used for constant CFStrings.
6540 QualType ASTContext::getCFConstantStringType() const {
6541   return getTypedefType(getCFConstantStringDecl());
6542 }
6543 
6544 QualType ASTContext::getObjCSuperType() const {
6545   if (ObjCSuperType.isNull()) {
6546     RecordDecl *ObjCSuperTypeDecl = buildImplicitRecord("objc_super");
6547     TUDecl->addDecl(ObjCSuperTypeDecl);
6548     ObjCSuperType = getTagDeclType(ObjCSuperTypeDecl);
6549   }
6550   return ObjCSuperType;
6551 }
6552 
6553 void ASTContext::setCFConstantStringType(QualType T) {
6554   const auto *TD = T->castAs<TypedefType>();
6555   CFConstantStringTypeDecl = cast<TypedefDecl>(TD->getDecl());
6556   const auto *TagType =
6557       CFConstantStringTypeDecl->getUnderlyingType()->castAs<RecordType>();
6558   CFConstantStringTagDecl = TagType->getDecl();
6559 }
6560 
6561 QualType ASTContext::getBlockDescriptorType() const {
6562   if (BlockDescriptorType)
6563     return getTagDeclType(BlockDescriptorType);
6564 
6565   RecordDecl *RD;
6566   // FIXME: Needs the FlagAppleBlock bit.
6567   RD = buildImplicitRecord("__block_descriptor");
6568   RD->startDefinition();
6569 
6570   QualType FieldTypes[] = {
6571     UnsignedLongTy,
6572     UnsignedLongTy,
6573   };
6574 
6575   static const char *const FieldNames[] = {
6576     "reserved",
6577     "Size"
6578   };
6579 
6580   for (size_t i = 0; i < 2; ++i) {
6581     FieldDecl *Field = FieldDecl::Create(
6582         *this, RD, SourceLocation(), SourceLocation(),
6583         &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr,
6584         /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit);
6585     Field->setAccess(AS_public);
6586     RD->addDecl(Field);
6587   }
6588 
6589   RD->completeDefinition();
6590 
6591   BlockDescriptorType = RD;
6592 
6593   return getTagDeclType(BlockDescriptorType);
6594 }
6595 
6596 QualType ASTContext::getBlockDescriptorExtendedType() const {
6597   if (BlockDescriptorExtendedType)
6598     return getTagDeclType(BlockDescriptorExtendedType);
6599 
6600   RecordDecl *RD;
6601   // FIXME: Needs the FlagAppleBlock bit.
6602   RD = buildImplicitRecord("__block_descriptor_withcopydispose");
6603   RD->startDefinition();
6604 
6605   QualType FieldTypes[] = {
6606     UnsignedLongTy,
6607     UnsignedLongTy,
6608     getPointerType(VoidPtrTy),
6609     getPointerType(VoidPtrTy)
6610   };
6611 
6612   static const char *const FieldNames[] = {
6613     "reserved",
6614     "Size",
6615     "CopyFuncPtr",
6616     "DestroyFuncPtr"
6617   };
6618 
6619   for (size_t i = 0; i < 4; ++i) {
6620     FieldDecl *Field = FieldDecl::Create(
6621         *this, RD, SourceLocation(), SourceLocation(),
6622         &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr,
6623         /*BitWidth=*/nullptr,
6624         /*Mutable=*/false, ICIS_NoInit);
6625     Field->setAccess(AS_public);
6626     RD->addDecl(Field);
6627   }
6628 
6629   RD->completeDefinition();
6630 
6631   BlockDescriptorExtendedType = RD;
6632   return getTagDeclType(BlockDescriptorExtendedType);
6633 }
6634 
6635 OpenCLTypeKind ASTContext::getOpenCLTypeKind(const Type *T) const {
6636   const auto *BT = dyn_cast<BuiltinType>(T);
6637 
6638   if (!BT) {
6639     if (isa<PipeType>(T))
6640       return OCLTK_Pipe;
6641 
6642     return OCLTK_Default;
6643   }
6644 
6645   switch (BT->getKind()) {
6646 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix)                   \
6647   case BuiltinType::Id:                                                        \
6648     return OCLTK_Image;
6649 #include "clang/Basic/OpenCLImageTypes.def"
6650 
6651   case BuiltinType::OCLClkEvent:
6652     return OCLTK_ClkEvent;
6653 
6654   case BuiltinType::OCLEvent:
6655     return OCLTK_Event;
6656 
6657   case BuiltinType::OCLQueue:
6658     return OCLTK_Queue;
6659 
6660   case BuiltinType::OCLReserveID:
6661     return OCLTK_ReserveID;
6662 
6663   case BuiltinType::OCLSampler:
6664     return OCLTK_Sampler;
6665 
6666   default:
6667     return OCLTK_Default;
6668   }
6669 }
6670 
6671 LangAS ASTContext::getOpenCLTypeAddrSpace(const Type *T) const {
6672   return Target->getOpenCLTypeAddrSpace(getOpenCLTypeKind(T));
6673 }
6674 
6675 /// BlockRequiresCopying - Returns true if byref variable "D" of type "Ty"
6676 /// requires copy/dispose. Note that this must match the logic
6677 /// in buildByrefHelpers.
6678 bool ASTContext::BlockRequiresCopying(QualType Ty,
6679                                       const VarDecl *D) {
6680   if (const CXXRecordDecl *record = Ty->getAsCXXRecordDecl()) {
6681     const Expr *copyExpr = getBlockVarCopyInit(D).getCopyExpr();
6682     if (!copyExpr && record->hasTrivialDestructor()) return false;
6683 
6684     return true;
6685   }
6686 
6687   // The block needs copy/destroy helpers if Ty is non-trivial to destructively
6688   // move or destroy.
6689   if (Ty.isNonTrivialToPrimitiveDestructiveMove() || Ty.isDestructedType())
6690     return true;
6691 
6692   if (!Ty->isObjCRetainableType()) return false;
6693 
6694   Qualifiers qs = Ty.getQualifiers();
6695 
6696   // If we have lifetime, that dominates.
6697   if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) {
6698     switch (lifetime) {
6699       case Qualifiers::OCL_None: llvm_unreachable("impossible");
6700 
6701       // These are just bits as far as the runtime is concerned.
6702       case Qualifiers::OCL_ExplicitNone:
6703       case Qualifiers::OCL_Autoreleasing:
6704         return false;
6705 
6706       // These cases should have been taken care of when checking the type's
6707       // non-triviality.
6708       case Qualifiers::OCL_Weak:
6709       case Qualifiers::OCL_Strong:
6710         llvm_unreachable("impossible");
6711     }
6712     llvm_unreachable("fell out of lifetime switch!");
6713   }
6714   return (Ty->isBlockPointerType() || isObjCNSObjectType(Ty) ||
6715           Ty->isObjCObjectPointerType());
6716 }
6717 
6718 bool ASTContext::getByrefLifetime(QualType Ty,
6719                               Qualifiers::ObjCLifetime &LifeTime,
6720                               bool &HasByrefExtendedLayout) const {
6721   if (!getLangOpts().ObjC ||
6722       getLangOpts().getGC() != LangOptions::NonGC)
6723     return false;
6724 
6725   HasByrefExtendedLayout = false;
6726   if (Ty->isRecordType()) {
6727     HasByrefExtendedLayout = true;
6728     LifeTime = Qualifiers::OCL_None;
6729   } else if ((LifeTime = Ty.getObjCLifetime())) {
6730     // Honor the ARC qualifiers.
6731   } else if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType()) {
6732     // The MRR rule.
6733     LifeTime = Qualifiers::OCL_ExplicitNone;
6734   } else {
6735     LifeTime = Qualifiers::OCL_None;
6736   }
6737   return true;
6738 }
6739 
6740 CanQualType ASTContext::getNSUIntegerType() const {
6741   assert(Target && "Expected target to be initialized");
6742   const llvm::Triple &T = Target->getTriple();
6743   // Windows is LLP64 rather than LP64
6744   if (T.isOSWindows() && T.isArch64Bit())
6745     return UnsignedLongLongTy;
6746   return UnsignedLongTy;
6747 }
6748 
6749 CanQualType ASTContext::getNSIntegerType() const {
6750   assert(Target && "Expected target to be initialized");
6751   const llvm::Triple &T = Target->getTriple();
6752   // Windows is LLP64 rather than LP64
6753   if (T.isOSWindows() && T.isArch64Bit())
6754     return LongLongTy;
6755   return LongTy;
6756 }
6757 
6758 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() {
6759   if (!ObjCInstanceTypeDecl)
6760     ObjCInstanceTypeDecl =
6761         buildImplicitTypedef(getObjCIdType(), "instancetype");
6762   return ObjCInstanceTypeDecl;
6763 }
6764 
6765 // This returns true if a type has been typedefed to BOOL:
6766 // typedef <type> BOOL;
6767 static bool isTypeTypedefedAsBOOL(QualType T) {
6768   if (const auto *TT = dyn_cast<TypedefType>(T))
6769     if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
6770       return II->isStr("BOOL");
6771 
6772   return false;
6773 }
6774 
6775 /// getObjCEncodingTypeSize returns size of type for objective-c encoding
6776 /// purpose.
6777 CharUnits ASTContext::getObjCEncodingTypeSize(QualType type) const {
6778   if (!type->isIncompleteArrayType() && type->isIncompleteType())
6779     return CharUnits::Zero();
6780 
6781   CharUnits sz = getTypeSizeInChars(type);
6782 
6783   // Make all integer and enum types at least as large as an int
6784   if (sz.isPositive() && type->isIntegralOrEnumerationType())
6785     sz = std::max(sz, getTypeSizeInChars(IntTy));
6786   // Treat arrays as pointers, since that's how they're passed in.
6787   else if (type->isArrayType())
6788     sz = getTypeSizeInChars(VoidPtrTy);
6789   return sz;
6790 }
6791 
6792 bool ASTContext::isMSStaticDataMemberInlineDefinition(const VarDecl *VD) const {
6793   return getTargetInfo().getCXXABI().isMicrosoft() &&
6794          VD->isStaticDataMember() &&
6795          VD->getType()->isIntegralOrEnumerationType() &&
6796          !VD->getFirstDecl()->isOutOfLine() && VD->getFirstDecl()->hasInit();
6797 }
6798 
6799 ASTContext::InlineVariableDefinitionKind
6800 ASTContext::getInlineVariableDefinitionKind(const VarDecl *VD) const {
6801   if (!VD->isInline())
6802     return InlineVariableDefinitionKind::None;
6803 
6804   // In almost all cases, it's a weak definition.
6805   auto *First = VD->getFirstDecl();
6806   if (First->isInlineSpecified() || !First->isStaticDataMember())
6807     return InlineVariableDefinitionKind::Weak;
6808 
6809   // If there's a file-context declaration in this translation unit, it's a
6810   // non-discardable definition.
6811   for (auto *D : VD->redecls())
6812     if (D->getLexicalDeclContext()->isFileContext() &&
6813         !D->isInlineSpecified() && (D->isConstexpr() || First->isConstexpr()))
6814       return InlineVariableDefinitionKind::Strong;
6815 
6816   // If we've not seen one yet, we don't know.
6817   return InlineVariableDefinitionKind::WeakUnknown;
6818 }
6819 
6820 static std::string charUnitsToString(const CharUnits &CU) {
6821   return llvm::itostr(CU.getQuantity());
6822 }
6823 
6824 /// getObjCEncodingForBlock - Return the encoded type for this block
6825 /// declaration.
6826 std::string ASTContext::getObjCEncodingForBlock(const BlockExpr *Expr) const {
6827   std::string S;
6828 
6829   const BlockDecl *Decl = Expr->getBlockDecl();
6830   QualType BlockTy =
6831       Expr->getType()->castAs<BlockPointerType>()->getPointeeType();
6832   QualType BlockReturnTy = BlockTy->castAs<FunctionType>()->getReturnType();
6833   // Encode result type.
6834   if (getLangOpts().EncodeExtendedBlockSig)
6835     getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, BlockReturnTy, S,
6836                                       true /*Extended*/);
6837   else
6838     getObjCEncodingForType(BlockReturnTy, S);
6839   // Compute size of all parameters.
6840   // Start with computing size of a pointer in number of bytes.
6841   // FIXME: There might(should) be a better way of doing this computation!
6842   CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
6843   CharUnits ParmOffset = PtrSize;
6844   for (auto PI : Decl->parameters()) {
6845     QualType PType = PI->getType();
6846     CharUnits sz = getObjCEncodingTypeSize(PType);
6847     if (sz.isZero())
6848       continue;
6849     assert(sz.isPositive() && "BlockExpr - Incomplete param type");
6850     ParmOffset += sz;
6851   }
6852   // Size of the argument frame
6853   S += charUnitsToString(ParmOffset);
6854   // Block pointer and offset.
6855   S += "@?0";
6856 
6857   // Argument types.
6858   ParmOffset = PtrSize;
6859   for (auto PVDecl : Decl->parameters()) {
6860     QualType PType = PVDecl->getOriginalType();
6861     if (const auto *AT =
6862             dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
6863       // Use array's original type only if it has known number of
6864       // elements.
6865       if (!isa<ConstantArrayType>(AT))
6866         PType = PVDecl->getType();
6867     } else if (PType->isFunctionType())
6868       PType = PVDecl->getType();
6869     if (getLangOpts().EncodeExtendedBlockSig)
6870       getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType,
6871                                       S, true /*Extended*/);
6872     else
6873       getObjCEncodingForType(PType, S);
6874     S += charUnitsToString(ParmOffset);
6875     ParmOffset += getObjCEncodingTypeSize(PType);
6876   }
6877 
6878   return S;
6879 }
6880 
6881 std::string
6882 ASTContext::getObjCEncodingForFunctionDecl(const FunctionDecl *Decl) const {
6883   std::string S;
6884   // Encode result type.
6885   getObjCEncodingForType(Decl->getReturnType(), S);
6886   CharUnits ParmOffset;
6887   // Compute size of all parameters.
6888   for (auto PI : Decl->parameters()) {
6889     QualType PType = PI->getType();
6890     CharUnits sz = getObjCEncodingTypeSize(PType);
6891     if (sz.isZero())
6892       continue;
6893 
6894     assert(sz.isPositive() &&
6895            "getObjCEncodingForFunctionDecl - Incomplete param type");
6896     ParmOffset += sz;
6897   }
6898   S += charUnitsToString(ParmOffset);
6899   ParmOffset = CharUnits::Zero();
6900 
6901   // Argument types.
6902   for (auto PVDecl : Decl->parameters()) {
6903     QualType PType = PVDecl->getOriginalType();
6904     if (const auto *AT =
6905             dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
6906       // Use array's original type only if it has known number of
6907       // elements.
6908       if (!isa<ConstantArrayType>(AT))
6909         PType = PVDecl->getType();
6910     } else if (PType->isFunctionType())
6911       PType = PVDecl->getType();
6912     getObjCEncodingForType(PType, S);
6913     S += charUnitsToString(ParmOffset);
6914     ParmOffset += getObjCEncodingTypeSize(PType);
6915   }
6916 
6917   return S;
6918 }
6919 
6920 /// getObjCEncodingForMethodParameter - Return the encoded type for a single
6921 /// method parameter or return type. If Extended, include class names and
6922 /// block object types.
6923 void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT,
6924                                                    QualType T, std::string& S,
6925                                                    bool Extended) const {
6926   // Encode type qualifer, 'in', 'inout', etc. for the parameter.
6927   getObjCEncodingForTypeQualifier(QT, S);
6928   // Encode parameter type.
6929   ObjCEncOptions Options = ObjCEncOptions()
6930                                .setExpandPointedToStructures()
6931                                .setExpandStructures()
6932                                .setIsOutermostType();
6933   if (Extended)
6934     Options.setEncodeBlockParameters().setEncodeClassNames();
6935   getObjCEncodingForTypeImpl(T, S, Options, /*Field=*/nullptr);
6936 }
6937 
6938 /// getObjCEncodingForMethodDecl - Return the encoded type for this method
6939 /// declaration.
6940 std::string ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
6941                                                      bool Extended) const {
6942   // FIXME: This is not very efficient.
6943   // Encode return type.
6944   std::string S;
6945   getObjCEncodingForMethodParameter(Decl->getObjCDeclQualifier(),
6946                                     Decl->getReturnType(), S, Extended);
6947   // Compute size of all parameters.
6948   // Start with computing size of a pointer in number of bytes.
6949   // FIXME: There might(should) be a better way of doing this computation!
6950   CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
6951   // The first two arguments (self and _cmd) are pointers; account for
6952   // their size.
6953   CharUnits ParmOffset = 2 * PtrSize;
6954   for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
6955        E = Decl->sel_param_end(); PI != E; ++PI) {
6956     QualType PType = (*PI)->getType();
6957     CharUnits sz = getObjCEncodingTypeSize(PType);
6958     if (sz.isZero())
6959       continue;
6960 
6961     assert(sz.isPositive() &&
6962            "getObjCEncodingForMethodDecl - Incomplete param type");
6963     ParmOffset += sz;
6964   }
6965   S += charUnitsToString(ParmOffset);
6966   S += "@0:";
6967   S += charUnitsToString(PtrSize);
6968 
6969   // Argument types.
6970   ParmOffset = 2 * PtrSize;
6971   for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
6972        E = Decl->sel_param_end(); PI != E; ++PI) {
6973     const ParmVarDecl *PVDecl = *PI;
6974     QualType PType = PVDecl->getOriginalType();
6975     if (const auto *AT =
6976             dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
6977       // Use array's original type only if it has known number of
6978       // elements.
6979       if (!isa<ConstantArrayType>(AT))
6980         PType = PVDecl->getType();
6981     } else if (PType->isFunctionType())
6982       PType = PVDecl->getType();
6983     getObjCEncodingForMethodParameter(PVDecl->getObjCDeclQualifier(),
6984                                       PType, S, Extended);
6985     S += charUnitsToString(ParmOffset);
6986     ParmOffset += getObjCEncodingTypeSize(PType);
6987   }
6988 
6989   return S;
6990 }
6991 
6992 ObjCPropertyImplDecl *
6993 ASTContext::getObjCPropertyImplDeclForPropertyDecl(
6994                                       const ObjCPropertyDecl *PD,
6995                                       const Decl *Container) const {
6996   if (!Container)
6997     return nullptr;
6998   if (const auto *CID = dyn_cast<ObjCCategoryImplDecl>(Container)) {
6999     for (auto *PID : CID->property_impls())
7000       if (PID->getPropertyDecl() == PD)
7001         return PID;
7002   } else {
7003     const auto *OID = cast<ObjCImplementationDecl>(Container);
7004     for (auto *PID : OID->property_impls())
7005       if (PID->getPropertyDecl() == PD)
7006         return PID;
7007   }
7008   return nullptr;
7009 }
7010 
7011 /// getObjCEncodingForPropertyDecl - Return the encoded type for this
7012 /// property declaration. If non-NULL, Container must be either an
7013 /// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
7014 /// NULL when getting encodings for protocol properties.
7015 /// Property attributes are stored as a comma-delimited C string. The simple
7016 /// attributes readonly and bycopy are encoded as single characters. The
7017 /// parametrized attributes, getter=name, setter=name, and ivar=name, are
7018 /// encoded as single characters, followed by an identifier. Property types
7019 /// are also encoded as a parametrized attribute. The characters used to encode
7020 /// these attributes are defined by the following enumeration:
7021 /// @code
7022 /// enum PropertyAttributes {
7023 /// kPropertyReadOnly = 'R',   // property is read-only.
7024 /// kPropertyBycopy = 'C',     // property is a copy of the value last assigned
7025 /// kPropertyByref = '&',  // property is a reference to the value last assigned
7026 /// kPropertyDynamic = 'D',    // property is dynamic
7027 /// kPropertyGetter = 'G',     // followed by getter selector name
7028 /// kPropertySetter = 'S',     // followed by setter selector name
7029 /// kPropertyInstanceVariable = 'V'  // followed by instance variable  name
7030 /// kPropertyType = 'T'              // followed by old-style type encoding.
7031 /// kPropertyWeak = 'W'              // 'weak' property
7032 /// kPropertyStrong = 'P'            // property GC'able
7033 /// kPropertyNonAtomic = 'N'         // property non-atomic
7034 /// };
7035 /// @endcode
7036 std::string
7037 ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
7038                                            const Decl *Container) const {
7039   // Collect information from the property implementation decl(s).
7040   bool Dynamic = false;
7041   ObjCPropertyImplDecl *SynthesizePID = nullptr;
7042 
7043   if (ObjCPropertyImplDecl *PropertyImpDecl =
7044       getObjCPropertyImplDeclForPropertyDecl(PD, Container)) {
7045     if (PropertyImpDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
7046       Dynamic = true;
7047     else
7048       SynthesizePID = PropertyImpDecl;
7049   }
7050 
7051   // FIXME: This is not very efficient.
7052   std::string S = "T";
7053 
7054   // Encode result type.
7055   // GCC has some special rules regarding encoding of properties which
7056   // closely resembles encoding of ivars.
7057   getObjCEncodingForPropertyType(PD->getType(), S);
7058 
7059   if (PD->isReadOnly()) {
7060     S += ",R";
7061     if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy)
7062       S += ",C";
7063     if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain)
7064       S += ",&";
7065     if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak)
7066       S += ",W";
7067   } else {
7068     switch (PD->getSetterKind()) {
7069     case ObjCPropertyDecl::Assign: break;
7070     case ObjCPropertyDecl::Copy:   S += ",C"; break;
7071     case ObjCPropertyDecl::Retain: S += ",&"; break;
7072     case ObjCPropertyDecl::Weak:   S += ",W"; break;
7073     }
7074   }
7075 
7076   // It really isn't clear at all what this means, since properties
7077   // are "dynamic by default".
7078   if (Dynamic)
7079     S += ",D";
7080 
7081   if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_nonatomic)
7082     S += ",N";
7083 
7084   if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) {
7085     S += ",G";
7086     S += PD->getGetterName().getAsString();
7087   }
7088 
7089   if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) {
7090     S += ",S";
7091     S += PD->getSetterName().getAsString();
7092   }
7093 
7094   if (SynthesizePID) {
7095     const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
7096     S += ",V";
7097     S += OID->getNameAsString();
7098   }
7099 
7100   // FIXME: OBJCGC: weak & strong
7101   return S;
7102 }
7103 
7104 /// getLegacyIntegralTypeEncoding -
7105 /// Another legacy compatibility encoding: 32-bit longs are encoded as
7106 /// 'l' or 'L' , but not always.  For typedefs, we need to use
7107 /// 'i' or 'I' instead if encoding a struct field, or a pointer!
7108 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
7109   if (isa<TypedefType>(PointeeTy.getTypePtr())) {
7110     if (const auto *BT = PointeeTy->getAs<BuiltinType>()) {
7111       if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
7112         PointeeTy = UnsignedIntTy;
7113       else
7114         if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
7115           PointeeTy = IntTy;
7116     }
7117   }
7118 }
7119 
7120 void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
7121                                         const FieldDecl *Field,
7122                                         QualType *NotEncodedT) const {
7123   // We follow the behavior of gcc, expanding structures which are
7124   // directly pointed to, and expanding embedded structures. Note that
7125   // these rules are sufficient to prevent recursive encoding of the
7126   // same type.
7127   getObjCEncodingForTypeImpl(T, S,
7128                              ObjCEncOptions()
7129                                  .setExpandPointedToStructures()
7130                                  .setExpandStructures()
7131                                  .setIsOutermostType(),
7132                              Field, NotEncodedT);
7133 }
7134 
7135 void ASTContext::getObjCEncodingForPropertyType(QualType T,
7136                                                 std::string& S) const {
7137   // Encode result type.
7138   // GCC has some special rules regarding encoding of properties which
7139   // closely resembles encoding of ivars.
7140   getObjCEncodingForTypeImpl(T, S,
7141                              ObjCEncOptions()
7142                                  .setExpandPointedToStructures()
7143                                  .setExpandStructures()
7144                                  .setIsOutermostType()
7145                                  .setEncodingProperty(),
7146                              /*Field=*/nullptr);
7147 }
7148 
7149 static char getObjCEncodingForPrimitiveType(const ASTContext *C,
7150                                             const BuiltinType *BT) {
7151     BuiltinType::Kind kind = BT->getKind();
7152     switch (kind) {
7153     case BuiltinType::Void:       return 'v';
7154     case BuiltinType::Bool:       return 'B';
7155     case BuiltinType::Char8:
7156     case BuiltinType::Char_U:
7157     case BuiltinType::UChar:      return 'C';
7158     case BuiltinType::Char16:
7159     case BuiltinType::UShort:     return 'S';
7160     case BuiltinType::Char32:
7161     case BuiltinType::UInt:       return 'I';
7162     case BuiltinType::ULong:
7163         return C->getTargetInfo().getLongWidth() == 32 ? 'L' : 'Q';
7164     case BuiltinType::UInt128:    return 'T';
7165     case BuiltinType::ULongLong:  return 'Q';
7166     case BuiltinType::Char_S:
7167     case BuiltinType::SChar:      return 'c';
7168     case BuiltinType::Short:      return 's';
7169     case BuiltinType::WChar_S:
7170     case BuiltinType::WChar_U:
7171     case BuiltinType::Int:        return 'i';
7172     case BuiltinType::Long:
7173       return C->getTargetInfo().getLongWidth() == 32 ? 'l' : 'q';
7174     case BuiltinType::LongLong:   return 'q';
7175     case BuiltinType::Int128:     return 't';
7176     case BuiltinType::Float:      return 'f';
7177     case BuiltinType::Double:     return 'd';
7178     case BuiltinType::LongDouble: return 'D';
7179     case BuiltinType::NullPtr:    return '*'; // like char*
7180 
7181     case BuiltinType::BFloat16:
7182     case BuiltinType::Float16:
7183     case BuiltinType::Float128:
7184     case BuiltinType::Half:
7185     case BuiltinType::ShortAccum:
7186     case BuiltinType::Accum:
7187     case BuiltinType::LongAccum:
7188     case BuiltinType::UShortAccum:
7189     case BuiltinType::UAccum:
7190     case BuiltinType::ULongAccum:
7191     case BuiltinType::ShortFract:
7192     case BuiltinType::Fract:
7193     case BuiltinType::LongFract:
7194     case BuiltinType::UShortFract:
7195     case BuiltinType::UFract:
7196     case BuiltinType::ULongFract:
7197     case BuiltinType::SatShortAccum:
7198     case BuiltinType::SatAccum:
7199     case BuiltinType::SatLongAccum:
7200     case BuiltinType::SatUShortAccum:
7201     case BuiltinType::SatUAccum:
7202     case BuiltinType::SatULongAccum:
7203     case BuiltinType::SatShortFract:
7204     case BuiltinType::SatFract:
7205     case BuiltinType::SatLongFract:
7206     case BuiltinType::SatUShortFract:
7207     case BuiltinType::SatUFract:
7208     case BuiltinType::SatULongFract:
7209       // FIXME: potentially need @encodes for these!
7210       return ' ';
7211 
7212 #define SVE_TYPE(Name, Id, SingletonId) \
7213     case BuiltinType::Id:
7214 #include "clang/Basic/AArch64SVEACLETypes.def"
7215     {
7216       DiagnosticsEngine &Diags = C->getDiagnostics();
7217       unsigned DiagID = Diags.getCustomDiagID(
7218           DiagnosticsEngine::Error, "cannot yet @encode type %0");
7219       Diags.Report(DiagID) << BT->getName(C->getPrintingPolicy());
7220       return ' ';
7221     }
7222 
7223     case BuiltinType::ObjCId:
7224     case BuiltinType::ObjCClass:
7225     case BuiltinType::ObjCSel:
7226       llvm_unreachable("@encoding ObjC primitive type");
7227 
7228     // OpenCL and placeholder types don't need @encodings.
7229 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
7230     case BuiltinType::Id:
7231 #include "clang/Basic/OpenCLImageTypes.def"
7232 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
7233     case BuiltinType::Id:
7234 #include "clang/Basic/OpenCLExtensionTypes.def"
7235     case BuiltinType::OCLEvent:
7236     case BuiltinType::OCLClkEvent:
7237     case BuiltinType::OCLQueue:
7238     case BuiltinType::OCLReserveID:
7239     case BuiltinType::OCLSampler:
7240     case BuiltinType::Dependent:
7241 #define PPC_VECTOR_TYPE(Name, Id, Size) \
7242     case BuiltinType::Id:
7243 #include "clang/Basic/PPCTypes.def"
7244 #define BUILTIN_TYPE(KIND, ID)
7245 #define PLACEHOLDER_TYPE(KIND, ID) \
7246     case BuiltinType::KIND:
7247 #include "clang/AST/BuiltinTypes.def"
7248       llvm_unreachable("invalid builtin type for @encode");
7249     }
7250     llvm_unreachable("invalid BuiltinType::Kind value");
7251 }
7252 
7253 static char ObjCEncodingForEnumType(const ASTContext *C, const EnumType *ET) {
7254   EnumDecl *Enum = ET->getDecl();
7255 
7256   // The encoding of an non-fixed enum type is always 'i', regardless of size.
7257   if (!Enum->isFixed())
7258     return 'i';
7259 
7260   // The encoding of a fixed enum type matches its fixed underlying type.
7261   const auto *BT = Enum->getIntegerType()->castAs<BuiltinType>();
7262   return getObjCEncodingForPrimitiveType(C, BT);
7263 }
7264 
7265 static void EncodeBitField(const ASTContext *Ctx, std::string& S,
7266                            QualType T, const FieldDecl *FD) {
7267   assert(FD->isBitField() && "not a bitfield - getObjCEncodingForTypeImpl");
7268   S += 'b';
7269   // The NeXT runtime encodes bit fields as b followed by the number of bits.
7270   // The GNU runtime requires more information; bitfields are encoded as b,
7271   // then the offset (in bits) of the first element, then the type of the
7272   // bitfield, then the size in bits.  For example, in this structure:
7273   //
7274   // struct
7275   // {
7276   //    int integer;
7277   //    int flags:2;
7278   // };
7279   // On a 32-bit system, the encoding for flags would be b2 for the NeXT
7280   // runtime, but b32i2 for the GNU runtime.  The reason for this extra
7281   // information is not especially sensible, but we're stuck with it for
7282   // compatibility with GCC, although providing it breaks anything that
7283   // actually uses runtime introspection and wants to work on both runtimes...
7284   if (Ctx->getLangOpts().ObjCRuntime.isGNUFamily()) {
7285     uint64_t Offset;
7286 
7287     if (const auto *IVD = dyn_cast<ObjCIvarDecl>(FD)) {
7288       Offset = Ctx->lookupFieldBitOffset(IVD->getContainingInterface(), nullptr,
7289                                          IVD);
7290     } else {
7291       const RecordDecl *RD = FD->getParent();
7292       const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD);
7293       Offset = RL.getFieldOffset(FD->getFieldIndex());
7294     }
7295 
7296     S += llvm::utostr(Offset);
7297 
7298     if (const auto *ET = T->getAs<EnumType>())
7299       S += ObjCEncodingForEnumType(Ctx, ET);
7300     else {
7301       const auto *BT = T->castAs<BuiltinType>();
7302       S += getObjCEncodingForPrimitiveType(Ctx, BT);
7303     }
7304   }
7305   S += llvm::utostr(FD->getBitWidthValue(*Ctx));
7306 }
7307 
7308 // FIXME: Use SmallString for accumulating string.
7309 void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string &S,
7310                                             const ObjCEncOptions Options,
7311                                             const FieldDecl *FD,
7312                                             QualType *NotEncodedT) const {
7313   CanQualType CT = getCanonicalType(T);
7314   switch (CT->getTypeClass()) {
7315   case Type::Builtin:
7316   case Type::Enum:
7317     if (FD && FD->isBitField())
7318       return EncodeBitField(this, S, T, FD);
7319     if (const auto *BT = dyn_cast<BuiltinType>(CT))
7320       S += getObjCEncodingForPrimitiveType(this, BT);
7321     else
7322       S += ObjCEncodingForEnumType(this, cast<EnumType>(CT));
7323     return;
7324 
7325   case Type::Complex:
7326     S += 'j';
7327     getObjCEncodingForTypeImpl(T->castAs<ComplexType>()->getElementType(), S,
7328                                ObjCEncOptions(),
7329                                /*Field=*/nullptr);
7330     return;
7331 
7332   case Type::Atomic:
7333     S += 'A';
7334     getObjCEncodingForTypeImpl(T->castAs<AtomicType>()->getValueType(), S,
7335                                ObjCEncOptions(),
7336                                /*Field=*/nullptr);
7337     return;
7338 
7339   // encoding for pointer or reference types.
7340   case Type::Pointer:
7341   case Type::LValueReference:
7342   case Type::RValueReference: {
7343     QualType PointeeTy;
7344     if (isa<PointerType>(CT)) {
7345       const auto *PT = T->castAs<PointerType>();
7346       if (PT->isObjCSelType()) {
7347         S += ':';
7348         return;
7349       }
7350       PointeeTy = PT->getPointeeType();
7351     } else {
7352       PointeeTy = T->castAs<ReferenceType>()->getPointeeType();
7353     }
7354 
7355     bool isReadOnly = false;
7356     // For historical/compatibility reasons, the read-only qualifier of the
7357     // pointee gets emitted _before_ the '^'.  The read-only qualifier of
7358     // the pointer itself gets ignored, _unless_ we are looking at a typedef!
7359     // Also, do not emit the 'r' for anything but the outermost type!
7360     if (isa<TypedefType>(T.getTypePtr())) {
7361       if (Options.IsOutermostType() && T.isConstQualified()) {
7362         isReadOnly = true;
7363         S += 'r';
7364       }
7365     } else if (Options.IsOutermostType()) {
7366       QualType P = PointeeTy;
7367       while (auto PT = P->getAs<PointerType>())
7368         P = PT->getPointeeType();
7369       if (P.isConstQualified()) {
7370         isReadOnly = true;
7371         S += 'r';
7372       }
7373     }
7374     if (isReadOnly) {
7375       // Another legacy compatibility encoding. Some ObjC qualifier and type
7376       // combinations need to be rearranged.
7377       // Rewrite "in const" from "nr" to "rn"
7378       if (StringRef(S).endswith("nr"))
7379         S.replace(S.end()-2, S.end(), "rn");
7380     }
7381 
7382     if (PointeeTy->isCharType()) {
7383       // char pointer types should be encoded as '*' unless it is a
7384       // type that has been typedef'd to 'BOOL'.
7385       if (!isTypeTypedefedAsBOOL(PointeeTy)) {
7386         S += '*';
7387         return;
7388       }
7389     } else if (const auto *RTy = PointeeTy->getAs<RecordType>()) {
7390       // GCC binary compat: Need to convert "struct objc_class *" to "#".
7391       if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
7392         S += '#';
7393         return;
7394       }
7395       // GCC binary compat: Need to convert "struct objc_object *" to "@".
7396       if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
7397         S += '@';
7398         return;
7399       }
7400       // fall through...
7401     }
7402     S += '^';
7403     getLegacyIntegralTypeEncoding(PointeeTy);
7404 
7405     ObjCEncOptions NewOptions;
7406     if (Options.ExpandPointedToStructures())
7407       NewOptions.setExpandStructures();
7408     getObjCEncodingForTypeImpl(PointeeTy, S, NewOptions,
7409                                /*Field=*/nullptr, NotEncodedT);
7410     return;
7411   }
7412 
7413   case Type::ConstantArray:
7414   case Type::IncompleteArray:
7415   case Type::VariableArray: {
7416     const auto *AT = cast<ArrayType>(CT);
7417 
7418     if (isa<IncompleteArrayType>(AT) && !Options.IsStructField()) {
7419       // Incomplete arrays are encoded as a pointer to the array element.
7420       S += '^';
7421 
7422       getObjCEncodingForTypeImpl(
7423           AT->getElementType(), S,
7424           Options.keepingOnly(ObjCEncOptions().setExpandStructures()), FD);
7425     } else {
7426       S += '[';
7427 
7428       if (const auto *CAT = dyn_cast<ConstantArrayType>(AT))
7429         S += llvm::utostr(CAT->getSize().getZExtValue());
7430       else {
7431         //Variable length arrays are encoded as a regular array with 0 elements.
7432         assert((isa<VariableArrayType>(AT) || isa<IncompleteArrayType>(AT)) &&
7433                "Unknown array type!");
7434         S += '0';
7435       }
7436 
7437       getObjCEncodingForTypeImpl(
7438           AT->getElementType(), S,
7439           Options.keepingOnly(ObjCEncOptions().setExpandStructures()), FD,
7440           NotEncodedT);
7441       S += ']';
7442     }
7443     return;
7444   }
7445 
7446   case Type::FunctionNoProto:
7447   case Type::FunctionProto:
7448     S += '?';
7449     return;
7450 
7451   case Type::Record: {
7452     RecordDecl *RDecl = cast<RecordType>(CT)->getDecl();
7453     S += RDecl->isUnion() ? '(' : '{';
7454     // Anonymous structures print as '?'
7455     if (const IdentifierInfo *II = RDecl->getIdentifier()) {
7456       S += II->getName();
7457       if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(RDecl)) {
7458         const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
7459         llvm::raw_string_ostream OS(S);
7460         printTemplateArgumentList(OS, TemplateArgs.asArray(),
7461                                   getPrintingPolicy());
7462       }
7463     } else {
7464       S += '?';
7465     }
7466     if (Options.ExpandStructures()) {
7467       S += '=';
7468       if (!RDecl->isUnion()) {
7469         getObjCEncodingForStructureImpl(RDecl, S, FD, true, NotEncodedT);
7470       } else {
7471         for (const auto *Field : RDecl->fields()) {
7472           if (FD) {
7473             S += '"';
7474             S += Field->getNameAsString();
7475             S += '"';
7476           }
7477 
7478           // Special case bit-fields.
7479           if (Field->isBitField()) {
7480             getObjCEncodingForTypeImpl(Field->getType(), S,
7481                                        ObjCEncOptions().setExpandStructures(),
7482                                        Field);
7483           } else {
7484             QualType qt = Field->getType();
7485             getLegacyIntegralTypeEncoding(qt);
7486             getObjCEncodingForTypeImpl(
7487                 qt, S,
7488                 ObjCEncOptions().setExpandStructures().setIsStructField(), FD,
7489                 NotEncodedT);
7490           }
7491         }
7492       }
7493     }
7494     S += RDecl->isUnion() ? ')' : '}';
7495     return;
7496   }
7497 
7498   case Type::BlockPointer: {
7499     const auto *BT = T->castAs<BlockPointerType>();
7500     S += "@?"; // Unlike a pointer-to-function, which is "^?".
7501     if (Options.EncodeBlockParameters()) {
7502       const auto *FT = BT->getPointeeType()->castAs<FunctionType>();
7503 
7504       S += '<';
7505       // Block return type
7506       getObjCEncodingForTypeImpl(FT->getReturnType(), S,
7507                                  Options.forComponentType(), FD, NotEncodedT);
7508       // Block self
7509       S += "@?";
7510       // Block parameters
7511       if (const auto *FPT = dyn_cast<FunctionProtoType>(FT)) {
7512         for (const auto &I : FPT->param_types())
7513           getObjCEncodingForTypeImpl(I, S, Options.forComponentType(), FD,
7514                                      NotEncodedT);
7515       }
7516       S += '>';
7517     }
7518     return;
7519   }
7520 
7521   case Type::ObjCObject: {
7522     // hack to match legacy encoding of *id and *Class
7523     QualType Ty = getObjCObjectPointerType(CT);
7524     if (Ty->isObjCIdType()) {
7525       S += "{objc_object=}";
7526       return;
7527     }
7528     else if (Ty->isObjCClassType()) {
7529       S += "{objc_class=}";
7530       return;
7531     }
7532     // TODO: Double check to make sure this intentionally falls through.
7533     LLVM_FALLTHROUGH;
7534   }
7535 
7536   case Type::ObjCInterface: {
7537     // Ignore protocol qualifiers when mangling at this level.
7538     // @encode(class_name)
7539     ObjCInterfaceDecl *OI = T->castAs<ObjCObjectType>()->getInterface();
7540     S += '{';
7541     S += OI->getObjCRuntimeNameAsString();
7542     if (Options.ExpandStructures()) {
7543       S += '=';
7544       SmallVector<const ObjCIvarDecl*, 32> Ivars;
7545       DeepCollectObjCIvars(OI, true, Ivars);
7546       for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
7547         const FieldDecl *Field = Ivars[i];
7548         if (Field->isBitField())
7549           getObjCEncodingForTypeImpl(Field->getType(), S,
7550                                      ObjCEncOptions().setExpandStructures(),
7551                                      Field);
7552         else
7553           getObjCEncodingForTypeImpl(Field->getType(), S,
7554                                      ObjCEncOptions().setExpandStructures(), FD,
7555                                      NotEncodedT);
7556       }
7557     }
7558     S += '}';
7559     return;
7560   }
7561 
7562   case Type::ObjCObjectPointer: {
7563     const auto *OPT = T->castAs<ObjCObjectPointerType>();
7564     if (OPT->isObjCIdType()) {
7565       S += '@';
7566       return;
7567     }
7568 
7569     if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
7570       // FIXME: Consider if we need to output qualifiers for 'Class<p>'.
7571       // Since this is a binary compatibility issue, need to consult with
7572       // runtime folks. Fortunately, this is a *very* obscure construct.
7573       S += '#';
7574       return;
7575     }
7576 
7577     if (OPT->isObjCQualifiedIdType()) {
7578       getObjCEncodingForTypeImpl(
7579           getObjCIdType(), S,
7580           Options.keepingOnly(ObjCEncOptions()
7581                                   .setExpandPointedToStructures()
7582                                   .setExpandStructures()),
7583           FD);
7584       if (FD || Options.EncodingProperty() || Options.EncodeClassNames()) {
7585         // Note that we do extended encoding of protocol qualifer list
7586         // Only when doing ivar or property encoding.
7587         S += '"';
7588         for (const auto *I : OPT->quals()) {
7589           S += '<';
7590           S += I->getObjCRuntimeNameAsString();
7591           S += '>';
7592         }
7593         S += '"';
7594       }
7595       return;
7596     }
7597 
7598     S += '@';
7599     if (OPT->getInterfaceDecl() &&
7600         (FD || Options.EncodingProperty() || Options.EncodeClassNames())) {
7601       S += '"';
7602       S += OPT->getInterfaceDecl()->getObjCRuntimeNameAsString();
7603       for (const auto *I : OPT->quals()) {
7604         S += '<';
7605         S += I->getObjCRuntimeNameAsString();
7606         S += '>';
7607       }
7608       S += '"';
7609     }
7610     return;
7611   }
7612 
7613   // gcc just blithely ignores member pointers.
7614   // FIXME: we should do better than that.  'M' is available.
7615   case Type::MemberPointer:
7616   // This matches gcc's encoding, even though technically it is insufficient.
7617   //FIXME. We should do a better job than gcc.
7618   case Type::Vector:
7619   case Type::ExtVector:
7620   // Until we have a coherent encoding of these three types, issue warning.
7621     if (NotEncodedT)
7622       *NotEncodedT = T;
7623     return;
7624 
7625   case Type::ConstantMatrix:
7626     if (NotEncodedT)
7627       *NotEncodedT = T;
7628     return;
7629 
7630   // We could see an undeduced auto type here during error recovery.
7631   // Just ignore it.
7632   case Type::Auto:
7633   case Type::DeducedTemplateSpecialization:
7634     return;
7635 
7636   case Type::Pipe:
7637   case Type::ExtInt:
7638 #define ABSTRACT_TYPE(KIND, BASE)
7639 #define TYPE(KIND, BASE)
7640 #define DEPENDENT_TYPE(KIND, BASE) \
7641   case Type::KIND:
7642 #define NON_CANONICAL_TYPE(KIND, BASE) \
7643   case Type::KIND:
7644 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(KIND, BASE) \
7645   case Type::KIND:
7646 #include "clang/AST/TypeNodes.inc"
7647     llvm_unreachable("@encode for dependent type!");
7648   }
7649   llvm_unreachable("bad type kind!");
7650 }
7651 
7652 void ASTContext::getObjCEncodingForStructureImpl(RecordDecl *RDecl,
7653                                                  std::string &S,
7654                                                  const FieldDecl *FD,
7655                                                  bool includeVBases,
7656                                                  QualType *NotEncodedT) const {
7657   assert(RDecl && "Expected non-null RecordDecl");
7658   assert(!RDecl->isUnion() && "Should not be called for unions");
7659   if (!RDecl->getDefinition() || RDecl->getDefinition()->isInvalidDecl())
7660     return;
7661 
7662   const auto *CXXRec = dyn_cast<CXXRecordDecl>(RDecl);
7663   std::multimap<uint64_t, NamedDecl *> FieldOrBaseOffsets;
7664   const ASTRecordLayout &layout = getASTRecordLayout(RDecl);
7665 
7666   if (CXXRec) {
7667     for (const auto &BI : CXXRec->bases()) {
7668       if (!BI.isVirtual()) {
7669         CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl();
7670         if (base->isEmpty())
7671           continue;
7672         uint64_t offs = toBits(layout.getBaseClassOffset(base));
7673         FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
7674                                   std::make_pair(offs, base));
7675       }
7676     }
7677   }
7678 
7679   unsigned i = 0;
7680   for (FieldDecl *Field : RDecl->fields()) {
7681     if (!Field->isZeroLengthBitField(*this) && Field->isZeroSize(*this))
7682       continue;
7683     uint64_t offs = layout.getFieldOffset(i);
7684     FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
7685                               std::make_pair(offs, Field));
7686     ++i;
7687   }
7688 
7689   if (CXXRec && includeVBases) {
7690     for (const auto &BI : CXXRec->vbases()) {
7691       CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl();
7692       if (base->isEmpty())
7693         continue;
7694       uint64_t offs = toBits(layout.getVBaseClassOffset(base));
7695       if (offs >= uint64_t(toBits(layout.getNonVirtualSize())) &&
7696           FieldOrBaseOffsets.find(offs) == FieldOrBaseOffsets.end())
7697         FieldOrBaseOffsets.insert(FieldOrBaseOffsets.end(),
7698                                   std::make_pair(offs, base));
7699     }
7700   }
7701 
7702   CharUnits size;
7703   if (CXXRec) {
7704     size = includeVBases ? layout.getSize() : layout.getNonVirtualSize();
7705   } else {
7706     size = layout.getSize();
7707   }
7708 
7709 #ifndef NDEBUG
7710   uint64_t CurOffs = 0;
7711 #endif
7712   std::multimap<uint64_t, NamedDecl *>::iterator
7713     CurLayObj = FieldOrBaseOffsets.begin();
7714 
7715   if (CXXRec && CXXRec->isDynamicClass() &&
7716       (CurLayObj == FieldOrBaseOffsets.end() || CurLayObj->first != 0)) {
7717     if (FD) {
7718       S += "\"_vptr$";
7719       std::string recname = CXXRec->getNameAsString();
7720       if (recname.empty()) recname = "?";
7721       S += recname;
7722       S += '"';
7723     }
7724     S += "^^?";
7725 #ifndef NDEBUG
7726     CurOffs += getTypeSize(VoidPtrTy);
7727 #endif
7728   }
7729 
7730   if (!RDecl->hasFlexibleArrayMember()) {
7731     // Mark the end of the structure.
7732     uint64_t offs = toBits(size);
7733     FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
7734                               std::make_pair(offs, nullptr));
7735   }
7736 
7737   for (; CurLayObj != FieldOrBaseOffsets.end(); ++CurLayObj) {
7738 #ifndef NDEBUG
7739     assert(CurOffs <= CurLayObj->first);
7740     if (CurOffs < CurLayObj->first) {
7741       uint64_t padding = CurLayObj->first - CurOffs;
7742       // FIXME: There doesn't seem to be a way to indicate in the encoding that
7743       // packing/alignment of members is different that normal, in which case
7744       // the encoding will be out-of-sync with the real layout.
7745       // If the runtime switches to just consider the size of types without
7746       // taking into account alignment, we could make padding explicit in the
7747       // encoding (e.g. using arrays of chars). The encoding strings would be
7748       // longer then though.
7749       CurOffs += padding;
7750     }
7751 #endif
7752 
7753     NamedDecl *dcl = CurLayObj->second;
7754     if (!dcl)
7755       break; // reached end of structure.
7756 
7757     if (auto *base = dyn_cast<CXXRecordDecl>(dcl)) {
7758       // We expand the bases without their virtual bases since those are going
7759       // in the initial structure. Note that this differs from gcc which
7760       // expands virtual bases each time one is encountered in the hierarchy,
7761       // making the encoding type bigger than it really is.
7762       getObjCEncodingForStructureImpl(base, S, FD, /*includeVBases*/false,
7763                                       NotEncodedT);
7764       assert(!base->isEmpty());
7765 #ifndef NDEBUG
7766       CurOffs += toBits(getASTRecordLayout(base).getNonVirtualSize());
7767 #endif
7768     } else {
7769       const auto *field = cast<FieldDecl>(dcl);
7770       if (FD) {
7771         S += '"';
7772         S += field->getNameAsString();
7773         S += '"';
7774       }
7775 
7776       if (field->isBitField()) {
7777         EncodeBitField(this, S, field->getType(), field);
7778 #ifndef NDEBUG
7779         CurOffs += field->getBitWidthValue(*this);
7780 #endif
7781       } else {
7782         QualType qt = field->getType();
7783         getLegacyIntegralTypeEncoding(qt);
7784         getObjCEncodingForTypeImpl(
7785             qt, S, ObjCEncOptions().setExpandStructures().setIsStructField(),
7786             FD, NotEncodedT);
7787 #ifndef NDEBUG
7788         CurOffs += getTypeSize(field->getType());
7789 #endif
7790       }
7791     }
7792   }
7793 }
7794 
7795 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
7796                                                  std::string& S) const {
7797   if (QT & Decl::OBJC_TQ_In)
7798     S += 'n';
7799   if (QT & Decl::OBJC_TQ_Inout)
7800     S += 'N';
7801   if (QT & Decl::OBJC_TQ_Out)
7802     S += 'o';
7803   if (QT & Decl::OBJC_TQ_Bycopy)
7804     S += 'O';
7805   if (QT & Decl::OBJC_TQ_Byref)
7806     S += 'R';
7807   if (QT & Decl::OBJC_TQ_Oneway)
7808     S += 'V';
7809 }
7810 
7811 TypedefDecl *ASTContext::getObjCIdDecl() const {
7812   if (!ObjCIdDecl) {
7813     QualType T = getObjCObjectType(ObjCBuiltinIdTy, {}, {});
7814     T = getObjCObjectPointerType(T);
7815     ObjCIdDecl = buildImplicitTypedef(T, "id");
7816   }
7817   return ObjCIdDecl;
7818 }
7819 
7820 TypedefDecl *ASTContext::getObjCSelDecl() const {
7821   if (!ObjCSelDecl) {
7822     QualType T = getPointerType(ObjCBuiltinSelTy);
7823     ObjCSelDecl = buildImplicitTypedef(T, "SEL");
7824   }
7825   return ObjCSelDecl;
7826 }
7827 
7828 TypedefDecl *ASTContext::getObjCClassDecl() const {
7829   if (!ObjCClassDecl) {
7830     QualType T = getObjCObjectType(ObjCBuiltinClassTy, {}, {});
7831     T = getObjCObjectPointerType(T);
7832     ObjCClassDecl = buildImplicitTypedef(T, "Class");
7833   }
7834   return ObjCClassDecl;
7835 }
7836 
7837 ObjCInterfaceDecl *ASTContext::getObjCProtocolDecl() const {
7838   if (!ObjCProtocolClassDecl) {
7839     ObjCProtocolClassDecl
7840       = ObjCInterfaceDecl::Create(*this, getTranslationUnitDecl(),
7841                                   SourceLocation(),
7842                                   &Idents.get("Protocol"),
7843                                   /*typeParamList=*/nullptr,
7844                                   /*PrevDecl=*/nullptr,
7845                                   SourceLocation(), true);
7846   }
7847 
7848   return ObjCProtocolClassDecl;
7849 }
7850 
7851 //===----------------------------------------------------------------------===//
7852 // __builtin_va_list Construction Functions
7853 //===----------------------------------------------------------------------===//
7854 
7855 static TypedefDecl *CreateCharPtrNamedVaListDecl(const ASTContext *Context,
7856                                                  StringRef Name) {
7857   // typedef char* __builtin[_ms]_va_list;
7858   QualType T = Context->getPointerType(Context->CharTy);
7859   return Context->buildImplicitTypedef(T, Name);
7860 }
7861 
7862 static TypedefDecl *CreateMSVaListDecl(const ASTContext *Context) {
7863   return CreateCharPtrNamedVaListDecl(Context, "__builtin_ms_va_list");
7864 }
7865 
7866 static TypedefDecl *CreateCharPtrBuiltinVaListDecl(const ASTContext *Context) {
7867   return CreateCharPtrNamedVaListDecl(Context, "__builtin_va_list");
7868 }
7869 
7870 static TypedefDecl *CreateVoidPtrBuiltinVaListDecl(const ASTContext *Context) {
7871   // typedef void* __builtin_va_list;
7872   QualType T = Context->getPointerType(Context->VoidTy);
7873   return Context->buildImplicitTypedef(T, "__builtin_va_list");
7874 }
7875 
7876 static TypedefDecl *
7877 CreateAArch64ABIBuiltinVaListDecl(const ASTContext *Context) {
7878   // struct __va_list
7879   RecordDecl *VaListTagDecl = Context->buildImplicitRecord("__va_list");
7880   if (Context->getLangOpts().CPlusPlus) {
7881     // namespace std { struct __va_list {
7882     NamespaceDecl *NS;
7883     NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
7884                                Context->getTranslationUnitDecl(),
7885                                /*Inline*/ false, SourceLocation(),
7886                                SourceLocation(), &Context->Idents.get("std"),
7887                                /*PrevDecl*/ nullptr);
7888     NS->setImplicit();
7889     VaListTagDecl->setDeclContext(NS);
7890   }
7891 
7892   VaListTagDecl->startDefinition();
7893 
7894   const size_t NumFields = 5;
7895   QualType FieldTypes[NumFields];
7896   const char *FieldNames[NumFields];
7897 
7898   // void *__stack;
7899   FieldTypes[0] = Context->getPointerType(Context->VoidTy);
7900   FieldNames[0] = "__stack";
7901 
7902   // void *__gr_top;
7903   FieldTypes[1] = Context->getPointerType(Context->VoidTy);
7904   FieldNames[1] = "__gr_top";
7905 
7906   // void *__vr_top;
7907   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
7908   FieldNames[2] = "__vr_top";
7909 
7910   // int __gr_offs;
7911   FieldTypes[3] = Context->IntTy;
7912   FieldNames[3] = "__gr_offs";
7913 
7914   // int __vr_offs;
7915   FieldTypes[4] = Context->IntTy;
7916   FieldNames[4] = "__vr_offs";
7917 
7918   // Create fields
7919   for (unsigned i = 0; i < NumFields; ++i) {
7920     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
7921                                          VaListTagDecl,
7922                                          SourceLocation(),
7923                                          SourceLocation(),
7924                                          &Context->Idents.get(FieldNames[i]),
7925                                          FieldTypes[i], /*TInfo=*/nullptr,
7926                                          /*BitWidth=*/nullptr,
7927                                          /*Mutable=*/false,
7928                                          ICIS_NoInit);
7929     Field->setAccess(AS_public);
7930     VaListTagDecl->addDecl(Field);
7931   }
7932   VaListTagDecl->completeDefinition();
7933   Context->VaListTagDecl = VaListTagDecl;
7934   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
7935 
7936   // } __builtin_va_list;
7937   return Context->buildImplicitTypedef(VaListTagType, "__builtin_va_list");
7938 }
7939 
7940 static TypedefDecl *CreatePowerABIBuiltinVaListDecl(const ASTContext *Context) {
7941   // typedef struct __va_list_tag {
7942   RecordDecl *VaListTagDecl;
7943 
7944   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
7945   VaListTagDecl->startDefinition();
7946 
7947   const size_t NumFields = 5;
7948   QualType FieldTypes[NumFields];
7949   const char *FieldNames[NumFields];
7950 
7951   //   unsigned char gpr;
7952   FieldTypes[0] = Context->UnsignedCharTy;
7953   FieldNames[0] = "gpr";
7954 
7955   //   unsigned char fpr;
7956   FieldTypes[1] = Context->UnsignedCharTy;
7957   FieldNames[1] = "fpr";
7958 
7959   //   unsigned short reserved;
7960   FieldTypes[2] = Context->UnsignedShortTy;
7961   FieldNames[2] = "reserved";
7962 
7963   //   void* overflow_arg_area;
7964   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
7965   FieldNames[3] = "overflow_arg_area";
7966 
7967   //   void* reg_save_area;
7968   FieldTypes[4] = Context->getPointerType(Context->VoidTy);
7969   FieldNames[4] = "reg_save_area";
7970 
7971   // Create fields
7972   for (unsigned i = 0; i < NumFields; ++i) {
7973     FieldDecl *Field = FieldDecl::Create(*Context, VaListTagDecl,
7974                                          SourceLocation(),
7975                                          SourceLocation(),
7976                                          &Context->Idents.get(FieldNames[i]),
7977                                          FieldTypes[i], /*TInfo=*/nullptr,
7978                                          /*BitWidth=*/nullptr,
7979                                          /*Mutable=*/false,
7980                                          ICIS_NoInit);
7981     Field->setAccess(AS_public);
7982     VaListTagDecl->addDecl(Field);
7983   }
7984   VaListTagDecl->completeDefinition();
7985   Context->VaListTagDecl = VaListTagDecl;
7986   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
7987 
7988   // } __va_list_tag;
7989   TypedefDecl *VaListTagTypedefDecl =
7990       Context->buildImplicitTypedef(VaListTagType, "__va_list_tag");
7991 
7992   QualType VaListTagTypedefType =
7993     Context->getTypedefType(VaListTagTypedefDecl);
7994 
7995   // typedef __va_list_tag __builtin_va_list[1];
7996   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
7997   QualType VaListTagArrayType
7998     = Context->getConstantArrayType(VaListTagTypedefType,
7999                                     Size, nullptr, ArrayType::Normal, 0);
8000   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
8001 }
8002 
8003 static TypedefDecl *
8004 CreateX86_64ABIBuiltinVaListDecl(const ASTContext *Context) {
8005   // struct __va_list_tag {
8006   RecordDecl *VaListTagDecl;
8007   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
8008   VaListTagDecl->startDefinition();
8009 
8010   const size_t NumFields = 4;
8011   QualType FieldTypes[NumFields];
8012   const char *FieldNames[NumFields];
8013 
8014   //   unsigned gp_offset;
8015   FieldTypes[0] = Context->UnsignedIntTy;
8016   FieldNames[0] = "gp_offset";
8017 
8018   //   unsigned fp_offset;
8019   FieldTypes[1] = Context->UnsignedIntTy;
8020   FieldNames[1] = "fp_offset";
8021 
8022   //   void* overflow_arg_area;
8023   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
8024   FieldNames[2] = "overflow_arg_area";
8025 
8026   //   void* reg_save_area;
8027   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
8028   FieldNames[3] = "reg_save_area";
8029 
8030   // Create fields
8031   for (unsigned i = 0; i < NumFields; ++i) {
8032     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
8033                                          VaListTagDecl,
8034                                          SourceLocation(),
8035                                          SourceLocation(),
8036                                          &Context->Idents.get(FieldNames[i]),
8037                                          FieldTypes[i], /*TInfo=*/nullptr,
8038                                          /*BitWidth=*/nullptr,
8039                                          /*Mutable=*/false,
8040                                          ICIS_NoInit);
8041     Field->setAccess(AS_public);
8042     VaListTagDecl->addDecl(Field);
8043   }
8044   VaListTagDecl->completeDefinition();
8045   Context->VaListTagDecl = VaListTagDecl;
8046   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
8047 
8048   // };
8049 
8050   // typedef struct __va_list_tag __builtin_va_list[1];
8051   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
8052   QualType VaListTagArrayType = Context->getConstantArrayType(
8053       VaListTagType, Size, nullptr, ArrayType::Normal, 0);
8054   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
8055 }
8056 
8057 static TypedefDecl *CreatePNaClABIBuiltinVaListDecl(const ASTContext *Context) {
8058   // typedef int __builtin_va_list[4];
8059   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 4);
8060   QualType IntArrayType = Context->getConstantArrayType(
8061       Context->IntTy, Size, nullptr, ArrayType::Normal, 0);
8062   return Context->buildImplicitTypedef(IntArrayType, "__builtin_va_list");
8063 }
8064 
8065 static TypedefDecl *
8066 CreateAAPCSABIBuiltinVaListDecl(const ASTContext *Context) {
8067   // struct __va_list
8068   RecordDecl *VaListDecl = Context->buildImplicitRecord("__va_list");
8069   if (Context->getLangOpts().CPlusPlus) {
8070     // namespace std { struct __va_list {
8071     NamespaceDecl *NS;
8072     NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
8073                                Context->getTranslationUnitDecl(),
8074                                /*Inline*/false, SourceLocation(),
8075                                SourceLocation(), &Context->Idents.get("std"),
8076                                /*PrevDecl*/ nullptr);
8077     NS->setImplicit();
8078     VaListDecl->setDeclContext(NS);
8079   }
8080 
8081   VaListDecl->startDefinition();
8082 
8083   // void * __ap;
8084   FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
8085                                        VaListDecl,
8086                                        SourceLocation(),
8087                                        SourceLocation(),
8088                                        &Context->Idents.get("__ap"),
8089                                        Context->getPointerType(Context->VoidTy),
8090                                        /*TInfo=*/nullptr,
8091                                        /*BitWidth=*/nullptr,
8092                                        /*Mutable=*/false,
8093                                        ICIS_NoInit);
8094   Field->setAccess(AS_public);
8095   VaListDecl->addDecl(Field);
8096 
8097   // };
8098   VaListDecl->completeDefinition();
8099   Context->VaListTagDecl = VaListDecl;
8100 
8101   // typedef struct __va_list __builtin_va_list;
8102   QualType T = Context->getRecordType(VaListDecl);
8103   return Context->buildImplicitTypedef(T, "__builtin_va_list");
8104 }
8105 
8106 static TypedefDecl *
8107 CreateSystemZBuiltinVaListDecl(const ASTContext *Context) {
8108   // struct __va_list_tag {
8109   RecordDecl *VaListTagDecl;
8110   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
8111   VaListTagDecl->startDefinition();
8112 
8113   const size_t NumFields = 4;
8114   QualType FieldTypes[NumFields];
8115   const char *FieldNames[NumFields];
8116 
8117   //   long __gpr;
8118   FieldTypes[0] = Context->LongTy;
8119   FieldNames[0] = "__gpr";
8120 
8121   //   long __fpr;
8122   FieldTypes[1] = Context->LongTy;
8123   FieldNames[1] = "__fpr";
8124 
8125   //   void *__overflow_arg_area;
8126   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
8127   FieldNames[2] = "__overflow_arg_area";
8128 
8129   //   void *__reg_save_area;
8130   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
8131   FieldNames[3] = "__reg_save_area";
8132 
8133   // Create fields
8134   for (unsigned i = 0; i < NumFields; ++i) {
8135     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
8136                                          VaListTagDecl,
8137                                          SourceLocation(),
8138                                          SourceLocation(),
8139                                          &Context->Idents.get(FieldNames[i]),
8140                                          FieldTypes[i], /*TInfo=*/nullptr,
8141                                          /*BitWidth=*/nullptr,
8142                                          /*Mutable=*/false,
8143                                          ICIS_NoInit);
8144     Field->setAccess(AS_public);
8145     VaListTagDecl->addDecl(Field);
8146   }
8147   VaListTagDecl->completeDefinition();
8148   Context->VaListTagDecl = VaListTagDecl;
8149   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
8150 
8151   // };
8152 
8153   // typedef __va_list_tag __builtin_va_list[1];
8154   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
8155   QualType VaListTagArrayType = Context->getConstantArrayType(
8156       VaListTagType, Size, nullptr, ArrayType::Normal, 0);
8157 
8158   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
8159 }
8160 
8161 static TypedefDecl *CreateHexagonBuiltinVaListDecl(const ASTContext *Context) {
8162   // typedef struct __va_list_tag {
8163   RecordDecl *VaListTagDecl;
8164   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
8165   VaListTagDecl->startDefinition();
8166 
8167   const size_t NumFields = 3;
8168   QualType FieldTypes[NumFields];
8169   const char *FieldNames[NumFields];
8170 
8171   //   void *CurrentSavedRegisterArea;
8172   FieldTypes[0] = Context->getPointerType(Context->VoidTy);
8173   FieldNames[0] = "__current_saved_reg_area_pointer";
8174 
8175   //   void *SavedRegAreaEnd;
8176   FieldTypes[1] = Context->getPointerType(Context->VoidTy);
8177   FieldNames[1] = "__saved_reg_area_end_pointer";
8178 
8179   //   void *OverflowArea;
8180   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
8181   FieldNames[2] = "__overflow_area_pointer";
8182 
8183   // Create fields
8184   for (unsigned i = 0; i < NumFields; ++i) {
8185     FieldDecl *Field = FieldDecl::Create(
8186         const_cast<ASTContext &>(*Context), VaListTagDecl, SourceLocation(),
8187         SourceLocation(), &Context->Idents.get(FieldNames[i]), FieldTypes[i],
8188         /*TInfo=*/0,
8189         /*BitWidth=*/0,
8190         /*Mutable=*/false, ICIS_NoInit);
8191     Field->setAccess(AS_public);
8192     VaListTagDecl->addDecl(Field);
8193   }
8194   VaListTagDecl->completeDefinition();
8195   Context->VaListTagDecl = VaListTagDecl;
8196   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
8197 
8198   // } __va_list_tag;
8199   TypedefDecl *VaListTagTypedefDecl =
8200       Context->buildImplicitTypedef(VaListTagType, "__va_list_tag");
8201 
8202   QualType VaListTagTypedefType = Context->getTypedefType(VaListTagTypedefDecl);
8203 
8204   // typedef __va_list_tag __builtin_va_list[1];
8205   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
8206   QualType VaListTagArrayType = Context->getConstantArrayType(
8207       VaListTagTypedefType, Size, nullptr, ArrayType::Normal, 0);
8208 
8209   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
8210 }
8211 
8212 static TypedefDecl *CreateVaListDecl(const ASTContext *Context,
8213                                      TargetInfo::BuiltinVaListKind Kind) {
8214   switch (Kind) {
8215   case TargetInfo::CharPtrBuiltinVaList:
8216     return CreateCharPtrBuiltinVaListDecl(Context);
8217   case TargetInfo::VoidPtrBuiltinVaList:
8218     return CreateVoidPtrBuiltinVaListDecl(Context);
8219   case TargetInfo::AArch64ABIBuiltinVaList:
8220     return CreateAArch64ABIBuiltinVaListDecl(Context);
8221   case TargetInfo::PowerABIBuiltinVaList:
8222     return CreatePowerABIBuiltinVaListDecl(Context);
8223   case TargetInfo::X86_64ABIBuiltinVaList:
8224     return CreateX86_64ABIBuiltinVaListDecl(Context);
8225   case TargetInfo::PNaClABIBuiltinVaList:
8226     return CreatePNaClABIBuiltinVaListDecl(Context);
8227   case TargetInfo::AAPCSABIBuiltinVaList:
8228     return CreateAAPCSABIBuiltinVaListDecl(Context);
8229   case TargetInfo::SystemZBuiltinVaList:
8230     return CreateSystemZBuiltinVaListDecl(Context);
8231   case TargetInfo::HexagonBuiltinVaList:
8232     return CreateHexagonBuiltinVaListDecl(Context);
8233   }
8234 
8235   llvm_unreachable("Unhandled __builtin_va_list type kind");
8236 }
8237 
8238 TypedefDecl *ASTContext::getBuiltinVaListDecl() const {
8239   if (!BuiltinVaListDecl) {
8240     BuiltinVaListDecl = CreateVaListDecl(this, Target->getBuiltinVaListKind());
8241     assert(BuiltinVaListDecl->isImplicit());
8242   }
8243 
8244   return BuiltinVaListDecl;
8245 }
8246 
8247 Decl *ASTContext::getVaListTagDecl() const {
8248   // Force the creation of VaListTagDecl by building the __builtin_va_list
8249   // declaration.
8250   if (!VaListTagDecl)
8251     (void)getBuiltinVaListDecl();
8252 
8253   return VaListTagDecl;
8254 }
8255 
8256 TypedefDecl *ASTContext::getBuiltinMSVaListDecl() const {
8257   if (!BuiltinMSVaListDecl)
8258     BuiltinMSVaListDecl = CreateMSVaListDecl(this);
8259 
8260   return BuiltinMSVaListDecl;
8261 }
8262 
8263 bool ASTContext::canBuiltinBeRedeclared(const FunctionDecl *FD) const {
8264   return BuiltinInfo.canBeRedeclared(FD->getBuiltinID());
8265 }
8266 
8267 void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
8268   assert(ObjCConstantStringType.isNull() &&
8269          "'NSConstantString' type already set!");
8270 
8271   ObjCConstantStringType = getObjCInterfaceType(Decl);
8272 }
8273 
8274 /// Retrieve the template name that corresponds to a non-empty
8275 /// lookup.
8276 TemplateName
8277 ASTContext::getOverloadedTemplateName(UnresolvedSetIterator Begin,
8278                                       UnresolvedSetIterator End) const {
8279   unsigned size = End - Begin;
8280   assert(size > 1 && "set is not overloaded!");
8281 
8282   void *memory = Allocate(sizeof(OverloadedTemplateStorage) +
8283                           size * sizeof(FunctionTemplateDecl*));
8284   auto *OT = new (memory) OverloadedTemplateStorage(size);
8285 
8286   NamedDecl **Storage = OT->getStorage();
8287   for (UnresolvedSetIterator I = Begin; I != End; ++I) {
8288     NamedDecl *D = *I;
8289     assert(isa<FunctionTemplateDecl>(D) ||
8290            isa<UnresolvedUsingValueDecl>(D) ||
8291            (isa<UsingShadowDecl>(D) &&
8292             isa<FunctionTemplateDecl>(D->getUnderlyingDecl())));
8293     *Storage++ = D;
8294   }
8295 
8296   return TemplateName(OT);
8297 }
8298 
8299 /// Retrieve a template name representing an unqualified-id that has been
8300 /// assumed to name a template for ADL purposes.
8301 TemplateName ASTContext::getAssumedTemplateName(DeclarationName Name) const {
8302   auto *OT = new (*this) AssumedTemplateStorage(Name);
8303   return TemplateName(OT);
8304 }
8305 
8306 /// Retrieve the template name that represents a qualified
8307 /// template name such as \c std::vector.
8308 TemplateName
8309 ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS,
8310                                      bool TemplateKeyword,
8311                                      TemplateDecl *Template) const {
8312   assert(NNS && "Missing nested-name-specifier in qualified template name");
8313 
8314   // FIXME: Canonicalization?
8315   llvm::FoldingSetNodeID ID;
8316   QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template);
8317 
8318   void *InsertPos = nullptr;
8319   QualifiedTemplateName *QTN =
8320     QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
8321   if (!QTN) {
8322     QTN = new (*this, alignof(QualifiedTemplateName))
8323         QualifiedTemplateName(NNS, TemplateKeyword, Template);
8324     QualifiedTemplateNames.InsertNode(QTN, InsertPos);
8325   }
8326 
8327   return TemplateName(QTN);
8328 }
8329 
8330 /// Retrieve the template name that represents a dependent
8331 /// template name such as \c MetaFun::template apply.
8332 TemplateName
8333 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
8334                                      const IdentifierInfo *Name) const {
8335   assert((!NNS || NNS->isDependent()) &&
8336          "Nested name specifier must be dependent");
8337 
8338   llvm::FoldingSetNodeID ID;
8339   DependentTemplateName::Profile(ID, NNS, Name);
8340 
8341   void *InsertPos = nullptr;
8342   DependentTemplateName *QTN =
8343     DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
8344 
8345   if (QTN)
8346     return TemplateName(QTN);
8347 
8348   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
8349   if (CanonNNS == NNS) {
8350     QTN = new (*this, alignof(DependentTemplateName))
8351         DependentTemplateName(NNS, Name);
8352   } else {
8353     TemplateName Canon = getDependentTemplateName(CanonNNS, Name);
8354     QTN = new (*this, alignof(DependentTemplateName))
8355         DependentTemplateName(NNS, Name, Canon);
8356     DependentTemplateName *CheckQTN =
8357       DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
8358     assert(!CheckQTN && "Dependent type name canonicalization broken");
8359     (void)CheckQTN;
8360   }
8361 
8362   DependentTemplateNames.InsertNode(QTN, InsertPos);
8363   return TemplateName(QTN);
8364 }
8365 
8366 /// Retrieve the template name that represents a dependent
8367 /// template name such as \c MetaFun::template operator+.
8368 TemplateName
8369 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
8370                                      OverloadedOperatorKind Operator) const {
8371   assert((!NNS || NNS->isDependent()) &&
8372          "Nested name specifier must be dependent");
8373 
8374   llvm::FoldingSetNodeID ID;
8375   DependentTemplateName::Profile(ID, NNS, Operator);
8376 
8377   void *InsertPos = nullptr;
8378   DependentTemplateName *QTN
8379     = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
8380 
8381   if (QTN)
8382     return TemplateName(QTN);
8383 
8384   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
8385   if (CanonNNS == NNS) {
8386     QTN = new (*this, alignof(DependentTemplateName))
8387         DependentTemplateName(NNS, Operator);
8388   } else {
8389     TemplateName Canon = getDependentTemplateName(CanonNNS, Operator);
8390     QTN = new (*this, alignof(DependentTemplateName))
8391         DependentTemplateName(NNS, Operator, Canon);
8392 
8393     DependentTemplateName *CheckQTN
8394       = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
8395     assert(!CheckQTN && "Dependent template name canonicalization broken");
8396     (void)CheckQTN;
8397   }
8398 
8399   DependentTemplateNames.InsertNode(QTN, InsertPos);
8400   return TemplateName(QTN);
8401 }
8402 
8403 TemplateName
8404 ASTContext::getSubstTemplateTemplateParm(TemplateTemplateParmDecl *param,
8405                                          TemplateName replacement) const {
8406   llvm::FoldingSetNodeID ID;
8407   SubstTemplateTemplateParmStorage::Profile(ID, param, replacement);
8408 
8409   void *insertPos = nullptr;
8410   SubstTemplateTemplateParmStorage *subst
8411     = SubstTemplateTemplateParms.FindNodeOrInsertPos(ID, insertPos);
8412 
8413   if (!subst) {
8414     subst = new (*this) SubstTemplateTemplateParmStorage(param, replacement);
8415     SubstTemplateTemplateParms.InsertNode(subst, insertPos);
8416   }
8417 
8418   return TemplateName(subst);
8419 }
8420 
8421 TemplateName
8422 ASTContext::getSubstTemplateTemplateParmPack(TemplateTemplateParmDecl *Param,
8423                                        const TemplateArgument &ArgPack) const {
8424   auto &Self = const_cast<ASTContext &>(*this);
8425   llvm::FoldingSetNodeID ID;
8426   SubstTemplateTemplateParmPackStorage::Profile(ID, Self, Param, ArgPack);
8427 
8428   void *InsertPos = nullptr;
8429   SubstTemplateTemplateParmPackStorage *Subst
8430     = SubstTemplateTemplateParmPacks.FindNodeOrInsertPos(ID, InsertPos);
8431 
8432   if (!Subst) {
8433     Subst = new (*this) SubstTemplateTemplateParmPackStorage(Param,
8434                                                            ArgPack.pack_size(),
8435                                                          ArgPack.pack_begin());
8436     SubstTemplateTemplateParmPacks.InsertNode(Subst, InsertPos);
8437   }
8438 
8439   return TemplateName(Subst);
8440 }
8441 
8442 /// getFromTargetType - Given one of the integer types provided by
8443 /// TargetInfo, produce the corresponding type. The unsigned @p Type
8444 /// is actually a value of type @c TargetInfo::IntType.
8445 CanQualType ASTContext::getFromTargetType(unsigned Type) const {
8446   switch (Type) {
8447   case TargetInfo::NoInt: return {};
8448   case TargetInfo::SignedChar: return SignedCharTy;
8449   case TargetInfo::UnsignedChar: return UnsignedCharTy;
8450   case TargetInfo::SignedShort: return ShortTy;
8451   case TargetInfo::UnsignedShort: return UnsignedShortTy;
8452   case TargetInfo::SignedInt: return IntTy;
8453   case TargetInfo::UnsignedInt: return UnsignedIntTy;
8454   case TargetInfo::SignedLong: return LongTy;
8455   case TargetInfo::UnsignedLong: return UnsignedLongTy;
8456   case TargetInfo::SignedLongLong: return LongLongTy;
8457   case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
8458   }
8459 
8460   llvm_unreachable("Unhandled TargetInfo::IntType value");
8461 }
8462 
8463 //===----------------------------------------------------------------------===//
8464 //                        Type Predicates.
8465 //===----------------------------------------------------------------------===//
8466 
8467 /// getObjCGCAttr - Returns one of GCNone, Weak or Strong objc's
8468 /// garbage collection attribute.
8469 ///
8470 Qualifiers::GC ASTContext::getObjCGCAttrKind(QualType Ty) const {
8471   if (getLangOpts().getGC() == LangOptions::NonGC)
8472     return Qualifiers::GCNone;
8473 
8474   assert(getLangOpts().ObjC);
8475   Qualifiers::GC GCAttrs = Ty.getObjCGCAttr();
8476 
8477   // Default behaviour under objective-C's gc is for ObjC pointers
8478   // (or pointers to them) be treated as though they were declared
8479   // as __strong.
8480   if (GCAttrs == Qualifiers::GCNone) {
8481     if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType())
8482       return Qualifiers::Strong;
8483     else if (Ty->isPointerType())
8484       return getObjCGCAttrKind(Ty->castAs<PointerType>()->getPointeeType());
8485   } else {
8486     // It's not valid to set GC attributes on anything that isn't a
8487     // pointer.
8488 #ifndef NDEBUG
8489     QualType CT = Ty->getCanonicalTypeInternal();
8490     while (const auto *AT = dyn_cast<ArrayType>(CT))
8491       CT = AT->getElementType();
8492     assert(CT->isAnyPointerType() || CT->isBlockPointerType());
8493 #endif
8494   }
8495   return GCAttrs;
8496 }
8497 
8498 //===----------------------------------------------------------------------===//
8499 //                        Type Compatibility Testing
8500 //===----------------------------------------------------------------------===//
8501 
8502 /// areCompatVectorTypes - Return true if the two specified vector types are
8503 /// compatible.
8504 static bool areCompatVectorTypes(const VectorType *LHS,
8505                                  const VectorType *RHS) {
8506   assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified());
8507   return LHS->getElementType() == RHS->getElementType() &&
8508          LHS->getNumElements() == RHS->getNumElements();
8509 }
8510 
8511 /// areCompatMatrixTypes - Return true if the two specified matrix types are
8512 /// compatible.
8513 static bool areCompatMatrixTypes(const ConstantMatrixType *LHS,
8514                                  const ConstantMatrixType *RHS) {
8515   assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified());
8516   return LHS->getElementType() == RHS->getElementType() &&
8517          LHS->getNumRows() == RHS->getNumRows() &&
8518          LHS->getNumColumns() == RHS->getNumColumns();
8519 }
8520 
8521 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec,
8522                                           QualType SecondVec) {
8523   assert(FirstVec->isVectorType() && "FirstVec should be a vector type");
8524   assert(SecondVec->isVectorType() && "SecondVec should be a vector type");
8525 
8526   if (hasSameUnqualifiedType(FirstVec, SecondVec))
8527     return true;
8528 
8529   // Treat Neon vector types and most AltiVec vector types as if they are the
8530   // equivalent GCC vector types.
8531   const auto *First = FirstVec->castAs<VectorType>();
8532   const auto *Second = SecondVec->castAs<VectorType>();
8533   if (First->getNumElements() == Second->getNumElements() &&
8534       hasSameType(First->getElementType(), Second->getElementType()) &&
8535       First->getVectorKind() != VectorType::AltiVecPixel &&
8536       First->getVectorKind() != VectorType::AltiVecBool &&
8537       Second->getVectorKind() != VectorType::AltiVecPixel &&
8538       Second->getVectorKind() != VectorType::AltiVecBool &&
8539       First->getVectorKind() != VectorType::SveFixedLengthDataVector &&
8540       First->getVectorKind() != VectorType::SveFixedLengthPredicateVector &&
8541       Second->getVectorKind() != VectorType::SveFixedLengthDataVector &&
8542       Second->getVectorKind() != VectorType::SveFixedLengthPredicateVector)
8543     return true;
8544 
8545   return false;
8546 }
8547 
8548 bool ASTContext::areCompatibleSveTypes(QualType FirstType,
8549                                        QualType SecondType) {
8550   assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) ||
8551           (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) &&
8552          "Expected SVE builtin type and vector type!");
8553 
8554   auto IsValidCast = [this](QualType FirstType, QualType SecondType) {
8555     if (const auto *BT = FirstType->getAs<BuiltinType>()) {
8556       if (const auto *VT = SecondType->getAs<VectorType>()) {
8557         // Predicates have the same representation as uint8 so we also have to
8558         // check the kind to make these types incompatible.
8559         if (VT->getVectorKind() == VectorType::SveFixedLengthPredicateVector)
8560           return BT->getKind() == BuiltinType::SveBool;
8561         else if (VT->getVectorKind() == VectorType::SveFixedLengthDataVector)
8562           return VT->getElementType().getCanonicalType() ==
8563                  FirstType->getSveEltType(*this);
8564         else if (VT->getVectorKind() == VectorType::GenericVector)
8565           return getTypeSize(SecondType) == getLangOpts().ArmSveVectorBits &&
8566                  hasSameType(VT->getElementType(),
8567                              getBuiltinVectorTypeInfo(BT).ElementType);
8568       }
8569     }
8570     return false;
8571   };
8572 
8573   return IsValidCast(FirstType, SecondType) ||
8574          IsValidCast(SecondType, FirstType);
8575 }
8576 
8577 bool ASTContext::areLaxCompatibleSveTypes(QualType FirstType,
8578                                           QualType SecondType) {
8579   assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) ||
8580           (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) &&
8581          "Expected SVE builtin type and vector type!");
8582 
8583   auto IsLaxCompatible = [this](QualType FirstType, QualType SecondType) {
8584     if (!FirstType->getAs<BuiltinType>())
8585       return false;
8586 
8587     const auto *VecTy = SecondType->getAs<VectorType>();
8588     if (VecTy &&
8589         (VecTy->getVectorKind() == VectorType::SveFixedLengthDataVector ||
8590          VecTy->getVectorKind() == VectorType::GenericVector)) {
8591       const LangOptions::LaxVectorConversionKind LVCKind =
8592           getLangOpts().getLaxVectorConversions();
8593 
8594       // If __ARM_FEATURE_SVE_BITS != N do not allow GNU vector lax conversion.
8595       // "Whenever __ARM_FEATURE_SVE_BITS==N, GNUT implicitly
8596       // converts to VLAT and VLAT implicitly converts to GNUT."
8597       // ACLE Spec Version 00bet6, 3.7.3.2. Behavior common to vectors and
8598       // predicates.
8599       if (VecTy->getVectorKind() == VectorType::GenericVector &&
8600           getTypeSize(SecondType) != getLangOpts().ArmSveVectorBits)
8601         return false;
8602 
8603       // If -flax-vector-conversions=all is specified, the types are
8604       // certainly compatible.
8605       if (LVCKind == LangOptions::LaxVectorConversionKind::All)
8606         return true;
8607 
8608       // If -flax-vector-conversions=integer is specified, the types are
8609       // compatible if the elements are integer types.
8610       if (LVCKind == LangOptions::LaxVectorConversionKind::Integer)
8611         return VecTy->getElementType().getCanonicalType()->isIntegerType() &&
8612                FirstType->getSveEltType(*this)->isIntegerType();
8613     }
8614 
8615     return false;
8616   };
8617 
8618   return IsLaxCompatible(FirstType, SecondType) ||
8619          IsLaxCompatible(SecondType, FirstType);
8620 }
8621 
8622 bool ASTContext::hasDirectOwnershipQualifier(QualType Ty) const {
8623   while (true) {
8624     // __strong id
8625     if (const AttributedType *Attr = dyn_cast<AttributedType>(Ty)) {
8626       if (Attr->getAttrKind() == attr::ObjCOwnership)
8627         return true;
8628 
8629       Ty = Attr->getModifiedType();
8630 
8631     // X *__strong (...)
8632     } else if (const ParenType *Paren = dyn_cast<ParenType>(Ty)) {
8633       Ty = Paren->getInnerType();
8634 
8635     // We do not want to look through typedefs, typeof(expr),
8636     // typeof(type), or any other way that the type is somehow
8637     // abstracted.
8638     } else {
8639       return false;
8640     }
8641   }
8642 }
8643 
8644 //===----------------------------------------------------------------------===//
8645 // ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's.
8646 //===----------------------------------------------------------------------===//
8647 
8648 /// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the
8649 /// inheritance hierarchy of 'rProto'.
8650 bool
8651 ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto,
8652                                            ObjCProtocolDecl *rProto) const {
8653   if (declaresSameEntity(lProto, rProto))
8654     return true;
8655   for (auto *PI : rProto->protocols())
8656     if (ProtocolCompatibleWithProtocol(lProto, PI))
8657       return true;
8658   return false;
8659 }
8660 
8661 /// ObjCQualifiedClassTypesAreCompatible - compare  Class<pr,...> and
8662 /// Class<pr1, ...>.
8663 bool ASTContext::ObjCQualifiedClassTypesAreCompatible(
8664     const ObjCObjectPointerType *lhs, const ObjCObjectPointerType *rhs) {
8665   for (auto *lhsProto : lhs->quals()) {
8666     bool match = false;
8667     for (auto *rhsProto : rhs->quals()) {
8668       if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto)) {
8669         match = true;
8670         break;
8671       }
8672     }
8673     if (!match)
8674       return false;
8675   }
8676   return true;
8677 }
8678 
8679 /// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an
8680 /// ObjCQualifiedIDType.
8681 bool ASTContext::ObjCQualifiedIdTypesAreCompatible(
8682     const ObjCObjectPointerType *lhs, const ObjCObjectPointerType *rhs,
8683     bool compare) {
8684   // Allow id<P..> and an 'id' in all cases.
8685   if (lhs->isObjCIdType() || rhs->isObjCIdType())
8686     return true;
8687 
8688   // Don't allow id<P..> to convert to Class or Class<P..> in either direction.
8689   if (lhs->isObjCClassType() || lhs->isObjCQualifiedClassType() ||
8690       rhs->isObjCClassType() || rhs->isObjCQualifiedClassType())
8691     return false;
8692 
8693   if (lhs->isObjCQualifiedIdType()) {
8694     if (rhs->qual_empty()) {
8695       // If the RHS is a unqualified interface pointer "NSString*",
8696       // make sure we check the class hierarchy.
8697       if (ObjCInterfaceDecl *rhsID = rhs->getInterfaceDecl()) {
8698         for (auto *I : lhs->quals()) {
8699           // when comparing an id<P> on lhs with a static type on rhs,
8700           // see if static class implements all of id's protocols, directly or
8701           // through its super class and categories.
8702           if (!rhsID->ClassImplementsProtocol(I, true))
8703             return false;
8704         }
8705       }
8706       // If there are no qualifiers and no interface, we have an 'id'.
8707       return true;
8708     }
8709     // Both the right and left sides have qualifiers.
8710     for (auto *lhsProto : lhs->quals()) {
8711       bool match = false;
8712 
8713       // when comparing an id<P> on lhs with a static type on rhs,
8714       // see if static class implements all of id's protocols, directly or
8715       // through its super class and categories.
8716       for (auto *rhsProto : rhs->quals()) {
8717         if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
8718             (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
8719           match = true;
8720           break;
8721         }
8722       }
8723       // If the RHS is a qualified interface pointer "NSString<P>*",
8724       // make sure we check the class hierarchy.
8725       if (ObjCInterfaceDecl *rhsID = rhs->getInterfaceDecl()) {
8726         for (auto *I : lhs->quals()) {
8727           // when comparing an id<P> on lhs with a static type on rhs,
8728           // see if static class implements all of id's protocols, directly or
8729           // through its super class and categories.
8730           if (rhsID->ClassImplementsProtocol(I, true)) {
8731             match = true;
8732             break;
8733           }
8734         }
8735       }
8736       if (!match)
8737         return false;
8738     }
8739 
8740     return true;
8741   }
8742 
8743   assert(rhs->isObjCQualifiedIdType() && "One of the LHS/RHS should be id<x>");
8744 
8745   if (lhs->getInterfaceType()) {
8746     // If both the right and left sides have qualifiers.
8747     for (auto *lhsProto : lhs->quals()) {
8748       bool match = false;
8749 
8750       // when comparing an id<P> on rhs with a static type on lhs,
8751       // see if static class implements all of id's protocols, directly or
8752       // through its super class and categories.
8753       // First, lhs protocols in the qualifier list must be found, direct
8754       // or indirect in rhs's qualifier list or it is a mismatch.
8755       for (auto *rhsProto : rhs->quals()) {
8756         if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
8757             (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
8758           match = true;
8759           break;
8760         }
8761       }
8762       if (!match)
8763         return false;
8764     }
8765 
8766     // Static class's protocols, or its super class or category protocols
8767     // must be found, direct or indirect in rhs's qualifier list or it is a mismatch.
8768     if (ObjCInterfaceDecl *lhsID = lhs->getInterfaceDecl()) {
8769       llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols;
8770       CollectInheritedProtocols(lhsID, LHSInheritedProtocols);
8771       // This is rather dubious but matches gcc's behavior. If lhs has
8772       // no type qualifier and its class has no static protocol(s)
8773       // assume that it is mismatch.
8774       if (LHSInheritedProtocols.empty() && lhs->qual_empty())
8775         return false;
8776       for (auto *lhsProto : LHSInheritedProtocols) {
8777         bool match = false;
8778         for (auto *rhsProto : rhs->quals()) {
8779           if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
8780               (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
8781             match = true;
8782             break;
8783           }
8784         }
8785         if (!match)
8786           return false;
8787       }
8788     }
8789     return true;
8790   }
8791   return false;
8792 }
8793 
8794 /// canAssignObjCInterfaces - Return true if the two interface types are
8795 /// compatible for assignment from RHS to LHS.  This handles validation of any
8796 /// protocol qualifiers on the LHS or RHS.
8797 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT,
8798                                          const ObjCObjectPointerType *RHSOPT) {
8799   const ObjCObjectType* LHS = LHSOPT->getObjectType();
8800   const ObjCObjectType* RHS = RHSOPT->getObjectType();
8801 
8802   // If either type represents the built-in 'id' type, return true.
8803   if (LHS->isObjCUnqualifiedId() || RHS->isObjCUnqualifiedId())
8804     return true;
8805 
8806   // Function object that propagates a successful result or handles
8807   // __kindof types.
8808   auto finish = [&](bool succeeded) -> bool {
8809     if (succeeded)
8810       return true;
8811 
8812     if (!RHS->isKindOfType())
8813       return false;
8814 
8815     // Strip off __kindof and protocol qualifiers, then check whether
8816     // we can assign the other way.
8817     return canAssignObjCInterfaces(RHSOPT->stripObjCKindOfTypeAndQuals(*this),
8818                                    LHSOPT->stripObjCKindOfTypeAndQuals(*this));
8819   };
8820 
8821   // Casts from or to id<P> are allowed when the other side has compatible
8822   // protocols.
8823   if (LHS->isObjCQualifiedId() || RHS->isObjCQualifiedId()) {
8824     return finish(ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT, false));
8825   }
8826 
8827   // Verify protocol compatibility for casts from Class<P1> to Class<P2>.
8828   if (LHS->isObjCQualifiedClass() && RHS->isObjCQualifiedClass()) {
8829     return finish(ObjCQualifiedClassTypesAreCompatible(LHSOPT, RHSOPT));
8830   }
8831 
8832   // Casts from Class to Class<Foo>, or vice-versa, are allowed.
8833   if (LHS->isObjCClass() && RHS->isObjCClass()) {
8834     return true;
8835   }
8836 
8837   // If we have 2 user-defined types, fall into that path.
8838   if (LHS->getInterface() && RHS->getInterface()) {
8839     return finish(canAssignObjCInterfaces(LHS, RHS));
8840   }
8841 
8842   return false;
8843 }
8844 
8845 /// canAssignObjCInterfacesInBlockPointer - This routine is specifically written
8846 /// for providing type-safety for objective-c pointers used to pass/return
8847 /// arguments in block literals. When passed as arguments, passing 'A*' where
8848 /// 'id' is expected is not OK. Passing 'Sub *" where 'Super *" is expected is
8849 /// not OK. For the return type, the opposite is not OK.
8850 bool ASTContext::canAssignObjCInterfacesInBlockPointer(
8851                                          const ObjCObjectPointerType *LHSOPT,
8852                                          const ObjCObjectPointerType *RHSOPT,
8853                                          bool BlockReturnType) {
8854 
8855   // Function object that propagates a successful result or handles
8856   // __kindof types.
8857   auto finish = [&](bool succeeded) -> bool {
8858     if (succeeded)
8859       return true;
8860 
8861     const ObjCObjectPointerType *Expected = BlockReturnType ? RHSOPT : LHSOPT;
8862     if (!Expected->isKindOfType())
8863       return false;
8864 
8865     // Strip off __kindof and protocol qualifiers, then check whether
8866     // we can assign the other way.
8867     return canAssignObjCInterfacesInBlockPointer(
8868              RHSOPT->stripObjCKindOfTypeAndQuals(*this),
8869              LHSOPT->stripObjCKindOfTypeAndQuals(*this),
8870              BlockReturnType);
8871   };
8872 
8873   if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType())
8874     return true;
8875 
8876   if (LHSOPT->isObjCBuiltinType()) {
8877     return finish(RHSOPT->isObjCBuiltinType() ||
8878                   RHSOPT->isObjCQualifiedIdType());
8879   }
8880 
8881   if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType()) {
8882     if (getLangOpts().CompatibilityQualifiedIdBlockParamTypeChecking)
8883       // Use for block parameters previous type checking for compatibility.
8884       return finish(ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT, false) ||
8885                     // Or corrected type checking as in non-compat mode.
8886                     (!BlockReturnType &&
8887                      ObjCQualifiedIdTypesAreCompatible(RHSOPT, LHSOPT, false)));
8888     else
8889       return finish(ObjCQualifiedIdTypesAreCompatible(
8890           (BlockReturnType ? LHSOPT : RHSOPT),
8891           (BlockReturnType ? RHSOPT : LHSOPT), false));
8892   }
8893 
8894   const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType();
8895   const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType();
8896   if (LHS && RHS)  { // We have 2 user-defined types.
8897     if (LHS != RHS) {
8898       if (LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
8899         return finish(BlockReturnType);
8900       if (RHS->getDecl()->isSuperClassOf(LHS->getDecl()))
8901         return finish(!BlockReturnType);
8902     }
8903     else
8904       return true;
8905   }
8906   return false;
8907 }
8908 
8909 /// Comparison routine for Objective-C protocols to be used with
8910 /// llvm::array_pod_sort.
8911 static int compareObjCProtocolsByName(ObjCProtocolDecl * const *lhs,
8912                                       ObjCProtocolDecl * const *rhs) {
8913   return (*lhs)->getName().compare((*rhs)->getName());
8914 }
8915 
8916 /// getIntersectionOfProtocols - This routine finds the intersection of set
8917 /// of protocols inherited from two distinct objective-c pointer objects with
8918 /// the given common base.
8919 /// It is used to build composite qualifier list of the composite type of
8920 /// the conditional expression involving two objective-c pointer objects.
8921 static
8922 void getIntersectionOfProtocols(ASTContext &Context,
8923                                 const ObjCInterfaceDecl *CommonBase,
8924                                 const ObjCObjectPointerType *LHSOPT,
8925                                 const ObjCObjectPointerType *RHSOPT,
8926       SmallVectorImpl<ObjCProtocolDecl *> &IntersectionSet) {
8927 
8928   const ObjCObjectType* LHS = LHSOPT->getObjectType();
8929   const ObjCObjectType* RHS = RHSOPT->getObjectType();
8930   assert(LHS->getInterface() && "LHS must have an interface base");
8931   assert(RHS->getInterface() && "RHS must have an interface base");
8932 
8933   // Add all of the protocols for the LHS.
8934   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSProtocolSet;
8935 
8936   // Start with the protocol qualifiers.
8937   for (auto proto : LHS->quals()) {
8938     Context.CollectInheritedProtocols(proto, LHSProtocolSet);
8939   }
8940 
8941   // Also add the protocols associated with the LHS interface.
8942   Context.CollectInheritedProtocols(LHS->getInterface(), LHSProtocolSet);
8943 
8944   // Add all of the protocols for the RHS.
8945   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> RHSProtocolSet;
8946 
8947   // Start with the protocol qualifiers.
8948   for (auto proto : RHS->quals()) {
8949     Context.CollectInheritedProtocols(proto, RHSProtocolSet);
8950   }
8951 
8952   // Also add the protocols associated with the RHS interface.
8953   Context.CollectInheritedProtocols(RHS->getInterface(), RHSProtocolSet);
8954 
8955   // Compute the intersection of the collected protocol sets.
8956   for (auto proto : LHSProtocolSet) {
8957     if (RHSProtocolSet.count(proto))
8958       IntersectionSet.push_back(proto);
8959   }
8960 
8961   // Compute the set of protocols that is implied by either the common type or
8962   // the protocols within the intersection.
8963   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> ImpliedProtocols;
8964   Context.CollectInheritedProtocols(CommonBase, ImpliedProtocols);
8965 
8966   // Remove any implied protocols from the list of inherited protocols.
8967   if (!ImpliedProtocols.empty()) {
8968     IntersectionSet.erase(
8969       std::remove_if(IntersectionSet.begin(),
8970                      IntersectionSet.end(),
8971                      [&](ObjCProtocolDecl *proto) -> bool {
8972                        return ImpliedProtocols.count(proto) > 0;
8973                      }),
8974       IntersectionSet.end());
8975   }
8976 
8977   // Sort the remaining protocols by name.
8978   llvm::array_pod_sort(IntersectionSet.begin(), IntersectionSet.end(),
8979                        compareObjCProtocolsByName);
8980 }
8981 
8982 /// Determine whether the first type is a subtype of the second.
8983 static bool canAssignObjCObjectTypes(ASTContext &ctx, QualType lhs,
8984                                      QualType rhs) {
8985   // Common case: two object pointers.
8986   const auto *lhsOPT = lhs->getAs<ObjCObjectPointerType>();
8987   const auto *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
8988   if (lhsOPT && rhsOPT)
8989     return ctx.canAssignObjCInterfaces(lhsOPT, rhsOPT);
8990 
8991   // Two block pointers.
8992   const auto *lhsBlock = lhs->getAs<BlockPointerType>();
8993   const auto *rhsBlock = rhs->getAs<BlockPointerType>();
8994   if (lhsBlock && rhsBlock)
8995     return ctx.typesAreBlockPointerCompatible(lhs, rhs);
8996 
8997   // If either is an unqualified 'id' and the other is a block, it's
8998   // acceptable.
8999   if ((lhsOPT && lhsOPT->isObjCIdType() && rhsBlock) ||
9000       (rhsOPT && rhsOPT->isObjCIdType() && lhsBlock))
9001     return true;
9002 
9003   return false;
9004 }
9005 
9006 // Check that the given Objective-C type argument lists are equivalent.
9007 static bool sameObjCTypeArgs(ASTContext &ctx,
9008                              const ObjCInterfaceDecl *iface,
9009                              ArrayRef<QualType> lhsArgs,
9010                              ArrayRef<QualType> rhsArgs,
9011                              bool stripKindOf) {
9012   if (lhsArgs.size() != rhsArgs.size())
9013     return false;
9014 
9015   ObjCTypeParamList *typeParams = iface->getTypeParamList();
9016   for (unsigned i = 0, n = lhsArgs.size(); i != n; ++i) {
9017     if (ctx.hasSameType(lhsArgs[i], rhsArgs[i]))
9018       continue;
9019 
9020     switch (typeParams->begin()[i]->getVariance()) {
9021     case ObjCTypeParamVariance::Invariant:
9022       if (!stripKindOf ||
9023           !ctx.hasSameType(lhsArgs[i].stripObjCKindOfType(ctx),
9024                            rhsArgs[i].stripObjCKindOfType(ctx))) {
9025         return false;
9026       }
9027       break;
9028 
9029     case ObjCTypeParamVariance::Covariant:
9030       if (!canAssignObjCObjectTypes(ctx, lhsArgs[i], rhsArgs[i]))
9031         return false;
9032       break;
9033 
9034     case ObjCTypeParamVariance::Contravariant:
9035       if (!canAssignObjCObjectTypes(ctx, rhsArgs[i], lhsArgs[i]))
9036         return false;
9037       break;
9038     }
9039   }
9040 
9041   return true;
9042 }
9043 
9044 QualType ASTContext::areCommonBaseCompatible(
9045            const ObjCObjectPointerType *Lptr,
9046            const ObjCObjectPointerType *Rptr) {
9047   const ObjCObjectType *LHS = Lptr->getObjectType();
9048   const ObjCObjectType *RHS = Rptr->getObjectType();
9049   const ObjCInterfaceDecl* LDecl = LHS->getInterface();
9050   const ObjCInterfaceDecl* RDecl = RHS->getInterface();
9051 
9052   if (!LDecl || !RDecl)
9053     return {};
9054 
9055   // When either LHS or RHS is a kindof type, we should return a kindof type.
9056   // For example, for common base of kindof(ASub1) and kindof(ASub2), we return
9057   // kindof(A).
9058   bool anyKindOf = LHS->isKindOfType() || RHS->isKindOfType();
9059 
9060   // Follow the left-hand side up the class hierarchy until we either hit a
9061   // root or find the RHS. Record the ancestors in case we don't find it.
9062   llvm::SmallDenseMap<const ObjCInterfaceDecl *, const ObjCObjectType *, 4>
9063     LHSAncestors;
9064   while (true) {
9065     // Record this ancestor. We'll need this if the common type isn't in the
9066     // path from the LHS to the root.
9067     LHSAncestors[LHS->getInterface()->getCanonicalDecl()] = LHS;
9068 
9069     if (declaresSameEntity(LHS->getInterface(), RDecl)) {
9070       // Get the type arguments.
9071       ArrayRef<QualType> LHSTypeArgs = LHS->getTypeArgsAsWritten();
9072       bool anyChanges = false;
9073       if (LHS->isSpecialized() && RHS->isSpecialized()) {
9074         // Both have type arguments, compare them.
9075         if (!sameObjCTypeArgs(*this, LHS->getInterface(),
9076                               LHS->getTypeArgs(), RHS->getTypeArgs(),
9077                               /*stripKindOf=*/true))
9078           return {};
9079       } else if (LHS->isSpecialized() != RHS->isSpecialized()) {
9080         // If only one has type arguments, the result will not have type
9081         // arguments.
9082         LHSTypeArgs = {};
9083         anyChanges = true;
9084       }
9085 
9086       // Compute the intersection of protocols.
9087       SmallVector<ObjCProtocolDecl *, 8> Protocols;
9088       getIntersectionOfProtocols(*this, LHS->getInterface(), Lptr, Rptr,
9089                                  Protocols);
9090       if (!Protocols.empty())
9091         anyChanges = true;
9092 
9093       // If anything in the LHS will have changed, build a new result type.
9094       // If we need to return a kindof type but LHS is not a kindof type, we
9095       // build a new result type.
9096       if (anyChanges || LHS->isKindOfType() != anyKindOf) {
9097         QualType Result = getObjCInterfaceType(LHS->getInterface());
9098         Result = getObjCObjectType(Result, LHSTypeArgs, Protocols,
9099                                    anyKindOf || LHS->isKindOfType());
9100         return getObjCObjectPointerType(Result);
9101       }
9102 
9103       return getObjCObjectPointerType(QualType(LHS, 0));
9104     }
9105 
9106     // Find the superclass.
9107     QualType LHSSuperType = LHS->getSuperClassType();
9108     if (LHSSuperType.isNull())
9109       break;
9110 
9111     LHS = LHSSuperType->castAs<ObjCObjectType>();
9112   }
9113 
9114   // We didn't find anything by following the LHS to its root; now check
9115   // the RHS against the cached set of ancestors.
9116   while (true) {
9117     auto KnownLHS = LHSAncestors.find(RHS->getInterface()->getCanonicalDecl());
9118     if (KnownLHS != LHSAncestors.end()) {
9119       LHS = KnownLHS->second;
9120 
9121       // Get the type arguments.
9122       ArrayRef<QualType> RHSTypeArgs = RHS->getTypeArgsAsWritten();
9123       bool anyChanges = false;
9124       if (LHS->isSpecialized() && RHS->isSpecialized()) {
9125         // Both have type arguments, compare them.
9126         if (!sameObjCTypeArgs(*this, LHS->getInterface(),
9127                               LHS->getTypeArgs(), RHS->getTypeArgs(),
9128                               /*stripKindOf=*/true))
9129           return {};
9130       } else if (LHS->isSpecialized() != RHS->isSpecialized()) {
9131         // If only one has type arguments, the result will not have type
9132         // arguments.
9133         RHSTypeArgs = {};
9134         anyChanges = true;
9135       }
9136 
9137       // Compute the intersection of protocols.
9138       SmallVector<ObjCProtocolDecl *, 8> Protocols;
9139       getIntersectionOfProtocols(*this, RHS->getInterface(), Lptr, Rptr,
9140                                  Protocols);
9141       if (!Protocols.empty())
9142         anyChanges = true;
9143 
9144       // If we need to return a kindof type but RHS is not a kindof type, we
9145       // build a new result type.
9146       if (anyChanges || RHS->isKindOfType() != anyKindOf) {
9147         QualType Result = getObjCInterfaceType(RHS->getInterface());
9148         Result = getObjCObjectType(Result, RHSTypeArgs, Protocols,
9149                                    anyKindOf || RHS->isKindOfType());
9150         return getObjCObjectPointerType(Result);
9151       }
9152 
9153       return getObjCObjectPointerType(QualType(RHS, 0));
9154     }
9155 
9156     // Find the superclass of the RHS.
9157     QualType RHSSuperType = RHS->getSuperClassType();
9158     if (RHSSuperType.isNull())
9159       break;
9160 
9161     RHS = RHSSuperType->castAs<ObjCObjectType>();
9162   }
9163 
9164   return {};
9165 }
9166 
9167 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS,
9168                                          const ObjCObjectType *RHS) {
9169   assert(LHS->getInterface() && "LHS is not an interface type");
9170   assert(RHS->getInterface() && "RHS is not an interface type");
9171 
9172   // Verify that the base decls are compatible: the RHS must be a subclass of
9173   // the LHS.
9174   ObjCInterfaceDecl *LHSInterface = LHS->getInterface();
9175   bool IsSuperClass = LHSInterface->isSuperClassOf(RHS->getInterface());
9176   if (!IsSuperClass)
9177     return false;
9178 
9179   // If the LHS has protocol qualifiers, determine whether all of them are
9180   // satisfied by the RHS (i.e., the RHS has a superset of the protocols in the
9181   // LHS).
9182   if (LHS->getNumProtocols() > 0) {
9183     // OK if conversion of LHS to SuperClass results in narrowing of types
9184     // ; i.e., SuperClass may implement at least one of the protocols
9185     // in LHS's protocol list. Example, SuperObj<P1> = lhs<P1,P2> is ok.
9186     // But not SuperObj<P1,P2,P3> = lhs<P1,P2>.
9187     llvm::SmallPtrSet<ObjCProtocolDecl *, 8> SuperClassInheritedProtocols;
9188     CollectInheritedProtocols(RHS->getInterface(), SuperClassInheritedProtocols);
9189     // Also, if RHS has explicit quelifiers, include them for comparing with LHS's
9190     // qualifiers.
9191     for (auto *RHSPI : RHS->quals())
9192       CollectInheritedProtocols(RHSPI, SuperClassInheritedProtocols);
9193     // If there is no protocols associated with RHS, it is not a match.
9194     if (SuperClassInheritedProtocols.empty())
9195       return false;
9196 
9197     for (const auto *LHSProto : LHS->quals()) {
9198       bool SuperImplementsProtocol = false;
9199       for (auto *SuperClassProto : SuperClassInheritedProtocols)
9200         if (SuperClassProto->lookupProtocolNamed(LHSProto->getIdentifier())) {
9201           SuperImplementsProtocol = true;
9202           break;
9203         }
9204       if (!SuperImplementsProtocol)
9205         return false;
9206     }
9207   }
9208 
9209   // If the LHS is specialized, we may need to check type arguments.
9210   if (LHS->isSpecialized()) {
9211     // Follow the superclass chain until we've matched the LHS class in the
9212     // hierarchy. This substitutes type arguments through.
9213     const ObjCObjectType *RHSSuper = RHS;
9214     while (!declaresSameEntity(RHSSuper->getInterface(), LHSInterface))
9215       RHSSuper = RHSSuper->getSuperClassType()->castAs<ObjCObjectType>();
9216 
9217     // If the RHS is specializd, compare type arguments.
9218     if (RHSSuper->isSpecialized() &&
9219         !sameObjCTypeArgs(*this, LHS->getInterface(),
9220                           LHS->getTypeArgs(), RHSSuper->getTypeArgs(),
9221                           /*stripKindOf=*/true)) {
9222       return false;
9223     }
9224   }
9225 
9226   return true;
9227 }
9228 
9229 bool ASTContext::areComparableObjCPointerTypes(QualType LHS, QualType RHS) {
9230   // get the "pointed to" types
9231   const auto *LHSOPT = LHS->getAs<ObjCObjectPointerType>();
9232   const auto *RHSOPT = RHS->getAs<ObjCObjectPointerType>();
9233 
9234   if (!LHSOPT || !RHSOPT)
9235     return false;
9236 
9237   return canAssignObjCInterfaces(LHSOPT, RHSOPT) ||
9238          canAssignObjCInterfaces(RHSOPT, LHSOPT);
9239 }
9240 
9241 bool ASTContext::canBindObjCObjectType(QualType To, QualType From) {
9242   return canAssignObjCInterfaces(
9243       getObjCObjectPointerType(To)->castAs<ObjCObjectPointerType>(),
9244       getObjCObjectPointerType(From)->castAs<ObjCObjectPointerType>());
9245 }
9246 
9247 /// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
9248 /// both shall have the identically qualified version of a compatible type.
9249 /// C99 6.2.7p1: Two types have compatible types if their types are the
9250 /// same. See 6.7.[2,3,5] for additional rules.
9251 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS,
9252                                     bool CompareUnqualified) {
9253   if (getLangOpts().CPlusPlus)
9254     return hasSameType(LHS, RHS);
9255 
9256   return !mergeTypes(LHS, RHS, false, CompareUnqualified).isNull();
9257 }
9258 
9259 bool ASTContext::propertyTypesAreCompatible(QualType LHS, QualType RHS) {
9260   return typesAreCompatible(LHS, RHS);
9261 }
9262 
9263 bool ASTContext::typesAreBlockPointerCompatible(QualType LHS, QualType RHS) {
9264   return !mergeTypes(LHS, RHS, true).isNull();
9265 }
9266 
9267 /// mergeTransparentUnionType - if T is a transparent union type and a member
9268 /// of T is compatible with SubType, return the merged type, else return
9269 /// QualType()
9270 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType,
9271                                                bool OfBlockPointer,
9272                                                bool Unqualified) {
9273   if (const RecordType *UT = T->getAsUnionType()) {
9274     RecordDecl *UD = UT->getDecl();
9275     if (UD->hasAttr<TransparentUnionAttr>()) {
9276       for (const auto *I : UD->fields()) {
9277         QualType ET = I->getType().getUnqualifiedType();
9278         QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified);
9279         if (!MT.isNull())
9280           return MT;
9281       }
9282     }
9283   }
9284 
9285   return {};
9286 }
9287 
9288 /// mergeFunctionParameterTypes - merge two types which appear as function
9289 /// parameter types
9290 QualType ASTContext::mergeFunctionParameterTypes(QualType lhs, QualType rhs,
9291                                                  bool OfBlockPointer,
9292                                                  bool Unqualified) {
9293   // GNU extension: two types are compatible if they appear as a function
9294   // argument, one of the types is a transparent union type and the other
9295   // type is compatible with a union member
9296   QualType lmerge = mergeTransparentUnionType(lhs, rhs, OfBlockPointer,
9297                                               Unqualified);
9298   if (!lmerge.isNull())
9299     return lmerge;
9300 
9301   QualType rmerge = mergeTransparentUnionType(rhs, lhs, OfBlockPointer,
9302                                               Unqualified);
9303   if (!rmerge.isNull())
9304     return rmerge;
9305 
9306   return mergeTypes(lhs, rhs, OfBlockPointer, Unqualified);
9307 }
9308 
9309 QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs,
9310                                         bool OfBlockPointer, bool Unqualified,
9311                                         bool AllowCXX) {
9312   const auto *lbase = lhs->castAs<FunctionType>();
9313   const auto *rbase = rhs->castAs<FunctionType>();
9314   const auto *lproto = dyn_cast<FunctionProtoType>(lbase);
9315   const auto *rproto = dyn_cast<FunctionProtoType>(rbase);
9316   bool allLTypes = true;
9317   bool allRTypes = true;
9318 
9319   // Check return type
9320   QualType retType;
9321   if (OfBlockPointer) {
9322     QualType RHS = rbase->getReturnType();
9323     QualType LHS = lbase->getReturnType();
9324     bool UnqualifiedResult = Unqualified;
9325     if (!UnqualifiedResult)
9326       UnqualifiedResult = (!RHS.hasQualifiers() && LHS.hasQualifiers());
9327     retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true);
9328   }
9329   else
9330     retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false,
9331                          Unqualified);
9332   if (retType.isNull())
9333     return {};
9334 
9335   if (Unqualified)
9336     retType = retType.getUnqualifiedType();
9337 
9338   CanQualType LRetType = getCanonicalType(lbase->getReturnType());
9339   CanQualType RRetType = getCanonicalType(rbase->getReturnType());
9340   if (Unqualified) {
9341     LRetType = LRetType.getUnqualifiedType();
9342     RRetType = RRetType.getUnqualifiedType();
9343   }
9344 
9345   if (getCanonicalType(retType) != LRetType)
9346     allLTypes = false;
9347   if (getCanonicalType(retType) != RRetType)
9348     allRTypes = false;
9349 
9350   // FIXME: double check this
9351   // FIXME: should we error if lbase->getRegParmAttr() != 0 &&
9352   //                           rbase->getRegParmAttr() != 0 &&
9353   //                           lbase->getRegParmAttr() != rbase->getRegParmAttr()?
9354   FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo();
9355   FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo();
9356 
9357   // Compatible functions must have compatible calling conventions
9358   if (lbaseInfo.getCC() != rbaseInfo.getCC())
9359     return {};
9360 
9361   // Regparm is part of the calling convention.
9362   if (lbaseInfo.getHasRegParm() != rbaseInfo.getHasRegParm())
9363     return {};
9364   if (lbaseInfo.getRegParm() != rbaseInfo.getRegParm())
9365     return {};
9366 
9367   if (lbaseInfo.getProducesResult() != rbaseInfo.getProducesResult())
9368     return {};
9369   if (lbaseInfo.getNoCallerSavedRegs() != rbaseInfo.getNoCallerSavedRegs())
9370     return {};
9371   if (lbaseInfo.getNoCfCheck() != rbaseInfo.getNoCfCheck())
9372     return {};
9373 
9374   // FIXME: some uses, e.g. conditional exprs, really want this to be 'both'.
9375   bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn();
9376 
9377   if (lbaseInfo.getNoReturn() != NoReturn)
9378     allLTypes = false;
9379   if (rbaseInfo.getNoReturn() != NoReturn)
9380     allRTypes = false;
9381 
9382   FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn);
9383 
9384   if (lproto && rproto) { // two C99 style function prototypes
9385     assert((AllowCXX ||
9386             (!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec())) &&
9387            "C++ shouldn't be here");
9388     // Compatible functions must have the same number of parameters
9389     if (lproto->getNumParams() != rproto->getNumParams())
9390       return {};
9391 
9392     // Variadic and non-variadic functions aren't compatible
9393     if (lproto->isVariadic() != rproto->isVariadic())
9394       return {};
9395 
9396     if (lproto->getMethodQuals() != rproto->getMethodQuals())
9397       return {};
9398 
9399     SmallVector<FunctionProtoType::ExtParameterInfo, 4> newParamInfos;
9400     bool canUseLeft, canUseRight;
9401     if (!mergeExtParameterInfo(lproto, rproto, canUseLeft, canUseRight,
9402                                newParamInfos))
9403       return {};
9404 
9405     if (!canUseLeft)
9406       allLTypes = false;
9407     if (!canUseRight)
9408       allRTypes = false;
9409 
9410     // Check parameter type compatibility
9411     SmallVector<QualType, 10> types;
9412     for (unsigned i = 0, n = lproto->getNumParams(); i < n; i++) {
9413       QualType lParamType = lproto->getParamType(i).getUnqualifiedType();
9414       QualType rParamType = rproto->getParamType(i).getUnqualifiedType();
9415       QualType paramType = mergeFunctionParameterTypes(
9416           lParamType, rParamType, OfBlockPointer, Unqualified);
9417       if (paramType.isNull())
9418         return {};
9419 
9420       if (Unqualified)
9421         paramType = paramType.getUnqualifiedType();
9422 
9423       types.push_back(paramType);
9424       if (Unqualified) {
9425         lParamType = lParamType.getUnqualifiedType();
9426         rParamType = rParamType.getUnqualifiedType();
9427       }
9428 
9429       if (getCanonicalType(paramType) != getCanonicalType(lParamType))
9430         allLTypes = false;
9431       if (getCanonicalType(paramType) != getCanonicalType(rParamType))
9432         allRTypes = false;
9433     }
9434 
9435     if (allLTypes) return lhs;
9436     if (allRTypes) return rhs;
9437 
9438     FunctionProtoType::ExtProtoInfo EPI = lproto->getExtProtoInfo();
9439     EPI.ExtInfo = einfo;
9440     EPI.ExtParameterInfos =
9441         newParamInfos.empty() ? nullptr : newParamInfos.data();
9442     return getFunctionType(retType, types, EPI);
9443   }
9444 
9445   if (lproto) allRTypes = false;
9446   if (rproto) allLTypes = false;
9447 
9448   const FunctionProtoType *proto = lproto ? lproto : rproto;
9449   if (proto) {
9450     assert((AllowCXX || !proto->hasExceptionSpec()) && "C++ shouldn't be here");
9451     if (proto->isVariadic())
9452       return {};
9453     // Check that the types are compatible with the types that
9454     // would result from default argument promotions (C99 6.7.5.3p15).
9455     // The only types actually affected are promotable integer
9456     // types and floats, which would be passed as a different
9457     // type depending on whether the prototype is visible.
9458     for (unsigned i = 0, n = proto->getNumParams(); i < n; ++i) {
9459       QualType paramTy = proto->getParamType(i);
9460 
9461       // Look at the converted type of enum types, since that is the type used
9462       // to pass enum values.
9463       if (const auto *Enum = paramTy->getAs<EnumType>()) {
9464         paramTy = Enum->getDecl()->getIntegerType();
9465         if (paramTy.isNull())
9466           return {};
9467       }
9468 
9469       if (paramTy->isPromotableIntegerType() ||
9470           getCanonicalType(paramTy).getUnqualifiedType() == FloatTy)
9471         return {};
9472     }
9473 
9474     if (allLTypes) return lhs;
9475     if (allRTypes) return rhs;
9476 
9477     FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo();
9478     EPI.ExtInfo = einfo;
9479     return getFunctionType(retType, proto->getParamTypes(), EPI);
9480   }
9481 
9482   if (allLTypes) return lhs;
9483   if (allRTypes) return rhs;
9484   return getFunctionNoProtoType(retType, einfo);
9485 }
9486 
9487 /// Given that we have an enum type and a non-enum type, try to merge them.
9488 static QualType mergeEnumWithInteger(ASTContext &Context, const EnumType *ET,
9489                                      QualType other, bool isBlockReturnType) {
9490   // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
9491   // a signed integer type, or an unsigned integer type.
9492   // Compatibility is based on the underlying type, not the promotion
9493   // type.
9494   QualType underlyingType = ET->getDecl()->getIntegerType();
9495   if (underlyingType.isNull())
9496     return {};
9497   if (Context.hasSameType(underlyingType, other))
9498     return other;
9499 
9500   // In block return types, we're more permissive and accept any
9501   // integral type of the same size.
9502   if (isBlockReturnType && other->isIntegerType() &&
9503       Context.getTypeSize(underlyingType) == Context.getTypeSize(other))
9504     return other;
9505 
9506   return {};
9507 }
9508 
9509 QualType ASTContext::mergeTypes(QualType LHS, QualType RHS,
9510                                 bool OfBlockPointer,
9511                                 bool Unqualified, bool BlockReturnType) {
9512   // C++ [expr]: If an expression initially has the type "reference to T", the
9513   // type is adjusted to "T" prior to any further analysis, the expression
9514   // designates the object or function denoted by the reference, and the
9515   // expression is an lvalue unless the reference is an rvalue reference and
9516   // the expression is a function call (possibly inside parentheses).
9517   if (LHS->getAs<ReferenceType>() || RHS->getAs<ReferenceType>())
9518     return {};
9519 
9520   if (Unqualified) {
9521     LHS = LHS.getUnqualifiedType();
9522     RHS = RHS.getUnqualifiedType();
9523   }
9524 
9525   QualType LHSCan = getCanonicalType(LHS),
9526            RHSCan = getCanonicalType(RHS);
9527 
9528   // If two types are identical, they are compatible.
9529   if (LHSCan == RHSCan)
9530     return LHS;
9531 
9532   // If the qualifiers are different, the types aren't compatible... mostly.
9533   Qualifiers LQuals = LHSCan.getLocalQualifiers();
9534   Qualifiers RQuals = RHSCan.getLocalQualifiers();
9535   if (LQuals != RQuals) {
9536     // If any of these qualifiers are different, we have a type
9537     // mismatch.
9538     if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
9539         LQuals.getAddressSpace() != RQuals.getAddressSpace() ||
9540         LQuals.getObjCLifetime() != RQuals.getObjCLifetime() ||
9541         LQuals.hasUnaligned() != RQuals.hasUnaligned())
9542       return {};
9543 
9544     // Exactly one GC qualifier difference is allowed: __strong is
9545     // okay if the other type has no GC qualifier but is an Objective
9546     // C object pointer (i.e. implicitly strong by default).  We fix
9547     // this by pretending that the unqualified type was actually
9548     // qualified __strong.
9549     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
9550     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
9551     assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
9552 
9553     if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
9554       return {};
9555 
9556     if (GC_L == Qualifiers::Strong && RHSCan->isObjCObjectPointerType()) {
9557       return mergeTypes(LHS, getObjCGCQualType(RHS, Qualifiers::Strong));
9558     }
9559     if (GC_R == Qualifiers::Strong && LHSCan->isObjCObjectPointerType()) {
9560       return mergeTypes(getObjCGCQualType(LHS, Qualifiers::Strong), RHS);
9561     }
9562     return {};
9563   }
9564 
9565   // Okay, qualifiers are equal.
9566 
9567   Type::TypeClass LHSClass = LHSCan->getTypeClass();
9568   Type::TypeClass RHSClass = RHSCan->getTypeClass();
9569 
9570   // We want to consider the two function types to be the same for these
9571   // comparisons, just force one to the other.
9572   if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
9573   if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
9574 
9575   // Same as above for arrays
9576   if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
9577     LHSClass = Type::ConstantArray;
9578   if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
9579     RHSClass = Type::ConstantArray;
9580 
9581   // ObjCInterfaces are just specialized ObjCObjects.
9582   if (LHSClass == Type::ObjCInterface) LHSClass = Type::ObjCObject;
9583   if (RHSClass == Type::ObjCInterface) RHSClass = Type::ObjCObject;
9584 
9585   // Canonicalize ExtVector -> Vector.
9586   if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
9587   if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
9588 
9589   // If the canonical type classes don't match.
9590   if (LHSClass != RHSClass) {
9591     // Note that we only have special rules for turning block enum
9592     // returns into block int returns, not vice-versa.
9593     if (const auto *ETy = LHS->getAs<EnumType>()) {
9594       return mergeEnumWithInteger(*this, ETy, RHS, false);
9595     }
9596     if (const EnumType* ETy = RHS->getAs<EnumType>()) {
9597       return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType);
9598     }
9599     // allow block pointer type to match an 'id' type.
9600     if (OfBlockPointer && !BlockReturnType) {
9601        if (LHS->isObjCIdType() && RHS->isBlockPointerType())
9602          return LHS;
9603       if (RHS->isObjCIdType() && LHS->isBlockPointerType())
9604         return RHS;
9605     }
9606 
9607     return {};
9608   }
9609 
9610   // The canonical type classes match.
9611   switch (LHSClass) {
9612 #define TYPE(Class, Base)
9613 #define ABSTRACT_TYPE(Class, Base)
9614 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
9615 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
9616 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
9617 #include "clang/AST/TypeNodes.inc"
9618     llvm_unreachable("Non-canonical and dependent types shouldn't get here");
9619 
9620   case Type::Auto:
9621   case Type::DeducedTemplateSpecialization:
9622   case Type::LValueReference:
9623   case Type::RValueReference:
9624   case Type::MemberPointer:
9625     llvm_unreachable("C++ should never be in mergeTypes");
9626 
9627   case Type::ObjCInterface:
9628   case Type::IncompleteArray:
9629   case Type::VariableArray:
9630   case Type::FunctionProto:
9631   case Type::ExtVector:
9632     llvm_unreachable("Types are eliminated above");
9633 
9634   case Type::Pointer:
9635   {
9636     // Merge two pointer types, while trying to preserve typedef info
9637     QualType LHSPointee = LHS->castAs<PointerType>()->getPointeeType();
9638     QualType RHSPointee = RHS->castAs<PointerType>()->getPointeeType();
9639     if (Unqualified) {
9640       LHSPointee = LHSPointee.getUnqualifiedType();
9641       RHSPointee = RHSPointee.getUnqualifiedType();
9642     }
9643     QualType ResultType = mergeTypes(LHSPointee, RHSPointee, false,
9644                                      Unqualified);
9645     if (ResultType.isNull())
9646       return {};
9647     if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
9648       return LHS;
9649     if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
9650       return RHS;
9651     return getPointerType(ResultType);
9652   }
9653   case Type::BlockPointer:
9654   {
9655     // Merge two block pointer types, while trying to preserve typedef info
9656     QualType LHSPointee = LHS->castAs<BlockPointerType>()->getPointeeType();
9657     QualType RHSPointee = RHS->castAs<BlockPointerType>()->getPointeeType();
9658     if (Unqualified) {
9659       LHSPointee = LHSPointee.getUnqualifiedType();
9660       RHSPointee = RHSPointee.getUnqualifiedType();
9661     }
9662     if (getLangOpts().OpenCL) {
9663       Qualifiers LHSPteeQual = LHSPointee.getQualifiers();
9664       Qualifiers RHSPteeQual = RHSPointee.getQualifiers();
9665       // Blocks can't be an expression in a ternary operator (OpenCL v2.0
9666       // 6.12.5) thus the following check is asymmetric.
9667       if (!LHSPteeQual.isAddressSpaceSupersetOf(RHSPteeQual))
9668         return {};
9669       LHSPteeQual.removeAddressSpace();
9670       RHSPteeQual.removeAddressSpace();
9671       LHSPointee =
9672           QualType(LHSPointee.getTypePtr(), LHSPteeQual.getAsOpaqueValue());
9673       RHSPointee =
9674           QualType(RHSPointee.getTypePtr(), RHSPteeQual.getAsOpaqueValue());
9675     }
9676     QualType ResultType = mergeTypes(LHSPointee, RHSPointee, OfBlockPointer,
9677                                      Unqualified);
9678     if (ResultType.isNull())
9679       return {};
9680     if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
9681       return LHS;
9682     if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
9683       return RHS;
9684     return getBlockPointerType(ResultType);
9685   }
9686   case Type::Atomic:
9687   {
9688     // Merge two pointer types, while trying to preserve typedef info
9689     QualType LHSValue = LHS->castAs<AtomicType>()->getValueType();
9690     QualType RHSValue = RHS->castAs<AtomicType>()->getValueType();
9691     if (Unqualified) {
9692       LHSValue = LHSValue.getUnqualifiedType();
9693       RHSValue = RHSValue.getUnqualifiedType();
9694     }
9695     QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
9696                                      Unqualified);
9697     if (ResultType.isNull())
9698       return {};
9699     if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
9700       return LHS;
9701     if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
9702       return RHS;
9703     return getAtomicType(ResultType);
9704   }
9705   case Type::ConstantArray:
9706   {
9707     const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
9708     const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
9709     if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
9710       return {};
9711 
9712     QualType LHSElem = getAsArrayType(LHS)->getElementType();
9713     QualType RHSElem = getAsArrayType(RHS)->getElementType();
9714     if (Unqualified) {
9715       LHSElem = LHSElem.getUnqualifiedType();
9716       RHSElem = RHSElem.getUnqualifiedType();
9717     }
9718 
9719     QualType ResultType = mergeTypes(LHSElem, RHSElem, false, Unqualified);
9720     if (ResultType.isNull())
9721       return {};
9722 
9723     const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
9724     const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
9725 
9726     // If either side is a variable array, and both are complete, check whether
9727     // the current dimension is definite.
9728     if (LVAT || RVAT) {
9729       auto SizeFetch = [this](const VariableArrayType* VAT,
9730           const ConstantArrayType* CAT)
9731           -> std::pair<bool,llvm::APInt> {
9732         if (VAT) {
9733           Optional<llvm::APSInt> TheInt;
9734           Expr *E = VAT->getSizeExpr();
9735           if (E && (TheInt = E->getIntegerConstantExpr(*this)))
9736             return std::make_pair(true, *TheInt);
9737           return std::make_pair(false, llvm::APSInt());
9738         }
9739         if (CAT)
9740           return std::make_pair(true, CAT->getSize());
9741         return std::make_pair(false, llvm::APInt());
9742       };
9743 
9744       bool HaveLSize, HaveRSize;
9745       llvm::APInt LSize, RSize;
9746       std::tie(HaveLSize, LSize) = SizeFetch(LVAT, LCAT);
9747       std::tie(HaveRSize, RSize) = SizeFetch(RVAT, RCAT);
9748       if (HaveLSize && HaveRSize && !llvm::APInt::isSameValue(LSize, RSize))
9749         return {}; // Definite, but unequal, array dimension
9750     }
9751 
9752     if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
9753       return LHS;
9754     if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
9755       return RHS;
9756     if (LCAT)
9757       return getConstantArrayType(ResultType, LCAT->getSize(),
9758                                   LCAT->getSizeExpr(),
9759                                   ArrayType::ArraySizeModifier(), 0);
9760     if (RCAT)
9761       return getConstantArrayType(ResultType, RCAT->getSize(),
9762                                   RCAT->getSizeExpr(),
9763                                   ArrayType::ArraySizeModifier(), 0);
9764     if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
9765       return LHS;
9766     if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
9767       return RHS;
9768     if (LVAT) {
9769       // FIXME: This isn't correct! But tricky to implement because
9770       // the array's size has to be the size of LHS, but the type
9771       // has to be different.
9772       return LHS;
9773     }
9774     if (RVAT) {
9775       // FIXME: This isn't correct! But tricky to implement because
9776       // the array's size has to be the size of RHS, but the type
9777       // has to be different.
9778       return RHS;
9779     }
9780     if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
9781     if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
9782     return getIncompleteArrayType(ResultType,
9783                                   ArrayType::ArraySizeModifier(), 0);
9784   }
9785   case Type::FunctionNoProto:
9786     return mergeFunctionTypes(LHS, RHS, OfBlockPointer, Unqualified);
9787   case Type::Record:
9788   case Type::Enum:
9789     return {};
9790   case Type::Builtin:
9791     // Only exactly equal builtin types are compatible, which is tested above.
9792     return {};
9793   case Type::Complex:
9794     // Distinct complex types are incompatible.
9795     return {};
9796   case Type::Vector:
9797     // FIXME: The merged type should be an ExtVector!
9798     if (areCompatVectorTypes(LHSCan->castAs<VectorType>(),
9799                              RHSCan->castAs<VectorType>()))
9800       return LHS;
9801     return {};
9802   case Type::ConstantMatrix:
9803     if (areCompatMatrixTypes(LHSCan->castAs<ConstantMatrixType>(),
9804                              RHSCan->castAs<ConstantMatrixType>()))
9805       return LHS;
9806     return {};
9807   case Type::ObjCObject: {
9808     // Check if the types are assignment compatible.
9809     // FIXME: This should be type compatibility, e.g. whether
9810     // "LHS x; RHS x;" at global scope is legal.
9811     if (canAssignObjCInterfaces(LHS->castAs<ObjCObjectType>(),
9812                                 RHS->castAs<ObjCObjectType>()))
9813       return LHS;
9814     return {};
9815   }
9816   case Type::ObjCObjectPointer:
9817     if (OfBlockPointer) {
9818       if (canAssignObjCInterfacesInBlockPointer(
9819               LHS->castAs<ObjCObjectPointerType>(),
9820               RHS->castAs<ObjCObjectPointerType>(), BlockReturnType))
9821         return LHS;
9822       return {};
9823     }
9824     if (canAssignObjCInterfaces(LHS->castAs<ObjCObjectPointerType>(),
9825                                 RHS->castAs<ObjCObjectPointerType>()))
9826       return LHS;
9827     return {};
9828   case Type::Pipe:
9829     assert(LHS != RHS &&
9830            "Equivalent pipe types should have already been handled!");
9831     return {};
9832   case Type::ExtInt: {
9833     // Merge two ext-int types, while trying to preserve typedef info.
9834     bool LHSUnsigned  = LHS->castAs<ExtIntType>()->isUnsigned();
9835     bool RHSUnsigned = RHS->castAs<ExtIntType>()->isUnsigned();
9836     unsigned LHSBits = LHS->castAs<ExtIntType>()->getNumBits();
9837     unsigned RHSBits = RHS->castAs<ExtIntType>()->getNumBits();
9838 
9839     // Like unsigned/int, shouldn't have a type if they dont match.
9840     if (LHSUnsigned != RHSUnsigned)
9841       return {};
9842 
9843     if (LHSBits != RHSBits)
9844       return {};
9845     return LHS;
9846   }
9847   }
9848 
9849   llvm_unreachable("Invalid Type::Class!");
9850 }
9851 
9852 bool ASTContext::mergeExtParameterInfo(
9853     const FunctionProtoType *FirstFnType, const FunctionProtoType *SecondFnType,
9854     bool &CanUseFirst, bool &CanUseSecond,
9855     SmallVectorImpl<FunctionProtoType::ExtParameterInfo> &NewParamInfos) {
9856   assert(NewParamInfos.empty() && "param info list not empty");
9857   CanUseFirst = CanUseSecond = true;
9858   bool FirstHasInfo = FirstFnType->hasExtParameterInfos();
9859   bool SecondHasInfo = SecondFnType->hasExtParameterInfos();
9860 
9861   // Fast path: if the first type doesn't have ext parameter infos,
9862   // we match if and only if the second type also doesn't have them.
9863   if (!FirstHasInfo && !SecondHasInfo)
9864     return true;
9865 
9866   bool NeedParamInfo = false;
9867   size_t E = FirstHasInfo ? FirstFnType->getExtParameterInfos().size()
9868                           : SecondFnType->getExtParameterInfos().size();
9869 
9870   for (size_t I = 0; I < E; ++I) {
9871     FunctionProtoType::ExtParameterInfo FirstParam, SecondParam;
9872     if (FirstHasInfo)
9873       FirstParam = FirstFnType->getExtParameterInfo(I);
9874     if (SecondHasInfo)
9875       SecondParam = SecondFnType->getExtParameterInfo(I);
9876 
9877     // Cannot merge unless everything except the noescape flag matches.
9878     if (FirstParam.withIsNoEscape(false) != SecondParam.withIsNoEscape(false))
9879       return false;
9880 
9881     bool FirstNoEscape = FirstParam.isNoEscape();
9882     bool SecondNoEscape = SecondParam.isNoEscape();
9883     bool IsNoEscape = FirstNoEscape && SecondNoEscape;
9884     NewParamInfos.push_back(FirstParam.withIsNoEscape(IsNoEscape));
9885     if (NewParamInfos.back().getOpaqueValue())
9886       NeedParamInfo = true;
9887     if (FirstNoEscape != IsNoEscape)
9888       CanUseFirst = false;
9889     if (SecondNoEscape != IsNoEscape)
9890       CanUseSecond = false;
9891   }
9892 
9893   if (!NeedParamInfo)
9894     NewParamInfos.clear();
9895 
9896   return true;
9897 }
9898 
9899 void ASTContext::ResetObjCLayout(const ObjCContainerDecl *CD) {
9900   ObjCLayouts[CD] = nullptr;
9901 }
9902 
9903 /// mergeObjCGCQualifiers - This routine merges ObjC's GC attribute of 'LHS' and
9904 /// 'RHS' attributes and returns the merged version; including for function
9905 /// return types.
9906 QualType ASTContext::mergeObjCGCQualifiers(QualType LHS, QualType RHS) {
9907   QualType LHSCan = getCanonicalType(LHS),
9908   RHSCan = getCanonicalType(RHS);
9909   // If two types are identical, they are compatible.
9910   if (LHSCan == RHSCan)
9911     return LHS;
9912   if (RHSCan->isFunctionType()) {
9913     if (!LHSCan->isFunctionType())
9914       return {};
9915     QualType OldReturnType =
9916         cast<FunctionType>(RHSCan.getTypePtr())->getReturnType();
9917     QualType NewReturnType =
9918         cast<FunctionType>(LHSCan.getTypePtr())->getReturnType();
9919     QualType ResReturnType =
9920       mergeObjCGCQualifiers(NewReturnType, OldReturnType);
9921     if (ResReturnType.isNull())
9922       return {};
9923     if (ResReturnType == NewReturnType || ResReturnType == OldReturnType) {
9924       // id foo(); ... __strong id foo(); or: __strong id foo(); ... id foo();
9925       // In either case, use OldReturnType to build the new function type.
9926       const auto *F = LHS->castAs<FunctionType>();
9927       if (const auto *FPT = cast<FunctionProtoType>(F)) {
9928         FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
9929         EPI.ExtInfo = getFunctionExtInfo(LHS);
9930         QualType ResultType =
9931             getFunctionType(OldReturnType, FPT->getParamTypes(), EPI);
9932         return ResultType;
9933       }
9934     }
9935     return {};
9936   }
9937 
9938   // If the qualifiers are different, the types can still be merged.
9939   Qualifiers LQuals = LHSCan.getLocalQualifiers();
9940   Qualifiers RQuals = RHSCan.getLocalQualifiers();
9941   if (LQuals != RQuals) {
9942     // If any of these qualifiers are different, we have a type mismatch.
9943     if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
9944         LQuals.getAddressSpace() != RQuals.getAddressSpace())
9945       return {};
9946 
9947     // Exactly one GC qualifier difference is allowed: __strong is
9948     // okay if the other type has no GC qualifier but is an Objective
9949     // C object pointer (i.e. implicitly strong by default).  We fix
9950     // this by pretending that the unqualified type was actually
9951     // qualified __strong.
9952     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
9953     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
9954     assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
9955 
9956     if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
9957       return {};
9958 
9959     if (GC_L == Qualifiers::Strong)
9960       return LHS;
9961     if (GC_R == Qualifiers::Strong)
9962       return RHS;
9963     return {};
9964   }
9965 
9966   if (LHSCan->isObjCObjectPointerType() && RHSCan->isObjCObjectPointerType()) {
9967     QualType LHSBaseQT = LHS->castAs<ObjCObjectPointerType>()->getPointeeType();
9968     QualType RHSBaseQT = RHS->castAs<ObjCObjectPointerType>()->getPointeeType();
9969     QualType ResQT = mergeObjCGCQualifiers(LHSBaseQT, RHSBaseQT);
9970     if (ResQT == LHSBaseQT)
9971       return LHS;
9972     if (ResQT == RHSBaseQT)
9973       return RHS;
9974   }
9975   return {};
9976 }
9977 
9978 //===----------------------------------------------------------------------===//
9979 //                         Integer Predicates
9980 //===----------------------------------------------------------------------===//
9981 
9982 unsigned ASTContext::getIntWidth(QualType T) const {
9983   if (const auto *ET = T->getAs<EnumType>())
9984     T = ET->getDecl()->getIntegerType();
9985   if (T->isBooleanType())
9986     return 1;
9987   if(const auto *EIT = T->getAs<ExtIntType>())
9988     return EIT->getNumBits();
9989   // For builtin types, just use the standard type sizing method
9990   return (unsigned)getTypeSize(T);
9991 }
9992 
9993 QualType ASTContext::getCorrespondingUnsignedType(QualType T) const {
9994   assert((T->hasSignedIntegerRepresentation() || T->isSignedFixedPointType()) &&
9995          "Unexpected type");
9996 
9997   // Turn <4 x signed int> -> <4 x unsigned int>
9998   if (const auto *VTy = T->getAs<VectorType>())
9999     return getVectorType(getCorrespondingUnsignedType(VTy->getElementType()),
10000                          VTy->getNumElements(), VTy->getVectorKind());
10001 
10002   // For enums, we return the unsigned version of the base type.
10003   if (const auto *ETy = T->getAs<EnumType>())
10004     T = ETy->getDecl()->getIntegerType();
10005 
10006   switch (T->castAs<BuiltinType>()->getKind()) {
10007   case BuiltinType::Char_S:
10008   case BuiltinType::SChar:
10009     return UnsignedCharTy;
10010   case BuiltinType::Short:
10011     return UnsignedShortTy;
10012   case BuiltinType::Int:
10013     return UnsignedIntTy;
10014   case BuiltinType::Long:
10015     return UnsignedLongTy;
10016   case BuiltinType::LongLong:
10017     return UnsignedLongLongTy;
10018   case BuiltinType::Int128:
10019     return UnsignedInt128Ty;
10020   // wchar_t is special. It is either signed or not, but when it's signed,
10021   // there's no matching "unsigned wchar_t". Therefore we return the unsigned
10022   // version of it's underlying type instead.
10023   case BuiltinType::WChar_S:
10024     return getUnsignedWCharType();
10025 
10026   case BuiltinType::ShortAccum:
10027     return UnsignedShortAccumTy;
10028   case BuiltinType::Accum:
10029     return UnsignedAccumTy;
10030   case BuiltinType::LongAccum:
10031     return UnsignedLongAccumTy;
10032   case BuiltinType::SatShortAccum:
10033     return SatUnsignedShortAccumTy;
10034   case BuiltinType::SatAccum:
10035     return SatUnsignedAccumTy;
10036   case BuiltinType::SatLongAccum:
10037     return SatUnsignedLongAccumTy;
10038   case BuiltinType::ShortFract:
10039     return UnsignedShortFractTy;
10040   case BuiltinType::Fract:
10041     return UnsignedFractTy;
10042   case BuiltinType::LongFract:
10043     return UnsignedLongFractTy;
10044   case BuiltinType::SatShortFract:
10045     return SatUnsignedShortFractTy;
10046   case BuiltinType::SatFract:
10047     return SatUnsignedFractTy;
10048   case BuiltinType::SatLongFract:
10049     return SatUnsignedLongFractTy;
10050   default:
10051     llvm_unreachable("Unexpected signed integer or fixed point type");
10052   }
10053 }
10054 
10055 ASTMutationListener::~ASTMutationListener() = default;
10056 
10057 void ASTMutationListener::DeducedReturnType(const FunctionDecl *FD,
10058                                             QualType ReturnType) {}
10059 
10060 //===----------------------------------------------------------------------===//
10061 //                          Builtin Type Computation
10062 //===----------------------------------------------------------------------===//
10063 
10064 /// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the
10065 /// pointer over the consumed characters.  This returns the resultant type.  If
10066 /// AllowTypeModifiers is false then modifier like * are not parsed, just basic
10067 /// types.  This allows "v2i*" to be parsed as a pointer to a v2i instead of
10068 /// a vector of "i*".
10069 ///
10070 /// RequiresICE is filled in on return to indicate whether the value is required
10071 /// to be an Integer Constant Expression.
10072 static QualType DecodeTypeFromStr(const char *&Str, const ASTContext &Context,
10073                                   ASTContext::GetBuiltinTypeError &Error,
10074                                   bool &RequiresICE,
10075                                   bool AllowTypeModifiers) {
10076   // Modifiers.
10077   int HowLong = 0;
10078   bool Signed = false, Unsigned = false;
10079   RequiresICE = false;
10080 
10081   // Read the prefixed modifiers first.
10082   bool Done = false;
10083   #ifndef NDEBUG
10084   bool IsSpecial = false;
10085   #endif
10086   while (!Done) {
10087     switch (*Str++) {
10088     default: Done = true; --Str; break;
10089     case 'I':
10090       RequiresICE = true;
10091       break;
10092     case 'S':
10093       assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
10094       assert(!Signed && "Can't use 'S' modifier multiple times!");
10095       Signed = true;
10096       break;
10097     case 'U':
10098       assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
10099       assert(!Unsigned && "Can't use 'U' modifier multiple times!");
10100       Unsigned = true;
10101       break;
10102     case 'L':
10103       assert(!IsSpecial && "Can't use 'L' with 'W', 'N', 'Z' or 'O' modifiers");
10104       assert(HowLong <= 2 && "Can't have LLLL modifier");
10105       ++HowLong;
10106       break;
10107     case 'N':
10108       // 'N' behaves like 'L' for all non LP64 targets and 'int' otherwise.
10109       assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!");
10110       assert(HowLong == 0 && "Can't use both 'L' and 'N' modifiers!");
10111       #ifndef NDEBUG
10112       IsSpecial = true;
10113       #endif
10114       if (Context.getTargetInfo().getLongWidth() == 32)
10115         ++HowLong;
10116       break;
10117     case 'W':
10118       // This modifier represents int64 type.
10119       assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!");
10120       assert(HowLong == 0 && "Can't use both 'L' and 'W' modifiers!");
10121       #ifndef NDEBUG
10122       IsSpecial = true;
10123       #endif
10124       switch (Context.getTargetInfo().getInt64Type()) {
10125       default:
10126         llvm_unreachable("Unexpected integer type");
10127       case TargetInfo::SignedLong:
10128         HowLong = 1;
10129         break;
10130       case TargetInfo::SignedLongLong:
10131         HowLong = 2;
10132         break;
10133       }
10134       break;
10135     case 'Z':
10136       // This modifier represents int32 type.
10137       assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!");
10138       assert(HowLong == 0 && "Can't use both 'L' and 'Z' modifiers!");
10139       #ifndef NDEBUG
10140       IsSpecial = true;
10141       #endif
10142       switch (Context.getTargetInfo().getIntTypeByWidth(32, true)) {
10143       default:
10144         llvm_unreachable("Unexpected integer type");
10145       case TargetInfo::SignedInt:
10146         HowLong = 0;
10147         break;
10148       case TargetInfo::SignedLong:
10149         HowLong = 1;
10150         break;
10151       case TargetInfo::SignedLongLong:
10152         HowLong = 2;
10153         break;
10154       }
10155       break;
10156     case 'O':
10157       assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!");
10158       assert(HowLong == 0 && "Can't use both 'L' and 'O' modifiers!");
10159       #ifndef NDEBUG
10160       IsSpecial = true;
10161       #endif
10162       if (Context.getLangOpts().OpenCL)
10163         HowLong = 1;
10164       else
10165         HowLong = 2;
10166       break;
10167     }
10168   }
10169 
10170   QualType Type;
10171 
10172   // Read the base type.
10173   switch (*Str++) {
10174   default: llvm_unreachable("Unknown builtin type letter!");
10175   case 'y':
10176     assert(HowLong == 0 && !Signed && !Unsigned &&
10177            "Bad modifiers used with 'y'!");
10178     Type = Context.BFloat16Ty;
10179     break;
10180   case 'v':
10181     assert(HowLong == 0 && !Signed && !Unsigned &&
10182            "Bad modifiers used with 'v'!");
10183     Type = Context.VoidTy;
10184     break;
10185   case 'h':
10186     assert(HowLong == 0 && !Signed && !Unsigned &&
10187            "Bad modifiers used with 'h'!");
10188     Type = Context.HalfTy;
10189     break;
10190   case 'f':
10191     assert(HowLong == 0 && !Signed && !Unsigned &&
10192            "Bad modifiers used with 'f'!");
10193     Type = Context.FloatTy;
10194     break;
10195   case 'd':
10196     assert(HowLong < 3 && !Signed && !Unsigned &&
10197            "Bad modifiers used with 'd'!");
10198     if (HowLong == 1)
10199       Type = Context.LongDoubleTy;
10200     else if (HowLong == 2)
10201       Type = Context.Float128Ty;
10202     else
10203       Type = Context.DoubleTy;
10204     break;
10205   case 's':
10206     assert(HowLong == 0 && "Bad modifiers used with 's'!");
10207     if (Unsigned)
10208       Type = Context.UnsignedShortTy;
10209     else
10210       Type = Context.ShortTy;
10211     break;
10212   case 'i':
10213     if (HowLong == 3)
10214       Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
10215     else if (HowLong == 2)
10216       Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
10217     else if (HowLong == 1)
10218       Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy;
10219     else
10220       Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy;
10221     break;
10222   case 'c':
10223     assert(HowLong == 0 && "Bad modifiers used with 'c'!");
10224     if (Signed)
10225       Type = Context.SignedCharTy;
10226     else if (Unsigned)
10227       Type = Context.UnsignedCharTy;
10228     else
10229       Type = Context.CharTy;
10230     break;
10231   case 'b': // boolean
10232     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!");
10233     Type = Context.BoolTy;
10234     break;
10235   case 'z':  // size_t.
10236     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!");
10237     Type = Context.getSizeType();
10238     break;
10239   case 'w':  // wchar_t.
10240     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'w'!");
10241     Type = Context.getWideCharType();
10242     break;
10243   case 'F':
10244     Type = Context.getCFConstantStringType();
10245     break;
10246   case 'G':
10247     Type = Context.getObjCIdType();
10248     break;
10249   case 'H':
10250     Type = Context.getObjCSelType();
10251     break;
10252   case 'M':
10253     Type = Context.getObjCSuperType();
10254     break;
10255   case 'a':
10256     Type = Context.getBuiltinVaListType();
10257     assert(!Type.isNull() && "builtin va list type not initialized!");
10258     break;
10259   case 'A':
10260     // This is a "reference" to a va_list; however, what exactly
10261     // this means depends on how va_list is defined. There are two
10262     // different kinds of va_list: ones passed by value, and ones
10263     // passed by reference.  An example of a by-value va_list is
10264     // x86, where va_list is a char*. An example of by-ref va_list
10265     // is x86-64, where va_list is a __va_list_tag[1]. For x86,
10266     // we want this argument to be a char*&; for x86-64, we want
10267     // it to be a __va_list_tag*.
10268     Type = Context.getBuiltinVaListType();
10269     assert(!Type.isNull() && "builtin va list type not initialized!");
10270     if (Type->isArrayType())
10271       Type = Context.getArrayDecayedType(Type);
10272     else
10273       Type = Context.getLValueReferenceType(Type);
10274     break;
10275   case 'q': {
10276     char *End;
10277     unsigned NumElements = strtoul(Str, &End, 10);
10278     assert(End != Str && "Missing vector size");
10279     Str = End;
10280 
10281     QualType ElementType = DecodeTypeFromStr(Str, Context, Error,
10282                                              RequiresICE, false);
10283     assert(!RequiresICE && "Can't require vector ICE");
10284 
10285     Type = Context.getScalableVectorType(ElementType, NumElements);
10286     break;
10287   }
10288   case 'V': {
10289     char *End;
10290     unsigned NumElements = strtoul(Str, &End, 10);
10291     assert(End != Str && "Missing vector size");
10292     Str = End;
10293 
10294     QualType ElementType = DecodeTypeFromStr(Str, Context, Error,
10295                                              RequiresICE, false);
10296     assert(!RequiresICE && "Can't require vector ICE");
10297 
10298     // TODO: No way to make AltiVec vectors in builtins yet.
10299     Type = Context.getVectorType(ElementType, NumElements,
10300                                  VectorType::GenericVector);
10301     break;
10302   }
10303   case 'E': {
10304     char *End;
10305 
10306     unsigned NumElements = strtoul(Str, &End, 10);
10307     assert(End != Str && "Missing vector size");
10308 
10309     Str = End;
10310 
10311     QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
10312                                              false);
10313     Type = Context.getExtVectorType(ElementType, NumElements);
10314     break;
10315   }
10316   case 'X': {
10317     QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
10318                                              false);
10319     assert(!RequiresICE && "Can't require complex ICE");
10320     Type = Context.getComplexType(ElementType);
10321     break;
10322   }
10323   case 'Y':
10324     Type = Context.getPointerDiffType();
10325     break;
10326   case 'P':
10327     Type = Context.getFILEType();
10328     if (Type.isNull()) {
10329       Error = ASTContext::GE_Missing_stdio;
10330       return {};
10331     }
10332     break;
10333   case 'J':
10334     if (Signed)
10335       Type = Context.getsigjmp_bufType();
10336     else
10337       Type = Context.getjmp_bufType();
10338 
10339     if (Type.isNull()) {
10340       Error = ASTContext::GE_Missing_setjmp;
10341       return {};
10342     }
10343     break;
10344   case 'K':
10345     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'K'!");
10346     Type = Context.getucontext_tType();
10347 
10348     if (Type.isNull()) {
10349       Error = ASTContext::GE_Missing_ucontext;
10350       return {};
10351     }
10352     break;
10353   case 'p':
10354     Type = Context.getProcessIDType();
10355     break;
10356   }
10357 
10358   // If there are modifiers and if we're allowed to parse them, go for it.
10359   Done = !AllowTypeModifiers;
10360   while (!Done) {
10361     switch (char c = *Str++) {
10362     default: Done = true; --Str; break;
10363     case '*':
10364     case '&': {
10365       // Both pointers and references can have their pointee types
10366       // qualified with an address space.
10367       char *End;
10368       unsigned AddrSpace = strtoul(Str, &End, 10);
10369       if (End != Str) {
10370         // Note AddrSpace == 0 is not the same as an unspecified address space.
10371         Type = Context.getAddrSpaceQualType(
10372           Type,
10373           Context.getLangASForBuiltinAddressSpace(AddrSpace));
10374         Str = End;
10375       }
10376       if (c == '*')
10377         Type = Context.getPointerType(Type);
10378       else
10379         Type = Context.getLValueReferenceType(Type);
10380       break;
10381     }
10382     // FIXME: There's no way to have a built-in with an rvalue ref arg.
10383     case 'C':
10384       Type = Type.withConst();
10385       break;
10386     case 'D':
10387       Type = Context.getVolatileType(Type);
10388       break;
10389     case 'R':
10390       Type = Type.withRestrict();
10391       break;
10392     }
10393   }
10394 
10395   assert((!RequiresICE || Type->isIntegralOrEnumerationType()) &&
10396          "Integer constant 'I' type must be an integer");
10397 
10398   return Type;
10399 }
10400 
10401 // On some targets such as PowerPC, some of the builtins are defined with custom
10402 // type decriptors for target-dependent types. These descriptors are decoded in
10403 // other functions, but it may be useful to be able to fall back to default
10404 // descriptor decoding to define builtins mixing target-dependent and target-
10405 // independent types. This function allows decoding one type descriptor with
10406 // default decoding.
10407 QualType ASTContext::DecodeTypeStr(const char *&Str, const ASTContext &Context,
10408                                    GetBuiltinTypeError &Error, bool &RequireICE,
10409                                    bool AllowTypeModifiers) const {
10410   return DecodeTypeFromStr(Str, Context, Error, RequireICE, AllowTypeModifiers);
10411 }
10412 
10413 /// GetBuiltinType - Return the type for the specified builtin.
10414 QualType ASTContext::GetBuiltinType(unsigned Id,
10415                                     GetBuiltinTypeError &Error,
10416                                     unsigned *IntegerConstantArgs) const {
10417   const char *TypeStr = BuiltinInfo.getTypeString(Id);
10418   if (TypeStr[0] == '\0') {
10419     Error = GE_Missing_type;
10420     return {};
10421   }
10422 
10423   SmallVector<QualType, 8> ArgTypes;
10424 
10425   bool RequiresICE = false;
10426   Error = GE_None;
10427   QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error,
10428                                        RequiresICE, true);
10429   if (Error != GE_None)
10430     return {};
10431 
10432   assert(!RequiresICE && "Result of intrinsic cannot be required to be an ICE");
10433 
10434   while (TypeStr[0] && TypeStr[0] != '.') {
10435     QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error, RequiresICE, true);
10436     if (Error != GE_None)
10437       return {};
10438 
10439     // If this argument is required to be an IntegerConstantExpression and the
10440     // caller cares, fill in the bitmask we return.
10441     if (RequiresICE && IntegerConstantArgs)
10442       *IntegerConstantArgs |= 1 << ArgTypes.size();
10443 
10444     // Do array -> pointer decay.  The builtin should use the decayed type.
10445     if (Ty->isArrayType())
10446       Ty = getArrayDecayedType(Ty);
10447 
10448     ArgTypes.push_back(Ty);
10449   }
10450 
10451   if (Id == Builtin::BI__GetExceptionInfo)
10452     return {};
10453 
10454   assert((TypeStr[0] != '.' || TypeStr[1] == 0) &&
10455          "'.' should only occur at end of builtin type list!");
10456 
10457   bool Variadic = (TypeStr[0] == '.');
10458 
10459   FunctionType::ExtInfo EI(getDefaultCallingConvention(
10460       Variadic, /*IsCXXMethod=*/false, /*IsBuiltin=*/true));
10461   if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
10462 
10463 
10464   // We really shouldn't be making a no-proto type here.
10465   if (ArgTypes.empty() && Variadic && !getLangOpts().CPlusPlus)
10466     return getFunctionNoProtoType(ResType, EI);
10467 
10468   FunctionProtoType::ExtProtoInfo EPI;
10469   EPI.ExtInfo = EI;
10470   EPI.Variadic = Variadic;
10471   if (getLangOpts().CPlusPlus && BuiltinInfo.isNoThrow(Id))
10472     EPI.ExceptionSpec.Type =
10473         getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone;
10474 
10475   return getFunctionType(ResType, ArgTypes, EPI);
10476 }
10477 
10478 static GVALinkage basicGVALinkageForFunction(const ASTContext &Context,
10479                                              const FunctionDecl *FD) {
10480   if (!FD->isExternallyVisible())
10481     return GVA_Internal;
10482 
10483   // Non-user-provided functions get emitted as weak definitions with every
10484   // use, no matter whether they've been explicitly instantiated etc.
10485   if (const auto *MD = dyn_cast<CXXMethodDecl>(FD))
10486     if (!MD->isUserProvided())
10487       return GVA_DiscardableODR;
10488 
10489   GVALinkage External;
10490   switch (FD->getTemplateSpecializationKind()) {
10491   case TSK_Undeclared:
10492   case TSK_ExplicitSpecialization:
10493     External = GVA_StrongExternal;
10494     break;
10495 
10496   case TSK_ExplicitInstantiationDefinition:
10497     return GVA_StrongODR;
10498 
10499   // C++11 [temp.explicit]p10:
10500   //   [ Note: The intent is that an inline function that is the subject of
10501   //   an explicit instantiation declaration will still be implicitly
10502   //   instantiated when used so that the body can be considered for
10503   //   inlining, but that no out-of-line copy of the inline function would be
10504   //   generated in the translation unit. -- end note ]
10505   case TSK_ExplicitInstantiationDeclaration:
10506     return GVA_AvailableExternally;
10507 
10508   case TSK_ImplicitInstantiation:
10509     External = GVA_DiscardableODR;
10510     break;
10511   }
10512 
10513   if (!FD->isInlined())
10514     return External;
10515 
10516   if ((!Context.getLangOpts().CPlusPlus &&
10517        !Context.getTargetInfo().getCXXABI().isMicrosoft() &&
10518        !FD->hasAttr<DLLExportAttr>()) ||
10519       FD->hasAttr<GNUInlineAttr>()) {
10520     // FIXME: This doesn't match gcc's behavior for dllexport inline functions.
10521 
10522     // GNU or C99 inline semantics. Determine whether this symbol should be
10523     // externally visible.
10524     if (FD->isInlineDefinitionExternallyVisible())
10525       return External;
10526 
10527     // C99 inline semantics, where the symbol is not externally visible.
10528     return GVA_AvailableExternally;
10529   }
10530 
10531   // Functions specified with extern and inline in -fms-compatibility mode
10532   // forcibly get emitted.  While the body of the function cannot be later
10533   // replaced, the function definition cannot be discarded.
10534   if (FD->isMSExternInline())
10535     return GVA_StrongODR;
10536 
10537   return GVA_DiscardableODR;
10538 }
10539 
10540 static GVALinkage adjustGVALinkageForAttributes(const ASTContext &Context,
10541                                                 const Decl *D, GVALinkage L) {
10542   // See http://msdn.microsoft.com/en-us/library/xa0d9ste.aspx
10543   // dllexport/dllimport on inline functions.
10544   if (D->hasAttr<DLLImportAttr>()) {
10545     if (L == GVA_DiscardableODR || L == GVA_StrongODR)
10546       return GVA_AvailableExternally;
10547   } else if (D->hasAttr<DLLExportAttr>()) {
10548     if (L == GVA_DiscardableODR)
10549       return GVA_StrongODR;
10550   } else if (Context.getLangOpts().CUDA && Context.getLangOpts().CUDAIsDevice) {
10551     // Device-side functions with __global__ attribute must always be
10552     // visible externally so they can be launched from host.
10553     if (D->hasAttr<CUDAGlobalAttr>() &&
10554         (L == GVA_DiscardableODR || L == GVA_Internal))
10555       return GVA_StrongODR;
10556     // Single source offloading languages like CUDA/HIP need to be able to
10557     // access static device variables from host code of the same compilation
10558     // unit. This is done by externalizing the static variable.
10559     if (Context.shouldExternalizeStaticVar(D))
10560       return GVA_StrongExternal;
10561   }
10562   return L;
10563 }
10564 
10565 /// Adjust the GVALinkage for a declaration based on what an external AST source
10566 /// knows about whether there can be other definitions of this declaration.
10567 static GVALinkage
10568 adjustGVALinkageForExternalDefinitionKind(const ASTContext &Ctx, const Decl *D,
10569                                           GVALinkage L) {
10570   ExternalASTSource *Source = Ctx.getExternalSource();
10571   if (!Source)
10572     return L;
10573 
10574   switch (Source->hasExternalDefinitions(D)) {
10575   case ExternalASTSource::EK_Never:
10576     // Other translation units rely on us to provide the definition.
10577     if (L == GVA_DiscardableODR)
10578       return GVA_StrongODR;
10579     break;
10580 
10581   case ExternalASTSource::EK_Always:
10582     return GVA_AvailableExternally;
10583 
10584   case ExternalASTSource::EK_ReplyHazy:
10585     break;
10586   }
10587   return L;
10588 }
10589 
10590 GVALinkage ASTContext::GetGVALinkageForFunction(const FunctionDecl *FD) const {
10591   return adjustGVALinkageForExternalDefinitionKind(*this, FD,
10592            adjustGVALinkageForAttributes(*this, FD,
10593              basicGVALinkageForFunction(*this, FD)));
10594 }
10595 
10596 static GVALinkage basicGVALinkageForVariable(const ASTContext &Context,
10597                                              const VarDecl *VD) {
10598   if (!VD->isExternallyVisible())
10599     return GVA_Internal;
10600 
10601   if (VD->isStaticLocal()) {
10602     const DeclContext *LexicalContext = VD->getParentFunctionOrMethod();
10603     while (LexicalContext && !isa<FunctionDecl>(LexicalContext))
10604       LexicalContext = LexicalContext->getLexicalParent();
10605 
10606     // ObjC Blocks can create local variables that don't have a FunctionDecl
10607     // LexicalContext.
10608     if (!LexicalContext)
10609       return GVA_DiscardableODR;
10610 
10611     // Otherwise, let the static local variable inherit its linkage from the
10612     // nearest enclosing function.
10613     auto StaticLocalLinkage =
10614         Context.GetGVALinkageForFunction(cast<FunctionDecl>(LexicalContext));
10615 
10616     // Itanium ABI 5.2.2: "Each COMDAT group [for a static local variable] must
10617     // be emitted in any object with references to the symbol for the object it
10618     // contains, whether inline or out-of-line."
10619     // Similar behavior is observed with MSVC. An alternative ABI could use
10620     // StrongODR/AvailableExternally to match the function, but none are
10621     // known/supported currently.
10622     if (StaticLocalLinkage == GVA_StrongODR ||
10623         StaticLocalLinkage == GVA_AvailableExternally)
10624       return GVA_DiscardableODR;
10625     return StaticLocalLinkage;
10626   }
10627 
10628   // MSVC treats in-class initialized static data members as definitions.
10629   // By giving them non-strong linkage, out-of-line definitions won't
10630   // cause link errors.
10631   if (Context.isMSStaticDataMemberInlineDefinition(VD))
10632     return GVA_DiscardableODR;
10633 
10634   // Most non-template variables have strong linkage; inline variables are
10635   // linkonce_odr or (occasionally, for compatibility) weak_odr.
10636   GVALinkage StrongLinkage;
10637   switch (Context.getInlineVariableDefinitionKind(VD)) {
10638   case ASTContext::InlineVariableDefinitionKind::None:
10639     StrongLinkage = GVA_StrongExternal;
10640     break;
10641   case ASTContext::InlineVariableDefinitionKind::Weak:
10642   case ASTContext::InlineVariableDefinitionKind::WeakUnknown:
10643     StrongLinkage = GVA_DiscardableODR;
10644     break;
10645   case ASTContext::InlineVariableDefinitionKind::Strong:
10646     StrongLinkage = GVA_StrongODR;
10647     break;
10648   }
10649 
10650   switch (VD->getTemplateSpecializationKind()) {
10651   case TSK_Undeclared:
10652     return StrongLinkage;
10653 
10654   case TSK_ExplicitSpecialization:
10655     return Context.getTargetInfo().getCXXABI().isMicrosoft() &&
10656                    VD->isStaticDataMember()
10657                ? GVA_StrongODR
10658                : StrongLinkage;
10659 
10660   case TSK_ExplicitInstantiationDefinition:
10661     return GVA_StrongODR;
10662 
10663   case TSK_ExplicitInstantiationDeclaration:
10664     return GVA_AvailableExternally;
10665 
10666   case TSK_ImplicitInstantiation:
10667     return GVA_DiscardableODR;
10668   }
10669 
10670   llvm_unreachable("Invalid Linkage!");
10671 }
10672 
10673 GVALinkage ASTContext::GetGVALinkageForVariable(const VarDecl *VD) {
10674   return adjustGVALinkageForExternalDefinitionKind(*this, VD,
10675            adjustGVALinkageForAttributes(*this, VD,
10676              basicGVALinkageForVariable(*this, VD)));
10677 }
10678 
10679 bool ASTContext::DeclMustBeEmitted(const Decl *D) {
10680   if (const auto *VD = dyn_cast<VarDecl>(D)) {
10681     if (!VD->isFileVarDecl())
10682       return false;
10683     // Global named register variables (GNU extension) are never emitted.
10684     if (VD->getStorageClass() == SC_Register)
10685       return false;
10686     if (VD->getDescribedVarTemplate() ||
10687         isa<VarTemplatePartialSpecializationDecl>(VD))
10688       return false;
10689   } else if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
10690     // We never need to emit an uninstantiated function template.
10691     if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
10692       return false;
10693   } else if (isa<PragmaCommentDecl>(D))
10694     return true;
10695   else if (isa<PragmaDetectMismatchDecl>(D))
10696     return true;
10697   else if (isa<OMPRequiresDecl>(D))
10698     return true;
10699   else if (isa<OMPThreadPrivateDecl>(D))
10700     return !D->getDeclContext()->isDependentContext();
10701   else if (isa<OMPAllocateDecl>(D))
10702     return !D->getDeclContext()->isDependentContext();
10703   else if (isa<OMPDeclareReductionDecl>(D) || isa<OMPDeclareMapperDecl>(D))
10704     return !D->getDeclContext()->isDependentContext();
10705   else if (isa<ImportDecl>(D))
10706     return true;
10707   else
10708     return false;
10709 
10710   // If this is a member of a class template, we do not need to emit it.
10711   if (D->getDeclContext()->isDependentContext())
10712     return false;
10713 
10714   // Weak references don't produce any output by themselves.
10715   if (D->hasAttr<WeakRefAttr>())
10716     return false;
10717 
10718   // Aliases and used decls are required.
10719   if (D->hasAttr<AliasAttr>() || D->hasAttr<UsedAttr>())
10720     return true;
10721 
10722   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
10723     // Forward declarations aren't required.
10724     if (!FD->doesThisDeclarationHaveABody())
10725       return FD->doesDeclarationForceExternallyVisibleDefinition();
10726 
10727     // Constructors and destructors are required.
10728     if (FD->hasAttr<ConstructorAttr>() || FD->hasAttr<DestructorAttr>())
10729       return true;
10730 
10731     // The key function for a class is required.  This rule only comes
10732     // into play when inline functions can be key functions, though.
10733     if (getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
10734       if (const auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
10735         const CXXRecordDecl *RD = MD->getParent();
10736         if (MD->isOutOfLine() && RD->isDynamicClass()) {
10737           const CXXMethodDecl *KeyFunc = getCurrentKeyFunction(RD);
10738           if (KeyFunc && KeyFunc->getCanonicalDecl() == MD->getCanonicalDecl())
10739             return true;
10740         }
10741       }
10742     }
10743 
10744     GVALinkage Linkage = GetGVALinkageForFunction(FD);
10745 
10746     // static, static inline, always_inline, and extern inline functions can
10747     // always be deferred.  Normal inline functions can be deferred in C99/C++.
10748     // Implicit template instantiations can also be deferred in C++.
10749     return !isDiscardableGVALinkage(Linkage);
10750   }
10751 
10752   const auto *VD = cast<VarDecl>(D);
10753   assert(VD->isFileVarDecl() && "Expected file scoped var");
10754 
10755   // If the decl is marked as `declare target to`, it should be emitted for the
10756   // host and for the device.
10757   if (LangOpts.OpenMP &&
10758       OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(VD))
10759     return true;
10760 
10761   if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly &&
10762       !isMSStaticDataMemberInlineDefinition(VD))
10763     return false;
10764 
10765   // Variables that can be needed in other TUs are required.
10766   auto Linkage = GetGVALinkageForVariable(VD);
10767   if (!isDiscardableGVALinkage(Linkage))
10768     return true;
10769 
10770   // We never need to emit a variable that is available in another TU.
10771   if (Linkage == GVA_AvailableExternally)
10772     return false;
10773 
10774   // Variables that have destruction with side-effects are required.
10775   if (VD->needsDestruction(*this))
10776     return true;
10777 
10778   // Variables that have initialization with side-effects are required.
10779   if (VD->getInit() && VD->getInit()->HasSideEffects(*this) &&
10780       // We can get a value-dependent initializer during error recovery.
10781       (VD->getInit()->isValueDependent() || !VD->evaluateValue()))
10782     return true;
10783 
10784   // Likewise, variables with tuple-like bindings are required if their
10785   // bindings have side-effects.
10786   if (const auto *DD = dyn_cast<DecompositionDecl>(VD))
10787     for (const auto *BD : DD->bindings())
10788       if (const auto *BindingVD = BD->getHoldingVar())
10789         if (DeclMustBeEmitted(BindingVD))
10790           return true;
10791 
10792   return false;
10793 }
10794 
10795 void ASTContext::forEachMultiversionedFunctionVersion(
10796     const FunctionDecl *FD,
10797     llvm::function_ref<void(FunctionDecl *)> Pred) const {
10798   assert(FD->isMultiVersion() && "Only valid for multiversioned functions");
10799   llvm::SmallDenseSet<const FunctionDecl*, 4> SeenDecls;
10800   FD = FD->getMostRecentDecl();
10801   for (auto *CurDecl :
10802        FD->getDeclContext()->getRedeclContext()->lookup(FD->getDeclName())) {
10803     FunctionDecl *CurFD = CurDecl->getAsFunction()->getMostRecentDecl();
10804     if (CurFD && hasSameType(CurFD->getType(), FD->getType()) &&
10805         std::end(SeenDecls) == llvm::find(SeenDecls, CurFD)) {
10806       SeenDecls.insert(CurFD);
10807       Pred(CurFD);
10808     }
10809   }
10810 }
10811 
10812 CallingConv ASTContext::getDefaultCallingConvention(bool IsVariadic,
10813                                                     bool IsCXXMethod,
10814                                                     bool IsBuiltin) const {
10815   // Pass through to the C++ ABI object
10816   if (IsCXXMethod)
10817     return ABI->getDefaultMethodCallConv(IsVariadic);
10818 
10819   // Builtins ignore user-specified default calling convention and remain the
10820   // Target's default calling convention.
10821   if (!IsBuiltin) {
10822     switch (LangOpts.getDefaultCallingConv()) {
10823     case LangOptions::DCC_None:
10824       break;
10825     case LangOptions::DCC_CDecl:
10826       return CC_C;
10827     case LangOptions::DCC_FastCall:
10828       if (getTargetInfo().hasFeature("sse2") && !IsVariadic)
10829         return CC_X86FastCall;
10830       break;
10831     case LangOptions::DCC_StdCall:
10832       if (!IsVariadic)
10833         return CC_X86StdCall;
10834       break;
10835     case LangOptions::DCC_VectorCall:
10836       // __vectorcall cannot be applied to variadic functions.
10837       if (!IsVariadic)
10838         return CC_X86VectorCall;
10839       break;
10840     case LangOptions::DCC_RegCall:
10841       // __regcall cannot be applied to variadic functions.
10842       if (!IsVariadic)
10843         return CC_X86RegCall;
10844       break;
10845     }
10846   }
10847   return Target->getDefaultCallingConv();
10848 }
10849 
10850 bool ASTContext::isNearlyEmpty(const CXXRecordDecl *RD) const {
10851   // Pass through to the C++ ABI object
10852   return ABI->isNearlyEmpty(RD);
10853 }
10854 
10855 VTableContextBase *ASTContext::getVTableContext() {
10856   if (!VTContext.get()) {
10857     auto ABI = Target->getCXXABI();
10858     if (ABI.isMicrosoft())
10859       VTContext.reset(new MicrosoftVTableContext(*this));
10860     else {
10861       auto ComponentLayout = getLangOpts().RelativeCXXABIVTables
10862                                  ? ItaniumVTableContext::Relative
10863                                  : ItaniumVTableContext::Pointer;
10864       VTContext.reset(new ItaniumVTableContext(*this, ComponentLayout));
10865     }
10866   }
10867   return VTContext.get();
10868 }
10869 
10870 MangleContext *ASTContext::createMangleContext(const TargetInfo *T) {
10871   if (!T)
10872     T = Target;
10873   switch (T->getCXXABI().getKind()) {
10874   case TargetCXXABI::AppleARM64:
10875   case TargetCXXABI::Fuchsia:
10876   case TargetCXXABI::GenericAArch64:
10877   case TargetCXXABI::GenericItanium:
10878   case TargetCXXABI::GenericARM:
10879   case TargetCXXABI::GenericMIPS:
10880   case TargetCXXABI::iOS:
10881   case TargetCXXABI::WebAssembly:
10882   case TargetCXXABI::WatchOS:
10883   case TargetCXXABI::XL:
10884     return ItaniumMangleContext::create(*this, getDiagnostics());
10885   case TargetCXXABI::Microsoft:
10886     return MicrosoftMangleContext::create(*this, getDiagnostics());
10887   }
10888   llvm_unreachable("Unsupported ABI");
10889 }
10890 
10891 CXXABI::~CXXABI() = default;
10892 
10893 size_t ASTContext::getSideTableAllocatedMemory() const {
10894   return ASTRecordLayouts.getMemorySize() +
10895          llvm::capacity_in_bytes(ObjCLayouts) +
10896          llvm::capacity_in_bytes(KeyFunctions) +
10897          llvm::capacity_in_bytes(ObjCImpls) +
10898          llvm::capacity_in_bytes(BlockVarCopyInits) +
10899          llvm::capacity_in_bytes(DeclAttrs) +
10900          llvm::capacity_in_bytes(TemplateOrInstantiation) +
10901          llvm::capacity_in_bytes(InstantiatedFromUsingDecl) +
10902          llvm::capacity_in_bytes(InstantiatedFromUsingShadowDecl) +
10903          llvm::capacity_in_bytes(InstantiatedFromUnnamedFieldDecl) +
10904          llvm::capacity_in_bytes(OverriddenMethods) +
10905          llvm::capacity_in_bytes(Types) +
10906          llvm::capacity_in_bytes(VariableArrayTypes);
10907 }
10908 
10909 /// getIntTypeForBitwidth -
10910 /// sets integer QualTy according to specified details:
10911 /// bitwidth, signed/unsigned.
10912 /// Returns empty type if there is no appropriate target types.
10913 QualType ASTContext::getIntTypeForBitwidth(unsigned DestWidth,
10914                                            unsigned Signed) const {
10915   TargetInfo::IntType Ty = getTargetInfo().getIntTypeByWidth(DestWidth, Signed);
10916   CanQualType QualTy = getFromTargetType(Ty);
10917   if (!QualTy && DestWidth == 128)
10918     return Signed ? Int128Ty : UnsignedInt128Ty;
10919   return QualTy;
10920 }
10921 
10922 /// getRealTypeForBitwidth -
10923 /// sets floating point QualTy according to specified bitwidth.
10924 /// Returns empty type if there is no appropriate target types.
10925 QualType ASTContext::getRealTypeForBitwidth(unsigned DestWidth,
10926                                             bool ExplicitIEEE) const {
10927   TargetInfo::RealType Ty =
10928       getTargetInfo().getRealTypeByWidth(DestWidth, ExplicitIEEE);
10929   switch (Ty) {
10930   case TargetInfo::Float:
10931     return FloatTy;
10932   case TargetInfo::Double:
10933     return DoubleTy;
10934   case TargetInfo::LongDouble:
10935     return LongDoubleTy;
10936   case TargetInfo::Float128:
10937     return Float128Ty;
10938   case TargetInfo::NoFloat:
10939     return {};
10940   }
10941 
10942   llvm_unreachable("Unhandled TargetInfo::RealType value");
10943 }
10944 
10945 void ASTContext::setManglingNumber(const NamedDecl *ND, unsigned Number) {
10946   if (Number > 1)
10947     MangleNumbers[ND] = Number;
10948 }
10949 
10950 unsigned ASTContext::getManglingNumber(const NamedDecl *ND) const {
10951   auto I = MangleNumbers.find(ND);
10952   return I != MangleNumbers.end() ? I->second : 1;
10953 }
10954 
10955 void ASTContext::setStaticLocalNumber(const VarDecl *VD, unsigned Number) {
10956   if (Number > 1)
10957     StaticLocalNumbers[VD] = Number;
10958 }
10959 
10960 unsigned ASTContext::getStaticLocalNumber(const VarDecl *VD) const {
10961   auto I = StaticLocalNumbers.find(VD);
10962   return I != StaticLocalNumbers.end() ? I->second : 1;
10963 }
10964 
10965 MangleNumberingContext &
10966 ASTContext::getManglingNumberContext(const DeclContext *DC) {
10967   assert(LangOpts.CPlusPlus);  // We don't need mangling numbers for plain C.
10968   std::unique_ptr<MangleNumberingContext> &MCtx = MangleNumberingContexts[DC];
10969   if (!MCtx)
10970     MCtx = createMangleNumberingContext();
10971   return *MCtx;
10972 }
10973 
10974 MangleNumberingContext &
10975 ASTContext::getManglingNumberContext(NeedExtraManglingDecl_t, const Decl *D) {
10976   assert(LangOpts.CPlusPlus); // We don't need mangling numbers for plain C.
10977   std::unique_ptr<MangleNumberingContext> &MCtx =
10978       ExtraMangleNumberingContexts[D];
10979   if (!MCtx)
10980     MCtx = createMangleNumberingContext();
10981   return *MCtx;
10982 }
10983 
10984 std::unique_ptr<MangleNumberingContext>
10985 ASTContext::createMangleNumberingContext() const {
10986   return ABI->createMangleNumberingContext();
10987 }
10988 
10989 const CXXConstructorDecl *
10990 ASTContext::getCopyConstructorForExceptionObject(CXXRecordDecl *RD) {
10991   return ABI->getCopyConstructorForExceptionObject(
10992       cast<CXXRecordDecl>(RD->getFirstDecl()));
10993 }
10994 
10995 void ASTContext::addCopyConstructorForExceptionObject(CXXRecordDecl *RD,
10996                                                       CXXConstructorDecl *CD) {
10997   return ABI->addCopyConstructorForExceptionObject(
10998       cast<CXXRecordDecl>(RD->getFirstDecl()),
10999       cast<CXXConstructorDecl>(CD->getFirstDecl()));
11000 }
11001 
11002 void ASTContext::addTypedefNameForUnnamedTagDecl(TagDecl *TD,
11003                                                  TypedefNameDecl *DD) {
11004   return ABI->addTypedefNameForUnnamedTagDecl(TD, DD);
11005 }
11006 
11007 TypedefNameDecl *
11008 ASTContext::getTypedefNameForUnnamedTagDecl(const TagDecl *TD) {
11009   return ABI->getTypedefNameForUnnamedTagDecl(TD);
11010 }
11011 
11012 void ASTContext::addDeclaratorForUnnamedTagDecl(TagDecl *TD,
11013                                                 DeclaratorDecl *DD) {
11014   return ABI->addDeclaratorForUnnamedTagDecl(TD, DD);
11015 }
11016 
11017 DeclaratorDecl *ASTContext::getDeclaratorForUnnamedTagDecl(const TagDecl *TD) {
11018   return ABI->getDeclaratorForUnnamedTagDecl(TD);
11019 }
11020 
11021 void ASTContext::setParameterIndex(const ParmVarDecl *D, unsigned int index) {
11022   ParamIndices[D] = index;
11023 }
11024 
11025 unsigned ASTContext::getParameterIndex(const ParmVarDecl *D) const {
11026   ParameterIndexTable::const_iterator I = ParamIndices.find(D);
11027   assert(I != ParamIndices.end() &&
11028          "ParmIndices lacks entry set by ParmVarDecl");
11029   return I->second;
11030 }
11031 
11032 QualType ASTContext::getStringLiteralArrayType(QualType EltTy,
11033                                                unsigned Length) const {
11034   // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
11035   if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings)
11036     EltTy = EltTy.withConst();
11037 
11038   EltTy = adjustStringLiteralBaseType(EltTy);
11039 
11040   // Get an array type for the string, according to C99 6.4.5. This includes
11041   // the null terminator character.
11042   return getConstantArrayType(EltTy, llvm::APInt(32, Length + 1), nullptr,
11043                               ArrayType::Normal, /*IndexTypeQuals*/ 0);
11044 }
11045 
11046 StringLiteral *
11047 ASTContext::getPredefinedStringLiteralFromCache(StringRef Key) const {
11048   StringLiteral *&Result = StringLiteralCache[Key];
11049   if (!Result)
11050     Result = StringLiteral::Create(
11051         *this, Key, StringLiteral::Ascii,
11052         /*Pascal*/ false, getStringLiteralArrayType(CharTy, Key.size()),
11053         SourceLocation());
11054   return Result;
11055 }
11056 
11057 MSGuidDecl *
11058 ASTContext::getMSGuidDecl(MSGuidDecl::Parts Parts) const {
11059   assert(MSGuidTagDecl && "building MS GUID without MS extensions?");
11060 
11061   llvm::FoldingSetNodeID ID;
11062   MSGuidDecl::Profile(ID, Parts);
11063 
11064   void *InsertPos;
11065   if (MSGuidDecl *Existing = MSGuidDecls.FindNodeOrInsertPos(ID, InsertPos))
11066     return Existing;
11067 
11068   QualType GUIDType = getMSGuidType().withConst();
11069   MSGuidDecl *New = MSGuidDecl::Create(*this, GUIDType, Parts);
11070   MSGuidDecls.InsertNode(New, InsertPos);
11071   return New;
11072 }
11073 
11074 TemplateParamObjectDecl *
11075 ASTContext::getTemplateParamObjectDecl(QualType T, const APValue &V) const {
11076   assert(T->isRecordType() && "template param object of unexpected type");
11077 
11078   // C++ [temp.param]p8:
11079   //   [...] a static storage duration object of type 'const T' [...]
11080   T.addConst();
11081 
11082   llvm::FoldingSetNodeID ID;
11083   TemplateParamObjectDecl::Profile(ID, T, V);
11084 
11085   void *InsertPos;
11086   if (TemplateParamObjectDecl *Existing =
11087           TemplateParamObjectDecls.FindNodeOrInsertPos(ID, InsertPos))
11088     return Existing;
11089 
11090   TemplateParamObjectDecl *New = TemplateParamObjectDecl::Create(*this, T, V);
11091   TemplateParamObjectDecls.InsertNode(New, InsertPos);
11092   return New;
11093 }
11094 
11095 bool ASTContext::AtomicUsesUnsupportedLibcall(const AtomicExpr *E) const {
11096   const llvm::Triple &T = getTargetInfo().getTriple();
11097   if (!T.isOSDarwin())
11098     return false;
11099 
11100   if (!(T.isiOS() && T.isOSVersionLT(7)) &&
11101       !(T.isMacOSX() && T.isOSVersionLT(10, 9)))
11102     return false;
11103 
11104   QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
11105   CharUnits sizeChars = getTypeSizeInChars(AtomicTy);
11106   uint64_t Size = sizeChars.getQuantity();
11107   CharUnits alignChars = getTypeAlignInChars(AtomicTy);
11108   unsigned Align = alignChars.getQuantity();
11109   unsigned MaxInlineWidthInBits = getTargetInfo().getMaxAtomicInlineWidth();
11110   return (Size != Align || toBits(sizeChars) > MaxInlineWidthInBits);
11111 }
11112 
11113 bool
11114 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl,
11115                                 const ObjCMethodDecl *MethodImpl) {
11116   // No point trying to match an unavailable/deprecated mothod.
11117   if (MethodDecl->hasAttr<UnavailableAttr>()
11118       || MethodDecl->hasAttr<DeprecatedAttr>())
11119     return false;
11120   if (MethodDecl->getObjCDeclQualifier() !=
11121       MethodImpl->getObjCDeclQualifier())
11122     return false;
11123   if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType()))
11124     return false;
11125 
11126   if (MethodDecl->param_size() != MethodImpl->param_size())
11127     return false;
11128 
11129   for (ObjCMethodDecl::param_const_iterator IM = MethodImpl->param_begin(),
11130        IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(),
11131        EF = MethodDecl->param_end();
11132        IM != EM && IF != EF; ++IM, ++IF) {
11133     const ParmVarDecl *DeclVar = (*IF);
11134     const ParmVarDecl *ImplVar = (*IM);
11135     if (ImplVar->getObjCDeclQualifier() != DeclVar->getObjCDeclQualifier())
11136       return false;
11137     if (!hasSameType(DeclVar->getType(), ImplVar->getType()))
11138       return false;
11139   }
11140 
11141   return (MethodDecl->isVariadic() == MethodImpl->isVariadic());
11142 }
11143 
11144 uint64_t ASTContext::getTargetNullPointerValue(QualType QT) const {
11145   LangAS AS;
11146   if (QT->getUnqualifiedDesugaredType()->isNullPtrType())
11147     AS = LangAS::Default;
11148   else
11149     AS = QT->getPointeeType().getAddressSpace();
11150 
11151   return getTargetInfo().getNullPointerValue(AS);
11152 }
11153 
11154 unsigned ASTContext::getTargetAddressSpace(LangAS AS) const {
11155   if (isTargetAddressSpace(AS))
11156     return toTargetAddressSpace(AS);
11157   else
11158     return (*AddrSpaceMap)[(unsigned)AS];
11159 }
11160 
11161 QualType ASTContext::getCorrespondingSaturatedType(QualType Ty) const {
11162   assert(Ty->isFixedPointType());
11163 
11164   if (Ty->isSaturatedFixedPointType()) return Ty;
11165 
11166   switch (Ty->castAs<BuiltinType>()->getKind()) {
11167     default:
11168       llvm_unreachable("Not a fixed point type!");
11169     case BuiltinType::ShortAccum:
11170       return SatShortAccumTy;
11171     case BuiltinType::Accum:
11172       return SatAccumTy;
11173     case BuiltinType::LongAccum:
11174       return SatLongAccumTy;
11175     case BuiltinType::UShortAccum:
11176       return SatUnsignedShortAccumTy;
11177     case BuiltinType::UAccum:
11178       return SatUnsignedAccumTy;
11179     case BuiltinType::ULongAccum:
11180       return SatUnsignedLongAccumTy;
11181     case BuiltinType::ShortFract:
11182       return SatShortFractTy;
11183     case BuiltinType::Fract:
11184       return SatFractTy;
11185     case BuiltinType::LongFract:
11186       return SatLongFractTy;
11187     case BuiltinType::UShortFract:
11188       return SatUnsignedShortFractTy;
11189     case BuiltinType::UFract:
11190       return SatUnsignedFractTy;
11191     case BuiltinType::ULongFract:
11192       return SatUnsignedLongFractTy;
11193   }
11194 }
11195 
11196 LangAS ASTContext::getLangASForBuiltinAddressSpace(unsigned AS) const {
11197   if (LangOpts.OpenCL)
11198     return getTargetInfo().getOpenCLBuiltinAddressSpace(AS);
11199 
11200   if (LangOpts.CUDA)
11201     return getTargetInfo().getCUDABuiltinAddressSpace(AS);
11202 
11203   return getLangASFromTargetAS(AS);
11204 }
11205 
11206 // Explicitly instantiate this in case a Redeclarable<T> is used from a TU that
11207 // doesn't include ASTContext.h
11208 template
11209 clang::LazyGenerationalUpdatePtr<
11210     const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::ValueType
11211 clang::LazyGenerationalUpdatePtr<
11212     const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::makeValue(
11213         const clang::ASTContext &Ctx, Decl *Value);
11214 
11215 unsigned char ASTContext::getFixedPointScale(QualType Ty) const {
11216   assert(Ty->isFixedPointType());
11217 
11218   const TargetInfo &Target = getTargetInfo();
11219   switch (Ty->castAs<BuiltinType>()->getKind()) {
11220     default:
11221       llvm_unreachable("Not a fixed point type!");
11222     case BuiltinType::ShortAccum:
11223     case BuiltinType::SatShortAccum:
11224       return Target.getShortAccumScale();
11225     case BuiltinType::Accum:
11226     case BuiltinType::SatAccum:
11227       return Target.getAccumScale();
11228     case BuiltinType::LongAccum:
11229     case BuiltinType::SatLongAccum:
11230       return Target.getLongAccumScale();
11231     case BuiltinType::UShortAccum:
11232     case BuiltinType::SatUShortAccum:
11233       return Target.getUnsignedShortAccumScale();
11234     case BuiltinType::UAccum:
11235     case BuiltinType::SatUAccum:
11236       return Target.getUnsignedAccumScale();
11237     case BuiltinType::ULongAccum:
11238     case BuiltinType::SatULongAccum:
11239       return Target.getUnsignedLongAccumScale();
11240     case BuiltinType::ShortFract:
11241     case BuiltinType::SatShortFract:
11242       return Target.getShortFractScale();
11243     case BuiltinType::Fract:
11244     case BuiltinType::SatFract:
11245       return Target.getFractScale();
11246     case BuiltinType::LongFract:
11247     case BuiltinType::SatLongFract:
11248       return Target.getLongFractScale();
11249     case BuiltinType::UShortFract:
11250     case BuiltinType::SatUShortFract:
11251       return Target.getUnsignedShortFractScale();
11252     case BuiltinType::UFract:
11253     case BuiltinType::SatUFract:
11254       return Target.getUnsignedFractScale();
11255     case BuiltinType::ULongFract:
11256     case BuiltinType::SatULongFract:
11257       return Target.getUnsignedLongFractScale();
11258   }
11259 }
11260 
11261 unsigned char ASTContext::getFixedPointIBits(QualType Ty) const {
11262   assert(Ty->isFixedPointType());
11263 
11264   const TargetInfo &Target = getTargetInfo();
11265   switch (Ty->castAs<BuiltinType>()->getKind()) {
11266     default:
11267       llvm_unreachable("Not a fixed point type!");
11268     case BuiltinType::ShortAccum:
11269     case BuiltinType::SatShortAccum:
11270       return Target.getShortAccumIBits();
11271     case BuiltinType::Accum:
11272     case BuiltinType::SatAccum:
11273       return Target.getAccumIBits();
11274     case BuiltinType::LongAccum:
11275     case BuiltinType::SatLongAccum:
11276       return Target.getLongAccumIBits();
11277     case BuiltinType::UShortAccum:
11278     case BuiltinType::SatUShortAccum:
11279       return Target.getUnsignedShortAccumIBits();
11280     case BuiltinType::UAccum:
11281     case BuiltinType::SatUAccum:
11282       return Target.getUnsignedAccumIBits();
11283     case BuiltinType::ULongAccum:
11284     case BuiltinType::SatULongAccum:
11285       return Target.getUnsignedLongAccumIBits();
11286     case BuiltinType::ShortFract:
11287     case BuiltinType::SatShortFract:
11288     case BuiltinType::Fract:
11289     case BuiltinType::SatFract:
11290     case BuiltinType::LongFract:
11291     case BuiltinType::SatLongFract:
11292     case BuiltinType::UShortFract:
11293     case BuiltinType::SatUShortFract:
11294     case BuiltinType::UFract:
11295     case BuiltinType::SatUFract:
11296     case BuiltinType::ULongFract:
11297     case BuiltinType::SatULongFract:
11298       return 0;
11299   }
11300 }
11301 
11302 llvm::FixedPointSemantics
11303 ASTContext::getFixedPointSemantics(QualType Ty) const {
11304   assert((Ty->isFixedPointType() || Ty->isIntegerType()) &&
11305          "Can only get the fixed point semantics for a "
11306          "fixed point or integer type.");
11307   if (Ty->isIntegerType())
11308     return llvm::FixedPointSemantics::GetIntegerSemantics(
11309         getIntWidth(Ty), Ty->isSignedIntegerType());
11310 
11311   bool isSigned = Ty->isSignedFixedPointType();
11312   return llvm::FixedPointSemantics(
11313       static_cast<unsigned>(getTypeSize(Ty)), getFixedPointScale(Ty), isSigned,
11314       Ty->isSaturatedFixedPointType(),
11315       !isSigned && getTargetInfo().doUnsignedFixedPointTypesHavePadding());
11316 }
11317 
11318 llvm::APFixedPoint ASTContext::getFixedPointMax(QualType Ty) const {
11319   assert(Ty->isFixedPointType());
11320   return llvm::APFixedPoint::getMax(getFixedPointSemantics(Ty));
11321 }
11322 
11323 llvm::APFixedPoint ASTContext::getFixedPointMin(QualType Ty) const {
11324   assert(Ty->isFixedPointType());
11325   return llvm::APFixedPoint::getMin(getFixedPointSemantics(Ty));
11326 }
11327 
11328 QualType ASTContext::getCorrespondingSignedFixedPointType(QualType Ty) const {
11329   assert(Ty->isUnsignedFixedPointType() &&
11330          "Expected unsigned fixed point type");
11331 
11332   switch (Ty->castAs<BuiltinType>()->getKind()) {
11333   case BuiltinType::UShortAccum:
11334     return ShortAccumTy;
11335   case BuiltinType::UAccum:
11336     return AccumTy;
11337   case BuiltinType::ULongAccum:
11338     return LongAccumTy;
11339   case BuiltinType::SatUShortAccum:
11340     return SatShortAccumTy;
11341   case BuiltinType::SatUAccum:
11342     return SatAccumTy;
11343   case BuiltinType::SatULongAccum:
11344     return SatLongAccumTy;
11345   case BuiltinType::UShortFract:
11346     return ShortFractTy;
11347   case BuiltinType::UFract:
11348     return FractTy;
11349   case BuiltinType::ULongFract:
11350     return LongFractTy;
11351   case BuiltinType::SatUShortFract:
11352     return SatShortFractTy;
11353   case BuiltinType::SatUFract:
11354     return SatFractTy;
11355   case BuiltinType::SatULongFract:
11356     return SatLongFractTy;
11357   default:
11358     llvm_unreachable("Unexpected unsigned fixed point type");
11359   }
11360 }
11361 
11362 ParsedTargetAttr
11363 ASTContext::filterFunctionTargetAttrs(const TargetAttr *TD) const {
11364   assert(TD != nullptr);
11365   ParsedTargetAttr ParsedAttr = TD->parse();
11366 
11367   ParsedAttr.Features.erase(
11368       llvm::remove_if(ParsedAttr.Features,
11369                       [&](const std::string &Feat) {
11370                         return !Target->isValidFeatureName(
11371                             StringRef{Feat}.substr(1));
11372                       }),
11373       ParsedAttr.Features.end());
11374   return ParsedAttr;
11375 }
11376 
11377 void ASTContext::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap,
11378                                        const FunctionDecl *FD) const {
11379   if (FD)
11380     getFunctionFeatureMap(FeatureMap, GlobalDecl().getWithDecl(FD));
11381   else
11382     Target->initFeatureMap(FeatureMap, getDiagnostics(),
11383                            Target->getTargetOpts().CPU,
11384                            Target->getTargetOpts().Features);
11385 }
11386 
11387 // Fills in the supplied string map with the set of target features for the
11388 // passed in function.
11389 void ASTContext::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap,
11390                                        GlobalDecl GD) const {
11391   StringRef TargetCPU = Target->getTargetOpts().CPU;
11392   const FunctionDecl *FD = GD.getDecl()->getAsFunction();
11393   if (const auto *TD = FD->getAttr<TargetAttr>()) {
11394     ParsedTargetAttr ParsedAttr = filterFunctionTargetAttrs(TD);
11395 
11396     // Make a copy of the features as passed on the command line into the
11397     // beginning of the additional features from the function to override.
11398     ParsedAttr.Features.insert(
11399         ParsedAttr.Features.begin(),
11400         Target->getTargetOpts().FeaturesAsWritten.begin(),
11401         Target->getTargetOpts().FeaturesAsWritten.end());
11402 
11403     if (ParsedAttr.Architecture != "" &&
11404         Target->isValidCPUName(ParsedAttr.Architecture))
11405       TargetCPU = ParsedAttr.Architecture;
11406 
11407     // Now populate the feature map, first with the TargetCPU which is either
11408     // the default or a new one from the target attribute string. Then we'll use
11409     // the passed in features (FeaturesAsWritten) along with the new ones from
11410     // the attribute.
11411     Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU,
11412                            ParsedAttr.Features);
11413   } else if (const auto *SD = FD->getAttr<CPUSpecificAttr>()) {
11414     llvm::SmallVector<StringRef, 32> FeaturesTmp;
11415     Target->getCPUSpecificCPUDispatchFeatures(
11416         SD->getCPUName(GD.getMultiVersionIndex())->getName(), FeaturesTmp);
11417     std::vector<std::string> Features(FeaturesTmp.begin(), FeaturesTmp.end());
11418     Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU, Features);
11419   } else {
11420     FeatureMap = Target->getTargetOpts().FeatureMap;
11421   }
11422 }
11423 
11424 OMPTraitInfo &ASTContext::getNewOMPTraitInfo() {
11425   OMPTraitInfoVector.emplace_back(new OMPTraitInfo());
11426   return *OMPTraitInfoVector.back();
11427 }
11428 
11429 const StreamingDiagnostic &clang::
11430 operator<<(const StreamingDiagnostic &DB,
11431            const ASTContext::SectionInfo &Section) {
11432   if (Section.Decl)
11433     return DB << Section.Decl;
11434   return DB << "a prior #pragma section";
11435 }
11436 
11437 bool ASTContext::mayExternalizeStaticVar(const Decl *D) const {
11438   return !getLangOpts().GPURelocatableDeviceCode &&
11439          ((D->hasAttr<CUDADeviceAttr>() &&
11440            !D->getAttr<CUDADeviceAttr>()->isImplicit()) ||
11441           (D->hasAttr<CUDAConstantAttr>() &&
11442            !D->getAttr<CUDAConstantAttr>()->isImplicit())) &&
11443          isa<VarDecl>(D) && cast<VarDecl>(D)->isFileVarDecl() &&
11444          cast<VarDecl>(D)->getStorageClass() == SC_Static;
11445 }
11446 
11447 bool ASTContext::shouldExternalizeStaticVar(const Decl *D) const {
11448   return mayExternalizeStaticVar(D) &&
11449          CUDAStaticDeviceVarReferencedByHost.count(cast<VarDecl>(D));
11450 }
11451