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/NoSanitizeList.h"
60 #include "clang/Basic/ObjCRuntime.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/MD5.h"
88 #include "llvm/Support/MathExtras.h"
89 #include "llvm/Support/raw_ostream.h"
90 #include <algorithm>
91 #include <cassert>
92 #include <cstddef>
93 #include <cstdint>
94 #include <cstdlib>
95 #include <map>
96 #include <memory>
97 #include <string>
98 #include <tuple>
99 #include <utility>
100 
101 using namespace clang;
102 
103 enum FloatingRank {
104   BFloat16Rank,
105   Float16Rank,
106   HalfRank,
107   FloatRank,
108   DoubleRank,
109   LongDoubleRank,
110   Float128Rank,
111   Ibm128Rank
112 };
113 
114 /// \returns location that is relevant when searching for Doc comments related
115 /// to \p D.
116 static SourceLocation getDeclLocForCommentSearch(const Decl *D,
117                                                  SourceManager &SourceMgr) {
118   assert(D);
119 
120   // User can not attach documentation to implicit declarations.
121   if (D->isImplicit())
122     return {};
123 
124   // User can not attach documentation to implicit instantiations.
125   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
126     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
127       return {};
128   }
129 
130   if (const auto *VD = dyn_cast<VarDecl>(D)) {
131     if (VD->isStaticDataMember() &&
132         VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
133       return {};
134   }
135 
136   if (const auto *CRD = dyn_cast<CXXRecordDecl>(D)) {
137     if (CRD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
138       return {};
139   }
140 
141   if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(D)) {
142     TemplateSpecializationKind TSK = CTSD->getSpecializationKind();
143     if (TSK == TSK_ImplicitInstantiation ||
144         TSK == TSK_Undeclared)
145       return {};
146   }
147 
148   if (const auto *ED = dyn_cast<EnumDecl>(D)) {
149     if (ED->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
150       return {};
151   }
152   if (const auto *TD = dyn_cast<TagDecl>(D)) {
153     // When tag declaration (but not definition!) is part of the
154     // decl-specifier-seq of some other declaration, it doesn't get comment
155     if (TD->isEmbeddedInDeclarator() && !TD->isCompleteDefinition())
156       return {};
157   }
158   // TODO: handle comments for function parameters properly.
159   if (isa<ParmVarDecl>(D))
160     return {};
161 
162   // TODO: we could look up template parameter documentation in the template
163   // documentation.
164   if (isa<TemplateTypeParmDecl>(D) ||
165       isa<NonTypeTemplateParmDecl>(D) ||
166       isa<TemplateTemplateParmDecl>(D))
167     return {};
168 
169   // Find declaration location.
170   // For Objective-C declarations we generally don't expect to have multiple
171   // declarators, thus use declaration starting location as the "declaration
172   // location".
173   // For all other declarations multiple declarators are used quite frequently,
174   // so we use the location of the identifier as the "declaration location".
175   if (isa<ObjCMethodDecl>(D) || isa<ObjCContainerDecl>(D) ||
176       isa<ObjCPropertyDecl>(D) ||
177       isa<RedeclarableTemplateDecl>(D) ||
178       isa<ClassTemplateSpecializationDecl>(D) ||
179       // Allow association with Y across {} in `typedef struct X {} Y`.
180       isa<TypedefDecl>(D))
181     return D->getBeginLoc();
182 
183   const SourceLocation DeclLoc = D->getLocation();
184   if (DeclLoc.isMacroID()) {
185     if (isa<TypedefDecl>(D)) {
186       // If location of the typedef name is in a macro, it is because being
187       // declared via a macro. Try using declaration's starting location as
188       // the "declaration location".
189       return D->getBeginLoc();
190     }
191 
192     if (const auto *TD = dyn_cast<TagDecl>(D)) {
193       // If location of the tag decl is inside a macro, but the spelling of
194       // the tag name comes from a macro argument, it looks like a special
195       // macro like NS_ENUM is being used to define the tag decl.  In that
196       // case, adjust the source location to the expansion loc so that we can
197       // attach the comment to the tag decl.
198       if (SourceMgr.isMacroArgExpansion(DeclLoc) && TD->isCompleteDefinition())
199         return SourceMgr.getExpansionLoc(DeclLoc);
200     }
201   }
202 
203   return DeclLoc;
204 }
205 
206 RawComment *ASTContext::getRawCommentForDeclNoCacheImpl(
207     const Decl *D, const SourceLocation RepresentativeLocForDecl,
208     const std::map<unsigned, RawComment *> &CommentsInTheFile) const {
209   // If the declaration doesn't map directly to a location in a file, we
210   // can't find the comment.
211   if (RepresentativeLocForDecl.isInvalid() ||
212       !RepresentativeLocForDecl.isFileID())
213     return nullptr;
214 
215   // If there are no comments anywhere, we won't find anything.
216   if (CommentsInTheFile.empty())
217     return nullptr;
218 
219   // Decompose the location for the declaration and find the beginning of the
220   // file buffer.
221   const std::pair<FileID, unsigned> DeclLocDecomp =
222       SourceMgr.getDecomposedLoc(RepresentativeLocForDecl);
223 
224   // Slow path.
225   auto OffsetCommentBehindDecl =
226       CommentsInTheFile.lower_bound(DeclLocDecomp.second);
227 
228   // First check whether we have a trailing comment.
229   if (OffsetCommentBehindDecl != CommentsInTheFile.end()) {
230     RawComment *CommentBehindDecl = OffsetCommentBehindDecl->second;
231     if ((CommentBehindDecl->isDocumentation() ||
232          LangOpts.CommentOpts.ParseAllComments) &&
233         CommentBehindDecl->isTrailingComment() &&
234         (isa<FieldDecl>(D) || isa<EnumConstantDecl>(D) || isa<VarDecl>(D) ||
235          isa<ObjCMethodDecl>(D) || isa<ObjCPropertyDecl>(D))) {
236 
237       // Check that Doxygen trailing comment comes after the declaration, starts
238       // on the same line and in the same file as the declaration.
239       if (SourceMgr.getLineNumber(DeclLocDecomp.first, DeclLocDecomp.second) ==
240           Comments.getCommentBeginLine(CommentBehindDecl, DeclLocDecomp.first,
241                                        OffsetCommentBehindDecl->first)) {
242         return CommentBehindDecl;
243       }
244     }
245   }
246 
247   // The comment just after the declaration was not a trailing comment.
248   // Let's look at the previous comment.
249   if (OffsetCommentBehindDecl == CommentsInTheFile.begin())
250     return nullptr;
251 
252   auto OffsetCommentBeforeDecl = --OffsetCommentBehindDecl;
253   RawComment *CommentBeforeDecl = OffsetCommentBeforeDecl->second;
254 
255   // Check that we actually have a non-member Doxygen comment.
256   if (!(CommentBeforeDecl->isDocumentation() ||
257         LangOpts.CommentOpts.ParseAllComments) ||
258       CommentBeforeDecl->isTrailingComment())
259     return nullptr;
260 
261   // Decompose the end of the comment.
262   const unsigned CommentEndOffset =
263       Comments.getCommentEndOffset(CommentBeforeDecl);
264 
265   // Get the corresponding buffer.
266   bool Invalid = false;
267   const char *Buffer = SourceMgr.getBufferData(DeclLocDecomp.first,
268                                                &Invalid).data();
269   if (Invalid)
270     return nullptr;
271 
272   // Extract text between the comment and declaration.
273   StringRef Text(Buffer + CommentEndOffset,
274                  DeclLocDecomp.second - CommentEndOffset);
275 
276   // There should be no other declarations or preprocessor directives between
277   // comment and declaration.
278   if (Text.find_first_of(";{}#@") != StringRef::npos)
279     return nullptr;
280 
281   return CommentBeforeDecl;
282 }
283 
284 RawComment *ASTContext::getRawCommentForDeclNoCache(const Decl *D) const {
285   const SourceLocation DeclLoc = getDeclLocForCommentSearch(D, SourceMgr);
286 
287   // If the declaration doesn't map directly to a location in a file, we
288   // can't find the comment.
289   if (DeclLoc.isInvalid() || !DeclLoc.isFileID())
290     return nullptr;
291 
292   if (ExternalSource && !CommentsLoaded) {
293     ExternalSource->ReadComments();
294     CommentsLoaded = true;
295   }
296 
297   if (Comments.empty())
298     return nullptr;
299 
300   const FileID File = SourceMgr.getDecomposedLoc(DeclLoc).first;
301   const auto CommentsInThisFile = Comments.getCommentsInFile(File);
302   if (!CommentsInThisFile || CommentsInThisFile->empty())
303     return nullptr;
304 
305   return getRawCommentForDeclNoCacheImpl(D, DeclLoc, *CommentsInThisFile);
306 }
307 
308 void ASTContext::addComment(const RawComment &RC) {
309   assert(LangOpts.RetainCommentsFromSystemHeaders ||
310          !SourceMgr.isInSystemHeader(RC.getSourceRange().getBegin()));
311   Comments.addComment(RC, LangOpts.CommentOpts, BumpAlloc);
312 }
313 
314 /// If we have a 'templated' declaration for a template, adjust 'D' to
315 /// refer to the actual template.
316 /// If we have an implicit instantiation, adjust 'D' to refer to template.
317 static const Decl &adjustDeclToTemplate(const Decl &D) {
318   if (const auto *FD = dyn_cast<FunctionDecl>(&D)) {
319     // Is this function declaration part of a function template?
320     if (const FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
321       return *FTD;
322 
323     // Nothing to do if function is not an implicit instantiation.
324     if (FD->getTemplateSpecializationKind() != TSK_ImplicitInstantiation)
325       return D;
326 
327     // Function is an implicit instantiation of a function template?
328     if (const FunctionTemplateDecl *FTD = FD->getPrimaryTemplate())
329       return *FTD;
330 
331     // Function is instantiated from a member definition of a class template?
332     if (const FunctionDecl *MemberDecl =
333             FD->getInstantiatedFromMemberFunction())
334       return *MemberDecl;
335 
336     return D;
337   }
338   if (const auto *VD = dyn_cast<VarDecl>(&D)) {
339     // Static data member is instantiated from a member definition of a class
340     // template?
341     if (VD->isStaticDataMember())
342       if (const VarDecl *MemberDecl = VD->getInstantiatedFromStaticDataMember())
343         return *MemberDecl;
344 
345     return D;
346   }
347   if (const auto *CRD = dyn_cast<CXXRecordDecl>(&D)) {
348     // Is this class declaration part of a class template?
349     if (const ClassTemplateDecl *CTD = CRD->getDescribedClassTemplate())
350       return *CTD;
351 
352     // Class is an implicit instantiation of a class template or partial
353     // specialization?
354     if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(CRD)) {
355       if (CTSD->getSpecializationKind() != TSK_ImplicitInstantiation)
356         return D;
357       llvm::PointerUnion<ClassTemplateDecl *,
358                          ClassTemplatePartialSpecializationDecl *>
359           PU = CTSD->getSpecializedTemplateOrPartial();
360       return PU.is<ClassTemplateDecl *>()
361                  ? *static_cast<const Decl *>(PU.get<ClassTemplateDecl *>())
362                  : *static_cast<const Decl *>(
363                        PU.get<ClassTemplatePartialSpecializationDecl *>());
364     }
365 
366     // Class is instantiated from a member definition of a class template?
367     if (const MemberSpecializationInfo *Info =
368             CRD->getMemberSpecializationInfo())
369       return *Info->getInstantiatedFrom();
370 
371     return D;
372   }
373   if (const auto *ED = dyn_cast<EnumDecl>(&D)) {
374     // Enum is instantiated from a member definition of a class template?
375     if (const EnumDecl *MemberDecl = ED->getInstantiatedFromMemberEnum())
376       return *MemberDecl;
377 
378     return D;
379   }
380   // FIXME: Adjust alias templates?
381   return D;
382 }
383 
384 const RawComment *ASTContext::getRawCommentForAnyRedecl(
385                                                 const Decl *D,
386                                                 const Decl **OriginalDecl) const {
387   if (!D) {
388     if (OriginalDecl)
389       OriginalDecl = nullptr;
390     return nullptr;
391   }
392 
393   D = &adjustDeclToTemplate(*D);
394 
395   // Any comment directly attached to D?
396   {
397     auto DeclComment = DeclRawComments.find(D);
398     if (DeclComment != DeclRawComments.end()) {
399       if (OriginalDecl)
400         *OriginalDecl = D;
401       return DeclComment->second;
402     }
403   }
404 
405   // Any comment attached to any redeclaration of D?
406   const Decl *CanonicalD = D->getCanonicalDecl();
407   if (!CanonicalD)
408     return nullptr;
409 
410   {
411     auto RedeclComment = RedeclChainComments.find(CanonicalD);
412     if (RedeclComment != RedeclChainComments.end()) {
413       if (OriginalDecl)
414         *OriginalDecl = RedeclComment->second;
415       auto CommentAtRedecl = DeclRawComments.find(RedeclComment->second);
416       assert(CommentAtRedecl != DeclRawComments.end() &&
417              "This decl is supposed to have comment attached.");
418       return CommentAtRedecl->second;
419     }
420   }
421 
422   // Any redeclarations of D that we haven't checked for comments yet?
423   // We can't use DenseMap::iterator directly since it'd get invalid.
424   auto LastCheckedRedecl = [this, CanonicalD]() -> const Decl * {
425     auto LookupRes = CommentlessRedeclChains.find(CanonicalD);
426     if (LookupRes != CommentlessRedeclChains.end())
427       return LookupRes->second;
428     return nullptr;
429   }();
430 
431   for (const auto Redecl : D->redecls()) {
432     assert(Redecl);
433     // Skip all redeclarations that have been checked previously.
434     if (LastCheckedRedecl) {
435       if (LastCheckedRedecl == Redecl) {
436         LastCheckedRedecl = nullptr;
437       }
438       continue;
439     }
440     const RawComment *RedeclComment = getRawCommentForDeclNoCache(Redecl);
441     if (RedeclComment) {
442       cacheRawCommentForDecl(*Redecl, *RedeclComment);
443       if (OriginalDecl)
444         *OriginalDecl = Redecl;
445       return RedeclComment;
446     }
447     CommentlessRedeclChains[CanonicalD] = Redecl;
448   }
449 
450   if (OriginalDecl)
451     *OriginalDecl = nullptr;
452   return nullptr;
453 }
454 
455 void ASTContext::cacheRawCommentForDecl(const Decl &OriginalD,
456                                         const RawComment &Comment) const {
457   assert(Comment.isDocumentation() || LangOpts.CommentOpts.ParseAllComments);
458   DeclRawComments.try_emplace(&OriginalD, &Comment);
459   const Decl *const CanonicalDecl = OriginalD.getCanonicalDecl();
460   RedeclChainComments.try_emplace(CanonicalDecl, &OriginalD);
461   CommentlessRedeclChains.erase(CanonicalDecl);
462 }
463 
464 static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod,
465                    SmallVectorImpl<const NamedDecl *> &Redeclared) {
466   const DeclContext *DC = ObjCMethod->getDeclContext();
467   if (const auto *IMD = dyn_cast<ObjCImplDecl>(DC)) {
468     const ObjCInterfaceDecl *ID = IMD->getClassInterface();
469     if (!ID)
470       return;
471     // Add redeclared method here.
472     for (const auto *Ext : ID->known_extensions()) {
473       if (ObjCMethodDecl *RedeclaredMethod =
474             Ext->getMethod(ObjCMethod->getSelector(),
475                                   ObjCMethod->isInstanceMethod()))
476         Redeclared.push_back(RedeclaredMethod);
477     }
478   }
479 }
480 
481 void ASTContext::attachCommentsToJustParsedDecls(ArrayRef<Decl *> Decls,
482                                                  const Preprocessor *PP) {
483   if (Comments.empty() || Decls.empty())
484     return;
485 
486   FileID File;
487   for (Decl *D : Decls) {
488     SourceLocation Loc = D->getLocation();
489     if (Loc.isValid()) {
490       // See if there are any new comments that are not attached to a decl.
491       // The location doesn't have to be precise - we care only about the file.
492       File = SourceMgr.getDecomposedLoc(Loc).first;
493       break;
494     }
495   }
496 
497   if (File.isInvalid())
498     return;
499 
500   auto CommentsInThisFile = Comments.getCommentsInFile(File);
501   if (!CommentsInThisFile || CommentsInThisFile->empty() ||
502       CommentsInThisFile->rbegin()->second->isAttached())
503     return;
504 
505   // There is at least one comment not attached to a decl.
506   // Maybe it should be attached to one of Decls?
507   //
508   // Note that this way we pick up not only comments that precede the
509   // declaration, but also comments that *follow* the declaration -- thanks to
510   // the lookahead in the lexer: we've consumed the semicolon and looked
511   // ahead through comments.
512 
513   for (const Decl *D : Decls) {
514     assert(D);
515     if (D->isInvalidDecl())
516       continue;
517 
518     D = &adjustDeclToTemplate(*D);
519 
520     const SourceLocation DeclLoc = getDeclLocForCommentSearch(D, SourceMgr);
521 
522     if (DeclLoc.isInvalid() || !DeclLoc.isFileID())
523       continue;
524 
525     if (DeclRawComments.count(D) > 0)
526       continue;
527 
528     if (RawComment *const DocComment =
529             getRawCommentForDeclNoCacheImpl(D, DeclLoc, *CommentsInThisFile)) {
530       cacheRawCommentForDecl(*D, *DocComment);
531       comments::FullComment *FC = DocComment->parse(*this, PP, D);
532       ParsedComments[D->getCanonicalDecl()] = FC;
533     }
534   }
535 }
536 
537 comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC,
538                                                     const Decl *D) const {
539   auto *ThisDeclInfo = new (*this) comments::DeclInfo;
540   ThisDeclInfo->CommentDecl = D;
541   ThisDeclInfo->IsFilled = false;
542   ThisDeclInfo->fill();
543   ThisDeclInfo->CommentDecl = FC->getDecl();
544   if (!ThisDeclInfo->TemplateParameters)
545     ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters;
546   comments::FullComment *CFC =
547     new (*this) comments::FullComment(FC->getBlocks(),
548                                       ThisDeclInfo);
549   return CFC;
550 }
551 
552 comments::FullComment *ASTContext::getLocalCommentForDeclUncached(const Decl *D) const {
553   const RawComment *RC = getRawCommentForDeclNoCache(D);
554   return RC ? RC->parse(*this, nullptr, D) : nullptr;
555 }
556 
557 comments::FullComment *ASTContext::getCommentForDecl(
558                                               const Decl *D,
559                                               const Preprocessor *PP) const {
560   if (!D || D->isInvalidDecl())
561     return nullptr;
562   D = &adjustDeclToTemplate(*D);
563 
564   const Decl *Canonical = D->getCanonicalDecl();
565   llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos =
566       ParsedComments.find(Canonical);
567 
568   if (Pos != ParsedComments.end()) {
569     if (Canonical != D) {
570       comments::FullComment *FC = Pos->second;
571       comments::FullComment *CFC = cloneFullComment(FC, D);
572       return CFC;
573     }
574     return Pos->second;
575   }
576 
577   const Decl *OriginalDecl = nullptr;
578 
579   const RawComment *RC = getRawCommentForAnyRedecl(D, &OriginalDecl);
580   if (!RC) {
581     if (isa<ObjCMethodDecl>(D) || isa<FunctionDecl>(D)) {
582       SmallVector<const NamedDecl*, 8> Overridden;
583       const auto *OMD = dyn_cast<ObjCMethodDecl>(D);
584       if (OMD && OMD->isPropertyAccessor())
585         if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
586           if (comments::FullComment *FC = getCommentForDecl(PDecl, PP))
587             return cloneFullComment(FC, D);
588       if (OMD)
589         addRedeclaredMethods(OMD, Overridden);
590       getOverriddenMethods(dyn_cast<NamedDecl>(D), Overridden);
591       for (unsigned i = 0, e = Overridden.size(); i < e; i++)
592         if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP))
593           return cloneFullComment(FC, D);
594     }
595     else if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
596       // Attach any tag type's documentation to its typedef if latter
597       // does not have one of its own.
598       QualType QT = TD->getUnderlyingType();
599       if (const auto *TT = QT->getAs<TagType>())
600         if (const Decl *TD = TT->getDecl())
601           if (comments::FullComment *FC = getCommentForDecl(TD, PP))
602             return cloneFullComment(FC, D);
603     }
604     else if (const auto *IC = dyn_cast<ObjCInterfaceDecl>(D)) {
605       while (IC->getSuperClass()) {
606         IC = IC->getSuperClass();
607         if (comments::FullComment *FC = getCommentForDecl(IC, PP))
608           return cloneFullComment(FC, D);
609       }
610     }
611     else if (const auto *CD = dyn_cast<ObjCCategoryDecl>(D)) {
612       if (const ObjCInterfaceDecl *IC = CD->getClassInterface())
613         if (comments::FullComment *FC = getCommentForDecl(IC, PP))
614           return cloneFullComment(FC, D);
615     }
616     else if (const auto *RD = dyn_cast<CXXRecordDecl>(D)) {
617       if (!(RD = RD->getDefinition()))
618         return nullptr;
619       // Check non-virtual bases.
620       for (const auto &I : RD->bases()) {
621         if (I.isVirtual() || (I.getAccessSpecifier() != AS_public))
622           continue;
623         QualType Ty = I.getType();
624         if (Ty.isNull())
625           continue;
626         if (const CXXRecordDecl *NonVirtualBase = Ty->getAsCXXRecordDecl()) {
627           if (!(NonVirtualBase= NonVirtualBase->getDefinition()))
628             continue;
629 
630           if (comments::FullComment *FC = getCommentForDecl((NonVirtualBase), PP))
631             return cloneFullComment(FC, D);
632         }
633       }
634       // Check virtual bases.
635       for (const auto &I : RD->vbases()) {
636         if (I.getAccessSpecifier() != AS_public)
637           continue;
638         QualType Ty = I.getType();
639         if (Ty.isNull())
640           continue;
641         if (const CXXRecordDecl *VirtualBase = Ty->getAsCXXRecordDecl()) {
642           if (!(VirtualBase= VirtualBase->getDefinition()))
643             continue;
644           if (comments::FullComment *FC = getCommentForDecl((VirtualBase), PP))
645             return cloneFullComment(FC, D);
646         }
647       }
648     }
649     return nullptr;
650   }
651 
652   // If the RawComment was attached to other redeclaration of this Decl, we
653   // should parse the comment in context of that other Decl.  This is important
654   // because comments can contain references to parameter names which can be
655   // different across redeclarations.
656   if (D != OriginalDecl && OriginalDecl)
657     return getCommentForDecl(OriginalDecl, PP);
658 
659   comments::FullComment *FC = RC->parse(*this, PP, D);
660   ParsedComments[Canonical] = FC;
661   return FC;
662 }
663 
664 void
665 ASTContext::CanonicalTemplateTemplateParm::Profile(llvm::FoldingSetNodeID &ID,
666                                                    const ASTContext &C,
667                                                TemplateTemplateParmDecl *Parm) {
668   ID.AddInteger(Parm->getDepth());
669   ID.AddInteger(Parm->getPosition());
670   ID.AddBoolean(Parm->isParameterPack());
671 
672   TemplateParameterList *Params = Parm->getTemplateParameters();
673   ID.AddInteger(Params->size());
674   for (TemplateParameterList::const_iterator P = Params->begin(),
675                                           PEnd = Params->end();
676        P != PEnd; ++P) {
677     if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
678       ID.AddInteger(0);
679       ID.AddBoolean(TTP->isParameterPack());
680       const TypeConstraint *TC = TTP->getTypeConstraint();
681       ID.AddBoolean(TC != nullptr);
682       if (TC)
683         TC->getImmediatelyDeclaredConstraint()->Profile(ID, C,
684                                                         /*Canonical=*/true);
685       if (TTP->isExpandedParameterPack()) {
686         ID.AddBoolean(true);
687         ID.AddInteger(TTP->getNumExpansionParameters());
688       } else
689         ID.AddBoolean(false);
690       continue;
691     }
692 
693     if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
694       ID.AddInteger(1);
695       ID.AddBoolean(NTTP->isParameterPack());
696       ID.AddPointer(NTTP->getType().getCanonicalType().getAsOpaquePtr());
697       if (NTTP->isExpandedParameterPack()) {
698         ID.AddBoolean(true);
699         ID.AddInteger(NTTP->getNumExpansionTypes());
700         for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
701           QualType T = NTTP->getExpansionType(I);
702           ID.AddPointer(T.getCanonicalType().getAsOpaquePtr());
703         }
704       } else
705         ID.AddBoolean(false);
706       continue;
707     }
708 
709     auto *TTP = cast<TemplateTemplateParmDecl>(*P);
710     ID.AddInteger(2);
711     Profile(ID, C, TTP);
712   }
713   Expr *RequiresClause = Parm->getTemplateParameters()->getRequiresClause();
714   ID.AddBoolean(RequiresClause != nullptr);
715   if (RequiresClause)
716     RequiresClause->Profile(ID, C, /*Canonical=*/true);
717 }
718 
719 static Expr *
720 canonicalizeImmediatelyDeclaredConstraint(const ASTContext &C, Expr *IDC,
721                                           QualType ConstrainedType) {
722   // This is a bit ugly - we need to form a new immediately-declared
723   // constraint that references the new parameter; this would ideally
724   // require semantic analysis (e.g. template<C T> struct S {}; - the
725   // converted arguments of C<T> could be an argument pack if C is
726   // declared as template<typename... T> concept C = ...).
727   // We don't have semantic analysis here so we dig deep into the
728   // ready-made constraint expr and change the thing manually.
729   ConceptSpecializationExpr *CSE;
730   if (const auto *Fold = dyn_cast<CXXFoldExpr>(IDC))
731     CSE = cast<ConceptSpecializationExpr>(Fold->getLHS());
732   else
733     CSE = cast<ConceptSpecializationExpr>(IDC);
734   ArrayRef<TemplateArgument> OldConverted = CSE->getTemplateArguments();
735   SmallVector<TemplateArgument, 3> NewConverted;
736   NewConverted.reserve(OldConverted.size());
737   if (OldConverted.front().getKind() == TemplateArgument::Pack) {
738     // The case:
739     // template<typename... T> concept C = true;
740     // template<C<int> T> struct S; -> constraint is C<{T, int}>
741     NewConverted.push_back(ConstrainedType);
742     for (auto &Arg : OldConverted.front().pack_elements().drop_front(1))
743       NewConverted.push_back(Arg);
744     TemplateArgument NewPack(NewConverted);
745 
746     NewConverted.clear();
747     NewConverted.push_back(NewPack);
748     assert(OldConverted.size() == 1 &&
749            "Template parameter pack should be the last parameter");
750   } else {
751     assert(OldConverted.front().getKind() == TemplateArgument::Type &&
752            "Unexpected first argument kind for immediately-declared "
753            "constraint");
754     NewConverted.push_back(ConstrainedType);
755     for (auto &Arg : OldConverted.drop_front(1))
756       NewConverted.push_back(Arg);
757   }
758   Expr *NewIDC = ConceptSpecializationExpr::Create(
759       C, CSE->getNamedConcept(), NewConverted, nullptr,
760       CSE->isInstantiationDependent(), CSE->containsUnexpandedParameterPack());
761 
762   if (auto *OrigFold = dyn_cast<CXXFoldExpr>(IDC))
763     NewIDC = new (C) CXXFoldExpr(
764         OrigFold->getType(), /*Callee*/nullptr, SourceLocation(), NewIDC,
765         BinaryOperatorKind::BO_LAnd, SourceLocation(), /*RHS=*/nullptr,
766         SourceLocation(), /*NumExpansions=*/None);
767   return NewIDC;
768 }
769 
770 TemplateTemplateParmDecl *
771 ASTContext::getCanonicalTemplateTemplateParmDecl(
772                                           TemplateTemplateParmDecl *TTP) const {
773   // Check if we already have a canonical template template parameter.
774   llvm::FoldingSetNodeID ID;
775   CanonicalTemplateTemplateParm::Profile(ID, *this, TTP);
776   void *InsertPos = nullptr;
777   CanonicalTemplateTemplateParm *Canonical
778     = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
779   if (Canonical)
780     return Canonical->getParam();
781 
782   // Build a canonical template parameter list.
783   TemplateParameterList *Params = TTP->getTemplateParameters();
784   SmallVector<NamedDecl *, 4> CanonParams;
785   CanonParams.reserve(Params->size());
786   for (TemplateParameterList::const_iterator P = Params->begin(),
787                                           PEnd = Params->end();
788        P != PEnd; ++P) {
789     if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
790       TemplateTypeParmDecl *NewTTP = TemplateTypeParmDecl::Create(*this,
791           getTranslationUnitDecl(), SourceLocation(), SourceLocation(),
792           TTP->getDepth(), TTP->getIndex(), nullptr, false,
793           TTP->isParameterPack(), TTP->hasTypeConstraint(),
794           TTP->isExpandedParameterPack() ?
795           llvm::Optional<unsigned>(TTP->getNumExpansionParameters()) : None);
796       if (const auto *TC = TTP->getTypeConstraint()) {
797         QualType ParamAsArgument(NewTTP->getTypeForDecl(), 0);
798         Expr *NewIDC = canonicalizeImmediatelyDeclaredConstraint(
799                 *this, TC->getImmediatelyDeclaredConstraint(),
800                 ParamAsArgument);
801         TemplateArgumentListInfo CanonArgsAsWritten;
802         if (auto *Args = TC->getTemplateArgsAsWritten())
803           for (const auto &ArgLoc : Args->arguments())
804             CanonArgsAsWritten.addArgument(
805                 TemplateArgumentLoc(ArgLoc.getArgument(),
806                                     TemplateArgumentLocInfo()));
807         NewTTP->setTypeConstraint(
808             NestedNameSpecifierLoc(),
809             DeclarationNameInfo(TC->getNamedConcept()->getDeclName(),
810                                 SourceLocation()), /*FoundDecl=*/nullptr,
811             // Actually canonicalizing a TemplateArgumentLoc is difficult so we
812             // simply omit the ArgsAsWritten
813             TC->getNamedConcept(), /*ArgsAsWritten=*/nullptr, NewIDC);
814       }
815       CanonParams.push_back(NewTTP);
816     } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
817       QualType T = getCanonicalType(NTTP->getType());
818       TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T);
819       NonTypeTemplateParmDecl *Param;
820       if (NTTP->isExpandedParameterPack()) {
821         SmallVector<QualType, 2> ExpandedTypes;
822         SmallVector<TypeSourceInfo *, 2> ExpandedTInfos;
823         for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
824           ExpandedTypes.push_back(getCanonicalType(NTTP->getExpansionType(I)));
825           ExpandedTInfos.push_back(
826                                 getTrivialTypeSourceInfo(ExpandedTypes.back()));
827         }
828 
829         Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
830                                                 SourceLocation(),
831                                                 SourceLocation(),
832                                                 NTTP->getDepth(),
833                                                 NTTP->getPosition(), nullptr,
834                                                 T,
835                                                 TInfo,
836                                                 ExpandedTypes,
837                                                 ExpandedTInfos);
838       } else {
839         Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
840                                                 SourceLocation(),
841                                                 SourceLocation(),
842                                                 NTTP->getDepth(),
843                                                 NTTP->getPosition(), nullptr,
844                                                 T,
845                                                 NTTP->isParameterPack(),
846                                                 TInfo);
847       }
848       if (AutoType *AT = T->getContainedAutoType()) {
849         if (AT->isConstrained()) {
850           Param->setPlaceholderTypeConstraint(
851               canonicalizeImmediatelyDeclaredConstraint(
852                   *this, NTTP->getPlaceholderTypeConstraint(), T));
853         }
854       }
855       CanonParams.push_back(Param);
856 
857     } else
858       CanonParams.push_back(getCanonicalTemplateTemplateParmDecl(
859                                            cast<TemplateTemplateParmDecl>(*P)));
860   }
861 
862   Expr *CanonRequiresClause = nullptr;
863   if (Expr *RequiresClause = TTP->getTemplateParameters()->getRequiresClause())
864     CanonRequiresClause = RequiresClause;
865 
866   TemplateTemplateParmDecl *CanonTTP
867     = TemplateTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
868                                        SourceLocation(), TTP->getDepth(),
869                                        TTP->getPosition(),
870                                        TTP->isParameterPack(),
871                                        nullptr,
872                          TemplateParameterList::Create(*this, SourceLocation(),
873                                                        SourceLocation(),
874                                                        CanonParams,
875                                                        SourceLocation(),
876                                                        CanonRequiresClause));
877 
878   // Get the new insert position for the node we care about.
879   Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
880   assert(!Canonical && "Shouldn't be in the map!");
881   (void)Canonical;
882 
883   // Create the canonical template template parameter entry.
884   Canonical = new (*this) CanonicalTemplateTemplateParm(CanonTTP);
885   CanonTemplateTemplateParms.InsertNode(Canonical, InsertPos);
886   return CanonTTP;
887 }
888 
889 TargetCXXABI::Kind ASTContext::getCXXABIKind() const {
890   auto Kind = getTargetInfo().getCXXABI().getKind();
891   return getLangOpts().CXXABI.getValueOr(Kind);
892 }
893 
894 CXXABI *ASTContext::createCXXABI(const TargetInfo &T) {
895   if (!LangOpts.CPlusPlus) return nullptr;
896 
897   switch (getCXXABIKind()) {
898   case TargetCXXABI::AppleARM64:
899   case TargetCXXABI::Fuchsia:
900   case TargetCXXABI::GenericARM: // Same as Itanium at this level
901   case TargetCXXABI::iOS:
902   case TargetCXXABI::WatchOS:
903   case TargetCXXABI::GenericAArch64:
904   case TargetCXXABI::GenericMIPS:
905   case TargetCXXABI::GenericItanium:
906   case TargetCXXABI::WebAssembly:
907   case TargetCXXABI::XL:
908     return CreateItaniumCXXABI(*this);
909   case TargetCXXABI::Microsoft:
910     return CreateMicrosoftCXXABI(*this);
911   }
912   llvm_unreachable("Invalid CXXABI type!");
913 }
914 
915 interp::Context &ASTContext::getInterpContext() {
916   if (!InterpContext) {
917     InterpContext.reset(new interp::Context(*this));
918   }
919   return *InterpContext.get();
920 }
921 
922 ParentMapContext &ASTContext::getParentMapContext() {
923   if (!ParentMapCtx)
924     ParentMapCtx.reset(new ParentMapContext(*this));
925   return *ParentMapCtx.get();
926 }
927 
928 static const LangASMap *getAddressSpaceMap(const TargetInfo &T,
929                                            const LangOptions &LOpts) {
930   if (LOpts.FakeAddressSpaceMap) {
931     // The fake address space map must have a distinct entry for each
932     // language-specific address space.
933     static const unsigned FakeAddrSpaceMap[] = {
934         0,  // Default
935         1,  // opencl_global
936         3,  // opencl_local
937         2,  // opencl_constant
938         0,  // opencl_private
939         4,  // opencl_generic
940         5,  // opencl_global_device
941         6,  // opencl_global_host
942         7,  // cuda_device
943         8,  // cuda_constant
944         9,  // cuda_shared
945         1,  // sycl_global
946         5,  // sycl_global_device
947         6,  // sycl_global_host
948         3,  // sycl_local
949         0,  // sycl_private
950         10, // ptr32_sptr
951         11, // ptr32_uptr
952         12  // ptr64
953     };
954     return &FakeAddrSpaceMap;
955   } else {
956     return &T.getAddressSpaceMap();
957   }
958 }
959 
960 static bool isAddrSpaceMapManglingEnabled(const TargetInfo &TI,
961                                           const LangOptions &LangOpts) {
962   switch (LangOpts.getAddressSpaceMapMangling()) {
963   case LangOptions::ASMM_Target:
964     return TI.useAddressSpaceMapMangling();
965   case LangOptions::ASMM_On:
966     return true;
967   case LangOptions::ASMM_Off:
968     return false;
969   }
970   llvm_unreachable("getAddressSpaceMapMangling() doesn't cover anything.");
971 }
972 
973 ASTContext::ASTContext(LangOptions &LOpts, SourceManager &SM,
974                        IdentifierTable &idents, SelectorTable &sels,
975                        Builtin::Context &builtins, TranslationUnitKind TUKind)
976     : ConstantArrayTypes(this_()), FunctionProtoTypes(this_()),
977       TemplateSpecializationTypes(this_()),
978       DependentTemplateSpecializationTypes(this_()), AutoTypes(this_()),
979       SubstTemplateTemplateParmPacks(this_()),
980       CanonTemplateTemplateParms(this_()), SourceMgr(SM), LangOpts(LOpts),
981       NoSanitizeL(new NoSanitizeList(LangOpts.NoSanitizeFiles, SM)),
982       XRayFilter(new XRayFunctionFilter(LangOpts.XRayAlwaysInstrumentFiles,
983                                         LangOpts.XRayNeverInstrumentFiles,
984                                         LangOpts.XRayAttrListFiles, SM)),
985       ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)),
986       PrintingPolicy(LOpts), Idents(idents), Selectors(sels),
987       BuiltinInfo(builtins), TUKind(TUKind), DeclarationNames(*this),
988       Comments(SM), CommentCommandTraits(BumpAlloc, LOpts.CommentOpts),
989       CompCategories(this_()), LastSDM(nullptr, 0) {
990   addTranslationUnitDecl();
991 }
992 
993 void ASTContext::cleanup() {
994   // Release the DenseMaps associated with DeclContext objects.
995   // FIXME: Is this the ideal solution?
996   ReleaseDeclContextMaps();
997 
998   // Call all of the deallocation functions on all of their targets.
999   for (auto &Pair : Deallocations)
1000     (Pair.first)(Pair.second);
1001   Deallocations.clear();
1002 
1003   // ASTRecordLayout objects in ASTRecordLayouts must always be destroyed
1004   // because they can contain DenseMaps.
1005   for (llvm::DenseMap<const ObjCContainerDecl*,
1006        const ASTRecordLayout*>::iterator
1007        I = ObjCLayouts.begin(), E = ObjCLayouts.end(); I != E; )
1008     // Increment in loop to prevent using deallocated memory.
1009     if (auto *R = const_cast<ASTRecordLayout *>((I++)->second))
1010       R->Destroy(*this);
1011   ObjCLayouts.clear();
1012 
1013   for (llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator
1014        I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end(); I != E; ) {
1015     // Increment in loop to prevent using deallocated memory.
1016     if (auto *R = const_cast<ASTRecordLayout *>((I++)->second))
1017       R->Destroy(*this);
1018   }
1019   ASTRecordLayouts.clear();
1020 
1021   for (llvm::DenseMap<const Decl*, AttrVec*>::iterator A = DeclAttrs.begin(),
1022                                                     AEnd = DeclAttrs.end();
1023        A != AEnd; ++A)
1024     A->second->~AttrVec();
1025   DeclAttrs.clear();
1026 
1027   for (const auto &Value : ModuleInitializers)
1028     Value.second->~PerModuleInitializers();
1029   ModuleInitializers.clear();
1030 }
1031 
1032 ASTContext::~ASTContext() { cleanup(); }
1033 
1034 void ASTContext::setTraversalScope(const std::vector<Decl *> &TopLevelDecls) {
1035   TraversalScope = TopLevelDecls;
1036   getParentMapContext().clear();
1037 }
1038 
1039 void ASTContext::AddDeallocation(void (*Callback)(void *), void *Data) const {
1040   Deallocations.push_back({Callback, Data});
1041 }
1042 
1043 void
1044 ASTContext::setExternalSource(IntrusiveRefCntPtr<ExternalASTSource> Source) {
1045   ExternalSource = std::move(Source);
1046 }
1047 
1048 void ASTContext::PrintStats() const {
1049   llvm::errs() << "\n*** AST Context Stats:\n";
1050   llvm::errs() << "  " << Types.size() << " types total.\n";
1051 
1052   unsigned counts[] = {
1053 #define TYPE(Name, Parent) 0,
1054 #define ABSTRACT_TYPE(Name, Parent)
1055 #include "clang/AST/TypeNodes.inc"
1056     0 // Extra
1057   };
1058 
1059   for (unsigned i = 0, e = Types.size(); i != e; ++i) {
1060     Type *T = Types[i];
1061     counts[(unsigned)T->getTypeClass()]++;
1062   }
1063 
1064   unsigned Idx = 0;
1065   unsigned TotalBytes = 0;
1066 #define TYPE(Name, Parent)                                              \
1067   if (counts[Idx])                                                      \
1068     llvm::errs() << "    " << counts[Idx] << " " << #Name               \
1069                  << " types, " << sizeof(Name##Type) << " each "        \
1070                  << "(" << counts[Idx] * sizeof(Name##Type)             \
1071                  << " bytes)\n";                                        \
1072   TotalBytes += counts[Idx] * sizeof(Name##Type);                       \
1073   ++Idx;
1074 #define ABSTRACT_TYPE(Name, Parent)
1075 #include "clang/AST/TypeNodes.inc"
1076 
1077   llvm::errs() << "Total bytes = " << TotalBytes << "\n";
1078 
1079   // Implicit special member functions.
1080   llvm::errs() << NumImplicitDefaultConstructorsDeclared << "/"
1081                << NumImplicitDefaultConstructors
1082                << " implicit default constructors created\n";
1083   llvm::errs() << NumImplicitCopyConstructorsDeclared << "/"
1084                << NumImplicitCopyConstructors
1085                << " implicit copy constructors created\n";
1086   if (getLangOpts().CPlusPlus)
1087     llvm::errs() << NumImplicitMoveConstructorsDeclared << "/"
1088                  << NumImplicitMoveConstructors
1089                  << " implicit move constructors created\n";
1090   llvm::errs() << NumImplicitCopyAssignmentOperatorsDeclared << "/"
1091                << NumImplicitCopyAssignmentOperators
1092                << " implicit copy assignment operators created\n";
1093   if (getLangOpts().CPlusPlus)
1094     llvm::errs() << NumImplicitMoveAssignmentOperatorsDeclared << "/"
1095                  << NumImplicitMoveAssignmentOperators
1096                  << " implicit move assignment operators created\n";
1097   llvm::errs() << NumImplicitDestructorsDeclared << "/"
1098                << NumImplicitDestructors
1099                << " implicit destructors created\n";
1100 
1101   if (ExternalSource) {
1102     llvm::errs() << "\n";
1103     ExternalSource->PrintStats();
1104   }
1105 
1106   BumpAlloc.PrintStats();
1107 }
1108 
1109 void ASTContext::mergeDefinitionIntoModule(NamedDecl *ND, Module *M,
1110                                            bool NotifyListeners) {
1111   if (NotifyListeners)
1112     if (auto *Listener = getASTMutationListener())
1113       Listener->RedefinedHiddenDefinition(ND, M);
1114 
1115   MergedDefModules[cast<NamedDecl>(ND->getCanonicalDecl())].push_back(M);
1116 }
1117 
1118 void ASTContext::deduplicateMergedDefinitonsFor(NamedDecl *ND) {
1119   auto It = MergedDefModules.find(cast<NamedDecl>(ND->getCanonicalDecl()));
1120   if (It == MergedDefModules.end())
1121     return;
1122 
1123   auto &Merged = It->second;
1124   llvm::DenseSet<Module*> Found;
1125   for (Module *&M : Merged)
1126     if (!Found.insert(M).second)
1127       M = nullptr;
1128   llvm::erase_value(Merged, nullptr);
1129 }
1130 
1131 ArrayRef<Module *>
1132 ASTContext::getModulesWithMergedDefinition(const NamedDecl *Def) {
1133   auto MergedIt =
1134       MergedDefModules.find(cast<NamedDecl>(Def->getCanonicalDecl()));
1135   if (MergedIt == MergedDefModules.end())
1136     return None;
1137   return MergedIt->second;
1138 }
1139 
1140 void ASTContext::PerModuleInitializers::resolve(ASTContext &Ctx) {
1141   if (LazyInitializers.empty())
1142     return;
1143 
1144   auto *Source = Ctx.getExternalSource();
1145   assert(Source && "lazy initializers but no external source");
1146 
1147   auto LazyInits = std::move(LazyInitializers);
1148   LazyInitializers.clear();
1149 
1150   for (auto ID : LazyInits)
1151     Initializers.push_back(Source->GetExternalDecl(ID));
1152 
1153   assert(LazyInitializers.empty() &&
1154          "GetExternalDecl for lazy module initializer added more inits");
1155 }
1156 
1157 void ASTContext::addModuleInitializer(Module *M, Decl *D) {
1158   // One special case: if we add a module initializer that imports another
1159   // module, and that module's only initializer is an ImportDecl, simplify.
1160   if (const auto *ID = dyn_cast<ImportDecl>(D)) {
1161     auto It = ModuleInitializers.find(ID->getImportedModule());
1162 
1163     // Maybe the ImportDecl does nothing at all. (Common case.)
1164     if (It == ModuleInitializers.end())
1165       return;
1166 
1167     // Maybe the ImportDecl only imports another ImportDecl.
1168     auto &Imported = *It->second;
1169     if (Imported.Initializers.size() + Imported.LazyInitializers.size() == 1) {
1170       Imported.resolve(*this);
1171       auto *OnlyDecl = Imported.Initializers.front();
1172       if (isa<ImportDecl>(OnlyDecl))
1173         D = OnlyDecl;
1174     }
1175   }
1176 
1177   auto *&Inits = ModuleInitializers[M];
1178   if (!Inits)
1179     Inits = new (*this) PerModuleInitializers;
1180   Inits->Initializers.push_back(D);
1181 }
1182 
1183 void ASTContext::addLazyModuleInitializers(Module *M, ArrayRef<uint32_t> IDs) {
1184   auto *&Inits = ModuleInitializers[M];
1185   if (!Inits)
1186     Inits = new (*this) PerModuleInitializers;
1187   Inits->LazyInitializers.insert(Inits->LazyInitializers.end(),
1188                                  IDs.begin(), IDs.end());
1189 }
1190 
1191 ArrayRef<Decl *> ASTContext::getModuleInitializers(Module *M) {
1192   auto It = ModuleInitializers.find(M);
1193   if (It == ModuleInitializers.end())
1194     return None;
1195 
1196   auto *Inits = It->second;
1197   Inits->resolve(*this);
1198   return Inits->Initializers;
1199 }
1200 
1201 ExternCContextDecl *ASTContext::getExternCContextDecl() const {
1202   if (!ExternCContext)
1203     ExternCContext = ExternCContextDecl::Create(*this, getTranslationUnitDecl());
1204 
1205   return ExternCContext;
1206 }
1207 
1208 BuiltinTemplateDecl *
1209 ASTContext::buildBuiltinTemplateDecl(BuiltinTemplateKind BTK,
1210                                      const IdentifierInfo *II) const {
1211   auto *BuiltinTemplate =
1212       BuiltinTemplateDecl::Create(*this, getTranslationUnitDecl(), II, BTK);
1213   BuiltinTemplate->setImplicit();
1214   getTranslationUnitDecl()->addDecl(BuiltinTemplate);
1215 
1216   return BuiltinTemplate;
1217 }
1218 
1219 BuiltinTemplateDecl *
1220 ASTContext::getMakeIntegerSeqDecl() const {
1221   if (!MakeIntegerSeqDecl)
1222     MakeIntegerSeqDecl = buildBuiltinTemplateDecl(BTK__make_integer_seq,
1223                                                   getMakeIntegerSeqName());
1224   return MakeIntegerSeqDecl;
1225 }
1226 
1227 BuiltinTemplateDecl *
1228 ASTContext::getTypePackElementDecl() const {
1229   if (!TypePackElementDecl)
1230     TypePackElementDecl = buildBuiltinTemplateDecl(BTK__type_pack_element,
1231                                                    getTypePackElementName());
1232   return TypePackElementDecl;
1233 }
1234 
1235 RecordDecl *ASTContext::buildImplicitRecord(StringRef Name,
1236                                             RecordDecl::TagKind TK) const {
1237   SourceLocation Loc;
1238   RecordDecl *NewDecl;
1239   if (getLangOpts().CPlusPlus)
1240     NewDecl = CXXRecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc,
1241                                     Loc, &Idents.get(Name));
1242   else
1243     NewDecl = RecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc, Loc,
1244                                  &Idents.get(Name));
1245   NewDecl->setImplicit();
1246   NewDecl->addAttr(TypeVisibilityAttr::CreateImplicit(
1247       const_cast<ASTContext &>(*this), TypeVisibilityAttr::Default));
1248   return NewDecl;
1249 }
1250 
1251 TypedefDecl *ASTContext::buildImplicitTypedef(QualType T,
1252                                               StringRef Name) const {
1253   TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T);
1254   TypedefDecl *NewDecl = TypedefDecl::Create(
1255       const_cast<ASTContext &>(*this), getTranslationUnitDecl(),
1256       SourceLocation(), SourceLocation(), &Idents.get(Name), TInfo);
1257   NewDecl->setImplicit();
1258   return NewDecl;
1259 }
1260 
1261 TypedefDecl *ASTContext::getInt128Decl() const {
1262   if (!Int128Decl)
1263     Int128Decl = buildImplicitTypedef(Int128Ty, "__int128_t");
1264   return Int128Decl;
1265 }
1266 
1267 TypedefDecl *ASTContext::getUInt128Decl() const {
1268   if (!UInt128Decl)
1269     UInt128Decl = buildImplicitTypedef(UnsignedInt128Ty, "__uint128_t");
1270   return UInt128Decl;
1271 }
1272 
1273 void ASTContext::InitBuiltinType(CanQualType &R, BuiltinType::Kind K) {
1274   auto *Ty = new (*this, TypeAlignment) BuiltinType(K);
1275   R = CanQualType::CreateUnsafe(QualType(Ty, 0));
1276   Types.push_back(Ty);
1277 }
1278 
1279 void ASTContext::InitBuiltinTypes(const TargetInfo &Target,
1280                                   const TargetInfo *AuxTarget) {
1281   assert((!this->Target || this->Target == &Target) &&
1282          "Incorrect target reinitialization");
1283   assert(VoidTy.isNull() && "Context reinitialized?");
1284 
1285   this->Target = &Target;
1286   this->AuxTarget = AuxTarget;
1287 
1288   ABI.reset(createCXXABI(Target));
1289   AddrSpaceMap = getAddressSpaceMap(Target, LangOpts);
1290   AddrSpaceMapMangling = isAddrSpaceMapManglingEnabled(Target, LangOpts);
1291 
1292   // C99 6.2.5p19.
1293   InitBuiltinType(VoidTy,              BuiltinType::Void);
1294 
1295   // C99 6.2.5p2.
1296   InitBuiltinType(BoolTy,              BuiltinType::Bool);
1297   // C99 6.2.5p3.
1298   if (LangOpts.CharIsSigned)
1299     InitBuiltinType(CharTy,            BuiltinType::Char_S);
1300   else
1301     InitBuiltinType(CharTy,            BuiltinType::Char_U);
1302   // C99 6.2.5p4.
1303   InitBuiltinType(SignedCharTy,        BuiltinType::SChar);
1304   InitBuiltinType(ShortTy,             BuiltinType::Short);
1305   InitBuiltinType(IntTy,               BuiltinType::Int);
1306   InitBuiltinType(LongTy,              BuiltinType::Long);
1307   InitBuiltinType(LongLongTy,          BuiltinType::LongLong);
1308 
1309   // C99 6.2.5p6.
1310   InitBuiltinType(UnsignedCharTy,      BuiltinType::UChar);
1311   InitBuiltinType(UnsignedShortTy,     BuiltinType::UShort);
1312   InitBuiltinType(UnsignedIntTy,       BuiltinType::UInt);
1313   InitBuiltinType(UnsignedLongTy,      BuiltinType::ULong);
1314   InitBuiltinType(UnsignedLongLongTy,  BuiltinType::ULongLong);
1315 
1316   // C99 6.2.5p10.
1317   InitBuiltinType(FloatTy,             BuiltinType::Float);
1318   InitBuiltinType(DoubleTy,            BuiltinType::Double);
1319   InitBuiltinType(LongDoubleTy,        BuiltinType::LongDouble);
1320 
1321   // GNU extension, __float128 for IEEE quadruple precision
1322   InitBuiltinType(Float128Ty,          BuiltinType::Float128);
1323 
1324   // __ibm128 for IBM extended precision
1325   InitBuiltinType(Ibm128Ty, BuiltinType::Ibm128);
1326 
1327   // C11 extension ISO/IEC TS 18661-3
1328   InitBuiltinType(Float16Ty,           BuiltinType::Float16);
1329 
1330   // ISO/IEC JTC1 SC22 WG14 N1169 Extension
1331   InitBuiltinType(ShortAccumTy,            BuiltinType::ShortAccum);
1332   InitBuiltinType(AccumTy,                 BuiltinType::Accum);
1333   InitBuiltinType(LongAccumTy,             BuiltinType::LongAccum);
1334   InitBuiltinType(UnsignedShortAccumTy,    BuiltinType::UShortAccum);
1335   InitBuiltinType(UnsignedAccumTy,         BuiltinType::UAccum);
1336   InitBuiltinType(UnsignedLongAccumTy,     BuiltinType::ULongAccum);
1337   InitBuiltinType(ShortFractTy,            BuiltinType::ShortFract);
1338   InitBuiltinType(FractTy,                 BuiltinType::Fract);
1339   InitBuiltinType(LongFractTy,             BuiltinType::LongFract);
1340   InitBuiltinType(UnsignedShortFractTy,    BuiltinType::UShortFract);
1341   InitBuiltinType(UnsignedFractTy,         BuiltinType::UFract);
1342   InitBuiltinType(UnsignedLongFractTy,     BuiltinType::ULongFract);
1343   InitBuiltinType(SatShortAccumTy,         BuiltinType::SatShortAccum);
1344   InitBuiltinType(SatAccumTy,              BuiltinType::SatAccum);
1345   InitBuiltinType(SatLongAccumTy,          BuiltinType::SatLongAccum);
1346   InitBuiltinType(SatUnsignedShortAccumTy, BuiltinType::SatUShortAccum);
1347   InitBuiltinType(SatUnsignedAccumTy,      BuiltinType::SatUAccum);
1348   InitBuiltinType(SatUnsignedLongAccumTy,  BuiltinType::SatULongAccum);
1349   InitBuiltinType(SatShortFractTy,         BuiltinType::SatShortFract);
1350   InitBuiltinType(SatFractTy,              BuiltinType::SatFract);
1351   InitBuiltinType(SatLongFractTy,          BuiltinType::SatLongFract);
1352   InitBuiltinType(SatUnsignedShortFractTy, BuiltinType::SatUShortFract);
1353   InitBuiltinType(SatUnsignedFractTy,      BuiltinType::SatUFract);
1354   InitBuiltinType(SatUnsignedLongFractTy,  BuiltinType::SatULongFract);
1355 
1356   // GNU extension, 128-bit integers.
1357   InitBuiltinType(Int128Ty,            BuiltinType::Int128);
1358   InitBuiltinType(UnsignedInt128Ty,    BuiltinType::UInt128);
1359 
1360   // C++ 3.9.1p5
1361   if (TargetInfo::isTypeSigned(Target.getWCharType()))
1362     InitBuiltinType(WCharTy,           BuiltinType::WChar_S);
1363   else  // -fshort-wchar makes wchar_t be unsigned.
1364     InitBuiltinType(WCharTy,           BuiltinType::WChar_U);
1365   if (LangOpts.CPlusPlus && LangOpts.WChar)
1366     WideCharTy = WCharTy;
1367   else {
1368     // C99 (or C++ using -fno-wchar).
1369     WideCharTy = getFromTargetType(Target.getWCharType());
1370   }
1371 
1372   WIntTy = getFromTargetType(Target.getWIntType());
1373 
1374   // C++20 (proposed)
1375   InitBuiltinType(Char8Ty,              BuiltinType::Char8);
1376 
1377   if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
1378     InitBuiltinType(Char16Ty,           BuiltinType::Char16);
1379   else // C99
1380     Char16Ty = getFromTargetType(Target.getChar16Type());
1381 
1382   if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
1383     InitBuiltinType(Char32Ty,           BuiltinType::Char32);
1384   else // C99
1385     Char32Ty = getFromTargetType(Target.getChar32Type());
1386 
1387   // Placeholder type for type-dependent expressions whose type is
1388   // completely unknown. No code should ever check a type against
1389   // DependentTy and users should never see it; however, it is here to
1390   // help diagnose failures to properly check for type-dependent
1391   // expressions.
1392   InitBuiltinType(DependentTy,         BuiltinType::Dependent);
1393 
1394   // Placeholder type for functions.
1395   InitBuiltinType(OverloadTy,          BuiltinType::Overload);
1396 
1397   // Placeholder type for bound members.
1398   InitBuiltinType(BoundMemberTy,       BuiltinType::BoundMember);
1399 
1400   // Placeholder type for pseudo-objects.
1401   InitBuiltinType(PseudoObjectTy,      BuiltinType::PseudoObject);
1402 
1403   // "any" type; useful for debugger-like clients.
1404   InitBuiltinType(UnknownAnyTy,        BuiltinType::UnknownAny);
1405 
1406   // Placeholder type for unbridged ARC casts.
1407   InitBuiltinType(ARCUnbridgedCastTy,  BuiltinType::ARCUnbridgedCast);
1408 
1409   // Placeholder type for builtin functions.
1410   InitBuiltinType(BuiltinFnTy,  BuiltinType::BuiltinFn);
1411 
1412   // Placeholder type for OMP array sections.
1413   if (LangOpts.OpenMP) {
1414     InitBuiltinType(OMPArraySectionTy, BuiltinType::OMPArraySection);
1415     InitBuiltinType(OMPArrayShapingTy, BuiltinType::OMPArrayShaping);
1416     InitBuiltinType(OMPIteratorTy, BuiltinType::OMPIterator);
1417   }
1418   if (LangOpts.MatrixTypes)
1419     InitBuiltinType(IncompleteMatrixIdxTy, BuiltinType::IncompleteMatrixIdx);
1420 
1421   // Builtin types for 'id', 'Class', and 'SEL'.
1422   InitBuiltinType(ObjCBuiltinIdTy, BuiltinType::ObjCId);
1423   InitBuiltinType(ObjCBuiltinClassTy, BuiltinType::ObjCClass);
1424   InitBuiltinType(ObjCBuiltinSelTy, BuiltinType::ObjCSel);
1425 
1426   if (LangOpts.OpenCL) {
1427 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
1428     InitBuiltinType(SingletonId, BuiltinType::Id);
1429 #include "clang/Basic/OpenCLImageTypes.def"
1430 
1431     InitBuiltinType(OCLSamplerTy, BuiltinType::OCLSampler);
1432     InitBuiltinType(OCLEventTy, BuiltinType::OCLEvent);
1433     InitBuiltinType(OCLClkEventTy, BuiltinType::OCLClkEvent);
1434     InitBuiltinType(OCLQueueTy, BuiltinType::OCLQueue);
1435     InitBuiltinType(OCLReserveIDTy, BuiltinType::OCLReserveID);
1436 
1437 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
1438     InitBuiltinType(Id##Ty, BuiltinType::Id);
1439 #include "clang/Basic/OpenCLExtensionTypes.def"
1440   }
1441 
1442   if (Target.hasAArch64SVETypes()) {
1443 #define SVE_TYPE(Name, Id, SingletonId) \
1444     InitBuiltinType(SingletonId, BuiltinType::Id);
1445 #include "clang/Basic/AArch64SVEACLETypes.def"
1446   }
1447 
1448   if (Target.getTriple().isPPC64()) {
1449 #define PPC_VECTOR_MMA_TYPE(Name, Id, Size) \
1450       InitBuiltinType(Id##Ty, BuiltinType::Id);
1451 #include "clang/Basic/PPCTypes.def"
1452 #define PPC_VECTOR_VSX_TYPE(Name, Id, Size) \
1453     InitBuiltinType(Id##Ty, BuiltinType::Id);
1454 #include "clang/Basic/PPCTypes.def"
1455   }
1456 
1457   if (Target.hasRISCVVTypes()) {
1458 #define RVV_TYPE(Name, Id, SingletonId)                                        \
1459   InitBuiltinType(SingletonId, BuiltinType::Id);
1460 #include "clang/Basic/RISCVVTypes.def"
1461   }
1462 
1463   // Builtin type for __objc_yes and __objc_no
1464   ObjCBuiltinBoolTy = (Target.useSignedCharForObjCBool() ?
1465                        SignedCharTy : BoolTy);
1466 
1467   ObjCConstantStringType = QualType();
1468 
1469   ObjCSuperType = QualType();
1470 
1471   // void * type
1472   if (LangOpts.OpenCLGenericAddressSpace) {
1473     auto Q = VoidTy.getQualifiers();
1474     Q.setAddressSpace(LangAS::opencl_generic);
1475     VoidPtrTy = getPointerType(getCanonicalType(
1476         getQualifiedType(VoidTy.getUnqualifiedType(), Q)));
1477   } else {
1478     VoidPtrTy = getPointerType(VoidTy);
1479   }
1480 
1481   // nullptr type (C++0x 2.14.7)
1482   InitBuiltinType(NullPtrTy,           BuiltinType::NullPtr);
1483 
1484   // half type (OpenCL 6.1.1.1) / ARM NEON __fp16
1485   InitBuiltinType(HalfTy, BuiltinType::Half);
1486 
1487   InitBuiltinType(BFloat16Ty, BuiltinType::BFloat16);
1488 
1489   // Builtin type used to help define __builtin_va_list.
1490   VaListTagDecl = nullptr;
1491 
1492   // MSVC predeclares struct _GUID, and we need it to create MSGuidDecls.
1493   if (LangOpts.MicrosoftExt || LangOpts.Borland) {
1494     MSGuidTagDecl = buildImplicitRecord("_GUID");
1495     getTranslationUnitDecl()->addDecl(MSGuidTagDecl);
1496   }
1497 }
1498 
1499 DiagnosticsEngine &ASTContext::getDiagnostics() const {
1500   return SourceMgr.getDiagnostics();
1501 }
1502 
1503 AttrVec& ASTContext::getDeclAttrs(const Decl *D) {
1504   AttrVec *&Result = DeclAttrs[D];
1505   if (!Result) {
1506     void *Mem = Allocate(sizeof(AttrVec));
1507     Result = new (Mem) AttrVec;
1508   }
1509 
1510   return *Result;
1511 }
1512 
1513 /// Erase the attributes corresponding to the given declaration.
1514 void ASTContext::eraseDeclAttrs(const Decl *D) {
1515   llvm::DenseMap<const Decl*, AttrVec*>::iterator Pos = DeclAttrs.find(D);
1516   if (Pos != DeclAttrs.end()) {
1517     Pos->second->~AttrVec();
1518     DeclAttrs.erase(Pos);
1519   }
1520 }
1521 
1522 // FIXME: Remove ?
1523 MemberSpecializationInfo *
1524 ASTContext::getInstantiatedFromStaticDataMember(const VarDecl *Var) {
1525   assert(Var->isStaticDataMember() && "Not a static data member");
1526   return getTemplateOrSpecializationInfo(Var)
1527       .dyn_cast<MemberSpecializationInfo *>();
1528 }
1529 
1530 ASTContext::TemplateOrSpecializationInfo
1531 ASTContext::getTemplateOrSpecializationInfo(const VarDecl *Var) {
1532   llvm::DenseMap<const VarDecl *, TemplateOrSpecializationInfo>::iterator Pos =
1533       TemplateOrInstantiation.find(Var);
1534   if (Pos == TemplateOrInstantiation.end())
1535     return {};
1536 
1537   return Pos->second;
1538 }
1539 
1540 void
1541 ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl,
1542                                                 TemplateSpecializationKind TSK,
1543                                           SourceLocation PointOfInstantiation) {
1544   assert(Inst->isStaticDataMember() && "Not a static data member");
1545   assert(Tmpl->isStaticDataMember() && "Not a static data member");
1546   setTemplateOrSpecializationInfo(Inst, new (*this) MemberSpecializationInfo(
1547                                             Tmpl, TSK, PointOfInstantiation));
1548 }
1549 
1550 void
1551 ASTContext::setTemplateOrSpecializationInfo(VarDecl *Inst,
1552                                             TemplateOrSpecializationInfo TSI) {
1553   assert(!TemplateOrInstantiation[Inst] &&
1554          "Already noted what the variable was instantiated from");
1555   TemplateOrInstantiation[Inst] = TSI;
1556 }
1557 
1558 NamedDecl *
1559 ASTContext::getInstantiatedFromUsingDecl(NamedDecl *UUD) {
1560   auto Pos = InstantiatedFromUsingDecl.find(UUD);
1561   if (Pos == InstantiatedFromUsingDecl.end())
1562     return nullptr;
1563 
1564   return Pos->second;
1565 }
1566 
1567 void
1568 ASTContext::setInstantiatedFromUsingDecl(NamedDecl *Inst, NamedDecl *Pattern) {
1569   assert((isa<UsingDecl>(Pattern) ||
1570           isa<UnresolvedUsingValueDecl>(Pattern) ||
1571           isa<UnresolvedUsingTypenameDecl>(Pattern)) &&
1572          "pattern decl is not a using decl");
1573   assert((isa<UsingDecl>(Inst) ||
1574           isa<UnresolvedUsingValueDecl>(Inst) ||
1575           isa<UnresolvedUsingTypenameDecl>(Inst)) &&
1576          "instantiation did not produce a using decl");
1577   assert(!InstantiatedFromUsingDecl[Inst] && "pattern already exists");
1578   InstantiatedFromUsingDecl[Inst] = Pattern;
1579 }
1580 
1581 UsingEnumDecl *
1582 ASTContext::getInstantiatedFromUsingEnumDecl(UsingEnumDecl *UUD) {
1583   auto Pos = InstantiatedFromUsingEnumDecl.find(UUD);
1584   if (Pos == InstantiatedFromUsingEnumDecl.end())
1585     return nullptr;
1586 
1587   return Pos->second;
1588 }
1589 
1590 void ASTContext::setInstantiatedFromUsingEnumDecl(UsingEnumDecl *Inst,
1591                                                   UsingEnumDecl *Pattern) {
1592   assert(!InstantiatedFromUsingEnumDecl[Inst] && "pattern already exists");
1593   InstantiatedFromUsingEnumDecl[Inst] = Pattern;
1594 }
1595 
1596 UsingShadowDecl *
1597 ASTContext::getInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst) {
1598   llvm::DenseMap<UsingShadowDecl*, UsingShadowDecl*>::const_iterator Pos
1599     = InstantiatedFromUsingShadowDecl.find(Inst);
1600   if (Pos == InstantiatedFromUsingShadowDecl.end())
1601     return nullptr;
1602 
1603   return Pos->second;
1604 }
1605 
1606 void
1607 ASTContext::setInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst,
1608                                                UsingShadowDecl *Pattern) {
1609   assert(!InstantiatedFromUsingShadowDecl[Inst] && "pattern already exists");
1610   InstantiatedFromUsingShadowDecl[Inst] = Pattern;
1611 }
1612 
1613 FieldDecl *ASTContext::getInstantiatedFromUnnamedFieldDecl(FieldDecl *Field) {
1614   llvm::DenseMap<FieldDecl *, FieldDecl *>::iterator Pos
1615     = InstantiatedFromUnnamedFieldDecl.find(Field);
1616   if (Pos == InstantiatedFromUnnamedFieldDecl.end())
1617     return nullptr;
1618 
1619   return Pos->second;
1620 }
1621 
1622 void ASTContext::setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst,
1623                                                      FieldDecl *Tmpl) {
1624   assert(!Inst->getDeclName() && "Instantiated field decl is not unnamed");
1625   assert(!Tmpl->getDeclName() && "Template field decl is not unnamed");
1626   assert(!InstantiatedFromUnnamedFieldDecl[Inst] &&
1627          "Already noted what unnamed field was instantiated from");
1628 
1629   InstantiatedFromUnnamedFieldDecl[Inst] = Tmpl;
1630 }
1631 
1632 ASTContext::overridden_cxx_method_iterator
1633 ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const {
1634   return overridden_methods(Method).begin();
1635 }
1636 
1637 ASTContext::overridden_cxx_method_iterator
1638 ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const {
1639   return overridden_methods(Method).end();
1640 }
1641 
1642 unsigned
1643 ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const {
1644   auto Range = overridden_methods(Method);
1645   return Range.end() - Range.begin();
1646 }
1647 
1648 ASTContext::overridden_method_range
1649 ASTContext::overridden_methods(const CXXMethodDecl *Method) const {
1650   llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos =
1651       OverriddenMethods.find(Method->getCanonicalDecl());
1652   if (Pos == OverriddenMethods.end())
1653     return overridden_method_range(nullptr, nullptr);
1654   return overridden_method_range(Pos->second.begin(), Pos->second.end());
1655 }
1656 
1657 void ASTContext::addOverriddenMethod(const CXXMethodDecl *Method,
1658                                      const CXXMethodDecl *Overridden) {
1659   assert(Method->isCanonicalDecl() && Overridden->isCanonicalDecl());
1660   OverriddenMethods[Method].push_back(Overridden);
1661 }
1662 
1663 void ASTContext::getOverriddenMethods(
1664                       const NamedDecl *D,
1665                       SmallVectorImpl<const NamedDecl *> &Overridden) const {
1666   assert(D);
1667 
1668   if (const auto *CXXMethod = dyn_cast<CXXMethodDecl>(D)) {
1669     Overridden.append(overridden_methods_begin(CXXMethod),
1670                       overridden_methods_end(CXXMethod));
1671     return;
1672   }
1673 
1674   const auto *Method = dyn_cast<ObjCMethodDecl>(D);
1675   if (!Method)
1676     return;
1677 
1678   SmallVector<const ObjCMethodDecl *, 8> OverDecls;
1679   Method->getOverriddenMethods(OverDecls);
1680   Overridden.append(OverDecls.begin(), OverDecls.end());
1681 }
1682 
1683 void ASTContext::addedLocalImportDecl(ImportDecl *Import) {
1684   assert(!Import->getNextLocalImport() &&
1685          "Import declaration already in the chain");
1686   assert(!Import->isFromASTFile() && "Non-local import declaration");
1687   if (!FirstLocalImport) {
1688     FirstLocalImport = Import;
1689     LastLocalImport = Import;
1690     return;
1691   }
1692 
1693   LastLocalImport->setNextLocalImport(Import);
1694   LastLocalImport = Import;
1695 }
1696 
1697 //===----------------------------------------------------------------------===//
1698 //                         Type Sizing and Analysis
1699 //===----------------------------------------------------------------------===//
1700 
1701 /// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
1702 /// scalar floating point type.
1703 const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
1704   switch (T->castAs<BuiltinType>()->getKind()) {
1705   default:
1706     llvm_unreachable("Not a floating point type!");
1707   case BuiltinType::BFloat16:
1708     return Target->getBFloat16Format();
1709   case BuiltinType::Float16:
1710   case BuiltinType::Half:
1711     return Target->getHalfFormat();
1712   case BuiltinType::Float:      return Target->getFloatFormat();
1713   case BuiltinType::Double:     return Target->getDoubleFormat();
1714   case BuiltinType::Ibm128:
1715     return Target->getIbm128Format();
1716   case BuiltinType::LongDouble:
1717     if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice)
1718       return AuxTarget->getLongDoubleFormat();
1719     return Target->getLongDoubleFormat();
1720   case BuiltinType::Float128:
1721     if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice)
1722       return AuxTarget->getFloat128Format();
1723     return Target->getFloat128Format();
1724   }
1725 }
1726 
1727 CharUnits ASTContext::getDeclAlign(const Decl *D, bool ForAlignof) const {
1728   unsigned Align = Target->getCharWidth();
1729 
1730   bool UseAlignAttrOnly = false;
1731   if (unsigned AlignFromAttr = D->getMaxAlignment()) {
1732     Align = AlignFromAttr;
1733 
1734     // __attribute__((aligned)) can increase or decrease alignment
1735     // *except* on a struct or struct member, where it only increases
1736     // alignment unless 'packed' is also specified.
1737     //
1738     // It is an error for alignas to decrease alignment, so we can
1739     // ignore that possibility;  Sema should diagnose it.
1740     if (isa<FieldDecl>(D)) {
1741       UseAlignAttrOnly = D->hasAttr<PackedAttr>() ||
1742         cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
1743     } else {
1744       UseAlignAttrOnly = true;
1745     }
1746   }
1747   else if (isa<FieldDecl>(D))
1748       UseAlignAttrOnly =
1749         D->hasAttr<PackedAttr>() ||
1750         cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
1751 
1752   // If we're using the align attribute only, just ignore everything
1753   // else about the declaration and its type.
1754   if (UseAlignAttrOnly) {
1755     // do nothing
1756   } else if (const auto *VD = dyn_cast<ValueDecl>(D)) {
1757     QualType T = VD->getType();
1758     if (const auto *RT = T->getAs<ReferenceType>()) {
1759       if (ForAlignof)
1760         T = RT->getPointeeType();
1761       else
1762         T = getPointerType(RT->getPointeeType());
1763     }
1764     QualType BaseT = getBaseElementType(T);
1765     if (T->isFunctionType())
1766       Align = getTypeInfoImpl(T.getTypePtr()).Align;
1767     else if (!BaseT->isIncompleteType()) {
1768       // Adjust alignments of declarations with array type by the
1769       // large-array alignment on the target.
1770       if (const ArrayType *arrayType = getAsArrayType(T)) {
1771         unsigned MinWidth = Target->getLargeArrayMinWidth();
1772         if (!ForAlignof && MinWidth) {
1773           if (isa<VariableArrayType>(arrayType))
1774             Align = std::max(Align, Target->getLargeArrayAlign());
1775           else if (isa<ConstantArrayType>(arrayType) &&
1776                    MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType)))
1777             Align = std::max(Align, Target->getLargeArrayAlign());
1778         }
1779       }
1780       Align = std::max(Align, getPreferredTypeAlign(T.getTypePtr()));
1781       if (BaseT.getQualifiers().hasUnaligned())
1782         Align = Target->getCharWidth();
1783       if (const auto *VD = dyn_cast<VarDecl>(D)) {
1784         if (VD->hasGlobalStorage() && !ForAlignof) {
1785           uint64_t TypeSize = getTypeSize(T.getTypePtr());
1786           Align = std::max(Align, getTargetInfo().getMinGlobalAlign(TypeSize));
1787         }
1788       }
1789     }
1790 
1791     // Fields can be subject to extra alignment constraints, like if
1792     // the field is packed, the struct is packed, or the struct has a
1793     // a max-field-alignment constraint (#pragma pack).  So calculate
1794     // the actual alignment of the field within the struct, and then
1795     // (as we're expected to) constrain that by the alignment of the type.
1796     if (const auto *Field = dyn_cast<FieldDecl>(VD)) {
1797       const RecordDecl *Parent = Field->getParent();
1798       // We can only produce a sensible answer if the record is valid.
1799       if (!Parent->isInvalidDecl()) {
1800         const ASTRecordLayout &Layout = getASTRecordLayout(Parent);
1801 
1802         // Start with the record's overall alignment.
1803         unsigned FieldAlign = toBits(Layout.getAlignment());
1804 
1805         // Use the GCD of that and the offset within the record.
1806         uint64_t Offset = Layout.getFieldOffset(Field->getFieldIndex());
1807         if (Offset > 0) {
1808           // Alignment is always a power of 2, so the GCD will be a power of 2,
1809           // which means we get to do this crazy thing instead of Euclid's.
1810           uint64_t LowBitOfOffset = Offset & (~Offset + 1);
1811           if (LowBitOfOffset < FieldAlign)
1812             FieldAlign = static_cast<unsigned>(LowBitOfOffset);
1813         }
1814 
1815         Align = std::min(Align, FieldAlign);
1816       }
1817     }
1818   }
1819 
1820   // Some targets have hard limitation on the maximum requestable alignment in
1821   // aligned attribute for static variables.
1822   const unsigned MaxAlignedAttr = getTargetInfo().getMaxAlignedAttribute();
1823   const auto *VD = dyn_cast<VarDecl>(D);
1824   if (MaxAlignedAttr && VD && VD->getStorageClass() == SC_Static)
1825     Align = std::min(Align, MaxAlignedAttr);
1826 
1827   return toCharUnitsFromBits(Align);
1828 }
1829 
1830 CharUnits ASTContext::getExnObjectAlignment() const {
1831   return toCharUnitsFromBits(Target->getExnObjectAlignment());
1832 }
1833 
1834 // getTypeInfoDataSizeInChars - Return the size of a type, in
1835 // chars. If the type is a record, its data size is returned.  This is
1836 // the size of the memcpy that's performed when assigning this type
1837 // using a trivial copy/move assignment operator.
1838 TypeInfoChars ASTContext::getTypeInfoDataSizeInChars(QualType T) const {
1839   TypeInfoChars Info = getTypeInfoInChars(T);
1840 
1841   // In C++, objects can sometimes be allocated into the tail padding
1842   // of a base-class subobject.  We decide whether that's possible
1843   // during class layout, so here we can just trust the layout results.
1844   if (getLangOpts().CPlusPlus) {
1845     if (const auto *RT = T->getAs<RecordType>()) {
1846       const ASTRecordLayout &layout = getASTRecordLayout(RT->getDecl());
1847       Info.Width = layout.getDataSize();
1848     }
1849   }
1850 
1851   return Info;
1852 }
1853 
1854 /// getConstantArrayInfoInChars - Performing the computation in CharUnits
1855 /// instead of in bits prevents overflowing the uint64_t for some large arrays.
1856 TypeInfoChars
1857 static getConstantArrayInfoInChars(const ASTContext &Context,
1858                                    const ConstantArrayType *CAT) {
1859   TypeInfoChars EltInfo = Context.getTypeInfoInChars(CAT->getElementType());
1860   uint64_t Size = CAT->getSize().getZExtValue();
1861   assert((Size == 0 || static_cast<uint64_t>(EltInfo.Width.getQuantity()) <=
1862               (uint64_t)(-1)/Size) &&
1863          "Overflow in array type char size evaluation");
1864   uint64_t Width = EltInfo.Width.getQuantity() * Size;
1865   unsigned Align = EltInfo.Align.getQuantity();
1866   if (!Context.getTargetInfo().getCXXABI().isMicrosoft() ||
1867       Context.getTargetInfo().getPointerWidth(0) == 64)
1868     Width = llvm::alignTo(Width, Align);
1869   return TypeInfoChars(CharUnits::fromQuantity(Width),
1870                        CharUnits::fromQuantity(Align),
1871                        EltInfo.AlignRequirement);
1872 }
1873 
1874 TypeInfoChars ASTContext::getTypeInfoInChars(const Type *T) const {
1875   if (const auto *CAT = dyn_cast<ConstantArrayType>(T))
1876     return getConstantArrayInfoInChars(*this, CAT);
1877   TypeInfo Info = getTypeInfo(T);
1878   return TypeInfoChars(toCharUnitsFromBits(Info.Width),
1879                        toCharUnitsFromBits(Info.Align), Info.AlignRequirement);
1880 }
1881 
1882 TypeInfoChars ASTContext::getTypeInfoInChars(QualType T) const {
1883   return getTypeInfoInChars(T.getTypePtr());
1884 }
1885 
1886 bool ASTContext::isAlignmentRequired(const Type *T) const {
1887   return getTypeInfo(T).AlignRequirement != AlignRequirementKind::None;
1888 }
1889 
1890 bool ASTContext::isAlignmentRequired(QualType T) const {
1891   return isAlignmentRequired(T.getTypePtr());
1892 }
1893 
1894 unsigned ASTContext::getTypeAlignIfKnown(QualType T,
1895                                          bool NeedsPreferredAlignment) const {
1896   // An alignment on a typedef overrides anything else.
1897   if (const auto *TT = T->getAs<TypedefType>())
1898     if (unsigned Align = TT->getDecl()->getMaxAlignment())
1899       return Align;
1900 
1901   // If we have an (array of) complete type, we're done.
1902   T = getBaseElementType(T);
1903   if (!T->isIncompleteType())
1904     return NeedsPreferredAlignment ? getPreferredTypeAlign(T) : getTypeAlign(T);
1905 
1906   // If we had an array type, its element type might be a typedef
1907   // type with an alignment attribute.
1908   if (const auto *TT = T->getAs<TypedefType>())
1909     if (unsigned Align = TT->getDecl()->getMaxAlignment())
1910       return Align;
1911 
1912   // Otherwise, see if the declaration of the type had an attribute.
1913   if (const auto *TT = T->getAs<TagType>())
1914     return TT->getDecl()->getMaxAlignment();
1915 
1916   return 0;
1917 }
1918 
1919 TypeInfo ASTContext::getTypeInfo(const Type *T) const {
1920   TypeInfoMap::iterator I = MemoizedTypeInfo.find(T);
1921   if (I != MemoizedTypeInfo.end())
1922     return I->second;
1923 
1924   // This call can invalidate MemoizedTypeInfo[T], so we need a second lookup.
1925   TypeInfo TI = getTypeInfoImpl(T);
1926   MemoizedTypeInfo[T] = TI;
1927   return TI;
1928 }
1929 
1930 /// getTypeInfoImpl - Return the size of the specified type, in bits.  This
1931 /// method does not work on incomplete types.
1932 ///
1933 /// FIXME: Pointers into different addr spaces could have different sizes and
1934 /// alignment requirements: getPointerInfo should take an AddrSpace, this
1935 /// should take a QualType, &c.
1936 TypeInfo ASTContext::getTypeInfoImpl(const Type *T) const {
1937   uint64_t Width = 0;
1938   unsigned Align = 8;
1939   AlignRequirementKind AlignRequirement = AlignRequirementKind::None;
1940   unsigned AS = 0;
1941   switch (T->getTypeClass()) {
1942 #define TYPE(Class, Base)
1943 #define ABSTRACT_TYPE(Class, Base)
1944 #define NON_CANONICAL_TYPE(Class, Base)
1945 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
1946 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base)                       \
1947   case Type::Class:                                                            \
1948   assert(!T->isDependentType() && "should not see dependent types here");      \
1949   return getTypeInfo(cast<Class##Type>(T)->desugar().getTypePtr());
1950 #include "clang/AST/TypeNodes.inc"
1951     llvm_unreachable("Should not see dependent types");
1952 
1953   case Type::FunctionNoProto:
1954   case Type::FunctionProto:
1955     // GCC extension: alignof(function) = 32 bits
1956     Width = 0;
1957     Align = 32;
1958     break;
1959 
1960   case Type::IncompleteArray:
1961   case Type::VariableArray:
1962   case Type::ConstantArray: {
1963     // Model non-constant sized arrays as size zero, but track the alignment.
1964     uint64_t Size = 0;
1965     if (const auto *CAT = dyn_cast<ConstantArrayType>(T))
1966       Size = CAT->getSize().getZExtValue();
1967 
1968     TypeInfo EltInfo = getTypeInfo(cast<ArrayType>(T)->getElementType());
1969     assert((Size == 0 || EltInfo.Width <= (uint64_t)(-1) / Size) &&
1970            "Overflow in array type bit size evaluation");
1971     Width = EltInfo.Width * Size;
1972     Align = EltInfo.Align;
1973     AlignRequirement = EltInfo.AlignRequirement;
1974     if (!getTargetInfo().getCXXABI().isMicrosoft() ||
1975         getTargetInfo().getPointerWidth(0) == 64)
1976       Width = llvm::alignTo(Width, Align);
1977     break;
1978   }
1979 
1980   case Type::ExtVector:
1981   case Type::Vector: {
1982     const auto *VT = cast<VectorType>(T);
1983     TypeInfo EltInfo = getTypeInfo(VT->getElementType());
1984     Width = EltInfo.Width * VT->getNumElements();
1985     Align = Width;
1986     // If the alignment is not a power of 2, round up to the next power of 2.
1987     // This happens for non-power-of-2 length vectors.
1988     if (Align & (Align-1)) {
1989       Align = llvm::NextPowerOf2(Align);
1990       Width = llvm::alignTo(Width, Align);
1991     }
1992     // Adjust the alignment based on the target max.
1993     uint64_t TargetVectorAlign = Target->getMaxVectorAlign();
1994     if (TargetVectorAlign && TargetVectorAlign < Align)
1995       Align = TargetVectorAlign;
1996     if (VT->getVectorKind() == VectorType::SveFixedLengthDataVector)
1997       // Adjust the alignment for fixed-length SVE vectors. This is important
1998       // for non-power-of-2 vector lengths.
1999       Align = 128;
2000     else if (VT->getVectorKind() == VectorType::SveFixedLengthPredicateVector)
2001       // Adjust the alignment for fixed-length SVE predicates.
2002       Align = 16;
2003     break;
2004   }
2005 
2006   case Type::ConstantMatrix: {
2007     const auto *MT = cast<ConstantMatrixType>(T);
2008     TypeInfo ElementInfo = getTypeInfo(MT->getElementType());
2009     // The internal layout of a matrix value is implementation defined.
2010     // Initially be ABI compatible with arrays with respect to alignment and
2011     // size.
2012     Width = ElementInfo.Width * MT->getNumRows() * MT->getNumColumns();
2013     Align = ElementInfo.Align;
2014     break;
2015   }
2016 
2017   case Type::Builtin:
2018     switch (cast<BuiltinType>(T)->getKind()) {
2019     default: llvm_unreachable("Unknown builtin type!");
2020     case BuiltinType::Void:
2021       // GCC extension: alignof(void) = 8 bits.
2022       Width = 0;
2023       Align = 8;
2024       break;
2025     case BuiltinType::Bool:
2026       Width = Target->getBoolWidth();
2027       Align = Target->getBoolAlign();
2028       break;
2029     case BuiltinType::Char_S:
2030     case BuiltinType::Char_U:
2031     case BuiltinType::UChar:
2032     case BuiltinType::SChar:
2033     case BuiltinType::Char8:
2034       Width = Target->getCharWidth();
2035       Align = Target->getCharAlign();
2036       break;
2037     case BuiltinType::WChar_S:
2038     case BuiltinType::WChar_U:
2039       Width = Target->getWCharWidth();
2040       Align = Target->getWCharAlign();
2041       break;
2042     case BuiltinType::Char16:
2043       Width = Target->getChar16Width();
2044       Align = Target->getChar16Align();
2045       break;
2046     case BuiltinType::Char32:
2047       Width = Target->getChar32Width();
2048       Align = Target->getChar32Align();
2049       break;
2050     case BuiltinType::UShort:
2051     case BuiltinType::Short:
2052       Width = Target->getShortWidth();
2053       Align = Target->getShortAlign();
2054       break;
2055     case BuiltinType::UInt:
2056     case BuiltinType::Int:
2057       Width = Target->getIntWidth();
2058       Align = Target->getIntAlign();
2059       break;
2060     case BuiltinType::ULong:
2061     case BuiltinType::Long:
2062       Width = Target->getLongWidth();
2063       Align = Target->getLongAlign();
2064       break;
2065     case BuiltinType::ULongLong:
2066     case BuiltinType::LongLong:
2067       Width = Target->getLongLongWidth();
2068       Align = Target->getLongLongAlign();
2069       break;
2070     case BuiltinType::Int128:
2071     case BuiltinType::UInt128:
2072       Width = 128;
2073       Align = 128; // int128_t is 128-bit aligned on all targets.
2074       break;
2075     case BuiltinType::ShortAccum:
2076     case BuiltinType::UShortAccum:
2077     case BuiltinType::SatShortAccum:
2078     case BuiltinType::SatUShortAccum:
2079       Width = Target->getShortAccumWidth();
2080       Align = Target->getShortAccumAlign();
2081       break;
2082     case BuiltinType::Accum:
2083     case BuiltinType::UAccum:
2084     case BuiltinType::SatAccum:
2085     case BuiltinType::SatUAccum:
2086       Width = Target->getAccumWidth();
2087       Align = Target->getAccumAlign();
2088       break;
2089     case BuiltinType::LongAccum:
2090     case BuiltinType::ULongAccum:
2091     case BuiltinType::SatLongAccum:
2092     case BuiltinType::SatULongAccum:
2093       Width = Target->getLongAccumWidth();
2094       Align = Target->getLongAccumAlign();
2095       break;
2096     case BuiltinType::ShortFract:
2097     case BuiltinType::UShortFract:
2098     case BuiltinType::SatShortFract:
2099     case BuiltinType::SatUShortFract:
2100       Width = Target->getShortFractWidth();
2101       Align = Target->getShortFractAlign();
2102       break;
2103     case BuiltinType::Fract:
2104     case BuiltinType::UFract:
2105     case BuiltinType::SatFract:
2106     case BuiltinType::SatUFract:
2107       Width = Target->getFractWidth();
2108       Align = Target->getFractAlign();
2109       break;
2110     case BuiltinType::LongFract:
2111     case BuiltinType::ULongFract:
2112     case BuiltinType::SatLongFract:
2113     case BuiltinType::SatULongFract:
2114       Width = Target->getLongFractWidth();
2115       Align = Target->getLongFractAlign();
2116       break;
2117     case BuiltinType::BFloat16:
2118       Width = Target->getBFloat16Width();
2119       Align = Target->getBFloat16Align();
2120       break;
2121     case BuiltinType::Float16:
2122     case BuiltinType::Half:
2123       if (Target->hasFloat16Type() || !getLangOpts().OpenMP ||
2124           !getLangOpts().OpenMPIsDevice) {
2125         Width = Target->getHalfWidth();
2126         Align = Target->getHalfAlign();
2127       } else {
2128         assert(getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice &&
2129                "Expected OpenMP device compilation.");
2130         Width = AuxTarget->getHalfWidth();
2131         Align = AuxTarget->getHalfAlign();
2132       }
2133       break;
2134     case BuiltinType::Float:
2135       Width = Target->getFloatWidth();
2136       Align = Target->getFloatAlign();
2137       break;
2138     case BuiltinType::Double:
2139       Width = Target->getDoubleWidth();
2140       Align = Target->getDoubleAlign();
2141       break;
2142     case BuiltinType::Ibm128:
2143       Width = Target->getIbm128Width();
2144       Align = Target->getIbm128Align();
2145       break;
2146     case BuiltinType::LongDouble:
2147       if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice &&
2148           (Target->getLongDoubleWidth() != AuxTarget->getLongDoubleWidth() ||
2149            Target->getLongDoubleAlign() != AuxTarget->getLongDoubleAlign())) {
2150         Width = AuxTarget->getLongDoubleWidth();
2151         Align = AuxTarget->getLongDoubleAlign();
2152       } else {
2153         Width = Target->getLongDoubleWidth();
2154         Align = Target->getLongDoubleAlign();
2155       }
2156       break;
2157     case BuiltinType::Float128:
2158       if (Target->hasFloat128Type() || !getLangOpts().OpenMP ||
2159           !getLangOpts().OpenMPIsDevice) {
2160         Width = Target->getFloat128Width();
2161         Align = Target->getFloat128Align();
2162       } else {
2163         assert(getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice &&
2164                "Expected OpenMP device compilation.");
2165         Width = AuxTarget->getFloat128Width();
2166         Align = AuxTarget->getFloat128Align();
2167       }
2168       break;
2169     case BuiltinType::NullPtr:
2170       Width = Target->getPointerWidth(0); // C++ 3.9.1p11: sizeof(nullptr_t)
2171       Align = Target->getPointerAlign(0); //   == sizeof(void*)
2172       break;
2173     case BuiltinType::ObjCId:
2174     case BuiltinType::ObjCClass:
2175     case BuiltinType::ObjCSel:
2176       Width = Target->getPointerWidth(0);
2177       Align = Target->getPointerAlign(0);
2178       break;
2179     case BuiltinType::OCLSampler:
2180     case BuiltinType::OCLEvent:
2181     case BuiltinType::OCLClkEvent:
2182     case BuiltinType::OCLQueue:
2183     case BuiltinType::OCLReserveID:
2184 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
2185     case BuiltinType::Id:
2186 #include "clang/Basic/OpenCLImageTypes.def"
2187 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
2188   case BuiltinType::Id:
2189 #include "clang/Basic/OpenCLExtensionTypes.def"
2190       AS = getTargetAddressSpace(
2191           Target->getOpenCLTypeAddrSpace(getOpenCLTypeKind(T)));
2192       Width = Target->getPointerWidth(AS);
2193       Align = Target->getPointerAlign(AS);
2194       break;
2195     // The SVE types are effectively target-specific.  The length of an
2196     // SVE_VECTOR_TYPE is only known at runtime, but it is always a multiple
2197     // of 128 bits.  There is one predicate bit for each vector byte, so the
2198     // length of an SVE_PREDICATE_TYPE is always a multiple of 16 bits.
2199     //
2200     // Because the length is only known at runtime, we use a dummy value
2201     // of 0 for the static length.  The alignment values are those defined
2202     // by the Procedure Call Standard for the Arm Architecture.
2203 #define SVE_VECTOR_TYPE(Name, MangledName, Id, SingletonId, NumEls, ElBits,    \
2204                         IsSigned, IsFP, IsBF)                                  \
2205   case BuiltinType::Id:                                                        \
2206     Width = 0;                                                                 \
2207     Align = 128;                                                               \
2208     break;
2209 #define SVE_PREDICATE_TYPE(Name, MangledName, Id, SingletonId, NumEls)         \
2210   case BuiltinType::Id:                                                        \
2211     Width = 0;                                                                 \
2212     Align = 16;                                                                \
2213     break;
2214 #include "clang/Basic/AArch64SVEACLETypes.def"
2215 #define PPC_VECTOR_TYPE(Name, Id, Size)                                        \
2216   case BuiltinType::Id:                                                        \
2217     Width = Size;                                                              \
2218     Align = Size;                                                              \
2219     break;
2220 #include "clang/Basic/PPCTypes.def"
2221 #define RVV_VECTOR_TYPE(Name, Id, SingletonId, ElKind, ElBits, NF, IsSigned,   \
2222                         IsFP)                                                  \
2223   case BuiltinType::Id:                                                        \
2224     Width = 0;                                                                 \
2225     Align = ElBits;                                                            \
2226     break;
2227 #define RVV_PREDICATE_TYPE(Name, Id, SingletonId, ElKind)                      \
2228   case BuiltinType::Id:                                                        \
2229     Width = 0;                                                                 \
2230     Align = 8;                                                                 \
2231     break;
2232 #include "clang/Basic/RISCVVTypes.def"
2233     }
2234     break;
2235   case Type::ObjCObjectPointer:
2236     Width = Target->getPointerWidth(0);
2237     Align = Target->getPointerAlign(0);
2238     break;
2239   case Type::BlockPointer:
2240     AS = getTargetAddressSpace(cast<BlockPointerType>(T)->getPointeeType());
2241     Width = Target->getPointerWidth(AS);
2242     Align = Target->getPointerAlign(AS);
2243     break;
2244   case Type::LValueReference:
2245   case Type::RValueReference:
2246     // alignof and sizeof should never enter this code path here, so we go
2247     // the pointer route.
2248     AS = getTargetAddressSpace(cast<ReferenceType>(T)->getPointeeType());
2249     Width = Target->getPointerWidth(AS);
2250     Align = Target->getPointerAlign(AS);
2251     break;
2252   case Type::Pointer:
2253     AS = getTargetAddressSpace(cast<PointerType>(T)->getPointeeType());
2254     Width = Target->getPointerWidth(AS);
2255     Align = Target->getPointerAlign(AS);
2256     break;
2257   case Type::MemberPointer: {
2258     const auto *MPT = cast<MemberPointerType>(T);
2259     CXXABI::MemberPointerInfo MPI = ABI->getMemberPointerInfo(MPT);
2260     Width = MPI.Width;
2261     Align = MPI.Align;
2262     break;
2263   }
2264   case Type::Complex: {
2265     // Complex types have the same alignment as their elements, but twice the
2266     // size.
2267     TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType());
2268     Width = EltInfo.Width * 2;
2269     Align = EltInfo.Align;
2270     break;
2271   }
2272   case Type::ObjCObject:
2273     return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr());
2274   case Type::Adjusted:
2275   case Type::Decayed:
2276     return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr());
2277   case Type::ObjCInterface: {
2278     const auto *ObjCI = cast<ObjCInterfaceType>(T);
2279     if (ObjCI->getDecl()->isInvalidDecl()) {
2280       Width = 8;
2281       Align = 8;
2282       break;
2283     }
2284     const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
2285     Width = toBits(Layout.getSize());
2286     Align = toBits(Layout.getAlignment());
2287     break;
2288   }
2289   case Type::BitInt: {
2290     const auto *EIT = cast<BitIntType>(T);
2291     Align =
2292         std::min(static_cast<unsigned>(std::max(
2293                      getCharWidth(), llvm::PowerOf2Ceil(EIT->getNumBits()))),
2294                  Target->getLongLongAlign());
2295     Width = llvm::alignTo(EIT->getNumBits(), Align);
2296     break;
2297   }
2298   case Type::Record:
2299   case Type::Enum: {
2300     const auto *TT = cast<TagType>(T);
2301 
2302     if (TT->getDecl()->isInvalidDecl()) {
2303       Width = 8;
2304       Align = 8;
2305       break;
2306     }
2307 
2308     if (const auto *ET = dyn_cast<EnumType>(TT)) {
2309       const EnumDecl *ED = ET->getDecl();
2310       TypeInfo Info =
2311           getTypeInfo(ED->getIntegerType()->getUnqualifiedDesugaredType());
2312       if (unsigned AttrAlign = ED->getMaxAlignment()) {
2313         Info.Align = AttrAlign;
2314         Info.AlignRequirement = AlignRequirementKind::RequiredByEnum;
2315       }
2316       return Info;
2317     }
2318 
2319     const auto *RT = cast<RecordType>(TT);
2320     const RecordDecl *RD = RT->getDecl();
2321     const ASTRecordLayout &Layout = getASTRecordLayout(RD);
2322     Width = toBits(Layout.getSize());
2323     Align = toBits(Layout.getAlignment());
2324     AlignRequirement = RD->hasAttr<AlignedAttr>()
2325                            ? AlignRequirementKind::RequiredByRecord
2326                            : AlignRequirementKind::None;
2327     break;
2328   }
2329 
2330   case Type::SubstTemplateTypeParm:
2331     return getTypeInfo(cast<SubstTemplateTypeParmType>(T)->
2332                        getReplacementType().getTypePtr());
2333 
2334   case Type::Auto:
2335   case Type::DeducedTemplateSpecialization: {
2336     const auto *A = cast<DeducedType>(T);
2337     assert(!A->getDeducedType().isNull() &&
2338            "cannot request the size of an undeduced or dependent auto type");
2339     return getTypeInfo(A->getDeducedType().getTypePtr());
2340   }
2341 
2342   case Type::Paren:
2343     return getTypeInfo(cast<ParenType>(T)->getInnerType().getTypePtr());
2344 
2345   case Type::MacroQualified:
2346     return getTypeInfo(
2347         cast<MacroQualifiedType>(T)->getUnderlyingType().getTypePtr());
2348 
2349   case Type::ObjCTypeParam:
2350     return getTypeInfo(cast<ObjCTypeParamType>(T)->desugar().getTypePtr());
2351 
2352   case Type::Using:
2353     return getTypeInfo(cast<UsingType>(T)->desugar().getTypePtr());
2354 
2355   case Type::Typedef: {
2356     const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl();
2357     TypeInfo Info = getTypeInfo(Typedef->getUnderlyingType().getTypePtr());
2358     // If the typedef has an aligned attribute on it, it overrides any computed
2359     // alignment we have.  This violates the GCC documentation (which says that
2360     // attribute(aligned) can only round up) but matches its implementation.
2361     if (unsigned AttrAlign = Typedef->getMaxAlignment()) {
2362       Align = AttrAlign;
2363       AlignRequirement = AlignRequirementKind::RequiredByTypedef;
2364     } else {
2365       Align = Info.Align;
2366       AlignRequirement = Info.AlignRequirement;
2367     }
2368     Width = Info.Width;
2369     break;
2370   }
2371 
2372   case Type::Elaborated:
2373     return getTypeInfo(cast<ElaboratedType>(T)->getNamedType().getTypePtr());
2374 
2375   case Type::Attributed:
2376     return getTypeInfo(
2377                   cast<AttributedType>(T)->getEquivalentType().getTypePtr());
2378 
2379   case Type::Atomic: {
2380     // Start with the base type information.
2381     TypeInfo Info = getTypeInfo(cast<AtomicType>(T)->getValueType());
2382     Width = Info.Width;
2383     Align = Info.Align;
2384 
2385     if (!Width) {
2386       // An otherwise zero-sized type should still generate an
2387       // atomic operation.
2388       Width = Target->getCharWidth();
2389       assert(Align);
2390     } else if (Width <= Target->getMaxAtomicPromoteWidth()) {
2391       // If the size of the type doesn't exceed the platform's max
2392       // atomic promotion width, make the size and alignment more
2393       // favorable to atomic operations:
2394 
2395       // Round the size up to a power of 2.
2396       if (!llvm::isPowerOf2_64(Width))
2397         Width = llvm::NextPowerOf2(Width);
2398 
2399       // Set the alignment equal to the size.
2400       Align = static_cast<unsigned>(Width);
2401     }
2402   }
2403   break;
2404 
2405   case Type::Pipe:
2406     Width = Target->getPointerWidth(getTargetAddressSpace(LangAS::opencl_global));
2407     Align = Target->getPointerAlign(getTargetAddressSpace(LangAS::opencl_global));
2408     break;
2409   }
2410 
2411   assert(llvm::isPowerOf2_32(Align) && "Alignment must be power of 2");
2412   return TypeInfo(Width, Align, AlignRequirement);
2413 }
2414 
2415 unsigned ASTContext::getTypeUnadjustedAlign(const Type *T) const {
2416   UnadjustedAlignMap::iterator I = MemoizedUnadjustedAlign.find(T);
2417   if (I != MemoizedUnadjustedAlign.end())
2418     return I->second;
2419 
2420   unsigned UnadjustedAlign;
2421   if (const auto *RT = T->getAs<RecordType>()) {
2422     const RecordDecl *RD = RT->getDecl();
2423     const ASTRecordLayout &Layout = getASTRecordLayout(RD);
2424     UnadjustedAlign = toBits(Layout.getUnadjustedAlignment());
2425   } else if (const auto *ObjCI = T->getAs<ObjCInterfaceType>()) {
2426     const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
2427     UnadjustedAlign = toBits(Layout.getUnadjustedAlignment());
2428   } else {
2429     UnadjustedAlign = getTypeAlign(T->getUnqualifiedDesugaredType());
2430   }
2431 
2432   MemoizedUnadjustedAlign[T] = UnadjustedAlign;
2433   return UnadjustedAlign;
2434 }
2435 
2436 unsigned ASTContext::getOpenMPDefaultSimdAlign(QualType T) const {
2437   unsigned SimdAlign = getTargetInfo().getSimdDefaultAlign();
2438   return SimdAlign;
2439 }
2440 
2441 /// toCharUnitsFromBits - Convert a size in bits to a size in characters.
2442 CharUnits ASTContext::toCharUnitsFromBits(int64_t BitSize) const {
2443   return CharUnits::fromQuantity(BitSize / getCharWidth());
2444 }
2445 
2446 /// toBits - Convert a size in characters to a size in characters.
2447 int64_t ASTContext::toBits(CharUnits CharSize) const {
2448   return CharSize.getQuantity() * getCharWidth();
2449 }
2450 
2451 /// getTypeSizeInChars - Return the size of the specified type, in characters.
2452 /// This method does not work on incomplete types.
2453 CharUnits ASTContext::getTypeSizeInChars(QualType T) const {
2454   return getTypeInfoInChars(T).Width;
2455 }
2456 CharUnits ASTContext::getTypeSizeInChars(const Type *T) const {
2457   return getTypeInfoInChars(T).Width;
2458 }
2459 
2460 /// getTypeAlignInChars - Return the ABI-specified alignment of a type, in
2461 /// characters. This method does not work on incomplete types.
2462 CharUnits ASTContext::getTypeAlignInChars(QualType T) const {
2463   return toCharUnitsFromBits(getTypeAlign(T));
2464 }
2465 CharUnits ASTContext::getTypeAlignInChars(const Type *T) const {
2466   return toCharUnitsFromBits(getTypeAlign(T));
2467 }
2468 
2469 /// getTypeUnadjustedAlignInChars - Return the ABI-specified alignment of a
2470 /// type, in characters, before alignment adustments. This method does
2471 /// not work on incomplete types.
2472 CharUnits ASTContext::getTypeUnadjustedAlignInChars(QualType T) const {
2473   return toCharUnitsFromBits(getTypeUnadjustedAlign(T));
2474 }
2475 CharUnits ASTContext::getTypeUnadjustedAlignInChars(const Type *T) const {
2476   return toCharUnitsFromBits(getTypeUnadjustedAlign(T));
2477 }
2478 
2479 /// getPreferredTypeAlign - Return the "preferred" alignment of the specified
2480 /// type for the current target in bits.  This can be different than the ABI
2481 /// alignment in cases where it is beneficial for performance or backwards
2482 /// compatibility preserving to overalign a data type. (Note: despite the name,
2483 /// the preferred alignment is ABI-impacting, and not an optimization.)
2484 unsigned ASTContext::getPreferredTypeAlign(const Type *T) const {
2485   TypeInfo TI = getTypeInfo(T);
2486   unsigned ABIAlign = TI.Align;
2487 
2488   T = T->getBaseElementTypeUnsafe();
2489 
2490   // The preferred alignment of member pointers is that of a pointer.
2491   if (T->isMemberPointerType())
2492     return getPreferredTypeAlign(getPointerDiffType().getTypePtr());
2493 
2494   if (!Target->allowsLargerPreferedTypeAlignment())
2495     return ABIAlign;
2496 
2497   if (const auto *RT = T->getAs<RecordType>()) {
2498     const RecordDecl *RD = RT->getDecl();
2499 
2500     // When used as part of a typedef, or together with a 'packed' attribute,
2501     // the 'aligned' attribute can be used to decrease alignment. Note that the
2502     // 'packed' case is already taken into consideration when computing the
2503     // alignment, we only need to handle the typedef case here.
2504     if (TI.AlignRequirement == AlignRequirementKind::RequiredByTypedef ||
2505         RD->isInvalidDecl())
2506       return ABIAlign;
2507 
2508     unsigned PreferredAlign = static_cast<unsigned>(
2509         toBits(getASTRecordLayout(RD).PreferredAlignment));
2510     assert(PreferredAlign >= ABIAlign &&
2511            "PreferredAlign should be at least as large as ABIAlign.");
2512     return PreferredAlign;
2513   }
2514 
2515   // Double (and, for targets supporting AIX `power` alignment, long double) and
2516   // long long should be naturally aligned (despite requiring less alignment) if
2517   // possible.
2518   if (const auto *CT = T->getAs<ComplexType>())
2519     T = CT->getElementType().getTypePtr();
2520   if (const auto *ET = T->getAs<EnumType>())
2521     T = ET->getDecl()->getIntegerType().getTypePtr();
2522   if (T->isSpecificBuiltinType(BuiltinType::Double) ||
2523       T->isSpecificBuiltinType(BuiltinType::LongLong) ||
2524       T->isSpecificBuiltinType(BuiltinType::ULongLong) ||
2525       (T->isSpecificBuiltinType(BuiltinType::LongDouble) &&
2526        Target->defaultsToAIXPowerAlignment()))
2527     // Don't increase the alignment if an alignment attribute was specified on a
2528     // typedef declaration.
2529     if (!TI.isAlignRequired())
2530       return std::max(ABIAlign, (unsigned)getTypeSize(T));
2531 
2532   return ABIAlign;
2533 }
2534 
2535 /// getTargetDefaultAlignForAttributeAligned - Return the default alignment
2536 /// for __attribute__((aligned)) on this target, to be used if no alignment
2537 /// value is specified.
2538 unsigned ASTContext::getTargetDefaultAlignForAttributeAligned() const {
2539   return getTargetInfo().getDefaultAlignForAttributeAligned();
2540 }
2541 
2542 /// getAlignOfGlobalVar - Return the alignment in bits that should be given
2543 /// to a global variable of the specified type.
2544 unsigned ASTContext::getAlignOfGlobalVar(QualType T) const {
2545   uint64_t TypeSize = getTypeSize(T.getTypePtr());
2546   return std::max(getPreferredTypeAlign(T),
2547                   getTargetInfo().getMinGlobalAlign(TypeSize));
2548 }
2549 
2550 /// getAlignOfGlobalVarInChars - Return the alignment in characters that
2551 /// should be given to a global variable of the specified type.
2552 CharUnits ASTContext::getAlignOfGlobalVarInChars(QualType T) const {
2553   return toCharUnitsFromBits(getAlignOfGlobalVar(T));
2554 }
2555 
2556 CharUnits ASTContext::getOffsetOfBaseWithVBPtr(const CXXRecordDecl *RD) const {
2557   CharUnits Offset = CharUnits::Zero();
2558   const ASTRecordLayout *Layout = &getASTRecordLayout(RD);
2559   while (const CXXRecordDecl *Base = Layout->getBaseSharingVBPtr()) {
2560     Offset += Layout->getBaseClassOffset(Base);
2561     Layout = &getASTRecordLayout(Base);
2562   }
2563   return Offset;
2564 }
2565 
2566 CharUnits ASTContext::getMemberPointerPathAdjustment(const APValue &MP) const {
2567   const ValueDecl *MPD = MP.getMemberPointerDecl();
2568   CharUnits ThisAdjustment = CharUnits::Zero();
2569   ArrayRef<const CXXRecordDecl*> Path = MP.getMemberPointerPath();
2570   bool DerivedMember = MP.isMemberPointerToDerivedMember();
2571   const CXXRecordDecl *RD = cast<CXXRecordDecl>(MPD->getDeclContext());
2572   for (unsigned I = 0, N = Path.size(); I != N; ++I) {
2573     const CXXRecordDecl *Base = RD;
2574     const CXXRecordDecl *Derived = Path[I];
2575     if (DerivedMember)
2576       std::swap(Base, Derived);
2577     ThisAdjustment += getASTRecordLayout(Derived).getBaseClassOffset(Base);
2578     RD = Path[I];
2579   }
2580   if (DerivedMember)
2581     ThisAdjustment = -ThisAdjustment;
2582   return ThisAdjustment;
2583 }
2584 
2585 /// DeepCollectObjCIvars -
2586 /// This routine first collects all declared, but not synthesized, ivars in
2587 /// super class and then collects all ivars, including those synthesized for
2588 /// current class. This routine is used for implementation of current class
2589 /// when all ivars, declared and synthesized are known.
2590 void ASTContext::DeepCollectObjCIvars(const ObjCInterfaceDecl *OI,
2591                                       bool leafClass,
2592                             SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const {
2593   if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass())
2594     DeepCollectObjCIvars(SuperClass, false, Ivars);
2595   if (!leafClass) {
2596     for (const auto *I : OI->ivars())
2597       Ivars.push_back(I);
2598   } else {
2599     auto *IDecl = const_cast<ObjCInterfaceDecl *>(OI);
2600     for (const ObjCIvarDecl *Iv = IDecl->all_declared_ivar_begin(); Iv;
2601          Iv= Iv->getNextIvar())
2602       Ivars.push_back(Iv);
2603   }
2604 }
2605 
2606 /// CollectInheritedProtocols - Collect all protocols in current class and
2607 /// those inherited by it.
2608 void ASTContext::CollectInheritedProtocols(const Decl *CDecl,
2609                           llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) {
2610   if (const auto *OI = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
2611     // We can use protocol_iterator here instead of
2612     // all_referenced_protocol_iterator since we are walking all categories.
2613     for (auto *Proto : OI->all_referenced_protocols()) {
2614       CollectInheritedProtocols(Proto, Protocols);
2615     }
2616 
2617     // Categories of this Interface.
2618     for (const auto *Cat : OI->visible_categories())
2619       CollectInheritedProtocols(Cat, Protocols);
2620 
2621     if (ObjCInterfaceDecl *SD = OI->getSuperClass())
2622       while (SD) {
2623         CollectInheritedProtocols(SD, Protocols);
2624         SD = SD->getSuperClass();
2625       }
2626   } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(CDecl)) {
2627     for (auto *Proto : OC->protocols()) {
2628       CollectInheritedProtocols(Proto, Protocols);
2629     }
2630   } else if (const auto *OP = dyn_cast<ObjCProtocolDecl>(CDecl)) {
2631     // Insert the protocol.
2632     if (!Protocols.insert(
2633           const_cast<ObjCProtocolDecl *>(OP->getCanonicalDecl())).second)
2634       return;
2635 
2636     for (auto *Proto : OP->protocols())
2637       CollectInheritedProtocols(Proto, Protocols);
2638   }
2639 }
2640 
2641 static bool unionHasUniqueObjectRepresentations(const ASTContext &Context,
2642                                                 const RecordDecl *RD) {
2643   assert(RD->isUnion() && "Must be union type");
2644   CharUnits UnionSize = Context.getTypeSizeInChars(RD->getTypeForDecl());
2645 
2646   for (const auto *Field : RD->fields()) {
2647     if (!Context.hasUniqueObjectRepresentations(Field->getType()))
2648       return false;
2649     CharUnits FieldSize = Context.getTypeSizeInChars(Field->getType());
2650     if (FieldSize != UnionSize)
2651       return false;
2652   }
2653   return !RD->field_empty();
2654 }
2655 
2656 static int64_t getSubobjectOffset(const FieldDecl *Field,
2657                                   const ASTContext &Context,
2658                                   const clang::ASTRecordLayout & /*Layout*/) {
2659   return Context.getFieldOffset(Field);
2660 }
2661 
2662 static int64_t getSubobjectOffset(const CXXRecordDecl *RD,
2663                                   const ASTContext &Context,
2664                                   const clang::ASTRecordLayout &Layout) {
2665   return Context.toBits(Layout.getBaseClassOffset(RD));
2666 }
2667 
2668 static llvm::Optional<int64_t>
2669 structHasUniqueObjectRepresentations(const ASTContext &Context,
2670                                      const RecordDecl *RD);
2671 
2672 static llvm::Optional<int64_t>
2673 getSubobjectSizeInBits(const FieldDecl *Field, const ASTContext &Context) {
2674   if (Field->getType()->isRecordType()) {
2675     const RecordDecl *RD = Field->getType()->getAsRecordDecl();
2676     if (!RD->isUnion())
2677       return structHasUniqueObjectRepresentations(Context, RD);
2678   }
2679   if (!Field->getType()->isReferenceType() &&
2680       !Context.hasUniqueObjectRepresentations(Field->getType()))
2681     return llvm::None;
2682 
2683   int64_t FieldSizeInBits =
2684       Context.toBits(Context.getTypeSizeInChars(Field->getType()));
2685   if (Field->isBitField()) {
2686     int64_t BitfieldSize = Field->getBitWidthValue(Context);
2687     if (BitfieldSize > FieldSizeInBits)
2688       return llvm::None;
2689     FieldSizeInBits = BitfieldSize;
2690   }
2691   return FieldSizeInBits;
2692 }
2693 
2694 static llvm::Optional<int64_t>
2695 getSubobjectSizeInBits(const CXXRecordDecl *RD, const ASTContext &Context) {
2696   return structHasUniqueObjectRepresentations(Context, RD);
2697 }
2698 
2699 template <typename RangeT>
2700 static llvm::Optional<int64_t> structSubobjectsHaveUniqueObjectRepresentations(
2701     const RangeT &Subobjects, int64_t CurOffsetInBits,
2702     const ASTContext &Context, const clang::ASTRecordLayout &Layout) {
2703   for (const auto *Subobject : Subobjects) {
2704     llvm::Optional<int64_t> SizeInBits =
2705         getSubobjectSizeInBits(Subobject, Context);
2706     if (!SizeInBits)
2707       return llvm::None;
2708     if (*SizeInBits != 0) {
2709       int64_t Offset = getSubobjectOffset(Subobject, Context, Layout);
2710       if (Offset != CurOffsetInBits)
2711         return llvm::None;
2712       CurOffsetInBits += *SizeInBits;
2713     }
2714   }
2715   return CurOffsetInBits;
2716 }
2717 
2718 static llvm::Optional<int64_t>
2719 structHasUniqueObjectRepresentations(const ASTContext &Context,
2720                                      const RecordDecl *RD) {
2721   assert(!RD->isUnion() && "Must be struct/class type");
2722   const auto &Layout = Context.getASTRecordLayout(RD);
2723 
2724   int64_t CurOffsetInBits = 0;
2725   if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RD)) {
2726     if (ClassDecl->isDynamicClass())
2727       return llvm::None;
2728 
2729     SmallVector<CXXRecordDecl *, 4> Bases;
2730     for (const auto &Base : ClassDecl->bases()) {
2731       // Empty types can be inherited from, and non-empty types can potentially
2732       // have tail padding, so just make sure there isn't an error.
2733       Bases.emplace_back(Base.getType()->getAsCXXRecordDecl());
2734     }
2735 
2736     llvm::sort(Bases, [&](const CXXRecordDecl *L, const CXXRecordDecl *R) {
2737       return Layout.getBaseClassOffset(L) < Layout.getBaseClassOffset(R);
2738     });
2739 
2740     llvm::Optional<int64_t> OffsetAfterBases =
2741         structSubobjectsHaveUniqueObjectRepresentations(Bases, CurOffsetInBits,
2742                                                         Context, Layout);
2743     if (!OffsetAfterBases)
2744       return llvm::None;
2745     CurOffsetInBits = *OffsetAfterBases;
2746   }
2747 
2748   llvm::Optional<int64_t> OffsetAfterFields =
2749       structSubobjectsHaveUniqueObjectRepresentations(
2750           RD->fields(), CurOffsetInBits, Context, Layout);
2751   if (!OffsetAfterFields)
2752     return llvm::None;
2753   CurOffsetInBits = *OffsetAfterFields;
2754 
2755   return CurOffsetInBits;
2756 }
2757 
2758 bool ASTContext::hasUniqueObjectRepresentations(QualType Ty) const {
2759   // C++17 [meta.unary.prop]:
2760   //   The predicate condition for a template specialization
2761   //   has_unique_object_representations<T> shall be
2762   //   satisfied if and only if:
2763   //     (9.1) - T is trivially copyable, and
2764   //     (9.2) - any two objects of type T with the same value have the same
2765   //     object representation, where two objects
2766   //   of array or non-union class type are considered to have the same value
2767   //   if their respective sequences of
2768   //   direct subobjects have the same values, and two objects of union type
2769   //   are considered to have the same
2770   //   value if they have the same active member and the corresponding members
2771   //   have the same value.
2772   //   The set of scalar types for which this condition holds is
2773   //   implementation-defined. [ Note: If a type has padding
2774   //   bits, the condition does not hold; otherwise, the condition holds true
2775   //   for unsigned integral types. -- end note ]
2776   assert(!Ty.isNull() && "Null QualType sent to unique object rep check");
2777 
2778   // Arrays are unique only if their element type is unique.
2779   if (Ty->isArrayType())
2780     return hasUniqueObjectRepresentations(getBaseElementType(Ty));
2781 
2782   // (9.1) - T is trivially copyable...
2783   if (!Ty.isTriviallyCopyableType(*this))
2784     return false;
2785 
2786   // All integrals and enums are unique.
2787   if (Ty->isIntegralOrEnumerationType())
2788     return true;
2789 
2790   // All other pointers are unique.
2791   if (Ty->isPointerType())
2792     return true;
2793 
2794   if (Ty->isMemberPointerType()) {
2795     const auto *MPT = Ty->getAs<MemberPointerType>();
2796     return !ABI->getMemberPointerInfo(MPT).HasPadding;
2797   }
2798 
2799   if (Ty->isRecordType()) {
2800     const RecordDecl *Record = Ty->castAs<RecordType>()->getDecl();
2801 
2802     if (Record->isInvalidDecl())
2803       return false;
2804 
2805     if (Record->isUnion())
2806       return unionHasUniqueObjectRepresentations(*this, Record);
2807 
2808     Optional<int64_t> StructSize =
2809         structHasUniqueObjectRepresentations(*this, Record);
2810 
2811     return StructSize &&
2812            StructSize.getValue() == static_cast<int64_t>(getTypeSize(Ty));
2813   }
2814 
2815   // FIXME: More cases to handle here (list by rsmith):
2816   // vectors (careful about, eg, vector of 3 foo)
2817   // _Complex int and friends
2818   // _Atomic T
2819   // Obj-C block pointers
2820   // Obj-C object pointers
2821   // and perhaps OpenCL's various builtin types (pipe, sampler_t, event_t,
2822   // clk_event_t, queue_t, reserve_id_t)
2823   // There're also Obj-C class types and the Obj-C selector type, but I think it
2824   // makes sense for those to return false here.
2825 
2826   return false;
2827 }
2828 
2829 unsigned ASTContext::CountNonClassIvars(const ObjCInterfaceDecl *OI) const {
2830   unsigned count = 0;
2831   // Count ivars declared in class extension.
2832   for (const auto *Ext : OI->known_extensions())
2833     count += Ext->ivar_size();
2834 
2835   // Count ivar defined in this class's implementation.  This
2836   // includes synthesized ivars.
2837   if (ObjCImplementationDecl *ImplDecl = OI->getImplementation())
2838     count += ImplDecl->ivar_size();
2839 
2840   return count;
2841 }
2842 
2843 bool ASTContext::isSentinelNullExpr(const Expr *E) {
2844   if (!E)
2845     return false;
2846 
2847   // nullptr_t is always treated as null.
2848   if (E->getType()->isNullPtrType()) return true;
2849 
2850   if (E->getType()->isAnyPointerType() &&
2851       E->IgnoreParenCasts()->isNullPointerConstant(*this,
2852                                                 Expr::NPC_ValueDependentIsNull))
2853     return true;
2854 
2855   // Unfortunately, __null has type 'int'.
2856   if (isa<GNUNullExpr>(E)) return true;
2857 
2858   return false;
2859 }
2860 
2861 /// Get the implementation of ObjCInterfaceDecl, or nullptr if none
2862 /// exists.
2863 ObjCImplementationDecl *ASTContext::getObjCImplementation(ObjCInterfaceDecl *D) {
2864   llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
2865     I = ObjCImpls.find(D);
2866   if (I != ObjCImpls.end())
2867     return cast<ObjCImplementationDecl>(I->second);
2868   return nullptr;
2869 }
2870 
2871 /// Get the implementation of ObjCCategoryDecl, or nullptr if none
2872 /// exists.
2873 ObjCCategoryImplDecl *ASTContext::getObjCImplementation(ObjCCategoryDecl *D) {
2874   llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
2875     I = ObjCImpls.find(D);
2876   if (I != ObjCImpls.end())
2877     return cast<ObjCCategoryImplDecl>(I->second);
2878   return nullptr;
2879 }
2880 
2881 /// Set the implementation of ObjCInterfaceDecl.
2882 void ASTContext::setObjCImplementation(ObjCInterfaceDecl *IFaceD,
2883                            ObjCImplementationDecl *ImplD) {
2884   assert(IFaceD && ImplD && "Passed null params");
2885   ObjCImpls[IFaceD] = ImplD;
2886 }
2887 
2888 /// Set the implementation of ObjCCategoryDecl.
2889 void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD,
2890                            ObjCCategoryImplDecl *ImplD) {
2891   assert(CatD && ImplD && "Passed null params");
2892   ObjCImpls[CatD] = ImplD;
2893 }
2894 
2895 const ObjCMethodDecl *
2896 ASTContext::getObjCMethodRedeclaration(const ObjCMethodDecl *MD) const {
2897   return ObjCMethodRedecls.lookup(MD);
2898 }
2899 
2900 void ASTContext::setObjCMethodRedeclaration(const ObjCMethodDecl *MD,
2901                                             const ObjCMethodDecl *Redecl) {
2902   assert(!getObjCMethodRedeclaration(MD) && "MD already has a redeclaration");
2903   ObjCMethodRedecls[MD] = Redecl;
2904 }
2905 
2906 const ObjCInterfaceDecl *ASTContext::getObjContainingInterface(
2907                                               const NamedDecl *ND) const {
2908   if (const auto *ID = dyn_cast<ObjCInterfaceDecl>(ND->getDeclContext()))
2909     return ID;
2910   if (const auto *CD = dyn_cast<ObjCCategoryDecl>(ND->getDeclContext()))
2911     return CD->getClassInterface();
2912   if (const auto *IMD = dyn_cast<ObjCImplDecl>(ND->getDeclContext()))
2913     return IMD->getClassInterface();
2914 
2915   return nullptr;
2916 }
2917 
2918 /// Get the copy initialization expression of VarDecl, or nullptr if
2919 /// none exists.
2920 BlockVarCopyInit ASTContext::getBlockVarCopyInit(const VarDecl *VD) const {
2921   assert(VD && "Passed null params");
2922   assert(VD->hasAttr<BlocksAttr>() &&
2923          "getBlockVarCopyInits - not __block var");
2924   auto I = BlockVarCopyInits.find(VD);
2925   if (I != BlockVarCopyInits.end())
2926     return I->second;
2927   return {nullptr, false};
2928 }
2929 
2930 /// Set the copy initialization expression of a block var decl.
2931 void ASTContext::setBlockVarCopyInit(const VarDecl*VD, Expr *CopyExpr,
2932                                      bool CanThrow) {
2933   assert(VD && CopyExpr && "Passed null params");
2934   assert(VD->hasAttr<BlocksAttr>() &&
2935          "setBlockVarCopyInits - not __block var");
2936   BlockVarCopyInits[VD].setExprAndFlag(CopyExpr, CanThrow);
2937 }
2938 
2939 TypeSourceInfo *ASTContext::CreateTypeSourceInfo(QualType T,
2940                                                  unsigned DataSize) const {
2941   if (!DataSize)
2942     DataSize = TypeLoc::getFullDataSizeForType(T);
2943   else
2944     assert(DataSize == TypeLoc::getFullDataSizeForType(T) &&
2945            "incorrect data size provided to CreateTypeSourceInfo!");
2946 
2947   auto *TInfo =
2948     (TypeSourceInfo*)BumpAlloc.Allocate(sizeof(TypeSourceInfo) + DataSize, 8);
2949   new (TInfo) TypeSourceInfo(T);
2950   return TInfo;
2951 }
2952 
2953 TypeSourceInfo *ASTContext::getTrivialTypeSourceInfo(QualType T,
2954                                                      SourceLocation L) const {
2955   TypeSourceInfo *DI = CreateTypeSourceInfo(T);
2956   DI->getTypeLoc().initialize(const_cast<ASTContext &>(*this), L);
2957   return DI;
2958 }
2959 
2960 const ASTRecordLayout &
2961 ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) const {
2962   return getObjCLayout(D, nullptr);
2963 }
2964 
2965 const ASTRecordLayout &
2966 ASTContext::getASTObjCImplementationLayout(
2967                                         const ObjCImplementationDecl *D) const {
2968   return getObjCLayout(D->getClassInterface(), D);
2969 }
2970 
2971 //===----------------------------------------------------------------------===//
2972 //                   Type creation/memoization methods
2973 //===----------------------------------------------------------------------===//
2974 
2975 QualType
2976 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const {
2977   unsigned fastQuals = quals.getFastQualifiers();
2978   quals.removeFastQualifiers();
2979 
2980   // Check if we've already instantiated this type.
2981   llvm::FoldingSetNodeID ID;
2982   ExtQuals::Profile(ID, baseType, quals);
2983   void *insertPos = nullptr;
2984   if (ExtQuals *eq = ExtQualNodes.FindNodeOrInsertPos(ID, insertPos)) {
2985     assert(eq->getQualifiers() == quals);
2986     return QualType(eq, fastQuals);
2987   }
2988 
2989   // If the base type is not canonical, make the appropriate canonical type.
2990   QualType canon;
2991   if (!baseType->isCanonicalUnqualified()) {
2992     SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split();
2993     canonSplit.Quals.addConsistentQualifiers(quals);
2994     canon = getExtQualType(canonSplit.Ty, canonSplit.Quals);
2995 
2996     // Re-find the insert position.
2997     (void) ExtQualNodes.FindNodeOrInsertPos(ID, insertPos);
2998   }
2999 
3000   auto *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals);
3001   ExtQualNodes.InsertNode(eq, insertPos);
3002   return QualType(eq, fastQuals);
3003 }
3004 
3005 QualType ASTContext::getAddrSpaceQualType(QualType T,
3006                                           LangAS AddressSpace) const {
3007   QualType CanT = getCanonicalType(T);
3008   if (CanT.getAddressSpace() == AddressSpace)
3009     return T;
3010 
3011   // If we are composing extended qualifiers together, merge together
3012   // into one ExtQuals node.
3013   QualifierCollector Quals;
3014   const Type *TypeNode = Quals.strip(T);
3015 
3016   // If this type already has an address space specified, it cannot get
3017   // another one.
3018   assert(!Quals.hasAddressSpace() &&
3019          "Type cannot be in multiple addr spaces!");
3020   Quals.addAddressSpace(AddressSpace);
3021 
3022   return getExtQualType(TypeNode, Quals);
3023 }
3024 
3025 QualType ASTContext::removeAddrSpaceQualType(QualType T) const {
3026   // If the type is not qualified with an address space, just return it
3027   // immediately.
3028   if (!T.hasAddressSpace())
3029     return T;
3030 
3031   // If we are composing extended qualifiers together, merge together
3032   // into one ExtQuals node.
3033   QualifierCollector Quals;
3034   const Type *TypeNode;
3035 
3036   while (T.hasAddressSpace()) {
3037     TypeNode = Quals.strip(T);
3038 
3039     // If the type no longer has an address space after stripping qualifiers,
3040     // jump out.
3041     if (!QualType(TypeNode, 0).hasAddressSpace())
3042       break;
3043 
3044     // There might be sugar in the way. Strip it and try again.
3045     T = T.getSingleStepDesugaredType(*this);
3046   }
3047 
3048   Quals.removeAddressSpace();
3049 
3050   // Removal of the address space can mean there are no longer any
3051   // non-fast qualifiers, so creating an ExtQualType isn't possible (asserts)
3052   // or required.
3053   if (Quals.hasNonFastQualifiers())
3054     return getExtQualType(TypeNode, Quals);
3055   else
3056     return QualType(TypeNode, Quals.getFastQualifiers());
3057 }
3058 
3059 QualType ASTContext::getObjCGCQualType(QualType T,
3060                                        Qualifiers::GC GCAttr) const {
3061   QualType CanT = getCanonicalType(T);
3062   if (CanT.getObjCGCAttr() == GCAttr)
3063     return T;
3064 
3065   if (const auto *ptr = T->getAs<PointerType>()) {
3066     QualType Pointee = ptr->getPointeeType();
3067     if (Pointee->isAnyPointerType()) {
3068       QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
3069       return getPointerType(ResultType);
3070     }
3071   }
3072 
3073   // If we are composing extended qualifiers together, merge together
3074   // into one ExtQuals node.
3075   QualifierCollector Quals;
3076   const Type *TypeNode = Quals.strip(T);
3077 
3078   // If this type already has an ObjCGC specified, it cannot get
3079   // another one.
3080   assert(!Quals.hasObjCGCAttr() &&
3081          "Type cannot have multiple ObjCGCs!");
3082   Quals.addObjCGCAttr(GCAttr);
3083 
3084   return getExtQualType(TypeNode, Quals);
3085 }
3086 
3087 QualType ASTContext::removePtrSizeAddrSpace(QualType T) const {
3088   if (const PointerType *Ptr = T->getAs<PointerType>()) {
3089     QualType Pointee = Ptr->getPointeeType();
3090     if (isPtrSizeAddressSpace(Pointee.getAddressSpace())) {
3091       return getPointerType(removeAddrSpaceQualType(Pointee));
3092     }
3093   }
3094   return T;
3095 }
3096 
3097 const FunctionType *ASTContext::adjustFunctionType(const FunctionType *T,
3098                                                    FunctionType::ExtInfo Info) {
3099   if (T->getExtInfo() == Info)
3100     return T;
3101 
3102   QualType Result;
3103   if (const auto *FNPT = dyn_cast<FunctionNoProtoType>(T)) {
3104     Result = getFunctionNoProtoType(FNPT->getReturnType(), Info);
3105   } else {
3106     const auto *FPT = cast<FunctionProtoType>(T);
3107     FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
3108     EPI.ExtInfo = Info;
3109     Result = getFunctionType(FPT->getReturnType(), FPT->getParamTypes(), EPI);
3110   }
3111 
3112   return cast<FunctionType>(Result.getTypePtr());
3113 }
3114 
3115 void ASTContext::adjustDeducedFunctionResultType(FunctionDecl *FD,
3116                                                  QualType ResultType) {
3117   FD = FD->getMostRecentDecl();
3118   while (true) {
3119     const auto *FPT = FD->getType()->castAs<FunctionProtoType>();
3120     FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
3121     FD->setType(getFunctionType(ResultType, FPT->getParamTypes(), EPI));
3122     if (FunctionDecl *Next = FD->getPreviousDecl())
3123       FD = Next;
3124     else
3125       break;
3126   }
3127   if (ASTMutationListener *L = getASTMutationListener())
3128     L->DeducedReturnType(FD, ResultType);
3129 }
3130 
3131 /// Get a function type and produce the equivalent function type with the
3132 /// specified exception specification. Type sugar that can be present on a
3133 /// declaration of a function with an exception specification is permitted
3134 /// and preserved. Other type sugar (for instance, typedefs) is not.
3135 QualType ASTContext::getFunctionTypeWithExceptionSpec(
3136     QualType Orig, const FunctionProtoType::ExceptionSpecInfo &ESI) {
3137   // Might have some parens.
3138   if (const auto *PT = dyn_cast<ParenType>(Orig))
3139     return getParenType(
3140         getFunctionTypeWithExceptionSpec(PT->getInnerType(), ESI));
3141 
3142   // Might be wrapped in a macro qualified type.
3143   if (const auto *MQT = dyn_cast<MacroQualifiedType>(Orig))
3144     return getMacroQualifiedType(
3145         getFunctionTypeWithExceptionSpec(MQT->getUnderlyingType(), ESI),
3146         MQT->getMacroIdentifier());
3147 
3148   // Might have a calling-convention attribute.
3149   if (const auto *AT = dyn_cast<AttributedType>(Orig))
3150     return getAttributedType(
3151         AT->getAttrKind(),
3152         getFunctionTypeWithExceptionSpec(AT->getModifiedType(), ESI),
3153         getFunctionTypeWithExceptionSpec(AT->getEquivalentType(), ESI));
3154 
3155   // Anything else must be a function type. Rebuild it with the new exception
3156   // specification.
3157   const auto *Proto = Orig->castAs<FunctionProtoType>();
3158   return getFunctionType(
3159       Proto->getReturnType(), Proto->getParamTypes(),
3160       Proto->getExtProtoInfo().withExceptionSpec(ESI));
3161 }
3162 
3163 bool ASTContext::hasSameFunctionTypeIgnoringExceptionSpec(QualType T,
3164                                                           QualType U) {
3165   return hasSameType(T, U) ||
3166          (getLangOpts().CPlusPlus17 &&
3167           hasSameType(getFunctionTypeWithExceptionSpec(T, EST_None),
3168                       getFunctionTypeWithExceptionSpec(U, EST_None)));
3169 }
3170 
3171 QualType ASTContext::getFunctionTypeWithoutPtrSizes(QualType T) {
3172   if (const auto *Proto = T->getAs<FunctionProtoType>()) {
3173     QualType RetTy = removePtrSizeAddrSpace(Proto->getReturnType());
3174     SmallVector<QualType, 16> Args(Proto->param_types());
3175     for (unsigned i = 0, n = Args.size(); i != n; ++i)
3176       Args[i] = removePtrSizeAddrSpace(Args[i]);
3177     return getFunctionType(RetTy, Args, Proto->getExtProtoInfo());
3178   }
3179 
3180   if (const FunctionNoProtoType *Proto = T->getAs<FunctionNoProtoType>()) {
3181     QualType RetTy = removePtrSizeAddrSpace(Proto->getReturnType());
3182     return getFunctionNoProtoType(RetTy, Proto->getExtInfo());
3183   }
3184 
3185   return T;
3186 }
3187 
3188 bool ASTContext::hasSameFunctionTypeIgnoringPtrSizes(QualType T, QualType U) {
3189   return hasSameType(T, U) ||
3190          hasSameType(getFunctionTypeWithoutPtrSizes(T),
3191                      getFunctionTypeWithoutPtrSizes(U));
3192 }
3193 
3194 void ASTContext::adjustExceptionSpec(
3195     FunctionDecl *FD, const FunctionProtoType::ExceptionSpecInfo &ESI,
3196     bool AsWritten) {
3197   // Update the type.
3198   QualType Updated =
3199       getFunctionTypeWithExceptionSpec(FD->getType(), ESI);
3200   FD->setType(Updated);
3201 
3202   if (!AsWritten)
3203     return;
3204 
3205   // Update the type in the type source information too.
3206   if (TypeSourceInfo *TSInfo = FD->getTypeSourceInfo()) {
3207     // If the type and the type-as-written differ, we may need to update
3208     // the type-as-written too.
3209     if (TSInfo->getType() != FD->getType())
3210       Updated = getFunctionTypeWithExceptionSpec(TSInfo->getType(), ESI);
3211 
3212     // FIXME: When we get proper type location information for exceptions,
3213     // we'll also have to rebuild the TypeSourceInfo. For now, we just patch
3214     // up the TypeSourceInfo;
3215     assert(TypeLoc::getFullDataSizeForType(Updated) ==
3216                TypeLoc::getFullDataSizeForType(TSInfo->getType()) &&
3217            "TypeLoc size mismatch from updating exception specification");
3218     TSInfo->overrideType(Updated);
3219   }
3220 }
3221 
3222 /// getComplexType - Return the uniqued reference to the type for a complex
3223 /// number with the specified element type.
3224 QualType ASTContext::getComplexType(QualType T) const {
3225   // Unique pointers, to guarantee there is only one pointer of a particular
3226   // structure.
3227   llvm::FoldingSetNodeID ID;
3228   ComplexType::Profile(ID, T);
3229 
3230   void *InsertPos = nullptr;
3231   if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
3232     return QualType(CT, 0);
3233 
3234   // If the pointee type isn't canonical, this won't be a canonical type either,
3235   // so fill in the canonical type field.
3236   QualType Canonical;
3237   if (!T.isCanonical()) {
3238     Canonical = getComplexType(getCanonicalType(T));
3239 
3240     // Get the new insert position for the node we care about.
3241     ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
3242     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3243   }
3244   auto *New = new (*this, TypeAlignment) ComplexType(T, Canonical);
3245   Types.push_back(New);
3246   ComplexTypes.InsertNode(New, InsertPos);
3247   return QualType(New, 0);
3248 }
3249 
3250 /// getPointerType - Return the uniqued reference to the type for a pointer to
3251 /// the specified type.
3252 QualType ASTContext::getPointerType(QualType T) const {
3253   // Unique pointers, to guarantee there is only one pointer of a particular
3254   // structure.
3255   llvm::FoldingSetNodeID ID;
3256   PointerType::Profile(ID, T);
3257 
3258   void *InsertPos = nullptr;
3259   if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
3260     return QualType(PT, 0);
3261 
3262   // If the pointee type isn't canonical, this won't be a canonical type either,
3263   // so fill in the canonical type field.
3264   QualType Canonical;
3265   if (!T.isCanonical()) {
3266     Canonical = getPointerType(getCanonicalType(T));
3267 
3268     // Get the new insert position for the node we care about.
3269     PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
3270     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3271   }
3272   auto *New = new (*this, TypeAlignment) PointerType(T, Canonical);
3273   Types.push_back(New);
3274   PointerTypes.InsertNode(New, InsertPos);
3275   return QualType(New, 0);
3276 }
3277 
3278 QualType ASTContext::getAdjustedType(QualType Orig, QualType New) const {
3279   llvm::FoldingSetNodeID ID;
3280   AdjustedType::Profile(ID, Orig, New);
3281   void *InsertPos = nullptr;
3282   AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
3283   if (AT)
3284     return QualType(AT, 0);
3285 
3286   QualType Canonical = getCanonicalType(New);
3287 
3288   // Get the new insert position for the node we care about.
3289   AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
3290   assert(!AT && "Shouldn't be in the map!");
3291 
3292   AT = new (*this, TypeAlignment)
3293       AdjustedType(Type::Adjusted, Orig, New, Canonical);
3294   Types.push_back(AT);
3295   AdjustedTypes.InsertNode(AT, InsertPos);
3296   return QualType(AT, 0);
3297 }
3298 
3299 QualType ASTContext::getDecayedType(QualType T) const {
3300   assert((T->isArrayType() || T->isFunctionType()) && "T does not decay");
3301 
3302   QualType Decayed;
3303 
3304   // C99 6.7.5.3p7:
3305   //   A declaration of a parameter as "array of type" shall be
3306   //   adjusted to "qualified pointer to type", where the type
3307   //   qualifiers (if any) are those specified within the [ and ] of
3308   //   the array type derivation.
3309   if (T->isArrayType())
3310     Decayed = getArrayDecayedType(T);
3311 
3312   // C99 6.7.5.3p8:
3313   //   A declaration of a parameter as "function returning type"
3314   //   shall be adjusted to "pointer to function returning type", as
3315   //   in 6.3.2.1.
3316   if (T->isFunctionType())
3317     Decayed = getPointerType(T);
3318 
3319   llvm::FoldingSetNodeID ID;
3320   AdjustedType::Profile(ID, T, Decayed);
3321   void *InsertPos = nullptr;
3322   AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
3323   if (AT)
3324     return QualType(AT, 0);
3325 
3326   QualType Canonical = getCanonicalType(Decayed);
3327 
3328   // Get the new insert position for the node we care about.
3329   AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
3330   assert(!AT && "Shouldn't be in the map!");
3331 
3332   AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical);
3333   Types.push_back(AT);
3334   AdjustedTypes.InsertNode(AT, InsertPos);
3335   return QualType(AT, 0);
3336 }
3337 
3338 /// getBlockPointerType - Return the uniqued reference to the type for
3339 /// a pointer to the specified block.
3340 QualType ASTContext::getBlockPointerType(QualType T) const {
3341   assert(T->isFunctionType() && "block of function types only");
3342   // Unique pointers, to guarantee there is only one block of a particular
3343   // structure.
3344   llvm::FoldingSetNodeID ID;
3345   BlockPointerType::Profile(ID, T);
3346 
3347   void *InsertPos = nullptr;
3348   if (BlockPointerType *PT =
3349         BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
3350     return QualType(PT, 0);
3351 
3352   // If the block pointee type isn't canonical, this won't be a canonical
3353   // type either so fill in the canonical type field.
3354   QualType Canonical;
3355   if (!T.isCanonical()) {
3356     Canonical = getBlockPointerType(getCanonicalType(T));
3357 
3358     // Get the new insert position for the node we care about.
3359     BlockPointerType *NewIP =
3360       BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
3361     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3362   }
3363   auto *New = new (*this, TypeAlignment) BlockPointerType(T, Canonical);
3364   Types.push_back(New);
3365   BlockPointerTypes.InsertNode(New, InsertPos);
3366   return QualType(New, 0);
3367 }
3368 
3369 /// getLValueReferenceType - Return the uniqued reference to the type for an
3370 /// lvalue reference to the specified type.
3371 QualType
3372 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const {
3373   assert(getCanonicalType(T) != OverloadTy &&
3374          "Unresolved overloaded function type");
3375 
3376   // Unique pointers, to guarantee there is only one pointer of a particular
3377   // structure.
3378   llvm::FoldingSetNodeID ID;
3379   ReferenceType::Profile(ID, T, SpelledAsLValue);
3380 
3381   void *InsertPos = nullptr;
3382   if (LValueReferenceType *RT =
3383         LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
3384     return QualType(RT, 0);
3385 
3386   const auto *InnerRef = T->getAs<ReferenceType>();
3387 
3388   // If the referencee type isn't canonical, this won't be a canonical type
3389   // either, so fill in the canonical type field.
3390   QualType Canonical;
3391   if (!SpelledAsLValue || InnerRef || !T.isCanonical()) {
3392     QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
3393     Canonical = getLValueReferenceType(getCanonicalType(PointeeType));
3394 
3395     // Get the new insert position for the node we care about.
3396     LValueReferenceType *NewIP =
3397       LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
3398     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3399   }
3400 
3401   auto *New = new (*this, TypeAlignment) LValueReferenceType(T, Canonical,
3402                                                              SpelledAsLValue);
3403   Types.push_back(New);
3404   LValueReferenceTypes.InsertNode(New, InsertPos);
3405 
3406   return QualType(New, 0);
3407 }
3408 
3409 /// getRValueReferenceType - Return the uniqued reference to the type for an
3410 /// rvalue reference to the specified type.
3411 QualType ASTContext::getRValueReferenceType(QualType T) const {
3412   // Unique pointers, to guarantee there is only one pointer of a particular
3413   // structure.
3414   llvm::FoldingSetNodeID ID;
3415   ReferenceType::Profile(ID, T, false);
3416 
3417   void *InsertPos = nullptr;
3418   if (RValueReferenceType *RT =
3419         RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
3420     return QualType(RT, 0);
3421 
3422   const auto *InnerRef = T->getAs<ReferenceType>();
3423 
3424   // If the referencee type isn't canonical, this won't be a canonical type
3425   // either, so fill in the canonical type field.
3426   QualType Canonical;
3427   if (InnerRef || !T.isCanonical()) {
3428     QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
3429     Canonical = getRValueReferenceType(getCanonicalType(PointeeType));
3430 
3431     // Get the new insert position for the node we care about.
3432     RValueReferenceType *NewIP =
3433       RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
3434     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3435   }
3436 
3437   auto *New = new (*this, TypeAlignment) RValueReferenceType(T, Canonical);
3438   Types.push_back(New);
3439   RValueReferenceTypes.InsertNode(New, InsertPos);
3440   return QualType(New, 0);
3441 }
3442 
3443 /// getMemberPointerType - Return the uniqued reference to the type for a
3444 /// member pointer to the specified type, in the specified class.
3445 QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls) const {
3446   // Unique pointers, to guarantee there is only one pointer of a particular
3447   // structure.
3448   llvm::FoldingSetNodeID ID;
3449   MemberPointerType::Profile(ID, T, Cls);
3450 
3451   void *InsertPos = nullptr;
3452   if (MemberPointerType *PT =
3453       MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
3454     return QualType(PT, 0);
3455 
3456   // If the pointee or class type isn't canonical, this won't be a canonical
3457   // type either, so fill in the canonical type field.
3458   QualType Canonical;
3459   if (!T.isCanonical() || !Cls->isCanonicalUnqualified()) {
3460     Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls));
3461 
3462     // Get the new insert position for the node we care about.
3463     MemberPointerType *NewIP =
3464       MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
3465     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3466   }
3467   auto *New = new (*this, TypeAlignment) MemberPointerType(T, Cls, Canonical);
3468   Types.push_back(New);
3469   MemberPointerTypes.InsertNode(New, InsertPos);
3470   return QualType(New, 0);
3471 }
3472 
3473 /// getConstantArrayType - Return the unique reference to the type for an
3474 /// array of the specified element type.
3475 QualType ASTContext::getConstantArrayType(QualType EltTy,
3476                                           const llvm::APInt &ArySizeIn,
3477                                           const Expr *SizeExpr,
3478                                           ArrayType::ArraySizeModifier ASM,
3479                                           unsigned IndexTypeQuals) const {
3480   assert((EltTy->isDependentType() ||
3481           EltTy->isIncompleteType() || EltTy->isConstantSizeType()) &&
3482          "Constant array of VLAs is illegal!");
3483 
3484   // We only need the size as part of the type if it's instantiation-dependent.
3485   if (SizeExpr && !SizeExpr->isInstantiationDependent())
3486     SizeExpr = nullptr;
3487 
3488   // Convert the array size into a canonical width matching the pointer size for
3489   // the target.
3490   llvm::APInt ArySize(ArySizeIn);
3491   ArySize = ArySize.zextOrTrunc(Target->getMaxPointerWidth());
3492 
3493   llvm::FoldingSetNodeID ID;
3494   ConstantArrayType::Profile(ID, *this, EltTy, ArySize, SizeExpr, ASM,
3495                              IndexTypeQuals);
3496 
3497   void *InsertPos = nullptr;
3498   if (ConstantArrayType *ATP =
3499       ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
3500     return QualType(ATP, 0);
3501 
3502   // If the element type isn't canonical or has qualifiers, or the array bound
3503   // is instantiation-dependent, this won't be a canonical type either, so fill
3504   // in the canonical type field.
3505   QualType Canon;
3506   if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers() || SizeExpr) {
3507     SplitQualType canonSplit = getCanonicalType(EltTy).split();
3508     Canon = getConstantArrayType(QualType(canonSplit.Ty, 0), ArySize, nullptr,
3509                                  ASM, IndexTypeQuals);
3510     Canon = getQualifiedType(Canon, canonSplit.Quals);
3511 
3512     // Get the new insert position for the node we care about.
3513     ConstantArrayType *NewIP =
3514       ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
3515     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3516   }
3517 
3518   void *Mem = Allocate(
3519       ConstantArrayType::totalSizeToAlloc<const Expr *>(SizeExpr ? 1 : 0),
3520       TypeAlignment);
3521   auto *New = new (Mem)
3522     ConstantArrayType(EltTy, Canon, ArySize, SizeExpr, ASM, IndexTypeQuals);
3523   ConstantArrayTypes.InsertNode(New, InsertPos);
3524   Types.push_back(New);
3525   return QualType(New, 0);
3526 }
3527 
3528 /// getVariableArrayDecayedType - Turns the given type, which may be
3529 /// variably-modified, into the corresponding type with all the known
3530 /// sizes replaced with [*].
3531 QualType ASTContext::getVariableArrayDecayedType(QualType type) const {
3532   // Vastly most common case.
3533   if (!type->isVariablyModifiedType()) return type;
3534 
3535   QualType result;
3536 
3537   SplitQualType split = type.getSplitDesugaredType();
3538   const Type *ty = split.Ty;
3539   switch (ty->getTypeClass()) {
3540 #define TYPE(Class, Base)
3541 #define ABSTRACT_TYPE(Class, Base)
3542 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
3543 #include "clang/AST/TypeNodes.inc"
3544     llvm_unreachable("didn't desugar past all non-canonical types?");
3545 
3546   // These types should never be variably-modified.
3547   case Type::Builtin:
3548   case Type::Complex:
3549   case Type::Vector:
3550   case Type::DependentVector:
3551   case Type::ExtVector:
3552   case Type::DependentSizedExtVector:
3553   case Type::ConstantMatrix:
3554   case Type::DependentSizedMatrix:
3555   case Type::DependentAddressSpace:
3556   case Type::ObjCObject:
3557   case Type::ObjCInterface:
3558   case Type::ObjCObjectPointer:
3559   case Type::Record:
3560   case Type::Enum:
3561   case Type::UnresolvedUsing:
3562   case Type::TypeOfExpr:
3563   case Type::TypeOf:
3564   case Type::Decltype:
3565   case Type::UnaryTransform:
3566   case Type::DependentName:
3567   case Type::InjectedClassName:
3568   case Type::TemplateSpecialization:
3569   case Type::DependentTemplateSpecialization:
3570   case Type::TemplateTypeParm:
3571   case Type::SubstTemplateTypeParmPack:
3572   case Type::Auto:
3573   case Type::DeducedTemplateSpecialization:
3574   case Type::PackExpansion:
3575   case Type::BitInt:
3576   case Type::DependentBitInt:
3577     llvm_unreachable("type should never be variably-modified");
3578 
3579   // These types can be variably-modified but should never need to
3580   // further decay.
3581   case Type::FunctionNoProto:
3582   case Type::FunctionProto:
3583   case Type::BlockPointer:
3584   case Type::MemberPointer:
3585   case Type::Pipe:
3586     return type;
3587 
3588   // These types can be variably-modified.  All these modifications
3589   // preserve structure except as noted by comments.
3590   // TODO: if we ever care about optimizing VLAs, there are no-op
3591   // optimizations available here.
3592   case Type::Pointer:
3593     result = getPointerType(getVariableArrayDecayedType(
3594                               cast<PointerType>(ty)->getPointeeType()));
3595     break;
3596 
3597   case Type::LValueReference: {
3598     const auto *lv = cast<LValueReferenceType>(ty);
3599     result = getLValueReferenceType(
3600                  getVariableArrayDecayedType(lv->getPointeeType()),
3601                                     lv->isSpelledAsLValue());
3602     break;
3603   }
3604 
3605   case Type::RValueReference: {
3606     const auto *lv = cast<RValueReferenceType>(ty);
3607     result = getRValueReferenceType(
3608                  getVariableArrayDecayedType(lv->getPointeeType()));
3609     break;
3610   }
3611 
3612   case Type::Atomic: {
3613     const auto *at = cast<AtomicType>(ty);
3614     result = getAtomicType(getVariableArrayDecayedType(at->getValueType()));
3615     break;
3616   }
3617 
3618   case Type::ConstantArray: {
3619     const auto *cat = cast<ConstantArrayType>(ty);
3620     result = getConstantArrayType(
3621                  getVariableArrayDecayedType(cat->getElementType()),
3622                                   cat->getSize(),
3623                                   cat->getSizeExpr(),
3624                                   cat->getSizeModifier(),
3625                                   cat->getIndexTypeCVRQualifiers());
3626     break;
3627   }
3628 
3629   case Type::DependentSizedArray: {
3630     const auto *dat = cast<DependentSizedArrayType>(ty);
3631     result = getDependentSizedArrayType(
3632                  getVariableArrayDecayedType(dat->getElementType()),
3633                                         dat->getSizeExpr(),
3634                                         dat->getSizeModifier(),
3635                                         dat->getIndexTypeCVRQualifiers(),
3636                                         dat->getBracketsRange());
3637     break;
3638   }
3639 
3640   // Turn incomplete types into [*] types.
3641   case Type::IncompleteArray: {
3642     const auto *iat = cast<IncompleteArrayType>(ty);
3643     result = getVariableArrayType(
3644                  getVariableArrayDecayedType(iat->getElementType()),
3645                                   /*size*/ nullptr,
3646                                   ArrayType::Normal,
3647                                   iat->getIndexTypeCVRQualifiers(),
3648                                   SourceRange());
3649     break;
3650   }
3651 
3652   // Turn VLA types into [*] types.
3653   case Type::VariableArray: {
3654     const auto *vat = cast<VariableArrayType>(ty);
3655     result = getVariableArrayType(
3656                  getVariableArrayDecayedType(vat->getElementType()),
3657                                   /*size*/ nullptr,
3658                                   ArrayType::Star,
3659                                   vat->getIndexTypeCVRQualifiers(),
3660                                   vat->getBracketsRange());
3661     break;
3662   }
3663   }
3664 
3665   // Apply the top-level qualifiers from the original.
3666   return getQualifiedType(result, split.Quals);
3667 }
3668 
3669 /// getVariableArrayType - Returns a non-unique reference to the type for a
3670 /// variable array of the specified element type.
3671 QualType ASTContext::getVariableArrayType(QualType EltTy,
3672                                           Expr *NumElts,
3673                                           ArrayType::ArraySizeModifier ASM,
3674                                           unsigned IndexTypeQuals,
3675                                           SourceRange Brackets) const {
3676   // Since we don't unique expressions, it isn't possible to unique VLA's
3677   // that have an expression provided for their size.
3678   QualType Canon;
3679 
3680   // Be sure to pull qualifiers off the element type.
3681   if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) {
3682     SplitQualType canonSplit = getCanonicalType(EltTy).split();
3683     Canon = getVariableArrayType(QualType(canonSplit.Ty, 0), NumElts, ASM,
3684                                  IndexTypeQuals, Brackets);
3685     Canon = getQualifiedType(Canon, canonSplit.Quals);
3686   }
3687 
3688   auto *New = new (*this, TypeAlignment)
3689     VariableArrayType(EltTy, Canon, NumElts, ASM, IndexTypeQuals, Brackets);
3690 
3691   VariableArrayTypes.push_back(New);
3692   Types.push_back(New);
3693   return QualType(New, 0);
3694 }
3695 
3696 /// getDependentSizedArrayType - Returns a non-unique reference to
3697 /// the type for a dependently-sized array of the specified element
3698 /// type.
3699 QualType ASTContext::getDependentSizedArrayType(QualType elementType,
3700                                                 Expr *numElements,
3701                                                 ArrayType::ArraySizeModifier ASM,
3702                                                 unsigned elementTypeQuals,
3703                                                 SourceRange brackets) const {
3704   assert((!numElements || numElements->isTypeDependent() ||
3705           numElements->isValueDependent()) &&
3706          "Size must be type- or value-dependent!");
3707 
3708   // Dependently-sized array types that do not have a specified number
3709   // of elements will have their sizes deduced from a dependent
3710   // initializer.  We do no canonicalization here at all, which is okay
3711   // because they can't be used in most locations.
3712   if (!numElements) {
3713     auto *newType
3714       = new (*this, TypeAlignment)
3715           DependentSizedArrayType(*this, elementType, QualType(),
3716                                   numElements, ASM, elementTypeQuals,
3717                                   brackets);
3718     Types.push_back(newType);
3719     return QualType(newType, 0);
3720   }
3721 
3722   // Otherwise, we actually build a new type every time, but we
3723   // also build a canonical type.
3724 
3725   SplitQualType canonElementType = getCanonicalType(elementType).split();
3726 
3727   void *insertPos = nullptr;
3728   llvm::FoldingSetNodeID ID;
3729   DependentSizedArrayType::Profile(ID, *this,
3730                                    QualType(canonElementType.Ty, 0),
3731                                    ASM, elementTypeQuals, numElements);
3732 
3733   // Look for an existing type with these properties.
3734   DependentSizedArrayType *canonTy =
3735     DependentSizedArrayTypes.FindNodeOrInsertPos(ID, insertPos);
3736 
3737   // If we don't have one, build one.
3738   if (!canonTy) {
3739     canonTy = new (*this, TypeAlignment)
3740       DependentSizedArrayType(*this, QualType(canonElementType.Ty, 0),
3741                               QualType(), numElements, ASM, elementTypeQuals,
3742                               brackets);
3743     DependentSizedArrayTypes.InsertNode(canonTy, insertPos);
3744     Types.push_back(canonTy);
3745   }
3746 
3747   // Apply qualifiers from the element type to the array.
3748   QualType canon = getQualifiedType(QualType(canonTy,0),
3749                                     canonElementType.Quals);
3750 
3751   // If we didn't need extra canonicalization for the element type or the size
3752   // expression, then just use that as our result.
3753   if (QualType(canonElementType.Ty, 0) == elementType &&
3754       canonTy->getSizeExpr() == numElements)
3755     return canon;
3756 
3757   // Otherwise, we need to build a type which follows the spelling
3758   // of the element type.
3759   auto *sugaredType
3760     = new (*this, TypeAlignment)
3761         DependentSizedArrayType(*this, elementType, canon, numElements,
3762                                 ASM, elementTypeQuals, brackets);
3763   Types.push_back(sugaredType);
3764   return QualType(sugaredType, 0);
3765 }
3766 
3767 QualType ASTContext::getIncompleteArrayType(QualType elementType,
3768                                             ArrayType::ArraySizeModifier ASM,
3769                                             unsigned elementTypeQuals) const {
3770   llvm::FoldingSetNodeID ID;
3771   IncompleteArrayType::Profile(ID, elementType, ASM, elementTypeQuals);
3772 
3773   void *insertPos = nullptr;
3774   if (IncompleteArrayType *iat =
3775        IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos))
3776     return QualType(iat, 0);
3777 
3778   // If the element type isn't canonical, this won't be a canonical type
3779   // either, so fill in the canonical type field.  We also have to pull
3780   // qualifiers off the element type.
3781   QualType canon;
3782 
3783   if (!elementType.isCanonical() || elementType.hasLocalQualifiers()) {
3784     SplitQualType canonSplit = getCanonicalType(elementType).split();
3785     canon = getIncompleteArrayType(QualType(canonSplit.Ty, 0),
3786                                    ASM, elementTypeQuals);
3787     canon = getQualifiedType(canon, canonSplit.Quals);
3788 
3789     // Get the new insert position for the node we care about.
3790     IncompleteArrayType *existing =
3791       IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos);
3792     assert(!existing && "Shouldn't be in the map!"); (void) existing;
3793   }
3794 
3795   auto *newType = new (*this, TypeAlignment)
3796     IncompleteArrayType(elementType, canon, ASM, elementTypeQuals);
3797 
3798   IncompleteArrayTypes.InsertNode(newType, insertPos);
3799   Types.push_back(newType);
3800   return QualType(newType, 0);
3801 }
3802 
3803 ASTContext::BuiltinVectorTypeInfo
3804 ASTContext::getBuiltinVectorTypeInfo(const BuiltinType *Ty) const {
3805 #define SVE_INT_ELTTY(BITS, ELTS, SIGNED, NUMVECTORS)                          \
3806   {getIntTypeForBitwidth(BITS, SIGNED), llvm::ElementCount::getScalable(ELTS), \
3807    NUMVECTORS};
3808 
3809 #define SVE_ELTTY(ELTTY, ELTS, NUMVECTORS)                                     \
3810   {ELTTY, llvm::ElementCount::getScalable(ELTS), NUMVECTORS};
3811 
3812   switch (Ty->getKind()) {
3813   default:
3814     llvm_unreachable("Unsupported builtin vector type");
3815   case BuiltinType::SveInt8:
3816     return SVE_INT_ELTTY(8, 16, true, 1);
3817   case BuiltinType::SveUint8:
3818     return SVE_INT_ELTTY(8, 16, false, 1);
3819   case BuiltinType::SveInt8x2:
3820     return SVE_INT_ELTTY(8, 16, true, 2);
3821   case BuiltinType::SveUint8x2:
3822     return SVE_INT_ELTTY(8, 16, false, 2);
3823   case BuiltinType::SveInt8x3:
3824     return SVE_INT_ELTTY(8, 16, true, 3);
3825   case BuiltinType::SveUint8x3:
3826     return SVE_INT_ELTTY(8, 16, false, 3);
3827   case BuiltinType::SveInt8x4:
3828     return SVE_INT_ELTTY(8, 16, true, 4);
3829   case BuiltinType::SveUint8x4:
3830     return SVE_INT_ELTTY(8, 16, false, 4);
3831   case BuiltinType::SveInt16:
3832     return SVE_INT_ELTTY(16, 8, true, 1);
3833   case BuiltinType::SveUint16:
3834     return SVE_INT_ELTTY(16, 8, false, 1);
3835   case BuiltinType::SveInt16x2:
3836     return SVE_INT_ELTTY(16, 8, true, 2);
3837   case BuiltinType::SveUint16x2:
3838     return SVE_INT_ELTTY(16, 8, false, 2);
3839   case BuiltinType::SveInt16x3:
3840     return SVE_INT_ELTTY(16, 8, true, 3);
3841   case BuiltinType::SveUint16x3:
3842     return SVE_INT_ELTTY(16, 8, false, 3);
3843   case BuiltinType::SveInt16x4:
3844     return SVE_INT_ELTTY(16, 8, true, 4);
3845   case BuiltinType::SveUint16x4:
3846     return SVE_INT_ELTTY(16, 8, false, 4);
3847   case BuiltinType::SveInt32:
3848     return SVE_INT_ELTTY(32, 4, true, 1);
3849   case BuiltinType::SveUint32:
3850     return SVE_INT_ELTTY(32, 4, false, 1);
3851   case BuiltinType::SveInt32x2:
3852     return SVE_INT_ELTTY(32, 4, true, 2);
3853   case BuiltinType::SveUint32x2:
3854     return SVE_INT_ELTTY(32, 4, false, 2);
3855   case BuiltinType::SveInt32x3:
3856     return SVE_INT_ELTTY(32, 4, true, 3);
3857   case BuiltinType::SveUint32x3:
3858     return SVE_INT_ELTTY(32, 4, false, 3);
3859   case BuiltinType::SveInt32x4:
3860     return SVE_INT_ELTTY(32, 4, true, 4);
3861   case BuiltinType::SveUint32x4:
3862     return SVE_INT_ELTTY(32, 4, false, 4);
3863   case BuiltinType::SveInt64:
3864     return SVE_INT_ELTTY(64, 2, true, 1);
3865   case BuiltinType::SveUint64:
3866     return SVE_INT_ELTTY(64, 2, false, 1);
3867   case BuiltinType::SveInt64x2:
3868     return SVE_INT_ELTTY(64, 2, true, 2);
3869   case BuiltinType::SveUint64x2:
3870     return SVE_INT_ELTTY(64, 2, false, 2);
3871   case BuiltinType::SveInt64x3:
3872     return SVE_INT_ELTTY(64, 2, true, 3);
3873   case BuiltinType::SveUint64x3:
3874     return SVE_INT_ELTTY(64, 2, false, 3);
3875   case BuiltinType::SveInt64x4:
3876     return SVE_INT_ELTTY(64, 2, true, 4);
3877   case BuiltinType::SveUint64x4:
3878     return SVE_INT_ELTTY(64, 2, false, 4);
3879   case BuiltinType::SveBool:
3880     return SVE_ELTTY(BoolTy, 16, 1);
3881   case BuiltinType::SveFloat16:
3882     return SVE_ELTTY(HalfTy, 8, 1);
3883   case BuiltinType::SveFloat16x2:
3884     return SVE_ELTTY(HalfTy, 8, 2);
3885   case BuiltinType::SveFloat16x3:
3886     return SVE_ELTTY(HalfTy, 8, 3);
3887   case BuiltinType::SveFloat16x4:
3888     return SVE_ELTTY(HalfTy, 8, 4);
3889   case BuiltinType::SveFloat32:
3890     return SVE_ELTTY(FloatTy, 4, 1);
3891   case BuiltinType::SveFloat32x2:
3892     return SVE_ELTTY(FloatTy, 4, 2);
3893   case BuiltinType::SveFloat32x3:
3894     return SVE_ELTTY(FloatTy, 4, 3);
3895   case BuiltinType::SveFloat32x4:
3896     return SVE_ELTTY(FloatTy, 4, 4);
3897   case BuiltinType::SveFloat64:
3898     return SVE_ELTTY(DoubleTy, 2, 1);
3899   case BuiltinType::SveFloat64x2:
3900     return SVE_ELTTY(DoubleTy, 2, 2);
3901   case BuiltinType::SveFloat64x3:
3902     return SVE_ELTTY(DoubleTy, 2, 3);
3903   case BuiltinType::SveFloat64x4:
3904     return SVE_ELTTY(DoubleTy, 2, 4);
3905   case BuiltinType::SveBFloat16:
3906     return SVE_ELTTY(BFloat16Ty, 8, 1);
3907   case BuiltinType::SveBFloat16x2:
3908     return SVE_ELTTY(BFloat16Ty, 8, 2);
3909   case BuiltinType::SveBFloat16x3:
3910     return SVE_ELTTY(BFloat16Ty, 8, 3);
3911   case BuiltinType::SveBFloat16x4:
3912     return SVE_ELTTY(BFloat16Ty, 8, 4);
3913 #define RVV_VECTOR_TYPE_INT(Name, Id, SingletonId, NumEls, ElBits, NF,         \
3914                             IsSigned)                                          \
3915   case BuiltinType::Id:                                                        \
3916     return {getIntTypeForBitwidth(ElBits, IsSigned),                           \
3917             llvm::ElementCount::getScalable(NumEls), NF};
3918 #define RVV_VECTOR_TYPE_FLOAT(Name, Id, SingletonId, NumEls, ElBits, NF)       \
3919   case BuiltinType::Id:                                                        \
3920     return {ElBits == 16 ? Float16Ty : (ElBits == 32 ? FloatTy : DoubleTy),    \
3921             llvm::ElementCount::getScalable(NumEls), NF};
3922 #define RVV_PREDICATE_TYPE(Name, Id, SingletonId, NumEls)                      \
3923   case BuiltinType::Id:                                                        \
3924     return {BoolTy, llvm::ElementCount::getScalable(NumEls), 1};
3925 #include "clang/Basic/RISCVVTypes.def"
3926   }
3927 }
3928 
3929 /// getScalableVectorType - Return the unique reference to a scalable vector
3930 /// type of the specified element type and size. VectorType must be a built-in
3931 /// type.
3932 QualType ASTContext::getScalableVectorType(QualType EltTy,
3933                                            unsigned NumElts) const {
3934   if (Target->hasAArch64SVETypes()) {
3935     uint64_t EltTySize = getTypeSize(EltTy);
3936 #define SVE_VECTOR_TYPE(Name, MangledName, Id, SingletonId, NumEls, ElBits,    \
3937                         IsSigned, IsFP, IsBF)                                  \
3938   if (!EltTy->isBooleanType() &&                                               \
3939       ((EltTy->hasIntegerRepresentation() &&                                   \
3940         EltTy->hasSignedIntegerRepresentation() == IsSigned) ||                \
3941        (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() &&      \
3942         IsFP && !IsBF) ||                                                      \
3943        (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() &&       \
3944         IsBF && !IsFP)) &&                                                     \
3945       EltTySize == ElBits && NumElts == NumEls) {                              \
3946     return SingletonId;                                                        \
3947   }
3948 #define SVE_PREDICATE_TYPE(Name, MangledName, Id, SingletonId, NumEls)         \
3949   if (EltTy->isBooleanType() && NumElts == NumEls)                             \
3950     return SingletonId;
3951 #include "clang/Basic/AArch64SVEACLETypes.def"
3952   } else if (Target->hasRISCVVTypes()) {
3953     uint64_t EltTySize = getTypeSize(EltTy);
3954 #define RVV_VECTOR_TYPE(Name, Id, SingletonId, NumEls, ElBits, NF, IsSigned,   \
3955                         IsFP)                                                  \
3956     if (!EltTy->isBooleanType() &&                                             \
3957         ((EltTy->hasIntegerRepresentation() &&                                 \
3958           EltTy->hasSignedIntegerRepresentation() == IsSigned) ||              \
3959          (EltTy->hasFloatingRepresentation() && IsFP)) &&                      \
3960         EltTySize == ElBits && NumElts == NumEls)                              \
3961       return SingletonId;
3962 #define RVV_PREDICATE_TYPE(Name, Id, SingletonId, NumEls)                      \
3963     if (EltTy->isBooleanType() && NumElts == NumEls)                           \
3964       return SingletonId;
3965 #include "clang/Basic/RISCVVTypes.def"
3966   }
3967   return QualType();
3968 }
3969 
3970 /// getVectorType - Return the unique reference to a vector type of
3971 /// the specified element type and size. VectorType must be a built-in type.
3972 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts,
3973                                    VectorType::VectorKind VecKind) const {
3974   assert(vecType->isBuiltinType());
3975 
3976   // Check if we've already instantiated a vector of this type.
3977   llvm::FoldingSetNodeID ID;
3978   VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
3979 
3980   void *InsertPos = nullptr;
3981   if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
3982     return QualType(VTP, 0);
3983 
3984   // If the element type isn't canonical, this won't be a canonical type either,
3985   // so fill in the canonical type field.
3986   QualType Canonical;
3987   if (!vecType.isCanonical()) {
3988     Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
3989 
3990     // Get the new insert position for the node we care about.
3991     VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3992     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3993   }
3994   auto *New = new (*this, TypeAlignment)
3995     VectorType(vecType, NumElts, Canonical, VecKind);
3996   VectorTypes.InsertNode(New, InsertPos);
3997   Types.push_back(New);
3998   return QualType(New, 0);
3999 }
4000 
4001 QualType
4002 ASTContext::getDependentVectorType(QualType VecType, Expr *SizeExpr,
4003                                    SourceLocation AttrLoc,
4004                                    VectorType::VectorKind VecKind) const {
4005   llvm::FoldingSetNodeID ID;
4006   DependentVectorType::Profile(ID, *this, getCanonicalType(VecType), SizeExpr,
4007                                VecKind);
4008   void *InsertPos = nullptr;
4009   DependentVectorType *Canon =
4010       DependentVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
4011   DependentVectorType *New;
4012 
4013   if (Canon) {
4014     New = new (*this, TypeAlignment) DependentVectorType(
4015         *this, VecType, QualType(Canon, 0), SizeExpr, AttrLoc, VecKind);
4016   } else {
4017     QualType CanonVecTy = getCanonicalType(VecType);
4018     if (CanonVecTy == VecType) {
4019       New = new (*this, TypeAlignment) DependentVectorType(
4020           *this, VecType, QualType(), SizeExpr, AttrLoc, VecKind);
4021 
4022       DependentVectorType *CanonCheck =
4023           DependentVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
4024       assert(!CanonCheck &&
4025              "Dependent-sized vector_size canonical type broken");
4026       (void)CanonCheck;
4027       DependentVectorTypes.InsertNode(New, InsertPos);
4028     } else {
4029       QualType CanonTy = getDependentVectorType(CanonVecTy, SizeExpr,
4030                                                 SourceLocation(), VecKind);
4031       New = new (*this, TypeAlignment) DependentVectorType(
4032           *this, VecType, CanonTy, SizeExpr, AttrLoc, VecKind);
4033     }
4034   }
4035 
4036   Types.push_back(New);
4037   return QualType(New, 0);
4038 }
4039 
4040 /// getExtVectorType - Return the unique reference to an extended vector type of
4041 /// the specified element type and size. VectorType must be a built-in type.
4042 QualType
4043 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const {
4044   assert(vecType->isBuiltinType() || vecType->isDependentType());
4045 
4046   // Check if we've already instantiated a vector of this type.
4047   llvm::FoldingSetNodeID ID;
4048   VectorType::Profile(ID, vecType, NumElts, Type::ExtVector,
4049                       VectorType::GenericVector);
4050   void *InsertPos = nullptr;
4051   if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
4052     return QualType(VTP, 0);
4053 
4054   // If the element type isn't canonical, this won't be a canonical type either,
4055   // so fill in the canonical type field.
4056   QualType Canonical;
4057   if (!vecType.isCanonical()) {
4058     Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
4059 
4060     // Get the new insert position for the node we care about.
4061     VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
4062     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
4063   }
4064   auto *New = new (*this, TypeAlignment)
4065     ExtVectorType(vecType, NumElts, Canonical);
4066   VectorTypes.InsertNode(New, InsertPos);
4067   Types.push_back(New);
4068   return QualType(New, 0);
4069 }
4070 
4071 QualType
4072 ASTContext::getDependentSizedExtVectorType(QualType vecType,
4073                                            Expr *SizeExpr,
4074                                            SourceLocation AttrLoc) const {
4075   llvm::FoldingSetNodeID ID;
4076   DependentSizedExtVectorType::Profile(ID, *this, getCanonicalType(vecType),
4077                                        SizeExpr);
4078 
4079   void *InsertPos = nullptr;
4080   DependentSizedExtVectorType *Canon
4081     = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
4082   DependentSizedExtVectorType *New;
4083   if (Canon) {
4084     // We already have a canonical version of this array type; use it as
4085     // the canonical type for a newly-built type.
4086     New = new (*this, TypeAlignment)
4087       DependentSizedExtVectorType(*this, vecType, QualType(Canon, 0),
4088                                   SizeExpr, AttrLoc);
4089   } else {
4090     QualType CanonVecTy = getCanonicalType(vecType);
4091     if (CanonVecTy == vecType) {
4092       New = new (*this, TypeAlignment)
4093         DependentSizedExtVectorType(*this, vecType, QualType(), SizeExpr,
4094                                     AttrLoc);
4095 
4096       DependentSizedExtVectorType *CanonCheck
4097         = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
4098       assert(!CanonCheck && "Dependent-sized ext_vector canonical type broken");
4099       (void)CanonCheck;
4100       DependentSizedExtVectorTypes.InsertNode(New, InsertPos);
4101     } else {
4102       QualType CanonExtTy = getDependentSizedExtVectorType(CanonVecTy, SizeExpr,
4103                                                            SourceLocation());
4104       New = new (*this, TypeAlignment) DependentSizedExtVectorType(
4105           *this, vecType, CanonExtTy, SizeExpr, AttrLoc);
4106     }
4107   }
4108 
4109   Types.push_back(New);
4110   return QualType(New, 0);
4111 }
4112 
4113 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows,
4114                                            unsigned NumColumns) const {
4115   llvm::FoldingSetNodeID ID;
4116   ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns,
4117                               Type::ConstantMatrix);
4118 
4119   assert(MatrixType::isValidElementType(ElementTy) &&
4120          "need a valid element type");
4121   assert(ConstantMatrixType::isDimensionValid(NumRows) &&
4122          ConstantMatrixType::isDimensionValid(NumColumns) &&
4123          "need valid matrix dimensions");
4124   void *InsertPos = nullptr;
4125   if (ConstantMatrixType *MTP = MatrixTypes.FindNodeOrInsertPos(ID, InsertPos))
4126     return QualType(MTP, 0);
4127 
4128   QualType Canonical;
4129   if (!ElementTy.isCanonical()) {
4130     Canonical =
4131         getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns);
4132 
4133     ConstantMatrixType *NewIP = MatrixTypes.FindNodeOrInsertPos(ID, InsertPos);
4134     assert(!NewIP && "Matrix type shouldn't already exist in the map");
4135     (void)NewIP;
4136   }
4137 
4138   auto *New = new (*this, TypeAlignment)
4139       ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical);
4140   MatrixTypes.InsertNode(New, InsertPos);
4141   Types.push_back(New);
4142   return QualType(New, 0);
4143 }
4144 
4145 QualType ASTContext::getDependentSizedMatrixType(QualType ElementTy,
4146                                                  Expr *RowExpr,
4147                                                  Expr *ColumnExpr,
4148                                                  SourceLocation AttrLoc) const {
4149   QualType CanonElementTy = getCanonicalType(ElementTy);
4150   llvm::FoldingSetNodeID ID;
4151   DependentSizedMatrixType::Profile(ID, *this, CanonElementTy, RowExpr,
4152                                     ColumnExpr);
4153 
4154   void *InsertPos = nullptr;
4155   DependentSizedMatrixType *Canon =
4156       DependentSizedMatrixTypes.FindNodeOrInsertPos(ID, InsertPos);
4157 
4158   if (!Canon) {
4159     Canon = new (*this, TypeAlignment) DependentSizedMatrixType(
4160         *this, CanonElementTy, QualType(), RowExpr, ColumnExpr, AttrLoc);
4161 #ifndef NDEBUG
4162     DependentSizedMatrixType *CanonCheck =
4163         DependentSizedMatrixTypes.FindNodeOrInsertPos(ID, InsertPos);
4164     assert(!CanonCheck && "Dependent-sized matrix canonical type broken");
4165 #endif
4166     DependentSizedMatrixTypes.InsertNode(Canon, InsertPos);
4167     Types.push_back(Canon);
4168   }
4169 
4170   // Already have a canonical version of the matrix type
4171   //
4172   // If it exactly matches the requested type, use it directly.
4173   if (Canon->getElementType() == ElementTy && Canon->getRowExpr() == RowExpr &&
4174       Canon->getRowExpr() == ColumnExpr)
4175     return QualType(Canon, 0);
4176 
4177   // Use Canon as the canonical type for newly-built type.
4178   DependentSizedMatrixType *New = new (*this, TypeAlignment)
4179       DependentSizedMatrixType(*this, ElementTy, QualType(Canon, 0), RowExpr,
4180                                ColumnExpr, AttrLoc);
4181   Types.push_back(New);
4182   return QualType(New, 0);
4183 }
4184 
4185 QualType ASTContext::getDependentAddressSpaceType(QualType PointeeType,
4186                                                   Expr *AddrSpaceExpr,
4187                                                   SourceLocation AttrLoc) const {
4188   assert(AddrSpaceExpr->isInstantiationDependent());
4189 
4190   QualType canonPointeeType = getCanonicalType(PointeeType);
4191 
4192   void *insertPos = nullptr;
4193   llvm::FoldingSetNodeID ID;
4194   DependentAddressSpaceType::Profile(ID, *this, canonPointeeType,
4195                                      AddrSpaceExpr);
4196 
4197   DependentAddressSpaceType *canonTy =
4198     DependentAddressSpaceTypes.FindNodeOrInsertPos(ID, insertPos);
4199 
4200   if (!canonTy) {
4201     canonTy = new (*this, TypeAlignment)
4202       DependentAddressSpaceType(*this, canonPointeeType,
4203                                 QualType(), AddrSpaceExpr, AttrLoc);
4204     DependentAddressSpaceTypes.InsertNode(canonTy, insertPos);
4205     Types.push_back(canonTy);
4206   }
4207 
4208   if (canonPointeeType == PointeeType &&
4209       canonTy->getAddrSpaceExpr() == AddrSpaceExpr)
4210     return QualType(canonTy, 0);
4211 
4212   auto *sugaredType
4213     = new (*this, TypeAlignment)
4214         DependentAddressSpaceType(*this, PointeeType, QualType(canonTy, 0),
4215                                   AddrSpaceExpr, AttrLoc);
4216   Types.push_back(sugaredType);
4217   return QualType(sugaredType, 0);
4218 }
4219 
4220 /// Determine whether \p T is canonical as the result type of a function.
4221 static bool isCanonicalResultType(QualType T) {
4222   return T.isCanonical() &&
4223          (T.getObjCLifetime() == Qualifiers::OCL_None ||
4224           T.getObjCLifetime() == Qualifiers::OCL_ExplicitNone);
4225 }
4226 
4227 /// getFunctionNoProtoType - Return a K&R style C function type like 'int()'.
4228 QualType
4229 ASTContext::getFunctionNoProtoType(QualType ResultTy,
4230                                    const FunctionType::ExtInfo &Info) const {
4231   // Unique functions, to guarantee there is only one function of a particular
4232   // structure.
4233   llvm::FoldingSetNodeID ID;
4234   FunctionNoProtoType::Profile(ID, ResultTy, Info);
4235 
4236   void *InsertPos = nullptr;
4237   if (FunctionNoProtoType *FT =
4238         FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
4239     return QualType(FT, 0);
4240 
4241   QualType Canonical;
4242   if (!isCanonicalResultType(ResultTy)) {
4243     Canonical =
4244       getFunctionNoProtoType(getCanonicalFunctionResultType(ResultTy), Info);
4245 
4246     // Get the new insert position for the node we care about.
4247     FunctionNoProtoType *NewIP =
4248       FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
4249     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
4250   }
4251 
4252   auto *New = new (*this, TypeAlignment)
4253     FunctionNoProtoType(ResultTy, Canonical, Info);
4254   Types.push_back(New);
4255   FunctionNoProtoTypes.InsertNode(New, InsertPos);
4256   return QualType(New, 0);
4257 }
4258 
4259 CanQualType
4260 ASTContext::getCanonicalFunctionResultType(QualType ResultType) const {
4261   CanQualType CanResultType = getCanonicalType(ResultType);
4262 
4263   // Canonical result types do not have ARC lifetime qualifiers.
4264   if (CanResultType.getQualifiers().hasObjCLifetime()) {
4265     Qualifiers Qs = CanResultType.getQualifiers();
4266     Qs.removeObjCLifetime();
4267     return CanQualType::CreateUnsafe(
4268              getQualifiedType(CanResultType.getUnqualifiedType(), Qs));
4269   }
4270 
4271   return CanResultType;
4272 }
4273 
4274 static bool isCanonicalExceptionSpecification(
4275     const FunctionProtoType::ExceptionSpecInfo &ESI, bool NoexceptInType) {
4276   if (ESI.Type == EST_None)
4277     return true;
4278   if (!NoexceptInType)
4279     return false;
4280 
4281   // C++17 onwards: exception specification is part of the type, as a simple
4282   // boolean "can this function type throw".
4283   if (ESI.Type == EST_BasicNoexcept)
4284     return true;
4285 
4286   // A noexcept(expr) specification is (possibly) canonical if expr is
4287   // value-dependent.
4288   if (ESI.Type == EST_DependentNoexcept)
4289     return true;
4290 
4291   // A dynamic exception specification is canonical if it only contains pack
4292   // expansions (so we can't tell whether it's non-throwing) and all its
4293   // contained types are canonical.
4294   if (ESI.Type == EST_Dynamic) {
4295     bool AnyPackExpansions = false;
4296     for (QualType ET : ESI.Exceptions) {
4297       if (!ET.isCanonical())
4298         return false;
4299       if (ET->getAs<PackExpansionType>())
4300         AnyPackExpansions = true;
4301     }
4302     return AnyPackExpansions;
4303   }
4304 
4305   return false;
4306 }
4307 
4308 QualType ASTContext::getFunctionTypeInternal(
4309     QualType ResultTy, ArrayRef<QualType> ArgArray,
4310     const FunctionProtoType::ExtProtoInfo &EPI, bool OnlyWantCanonical) const {
4311   size_t NumArgs = ArgArray.size();
4312 
4313   // Unique functions, to guarantee there is only one function of a particular
4314   // structure.
4315   llvm::FoldingSetNodeID ID;
4316   FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI,
4317                              *this, true);
4318 
4319   QualType Canonical;
4320   bool Unique = false;
4321 
4322   void *InsertPos = nullptr;
4323   if (FunctionProtoType *FPT =
4324         FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos)) {
4325     QualType Existing = QualType(FPT, 0);
4326 
4327     // If we find a pre-existing equivalent FunctionProtoType, we can just reuse
4328     // it so long as our exception specification doesn't contain a dependent
4329     // noexcept expression, or we're just looking for a canonical type.
4330     // Otherwise, we're going to need to create a type
4331     // sugar node to hold the concrete expression.
4332     if (OnlyWantCanonical || !isComputedNoexcept(EPI.ExceptionSpec.Type) ||
4333         EPI.ExceptionSpec.NoexceptExpr == FPT->getNoexceptExpr())
4334       return Existing;
4335 
4336     // We need a new type sugar node for this one, to hold the new noexcept
4337     // expression. We do no canonicalization here, but that's OK since we don't
4338     // expect to see the same noexcept expression much more than once.
4339     Canonical = getCanonicalType(Existing);
4340     Unique = true;
4341   }
4342 
4343   bool NoexceptInType = getLangOpts().CPlusPlus17;
4344   bool IsCanonicalExceptionSpec =
4345       isCanonicalExceptionSpecification(EPI.ExceptionSpec, NoexceptInType);
4346 
4347   // Determine whether the type being created is already canonical or not.
4348   bool isCanonical = !Unique && IsCanonicalExceptionSpec &&
4349                      isCanonicalResultType(ResultTy) && !EPI.HasTrailingReturn;
4350   for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
4351     if (!ArgArray[i].isCanonicalAsParam())
4352       isCanonical = false;
4353 
4354   if (OnlyWantCanonical)
4355     assert(isCanonical &&
4356            "given non-canonical parameters constructing canonical type");
4357 
4358   // If this type isn't canonical, get the canonical version of it if we don't
4359   // already have it. The exception spec is only partially part of the
4360   // canonical type, and only in C++17 onwards.
4361   if (!isCanonical && Canonical.isNull()) {
4362     SmallVector<QualType, 16> CanonicalArgs;
4363     CanonicalArgs.reserve(NumArgs);
4364     for (unsigned i = 0; i != NumArgs; ++i)
4365       CanonicalArgs.push_back(getCanonicalParamType(ArgArray[i]));
4366 
4367     llvm::SmallVector<QualType, 8> ExceptionTypeStorage;
4368     FunctionProtoType::ExtProtoInfo CanonicalEPI = EPI;
4369     CanonicalEPI.HasTrailingReturn = false;
4370 
4371     if (IsCanonicalExceptionSpec) {
4372       // Exception spec is already OK.
4373     } else if (NoexceptInType) {
4374       switch (EPI.ExceptionSpec.Type) {
4375       case EST_Unparsed: case EST_Unevaluated: case EST_Uninstantiated:
4376         // We don't know yet. It shouldn't matter what we pick here; no-one
4377         // should ever look at this.
4378         LLVM_FALLTHROUGH;
4379       case EST_None: case EST_MSAny: case EST_NoexceptFalse:
4380         CanonicalEPI.ExceptionSpec.Type = EST_None;
4381         break;
4382 
4383         // A dynamic exception specification is almost always "not noexcept",
4384         // with the exception that a pack expansion might expand to no types.
4385       case EST_Dynamic: {
4386         bool AnyPacks = false;
4387         for (QualType ET : EPI.ExceptionSpec.Exceptions) {
4388           if (ET->getAs<PackExpansionType>())
4389             AnyPacks = true;
4390           ExceptionTypeStorage.push_back(getCanonicalType(ET));
4391         }
4392         if (!AnyPacks)
4393           CanonicalEPI.ExceptionSpec.Type = EST_None;
4394         else {
4395           CanonicalEPI.ExceptionSpec.Type = EST_Dynamic;
4396           CanonicalEPI.ExceptionSpec.Exceptions = ExceptionTypeStorage;
4397         }
4398         break;
4399       }
4400 
4401       case EST_DynamicNone:
4402       case EST_BasicNoexcept:
4403       case EST_NoexceptTrue:
4404       case EST_NoThrow:
4405         CanonicalEPI.ExceptionSpec.Type = EST_BasicNoexcept;
4406         break;
4407 
4408       case EST_DependentNoexcept:
4409         llvm_unreachable("dependent noexcept is already canonical");
4410       }
4411     } else {
4412       CanonicalEPI.ExceptionSpec = FunctionProtoType::ExceptionSpecInfo();
4413     }
4414 
4415     // Adjust the canonical function result type.
4416     CanQualType CanResultTy = getCanonicalFunctionResultType(ResultTy);
4417     Canonical =
4418         getFunctionTypeInternal(CanResultTy, CanonicalArgs, CanonicalEPI, true);
4419 
4420     // Get the new insert position for the node we care about.
4421     FunctionProtoType *NewIP =
4422       FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
4423     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
4424   }
4425 
4426   // Compute the needed size to hold this FunctionProtoType and the
4427   // various trailing objects.
4428   auto ESH = FunctionProtoType::getExceptionSpecSize(
4429       EPI.ExceptionSpec.Type, EPI.ExceptionSpec.Exceptions.size());
4430   size_t Size = FunctionProtoType::totalSizeToAlloc<
4431       QualType, SourceLocation, FunctionType::FunctionTypeExtraBitfields,
4432       FunctionType::ExceptionType, Expr *, FunctionDecl *,
4433       FunctionProtoType::ExtParameterInfo, Qualifiers>(
4434       NumArgs, EPI.Variadic,
4435       FunctionProtoType::hasExtraBitfields(EPI.ExceptionSpec.Type),
4436       ESH.NumExceptionType, ESH.NumExprPtr, ESH.NumFunctionDeclPtr,
4437       EPI.ExtParameterInfos ? NumArgs : 0,
4438       EPI.TypeQuals.hasNonFastQualifiers() ? 1 : 0);
4439 
4440   auto *FTP = (FunctionProtoType *)Allocate(Size, TypeAlignment);
4441   FunctionProtoType::ExtProtoInfo newEPI = EPI;
4442   new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
4443   Types.push_back(FTP);
4444   if (!Unique)
4445     FunctionProtoTypes.InsertNode(FTP, InsertPos);
4446   return QualType(FTP, 0);
4447 }
4448 
4449 QualType ASTContext::getPipeType(QualType T, bool ReadOnly) const {
4450   llvm::FoldingSetNodeID ID;
4451   PipeType::Profile(ID, T, ReadOnly);
4452 
4453   void *InsertPos = nullptr;
4454   if (PipeType *PT = PipeTypes.FindNodeOrInsertPos(ID, InsertPos))
4455     return QualType(PT, 0);
4456 
4457   // If the pipe element type isn't canonical, this won't be a canonical type
4458   // either, so fill in the canonical type field.
4459   QualType Canonical;
4460   if (!T.isCanonical()) {
4461     Canonical = getPipeType(getCanonicalType(T), ReadOnly);
4462 
4463     // Get the new insert position for the node we care about.
4464     PipeType *NewIP = PipeTypes.FindNodeOrInsertPos(ID, InsertPos);
4465     assert(!NewIP && "Shouldn't be in the map!");
4466     (void)NewIP;
4467   }
4468   auto *New = new (*this, TypeAlignment) PipeType(T, Canonical, ReadOnly);
4469   Types.push_back(New);
4470   PipeTypes.InsertNode(New, InsertPos);
4471   return QualType(New, 0);
4472 }
4473 
4474 QualType ASTContext::adjustStringLiteralBaseType(QualType Ty) const {
4475   // OpenCL v1.1 s6.5.3: a string literal is in the constant address space.
4476   return LangOpts.OpenCL ? getAddrSpaceQualType(Ty, LangAS::opencl_constant)
4477                          : Ty;
4478 }
4479 
4480 QualType ASTContext::getReadPipeType(QualType T) const {
4481   return getPipeType(T, true);
4482 }
4483 
4484 QualType ASTContext::getWritePipeType(QualType T) const {
4485   return getPipeType(T, false);
4486 }
4487 
4488 QualType ASTContext::getBitIntType(bool IsUnsigned, unsigned NumBits) const {
4489   llvm::FoldingSetNodeID ID;
4490   BitIntType::Profile(ID, IsUnsigned, NumBits);
4491 
4492   void *InsertPos = nullptr;
4493   if (BitIntType *EIT = BitIntTypes.FindNodeOrInsertPos(ID, InsertPos))
4494     return QualType(EIT, 0);
4495 
4496   auto *New = new (*this, TypeAlignment) BitIntType(IsUnsigned, NumBits);
4497   BitIntTypes.InsertNode(New, InsertPos);
4498   Types.push_back(New);
4499   return QualType(New, 0);
4500 }
4501 
4502 QualType ASTContext::getDependentBitIntType(bool IsUnsigned,
4503                                             Expr *NumBitsExpr) const {
4504   assert(NumBitsExpr->isInstantiationDependent() && "Only good for dependent");
4505   llvm::FoldingSetNodeID ID;
4506   DependentBitIntType::Profile(ID, *this, IsUnsigned, NumBitsExpr);
4507 
4508   void *InsertPos = nullptr;
4509   if (DependentBitIntType *Existing =
4510           DependentBitIntTypes.FindNodeOrInsertPos(ID, InsertPos))
4511     return QualType(Existing, 0);
4512 
4513   auto *New = new (*this, TypeAlignment)
4514       DependentBitIntType(*this, IsUnsigned, NumBitsExpr);
4515   DependentBitIntTypes.InsertNode(New, InsertPos);
4516 
4517   Types.push_back(New);
4518   return QualType(New, 0);
4519 }
4520 
4521 #ifndef NDEBUG
4522 static bool NeedsInjectedClassNameType(const RecordDecl *D) {
4523   if (!isa<CXXRecordDecl>(D)) return false;
4524   const auto *RD = cast<CXXRecordDecl>(D);
4525   if (isa<ClassTemplatePartialSpecializationDecl>(RD))
4526     return true;
4527   if (RD->getDescribedClassTemplate() &&
4528       !isa<ClassTemplateSpecializationDecl>(RD))
4529     return true;
4530   return false;
4531 }
4532 #endif
4533 
4534 /// getInjectedClassNameType - Return the unique reference to the
4535 /// injected class name type for the specified templated declaration.
4536 QualType ASTContext::getInjectedClassNameType(CXXRecordDecl *Decl,
4537                                               QualType TST) const {
4538   assert(NeedsInjectedClassNameType(Decl));
4539   if (Decl->TypeForDecl) {
4540     assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
4541   } else if (CXXRecordDecl *PrevDecl = Decl->getPreviousDecl()) {
4542     assert(PrevDecl->TypeForDecl && "previous declaration has no type");
4543     Decl->TypeForDecl = PrevDecl->TypeForDecl;
4544     assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
4545   } else {
4546     Type *newType =
4547       new (*this, TypeAlignment) InjectedClassNameType(Decl, TST);
4548     Decl->TypeForDecl = newType;
4549     Types.push_back(newType);
4550   }
4551   return QualType(Decl->TypeForDecl, 0);
4552 }
4553 
4554 /// getTypeDeclType - Return the unique reference to the type for the
4555 /// specified type declaration.
4556 QualType ASTContext::getTypeDeclTypeSlow(const TypeDecl *Decl) const {
4557   assert(Decl && "Passed null for Decl param");
4558   assert(!Decl->TypeForDecl && "TypeForDecl present in slow case");
4559 
4560   if (const auto *Typedef = dyn_cast<TypedefNameDecl>(Decl))
4561     return getTypedefType(Typedef);
4562 
4563   assert(!isa<TemplateTypeParmDecl>(Decl) &&
4564          "Template type parameter types are always available.");
4565 
4566   if (const auto *Record = dyn_cast<RecordDecl>(Decl)) {
4567     assert(Record->isFirstDecl() && "struct/union has previous declaration");
4568     assert(!NeedsInjectedClassNameType(Record));
4569     return getRecordType(Record);
4570   } else if (const auto *Enum = dyn_cast<EnumDecl>(Decl)) {
4571     assert(Enum->isFirstDecl() && "enum has previous declaration");
4572     return getEnumType(Enum);
4573   } else if (const auto *Using = dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) {
4574     return getUnresolvedUsingType(Using);
4575   } else
4576     llvm_unreachable("TypeDecl without a type?");
4577 
4578   return QualType(Decl->TypeForDecl, 0);
4579 }
4580 
4581 /// getTypedefType - Return the unique reference to the type for the
4582 /// specified typedef name decl.
4583 QualType ASTContext::getTypedefType(const TypedefNameDecl *Decl,
4584                                     QualType Underlying) const {
4585   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
4586 
4587   if (Underlying.isNull())
4588     Underlying = Decl->getUnderlyingType();
4589   QualType Canonical = getCanonicalType(Underlying);
4590   auto *newType = new (*this, TypeAlignment)
4591       TypedefType(Type::Typedef, Decl, Underlying, Canonical);
4592   Decl->TypeForDecl = newType;
4593   Types.push_back(newType);
4594   return QualType(newType, 0);
4595 }
4596 
4597 QualType ASTContext::getUsingType(const UsingShadowDecl *Found,
4598                                   QualType Underlying) const {
4599   llvm::FoldingSetNodeID ID;
4600   UsingType::Profile(ID, Found);
4601 
4602   void *InsertPos = nullptr;
4603   UsingType *T = UsingTypes.FindNodeOrInsertPos(ID, InsertPos);
4604   if (T)
4605     return QualType(T, 0);
4606 
4607   assert(!Underlying.hasLocalQualifiers());
4608   assert(Underlying == getTypeDeclType(cast<TypeDecl>(Found->getTargetDecl())));
4609   QualType Canon = Underlying.getCanonicalType();
4610 
4611   UsingType *NewType =
4612       new (*this, TypeAlignment) UsingType(Found, Underlying, Canon);
4613   Types.push_back(NewType);
4614   UsingTypes.InsertNode(NewType, InsertPos);
4615   return QualType(NewType, 0);
4616 }
4617 
4618 QualType ASTContext::getRecordType(const RecordDecl *Decl) const {
4619   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
4620 
4621   if (const RecordDecl *PrevDecl = Decl->getPreviousDecl())
4622     if (PrevDecl->TypeForDecl)
4623       return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
4624 
4625   auto *newType = new (*this, TypeAlignment) RecordType(Decl);
4626   Decl->TypeForDecl = newType;
4627   Types.push_back(newType);
4628   return QualType(newType, 0);
4629 }
4630 
4631 QualType ASTContext::getEnumType(const EnumDecl *Decl) const {
4632   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
4633 
4634   if (const EnumDecl *PrevDecl = Decl->getPreviousDecl())
4635     if (PrevDecl->TypeForDecl)
4636       return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
4637 
4638   auto *newType = new (*this, TypeAlignment) EnumType(Decl);
4639   Decl->TypeForDecl = newType;
4640   Types.push_back(newType);
4641   return QualType(newType, 0);
4642 }
4643 
4644 QualType ASTContext::getUnresolvedUsingType(
4645     const UnresolvedUsingTypenameDecl *Decl) const {
4646   if (Decl->TypeForDecl)
4647     return QualType(Decl->TypeForDecl, 0);
4648 
4649   if (const UnresolvedUsingTypenameDecl *CanonicalDecl =
4650           Decl->getCanonicalDecl())
4651     if (CanonicalDecl->TypeForDecl)
4652       return QualType(Decl->TypeForDecl = CanonicalDecl->TypeForDecl, 0);
4653 
4654   Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Decl);
4655   Decl->TypeForDecl = newType;
4656   Types.push_back(newType);
4657   return QualType(newType, 0);
4658 }
4659 
4660 QualType ASTContext::getAttributedType(attr::Kind attrKind,
4661                                        QualType modifiedType,
4662                                        QualType equivalentType) {
4663   llvm::FoldingSetNodeID id;
4664   AttributedType::Profile(id, attrKind, modifiedType, equivalentType);
4665 
4666   void *insertPos = nullptr;
4667   AttributedType *type = AttributedTypes.FindNodeOrInsertPos(id, insertPos);
4668   if (type) return QualType(type, 0);
4669 
4670   QualType canon = getCanonicalType(equivalentType);
4671   type = new (*this, TypeAlignment)
4672       AttributedType(canon, attrKind, modifiedType, equivalentType);
4673 
4674   Types.push_back(type);
4675   AttributedTypes.InsertNode(type, insertPos);
4676 
4677   return QualType(type, 0);
4678 }
4679 
4680 /// Retrieve a substitution-result type.
4681 QualType
4682 ASTContext::getSubstTemplateTypeParmType(const TemplateTypeParmType *Parm,
4683                                          QualType Replacement) const {
4684   assert(Replacement.isCanonical()
4685          && "replacement types must always be canonical");
4686 
4687   llvm::FoldingSetNodeID ID;
4688   SubstTemplateTypeParmType::Profile(ID, Parm, Replacement);
4689   void *InsertPos = nullptr;
4690   SubstTemplateTypeParmType *SubstParm
4691     = SubstTemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
4692 
4693   if (!SubstParm) {
4694     SubstParm = new (*this, TypeAlignment)
4695       SubstTemplateTypeParmType(Parm, Replacement);
4696     Types.push_back(SubstParm);
4697     SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
4698   }
4699 
4700   return QualType(SubstParm, 0);
4701 }
4702 
4703 /// Retrieve a
4704 QualType ASTContext::getSubstTemplateTypeParmPackType(
4705                                           const TemplateTypeParmType *Parm,
4706                                               const TemplateArgument &ArgPack) {
4707 #ifndef NDEBUG
4708   for (const auto &P : ArgPack.pack_elements()) {
4709     assert(P.getKind() == TemplateArgument::Type &&"Pack contains a non-type");
4710     assert(P.getAsType().isCanonical() && "Pack contains non-canonical type");
4711   }
4712 #endif
4713 
4714   llvm::FoldingSetNodeID ID;
4715   SubstTemplateTypeParmPackType::Profile(ID, Parm, ArgPack);
4716   void *InsertPos = nullptr;
4717   if (SubstTemplateTypeParmPackType *SubstParm
4718         = SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos))
4719     return QualType(SubstParm, 0);
4720 
4721   QualType Canon;
4722   if (!Parm->isCanonicalUnqualified()) {
4723     Canon = getCanonicalType(QualType(Parm, 0));
4724     Canon = getSubstTemplateTypeParmPackType(cast<TemplateTypeParmType>(Canon),
4725                                              ArgPack);
4726     SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos);
4727   }
4728 
4729   auto *SubstParm
4730     = new (*this, TypeAlignment) SubstTemplateTypeParmPackType(Parm, Canon,
4731                                                                ArgPack);
4732   Types.push_back(SubstParm);
4733   SubstTemplateTypeParmPackTypes.InsertNode(SubstParm, InsertPos);
4734   return QualType(SubstParm, 0);
4735 }
4736 
4737 /// Retrieve the template type parameter type for a template
4738 /// parameter or parameter pack with the given depth, index, and (optionally)
4739 /// name.
4740 QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index,
4741                                              bool ParameterPack,
4742                                              TemplateTypeParmDecl *TTPDecl) const {
4743   llvm::FoldingSetNodeID ID;
4744   TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl);
4745   void *InsertPos = nullptr;
4746   TemplateTypeParmType *TypeParm
4747     = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
4748 
4749   if (TypeParm)
4750     return QualType(TypeParm, 0);
4751 
4752   if (TTPDecl) {
4753     QualType Canon = getTemplateTypeParmType(Depth, Index, ParameterPack);
4754     TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon);
4755 
4756     TemplateTypeParmType *TypeCheck
4757       = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
4758     assert(!TypeCheck && "Template type parameter canonical type broken");
4759     (void)TypeCheck;
4760   } else
4761     TypeParm = new (*this, TypeAlignment)
4762       TemplateTypeParmType(Depth, Index, ParameterPack);
4763 
4764   Types.push_back(TypeParm);
4765   TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos);
4766 
4767   return QualType(TypeParm, 0);
4768 }
4769 
4770 TypeSourceInfo *
4771 ASTContext::getTemplateSpecializationTypeInfo(TemplateName Name,
4772                                               SourceLocation NameLoc,
4773                                         const TemplateArgumentListInfo &Args,
4774                                               QualType Underlying) const {
4775   assert(!Name.getAsDependentTemplateName() &&
4776          "No dependent template names here!");
4777   QualType TST = getTemplateSpecializationType(Name, Args, Underlying);
4778 
4779   TypeSourceInfo *DI = CreateTypeSourceInfo(TST);
4780   TemplateSpecializationTypeLoc TL =
4781       DI->getTypeLoc().castAs<TemplateSpecializationTypeLoc>();
4782   TL.setTemplateKeywordLoc(SourceLocation());
4783   TL.setTemplateNameLoc(NameLoc);
4784   TL.setLAngleLoc(Args.getLAngleLoc());
4785   TL.setRAngleLoc(Args.getRAngleLoc());
4786   for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
4787     TL.setArgLocInfo(i, Args[i].getLocInfo());
4788   return DI;
4789 }
4790 
4791 QualType
4792 ASTContext::getTemplateSpecializationType(TemplateName Template,
4793                                           const TemplateArgumentListInfo &Args,
4794                                           QualType Underlying) const {
4795   assert(!Template.getAsDependentTemplateName() &&
4796          "No dependent template names here!");
4797 
4798   SmallVector<TemplateArgument, 4> ArgVec;
4799   ArgVec.reserve(Args.size());
4800   for (const TemplateArgumentLoc &Arg : Args.arguments())
4801     ArgVec.push_back(Arg.getArgument());
4802 
4803   return getTemplateSpecializationType(Template, ArgVec, Underlying);
4804 }
4805 
4806 #ifndef NDEBUG
4807 static bool hasAnyPackExpansions(ArrayRef<TemplateArgument> Args) {
4808   for (const TemplateArgument &Arg : Args)
4809     if (Arg.isPackExpansion())
4810       return true;
4811 
4812   return true;
4813 }
4814 #endif
4815 
4816 QualType
4817 ASTContext::getTemplateSpecializationType(TemplateName Template,
4818                                           ArrayRef<TemplateArgument> Args,
4819                                           QualType Underlying) const {
4820   assert(!Template.getAsDependentTemplateName() &&
4821          "No dependent template names here!");
4822   // Look through qualified template names.
4823   if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
4824     Template = TemplateName(QTN->getTemplateDecl());
4825 
4826   bool IsTypeAlias =
4827     Template.getAsTemplateDecl() &&
4828     isa<TypeAliasTemplateDecl>(Template.getAsTemplateDecl());
4829   QualType CanonType;
4830   if (!Underlying.isNull())
4831     CanonType = getCanonicalType(Underlying);
4832   else {
4833     // We can get here with an alias template when the specialization contains
4834     // a pack expansion that does not match up with a parameter pack.
4835     assert((!IsTypeAlias || hasAnyPackExpansions(Args)) &&
4836            "Caller must compute aliased type");
4837     IsTypeAlias = false;
4838     CanonType = getCanonicalTemplateSpecializationType(Template, Args);
4839   }
4840 
4841   // Allocate the (non-canonical) template specialization type, but don't
4842   // try to unique it: these types typically have location information that
4843   // we don't unique and don't want to lose.
4844   void *Mem = Allocate(sizeof(TemplateSpecializationType) +
4845                        sizeof(TemplateArgument) * Args.size() +
4846                        (IsTypeAlias? sizeof(QualType) : 0),
4847                        TypeAlignment);
4848   auto *Spec
4849     = new (Mem) TemplateSpecializationType(Template, Args, CanonType,
4850                                          IsTypeAlias ? Underlying : QualType());
4851 
4852   Types.push_back(Spec);
4853   return QualType(Spec, 0);
4854 }
4855 
4856 static bool
4857 getCanonicalTemplateArguments(const ASTContext &C,
4858                               ArrayRef<TemplateArgument> OrigArgs,
4859                               SmallVectorImpl<TemplateArgument> &CanonArgs) {
4860   bool AnyNonCanonArgs = false;
4861   unsigned NumArgs = OrigArgs.size();
4862   CanonArgs.resize(NumArgs);
4863   for (unsigned I = 0; I != NumArgs; ++I) {
4864     const TemplateArgument &OrigArg = OrigArgs[I];
4865     TemplateArgument &CanonArg = CanonArgs[I];
4866     CanonArg = C.getCanonicalTemplateArgument(OrigArg);
4867     if (!CanonArg.structurallyEquals(OrigArg))
4868       AnyNonCanonArgs = true;
4869   }
4870   return AnyNonCanonArgs;
4871 }
4872 
4873 QualType ASTContext::getCanonicalTemplateSpecializationType(
4874     TemplateName Template, ArrayRef<TemplateArgument> Args) const {
4875   assert(!Template.getAsDependentTemplateName() &&
4876          "No dependent template names here!");
4877 
4878   // Look through qualified template names.
4879   if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
4880     Template = TemplateName(QTN->getTemplateDecl());
4881 
4882   // Build the canonical template specialization type.
4883   TemplateName CanonTemplate = getCanonicalTemplateName(Template);
4884   SmallVector<TemplateArgument, 4> CanonArgs;
4885   ::getCanonicalTemplateArguments(*this, Args, CanonArgs);
4886 
4887   // Determine whether this canonical template specialization type already
4888   // exists.
4889   llvm::FoldingSetNodeID ID;
4890   TemplateSpecializationType::Profile(ID, CanonTemplate,
4891                                       CanonArgs, *this);
4892 
4893   void *InsertPos = nullptr;
4894   TemplateSpecializationType *Spec
4895     = TemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
4896 
4897   if (!Spec) {
4898     // Allocate a new canonical template specialization type.
4899     void *Mem = Allocate((sizeof(TemplateSpecializationType) +
4900                           sizeof(TemplateArgument) * CanonArgs.size()),
4901                          TypeAlignment);
4902     Spec = new (Mem) TemplateSpecializationType(CanonTemplate,
4903                                                 CanonArgs,
4904                                                 QualType(), QualType());
4905     Types.push_back(Spec);
4906     TemplateSpecializationTypes.InsertNode(Spec, InsertPos);
4907   }
4908 
4909   assert(Spec->isDependentType() &&
4910          "Non-dependent template-id type must have a canonical type");
4911   return QualType(Spec, 0);
4912 }
4913 
4914 QualType ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword,
4915                                        NestedNameSpecifier *NNS,
4916                                        QualType NamedType,
4917                                        TagDecl *OwnedTagDecl) const {
4918   llvm::FoldingSetNodeID ID;
4919   ElaboratedType::Profile(ID, Keyword, NNS, NamedType, OwnedTagDecl);
4920 
4921   void *InsertPos = nullptr;
4922   ElaboratedType *T = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
4923   if (T)
4924     return QualType(T, 0);
4925 
4926   QualType Canon = NamedType;
4927   if (!Canon.isCanonical()) {
4928     Canon = getCanonicalType(NamedType);
4929     ElaboratedType *CheckT = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
4930     assert(!CheckT && "Elaborated canonical type broken");
4931     (void)CheckT;
4932   }
4933 
4934   void *Mem = Allocate(ElaboratedType::totalSizeToAlloc<TagDecl *>(!!OwnedTagDecl),
4935                        TypeAlignment);
4936   T = new (Mem) ElaboratedType(Keyword, NNS, NamedType, Canon, OwnedTagDecl);
4937 
4938   Types.push_back(T);
4939   ElaboratedTypes.InsertNode(T, InsertPos);
4940   return QualType(T, 0);
4941 }
4942 
4943 QualType
4944 ASTContext::getParenType(QualType InnerType) const {
4945   llvm::FoldingSetNodeID ID;
4946   ParenType::Profile(ID, InnerType);
4947 
4948   void *InsertPos = nullptr;
4949   ParenType *T = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
4950   if (T)
4951     return QualType(T, 0);
4952 
4953   QualType Canon = InnerType;
4954   if (!Canon.isCanonical()) {
4955     Canon = getCanonicalType(InnerType);
4956     ParenType *CheckT = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
4957     assert(!CheckT && "Paren canonical type broken");
4958     (void)CheckT;
4959   }
4960 
4961   T = new (*this, TypeAlignment) ParenType(InnerType, Canon);
4962   Types.push_back(T);
4963   ParenTypes.InsertNode(T, InsertPos);
4964   return QualType(T, 0);
4965 }
4966 
4967 QualType
4968 ASTContext::getMacroQualifiedType(QualType UnderlyingTy,
4969                                   const IdentifierInfo *MacroII) const {
4970   QualType Canon = UnderlyingTy;
4971   if (!Canon.isCanonical())
4972     Canon = getCanonicalType(UnderlyingTy);
4973 
4974   auto *newType = new (*this, TypeAlignment)
4975       MacroQualifiedType(UnderlyingTy, Canon, MacroII);
4976   Types.push_back(newType);
4977   return QualType(newType, 0);
4978 }
4979 
4980 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword,
4981                                           NestedNameSpecifier *NNS,
4982                                           const IdentifierInfo *Name,
4983                                           QualType Canon) const {
4984   if (Canon.isNull()) {
4985     NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
4986     if (CanonNNS != NNS)
4987       Canon = getDependentNameType(Keyword, CanonNNS, Name);
4988   }
4989 
4990   llvm::FoldingSetNodeID ID;
4991   DependentNameType::Profile(ID, Keyword, NNS, Name);
4992 
4993   void *InsertPos = nullptr;
4994   DependentNameType *T
4995     = DependentNameTypes.FindNodeOrInsertPos(ID, InsertPos);
4996   if (T)
4997     return QualType(T, 0);
4998 
4999   T = new (*this, TypeAlignment) DependentNameType(Keyword, NNS, Name, Canon);
5000   Types.push_back(T);
5001   DependentNameTypes.InsertNode(T, InsertPos);
5002   return QualType(T, 0);
5003 }
5004 
5005 QualType
5006 ASTContext::getDependentTemplateSpecializationType(
5007                                  ElaboratedTypeKeyword Keyword,
5008                                  NestedNameSpecifier *NNS,
5009                                  const IdentifierInfo *Name,
5010                                  const TemplateArgumentListInfo &Args) const {
5011   // TODO: avoid this copy
5012   SmallVector<TemplateArgument, 16> ArgCopy;
5013   for (unsigned I = 0, E = Args.size(); I != E; ++I)
5014     ArgCopy.push_back(Args[I].getArgument());
5015   return getDependentTemplateSpecializationType(Keyword, NNS, Name, ArgCopy);
5016 }
5017 
5018 QualType
5019 ASTContext::getDependentTemplateSpecializationType(
5020                                  ElaboratedTypeKeyword Keyword,
5021                                  NestedNameSpecifier *NNS,
5022                                  const IdentifierInfo *Name,
5023                                  ArrayRef<TemplateArgument> Args) const {
5024   assert((!NNS || NNS->isDependent()) &&
5025          "nested-name-specifier must be dependent");
5026 
5027   llvm::FoldingSetNodeID ID;
5028   DependentTemplateSpecializationType::Profile(ID, *this, Keyword, NNS,
5029                                                Name, Args);
5030 
5031   void *InsertPos = nullptr;
5032   DependentTemplateSpecializationType *T
5033     = DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
5034   if (T)
5035     return QualType(T, 0);
5036 
5037   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
5038 
5039   ElaboratedTypeKeyword CanonKeyword = Keyword;
5040   if (Keyword == ETK_None) CanonKeyword = ETK_Typename;
5041 
5042   SmallVector<TemplateArgument, 16> CanonArgs;
5043   bool AnyNonCanonArgs =
5044       ::getCanonicalTemplateArguments(*this, Args, CanonArgs);
5045 
5046   QualType Canon;
5047   if (AnyNonCanonArgs || CanonNNS != NNS || CanonKeyword != Keyword) {
5048     Canon = getDependentTemplateSpecializationType(CanonKeyword, CanonNNS,
5049                                                    Name,
5050                                                    CanonArgs);
5051 
5052     // Find the insert position again.
5053     DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
5054   }
5055 
5056   void *Mem = Allocate((sizeof(DependentTemplateSpecializationType) +
5057                         sizeof(TemplateArgument) * Args.size()),
5058                        TypeAlignment);
5059   T = new (Mem) DependentTemplateSpecializationType(Keyword, NNS,
5060                                                     Name, Args, Canon);
5061   Types.push_back(T);
5062   DependentTemplateSpecializationTypes.InsertNode(T, InsertPos);
5063   return QualType(T, 0);
5064 }
5065 
5066 TemplateArgument ASTContext::getInjectedTemplateArg(NamedDecl *Param) {
5067   TemplateArgument Arg;
5068   if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
5069     QualType ArgType = getTypeDeclType(TTP);
5070     if (TTP->isParameterPack())
5071       ArgType = getPackExpansionType(ArgType, None);
5072 
5073     Arg = TemplateArgument(ArgType);
5074   } else if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
5075     QualType T =
5076         NTTP->getType().getNonPackExpansionType().getNonLValueExprType(*this);
5077     // For class NTTPs, ensure we include the 'const' so the type matches that
5078     // of a real template argument.
5079     // FIXME: It would be more faithful to model this as something like an
5080     // lvalue-to-rvalue conversion applied to a const-qualified lvalue.
5081     if (T->isRecordType())
5082       T.addConst();
5083     Expr *E = new (*this) DeclRefExpr(
5084         *this, NTTP, /*enclosing*/ false, T,
5085         Expr::getValueKindForType(NTTP->getType()), NTTP->getLocation());
5086 
5087     if (NTTP->isParameterPack())
5088       E = new (*this) PackExpansionExpr(DependentTy, E, NTTP->getLocation(),
5089                                         None);
5090     Arg = TemplateArgument(E);
5091   } else {
5092     auto *TTP = cast<TemplateTemplateParmDecl>(Param);
5093     if (TTP->isParameterPack())
5094       Arg = TemplateArgument(TemplateName(TTP), Optional<unsigned>());
5095     else
5096       Arg = TemplateArgument(TemplateName(TTP));
5097   }
5098 
5099   if (Param->isTemplateParameterPack())
5100     Arg = TemplateArgument::CreatePackCopy(*this, Arg);
5101 
5102   return Arg;
5103 }
5104 
5105 void
5106 ASTContext::getInjectedTemplateArgs(const TemplateParameterList *Params,
5107                                     SmallVectorImpl<TemplateArgument> &Args) {
5108   Args.reserve(Args.size() + Params->size());
5109 
5110   for (NamedDecl *Param : *Params)
5111     Args.push_back(getInjectedTemplateArg(Param));
5112 }
5113 
5114 QualType ASTContext::getPackExpansionType(QualType Pattern,
5115                                           Optional<unsigned> NumExpansions,
5116                                           bool ExpectPackInType) {
5117   assert((!ExpectPackInType || Pattern->containsUnexpandedParameterPack()) &&
5118          "Pack expansions must expand one or more parameter packs");
5119 
5120   llvm::FoldingSetNodeID ID;
5121   PackExpansionType::Profile(ID, Pattern, NumExpansions);
5122 
5123   void *InsertPos = nullptr;
5124   PackExpansionType *T = PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
5125   if (T)
5126     return QualType(T, 0);
5127 
5128   QualType Canon;
5129   if (!Pattern.isCanonical()) {
5130     Canon = getPackExpansionType(getCanonicalType(Pattern), NumExpansions,
5131                                  /*ExpectPackInType=*/false);
5132 
5133     // Find the insert position again, in case we inserted an element into
5134     // PackExpansionTypes and invalidated our insert position.
5135     PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
5136   }
5137 
5138   T = new (*this, TypeAlignment)
5139       PackExpansionType(Pattern, Canon, NumExpansions);
5140   Types.push_back(T);
5141   PackExpansionTypes.InsertNode(T, InsertPos);
5142   return QualType(T, 0);
5143 }
5144 
5145 /// CmpProtocolNames - Comparison predicate for sorting protocols
5146 /// alphabetically.
5147 static int CmpProtocolNames(ObjCProtocolDecl *const *LHS,
5148                             ObjCProtocolDecl *const *RHS) {
5149   return DeclarationName::compare((*LHS)->getDeclName(), (*RHS)->getDeclName());
5150 }
5151 
5152 static bool areSortedAndUniqued(ArrayRef<ObjCProtocolDecl *> Protocols) {
5153   if (Protocols.empty()) return true;
5154 
5155   if (Protocols[0]->getCanonicalDecl() != Protocols[0])
5156     return false;
5157 
5158   for (unsigned i = 1; i != Protocols.size(); ++i)
5159     if (CmpProtocolNames(&Protocols[i - 1], &Protocols[i]) >= 0 ||
5160         Protocols[i]->getCanonicalDecl() != Protocols[i])
5161       return false;
5162   return true;
5163 }
5164 
5165 static void
5166 SortAndUniqueProtocols(SmallVectorImpl<ObjCProtocolDecl *> &Protocols) {
5167   // Sort protocols, keyed by name.
5168   llvm::array_pod_sort(Protocols.begin(), Protocols.end(), CmpProtocolNames);
5169 
5170   // Canonicalize.
5171   for (ObjCProtocolDecl *&P : Protocols)
5172     P = P->getCanonicalDecl();
5173 
5174   // Remove duplicates.
5175   auto ProtocolsEnd = std::unique(Protocols.begin(), Protocols.end());
5176   Protocols.erase(ProtocolsEnd, Protocols.end());
5177 }
5178 
5179 QualType ASTContext::getObjCObjectType(QualType BaseType,
5180                                        ObjCProtocolDecl * const *Protocols,
5181                                        unsigned NumProtocols) const {
5182   return getObjCObjectType(BaseType, {},
5183                            llvm::makeArrayRef(Protocols, NumProtocols),
5184                            /*isKindOf=*/false);
5185 }
5186 
5187 QualType ASTContext::getObjCObjectType(
5188            QualType baseType,
5189            ArrayRef<QualType> typeArgs,
5190            ArrayRef<ObjCProtocolDecl *> protocols,
5191            bool isKindOf) const {
5192   // If the base type is an interface and there aren't any protocols or
5193   // type arguments to add, then the interface type will do just fine.
5194   if (typeArgs.empty() && protocols.empty() && !isKindOf &&
5195       isa<ObjCInterfaceType>(baseType))
5196     return baseType;
5197 
5198   // Look in the folding set for an existing type.
5199   llvm::FoldingSetNodeID ID;
5200   ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf);
5201   void *InsertPos = nullptr;
5202   if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
5203     return QualType(QT, 0);
5204 
5205   // Determine the type arguments to be used for canonicalization,
5206   // which may be explicitly specified here or written on the base
5207   // type.
5208   ArrayRef<QualType> effectiveTypeArgs = typeArgs;
5209   if (effectiveTypeArgs.empty()) {
5210     if (const auto *baseObject = baseType->getAs<ObjCObjectType>())
5211       effectiveTypeArgs = baseObject->getTypeArgs();
5212   }
5213 
5214   // Build the canonical type, which has the canonical base type and a
5215   // sorted-and-uniqued list of protocols and the type arguments
5216   // canonicalized.
5217   QualType canonical;
5218   bool typeArgsAreCanonical = llvm::all_of(
5219       effectiveTypeArgs, [&](QualType type) { return type.isCanonical(); });
5220   bool protocolsSorted = areSortedAndUniqued(protocols);
5221   if (!typeArgsAreCanonical || !protocolsSorted || !baseType.isCanonical()) {
5222     // Determine the canonical type arguments.
5223     ArrayRef<QualType> canonTypeArgs;
5224     SmallVector<QualType, 4> canonTypeArgsVec;
5225     if (!typeArgsAreCanonical) {
5226       canonTypeArgsVec.reserve(effectiveTypeArgs.size());
5227       for (auto typeArg : effectiveTypeArgs)
5228         canonTypeArgsVec.push_back(getCanonicalType(typeArg));
5229       canonTypeArgs = canonTypeArgsVec;
5230     } else {
5231       canonTypeArgs = effectiveTypeArgs;
5232     }
5233 
5234     ArrayRef<ObjCProtocolDecl *> canonProtocols;
5235     SmallVector<ObjCProtocolDecl*, 8> canonProtocolsVec;
5236     if (!protocolsSorted) {
5237       canonProtocolsVec.append(protocols.begin(), protocols.end());
5238       SortAndUniqueProtocols(canonProtocolsVec);
5239       canonProtocols = canonProtocolsVec;
5240     } else {
5241       canonProtocols = protocols;
5242     }
5243 
5244     canonical = getObjCObjectType(getCanonicalType(baseType), canonTypeArgs,
5245                                   canonProtocols, isKindOf);
5246 
5247     // Regenerate InsertPos.
5248     ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos);
5249   }
5250 
5251   unsigned size = sizeof(ObjCObjectTypeImpl);
5252   size += typeArgs.size() * sizeof(QualType);
5253   size += protocols.size() * sizeof(ObjCProtocolDecl *);
5254   void *mem = Allocate(size, TypeAlignment);
5255   auto *T =
5256     new (mem) ObjCObjectTypeImpl(canonical, baseType, typeArgs, protocols,
5257                                  isKindOf);
5258 
5259   Types.push_back(T);
5260   ObjCObjectTypes.InsertNode(T, InsertPos);
5261   return QualType(T, 0);
5262 }
5263 
5264 /// Apply Objective-C protocol qualifiers to the given type.
5265 /// If this is for the canonical type of a type parameter, we can apply
5266 /// protocol qualifiers on the ObjCObjectPointerType.
5267 QualType
5268 ASTContext::applyObjCProtocolQualifiers(QualType type,
5269                   ArrayRef<ObjCProtocolDecl *> protocols, bool &hasError,
5270                   bool allowOnPointerType) const {
5271   hasError = false;
5272 
5273   if (const auto *objT = dyn_cast<ObjCTypeParamType>(type.getTypePtr())) {
5274     return getObjCTypeParamType(objT->getDecl(), protocols);
5275   }
5276 
5277   // Apply protocol qualifiers to ObjCObjectPointerType.
5278   if (allowOnPointerType) {
5279     if (const auto *objPtr =
5280             dyn_cast<ObjCObjectPointerType>(type.getTypePtr())) {
5281       const ObjCObjectType *objT = objPtr->getObjectType();
5282       // Merge protocol lists and construct ObjCObjectType.
5283       SmallVector<ObjCProtocolDecl*, 8> protocolsVec;
5284       protocolsVec.append(objT->qual_begin(),
5285                           objT->qual_end());
5286       protocolsVec.append(protocols.begin(), protocols.end());
5287       ArrayRef<ObjCProtocolDecl *> protocols = protocolsVec;
5288       type = getObjCObjectType(
5289              objT->getBaseType(),
5290              objT->getTypeArgsAsWritten(),
5291              protocols,
5292              objT->isKindOfTypeAsWritten());
5293       return getObjCObjectPointerType(type);
5294     }
5295   }
5296 
5297   // Apply protocol qualifiers to ObjCObjectType.
5298   if (const auto *objT = dyn_cast<ObjCObjectType>(type.getTypePtr())){
5299     // FIXME: Check for protocols to which the class type is already
5300     // known to conform.
5301 
5302     return getObjCObjectType(objT->getBaseType(),
5303                              objT->getTypeArgsAsWritten(),
5304                              protocols,
5305                              objT->isKindOfTypeAsWritten());
5306   }
5307 
5308   // If the canonical type is ObjCObjectType, ...
5309   if (type->isObjCObjectType()) {
5310     // Silently overwrite any existing protocol qualifiers.
5311     // TODO: determine whether that's the right thing to do.
5312 
5313     // FIXME: Check for protocols to which the class type is already
5314     // known to conform.
5315     return getObjCObjectType(type, {}, protocols, false);
5316   }
5317 
5318   // id<protocol-list>
5319   if (type->isObjCIdType()) {
5320     const auto *objPtr = type->castAs<ObjCObjectPointerType>();
5321     type = getObjCObjectType(ObjCBuiltinIdTy, {}, protocols,
5322                                  objPtr->isKindOfType());
5323     return getObjCObjectPointerType(type);
5324   }
5325 
5326   // Class<protocol-list>
5327   if (type->isObjCClassType()) {
5328     const auto *objPtr = type->castAs<ObjCObjectPointerType>();
5329     type = getObjCObjectType(ObjCBuiltinClassTy, {}, protocols,
5330                                  objPtr->isKindOfType());
5331     return getObjCObjectPointerType(type);
5332   }
5333 
5334   hasError = true;
5335   return type;
5336 }
5337 
5338 QualType
5339 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl,
5340                                  ArrayRef<ObjCProtocolDecl *> protocols) const {
5341   // Look in the folding set for an existing type.
5342   llvm::FoldingSetNodeID ID;
5343   ObjCTypeParamType::Profile(ID, Decl, Decl->getUnderlyingType(), protocols);
5344   void *InsertPos = nullptr;
5345   if (ObjCTypeParamType *TypeParam =
5346       ObjCTypeParamTypes.FindNodeOrInsertPos(ID, InsertPos))
5347     return QualType(TypeParam, 0);
5348 
5349   // We canonicalize to the underlying type.
5350   QualType Canonical = getCanonicalType(Decl->getUnderlyingType());
5351   if (!protocols.empty()) {
5352     // Apply the protocol qualifers.
5353     bool hasError;
5354     Canonical = getCanonicalType(applyObjCProtocolQualifiers(
5355         Canonical, protocols, hasError, true /*allowOnPointerType*/));
5356     assert(!hasError && "Error when apply protocol qualifier to bound type");
5357   }
5358 
5359   unsigned size = sizeof(ObjCTypeParamType);
5360   size += protocols.size() * sizeof(ObjCProtocolDecl *);
5361   void *mem = Allocate(size, TypeAlignment);
5362   auto *newType = new (mem) ObjCTypeParamType(Decl, Canonical, protocols);
5363 
5364   Types.push_back(newType);
5365   ObjCTypeParamTypes.InsertNode(newType, InsertPos);
5366   return QualType(newType, 0);
5367 }
5368 
5369 void ASTContext::adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig,
5370                                               ObjCTypeParamDecl *New) const {
5371   New->setTypeSourceInfo(getTrivialTypeSourceInfo(Orig->getUnderlyingType()));
5372   // Update TypeForDecl after updating TypeSourceInfo.
5373   auto NewTypeParamTy = cast<ObjCTypeParamType>(New->getTypeForDecl());
5374   SmallVector<ObjCProtocolDecl *, 8> protocols;
5375   protocols.append(NewTypeParamTy->qual_begin(), NewTypeParamTy->qual_end());
5376   QualType UpdatedTy = getObjCTypeParamType(New, protocols);
5377   New->setTypeForDecl(UpdatedTy.getTypePtr());
5378 }
5379 
5380 /// ObjCObjectAdoptsQTypeProtocols - Checks that protocols in IC's
5381 /// protocol list adopt all protocols in QT's qualified-id protocol
5382 /// list.
5383 bool ASTContext::ObjCObjectAdoptsQTypeProtocols(QualType QT,
5384                                                 ObjCInterfaceDecl *IC) {
5385   if (!QT->isObjCQualifiedIdType())
5386     return false;
5387 
5388   if (const auto *OPT = QT->getAs<ObjCObjectPointerType>()) {
5389     // If both the right and left sides have qualifiers.
5390     for (auto *Proto : OPT->quals()) {
5391       if (!IC->ClassImplementsProtocol(Proto, false))
5392         return false;
5393     }
5394     return true;
5395   }
5396   return false;
5397 }
5398 
5399 /// QIdProtocolsAdoptObjCObjectProtocols - Checks that protocols in
5400 /// QT's qualified-id protocol list adopt all protocols in IDecl's list
5401 /// of protocols.
5402 bool ASTContext::QIdProtocolsAdoptObjCObjectProtocols(QualType QT,
5403                                                 ObjCInterfaceDecl *IDecl) {
5404   if (!QT->isObjCQualifiedIdType())
5405     return false;
5406   const auto *OPT = QT->getAs<ObjCObjectPointerType>();
5407   if (!OPT)
5408     return false;
5409   if (!IDecl->hasDefinition())
5410     return false;
5411   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> InheritedProtocols;
5412   CollectInheritedProtocols(IDecl, InheritedProtocols);
5413   if (InheritedProtocols.empty())
5414     return false;
5415   // Check that if every protocol in list of id<plist> conforms to a protocol
5416   // of IDecl's, then bridge casting is ok.
5417   bool Conforms = false;
5418   for (auto *Proto : OPT->quals()) {
5419     Conforms = false;
5420     for (auto *PI : InheritedProtocols) {
5421       if (ProtocolCompatibleWithProtocol(Proto, PI)) {
5422         Conforms = true;
5423         break;
5424       }
5425     }
5426     if (!Conforms)
5427       break;
5428   }
5429   if (Conforms)
5430     return true;
5431 
5432   for (auto *PI : InheritedProtocols) {
5433     // If both the right and left sides have qualifiers.
5434     bool Adopts = false;
5435     for (auto *Proto : OPT->quals()) {
5436       // return 'true' if 'PI' is in the inheritance hierarchy of Proto
5437       if ((Adopts = ProtocolCompatibleWithProtocol(PI, Proto)))
5438         break;
5439     }
5440     if (!Adopts)
5441       return false;
5442   }
5443   return true;
5444 }
5445 
5446 /// getObjCObjectPointerType - Return a ObjCObjectPointerType type for
5447 /// the given object type.
5448 QualType ASTContext::getObjCObjectPointerType(QualType ObjectT) const {
5449   llvm::FoldingSetNodeID ID;
5450   ObjCObjectPointerType::Profile(ID, ObjectT);
5451 
5452   void *InsertPos = nullptr;
5453   if (ObjCObjectPointerType *QT =
5454               ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
5455     return QualType(QT, 0);
5456 
5457   // Find the canonical object type.
5458   QualType Canonical;
5459   if (!ObjectT.isCanonical()) {
5460     Canonical = getObjCObjectPointerType(getCanonicalType(ObjectT));
5461 
5462     // Regenerate InsertPos.
5463     ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
5464   }
5465 
5466   // No match.
5467   void *Mem = Allocate(sizeof(ObjCObjectPointerType), TypeAlignment);
5468   auto *QType =
5469     new (Mem) ObjCObjectPointerType(Canonical, ObjectT);
5470 
5471   Types.push_back(QType);
5472   ObjCObjectPointerTypes.InsertNode(QType, InsertPos);
5473   return QualType(QType, 0);
5474 }
5475 
5476 /// getObjCInterfaceType - Return the unique reference to the type for the
5477 /// specified ObjC interface decl. The list of protocols is optional.
5478 QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl,
5479                                           ObjCInterfaceDecl *PrevDecl) const {
5480   if (Decl->TypeForDecl)
5481     return QualType(Decl->TypeForDecl, 0);
5482 
5483   if (PrevDecl) {
5484     assert(PrevDecl->TypeForDecl && "previous decl has no TypeForDecl");
5485     Decl->TypeForDecl = PrevDecl->TypeForDecl;
5486     return QualType(PrevDecl->TypeForDecl, 0);
5487   }
5488 
5489   // Prefer the definition, if there is one.
5490   if (const ObjCInterfaceDecl *Def = Decl->getDefinition())
5491     Decl = Def;
5492 
5493   void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment);
5494   auto *T = new (Mem) ObjCInterfaceType(Decl);
5495   Decl->TypeForDecl = T;
5496   Types.push_back(T);
5497   return QualType(T, 0);
5498 }
5499 
5500 /// getTypeOfExprType - Unlike many "get<Type>" functions, we can't unique
5501 /// TypeOfExprType AST's (since expression's are never shared). For example,
5502 /// multiple declarations that refer to "typeof(x)" all contain different
5503 /// DeclRefExpr's. This doesn't effect the type checker, since it operates
5504 /// on canonical type's (which are always unique).
5505 QualType ASTContext::getTypeOfExprType(Expr *tofExpr) const {
5506   TypeOfExprType *toe;
5507   if (tofExpr->isTypeDependent()) {
5508     llvm::FoldingSetNodeID ID;
5509     DependentTypeOfExprType::Profile(ID, *this, tofExpr);
5510 
5511     void *InsertPos = nullptr;
5512     DependentTypeOfExprType *Canon
5513       = DependentTypeOfExprTypes.FindNodeOrInsertPos(ID, InsertPos);
5514     if (Canon) {
5515       // We already have a "canonical" version of an identical, dependent
5516       // typeof(expr) type. Use that as our canonical type.
5517       toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr,
5518                                           QualType((TypeOfExprType*)Canon, 0));
5519     } else {
5520       // Build a new, canonical typeof(expr) type.
5521       Canon
5522         = new (*this, TypeAlignment) DependentTypeOfExprType(*this, tofExpr);
5523       DependentTypeOfExprTypes.InsertNode(Canon, InsertPos);
5524       toe = Canon;
5525     }
5526   } else {
5527     QualType Canonical = getCanonicalType(tofExpr->getType());
5528     toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical);
5529   }
5530   Types.push_back(toe);
5531   return QualType(toe, 0);
5532 }
5533 
5534 /// getTypeOfType -  Unlike many "get<Type>" functions, we don't unique
5535 /// TypeOfType nodes. The only motivation to unique these nodes would be
5536 /// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
5537 /// an issue. This doesn't affect the type checker, since it operates
5538 /// on canonical types (which are always unique).
5539 QualType ASTContext::getTypeOfType(QualType tofType) const {
5540   QualType Canonical = getCanonicalType(tofType);
5541   auto *tot = new (*this, TypeAlignment) TypeOfType(tofType, Canonical);
5542   Types.push_back(tot);
5543   return QualType(tot, 0);
5544 }
5545 
5546 /// getReferenceQualifiedType - Given an expr, will return the type for
5547 /// that expression, as in [dcl.type.simple]p4 but without taking id-expressions
5548 /// and class member access into account.
5549 QualType ASTContext::getReferenceQualifiedType(const Expr *E) const {
5550   // C++11 [dcl.type.simple]p4:
5551   //   [...]
5552   QualType T = E->getType();
5553   switch (E->getValueKind()) {
5554   //     - otherwise, if e is an xvalue, decltype(e) is T&&, where T is the
5555   //       type of e;
5556   case VK_XValue:
5557     return getRValueReferenceType(T);
5558   //     - otherwise, if e is an lvalue, decltype(e) is T&, where T is the
5559   //       type of e;
5560   case VK_LValue:
5561     return getLValueReferenceType(T);
5562   //  - otherwise, decltype(e) is the type of e.
5563   case VK_PRValue:
5564     return T;
5565   }
5566   llvm_unreachable("Unknown value kind");
5567 }
5568 
5569 /// Unlike many "get<Type>" functions, we don't unique DecltypeType
5570 /// nodes. This would never be helpful, since each such type has its own
5571 /// expression, and would not give a significant memory saving, since there
5572 /// is an Expr tree under each such type.
5573 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const {
5574   DecltypeType *dt;
5575 
5576   // C++11 [temp.type]p2:
5577   //   If an expression e involves a template parameter, decltype(e) denotes a
5578   //   unique dependent type. Two such decltype-specifiers refer to the same
5579   //   type only if their expressions are equivalent (14.5.6.1).
5580   if (e->isInstantiationDependent()) {
5581     llvm::FoldingSetNodeID ID;
5582     DependentDecltypeType::Profile(ID, *this, e);
5583 
5584     void *InsertPos = nullptr;
5585     DependentDecltypeType *Canon
5586       = DependentDecltypeTypes.FindNodeOrInsertPos(ID, InsertPos);
5587     if (!Canon) {
5588       // Build a new, canonical decltype(expr) type.
5589       Canon = new (*this, TypeAlignment) DependentDecltypeType(*this, e);
5590       DependentDecltypeTypes.InsertNode(Canon, InsertPos);
5591     }
5592     dt = new (*this, TypeAlignment)
5593         DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0));
5594   } else {
5595     dt = new (*this, TypeAlignment)
5596         DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType));
5597   }
5598   Types.push_back(dt);
5599   return QualType(dt, 0);
5600 }
5601 
5602 /// getUnaryTransformationType - We don't unique these, since the memory
5603 /// savings are minimal and these are rare.
5604 QualType ASTContext::getUnaryTransformType(QualType BaseType,
5605                                            QualType UnderlyingType,
5606                                            UnaryTransformType::UTTKind Kind)
5607     const {
5608   UnaryTransformType *ut = nullptr;
5609 
5610   if (BaseType->isDependentType()) {
5611     // Look in the folding set for an existing type.
5612     llvm::FoldingSetNodeID ID;
5613     DependentUnaryTransformType::Profile(ID, getCanonicalType(BaseType), Kind);
5614 
5615     void *InsertPos = nullptr;
5616     DependentUnaryTransformType *Canon
5617       = DependentUnaryTransformTypes.FindNodeOrInsertPos(ID, InsertPos);
5618 
5619     if (!Canon) {
5620       // Build a new, canonical __underlying_type(type) type.
5621       Canon = new (*this, TypeAlignment)
5622              DependentUnaryTransformType(*this, getCanonicalType(BaseType),
5623                                          Kind);
5624       DependentUnaryTransformTypes.InsertNode(Canon, InsertPos);
5625     }
5626     ut = new (*this, TypeAlignment) UnaryTransformType (BaseType,
5627                                                         QualType(), Kind,
5628                                                         QualType(Canon, 0));
5629   } else {
5630     QualType CanonType = getCanonicalType(UnderlyingType);
5631     ut = new (*this, TypeAlignment) UnaryTransformType (BaseType,
5632                                                         UnderlyingType, Kind,
5633                                                         CanonType);
5634   }
5635   Types.push_back(ut);
5636   return QualType(ut, 0);
5637 }
5638 
5639 QualType ASTContext::getAutoTypeInternal(
5640     QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent,
5641     bool IsPack, ConceptDecl *TypeConstraintConcept,
5642     ArrayRef<TemplateArgument> TypeConstraintArgs, bool IsCanon) const {
5643   if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto &&
5644       !TypeConstraintConcept && !IsDependent)
5645     return getAutoDeductType();
5646 
5647   // Look in the folding set for an existing type.
5648   void *InsertPos = nullptr;
5649   llvm::FoldingSetNodeID ID;
5650   AutoType::Profile(ID, *this, DeducedType, Keyword, IsDependent,
5651                     TypeConstraintConcept, TypeConstraintArgs);
5652   if (AutoType *AT = AutoTypes.FindNodeOrInsertPos(ID, InsertPos))
5653     return QualType(AT, 0);
5654 
5655   QualType Canon;
5656   if (!IsCanon) {
5657     if (DeducedType.isNull()) {
5658       SmallVector<TemplateArgument, 4> CanonArgs;
5659       bool AnyNonCanonArgs =
5660           ::getCanonicalTemplateArguments(*this, TypeConstraintArgs, CanonArgs);
5661       if (AnyNonCanonArgs) {
5662         Canon = getAutoTypeInternal(QualType(), Keyword, IsDependent, IsPack,
5663                                     TypeConstraintConcept, CanonArgs, true);
5664         // Find the insert position again.
5665         AutoTypes.FindNodeOrInsertPos(ID, InsertPos);
5666       }
5667     } else {
5668       Canon = DeducedType.getCanonicalType();
5669     }
5670   }
5671 
5672   void *Mem = Allocate(sizeof(AutoType) +
5673                            sizeof(TemplateArgument) * TypeConstraintArgs.size(),
5674                        TypeAlignment);
5675   auto *AT = new (Mem) AutoType(
5676       DeducedType, Keyword,
5677       (IsDependent ? TypeDependence::DependentInstantiation
5678                    : TypeDependence::None) |
5679           (IsPack ? TypeDependence::UnexpandedPack : TypeDependence::None),
5680       Canon, TypeConstraintConcept, TypeConstraintArgs);
5681   Types.push_back(AT);
5682   AutoTypes.InsertNode(AT, InsertPos);
5683   return QualType(AT, 0);
5684 }
5685 
5686 /// getAutoType - Return the uniqued reference to the 'auto' type which has been
5687 /// deduced to the given type, or to the canonical undeduced 'auto' type, or the
5688 /// canonical deduced-but-dependent 'auto' type.
5689 QualType
5690 ASTContext::getAutoType(QualType DeducedType, AutoTypeKeyword Keyword,
5691                         bool IsDependent, bool IsPack,
5692                         ConceptDecl *TypeConstraintConcept,
5693                         ArrayRef<TemplateArgument> TypeConstraintArgs) const {
5694   assert((!IsPack || IsDependent) && "only use IsPack for a dependent pack");
5695   assert((!IsDependent || DeducedType.isNull()) &&
5696          "A dependent auto should be undeduced");
5697   return getAutoTypeInternal(DeducedType, Keyword, IsDependent, IsPack,
5698                              TypeConstraintConcept, TypeConstraintArgs);
5699 }
5700 
5701 /// Return the uniqued reference to the deduced template specialization type
5702 /// which has been deduced to the given type, or to the canonical undeduced
5703 /// such type, or the canonical deduced-but-dependent such type.
5704 QualType ASTContext::getDeducedTemplateSpecializationType(
5705     TemplateName Template, QualType DeducedType, bool IsDependent) const {
5706   // Look in the folding set for an existing type.
5707   void *InsertPos = nullptr;
5708   llvm::FoldingSetNodeID ID;
5709   DeducedTemplateSpecializationType::Profile(ID, Template, DeducedType,
5710                                              IsDependent);
5711   if (DeducedTemplateSpecializationType *DTST =
5712           DeducedTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos))
5713     return QualType(DTST, 0);
5714 
5715   auto *DTST = new (*this, TypeAlignment)
5716       DeducedTemplateSpecializationType(Template, DeducedType, IsDependent);
5717   llvm::FoldingSetNodeID TempID;
5718   DTST->Profile(TempID);
5719   assert(ID == TempID && "ID does not match");
5720   Types.push_back(DTST);
5721   DeducedTemplateSpecializationTypes.InsertNode(DTST, InsertPos);
5722   return QualType(DTST, 0);
5723 }
5724 
5725 /// getAtomicType - Return the uniqued reference to the atomic type for
5726 /// the given value type.
5727 QualType ASTContext::getAtomicType(QualType T) const {
5728   // Unique pointers, to guarantee there is only one pointer of a particular
5729   // structure.
5730   llvm::FoldingSetNodeID ID;
5731   AtomicType::Profile(ID, T);
5732 
5733   void *InsertPos = nullptr;
5734   if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos))
5735     return QualType(AT, 0);
5736 
5737   // If the atomic value type isn't canonical, this won't be a canonical type
5738   // either, so fill in the canonical type field.
5739   QualType Canonical;
5740   if (!T.isCanonical()) {
5741     Canonical = getAtomicType(getCanonicalType(T));
5742 
5743     // Get the new insert position for the node we care about.
5744     AtomicType *NewIP = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos);
5745     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
5746   }
5747   auto *New = new (*this, TypeAlignment) AtomicType(T, Canonical);
5748   Types.push_back(New);
5749   AtomicTypes.InsertNode(New, InsertPos);
5750   return QualType(New, 0);
5751 }
5752 
5753 /// getAutoDeductType - Get type pattern for deducing against 'auto'.
5754 QualType ASTContext::getAutoDeductType() const {
5755   if (AutoDeductTy.isNull())
5756     AutoDeductTy = QualType(new (*this, TypeAlignment)
5757                                 AutoType(QualType(), AutoTypeKeyword::Auto,
5758                                          TypeDependence::None, QualType(),
5759                                          /*concept*/ nullptr, /*args*/ {}),
5760                             0);
5761   return AutoDeductTy;
5762 }
5763 
5764 /// getAutoRRefDeductType - Get type pattern for deducing against 'auto &&'.
5765 QualType ASTContext::getAutoRRefDeductType() const {
5766   if (AutoRRefDeductTy.isNull())
5767     AutoRRefDeductTy = getRValueReferenceType(getAutoDeductType());
5768   assert(!AutoRRefDeductTy.isNull() && "can't build 'auto &&' pattern");
5769   return AutoRRefDeductTy;
5770 }
5771 
5772 /// getTagDeclType - Return the unique reference to the type for the
5773 /// specified TagDecl (struct/union/class/enum) decl.
5774 QualType ASTContext::getTagDeclType(const TagDecl *Decl) const {
5775   assert(Decl);
5776   // FIXME: What is the design on getTagDeclType when it requires casting
5777   // away const?  mutable?
5778   return getTypeDeclType(const_cast<TagDecl*>(Decl));
5779 }
5780 
5781 /// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
5782 /// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
5783 /// needs to agree with the definition in <stddef.h>.
5784 CanQualType ASTContext::getSizeType() const {
5785   return getFromTargetType(Target->getSizeType());
5786 }
5787 
5788 /// Return the unique signed counterpart of the integer type
5789 /// corresponding to size_t.
5790 CanQualType ASTContext::getSignedSizeType() const {
5791   return getFromTargetType(Target->getSignedSizeType());
5792 }
5793 
5794 /// getIntMaxType - Return the unique type for "intmax_t" (C99 7.18.1.5).
5795 CanQualType ASTContext::getIntMaxType() const {
5796   return getFromTargetType(Target->getIntMaxType());
5797 }
5798 
5799 /// getUIntMaxType - Return the unique type for "uintmax_t" (C99 7.18.1.5).
5800 CanQualType ASTContext::getUIntMaxType() const {
5801   return getFromTargetType(Target->getUIntMaxType());
5802 }
5803 
5804 /// getSignedWCharType - Return the type of "signed wchar_t".
5805 /// Used when in C++, as a GCC extension.
5806 QualType ASTContext::getSignedWCharType() const {
5807   // FIXME: derive from "Target" ?
5808   return WCharTy;
5809 }
5810 
5811 /// getUnsignedWCharType - Return the type of "unsigned wchar_t".
5812 /// Used when in C++, as a GCC extension.
5813 QualType ASTContext::getUnsignedWCharType() const {
5814   // FIXME: derive from "Target" ?
5815   return UnsignedIntTy;
5816 }
5817 
5818 QualType ASTContext::getIntPtrType() const {
5819   return getFromTargetType(Target->getIntPtrType());
5820 }
5821 
5822 QualType ASTContext::getUIntPtrType() const {
5823   return getCorrespondingUnsignedType(getIntPtrType());
5824 }
5825 
5826 /// getPointerDiffType - Return the unique type for "ptrdiff_t" (C99 7.17)
5827 /// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
5828 QualType ASTContext::getPointerDiffType() const {
5829   return getFromTargetType(Target->getPtrDiffType(0));
5830 }
5831 
5832 /// Return the unique unsigned counterpart of "ptrdiff_t"
5833 /// integer type. The standard (C11 7.21.6.1p7) refers to this type
5834 /// in the definition of %tu format specifier.
5835 QualType ASTContext::getUnsignedPointerDiffType() const {
5836   return getFromTargetType(Target->getUnsignedPtrDiffType(0));
5837 }
5838 
5839 /// Return the unique type for "pid_t" defined in
5840 /// <sys/types.h>. We need this to compute the correct type for vfork().
5841 QualType ASTContext::getProcessIDType() const {
5842   return getFromTargetType(Target->getProcessIDType());
5843 }
5844 
5845 //===----------------------------------------------------------------------===//
5846 //                              Type Operators
5847 //===----------------------------------------------------------------------===//
5848 
5849 CanQualType ASTContext::getCanonicalParamType(QualType T) const {
5850   // Push qualifiers into arrays, and then discard any remaining
5851   // qualifiers.
5852   T = getCanonicalType(T);
5853   T = getVariableArrayDecayedType(T);
5854   const Type *Ty = T.getTypePtr();
5855   QualType Result;
5856   if (isa<ArrayType>(Ty)) {
5857     Result = getArrayDecayedType(QualType(Ty,0));
5858   } else if (isa<FunctionType>(Ty)) {
5859     Result = getPointerType(QualType(Ty, 0));
5860   } else {
5861     Result = QualType(Ty, 0);
5862   }
5863 
5864   return CanQualType::CreateUnsafe(Result);
5865 }
5866 
5867 QualType ASTContext::getUnqualifiedArrayType(QualType type,
5868                                              Qualifiers &quals) {
5869   SplitQualType splitType = type.getSplitUnqualifiedType();
5870 
5871   // FIXME: getSplitUnqualifiedType() actually walks all the way to
5872   // the unqualified desugared type and then drops it on the floor.
5873   // We then have to strip that sugar back off with
5874   // getUnqualifiedDesugaredType(), which is silly.
5875   const auto *AT =
5876       dyn_cast<ArrayType>(splitType.Ty->getUnqualifiedDesugaredType());
5877 
5878   // If we don't have an array, just use the results in splitType.
5879   if (!AT) {
5880     quals = splitType.Quals;
5881     return QualType(splitType.Ty, 0);
5882   }
5883 
5884   // Otherwise, recurse on the array's element type.
5885   QualType elementType = AT->getElementType();
5886   QualType unqualElementType = getUnqualifiedArrayType(elementType, quals);
5887 
5888   // If that didn't change the element type, AT has no qualifiers, so we
5889   // can just use the results in splitType.
5890   if (elementType == unqualElementType) {
5891     assert(quals.empty()); // from the recursive call
5892     quals = splitType.Quals;
5893     return QualType(splitType.Ty, 0);
5894   }
5895 
5896   // Otherwise, add in the qualifiers from the outermost type, then
5897   // build the type back up.
5898   quals.addConsistentQualifiers(splitType.Quals);
5899 
5900   if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) {
5901     return getConstantArrayType(unqualElementType, CAT->getSize(),
5902                                 CAT->getSizeExpr(), CAT->getSizeModifier(), 0);
5903   }
5904 
5905   if (const auto *IAT = dyn_cast<IncompleteArrayType>(AT)) {
5906     return getIncompleteArrayType(unqualElementType, IAT->getSizeModifier(), 0);
5907   }
5908 
5909   if (const auto *VAT = dyn_cast<VariableArrayType>(AT)) {
5910     return getVariableArrayType(unqualElementType,
5911                                 VAT->getSizeExpr(),
5912                                 VAT->getSizeModifier(),
5913                                 VAT->getIndexTypeCVRQualifiers(),
5914                                 VAT->getBracketsRange());
5915   }
5916 
5917   const auto *DSAT = cast<DependentSizedArrayType>(AT);
5918   return getDependentSizedArrayType(unqualElementType, DSAT->getSizeExpr(),
5919                                     DSAT->getSizeModifier(), 0,
5920                                     SourceRange());
5921 }
5922 
5923 /// Attempt to unwrap two types that may both be array types with the same bound
5924 /// (or both be array types of unknown bound) for the purpose of comparing the
5925 /// cv-decomposition of two types per C++ [conv.qual].
5926 ///
5927 /// \param AllowPiMismatch Allow the Pi1 and Pi2 to differ as described in
5928 ///        C++20 [conv.qual], if permitted by the current language mode.
5929 void ASTContext::UnwrapSimilarArrayTypes(QualType &T1, QualType &T2,
5930                                          bool AllowPiMismatch) {
5931   while (true) {
5932     auto *AT1 = getAsArrayType(T1);
5933     if (!AT1)
5934       return;
5935 
5936     auto *AT2 = getAsArrayType(T2);
5937     if (!AT2)
5938       return;
5939 
5940     // If we don't have two array types with the same constant bound nor two
5941     // incomplete array types, we've unwrapped everything we can.
5942     // C++20 also permits one type to be a constant array type and the other
5943     // to be an incomplete array type.
5944     // FIXME: Consider also unwrapping array of unknown bound and VLA.
5945     if (auto *CAT1 = dyn_cast<ConstantArrayType>(AT1)) {
5946       auto *CAT2 = dyn_cast<ConstantArrayType>(AT2);
5947       if (!((CAT2 && CAT1->getSize() == CAT2->getSize()) ||
5948             (AllowPiMismatch && getLangOpts().CPlusPlus20 &&
5949              isa<IncompleteArrayType>(AT2))))
5950         return;
5951     } else if (isa<IncompleteArrayType>(AT1)) {
5952       if (!(isa<IncompleteArrayType>(AT2) ||
5953             (AllowPiMismatch && getLangOpts().CPlusPlus20 &&
5954              isa<ConstantArrayType>(AT2))))
5955         return;
5956     } else {
5957       return;
5958     }
5959 
5960     T1 = AT1->getElementType();
5961     T2 = AT2->getElementType();
5962   }
5963 }
5964 
5965 /// Attempt to unwrap two types that may be similar (C++ [conv.qual]).
5966 ///
5967 /// If T1 and T2 are both pointer types of the same kind, or both array types
5968 /// with the same bound, unwraps layers from T1 and T2 until a pointer type is
5969 /// unwrapped. Top-level qualifiers on T1 and T2 are ignored.
5970 ///
5971 /// This function will typically be called in a loop that successively
5972 /// "unwraps" pointer and pointer-to-member types to compare them at each
5973 /// level.
5974 ///
5975 /// \param AllowPiMismatch Allow the Pi1 and Pi2 to differ as described in
5976 ///        C++20 [conv.qual], if permitted by the current language mode.
5977 ///
5978 /// \return \c true if a pointer type was unwrapped, \c false if we reached a
5979 /// pair of types that can't be unwrapped further.
5980 bool ASTContext::UnwrapSimilarTypes(QualType &T1, QualType &T2,
5981                                     bool AllowPiMismatch) {
5982   UnwrapSimilarArrayTypes(T1, T2, AllowPiMismatch);
5983 
5984   const auto *T1PtrType = T1->getAs<PointerType>();
5985   const auto *T2PtrType = T2->getAs<PointerType>();
5986   if (T1PtrType && T2PtrType) {
5987     T1 = T1PtrType->getPointeeType();
5988     T2 = T2PtrType->getPointeeType();
5989     return true;
5990   }
5991 
5992   const auto *T1MPType = T1->getAs<MemberPointerType>();
5993   const auto *T2MPType = T2->getAs<MemberPointerType>();
5994   if (T1MPType && T2MPType &&
5995       hasSameUnqualifiedType(QualType(T1MPType->getClass(), 0),
5996                              QualType(T2MPType->getClass(), 0))) {
5997     T1 = T1MPType->getPointeeType();
5998     T2 = T2MPType->getPointeeType();
5999     return true;
6000   }
6001 
6002   if (getLangOpts().ObjC) {
6003     const auto *T1OPType = T1->getAs<ObjCObjectPointerType>();
6004     const auto *T2OPType = T2->getAs<ObjCObjectPointerType>();
6005     if (T1OPType && T2OPType) {
6006       T1 = T1OPType->getPointeeType();
6007       T2 = T2OPType->getPointeeType();
6008       return true;
6009     }
6010   }
6011 
6012   // FIXME: Block pointers, too?
6013 
6014   return false;
6015 }
6016 
6017 bool ASTContext::hasSimilarType(QualType T1, QualType T2) {
6018   while (true) {
6019     Qualifiers Quals;
6020     T1 = getUnqualifiedArrayType(T1, Quals);
6021     T2 = getUnqualifiedArrayType(T2, Quals);
6022     if (hasSameType(T1, T2))
6023       return true;
6024     if (!UnwrapSimilarTypes(T1, T2))
6025       return false;
6026   }
6027 }
6028 
6029 bool ASTContext::hasCvrSimilarType(QualType T1, QualType T2) {
6030   while (true) {
6031     Qualifiers Quals1, Quals2;
6032     T1 = getUnqualifiedArrayType(T1, Quals1);
6033     T2 = getUnqualifiedArrayType(T2, Quals2);
6034 
6035     Quals1.removeCVRQualifiers();
6036     Quals2.removeCVRQualifiers();
6037     if (Quals1 != Quals2)
6038       return false;
6039 
6040     if (hasSameType(T1, T2))
6041       return true;
6042 
6043     if (!UnwrapSimilarTypes(T1, T2, /*AllowPiMismatch*/ false))
6044       return false;
6045   }
6046 }
6047 
6048 DeclarationNameInfo
6049 ASTContext::getNameForTemplate(TemplateName Name,
6050                                SourceLocation NameLoc) const {
6051   switch (Name.getKind()) {
6052   case TemplateName::QualifiedTemplate:
6053   case TemplateName::Template:
6054     // DNInfo work in progress: CHECKME: what about DNLoc?
6055     return DeclarationNameInfo(Name.getAsTemplateDecl()->getDeclName(),
6056                                NameLoc);
6057 
6058   case TemplateName::OverloadedTemplate: {
6059     OverloadedTemplateStorage *Storage = Name.getAsOverloadedTemplate();
6060     // DNInfo work in progress: CHECKME: what about DNLoc?
6061     return DeclarationNameInfo((*Storage->begin())->getDeclName(), NameLoc);
6062   }
6063 
6064   case TemplateName::AssumedTemplate: {
6065     AssumedTemplateStorage *Storage = Name.getAsAssumedTemplateName();
6066     return DeclarationNameInfo(Storage->getDeclName(), NameLoc);
6067   }
6068 
6069   case TemplateName::DependentTemplate: {
6070     DependentTemplateName *DTN = Name.getAsDependentTemplateName();
6071     DeclarationName DName;
6072     if (DTN->isIdentifier()) {
6073       DName = DeclarationNames.getIdentifier(DTN->getIdentifier());
6074       return DeclarationNameInfo(DName, NameLoc);
6075     } else {
6076       DName = DeclarationNames.getCXXOperatorName(DTN->getOperator());
6077       // DNInfo work in progress: FIXME: source locations?
6078       DeclarationNameLoc DNLoc =
6079           DeclarationNameLoc::makeCXXOperatorNameLoc(SourceRange());
6080       return DeclarationNameInfo(DName, NameLoc, DNLoc);
6081     }
6082   }
6083 
6084   case TemplateName::SubstTemplateTemplateParm: {
6085     SubstTemplateTemplateParmStorage *subst
6086       = Name.getAsSubstTemplateTemplateParm();
6087     return DeclarationNameInfo(subst->getParameter()->getDeclName(),
6088                                NameLoc);
6089   }
6090 
6091   case TemplateName::SubstTemplateTemplateParmPack: {
6092     SubstTemplateTemplateParmPackStorage *subst
6093       = Name.getAsSubstTemplateTemplateParmPack();
6094     return DeclarationNameInfo(subst->getParameterPack()->getDeclName(),
6095                                NameLoc);
6096   }
6097   }
6098 
6099   llvm_unreachable("bad template name kind!");
6100 }
6101 
6102 TemplateName
6103 ASTContext::getCanonicalTemplateName(const TemplateName &Name) const {
6104   switch (Name.getKind()) {
6105   case TemplateName::QualifiedTemplate:
6106   case TemplateName::Template: {
6107     TemplateDecl *Template = Name.getAsTemplateDecl();
6108     if (auto *TTP  = dyn_cast<TemplateTemplateParmDecl>(Template))
6109       Template = getCanonicalTemplateTemplateParmDecl(TTP);
6110 
6111     // The canonical template name is the canonical template declaration.
6112     return TemplateName(cast<TemplateDecl>(Template->getCanonicalDecl()));
6113   }
6114 
6115   case TemplateName::OverloadedTemplate:
6116   case TemplateName::AssumedTemplate:
6117     llvm_unreachable("cannot canonicalize unresolved template");
6118 
6119   case TemplateName::DependentTemplate: {
6120     DependentTemplateName *DTN = Name.getAsDependentTemplateName();
6121     assert(DTN && "Non-dependent template names must refer to template decls.");
6122     return DTN->CanonicalTemplateName;
6123   }
6124 
6125   case TemplateName::SubstTemplateTemplateParm: {
6126     SubstTemplateTemplateParmStorage *subst
6127       = Name.getAsSubstTemplateTemplateParm();
6128     return getCanonicalTemplateName(subst->getReplacement());
6129   }
6130 
6131   case TemplateName::SubstTemplateTemplateParmPack: {
6132     SubstTemplateTemplateParmPackStorage *subst
6133                                   = Name.getAsSubstTemplateTemplateParmPack();
6134     TemplateTemplateParmDecl *canonParameter
6135       = getCanonicalTemplateTemplateParmDecl(subst->getParameterPack());
6136     TemplateArgument canonArgPack
6137       = getCanonicalTemplateArgument(subst->getArgumentPack());
6138     return getSubstTemplateTemplateParmPack(canonParameter, canonArgPack);
6139   }
6140   }
6141 
6142   llvm_unreachable("bad template name!");
6143 }
6144 
6145 bool ASTContext::hasSameTemplateName(const TemplateName &X,
6146                                      const TemplateName &Y) const {
6147   return getCanonicalTemplateName(X).getAsVoidPointer() ==
6148          getCanonicalTemplateName(Y).getAsVoidPointer();
6149 }
6150 
6151 bool ASTContext::isSameTemplateParameter(const NamedDecl *X,
6152                                          const NamedDecl *Y) {
6153   if (X->getKind() != Y->getKind())
6154     return false;
6155 
6156   if (auto *TX = dyn_cast<TemplateTypeParmDecl>(X)) {
6157     auto *TY = cast<TemplateTypeParmDecl>(Y);
6158     if (TX->isParameterPack() != TY->isParameterPack())
6159       return false;
6160     if (TX->hasTypeConstraint() != TY->hasTypeConstraint())
6161       return false;
6162     const TypeConstraint *TXTC = TX->getTypeConstraint();
6163     const TypeConstraint *TYTC = TY->getTypeConstraint();
6164     if (!TXTC != !TYTC)
6165       return false;
6166     if (TXTC && TYTC) {
6167       auto *NCX = TXTC->getNamedConcept();
6168       auto *NCY = TYTC->getNamedConcept();
6169       if (!NCX || !NCY || !isSameEntity(NCX, NCY))
6170         return false;
6171       if (TXTC->hasExplicitTemplateArgs() != TYTC->hasExplicitTemplateArgs())
6172         return false;
6173       if (TXTC->hasExplicitTemplateArgs()) {
6174         auto *TXTCArgs = TXTC->getTemplateArgsAsWritten();
6175         auto *TYTCArgs = TYTC->getTemplateArgsAsWritten();
6176         if (TXTCArgs->NumTemplateArgs != TYTCArgs->NumTemplateArgs)
6177           return false;
6178         llvm::FoldingSetNodeID XID, YID;
6179         for (auto &ArgLoc : TXTCArgs->arguments())
6180           ArgLoc.getArgument().Profile(XID, X->getASTContext());
6181         for (auto &ArgLoc : TYTCArgs->arguments())
6182           ArgLoc.getArgument().Profile(YID, Y->getASTContext());
6183         if (XID != YID)
6184           return false;
6185       }
6186     }
6187     return true;
6188   }
6189 
6190   if (auto *TX = dyn_cast<NonTypeTemplateParmDecl>(X)) {
6191     auto *TY = cast<NonTypeTemplateParmDecl>(Y);
6192     return TX->isParameterPack() == TY->isParameterPack() &&
6193            TX->getASTContext().hasSameType(TX->getType(), TY->getType());
6194   }
6195 
6196   auto *TX = cast<TemplateTemplateParmDecl>(X);
6197   auto *TY = cast<TemplateTemplateParmDecl>(Y);
6198   return TX->isParameterPack() == TY->isParameterPack() &&
6199          isSameTemplateParameterList(TX->getTemplateParameters(),
6200                                      TY->getTemplateParameters());
6201 }
6202 
6203 bool ASTContext::isSameTemplateParameterList(const TemplateParameterList *X,
6204                                              const TemplateParameterList *Y) {
6205   if (X->size() != Y->size())
6206     return false;
6207 
6208   for (unsigned I = 0, N = X->size(); I != N; ++I)
6209     if (!isSameTemplateParameter(X->getParam(I), Y->getParam(I)))
6210       return false;
6211 
6212   const Expr *XRC = X->getRequiresClause();
6213   const Expr *YRC = Y->getRequiresClause();
6214   if (!XRC != !YRC)
6215     return false;
6216   if (XRC) {
6217     llvm::FoldingSetNodeID XRCID, YRCID;
6218     XRC->Profile(XRCID, *this, /*Canonical=*/true);
6219     YRC->Profile(YRCID, *this, /*Canonical=*/true);
6220     if (XRCID != YRCID)
6221       return false;
6222   }
6223 
6224   return true;
6225 }
6226 
6227 static NamespaceDecl *getNamespace(const NestedNameSpecifier *X) {
6228   if (auto *NS = X->getAsNamespace())
6229     return NS;
6230   if (auto *NAS = X->getAsNamespaceAlias())
6231     return NAS->getNamespace();
6232   return nullptr;
6233 }
6234 
6235 static bool isSameQualifier(const NestedNameSpecifier *X,
6236                             const NestedNameSpecifier *Y) {
6237   if (auto *NSX = getNamespace(X)) {
6238     auto *NSY = getNamespace(Y);
6239     if (!NSY || NSX->getCanonicalDecl() != NSY->getCanonicalDecl())
6240       return false;
6241   } else if (X->getKind() != Y->getKind())
6242     return false;
6243 
6244   // FIXME: For namespaces and types, we're permitted to check that the entity
6245   // is named via the same tokens. We should probably do so.
6246   switch (X->getKind()) {
6247   case NestedNameSpecifier::Identifier:
6248     if (X->getAsIdentifier() != Y->getAsIdentifier())
6249       return false;
6250     break;
6251   case NestedNameSpecifier::Namespace:
6252   case NestedNameSpecifier::NamespaceAlias:
6253     // We've already checked that we named the same namespace.
6254     break;
6255   case NestedNameSpecifier::TypeSpec:
6256   case NestedNameSpecifier::TypeSpecWithTemplate:
6257     if (X->getAsType()->getCanonicalTypeInternal() !=
6258         Y->getAsType()->getCanonicalTypeInternal())
6259       return false;
6260     break;
6261   case NestedNameSpecifier::Global:
6262   case NestedNameSpecifier::Super:
6263     return true;
6264   }
6265 
6266   // Recurse into earlier portion of NNS, if any.
6267   auto *PX = X->getPrefix();
6268   auto *PY = Y->getPrefix();
6269   if (PX && PY)
6270     return isSameQualifier(PX, PY);
6271   return !PX && !PY;
6272 }
6273 
6274 /// Determine whether the attributes we can overload on are identical for A and
6275 /// B. Will ignore any overloadable attrs represented in the type of A and B.
6276 static bool hasSameOverloadableAttrs(const FunctionDecl *A,
6277                                      const FunctionDecl *B) {
6278   // Note that pass_object_size attributes are represented in the function's
6279   // ExtParameterInfo, so we don't need to check them here.
6280 
6281   llvm::FoldingSetNodeID Cand1ID, Cand2ID;
6282   auto AEnableIfAttrs = A->specific_attrs<EnableIfAttr>();
6283   auto BEnableIfAttrs = B->specific_attrs<EnableIfAttr>();
6284 
6285   for (auto Pair : zip_longest(AEnableIfAttrs, BEnableIfAttrs)) {
6286     Optional<EnableIfAttr *> Cand1A = std::get<0>(Pair);
6287     Optional<EnableIfAttr *> Cand2A = std::get<1>(Pair);
6288 
6289     // Return false if the number of enable_if attributes is different.
6290     if (!Cand1A || !Cand2A)
6291       return false;
6292 
6293     Cand1ID.clear();
6294     Cand2ID.clear();
6295 
6296     (*Cand1A)->getCond()->Profile(Cand1ID, A->getASTContext(), true);
6297     (*Cand2A)->getCond()->Profile(Cand2ID, B->getASTContext(), true);
6298 
6299     // Return false if any of the enable_if expressions of A and B are
6300     // different.
6301     if (Cand1ID != Cand2ID)
6302       return false;
6303   }
6304   return true;
6305 }
6306 
6307 bool ASTContext::isSameEntity(const NamedDecl *X, const NamedDecl *Y) {
6308   if (X == Y)
6309     return true;
6310 
6311   if (X->getDeclName() != Y->getDeclName())
6312     return false;
6313 
6314   // Must be in the same context.
6315   //
6316   // Note that we can't use DeclContext::Equals here, because the DeclContexts
6317   // could be two different declarations of the same function. (We will fix the
6318   // semantic DC to refer to the primary definition after merging.)
6319   if (!declaresSameEntity(cast<Decl>(X->getDeclContext()->getRedeclContext()),
6320                           cast<Decl>(Y->getDeclContext()->getRedeclContext())))
6321     return false;
6322 
6323   // Two typedefs refer to the same entity if they have the same underlying
6324   // type.
6325   if (const auto *TypedefX = dyn_cast<TypedefNameDecl>(X))
6326     if (const auto *TypedefY = dyn_cast<TypedefNameDecl>(Y))
6327       return hasSameType(TypedefX->getUnderlyingType(),
6328                          TypedefY->getUnderlyingType());
6329 
6330   // Must have the same kind.
6331   if (X->getKind() != Y->getKind())
6332     return false;
6333 
6334   // Objective-C classes and protocols with the same name always match.
6335   if (isa<ObjCInterfaceDecl>(X) || isa<ObjCProtocolDecl>(X))
6336     return true;
6337 
6338   if (isa<ClassTemplateSpecializationDecl>(X)) {
6339     // No need to handle these here: we merge them when adding them to the
6340     // template.
6341     return false;
6342   }
6343 
6344   // Compatible tags match.
6345   if (const auto *TagX = dyn_cast<TagDecl>(X)) {
6346     const auto *TagY = cast<TagDecl>(Y);
6347     return (TagX->getTagKind() == TagY->getTagKind()) ||
6348            ((TagX->getTagKind() == TTK_Struct ||
6349              TagX->getTagKind() == TTK_Class ||
6350              TagX->getTagKind() == TTK_Interface) &&
6351             (TagY->getTagKind() == TTK_Struct ||
6352              TagY->getTagKind() == TTK_Class ||
6353              TagY->getTagKind() == TTK_Interface));
6354   }
6355 
6356   // Functions with the same type and linkage match.
6357   // FIXME: This needs to cope with merging of prototyped/non-prototyped
6358   // functions, etc.
6359   if (const auto *FuncX = dyn_cast<FunctionDecl>(X)) {
6360     const auto *FuncY = cast<FunctionDecl>(Y);
6361     if (const auto *CtorX = dyn_cast<CXXConstructorDecl>(X)) {
6362       const auto *CtorY = cast<CXXConstructorDecl>(Y);
6363       if (CtorX->getInheritedConstructor() &&
6364           !isSameEntity(CtorX->getInheritedConstructor().getConstructor(),
6365                         CtorY->getInheritedConstructor().getConstructor()))
6366         return false;
6367     }
6368 
6369     if (FuncX->isMultiVersion() != FuncY->isMultiVersion())
6370       return false;
6371 
6372     // Multiversioned functions with different feature strings are represented
6373     // as separate declarations.
6374     if (FuncX->isMultiVersion()) {
6375       const auto *TAX = FuncX->getAttr<TargetAttr>();
6376       const auto *TAY = FuncY->getAttr<TargetAttr>();
6377       assert(TAX && TAY && "Multiversion Function without target attribute");
6378 
6379       if (TAX->getFeaturesStr() != TAY->getFeaturesStr())
6380         return false;
6381     }
6382 
6383     const Expr *XRC = FuncX->getTrailingRequiresClause();
6384     const Expr *YRC = FuncY->getTrailingRequiresClause();
6385     if (!XRC != !YRC)
6386       return false;
6387     if (XRC) {
6388       llvm::FoldingSetNodeID XRCID, YRCID;
6389       XRC->Profile(XRCID, *this, /*Canonical=*/true);
6390       YRC->Profile(YRCID, *this, /*Canonical=*/true);
6391       if (XRCID != YRCID)
6392         return false;
6393     }
6394 
6395     auto GetTypeAsWritten = [](const FunctionDecl *FD) {
6396       // Map to the first declaration that we've already merged into this one.
6397       // The TSI of redeclarations might not match (due to calling conventions
6398       // being inherited onto the type but not the TSI), but the TSI type of
6399       // the first declaration of the function should match across modules.
6400       FD = FD->getCanonicalDecl();
6401       return FD->getTypeSourceInfo() ? FD->getTypeSourceInfo()->getType()
6402                                      : FD->getType();
6403     };
6404     QualType XT = GetTypeAsWritten(FuncX), YT = GetTypeAsWritten(FuncY);
6405     if (!hasSameType(XT, YT)) {
6406       // We can get functions with different types on the redecl chain in C++17
6407       // if they have differing exception specifications and at least one of
6408       // the excpetion specs is unresolved.
6409       auto *XFPT = XT->getAs<FunctionProtoType>();
6410       auto *YFPT = YT->getAs<FunctionProtoType>();
6411       if (getLangOpts().CPlusPlus17 && XFPT && YFPT &&
6412           (isUnresolvedExceptionSpec(XFPT->getExceptionSpecType()) ||
6413            isUnresolvedExceptionSpec(YFPT->getExceptionSpecType())) &&
6414           // FIXME: We could make isSameEntity const after we make
6415           // hasSameFunctionTypeIgnoringExceptionSpec const.
6416           hasSameFunctionTypeIgnoringExceptionSpec(XT, YT))
6417         return true;
6418       return false;
6419     }
6420 
6421     return FuncX->getLinkageInternal() == FuncY->getLinkageInternal() &&
6422            hasSameOverloadableAttrs(FuncX, FuncY);
6423   }
6424 
6425   // Variables with the same type and linkage match.
6426   if (const auto *VarX = dyn_cast<VarDecl>(X)) {
6427     const auto *VarY = cast<VarDecl>(Y);
6428     if (VarX->getLinkageInternal() == VarY->getLinkageInternal()) {
6429       if (hasSameType(VarX->getType(), VarY->getType()))
6430         return true;
6431 
6432       // We can get decls with different types on the redecl chain. Eg.
6433       // template <typename T> struct S { static T Var[]; }; // #1
6434       // template <typename T> T S<T>::Var[sizeof(T)]; // #2
6435       // Only? happens when completing an incomplete array type. In this case
6436       // when comparing #1 and #2 we should go through their element type.
6437       const ArrayType *VarXTy = getAsArrayType(VarX->getType());
6438       const ArrayType *VarYTy = getAsArrayType(VarY->getType());
6439       if (!VarXTy || !VarYTy)
6440         return false;
6441       if (VarXTy->isIncompleteArrayType() || VarYTy->isIncompleteArrayType())
6442         return hasSameType(VarXTy->getElementType(), VarYTy->getElementType());
6443     }
6444     return false;
6445   }
6446 
6447   // Namespaces with the same name and inlinedness match.
6448   if (const auto *NamespaceX = dyn_cast<NamespaceDecl>(X)) {
6449     const auto *NamespaceY = cast<NamespaceDecl>(Y);
6450     return NamespaceX->isInline() == NamespaceY->isInline();
6451   }
6452 
6453   // Identical template names and kinds match if their template parameter lists
6454   // and patterns match.
6455   if (const auto *TemplateX = dyn_cast<TemplateDecl>(X)) {
6456     const auto *TemplateY = cast<TemplateDecl>(Y);
6457     return isSameEntity(TemplateX->getTemplatedDecl(),
6458                         TemplateY->getTemplatedDecl()) &&
6459            isSameTemplateParameterList(TemplateX->getTemplateParameters(),
6460                                        TemplateY->getTemplateParameters());
6461   }
6462 
6463   // Fields with the same name and the same type match.
6464   if (const auto *FDX = dyn_cast<FieldDecl>(X)) {
6465     const auto *FDY = cast<FieldDecl>(Y);
6466     // FIXME: Also check the bitwidth is odr-equivalent, if any.
6467     return hasSameType(FDX->getType(), FDY->getType());
6468   }
6469 
6470   // Indirect fields with the same target field match.
6471   if (const auto *IFDX = dyn_cast<IndirectFieldDecl>(X)) {
6472     const auto *IFDY = cast<IndirectFieldDecl>(Y);
6473     return IFDX->getAnonField()->getCanonicalDecl() ==
6474            IFDY->getAnonField()->getCanonicalDecl();
6475   }
6476 
6477   // Enumerators with the same name match.
6478   if (isa<EnumConstantDecl>(X))
6479     // FIXME: Also check the value is odr-equivalent.
6480     return true;
6481 
6482   // Using shadow declarations with the same target match.
6483   if (const auto *USX = dyn_cast<UsingShadowDecl>(X)) {
6484     const auto *USY = cast<UsingShadowDecl>(Y);
6485     return USX->getTargetDecl() == USY->getTargetDecl();
6486   }
6487 
6488   // Using declarations with the same qualifier match. (We already know that
6489   // the name matches.)
6490   if (const auto *UX = dyn_cast<UsingDecl>(X)) {
6491     const auto *UY = cast<UsingDecl>(Y);
6492     return isSameQualifier(UX->getQualifier(), UY->getQualifier()) &&
6493            UX->hasTypename() == UY->hasTypename() &&
6494            UX->isAccessDeclaration() == UY->isAccessDeclaration();
6495   }
6496   if (const auto *UX = dyn_cast<UnresolvedUsingValueDecl>(X)) {
6497     const auto *UY = cast<UnresolvedUsingValueDecl>(Y);
6498     return isSameQualifier(UX->getQualifier(), UY->getQualifier()) &&
6499            UX->isAccessDeclaration() == UY->isAccessDeclaration();
6500   }
6501   if (const auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X)) {
6502     return isSameQualifier(
6503         UX->getQualifier(),
6504         cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier());
6505   }
6506 
6507   // Using-pack declarations are only created by instantiation, and match if
6508   // they're instantiated from matching UnresolvedUsing...Decls.
6509   if (const auto *UX = dyn_cast<UsingPackDecl>(X)) {
6510     return declaresSameEntity(
6511         UX->getInstantiatedFromUsingDecl(),
6512         cast<UsingPackDecl>(Y)->getInstantiatedFromUsingDecl());
6513   }
6514 
6515   // Namespace alias definitions with the same target match.
6516   if (const auto *NAX = dyn_cast<NamespaceAliasDecl>(X)) {
6517     const auto *NAY = cast<NamespaceAliasDecl>(Y);
6518     return NAX->getNamespace()->Equals(NAY->getNamespace());
6519   }
6520 
6521   return false;
6522 }
6523 
6524 TemplateArgument
6525 ASTContext::getCanonicalTemplateArgument(const TemplateArgument &Arg) const {
6526   switch (Arg.getKind()) {
6527     case TemplateArgument::Null:
6528       return Arg;
6529 
6530     case TemplateArgument::Expression:
6531       return Arg;
6532 
6533     case TemplateArgument::Declaration: {
6534       auto *D = cast<ValueDecl>(Arg.getAsDecl()->getCanonicalDecl());
6535       return TemplateArgument(D, Arg.getParamTypeForDecl());
6536     }
6537 
6538     case TemplateArgument::NullPtr:
6539       return TemplateArgument(getCanonicalType(Arg.getNullPtrType()),
6540                               /*isNullPtr*/true);
6541 
6542     case TemplateArgument::Template:
6543       return TemplateArgument(getCanonicalTemplateName(Arg.getAsTemplate()));
6544 
6545     case TemplateArgument::TemplateExpansion:
6546       return TemplateArgument(getCanonicalTemplateName(
6547                                          Arg.getAsTemplateOrTemplatePattern()),
6548                               Arg.getNumTemplateExpansions());
6549 
6550     case TemplateArgument::Integral:
6551       return TemplateArgument(Arg, getCanonicalType(Arg.getIntegralType()));
6552 
6553     case TemplateArgument::Type:
6554       return TemplateArgument(getCanonicalType(Arg.getAsType()));
6555 
6556     case TemplateArgument::Pack: {
6557       if (Arg.pack_size() == 0)
6558         return Arg;
6559 
6560       auto *CanonArgs = new (*this) TemplateArgument[Arg.pack_size()];
6561       unsigned Idx = 0;
6562       for (TemplateArgument::pack_iterator A = Arg.pack_begin(),
6563                                         AEnd = Arg.pack_end();
6564            A != AEnd; (void)++A, ++Idx)
6565         CanonArgs[Idx] = getCanonicalTemplateArgument(*A);
6566 
6567       return TemplateArgument(llvm::makeArrayRef(CanonArgs, Arg.pack_size()));
6568     }
6569   }
6570 
6571   // Silence GCC warning
6572   llvm_unreachable("Unhandled template argument kind");
6573 }
6574 
6575 NestedNameSpecifier *
6576 ASTContext::getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) const {
6577   if (!NNS)
6578     return nullptr;
6579 
6580   switch (NNS->getKind()) {
6581   case NestedNameSpecifier::Identifier:
6582     // Canonicalize the prefix but keep the identifier the same.
6583     return NestedNameSpecifier::Create(*this,
6584                          getCanonicalNestedNameSpecifier(NNS->getPrefix()),
6585                                        NNS->getAsIdentifier());
6586 
6587   case NestedNameSpecifier::Namespace:
6588     // A namespace is canonical; build a nested-name-specifier with
6589     // this namespace and no prefix.
6590     return NestedNameSpecifier::Create(*this, nullptr,
6591                                  NNS->getAsNamespace()->getOriginalNamespace());
6592 
6593   case NestedNameSpecifier::NamespaceAlias:
6594     // A namespace is canonical; build a nested-name-specifier with
6595     // this namespace and no prefix.
6596     return NestedNameSpecifier::Create(*this, nullptr,
6597                                     NNS->getAsNamespaceAlias()->getNamespace()
6598                                                       ->getOriginalNamespace());
6599 
6600   // The difference between TypeSpec and TypeSpecWithTemplate is that the
6601   // latter will have the 'template' keyword when printed.
6602   case NestedNameSpecifier::TypeSpec:
6603   case NestedNameSpecifier::TypeSpecWithTemplate: {
6604     const Type *T = getCanonicalType(NNS->getAsType());
6605 
6606     // If we have some kind of dependent-named type (e.g., "typename T::type"),
6607     // break it apart into its prefix and identifier, then reconsititute those
6608     // as the canonical nested-name-specifier. This is required to canonicalize
6609     // a dependent nested-name-specifier involving typedefs of dependent-name
6610     // types, e.g.,
6611     //   typedef typename T::type T1;
6612     //   typedef typename T1::type T2;
6613     if (const auto *DNT = T->getAs<DependentNameType>())
6614       return NestedNameSpecifier::Create(
6615           *this, DNT->getQualifier(),
6616           const_cast<IdentifierInfo *>(DNT->getIdentifier()));
6617     if (const auto *DTST = T->getAs<DependentTemplateSpecializationType>())
6618       return NestedNameSpecifier::Create(*this, DTST->getQualifier(), true,
6619                                          const_cast<Type *>(T));
6620 
6621     // TODO: Set 'Template' parameter to true for other template types.
6622     return NestedNameSpecifier::Create(*this, nullptr, false,
6623                                        const_cast<Type *>(T));
6624   }
6625 
6626   case NestedNameSpecifier::Global:
6627   case NestedNameSpecifier::Super:
6628     // The global specifier and __super specifer are canonical and unique.
6629     return NNS;
6630   }
6631 
6632   llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
6633 }
6634 
6635 const ArrayType *ASTContext::getAsArrayType(QualType T) const {
6636   // Handle the non-qualified case efficiently.
6637   if (!T.hasLocalQualifiers()) {
6638     // Handle the common positive case fast.
6639     if (const auto *AT = dyn_cast<ArrayType>(T))
6640       return AT;
6641   }
6642 
6643   // Handle the common negative case fast.
6644   if (!isa<ArrayType>(T.getCanonicalType()))
6645     return nullptr;
6646 
6647   // Apply any qualifiers from the array type to the element type.  This
6648   // implements C99 6.7.3p8: "If the specification of an array type includes
6649   // any type qualifiers, the element type is so qualified, not the array type."
6650 
6651   // If we get here, we either have type qualifiers on the type, or we have
6652   // sugar such as a typedef in the way.  If we have type qualifiers on the type
6653   // we must propagate them down into the element type.
6654 
6655   SplitQualType split = T.getSplitDesugaredType();
6656   Qualifiers qs = split.Quals;
6657 
6658   // If we have a simple case, just return now.
6659   const auto *ATy = dyn_cast<ArrayType>(split.Ty);
6660   if (!ATy || qs.empty())
6661     return ATy;
6662 
6663   // Otherwise, we have an array and we have qualifiers on it.  Push the
6664   // qualifiers into the array element type and return a new array type.
6665   QualType NewEltTy = getQualifiedType(ATy->getElementType(), qs);
6666 
6667   if (const auto *CAT = dyn_cast<ConstantArrayType>(ATy))
6668     return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
6669                                                 CAT->getSizeExpr(),
6670                                                 CAT->getSizeModifier(),
6671                                            CAT->getIndexTypeCVRQualifiers()));
6672   if (const auto *IAT = dyn_cast<IncompleteArrayType>(ATy))
6673     return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
6674                                                   IAT->getSizeModifier(),
6675                                            IAT->getIndexTypeCVRQualifiers()));
6676 
6677   if (const auto *DSAT = dyn_cast<DependentSizedArrayType>(ATy))
6678     return cast<ArrayType>(
6679                      getDependentSizedArrayType(NewEltTy,
6680                                                 DSAT->getSizeExpr(),
6681                                                 DSAT->getSizeModifier(),
6682                                               DSAT->getIndexTypeCVRQualifiers(),
6683                                                 DSAT->getBracketsRange()));
6684 
6685   const auto *VAT = cast<VariableArrayType>(ATy);
6686   return cast<ArrayType>(getVariableArrayType(NewEltTy,
6687                                               VAT->getSizeExpr(),
6688                                               VAT->getSizeModifier(),
6689                                               VAT->getIndexTypeCVRQualifiers(),
6690                                               VAT->getBracketsRange()));
6691 }
6692 
6693 QualType ASTContext::getAdjustedParameterType(QualType T) const {
6694   if (T->isArrayType() || T->isFunctionType())
6695     return getDecayedType(T);
6696   return T;
6697 }
6698 
6699 QualType ASTContext::getSignatureParameterType(QualType T) const {
6700   T = getVariableArrayDecayedType(T);
6701   T = getAdjustedParameterType(T);
6702   return T.getUnqualifiedType();
6703 }
6704 
6705 QualType ASTContext::getExceptionObjectType(QualType T) const {
6706   // C++ [except.throw]p3:
6707   //   A throw-expression initializes a temporary object, called the exception
6708   //   object, the type of which is determined by removing any top-level
6709   //   cv-qualifiers from the static type of the operand of throw and adjusting
6710   //   the type from "array of T" or "function returning T" to "pointer to T"
6711   //   or "pointer to function returning T", [...]
6712   T = getVariableArrayDecayedType(T);
6713   if (T->isArrayType() || T->isFunctionType())
6714     T = getDecayedType(T);
6715   return T.getUnqualifiedType();
6716 }
6717 
6718 /// getArrayDecayedType - Return the properly qualified result of decaying the
6719 /// specified array type to a pointer.  This operation is non-trivial when
6720 /// handling typedefs etc.  The canonical type of "T" must be an array type,
6721 /// this returns a pointer to a properly qualified element of the array.
6722 ///
6723 /// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
6724 QualType ASTContext::getArrayDecayedType(QualType Ty) const {
6725   // Get the element type with 'getAsArrayType' so that we don't lose any
6726   // typedefs in the element type of the array.  This also handles propagation
6727   // of type qualifiers from the array type into the element type if present
6728   // (C99 6.7.3p8).
6729   const ArrayType *PrettyArrayType = getAsArrayType(Ty);
6730   assert(PrettyArrayType && "Not an array type!");
6731 
6732   QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
6733 
6734   // int x[restrict 4] ->  int *restrict
6735   QualType Result = getQualifiedType(PtrTy,
6736                                      PrettyArrayType->getIndexTypeQualifiers());
6737 
6738   // int x[_Nullable] -> int * _Nullable
6739   if (auto Nullability = Ty->getNullability(*this)) {
6740     Result = const_cast<ASTContext *>(this)->getAttributedType(
6741         AttributedType::getNullabilityAttrKind(*Nullability), Result, Result);
6742   }
6743   return Result;
6744 }
6745 
6746 QualType ASTContext::getBaseElementType(const ArrayType *array) const {
6747   return getBaseElementType(array->getElementType());
6748 }
6749 
6750 QualType ASTContext::getBaseElementType(QualType type) const {
6751   Qualifiers qs;
6752   while (true) {
6753     SplitQualType split = type.getSplitDesugaredType();
6754     const ArrayType *array = split.Ty->getAsArrayTypeUnsafe();
6755     if (!array) break;
6756 
6757     type = array->getElementType();
6758     qs.addConsistentQualifiers(split.Quals);
6759   }
6760 
6761   return getQualifiedType(type, qs);
6762 }
6763 
6764 /// getConstantArrayElementCount - Returns number of constant array elements.
6765 uint64_t
6766 ASTContext::getConstantArrayElementCount(const ConstantArrayType *CA)  const {
6767   uint64_t ElementCount = 1;
6768   do {
6769     ElementCount *= CA->getSize().getZExtValue();
6770     CA = dyn_cast_or_null<ConstantArrayType>(
6771       CA->getElementType()->getAsArrayTypeUnsafe());
6772   } while (CA);
6773   return ElementCount;
6774 }
6775 
6776 /// getFloatingRank - Return a relative rank for floating point types.
6777 /// This routine will assert if passed a built-in type that isn't a float.
6778 static FloatingRank getFloatingRank(QualType T) {
6779   if (const auto *CT = T->getAs<ComplexType>())
6780     return getFloatingRank(CT->getElementType());
6781 
6782   switch (T->castAs<BuiltinType>()->getKind()) {
6783   default: llvm_unreachable("getFloatingRank(): not a floating type");
6784   case BuiltinType::Float16:    return Float16Rank;
6785   case BuiltinType::Half:       return HalfRank;
6786   case BuiltinType::Float:      return FloatRank;
6787   case BuiltinType::Double:     return DoubleRank;
6788   case BuiltinType::LongDouble: return LongDoubleRank;
6789   case BuiltinType::Float128:   return Float128Rank;
6790   case BuiltinType::BFloat16:   return BFloat16Rank;
6791   case BuiltinType::Ibm128:     return Ibm128Rank;
6792   }
6793 }
6794 
6795 /// getFloatingTypeOfSizeWithinDomain - Returns a real floating
6796 /// point or a complex type (based on typeDomain/typeSize).
6797 /// 'typeDomain' is a real floating point or complex type.
6798 /// 'typeSize' is a real floating point or complex type.
6799 QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
6800                                                        QualType Domain) const {
6801   FloatingRank EltRank = getFloatingRank(Size);
6802   if (Domain->isComplexType()) {
6803     switch (EltRank) {
6804     case BFloat16Rank: llvm_unreachable("Complex bfloat16 is not supported");
6805     case Float16Rank:
6806     case HalfRank: llvm_unreachable("Complex half is not supported");
6807     case Ibm128Rank:     return getComplexType(Ibm128Ty);
6808     case FloatRank:      return getComplexType(FloatTy);
6809     case DoubleRank:     return getComplexType(DoubleTy);
6810     case LongDoubleRank: return getComplexType(LongDoubleTy);
6811     case Float128Rank:   return getComplexType(Float128Ty);
6812     }
6813   }
6814 
6815   assert(Domain->isRealFloatingType() && "Unknown domain!");
6816   switch (EltRank) {
6817   case Float16Rank:    return HalfTy;
6818   case BFloat16Rank:   return BFloat16Ty;
6819   case HalfRank:       return HalfTy;
6820   case FloatRank:      return FloatTy;
6821   case DoubleRank:     return DoubleTy;
6822   case LongDoubleRank: return LongDoubleTy;
6823   case Float128Rank:   return Float128Ty;
6824   case Ibm128Rank:
6825     return Ibm128Ty;
6826   }
6827   llvm_unreachable("getFloatingRank(): illegal value for rank");
6828 }
6829 
6830 /// getFloatingTypeOrder - Compare the rank of the two specified floating
6831 /// point types, ignoring the domain of the type (i.e. 'double' ==
6832 /// '_Complex double').  If LHS > RHS, return 1.  If LHS == RHS, return 0. If
6833 /// LHS < RHS, return -1.
6834 int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) const {
6835   FloatingRank LHSR = getFloatingRank(LHS);
6836   FloatingRank RHSR = getFloatingRank(RHS);
6837 
6838   if (LHSR == RHSR)
6839     return 0;
6840   if (LHSR > RHSR)
6841     return 1;
6842   return -1;
6843 }
6844 
6845 int ASTContext::getFloatingTypeSemanticOrder(QualType LHS, QualType RHS) const {
6846   if (&getFloatTypeSemantics(LHS) == &getFloatTypeSemantics(RHS))
6847     return 0;
6848   return getFloatingTypeOrder(LHS, RHS);
6849 }
6850 
6851 /// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
6852 /// routine will assert if passed a built-in type that isn't an integer or enum,
6853 /// or if it is not canonicalized.
6854 unsigned ASTContext::getIntegerRank(const Type *T) const {
6855   assert(T->isCanonicalUnqualified() && "T should be canonicalized");
6856 
6857   // Results in this 'losing' to any type of the same size, but winning if
6858   // larger.
6859   if (const auto *EIT = dyn_cast<BitIntType>(T))
6860     return 0 + (EIT->getNumBits() << 3);
6861 
6862   switch (cast<BuiltinType>(T)->getKind()) {
6863   default: llvm_unreachable("getIntegerRank(): not a built-in integer");
6864   case BuiltinType::Bool:
6865     return 1 + (getIntWidth(BoolTy) << 3);
6866   case BuiltinType::Char_S:
6867   case BuiltinType::Char_U:
6868   case BuiltinType::SChar:
6869   case BuiltinType::UChar:
6870     return 2 + (getIntWidth(CharTy) << 3);
6871   case BuiltinType::Short:
6872   case BuiltinType::UShort:
6873     return 3 + (getIntWidth(ShortTy) << 3);
6874   case BuiltinType::Int:
6875   case BuiltinType::UInt:
6876     return 4 + (getIntWidth(IntTy) << 3);
6877   case BuiltinType::Long:
6878   case BuiltinType::ULong:
6879     return 5 + (getIntWidth(LongTy) << 3);
6880   case BuiltinType::LongLong:
6881   case BuiltinType::ULongLong:
6882     return 6 + (getIntWidth(LongLongTy) << 3);
6883   case BuiltinType::Int128:
6884   case BuiltinType::UInt128:
6885     return 7 + (getIntWidth(Int128Ty) << 3);
6886   }
6887 }
6888 
6889 /// Whether this is a promotable bitfield reference according
6890 /// to C99 6.3.1.1p2, bullet 2 (and GCC extensions).
6891 ///
6892 /// \returns the type this bit-field will promote to, or NULL if no
6893 /// promotion occurs.
6894 QualType ASTContext::isPromotableBitField(Expr *E) const {
6895   if (E->isTypeDependent() || E->isValueDependent())
6896     return {};
6897 
6898   // C++ [conv.prom]p5:
6899   //    If the bit-field has an enumerated type, it is treated as any other
6900   //    value of that type for promotion purposes.
6901   if (getLangOpts().CPlusPlus && E->getType()->isEnumeralType())
6902     return {};
6903 
6904   // FIXME: We should not do this unless E->refersToBitField() is true. This
6905   // matters in C where getSourceBitField() will find bit-fields for various
6906   // cases where the source expression is not a bit-field designator.
6907 
6908   FieldDecl *Field = E->getSourceBitField(); // FIXME: conditional bit-fields?
6909   if (!Field)
6910     return {};
6911 
6912   QualType FT = Field->getType();
6913 
6914   uint64_t BitWidth = Field->getBitWidthValue(*this);
6915   uint64_t IntSize = getTypeSize(IntTy);
6916   // C++ [conv.prom]p5:
6917   //   A prvalue for an integral bit-field can be converted to a prvalue of type
6918   //   int if int can represent all the values of the bit-field; otherwise, it
6919   //   can be converted to unsigned int if unsigned int can represent all the
6920   //   values of the bit-field. If the bit-field is larger yet, no integral
6921   //   promotion applies to it.
6922   // C11 6.3.1.1/2:
6923   //   [For a bit-field of type _Bool, int, signed int, or unsigned int:]
6924   //   If an int can represent all values of the original type (as restricted by
6925   //   the width, for a bit-field), the value is converted to an int; otherwise,
6926   //   it is converted to an unsigned int.
6927   //
6928   // FIXME: C does not permit promotion of a 'long : 3' bitfield to int.
6929   //        We perform that promotion here to match GCC and C++.
6930   // FIXME: C does not permit promotion of an enum bit-field whose rank is
6931   //        greater than that of 'int'. We perform that promotion to match GCC.
6932   if (BitWidth < IntSize)
6933     return IntTy;
6934 
6935   if (BitWidth == IntSize)
6936     return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
6937 
6938   // Bit-fields wider than int are not subject to promotions, and therefore act
6939   // like the base type. GCC has some weird bugs in this area that we
6940   // deliberately do not follow (GCC follows a pre-standard resolution to
6941   // C's DR315 which treats bit-width as being part of the type, and this leaks
6942   // into their semantics in some cases).
6943   return {};
6944 }
6945 
6946 /// getPromotedIntegerType - Returns the type that Promotable will
6947 /// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable
6948 /// integer type.
6949 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const {
6950   assert(!Promotable.isNull());
6951   assert(Promotable->isPromotableIntegerType());
6952   if (const auto *ET = Promotable->getAs<EnumType>())
6953     return ET->getDecl()->getPromotionType();
6954 
6955   if (const auto *BT = Promotable->getAs<BuiltinType>()) {
6956     // C++ [conv.prom]: A prvalue of type char16_t, char32_t, or wchar_t
6957     // (3.9.1) can be converted to a prvalue of the first of the following
6958     // types that can represent all the values of its underlying type:
6959     // int, unsigned int, long int, unsigned long int, long long int, or
6960     // unsigned long long int [...]
6961     // FIXME: Is there some better way to compute this?
6962     if (BT->getKind() == BuiltinType::WChar_S ||
6963         BT->getKind() == BuiltinType::WChar_U ||
6964         BT->getKind() == BuiltinType::Char8 ||
6965         BT->getKind() == BuiltinType::Char16 ||
6966         BT->getKind() == BuiltinType::Char32) {
6967       bool FromIsSigned = BT->getKind() == BuiltinType::WChar_S;
6968       uint64_t FromSize = getTypeSize(BT);
6969       QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy,
6970                                   LongLongTy, UnsignedLongLongTy };
6971       for (size_t Idx = 0; Idx < llvm::array_lengthof(PromoteTypes); ++Idx) {
6972         uint64_t ToSize = getTypeSize(PromoteTypes[Idx]);
6973         if (FromSize < ToSize ||
6974             (FromSize == ToSize &&
6975              FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType()))
6976           return PromoteTypes[Idx];
6977       }
6978       llvm_unreachable("char type should fit into long long");
6979     }
6980   }
6981 
6982   // At this point, we should have a signed or unsigned integer type.
6983   if (Promotable->isSignedIntegerType())
6984     return IntTy;
6985   uint64_t PromotableSize = getIntWidth(Promotable);
6986   uint64_t IntSize = getIntWidth(IntTy);
6987   assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize);
6988   return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy;
6989 }
6990 
6991 /// Recurses in pointer/array types until it finds an objc retainable
6992 /// type and returns its ownership.
6993 Qualifiers::ObjCLifetime ASTContext::getInnerObjCOwnership(QualType T) const {
6994   while (!T.isNull()) {
6995     if (T.getObjCLifetime() != Qualifiers::OCL_None)
6996       return T.getObjCLifetime();
6997     if (T->isArrayType())
6998       T = getBaseElementType(T);
6999     else if (const auto *PT = T->getAs<PointerType>())
7000       T = PT->getPointeeType();
7001     else if (const auto *RT = T->getAs<ReferenceType>())
7002       T = RT->getPointeeType();
7003     else
7004       break;
7005   }
7006 
7007   return Qualifiers::OCL_None;
7008 }
7009 
7010 static const Type *getIntegerTypeForEnum(const EnumType *ET) {
7011   // Incomplete enum types are not treated as integer types.
7012   // FIXME: In C++, enum types are never integer types.
7013   if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped())
7014     return ET->getDecl()->getIntegerType().getTypePtr();
7015   return nullptr;
7016 }
7017 
7018 /// getIntegerTypeOrder - Returns the highest ranked integer type:
7019 /// C99 6.3.1.8p1.  If LHS > RHS, return 1.  If LHS == RHS, return 0. If
7020 /// LHS < RHS, return -1.
7021 int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) const {
7022   const Type *LHSC = getCanonicalType(LHS).getTypePtr();
7023   const Type *RHSC = getCanonicalType(RHS).getTypePtr();
7024 
7025   // Unwrap enums to their underlying type.
7026   if (const auto *ET = dyn_cast<EnumType>(LHSC))
7027     LHSC = getIntegerTypeForEnum(ET);
7028   if (const auto *ET = dyn_cast<EnumType>(RHSC))
7029     RHSC = getIntegerTypeForEnum(ET);
7030 
7031   if (LHSC == RHSC) return 0;
7032 
7033   bool LHSUnsigned = LHSC->isUnsignedIntegerType();
7034   bool RHSUnsigned = RHSC->isUnsignedIntegerType();
7035 
7036   unsigned LHSRank = getIntegerRank(LHSC);
7037   unsigned RHSRank = getIntegerRank(RHSC);
7038 
7039   if (LHSUnsigned == RHSUnsigned) {  // Both signed or both unsigned.
7040     if (LHSRank == RHSRank) return 0;
7041     return LHSRank > RHSRank ? 1 : -1;
7042   }
7043 
7044   // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
7045   if (LHSUnsigned) {
7046     // If the unsigned [LHS] type is larger, return it.
7047     if (LHSRank >= RHSRank)
7048       return 1;
7049 
7050     // If the signed type can represent all values of the unsigned type, it
7051     // wins.  Because we are dealing with 2's complement and types that are
7052     // powers of two larger than each other, this is always safe.
7053     return -1;
7054   }
7055 
7056   // If the unsigned [RHS] type is larger, return it.
7057   if (RHSRank >= LHSRank)
7058     return -1;
7059 
7060   // If the signed type can represent all values of the unsigned type, it
7061   // wins.  Because we are dealing with 2's complement and types that are
7062   // powers of two larger than each other, this is always safe.
7063   return 1;
7064 }
7065 
7066 TypedefDecl *ASTContext::getCFConstantStringDecl() const {
7067   if (CFConstantStringTypeDecl)
7068     return CFConstantStringTypeDecl;
7069 
7070   assert(!CFConstantStringTagDecl &&
7071          "tag and typedef should be initialized together");
7072   CFConstantStringTagDecl = buildImplicitRecord("__NSConstantString_tag");
7073   CFConstantStringTagDecl->startDefinition();
7074 
7075   struct {
7076     QualType Type;
7077     const char *Name;
7078   } Fields[5];
7079   unsigned Count = 0;
7080 
7081   /// Objective-C ABI
7082   ///
7083   ///    typedef struct __NSConstantString_tag {
7084   ///      const int *isa;
7085   ///      int flags;
7086   ///      const char *str;
7087   ///      long length;
7088   ///    } __NSConstantString;
7089   ///
7090   /// Swift ABI (4.1, 4.2)
7091   ///
7092   ///    typedef struct __NSConstantString_tag {
7093   ///      uintptr_t _cfisa;
7094   ///      uintptr_t _swift_rc;
7095   ///      _Atomic(uint64_t) _cfinfoa;
7096   ///      const char *_ptr;
7097   ///      uint32_t _length;
7098   ///    } __NSConstantString;
7099   ///
7100   /// Swift ABI (5.0)
7101   ///
7102   ///    typedef struct __NSConstantString_tag {
7103   ///      uintptr_t _cfisa;
7104   ///      uintptr_t _swift_rc;
7105   ///      _Atomic(uint64_t) _cfinfoa;
7106   ///      const char *_ptr;
7107   ///      uintptr_t _length;
7108   ///    } __NSConstantString;
7109 
7110   const auto CFRuntime = getLangOpts().CFRuntime;
7111   if (static_cast<unsigned>(CFRuntime) <
7112       static_cast<unsigned>(LangOptions::CoreFoundationABI::Swift)) {
7113     Fields[Count++] = { getPointerType(IntTy.withConst()), "isa" };
7114     Fields[Count++] = { IntTy, "flags" };
7115     Fields[Count++] = { getPointerType(CharTy.withConst()), "str" };
7116     Fields[Count++] = { LongTy, "length" };
7117   } else {
7118     Fields[Count++] = { getUIntPtrType(), "_cfisa" };
7119     Fields[Count++] = { getUIntPtrType(), "_swift_rc" };
7120     Fields[Count++] = { getFromTargetType(Target->getUInt64Type()), "_swift_rc" };
7121     Fields[Count++] = { getPointerType(CharTy.withConst()), "_ptr" };
7122     if (CFRuntime == LangOptions::CoreFoundationABI::Swift4_1 ||
7123         CFRuntime == LangOptions::CoreFoundationABI::Swift4_2)
7124       Fields[Count++] = { IntTy, "_ptr" };
7125     else
7126       Fields[Count++] = { getUIntPtrType(), "_ptr" };
7127   }
7128 
7129   // Create fields
7130   for (unsigned i = 0; i < Count; ++i) {
7131     FieldDecl *Field =
7132         FieldDecl::Create(*this, CFConstantStringTagDecl, SourceLocation(),
7133                           SourceLocation(), &Idents.get(Fields[i].Name),
7134                           Fields[i].Type, /*TInfo=*/nullptr,
7135                           /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit);
7136     Field->setAccess(AS_public);
7137     CFConstantStringTagDecl->addDecl(Field);
7138   }
7139 
7140   CFConstantStringTagDecl->completeDefinition();
7141   // This type is designed to be compatible with NSConstantString, but cannot
7142   // use the same name, since NSConstantString is an interface.
7143   auto tagType = getTagDeclType(CFConstantStringTagDecl);
7144   CFConstantStringTypeDecl =
7145       buildImplicitTypedef(tagType, "__NSConstantString");
7146 
7147   return CFConstantStringTypeDecl;
7148 }
7149 
7150 RecordDecl *ASTContext::getCFConstantStringTagDecl() const {
7151   if (!CFConstantStringTagDecl)
7152     getCFConstantStringDecl(); // Build the tag and the typedef.
7153   return CFConstantStringTagDecl;
7154 }
7155 
7156 // getCFConstantStringType - Return the type used for constant CFStrings.
7157 QualType ASTContext::getCFConstantStringType() const {
7158   return getTypedefType(getCFConstantStringDecl());
7159 }
7160 
7161 QualType ASTContext::getObjCSuperType() const {
7162   if (ObjCSuperType.isNull()) {
7163     RecordDecl *ObjCSuperTypeDecl = buildImplicitRecord("objc_super");
7164     getTranslationUnitDecl()->addDecl(ObjCSuperTypeDecl);
7165     ObjCSuperType = getTagDeclType(ObjCSuperTypeDecl);
7166   }
7167   return ObjCSuperType;
7168 }
7169 
7170 void ASTContext::setCFConstantStringType(QualType T) {
7171   const auto *TD = T->castAs<TypedefType>();
7172   CFConstantStringTypeDecl = cast<TypedefDecl>(TD->getDecl());
7173   const auto *TagType =
7174       CFConstantStringTypeDecl->getUnderlyingType()->castAs<RecordType>();
7175   CFConstantStringTagDecl = TagType->getDecl();
7176 }
7177 
7178 QualType ASTContext::getBlockDescriptorType() const {
7179   if (BlockDescriptorType)
7180     return getTagDeclType(BlockDescriptorType);
7181 
7182   RecordDecl *RD;
7183   // FIXME: Needs the FlagAppleBlock bit.
7184   RD = buildImplicitRecord("__block_descriptor");
7185   RD->startDefinition();
7186 
7187   QualType FieldTypes[] = {
7188     UnsignedLongTy,
7189     UnsignedLongTy,
7190   };
7191 
7192   static const char *const FieldNames[] = {
7193     "reserved",
7194     "Size"
7195   };
7196 
7197   for (size_t i = 0; i < 2; ++i) {
7198     FieldDecl *Field = FieldDecl::Create(
7199         *this, RD, SourceLocation(), SourceLocation(),
7200         &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr,
7201         /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit);
7202     Field->setAccess(AS_public);
7203     RD->addDecl(Field);
7204   }
7205 
7206   RD->completeDefinition();
7207 
7208   BlockDescriptorType = RD;
7209 
7210   return getTagDeclType(BlockDescriptorType);
7211 }
7212 
7213 QualType ASTContext::getBlockDescriptorExtendedType() const {
7214   if (BlockDescriptorExtendedType)
7215     return getTagDeclType(BlockDescriptorExtendedType);
7216 
7217   RecordDecl *RD;
7218   // FIXME: Needs the FlagAppleBlock bit.
7219   RD = buildImplicitRecord("__block_descriptor_withcopydispose");
7220   RD->startDefinition();
7221 
7222   QualType FieldTypes[] = {
7223     UnsignedLongTy,
7224     UnsignedLongTy,
7225     getPointerType(VoidPtrTy),
7226     getPointerType(VoidPtrTy)
7227   };
7228 
7229   static const char *const FieldNames[] = {
7230     "reserved",
7231     "Size",
7232     "CopyFuncPtr",
7233     "DestroyFuncPtr"
7234   };
7235 
7236   for (size_t i = 0; i < 4; ++i) {
7237     FieldDecl *Field = FieldDecl::Create(
7238         *this, RD, SourceLocation(), SourceLocation(),
7239         &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr,
7240         /*BitWidth=*/nullptr,
7241         /*Mutable=*/false, ICIS_NoInit);
7242     Field->setAccess(AS_public);
7243     RD->addDecl(Field);
7244   }
7245 
7246   RD->completeDefinition();
7247 
7248   BlockDescriptorExtendedType = RD;
7249   return getTagDeclType(BlockDescriptorExtendedType);
7250 }
7251 
7252 OpenCLTypeKind ASTContext::getOpenCLTypeKind(const Type *T) const {
7253   const auto *BT = dyn_cast<BuiltinType>(T);
7254 
7255   if (!BT) {
7256     if (isa<PipeType>(T))
7257       return OCLTK_Pipe;
7258 
7259     return OCLTK_Default;
7260   }
7261 
7262   switch (BT->getKind()) {
7263 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix)                   \
7264   case BuiltinType::Id:                                                        \
7265     return OCLTK_Image;
7266 #include "clang/Basic/OpenCLImageTypes.def"
7267 
7268   case BuiltinType::OCLClkEvent:
7269     return OCLTK_ClkEvent;
7270 
7271   case BuiltinType::OCLEvent:
7272     return OCLTK_Event;
7273 
7274   case BuiltinType::OCLQueue:
7275     return OCLTK_Queue;
7276 
7277   case BuiltinType::OCLReserveID:
7278     return OCLTK_ReserveID;
7279 
7280   case BuiltinType::OCLSampler:
7281     return OCLTK_Sampler;
7282 
7283   default:
7284     return OCLTK_Default;
7285   }
7286 }
7287 
7288 LangAS ASTContext::getOpenCLTypeAddrSpace(const Type *T) const {
7289   return Target->getOpenCLTypeAddrSpace(getOpenCLTypeKind(T));
7290 }
7291 
7292 /// BlockRequiresCopying - Returns true if byref variable "D" of type "Ty"
7293 /// requires copy/dispose. Note that this must match the logic
7294 /// in buildByrefHelpers.
7295 bool ASTContext::BlockRequiresCopying(QualType Ty,
7296                                       const VarDecl *D) {
7297   if (const CXXRecordDecl *record = Ty->getAsCXXRecordDecl()) {
7298     const Expr *copyExpr = getBlockVarCopyInit(D).getCopyExpr();
7299     if (!copyExpr && record->hasTrivialDestructor()) return false;
7300 
7301     return true;
7302   }
7303 
7304   // The block needs copy/destroy helpers if Ty is non-trivial to destructively
7305   // move or destroy.
7306   if (Ty.isNonTrivialToPrimitiveDestructiveMove() || Ty.isDestructedType())
7307     return true;
7308 
7309   if (!Ty->isObjCRetainableType()) return false;
7310 
7311   Qualifiers qs = Ty.getQualifiers();
7312 
7313   // If we have lifetime, that dominates.
7314   if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) {
7315     switch (lifetime) {
7316       case Qualifiers::OCL_None: llvm_unreachable("impossible");
7317 
7318       // These are just bits as far as the runtime is concerned.
7319       case Qualifiers::OCL_ExplicitNone:
7320       case Qualifiers::OCL_Autoreleasing:
7321         return false;
7322 
7323       // These cases should have been taken care of when checking the type's
7324       // non-triviality.
7325       case Qualifiers::OCL_Weak:
7326       case Qualifiers::OCL_Strong:
7327         llvm_unreachable("impossible");
7328     }
7329     llvm_unreachable("fell out of lifetime switch!");
7330   }
7331   return (Ty->isBlockPointerType() || isObjCNSObjectType(Ty) ||
7332           Ty->isObjCObjectPointerType());
7333 }
7334 
7335 bool ASTContext::getByrefLifetime(QualType Ty,
7336                               Qualifiers::ObjCLifetime &LifeTime,
7337                               bool &HasByrefExtendedLayout) const {
7338   if (!getLangOpts().ObjC ||
7339       getLangOpts().getGC() != LangOptions::NonGC)
7340     return false;
7341 
7342   HasByrefExtendedLayout = false;
7343   if (Ty->isRecordType()) {
7344     HasByrefExtendedLayout = true;
7345     LifeTime = Qualifiers::OCL_None;
7346   } else if ((LifeTime = Ty.getObjCLifetime())) {
7347     // Honor the ARC qualifiers.
7348   } else if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType()) {
7349     // The MRR rule.
7350     LifeTime = Qualifiers::OCL_ExplicitNone;
7351   } else {
7352     LifeTime = Qualifiers::OCL_None;
7353   }
7354   return true;
7355 }
7356 
7357 CanQualType ASTContext::getNSUIntegerType() const {
7358   assert(Target && "Expected target to be initialized");
7359   const llvm::Triple &T = Target->getTriple();
7360   // Windows is LLP64 rather than LP64
7361   if (T.isOSWindows() && T.isArch64Bit())
7362     return UnsignedLongLongTy;
7363   return UnsignedLongTy;
7364 }
7365 
7366 CanQualType ASTContext::getNSIntegerType() const {
7367   assert(Target && "Expected target to be initialized");
7368   const llvm::Triple &T = Target->getTriple();
7369   // Windows is LLP64 rather than LP64
7370   if (T.isOSWindows() && T.isArch64Bit())
7371     return LongLongTy;
7372   return LongTy;
7373 }
7374 
7375 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() {
7376   if (!ObjCInstanceTypeDecl)
7377     ObjCInstanceTypeDecl =
7378         buildImplicitTypedef(getObjCIdType(), "instancetype");
7379   return ObjCInstanceTypeDecl;
7380 }
7381 
7382 // This returns true if a type has been typedefed to BOOL:
7383 // typedef <type> BOOL;
7384 static bool isTypeTypedefedAsBOOL(QualType T) {
7385   if (const auto *TT = dyn_cast<TypedefType>(T))
7386     if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
7387       return II->isStr("BOOL");
7388 
7389   return false;
7390 }
7391 
7392 /// getObjCEncodingTypeSize returns size of type for objective-c encoding
7393 /// purpose.
7394 CharUnits ASTContext::getObjCEncodingTypeSize(QualType type) const {
7395   if (!type->isIncompleteArrayType() && type->isIncompleteType())
7396     return CharUnits::Zero();
7397 
7398   CharUnits sz = getTypeSizeInChars(type);
7399 
7400   // Make all integer and enum types at least as large as an int
7401   if (sz.isPositive() && type->isIntegralOrEnumerationType())
7402     sz = std::max(sz, getTypeSizeInChars(IntTy));
7403   // Treat arrays as pointers, since that's how they're passed in.
7404   else if (type->isArrayType())
7405     sz = getTypeSizeInChars(VoidPtrTy);
7406   return sz;
7407 }
7408 
7409 bool ASTContext::isMSStaticDataMemberInlineDefinition(const VarDecl *VD) const {
7410   return getTargetInfo().getCXXABI().isMicrosoft() &&
7411          VD->isStaticDataMember() &&
7412          VD->getType()->isIntegralOrEnumerationType() &&
7413          !VD->getFirstDecl()->isOutOfLine() && VD->getFirstDecl()->hasInit();
7414 }
7415 
7416 ASTContext::InlineVariableDefinitionKind
7417 ASTContext::getInlineVariableDefinitionKind(const VarDecl *VD) const {
7418   if (!VD->isInline())
7419     return InlineVariableDefinitionKind::None;
7420 
7421   // In almost all cases, it's a weak definition.
7422   auto *First = VD->getFirstDecl();
7423   if (First->isInlineSpecified() || !First->isStaticDataMember())
7424     return InlineVariableDefinitionKind::Weak;
7425 
7426   // If there's a file-context declaration in this translation unit, it's a
7427   // non-discardable definition.
7428   for (auto *D : VD->redecls())
7429     if (D->getLexicalDeclContext()->isFileContext() &&
7430         !D->isInlineSpecified() && (D->isConstexpr() || First->isConstexpr()))
7431       return InlineVariableDefinitionKind::Strong;
7432 
7433   // If we've not seen one yet, we don't know.
7434   return InlineVariableDefinitionKind::WeakUnknown;
7435 }
7436 
7437 static std::string charUnitsToString(const CharUnits &CU) {
7438   return llvm::itostr(CU.getQuantity());
7439 }
7440 
7441 /// getObjCEncodingForBlock - Return the encoded type for this block
7442 /// declaration.
7443 std::string ASTContext::getObjCEncodingForBlock(const BlockExpr *Expr) const {
7444   std::string S;
7445 
7446   const BlockDecl *Decl = Expr->getBlockDecl();
7447   QualType BlockTy =
7448       Expr->getType()->castAs<BlockPointerType>()->getPointeeType();
7449   QualType BlockReturnTy = BlockTy->castAs<FunctionType>()->getReturnType();
7450   // Encode result type.
7451   if (getLangOpts().EncodeExtendedBlockSig)
7452     getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, BlockReturnTy, S,
7453                                       true /*Extended*/);
7454   else
7455     getObjCEncodingForType(BlockReturnTy, S);
7456   // Compute size of all parameters.
7457   // Start with computing size of a pointer in number of bytes.
7458   // FIXME: There might(should) be a better way of doing this computation!
7459   CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
7460   CharUnits ParmOffset = PtrSize;
7461   for (auto PI : Decl->parameters()) {
7462     QualType PType = PI->getType();
7463     CharUnits sz = getObjCEncodingTypeSize(PType);
7464     if (sz.isZero())
7465       continue;
7466     assert(sz.isPositive() && "BlockExpr - Incomplete param type");
7467     ParmOffset += sz;
7468   }
7469   // Size of the argument frame
7470   S += charUnitsToString(ParmOffset);
7471   // Block pointer and offset.
7472   S += "@?0";
7473 
7474   // Argument types.
7475   ParmOffset = PtrSize;
7476   for (auto PVDecl : Decl->parameters()) {
7477     QualType PType = PVDecl->getOriginalType();
7478     if (const auto *AT =
7479             dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
7480       // Use array's original type only if it has known number of
7481       // elements.
7482       if (!isa<ConstantArrayType>(AT))
7483         PType = PVDecl->getType();
7484     } else if (PType->isFunctionType())
7485       PType = PVDecl->getType();
7486     if (getLangOpts().EncodeExtendedBlockSig)
7487       getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType,
7488                                       S, true /*Extended*/);
7489     else
7490       getObjCEncodingForType(PType, S);
7491     S += charUnitsToString(ParmOffset);
7492     ParmOffset += getObjCEncodingTypeSize(PType);
7493   }
7494 
7495   return S;
7496 }
7497 
7498 std::string
7499 ASTContext::getObjCEncodingForFunctionDecl(const FunctionDecl *Decl) const {
7500   std::string S;
7501   // Encode result type.
7502   getObjCEncodingForType(Decl->getReturnType(), S);
7503   CharUnits ParmOffset;
7504   // Compute size of all parameters.
7505   for (auto PI : Decl->parameters()) {
7506     QualType PType = PI->getType();
7507     CharUnits sz = getObjCEncodingTypeSize(PType);
7508     if (sz.isZero())
7509       continue;
7510 
7511     assert(sz.isPositive() &&
7512            "getObjCEncodingForFunctionDecl - Incomplete param type");
7513     ParmOffset += sz;
7514   }
7515   S += charUnitsToString(ParmOffset);
7516   ParmOffset = CharUnits::Zero();
7517 
7518   // Argument types.
7519   for (auto PVDecl : Decl->parameters()) {
7520     QualType PType = PVDecl->getOriginalType();
7521     if (const auto *AT =
7522             dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
7523       // Use array's original type only if it has known number of
7524       // elements.
7525       if (!isa<ConstantArrayType>(AT))
7526         PType = PVDecl->getType();
7527     } else if (PType->isFunctionType())
7528       PType = PVDecl->getType();
7529     getObjCEncodingForType(PType, S);
7530     S += charUnitsToString(ParmOffset);
7531     ParmOffset += getObjCEncodingTypeSize(PType);
7532   }
7533 
7534   return S;
7535 }
7536 
7537 /// getObjCEncodingForMethodParameter - Return the encoded type for a single
7538 /// method parameter or return type. If Extended, include class names and
7539 /// block object types.
7540 void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT,
7541                                                    QualType T, std::string& S,
7542                                                    bool Extended) const {
7543   // Encode type qualifier, 'in', 'inout', etc. for the parameter.
7544   getObjCEncodingForTypeQualifier(QT, S);
7545   // Encode parameter type.
7546   ObjCEncOptions Options = ObjCEncOptions()
7547                                .setExpandPointedToStructures()
7548                                .setExpandStructures()
7549                                .setIsOutermostType();
7550   if (Extended)
7551     Options.setEncodeBlockParameters().setEncodeClassNames();
7552   getObjCEncodingForTypeImpl(T, S, Options, /*Field=*/nullptr);
7553 }
7554 
7555 /// getObjCEncodingForMethodDecl - Return the encoded type for this method
7556 /// declaration.
7557 std::string ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
7558                                                      bool Extended) const {
7559   // FIXME: This is not very efficient.
7560   // Encode return type.
7561   std::string S;
7562   getObjCEncodingForMethodParameter(Decl->getObjCDeclQualifier(),
7563                                     Decl->getReturnType(), S, Extended);
7564   // Compute size of all parameters.
7565   // Start with computing size of a pointer in number of bytes.
7566   // FIXME: There might(should) be a better way of doing this computation!
7567   CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
7568   // The first two arguments (self and _cmd) are pointers; account for
7569   // their size.
7570   CharUnits ParmOffset = 2 * PtrSize;
7571   for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
7572        E = Decl->sel_param_end(); PI != E; ++PI) {
7573     QualType PType = (*PI)->getType();
7574     CharUnits sz = getObjCEncodingTypeSize(PType);
7575     if (sz.isZero())
7576       continue;
7577 
7578     assert(sz.isPositive() &&
7579            "getObjCEncodingForMethodDecl - Incomplete param type");
7580     ParmOffset += sz;
7581   }
7582   S += charUnitsToString(ParmOffset);
7583   S += "@0:";
7584   S += charUnitsToString(PtrSize);
7585 
7586   // Argument types.
7587   ParmOffset = 2 * PtrSize;
7588   for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
7589        E = Decl->sel_param_end(); PI != E; ++PI) {
7590     const ParmVarDecl *PVDecl = *PI;
7591     QualType PType = PVDecl->getOriginalType();
7592     if (const auto *AT =
7593             dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
7594       // Use array's original type only if it has known number of
7595       // elements.
7596       if (!isa<ConstantArrayType>(AT))
7597         PType = PVDecl->getType();
7598     } else if (PType->isFunctionType())
7599       PType = PVDecl->getType();
7600     getObjCEncodingForMethodParameter(PVDecl->getObjCDeclQualifier(),
7601                                       PType, S, Extended);
7602     S += charUnitsToString(ParmOffset);
7603     ParmOffset += getObjCEncodingTypeSize(PType);
7604   }
7605 
7606   return S;
7607 }
7608 
7609 ObjCPropertyImplDecl *
7610 ASTContext::getObjCPropertyImplDeclForPropertyDecl(
7611                                       const ObjCPropertyDecl *PD,
7612                                       const Decl *Container) const {
7613   if (!Container)
7614     return nullptr;
7615   if (const auto *CID = dyn_cast<ObjCCategoryImplDecl>(Container)) {
7616     for (auto *PID : CID->property_impls())
7617       if (PID->getPropertyDecl() == PD)
7618         return PID;
7619   } else {
7620     const auto *OID = cast<ObjCImplementationDecl>(Container);
7621     for (auto *PID : OID->property_impls())
7622       if (PID->getPropertyDecl() == PD)
7623         return PID;
7624   }
7625   return nullptr;
7626 }
7627 
7628 /// getObjCEncodingForPropertyDecl - Return the encoded type for this
7629 /// property declaration. If non-NULL, Container must be either an
7630 /// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
7631 /// NULL when getting encodings for protocol properties.
7632 /// Property attributes are stored as a comma-delimited C string. The simple
7633 /// attributes readonly and bycopy are encoded as single characters. The
7634 /// parametrized attributes, getter=name, setter=name, and ivar=name, are
7635 /// encoded as single characters, followed by an identifier. Property types
7636 /// are also encoded as a parametrized attribute. The characters used to encode
7637 /// these attributes are defined by the following enumeration:
7638 /// @code
7639 /// enum PropertyAttributes {
7640 /// kPropertyReadOnly = 'R',   // property is read-only.
7641 /// kPropertyBycopy = 'C',     // property is a copy of the value last assigned
7642 /// kPropertyByref = '&',  // property is a reference to the value last assigned
7643 /// kPropertyDynamic = 'D',    // property is dynamic
7644 /// kPropertyGetter = 'G',     // followed by getter selector name
7645 /// kPropertySetter = 'S',     // followed by setter selector name
7646 /// kPropertyInstanceVariable = 'V'  // followed by instance variable  name
7647 /// kPropertyType = 'T'              // followed by old-style type encoding.
7648 /// kPropertyWeak = 'W'              // 'weak' property
7649 /// kPropertyStrong = 'P'            // property GC'able
7650 /// kPropertyNonAtomic = 'N'         // property non-atomic
7651 /// };
7652 /// @endcode
7653 std::string
7654 ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
7655                                            const Decl *Container) const {
7656   // Collect information from the property implementation decl(s).
7657   bool Dynamic = false;
7658   ObjCPropertyImplDecl *SynthesizePID = nullptr;
7659 
7660   if (ObjCPropertyImplDecl *PropertyImpDecl =
7661       getObjCPropertyImplDeclForPropertyDecl(PD, Container)) {
7662     if (PropertyImpDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
7663       Dynamic = true;
7664     else
7665       SynthesizePID = PropertyImpDecl;
7666   }
7667 
7668   // FIXME: This is not very efficient.
7669   std::string S = "T";
7670 
7671   // Encode result type.
7672   // GCC has some special rules regarding encoding of properties which
7673   // closely resembles encoding of ivars.
7674   getObjCEncodingForPropertyType(PD->getType(), S);
7675 
7676   if (PD->isReadOnly()) {
7677     S += ",R";
7678     if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy)
7679       S += ",C";
7680     if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain)
7681       S += ",&";
7682     if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak)
7683       S += ",W";
7684   } else {
7685     switch (PD->getSetterKind()) {
7686     case ObjCPropertyDecl::Assign: break;
7687     case ObjCPropertyDecl::Copy:   S += ",C"; break;
7688     case ObjCPropertyDecl::Retain: S += ",&"; break;
7689     case ObjCPropertyDecl::Weak:   S += ",W"; break;
7690     }
7691   }
7692 
7693   // It really isn't clear at all what this means, since properties
7694   // are "dynamic by default".
7695   if (Dynamic)
7696     S += ",D";
7697 
7698   if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_nonatomic)
7699     S += ",N";
7700 
7701   if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) {
7702     S += ",G";
7703     S += PD->getGetterName().getAsString();
7704   }
7705 
7706   if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) {
7707     S += ",S";
7708     S += PD->getSetterName().getAsString();
7709   }
7710 
7711   if (SynthesizePID) {
7712     const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
7713     S += ",V";
7714     S += OID->getNameAsString();
7715   }
7716 
7717   // FIXME: OBJCGC: weak & strong
7718   return S;
7719 }
7720 
7721 /// getLegacyIntegralTypeEncoding -
7722 /// Another legacy compatibility encoding: 32-bit longs are encoded as
7723 /// 'l' or 'L' , but not always.  For typedefs, we need to use
7724 /// 'i' or 'I' instead if encoding a struct field, or a pointer!
7725 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
7726   if (isa<TypedefType>(PointeeTy.getTypePtr())) {
7727     if (const auto *BT = PointeeTy->getAs<BuiltinType>()) {
7728       if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
7729         PointeeTy = UnsignedIntTy;
7730       else
7731         if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
7732           PointeeTy = IntTy;
7733     }
7734   }
7735 }
7736 
7737 void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
7738                                         const FieldDecl *Field,
7739                                         QualType *NotEncodedT) const {
7740   // We follow the behavior of gcc, expanding structures which are
7741   // directly pointed to, and expanding embedded structures. Note that
7742   // these rules are sufficient to prevent recursive encoding of the
7743   // same type.
7744   getObjCEncodingForTypeImpl(T, S,
7745                              ObjCEncOptions()
7746                                  .setExpandPointedToStructures()
7747                                  .setExpandStructures()
7748                                  .setIsOutermostType(),
7749                              Field, NotEncodedT);
7750 }
7751 
7752 void ASTContext::getObjCEncodingForPropertyType(QualType T,
7753                                                 std::string& S) const {
7754   // Encode result type.
7755   // GCC has some special rules regarding encoding of properties which
7756   // closely resembles encoding of ivars.
7757   getObjCEncodingForTypeImpl(T, S,
7758                              ObjCEncOptions()
7759                                  .setExpandPointedToStructures()
7760                                  .setExpandStructures()
7761                                  .setIsOutermostType()
7762                                  .setEncodingProperty(),
7763                              /*Field=*/nullptr);
7764 }
7765 
7766 static char getObjCEncodingForPrimitiveType(const ASTContext *C,
7767                                             const BuiltinType *BT) {
7768     BuiltinType::Kind kind = BT->getKind();
7769     switch (kind) {
7770     case BuiltinType::Void:       return 'v';
7771     case BuiltinType::Bool:       return 'B';
7772     case BuiltinType::Char8:
7773     case BuiltinType::Char_U:
7774     case BuiltinType::UChar:      return 'C';
7775     case BuiltinType::Char16:
7776     case BuiltinType::UShort:     return 'S';
7777     case BuiltinType::Char32:
7778     case BuiltinType::UInt:       return 'I';
7779     case BuiltinType::ULong:
7780         return C->getTargetInfo().getLongWidth() == 32 ? 'L' : 'Q';
7781     case BuiltinType::UInt128:    return 'T';
7782     case BuiltinType::ULongLong:  return 'Q';
7783     case BuiltinType::Char_S:
7784     case BuiltinType::SChar:      return 'c';
7785     case BuiltinType::Short:      return 's';
7786     case BuiltinType::WChar_S:
7787     case BuiltinType::WChar_U:
7788     case BuiltinType::Int:        return 'i';
7789     case BuiltinType::Long:
7790       return C->getTargetInfo().getLongWidth() == 32 ? 'l' : 'q';
7791     case BuiltinType::LongLong:   return 'q';
7792     case BuiltinType::Int128:     return 't';
7793     case BuiltinType::Float:      return 'f';
7794     case BuiltinType::Double:     return 'd';
7795     case BuiltinType::LongDouble: return 'D';
7796     case BuiltinType::NullPtr:    return '*'; // like char*
7797 
7798     case BuiltinType::BFloat16:
7799     case BuiltinType::Float16:
7800     case BuiltinType::Float128:
7801     case BuiltinType::Ibm128:
7802     case BuiltinType::Half:
7803     case BuiltinType::ShortAccum:
7804     case BuiltinType::Accum:
7805     case BuiltinType::LongAccum:
7806     case BuiltinType::UShortAccum:
7807     case BuiltinType::UAccum:
7808     case BuiltinType::ULongAccum:
7809     case BuiltinType::ShortFract:
7810     case BuiltinType::Fract:
7811     case BuiltinType::LongFract:
7812     case BuiltinType::UShortFract:
7813     case BuiltinType::UFract:
7814     case BuiltinType::ULongFract:
7815     case BuiltinType::SatShortAccum:
7816     case BuiltinType::SatAccum:
7817     case BuiltinType::SatLongAccum:
7818     case BuiltinType::SatUShortAccum:
7819     case BuiltinType::SatUAccum:
7820     case BuiltinType::SatULongAccum:
7821     case BuiltinType::SatShortFract:
7822     case BuiltinType::SatFract:
7823     case BuiltinType::SatLongFract:
7824     case BuiltinType::SatUShortFract:
7825     case BuiltinType::SatUFract:
7826     case BuiltinType::SatULongFract:
7827       // FIXME: potentially need @encodes for these!
7828       return ' ';
7829 
7830 #define SVE_TYPE(Name, Id, SingletonId) \
7831     case BuiltinType::Id:
7832 #include "clang/Basic/AArch64SVEACLETypes.def"
7833 #define RVV_TYPE(Name, Id, SingletonId) case BuiltinType::Id:
7834 #include "clang/Basic/RISCVVTypes.def"
7835       {
7836         DiagnosticsEngine &Diags = C->getDiagnostics();
7837         unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error,
7838                                                 "cannot yet @encode type %0");
7839         Diags.Report(DiagID) << BT->getName(C->getPrintingPolicy());
7840         return ' ';
7841       }
7842 
7843     case BuiltinType::ObjCId:
7844     case BuiltinType::ObjCClass:
7845     case BuiltinType::ObjCSel:
7846       llvm_unreachable("@encoding ObjC primitive type");
7847 
7848     // OpenCL and placeholder types don't need @encodings.
7849 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
7850     case BuiltinType::Id:
7851 #include "clang/Basic/OpenCLImageTypes.def"
7852 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
7853     case BuiltinType::Id:
7854 #include "clang/Basic/OpenCLExtensionTypes.def"
7855     case BuiltinType::OCLEvent:
7856     case BuiltinType::OCLClkEvent:
7857     case BuiltinType::OCLQueue:
7858     case BuiltinType::OCLReserveID:
7859     case BuiltinType::OCLSampler:
7860     case BuiltinType::Dependent:
7861 #define PPC_VECTOR_TYPE(Name, Id, Size) \
7862     case BuiltinType::Id:
7863 #include "clang/Basic/PPCTypes.def"
7864 #define BUILTIN_TYPE(KIND, ID)
7865 #define PLACEHOLDER_TYPE(KIND, ID) \
7866     case BuiltinType::KIND:
7867 #include "clang/AST/BuiltinTypes.def"
7868       llvm_unreachable("invalid builtin type for @encode");
7869     }
7870     llvm_unreachable("invalid BuiltinType::Kind value");
7871 }
7872 
7873 static char ObjCEncodingForEnumType(const ASTContext *C, const EnumType *ET) {
7874   EnumDecl *Enum = ET->getDecl();
7875 
7876   // The encoding of an non-fixed enum type is always 'i', regardless of size.
7877   if (!Enum->isFixed())
7878     return 'i';
7879 
7880   // The encoding of a fixed enum type matches its fixed underlying type.
7881   const auto *BT = Enum->getIntegerType()->castAs<BuiltinType>();
7882   return getObjCEncodingForPrimitiveType(C, BT);
7883 }
7884 
7885 static void EncodeBitField(const ASTContext *Ctx, std::string& S,
7886                            QualType T, const FieldDecl *FD) {
7887   assert(FD->isBitField() && "not a bitfield - getObjCEncodingForTypeImpl");
7888   S += 'b';
7889   // The NeXT runtime encodes bit fields as b followed by the number of bits.
7890   // The GNU runtime requires more information; bitfields are encoded as b,
7891   // then the offset (in bits) of the first element, then the type of the
7892   // bitfield, then the size in bits.  For example, in this structure:
7893   //
7894   // struct
7895   // {
7896   //    int integer;
7897   //    int flags:2;
7898   // };
7899   // On a 32-bit system, the encoding for flags would be b2 for the NeXT
7900   // runtime, but b32i2 for the GNU runtime.  The reason for this extra
7901   // information is not especially sensible, but we're stuck with it for
7902   // compatibility with GCC, although providing it breaks anything that
7903   // actually uses runtime introspection and wants to work on both runtimes...
7904   if (Ctx->getLangOpts().ObjCRuntime.isGNUFamily()) {
7905     uint64_t Offset;
7906 
7907     if (const auto *IVD = dyn_cast<ObjCIvarDecl>(FD)) {
7908       Offset = Ctx->lookupFieldBitOffset(IVD->getContainingInterface(), nullptr,
7909                                          IVD);
7910     } else {
7911       const RecordDecl *RD = FD->getParent();
7912       const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD);
7913       Offset = RL.getFieldOffset(FD->getFieldIndex());
7914     }
7915 
7916     S += llvm::utostr(Offset);
7917 
7918     if (const auto *ET = T->getAs<EnumType>())
7919       S += ObjCEncodingForEnumType(Ctx, ET);
7920     else {
7921       const auto *BT = T->castAs<BuiltinType>();
7922       S += getObjCEncodingForPrimitiveType(Ctx, BT);
7923     }
7924   }
7925   S += llvm::utostr(FD->getBitWidthValue(*Ctx));
7926 }
7927 
7928 // Helper function for determining whether the encoded type string would include
7929 // a template specialization type.
7930 static bool hasTemplateSpecializationInEncodedString(const Type *T,
7931                                                      bool VisitBasesAndFields) {
7932   T = T->getBaseElementTypeUnsafe();
7933 
7934   if (auto *PT = T->getAs<PointerType>())
7935     return hasTemplateSpecializationInEncodedString(
7936         PT->getPointeeType().getTypePtr(), false);
7937 
7938   auto *CXXRD = T->getAsCXXRecordDecl();
7939 
7940   if (!CXXRD)
7941     return false;
7942 
7943   if (isa<ClassTemplateSpecializationDecl>(CXXRD))
7944     return true;
7945 
7946   if (!CXXRD->hasDefinition() || !VisitBasesAndFields)
7947     return false;
7948 
7949   for (auto B : CXXRD->bases())
7950     if (hasTemplateSpecializationInEncodedString(B.getType().getTypePtr(),
7951                                                  true))
7952       return true;
7953 
7954   for (auto *FD : CXXRD->fields())
7955     if (hasTemplateSpecializationInEncodedString(FD->getType().getTypePtr(),
7956                                                  true))
7957       return true;
7958 
7959   return false;
7960 }
7961 
7962 // FIXME: Use SmallString for accumulating string.
7963 void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string &S,
7964                                             const ObjCEncOptions Options,
7965                                             const FieldDecl *FD,
7966                                             QualType *NotEncodedT) const {
7967   CanQualType CT = getCanonicalType(T);
7968   switch (CT->getTypeClass()) {
7969   case Type::Builtin:
7970   case Type::Enum:
7971     if (FD && FD->isBitField())
7972       return EncodeBitField(this, S, T, FD);
7973     if (const auto *BT = dyn_cast<BuiltinType>(CT))
7974       S += getObjCEncodingForPrimitiveType(this, BT);
7975     else
7976       S += ObjCEncodingForEnumType(this, cast<EnumType>(CT));
7977     return;
7978 
7979   case Type::Complex:
7980     S += 'j';
7981     getObjCEncodingForTypeImpl(T->castAs<ComplexType>()->getElementType(), S,
7982                                ObjCEncOptions(),
7983                                /*Field=*/nullptr);
7984     return;
7985 
7986   case Type::Atomic:
7987     S += 'A';
7988     getObjCEncodingForTypeImpl(T->castAs<AtomicType>()->getValueType(), S,
7989                                ObjCEncOptions(),
7990                                /*Field=*/nullptr);
7991     return;
7992 
7993   // encoding for pointer or reference types.
7994   case Type::Pointer:
7995   case Type::LValueReference:
7996   case Type::RValueReference: {
7997     QualType PointeeTy;
7998     if (isa<PointerType>(CT)) {
7999       const auto *PT = T->castAs<PointerType>();
8000       if (PT->isObjCSelType()) {
8001         S += ':';
8002         return;
8003       }
8004       PointeeTy = PT->getPointeeType();
8005     } else {
8006       PointeeTy = T->castAs<ReferenceType>()->getPointeeType();
8007     }
8008 
8009     bool isReadOnly = false;
8010     // For historical/compatibility reasons, the read-only qualifier of the
8011     // pointee gets emitted _before_ the '^'.  The read-only qualifier of
8012     // the pointer itself gets ignored, _unless_ we are looking at a typedef!
8013     // Also, do not emit the 'r' for anything but the outermost type!
8014     if (isa<TypedefType>(T.getTypePtr())) {
8015       if (Options.IsOutermostType() && T.isConstQualified()) {
8016         isReadOnly = true;
8017         S += 'r';
8018       }
8019     } else if (Options.IsOutermostType()) {
8020       QualType P = PointeeTy;
8021       while (auto PT = P->getAs<PointerType>())
8022         P = PT->getPointeeType();
8023       if (P.isConstQualified()) {
8024         isReadOnly = true;
8025         S += 'r';
8026       }
8027     }
8028     if (isReadOnly) {
8029       // Another legacy compatibility encoding. Some ObjC qualifier and type
8030       // combinations need to be rearranged.
8031       // Rewrite "in const" from "nr" to "rn"
8032       if (StringRef(S).endswith("nr"))
8033         S.replace(S.end()-2, S.end(), "rn");
8034     }
8035 
8036     if (PointeeTy->isCharType()) {
8037       // char pointer types should be encoded as '*' unless it is a
8038       // type that has been typedef'd to 'BOOL'.
8039       if (!isTypeTypedefedAsBOOL(PointeeTy)) {
8040         S += '*';
8041         return;
8042       }
8043     } else if (const auto *RTy = PointeeTy->getAs<RecordType>()) {
8044       // GCC binary compat: Need to convert "struct objc_class *" to "#".
8045       if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
8046         S += '#';
8047         return;
8048       }
8049       // GCC binary compat: Need to convert "struct objc_object *" to "@".
8050       if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
8051         S += '@';
8052         return;
8053       }
8054       // If the encoded string for the class includes template names, just emit
8055       // "^v" for pointers to the class.
8056       if (getLangOpts().CPlusPlus &&
8057           (!getLangOpts().EncodeCXXClassTemplateSpec &&
8058            hasTemplateSpecializationInEncodedString(
8059                RTy, Options.ExpandPointedToStructures()))) {
8060         S += "^v";
8061         return;
8062       }
8063       // fall through...
8064     }
8065     S += '^';
8066     getLegacyIntegralTypeEncoding(PointeeTy);
8067 
8068     ObjCEncOptions NewOptions;
8069     if (Options.ExpandPointedToStructures())
8070       NewOptions.setExpandStructures();
8071     getObjCEncodingForTypeImpl(PointeeTy, S, NewOptions,
8072                                /*Field=*/nullptr, NotEncodedT);
8073     return;
8074   }
8075 
8076   case Type::ConstantArray:
8077   case Type::IncompleteArray:
8078   case Type::VariableArray: {
8079     const auto *AT = cast<ArrayType>(CT);
8080 
8081     if (isa<IncompleteArrayType>(AT) && !Options.IsStructField()) {
8082       // Incomplete arrays are encoded as a pointer to the array element.
8083       S += '^';
8084 
8085       getObjCEncodingForTypeImpl(
8086           AT->getElementType(), S,
8087           Options.keepingOnly(ObjCEncOptions().setExpandStructures()), FD);
8088     } else {
8089       S += '[';
8090 
8091       if (const auto *CAT = dyn_cast<ConstantArrayType>(AT))
8092         S += llvm::utostr(CAT->getSize().getZExtValue());
8093       else {
8094         //Variable length arrays are encoded as a regular array with 0 elements.
8095         assert((isa<VariableArrayType>(AT) || isa<IncompleteArrayType>(AT)) &&
8096                "Unknown array type!");
8097         S += '0';
8098       }
8099 
8100       getObjCEncodingForTypeImpl(
8101           AT->getElementType(), S,
8102           Options.keepingOnly(ObjCEncOptions().setExpandStructures()), FD,
8103           NotEncodedT);
8104       S += ']';
8105     }
8106     return;
8107   }
8108 
8109   case Type::FunctionNoProto:
8110   case Type::FunctionProto:
8111     S += '?';
8112     return;
8113 
8114   case Type::Record: {
8115     RecordDecl *RDecl = cast<RecordType>(CT)->getDecl();
8116     S += RDecl->isUnion() ? '(' : '{';
8117     // Anonymous structures print as '?'
8118     if (const IdentifierInfo *II = RDecl->getIdentifier()) {
8119       S += II->getName();
8120       if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(RDecl)) {
8121         const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
8122         llvm::raw_string_ostream OS(S);
8123         printTemplateArgumentList(OS, TemplateArgs.asArray(),
8124                                   getPrintingPolicy());
8125       }
8126     } else {
8127       S += '?';
8128     }
8129     if (Options.ExpandStructures()) {
8130       S += '=';
8131       if (!RDecl->isUnion()) {
8132         getObjCEncodingForStructureImpl(RDecl, S, FD, true, NotEncodedT);
8133       } else {
8134         for (const auto *Field : RDecl->fields()) {
8135           if (FD) {
8136             S += '"';
8137             S += Field->getNameAsString();
8138             S += '"';
8139           }
8140 
8141           // Special case bit-fields.
8142           if (Field->isBitField()) {
8143             getObjCEncodingForTypeImpl(Field->getType(), S,
8144                                        ObjCEncOptions().setExpandStructures(),
8145                                        Field);
8146           } else {
8147             QualType qt = Field->getType();
8148             getLegacyIntegralTypeEncoding(qt);
8149             getObjCEncodingForTypeImpl(
8150                 qt, S,
8151                 ObjCEncOptions().setExpandStructures().setIsStructField(), FD,
8152                 NotEncodedT);
8153           }
8154         }
8155       }
8156     }
8157     S += RDecl->isUnion() ? ')' : '}';
8158     return;
8159   }
8160 
8161   case Type::BlockPointer: {
8162     const auto *BT = T->castAs<BlockPointerType>();
8163     S += "@?"; // Unlike a pointer-to-function, which is "^?".
8164     if (Options.EncodeBlockParameters()) {
8165       const auto *FT = BT->getPointeeType()->castAs<FunctionType>();
8166 
8167       S += '<';
8168       // Block return type
8169       getObjCEncodingForTypeImpl(FT->getReturnType(), S,
8170                                  Options.forComponentType(), FD, NotEncodedT);
8171       // Block self
8172       S += "@?";
8173       // Block parameters
8174       if (const auto *FPT = dyn_cast<FunctionProtoType>(FT)) {
8175         for (const auto &I : FPT->param_types())
8176           getObjCEncodingForTypeImpl(I, S, Options.forComponentType(), FD,
8177                                      NotEncodedT);
8178       }
8179       S += '>';
8180     }
8181     return;
8182   }
8183 
8184   case Type::ObjCObject: {
8185     // hack to match legacy encoding of *id and *Class
8186     QualType Ty = getObjCObjectPointerType(CT);
8187     if (Ty->isObjCIdType()) {
8188       S += "{objc_object=}";
8189       return;
8190     }
8191     else if (Ty->isObjCClassType()) {
8192       S += "{objc_class=}";
8193       return;
8194     }
8195     // TODO: Double check to make sure this intentionally falls through.
8196     LLVM_FALLTHROUGH;
8197   }
8198 
8199   case Type::ObjCInterface: {
8200     // Ignore protocol qualifiers when mangling at this level.
8201     // @encode(class_name)
8202     ObjCInterfaceDecl *OI = T->castAs<ObjCObjectType>()->getInterface();
8203     S += '{';
8204     S += OI->getObjCRuntimeNameAsString();
8205     if (Options.ExpandStructures()) {
8206       S += '=';
8207       SmallVector<const ObjCIvarDecl*, 32> Ivars;
8208       DeepCollectObjCIvars(OI, true, Ivars);
8209       for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
8210         const FieldDecl *Field = Ivars[i];
8211         if (Field->isBitField())
8212           getObjCEncodingForTypeImpl(Field->getType(), S,
8213                                      ObjCEncOptions().setExpandStructures(),
8214                                      Field);
8215         else
8216           getObjCEncodingForTypeImpl(Field->getType(), S,
8217                                      ObjCEncOptions().setExpandStructures(), FD,
8218                                      NotEncodedT);
8219       }
8220     }
8221     S += '}';
8222     return;
8223   }
8224 
8225   case Type::ObjCObjectPointer: {
8226     const auto *OPT = T->castAs<ObjCObjectPointerType>();
8227     if (OPT->isObjCIdType()) {
8228       S += '@';
8229       return;
8230     }
8231 
8232     if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
8233       // FIXME: Consider if we need to output qualifiers for 'Class<p>'.
8234       // Since this is a binary compatibility issue, need to consult with
8235       // runtime folks. Fortunately, this is a *very* obscure construct.
8236       S += '#';
8237       return;
8238     }
8239 
8240     if (OPT->isObjCQualifiedIdType()) {
8241       getObjCEncodingForTypeImpl(
8242           getObjCIdType(), S,
8243           Options.keepingOnly(ObjCEncOptions()
8244                                   .setExpandPointedToStructures()
8245                                   .setExpandStructures()),
8246           FD);
8247       if (FD || Options.EncodingProperty() || Options.EncodeClassNames()) {
8248         // Note that we do extended encoding of protocol qualifier list
8249         // Only when doing ivar or property encoding.
8250         S += '"';
8251         for (const auto *I : OPT->quals()) {
8252           S += '<';
8253           S += I->getObjCRuntimeNameAsString();
8254           S += '>';
8255         }
8256         S += '"';
8257       }
8258       return;
8259     }
8260 
8261     S += '@';
8262     if (OPT->getInterfaceDecl() &&
8263         (FD || Options.EncodingProperty() || Options.EncodeClassNames())) {
8264       S += '"';
8265       S += OPT->getInterfaceDecl()->getObjCRuntimeNameAsString();
8266       for (const auto *I : OPT->quals()) {
8267         S += '<';
8268         S += I->getObjCRuntimeNameAsString();
8269         S += '>';
8270       }
8271       S += '"';
8272     }
8273     return;
8274   }
8275 
8276   // gcc just blithely ignores member pointers.
8277   // FIXME: we should do better than that.  'M' is available.
8278   case Type::MemberPointer:
8279   // This matches gcc's encoding, even though technically it is insufficient.
8280   //FIXME. We should do a better job than gcc.
8281   case Type::Vector:
8282   case Type::ExtVector:
8283   // Until we have a coherent encoding of these three types, issue warning.
8284     if (NotEncodedT)
8285       *NotEncodedT = T;
8286     return;
8287 
8288   case Type::ConstantMatrix:
8289     if (NotEncodedT)
8290       *NotEncodedT = T;
8291     return;
8292 
8293   case Type::BitInt:
8294     if (NotEncodedT)
8295       *NotEncodedT = T;
8296     return;
8297 
8298   // We could see an undeduced auto type here during error recovery.
8299   // Just ignore it.
8300   case Type::Auto:
8301   case Type::DeducedTemplateSpecialization:
8302     return;
8303 
8304   case Type::Pipe:
8305 #define ABSTRACT_TYPE(KIND, BASE)
8306 #define TYPE(KIND, BASE)
8307 #define DEPENDENT_TYPE(KIND, BASE) \
8308   case Type::KIND:
8309 #define NON_CANONICAL_TYPE(KIND, BASE) \
8310   case Type::KIND:
8311 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(KIND, BASE) \
8312   case Type::KIND:
8313 #include "clang/AST/TypeNodes.inc"
8314     llvm_unreachable("@encode for dependent type!");
8315   }
8316   llvm_unreachable("bad type kind!");
8317 }
8318 
8319 void ASTContext::getObjCEncodingForStructureImpl(RecordDecl *RDecl,
8320                                                  std::string &S,
8321                                                  const FieldDecl *FD,
8322                                                  bool includeVBases,
8323                                                  QualType *NotEncodedT) const {
8324   assert(RDecl && "Expected non-null RecordDecl");
8325   assert(!RDecl->isUnion() && "Should not be called for unions");
8326   if (!RDecl->getDefinition() || RDecl->getDefinition()->isInvalidDecl())
8327     return;
8328 
8329   const auto *CXXRec = dyn_cast<CXXRecordDecl>(RDecl);
8330   std::multimap<uint64_t, NamedDecl *> FieldOrBaseOffsets;
8331   const ASTRecordLayout &layout = getASTRecordLayout(RDecl);
8332 
8333   if (CXXRec) {
8334     for (const auto &BI : CXXRec->bases()) {
8335       if (!BI.isVirtual()) {
8336         CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl();
8337         if (base->isEmpty())
8338           continue;
8339         uint64_t offs = toBits(layout.getBaseClassOffset(base));
8340         FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
8341                                   std::make_pair(offs, base));
8342       }
8343     }
8344   }
8345 
8346   unsigned i = 0;
8347   for (FieldDecl *Field : RDecl->fields()) {
8348     if (!Field->isZeroLengthBitField(*this) && Field->isZeroSize(*this))
8349       continue;
8350     uint64_t offs = layout.getFieldOffset(i);
8351     FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
8352                               std::make_pair(offs, Field));
8353     ++i;
8354   }
8355 
8356   if (CXXRec && includeVBases) {
8357     for (const auto &BI : CXXRec->vbases()) {
8358       CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl();
8359       if (base->isEmpty())
8360         continue;
8361       uint64_t offs = toBits(layout.getVBaseClassOffset(base));
8362       if (offs >= uint64_t(toBits(layout.getNonVirtualSize())) &&
8363           FieldOrBaseOffsets.find(offs) == FieldOrBaseOffsets.end())
8364         FieldOrBaseOffsets.insert(FieldOrBaseOffsets.end(),
8365                                   std::make_pair(offs, base));
8366     }
8367   }
8368 
8369   CharUnits size;
8370   if (CXXRec) {
8371     size = includeVBases ? layout.getSize() : layout.getNonVirtualSize();
8372   } else {
8373     size = layout.getSize();
8374   }
8375 
8376 #ifndef NDEBUG
8377   uint64_t CurOffs = 0;
8378 #endif
8379   std::multimap<uint64_t, NamedDecl *>::iterator
8380     CurLayObj = FieldOrBaseOffsets.begin();
8381 
8382   if (CXXRec && CXXRec->isDynamicClass() &&
8383       (CurLayObj == FieldOrBaseOffsets.end() || CurLayObj->first != 0)) {
8384     if (FD) {
8385       S += "\"_vptr$";
8386       std::string recname = CXXRec->getNameAsString();
8387       if (recname.empty()) recname = "?";
8388       S += recname;
8389       S += '"';
8390     }
8391     S += "^^?";
8392 #ifndef NDEBUG
8393     CurOffs += getTypeSize(VoidPtrTy);
8394 #endif
8395   }
8396 
8397   if (!RDecl->hasFlexibleArrayMember()) {
8398     // Mark the end of the structure.
8399     uint64_t offs = toBits(size);
8400     FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
8401                               std::make_pair(offs, nullptr));
8402   }
8403 
8404   for (; CurLayObj != FieldOrBaseOffsets.end(); ++CurLayObj) {
8405 #ifndef NDEBUG
8406     assert(CurOffs <= CurLayObj->first);
8407     if (CurOffs < CurLayObj->first) {
8408       uint64_t padding = CurLayObj->first - CurOffs;
8409       // FIXME: There doesn't seem to be a way to indicate in the encoding that
8410       // packing/alignment of members is different that normal, in which case
8411       // the encoding will be out-of-sync with the real layout.
8412       // If the runtime switches to just consider the size of types without
8413       // taking into account alignment, we could make padding explicit in the
8414       // encoding (e.g. using arrays of chars). The encoding strings would be
8415       // longer then though.
8416       CurOffs += padding;
8417     }
8418 #endif
8419 
8420     NamedDecl *dcl = CurLayObj->second;
8421     if (!dcl)
8422       break; // reached end of structure.
8423 
8424     if (auto *base = dyn_cast<CXXRecordDecl>(dcl)) {
8425       // We expand the bases without their virtual bases since those are going
8426       // in the initial structure. Note that this differs from gcc which
8427       // expands virtual bases each time one is encountered in the hierarchy,
8428       // making the encoding type bigger than it really is.
8429       getObjCEncodingForStructureImpl(base, S, FD, /*includeVBases*/false,
8430                                       NotEncodedT);
8431       assert(!base->isEmpty());
8432 #ifndef NDEBUG
8433       CurOffs += toBits(getASTRecordLayout(base).getNonVirtualSize());
8434 #endif
8435     } else {
8436       const auto *field = cast<FieldDecl>(dcl);
8437       if (FD) {
8438         S += '"';
8439         S += field->getNameAsString();
8440         S += '"';
8441       }
8442 
8443       if (field->isBitField()) {
8444         EncodeBitField(this, S, field->getType(), field);
8445 #ifndef NDEBUG
8446         CurOffs += field->getBitWidthValue(*this);
8447 #endif
8448       } else {
8449         QualType qt = field->getType();
8450         getLegacyIntegralTypeEncoding(qt);
8451         getObjCEncodingForTypeImpl(
8452             qt, S, ObjCEncOptions().setExpandStructures().setIsStructField(),
8453             FD, NotEncodedT);
8454 #ifndef NDEBUG
8455         CurOffs += getTypeSize(field->getType());
8456 #endif
8457       }
8458     }
8459   }
8460 }
8461 
8462 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
8463                                                  std::string& S) const {
8464   if (QT & Decl::OBJC_TQ_In)
8465     S += 'n';
8466   if (QT & Decl::OBJC_TQ_Inout)
8467     S += 'N';
8468   if (QT & Decl::OBJC_TQ_Out)
8469     S += 'o';
8470   if (QT & Decl::OBJC_TQ_Bycopy)
8471     S += 'O';
8472   if (QT & Decl::OBJC_TQ_Byref)
8473     S += 'R';
8474   if (QT & Decl::OBJC_TQ_Oneway)
8475     S += 'V';
8476 }
8477 
8478 TypedefDecl *ASTContext::getObjCIdDecl() const {
8479   if (!ObjCIdDecl) {
8480     QualType T = getObjCObjectType(ObjCBuiltinIdTy, {}, {});
8481     T = getObjCObjectPointerType(T);
8482     ObjCIdDecl = buildImplicitTypedef(T, "id");
8483   }
8484   return ObjCIdDecl;
8485 }
8486 
8487 TypedefDecl *ASTContext::getObjCSelDecl() const {
8488   if (!ObjCSelDecl) {
8489     QualType T = getPointerType(ObjCBuiltinSelTy);
8490     ObjCSelDecl = buildImplicitTypedef(T, "SEL");
8491   }
8492   return ObjCSelDecl;
8493 }
8494 
8495 TypedefDecl *ASTContext::getObjCClassDecl() const {
8496   if (!ObjCClassDecl) {
8497     QualType T = getObjCObjectType(ObjCBuiltinClassTy, {}, {});
8498     T = getObjCObjectPointerType(T);
8499     ObjCClassDecl = buildImplicitTypedef(T, "Class");
8500   }
8501   return ObjCClassDecl;
8502 }
8503 
8504 ObjCInterfaceDecl *ASTContext::getObjCProtocolDecl() const {
8505   if (!ObjCProtocolClassDecl) {
8506     ObjCProtocolClassDecl
8507       = ObjCInterfaceDecl::Create(*this, getTranslationUnitDecl(),
8508                                   SourceLocation(),
8509                                   &Idents.get("Protocol"),
8510                                   /*typeParamList=*/nullptr,
8511                                   /*PrevDecl=*/nullptr,
8512                                   SourceLocation(), true);
8513   }
8514 
8515   return ObjCProtocolClassDecl;
8516 }
8517 
8518 //===----------------------------------------------------------------------===//
8519 // __builtin_va_list Construction Functions
8520 //===----------------------------------------------------------------------===//
8521 
8522 static TypedefDecl *CreateCharPtrNamedVaListDecl(const ASTContext *Context,
8523                                                  StringRef Name) {
8524   // typedef char* __builtin[_ms]_va_list;
8525   QualType T = Context->getPointerType(Context->CharTy);
8526   return Context->buildImplicitTypedef(T, Name);
8527 }
8528 
8529 static TypedefDecl *CreateMSVaListDecl(const ASTContext *Context) {
8530   return CreateCharPtrNamedVaListDecl(Context, "__builtin_ms_va_list");
8531 }
8532 
8533 static TypedefDecl *CreateCharPtrBuiltinVaListDecl(const ASTContext *Context) {
8534   return CreateCharPtrNamedVaListDecl(Context, "__builtin_va_list");
8535 }
8536 
8537 static TypedefDecl *CreateVoidPtrBuiltinVaListDecl(const ASTContext *Context) {
8538   // typedef void* __builtin_va_list;
8539   QualType T = Context->getPointerType(Context->VoidTy);
8540   return Context->buildImplicitTypedef(T, "__builtin_va_list");
8541 }
8542 
8543 static TypedefDecl *
8544 CreateAArch64ABIBuiltinVaListDecl(const ASTContext *Context) {
8545   RecordDecl *VaListTagDecl = Context->buildImplicitRecord("__va_list");
8546   // namespace std { struct __va_list {
8547   // Note that we create the namespace even in C. This is intentional so that
8548   // the type is consistent between C and C++, which is important in cases where
8549   // the types need to match between translation units (e.g. with
8550   // -fsanitize=cfi-icall). Ideally we wouldn't have created this namespace at
8551   // all, but it's now part of the ABI (e.g. in mangled names), so we can't
8552   // change it.
8553   auto *NS = NamespaceDecl::Create(
8554       const_cast<ASTContext &>(*Context), Context->getTranslationUnitDecl(),
8555       /*Inline*/ false, SourceLocation(), SourceLocation(),
8556       &Context->Idents.get("std"),
8557       /*PrevDecl*/ nullptr);
8558   NS->setImplicit();
8559   VaListTagDecl->setDeclContext(NS);
8560 
8561   VaListTagDecl->startDefinition();
8562 
8563   const size_t NumFields = 5;
8564   QualType FieldTypes[NumFields];
8565   const char *FieldNames[NumFields];
8566 
8567   // void *__stack;
8568   FieldTypes[0] = Context->getPointerType(Context->VoidTy);
8569   FieldNames[0] = "__stack";
8570 
8571   // void *__gr_top;
8572   FieldTypes[1] = Context->getPointerType(Context->VoidTy);
8573   FieldNames[1] = "__gr_top";
8574 
8575   // void *__vr_top;
8576   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
8577   FieldNames[2] = "__vr_top";
8578 
8579   // int __gr_offs;
8580   FieldTypes[3] = Context->IntTy;
8581   FieldNames[3] = "__gr_offs";
8582 
8583   // int __vr_offs;
8584   FieldTypes[4] = Context->IntTy;
8585   FieldNames[4] = "__vr_offs";
8586 
8587   // Create fields
8588   for (unsigned i = 0; i < NumFields; ++i) {
8589     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
8590                                          VaListTagDecl,
8591                                          SourceLocation(),
8592                                          SourceLocation(),
8593                                          &Context->Idents.get(FieldNames[i]),
8594                                          FieldTypes[i], /*TInfo=*/nullptr,
8595                                          /*BitWidth=*/nullptr,
8596                                          /*Mutable=*/false,
8597                                          ICIS_NoInit);
8598     Field->setAccess(AS_public);
8599     VaListTagDecl->addDecl(Field);
8600   }
8601   VaListTagDecl->completeDefinition();
8602   Context->VaListTagDecl = VaListTagDecl;
8603   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
8604 
8605   // } __builtin_va_list;
8606   return Context->buildImplicitTypedef(VaListTagType, "__builtin_va_list");
8607 }
8608 
8609 static TypedefDecl *CreatePowerABIBuiltinVaListDecl(const ASTContext *Context) {
8610   // typedef struct __va_list_tag {
8611   RecordDecl *VaListTagDecl;
8612 
8613   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
8614   VaListTagDecl->startDefinition();
8615 
8616   const size_t NumFields = 5;
8617   QualType FieldTypes[NumFields];
8618   const char *FieldNames[NumFields];
8619 
8620   //   unsigned char gpr;
8621   FieldTypes[0] = Context->UnsignedCharTy;
8622   FieldNames[0] = "gpr";
8623 
8624   //   unsigned char fpr;
8625   FieldTypes[1] = Context->UnsignedCharTy;
8626   FieldNames[1] = "fpr";
8627 
8628   //   unsigned short reserved;
8629   FieldTypes[2] = Context->UnsignedShortTy;
8630   FieldNames[2] = "reserved";
8631 
8632   //   void* overflow_arg_area;
8633   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
8634   FieldNames[3] = "overflow_arg_area";
8635 
8636   //   void* reg_save_area;
8637   FieldTypes[4] = Context->getPointerType(Context->VoidTy);
8638   FieldNames[4] = "reg_save_area";
8639 
8640   // Create fields
8641   for (unsigned i = 0; i < NumFields; ++i) {
8642     FieldDecl *Field = FieldDecl::Create(*Context, VaListTagDecl,
8643                                          SourceLocation(),
8644                                          SourceLocation(),
8645                                          &Context->Idents.get(FieldNames[i]),
8646                                          FieldTypes[i], /*TInfo=*/nullptr,
8647                                          /*BitWidth=*/nullptr,
8648                                          /*Mutable=*/false,
8649                                          ICIS_NoInit);
8650     Field->setAccess(AS_public);
8651     VaListTagDecl->addDecl(Field);
8652   }
8653   VaListTagDecl->completeDefinition();
8654   Context->VaListTagDecl = VaListTagDecl;
8655   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
8656 
8657   // } __va_list_tag;
8658   TypedefDecl *VaListTagTypedefDecl =
8659       Context->buildImplicitTypedef(VaListTagType, "__va_list_tag");
8660 
8661   QualType VaListTagTypedefType =
8662     Context->getTypedefType(VaListTagTypedefDecl);
8663 
8664   // typedef __va_list_tag __builtin_va_list[1];
8665   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
8666   QualType VaListTagArrayType
8667     = Context->getConstantArrayType(VaListTagTypedefType,
8668                                     Size, nullptr, ArrayType::Normal, 0);
8669   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
8670 }
8671 
8672 static TypedefDecl *
8673 CreateX86_64ABIBuiltinVaListDecl(const ASTContext *Context) {
8674   // struct __va_list_tag {
8675   RecordDecl *VaListTagDecl;
8676   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
8677   VaListTagDecl->startDefinition();
8678 
8679   const size_t NumFields = 4;
8680   QualType FieldTypes[NumFields];
8681   const char *FieldNames[NumFields];
8682 
8683   //   unsigned gp_offset;
8684   FieldTypes[0] = Context->UnsignedIntTy;
8685   FieldNames[0] = "gp_offset";
8686 
8687   //   unsigned fp_offset;
8688   FieldTypes[1] = Context->UnsignedIntTy;
8689   FieldNames[1] = "fp_offset";
8690 
8691   //   void* overflow_arg_area;
8692   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
8693   FieldNames[2] = "overflow_arg_area";
8694 
8695   //   void* reg_save_area;
8696   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
8697   FieldNames[3] = "reg_save_area";
8698 
8699   // Create fields
8700   for (unsigned i = 0; i < NumFields; ++i) {
8701     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
8702                                          VaListTagDecl,
8703                                          SourceLocation(),
8704                                          SourceLocation(),
8705                                          &Context->Idents.get(FieldNames[i]),
8706                                          FieldTypes[i], /*TInfo=*/nullptr,
8707                                          /*BitWidth=*/nullptr,
8708                                          /*Mutable=*/false,
8709                                          ICIS_NoInit);
8710     Field->setAccess(AS_public);
8711     VaListTagDecl->addDecl(Field);
8712   }
8713   VaListTagDecl->completeDefinition();
8714   Context->VaListTagDecl = VaListTagDecl;
8715   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
8716 
8717   // };
8718 
8719   // typedef struct __va_list_tag __builtin_va_list[1];
8720   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
8721   QualType VaListTagArrayType = Context->getConstantArrayType(
8722       VaListTagType, Size, nullptr, ArrayType::Normal, 0);
8723   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
8724 }
8725 
8726 static TypedefDecl *CreatePNaClABIBuiltinVaListDecl(const ASTContext *Context) {
8727   // typedef int __builtin_va_list[4];
8728   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 4);
8729   QualType IntArrayType = Context->getConstantArrayType(
8730       Context->IntTy, Size, nullptr, ArrayType::Normal, 0);
8731   return Context->buildImplicitTypedef(IntArrayType, "__builtin_va_list");
8732 }
8733 
8734 static TypedefDecl *
8735 CreateAAPCSABIBuiltinVaListDecl(const ASTContext *Context) {
8736   // struct __va_list
8737   RecordDecl *VaListDecl = Context->buildImplicitRecord("__va_list");
8738   if (Context->getLangOpts().CPlusPlus) {
8739     // namespace std { struct __va_list {
8740     NamespaceDecl *NS;
8741     NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
8742                                Context->getTranslationUnitDecl(),
8743                                /*Inline*/false, SourceLocation(),
8744                                SourceLocation(), &Context->Idents.get("std"),
8745                                /*PrevDecl*/ nullptr);
8746     NS->setImplicit();
8747     VaListDecl->setDeclContext(NS);
8748   }
8749 
8750   VaListDecl->startDefinition();
8751 
8752   // void * __ap;
8753   FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
8754                                        VaListDecl,
8755                                        SourceLocation(),
8756                                        SourceLocation(),
8757                                        &Context->Idents.get("__ap"),
8758                                        Context->getPointerType(Context->VoidTy),
8759                                        /*TInfo=*/nullptr,
8760                                        /*BitWidth=*/nullptr,
8761                                        /*Mutable=*/false,
8762                                        ICIS_NoInit);
8763   Field->setAccess(AS_public);
8764   VaListDecl->addDecl(Field);
8765 
8766   // };
8767   VaListDecl->completeDefinition();
8768   Context->VaListTagDecl = VaListDecl;
8769 
8770   // typedef struct __va_list __builtin_va_list;
8771   QualType T = Context->getRecordType(VaListDecl);
8772   return Context->buildImplicitTypedef(T, "__builtin_va_list");
8773 }
8774 
8775 static TypedefDecl *
8776 CreateSystemZBuiltinVaListDecl(const ASTContext *Context) {
8777   // struct __va_list_tag {
8778   RecordDecl *VaListTagDecl;
8779   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
8780   VaListTagDecl->startDefinition();
8781 
8782   const size_t NumFields = 4;
8783   QualType FieldTypes[NumFields];
8784   const char *FieldNames[NumFields];
8785 
8786   //   long __gpr;
8787   FieldTypes[0] = Context->LongTy;
8788   FieldNames[0] = "__gpr";
8789 
8790   //   long __fpr;
8791   FieldTypes[1] = Context->LongTy;
8792   FieldNames[1] = "__fpr";
8793 
8794   //   void *__overflow_arg_area;
8795   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
8796   FieldNames[2] = "__overflow_arg_area";
8797 
8798   //   void *__reg_save_area;
8799   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
8800   FieldNames[3] = "__reg_save_area";
8801 
8802   // Create fields
8803   for (unsigned i = 0; i < NumFields; ++i) {
8804     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
8805                                          VaListTagDecl,
8806                                          SourceLocation(),
8807                                          SourceLocation(),
8808                                          &Context->Idents.get(FieldNames[i]),
8809                                          FieldTypes[i], /*TInfo=*/nullptr,
8810                                          /*BitWidth=*/nullptr,
8811                                          /*Mutable=*/false,
8812                                          ICIS_NoInit);
8813     Field->setAccess(AS_public);
8814     VaListTagDecl->addDecl(Field);
8815   }
8816   VaListTagDecl->completeDefinition();
8817   Context->VaListTagDecl = VaListTagDecl;
8818   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
8819 
8820   // };
8821 
8822   // typedef __va_list_tag __builtin_va_list[1];
8823   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
8824   QualType VaListTagArrayType = Context->getConstantArrayType(
8825       VaListTagType, Size, nullptr, ArrayType::Normal, 0);
8826 
8827   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
8828 }
8829 
8830 static TypedefDecl *CreateHexagonBuiltinVaListDecl(const ASTContext *Context) {
8831   // typedef struct __va_list_tag {
8832   RecordDecl *VaListTagDecl;
8833   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
8834   VaListTagDecl->startDefinition();
8835 
8836   const size_t NumFields = 3;
8837   QualType FieldTypes[NumFields];
8838   const char *FieldNames[NumFields];
8839 
8840   //   void *CurrentSavedRegisterArea;
8841   FieldTypes[0] = Context->getPointerType(Context->VoidTy);
8842   FieldNames[0] = "__current_saved_reg_area_pointer";
8843 
8844   //   void *SavedRegAreaEnd;
8845   FieldTypes[1] = Context->getPointerType(Context->VoidTy);
8846   FieldNames[1] = "__saved_reg_area_end_pointer";
8847 
8848   //   void *OverflowArea;
8849   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
8850   FieldNames[2] = "__overflow_area_pointer";
8851 
8852   // Create fields
8853   for (unsigned i = 0; i < NumFields; ++i) {
8854     FieldDecl *Field = FieldDecl::Create(
8855         const_cast<ASTContext &>(*Context), VaListTagDecl, SourceLocation(),
8856         SourceLocation(), &Context->Idents.get(FieldNames[i]), FieldTypes[i],
8857         /*TInfo=*/nullptr,
8858         /*BitWidth=*/nullptr,
8859         /*Mutable=*/false, ICIS_NoInit);
8860     Field->setAccess(AS_public);
8861     VaListTagDecl->addDecl(Field);
8862   }
8863   VaListTagDecl->completeDefinition();
8864   Context->VaListTagDecl = VaListTagDecl;
8865   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
8866 
8867   // } __va_list_tag;
8868   TypedefDecl *VaListTagTypedefDecl =
8869       Context->buildImplicitTypedef(VaListTagType, "__va_list_tag");
8870 
8871   QualType VaListTagTypedefType = Context->getTypedefType(VaListTagTypedefDecl);
8872 
8873   // typedef __va_list_tag __builtin_va_list[1];
8874   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
8875   QualType VaListTagArrayType = Context->getConstantArrayType(
8876       VaListTagTypedefType, Size, nullptr, ArrayType::Normal, 0);
8877 
8878   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
8879 }
8880 
8881 static TypedefDecl *CreateVaListDecl(const ASTContext *Context,
8882                                      TargetInfo::BuiltinVaListKind Kind) {
8883   switch (Kind) {
8884   case TargetInfo::CharPtrBuiltinVaList:
8885     return CreateCharPtrBuiltinVaListDecl(Context);
8886   case TargetInfo::VoidPtrBuiltinVaList:
8887     return CreateVoidPtrBuiltinVaListDecl(Context);
8888   case TargetInfo::AArch64ABIBuiltinVaList:
8889     return CreateAArch64ABIBuiltinVaListDecl(Context);
8890   case TargetInfo::PowerABIBuiltinVaList:
8891     return CreatePowerABIBuiltinVaListDecl(Context);
8892   case TargetInfo::X86_64ABIBuiltinVaList:
8893     return CreateX86_64ABIBuiltinVaListDecl(Context);
8894   case TargetInfo::PNaClABIBuiltinVaList:
8895     return CreatePNaClABIBuiltinVaListDecl(Context);
8896   case TargetInfo::AAPCSABIBuiltinVaList:
8897     return CreateAAPCSABIBuiltinVaListDecl(Context);
8898   case TargetInfo::SystemZBuiltinVaList:
8899     return CreateSystemZBuiltinVaListDecl(Context);
8900   case TargetInfo::HexagonBuiltinVaList:
8901     return CreateHexagonBuiltinVaListDecl(Context);
8902   }
8903 
8904   llvm_unreachable("Unhandled __builtin_va_list type kind");
8905 }
8906 
8907 TypedefDecl *ASTContext::getBuiltinVaListDecl() const {
8908   if (!BuiltinVaListDecl) {
8909     BuiltinVaListDecl = CreateVaListDecl(this, Target->getBuiltinVaListKind());
8910     assert(BuiltinVaListDecl->isImplicit());
8911   }
8912 
8913   return BuiltinVaListDecl;
8914 }
8915 
8916 Decl *ASTContext::getVaListTagDecl() const {
8917   // Force the creation of VaListTagDecl by building the __builtin_va_list
8918   // declaration.
8919   if (!VaListTagDecl)
8920     (void)getBuiltinVaListDecl();
8921 
8922   return VaListTagDecl;
8923 }
8924 
8925 TypedefDecl *ASTContext::getBuiltinMSVaListDecl() const {
8926   if (!BuiltinMSVaListDecl)
8927     BuiltinMSVaListDecl = CreateMSVaListDecl(this);
8928 
8929   return BuiltinMSVaListDecl;
8930 }
8931 
8932 bool ASTContext::canBuiltinBeRedeclared(const FunctionDecl *FD) const {
8933   return BuiltinInfo.canBeRedeclared(FD->getBuiltinID());
8934 }
8935 
8936 void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
8937   assert(ObjCConstantStringType.isNull() &&
8938          "'NSConstantString' type already set!");
8939 
8940   ObjCConstantStringType = getObjCInterfaceType(Decl);
8941 }
8942 
8943 /// Retrieve the template name that corresponds to a non-empty
8944 /// lookup.
8945 TemplateName
8946 ASTContext::getOverloadedTemplateName(UnresolvedSetIterator Begin,
8947                                       UnresolvedSetIterator End) const {
8948   unsigned size = End - Begin;
8949   assert(size > 1 && "set is not overloaded!");
8950 
8951   void *memory = Allocate(sizeof(OverloadedTemplateStorage) +
8952                           size * sizeof(FunctionTemplateDecl*));
8953   auto *OT = new (memory) OverloadedTemplateStorage(size);
8954 
8955   NamedDecl **Storage = OT->getStorage();
8956   for (UnresolvedSetIterator I = Begin; I != End; ++I) {
8957     NamedDecl *D = *I;
8958     assert(isa<FunctionTemplateDecl>(D) ||
8959            isa<UnresolvedUsingValueDecl>(D) ||
8960            (isa<UsingShadowDecl>(D) &&
8961             isa<FunctionTemplateDecl>(D->getUnderlyingDecl())));
8962     *Storage++ = D;
8963   }
8964 
8965   return TemplateName(OT);
8966 }
8967 
8968 /// Retrieve a template name representing an unqualified-id that has been
8969 /// assumed to name a template for ADL purposes.
8970 TemplateName ASTContext::getAssumedTemplateName(DeclarationName Name) const {
8971   auto *OT = new (*this) AssumedTemplateStorage(Name);
8972   return TemplateName(OT);
8973 }
8974 
8975 /// Retrieve the template name that represents a qualified
8976 /// template name such as \c std::vector.
8977 TemplateName
8978 ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS,
8979                                      bool TemplateKeyword,
8980                                      TemplateDecl *Template) const {
8981   assert(NNS && "Missing nested-name-specifier in qualified template name");
8982 
8983   // FIXME: Canonicalization?
8984   llvm::FoldingSetNodeID ID;
8985   QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template);
8986 
8987   void *InsertPos = nullptr;
8988   QualifiedTemplateName *QTN =
8989     QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
8990   if (!QTN) {
8991     QTN = new (*this, alignof(QualifiedTemplateName))
8992         QualifiedTemplateName(NNS, TemplateKeyword, Template);
8993     QualifiedTemplateNames.InsertNode(QTN, InsertPos);
8994   }
8995 
8996   return TemplateName(QTN);
8997 }
8998 
8999 /// Retrieve the template name that represents a dependent
9000 /// template name such as \c MetaFun::template apply.
9001 TemplateName
9002 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
9003                                      const IdentifierInfo *Name) const {
9004   assert((!NNS || NNS->isDependent()) &&
9005          "Nested name specifier must be dependent");
9006 
9007   llvm::FoldingSetNodeID ID;
9008   DependentTemplateName::Profile(ID, NNS, Name);
9009 
9010   void *InsertPos = nullptr;
9011   DependentTemplateName *QTN =
9012     DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
9013 
9014   if (QTN)
9015     return TemplateName(QTN);
9016 
9017   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
9018   if (CanonNNS == NNS) {
9019     QTN = new (*this, alignof(DependentTemplateName))
9020         DependentTemplateName(NNS, Name);
9021   } else {
9022     TemplateName Canon = getDependentTemplateName(CanonNNS, Name);
9023     QTN = new (*this, alignof(DependentTemplateName))
9024         DependentTemplateName(NNS, Name, Canon);
9025     DependentTemplateName *CheckQTN =
9026       DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
9027     assert(!CheckQTN && "Dependent type name canonicalization broken");
9028     (void)CheckQTN;
9029   }
9030 
9031   DependentTemplateNames.InsertNode(QTN, InsertPos);
9032   return TemplateName(QTN);
9033 }
9034 
9035 /// Retrieve the template name that represents a dependent
9036 /// template name such as \c MetaFun::template operator+.
9037 TemplateName
9038 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
9039                                      OverloadedOperatorKind Operator) const {
9040   assert((!NNS || NNS->isDependent()) &&
9041          "Nested name specifier must be dependent");
9042 
9043   llvm::FoldingSetNodeID ID;
9044   DependentTemplateName::Profile(ID, NNS, Operator);
9045 
9046   void *InsertPos = nullptr;
9047   DependentTemplateName *QTN
9048     = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
9049 
9050   if (QTN)
9051     return TemplateName(QTN);
9052 
9053   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
9054   if (CanonNNS == NNS) {
9055     QTN = new (*this, alignof(DependentTemplateName))
9056         DependentTemplateName(NNS, Operator);
9057   } else {
9058     TemplateName Canon = getDependentTemplateName(CanonNNS, Operator);
9059     QTN = new (*this, alignof(DependentTemplateName))
9060         DependentTemplateName(NNS, Operator, Canon);
9061 
9062     DependentTemplateName *CheckQTN
9063       = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
9064     assert(!CheckQTN && "Dependent template name canonicalization broken");
9065     (void)CheckQTN;
9066   }
9067 
9068   DependentTemplateNames.InsertNode(QTN, InsertPos);
9069   return TemplateName(QTN);
9070 }
9071 
9072 TemplateName
9073 ASTContext::getSubstTemplateTemplateParm(TemplateTemplateParmDecl *param,
9074                                          TemplateName replacement) const {
9075   llvm::FoldingSetNodeID ID;
9076   SubstTemplateTemplateParmStorage::Profile(ID, param, replacement);
9077 
9078   void *insertPos = nullptr;
9079   SubstTemplateTemplateParmStorage *subst
9080     = SubstTemplateTemplateParms.FindNodeOrInsertPos(ID, insertPos);
9081 
9082   if (!subst) {
9083     subst = new (*this) SubstTemplateTemplateParmStorage(param, replacement);
9084     SubstTemplateTemplateParms.InsertNode(subst, insertPos);
9085   }
9086 
9087   return TemplateName(subst);
9088 }
9089 
9090 TemplateName
9091 ASTContext::getSubstTemplateTemplateParmPack(TemplateTemplateParmDecl *Param,
9092                                        const TemplateArgument &ArgPack) const {
9093   auto &Self = const_cast<ASTContext &>(*this);
9094   llvm::FoldingSetNodeID ID;
9095   SubstTemplateTemplateParmPackStorage::Profile(ID, Self, Param, ArgPack);
9096 
9097   void *InsertPos = nullptr;
9098   SubstTemplateTemplateParmPackStorage *Subst
9099     = SubstTemplateTemplateParmPacks.FindNodeOrInsertPos(ID, InsertPos);
9100 
9101   if (!Subst) {
9102     Subst = new (*this) SubstTemplateTemplateParmPackStorage(Param,
9103                                                            ArgPack.pack_size(),
9104                                                          ArgPack.pack_begin());
9105     SubstTemplateTemplateParmPacks.InsertNode(Subst, InsertPos);
9106   }
9107 
9108   return TemplateName(Subst);
9109 }
9110 
9111 /// getFromTargetType - Given one of the integer types provided by
9112 /// TargetInfo, produce the corresponding type. The unsigned @p Type
9113 /// is actually a value of type @c TargetInfo::IntType.
9114 CanQualType ASTContext::getFromTargetType(unsigned Type) const {
9115   switch (Type) {
9116   case TargetInfo::NoInt: return {};
9117   case TargetInfo::SignedChar: return SignedCharTy;
9118   case TargetInfo::UnsignedChar: return UnsignedCharTy;
9119   case TargetInfo::SignedShort: return ShortTy;
9120   case TargetInfo::UnsignedShort: return UnsignedShortTy;
9121   case TargetInfo::SignedInt: return IntTy;
9122   case TargetInfo::UnsignedInt: return UnsignedIntTy;
9123   case TargetInfo::SignedLong: return LongTy;
9124   case TargetInfo::UnsignedLong: return UnsignedLongTy;
9125   case TargetInfo::SignedLongLong: return LongLongTy;
9126   case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
9127   }
9128 
9129   llvm_unreachable("Unhandled TargetInfo::IntType value");
9130 }
9131 
9132 //===----------------------------------------------------------------------===//
9133 //                        Type Predicates.
9134 //===----------------------------------------------------------------------===//
9135 
9136 /// getObjCGCAttr - Returns one of GCNone, Weak or Strong objc's
9137 /// garbage collection attribute.
9138 ///
9139 Qualifiers::GC ASTContext::getObjCGCAttrKind(QualType Ty) const {
9140   if (getLangOpts().getGC() == LangOptions::NonGC)
9141     return Qualifiers::GCNone;
9142 
9143   assert(getLangOpts().ObjC);
9144   Qualifiers::GC GCAttrs = Ty.getObjCGCAttr();
9145 
9146   // Default behaviour under objective-C's gc is for ObjC pointers
9147   // (or pointers to them) be treated as though they were declared
9148   // as __strong.
9149   if (GCAttrs == Qualifiers::GCNone) {
9150     if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType())
9151       return Qualifiers::Strong;
9152     else if (Ty->isPointerType())
9153       return getObjCGCAttrKind(Ty->castAs<PointerType>()->getPointeeType());
9154   } else {
9155     // It's not valid to set GC attributes on anything that isn't a
9156     // pointer.
9157 #ifndef NDEBUG
9158     QualType CT = Ty->getCanonicalTypeInternal();
9159     while (const auto *AT = dyn_cast<ArrayType>(CT))
9160       CT = AT->getElementType();
9161     assert(CT->isAnyPointerType() || CT->isBlockPointerType());
9162 #endif
9163   }
9164   return GCAttrs;
9165 }
9166 
9167 //===----------------------------------------------------------------------===//
9168 //                        Type Compatibility Testing
9169 //===----------------------------------------------------------------------===//
9170 
9171 /// areCompatVectorTypes - Return true if the two specified vector types are
9172 /// compatible.
9173 static bool areCompatVectorTypes(const VectorType *LHS,
9174                                  const VectorType *RHS) {
9175   assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified());
9176   return LHS->getElementType() == RHS->getElementType() &&
9177          LHS->getNumElements() == RHS->getNumElements();
9178 }
9179 
9180 /// areCompatMatrixTypes - Return true if the two specified matrix types are
9181 /// compatible.
9182 static bool areCompatMatrixTypes(const ConstantMatrixType *LHS,
9183                                  const ConstantMatrixType *RHS) {
9184   assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified());
9185   return LHS->getElementType() == RHS->getElementType() &&
9186          LHS->getNumRows() == RHS->getNumRows() &&
9187          LHS->getNumColumns() == RHS->getNumColumns();
9188 }
9189 
9190 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec,
9191                                           QualType SecondVec) {
9192   assert(FirstVec->isVectorType() && "FirstVec should be a vector type");
9193   assert(SecondVec->isVectorType() && "SecondVec should be a vector type");
9194 
9195   if (hasSameUnqualifiedType(FirstVec, SecondVec))
9196     return true;
9197 
9198   // Treat Neon vector types and most AltiVec vector types as if they are the
9199   // equivalent GCC vector types.
9200   const auto *First = FirstVec->castAs<VectorType>();
9201   const auto *Second = SecondVec->castAs<VectorType>();
9202   if (First->getNumElements() == Second->getNumElements() &&
9203       hasSameType(First->getElementType(), Second->getElementType()) &&
9204       First->getVectorKind() != VectorType::AltiVecPixel &&
9205       First->getVectorKind() != VectorType::AltiVecBool &&
9206       Second->getVectorKind() != VectorType::AltiVecPixel &&
9207       Second->getVectorKind() != VectorType::AltiVecBool &&
9208       First->getVectorKind() != VectorType::SveFixedLengthDataVector &&
9209       First->getVectorKind() != VectorType::SveFixedLengthPredicateVector &&
9210       Second->getVectorKind() != VectorType::SveFixedLengthDataVector &&
9211       Second->getVectorKind() != VectorType::SveFixedLengthPredicateVector)
9212     return true;
9213 
9214   return false;
9215 }
9216 
9217 /// getSVETypeSize - Return SVE vector or predicate register size.
9218 static uint64_t getSVETypeSize(ASTContext &Context, const BuiltinType *Ty) {
9219   assert(Ty->isVLSTBuiltinType() && "Invalid SVE Type");
9220   return Ty->getKind() == BuiltinType::SveBool
9221              ? (Context.getLangOpts().VScaleMin * 128) / Context.getCharWidth()
9222              : Context.getLangOpts().VScaleMin * 128;
9223 }
9224 
9225 bool ASTContext::areCompatibleSveTypes(QualType FirstType,
9226                                        QualType SecondType) {
9227   assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) ||
9228           (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) &&
9229          "Expected SVE builtin type and vector type!");
9230 
9231   auto IsValidCast = [this](QualType FirstType, QualType SecondType) {
9232     if (const auto *BT = FirstType->getAs<BuiltinType>()) {
9233       if (const auto *VT = SecondType->getAs<VectorType>()) {
9234         // Predicates have the same representation as uint8 so we also have to
9235         // check the kind to make these types incompatible.
9236         if (VT->getVectorKind() == VectorType::SveFixedLengthPredicateVector)
9237           return BT->getKind() == BuiltinType::SveBool;
9238         else if (VT->getVectorKind() == VectorType::SveFixedLengthDataVector)
9239           return VT->getElementType().getCanonicalType() ==
9240                  FirstType->getSveEltType(*this);
9241         else if (VT->getVectorKind() == VectorType::GenericVector)
9242           return getTypeSize(SecondType) == getSVETypeSize(*this, BT) &&
9243                  hasSameType(VT->getElementType(),
9244                              getBuiltinVectorTypeInfo(BT).ElementType);
9245       }
9246     }
9247     return false;
9248   };
9249 
9250   return IsValidCast(FirstType, SecondType) ||
9251          IsValidCast(SecondType, FirstType);
9252 }
9253 
9254 bool ASTContext::areLaxCompatibleSveTypes(QualType FirstType,
9255                                           QualType SecondType) {
9256   assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) ||
9257           (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) &&
9258          "Expected SVE builtin type and vector type!");
9259 
9260   auto IsLaxCompatible = [this](QualType FirstType, QualType SecondType) {
9261     const auto *BT = FirstType->getAs<BuiltinType>();
9262     if (!BT)
9263       return false;
9264 
9265     const auto *VecTy = SecondType->getAs<VectorType>();
9266     if (VecTy &&
9267         (VecTy->getVectorKind() == VectorType::SveFixedLengthDataVector ||
9268          VecTy->getVectorKind() == VectorType::GenericVector)) {
9269       const LangOptions::LaxVectorConversionKind LVCKind =
9270           getLangOpts().getLaxVectorConversions();
9271 
9272       // Can not convert between sve predicates and sve vectors because of
9273       // different size.
9274       if (BT->getKind() == BuiltinType::SveBool &&
9275           VecTy->getVectorKind() == VectorType::SveFixedLengthDataVector)
9276         return false;
9277 
9278       // If __ARM_FEATURE_SVE_BITS != N do not allow GNU vector lax conversion.
9279       // "Whenever __ARM_FEATURE_SVE_BITS==N, GNUT implicitly
9280       // converts to VLAT and VLAT implicitly converts to GNUT."
9281       // ACLE Spec Version 00bet6, 3.7.3.2. Behavior common to vectors and
9282       // predicates.
9283       if (VecTy->getVectorKind() == VectorType::GenericVector &&
9284           getTypeSize(SecondType) != getSVETypeSize(*this, BT))
9285         return false;
9286 
9287       // If -flax-vector-conversions=all is specified, the types are
9288       // certainly compatible.
9289       if (LVCKind == LangOptions::LaxVectorConversionKind::All)
9290         return true;
9291 
9292       // If -flax-vector-conversions=integer is specified, the types are
9293       // compatible if the elements are integer types.
9294       if (LVCKind == LangOptions::LaxVectorConversionKind::Integer)
9295         return VecTy->getElementType().getCanonicalType()->isIntegerType() &&
9296                FirstType->getSveEltType(*this)->isIntegerType();
9297     }
9298 
9299     return false;
9300   };
9301 
9302   return IsLaxCompatible(FirstType, SecondType) ||
9303          IsLaxCompatible(SecondType, FirstType);
9304 }
9305 
9306 bool ASTContext::hasDirectOwnershipQualifier(QualType Ty) const {
9307   while (true) {
9308     // __strong id
9309     if (const AttributedType *Attr = dyn_cast<AttributedType>(Ty)) {
9310       if (Attr->getAttrKind() == attr::ObjCOwnership)
9311         return true;
9312 
9313       Ty = Attr->getModifiedType();
9314 
9315     // X *__strong (...)
9316     } else if (const ParenType *Paren = dyn_cast<ParenType>(Ty)) {
9317       Ty = Paren->getInnerType();
9318 
9319     // We do not want to look through typedefs, typeof(expr),
9320     // typeof(type), or any other way that the type is somehow
9321     // abstracted.
9322     } else {
9323       return false;
9324     }
9325   }
9326 }
9327 
9328 //===----------------------------------------------------------------------===//
9329 // ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's.
9330 //===----------------------------------------------------------------------===//
9331 
9332 /// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the
9333 /// inheritance hierarchy of 'rProto'.
9334 bool
9335 ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto,
9336                                            ObjCProtocolDecl *rProto) const {
9337   if (declaresSameEntity(lProto, rProto))
9338     return true;
9339   for (auto *PI : rProto->protocols())
9340     if (ProtocolCompatibleWithProtocol(lProto, PI))
9341       return true;
9342   return false;
9343 }
9344 
9345 /// ObjCQualifiedClassTypesAreCompatible - compare  Class<pr,...> and
9346 /// Class<pr1, ...>.
9347 bool ASTContext::ObjCQualifiedClassTypesAreCompatible(
9348     const ObjCObjectPointerType *lhs, const ObjCObjectPointerType *rhs) {
9349   for (auto *lhsProto : lhs->quals()) {
9350     bool match = false;
9351     for (auto *rhsProto : rhs->quals()) {
9352       if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto)) {
9353         match = true;
9354         break;
9355       }
9356     }
9357     if (!match)
9358       return false;
9359   }
9360   return true;
9361 }
9362 
9363 /// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an
9364 /// ObjCQualifiedIDType.
9365 bool ASTContext::ObjCQualifiedIdTypesAreCompatible(
9366     const ObjCObjectPointerType *lhs, const ObjCObjectPointerType *rhs,
9367     bool compare) {
9368   // Allow id<P..> and an 'id' in all cases.
9369   if (lhs->isObjCIdType() || rhs->isObjCIdType())
9370     return true;
9371 
9372   // Don't allow id<P..> to convert to Class or Class<P..> in either direction.
9373   if (lhs->isObjCClassType() || lhs->isObjCQualifiedClassType() ||
9374       rhs->isObjCClassType() || rhs->isObjCQualifiedClassType())
9375     return false;
9376 
9377   if (lhs->isObjCQualifiedIdType()) {
9378     if (rhs->qual_empty()) {
9379       // If the RHS is a unqualified interface pointer "NSString*",
9380       // make sure we check the class hierarchy.
9381       if (ObjCInterfaceDecl *rhsID = rhs->getInterfaceDecl()) {
9382         for (auto *I : lhs->quals()) {
9383           // when comparing an id<P> on lhs with a static type on rhs,
9384           // see if static class implements all of id's protocols, directly or
9385           // through its super class and categories.
9386           if (!rhsID->ClassImplementsProtocol(I, true))
9387             return false;
9388         }
9389       }
9390       // If there are no qualifiers and no interface, we have an 'id'.
9391       return true;
9392     }
9393     // Both the right and left sides have qualifiers.
9394     for (auto *lhsProto : lhs->quals()) {
9395       bool match = false;
9396 
9397       // when comparing an id<P> on lhs with a static type on rhs,
9398       // see if static class implements all of id's protocols, directly or
9399       // through its super class and categories.
9400       for (auto *rhsProto : rhs->quals()) {
9401         if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
9402             (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
9403           match = true;
9404           break;
9405         }
9406       }
9407       // If the RHS is a qualified interface pointer "NSString<P>*",
9408       // make sure we check the class hierarchy.
9409       if (ObjCInterfaceDecl *rhsID = rhs->getInterfaceDecl()) {
9410         for (auto *I : lhs->quals()) {
9411           // when comparing an id<P> on lhs with a static type on rhs,
9412           // see if static class implements all of id's protocols, directly or
9413           // through its super class and categories.
9414           if (rhsID->ClassImplementsProtocol(I, true)) {
9415             match = true;
9416             break;
9417           }
9418         }
9419       }
9420       if (!match)
9421         return false;
9422     }
9423 
9424     return true;
9425   }
9426 
9427   assert(rhs->isObjCQualifiedIdType() && "One of the LHS/RHS should be id<x>");
9428 
9429   if (lhs->getInterfaceType()) {
9430     // If both the right and left sides have qualifiers.
9431     for (auto *lhsProto : lhs->quals()) {
9432       bool match = false;
9433 
9434       // when comparing an id<P> on rhs with a static type on lhs,
9435       // see if static class implements all of id's protocols, directly or
9436       // through its super class and categories.
9437       // First, lhs protocols in the qualifier list must be found, direct
9438       // or indirect in rhs's qualifier list or it is a mismatch.
9439       for (auto *rhsProto : rhs->quals()) {
9440         if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
9441             (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
9442           match = true;
9443           break;
9444         }
9445       }
9446       if (!match)
9447         return false;
9448     }
9449 
9450     // Static class's protocols, or its super class or category protocols
9451     // must be found, direct or indirect in rhs's qualifier list or it is a mismatch.
9452     if (ObjCInterfaceDecl *lhsID = lhs->getInterfaceDecl()) {
9453       llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols;
9454       CollectInheritedProtocols(lhsID, LHSInheritedProtocols);
9455       // This is rather dubious but matches gcc's behavior. If lhs has
9456       // no type qualifier and its class has no static protocol(s)
9457       // assume that it is mismatch.
9458       if (LHSInheritedProtocols.empty() && lhs->qual_empty())
9459         return false;
9460       for (auto *lhsProto : LHSInheritedProtocols) {
9461         bool match = false;
9462         for (auto *rhsProto : rhs->quals()) {
9463           if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
9464               (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
9465             match = true;
9466             break;
9467           }
9468         }
9469         if (!match)
9470           return false;
9471       }
9472     }
9473     return true;
9474   }
9475   return false;
9476 }
9477 
9478 /// canAssignObjCInterfaces - Return true if the two interface types are
9479 /// compatible for assignment from RHS to LHS.  This handles validation of any
9480 /// protocol qualifiers on the LHS or RHS.
9481 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT,
9482                                          const ObjCObjectPointerType *RHSOPT) {
9483   const ObjCObjectType* LHS = LHSOPT->getObjectType();
9484   const ObjCObjectType* RHS = RHSOPT->getObjectType();
9485 
9486   // If either type represents the built-in 'id' type, return true.
9487   if (LHS->isObjCUnqualifiedId() || RHS->isObjCUnqualifiedId())
9488     return true;
9489 
9490   // Function object that propagates a successful result or handles
9491   // __kindof types.
9492   auto finish = [&](bool succeeded) -> bool {
9493     if (succeeded)
9494       return true;
9495 
9496     if (!RHS->isKindOfType())
9497       return false;
9498 
9499     // Strip off __kindof and protocol qualifiers, then check whether
9500     // we can assign the other way.
9501     return canAssignObjCInterfaces(RHSOPT->stripObjCKindOfTypeAndQuals(*this),
9502                                    LHSOPT->stripObjCKindOfTypeAndQuals(*this));
9503   };
9504 
9505   // Casts from or to id<P> are allowed when the other side has compatible
9506   // protocols.
9507   if (LHS->isObjCQualifiedId() || RHS->isObjCQualifiedId()) {
9508     return finish(ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT, false));
9509   }
9510 
9511   // Verify protocol compatibility for casts from Class<P1> to Class<P2>.
9512   if (LHS->isObjCQualifiedClass() && RHS->isObjCQualifiedClass()) {
9513     return finish(ObjCQualifiedClassTypesAreCompatible(LHSOPT, RHSOPT));
9514   }
9515 
9516   // Casts from Class to Class<Foo>, or vice-versa, are allowed.
9517   if (LHS->isObjCClass() && RHS->isObjCClass()) {
9518     return true;
9519   }
9520 
9521   // If we have 2 user-defined types, fall into that path.
9522   if (LHS->getInterface() && RHS->getInterface()) {
9523     return finish(canAssignObjCInterfaces(LHS, RHS));
9524   }
9525 
9526   return false;
9527 }
9528 
9529 /// canAssignObjCInterfacesInBlockPointer - This routine is specifically written
9530 /// for providing type-safety for objective-c pointers used to pass/return
9531 /// arguments in block literals. When passed as arguments, passing 'A*' where
9532 /// 'id' is expected is not OK. Passing 'Sub *" where 'Super *" is expected is
9533 /// not OK. For the return type, the opposite is not OK.
9534 bool ASTContext::canAssignObjCInterfacesInBlockPointer(
9535                                          const ObjCObjectPointerType *LHSOPT,
9536                                          const ObjCObjectPointerType *RHSOPT,
9537                                          bool BlockReturnType) {
9538 
9539   // Function object that propagates a successful result or handles
9540   // __kindof types.
9541   auto finish = [&](bool succeeded) -> bool {
9542     if (succeeded)
9543       return true;
9544 
9545     const ObjCObjectPointerType *Expected = BlockReturnType ? RHSOPT : LHSOPT;
9546     if (!Expected->isKindOfType())
9547       return false;
9548 
9549     // Strip off __kindof and protocol qualifiers, then check whether
9550     // we can assign the other way.
9551     return canAssignObjCInterfacesInBlockPointer(
9552              RHSOPT->stripObjCKindOfTypeAndQuals(*this),
9553              LHSOPT->stripObjCKindOfTypeAndQuals(*this),
9554              BlockReturnType);
9555   };
9556 
9557   if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType())
9558     return true;
9559 
9560   if (LHSOPT->isObjCBuiltinType()) {
9561     return finish(RHSOPT->isObjCBuiltinType() ||
9562                   RHSOPT->isObjCQualifiedIdType());
9563   }
9564 
9565   if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType()) {
9566     if (getLangOpts().CompatibilityQualifiedIdBlockParamTypeChecking)
9567       // Use for block parameters previous type checking for compatibility.
9568       return finish(ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT, false) ||
9569                     // Or corrected type checking as in non-compat mode.
9570                     (!BlockReturnType &&
9571                      ObjCQualifiedIdTypesAreCompatible(RHSOPT, LHSOPT, false)));
9572     else
9573       return finish(ObjCQualifiedIdTypesAreCompatible(
9574           (BlockReturnType ? LHSOPT : RHSOPT),
9575           (BlockReturnType ? RHSOPT : LHSOPT), false));
9576   }
9577 
9578   const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType();
9579   const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType();
9580   if (LHS && RHS)  { // We have 2 user-defined types.
9581     if (LHS != RHS) {
9582       if (LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
9583         return finish(BlockReturnType);
9584       if (RHS->getDecl()->isSuperClassOf(LHS->getDecl()))
9585         return finish(!BlockReturnType);
9586     }
9587     else
9588       return true;
9589   }
9590   return false;
9591 }
9592 
9593 /// Comparison routine for Objective-C protocols to be used with
9594 /// llvm::array_pod_sort.
9595 static int compareObjCProtocolsByName(ObjCProtocolDecl * const *lhs,
9596                                       ObjCProtocolDecl * const *rhs) {
9597   return (*lhs)->getName().compare((*rhs)->getName());
9598 }
9599 
9600 /// getIntersectionOfProtocols - This routine finds the intersection of set
9601 /// of protocols inherited from two distinct objective-c pointer objects with
9602 /// the given common base.
9603 /// It is used to build composite qualifier list of the composite type of
9604 /// the conditional expression involving two objective-c pointer objects.
9605 static
9606 void getIntersectionOfProtocols(ASTContext &Context,
9607                                 const ObjCInterfaceDecl *CommonBase,
9608                                 const ObjCObjectPointerType *LHSOPT,
9609                                 const ObjCObjectPointerType *RHSOPT,
9610       SmallVectorImpl<ObjCProtocolDecl *> &IntersectionSet) {
9611 
9612   const ObjCObjectType* LHS = LHSOPT->getObjectType();
9613   const ObjCObjectType* RHS = RHSOPT->getObjectType();
9614   assert(LHS->getInterface() && "LHS must have an interface base");
9615   assert(RHS->getInterface() && "RHS must have an interface base");
9616 
9617   // Add all of the protocols for the LHS.
9618   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSProtocolSet;
9619 
9620   // Start with the protocol qualifiers.
9621   for (auto proto : LHS->quals()) {
9622     Context.CollectInheritedProtocols(proto, LHSProtocolSet);
9623   }
9624 
9625   // Also add the protocols associated with the LHS interface.
9626   Context.CollectInheritedProtocols(LHS->getInterface(), LHSProtocolSet);
9627 
9628   // Add all of the protocols for the RHS.
9629   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> RHSProtocolSet;
9630 
9631   // Start with the protocol qualifiers.
9632   for (auto proto : RHS->quals()) {
9633     Context.CollectInheritedProtocols(proto, RHSProtocolSet);
9634   }
9635 
9636   // Also add the protocols associated with the RHS interface.
9637   Context.CollectInheritedProtocols(RHS->getInterface(), RHSProtocolSet);
9638 
9639   // Compute the intersection of the collected protocol sets.
9640   for (auto proto : LHSProtocolSet) {
9641     if (RHSProtocolSet.count(proto))
9642       IntersectionSet.push_back(proto);
9643   }
9644 
9645   // Compute the set of protocols that is implied by either the common type or
9646   // the protocols within the intersection.
9647   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> ImpliedProtocols;
9648   Context.CollectInheritedProtocols(CommonBase, ImpliedProtocols);
9649 
9650   // Remove any implied protocols from the list of inherited protocols.
9651   if (!ImpliedProtocols.empty()) {
9652     llvm::erase_if(IntersectionSet, [&](ObjCProtocolDecl *proto) -> bool {
9653       return ImpliedProtocols.contains(proto);
9654     });
9655   }
9656 
9657   // Sort the remaining protocols by name.
9658   llvm::array_pod_sort(IntersectionSet.begin(), IntersectionSet.end(),
9659                        compareObjCProtocolsByName);
9660 }
9661 
9662 /// Determine whether the first type is a subtype of the second.
9663 static bool canAssignObjCObjectTypes(ASTContext &ctx, QualType lhs,
9664                                      QualType rhs) {
9665   // Common case: two object pointers.
9666   const auto *lhsOPT = lhs->getAs<ObjCObjectPointerType>();
9667   const auto *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
9668   if (lhsOPT && rhsOPT)
9669     return ctx.canAssignObjCInterfaces(lhsOPT, rhsOPT);
9670 
9671   // Two block pointers.
9672   const auto *lhsBlock = lhs->getAs<BlockPointerType>();
9673   const auto *rhsBlock = rhs->getAs<BlockPointerType>();
9674   if (lhsBlock && rhsBlock)
9675     return ctx.typesAreBlockPointerCompatible(lhs, rhs);
9676 
9677   // If either is an unqualified 'id' and the other is a block, it's
9678   // acceptable.
9679   if ((lhsOPT && lhsOPT->isObjCIdType() && rhsBlock) ||
9680       (rhsOPT && rhsOPT->isObjCIdType() && lhsBlock))
9681     return true;
9682 
9683   return false;
9684 }
9685 
9686 // Check that the given Objective-C type argument lists are equivalent.
9687 static bool sameObjCTypeArgs(ASTContext &ctx,
9688                              const ObjCInterfaceDecl *iface,
9689                              ArrayRef<QualType> lhsArgs,
9690                              ArrayRef<QualType> rhsArgs,
9691                              bool stripKindOf) {
9692   if (lhsArgs.size() != rhsArgs.size())
9693     return false;
9694 
9695   ObjCTypeParamList *typeParams = iface->getTypeParamList();
9696   for (unsigned i = 0, n = lhsArgs.size(); i != n; ++i) {
9697     if (ctx.hasSameType(lhsArgs[i], rhsArgs[i]))
9698       continue;
9699 
9700     switch (typeParams->begin()[i]->getVariance()) {
9701     case ObjCTypeParamVariance::Invariant:
9702       if (!stripKindOf ||
9703           !ctx.hasSameType(lhsArgs[i].stripObjCKindOfType(ctx),
9704                            rhsArgs[i].stripObjCKindOfType(ctx))) {
9705         return false;
9706       }
9707       break;
9708 
9709     case ObjCTypeParamVariance::Covariant:
9710       if (!canAssignObjCObjectTypes(ctx, lhsArgs[i], rhsArgs[i]))
9711         return false;
9712       break;
9713 
9714     case ObjCTypeParamVariance::Contravariant:
9715       if (!canAssignObjCObjectTypes(ctx, rhsArgs[i], lhsArgs[i]))
9716         return false;
9717       break;
9718     }
9719   }
9720 
9721   return true;
9722 }
9723 
9724 QualType ASTContext::areCommonBaseCompatible(
9725            const ObjCObjectPointerType *Lptr,
9726            const ObjCObjectPointerType *Rptr) {
9727   const ObjCObjectType *LHS = Lptr->getObjectType();
9728   const ObjCObjectType *RHS = Rptr->getObjectType();
9729   const ObjCInterfaceDecl* LDecl = LHS->getInterface();
9730   const ObjCInterfaceDecl* RDecl = RHS->getInterface();
9731 
9732   if (!LDecl || !RDecl)
9733     return {};
9734 
9735   // When either LHS or RHS is a kindof type, we should return a kindof type.
9736   // For example, for common base of kindof(ASub1) and kindof(ASub2), we return
9737   // kindof(A).
9738   bool anyKindOf = LHS->isKindOfType() || RHS->isKindOfType();
9739 
9740   // Follow the left-hand side up the class hierarchy until we either hit a
9741   // root or find the RHS. Record the ancestors in case we don't find it.
9742   llvm::SmallDenseMap<const ObjCInterfaceDecl *, const ObjCObjectType *, 4>
9743     LHSAncestors;
9744   while (true) {
9745     // Record this ancestor. We'll need this if the common type isn't in the
9746     // path from the LHS to the root.
9747     LHSAncestors[LHS->getInterface()->getCanonicalDecl()] = LHS;
9748 
9749     if (declaresSameEntity(LHS->getInterface(), RDecl)) {
9750       // Get the type arguments.
9751       ArrayRef<QualType> LHSTypeArgs = LHS->getTypeArgsAsWritten();
9752       bool anyChanges = false;
9753       if (LHS->isSpecialized() && RHS->isSpecialized()) {
9754         // Both have type arguments, compare them.
9755         if (!sameObjCTypeArgs(*this, LHS->getInterface(),
9756                               LHS->getTypeArgs(), RHS->getTypeArgs(),
9757                               /*stripKindOf=*/true))
9758           return {};
9759       } else if (LHS->isSpecialized() != RHS->isSpecialized()) {
9760         // If only one has type arguments, the result will not have type
9761         // arguments.
9762         LHSTypeArgs = {};
9763         anyChanges = true;
9764       }
9765 
9766       // Compute the intersection of protocols.
9767       SmallVector<ObjCProtocolDecl *, 8> Protocols;
9768       getIntersectionOfProtocols(*this, LHS->getInterface(), Lptr, Rptr,
9769                                  Protocols);
9770       if (!Protocols.empty())
9771         anyChanges = true;
9772 
9773       // If anything in the LHS will have changed, build a new result type.
9774       // If we need to return a kindof type but LHS is not a kindof type, we
9775       // build a new result type.
9776       if (anyChanges || LHS->isKindOfType() != anyKindOf) {
9777         QualType Result = getObjCInterfaceType(LHS->getInterface());
9778         Result = getObjCObjectType(Result, LHSTypeArgs, Protocols,
9779                                    anyKindOf || LHS->isKindOfType());
9780         return getObjCObjectPointerType(Result);
9781       }
9782 
9783       return getObjCObjectPointerType(QualType(LHS, 0));
9784     }
9785 
9786     // Find the superclass.
9787     QualType LHSSuperType = LHS->getSuperClassType();
9788     if (LHSSuperType.isNull())
9789       break;
9790 
9791     LHS = LHSSuperType->castAs<ObjCObjectType>();
9792   }
9793 
9794   // We didn't find anything by following the LHS to its root; now check
9795   // the RHS against the cached set of ancestors.
9796   while (true) {
9797     auto KnownLHS = LHSAncestors.find(RHS->getInterface()->getCanonicalDecl());
9798     if (KnownLHS != LHSAncestors.end()) {
9799       LHS = KnownLHS->second;
9800 
9801       // Get the type arguments.
9802       ArrayRef<QualType> RHSTypeArgs = RHS->getTypeArgsAsWritten();
9803       bool anyChanges = false;
9804       if (LHS->isSpecialized() && RHS->isSpecialized()) {
9805         // Both have type arguments, compare them.
9806         if (!sameObjCTypeArgs(*this, LHS->getInterface(),
9807                               LHS->getTypeArgs(), RHS->getTypeArgs(),
9808                               /*stripKindOf=*/true))
9809           return {};
9810       } else if (LHS->isSpecialized() != RHS->isSpecialized()) {
9811         // If only one has type arguments, the result will not have type
9812         // arguments.
9813         RHSTypeArgs = {};
9814         anyChanges = true;
9815       }
9816 
9817       // Compute the intersection of protocols.
9818       SmallVector<ObjCProtocolDecl *, 8> Protocols;
9819       getIntersectionOfProtocols(*this, RHS->getInterface(), Lptr, Rptr,
9820                                  Protocols);
9821       if (!Protocols.empty())
9822         anyChanges = true;
9823 
9824       // If we need to return a kindof type but RHS is not a kindof type, we
9825       // build a new result type.
9826       if (anyChanges || RHS->isKindOfType() != anyKindOf) {
9827         QualType Result = getObjCInterfaceType(RHS->getInterface());
9828         Result = getObjCObjectType(Result, RHSTypeArgs, Protocols,
9829                                    anyKindOf || RHS->isKindOfType());
9830         return getObjCObjectPointerType(Result);
9831       }
9832 
9833       return getObjCObjectPointerType(QualType(RHS, 0));
9834     }
9835 
9836     // Find the superclass of the RHS.
9837     QualType RHSSuperType = RHS->getSuperClassType();
9838     if (RHSSuperType.isNull())
9839       break;
9840 
9841     RHS = RHSSuperType->castAs<ObjCObjectType>();
9842   }
9843 
9844   return {};
9845 }
9846 
9847 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS,
9848                                          const ObjCObjectType *RHS) {
9849   assert(LHS->getInterface() && "LHS is not an interface type");
9850   assert(RHS->getInterface() && "RHS is not an interface type");
9851 
9852   // Verify that the base decls are compatible: the RHS must be a subclass of
9853   // the LHS.
9854   ObjCInterfaceDecl *LHSInterface = LHS->getInterface();
9855   bool IsSuperClass = LHSInterface->isSuperClassOf(RHS->getInterface());
9856   if (!IsSuperClass)
9857     return false;
9858 
9859   // If the LHS has protocol qualifiers, determine whether all of them are
9860   // satisfied by the RHS (i.e., the RHS has a superset of the protocols in the
9861   // LHS).
9862   if (LHS->getNumProtocols() > 0) {
9863     // OK if conversion of LHS to SuperClass results in narrowing of types
9864     // ; i.e., SuperClass may implement at least one of the protocols
9865     // in LHS's protocol list. Example, SuperObj<P1> = lhs<P1,P2> is ok.
9866     // But not SuperObj<P1,P2,P3> = lhs<P1,P2>.
9867     llvm::SmallPtrSet<ObjCProtocolDecl *, 8> SuperClassInheritedProtocols;
9868     CollectInheritedProtocols(RHS->getInterface(), SuperClassInheritedProtocols);
9869     // Also, if RHS has explicit quelifiers, include them for comparing with LHS's
9870     // qualifiers.
9871     for (auto *RHSPI : RHS->quals())
9872       CollectInheritedProtocols(RHSPI, SuperClassInheritedProtocols);
9873     // If there is no protocols associated with RHS, it is not a match.
9874     if (SuperClassInheritedProtocols.empty())
9875       return false;
9876 
9877     for (const auto *LHSProto : LHS->quals()) {
9878       bool SuperImplementsProtocol = false;
9879       for (auto *SuperClassProto : SuperClassInheritedProtocols)
9880         if (SuperClassProto->lookupProtocolNamed(LHSProto->getIdentifier())) {
9881           SuperImplementsProtocol = true;
9882           break;
9883         }
9884       if (!SuperImplementsProtocol)
9885         return false;
9886     }
9887   }
9888 
9889   // If the LHS is specialized, we may need to check type arguments.
9890   if (LHS->isSpecialized()) {
9891     // Follow the superclass chain until we've matched the LHS class in the
9892     // hierarchy. This substitutes type arguments through.
9893     const ObjCObjectType *RHSSuper = RHS;
9894     while (!declaresSameEntity(RHSSuper->getInterface(), LHSInterface))
9895       RHSSuper = RHSSuper->getSuperClassType()->castAs<ObjCObjectType>();
9896 
9897     // If the RHS is specializd, compare type arguments.
9898     if (RHSSuper->isSpecialized() &&
9899         !sameObjCTypeArgs(*this, LHS->getInterface(),
9900                           LHS->getTypeArgs(), RHSSuper->getTypeArgs(),
9901                           /*stripKindOf=*/true)) {
9902       return false;
9903     }
9904   }
9905 
9906   return true;
9907 }
9908 
9909 bool ASTContext::areComparableObjCPointerTypes(QualType LHS, QualType RHS) {
9910   // get the "pointed to" types
9911   const auto *LHSOPT = LHS->getAs<ObjCObjectPointerType>();
9912   const auto *RHSOPT = RHS->getAs<ObjCObjectPointerType>();
9913 
9914   if (!LHSOPT || !RHSOPT)
9915     return false;
9916 
9917   return canAssignObjCInterfaces(LHSOPT, RHSOPT) ||
9918          canAssignObjCInterfaces(RHSOPT, LHSOPT);
9919 }
9920 
9921 bool ASTContext::canBindObjCObjectType(QualType To, QualType From) {
9922   return canAssignObjCInterfaces(
9923       getObjCObjectPointerType(To)->castAs<ObjCObjectPointerType>(),
9924       getObjCObjectPointerType(From)->castAs<ObjCObjectPointerType>());
9925 }
9926 
9927 /// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
9928 /// both shall have the identically qualified version of a compatible type.
9929 /// C99 6.2.7p1: Two types have compatible types if their types are the
9930 /// same. See 6.7.[2,3,5] for additional rules.
9931 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS,
9932                                     bool CompareUnqualified) {
9933   if (getLangOpts().CPlusPlus)
9934     return hasSameType(LHS, RHS);
9935 
9936   return !mergeTypes(LHS, RHS, false, CompareUnqualified).isNull();
9937 }
9938 
9939 bool ASTContext::propertyTypesAreCompatible(QualType LHS, QualType RHS) {
9940   return typesAreCompatible(LHS, RHS);
9941 }
9942 
9943 bool ASTContext::typesAreBlockPointerCompatible(QualType LHS, QualType RHS) {
9944   return !mergeTypes(LHS, RHS, true).isNull();
9945 }
9946 
9947 /// mergeTransparentUnionType - if T is a transparent union type and a member
9948 /// of T is compatible with SubType, return the merged type, else return
9949 /// QualType()
9950 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType,
9951                                                bool OfBlockPointer,
9952                                                bool Unqualified) {
9953   if (const RecordType *UT = T->getAsUnionType()) {
9954     RecordDecl *UD = UT->getDecl();
9955     if (UD->hasAttr<TransparentUnionAttr>()) {
9956       for (const auto *I : UD->fields()) {
9957         QualType ET = I->getType().getUnqualifiedType();
9958         QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified);
9959         if (!MT.isNull())
9960           return MT;
9961       }
9962     }
9963   }
9964 
9965   return {};
9966 }
9967 
9968 /// mergeFunctionParameterTypes - merge two types which appear as function
9969 /// parameter types
9970 QualType ASTContext::mergeFunctionParameterTypes(QualType lhs, QualType rhs,
9971                                                  bool OfBlockPointer,
9972                                                  bool Unqualified) {
9973   // GNU extension: two types are compatible if they appear as a function
9974   // argument, one of the types is a transparent union type and the other
9975   // type is compatible with a union member
9976   QualType lmerge = mergeTransparentUnionType(lhs, rhs, OfBlockPointer,
9977                                               Unqualified);
9978   if (!lmerge.isNull())
9979     return lmerge;
9980 
9981   QualType rmerge = mergeTransparentUnionType(rhs, lhs, OfBlockPointer,
9982                                               Unqualified);
9983   if (!rmerge.isNull())
9984     return rmerge;
9985 
9986   return mergeTypes(lhs, rhs, OfBlockPointer, Unqualified);
9987 }
9988 
9989 QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs,
9990                                         bool OfBlockPointer, bool Unqualified,
9991                                         bool AllowCXX) {
9992   const auto *lbase = lhs->castAs<FunctionType>();
9993   const auto *rbase = rhs->castAs<FunctionType>();
9994   const auto *lproto = dyn_cast<FunctionProtoType>(lbase);
9995   const auto *rproto = dyn_cast<FunctionProtoType>(rbase);
9996   bool allLTypes = true;
9997   bool allRTypes = true;
9998 
9999   // Check return type
10000   QualType retType;
10001   if (OfBlockPointer) {
10002     QualType RHS = rbase->getReturnType();
10003     QualType LHS = lbase->getReturnType();
10004     bool UnqualifiedResult = Unqualified;
10005     if (!UnqualifiedResult)
10006       UnqualifiedResult = (!RHS.hasQualifiers() && LHS.hasQualifiers());
10007     retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true);
10008   }
10009   else
10010     retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false,
10011                          Unqualified);
10012   if (retType.isNull())
10013     return {};
10014 
10015   if (Unqualified)
10016     retType = retType.getUnqualifiedType();
10017 
10018   CanQualType LRetType = getCanonicalType(lbase->getReturnType());
10019   CanQualType RRetType = getCanonicalType(rbase->getReturnType());
10020   if (Unqualified) {
10021     LRetType = LRetType.getUnqualifiedType();
10022     RRetType = RRetType.getUnqualifiedType();
10023   }
10024 
10025   if (getCanonicalType(retType) != LRetType)
10026     allLTypes = false;
10027   if (getCanonicalType(retType) != RRetType)
10028     allRTypes = false;
10029 
10030   // FIXME: double check this
10031   // FIXME: should we error if lbase->getRegParmAttr() != 0 &&
10032   //                           rbase->getRegParmAttr() != 0 &&
10033   //                           lbase->getRegParmAttr() != rbase->getRegParmAttr()?
10034   FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo();
10035   FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo();
10036 
10037   // Compatible functions must have compatible calling conventions
10038   if (lbaseInfo.getCC() != rbaseInfo.getCC())
10039     return {};
10040 
10041   // Regparm is part of the calling convention.
10042   if (lbaseInfo.getHasRegParm() != rbaseInfo.getHasRegParm())
10043     return {};
10044   if (lbaseInfo.getRegParm() != rbaseInfo.getRegParm())
10045     return {};
10046 
10047   if (lbaseInfo.getProducesResult() != rbaseInfo.getProducesResult())
10048     return {};
10049   if (lbaseInfo.getNoCallerSavedRegs() != rbaseInfo.getNoCallerSavedRegs())
10050     return {};
10051   if (lbaseInfo.getNoCfCheck() != rbaseInfo.getNoCfCheck())
10052     return {};
10053 
10054   // FIXME: some uses, e.g. conditional exprs, really want this to be 'both'.
10055   bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn();
10056 
10057   if (lbaseInfo.getNoReturn() != NoReturn)
10058     allLTypes = false;
10059   if (rbaseInfo.getNoReturn() != NoReturn)
10060     allRTypes = false;
10061 
10062   FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn);
10063 
10064   if (lproto && rproto) { // two C99 style function prototypes
10065     assert((AllowCXX ||
10066             (!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec())) &&
10067            "C++ shouldn't be here");
10068     // Compatible functions must have the same number of parameters
10069     if (lproto->getNumParams() != rproto->getNumParams())
10070       return {};
10071 
10072     // Variadic and non-variadic functions aren't compatible
10073     if (lproto->isVariadic() != rproto->isVariadic())
10074       return {};
10075 
10076     if (lproto->getMethodQuals() != rproto->getMethodQuals())
10077       return {};
10078 
10079     SmallVector<FunctionProtoType::ExtParameterInfo, 4> newParamInfos;
10080     bool canUseLeft, canUseRight;
10081     if (!mergeExtParameterInfo(lproto, rproto, canUseLeft, canUseRight,
10082                                newParamInfos))
10083       return {};
10084 
10085     if (!canUseLeft)
10086       allLTypes = false;
10087     if (!canUseRight)
10088       allRTypes = false;
10089 
10090     // Check parameter type compatibility
10091     SmallVector<QualType, 10> types;
10092     for (unsigned i = 0, n = lproto->getNumParams(); i < n; i++) {
10093       QualType lParamType = lproto->getParamType(i).getUnqualifiedType();
10094       QualType rParamType = rproto->getParamType(i).getUnqualifiedType();
10095       QualType paramType = mergeFunctionParameterTypes(
10096           lParamType, rParamType, OfBlockPointer, Unqualified);
10097       if (paramType.isNull())
10098         return {};
10099 
10100       if (Unqualified)
10101         paramType = paramType.getUnqualifiedType();
10102 
10103       types.push_back(paramType);
10104       if (Unqualified) {
10105         lParamType = lParamType.getUnqualifiedType();
10106         rParamType = rParamType.getUnqualifiedType();
10107       }
10108 
10109       if (getCanonicalType(paramType) != getCanonicalType(lParamType))
10110         allLTypes = false;
10111       if (getCanonicalType(paramType) != getCanonicalType(rParamType))
10112         allRTypes = false;
10113     }
10114 
10115     if (allLTypes) return lhs;
10116     if (allRTypes) return rhs;
10117 
10118     FunctionProtoType::ExtProtoInfo EPI = lproto->getExtProtoInfo();
10119     EPI.ExtInfo = einfo;
10120     EPI.ExtParameterInfos =
10121         newParamInfos.empty() ? nullptr : newParamInfos.data();
10122     return getFunctionType(retType, types, EPI);
10123   }
10124 
10125   if (lproto) allRTypes = false;
10126   if (rproto) allLTypes = false;
10127 
10128   const FunctionProtoType *proto = lproto ? lproto : rproto;
10129   if (proto) {
10130     assert((AllowCXX || !proto->hasExceptionSpec()) && "C++ shouldn't be here");
10131     if (proto->isVariadic())
10132       return {};
10133     // Check that the types are compatible with the types that
10134     // would result from default argument promotions (C99 6.7.5.3p15).
10135     // The only types actually affected are promotable integer
10136     // types and floats, which would be passed as a different
10137     // type depending on whether the prototype is visible.
10138     for (unsigned i = 0, n = proto->getNumParams(); i < n; ++i) {
10139       QualType paramTy = proto->getParamType(i);
10140 
10141       // Look at the converted type of enum types, since that is the type used
10142       // to pass enum values.
10143       if (const auto *Enum = paramTy->getAs<EnumType>()) {
10144         paramTy = Enum->getDecl()->getIntegerType();
10145         if (paramTy.isNull())
10146           return {};
10147       }
10148 
10149       if (paramTy->isPromotableIntegerType() ||
10150           getCanonicalType(paramTy).getUnqualifiedType() == FloatTy)
10151         return {};
10152     }
10153 
10154     if (allLTypes) return lhs;
10155     if (allRTypes) return rhs;
10156 
10157     FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo();
10158     EPI.ExtInfo = einfo;
10159     return getFunctionType(retType, proto->getParamTypes(), EPI);
10160   }
10161 
10162   if (allLTypes) return lhs;
10163   if (allRTypes) return rhs;
10164   return getFunctionNoProtoType(retType, einfo);
10165 }
10166 
10167 /// Given that we have an enum type and a non-enum type, try to merge them.
10168 static QualType mergeEnumWithInteger(ASTContext &Context, const EnumType *ET,
10169                                      QualType other, bool isBlockReturnType) {
10170   // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
10171   // a signed integer type, or an unsigned integer type.
10172   // Compatibility is based on the underlying type, not the promotion
10173   // type.
10174   QualType underlyingType = ET->getDecl()->getIntegerType();
10175   if (underlyingType.isNull())
10176     return {};
10177   if (Context.hasSameType(underlyingType, other))
10178     return other;
10179 
10180   // In block return types, we're more permissive and accept any
10181   // integral type of the same size.
10182   if (isBlockReturnType && other->isIntegerType() &&
10183       Context.getTypeSize(underlyingType) == Context.getTypeSize(other))
10184     return other;
10185 
10186   return {};
10187 }
10188 
10189 QualType ASTContext::mergeTypes(QualType LHS, QualType RHS,
10190                                 bool OfBlockPointer,
10191                                 bool Unqualified, bool BlockReturnType) {
10192   // For C++ we will not reach this code with reference types (see below),
10193   // for OpenMP variant call overloading we might.
10194   //
10195   // C++ [expr]: If an expression initially has the type "reference to T", the
10196   // type is adjusted to "T" prior to any further analysis, the expression
10197   // designates the object or function denoted by the reference, and the
10198   // expression is an lvalue unless the reference is an rvalue reference and
10199   // the expression is a function call (possibly inside parentheses).
10200   auto *LHSRefTy = LHS->getAs<ReferenceType>();
10201   auto *RHSRefTy = RHS->getAs<ReferenceType>();
10202   if (LangOpts.OpenMP && LHSRefTy && RHSRefTy &&
10203       LHS->getTypeClass() == RHS->getTypeClass())
10204     return mergeTypes(LHSRefTy->getPointeeType(), RHSRefTy->getPointeeType(),
10205                       OfBlockPointer, Unqualified, BlockReturnType);
10206   if (LHSRefTy || RHSRefTy)
10207     return {};
10208 
10209   if (Unqualified) {
10210     LHS = LHS.getUnqualifiedType();
10211     RHS = RHS.getUnqualifiedType();
10212   }
10213 
10214   QualType LHSCan = getCanonicalType(LHS),
10215            RHSCan = getCanonicalType(RHS);
10216 
10217   // If two types are identical, they are compatible.
10218   if (LHSCan == RHSCan)
10219     return LHS;
10220 
10221   // If the qualifiers are different, the types aren't compatible... mostly.
10222   Qualifiers LQuals = LHSCan.getLocalQualifiers();
10223   Qualifiers RQuals = RHSCan.getLocalQualifiers();
10224   if (LQuals != RQuals) {
10225     // If any of these qualifiers are different, we have a type
10226     // mismatch.
10227     if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
10228         LQuals.getAddressSpace() != RQuals.getAddressSpace() ||
10229         LQuals.getObjCLifetime() != RQuals.getObjCLifetime() ||
10230         LQuals.hasUnaligned() != RQuals.hasUnaligned())
10231       return {};
10232 
10233     // Exactly one GC qualifier difference is allowed: __strong is
10234     // okay if the other type has no GC qualifier but is an Objective
10235     // C object pointer (i.e. implicitly strong by default).  We fix
10236     // this by pretending that the unqualified type was actually
10237     // qualified __strong.
10238     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
10239     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
10240     assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
10241 
10242     if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
10243       return {};
10244 
10245     if (GC_L == Qualifiers::Strong && RHSCan->isObjCObjectPointerType()) {
10246       return mergeTypes(LHS, getObjCGCQualType(RHS, Qualifiers::Strong));
10247     }
10248     if (GC_R == Qualifiers::Strong && LHSCan->isObjCObjectPointerType()) {
10249       return mergeTypes(getObjCGCQualType(LHS, Qualifiers::Strong), RHS);
10250     }
10251     return {};
10252   }
10253 
10254   // Okay, qualifiers are equal.
10255 
10256   Type::TypeClass LHSClass = LHSCan->getTypeClass();
10257   Type::TypeClass RHSClass = RHSCan->getTypeClass();
10258 
10259   // We want to consider the two function types to be the same for these
10260   // comparisons, just force one to the other.
10261   if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
10262   if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
10263 
10264   // Same as above for arrays
10265   if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
10266     LHSClass = Type::ConstantArray;
10267   if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
10268     RHSClass = Type::ConstantArray;
10269 
10270   // ObjCInterfaces are just specialized ObjCObjects.
10271   if (LHSClass == Type::ObjCInterface) LHSClass = Type::ObjCObject;
10272   if (RHSClass == Type::ObjCInterface) RHSClass = Type::ObjCObject;
10273 
10274   // Canonicalize ExtVector -> Vector.
10275   if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
10276   if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
10277 
10278   // If the canonical type classes don't match.
10279   if (LHSClass != RHSClass) {
10280     // Note that we only have special rules for turning block enum
10281     // returns into block int returns, not vice-versa.
10282     if (const auto *ETy = LHS->getAs<EnumType>()) {
10283       return mergeEnumWithInteger(*this, ETy, RHS, false);
10284     }
10285     if (const EnumType* ETy = RHS->getAs<EnumType>()) {
10286       return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType);
10287     }
10288     // allow block pointer type to match an 'id' type.
10289     if (OfBlockPointer && !BlockReturnType) {
10290        if (LHS->isObjCIdType() && RHS->isBlockPointerType())
10291          return LHS;
10292       if (RHS->isObjCIdType() && LHS->isBlockPointerType())
10293         return RHS;
10294     }
10295 
10296     return {};
10297   }
10298 
10299   // The canonical type classes match.
10300   switch (LHSClass) {
10301 #define TYPE(Class, Base)
10302 #define ABSTRACT_TYPE(Class, Base)
10303 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
10304 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
10305 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
10306 #include "clang/AST/TypeNodes.inc"
10307     llvm_unreachable("Non-canonical and dependent types shouldn't get here");
10308 
10309   case Type::Auto:
10310   case Type::DeducedTemplateSpecialization:
10311   case Type::LValueReference:
10312   case Type::RValueReference:
10313   case Type::MemberPointer:
10314     llvm_unreachable("C++ should never be in mergeTypes");
10315 
10316   case Type::ObjCInterface:
10317   case Type::IncompleteArray:
10318   case Type::VariableArray:
10319   case Type::FunctionProto:
10320   case Type::ExtVector:
10321     llvm_unreachable("Types are eliminated above");
10322 
10323   case Type::Pointer:
10324   {
10325     // Merge two pointer types, while trying to preserve typedef info
10326     QualType LHSPointee = LHS->castAs<PointerType>()->getPointeeType();
10327     QualType RHSPointee = RHS->castAs<PointerType>()->getPointeeType();
10328     if (Unqualified) {
10329       LHSPointee = LHSPointee.getUnqualifiedType();
10330       RHSPointee = RHSPointee.getUnqualifiedType();
10331     }
10332     QualType ResultType = mergeTypes(LHSPointee, RHSPointee, false,
10333                                      Unqualified);
10334     if (ResultType.isNull())
10335       return {};
10336     if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
10337       return LHS;
10338     if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
10339       return RHS;
10340     return getPointerType(ResultType);
10341   }
10342   case Type::BlockPointer:
10343   {
10344     // Merge two block pointer types, while trying to preserve typedef info
10345     QualType LHSPointee = LHS->castAs<BlockPointerType>()->getPointeeType();
10346     QualType RHSPointee = RHS->castAs<BlockPointerType>()->getPointeeType();
10347     if (Unqualified) {
10348       LHSPointee = LHSPointee.getUnqualifiedType();
10349       RHSPointee = RHSPointee.getUnqualifiedType();
10350     }
10351     if (getLangOpts().OpenCL) {
10352       Qualifiers LHSPteeQual = LHSPointee.getQualifiers();
10353       Qualifiers RHSPteeQual = RHSPointee.getQualifiers();
10354       // Blocks can't be an expression in a ternary operator (OpenCL v2.0
10355       // 6.12.5) thus the following check is asymmetric.
10356       if (!LHSPteeQual.isAddressSpaceSupersetOf(RHSPteeQual))
10357         return {};
10358       LHSPteeQual.removeAddressSpace();
10359       RHSPteeQual.removeAddressSpace();
10360       LHSPointee =
10361           QualType(LHSPointee.getTypePtr(), LHSPteeQual.getAsOpaqueValue());
10362       RHSPointee =
10363           QualType(RHSPointee.getTypePtr(), RHSPteeQual.getAsOpaqueValue());
10364     }
10365     QualType ResultType = mergeTypes(LHSPointee, RHSPointee, OfBlockPointer,
10366                                      Unqualified);
10367     if (ResultType.isNull())
10368       return {};
10369     if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
10370       return LHS;
10371     if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
10372       return RHS;
10373     return getBlockPointerType(ResultType);
10374   }
10375   case Type::Atomic:
10376   {
10377     // Merge two pointer types, while trying to preserve typedef info
10378     QualType LHSValue = LHS->castAs<AtomicType>()->getValueType();
10379     QualType RHSValue = RHS->castAs<AtomicType>()->getValueType();
10380     if (Unqualified) {
10381       LHSValue = LHSValue.getUnqualifiedType();
10382       RHSValue = RHSValue.getUnqualifiedType();
10383     }
10384     QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
10385                                      Unqualified);
10386     if (ResultType.isNull())
10387       return {};
10388     if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
10389       return LHS;
10390     if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
10391       return RHS;
10392     return getAtomicType(ResultType);
10393   }
10394   case Type::ConstantArray:
10395   {
10396     const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
10397     const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
10398     if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
10399       return {};
10400 
10401     QualType LHSElem = getAsArrayType(LHS)->getElementType();
10402     QualType RHSElem = getAsArrayType(RHS)->getElementType();
10403     if (Unqualified) {
10404       LHSElem = LHSElem.getUnqualifiedType();
10405       RHSElem = RHSElem.getUnqualifiedType();
10406     }
10407 
10408     QualType ResultType = mergeTypes(LHSElem, RHSElem, false, Unqualified);
10409     if (ResultType.isNull())
10410       return {};
10411 
10412     const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
10413     const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
10414 
10415     // If either side is a variable array, and both are complete, check whether
10416     // the current dimension is definite.
10417     if (LVAT || RVAT) {
10418       auto SizeFetch = [this](const VariableArrayType* VAT,
10419           const ConstantArrayType* CAT)
10420           -> std::pair<bool,llvm::APInt> {
10421         if (VAT) {
10422           Optional<llvm::APSInt> TheInt;
10423           Expr *E = VAT->getSizeExpr();
10424           if (E && (TheInt = E->getIntegerConstantExpr(*this)))
10425             return std::make_pair(true, *TheInt);
10426           return std::make_pair(false, llvm::APSInt());
10427         }
10428         if (CAT)
10429           return std::make_pair(true, CAT->getSize());
10430         return std::make_pair(false, llvm::APInt());
10431       };
10432 
10433       bool HaveLSize, HaveRSize;
10434       llvm::APInt LSize, RSize;
10435       std::tie(HaveLSize, LSize) = SizeFetch(LVAT, LCAT);
10436       std::tie(HaveRSize, RSize) = SizeFetch(RVAT, RCAT);
10437       if (HaveLSize && HaveRSize && !llvm::APInt::isSameValue(LSize, RSize))
10438         return {}; // Definite, but unequal, array dimension
10439     }
10440 
10441     if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
10442       return LHS;
10443     if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
10444       return RHS;
10445     if (LCAT)
10446       return getConstantArrayType(ResultType, LCAT->getSize(),
10447                                   LCAT->getSizeExpr(),
10448                                   ArrayType::ArraySizeModifier(), 0);
10449     if (RCAT)
10450       return getConstantArrayType(ResultType, RCAT->getSize(),
10451                                   RCAT->getSizeExpr(),
10452                                   ArrayType::ArraySizeModifier(), 0);
10453     if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
10454       return LHS;
10455     if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
10456       return RHS;
10457     if (LVAT) {
10458       // FIXME: This isn't correct! But tricky to implement because
10459       // the array's size has to be the size of LHS, but the type
10460       // has to be different.
10461       return LHS;
10462     }
10463     if (RVAT) {
10464       // FIXME: This isn't correct! But tricky to implement because
10465       // the array's size has to be the size of RHS, but the type
10466       // has to be different.
10467       return RHS;
10468     }
10469     if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
10470     if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
10471     return getIncompleteArrayType(ResultType,
10472                                   ArrayType::ArraySizeModifier(), 0);
10473   }
10474   case Type::FunctionNoProto:
10475     return mergeFunctionTypes(LHS, RHS, OfBlockPointer, Unqualified);
10476   case Type::Record:
10477   case Type::Enum:
10478     return {};
10479   case Type::Builtin:
10480     // Only exactly equal builtin types are compatible, which is tested above.
10481     return {};
10482   case Type::Complex:
10483     // Distinct complex types are incompatible.
10484     return {};
10485   case Type::Vector:
10486     // FIXME: The merged type should be an ExtVector!
10487     if (areCompatVectorTypes(LHSCan->castAs<VectorType>(),
10488                              RHSCan->castAs<VectorType>()))
10489       return LHS;
10490     return {};
10491   case Type::ConstantMatrix:
10492     if (areCompatMatrixTypes(LHSCan->castAs<ConstantMatrixType>(),
10493                              RHSCan->castAs<ConstantMatrixType>()))
10494       return LHS;
10495     return {};
10496   case Type::ObjCObject: {
10497     // Check if the types are assignment compatible.
10498     // FIXME: This should be type compatibility, e.g. whether
10499     // "LHS x; RHS x;" at global scope is legal.
10500     if (canAssignObjCInterfaces(LHS->castAs<ObjCObjectType>(),
10501                                 RHS->castAs<ObjCObjectType>()))
10502       return LHS;
10503     return {};
10504   }
10505   case Type::ObjCObjectPointer:
10506     if (OfBlockPointer) {
10507       if (canAssignObjCInterfacesInBlockPointer(
10508               LHS->castAs<ObjCObjectPointerType>(),
10509               RHS->castAs<ObjCObjectPointerType>(), BlockReturnType))
10510         return LHS;
10511       return {};
10512     }
10513     if (canAssignObjCInterfaces(LHS->castAs<ObjCObjectPointerType>(),
10514                                 RHS->castAs<ObjCObjectPointerType>()))
10515       return LHS;
10516     return {};
10517   case Type::Pipe:
10518     assert(LHS != RHS &&
10519            "Equivalent pipe types should have already been handled!");
10520     return {};
10521   case Type::BitInt: {
10522     // Merge two bit-precise int types, while trying to preserve typedef info.
10523     bool LHSUnsigned = LHS->castAs<BitIntType>()->isUnsigned();
10524     bool RHSUnsigned = RHS->castAs<BitIntType>()->isUnsigned();
10525     unsigned LHSBits = LHS->castAs<BitIntType>()->getNumBits();
10526     unsigned RHSBits = RHS->castAs<BitIntType>()->getNumBits();
10527 
10528     // Like unsigned/int, shouldn't have a type if they don't match.
10529     if (LHSUnsigned != RHSUnsigned)
10530       return {};
10531 
10532     if (LHSBits != RHSBits)
10533       return {};
10534     return LHS;
10535   }
10536   }
10537 
10538   llvm_unreachable("Invalid Type::Class!");
10539 }
10540 
10541 bool ASTContext::mergeExtParameterInfo(
10542     const FunctionProtoType *FirstFnType, const FunctionProtoType *SecondFnType,
10543     bool &CanUseFirst, bool &CanUseSecond,
10544     SmallVectorImpl<FunctionProtoType::ExtParameterInfo> &NewParamInfos) {
10545   assert(NewParamInfos.empty() && "param info list not empty");
10546   CanUseFirst = CanUseSecond = true;
10547   bool FirstHasInfo = FirstFnType->hasExtParameterInfos();
10548   bool SecondHasInfo = SecondFnType->hasExtParameterInfos();
10549 
10550   // Fast path: if the first type doesn't have ext parameter infos,
10551   // we match if and only if the second type also doesn't have them.
10552   if (!FirstHasInfo && !SecondHasInfo)
10553     return true;
10554 
10555   bool NeedParamInfo = false;
10556   size_t E = FirstHasInfo ? FirstFnType->getExtParameterInfos().size()
10557                           : SecondFnType->getExtParameterInfos().size();
10558 
10559   for (size_t I = 0; I < E; ++I) {
10560     FunctionProtoType::ExtParameterInfo FirstParam, SecondParam;
10561     if (FirstHasInfo)
10562       FirstParam = FirstFnType->getExtParameterInfo(I);
10563     if (SecondHasInfo)
10564       SecondParam = SecondFnType->getExtParameterInfo(I);
10565 
10566     // Cannot merge unless everything except the noescape flag matches.
10567     if (FirstParam.withIsNoEscape(false) != SecondParam.withIsNoEscape(false))
10568       return false;
10569 
10570     bool FirstNoEscape = FirstParam.isNoEscape();
10571     bool SecondNoEscape = SecondParam.isNoEscape();
10572     bool IsNoEscape = FirstNoEscape && SecondNoEscape;
10573     NewParamInfos.push_back(FirstParam.withIsNoEscape(IsNoEscape));
10574     if (NewParamInfos.back().getOpaqueValue())
10575       NeedParamInfo = true;
10576     if (FirstNoEscape != IsNoEscape)
10577       CanUseFirst = false;
10578     if (SecondNoEscape != IsNoEscape)
10579       CanUseSecond = false;
10580   }
10581 
10582   if (!NeedParamInfo)
10583     NewParamInfos.clear();
10584 
10585   return true;
10586 }
10587 
10588 void ASTContext::ResetObjCLayout(const ObjCContainerDecl *CD) {
10589   ObjCLayouts[CD] = nullptr;
10590 }
10591 
10592 /// mergeObjCGCQualifiers - This routine merges ObjC's GC attribute of 'LHS' and
10593 /// 'RHS' attributes and returns the merged version; including for function
10594 /// return types.
10595 QualType ASTContext::mergeObjCGCQualifiers(QualType LHS, QualType RHS) {
10596   QualType LHSCan = getCanonicalType(LHS),
10597   RHSCan = getCanonicalType(RHS);
10598   // If two types are identical, they are compatible.
10599   if (LHSCan == RHSCan)
10600     return LHS;
10601   if (RHSCan->isFunctionType()) {
10602     if (!LHSCan->isFunctionType())
10603       return {};
10604     QualType OldReturnType =
10605         cast<FunctionType>(RHSCan.getTypePtr())->getReturnType();
10606     QualType NewReturnType =
10607         cast<FunctionType>(LHSCan.getTypePtr())->getReturnType();
10608     QualType ResReturnType =
10609       mergeObjCGCQualifiers(NewReturnType, OldReturnType);
10610     if (ResReturnType.isNull())
10611       return {};
10612     if (ResReturnType == NewReturnType || ResReturnType == OldReturnType) {
10613       // id foo(); ... __strong id foo(); or: __strong id foo(); ... id foo();
10614       // In either case, use OldReturnType to build the new function type.
10615       const auto *F = LHS->castAs<FunctionType>();
10616       if (const auto *FPT = cast<FunctionProtoType>(F)) {
10617         FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
10618         EPI.ExtInfo = getFunctionExtInfo(LHS);
10619         QualType ResultType =
10620             getFunctionType(OldReturnType, FPT->getParamTypes(), EPI);
10621         return ResultType;
10622       }
10623     }
10624     return {};
10625   }
10626 
10627   // If the qualifiers are different, the types can still be merged.
10628   Qualifiers LQuals = LHSCan.getLocalQualifiers();
10629   Qualifiers RQuals = RHSCan.getLocalQualifiers();
10630   if (LQuals != RQuals) {
10631     // If any of these qualifiers are different, we have a type mismatch.
10632     if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
10633         LQuals.getAddressSpace() != RQuals.getAddressSpace())
10634       return {};
10635 
10636     // Exactly one GC qualifier difference is allowed: __strong is
10637     // okay if the other type has no GC qualifier but is an Objective
10638     // C object pointer (i.e. implicitly strong by default).  We fix
10639     // this by pretending that the unqualified type was actually
10640     // qualified __strong.
10641     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
10642     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
10643     assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
10644 
10645     if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
10646       return {};
10647 
10648     if (GC_L == Qualifiers::Strong)
10649       return LHS;
10650     if (GC_R == Qualifiers::Strong)
10651       return RHS;
10652     return {};
10653   }
10654 
10655   if (LHSCan->isObjCObjectPointerType() && RHSCan->isObjCObjectPointerType()) {
10656     QualType LHSBaseQT = LHS->castAs<ObjCObjectPointerType>()->getPointeeType();
10657     QualType RHSBaseQT = RHS->castAs<ObjCObjectPointerType>()->getPointeeType();
10658     QualType ResQT = mergeObjCGCQualifiers(LHSBaseQT, RHSBaseQT);
10659     if (ResQT == LHSBaseQT)
10660       return LHS;
10661     if (ResQT == RHSBaseQT)
10662       return RHS;
10663   }
10664   return {};
10665 }
10666 
10667 //===----------------------------------------------------------------------===//
10668 //                         Integer Predicates
10669 //===----------------------------------------------------------------------===//
10670 
10671 unsigned ASTContext::getIntWidth(QualType T) const {
10672   if (const auto *ET = T->getAs<EnumType>())
10673     T = ET->getDecl()->getIntegerType();
10674   if (T->isBooleanType())
10675     return 1;
10676   if (const auto *EIT = T->getAs<BitIntType>())
10677     return EIT->getNumBits();
10678   // For builtin types, just use the standard type sizing method
10679   return (unsigned)getTypeSize(T);
10680 }
10681 
10682 QualType ASTContext::getCorrespondingUnsignedType(QualType T) const {
10683   assert((T->hasSignedIntegerRepresentation() || T->isSignedFixedPointType()) &&
10684          "Unexpected type");
10685 
10686   // Turn <4 x signed int> -> <4 x unsigned int>
10687   if (const auto *VTy = T->getAs<VectorType>())
10688     return getVectorType(getCorrespondingUnsignedType(VTy->getElementType()),
10689                          VTy->getNumElements(), VTy->getVectorKind());
10690 
10691   // For _BitInt, return an unsigned _BitInt with same width.
10692   if (const auto *EITy = T->getAs<BitIntType>())
10693     return getBitIntType(/*Unsigned=*/true, EITy->getNumBits());
10694 
10695   // For enums, get the underlying integer type of the enum, and let the general
10696   // integer type signchanging code handle it.
10697   if (const auto *ETy = T->getAs<EnumType>())
10698     T = ETy->getDecl()->getIntegerType();
10699 
10700   switch (T->castAs<BuiltinType>()->getKind()) {
10701   case BuiltinType::Char_S:
10702   case BuiltinType::SChar:
10703     return UnsignedCharTy;
10704   case BuiltinType::Short:
10705     return UnsignedShortTy;
10706   case BuiltinType::Int:
10707     return UnsignedIntTy;
10708   case BuiltinType::Long:
10709     return UnsignedLongTy;
10710   case BuiltinType::LongLong:
10711     return UnsignedLongLongTy;
10712   case BuiltinType::Int128:
10713     return UnsignedInt128Ty;
10714   // wchar_t is special. It is either signed or not, but when it's signed,
10715   // there's no matching "unsigned wchar_t". Therefore we return the unsigned
10716   // version of it's underlying type instead.
10717   case BuiltinType::WChar_S:
10718     return getUnsignedWCharType();
10719 
10720   case BuiltinType::ShortAccum:
10721     return UnsignedShortAccumTy;
10722   case BuiltinType::Accum:
10723     return UnsignedAccumTy;
10724   case BuiltinType::LongAccum:
10725     return UnsignedLongAccumTy;
10726   case BuiltinType::SatShortAccum:
10727     return SatUnsignedShortAccumTy;
10728   case BuiltinType::SatAccum:
10729     return SatUnsignedAccumTy;
10730   case BuiltinType::SatLongAccum:
10731     return SatUnsignedLongAccumTy;
10732   case BuiltinType::ShortFract:
10733     return UnsignedShortFractTy;
10734   case BuiltinType::Fract:
10735     return UnsignedFractTy;
10736   case BuiltinType::LongFract:
10737     return UnsignedLongFractTy;
10738   case BuiltinType::SatShortFract:
10739     return SatUnsignedShortFractTy;
10740   case BuiltinType::SatFract:
10741     return SatUnsignedFractTy;
10742   case BuiltinType::SatLongFract:
10743     return SatUnsignedLongFractTy;
10744   default:
10745     llvm_unreachable("Unexpected signed integer or fixed point type");
10746   }
10747 }
10748 
10749 QualType ASTContext::getCorrespondingSignedType(QualType T) const {
10750   assert((T->hasUnsignedIntegerRepresentation() ||
10751           T->isUnsignedFixedPointType()) &&
10752          "Unexpected type");
10753 
10754   // Turn <4 x unsigned int> -> <4 x signed int>
10755   if (const auto *VTy = T->getAs<VectorType>())
10756     return getVectorType(getCorrespondingSignedType(VTy->getElementType()),
10757                          VTy->getNumElements(), VTy->getVectorKind());
10758 
10759   // For _BitInt, return a signed _BitInt with same width.
10760   if (const auto *EITy = T->getAs<BitIntType>())
10761     return getBitIntType(/*Unsigned=*/false, EITy->getNumBits());
10762 
10763   // For enums, get the underlying integer type of the enum, and let the general
10764   // integer type signchanging code handle it.
10765   if (const auto *ETy = T->getAs<EnumType>())
10766     T = ETy->getDecl()->getIntegerType();
10767 
10768   switch (T->castAs<BuiltinType>()->getKind()) {
10769   case BuiltinType::Char_U:
10770   case BuiltinType::UChar:
10771     return SignedCharTy;
10772   case BuiltinType::UShort:
10773     return ShortTy;
10774   case BuiltinType::UInt:
10775     return IntTy;
10776   case BuiltinType::ULong:
10777     return LongTy;
10778   case BuiltinType::ULongLong:
10779     return LongLongTy;
10780   case BuiltinType::UInt128:
10781     return Int128Ty;
10782   // wchar_t is special. It is either unsigned or not, but when it's unsigned,
10783   // there's no matching "signed wchar_t". Therefore we return the signed
10784   // version of it's underlying type instead.
10785   case BuiltinType::WChar_U:
10786     return getSignedWCharType();
10787 
10788   case BuiltinType::UShortAccum:
10789     return ShortAccumTy;
10790   case BuiltinType::UAccum:
10791     return AccumTy;
10792   case BuiltinType::ULongAccum:
10793     return LongAccumTy;
10794   case BuiltinType::SatUShortAccum:
10795     return SatShortAccumTy;
10796   case BuiltinType::SatUAccum:
10797     return SatAccumTy;
10798   case BuiltinType::SatULongAccum:
10799     return SatLongAccumTy;
10800   case BuiltinType::UShortFract:
10801     return ShortFractTy;
10802   case BuiltinType::UFract:
10803     return FractTy;
10804   case BuiltinType::ULongFract:
10805     return LongFractTy;
10806   case BuiltinType::SatUShortFract:
10807     return SatShortFractTy;
10808   case BuiltinType::SatUFract:
10809     return SatFractTy;
10810   case BuiltinType::SatULongFract:
10811     return SatLongFractTy;
10812   default:
10813     llvm_unreachable("Unexpected unsigned integer or fixed point type");
10814   }
10815 }
10816 
10817 ASTMutationListener::~ASTMutationListener() = default;
10818 
10819 void ASTMutationListener::DeducedReturnType(const FunctionDecl *FD,
10820                                             QualType ReturnType) {}
10821 
10822 //===----------------------------------------------------------------------===//
10823 //                          Builtin Type Computation
10824 //===----------------------------------------------------------------------===//
10825 
10826 /// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the
10827 /// pointer over the consumed characters.  This returns the resultant type.  If
10828 /// AllowTypeModifiers is false then modifier like * are not parsed, just basic
10829 /// types.  This allows "v2i*" to be parsed as a pointer to a v2i instead of
10830 /// a vector of "i*".
10831 ///
10832 /// RequiresICE is filled in on return to indicate whether the value is required
10833 /// to be an Integer Constant Expression.
10834 static QualType DecodeTypeFromStr(const char *&Str, const ASTContext &Context,
10835                                   ASTContext::GetBuiltinTypeError &Error,
10836                                   bool &RequiresICE,
10837                                   bool AllowTypeModifiers) {
10838   // Modifiers.
10839   int HowLong = 0;
10840   bool Signed = false, Unsigned = false;
10841   RequiresICE = false;
10842 
10843   // Read the prefixed modifiers first.
10844   bool Done = false;
10845   #ifndef NDEBUG
10846   bool IsSpecial = false;
10847   #endif
10848   while (!Done) {
10849     switch (*Str++) {
10850     default: Done = true; --Str; break;
10851     case 'I':
10852       RequiresICE = true;
10853       break;
10854     case 'S':
10855       assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
10856       assert(!Signed && "Can't use 'S' modifier multiple times!");
10857       Signed = true;
10858       break;
10859     case 'U':
10860       assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
10861       assert(!Unsigned && "Can't use 'U' modifier multiple times!");
10862       Unsigned = true;
10863       break;
10864     case 'L':
10865       assert(!IsSpecial && "Can't use 'L' with 'W', 'N', 'Z' or 'O' modifiers");
10866       assert(HowLong <= 2 && "Can't have LLLL modifier");
10867       ++HowLong;
10868       break;
10869     case 'N':
10870       // 'N' behaves like 'L' for all non LP64 targets and 'int' otherwise.
10871       assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!");
10872       assert(HowLong == 0 && "Can't use both 'L' and 'N' modifiers!");
10873       #ifndef NDEBUG
10874       IsSpecial = true;
10875       #endif
10876       if (Context.getTargetInfo().getLongWidth() == 32)
10877         ++HowLong;
10878       break;
10879     case 'W':
10880       // This modifier represents int64 type.
10881       assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!");
10882       assert(HowLong == 0 && "Can't use both 'L' and 'W' modifiers!");
10883       #ifndef NDEBUG
10884       IsSpecial = true;
10885       #endif
10886       switch (Context.getTargetInfo().getInt64Type()) {
10887       default:
10888         llvm_unreachable("Unexpected integer type");
10889       case TargetInfo::SignedLong:
10890         HowLong = 1;
10891         break;
10892       case TargetInfo::SignedLongLong:
10893         HowLong = 2;
10894         break;
10895       }
10896       break;
10897     case 'Z':
10898       // This modifier represents int32 type.
10899       assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!");
10900       assert(HowLong == 0 && "Can't use both 'L' and 'Z' modifiers!");
10901       #ifndef NDEBUG
10902       IsSpecial = true;
10903       #endif
10904       switch (Context.getTargetInfo().getIntTypeByWidth(32, true)) {
10905       default:
10906         llvm_unreachable("Unexpected integer type");
10907       case TargetInfo::SignedInt:
10908         HowLong = 0;
10909         break;
10910       case TargetInfo::SignedLong:
10911         HowLong = 1;
10912         break;
10913       case TargetInfo::SignedLongLong:
10914         HowLong = 2;
10915         break;
10916       }
10917       break;
10918     case 'O':
10919       assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!");
10920       assert(HowLong == 0 && "Can't use both 'L' and 'O' modifiers!");
10921       #ifndef NDEBUG
10922       IsSpecial = true;
10923       #endif
10924       if (Context.getLangOpts().OpenCL)
10925         HowLong = 1;
10926       else
10927         HowLong = 2;
10928       break;
10929     }
10930   }
10931 
10932   QualType Type;
10933 
10934   // Read the base type.
10935   switch (*Str++) {
10936   default: llvm_unreachable("Unknown builtin type letter!");
10937   case 'x':
10938     assert(HowLong == 0 && !Signed && !Unsigned &&
10939            "Bad modifiers used with 'x'!");
10940     Type = Context.Float16Ty;
10941     break;
10942   case 'y':
10943     assert(HowLong == 0 && !Signed && !Unsigned &&
10944            "Bad modifiers used with 'y'!");
10945     Type = Context.BFloat16Ty;
10946     break;
10947   case 'v':
10948     assert(HowLong == 0 && !Signed && !Unsigned &&
10949            "Bad modifiers used with 'v'!");
10950     Type = Context.VoidTy;
10951     break;
10952   case 'h':
10953     assert(HowLong == 0 && !Signed && !Unsigned &&
10954            "Bad modifiers used with 'h'!");
10955     Type = Context.HalfTy;
10956     break;
10957   case 'f':
10958     assert(HowLong == 0 && !Signed && !Unsigned &&
10959            "Bad modifiers used with 'f'!");
10960     Type = Context.FloatTy;
10961     break;
10962   case 'd':
10963     assert(HowLong < 3 && !Signed && !Unsigned &&
10964            "Bad modifiers used with 'd'!");
10965     if (HowLong == 1)
10966       Type = Context.LongDoubleTy;
10967     else if (HowLong == 2)
10968       Type = Context.Float128Ty;
10969     else
10970       Type = Context.DoubleTy;
10971     break;
10972   case 's':
10973     assert(HowLong == 0 && "Bad modifiers used with 's'!");
10974     if (Unsigned)
10975       Type = Context.UnsignedShortTy;
10976     else
10977       Type = Context.ShortTy;
10978     break;
10979   case 'i':
10980     if (HowLong == 3)
10981       Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
10982     else if (HowLong == 2)
10983       Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
10984     else if (HowLong == 1)
10985       Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy;
10986     else
10987       Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy;
10988     break;
10989   case 'c':
10990     assert(HowLong == 0 && "Bad modifiers used with 'c'!");
10991     if (Signed)
10992       Type = Context.SignedCharTy;
10993     else if (Unsigned)
10994       Type = Context.UnsignedCharTy;
10995     else
10996       Type = Context.CharTy;
10997     break;
10998   case 'b': // boolean
10999     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!");
11000     Type = Context.BoolTy;
11001     break;
11002   case 'z':  // size_t.
11003     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!");
11004     Type = Context.getSizeType();
11005     break;
11006   case 'w':  // wchar_t.
11007     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'w'!");
11008     Type = Context.getWideCharType();
11009     break;
11010   case 'F':
11011     Type = Context.getCFConstantStringType();
11012     break;
11013   case 'G':
11014     Type = Context.getObjCIdType();
11015     break;
11016   case 'H':
11017     Type = Context.getObjCSelType();
11018     break;
11019   case 'M':
11020     Type = Context.getObjCSuperType();
11021     break;
11022   case 'a':
11023     Type = Context.getBuiltinVaListType();
11024     assert(!Type.isNull() && "builtin va list type not initialized!");
11025     break;
11026   case 'A':
11027     // This is a "reference" to a va_list; however, what exactly
11028     // this means depends on how va_list is defined. There are two
11029     // different kinds of va_list: ones passed by value, and ones
11030     // passed by reference.  An example of a by-value va_list is
11031     // x86, where va_list is a char*. An example of by-ref va_list
11032     // is x86-64, where va_list is a __va_list_tag[1]. For x86,
11033     // we want this argument to be a char*&; for x86-64, we want
11034     // it to be a __va_list_tag*.
11035     Type = Context.getBuiltinVaListType();
11036     assert(!Type.isNull() && "builtin va list type not initialized!");
11037     if (Type->isArrayType())
11038       Type = Context.getArrayDecayedType(Type);
11039     else
11040       Type = Context.getLValueReferenceType(Type);
11041     break;
11042   case 'q': {
11043     char *End;
11044     unsigned NumElements = strtoul(Str, &End, 10);
11045     assert(End != Str && "Missing vector size");
11046     Str = End;
11047 
11048     QualType ElementType = DecodeTypeFromStr(Str, Context, Error,
11049                                              RequiresICE, false);
11050     assert(!RequiresICE && "Can't require vector ICE");
11051 
11052     Type = Context.getScalableVectorType(ElementType, NumElements);
11053     break;
11054   }
11055   case 'V': {
11056     char *End;
11057     unsigned NumElements = strtoul(Str, &End, 10);
11058     assert(End != Str && "Missing vector size");
11059     Str = End;
11060 
11061     QualType ElementType = DecodeTypeFromStr(Str, Context, Error,
11062                                              RequiresICE, false);
11063     assert(!RequiresICE && "Can't require vector ICE");
11064 
11065     // TODO: No way to make AltiVec vectors in builtins yet.
11066     Type = Context.getVectorType(ElementType, NumElements,
11067                                  VectorType::GenericVector);
11068     break;
11069   }
11070   case 'E': {
11071     char *End;
11072 
11073     unsigned NumElements = strtoul(Str, &End, 10);
11074     assert(End != Str && "Missing vector size");
11075 
11076     Str = End;
11077 
11078     QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
11079                                              false);
11080     Type = Context.getExtVectorType(ElementType, NumElements);
11081     break;
11082   }
11083   case 'X': {
11084     QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
11085                                              false);
11086     assert(!RequiresICE && "Can't require complex ICE");
11087     Type = Context.getComplexType(ElementType);
11088     break;
11089   }
11090   case 'Y':
11091     Type = Context.getPointerDiffType();
11092     break;
11093   case 'P':
11094     Type = Context.getFILEType();
11095     if (Type.isNull()) {
11096       Error = ASTContext::GE_Missing_stdio;
11097       return {};
11098     }
11099     break;
11100   case 'J':
11101     if (Signed)
11102       Type = Context.getsigjmp_bufType();
11103     else
11104       Type = Context.getjmp_bufType();
11105 
11106     if (Type.isNull()) {
11107       Error = ASTContext::GE_Missing_setjmp;
11108       return {};
11109     }
11110     break;
11111   case 'K':
11112     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'K'!");
11113     Type = Context.getucontext_tType();
11114 
11115     if (Type.isNull()) {
11116       Error = ASTContext::GE_Missing_ucontext;
11117       return {};
11118     }
11119     break;
11120   case 'p':
11121     Type = Context.getProcessIDType();
11122     break;
11123   }
11124 
11125   // If there are modifiers and if we're allowed to parse them, go for it.
11126   Done = !AllowTypeModifiers;
11127   while (!Done) {
11128     switch (char c = *Str++) {
11129     default: Done = true; --Str; break;
11130     case '*':
11131     case '&': {
11132       // Both pointers and references can have their pointee types
11133       // qualified with an address space.
11134       char *End;
11135       unsigned AddrSpace = strtoul(Str, &End, 10);
11136       if (End != Str) {
11137         // Note AddrSpace == 0 is not the same as an unspecified address space.
11138         Type = Context.getAddrSpaceQualType(
11139           Type,
11140           Context.getLangASForBuiltinAddressSpace(AddrSpace));
11141         Str = End;
11142       }
11143       if (c == '*')
11144         Type = Context.getPointerType(Type);
11145       else
11146         Type = Context.getLValueReferenceType(Type);
11147       break;
11148     }
11149     // FIXME: There's no way to have a built-in with an rvalue ref arg.
11150     case 'C':
11151       Type = Type.withConst();
11152       break;
11153     case 'D':
11154       Type = Context.getVolatileType(Type);
11155       break;
11156     case 'R':
11157       Type = Type.withRestrict();
11158       break;
11159     }
11160   }
11161 
11162   assert((!RequiresICE || Type->isIntegralOrEnumerationType()) &&
11163          "Integer constant 'I' type must be an integer");
11164 
11165   return Type;
11166 }
11167 
11168 // On some targets such as PowerPC, some of the builtins are defined with custom
11169 // type descriptors for target-dependent types. These descriptors are decoded in
11170 // other functions, but it may be useful to be able to fall back to default
11171 // descriptor decoding to define builtins mixing target-dependent and target-
11172 // independent types. This function allows decoding one type descriptor with
11173 // default decoding.
11174 QualType ASTContext::DecodeTypeStr(const char *&Str, const ASTContext &Context,
11175                                    GetBuiltinTypeError &Error, bool &RequireICE,
11176                                    bool AllowTypeModifiers) const {
11177   return DecodeTypeFromStr(Str, Context, Error, RequireICE, AllowTypeModifiers);
11178 }
11179 
11180 /// GetBuiltinType - Return the type for the specified builtin.
11181 QualType ASTContext::GetBuiltinType(unsigned Id,
11182                                     GetBuiltinTypeError &Error,
11183                                     unsigned *IntegerConstantArgs) const {
11184   const char *TypeStr = BuiltinInfo.getTypeString(Id);
11185   if (TypeStr[0] == '\0') {
11186     Error = GE_Missing_type;
11187     return {};
11188   }
11189 
11190   SmallVector<QualType, 8> ArgTypes;
11191 
11192   bool RequiresICE = false;
11193   Error = GE_None;
11194   QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error,
11195                                        RequiresICE, true);
11196   if (Error != GE_None)
11197     return {};
11198 
11199   assert(!RequiresICE && "Result of intrinsic cannot be required to be an ICE");
11200 
11201   while (TypeStr[0] && TypeStr[0] != '.') {
11202     QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error, RequiresICE, true);
11203     if (Error != GE_None)
11204       return {};
11205 
11206     // If this argument is required to be an IntegerConstantExpression and the
11207     // caller cares, fill in the bitmask we return.
11208     if (RequiresICE && IntegerConstantArgs)
11209       *IntegerConstantArgs |= 1 << ArgTypes.size();
11210 
11211     // Do array -> pointer decay.  The builtin should use the decayed type.
11212     if (Ty->isArrayType())
11213       Ty = getArrayDecayedType(Ty);
11214 
11215     ArgTypes.push_back(Ty);
11216   }
11217 
11218   if (Id == Builtin::BI__GetExceptionInfo)
11219     return {};
11220 
11221   assert((TypeStr[0] != '.' || TypeStr[1] == 0) &&
11222          "'.' should only occur at end of builtin type list!");
11223 
11224   bool Variadic = (TypeStr[0] == '.');
11225 
11226   FunctionType::ExtInfo EI(getDefaultCallingConvention(
11227       Variadic, /*IsCXXMethod=*/false, /*IsBuiltin=*/true));
11228   if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
11229 
11230 
11231   // We really shouldn't be making a no-proto type here.
11232   if (ArgTypes.empty() && Variadic && !getLangOpts().CPlusPlus)
11233     return getFunctionNoProtoType(ResType, EI);
11234 
11235   FunctionProtoType::ExtProtoInfo EPI;
11236   EPI.ExtInfo = EI;
11237   EPI.Variadic = Variadic;
11238   if (getLangOpts().CPlusPlus && BuiltinInfo.isNoThrow(Id))
11239     EPI.ExceptionSpec.Type =
11240         getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone;
11241 
11242   return getFunctionType(ResType, ArgTypes, EPI);
11243 }
11244 
11245 static GVALinkage basicGVALinkageForFunction(const ASTContext &Context,
11246                                              const FunctionDecl *FD) {
11247   if (!FD->isExternallyVisible())
11248     return GVA_Internal;
11249 
11250   // Non-user-provided functions get emitted as weak definitions with every
11251   // use, no matter whether they've been explicitly instantiated etc.
11252   if (const auto *MD = dyn_cast<CXXMethodDecl>(FD))
11253     if (!MD->isUserProvided())
11254       return GVA_DiscardableODR;
11255 
11256   GVALinkage External;
11257   switch (FD->getTemplateSpecializationKind()) {
11258   case TSK_Undeclared:
11259   case TSK_ExplicitSpecialization:
11260     External = GVA_StrongExternal;
11261     break;
11262 
11263   case TSK_ExplicitInstantiationDefinition:
11264     return GVA_StrongODR;
11265 
11266   // C++11 [temp.explicit]p10:
11267   //   [ Note: The intent is that an inline function that is the subject of
11268   //   an explicit instantiation declaration will still be implicitly
11269   //   instantiated when used so that the body can be considered for
11270   //   inlining, but that no out-of-line copy of the inline function would be
11271   //   generated in the translation unit. -- end note ]
11272   case TSK_ExplicitInstantiationDeclaration:
11273     return GVA_AvailableExternally;
11274 
11275   case TSK_ImplicitInstantiation:
11276     External = GVA_DiscardableODR;
11277     break;
11278   }
11279 
11280   if (!FD->isInlined())
11281     return External;
11282 
11283   if ((!Context.getLangOpts().CPlusPlus &&
11284        !Context.getTargetInfo().getCXXABI().isMicrosoft() &&
11285        !FD->hasAttr<DLLExportAttr>()) ||
11286       FD->hasAttr<GNUInlineAttr>()) {
11287     // FIXME: This doesn't match gcc's behavior for dllexport inline functions.
11288 
11289     // GNU or C99 inline semantics. Determine whether this symbol should be
11290     // externally visible.
11291     if (FD->isInlineDefinitionExternallyVisible())
11292       return External;
11293 
11294     // C99 inline semantics, where the symbol is not externally visible.
11295     return GVA_AvailableExternally;
11296   }
11297 
11298   // Functions specified with extern and inline in -fms-compatibility mode
11299   // forcibly get emitted.  While the body of the function cannot be later
11300   // replaced, the function definition cannot be discarded.
11301   if (FD->isMSExternInline())
11302     return GVA_StrongODR;
11303 
11304   return GVA_DiscardableODR;
11305 }
11306 
11307 static GVALinkage adjustGVALinkageForAttributes(const ASTContext &Context,
11308                                                 const Decl *D, GVALinkage L) {
11309   // See http://msdn.microsoft.com/en-us/library/xa0d9ste.aspx
11310   // dllexport/dllimport on inline functions.
11311   if (D->hasAttr<DLLImportAttr>()) {
11312     if (L == GVA_DiscardableODR || L == GVA_StrongODR)
11313       return GVA_AvailableExternally;
11314   } else if (D->hasAttr<DLLExportAttr>()) {
11315     if (L == GVA_DiscardableODR)
11316       return GVA_StrongODR;
11317   } else if (Context.getLangOpts().CUDA && Context.getLangOpts().CUDAIsDevice) {
11318     // Device-side functions with __global__ attribute must always be
11319     // visible externally so they can be launched from host.
11320     if (D->hasAttr<CUDAGlobalAttr>() &&
11321         (L == GVA_DiscardableODR || L == GVA_Internal))
11322       return GVA_StrongODR;
11323     // Single source offloading languages like CUDA/HIP need to be able to
11324     // access static device variables from host code of the same compilation
11325     // unit. This is done by externalizing the static variable with a shared
11326     // name between the host and device compilation which is the same for the
11327     // same compilation unit whereas different among different compilation
11328     // units.
11329     if (Context.shouldExternalizeStaticVar(D))
11330       return GVA_StrongExternal;
11331   }
11332   return L;
11333 }
11334 
11335 /// Adjust the GVALinkage for a declaration based on what an external AST source
11336 /// knows about whether there can be other definitions of this declaration.
11337 static GVALinkage
11338 adjustGVALinkageForExternalDefinitionKind(const ASTContext &Ctx, const Decl *D,
11339                                           GVALinkage L) {
11340   ExternalASTSource *Source = Ctx.getExternalSource();
11341   if (!Source)
11342     return L;
11343 
11344   switch (Source->hasExternalDefinitions(D)) {
11345   case ExternalASTSource::EK_Never:
11346     // Other translation units rely on us to provide the definition.
11347     if (L == GVA_DiscardableODR)
11348       return GVA_StrongODR;
11349     break;
11350 
11351   case ExternalASTSource::EK_Always:
11352     return GVA_AvailableExternally;
11353 
11354   case ExternalASTSource::EK_ReplyHazy:
11355     break;
11356   }
11357   return L;
11358 }
11359 
11360 GVALinkage ASTContext::GetGVALinkageForFunction(const FunctionDecl *FD) const {
11361   return adjustGVALinkageForExternalDefinitionKind(*this, FD,
11362            adjustGVALinkageForAttributes(*this, FD,
11363              basicGVALinkageForFunction(*this, FD)));
11364 }
11365 
11366 static GVALinkage basicGVALinkageForVariable(const ASTContext &Context,
11367                                              const VarDecl *VD) {
11368   if (!VD->isExternallyVisible())
11369     return GVA_Internal;
11370 
11371   if (VD->isStaticLocal()) {
11372     const DeclContext *LexicalContext = VD->getParentFunctionOrMethod();
11373     while (LexicalContext && !isa<FunctionDecl>(LexicalContext))
11374       LexicalContext = LexicalContext->getLexicalParent();
11375 
11376     // ObjC Blocks can create local variables that don't have a FunctionDecl
11377     // LexicalContext.
11378     if (!LexicalContext)
11379       return GVA_DiscardableODR;
11380 
11381     // Otherwise, let the static local variable inherit its linkage from the
11382     // nearest enclosing function.
11383     auto StaticLocalLinkage =
11384         Context.GetGVALinkageForFunction(cast<FunctionDecl>(LexicalContext));
11385 
11386     // Itanium ABI 5.2.2: "Each COMDAT group [for a static local variable] must
11387     // be emitted in any object with references to the symbol for the object it
11388     // contains, whether inline or out-of-line."
11389     // Similar behavior is observed with MSVC. An alternative ABI could use
11390     // StrongODR/AvailableExternally to match the function, but none are
11391     // known/supported currently.
11392     if (StaticLocalLinkage == GVA_StrongODR ||
11393         StaticLocalLinkage == GVA_AvailableExternally)
11394       return GVA_DiscardableODR;
11395     return StaticLocalLinkage;
11396   }
11397 
11398   // MSVC treats in-class initialized static data members as definitions.
11399   // By giving them non-strong linkage, out-of-line definitions won't
11400   // cause link errors.
11401   if (Context.isMSStaticDataMemberInlineDefinition(VD))
11402     return GVA_DiscardableODR;
11403 
11404   // Most non-template variables have strong linkage; inline variables are
11405   // linkonce_odr or (occasionally, for compatibility) weak_odr.
11406   GVALinkage StrongLinkage;
11407   switch (Context.getInlineVariableDefinitionKind(VD)) {
11408   case ASTContext::InlineVariableDefinitionKind::None:
11409     StrongLinkage = GVA_StrongExternal;
11410     break;
11411   case ASTContext::InlineVariableDefinitionKind::Weak:
11412   case ASTContext::InlineVariableDefinitionKind::WeakUnknown:
11413     StrongLinkage = GVA_DiscardableODR;
11414     break;
11415   case ASTContext::InlineVariableDefinitionKind::Strong:
11416     StrongLinkage = GVA_StrongODR;
11417     break;
11418   }
11419 
11420   switch (VD->getTemplateSpecializationKind()) {
11421   case TSK_Undeclared:
11422     return StrongLinkage;
11423 
11424   case TSK_ExplicitSpecialization:
11425     return Context.getTargetInfo().getCXXABI().isMicrosoft() &&
11426                    VD->isStaticDataMember()
11427                ? GVA_StrongODR
11428                : StrongLinkage;
11429 
11430   case TSK_ExplicitInstantiationDefinition:
11431     return GVA_StrongODR;
11432 
11433   case TSK_ExplicitInstantiationDeclaration:
11434     return GVA_AvailableExternally;
11435 
11436   case TSK_ImplicitInstantiation:
11437     return GVA_DiscardableODR;
11438   }
11439 
11440   llvm_unreachable("Invalid Linkage!");
11441 }
11442 
11443 GVALinkage ASTContext::GetGVALinkageForVariable(const VarDecl *VD) {
11444   return adjustGVALinkageForExternalDefinitionKind(*this, VD,
11445            adjustGVALinkageForAttributes(*this, VD,
11446              basicGVALinkageForVariable(*this, VD)));
11447 }
11448 
11449 bool ASTContext::DeclMustBeEmitted(const Decl *D) {
11450   if (const auto *VD = dyn_cast<VarDecl>(D)) {
11451     if (!VD->isFileVarDecl())
11452       return false;
11453     // Global named register variables (GNU extension) are never emitted.
11454     if (VD->getStorageClass() == SC_Register)
11455       return false;
11456     if (VD->getDescribedVarTemplate() ||
11457         isa<VarTemplatePartialSpecializationDecl>(VD))
11458       return false;
11459   } else if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
11460     // We never need to emit an uninstantiated function template.
11461     if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
11462       return false;
11463   } else if (isa<PragmaCommentDecl>(D))
11464     return true;
11465   else if (isa<PragmaDetectMismatchDecl>(D))
11466     return true;
11467   else if (isa<OMPRequiresDecl>(D))
11468     return true;
11469   else if (isa<OMPThreadPrivateDecl>(D))
11470     return !D->getDeclContext()->isDependentContext();
11471   else if (isa<OMPAllocateDecl>(D))
11472     return !D->getDeclContext()->isDependentContext();
11473   else if (isa<OMPDeclareReductionDecl>(D) || isa<OMPDeclareMapperDecl>(D))
11474     return !D->getDeclContext()->isDependentContext();
11475   else if (isa<ImportDecl>(D))
11476     return true;
11477   else
11478     return false;
11479 
11480   // If this is a member of a class template, we do not need to emit it.
11481   if (D->getDeclContext()->isDependentContext())
11482     return false;
11483 
11484   // Weak references don't produce any output by themselves.
11485   if (D->hasAttr<WeakRefAttr>())
11486     return false;
11487 
11488   // Aliases and used decls are required.
11489   if (D->hasAttr<AliasAttr>() || D->hasAttr<UsedAttr>())
11490     return true;
11491 
11492   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
11493     // Forward declarations aren't required.
11494     if (!FD->doesThisDeclarationHaveABody())
11495       return FD->doesDeclarationForceExternallyVisibleDefinition();
11496 
11497     // Constructors and destructors are required.
11498     if (FD->hasAttr<ConstructorAttr>() || FD->hasAttr<DestructorAttr>())
11499       return true;
11500 
11501     // The key function for a class is required.  This rule only comes
11502     // into play when inline functions can be key functions, though.
11503     if (getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
11504       if (const auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
11505         const CXXRecordDecl *RD = MD->getParent();
11506         if (MD->isOutOfLine() && RD->isDynamicClass()) {
11507           const CXXMethodDecl *KeyFunc = getCurrentKeyFunction(RD);
11508           if (KeyFunc && KeyFunc->getCanonicalDecl() == MD->getCanonicalDecl())
11509             return true;
11510         }
11511       }
11512     }
11513 
11514     GVALinkage Linkage = GetGVALinkageForFunction(FD);
11515 
11516     // static, static inline, always_inline, and extern inline functions can
11517     // always be deferred.  Normal inline functions can be deferred in C99/C++.
11518     // Implicit template instantiations can also be deferred in C++.
11519     return !isDiscardableGVALinkage(Linkage);
11520   }
11521 
11522   const auto *VD = cast<VarDecl>(D);
11523   assert(VD->isFileVarDecl() && "Expected file scoped var");
11524 
11525   // If the decl is marked as `declare target to`, it should be emitted for the
11526   // host and for the device.
11527   if (LangOpts.OpenMP &&
11528       OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(VD))
11529     return true;
11530 
11531   if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly &&
11532       !isMSStaticDataMemberInlineDefinition(VD))
11533     return false;
11534 
11535   // Variables that can be needed in other TUs are required.
11536   auto Linkage = GetGVALinkageForVariable(VD);
11537   if (!isDiscardableGVALinkage(Linkage))
11538     return true;
11539 
11540   // We never need to emit a variable that is available in another TU.
11541   if (Linkage == GVA_AvailableExternally)
11542     return false;
11543 
11544   // Variables that have destruction with side-effects are required.
11545   if (VD->needsDestruction(*this))
11546     return true;
11547 
11548   // Variables that have initialization with side-effects are required.
11549   if (VD->getInit() && VD->getInit()->HasSideEffects(*this) &&
11550       // We can get a value-dependent initializer during error recovery.
11551       (VD->getInit()->isValueDependent() || !VD->evaluateValue()))
11552     return true;
11553 
11554   // Likewise, variables with tuple-like bindings are required if their
11555   // bindings have side-effects.
11556   if (const auto *DD = dyn_cast<DecompositionDecl>(VD))
11557     for (const auto *BD : DD->bindings())
11558       if (const auto *BindingVD = BD->getHoldingVar())
11559         if (DeclMustBeEmitted(BindingVD))
11560           return true;
11561 
11562   return false;
11563 }
11564 
11565 void ASTContext::forEachMultiversionedFunctionVersion(
11566     const FunctionDecl *FD,
11567     llvm::function_ref<void(FunctionDecl *)> Pred) const {
11568   assert(FD->isMultiVersion() && "Only valid for multiversioned functions");
11569   llvm::SmallDenseSet<const FunctionDecl*, 4> SeenDecls;
11570   FD = FD->getMostRecentDecl();
11571   // FIXME: The order of traversal here matters and depends on the order of
11572   // lookup results, which happens to be (mostly) oldest-to-newest, but we
11573   // shouldn't rely on that.
11574   for (auto *CurDecl :
11575        FD->getDeclContext()->getRedeclContext()->lookup(FD->getDeclName())) {
11576     FunctionDecl *CurFD = CurDecl->getAsFunction()->getMostRecentDecl();
11577     if (CurFD && hasSameType(CurFD->getType(), FD->getType()) &&
11578         std::end(SeenDecls) == llvm::find(SeenDecls, CurFD)) {
11579       SeenDecls.insert(CurFD);
11580       Pred(CurFD);
11581     }
11582   }
11583 }
11584 
11585 CallingConv ASTContext::getDefaultCallingConvention(bool IsVariadic,
11586                                                     bool IsCXXMethod,
11587                                                     bool IsBuiltin) const {
11588   // Pass through to the C++ ABI object
11589   if (IsCXXMethod)
11590     return ABI->getDefaultMethodCallConv(IsVariadic);
11591 
11592   // Builtins ignore user-specified default calling convention and remain the
11593   // Target's default calling convention.
11594   if (!IsBuiltin) {
11595     switch (LangOpts.getDefaultCallingConv()) {
11596     case LangOptions::DCC_None:
11597       break;
11598     case LangOptions::DCC_CDecl:
11599       return CC_C;
11600     case LangOptions::DCC_FastCall:
11601       if (getTargetInfo().hasFeature("sse2") && !IsVariadic)
11602         return CC_X86FastCall;
11603       break;
11604     case LangOptions::DCC_StdCall:
11605       if (!IsVariadic)
11606         return CC_X86StdCall;
11607       break;
11608     case LangOptions::DCC_VectorCall:
11609       // __vectorcall cannot be applied to variadic functions.
11610       if (!IsVariadic)
11611         return CC_X86VectorCall;
11612       break;
11613     case LangOptions::DCC_RegCall:
11614       // __regcall cannot be applied to variadic functions.
11615       if (!IsVariadic)
11616         return CC_X86RegCall;
11617       break;
11618     }
11619   }
11620   return Target->getDefaultCallingConv();
11621 }
11622 
11623 bool ASTContext::isNearlyEmpty(const CXXRecordDecl *RD) const {
11624   // Pass through to the C++ ABI object
11625   return ABI->isNearlyEmpty(RD);
11626 }
11627 
11628 VTableContextBase *ASTContext::getVTableContext() {
11629   if (!VTContext.get()) {
11630     auto ABI = Target->getCXXABI();
11631     if (ABI.isMicrosoft())
11632       VTContext.reset(new MicrosoftVTableContext(*this));
11633     else {
11634       auto ComponentLayout = getLangOpts().RelativeCXXABIVTables
11635                                  ? ItaniumVTableContext::Relative
11636                                  : ItaniumVTableContext::Pointer;
11637       VTContext.reset(new ItaniumVTableContext(*this, ComponentLayout));
11638     }
11639   }
11640   return VTContext.get();
11641 }
11642 
11643 MangleContext *ASTContext::createMangleContext(const TargetInfo *T) {
11644   if (!T)
11645     T = Target;
11646   switch (T->getCXXABI().getKind()) {
11647   case TargetCXXABI::AppleARM64:
11648   case TargetCXXABI::Fuchsia:
11649   case TargetCXXABI::GenericAArch64:
11650   case TargetCXXABI::GenericItanium:
11651   case TargetCXXABI::GenericARM:
11652   case TargetCXXABI::GenericMIPS:
11653   case TargetCXXABI::iOS:
11654   case TargetCXXABI::WebAssembly:
11655   case TargetCXXABI::WatchOS:
11656   case TargetCXXABI::XL:
11657     return ItaniumMangleContext::create(*this, getDiagnostics());
11658   case TargetCXXABI::Microsoft:
11659     return MicrosoftMangleContext::create(*this, getDiagnostics());
11660   }
11661   llvm_unreachable("Unsupported ABI");
11662 }
11663 
11664 MangleContext *ASTContext::createDeviceMangleContext(const TargetInfo &T) {
11665   assert(T.getCXXABI().getKind() != TargetCXXABI::Microsoft &&
11666          "Device mangle context does not support Microsoft mangling.");
11667   switch (T.getCXXABI().getKind()) {
11668   case TargetCXXABI::AppleARM64:
11669   case TargetCXXABI::Fuchsia:
11670   case TargetCXXABI::GenericAArch64:
11671   case TargetCXXABI::GenericItanium:
11672   case TargetCXXABI::GenericARM:
11673   case TargetCXXABI::GenericMIPS:
11674   case TargetCXXABI::iOS:
11675   case TargetCXXABI::WebAssembly:
11676   case TargetCXXABI::WatchOS:
11677   case TargetCXXABI::XL:
11678     return ItaniumMangleContext::create(
11679         *this, getDiagnostics(),
11680         [](ASTContext &, const NamedDecl *ND) -> llvm::Optional<unsigned> {
11681           if (const auto *RD = dyn_cast<CXXRecordDecl>(ND))
11682             return RD->getDeviceLambdaManglingNumber();
11683           return llvm::None;
11684         });
11685   case TargetCXXABI::Microsoft:
11686     return MicrosoftMangleContext::create(*this, getDiagnostics());
11687   }
11688   llvm_unreachable("Unsupported ABI");
11689 }
11690 
11691 CXXABI::~CXXABI() = default;
11692 
11693 size_t ASTContext::getSideTableAllocatedMemory() const {
11694   return ASTRecordLayouts.getMemorySize() +
11695          llvm::capacity_in_bytes(ObjCLayouts) +
11696          llvm::capacity_in_bytes(KeyFunctions) +
11697          llvm::capacity_in_bytes(ObjCImpls) +
11698          llvm::capacity_in_bytes(BlockVarCopyInits) +
11699          llvm::capacity_in_bytes(DeclAttrs) +
11700          llvm::capacity_in_bytes(TemplateOrInstantiation) +
11701          llvm::capacity_in_bytes(InstantiatedFromUsingDecl) +
11702          llvm::capacity_in_bytes(InstantiatedFromUsingShadowDecl) +
11703          llvm::capacity_in_bytes(InstantiatedFromUnnamedFieldDecl) +
11704          llvm::capacity_in_bytes(OverriddenMethods) +
11705          llvm::capacity_in_bytes(Types) +
11706          llvm::capacity_in_bytes(VariableArrayTypes);
11707 }
11708 
11709 /// getIntTypeForBitwidth -
11710 /// sets integer QualTy according to specified details:
11711 /// bitwidth, signed/unsigned.
11712 /// Returns empty type if there is no appropriate target types.
11713 QualType ASTContext::getIntTypeForBitwidth(unsigned DestWidth,
11714                                            unsigned Signed) const {
11715   TargetInfo::IntType Ty = getTargetInfo().getIntTypeByWidth(DestWidth, Signed);
11716   CanQualType QualTy = getFromTargetType(Ty);
11717   if (!QualTy && DestWidth == 128)
11718     return Signed ? Int128Ty : UnsignedInt128Ty;
11719   return QualTy;
11720 }
11721 
11722 /// getRealTypeForBitwidth -
11723 /// sets floating point QualTy according to specified bitwidth.
11724 /// Returns empty type if there is no appropriate target types.
11725 QualType ASTContext::getRealTypeForBitwidth(unsigned DestWidth,
11726                                             FloatModeKind ExplicitType) const {
11727   FloatModeKind Ty =
11728       getTargetInfo().getRealTypeByWidth(DestWidth, ExplicitType);
11729   switch (Ty) {
11730   case FloatModeKind::Float:
11731     return FloatTy;
11732   case FloatModeKind::Double:
11733     return DoubleTy;
11734   case FloatModeKind::LongDouble:
11735     return LongDoubleTy;
11736   case FloatModeKind::Float128:
11737     return Float128Ty;
11738   case FloatModeKind::Ibm128:
11739     return Ibm128Ty;
11740   case FloatModeKind::NoFloat:
11741     return {};
11742   }
11743 
11744   llvm_unreachable("Unhandled TargetInfo::RealType value");
11745 }
11746 
11747 void ASTContext::setManglingNumber(const NamedDecl *ND, unsigned Number) {
11748   if (Number > 1)
11749     MangleNumbers[ND] = Number;
11750 }
11751 
11752 unsigned ASTContext::getManglingNumber(const NamedDecl *ND) const {
11753   auto I = MangleNumbers.find(ND);
11754   return I != MangleNumbers.end() ? I->second : 1;
11755 }
11756 
11757 void ASTContext::setStaticLocalNumber(const VarDecl *VD, unsigned Number) {
11758   if (Number > 1)
11759     StaticLocalNumbers[VD] = Number;
11760 }
11761 
11762 unsigned ASTContext::getStaticLocalNumber(const VarDecl *VD) const {
11763   auto I = StaticLocalNumbers.find(VD);
11764   return I != StaticLocalNumbers.end() ? I->second : 1;
11765 }
11766 
11767 MangleNumberingContext &
11768 ASTContext::getManglingNumberContext(const DeclContext *DC) {
11769   assert(LangOpts.CPlusPlus);  // We don't need mangling numbers for plain C.
11770   std::unique_ptr<MangleNumberingContext> &MCtx = MangleNumberingContexts[DC];
11771   if (!MCtx)
11772     MCtx = createMangleNumberingContext();
11773   return *MCtx;
11774 }
11775 
11776 MangleNumberingContext &
11777 ASTContext::getManglingNumberContext(NeedExtraManglingDecl_t, const Decl *D) {
11778   assert(LangOpts.CPlusPlus); // We don't need mangling numbers for plain C.
11779   std::unique_ptr<MangleNumberingContext> &MCtx =
11780       ExtraMangleNumberingContexts[D];
11781   if (!MCtx)
11782     MCtx = createMangleNumberingContext();
11783   return *MCtx;
11784 }
11785 
11786 std::unique_ptr<MangleNumberingContext>
11787 ASTContext::createMangleNumberingContext() const {
11788   return ABI->createMangleNumberingContext();
11789 }
11790 
11791 const CXXConstructorDecl *
11792 ASTContext::getCopyConstructorForExceptionObject(CXXRecordDecl *RD) {
11793   return ABI->getCopyConstructorForExceptionObject(
11794       cast<CXXRecordDecl>(RD->getFirstDecl()));
11795 }
11796 
11797 void ASTContext::addCopyConstructorForExceptionObject(CXXRecordDecl *RD,
11798                                                       CXXConstructorDecl *CD) {
11799   return ABI->addCopyConstructorForExceptionObject(
11800       cast<CXXRecordDecl>(RD->getFirstDecl()),
11801       cast<CXXConstructorDecl>(CD->getFirstDecl()));
11802 }
11803 
11804 void ASTContext::addTypedefNameForUnnamedTagDecl(TagDecl *TD,
11805                                                  TypedefNameDecl *DD) {
11806   return ABI->addTypedefNameForUnnamedTagDecl(TD, DD);
11807 }
11808 
11809 TypedefNameDecl *
11810 ASTContext::getTypedefNameForUnnamedTagDecl(const TagDecl *TD) {
11811   return ABI->getTypedefNameForUnnamedTagDecl(TD);
11812 }
11813 
11814 void ASTContext::addDeclaratorForUnnamedTagDecl(TagDecl *TD,
11815                                                 DeclaratorDecl *DD) {
11816   return ABI->addDeclaratorForUnnamedTagDecl(TD, DD);
11817 }
11818 
11819 DeclaratorDecl *ASTContext::getDeclaratorForUnnamedTagDecl(const TagDecl *TD) {
11820   return ABI->getDeclaratorForUnnamedTagDecl(TD);
11821 }
11822 
11823 void ASTContext::setParameterIndex(const ParmVarDecl *D, unsigned int index) {
11824   ParamIndices[D] = index;
11825 }
11826 
11827 unsigned ASTContext::getParameterIndex(const ParmVarDecl *D) const {
11828   ParameterIndexTable::const_iterator I = ParamIndices.find(D);
11829   assert(I != ParamIndices.end() &&
11830          "ParmIndices lacks entry set by ParmVarDecl");
11831   return I->second;
11832 }
11833 
11834 QualType ASTContext::getStringLiteralArrayType(QualType EltTy,
11835                                                unsigned Length) const {
11836   // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
11837   if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings)
11838     EltTy = EltTy.withConst();
11839 
11840   EltTy = adjustStringLiteralBaseType(EltTy);
11841 
11842   // Get an array type for the string, according to C99 6.4.5. This includes
11843   // the null terminator character.
11844   return getConstantArrayType(EltTy, llvm::APInt(32, Length + 1), nullptr,
11845                               ArrayType::Normal, /*IndexTypeQuals*/ 0);
11846 }
11847 
11848 StringLiteral *
11849 ASTContext::getPredefinedStringLiteralFromCache(StringRef Key) const {
11850   StringLiteral *&Result = StringLiteralCache[Key];
11851   if (!Result)
11852     Result = StringLiteral::Create(
11853         *this, Key, StringLiteral::Ascii,
11854         /*Pascal*/ false, getStringLiteralArrayType(CharTy, Key.size()),
11855         SourceLocation());
11856   return Result;
11857 }
11858 
11859 MSGuidDecl *
11860 ASTContext::getMSGuidDecl(MSGuidDecl::Parts Parts) const {
11861   assert(MSGuidTagDecl && "building MS GUID without MS extensions?");
11862 
11863   llvm::FoldingSetNodeID ID;
11864   MSGuidDecl::Profile(ID, Parts);
11865 
11866   void *InsertPos;
11867   if (MSGuidDecl *Existing = MSGuidDecls.FindNodeOrInsertPos(ID, InsertPos))
11868     return Existing;
11869 
11870   QualType GUIDType = getMSGuidType().withConst();
11871   MSGuidDecl *New = MSGuidDecl::Create(*this, GUIDType, Parts);
11872   MSGuidDecls.InsertNode(New, InsertPos);
11873   return New;
11874 }
11875 
11876 TemplateParamObjectDecl *
11877 ASTContext::getTemplateParamObjectDecl(QualType T, const APValue &V) const {
11878   assert(T->isRecordType() && "template param object of unexpected type");
11879 
11880   // C++ [temp.param]p8:
11881   //   [...] a static storage duration object of type 'const T' [...]
11882   T.addConst();
11883 
11884   llvm::FoldingSetNodeID ID;
11885   TemplateParamObjectDecl::Profile(ID, T, V);
11886 
11887   void *InsertPos;
11888   if (TemplateParamObjectDecl *Existing =
11889           TemplateParamObjectDecls.FindNodeOrInsertPos(ID, InsertPos))
11890     return Existing;
11891 
11892   TemplateParamObjectDecl *New = TemplateParamObjectDecl::Create(*this, T, V);
11893   TemplateParamObjectDecls.InsertNode(New, InsertPos);
11894   return New;
11895 }
11896 
11897 bool ASTContext::AtomicUsesUnsupportedLibcall(const AtomicExpr *E) const {
11898   const llvm::Triple &T = getTargetInfo().getTriple();
11899   if (!T.isOSDarwin())
11900     return false;
11901 
11902   if (!(T.isiOS() && T.isOSVersionLT(7)) &&
11903       !(T.isMacOSX() && T.isOSVersionLT(10, 9)))
11904     return false;
11905 
11906   QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
11907   CharUnits sizeChars = getTypeSizeInChars(AtomicTy);
11908   uint64_t Size = sizeChars.getQuantity();
11909   CharUnits alignChars = getTypeAlignInChars(AtomicTy);
11910   unsigned Align = alignChars.getQuantity();
11911   unsigned MaxInlineWidthInBits = getTargetInfo().getMaxAtomicInlineWidth();
11912   return (Size != Align || toBits(sizeChars) > MaxInlineWidthInBits);
11913 }
11914 
11915 bool
11916 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl,
11917                                 const ObjCMethodDecl *MethodImpl) {
11918   // No point trying to match an unavailable/deprecated mothod.
11919   if (MethodDecl->hasAttr<UnavailableAttr>()
11920       || MethodDecl->hasAttr<DeprecatedAttr>())
11921     return false;
11922   if (MethodDecl->getObjCDeclQualifier() !=
11923       MethodImpl->getObjCDeclQualifier())
11924     return false;
11925   if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType()))
11926     return false;
11927 
11928   if (MethodDecl->param_size() != MethodImpl->param_size())
11929     return false;
11930 
11931   for (ObjCMethodDecl::param_const_iterator IM = MethodImpl->param_begin(),
11932        IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(),
11933        EF = MethodDecl->param_end();
11934        IM != EM && IF != EF; ++IM, ++IF) {
11935     const ParmVarDecl *DeclVar = (*IF);
11936     const ParmVarDecl *ImplVar = (*IM);
11937     if (ImplVar->getObjCDeclQualifier() != DeclVar->getObjCDeclQualifier())
11938       return false;
11939     if (!hasSameType(DeclVar->getType(), ImplVar->getType()))
11940       return false;
11941   }
11942 
11943   return (MethodDecl->isVariadic() == MethodImpl->isVariadic());
11944 }
11945 
11946 uint64_t ASTContext::getTargetNullPointerValue(QualType QT) const {
11947   LangAS AS;
11948   if (QT->getUnqualifiedDesugaredType()->isNullPtrType())
11949     AS = LangAS::Default;
11950   else
11951     AS = QT->getPointeeType().getAddressSpace();
11952 
11953   return getTargetInfo().getNullPointerValue(AS);
11954 }
11955 
11956 unsigned ASTContext::getTargetAddressSpace(QualType T) const {
11957   return T->isFunctionType() ? getTargetInfo().getProgramAddressSpace()
11958                              : getTargetAddressSpace(T.getQualifiers());
11959 }
11960 
11961 unsigned ASTContext::getTargetAddressSpace(Qualifiers Q) const {
11962   return getTargetAddressSpace(Q.getAddressSpace());
11963 }
11964 
11965 unsigned ASTContext::getTargetAddressSpace(LangAS AS) const {
11966   if (isTargetAddressSpace(AS))
11967     return toTargetAddressSpace(AS);
11968   else
11969     return (*AddrSpaceMap)[(unsigned)AS];
11970 }
11971 
11972 QualType ASTContext::getCorrespondingSaturatedType(QualType Ty) const {
11973   assert(Ty->isFixedPointType());
11974 
11975   if (Ty->isSaturatedFixedPointType()) return Ty;
11976 
11977   switch (Ty->castAs<BuiltinType>()->getKind()) {
11978     default:
11979       llvm_unreachable("Not a fixed point type!");
11980     case BuiltinType::ShortAccum:
11981       return SatShortAccumTy;
11982     case BuiltinType::Accum:
11983       return SatAccumTy;
11984     case BuiltinType::LongAccum:
11985       return SatLongAccumTy;
11986     case BuiltinType::UShortAccum:
11987       return SatUnsignedShortAccumTy;
11988     case BuiltinType::UAccum:
11989       return SatUnsignedAccumTy;
11990     case BuiltinType::ULongAccum:
11991       return SatUnsignedLongAccumTy;
11992     case BuiltinType::ShortFract:
11993       return SatShortFractTy;
11994     case BuiltinType::Fract:
11995       return SatFractTy;
11996     case BuiltinType::LongFract:
11997       return SatLongFractTy;
11998     case BuiltinType::UShortFract:
11999       return SatUnsignedShortFractTy;
12000     case BuiltinType::UFract:
12001       return SatUnsignedFractTy;
12002     case BuiltinType::ULongFract:
12003       return SatUnsignedLongFractTy;
12004   }
12005 }
12006 
12007 LangAS ASTContext::getLangASForBuiltinAddressSpace(unsigned AS) const {
12008   if (LangOpts.OpenCL)
12009     return getTargetInfo().getOpenCLBuiltinAddressSpace(AS);
12010 
12011   if (LangOpts.CUDA)
12012     return getTargetInfo().getCUDABuiltinAddressSpace(AS);
12013 
12014   return getLangASFromTargetAS(AS);
12015 }
12016 
12017 // Explicitly instantiate this in case a Redeclarable<T> is used from a TU that
12018 // doesn't include ASTContext.h
12019 template
12020 clang::LazyGenerationalUpdatePtr<
12021     const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::ValueType
12022 clang::LazyGenerationalUpdatePtr<
12023     const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::makeValue(
12024         const clang::ASTContext &Ctx, Decl *Value);
12025 
12026 unsigned char ASTContext::getFixedPointScale(QualType Ty) const {
12027   assert(Ty->isFixedPointType());
12028 
12029   const TargetInfo &Target = getTargetInfo();
12030   switch (Ty->castAs<BuiltinType>()->getKind()) {
12031     default:
12032       llvm_unreachable("Not a fixed point type!");
12033     case BuiltinType::ShortAccum:
12034     case BuiltinType::SatShortAccum:
12035       return Target.getShortAccumScale();
12036     case BuiltinType::Accum:
12037     case BuiltinType::SatAccum:
12038       return Target.getAccumScale();
12039     case BuiltinType::LongAccum:
12040     case BuiltinType::SatLongAccum:
12041       return Target.getLongAccumScale();
12042     case BuiltinType::UShortAccum:
12043     case BuiltinType::SatUShortAccum:
12044       return Target.getUnsignedShortAccumScale();
12045     case BuiltinType::UAccum:
12046     case BuiltinType::SatUAccum:
12047       return Target.getUnsignedAccumScale();
12048     case BuiltinType::ULongAccum:
12049     case BuiltinType::SatULongAccum:
12050       return Target.getUnsignedLongAccumScale();
12051     case BuiltinType::ShortFract:
12052     case BuiltinType::SatShortFract:
12053       return Target.getShortFractScale();
12054     case BuiltinType::Fract:
12055     case BuiltinType::SatFract:
12056       return Target.getFractScale();
12057     case BuiltinType::LongFract:
12058     case BuiltinType::SatLongFract:
12059       return Target.getLongFractScale();
12060     case BuiltinType::UShortFract:
12061     case BuiltinType::SatUShortFract:
12062       return Target.getUnsignedShortFractScale();
12063     case BuiltinType::UFract:
12064     case BuiltinType::SatUFract:
12065       return Target.getUnsignedFractScale();
12066     case BuiltinType::ULongFract:
12067     case BuiltinType::SatULongFract:
12068       return Target.getUnsignedLongFractScale();
12069   }
12070 }
12071 
12072 unsigned char ASTContext::getFixedPointIBits(QualType Ty) const {
12073   assert(Ty->isFixedPointType());
12074 
12075   const TargetInfo &Target = getTargetInfo();
12076   switch (Ty->castAs<BuiltinType>()->getKind()) {
12077     default:
12078       llvm_unreachable("Not a fixed point type!");
12079     case BuiltinType::ShortAccum:
12080     case BuiltinType::SatShortAccum:
12081       return Target.getShortAccumIBits();
12082     case BuiltinType::Accum:
12083     case BuiltinType::SatAccum:
12084       return Target.getAccumIBits();
12085     case BuiltinType::LongAccum:
12086     case BuiltinType::SatLongAccum:
12087       return Target.getLongAccumIBits();
12088     case BuiltinType::UShortAccum:
12089     case BuiltinType::SatUShortAccum:
12090       return Target.getUnsignedShortAccumIBits();
12091     case BuiltinType::UAccum:
12092     case BuiltinType::SatUAccum:
12093       return Target.getUnsignedAccumIBits();
12094     case BuiltinType::ULongAccum:
12095     case BuiltinType::SatULongAccum:
12096       return Target.getUnsignedLongAccumIBits();
12097     case BuiltinType::ShortFract:
12098     case BuiltinType::SatShortFract:
12099     case BuiltinType::Fract:
12100     case BuiltinType::SatFract:
12101     case BuiltinType::LongFract:
12102     case BuiltinType::SatLongFract:
12103     case BuiltinType::UShortFract:
12104     case BuiltinType::SatUShortFract:
12105     case BuiltinType::UFract:
12106     case BuiltinType::SatUFract:
12107     case BuiltinType::ULongFract:
12108     case BuiltinType::SatULongFract:
12109       return 0;
12110   }
12111 }
12112 
12113 llvm::FixedPointSemantics
12114 ASTContext::getFixedPointSemantics(QualType Ty) const {
12115   assert((Ty->isFixedPointType() || Ty->isIntegerType()) &&
12116          "Can only get the fixed point semantics for a "
12117          "fixed point or integer type.");
12118   if (Ty->isIntegerType())
12119     return llvm::FixedPointSemantics::GetIntegerSemantics(
12120         getIntWidth(Ty), Ty->isSignedIntegerType());
12121 
12122   bool isSigned = Ty->isSignedFixedPointType();
12123   return llvm::FixedPointSemantics(
12124       static_cast<unsigned>(getTypeSize(Ty)), getFixedPointScale(Ty), isSigned,
12125       Ty->isSaturatedFixedPointType(),
12126       !isSigned && getTargetInfo().doUnsignedFixedPointTypesHavePadding());
12127 }
12128 
12129 llvm::APFixedPoint ASTContext::getFixedPointMax(QualType Ty) const {
12130   assert(Ty->isFixedPointType());
12131   return llvm::APFixedPoint::getMax(getFixedPointSemantics(Ty));
12132 }
12133 
12134 llvm::APFixedPoint ASTContext::getFixedPointMin(QualType Ty) const {
12135   assert(Ty->isFixedPointType());
12136   return llvm::APFixedPoint::getMin(getFixedPointSemantics(Ty));
12137 }
12138 
12139 QualType ASTContext::getCorrespondingSignedFixedPointType(QualType Ty) const {
12140   assert(Ty->isUnsignedFixedPointType() &&
12141          "Expected unsigned fixed point type");
12142 
12143   switch (Ty->castAs<BuiltinType>()->getKind()) {
12144   case BuiltinType::UShortAccum:
12145     return ShortAccumTy;
12146   case BuiltinType::UAccum:
12147     return AccumTy;
12148   case BuiltinType::ULongAccum:
12149     return LongAccumTy;
12150   case BuiltinType::SatUShortAccum:
12151     return SatShortAccumTy;
12152   case BuiltinType::SatUAccum:
12153     return SatAccumTy;
12154   case BuiltinType::SatULongAccum:
12155     return SatLongAccumTy;
12156   case BuiltinType::UShortFract:
12157     return ShortFractTy;
12158   case BuiltinType::UFract:
12159     return FractTy;
12160   case BuiltinType::ULongFract:
12161     return LongFractTy;
12162   case BuiltinType::SatUShortFract:
12163     return SatShortFractTy;
12164   case BuiltinType::SatUFract:
12165     return SatFractTy;
12166   case BuiltinType::SatULongFract:
12167     return SatLongFractTy;
12168   default:
12169     llvm_unreachable("Unexpected unsigned fixed point type");
12170   }
12171 }
12172 
12173 ParsedTargetAttr
12174 ASTContext::filterFunctionTargetAttrs(const TargetAttr *TD) const {
12175   assert(TD != nullptr);
12176   ParsedTargetAttr ParsedAttr = TD->parse();
12177 
12178   llvm::erase_if(ParsedAttr.Features, [&](const std::string &Feat) {
12179     return !Target->isValidFeatureName(StringRef{Feat}.substr(1));
12180   });
12181   return ParsedAttr;
12182 }
12183 
12184 void ASTContext::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap,
12185                                        const FunctionDecl *FD) const {
12186   if (FD)
12187     getFunctionFeatureMap(FeatureMap, GlobalDecl().getWithDecl(FD));
12188   else
12189     Target->initFeatureMap(FeatureMap, getDiagnostics(),
12190                            Target->getTargetOpts().CPU,
12191                            Target->getTargetOpts().Features);
12192 }
12193 
12194 // Fills in the supplied string map with the set of target features for the
12195 // passed in function.
12196 void ASTContext::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap,
12197                                        GlobalDecl GD) const {
12198   StringRef TargetCPU = Target->getTargetOpts().CPU;
12199   const FunctionDecl *FD = GD.getDecl()->getAsFunction();
12200   if (const auto *TD = FD->getAttr<TargetAttr>()) {
12201     ParsedTargetAttr ParsedAttr = filterFunctionTargetAttrs(TD);
12202 
12203     // Make a copy of the features as passed on the command line into the
12204     // beginning of the additional features from the function to override.
12205     ParsedAttr.Features.insert(
12206         ParsedAttr.Features.begin(),
12207         Target->getTargetOpts().FeaturesAsWritten.begin(),
12208         Target->getTargetOpts().FeaturesAsWritten.end());
12209 
12210     if (ParsedAttr.Architecture != "" &&
12211         Target->isValidCPUName(ParsedAttr.Architecture))
12212       TargetCPU = ParsedAttr.Architecture;
12213 
12214     // Now populate the feature map, first with the TargetCPU which is either
12215     // the default or a new one from the target attribute string. Then we'll use
12216     // the passed in features (FeaturesAsWritten) along with the new ones from
12217     // the attribute.
12218     Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU,
12219                            ParsedAttr.Features);
12220   } else if (const auto *SD = FD->getAttr<CPUSpecificAttr>()) {
12221     llvm::SmallVector<StringRef, 32> FeaturesTmp;
12222     Target->getCPUSpecificCPUDispatchFeatures(
12223         SD->getCPUName(GD.getMultiVersionIndex())->getName(), FeaturesTmp);
12224     std::vector<std::string> Features(FeaturesTmp.begin(), FeaturesTmp.end());
12225     Features.insert(Features.begin(),
12226                     Target->getTargetOpts().FeaturesAsWritten.begin(),
12227                     Target->getTargetOpts().FeaturesAsWritten.end());
12228     Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU, Features);
12229   } else if (const auto *TC = FD->getAttr<TargetClonesAttr>()) {
12230     std::vector<std::string> Features;
12231     StringRef VersionStr = TC->getFeatureStr(GD.getMultiVersionIndex());
12232     if (VersionStr.startswith("arch="))
12233       TargetCPU = VersionStr.drop_front(sizeof("arch=") - 1);
12234     else if (VersionStr != "default")
12235       Features.push_back((StringRef{"+"} + VersionStr).str());
12236 
12237     Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU, Features);
12238   } else {
12239     FeatureMap = Target->getTargetOpts().FeatureMap;
12240   }
12241 }
12242 
12243 OMPTraitInfo &ASTContext::getNewOMPTraitInfo() {
12244   OMPTraitInfoVector.emplace_back(new OMPTraitInfo());
12245   return *OMPTraitInfoVector.back();
12246 }
12247 
12248 const StreamingDiagnostic &clang::
12249 operator<<(const StreamingDiagnostic &DB,
12250            const ASTContext::SectionInfo &Section) {
12251   if (Section.Decl)
12252     return DB << Section.Decl;
12253   return DB << "a prior #pragma section";
12254 }
12255 
12256 bool ASTContext::mayExternalizeStaticVar(const Decl *D) const {
12257   bool IsStaticVar =
12258       isa<VarDecl>(D) && cast<VarDecl>(D)->getStorageClass() == SC_Static;
12259   bool IsExplicitDeviceVar = (D->hasAttr<CUDADeviceAttr>() &&
12260                               !D->getAttr<CUDADeviceAttr>()->isImplicit()) ||
12261                              (D->hasAttr<CUDAConstantAttr>() &&
12262                               !D->getAttr<CUDAConstantAttr>()->isImplicit());
12263   // CUDA/HIP: static managed variables need to be externalized since it is
12264   // a declaration in IR, therefore cannot have internal linkage.
12265   return IsStaticVar &&
12266          (D->hasAttr<HIPManagedAttr>() || IsExplicitDeviceVar);
12267 }
12268 
12269 bool ASTContext::shouldExternalizeStaticVar(const Decl *D) const {
12270   return mayExternalizeStaticVar(D) &&
12271          (D->hasAttr<HIPManagedAttr>() ||
12272           CUDADeviceVarODRUsedByHost.count(cast<VarDecl>(D)));
12273 }
12274 
12275 StringRef ASTContext::getCUIDHash() const {
12276   if (!CUIDHash.empty())
12277     return CUIDHash;
12278   if (LangOpts.CUID.empty())
12279     return StringRef();
12280   CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true);
12281   return CUIDHash;
12282 }
12283