1 //===--- ASTContext.cpp - Context to hold long-lived AST nodes ------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements the ASTContext interface.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/AST/ASTContext.h"
15 #include "CXXABI.h"
16 #include "clang/AST/ASTMutationListener.h"
17 #include "clang/AST/Attr.h"
18 #include "clang/AST/CharUnits.h"
19 #include "clang/AST/Comment.h"
20 #include "clang/AST/CommentCommandTraits.h"
21 #include "clang/AST/DeclCXX.h"
22 #include "clang/AST/DeclContextInternals.h"
23 #include "clang/AST/DeclObjC.h"
24 #include "clang/AST/DeclTemplate.h"
25 #include "clang/AST/Expr.h"
26 #include "clang/AST/ExprCXX.h"
27 #include "clang/AST/ExternalASTSource.h"
28 #include "clang/AST/Mangle.h"
29 #include "clang/AST/MangleNumberingContext.h"
30 #include "clang/AST/RecordLayout.h"
31 #include "clang/AST/RecursiveASTVisitor.h"
32 #include "clang/AST/TypeLoc.h"
33 #include "clang/AST/VTableBuilder.h"
34 #include "clang/Basic/Builtins.h"
35 #include "clang/Basic/SourceManager.h"
36 #include "clang/Basic/TargetInfo.h"
37 #include "llvm/ADT/StringExtras.h"
38 #include "llvm/ADT/Triple.h"
39 #include "llvm/Support/Capacity.h"
40 #include "llvm/Support/MathExtras.h"
41 #include "llvm/Support/raw_ostream.h"
42 #include <map>
43 
44 using namespace clang;
45 
46 unsigned ASTContext::NumImplicitDefaultConstructors;
47 unsigned ASTContext::NumImplicitDefaultConstructorsDeclared;
48 unsigned ASTContext::NumImplicitCopyConstructors;
49 unsigned ASTContext::NumImplicitCopyConstructorsDeclared;
50 unsigned ASTContext::NumImplicitMoveConstructors;
51 unsigned ASTContext::NumImplicitMoveConstructorsDeclared;
52 unsigned ASTContext::NumImplicitCopyAssignmentOperators;
53 unsigned ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
54 unsigned ASTContext::NumImplicitMoveAssignmentOperators;
55 unsigned ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
56 unsigned ASTContext::NumImplicitDestructors;
57 unsigned ASTContext::NumImplicitDestructorsDeclared;
58 
59 enum FloatingRank {
60   HalfRank, FloatRank, DoubleRank, LongDoubleRank, Float128Rank
61 };
62 
63 RawComment *ASTContext::getRawCommentForDeclNoCache(const Decl *D) const {
64   if (!CommentsLoaded && ExternalSource) {
65     ExternalSource->ReadComments();
66 
67 #ifndef NDEBUG
68     ArrayRef<RawComment *> RawComments = Comments.getComments();
69     assert(std::is_sorted(RawComments.begin(), RawComments.end(),
70                           BeforeThanCompare<RawComment>(SourceMgr)));
71 #endif
72 
73     CommentsLoaded = true;
74   }
75 
76   assert(D);
77 
78   // User can not attach documentation to implicit declarations.
79   if (D->isImplicit())
80     return nullptr;
81 
82   // User can not attach documentation to implicit instantiations.
83   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
84     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
85       return nullptr;
86   }
87 
88   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
89     if (VD->isStaticDataMember() &&
90         VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
91       return nullptr;
92   }
93 
94   if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) {
95     if (CRD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
96       return nullptr;
97   }
98 
99   if (const ClassTemplateSpecializationDecl *CTSD =
100           dyn_cast<ClassTemplateSpecializationDecl>(D)) {
101     TemplateSpecializationKind TSK = CTSD->getSpecializationKind();
102     if (TSK == TSK_ImplicitInstantiation ||
103         TSK == TSK_Undeclared)
104       return nullptr;
105   }
106 
107   if (const EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
108     if (ED->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
109       return nullptr;
110   }
111   if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
112     // When tag declaration (but not definition!) is part of the
113     // decl-specifier-seq of some other declaration, it doesn't get comment
114     if (TD->isEmbeddedInDeclarator() && !TD->isCompleteDefinition())
115       return nullptr;
116   }
117   // TODO: handle comments for function parameters properly.
118   if (isa<ParmVarDecl>(D))
119     return nullptr;
120 
121   // TODO: we could look up template parameter documentation in the template
122   // documentation.
123   if (isa<TemplateTypeParmDecl>(D) ||
124       isa<NonTypeTemplateParmDecl>(D) ||
125       isa<TemplateTemplateParmDecl>(D))
126     return nullptr;
127 
128   ArrayRef<RawComment *> RawComments = Comments.getComments();
129 
130   // If there are no comments anywhere, we won't find anything.
131   if (RawComments.empty())
132     return nullptr;
133 
134   // Find declaration location.
135   // For Objective-C declarations we generally don't expect to have multiple
136   // declarators, thus use declaration starting location as the "declaration
137   // location".
138   // For all other declarations multiple declarators are used quite frequently,
139   // so we use the location of the identifier as the "declaration location".
140   SourceLocation DeclLoc;
141   if (isa<ObjCMethodDecl>(D) || isa<ObjCContainerDecl>(D) ||
142       isa<ObjCPropertyDecl>(D) ||
143       isa<RedeclarableTemplateDecl>(D) ||
144       isa<ClassTemplateSpecializationDecl>(D))
145     DeclLoc = D->getLocStart();
146   else {
147     DeclLoc = D->getLocation();
148     if (DeclLoc.isMacroID()) {
149       if (isa<TypedefDecl>(D)) {
150         // If location of the typedef name is in a macro, it is because being
151         // declared via a macro. Try using declaration's starting location as
152         // the "declaration location".
153         DeclLoc = D->getLocStart();
154       } else if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
155         // If location of the tag decl is inside a macro, but the spelling of
156         // the tag name comes from a macro argument, it looks like a special
157         // macro like NS_ENUM is being used to define the tag decl.  In that
158         // case, adjust the source location to the expansion loc so that we can
159         // attach the comment to the tag decl.
160         if (SourceMgr.isMacroArgExpansion(DeclLoc) &&
161             TD->isCompleteDefinition())
162           DeclLoc = SourceMgr.getExpansionLoc(DeclLoc);
163       }
164     }
165   }
166 
167   // If the declaration doesn't map directly to a location in a file, we
168   // can't find the comment.
169   if (DeclLoc.isInvalid() || !DeclLoc.isFileID())
170     return nullptr;
171 
172   // Find the comment that occurs just after this declaration.
173   ArrayRef<RawComment *>::iterator Comment;
174   {
175     // When searching for comments during parsing, the comment we are looking
176     // for is usually among the last two comments we parsed -- check them
177     // first.
178     RawComment CommentAtDeclLoc(
179         SourceMgr, SourceRange(DeclLoc), false,
180         LangOpts.CommentOpts.ParseAllComments);
181     BeforeThanCompare<RawComment> Compare(SourceMgr);
182     ArrayRef<RawComment *>::iterator MaybeBeforeDecl = RawComments.end() - 1;
183     bool Found = Compare(*MaybeBeforeDecl, &CommentAtDeclLoc);
184     if (!Found && RawComments.size() >= 2) {
185       MaybeBeforeDecl--;
186       Found = Compare(*MaybeBeforeDecl, &CommentAtDeclLoc);
187     }
188 
189     if (Found) {
190       Comment = MaybeBeforeDecl + 1;
191       assert(Comment == std::lower_bound(RawComments.begin(), RawComments.end(),
192                                          &CommentAtDeclLoc, Compare));
193     } else {
194       // Slow path.
195       Comment = std::lower_bound(RawComments.begin(), RawComments.end(),
196                                  &CommentAtDeclLoc, Compare);
197     }
198   }
199 
200   // Decompose the location for the declaration and find the beginning of the
201   // file buffer.
202   std::pair<FileID, unsigned> DeclLocDecomp = SourceMgr.getDecomposedLoc(DeclLoc);
203 
204   // First check whether we have a trailing comment.
205   if (Comment != RawComments.end() &&
206       (*Comment)->isDocumentation() && (*Comment)->isTrailingComment() &&
207       (isa<FieldDecl>(D) || isa<EnumConstantDecl>(D) || isa<VarDecl>(D) ||
208        isa<ObjCMethodDecl>(D) || isa<ObjCPropertyDecl>(D))) {
209     std::pair<FileID, unsigned> CommentBeginDecomp
210       = SourceMgr.getDecomposedLoc((*Comment)->getSourceRange().getBegin());
211     // Check that Doxygen trailing comment comes after the declaration, starts
212     // on the same line and in the same file as the declaration.
213     if (DeclLocDecomp.first == CommentBeginDecomp.first &&
214         SourceMgr.getLineNumber(DeclLocDecomp.first, DeclLocDecomp.second)
215           == SourceMgr.getLineNumber(CommentBeginDecomp.first,
216                                      CommentBeginDecomp.second)) {
217       return *Comment;
218     }
219   }
220 
221   // The comment just after the declaration was not a trailing comment.
222   // Let's look at the previous comment.
223   if (Comment == RawComments.begin())
224     return nullptr;
225   --Comment;
226 
227   // Check that we actually have a non-member Doxygen comment.
228   if (!(*Comment)->isDocumentation() || (*Comment)->isTrailingComment())
229     return nullptr;
230 
231   // Decompose the end of the comment.
232   std::pair<FileID, unsigned> CommentEndDecomp
233     = SourceMgr.getDecomposedLoc((*Comment)->getSourceRange().getEnd());
234 
235   // If the comment and the declaration aren't in the same file, then they
236   // aren't related.
237   if (DeclLocDecomp.first != CommentEndDecomp.first)
238     return nullptr;
239 
240   // Get the corresponding buffer.
241   bool Invalid = false;
242   const char *Buffer = SourceMgr.getBufferData(DeclLocDecomp.first,
243                                                &Invalid).data();
244   if (Invalid)
245     return nullptr;
246 
247   // Extract text between the comment and declaration.
248   StringRef Text(Buffer + CommentEndDecomp.second,
249                  DeclLocDecomp.second - CommentEndDecomp.second);
250 
251   // There should be no other declarations or preprocessor directives between
252   // comment and declaration.
253   if (Text.find_first_of(";{}#@") != StringRef::npos)
254     return nullptr;
255 
256   return *Comment;
257 }
258 
259 namespace {
260 /// If we have a 'templated' declaration for a template, adjust 'D' to
261 /// refer to the actual template.
262 /// If we have an implicit instantiation, adjust 'D' to refer to template.
263 const Decl *adjustDeclToTemplate(const Decl *D) {
264   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
265     // Is this function declaration part of a function template?
266     if (const FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
267       return FTD;
268 
269     // Nothing to do if function is not an implicit instantiation.
270     if (FD->getTemplateSpecializationKind() != TSK_ImplicitInstantiation)
271       return D;
272 
273     // Function is an implicit instantiation of a function template?
274     if (const FunctionTemplateDecl *FTD = FD->getPrimaryTemplate())
275       return FTD;
276 
277     // Function is instantiated from a member definition of a class template?
278     if (const FunctionDecl *MemberDecl =
279             FD->getInstantiatedFromMemberFunction())
280       return MemberDecl;
281 
282     return D;
283   }
284   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
285     // Static data member is instantiated from a member definition of a class
286     // template?
287     if (VD->isStaticDataMember())
288       if (const VarDecl *MemberDecl = VD->getInstantiatedFromStaticDataMember())
289         return MemberDecl;
290 
291     return D;
292   }
293   if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) {
294     // Is this class declaration part of a class template?
295     if (const ClassTemplateDecl *CTD = CRD->getDescribedClassTemplate())
296       return CTD;
297 
298     // Class is an implicit instantiation of a class template or partial
299     // specialization?
300     if (const ClassTemplateSpecializationDecl *CTSD =
301             dyn_cast<ClassTemplateSpecializationDecl>(CRD)) {
302       if (CTSD->getSpecializationKind() != TSK_ImplicitInstantiation)
303         return D;
304       llvm::PointerUnion<ClassTemplateDecl *,
305                          ClassTemplatePartialSpecializationDecl *>
306           PU = CTSD->getSpecializedTemplateOrPartial();
307       return PU.is<ClassTemplateDecl*>() ?
308           static_cast<const Decl*>(PU.get<ClassTemplateDecl *>()) :
309           static_cast<const Decl*>(
310               PU.get<ClassTemplatePartialSpecializationDecl *>());
311     }
312 
313     // Class is instantiated from a member definition of a class template?
314     if (const MemberSpecializationInfo *Info =
315                    CRD->getMemberSpecializationInfo())
316       return Info->getInstantiatedFrom();
317 
318     return D;
319   }
320   if (const EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
321     // Enum is instantiated from a member definition of a class template?
322     if (const EnumDecl *MemberDecl = ED->getInstantiatedFromMemberEnum())
323       return MemberDecl;
324 
325     return D;
326   }
327   // FIXME: Adjust alias templates?
328   return D;
329 }
330 } // anonymous namespace
331 
332 const RawComment *ASTContext::getRawCommentForAnyRedecl(
333                                                 const Decl *D,
334                                                 const Decl **OriginalDecl) const {
335   D = adjustDeclToTemplate(D);
336 
337   // Check whether we have cached a comment for this declaration already.
338   {
339     llvm::DenseMap<const Decl *, RawCommentAndCacheFlags>::iterator Pos =
340         RedeclComments.find(D);
341     if (Pos != RedeclComments.end()) {
342       const RawCommentAndCacheFlags &Raw = Pos->second;
343       if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
344         if (OriginalDecl)
345           *OriginalDecl = Raw.getOriginalDecl();
346         return Raw.getRaw();
347       }
348     }
349   }
350 
351   // Search for comments attached to declarations in the redeclaration chain.
352   const RawComment *RC = nullptr;
353   const Decl *OriginalDeclForRC = nullptr;
354   for (auto I : D->redecls()) {
355     llvm::DenseMap<const Decl *, RawCommentAndCacheFlags>::iterator Pos =
356         RedeclComments.find(I);
357     if (Pos != RedeclComments.end()) {
358       const RawCommentAndCacheFlags &Raw = Pos->second;
359       if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
360         RC = Raw.getRaw();
361         OriginalDeclForRC = Raw.getOriginalDecl();
362         break;
363       }
364     } else {
365       RC = getRawCommentForDeclNoCache(I);
366       OriginalDeclForRC = I;
367       RawCommentAndCacheFlags Raw;
368       if (RC) {
369         // Call order swapped to work around ICE in VS2015 RTM (Release Win32)
370         // https://connect.microsoft.com/VisualStudio/feedback/details/1741530
371         Raw.setKind(RawCommentAndCacheFlags::FromDecl);
372         Raw.setRaw(RC);
373       } else
374         Raw.setKind(RawCommentAndCacheFlags::NoCommentInDecl);
375       Raw.setOriginalDecl(I);
376       RedeclComments[I] = Raw;
377       if (RC)
378         break;
379     }
380   }
381 
382   // If we found a comment, it should be a documentation comment.
383   assert(!RC || RC->isDocumentation());
384 
385   if (OriginalDecl)
386     *OriginalDecl = OriginalDeclForRC;
387 
388   // Update cache for every declaration in the redeclaration chain.
389   RawCommentAndCacheFlags Raw;
390   Raw.setRaw(RC);
391   Raw.setKind(RawCommentAndCacheFlags::FromRedecl);
392   Raw.setOriginalDecl(OriginalDeclForRC);
393 
394   for (auto I : D->redecls()) {
395     RawCommentAndCacheFlags &R = RedeclComments[I];
396     if (R.getKind() == RawCommentAndCacheFlags::NoCommentInDecl)
397       R = Raw;
398   }
399 
400   return RC;
401 }
402 
403 static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod,
404                    SmallVectorImpl<const NamedDecl *> &Redeclared) {
405   const DeclContext *DC = ObjCMethod->getDeclContext();
406   if (const ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(DC)) {
407     const ObjCInterfaceDecl *ID = IMD->getClassInterface();
408     if (!ID)
409       return;
410     // Add redeclared method here.
411     for (const auto *Ext : ID->known_extensions()) {
412       if (ObjCMethodDecl *RedeclaredMethod =
413             Ext->getMethod(ObjCMethod->getSelector(),
414                                   ObjCMethod->isInstanceMethod()))
415         Redeclared.push_back(RedeclaredMethod);
416     }
417   }
418 }
419 
420 comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC,
421                                                     const Decl *D) const {
422   comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
423   ThisDeclInfo->CommentDecl = D;
424   ThisDeclInfo->IsFilled = false;
425   ThisDeclInfo->fill();
426   ThisDeclInfo->CommentDecl = FC->getDecl();
427   if (!ThisDeclInfo->TemplateParameters)
428     ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters;
429   comments::FullComment *CFC =
430     new (*this) comments::FullComment(FC->getBlocks(),
431                                       ThisDeclInfo);
432   return CFC;
433 }
434 
435 comments::FullComment *ASTContext::getLocalCommentForDeclUncached(const Decl *D) const {
436   const RawComment *RC = getRawCommentForDeclNoCache(D);
437   return RC ? RC->parse(*this, nullptr, D) : nullptr;
438 }
439 
440 comments::FullComment *ASTContext::getCommentForDecl(
441                                               const Decl *D,
442                                               const Preprocessor *PP) const {
443   if (D->isInvalidDecl())
444     return nullptr;
445   D = adjustDeclToTemplate(D);
446 
447   const Decl *Canonical = D->getCanonicalDecl();
448   llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos =
449       ParsedComments.find(Canonical);
450 
451   if (Pos != ParsedComments.end()) {
452     if (Canonical != D) {
453       comments::FullComment *FC = Pos->second;
454       comments::FullComment *CFC = cloneFullComment(FC, D);
455       return CFC;
456     }
457     return Pos->second;
458   }
459 
460   const Decl *OriginalDecl;
461 
462   const RawComment *RC = getRawCommentForAnyRedecl(D, &OriginalDecl);
463   if (!RC) {
464     if (isa<ObjCMethodDecl>(D) || isa<FunctionDecl>(D)) {
465       SmallVector<const NamedDecl*, 8> Overridden;
466       const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D);
467       if (OMD && OMD->isPropertyAccessor())
468         if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
469           if (comments::FullComment *FC = getCommentForDecl(PDecl, PP))
470             return cloneFullComment(FC, D);
471       if (OMD)
472         addRedeclaredMethods(OMD, Overridden);
473       getOverriddenMethods(dyn_cast<NamedDecl>(D), Overridden);
474       for (unsigned i = 0, e = Overridden.size(); i < e; i++)
475         if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP))
476           return cloneFullComment(FC, D);
477     }
478     else if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
479       // Attach any tag type's documentation to its typedef if latter
480       // does not have one of its own.
481       QualType QT = TD->getUnderlyingType();
482       if (const TagType *TT = QT->getAs<TagType>())
483         if (const Decl *TD = TT->getDecl())
484           if (comments::FullComment *FC = getCommentForDecl(TD, PP))
485             return cloneFullComment(FC, D);
486     }
487     else if (const ObjCInterfaceDecl *IC = dyn_cast<ObjCInterfaceDecl>(D)) {
488       while (IC->getSuperClass()) {
489         IC = IC->getSuperClass();
490         if (comments::FullComment *FC = getCommentForDecl(IC, PP))
491           return cloneFullComment(FC, D);
492       }
493     }
494     else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(D)) {
495       if (const ObjCInterfaceDecl *IC = CD->getClassInterface())
496         if (comments::FullComment *FC = getCommentForDecl(IC, PP))
497           return cloneFullComment(FC, D);
498     }
499     else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
500       if (!(RD = RD->getDefinition()))
501         return nullptr;
502       // Check non-virtual bases.
503       for (const auto &I : RD->bases()) {
504         if (I.isVirtual() || (I.getAccessSpecifier() != AS_public))
505           continue;
506         QualType Ty = I.getType();
507         if (Ty.isNull())
508           continue;
509         if (const CXXRecordDecl *NonVirtualBase = Ty->getAsCXXRecordDecl()) {
510           if (!(NonVirtualBase= NonVirtualBase->getDefinition()))
511             continue;
512 
513           if (comments::FullComment *FC = getCommentForDecl((NonVirtualBase), PP))
514             return cloneFullComment(FC, D);
515         }
516       }
517       // Check virtual bases.
518       for (const auto &I : RD->vbases()) {
519         if (I.getAccessSpecifier() != AS_public)
520           continue;
521         QualType Ty = I.getType();
522         if (Ty.isNull())
523           continue;
524         if (const CXXRecordDecl *VirtualBase = Ty->getAsCXXRecordDecl()) {
525           if (!(VirtualBase= VirtualBase->getDefinition()))
526             continue;
527           if (comments::FullComment *FC = getCommentForDecl((VirtualBase), PP))
528             return cloneFullComment(FC, D);
529         }
530       }
531     }
532     return nullptr;
533   }
534 
535   // If the RawComment was attached to other redeclaration of this Decl, we
536   // should parse the comment in context of that other Decl.  This is important
537   // because comments can contain references to parameter names which can be
538   // different across redeclarations.
539   if (D != OriginalDecl)
540     return getCommentForDecl(OriginalDecl, PP);
541 
542   comments::FullComment *FC = RC->parse(*this, PP, D);
543   ParsedComments[Canonical] = FC;
544   return FC;
545 }
546 
547 void
548 ASTContext::CanonicalTemplateTemplateParm::Profile(llvm::FoldingSetNodeID &ID,
549                                                TemplateTemplateParmDecl *Parm) {
550   ID.AddInteger(Parm->getDepth());
551   ID.AddInteger(Parm->getPosition());
552   ID.AddBoolean(Parm->isParameterPack());
553 
554   TemplateParameterList *Params = Parm->getTemplateParameters();
555   ID.AddInteger(Params->size());
556   for (TemplateParameterList::const_iterator P = Params->begin(),
557                                           PEnd = Params->end();
558        P != PEnd; ++P) {
559     if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
560       ID.AddInteger(0);
561       ID.AddBoolean(TTP->isParameterPack());
562       continue;
563     }
564 
565     if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
566       ID.AddInteger(1);
567       ID.AddBoolean(NTTP->isParameterPack());
568       ID.AddPointer(NTTP->getType().getCanonicalType().getAsOpaquePtr());
569       if (NTTP->isExpandedParameterPack()) {
570         ID.AddBoolean(true);
571         ID.AddInteger(NTTP->getNumExpansionTypes());
572         for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
573           QualType T = NTTP->getExpansionType(I);
574           ID.AddPointer(T.getCanonicalType().getAsOpaquePtr());
575         }
576       } else
577         ID.AddBoolean(false);
578       continue;
579     }
580 
581     TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P);
582     ID.AddInteger(2);
583     Profile(ID, TTP);
584   }
585 }
586 
587 TemplateTemplateParmDecl *
588 ASTContext::getCanonicalTemplateTemplateParmDecl(
589                                           TemplateTemplateParmDecl *TTP) const {
590   // Check if we already have a canonical template template parameter.
591   llvm::FoldingSetNodeID ID;
592   CanonicalTemplateTemplateParm::Profile(ID, TTP);
593   void *InsertPos = nullptr;
594   CanonicalTemplateTemplateParm *Canonical
595     = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
596   if (Canonical)
597     return Canonical->getParam();
598 
599   // Build a canonical template parameter list.
600   TemplateParameterList *Params = TTP->getTemplateParameters();
601   SmallVector<NamedDecl *, 4> CanonParams;
602   CanonParams.reserve(Params->size());
603   for (TemplateParameterList::const_iterator P = Params->begin(),
604                                           PEnd = Params->end();
605        P != PEnd; ++P) {
606     if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P))
607       CanonParams.push_back(
608                   TemplateTypeParmDecl::Create(*this, getTranslationUnitDecl(),
609                                                SourceLocation(),
610                                                SourceLocation(),
611                                                TTP->getDepth(),
612                                                TTP->getIndex(), nullptr, false,
613                                                TTP->isParameterPack()));
614     else if (NonTypeTemplateParmDecl *NTTP
615              = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
616       QualType T = getCanonicalType(NTTP->getType());
617       TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T);
618       NonTypeTemplateParmDecl *Param;
619       if (NTTP->isExpandedParameterPack()) {
620         SmallVector<QualType, 2> ExpandedTypes;
621         SmallVector<TypeSourceInfo *, 2> ExpandedTInfos;
622         for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
623           ExpandedTypes.push_back(getCanonicalType(NTTP->getExpansionType(I)));
624           ExpandedTInfos.push_back(
625                                 getTrivialTypeSourceInfo(ExpandedTypes.back()));
626         }
627 
628         Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
629                                                 SourceLocation(),
630                                                 SourceLocation(),
631                                                 NTTP->getDepth(),
632                                                 NTTP->getPosition(), nullptr,
633                                                 T,
634                                                 TInfo,
635                                                 ExpandedTypes,
636                                                 ExpandedTInfos);
637       } else {
638         Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
639                                                 SourceLocation(),
640                                                 SourceLocation(),
641                                                 NTTP->getDepth(),
642                                                 NTTP->getPosition(), nullptr,
643                                                 T,
644                                                 NTTP->isParameterPack(),
645                                                 TInfo);
646       }
647       CanonParams.push_back(Param);
648 
649     } else
650       CanonParams.push_back(getCanonicalTemplateTemplateParmDecl(
651                                            cast<TemplateTemplateParmDecl>(*P)));
652   }
653 
654   assert(!TTP->getRequiresClause() &&
655          "Unexpected requires-clause on template template-parameter");
656   Expr *const CanonRequiresClause = nullptr;
657 
658   TemplateTemplateParmDecl *CanonTTP
659     = TemplateTemplateParmDecl::Create(*this, getTranslationUnitDecl(),
660                                        SourceLocation(), TTP->getDepth(),
661                                        TTP->getPosition(),
662                                        TTP->isParameterPack(),
663                                        nullptr,
664                          TemplateParameterList::Create(*this, SourceLocation(),
665                                                        SourceLocation(),
666                                                        CanonParams,
667                                                        SourceLocation(),
668                                                        CanonRequiresClause));
669 
670   // Get the new insert position for the node we care about.
671   Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
672   assert(!Canonical && "Shouldn't be in the map!");
673   (void)Canonical;
674 
675   // Create the canonical template template parameter entry.
676   Canonical = new (*this) CanonicalTemplateTemplateParm(CanonTTP);
677   CanonTemplateTemplateParms.InsertNode(Canonical, InsertPos);
678   return CanonTTP;
679 }
680 
681 CXXABI *ASTContext::createCXXABI(const TargetInfo &T) {
682   if (!LangOpts.CPlusPlus) return nullptr;
683 
684   switch (T.getCXXABI().getKind()) {
685   case TargetCXXABI::GenericARM: // Same as Itanium at this level
686   case TargetCXXABI::iOS:
687   case TargetCXXABI::iOS64:
688   case TargetCXXABI::WatchOS:
689   case TargetCXXABI::GenericAArch64:
690   case TargetCXXABI::GenericMIPS:
691   case TargetCXXABI::GenericItanium:
692   case TargetCXXABI::WebAssembly:
693     return CreateItaniumCXXABI(*this);
694   case TargetCXXABI::Microsoft:
695     return CreateMicrosoftCXXABI(*this);
696   }
697   llvm_unreachable("Invalid CXXABI type!");
698 }
699 
700 static const LangAS::Map *getAddressSpaceMap(const TargetInfo &T,
701                                              const LangOptions &LOpts) {
702   if (LOpts.FakeAddressSpaceMap) {
703     // The fake address space map must have a distinct entry for each
704     // language-specific address space.
705     static const unsigned FakeAddrSpaceMap[] = {
706       1, // opencl_global
707       2, // opencl_local
708       3, // opencl_constant
709       4, // opencl_generic
710       5, // cuda_device
711       6, // cuda_constant
712       7  // cuda_shared
713     };
714     return &FakeAddrSpaceMap;
715   } else {
716     return &T.getAddressSpaceMap();
717   }
718 }
719 
720 static bool isAddrSpaceMapManglingEnabled(const TargetInfo &TI,
721                                           const LangOptions &LangOpts) {
722   switch (LangOpts.getAddressSpaceMapMangling()) {
723   case LangOptions::ASMM_Target:
724     return TI.useAddressSpaceMapMangling();
725   case LangOptions::ASMM_On:
726     return true;
727   case LangOptions::ASMM_Off:
728     return false;
729   }
730   llvm_unreachable("getAddressSpaceMapMangling() doesn't cover anything.");
731 }
732 
733 ASTContext::ASTContext(LangOptions &LOpts, SourceManager &SM,
734                        IdentifierTable &idents, SelectorTable &sels,
735                        Builtin::Context &builtins)
736     : FunctionProtoTypes(this_()), TemplateSpecializationTypes(this_()),
737       DependentTemplateSpecializationTypes(this_()),
738       SubstTemplateTemplateParmPacks(this_()),
739       GlobalNestedNameSpecifier(nullptr), Int128Decl(nullptr),
740       UInt128Decl(nullptr), BuiltinVaListDecl(nullptr),
741       BuiltinMSVaListDecl(nullptr), ObjCIdDecl(nullptr), ObjCSelDecl(nullptr),
742       ObjCClassDecl(nullptr), ObjCProtocolClassDecl(nullptr), BOOLDecl(nullptr),
743       CFConstantStringTagDecl(nullptr), CFConstantStringTypeDecl(nullptr),
744       ObjCInstanceTypeDecl(nullptr), FILEDecl(nullptr), jmp_bufDecl(nullptr),
745       sigjmp_bufDecl(nullptr), ucontext_tDecl(nullptr),
746       BlockDescriptorType(nullptr), BlockDescriptorExtendedType(nullptr),
747       cudaConfigureCallDecl(nullptr), FirstLocalImport(), LastLocalImport(),
748       ExternCContext(nullptr), MakeIntegerSeqDecl(nullptr),
749       TypePackElementDecl(nullptr), SourceMgr(SM), LangOpts(LOpts),
750       SanitizerBL(new SanitizerBlacklist(LangOpts.SanitizerBlacklistFiles, SM)),
751       AddrSpaceMap(nullptr), Target(nullptr), AuxTarget(nullptr),
752       PrintingPolicy(LOpts), Idents(idents), Selectors(sels),
753       BuiltinInfo(builtins), DeclarationNames(*this), ExternalSource(nullptr),
754       Listener(nullptr), Comments(SM), CommentsLoaded(false),
755       CommentCommandTraits(BumpAlloc, LOpts.CommentOpts), LastSDM(nullptr, 0) {
756   TUDecl = TranslationUnitDecl::Create(*this);
757 }
758 
759 ASTContext::~ASTContext() {
760   ReleaseParentMapEntries();
761 
762   // Release the DenseMaps associated with DeclContext objects.
763   // FIXME: Is this the ideal solution?
764   ReleaseDeclContextMaps();
765 
766   // Call all of the deallocation functions on all of their targets.
767   for (auto &Pair : Deallocations)
768     (Pair.first)(Pair.second);
769 
770   // ASTRecordLayout objects in ASTRecordLayouts must always be destroyed
771   // because they can contain DenseMaps.
772   for (llvm::DenseMap<const ObjCContainerDecl*,
773        const ASTRecordLayout*>::iterator
774        I = ObjCLayouts.begin(), E = ObjCLayouts.end(); I != E; )
775     // Increment in loop to prevent using deallocated memory.
776     if (ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second))
777       R->Destroy(*this);
778 
779   for (llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator
780        I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end(); I != E; ) {
781     // Increment in loop to prevent using deallocated memory.
782     if (ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second))
783       R->Destroy(*this);
784   }
785 
786   for (llvm::DenseMap<const Decl*, AttrVec*>::iterator A = DeclAttrs.begin(),
787                                                     AEnd = DeclAttrs.end();
788        A != AEnd; ++A)
789     A->second->~AttrVec();
790 
791   for (std::pair<const MaterializeTemporaryExpr *, APValue *> &MTVPair :
792        MaterializedTemporaryValues)
793     MTVPair.second->~APValue();
794 
795   for (const auto &Value : ModuleInitializers)
796     Value.second->~PerModuleInitializers();
797 }
798 
799 void ASTContext::ReleaseParentMapEntries() {
800   if (!PointerParents) return;
801   for (const auto &Entry : *PointerParents) {
802     if (Entry.second.is<ast_type_traits::DynTypedNode *>()) {
803       delete Entry.second.get<ast_type_traits::DynTypedNode *>();
804     } else if (Entry.second.is<ParentVector *>()) {
805       delete Entry.second.get<ParentVector *>();
806     }
807   }
808   for (const auto &Entry : *OtherParents) {
809     if (Entry.second.is<ast_type_traits::DynTypedNode *>()) {
810       delete Entry.second.get<ast_type_traits::DynTypedNode *>();
811     } else if (Entry.second.is<ParentVector *>()) {
812       delete Entry.second.get<ParentVector *>();
813     }
814   }
815 }
816 
817 void ASTContext::AddDeallocation(void (*Callback)(void*), void *Data) {
818   Deallocations.push_back({Callback, Data});
819 }
820 
821 void
822 ASTContext::setExternalSource(IntrusiveRefCntPtr<ExternalASTSource> Source) {
823   ExternalSource = std::move(Source);
824 }
825 
826 void ASTContext::PrintStats() const {
827   llvm::errs() << "\n*** AST Context Stats:\n";
828   llvm::errs() << "  " << Types.size() << " types total.\n";
829 
830   unsigned counts[] = {
831 #define TYPE(Name, Parent) 0,
832 #define ABSTRACT_TYPE(Name, Parent)
833 #include "clang/AST/TypeNodes.def"
834     0 // Extra
835   };
836 
837   for (unsigned i = 0, e = Types.size(); i != e; ++i) {
838     Type *T = Types[i];
839     counts[(unsigned)T->getTypeClass()]++;
840   }
841 
842   unsigned Idx = 0;
843   unsigned TotalBytes = 0;
844 #define TYPE(Name, Parent)                                              \
845   if (counts[Idx])                                                      \
846     llvm::errs() << "    " << counts[Idx] << " " << #Name               \
847                  << " types\n";                                         \
848   TotalBytes += counts[Idx] * sizeof(Name##Type);                       \
849   ++Idx;
850 #define ABSTRACT_TYPE(Name, Parent)
851 #include "clang/AST/TypeNodes.def"
852 
853   llvm::errs() << "Total bytes = " << TotalBytes << "\n";
854 
855   // Implicit special member functions.
856   llvm::errs() << NumImplicitDefaultConstructorsDeclared << "/"
857                << NumImplicitDefaultConstructors
858                << " implicit default constructors created\n";
859   llvm::errs() << NumImplicitCopyConstructorsDeclared << "/"
860                << NumImplicitCopyConstructors
861                << " implicit copy constructors created\n";
862   if (getLangOpts().CPlusPlus)
863     llvm::errs() << NumImplicitMoveConstructorsDeclared << "/"
864                  << NumImplicitMoveConstructors
865                  << " implicit move constructors created\n";
866   llvm::errs() << NumImplicitCopyAssignmentOperatorsDeclared << "/"
867                << NumImplicitCopyAssignmentOperators
868                << " implicit copy assignment operators created\n";
869   if (getLangOpts().CPlusPlus)
870     llvm::errs() << NumImplicitMoveAssignmentOperatorsDeclared << "/"
871                  << NumImplicitMoveAssignmentOperators
872                  << " implicit move assignment operators created\n";
873   llvm::errs() << NumImplicitDestructorsDeclared << "/"
874                << NumImplicitDestructors
875                << " implicit destructors created\n";
876 
877   if (ExternalSource) {
878     llvm::errs() << "\n";
879     ExternalSource->PrintStats();
880   }
881 
882   BumpAlloc.PrintStats();
883 }
884 
885 void ASTContext::mergeDefinitionIntoModule(NamedDecl *ND, Module *M,
886                                            bool NotifyListeners) {
887   if (NotifyListeners)
888     if (auto *Listener = getASTMutationListener())
889       Listener->RedefinedHiddenDefinition(ND, M);
890 
891   if (getLangOpts().ModulesLocalVisibility)
892     MergedDefModules[ND].push_back(M);
893   else
894     ND->setHidden(false);
895 }
896 
897 void ASTContext::deduplicateMergedDefinitonsFor(NamedDecl *ND) {
898   auto It = MergedDefModules.find(ND);
899   if (It == MergedDefModules.end())
900     return;
901 
902   auto &Merged = It->second;
903   llvm::DenseSet<Module*> Found;
904   for (Module *&M : Merged)
905     if (!Found.insert(M).second)
906       M = nullptr;
907   Merged.erase(std::remove(Merged.begin(), Merged.end(), nullptr), Merged.end());
908 }
909 
910 void ASTContext::PerModuleInitializers::resolve(ASTContext &Ctx) {
911   if (LazyInitializers.empty())
912     return;
913 
914   auto *Source = Ctx.getExternalSource();
915   assert(Source && "lazy initializers but no external source");
916 
917   auto LazyInits = std::move(LazyInitializers);
918   LazyInitializers.clear();
919 
920   for (auto ID : LazyInits)
921     Initializers.push_back(Source->GetExternalDecl(ID));
922 
923   assert(LazyInitializers.empty() &&
924          "GetExternalDecl for lazy module initializer added more inits");
925 }
926 
927 void ASTContext::addModuleInitializer(Module *M, Decl *D) {
928   // One special case: if we add a module initializer that imports another
929   // module, and that module's only initializer is an ImportDecl, simplify.
930   if (auto *ID = dyn_cast<ImportDecl>(D)) {
931     auto It = ModuleInitializers.find(ID->getImportedModule());
932 
933     // Maybe the ImportDecl does nothing at all. (Common case.)
934     if (It == ModuleInitializers.end())
935       return;
936 
937     // Maybe the ImportDecl only imports another ImportDecl.
938     auto &Imported = *It->second;
939     if (Imported.Initializers.size() + Imported.LazyInitializers.size() == 1) {
940       Imported.resolve(*this);
941       auto *OnlyDecl = Imported.Initializers.front();
942       if (isa<ImportDecl>(OnlyDecl))
943         D = OnlyDecl;
944     }
945   }
946 
947   auto *&Inits = ModuleInitializers[M];
948   if (!Inits)
949     Inits = new (*this) PerModuleInitializers;
950   Inits->Initializers.push_back(D);
951 }
952 
953 void ASTContext::addLazyModuleInitializers(Module *M, ArrayRef<uint32_t> IDs) {
954   auto *&Inits = ModuleInitializers[M];
955   if (!Inits)
956     Inits = new (*this) PerModuleInitializers;
957   Inits->LazyInitializers.insert(Inits->LazyInitializers.end(),
958                                  IDs.begin(), IDs.end());
959 }
960 
961 ArrayRef<Decl*> ASTContext::getModuleInitializers(Module *M) {
962   auto It = ModuleInitializers.find(M);
963   if (It == ModuleInitializers.end())
964     return None;
965 
966   auto *Inits = It->second;
967   Inits->resolve(*this);
968   return Inits->Initializers;
969 }
970 
971 ExternCContextDecl *ASTContext::getExternCContextDecl() const {
972   if (!ExternCContext)
973     ExternCContext = ExternCContextDecl::Create(*this, getTranslationUnitDecl());
974 
975   return ExternCContext;
976 }
977 
978 BuiltinTemplateDecl *
979 ASTContext::buildBuiltinTemplateDecl(BuiltinTemplateKind BTK,
980                                      const IdentifierInfo *II) const {
981   auto *BuiltinTemplate = BuiltinTemplateDecl::Create(*this, TUDecl, II, BTK);
982   BuiltinTemplate->setImplicit();
983   TUDecl->addDecl(BuiltinTemplate);
984 
985   return BuiltinTemplate;
986 }
987 
988 BuiltinTemplateDecl *
989 ASTContext::getMakeIntegerSeqDecl() const {
990   if (!MakeIntegerSeqDecl)
991     MakeIntegerSeqDecl = buildBuiltinTemplateDecl(BTK__make_integer_seq,
992                                                   getMakeIntegerSeqName());
993   return MakeIntegerSeqDecl;
994 }
995 
996 BuiltinTemplateDecl *
997 ASTContext::getTypePackElementDecl() const {
998   if (!TypePackElementDecl)
999     TypePackElementDecl = buildBuiltinTemplateDecl(BTK__type_pack_element,
1000                                                    getTypePackElementName());
1001   return TypePackElementDecl;
1002 }
1003 
1004 RecordDecl *ASTContext::buildImplicitRecord(StringRef Name,
1005                                             RecordDecl::TagKind TK) const {
1006   SourceLocation Loc;
1007   RecordDecl *NewDecl;
1008   if (getLangOpts().CPlusPlus)
1009     NewDecl = CXXRecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc,
1010                                     Loc, &Idents.get(Name));
1011   else
1012     NewDecl = RecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc, Loc,
1013                                  &Idents.get(Name));
1014   NewDecl->setImplicit();
1015   NewDecl->addAttr(TypeVisibilityAttr::CreateImplicit(
1016       const_cast<ASTContext &>(*this), TypeVisibilityAttr::Default));
1017   return NewDecl;
1018 }
1019 
1020 TypedefDecl *ASTContext::buildImplicitTypedef(QualType T,
1021                                               StringRef Name) const {
1022   TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T);
1023   TypedefDecl *NewDecl = TypedefDecl::Create(
1024       const_cast<ASTContext &>(*this), getTranslationUnitDecl(),
1025       SourceLocation(), SourceLocation(), &Idents.get(Name), TInfo);
1026   NewDecl->setImplicit();
1027   return NewDecl;
1028 }
1029 
1030 TypedefDecl *ASTContext::getInt128Decl() const {
1031   if (!Int128Decl)
1032     Int128Decl = buildImplicitTypedef(Int128Ty, "__int128_t");
1033   return Int128Decl;
1034 }
1035 
1036 TypedefDecl *ASTContext::getUInt128Decl() const {
1037   if (!UInt128Decl)
1038     UInt128Decl = buildImplicitTypedef(UnsignedInt128Ty, "__uint128_t");
1039   return UInt128Decl;
1040 }
1041 
1042 void ASTContext::InitBuiltinType(CanQualType &R, BuiltinType::Kind K) {
1043   BuiltinType *Ty = new (*this, TypeAlignment) BuiltinType(K);
1044   R = CanQualType::CreateUnsafe(QualType(Ty, 0));
1045   Types.push_back(Ty);
1046 }
1047 
1048 void ASTContext::InitBuiltinTypes(const TargetInfo &Target,
1049                                   const TargetInfo *AuxTarget) {
1050   assert((!this->Target || this->Target == &Target) &&
1051          "Incorrect target reinitialization");
1052   assert(VoidTy.isNull() && "Context reinitialized?");
1053 
1054   this->Target = &Target;
1055   this->AuxTarget = AuxTarget;
1056 
1057   ABI.reset(createCXXABI(Target));
1058   AddrSpaceMap = getAddressSpaceMap(Target, LangOpts);
1059   AddrSpaceMapMangling = isAddrSpaceMapManglingEnabled(Target, LangOpts);
1060 
1061   // C99 6.2.5p19.
1062   InitBuiltinType(VoidTy,              BuiltinType::Void);
1063 
1064   // C99 6.2.5p2.
1065   InitBuiltinType(BoolTy,              BuiltinType::Bool);
1066   // C99 6.2.5p3.
1067   if (LangOpts.CharIsSigned)
1068     InitBuiltinType(CharTy,            BuiltinType::Char_S);
1069   else
1070     InitBuiltinType(CharTy,            BuiltinType::Char_U);
1071   // C99 6.2.5p4.
1072   InitBuiltinType(SignedCharTy,        BuiltinType::SChar);
1073   InitBuiltinType(ShortTy,             BuiltinType::Short);
1074   InitBuiltinType(IntTy,               BuiltinType::Int);
1075   InitBuiltinType(LongTy,              BuiltinType::Long);
1076   InitBuiltinType(LongLongTy,          BuiltinType::LongLong);
1077 
1078   // C99 6.2.5p6.
1079   InitBuiltinType(UnsignedCharTy,      BuiltinType::UChar);
1080   InitBuiltinType(UnsignedShortTy,     BuiltinType::UShort);
1081   InitBuiltinType(UnsignedIntTy,       BuiltinType::UInt);
1082   InitBuiltinType(UnsignedLongTy,      BuiltinType::ULong);
1083   InitBuiltinType(UnsignedLongLongTy,  BuiltinType::ULongLong);
1084 
1085   // C99 6.2.5p10.
1086   InitBuiltinType(FloatTy,             BuiltinType::Float);
1087   InitBuiltinType(DoubleTy,            BuiltinType::Double);
1088   InitBuiltinType(LongDoubleTy,        BuiltinType::LongDouble);
1089 
1090   // GNU extension, __float128 for IEEE quadruple precision
1091   InitBuiltinType(Float128Ty,          BuiltinType::Float128);
1092 
1093   // GNU extension, 128-bit integers.
1094   InitBuiltinType(Int128Ty,            BuiltinType::Int128);
1095   InitBuiltinType(UnsignedInt128Ty,    BuiltinType::UInt128);
1096 
1097   // C++ 3.9.1p5
1098   if (TargetInfo::isTypeSigned(Target.getWCharType()))
1099     InitBuiltinType(WCharTy,           BuiltinType::WChar_S);
1100   else  // -fshort-wchar makes wchar_t be unsigned.
1101     InitBuiltinType(WCharTy,           BuiltinType::WChar_U);
1102   if (LangOpts.CPlusPlus && LangOpts.WChar)
1103     WideCharTy = WCharTy;
1104   else {
1105     // C99 (or C++ using -fno-wchar).
1106     WideCharTy = getFromTargetType(Target.getWCharType());
1107   }
1108 
1109   WIntTy = getFromTargetType(Target.getWIntType());
1110 
1111   if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
1112     InitBuiltinType(Char16Ty,           BuiltinType::Char16);
1113   else // C99
1114     Char16Ty = getFromTargetType(Target.getChar16Type());
1115 
1116   if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++
1117     InitBuiltinType(Char32Ty,           BuiltinType::Char32);
1118   else // C99
1119     Char32Ty = getFromTargetType(Target.getChar32Type());
1120 
1121   // Placeholder type for type-dependent expressions whose type is
1122   // completely unknown. No code should ever check a type against
1123   // DependentTy and users should never see it; however, it is here to
1124   // help diagnose failures to properly check for type-dependent
1125   // expressions.
1126   InitBuiltinType(DependentTy,         BuiltinType::Dependent);
1127 
1128   // Placeholder type for functions.
1129   InitBuiltinType(OverloadTy,          BuiltinType::Overload);
1130 
1131   // Placeholder type for bound members.
1132   InitBuiltinType(BoundMemberTy,       BuiltinType::BoundMember);
1133 
1134   // Placeholder type for pseudo-objects.
1135   InitBuiltinType(PseudoObjectTy,      BuiltinType::PseudoObject);
1136 
1137   // "any" type; useful for debugger-like clients.
1138   InitBuiltinType(UnknownAnyTy,        BuiltinType::UnknownAny);
1139 
1140   // Placeholder type for unbridged ARC casts.
1141   InitBuiltinType(ARCUnbridgedCastTy,  BuiltinType::ARCUnbridgedCast);
1142 
1143   // Placeholder type for builtin functions.
1144   InitBuiltinType(BuiltinFnTy,  BuiltinType::BuiltinFn);
1145 
1146   // Placeholder type for OMP array sections.
1147   if (LangOpts.OpenMP)
1148     InitBuiltinType(OMPArraySectionTy, BuiltinType::OMPArraySection);
1149 
1150   // C99 6.2.5p11.
1151   FloatComplexTy      = getComplexType(FloatTy);
1152   DoubleComplexTy     = getComplexType(DoubleTy);
1153   LongDoubleComplexTy = getComplexType(LongDoubleTy);
1154   Float128ComplexTy   = getComplexType(Float128Ty);
1155 
1156   // Builtin types for 'id', 'Class', and 'SEL'.
1157   InitBuiltinType(ObjCBuiltinIdTy, BuiltinType::ObjCId);
1158   InitBuiltinType(ObjCBuiltinClassTy, BuiltinType::ObjCClass);
1159   InitBuiltinType(ObjCBuiltinSelTy, BuiltinType::ObjCSel);
1160 
1161   if (LangOpts.OpenCL) {
1162 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
1163     InitBuiltinType(SingletonId, BuiltinType::Id);
1164 #include "clang/Basic/OpenCLImageTypes.def"
1165 
1166     InitBuiltinType(OCLSamplerTy, BuiltinType::OCLSampler);
1167     InitBuiltinType(OCLEventTy, BuiltinType::OCLEvent);
1168     InitBuiltinType(OCLClkEventTy, BuiltinType::OCLClkEvent);
1169     InitBuiltinType(OCLQueueTy, BuiltinType::OCLQueue);
1170     InitBuiltinType(OCLNDRangeTy, BuiltinType::OCLNDRange);
1171     InitBuiltinType(OCLReserveIDTy, BuiltinType::OCLReserveID);
1172   }
1173 
1174   // Builtin type for __objc_yes and __objc_no
1175   ObjCBuiltinBoolTy = (Target.useSignedCharForObjCBool() ?
1176                        SignedCharTy : BoolTy);
1177 
1178   ObjCConstantStringType = QualType();
1179 
1180   ObjCSuperType = QualType();
1181 
1182   // void * type
1183   VoidPtrTy = getPointerType(VoidTy);
1184 
1185   // nullptr type (C++0x 2.14.7)
1186   InitBuiltinType(NullPtrTy,           BuiltinType::NullPtr);
1187 
1188   // half type (OpenCL 6.1.1.1) / ARM NEON __fp16
1189   InitBuiltinType(HalfTy, BuiltinType::Half);
1190 
1191   // Builtin type used to help define __builtin_va_list.
1192   VaListTagDecl = nullptr;
1193 }
1194 
1195 DiagnosticsEngine &ASTContext::getDiagnostics() const {
1196   return SourceMgr.getDiagnostics();
1197 }
1198 
1199 AttrVec& ASTContext::getDeclAttrs(const Decl *D) {
1200   AttrVec *&Result = DeclAttrs[D];
1201   if (!Result) {
1202     void *Mem = Allocate(sizeof(AttrVec));
1203     Result = new (Mem) AttrVec;
1204   }
1205 
1206   return *Result;
1207 }
1208 
1209 /// \brief Erase the attributes corresponding to the given declaration.
1210 void ASTContext::eraseDeclAttrs(const Decl *D) {
1211   llvm::DenseMap<const Decl*, AttrVec*>::iterator Pos = DeclAttrs.find(D);
1212   if (Pos != DeclAttrs.end()) {
1213     Pos->second->~AttrVec();
1214     DeclAttrs.erase(Pos);
1215   }
1216 }
1217 
1218 // FIXME: Remove ?
1219 MemberSpecializationInfo *
1220 ASTContext::getInstantiatedFromStaticDataMember(const VarDecl *Var) {
1221   assert(Var->isStaticDataMember() && "Not a static data member");
1222   return getTemplateOrSpecializationInfo(Var)
1223       .dyn_cast<MemberSpecializationInfo *>();
1224 }
1225 
1226 ASTContext::TemplateOrSpecializationInfo
1227 ASTContext::getTemplateOrSpecializationInfo(const VarDecl *Var) {
1228   llvm::DenseMap<const VarDecl *, TemplateOrSpecializationInfo>::iterator Pos =
1229       TemplateOrInstantiation.find(Var);
1230   if (Pos == TemplateOrInstantiation.end())
1231     return TemplateOrSpecializationInfo();
1232 
1233   return Pos->second;
1234 }
1235 
1236 void
1237 ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl,
1238                                                 TemplateSpecializationKind TSK,
1239                                           SourceLocation PointOfInstantiation) {
1240   assert(Inst->isStaticDataMember() && "Not a static data member");
1241   assert(Tmpl->isStaticDataMember() && "Not a static data member");
1242   setTemplateOrSpecializationInfo(Inst, new (*this) MemberSpecializationInfo(
1243                                             Tmpl, TSK, PointOfInstantiation));
1244 }
1245 
1246 void
1247 ASTContext::setTemplateOrSpecializationInfo(VarDecl *Inst,
1248                                             TemplateOrSpecializationInfo TSI) {
1249   assert(!TemplateOrInstantiation[Inst] &&
1250          "Already noted what the variable was instantiated from");
1251   TemplateOrInstantiation[Inst] = TSI;
1252 }
1253 
1254 FunctionDecl *ASTContext::getClassScopeSpecializationPattern(
1255                                                      const FunctionDecl *FD){
1256   assert(FD && "Specialization is 0");
1257   llvm::DenseMap<const FunctionDecl*, FunctionDecl *>::const_iterator Pos
1258     = ClassScopeSpecializationPattern.find(FD);
1259   if (Pos == ClassScopeSpecializationPattern.end())
1260     return nullptr;
1261 
1262   return Pos->second;
1263 }
1264 
1265 void ASTContext::setClassScopeSpecializationPattern(FunctionDecl *FD,
1266                                         FunctionDecl *Pattern) {
1267   assert(FD && "Specialization is 0");
1268   assert(Pattern && "Class scope specialization pattern is 0");
1269   ClassScopeSpecializationPattern[FD] = Pattern;
1270 }
1271 
1272 NamedDecl *
1273 ASTContext::getInstantiatedFromUsingDecl(UsingDecl *UUD) {
1274   llvm::DenseMap<UsingDecl *, NamedDecl *>::const_iterator Pos
1275     = InstantiatedFromUsingDecl.find(UUD);
1276   if (Pos == InstantiatedFromUsingDecl.end())
1277     return nullptr;
1278 
1279   return Pos->second;
1280 }
1281 
1282 void
1283 ASTContext::setInstantiatedFromUsingDecl(UsingDecl *Inst, NamedDecl *Pattern) {
1284   assert((isa<UsingDecl>(Pattern) ||
1285           isa<UnresolvedUsingValueDecl>(Pattern) ||
1286           isa<UnresolvedUsingTypenameDecl>(Pattern)) &&
1287          "pattern decl is not a using decl");
1288   assert(!InstantiatedFromUsingDecl[Inst] && "pattern already exists");
1289   InstantiatedFromUsingDecl[Inst] = Pattern;
1290 }
1291 
1292 UsingShadowDecl *
1293 ASTContext::getInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst) {
1294   llvm::DenseMap<UsingShadowDecl*, UsingShadowDecl*>::const_iterator Pos
1295     = InstantiatedFromUsingShadowDecl.find(Inst);
1296   if (Pos == InstantiatedFromUsingShadowDecl.end())
1297     return nullptr;
1298 
1299   return Pos->second;
1300 }
1301 
1302 void
1303 ASTContext::setInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst,
1304                                                UsingShadowDecl *Pattern) {
1305   assert(!InstantiatedFromUsingShadowDecl[Inst] && "pattern already exists");
1306   InstantiatedFromUsingShadowDecl[Inst] = Pattern;
1307 }
1308 
1309 FieldDecl *ASTContext::getInstantiatedFromUnnamedFieldDecl(FieldDecl *Field) {
1310   llvm::DenseMap<FieldDecl *, FieldDecl *>::iterator Pos
1311     = InstantiatedFromUnnamedFieldDecl.find(Field);
1312   if (Pos == InstantiatedFromUnnamedFieldDecl.end())
1313     return nullptr;
1314 
1315   return Pos->second;
1316 }
1317 
1318 void ASTContext::setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst,
1319                                                      FieldDecl *Tmpl) {
1320   assert(!Inst->getDeclName() && "Instantiated field decl is not unnamed");
1321   assert(!Tmpl->getDeclName() && "Template field decl is not unnamed");
1322   assert(!InstantiatedFromUnnamedFieldDecl[Inst] &&
1323          "Already noted what unnamed field was instantiated from");
1324 
1325   InstantiatedFromUnnamedFieldDecl[Inst] = Tmpl;
1326 }
1327 
1328 ASTContext::overridden_cxx_method_iterator
1329 ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const {
1330   llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos =
1331       OverriddenMethods.find(Method->getCanonicalDecl());
1332   if (Pos == OverriddenMethods.end())
1333     return nullptr;
1334   return Pos->second.begin();
1335 }
1336 
1337 ASTContext::overridden_cxx_method_iterator
1338 ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const {
1339   llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos =
1340       OverriddenMethods.find(Method->getCanonicalDecl());
1341   if (Pos == OverriddenMethods.end())
1342     return nullptr;
1343   return Pos->second.end();
1344 }
1345 
1346 unsigned
1347 ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const {
1348   llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos =
1349       OverriddenMethods.find(Method->getCanonicalDecl());
1350   if (Pos == OverriddenMethods.end())
1351     return 0;
1352   return Pos->second.size();
1353 }
1354 
1355 ASTContext::overridden_method_range
1356 ASTContext::overridden_methods(const CXXMethodDecl *Method) const {
1357   return overridden_method_range(overridden_methods_begin(Method),
1358                                  overridden_methods_end(Method));
1359 }
1360 
1361 void ASTContext::addOverriddenMethod(const CXXMethodDecl *Method,
1362                                      const CXXMethodDecl *Overridden) {
1363   assert(Method->isCanonicalDecl() && Overridden->isCanonicalDecl());
1364   OverriddenMethods[Method].push_back(Overridden);
1365 }
1366 
1367 void ASTContext::getOverriddenMethods(
1368                       const NamedDecl *D,
1369                       SmallVectorImpl<const NamedDecl *> &Overridden) const {
1370   assert(D);
1371 
1372   if (const CXXMethodDecl *CXXMethod = dyn_cast<CXXMethodDecl>(D)) {
1373     Overridden.append(overridden_methods_begin(CXXMethod),
1374                       overridden_methods_end(CXXMethod));
1375     return;
1376   }
1377 
1378   const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(D);
1379   if (!Method)
1380     return;
1381 
1382   SmallVector<const ObjCMethodDecl *, 8> OverDecls;
1383   Method->getOverriddenMethods(OverDecls);
1384   Overridden.append(OverDecls.begin(), OverDecls.end());
1385 }
1386 
1387 void ASTContext::addedLocalImportDecl(ImportDecl *Import) {
1388   assert(!Import->NextLocalImport && "Import declaration already in the chain");
1389   assert(!Import->isFromASTFile() && "Non-local import declaration");
1390   if (!FirstLocalImport) {
1391     FirstLocalImport = Import;
1392     LastLocalImport = Import;
1393     return;
1394   }
1395 
1396   LastLocalImport->NextLocalImport = Import;
1397   LastLocalImport = Import;
1398 }
1399 
1400 //===----------------------------------------------------------------------===//
1401 //                         Type Sizing and Analysis
1402 //===----------------------------------------------------------------------===//
1403 
1404 /// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
1405 /// scalar floating point type.
1406 const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
1407   const BuiltinType *BT = T->getAs<BuiltinType>();
1408   assert(BT && "Not a floating point type!");
1409   switch (BT->getKind()) {
1410   default: llvm_unreachable("Not a floating point type!");
1411   case BuiltinType::Half:       return Target->getHalfFormat();
1412   case BuiltinType::Float:      return Target->getFloatFormat();
1413   case BuiltinType::Double:     return Target->getDoubleFormat();
1414   case BuiltinType::LongDouble: return Target->getLongDoubleFormat();
1415   case BuiltinType::Float128:   return Target->getFloat128Format();
1416   }
1417 }
1418 
1419 CharUnits ASTContext::getDeclAlign(const Decl *D, bool ForAlignof) const {
1420   unsigned Align = Target->getCharWidth();
1421 
1422   bool UseAlignAttrOnly = false;
1423   if (unsigned AlignFromAttr = D->getMaxAlignment()) {
1424     Align = AlignFromAttr;
1425 
1426     // __attribute__((aligned)) can increase or decrease alignment
1427     // *except* on a struct or struct member, where it only increases
1428     // alignment unless 'packed' is also specified.
1429     //
1430     // It is an error for alignas to decrease alignment, so we can
1431     // ignore that possibility;  Sema should diagnose it.
1432     if (isa<FieldDecl>(D)) {
1433       UseAlignAttrOnly = D->hasAttr<PackedAttr>() ||
1434         cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
1435     } else {
1436       UseAlignAttrOnly = true;
1437     }
1438   }
1439   else if (isa<FieldDecl>(D))
1440       UseAlignAttrOnly =
1441         D->hasAttr<PackedAttr>() ||
1442         cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>();
1443 
1444   // If we're using the align attribute only, just ignore everything
1445   // else about the declaration and its type.
1446   if (UseAlignAttrOnly) {
1447     // do nothing
1448 
1449   } else if (const ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
1450     QualType T = VD->getType();
1451     if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
1452       if (ForAlignof)
1453         T = RT->getPointeeType();
1454       else
1455         T = getPointerType(RT->getPointeeType());
1456     }
1457     QualType BaseT = getBaseElementType(T);
1458     if (!BaseT->isIncompleteType() && !T->isFunctionType()) {
1459       // Adjust alignments of declarations with array type by the
1460       // large-array alignment on the target.
1461       if (const ArrayType *arrayType = getAsArrayType(T)) {
1462         unsigned MinWidth = Target->getLargeArrayMinWidth();
1463         if (!ForAlignof && MinWidth) {
1464           if (isa<VariableArrayType>(arrayType))
1465             Align = std::max(Align, Target->getLargeArrayAlign());
1466           else if (isa<ConstantArrayType>(arrayType) &&
1467                    MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType)))
1468             Align = std::max(Align, Target->getLargeArrayAlign());
1469         }
1470       }
1471       Align = std::max(Align, getPreferredTypeAlign(T.getTypePtr()));
1472       if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1473         if (VD->hasGlobalStorage() && !ForAlignof)
1474           Align = std::max(Align, getTargetInfo().getMinGlobalAlign());
1475       }
1476     }
1477 
1478     // Fields can be subject to extra alignment constraints, like if
1479     // the field is packed, the struct is packed, or the struct has a
1480     // a max-field-alignment constraint (#pragma pack).  So calculate
1481     // the actual alignment of the field within the struct, and then
1482     // (as we're expected to) constrain that by the alignment of the type.
1483     if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) {
1484       const RecordDecl *Parent = Field->getParent();
1485       // We can only produce a sensible answer if the record is valid.
1486       if (!Parent->isInvalidDecl()) {
1487         const ASTRecordLayout &Layout = getASTRecordLayout(Parent);
1488 
1489         // Start with the record's overall alignment.
1490         unsigned FieldAlign = toBits(Layout.getAlignment());
1491 
1492         // Use the GCD of that and the offset within the record.
1493         uint64_t Offset = Layout.getFieldOffset(Field->getFieldIndex());
1494         if (Offset > 0) {
1495           // Alignment is always a power of 2, so the GCD will be a power of 2,
1496           // which means we get to do this crazy thing instead of Euclid's.
1497           uint64_t LowBitOfOffset = Offset & (~Offset + 1);
1498           if (LowBitOfOffset < FieldAlign)
1499             FieldAlign = static_cast<unsigned>(LowBitOfOffset);
1500         }
1501 
1502         Align = std::min(Align, FieldAlign);
1503       }
1504     }
1505   }
1506 
1507   return toCharUnitsFromBits(Align);
1508 }
1509 
1510 // getTypeInfoDataSizeInChars - Return the size of a type, in
1511 // chars. If the type is a record, its data size is returned.  This is
1512 // the size of the memcpy that's performed when assigning this type
1513 // using a trivial copy/move assignment operator.
1514 std::pair<CharUnits, CharUnits>
1515 ASTContext::getTypeInfoDataSizeInChars(QualType T) const {
1516   std::pair<CharUnits, CharUnits> sizeAndAlign = getTypeInfoInChars(T);
1517 
1518   // In C++, objects can sometimes be allocated into the tail padding
1519   // of a base-class subobject.  We decide whether that's possible
1520   // during class layout, so here we can just trust the layout results.
1521   if (getLangOpts().CPlusPlus) {
1522     if (const RecordType *RT = T->getAs<RecordType>()) {
1523       const ASTRecordLayout &layout = getASTRecordLayout(RT->getDecl());
1524       sizeAndAlign.first = layout.getDataSize();
1525     }
1526   }
1527 
1528   return sizeAndAlign;
1529 }
1530 
1531 /// getConstantArrayInfoInChars - Performing the computation in CharUnits
1532 /// instead of in bits prevents overflowing the uint64_t for some large arrays.
1533 std::pair<CharUnits, CharUnits>
1534 static getConstantArrayInfoInChars(const ASTContext &Context,
1535                                    const ConstantArrayType *CAT) {
1536   std::pair<CharUnits, CharUnits> EltInfo =
1537       Context.getTypeInfoInChars(CAT->getElementType());
1538   uint64_t Size = CAT->getSize().getZExtValue();
1539   assert((Size == 0 || static_cast<uint64_t>(EltInfo.first.getQuantity()) <=
1540               (uint64_t)(-1)/Size) &&
1541          "Overflow in array type char size evaluation");
1542   uint64_t Width = EltInfo.first.getQuantity() * Size;
1543   unsigned Align = EltInfo.second.getQuantity();
1544   if (!Context.getTargetInfo().getCXXABI().isMicrosoft() ||
1545       Context.getTargetInfo().getPointerWidth(0) == 64)
1546     Width = llvm::alignTo(Width, Align);
1547   return std::make_pair(CharUnits::fromQuantity(Width),
1548                         CharUnits::fromQuantity(Align));
1549 }
1550 
1551 std::pair<CharUnits, CharUnits>
1552 ASTContext::getTypeInfoInChars(const Type *T) const {
1553   if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(T))
1554     return getConstantArrayInfoInChars(*this, CAT);
1555   TypeInfo Info = getTypeInfo(T);
1556   return std::make_pair(toCharUnitsFromBits(Info.Width),
1557                         toCharUnitsFromBits(Info.Align));
1558 }
1559 
1560 std::pair<CharUnits, CharUnits>
1561 ASTContext::getTypeInfoInChars(QualType T) const {
1562   return getTypeInfoInChars(T.getTypePtr());
1563 }
1564 
1565 bool ASTContext::isAlignmentRequired(const Type *T) const {
1566   return getTypeInfo(T).AlignIsRequired;
1567 }
1568 
1569 bool ASTContext::isAlignmentRequired(QualType T) const {
1570   return isAlignmentRequired(T.getTypePtr());
1571 }
1572 
1573 unsigned ASTContext::getTypeAlignIfKnown(QualType T) const {
1574   // An alignment on a typedef overrides anything else.
1575   if (auto *TT = T->getAs<TypedefType>())
1576     if (unsigned Align = TT->getDecl()->getMaxAlignment())
1577       return Align;
1578 
1579   // If we have an (array of) complete type, we're done.
1580   T = getBaseElementType(T);
1581   if (!T->isIncompleteType())
1582     return getTypeAlign(T);
1583 
1584   // If we had an array type, its element type might be a typedef
1585   // type with an alignment attribute.
1586   if (auto *TT = T->getAs<TypedefType>())
1587     if (unsigned Align = TT->getDecl()->getMaxAlignment())
1588       return Align;
1589 
1590   // Otherwise, see if the declaration of the type had an attribute.
1591   if (auto *TT = T->getAs<TagType>())
1592     return TT->getDecl()->getMaxAlignment();
1593 
1594   return 0;
1595 }
1596 
1597 TypeInfo ASTContext::getTypeInfo(const Type *T) const {
1598   TypeInfoMap::iterator I = MemoizedTypeInfo.find(T);
1599   if (I != MemoizedTypeInfo.end())
1600     return I->second;
1601 
1602   // This call can invalidate MemoizedTypeInfo[T], so we need a second lookup.
1603   TypeInfo TI = getTypeInfoImpl(T);
1604   MemoizedTypeInfo[T] = TI;
1605   return TI;
1606 }
1607 
1608 /// getTypeInfoImpl - Return the size of the specified type, in bits.  This
1609 /// method does not work on incomplete types.
1610 ///
1611 /// FIXME: Pointers into different addr spaces could have different sizes and
1612 /// alignment requirements: getPointerInfo should take an AddrSpace, this
1613 /// should take a QualType, &c.
1614 TypeInfo ASTContext::getTypeInfoImpl(const Type *T) const {
1615   uint64_t Width = 0;
1616   unsigned Align = 8;
1617   bool AlignIsRequired = false;
1618   switch (T->getTypeClass()) {
1619 #define TYPE(Class, Base)
1620 #define ABSTRACT_TYPE(Class, Base)
1621 #define NON_CANONICAL_TYPE(Class, Base)
1622 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
1623 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base)                       \
1624   case Type::Class:                                                            \
1625   assert(!T->isDependentType() && "should not see dependent types here");      \
1626   return getTypeInfo(cast<Class##Type>(T)->desugar().getTypePtr());
1627 #include "clang/AST/TypeNodes.def"
1628     llvm_unreachable("Should not see dependent types");
1629 
1630   case Type::FunctionNoProto:
1631   case Type::FunctionProto:
1632     // GCC extension: alignof(function) = 32 bits
1633     Width = 0;
1634     Align = 32;
1635     break;
1636 
1637   case Type::IncompleteArray:
1638   case Type::VariableArray:
1639     Width = 0;
1640     Align = getTypeAlign(cast<ArrayType>(T)->getElementType());
1641     break;
1642 
1643   case Type::ConstantArray: {
1644     const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
1645 
1646     TypeInfo EltInfo = getTypeInfo(CAT->getElementType());
1647     uint64_t Size = CAT->getSize().getZExtValue();
1648     assert((Size == 0 || EltInfo.Width <= (uint64_t)(-1) / Size) &&
1649            "Overflow in array type bit size evaluation");
1650     Width = EltInfo.Width * Size;
1651     Align = EltInfo.Align;
1652     if (!getTargetInfo().getCXXABI().isMicrosoft() ||
1653         getTargetInfo().getPointerWidth(0) == 64)
1654       Width = llvm::alignTo(Width, Align);
1655     break;
1656   }
1657   case Type::ExtVector:
1658   case Type::Vector: {
1659     const VectorType *VT = cast<VectorType>(T);
1660     TypeInfo EltInfo = getTypeInfo(VT->getElementType());
1661     Width = EltInfo.Width * VT->getNumElements();
1662     Align = Width;
1663     // If the alignment is not a power of 2, round up to the next power of 2.
1664     // This happens for non-power-of-2 length vectors.
1665     if (Align & (Align-1)) {
1666       Align = llvm::NextPowerOf2(Align);
1667       Width = llvm::alignTo(Width, Align);
1668     }
1669     // Adjust the alignment based on the target max.
1670     uint64_t TargetVectorAlign = Target->getMaxVectorAlign();
1671     if (TargetVectorAlign && TargetVectorAlign < Align)
1672       Align = TargetVectorAlign;
1673     break;
1674   }
1675 
1676   case Type::Builtin:
1677     switch (cast<BuiltinType>(T)->getKind()) {
1678     default: llvm_unreachable("Unknown builtin type!");
1679     case BuiltinType::Void:
1680       // GCC extension: alignof(void) = 8 bits.
1681       Width = 0;
1682       Align = 8;
1683       break;
1684 
1685     case BuiltinType::Bool:
1686       Width = Target->getBoolWidth();
1687       Align = Target->getBoolAlign();
1688       break;
1689     case BuiltinType::Char_S:
1690     case BuiltinType::Char_U:
1691     case BuiltinType::UChar:
1692     case BuiltinType::SChar:
1693       Width = Target->getCharWidth();
1694       Align = Target->getCharAlign();
1695       break;
1696     case BuiltinType::WChar_S:
1697     case BuiltinType::WChar_U:
1698       Width = Target->getWCharWidth();
1699       Align = Target->getWCharAlign();
1700       break;
1701     case BuiltinType::Char16:
1702       Width = Target->getChar16Width();
1703       Align = Target->getChar16Align();
1704       break;
1705     case BuiltinType::Char32:
1706       Width = Target->getChar32Width();
1707       Align = Target->getChar32Align();
1708       break;
1709     case BuiltinType::UShort:
1710     case BuiltinType::Short:
1711       Width = Target->getShortWidth();
1712       Align = Target->getShortAlign();
1713       break;
1714     case BuiltinType::UInt:
1715     case BuiltinType::Int:
1716       Width = Target->getIntWidth();
1717       Align = Target->getIntAlign();
1718       break;
1719     case BuiltinType::ULong:
1720     case BuiltinType::Long:
1721       Width = Target->getLongWidth();
1722       Align = Target->getLongAlign();
1723       break;
1724     case BuiltinType::ULongLong:
1725     case BuiltinType::LongLong:
1726       Width = Target->getLongLongWidth();
1727       Align = Target->getLongLongAlign();
1728       break;
1729     case BuiltinType::Int128:
1730     case BuiltinType::UInt128:
1731       Width = 128;
1732       Align = 128; // int128_t is 128-bit aligned on all targets.
1733       break;
1734     case BuiltinType::Half:
1735       Width = Target->getHalfWidth();
1736       Align = Target->getHalfAlign();
1737       break;
1738     case BuiltinType::Float:
1739       Width = Target->getFloatWidth();
1740       Align = Target->getFloatAlign();
1741       break;
1742     case BuiltinType::Double:
1743       Width = Target->getDoubleWidth();
1744       Align = Target->getDoubleAlign();
1745       break;
1746     case BuiltinType::LongDouble:
1747       Width = Target->getLongDoubleWidth();
1748       Align = Target->getLongDoubleAlign();
1749       break;
1750     case BuiltinType::Float128:
1751       Width = Target->getFloat128Width();
1752       Align = Target->getFloat128Align();
1753       break;
1754     case BuiltinType::NullPtr:
1755       Width = Target->getPointerWidth(0); // C++ 3.9.1p11: sizeof(nullptr_t)
1756       Align = Target->getPointerAlign(0); //   == sizeof(void*)
1757       break;
1758     case BuiltinType::ObjCId:
1759     case BuiltinType::ObjCClass:
1760     case BuiltinType::ObjCSel:
1761       Width = Target->getPointerWidth(0);
1762       Align = Target->getPointerAlign(0);
1763       break;
1764     case BuiltinType::OCLSampler: {
1765       auto AS = getTargetAddressSpace(LangAS::opencl_constant);
1766       Width = Target->getPointerWidth(AS);
1767       Align = Target->getPointerAlign(AS);
1768       break;
1769     }
1770     case BuiltinType::OCLEvent:
1771     case BuiltinType::OCLClkEvent:
1772     case BuiltinType::OCLQueue:
1773     case BuiltinType::OCLNDRange:
1774     case BuiltinType::OCLReserveID:
1775       // Currently these types are pointers to opaque types.
1776       Width = Target->getPointerWidth(0);
1777       Align = Target->getPointerAlign(0);
1778       break;
1779 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
1780     case BuiltinType::Id:
1781 #include "clang/Basic/OpenCLImageTypes.def"
1782       {
1783         auto AS = getTargetAddressSpace(Target->getOpenCLImageAddrSpace());
1784         Width = Target->getPointerWidth(AS);
1785         Align = Target->getPointerAlign(AS);
1786       }
1787     }
1788     break;
1789   case Type::ObjCObjectPointer:
1790     Width = Target->getPointerWidth(0);
1791     Align = Target->getPointerAlign(0);
1792     break;
1793   case Type::BlockPointer: {
1794     unsigned AS = getTargetAddressSpace(
1795         cast<BlockPointerType>(T)->getPointeeType());
1796     Width = Target->getPointerWidth(AS);
1797     Align = Target->getPointerAlign(AS);
1798     break;
1799   }
1800   case Type::LValueReference:
1801   case Type::RValueReference: {
1802     // alignof and sizeof should never enter this code path here, so we go
1803     // the pointer route.
1804     unsigned AS = getTargetAddressSpace(
1805         cast<ReferenceType>(T)->getPointeeType());
1806     Width = Target->getPointerWidth(AS);
1807     Align = Target->getPointerAlign(AS);
1808     break;
1809   }
1810   case Type::Pointer: {
1811     unsigned AS = getTargetAddressSpace(cast<PointerType>(T)->getPointeeType());
1812     Width = Target->getPointerWidth(AS);
1813     Align = Target->getPointerAlign(AS);
1814     break;
1815   }
1816   case Type::MemberPointer: {
1817     const MemberPointerType *MPT = cast<MemberPointerType>(T);
1818     std::tie(Width, Align) = ABI->getMemberPointerWidthAndAlign(MPT);
1819     break;
1820   }
1821   case Type::Complex: {
1822     // Complex types have the same alignment as their elements, but twice the
1823     // size.
1824     TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType());
1825     Width = EltInfo.Width * 2;
1826     Align = EltInfo.Align;
1827     break;
1828   }
1829   case Type::ObjCObject:
1830     return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr());
1831   case Type::Adjusted:
1832   case Type::Decayed:
1833     return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr());
1834   case Type::ObjCInterface: {
1835     const ObjCInterfaceType *ObjCI = cast<ObjCInterfaceType>(T);
1836     const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
1837     Width = toBits(Layout.getSize());
1838     Align = toBits(Layout.getAlignment());
1839     break;
1840   }
1841   case Type::Record:
1842   case Type::Enum: {
1843     const TagType *TT = cast<TagType>(T);
1844 
1845     if (TT->getDecl()->isInvalidDecl()) {
1846       Width = 8;
1847       Align = 8;
1848       break;
1849     }
1850 
1851     if (const EnumType *ET = dyn_cast<EnumType>(TT)) {
1852       const EnumDecl *ED = ET->getDecl();
1853       TypeInfo Info =
1854           getTypeInfo(ED->getIntegerType()->getUnqualifiedDesugaredType());
1855       if (unsigned AttrAlign = ED->getMaxAlignment()) {
1856         Info.Align = AttrAlign;
1857         Info.AlignIsRequired = true;
1858       }
1859       return Info;
1860     }
1861 
1862     const RecordType *RT = cast<RecordType>(TT);
1863     const RecordDecl *RD = RT->getDecl();
1864     const ASTRecordLayout &Layout = getASTRecordLayout(RD);
1865     Width = toBits(Layout.getSize());
1866     Align = toBits(Layout.getAlignment());
1867     AlignIsRequired = RD->hasAttr<AlignedAttr>();
1868     break;
1869   }
1870 
1871   case Type::SubstTemplateTypeParm:
1872     return getTypeInfo(cast<SubstTemplateTypeParmType>(T)->
1873                        getReplacementType().getTypePtr());
1874 
1875   case Type::Auto: {
1876     const AutoType *A = cast<AutoType>(T);
1877     assert(!A->getDeducedType().isNull() &&
1878            "cannot request the size of an undeduced or dependent auto type");
1879     return getTypeInfo(A->getDeducedType().getTypePtr());
1880   }
1881 
1882   case Type::Paren:
1883     return getTypeInfo(cast<ParenType>(T)->getInnerType().getTypePtr());
1884 
1885   case Type::ObjCTypeParam:
1886     return getTypeInfo(cast<ObjCTypeParamType>(T)->desugar().getTypePtr());
1887 
1888   case Type::Typedef: {
1889     const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl();
1890     TypeInfo Info = getTypeInfo(Typedef->getUnderlyingType().getTypePtr());
1891     // If the typedef has an aligned attribute on it, it overrides any computed
1892     // alignment we have.  This violates the GCC documentation (which says that
1893     // attribute(aligned) can only round up) but matches its implementation.
1894     if (unsigned AttrAlign = Typedef->getMaxAlignment()) {
1895       Align = AttrAlign;
1896       AlignIsRequired = true;
1897     } else {
1898       Align = Info.Align;
1899       AlignIsRequired = Info.AlignIsRequired;
1900     }
1901     Width = Info.Width;
1902     break;
1903   }
1904 
1905   case Type::Elaborated:
1906     return getTypeInfo(cast<ElaboratedType>(T)->getNamedType().getTypePtr());
1907 
1908   case Type::Attributed:
1909     return getTypeInfo(
1910                   cast<AttributedType>(T)->getEquivalentType().getTypePtr());
1911 
1912   case Type::Atomic: {
1913     // Start with the base type information.
1914     TypeInfo Info = getTypeInfo(cast<AtomicType>(T)->getValueType());
1915     Width = Info.Width;
1916     Align = Info.Align;
1917 
1918     // If the size of the type doesn't exceed the platform's max
1919     // atomic promotion width, make the size and alignment more
1920     // favorable to atomic operations:
1921     if (Width != 0 && Width <= Target->getMaxAtomicPromoteWidth()) {
1922       // Round the size up to a power of 2.
1923       if (!llvm::isPowerOf2_64(Width))
1924         Width = llvm::NextPowerOf2(Width);
1925 
1926       // Set the alignment equal to the size.
1927       Align = static_cast<unsigned>(Width);
1928     }
1929   }
1930   break;
1931 
1932   case Type::Pipe: {
1933     TypeInfo Info = getTypeInfo(cast<PipeType>(T)->getElementType());
1934     Width = Info.Width;
1935     Align = Info.Align;
1936   }
1937 
1938   }
1939 
1940   assert(llvm::isPowerOf2_32(Align) && "Alignment must be power of 2");
1941   return TypeInfo(Width, Align, AlignIsRequired);
1942 }
1943 
1944 unsigned ASTContext::getOpenMPDefaultSimdAlign(QualType T) const {
1945   unsigned SimdAlign = getTargetInfo().getSimdDefaultAlign();
1946   // Target ppc64 with QPX: simd default alignment for pointer to double is 32.
1947   if ((getTargetInfo().getTriple().getArch() == llvm::Triple::ppc64 ||
1948        getTargetInfo().getTriple().getArch() == llvm::Triple::ppc64le) &&
1949       getTargetInfo().getABI() == "elfv1-qpx" &&
1950       T->isSpecificBuiltinType(BuiltinType::Double))
1951     SimdAlign = 256;
1952   return SimdAlign;
1953 }
1954 
1955 /// toCharUnitsFromBits - Convert a size in bits to a size in characters.
1956 CharUnits ASTContext::toCharUnitsFromBits(int64_t BitSize) const {
1957   return CharUnits::fromQuantity(BitSize / getCharWidth());
1958 }
1959 
1960 /// toBits - Convert a size in characters to a size in characters.
1961 int64_t ASTContext::toBits(CharUnits CharSize) const {
1962   return CharSize.getQuantity() * getCharWidth();
1963 }
1964 
1965 /// getTypeSizeInChars - Return the size of the specified type, in characters.
1966 /// This method does not work on incomplete types.
1967 CharUnits ASTContext::getTypeSizeInChars(QualType T) const {
1968   return getTypeInfoInChars(T).first;
1969 }
1970 CharUnits ASTContext::getTypeSizeInChars(const Type *T) const {
1971   return getTypeInfoInChars(T).first;
1972 }
1973 
1974 /// getTypeAlignInChars - Return the ABI-specified alignment of a type, in
1975 /// characters. This method does not work on incomplete types.
1976 CharUnits ASTContext::getTypeAlignInChars(QualType T) const {
1977   return toCharUnitsFromBits(getTypeAlign(T));
1978 }
1979 CharUnits ASTContext::getTypeAlignInChars(const Type *T) const {
1980   return toCharUnitsFromBits(getTypeAlign(T));
1981 }
1982 
1983 /// getPreferredTypeAlign - Return the "preferred" alignment of the specified
1984 /// type for the current target in bits.  This can be different than the ABI
1985 /// alignment in cases where it is beneficial for performance to overalign
1986 /// a data type.
1987 unsigned ASTContext::getPreferredTypeAlign(const Type *T) const {
1988   TypeInfo TI = getTypeInfo(T);
1989   unsigned ABIAlign = TI.Align;
1990 
1991   T = T->getBaseElementTypeUnsafe();
1992 
1993   // The preferred alignment of member pointers is that of a pointer.
1994   if (T->isMemberPointerType())
1995     return getPreferredTypeAlign(getPointerDiffType().getTypePtr());
1996 
1997   if (!Target->allowsLargerPreferedTypeAlignment())
1998     return ABIAlign;
1999 
2000   // Double and long long should be naturally aligned if possible.
2001   if (const ComplexType *CT = T->getAs<ComplexType>())
2002     T = CT->getElementType().getTypePtr();
2003   if (const EnumType *ET = T->getAs<EnumType>())
2004     T = ET->getDecl()->getIntegerType().getTypePtr();
2005   if (T->isSpecificBuiltinType(BuiltinType::Double) ||
2006       T->isSpecificBuiltinType(BuiltinType::LongLong) ||
2007       T->isSpecificBuiltinType(BuiltinType::ULongLong))
2008     // Don't increase the alignment if an alignment attribute was specified on a
2009     // typedef declaration.
2010     if (!TI.AlignIsRequired)
2011       return std::max(ABIAlign, (unsigned)getTypeSize(T));
2012 
2013   return ABIAlign;
2014 }
2015 
2016 /// getTargetDefaultAlignForAttributeAligned - Return the default alignment
2017 /// for __attribute__((aligned)) on this target, to be used if no alignment
2018 /// value is specified.
2019 unsigned ASTContext::getTargetDefaultAlignForAttributeAligned() const {
2020   return getTargetInfo().getDefaultAlignForAttributeAligned();
2021 }
2022 
2023 /// getAlignOfGlobalVar - Return the alignment in bits that should be given
2024 /// to a global variable of the specified type.
2025 unsigned ASTContext::getAlignOfGlobalVar(QualType T) const {
2026   return std::max(getTypeAlign(T), getTargetInfo().getMinGlobalAlign());
2027 }
2028 
2029 /// getAlignOfGlobalVarInChars - Return the alignment in characters that
2030 /// should be given to a global variable of the specified type.
2031 CharUnits ASTContext::getAlignOfGlobalVarInChars(QualType T) const {
2032   return toCharUnitsFromBits(getAlignOfGlobalVar(T));
2033 }
2034 
2035 CharUnits ASTContext::getOffsetOfBaseWithVBPtr(const CXXRecordDecl *RD) const {
2036   CharUnits Offset = CharUnits::Zero();
2037   const ASTRecordLayout *Layout = &getASTRecordLayout(RD);
2038   while (const CXXRecordDecl *Base = Layout->getBaseSharingVBPtr()) {
2039     Offset += Layout->getBaseClassOffset(Base);
2040     Layout = &getASTRecordLayout(Base);
2041   }
2042   return Offset;
2043 }
2044 
2045 /// DeepCollectObjCIvars -
2046 /// This routine first collects all declared, but not synthesized, ivars in
2047 /// super class and then collects all ivars, including those synthesized for
2048 /// current class. This routine is used for implementation of current class
2049 /// when all ivars, declared and synthesized are known.
2050 ///
2051 void ASTContext::DeepCollectObjCIvars(const ObjCInterfaceDecl *OI,
2052                                       bool leafClass,
2053                             SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const {
2054   if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass())
2055     DeepCollectObjCIvars(SuperClass, false, Ivars);
2056   if (!leafClass) {
2057     for (const auto *I : OI->ivars())
2058       Ivars.push_back(I);
2059   } else {
2060     ObjCInterfaceDecl *IDecl = const_cast<ObjCInterfaceDecl *>(OI);
2061     for (const ObjCIvarDecl *Iv = IDecl->all_declared_ivar_begin(); Iv;
2062          Iv= Iv->getNextIvar())
2063       Ivars.push_back(Iv);
2064   }
2065 }
2066 
2067 /// CollectInheritedProtocols - Collect all protocols in current class and
2068 /// those inherited by it.
2069 void ASTContext::CollectInheritedProtocols(const Decl *CDecl,
2070                           llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) {
2071   if (const ObjCInterfaceDecl *OI = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
2072     // We can use protocol_iterator here instead of
2073     // all_referenced_protocol_iterator since we are walking all categories.
2074     for (auto *Proto : OI->all_referenced_protocols()) {
2075       CollectInheritedProtocols(Proto, Protocols);
2076     }
2077 
2078     // Categories of this Interface.
2079     for (const auto *Cat : OI->visible_categories())
2080       CollectInheritedProtocols(Cat, Protocols);
2081 
2082     if (ObjCInterfaceDecl *SD = OI->getSuperClass())
2083       while (SD) {
2084         CollectInheritedProtocols(SD, Protocols);
2085         SD = SD->getSuperClass();
2086       }
2087   } else if (const ObjCCategoryDecl *OC = dyn_cast<ObjCCategoryDecl>(CDecl)) {
2088     for (auto *Proto : OC->protocols()) {
2089       CollectInheritedProtocols(Proto, Protocols);
2090     }
2091   } else if (const ObjCProtocolDecl *OP = dyn_cast<ObjCProtocolDecl>(CDecl)) {
2092     // Insert the protocol.
2093     if (!Protocols.insert(
2094           const_cast<ObjCProtocolDecl *>(OP->getCanonicalDecl())).second)
2095       return;
2096 
2097     for (auto *Proto : OP->protocols())
2098       CollectInheritedProtocols(Proto, Protocols);
2099   }
2100 }
2101 
2102 unsigned ASTContext::CountNonClassIvars(const ObjCInterfaceDecl *OI) const {
2103   unsigned count = 0;
2104   // Count ivars declared in class extension.
2105   for (const auto *Ext : OI->known_extensions())
2106     count += Ext->ivar_size();
2107 
2108   // Count ivar defined in this class's implementation.  This
2109   // includes synthesized ivars.
2110   if (ObjCImplementationDecl *ImplDecl = OI->getImplementation())
2111     count += ImplDecl->ivar_size();
2112 
2113   return count;
2114 }
2115 
2116 bool ASTContext::isSentinelNullExpr(const Expr *E) {
2117   if (!E)
2118     return false;
2119 
2120   // nullptr_t is always treated as null.
2121   if (E->getType()->isNullPtrType()) return true;
2122 
2123   if (E->getType()->isAnyPointerType() &&
2124       E->IgnoreParenCasts()->isNullPointerConstant(*this,
2125                                                 Expr::NPC_ValueDependentIsNull))
2126     return true;
2127 
2128   // Unfortunately, __null has type 'int'.
2129   if (isa<GNUNullExpr>(E)) return true;
2130 
2131   return false;
2132 }
2133 
2134 /// \brief Get the implementation of ObjCInterfaceDecl,or NULL if none exists.
2135 ObjCImplementationDecl *ASTContext::getObjCImplementation(ObjCInterfaceDecl *D) {
2136   llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
2137     I = ObjCImpls.find(D);
2138   if (I != ObjCImpls.end())
2139     return cast<ObjCImplementationDecl>(I->second);
2140   return nullptr;
2141 }
2142 /// \brief Get the implementation of ObjCCategoryDecl, or NULL if none exists.
2143 ObjCCategoryImplDecl *ASTContext::getObjCImplementation(ObjCCategoryDecl *D) {
2144   llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
2145     I = ObjCImpls.find(D);
2146   if (I != ObjCImpls.end())
2147     return cast<ObjCCategoryImplDecl>(I->second);
2148   return nullptr;
2149 }
2150 
2151 /// \brief Set the implementation of ObjCInterfaceDecl.
2152 void ASTContext::setObjCImplementation(ObjCInterfaceDecl *IFaceD,
2153                            ObjCImplementationDecl *ImplD) {
2154   assert(IFaceD && ImplD && "Passed null params");
2155   ObjCImpls[IFaceD] = ImplD;
2156 }
2157 /// \brief Set the implementation of ObjCCategoryDecl.
2158 void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD,
2159                            ObjCCategoryImplDecl *ImplD) {
2160   assert(CatD && ImplD && "Passed null params");
2161   ObjCImpls[CatD] = ImplD;
2162 }
2163 
2164 const ObjCMethodDecl *
2165 ASTContext::getObjCMethodRedeclaration(const ObjCMethodDecl *MD) const {
2166   return ObjCMethodRedecls.lookup(MD);
2167 }
2168 
2169 void ASTContext::setObjCMethodRedeclaration(const ObjCMethodDecl *MD,
2170                                             const ObjCMethodDecl *Redecl) {
2171   assert(!getObjCMethodRedeclaration(MD) && "MD already has a redeclaration");
2172   ObjCMethodRedecls[MD] = Redecl;
2173 }
2174 
2175 const ObjCInterfaceDecl *ASTContext::getObjContainingInterface(
2176                                               const NamedDecl *ND) const {
2177   if (const ObjCInterfaceDecl *ID =
2178           dyn_cast<ObjCInterfaceDecl>(ND->getDeclContext()))
2179     return ID;
2180   if (const ObjCCategoryDecl *CD =
2181           dyn_cast<ObjCCategoryDecl>(ND->getDeclContext()))
2182     return CD->getClassInterface();
2183   if (const ObjCImplDecl *IMD =
2184           dyn_cast<ObjCImplDecl>(ND->getDeclContext()))
2185     return IMD->getClassInterface();
2186 
2187   return nullptr;
2188 }
2189 
2190 /// \brief Get the copy initialization expression of VarDecl,or NULL if
2191 /// none exists.
2192 Expr *ASTContext::getBlockVarCopyInits(const VarDecl*VD) {
2193   assert(VD && "Passed null params");
2194   assert(VD->hasAttr<BlocksAttr>() &&
2195          "getBlockVarCopyInits - not __block var");
2196   llvm::DenseMap<const VarDecl*, Expr*>::iterator
2197     I = BlockVarCopyInits.find(VD);
2198   return (I != BlockVarCopyInits.end()) ? cast<Expr>(I->second) : nullptr;
2199 }
2200 
2201 /// \brief Set the copy inialization expression of a block var decl.
2202 void ASTContext::setBlockVarCopyInits(VarDecl*VD, Expr* Init) {
2203   assert(VD && Init && "Passed null params");
2204   assert(VD->hasAttr<BlocksAttr>() &&
2205          "setBlockVarCopyInits - not __block var");
2206   BlockVarCopyInits[VD] = Init;
2207 }
2208 
2209 TypeSourceInfo *ASTContext::CreateTypeSourceInfo(QualType T,
2210                                                  unsigned DataSize) const {
2211   if (!DataSize)
2212     DataSize = TypeLoc::getFullDataSizeForType(T);
2213   else
2214     assert(DataSize == TypeLoc::getFullDataSizeForType(T) &&
2215            "incorrect data size provided to CreateTypeSourceInfo!");
2216 
2217   TypeSourceInfo *TInfo =
2218     (TypeSourceInfo*)BumpAlloc.Allocate(sizeof(TypeSourceInfo) + DataSize, 8);
2219   new (TInfo) TypeSourceInfo(T);
2220   return TInfo;
2221 }
2222 
2223 TypeSourceInfo *ASTContext::getTrivialTypeSourceInfo(QualType T,
2224                                                      SourceLocation L) const {
2225   TypeSourceInfo *DI = CreateTypeSourceInfo(T);
2226   DI->getTypeLoc().initialize(const_cast<ASTContext &>(*this), L);
2227   return DI;
2228 }
2229 
2230 const ASTRecordLayout &
2231 ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) const {
2232   return getObjCLayout(D, nullptr);
2233 }
2234 
2235 const ASTRecordLayout &
2236 ASTContext::getASTObjCImplementationLayout(
2237                                         const ObjCImplementationDecl *D) const {
2238   return getObjCLayout(D->getClassInterface(), D);
2239 }
2240 
2241 //===----------------------------------------------------------------------===//
2242 //                   Type creation/memoization methods
2243 //===----------------------------------------------------------------------===//
2244 
2245 QualType
2246 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const {
2247   unsigned fastQuals = quals.getFastQualifiers();
2248   quals.removeFastQualifiers();
2249 
2250   // Check if we've already instantiated this type.
2251   llvm::FoldingSetNodeID ID;
2252   ExtQuals::Profile(ID, baseType, quals);
2253   void *insertPos = nullptr;
2254   if (ExtQuals *eq = ExtQualNodes.FindNodeOrInsertPos(ID, insertPos)) {
2255     assert(eq->getQualifiers() == quals);
2256     return QualType(eq, fastQuals);
2257   }
2258 
2259   // If the base type is not canonical, make the appropriate canonical type.
2260   QualType canon;
2261   if (!baseType->isCanonicalUnqualified()) {
2262     SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split();
2263     canonSplit.Quals.addConsistentQualifiers(quals);
2264     canon = getExtQualType(canonSplit.Ty, canonSplit.Quals);
2265 
2266     // Re-find the insert position.
2267     (void) ExtQualNodes.FindNodeOrInsertPos(ID, insertPos);
2268   }
2269 
2270   ExtQuals *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals);
2271   ExtQualNodes.InsertNode(eq, insertPos);
2272   return QualType(eq, fastQuals);
2273 }
2274 
2275 QualType
2276 ASTContext::getAddrSpaceQualType(QualType T, unsigned AddressSpace) const {
2277   QualType CanT = getCanonicalType(T);
2278   if (CanT.getAddressSpace() == AddressSpace)
2279     return T;
2280 
2281   // If we are composing extended qualifiers together, merge together
2282   // into one ExtQuals node.
2283   QualifierCollector Quals;
2284   const Type *TypeNode = Quals.strip(T);
2285 
2286   // If this type already has an address space specified, it cannot get
2287   // another one.
2288   assert(!Quals.hasAddressSpace() &&
2289          "Type cannot be in multiple addr spaces!");
2290   Quals.addAddressSpace(AddressSpace);
2291 
2292   return getExtQualType(TypeNode, Quals);
2293 }
2294 
2295 QualType ASTContext::getObjCGCQualType(QualType T,
2296                                        Qualifiers::GC GCAttr) const {
2297   QualType CanT = getCanonicalType(T);
2298   if (CanT.getObjCGCAttr() == GCAttr)
2299     return T;
2300 
2301   if (const PointerType *ptr = T->getAs<PointerType>()) {
2302     QualType Pointee = ptr->getPointeeType();
2303     if (Pointee->isAnyPointerType()) {
2304       QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
2305       return getPointerType(ResultType);
2306     }
2307   }
2308 
2309   // If we are composing extended qualifiers together, merge together
2310   // into one ExtQuals node.
2311   QualifierCollector Quals;
2312   const Type *TypeNode = Quals.strip(T);
2313 
2314   // If this type already has an ObjCGC specified, it cannot get
2315   // another one.
2316   assert(!Quals.hasObjCGCAttr() &&
2317          "Type cannot have multiple ObjCGCs!");
2318   Quals.addObjCGCAttr(GCAttr);
2319 
2320   return getExtQualType(TypeNode, Quals);
2321 }
2322 
2323 const FunctionType *ASTContext::adjustFunctionType(const FunctionType *T,
2324                                                    FunctionType::ExtInfo Info) {
2325   if (T->getExtInfo() == Info)
2326     return T;
2327 
2328   QualType Result;
2329   if (const FunctionNoProtoType *FNPT = dyn_cast<FunctionNoProtoType>(T)) {
2330     Result = getFunctionNoProtoType(FNPT->getReturnType(), Info);
2331   } else {
2332     const FunctionProtoType *FPT = cast<FunctionProtoType>(T);
2333     FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
2334     EPI.ExtInfo = Info;
2335     Result = getFunctionType(FPT->getReturnType(), FPT->getParamTypes(), EPI);
2336   }
2337 
2338   return cast<FunctionType>(Result.getTypePtr());
2339 }
2340 
2341 void ASTContext::adjustDeducedFunctionResultType(FunctionDecl *FD,
2342                                                  QualType ResultType) {
2343   FD = FD->getMostRecentDecl();
2344   while (true) {
2345     const FunctionProtoType *FPT = FD->getType()->castAs<FunctionProtoType>();
2346     FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
2347     FD->setType(getFunctionType(ResultType, FPT->getParamTypes(), EPI));
2348     if (FunctionDecl *Next = FD->getPreviousDecl())
2349       FD = Next;
2350     else
2351       break;
2352   }
2353   if (ASTMutationListener *L = getASTMutationListener())
2354     L->DeducedReturnType(FD, ResultType);
2355 }
2356 
2357 /// Get a function type and produce the equivalent function type with the
2358 /// specified exception specification. Type sugar that can be present on a
2359 /// declaration of a function with an exception specification is permitted
2360 /// and preserved. Other type sugar (for instance, typedefs) is not.
2361 static QualType getFunctionTypeWithExceptionSpec(
2362     ASTContext &Context, QualType Orig,
2363     const FunctionProtoType::ExceptionSpecInfo &ESI) {
2364   // Might have some parens.
2365   if (auto *PT = dyn_cast<ParenType>(Orig))
2366     return Context.getParenType(
2367         getFunctionTypeWithExceptionSpec(Context, PT->getInnerType(), ESI));
2368 
2369   // Might have a calling-convention attribute.
2370   if (auto *AT = dyn_cast<AttributedType>(Orig))
2371     return Context.getAttributedType(
2372         AT->getAttrKind(),
2373         getFunctionTypeWithExceptionSpec(Context, AT->getModifiedType(), ESI),
2374         getFunctionTypeWithExceptionSpec(Context, AT->getEquivalentType(),
2375                                          ESI));
2376 
2377   // Anything else must be a function type. Rebuild it with the new exception
2378   // specification.
2379   const FunctionProtoType *Proto = cast<FunctionProtoType>(Orig);
2380   return Context.getFunctionType(
2381       Proto->getReturnType(), Proto->getParamTypes(),
2382       Proto->getExtProtoInfo().withExceptionSpec(ESI));
2383 }
2384 
2385 void ASTContext::adjustExceptionSpec(
2386     FunctionDecl *FD, const FunctionProtoType::ExceptionSpecInfo &ESI,
2387     bool AsWritten) {
2388   // Update the type.
2389   QualType Updated =
2390       getFunctionTypeWithExceptionSpec(*this, FD->getType(), ESI);
2391   FD->setType(Updated);
2392 
2393   if (!AsWritten)
2394     return;
2395 
2396   // Update the type in the type source information too.
2397   if (TypeSourceInfo *TSInfo = FD->getTypeSourceInfo()) {
2398     // If the type and the type-as-written differ, we may need to update
2399     // the type-as-written too.
2400     if (TSInfo->getType() != FD->getType())
2401       Updated = getFunctionTypeWithExceptionSpec(*this, TSInfo->getType(), ESI);
2402 
2403     // FIXME: When we get proper type location information for exceptions,
2404     // we'll also have to rebuild the TypeSourceInfo. For now, we just patch
2405     // up the TypeSourceInfo;
2406     assert(TypeLoc::getFullDataSizeForType(Updated) ==
2407                TypeLoc::getFullDataSizeForType(TSInfo->getType()) &&
2408            "TypeLoc size mismatch from updating exception specification");
2409     TSInfo->overrideType(Updated);
2410   }
2411 }
2412 
2413 /// getComplexType - Return the uniqued reference to the type for a complex
2414 /// number with the specified element type.
2415 QualType ASTContext::getComplexType(QualType T) const {
2416   // Unique pointers, to guarantee there is only one pointer of a particular
2417   // structure.
2418   llvm::FoldingSetNodeID ID;
2419   ComplexType::Profile(ID, T);
2420 
2421   void *InsertPos = nullptr;
2422   if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
2423     return QualType(CT, 0);
2424 
2425   // If the pointee type isn't canonical, this won't be a canonical type either,
2426   // so fill in the canonical type field.
2427   QualType Canonical;
2428   if (!T.isCanonical()) {
2429     Canonical = getComplexType(getCanonicalType(T));
2430 
2431     // Get the new insert position for the node we care about.
2432     ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
2433     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
2434   }
2435   ComplexType *New = new (*this, TypeAlignment) ComplexType(T, Canonical);
2436   Types.push_back(New);
2437   ComplexTypes.InsertNode(New, InsertPos);
2438   return QualType(New, 0);
2439 }
2440 
2441 /// getPointerType - Return the uniqued reference to the type for a pointer to
2442 /// the specified type.
2443 QualType ASTContext::getPointerType(QualType T) const {
2444   // Unique pointers, to guarantee there is only one pointer of a particular
2445   // structure.
2446   llvm::FoldingSetNodeID ID;
2447   PointerType::Profile(ID, T);
2448 
2449   void *InsertPos = nullptr;
2450   if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2451     return QualType(PT, 0);
2452 
2453   // If the pointee type isn't canonical, this won't be a canonical type either,
2454   // so fill in the canonical type field.
2455   QualType Canonical;
2456   if (!T.isCanonical()) {
2457     Canonical = getPointerType(getCanonicalType(T));
2458 
2459     // Get the new insert position for the node we care about.
2460     PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
2461     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
2462   }
2463   PointerType *New = new (*this, TypeAlignment) PointerType(T, Canonical);
2464   Types.push_back(New);
2465   PointerTypes.InsertNode(New, InsertPos);
2466   return QualType(New, 0);
2467 }
2468 
2469 QualType ASTContext::getAdjustedType(QualType Orig, QualType New) const {
2470   llvm::FoldingSetNodeID ID;
2471   AdjustedType::Profile(ID, Orig, New);
2472   void *InsertPos = nullptr;
2473   AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
2474   if (AT)
2475     return QualType(AT, 0);
2476 
2477   QualType Canonical = getCanonicalType(New);
2478 
2479   // Get the new insert position for the node we care about.
2480   AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
2481   assert(!AT && "Shouldn't be in the map!");
2482 
2483   AT = new (*this, TypeAlignment)
2484       AdjustedType(Type::Adjusted, Orig, New, Canonical);
2485   Types.push_back(AT);
2486   AdjustedTypes.InsertNode(AT, InsertPos);
2487   return QualType(AT, 0);
2488 }
2489 
2490 QualType ASTContext::getDecayedType(QualType T) const {
2491   assert((T->isArrayType() || T->isFunctionType()) && "T does not decay");
2492 
2493   QualType Decayed;
2494 
2495   // C99 6.7.5.3p7:
2496   //   A declaration of a parameter as "array of type" shall be
2497   //   adjusted to "qualified pointer to type", where the type
2498   //   qualifiers (if any) are those specified within the [ and ] of
2499   //   the array type derivation.
2500   if (T->isArrayType())
2501     Decayed = getArrayDecayedType(T);
2502 
2503   // C99 6.7.5.3p8:
2504   //   A declaration of a parameter as "function returning type"
2505   //   shall be adjusted to "pointer to function returning type", as
2506   //   in 6.3.2.1.
2507   if (T->isFunctionType())
2508     Decayed = getPointerType(T);
2509 
2510   llvm::FoldingSetNodeID ID;
2511   AdjustedType::Profile(ID, T, Decayed);
2512   void *InsertPos = nullptr;
2513   AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
2514   if (AT)
2515     return QualType(AT, 0);
2516 
2517   QualType Canonical = getCanonicalType(Decayed);
2518 
2519   // Get the new insert position for the node we care about.
2520   AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
2521   assert(!AT && "Shouldn't be in the map!");
2522 
2523   AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical);
2524   Types.push_back(AT);
2525   AdjustedTypes.InsertNode(AT, InsertPos);
2526   return QualType(AT, 0);
2527 }
2528 
2529 /// getBlockPointerType - Return the uniqued reference to the type for
2530 /// a pointer to the specified block.
2531 QualType ASTContext::getBlockPointerType(QualType T) const {
2532   assert(T->isFunctionType() && "block of function types only");
2533   // Unique pointers, to guarantee there is only one block of a particular
2534   // structure.
2535   llvm::FoldingSetNodeID ID;
2536   BlockPointerType::Profile(ID, T);
2537 
2538   void *InsertPos = nullptr;
2539   if (BlockPointerType *PT =
2540         BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2541     return QualType(PT, 0);
2542 
2543   // If the block pointee type isn't canonical, this won't be a canonical
2544   // type either so fill in the canonical type field.
2545   QualType Canonical;
2546   if (!T.isCanonical()) {
2547     Canonical = getBlockPointerType(getCanonicalType(T));
2548 
2549     // Get the new insert position for the node we care about.
2550     BlockPointerType *NewIP =
2551       BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
2552     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
2553   }
2554   BlockPointerType *New
2555     = new (*this, TypeAlignment) BlockPointerType(T, Canonical);
2556   Types.push_back(New);
2557   BlockPointerTypes.InsertNode(New, InsertPos);
2558   return QualType(New, 0);
2559 }
2560 
2561 /// getLValueReferenceType - Return the uniqued reference to the type for an
2562 /// lvalue reference to the specified type.
2563 QualType
2564 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const {
2565   assert(getCanonicalType(T) != OverloadTy &&
2566          "Unresolved overloaded function type");
2567 
2568   // Unique pointers, to guarantee there is only one pointer of a particular
2569   // structure.
2570   llvm::FoldingSetNodeID ID;
2571   ReferenceType::Profile(ID, T, SpelledAsLValue);
2572 
2573   void *InsertPos = nullptr;
2574   if (LValueReferenceType *RT =
2575         LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
2576     return QualType(RT, 0);
2577 
2578   const ReferenceType *InnerRef = T->getAs<ReferenceType>();
2579 
2580   // If the referencee type isn't canonical, this won't be a canonical type
2581   // either, so fill in the canonical type field.
2582   QualType Canonical;
2583   if (!SpelledAsLValue || InnerRef || !T.isCanonical()) {
2584     QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
2585     Canonical = getLValueReferenceType(getCanonicalType(PointeeType));
2586 
2587     // Get the new insert position for the node we care about.
2588     LValueReferenceType *NewIP =
2589       LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
2590     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
2591   }
2592 
2593   LValueReferenceType *New
2594     = new (*this, TypeAlignment) LValueReferenceType(T, Canonical,
2595                                                      SpelledAsLValue);
2596   Types.push_back(New);
2597   LValueReferenceTypes.InsertNode(New, InsertPos);
2598 
2599   return QualType(New, 0);
2600 }
2601 
2602 /// getRValueReferenceType - Return the uniqued reference to the type for an
2603 /// rvalue reference to the specified type.
2604 QualType ASTContext::getRValueReferenceType(QualType T) const {
2605   // Unique pointers, to guarantee there is only one pointer of a particular
2606   // structure.
2607   llvm::FoldingSetNodeID ID;
2608   ReferenceType::Profile(ID, T, false);
2609 
2610   void *InsertPos = nullptr;
2611   if (RValueReferenceType *RT =
2612         RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
2613     return QualType(RT, 0);
2614 
2615   const ReferenceType *InnerRef = T->getAs<ReferenceType>();
2616 
2617   // If the referencee type isn't canonical, this won't be a canonical type
2618   // either, so fill in the canonical type field.
2619   QualType Canonical;
2620   if (InnerRef || !T.isCanonical()) {
2621     QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T);
2622     Canonical = getRValueReferenceType(getCanonicalType(PointeeType));
2623 
2624     // Get the new insert position for the node we care about.
2625     RValueReferenceType *NewIP =
2626       RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
2627     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
2628   }
2629 
2630   RValueReferenceType *New
2631     = new (*this, TypeAlignment) RValueReferenceType(T, Canonical);
2632   Types.push_back(New);
2633   RValueReferenceTypes.InsertNode(New, InsertPos);
2634   return QualType(New, 0);
2635 }
2636 
2637 /// getMemberPointerType - Return the uniqued reference to the type for a
2638 /// member pointer to the specified type, in the specified class.
2639 QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls) const {
2640   // Unique pointers, to guarantee there is only one pointer of a particular
2641   // structure.
2642   llvm::FoldingSetNodeID ID;
2643   MemberPointerType::Profile(ID, T, Cls);
2644 
2645   void *InsertPos = nullptr;
2646   if (MemberPointerType *PT =
2647       MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2648     return QualType(PT, 0);
2649 
2650   // If the pointee or class type isn't canonical, this won't be a canonical
2651   // type either, so fill in the canonical type field.
2652   QualType Canonical;
2653   if (!T.isCanonical() || !Cls->isCanonicalUnqualified()) {
2654     Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls));
2655 
2656     // Get the new insert position for the node we care about.
2657     MemberPointerType *NewIP =
2658       MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
2659     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
2660   }
2661   MemberPointerType *New
2662     = new (*this, TypeAlignment) MemberPointerType(T, Cls, Canonical);
2663   Types.push_back(New);
2664   MemberPointerTypes.InsertNode(New, InsertPos);
2665   return QualType(New, 0);
2666 }
2667 
2668 /// getConstantArrayType - Return the unique reference to the type for an
2669 /// array of the specified element type.
2670 QualType ASTContext::getConstantArrayType(QualType EltTy,
2671                                           const llvm::APInt &ArySizeIn,
2672                                           ArrayType::ArraySizeModifier ASM,
2673                                           unsigned IndexTypeQuals) const {
2674   assert((EltTy->isDependentType() ||
2675           EltTy->isIncompleteType() || EltTy->isConstantSizeType()) &&
2676          "Constant array of VLAs is illegal!");
2677 
2678   // Convert the array size into a canonical width matching the pointer size for
2679   // the target.
2680   llvm::APInt ArySize(ArySizeIn);
2681   ArySize =
2682     ArySize.zextOrTrunc(Target->getPointerWidth(getTargetAddressSpace(EltTy)));
2683 
2684   llvm::FoldingSetNodeID ID;
2685   ConstantArrayType::Profile(ID, EltTy, ArySize, ASM, IndexTypeQuals);
2686 
2687   void *InsertPos = nullptr;
2688   if (ConstantArrayType *ATP =
2689       ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
2690     return QualType(ATP, 0);
2691 
2692   // If the element type isn't canonical or has qualifiers, this won't
2693   // be a canonical type either, so fill in the canonical type field.
2694   QualType Canon;
2695   if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) {
2696     SplitQualType canonSplit = getCanonicalType(EltTy).split();
2697     Canon = getConstantArrayType(QualType(canonSplit.Ty, 0), ArySize,
2698                                  ASM, IndexTypeQuals);
2699     Canon = getQualifiedType(Canon, canonSplit.Quals);
2700 
2701     // Get the new insert position for the node we care about.
2702     ConstantArrayType *NewIP =
2703       ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
2704     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
2705   }
2706 
2707   ConstantArrayType *New = new(*this,TypeAlignment)
2708     ConstantArrayType(EltTy, Canon, ArySize, ASM, IndexTypeQuals);
2709   ConstantArrayTypes.InsertNode(New, InsertPos);
2710   Types.push_back(New);
2711   return QualType(New, 0);
2712 }
2713 
2714 /// getVariableArrayDecayedType - Turns the given type, which may be
2715 /// variably-modified, into the corresponding type with all the known
2716 /// sizes replaced with [*].
2717 QualType ASTContext::getVariableArrayDecayedType(QualType type) const {
2718   // Vastly most common case.
2719   if (!type->isVariablyModifiedType()) return type;
2720 
2721   QualType result;
2722 
2723   SplitQualType split = type.getSplitDesugaredType();
2724   const Type *ty = split.Ty;
2725   switch (ty->getTypeClass()) {
2726 #define TYPE(Class, Base)
2727 #define ABSTRACT_TYPE(Class, Base)
2728 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
2729 #include "clang/AST/TypeNodes.def"
2730     llvm_unreachable("didn't desugar past all non-canonical types?");
2731 
2732   // These types should never be variably-modified.
2733   case Type::Builtin:
2734   case Type::Complex:
2735   case Type::Vector:
2736   case Type::ExtVector:
2737   case Type::DependentSizedExtVector:
2738   case Type::ObjCObject:
2739   case Type::ObjCInterface:
2740   case Type::ObjCObjectPointer:
2741   case Type::Record:
2742   case Type::Enum:
2743   case Type::UnresolvedUsing:
2744   case Type::TypeOfExpr:
2745   case Type::TypeOf:
2746   case Type::Decltype:
2747   case Type::UnaryTransform:
2748   case Type::DependentName:
2749   case Type::InjectedClassName:
2750   case Type::TemplateSpecialization:
2751   case Type::DependentTemplateSpecialization:
2752   case Type::TemplateTypeParm:
2753   case Type::SubstTemplateTypeParmPack:
2754   case Type::Auto:
2755   case Type::PackExpansion:
2756     llvm_unreachable("type should never be variably-modified");
2757 
2758   // These types can be variably-modified but should never need to
2759   // further decay.
2760   case Type::FunctionNoProto:
2761   case Type::FunctionProto:
2762   case Type::BlockPointer:
2763   case Type::MemberPointer:
2764   case Type::Pipe:
2765     return type;
2766 
2767   // These types can be variably-modified.  All these modifications
2768   // preserve structure except as noted by comments.
2769   // TODO: if we ever care about optimizing VLAs, there are no-op
2770   // optimizations available here.
2771   case Type::Pointer:
2772     result = getPointerType(getVariableArrayDecayedType(
2773                               cast<PointerType>(ty)->getPointeeType()));
2774     break;
2775 
2776   case Type::LValueReference: {
2777     const LValueReferenceType *lv = cast<LValueReferenceType>(ty);
2778     result = getLValueReferenceType(
2779                  getVariableArrayDecayedType(lv->getPointeeType()),
2780                                     lv->isSpelledAsLValue());
2781     break;
2782   }
2783 
2784   case Type::RValueReference: {
2785     const RValueReferenceType *lv = cast<RValueReferenceType>(ty);
2786     result = getRValueReferenceType(
2787                  getVariableArrayDecayedType(lv->getPointeeType()));
2788     break;
2789   }
2790 
2791   case Type::Atomic: {
2792     const AtomicType *at = cast<AtomicType>(ty);
2793     result = getAtomicType(getVariableArrayDecayedType(at->getValueType()));
2794     break;
2795   }
2796 
2797   case Type::ConstantArray: {
2798     const ConstantArrayType *cat = cast<ConstantArrayType>(ty);
2799     result = getConstantArrayType(
2800                  getVariableArrayDecayedType(cat->getElementType()),
2801                                   cat->getSize(),
2802                                   cat->getSizeModifier(),
2803                                   cat->getIndexTypeCVRQualifiers());
2804     break;
2805   }
2806 
2807   case Type::DependentSizedArray: {
2808     const DependentSizedArrayType *dat = cast<DependentSizedArrayType>(ty);
2809     result = getDependentSizedArrayType(
2810                  getVariableArrayDecayedType(dat->getElementType()),
2811                                         dat->getSizeExpr(),
2812                                         dat->getSizeModifier(),
2813                                         dat->getIndexTypeCVRQualifiers(),
2814                                         dat->getBracketsRange());
2815     break;
2816   }
2817 
2818   // Turn incomplete types into [*] types.
2819   case Type::IncompleteArray: {
2820     const IncompleteArrayType *iat = cast<IncompleteArrayType>(ty);
2821     result = getVariableArrayType(
2822                  getVariableArrayDecayedType(iat->getElementType()),
2823                                   /*size*/ nullptr,
2824                                   ArrayType::Normal,
2825                                   iat->getIndexTypeCVRQualifiers(),
2826                                   SourceRange());
2827     break;
2828   }
2829 
2830   // Turn VLA types into [*] types.
2831   case Type::VariableArray: {
2832     const VariableArrayType *vat = cast<VariableArrayType>(ty);
2833     result = getVariableArrayType(
2834                  getVariableArrayDecayedType(vat->getElementType()),
2835                                   /*size*/ nullptr,
2836                                   ArrayType::Star,
2837                                   vat->getIndexTypeCVRQualifiers(),
2838                                   vat->getBracketsRange());
2839     break;
2840   }
2841   }
2842 
2843   // Apply the top-level qualifiers from the original.
2844   return getQualifiedType(result, split.Quals);
2845 }
2846 
2847 /// getVariableArrayType - Returns a non-unique reference to the type for a
2848 /// variable array of the specified element type.
2849 QualType ASTContext::getVariableArrayType(QualType EltTy,
2850                                           Expr *NumElts,
2851                                           ArrayType::ArraySizeModifier ASM,
2852                                           unsigned IndexTypeQuals,
2853                                           SourceRange Brackets) const {
2854   // Since we don't unique expressions, it isn't possible to unique VLA's
2855   // that have an expression provided for their size.
2856   QualType Canon;
2857 
2858   // Be sure to pull qualifiers off the element type.
2859   if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) {
2860     SplitQualType canonSplit = getCanonicalType(EltTy).split();
2861     Canon = getVariableArrayType(QualType(canonSplit.Ty, 0), NumElts, ASM,
2862                                  IndexTypeQuals, Brackets);
2863     Canon = getQualifiedType(Canon, canonSplit.Quals);
2864   }
2865 
2866   VariableArrayType *New = new(*this, TypeAlignment)
2867     VariableArrayType(EltTy, Canon, NumElts, ASM, IndexTypeQuals, Brackets);
2868 
2869   VariableArrayTypes.push_back(New);
2870   Types.push_back(New);
2871   return QualType(New, 0);
2872 }
2873 
2874 /// getDependentSizedArrayType - Returns a non-unique reference to
2875 /// the type for a dependently-sized array of the specified element
2876 /// type.
2877 QualType ASTContext::getDependentSizedArrayType(QualType elementType,
2878                                                 Expr *numElements,
2879                                                 ArrayType::ArraySizeModifier ASM,
2880                                                 unsigned elementTypeQuals,
2881                                                 SourceRange brackets) const {
2882   assert((!numElements || numElements->isTypeDependent() ||
2883           numElements->isValueDependent()) &&
2884          "Size must be type- or value-dependent!");
2885 
2886   // Dependently-sized array types that do not have a specified number
2887   // of elements will have their sizes deduced from a dependent
2888   // initializer.  We do no canonicalization here at all, which is okay
2889   // because they can't be used in most locations.
2890   if (!numElements) {
2891     DependentSizedArrayType *newType
2892       = new (*this, TypeAlignment)
2893           DependentSizedArrayType(*this, elementType, QualType(),
2894                                   numElements, ASM, elementTypeQuals,
2895                                   brackets);
2896     Types.push_back(newType);
2897     return QualType(newType, 0);
2898   }
2899 
2900   // Otherwise, we actually build a new type every time, but we
2901   // also build a canonical type.
2902 
2903   SplitQualType canonElementType = getCanonicalType(elementType).split();
2904 
2905   void *insertPos = nullptr;
2906   llvm::FoldingSetNodeID ID;
2907   DependentSizedArrayType::Profile(ID, *this,
2908                                    QualType(canonElementType.Ty, 0),
2909                                    ASM, elementTypeQuals, numElements);
2910 
2911   // Look for an existing type with these properties.
2912   DependentSizedArrayType *canonTy =
2913     DependentSizedArrayTypes.FindNodeOrInsertPos(ID, insertPos);
2914 
2915   // If we don't have one, build one.
2916   if (!canonTy) {
2917     canonTy = new (*this, TypeAlignment)
2918       DependentSizedArrayType(*this, QualType(canonElementType.Ty, 0),
2919                               QualType(), numElements, ASM, elementTypeQuals,
2920                               brackets);
2921     DependentSizedArrayTypes.InsertNode(canonTy, insertPos);
2922     Types.push_back(canonTy);
2923   }
2924 
2925   // Apply qualifiers from the element type to the array.
2926   QualType canon = getQualifiedType(QualType(canonTy,0),
2927                                     canonElementType.Quals);
2928 
2929   // If we didn't need extra canonicalization for the element type or the size
2930   // expression, then just use that as our result.
2931   if (QualType(canonElementType.Ty, 0) == elementType &&
2932       canonTy->getSizeExpr() == numElements)
2933     return canon;
2934 
2935   // Otherwise, we need to build a type which follows the spelling
2936   // of the element type.
2937   DependentSizedArrayType *sugaredType
2938     = new (*this, TypeAlignment)
2939         DependentSizedArrayType(*this, elementType, canon, numElements,
2940                                 ASM, elementTypeQuals, brackets);
2941   Types.push_back(sugaredType);
2942   return QualType(sugaredType, 0);
2943 }
2944 
2945 QualType ASTContext::getIncompleteArrayType(QualType elementType,
2946                                             ArrayType::ArraySizeModifier ASM,
2947                                             unsigned elementTypeQuals) const {
2948   llvm::FoldingSetNodeID ID;
2949   IncompleteArrayType::Profile(ID, elementType, ASM, elementTypeQuals);
2950 
2951   void *insertPos = nullptr;
2952   if (IncompleteArrayType *iat =
2953        IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos))
2954     return QualType(iat, 0);
2955 
2956   // If the element type isn't canonical, this won't be a canonical type
2957   // either, so fill in the canonical type field.  We also have to pull
2958   // qualifiers off the element type.
2959   QualType canon;
2960 
2961   if (!elementType.isCanonical() || elementType.hasLocalQualifiers()) {
2962     SplitQualType canonSplit = getCanonicalType(elementType).split();
2963     canon = getIncompleteArrayType(QualType(canonSplit.Ty, 0),
2964                                    ASM, elementTypeQuals);
2965     canon = getQualifiedType(canon, canonSplit.Quals);
2966 
2967     // Get the new insert position for the node we care about.
2968     IncompleteArrayType *existing =
2969       IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos);
2970     assert(!existing && "Shouldn't be in the map!"); (void) existing;
2971   }
2972 
2973   IncompleteArrayType *newType = new (*this, TypeAlignment)
2974     IncompleteArrayType(elementType, canon, ASM, elementTypeQuals);
2975 
2976   IncompleteArrayTypes.InsertNode(newType, insertPos);
2977   Types.push_back(newType);
2978   return QualType(newType, 0);
2979 }
2980 
2981 /// getVectorType - Return the unique reference to a vector type of
2982 /// the specified element type and size. VectorType must be a built-in type.
2983 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts,
2984                                    VectorType::VectorKind VecKind) const {
2985   assert(vecType->isBuiltinType());
2986 
2987   // Check if we've already instantiated a vector of this type.
2988   llvm::FoldingSetNodeID ID;
2989   VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
2990 
2991   void *InsertPos = nullptr;
2992   if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
2993     return QualType(VTP, 0);
2994 
2995   // If the element type isn't canonical, this won't be a canonical type either,
2996   // so fill in the canonical type field.
2997   QualType Canonical;
2998   if (!vecType.isCanonical()) {
2999     Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
3000 
3001     // Get the new insert position for the node we care about.
3002     VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3003     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3004   }
3005   VectorType *New = new (*this, TypeAlignment)
3006     VectorType(vecType, NumElts, Canonical, VecKind);
3007   VectorTypes.InsertNode(New, InsertPos);
3008   Types.push_back(New);
3009   return QualType(New, 0);
3010 }
3011 
3012 /// getExtVectorType - Return the unique reference to an extended vector type of
3013 /// the specified element type and size. VectorType must be a built-in type.
3014 QualType
3015 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const {
3016   assert(vecType->isBuiltinType() || vecType->isDependentType());
3017 
3018   // Check if we've already instantiated a vector of this type.
3019   llvm::FoldingSetNodeID ID;
3020   VectorType::Profile(ID, vecType, NumElts, Type::ExtVector,
3021                       VectorType::GenericVector);
3022   void *InsertPos = nullptr;
3023   if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
3024     return QualType(VTP, 0);
3025 
3026   // If the element type isn't canonical, this won't be a canonical type either,
3027   // so fill in the canonical type field.
3028   QualType Canonical;
3029   if (!vecType.isCanonical()) {
3030     Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
3031 
3032     // Get the new insert position for the node we care about.
3033     VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3034     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3035   }
3036   ExtVectorType *New = new (*this, TypeAlignment)
3037     ExtVectorType(vecType, NumElts, Canonical);
3038   VectorTypes.InsertNode(New, InsertPos);
3039   Types.push_back(New);
3040   return QualType(New, 0);
3041 }
3042 
3043 QualType
3044 ASTContext::getDependentSizedExtVectorType(QualType vecType,
3045                                            Expr *SizeExpr,
3046                                            SourceLocation AttrLoc) const {
3047   llvm::FoldingSetNodeID ID;
3048   DependentSizedExtVectorType::Profile(ID, *this, getCanonicalType(vecType),
3049                                        SizeExpr);
3050 
3051   void *InsertPos = nullptr;
3052   DependentSizedExtVectorType *Canon
3053     = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3054   DependentSizedExtVectorType *New;
3055   if (Canon) {
3056     // We already have a canonical version of this array type; use it as
3057     // the canonical type for a newly-built type.
3058     New = new (*this, TypeAlignment)
3059       DependentSizedExtVectorType(*this, vecType, QualType(Canon, 0),
3060                                   SizeExpr, AttrLoc);
3061   } else {
3062     QualType CanonVecTy = getCanonicalType(vecType);
3063     if (CanonVecTy == vecType) {
3064       New = new (*this, TypeAlignment)
3065         DependentSizedExtVectorType(*this, vecType, QualType(), SizeExpr,
3066                                     AttrLoc);
3067 
3068       DependentSizedExtVectorType *CanonCheck
3069         = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos);
3070       assert(!CanonCheck && "Dependent-sized ext_vector canonical type broken");
3071       (void)CanonCheck;
3072       DependentSizedExtVectorTypes.InsertNode(New, InsertPos);
3073     } else {
3074       QualType Canon = getDependentSizedExtVectorType(CanonVecTy, SizeExpr,
3075                                                       SourceLocation());
3076       New = new (*this, TypeAlignment)
3077         DependentSizedExtVectorType(*this, vecType, Canon, SizeExpr, AttrLoc);
3078     }
3079   }
3080 
3081   Types.push_back(New);
3082   return QualType(New, 0);
3083 }
3084 
3085 /// \brief Determine whether \p T is canonical as the result type of a function.
3086 static bool isCanonicalResultType(QualType T) {
3087   return T.isCanonical() &&
3088          (T.getObjCLifetime() == Qualifiers::OCL_None ||
3089           T.getObjCLifetime() == Qualifiers::OCL_ExplicitNone);
3090 }
3091 
3092 /// getFunctionNoProtoType - Return a K&R style C function type like 'int()'.
3093 ///
3094 QualType
3095 ASTContext::getFunctionNoProtoType(QualType ResultTy,
3096                                    const FunctionType::ExtInfo &Info) const {
3097   // Unique functions, to guarantee there is only one function of a particular
3098   // structure.
3099   llvm::FoldingSetNodeID ID;
3100   FunctionNoProtoType::Profile(ID, ResultTy, Info);
3101 
3102   void *InsertPos = nullptr;
3103   if (FunctionNoProtoType *FT =
3104         FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
3105     return QualType(FT, 0);
3106 
3107   QualType Canonical;
3108   if (!isCanonicalResultType(ResultTy)) {
3109     Canonical =
3110       getFunctionNoProtoType(getCanonicalFunctionResultType(ResultTy), Info);
3111 
3112     // Get the new insert position for the node we care about.
3113     FunctionNoProtoType *NewIP =
3114       FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
3115     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3116   }
3117 
3118   FunctionNoProtoType *New = new (*this, TypeAlignment)
3119     FunctionNoProtoType(ResultTy, Canonical, Info);
3120   Types.push_back(New);
3121   FunctionNoProtoTypes.InsertNode(New, InsertPos);
3122   return QualType(New, 0);
3123 }
3124 
3125 CanQualType
3126 ASTContext::getCanonicalFunctionResultType(QualType ResultType) const {
3127   CanQualType CanResultType = getCanonicalType(ResultType);
3128 
3129   // Canonical result types do not have ARC lifetime qualifiers.
3130   if (CanResultType.getQualifiers().hasObjCLifetime()) {
3131     Qualifiers Qs = CanResultType.getQualifiers();
3132     Qs.removeObjCLifetime();
3133     return CanQualType::CreateUnsafe(
3134              getQualifiedType(CanResultType.getUnqualifiedType(), Qs));
3135   }
3136 
3137   return CanResultType;
3138 }
3139 
3140 static bool isCanonicalExceptionSpecification(
3141     const FunctionProtoType::ExceptionSpecInfo &ESI, bool NoexceptInType) {
3142   if (ESI.Type == EST_None)
3143     return true;
3144   if (!NoexceptInType)
3145     return false;
3146 
3147   // C++17 onwards: exception specification is part of the type, as a simple
3148   // boolean "can this function type throw".
3149   if (ESI.Type == EST_BasicNoexcept)
3150     return true;
3151 
3152   // A dynamic exception specification is canonical if it only contains pack
3153   // expansions (so we can't tell whether it's non-throwing) and all its
3154   // contained types are canonical.
3155   if (ESI.Type == EST_Dynamic) {
3156     bool AnyPackExpansions = false;
3157     for (QualType ET : ESI.Exceptions) {
3158       if (!ET.isCanonical())
3159         return false;
3160       if (ET->getAs<PackExpansionType>())
3161         AnyPackExpansions = true;
3162     }
3163     return AnyPackExpansions;
3164   }
3165 
3166   // A noexcept(expr) specification is (possibly) canonical if expr is
3167   // value-dependent.
3168   if (ESI.Type == EST_ComputedNoexcept)
3169     return ESI.NoexceptExpr && ESI.NoexceptExpr->isValueDependent();
3170 
3171   return false;
3172 }
3173 
3174 QualType ASTContext::getFunctionTypeInternal(
3175     QualType ResultTy, ArrayRef<QualType> ArgArray,
3176     const FunctionProtoType::ExtProtoInfo &EPI, bool OnlyWantCanonical) const {
3177   size_t NumArgs = ArgArray.size();
3178 
3179   // Unique functions, to guarantee there is only one function of a particular
3180   // structure.
3181   llvm::FoldingSetNodeID ID;
3182   FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI,
3183                              *this, true);
3184 
3185   QualType Canonical;
3186   bool Unique = false;
3187 
3188   void *InsertPos = nullptr;
3189   if (FunctionProtoType *FPT =
3190         FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos)) {
3191     QualType Existing = QualType(FPT, 0);
3192 
3193     // If we find a pre-existing equivalent FunctionProtoType, we can just reuse
3194     // it so long as our exception specification doesn't contain a dependent
3195     // noexcept expression, or we're just looking for a canonical type.
3196     // Otherwise, we're going to need to create a type
3197     // sugar node to hold the concrete expression.
3198     if (OnlyWantCanonical || EPI.ExceptionSpec.Type != EST_ComputedNoexcept ||
3199         EPI.ExceptionSpec.NoexceptExpr == FPT->getNoexceptExpr())
3200       return Existing;
3201 
3202     // We need a new type sugar node for this one, to hold the new noexcept
3203     // expression. We do no canonicalization here, but that's OK since we don't
3204     // expect to see the same noexcept expression much more than once.
3205     Canonical = getCanonicalType(Existing);
3206     Unique = true;
3207   }
3208 
3209   bool NoexceptInType = getLangOpts().CPlusPlus1z;
3210   bool IsCanonicalExceptionSpec =
3211       isCanonicalExceptionSpecification(EPI.ExceptionSpec, NoexceptInType);
3212 
3213   // Determine whether the type being created is already canonical or not.
3214   bool isCanonical = !Unique && IsCanonicalExceptionSpec &&
3215                      isCanonicalResultType(ResultTy) && !EPI.HasTrailingReturn;
3216   for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
3217     if (!ArgArray[i].isCanonicalAsParam())
3218       isCanonical = false;
3219 
3220   if (OnlyWantCanonical)
3221     assert(isCanonical &&
3222            "given non-canonical parameters constructing canonical type");
3223 
3224   // If this type isn't canonical, get the canonical version of it if we don't
3225   // already have it. The exception spec is only partially part of the
3226   // canonical type, and only in C++17 onwards.
3227   if (!isCanonical && Canonical.isNull()) {
3228     SmallVector<QualType, 16> CanonicalArgs;
3229     CanonicalArgs.reserve(NumArgs);
3230     for (unsigned i = 0; i != NumArgs; ++i)
3231       CanonicalArgs.push_back(getCanonicalParamType(ArgArray[i]));
3232 
3233     llvm::SmallVector<QualType, 8> ExceptionTypeStorage;
3234     FunctionProtoType::ExtProtoInfo CanonicalEPI = EPI;
3235     CanonicalEPI.HasTrailingReturn = false;
3236 
3237     if (IsCanonicalExceptionSpec) {
3238       // Exception spec is already OK.
3239     } else if (NoexceptInType) {
3240       switch (EPI.ExceptionSpec.Type) {
3241       case EST_Unparsed: case EST_Unevaluated: case EST_Uninstantiated:
3242         // We don't know yet. It shouldn't matter what we pick here; no-one
3243         // should ever look at this.
3244         LLVM_FALLTHROUGH;
3245       case EST_None: case EST_MSAny:
3246         CanonicalEPI.ExceptionSpec.Type = EST_None;
3247         break;
3248 
3249         // A dynamic exception specification is almost always "not noexcept",
3250         // with the exception that a pack expansion might expand to no types.
3251       case EST_Dynamic: {
3252         bool AnyPacks = false;
3253         for (QualType ET : EPI.ExceptionSpec.Exceptions) {
3254           if (ET->getAs<PackExpansionType>())
3255             AnyPacks = true;
3256           ExceptionTypeStorage.push_back(getCanonicalType(ET));
3257         }
3258         if (!AnyPacks)
3259           CanonicalEPI.ExceptionSpec.Type = EST_None;
3260         else {
3261           CanonicalEPI.ExceptionSpec.Type = EST_Dynamic;
3262           CanonicalEPI.ExceptionSpec.Exceptions = ExceptionTypeStorage;
3263         }
3264         break;
3265       }
3266 
3267       case EST_DynamicNone: case EST_BasicNoexcept:
3268         CanonicalEPI.ExceptionSpec.Type = EST_BasicNoexcept;
3269         break;
3270 
3271       case EST_ComputedNoexcept:
3272         llvm::APSInt Value(1);
3273         auto *E = CanonicalEPI.ExceptionSpec.NoexceptExpr;
3274         if (!E || !E->isIntegerConstantExpr(Value, *this, nullptr,
3275                                             /*IsEvaluated*/false)) {
3276           // This noexcept specification is invalid.
3277           // FIXME: Should this be able to happen?
3278           CanonicalEPI.ExceptionSpec.Type = EST_None;
3279           break;
3280         }
3281 
3282         CanonicalEPI.ExceptionSpec.Type =
3283             Value.getBoolValue() ? EST_BasicNoexcept : EST_None;
3284         break;
3285       }
3286     } else {
3287       CanonicalEPI.ExceptionSpec = FunctionProtoType::ExceptionSpecInfo();
3288     }
3289 
3290     // Adjust the canonical function result type.
3291     CanQualType CanResultTy = getCanonicalFunctionResultType(ResultTy);
3292     Canonical =
3293         getFunctionTypeInternal(CanResultTy, CanonicalArgs, CanonicalEPI, true);
3294 
3295     // Get the new insert position for the node we care about.
3296     FunctionProtoType *NewIP =
3297       FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
3298     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3299   }
3300 
3301   // FunctionProtoType objects are allocated with extra bytes after
3302   // them for three variable size arrays at the end:
3303   //  - parameter types
3304   //  - exception types
3305   //  - extended parameter information
3306   // Instead of the exception types, there could be a noexcept
3307   // expression, or information used to resolve the exception
3308   // specification.
3309   size_t Size = sizeof(FunctionProtoType) +
3310                 NumArgs * sizeof(QualType);
3311 
3312   if (EPI.ExceptionSpec.Type == EST_Dynamic) {
3313     Size += EPI.ExceptionSpec.Exceptions.size() * sizeof(QualType);
3314   } else if (EPI.ExceptionSpec.Type == EST_ComputedNoexcept) {
3315     Size += sizeof(Expr*);
3316   } else if (EPI.ExceptionSpec.Type == EST_Uninstantiated) {
3317     Size += 2 * sizeof(FunctionDecl*);
3318   } else if (EPI.ExceptionSpec.Type == EST_Unevaluated) {
3319     Size += sizeof(FunctionDecl*);
3320   }
3321 
3322   // Put the ExtParameterInfos last.  If all were equal, it would make
3323   // more sense to put these before the exception specification, because
3324   // it's much easier to skip past them compared to the elaborate switch
3325   // required to skip the exception specification.  However, all is not
3326   // equal; ExtParameterInfos are used to model very uncommon features,
3327   // and it's better not to burden the more common paths.
3328   if (EPI.ExtParameterInfos) {
3329     Size += NumArgs * sizeof(FunctionProtoType::ExtParameterInfo);
3330   }
3331 
3332   FunctionProtoType *FTP = (FunctionProtoType*) Allocate(Size, TypeAlignment);
3333   FunctionProtoType::ExtProtoInfo newEPI = EPI;
3334   new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
3335   Types.push_back(FTP);
3336   if (!Unique)
3337     FunctionProtoTypes.InsertNode(FTP, InsertPos);
3338   return QualType(FTP, 0);
3339 }
3340 
3341 QualType ASTContext::getPipeType(QualType T, bool ReadOnly) const {
3342   llvm::FoldingSetNodeID ID;
3343   PipeType::Profile(ID, T, ReadOnly);
3344 
3345   void *InsertPos = 0;
3346   if (PipeType *PT = PipeTypes.FindNodeOrInsertPos(ID, InsertPos))
3347     return QualType(PT, 0);
3348 
3349   // If the pipe element type isn't canonical, this won't be a canonical type
3350   // either, so fill in the canonical type field.
3351   QualType Canonical;
3352   if (!T.isCanonical()) {
3353     Canonical = getPipeType(getCanonicalType(T), ReadOnly);
3354 
3355     // Get the new insert position for the node we care about.
3356     PipeType *NewIP = PipeTypes.FindNodeOrInsertPos(ID, InsertPos);
3357     assert(!NewIP && "Shouldn't be in the map!");
3358     (void)NewIP;
3359   }
3360   PipeType *New = new (*this, TypeAlignment) PipeType(T, Canonical, ReadOnly);
3361   Types.push_back(New);
3362   PipeTypes.InsertNode(New, InsertPos);
3363   return QualType(New, 0);
3364 }
3365 
3366 QualType ASTContext::getReadPipeType(QualType T) const {
3367   return getPipeType(T, true);
3368 }
3369 
3370 QualType ASTContext::getWritePipeType(QualType T) const {
3371   return getPipeType(T, false);
3372 }
3373 
3374 #ifndef NDEBUG
3375 static bool NeedsInjectedClassNameType(const RecordDecl *D) {
3376   if (!isa<CXXRecordDecl>(D)) return false;
3377   const CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
3378   if (isa<ClassTemplatePartialSpecializationDecl>(RD))
3379     return true;
3380   if (RD->getDescribedClassTemplate() &&
3381       !isa<ClassTemplateSpecializationDecl>(RD))
3382     return true;
3383   return false;
3384 }
3385 #endif
3386 
3387 /// getInjectedClassNameType - Return the unique reference to the
3388 /// injected class name type for the specified templated declaration.
3389 QualType ASTContext::getInjectedClassNameType(CXXRecordDecl *Decl,
3390                                               QualType TST) const {
3391   assert(NeedsInjectedClassNameType(Decl));
3392   if (Decl->TypeForDecl) {
3393     assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
3394   } else if (CXXRecordDecl *PrevDecl = Decl->getPreviousDecl()) {
3395     assert(PrevDecl->TypeForDecl && "previous declaration has no type");
3396     Decl->TypeForDecl = PrevDecl->TypeForDecl;
3397     assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
3398   } else {
3399     Type *newType =
3400       new (*this, TypeAlignment) InjectedClassNameType(Decl, TST);
3401     Decl->TypeForDecl = newType;
3402     Types.push_back(newType);
3403   }
3404   return QualType(Decl->TypeForDecl, 0);
3405 }
3406 
3407 /// getTypeDeclType - Return the unique reference to the type for the
3408 /// specified type declaration.
3409 QualType ASTContext::getTypeDeclTypeSlow(const TypeDecl *Decl) const {
3410   assert(Decl && "Passed null for Decl param");
3411   assert(!Decl->TypeForDecl && "TypeForDecl present in slow case");
3412 
3413   if (const TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Decl))
3414     return getTypedefType(Typedef);
3415 
3416   assert(!isa<TemplateTypeParmDecl>(Decl) &&
3417          "Template type parameter types are always available.");
3418 
3419   if (const RecordDecl *Record = dyn_cast<RecordDecl>(Decl)) {
3420     assert(Record->isFirstDecl() && "struct/union has previous declaration");
3421     assert(!NeedsInjectedClassNameType(Record));
3422     return getRecordType(Record);
3423   } else if (const EnumDecl *Enum = dyn_cast<EnumDecl>(Decl)) {
3424     assert(Enum->isFirstDecl() && "enum has previous declaration");
3425     return getEnumType(Enum);
3426   } else if (const UnresolvedUsingTypenameDecl *Using =
3427                dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) {
3428     Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Using);
3429     Decl->TypeForDecl = newType;
3430     Types.push_back(newType);
3431   } else
3432     llvm_unreachable("TypeDecl without a type?");
3433 
3434   return QualType(Decl->TypeForDecl, 0);
3435 }
3436 
3437 /// getTypedefType - Return the unique reference to the type for the
3438 /// specified typedef name decl.
3439 QualType
3440 ASTContext::getTypedefType(const TypedefNameDecl *Decl,
3441                            QualType Canonical) const {
3442   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
3443 
3444   if (Canonical.isNull())
3445     Canonical = getCanonicalType(Decl->getUnderlyingType());
3446   TypedefType *newType = new(*this, TypeAlignment)
3447     TypedefType(Type::Typedef, Decl, Canonical);
3448   Decl->TypeForDecl = newType;
3449   Types.push_back(newType);
3450   return QualType(newType, 0);
3451 }
3452 
3453 QualType ASTContext::getRecordType(const RecordDecl *Decl) const {
3454   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
3455 
3456   if (const RecordDecl *PrevDecl = Decl->getPreviousDecl())
3457     if (PrevDecl->TypeForDecl)
3458       return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
3459 
3460   RecordType *newType = new (*this, TypeAlignment) RecordType(Decl);
3461   Decl->TypeForDecl = newType;
3462   Types.push_back(newType);
3463   return QualType(newType, 0);
3464 }
3465 
3466 QualType ASTContext::getEnumType(const EnumDecl *Decl) const {
3467   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
3468 
3469   if (const EnumDecl *PrevDecl = Decl->getPreviousDecl())
3470     if (PrevDecl->TypeForDecl)
3471       return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
3472 
3473   EnumType *newType = new (*this, TypeAlignment) EnumType(Decl);
3474   Decl->TypeForDecl = newType;
3475   Types.push_back(newType);
3476   return QualType(newType, 0);
3477 }
3478 
3479 QualType ASTContext::getAttributedType(AttributedType::Kind attrKind,
3480                                        QualType modifiedType,
3481                                        QualType equivalentType) {
3482   llvm::FoldingSetNodeID id;
3483   AttributedType::Profile(id, attrKind, modifiedType, equivalentType);
3484 
3485   void *insertPos = nullptr;
3486   AttributedType *type = AttributedTypes.FindNodeOrInsertPos(id, insertPos);
3487   if (type) return QualType(type, 0);
3488 
3489   QualType canon = getCanonicalType(equivalentType);
3490   type = new (*this, TypeAlignment)
3491            AttributedType(canon, attrKind, modifiedType, equivalentType);
3492 
3493   Types.push_back(type);
3494   AttributedTypes.InsertNode(type, insertPos);
3495 
3496   return QualType(type, 0);
3497 }
3498 
3499 /// \brief Retrieve a substitution-result type.
3500 QualType
3501 ASTContext::getSubstTemplateTypeParmType(const TemplateTypeParmType *Parm,
3502                                          QualType Replacement) const {
3503   assert(Replacement.isCanonical()
3504          && "replacement types must always be canonical");
3505 
3506   llvm::FoldingSetNodeID ID;
3507   SubstTemplateTypeParmType::Profile(ID, Parm, Replacement);
3508   void *InsertPos = nullptr;
3509   SubstTemplateTypeParmType *SubstParm
3510     = SubstTemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3511 
3512   if (!SubstParm) {
3513     SubstParm = new (*this, TypeAlignment)
3514       SubstTemplateTypeParmType(Parm, Replacement);
3515     Types.push_back(SubstParm);
3516     SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
3517   }
3518 
3519   return QualType(SubstParm, 0);
3520 }
3521 
3522 /// \brief Retrieve a
3523 QualType ASTContext::getSubstTemplateTypeParmPackType(
3524                                           const TemplateTypeParmType *Parm,
3525                                               const TemplateArgument &ArgPack) {
3526 #ifndef NDEBUG
3527   for (const auto &P : ArgPack.pack_elements()) {
3528     assert(P.getKind() == TemplateArgument::Type &&"Pack contains a non-type");
3529     assert(P.getAsType().isCanonical() && "Pack contains non-canonical type");
3530   }
3531 #endif
3532 
3533   llvm::FoldingSetNodeID ID;
3534   SubstTemplateTypeParmPackType::Profile(ID, Parm, ArgPack);
3535   void *InsertPos = nullptr;
3536   if (SubstTemplateTypeParmPackType *SubstParm
3537         = SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos))
3538     return QualType(SubstParm, 0);
3539 
3540   QualType Canon;
3541   if (!Parm->isCanonicalUnqualified()) {
3542     Canon = getCanonicalType(QualType(Parm, 0));
3543     Canon = getSubstTemplateTypeParmPackType(cast<TemplateTypeParmType>(Canon),
3544                                              ArgPack);
3545     SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos);
3546   }
3547 
3548   SubstTemplateTypeParmPackType *SubstParm
3549     = new (*this, TypeAlignment) SubstTemplateTypeParmPackType(Parm, Canon,
3550                                                                ArgPack);
3551   Types.push_back(SubstParm);
3552   SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
3553   return QualType(SubstParm, 0);
3554 }
3555 
3556 /// \brief Retrieve the template type parameter type for a template
3557 /// parameter or parameter pack with the given depth, index, and (optionally)
3558 /// name.
3559 QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index,
3560                                              bool ParameterPack,
3561                                              TemplateTypeParmDecl *TTPDecl) const {
3562   llvm::FoldingSetNodeID ID;
3563   TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl);
3564   void *InsertPos = nullptr;
3565   TemplateTypeParmType *TypeParm
3566     = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3567 
3568   if (TypeParm)
3569     return QualType(TypeParm, 0);
3570 
3571   if (TTPDecl) {
3572     QualType Canon = getTemplateTypeParmType(Depth, Index, ParameterPack);
3573     TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon);
3574 
3575     TemplateTypeParmType *TypeCheck
3576       = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3577     assert(!TypeCheck && "Template type parameter canonical type broken");
3578     (void)TypeCheck;
3579   } else
3580     TypeParm = new (*this, TypeAlignment)
3581       TemplateTypeParmType(Depth, Index, ParameterPack);
3582 
3583   Types.push_back(TypeParm);
3584   TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos);
3585 
3586   return QualType(TypeParm, 0);
3587 }
3588 
3589 TypeSourceInfo *
3590 ASTContext::getTemplateSpecializationTypeInfo(TemplateName Name,
3591                                               SourceLocation NameLoc,
3592                                         const TemplateArgumentListInfo &Args,
3593                                               QualType Underlying) const {
3594   assert(!Name.getAsDependentTemplateName() &&
3595          "No dependent template names here!");
3596   QualType TST = getTemplateSpecializationType(Name, Args, Underlying);
3597 
3598   TypeSourceInfo *DI = CreateTypeSourceInfo(TST);
3599   TemplateSpecializationTypeLoc TL =
3600       DI->getTypeLoc().castAs<TemplateSpecializationTypeLoc>();
3601   TL.setTemplateKeywordLoc(SourceLocation());
3602   TL.setTemplateNameLoc(NameLoc);
3603   TL.setLAngleLoc(Args.getLAngleLoc());
3604   TL.setRAngleLoc(Args.getRAngleLoc());
3605   for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
3606     TL.setArgLocInfo(i, Args[i].getLocInfo());
3607   return DI;
3608 }
3609 
3610 QualType
3611 ASTContext::getTemplateSpecializationType(TemplateName Template,
3612                                           const TemplateArgumentListInfo &Args,
3613                                           QualType Underlying) const {
3614   assert(!Template.getAsDependentTemplateName() &&
3615          "No dependent template names here!");
3616 
3617   SmallVector<TemplateArgument, 4> ArgVec;
3618   ArgVec.reserve(Args.size());
3619   for (const TemplateArgumentLoc &Arg : Args.arguments())
3620     ArgVec.push_back(Arg.getArgument());
3621 
3622   return getTemplateSpecializationType(Template, ArgVec, Underlying);
3623 }
3624 
3625 #ifndef NDEBUG
3626 static bool hasAnyPackExpansions(ArrayRef<TemplateArgument> Args) {
3627   for (const TemplateArgument &Arg : Args)
3628     if (Arg.isPackExpansion())
3629       return true;
3630 
3631   return true;
3632 }
3633 #endif
3634 
3635 QualType
3636 ASTContext::getTemplateSpecializationType(TemplateName Template,
3637                                           ArrayRef<TemplateArgument> Args,
3638                                           QualType Underlying) const {
3639   assert(!Template.getAsDependentTemplateName() &&
3640          "No dependent template names here!");
3641   // Look through qualified template names.
3642   if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
3643     Template = TemplateName(QTN->getTemplateDecl());
3644 
3645   bool IsTypeAlias =
3646     Template.getAsTemplateDecl() &&
3647     isa<TypeAliasTemplateDecl>(Template.getAsTemplateDecl());
3648   QualType CanonType;
3649   if (!Underlying.isNull())
3650     CanonType = getCanonicalType(Underlying);
3651   else {
3652     // We can get here with an alias template when the specialization contains
3653     // a pack expansion that does not match up with a parameter pack.
3654     assert((!IsTypeAlias || hasAnyPackExpansions(Args)) &&
3655            "Caller must compute aliased type");
3656     IsTypeAlias = false;
3657     CanonType = getCanonicalTemplateSpecializationType(Template, Args);
3658   }
3659 
3660   // Allocate the (non-canonical) template specialization type, but don't
3661   // try to unique it: these types typically have location information that
3662   // we don't unique and don't want to lose.
3663   void *Mem = Allocate(sizeof(TemplateSpecializationType) +
3664                        sizeof(TemplateArgument) * Args.size() +
3665                        (IsTypeAlias? sizeof(QualType) : 0),
3666                        TypeAlignment);
3667   TemplateSpecializationType *Spec
3668     = new (Mem) TemplateSpecializationType(Template, Args, CanonType,
3669                                          IsTypeAlias ? Underlying : QualType());
3670 
3671   Types.push_back(Spec);
3672   return QualType(Spec, 0);
3673 }
3674 
3675 QualType ASTContext::getCanonicalTemplateSpecializationType(
3676     TemplateName Template, ArrayRef<TemplateArgument> Args) const {
3677   assert(!Template.getAsDependentTemplateName() &&
3678          "No dependent template names here!");
3679 
3680   // Look through qualified template names.
3681   if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
3682     Template = TemplateName(QTN->getTemplateDecl());
3683 
3684   // Build the canonical template specialization type.
3685   TemplateName CanonTemplate = getCanonicalTemplateName(Template);
3686   SmallVector<TemplateArgument, 4> CanonArgs;
3687   unsigned NumArgs = Args.size();
3688   CanonArgs.reserve(NumArgs);
3689   for (const TemplateArgument &Arg : Args)
3690     CanonArgs.push_back(getCanonicalTemplateArgument(Arg));
3691 
3692   // Determine whether this canonical template specialization type already
3693   // exists.
3694   llvm::FoldingSetNodeID ID;
3695   TemplateSpecializationType::Profile(ID, CanonTemplate,
3696                                       CanonArgs, *this);
3697 
3698   void *InsertPos = nullptr;
3699   TemplateSpecializationType *Spec
3700     = TemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3701 
3702   if (!Spec) {
3703     // Allocate a new canonical template specialization type.
3704     void *Mem = Allocate((sizeof(TemplateSpecializationType) +
3705                           sizeof(TemplateArgument) * NumArgs),
3706                          TypeAlignment);
3707     Spec = new (Mem) TemplateSpecializationType(CanonTemplate,
3708                                                 CanonArgs,
3709                                                 QualType(), QualType());
3710     Types.push_back(Spec);
3711     TemplateSpecializationTypes.InsertNode(Spec, InsertPos);
3712   }
3713 
3714   assert(Spec->isDependentType() &&
3715          "Non-dependent template-id type must have a canonical type");
3716   return QualType(Spec, 0);
3717 }
3718 
3719 QualType
3720 ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword,
3721                               NestedNameSpecifier *NNS,
3722                               QualType NamedType) const {
3723   llvm::FoldingSetNodeID ID;
3724   ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
3725 
3726   void *InsertPos = nullptr;
3727   ElaboratedType *T = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
3728   if (T)
3729     return QualType(T, 0);
3730 
3731   QualType Canon = NamedType;
3732   if (!Canon.isCanonical()) {
3733     Canon = getCanonicalType(NamedType);
3734     ElaboratedType *CheckT = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
3735     assert(!CheckT && "Elaborated canonical type broken");
3736     (void)CheckT;
3737   }
3738 
3739   T = new (*this, TypeAlignment) ElaboratedType(Keyword, NNS, NamedType, Canon);
3740   Types.push_back(T);
3741   ElaboratedTypes.InsertNode(T, InsertPos);
3742   return QualType(T, 0);
3743 }
3744 
3745 QualType
3746 ASTContext::getParenType(QualType InnerType) const {
3747   llvm::FoldingSetNodeID ID;
3748   ParenType::Profile(ID, InnerType);
3749 
3750   void *InsertPos = nullptr;
3751   ParenType *T = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
3752   if (T)
3753     return QualType(T, 0);
3754 
3755   QualType Canon = InnerType;
3756   if (!Canon.isCanonical()) {
3757     Canon = getCanonicalType(InnerType);
3758     ParenType *CheckT = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
3759     assert(!CheckT && "Paren canonical type broken");
3760     (void)CheckT;
3761   }
3762 
3763   T = new (*this, TypeAlignment) ParenType(InnerType, Canon);
3764   Types.push_back(T);
3765   ParenTypes.InsertNode(T, InsertPos);
3766   return QualType(T, 0);
3767 }
3768 
3769 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword,
3770                                           NestedNameSpecifier *NNS,
3771                                           const IdentifierInfo *Name,
3772                                           QualType Canon) const {
3773   if (Canon.isNull()) {
3774     NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
3775     ElaboratedTypeKeyword CanonKeyword = Keyword;
3776     if (Keyword == ETK_None)
3777       CanonKeyword = ETK_Typename;
3778 
3779     if (CanonNNS != NNS || CanonKeyword != Keyword)
3780       Canon = getDependentNameType(CanonKeyword, CanonNNS, Name);
3781   }
3782 
3783   llvm::FoldingSetNodeID ID;
3784   DependentNameType::Profile(ID, Keyword, NNS, Name);
3785 
3786   void *InsertPos = nullptr;
3787   DependentNameType *T
3788     = DependentNameTypes.FindNodeOrInsertPos(ID, InsertPos);
3789   if (T)
3790     return QualType(T, 0);
3791 
3792   T = new (*this, TypeAlignment) DependentNameType(Keyword, NNS, Name, Canon);
3793   Types.push_back(T);
3794   DependentNameTypes.InsertNode(T, InsertPos);
3795   return QualType(T, 0);
3796 }
3797 
3798 QualType
3799 ASTContext::getDependentTemplateSpecializationType(
3800                                  ElaboratedTypeKeyword Keyword,
3801                                  NestedNameSpecifier *NNS,
3802                                  const IdentifierInfo *Name,
3803                                  const TemplateArgumentListInfo &Args) const {
3804   // TODO: avoid this copy
3805   SmallVector<TemplateArgument, 16> ArgCopy;
3806   for (unsigned I = 0, E = Args.size(); I != E; ++I)
3807     ArgCopy.push_back(Args[I].getArgument());
3808   return getDependentTemplateSpecializationType(Keyword, NNS, Name, ArgCopy);
3809 }
3810 
3811 QualType
3812 ASTContext::getDependentTemplateSpecializationType(
3813                                  ElaboratedTypeKeyword Keyword,
3814                                  NestedNameSpecifier *NNS,
3815                                  const IdentifierInfo *Name,
3816                                  ArrayRef<TemplateArgument> Args) const {
3817   assert((!NNS || NNS->isDependent()) &&
3818          "nested-name-specifier must be dependent");
3819 
3820   llvm::FoldingSetNodeID ID;
3821   DependentTemplateSpecializationType::Profile(ID, *this, Keyword, NNS,
3822                                                Name, Args);
3823 
3824   void *InsertPos = nullptr;
3825   DependentTemplateSpecializationType *T
3826     = DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3827   if (T)
3828     return QualType(T, 0);
3829 
3830   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
3831 
3832   ElaboratedTypeKeyword CanonKeyword = Keyword;
3833   if (Keyword == ETK_None) CanonKeyword = ETK_Typename;
3834 
3835   bool AnyNonCanonArgs = false;
3836   unsigned NumArgs = Args.size();
3837   SmallVector<TemplateArgument, 16> CanonArgs(NumArgs);
3838   for (unsigned I = 0; I != NumArgs; ++I) {
3839     CanonArgs[I] = getCanonicalTemplateArgument(Args[I]);
3840     if (!CanonArgs[I].structurallyEquals(Args[I]))
3841       AnyNonCanonArgs = true;
3842   }
3843 
3844   QualType Canon;
3845   if (AnyNonCanonArgs || CanonNNS != NNS || CanonKeyword != Keyword) {
3846     Canon = getDependentTemplateSpecializationType(CanonKeyword, CanonNNS,
3847                                                    Name,
3848                                                    CanonArgs);
3849 
3850     // Find the insert position again.
3851     DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3852   }
3853 
3854   void *Mem = Allocate((sizeof(DependentTemplateSpecializationType) +
3855                         sizeof(TemplateArgument) * NumArgs),
3856                        TypeAlignment);
3857   T = new (Mem) DependentTemplateSpecializationType(Keyword, NNS,
3858                                                     Name, Args, Canon);
3859   Types.push_back(T);
3860   DependentTemplateSpecializationTypes.InsertNode(T, InsertPos);
3861   return QualType(T, 0);
3862 }
3863 
3864 QualType ASTContext::getPackExpansionType(QualType Pattern,
3865                                           Optional<unsigned> NumExpansions) {
3866   llvm::FoldingSetNodeID ID;
3867   PackExpansionType::Profile(ID, Pattern, NumExpansions);
3868 
3869   assert(Pattern->containsUnexpandedParameterPack() &&
3870          "Pack expansions must expand one or more parameter packs");
3871   void *InsertPos = nullptr;
3872   PackExpansionType *T
3873     = PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
3874   if (T)
3875     return QualType(T, 0);
3876 
3877   QualType Canon;
3878   if (!Pattern.isCanonical()) {
3879     Canon = getCanonicalType(Pattern);
3880     // The canonical type might not contain an unexpanded parameter pack, if it
3881     // contains an alias template specialization which ignores one of its
3882     // parameters.
3883     if (Canon->containsUnexpandedParameterPack()) {
3884       Canon = getPackExpansionType(Canon, NumExpansions);
3885 
3886       // Find the insert position again, in case we inserted an element into
3887       // PackExpansionTypes and invalidated our insert position.
3888       PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
3889     }
3890   }
3891 
3892   T = new (*this, TypeAlignment)
3893       PackExpansionType(Pattern, Canon, NumExpansions);
3894   Types.push_back(T);
3895   PackExpansionTypes.InsertNode(T, InsertPos);
3896   return QualType(T, 0);
3897 }
3898 
3899 /// CmpProtocolNames - Comparison predicate for sorting protocols
3900 /// alphabetically.
3901 static int CmpProtocolNames(ObjCProtocolDecl *const *LHS,
3902                             ObjCProtocolDecl *const *RHS) {
3903   return DeclarationName::compare((*LHS)->getDeclName(), (*RHS)->getDeclName());
3904 }
3905 
3906 static bool areSortedAndUniqued(ArrayRef<ObjCProtocolDecl *> Protocols) {
3907   if (Protocols.empty()) return true;
3908 
3909   if (Protocols[0]->getCanonicalDecl() != Protocols[0])
3910     return false;
3911 
3912   for (unsigned i = 1; i != Protocols.size(); ++i)
3913     if (CmpProtocolNames(&Protocols[i - 1], &Protocols[i]) >= 0 ||
3914         Protocols[i]->getCanonicalDecl() != Protocols[i])
3915       return false;
3916   return true;
3917 }
3918 
3919 static void
3920 SortAndUniqueProtocols(SmallVectorImpl<ObjCProtocolDecl *> &Protocols) {
3921   // Sort protocols, keyed by name.
3922   llvm::array_pod_sort(Protocols.begin(), Protocols.end(), CmpProtocolNames);
3923 
3924   // Canonicalize.
3925   for (ObjCProtocolDecl *&P : Protocols)
3926     P = P->getCanonicalDecl();
3927 
3928   // Remove duplicates.
3929   auto ProtocolsEnd = std::unique(Protocols.begin(), Protocols.end());
3930   Protocols.erase(ProtocolsEnd, Protocols.end());
3931 }
3932 
3933 QualType ASTContext::getObjCObjectType(QualType BaseType,
3934                                        ObjCProtocolDecl * const *Protocols,
3935                                        unsigned NumProtocols) const {
3936   return getObjCObjectType(BaseType, { },
3937                            llvm::makeArrayRef(Protocols, NumProtocols),
3938                            /*isKindOf=*/false);
3939 }
3940 
3941 QualType ASTContext::getObjCObjectType(
3942            QualType baseType,
3943            ArrayRef<QualType> typeArgs,
3944            ArrayRef<ObjCProtocolDecl *> protocols,
3945            bool isKindOf) const {
3946   // If the base type is an interface and there aren't any protocols or
3947   // type arguments to add, then the interface type will do just fine.
3948   if (typeArgs.empty() && protocols.empty() && !isKindOf &&
3949       isa<ObjCInterfaceType>(baseType))
3950     return baseType;
3951 
3952   // Look in the folding set for an existing type.
3953   llvm::FoldingSetNodeID ID;
3954   ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf);
3955   void *InsertPos = nullptr;
3956   if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
3957     return QualType(QT, 0);
3958 
3959   // Determine the type arguments to be used for canonicalization,
3960   // which may be explicitly specified here or written on the base
3961   // type.
3962   ArrayRef<QualType> effectiveTypeArgs = typeArgs;
3963   if (effectiveTypeArgs.empty()) {
3964     if (auto baseObject = baseType->getAs<ObjCObjectType>())
3965       effectiveTypeArgs = baseObject->getTypeArgs();
3966   }
3967 
3968   // Build the canonical type, which has the canonical base type and a
3969   // sorted-and-uniqued list of protocols and the type arguments
3970   // canonicalized.
3971   QualType canonical;
3972   bool typeArgsAreCanonical = std::all_of(effectiveTypeArgs.begin(),
3973                                           effectiveTypeArgs.end(),
3974                                           [&](QualType type) {
3975                                             return type.isCanonical();
3976                                           });
3977   bool protocolsSorted = areSortedAndUniqued(protocols);
3978   if (!typeArgsAreCanonical || !protocolsSorted || !baseType.isCanonical()) {
3979     // Determine the canonical type arguments.
3980     ArrayRef<QualType> canonTypeArgs;
3981     SmallVector<QualType, 4> canonTypeArgsVec;
3982     if (!typeArgsAreCanonical) {
3983       canonTypeArgsVec.reserve(effectiveTypeArgs.size());
3984       for (auto typeArg : effectiveTypeArgs)
3985         canonTypeArgsVec.push_back(getCanonicalType(typeArg));
3986       canonTypeArgs = canonTypeArgsVec;
3987     } else {
3988       canonTypeArgs = effectiveTypeArgs;
3989     }
3990 
3991     ArrayRef<ObjCProtocolDecl *> canonProtocols;
3992     SmallVector<ObjCProtocolDecl*, 8> canonProtocolsVec;
3993     if (!protocolsSorted) {
3994       canonProtocolsVec.append(protocols.begin(), protocols.end());
3995       SortAndUniqueProtocols(canonProtocolsVec);
3996       canonProtocols = canonProtocolsVec;
3997     } else {
3998       canonProtocols = protocols;
3999     }
4000 
4001     canonical = getObjCObjectType(getCanonicalType(baseType), canonTypeArgs,
4002                                   canonProtocols, isKindOf);
4003 
4004     // Regenerate InsertPos.
4005     ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos);
4006   }
4007 
4008   unsigned size = sizeof(ObjCObjectTypeImpl);
4009   size += typeArgs.size() * sizeof(QualType);
4010   size += protocols.size() * sizeof(ObjCProtocolDecl *);
4011   void *mem = Allocate(size, TypeAlignment);
4012   ObjCObjectTypeImpl *T =
4013     new (mem) ObjCObjectTypeImpl(canonical, baseType, typeArgs, protocols,
4014                                  isKindOf);
4015 
4016   Types.push_back(T);
4017   ObjCObjectTypes.InsertNode(T, InsertPos);
4018   return QualType(T, 0);
4019 }
4020 
4021 /// Apply Objective-C protocol qualifiers to the given type.
4022 /// If this is for the canonical type of a type parameter, we can apply
4023 /// protocol qualifiers on the ObjCObjectPointerType.
4024 QualType
4025 ASTContext::applyObjCProtocolQualifiers(QualType type,
4026                   ArrayRef<ObjCProtocolDecl *> protocols, bool &hasError,
4027                   bool allowOnPointerType) const {
4028   hasError = false;
4029 
4030   if (const ObjCTypeParamType *objT =
4031       dyn_cast<ObjCTypeParamType>(type.getTypePtr())) {
4032     return getObjCTypeParamType(objT->getDecl(), protocols);
4033   }
4034 
4035   // Apply protocol qualifiers to ObjCObjectPointerType.
4036   if (allowOnPointerType) {
4037     if (const ObjCObjectPointerType *objPtr =
4038         dyn_cast<ObjCObjectPointerType>(type.getTypePtr())) {
4039       const ObjCObjectType *objT = objPtr->getObjectType();
4040       // Merge protocol lists and construct ObjCObjectType.
4041       SmallVector<ObjCProtocolDecl*, 8> protocolsVec;
4042       protocolsVec.append(objT->qual_begin(),
4043                           objT->qual_end());
4044       protocolsVec.append(protocols.begin(), protocols.end());
4045       ArrayRef<ObjCProtocolDecl *> protocols = protocolsVec;
4046       type = getObjCObjectType(
4047              objT->getBaseType(),
4048              objT->getTypeArgsAsWritten(),
4049              protocols,
4050              objT->isKindOfTypeAsWritten());
4051       return getObjCObjectPointerType(type);
4052     }
4053   }
4054 
4055   // Apply protocol qualifiers to ObjCObjectType.
4056   if (const ObjCObjectType *objT = dyn_cast<ObjCObjectType>(type.getTypePtr())){
4057     // FIXME: Check for protocols to which the class type is already
4058     // known to conform.
4059 
4060     return getObjCObjectType(objT->getBaseType(),
4061                              objT->getTypeArgsAsWritten(),
4062                              protocols,
4063                              objT->isKindOfTypeAsWritten());
4064   }
4065 
4066   // If the canonical type is ObjCObjectType, ...
4067   if (type->isObjCObjectType()) {
4068     // Silently overwrite any existing protocol qualifiers.
4069     // TODO: determine whether that's the right thing to do.
4070 
4071     // FIXME: Check for protocols to which the class type is already
4072     // known to conform.
4073     return getObjCObjectType(type, { }, protocols, false);
4074   }
4075 
4076   // id<protocol-list>
4077   if (type->isObjCIdType()) {
4078     const ObjCObjectPointerType *objPtr = type->castAs<ObjCObjectPointerType>();
4079     type = getObjCObjectType(ObjCBuiltinIdTy, { }, protocols,
4080                                  objPtr->isKindOfType());
4081     return getObjCObjectPointerType(type);
4082   }
4083 
4084   // Class<protocol-list>
4085   if (type->isObjCClassType()) {
4086     const ObjCObjectPointerType *objPtr = type->castAs<ObjCObjectPointerType>();
4087     type = getObjCObjectType(ObjCBuiltinClassTy, { }, protocols,
4088                                  objPtr->isKindOfType());
4089     return getObjCObjectPointerType(type);
4090   }
4091 
4092   hasError = true;
4093   return type;
4094 }
4095 
4096 QualType
4097 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl,
4098                            ArrayRef<ObjCProtocolDecl *> protocols,
4099                            QualType Canonical) const {
4100   // Look in the folding set for an existing type.
4101   llvm::FoldingSetNodeID ID;
4102   ObjCTypeParamType::Profile(ID, Decl, protocols);
4103   void *InsertPos = nullptr;
4104   if (ObjCTypeParamType *TypeParam =
4105       ObjCTypeParamTypes.FindNodeOrInsertPos(ID, InsertPos))
4106     return QualType(TypeParam, 0);
4107 
4108   if (Canonical.isNull()) {
4109     // We canonicalize to the underlying type.
4110     Canonical = getCanonicalType(Decl->getUnderlyingType());
4111     if (!protocols.empty()) {
4112       // Apply the protocol qualifers.
4113       bool hasError;
4114       Canonical = applyObjCProtocolQualifiers(Canonical, protocols, hasError,
4115           true/*allowOnPointerType*/);
4116       assert(!hasError && "Error when apply protocol qualifier to bound type");
4117     }
4118   }
4119 
4120   unsigned size = sizeof(ObjCTypeParamType);
4121   size += protocols.size() * sizeof(ObjCProtocolDecl *);
4122   void *mem = Allocate(size, TypeAlignment);
4123   ObjCTypeParamType *newType = new (mem)
4124     ObjCTypeParamType(Decl, Canonical, protocols);
4125 
4126   Types.push_back(newType);
4127   ObjCTypeParamTypes.InsertNode(newType, InsertPos);
4128   return QualType(newType, 0);
4129 }
4130 
4131 /// ObjCObjectAdoptsQTypeProtocols - Checks that protocols in IC's
4132 /// protocol list adopt all protocols in QT's qualified-id protocol
4133 /// list.
4134 bool ASTContext::ObjCObjectAdoptsQTypeProtocols(QualType QT,
4135                                                 ObjCInterfaceDecl *IC) {
4136   if (!QT->isObjCQualifiedIdType())
4137     return false;
4138 
4139   if (const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>()) {
4140     // If both the right and left sides have qualifiers.
4141     for (auto *Proto : OPT->quals()) {
4142       if (!IC->ClassImplementsProtocol(Proto, false))
4143         return false;
4144     }
4145     return true;
4146   }
4147   return false;
4148 }
4149 
4150 /// QIdProtocolsAdoptObjCObjectProtocols - Checks that protocols in
4151 /// QT's qualified-id protocol list adopt all protocols in IDecl's list
4152 /// of protocols.
4153 bool ASTContext::QIdProtocolsAdoptObjCObjectProtocols(QualType QT,
4154                                                 ObjCInterfaceDecl *IDecl) {
4155   if (!QT->isObjCQualifiedIdType())
4156     return false;
4157   const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>();
4158   if (!OPT)
4159     return false;
4160   if (!IDecl->hasDefinition())
4161     return false;
4162   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> InheritedProtocols;
4163   CollectInheritedProtocols(IDecl, InheritedProtocols);
4164   if (InheritedProtocols.empty())
4165     return false;
4166   // Check that if every protocol in list of id<plist> conforms to a protcol
4167   // of IDecl's, then bridge casting is ok.
4168   bool Conforms = false;
4169   for (auto *Proto : OPT->quals()) {
4170     Conforms = false;
4171     for (auto *PI : InheritedProtocols) {
4172       if (ProtocolCompatibleWithProtocol(Proto, PI)) {
4173         Conforms = true;
4174         break;
4175       }
4176     }
4177     if (!Conforms)
4178       break;
4179   }
4180   if (Conforms)
4181     return true;
4182 
4183   for (auto *PI : InheritedProtocols) {
4184     // If both the right and left sides have qualifiers.
4185     bool Adopts = false;
4186     for (auto *Proto : OPT->quals()) {
4187       // return 'true' if 'PI' is in the inheritance hierarchy of Proto
4188       if ((Adopts = ProtocolCompatibleWithProtocol(PI, Proto)))
4189         break;
4190     }
4191     if (!Adopts)
4192       return false;
4193   }
4194   return true;
4195 }
4196 
4197 /// getObjCObjectPointerType - Return a ObjCObjectPointerType type for
4198 /// the given object type.
4199 QualType ASTContext::getObjCObjectPointerType(QualType ObjectT) const {
4200   llvm::FoldingSetNodeID ID;
4201   ObjCObjectPointerType::Profile(ID, ObjectT);
4202 
4203   void *InsertPos = nullptr;
4204   if (ObjCObjectPointerType *QT =
4205               ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
4206     return QualType(QT, 0);
4207 
4208   // Find the canonical object type.
4209   QualType Canonical;
4210   if (!ObjectT.isCanonical()) {
4211     Canonical = getObjCObjectPointerType(getCanonicalType(ObjectT));
4212 
4213     // Regenerate InsertPos.
4214     ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
4215   }
4216 
4217   // No match.
4218   void *Mem = Allocate(sizeof(ObjCObjectPointerType), TypeAlignment);
4219   ObjCObjectPointerType *QType =
4220     new (Mem) ObjCObjectPointerType(Canonical, ObjectT);
4221 
4222   Types.push_back(QType);
4223   ObjCObjectPointerTypes.InsertNode(QType, InsertPos);
4224   return QualType(QType, 0);
4225 }
4226 
4227 /// getObjCInterfaceType - Return the unique reference to the type for the
4228 /// specified ObjC interface decl. The list of protocols is optional.
4229 QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl,
4230                                           ObjCInterfaceDecl *PrevDecl) const {
4231   if (Decl->TypeForDecl)
4232     return QualType(Decl->TypeForDecl, 0);
4233 
4234   if (PrevDecl) {
4235     assert(PrevDecl->TypeForDecl && "previous decl has no TypeForDecl");
4236     Decl->TypeForDecl = PrevDecl->TypeForDecl;
4237     return QualType(PrevDecl->TypeForDecl, 0);
4238   }
4239 
4240   // Prefer the definition, if there is one.
4241   if (const ObjCInterfaceDecl *Def = Decl->getDefinition())
4242     Decl = Def;
4243 
4244   void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment);
4245   ObjCInterfaceType *T = new (Mem) ObjCInterfaceType(Decl);
4246   Decl->TypeForDecl = T;
4247   Types.push_back(T);
4248   return QualType(T, 0);
4249 }
4250 
4251 /// getTypeOfExprType - Unlike many "get<Type>" functions, we can't unique
4252 /// TypeOfExprType AST's (since expression's are never shared). For example,
4253 /// multiple declarations that refer to "typeof(x)" all contain different
4254 /// DeclRefExpr's. This doesn't effect the type checker, since it operates
4255 /// on canonical type's (which are always unique).
4256 QualType ASTContext::getTypeOfExprType(Expr *tofExpr) const {
4257   TypeOfExprType *toe;
4258   if (tofExpr->isTypeDependent()) {
4259     llvm::FoldingSetNodeID ID;
4260     DependentTypeOfExprType::Profile(ID, *this, tofExpr);
4261 
4262     void *InsertPos = nullptr;
4263     DependentTypeOfExprType *Canon
4264       = DependentTypeOfExprTypes.FindNodeOrInsertPos(ID, InsertPos);
4265     if (Canon) {
4266       // We already have a "canonical" version of an identical, dependent
4267       // typeof(expr) type. Use that as our canonical type.
4268       toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr,
4269                                           QualType((TypeOfExprType*)Canon, 0));
4270     } else {
4271       // Build a new, canonical typeof(expr) type.
4272       Canon
4273         = new (*this, TypeAlignment) DependentTypeOfExprType(*this, tofExpr);
4274       DependentTypeOfExprTypes.InsertNode(Canon, InsertPos);
4275       toe = Canon;
4276     }
4277   } else {
4278     QualType Canonical = getCanonicalType(tofExpr->getType());
4279     toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical);
4280   }
4281   Types.push_back(toe);
4282   return QualType(toe, 0);
4283 }
4284 
4285 /// getTypeOfType -  Unlike many "get<Type>" functions, we don't unique
4286 /// TypeOfType nodes. The only motivation to unique these nodes would be
4287 /// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
4288 /// an issue. This doesn't affect the type checker, since it operates
4289 /// on canonical types (which are always unique).
4290 QualType ASTContext::getTypeOfType(QualType tofType) const {
4291   QualType Canonical = getCanonicalType(tofType);
4292   TypeOfType *tot = new (*this, TypeAlignment) TypeOfType(tofType, Canonical);
4293   Types.push_back(tot);
4294   return QualType(tot, 0);
4295 }
4296 
4297 /// \brief Unlike many "get<Type>" functions, we don't unique DecltypeType
4298 /// nodes. This would never be helpful, since each such type has its own
4299 /// expression, and would not give a significant memory saving, since there
4300 /// is an Expr tree under each such type.
4301 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const {
4302   DecltypeType *dt;
4303 
4304   // C++11 [temp.type]p2:
4305   //   If an expression e involves a template parameter, decltype(e) denotes a
4306   //   unique dependent type. Two such decltype-specifiers refer to the same
4307   //   type only if their expressions are equivalent (14.5.6.1).
4308   if (e->isInstantiationDependent()) {
4309     llvm::FoldingSetNodeID ID;
4310     DependentDecltypeType::Profile(ID, *this, e);
4311 
4312     void *InsertPos = nullptr;
4313     DependentDecltypeType *Canon
4314       = DependentDecltypeTypes.FindNodeOrInsertPos(ID, InsertPos);
4315     if (!Canon) {
4316       // Build a new, canonical decltype(expr) type.
4317       Canon = new (*this, TypeAlignment) DependentDecltypeType(*this, e);
4318       DependentDecltypeTypes.InsertNode(Canon, InsertPos);
4319     }
4320     dt = new (*this, TypeAlignment)
4321         DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0));
4322   } else {
4323     dt = new (*this, TypeAlignment)
4324         DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType));
4325   }
4326   Types.push_back(dt);
4327   return QualType(dt, 0);
4328 }
4329 
4330 /// getUnaryTransformationType - We don't unique these, since the memory
4331 /// savings are minimal and these are rare.
4332 QualType ASTContext::getUnaryTransformType(QualType BaseType,
4333                                            QualType UnderlyingType,
4334                                            UnaryTransformType::UTTKind Kind)
4335     const {
4336   UnaryTransformType *ut = nullptr;
4337 
4338   if (BaseType->isDependentType()) {
4339     // Look in the folding set for an existing type.
4340     llvm::FoldingSetNodeID ID;
4341     DependentUnaryTransformType::Profile(ID, getCanonicalType(BaseType), Kind);
4342 
4343     void *InsertPos = nullptr;
4344     DependentUnaryTransformType *Canon
4345       = DependentUnaryTransformTypes.FindNodeOrInsertPos(ID, InsertPos);
4346 
4347     if (!Canon) {
4348       // Build a new, canonical __underlying_type(type) type.
4349       Canon = new (*this, TypeAlignment)
4350              DependentUnaryTransformType(*this, getCanonicalType(BaseType),
4351                                          Kind);
4352       DependentUnaryTransformTypes.InsertNode(Canon, InsertPos);
4353     }
4354     ut = new (*this, TypeAlignment) UnaryTransformType (BaseType,
4355                                                         QualType(), Kind,
4356                                                         QualType(Canon, 0));
4357   } else {
4358     QualType CanonType = getCanonicalType(UnderlyingType);
4359     ut = new (*this, TypeAlignment) UnaryTransformType (BaseType,
4360                                                         UnderlyingType, Kind,
4361                                                         CanonType);
4362   }
4363   Types.push_back(ut);
4364   return QualType(ut, 0);
4365 }
4366 
4367 /// getAutoType - Return the uniqued reference to the 'auto' type which has been
4368 /// deduced to the given type, or to the canonical undeduced 'auto' type, or the
4369 /// canonical deduced-but-dependent 'auto' type.
4370 QualType ASTContext::getAutoType(QualType DeducedType, AutoTypeKeyword Keyword,
4371                                  bool IsDependent) const {
4372   if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto && !IsDependent)
4373     return getAutoDeductType();
4374 
4375   // Look in the folding set for an existing type.
4376   void *InsertPos = nullptr;
4377   llvm::FoldingSetNodeID ID;
4378   AutoType::Profile(ID, DeducedType, Keyword, IsDependent);
4379   if (AutoType *AT = AutoTypes.FindNodeOrInsertPos(ID, InsertPos))
4380     return QualType(AT, 0);
4381 
4382   AutoType *AT = new (*this, TypeAlignment) AutoType(DeducedType,
4383                                                      Keyword,
4384                                                      IsDependent);
4385   Types.push_back(AT);
4386   if (InsertPos)
4387     AutoTypes.InsertNode(AT, InsertPos);
4388   return QualType(AT, 0);
4389 }
4390 
4391 /// getAtomicType - Return the uniqued reference to the atomic type for
4392 /// the given value type.
4393 QualType ASTContext::getAtomicType(QualType T) const {
4394   // Unique pointers, to guarantee there is only one pointer of a particular
4395   // structure.
4396   llvm::FoldingSetNodeID ID;
4397   AtomicType::Profile(ID, T);
4398 
4399   void *InsertPos = nullptr;
4400   if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos))
4401     return QualType(AT, 0);
4402 
4403   // If the atomic value type isn't canonical, this won't be a canonical type
4404   // either, so fill in the canonical type field.
4405   QualType Canonical;
4406   if (!T.isCanonical()) {
4407     Canonical = getAtomicType(getCanonicalType(T));
4408 
4409     // Get the new insert position for the node we care about.
4410     AtomicType *NewIP = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos);
4411     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
4412   }
4413   AtomicType *New = new (*this, TypeAlignment) AtomicType(T, Canonical);
4414   Types.push_back(New);
4415   AtomicTypes.InsertNode(New, InsertPos);
4416   return QualType(New, 0);
4417 }
4418 
4419 /// getAutoDeductType - Get type pattern for deducing against 'auto'.
4420 QualType ASTContext::getAutoDeductType() const {
4421   if (AutoDeductTy.isNull())
4422     AutoDeductTy = QualType(
4423       new (*this, TypeAlignment) AutoType(QualType(), AutoTypeKeyword::Auto,
4424                                           /*dependent*/false),
4425       0);
4426   return AutoDeductTy;
4427 }
4428 
4429 /// getAutoRRefDeductType - Get type pattern for deducing against 'auto &&'.
4430 QualType ASTContext::getAutoRRefDeductType() const {
4431   if (AutoRRefDeductTy.isNull())
4432     AutoRRefDeductTy = getRValueReferenceType(getAutoDeductType());
4433   assert(!AutoRRefDeductTy.isNull() && "can't build 'auto &&' pattern");
4434   return AutoRRefDeductTy;
4435 }
4436 
4437 /// getTagDeclType - Return the unique reference to the type for the
4438 /// specified TagDecl (struct/union/class/enum) decl.
4439 QualType ASTContext::getTagDeclType(const TagDecl *Decl) const {
4440   assert (Decl);
4441   // FIXME: What is the design on getTagDeclType when it requires casting
4442   // away const?  mutable?
4443   return getTypeDeclType(const_cast<TagDecl*>(Decl));
4444 }
4445 
4446 /// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
4447 /// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
4448 /// needs to agree with the definition in <stddef.h>.
4449 CanQualType ASTContext::getSizeType() const {
4450   return getFromTargetType(Target->getSizeType());
4451 }
4452 
4453 /// getIntMaxType - Return the unique type for "intmax_t" (C99 7.18.1.5).
4454 CanQualType ASTContext::getIntMaxType() const {
4455   return getFromTargetType(Target->getIntMaxType());
4456 }
4457 
4458 /// getUIntMaxType - Return the unique type for "uintmax_t" (C99 7.18.1.5).
4459 CanQualType ASTContext::getUIntMaxType() const {
4460   return getFromTargetType(Target->getUIntMaxType());
4461 }
4462 
4463 /// getSignedWCharType - Return the type of "signed wchar_t".
4464 /// Used when in C++, as a GCC extension.
4465 QualType ASTContext::getSignedWCharType() const {
4466   // FIXME: derive from "Target" ?
4467   return WCharTy;
4468 }
4469 
4470 /// getUnsignedWCharType - Return the type of "unsigned wchar_t".
4471 /// Used when in C++, as a GCC extension.
4472 QualType ASTContext::getUnsignedWCharType() const {
4473   // FIXME: derive from "Target" ?
4474   return UnsignedIntTy;
4475 }
4476 
4477 QualType ASTContext::getIntPtrType() const {
4478   return getFromTargetType(Target->getIntPtrType());
4479 }
4480 
4481 QualType ASTContext::getUIntPtrType() const {
4482   return getCorrespondingUnsignedType(getIntPtrType());
4483 }
4484 
4485 /// getPointerDiffType - Return the unique type for "ptrdiff_t" (C99 7.17)
4486 /// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
4487 QualType ASTContext::getPointerDiffType() const {
4488   return getFromTargetType(Target->getPtrDiffType(0));
4489 }
4490 
4491 /// \brief Return the unique type for "pid_t" defined in
4492 /// <sys/types.h>. We need this to compute the correct type for vfork().
4493 QualType ASTContext::getProcessIDType() const {
4494   return getFromTargetType(Target->getProcessIDType());
4495 }
4496 
4497 //===----------------------------------------------------------------------===//
4498 //                              Type Operators
4499 //===----------------------------------------------------------------------===//
4500 
4501 CanQualType ASTContext::getCanonicalParamType(QualType T) const {
4502   // Push qualifiers into arrays, and then discard any remaining
4503   // qualifiers.
4504   T = getCanonicalType(T);
4505   T = getVariableArrayDecayedType(T);
4506   const Type *Ty = T.getTypePtr();
4507   QualType Result;
4508   if (isa<ArrayType>(Ty)) {
4509     Result = getArrayDecayedType(QualType(Ty,0));
4510   } else if (isa<FunctionType>(Ty)) {
4511     Result = getPointerType(QualType(Ty, 0));
4512   } else {
4513     Result = QualType(Ty, 0);
4514   }
4515 
4516   return CanQualType::CreateUnsafe(Result);
4517 }
4518 
4519 QualType ASTContext::getUnqualifiedArrayType(QualType type,
4520                                              Qualifiers &quals) {
4521   SplitQualType splitType = type.getSplitUnqualifiedType();
4522 
4523   // FIXME: getSplitUnqualifiedType() actually walks all the way to
4524   // the unqualified desugared type and then drops it on the floor.
4525   // We then have to strip that sugar back off with
4526   // getUnqualifiedDesugaredType(), which is silly.
4527   const ArrayType *AT =
4528     dyn_cast<ArrayType>(splitType.Ty->getUnqualifiedDesugaredType());
4529 
4530   // If we don't have an array, just use the results in splitType.
4531   if (!AT) {
4532     quals = splitType.Quals;
4533     return QualType(splitType.Ty, 0);
4534   }
4535 
4536   // Otherwise, recurse on the array's element type.
4537   QualType elementType = AT->getElementType();
4538   QualType unqualElementType = getUnqualifiedArrayType(elementType, quals);
4539 
4540   // If that didn't change the element type, AT has no qualifiers, so we
4541   // can just use the results in splitType.
4542   if (elementType == unqualElementType) {
4543     assert(quals.empty()); // from the recursive call
4544     quals = splitType.Quals;
4545     return QualType(splitType.Ty, 0);
4546   }
4547 
4548   // Otherwise, add in the qualifiers from the outermost type, then
4549   // build the type back up.
4550   quals.addConsistentQualifiers(splitType.Quals);
4551 
4552   if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
4553     return getConstantArrayType(unqualElementType, CAT->getSize(),
4554                                 CAT->getSizeModifier(), 0);
4555   }
4556 
4557   if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
4558     return getIncompleteArrayType(unqualElementType, IAT->getSizeModifier(), 0);
4559   }
4560 
4561   if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(AT)) {
4562     return getVariableArrayType(unqualElementType,
4563                                 VAT->getSizeExpr(),
4564                                 VAT->getSizeModifier(),
4565                                 VAT->getIndexTypeCVRQualifiers(),
4566                                 VAT->getBracketsRange());
4567   }
4568 
4569   const DependentSizedArrayType *DSAT = cast<DependentSizedArrayType>(AT);
4570   return getDependentSizedArrayType(unqualElementType, DSAT->getSizeExpr(),
4571                                     DSAT->getSizeModifier(), 0,
4572                                     SourceRange());
4573 }
4574 
4575 /// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types  that
4576 /// may be similar (C++ 4.4), replaces T1 and T2 with the type that
4577 /// they point to and return true. If T1 and T2 aren't pointer types
4578 /// or pointer-to-member types, or if they are not similar at this
4579 /// level, returns false and leaves T1 and T2 unchanged. Top-level
4580 /// qualifiers on T1 and T2 are ignored. This function will typically
4581 /// be called in a loop that successively "unwraps" pointer and
4582 /// pointer-to-member types to compare them at each level.
4583 bool ASTContext::UnwrapSimilarPointerTypes(QualType &T1, QualType &T2) {
4584   const PointerType *T1PtrType = T1->getAs<PointerType>(),
4585                     *T2PtrType = T2->getAs<PointerType>();
4586   if (T1PtrType && T2PtrType) {
4587     T1 = T1PtrType->getPointeeType();
4588     T2 = T2PtrType->getPointeeType();
4589     return true;
4590   }
4591 
4592   const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
4593                           *T2MPType = T2->getAs<MemberPointerType>();
4594   if (T1MPType && T2MPType &&
4595       hasSameUnqualifiedType(QualType(T1MPType->getClass(), 0),
4596                              QualType(T2MPType->getClass(), 0))) {
4597     T1 = T1MPType->getPointeeType();
4598     T2 = T2MPType->getPointeeType();
4599     return true;
4600   }
4601 
4602   if (getLangOpts().ObjC1) {
4603     const ObjCObjectPointerType *T1OPType = T1->getAs<ObjCObjectPointerType>(),
4604                                 *T2OPType = T2->getAs<ObjCObjectPointerType>();
4605     if (T1OPType && T2OPType) {
4606       T1 = T1OPType->getPointeeType();
4607       T2 = T2OPType->getPointeeType();
4608       return true;
4609     }
4610   }
4611 
4612   // FIXME: Block pointers, too?
4613 
4614   return false;
4615 }
4616 
4617 DeclarationNameInfo
4618 ASTContext::getNameForTemplate(TemplateName Name,
4619                                SourceLocation NameLoc) const {
4620   switch (Name.getKind()) {
4621   case TemplateName::QualifiedTemplate:
4622   case TemplateName::Template:
4623     // DNInfo work in progress: CHECKME: what about DNLoc?
4624     return DeclarationNameInfo(Name.getAsTemplateDecl()->getDeclName(),
4625                                NameLoc);
4626 
4627   case TemplateName::OverloadedTemplate: {
4628     OverloadedTemplateStorage *Storage = Name.getAsOverloadedTemplate();
4629     // DNInfo work in progress: CHECKME: what about DNLoc?
4630     return DeclarationNameInfo((*Storage->begin())->getDeclName(), NameLoc);
4631   }
4632 
4633   case TemplateName::DependentTemplate: {
4634     DependentTemplateName *DTN = Name.getAsDependentTemplateName();
4635     DeclarationName DName;
4636     if (DTN->isIdentifier()) {
4637       DName = DeclarationNames.getIdentifier(DTN->getIdentifier());
4638       return DeclarationNameInfo(DName, NameLoc);
4639     } else {
4640       DName = DeclarationNames.getCXXOperatorName(DTN->getOperator());
4641       // DNInfo work in progress: FIXME: source locations?
4642       DeclarationNameLoc DNLoc;
4643       DNLoc.CXXOperatorName.BeginOpNameLoc = SourceLocation().getRawEncoding();
4644       DNLoc.CXXOperatorName.EndOpNameLoc = SourceLocation().getRawEncoding();
4645       return DeclarationNameInfo(DName, NameLoc, DNLoc);
4646     }
4647   }
4648 
4649   case TemplateName::SubstTemplateTemplateParm: {
4650     SubstTemplateTemplateParmStorage *subst
4651       = Name.getAsSubstTemplateTemplateParm();
4652     return DeclarationNameInfo(subst->getParameter()->getDeclName(),
4653                                NameLoc);
4654   }
4655 
4656   case TemplateName::SubstTemplateTemplateParmPack: {
4657     SubstTemplateTemplateParmPackStorage *subst
4658       = Name.getAsSubstTemplateTemplateParmPack();
4659     return DeclarationNameInfo(subst->getParameterPack()->getDeclName(),
4660                                NameLoc);
4661   }
4662   }
4663 
4664   llvm_unreachable("bad template name kind!");
4665 }
4666 
4667 TemplateName ASTContext::getCanonicalTemplateName(TemplateName Name) const {
4668   switch (Name.getKind()) {
4669   case TemplateName::QualifiedTemplate:
4670   case TemplateName::Template: {
4671     TemplateDecl *Template = Name.getAsTemplateDecl();
4672     if (TemplateTemplateParmDecl *TTP
4673           = dyn_cast<TemplateTemplateParmDecl>(Template))
4674       Template = getCanonicalTemplateTemplateParmDecl(TTP);
4675 
4676     // The canonical template name is the canonical template declaration.
4677     return TemplateName(cast<TemplateDecl>(Template->getCanonicalDecl()));
4678   }
4679 
4680   case TemplateName::OverloadedTemplate:
4681     llvm_unreachable("cannot canonicalize overloaded template");
4682 
4683   case TemplateName::DependentTemplate: {
4684     DependentTemplateName *DTN = Name.getAsDependentTemplateName();
4685     assert(DTN && "Non-dependent template names must refer to template decls.");
4686     return DTN->CanonicalTemplateName;
4687   }
4688 
4689   case TemplateName::SubstTemplateTemplateParm: {
4690     SubstTemplateTemplateParmStorage *subst
4691       = Name.getAsSubstTemplateTemplateParm();
4692     return getCanonicalTemplateName(subst->getReplacement());
4693   }
4694 
4695   case TemplateName::SubstTemplateTemplateParmPack: {
4696     SubstTemplateTemplateParmPackStorage *subst
4697                                   = Name.getAsSubstTemplateTemplateParmPack();
4698     TemplateTemplateParmDecl *canonParameter
4699       = getCanonicalTemplateTemplateParmDecl(subst->getParameterPack());
4700     TemplateArgument canonArgPack
4701       = getCanonicalTemplateArgument(subst->getArgumentPack());
4702     return getSubstTemplateTemplateParmPack(canonParameter, canonArgPack);
4703   }
4704   }
4705 
4706   llvm_unreachable("bad template name!");
4707 }
4708 
4709 bool ASTContext::hasSameTemplateName(TemplateName X, TemplateName Y) {
4710   X = getCanonicalTemplateName(X);
4711   Y = getCanonicalTemplateName(Y);
4712   return X.getAsVoidPointer() == Y.getAsVoidPointer();
4713 }
4714 
4715 TemplateArgument
4716 ASTContext::getCanonicalTemplateArgument(const TemplateArgument &Arg) const {
4717   switch (Arg.getKind()) {
4718     case TemplateArgument::Null:
4719       return Arg;
4720 
4721     case TemplateArgument::Expression:
4722       return Arg;
4723 
4724     case TemplateArgument::Declaration: {
4725       ValueDecl *D = cast<ValueDecl>(Arg.getAsDecl()->getCanonicalDecl());
4726       return TemplateArgument(D, Arg.getParamTypeForDecl());
4727     }
4728 
4729     case TemplateArgument::NullPtr:
4730       return TemplateArgument(getCanonicalType(Arg.getNullPtrType()),
4731                               /*isNullPtr*/true);
4732 
4733     case TemplateArgument::Template:
4734       return TemplateArgument(getCanonicalTemplateName(Arg.getAsTemplate()));
4735 
4736     case TemplateArgument::TemplateExpansion:
4737       return TemplateArgument(getCanonicalTemplateName(
4738                                          Arg.getAsTemplateOrTemplatePattern()),
4739                               Arg.getNumTemplateExpansions());
4740 
4741     case TemplateArgument::Integral:
4742       return TemplateArgument(Arg, getCanonicalType(Arg.getIntegralType()));
4743 
4744     case TemplateArgument::Type:
4745       return TemplateArgument(getCanonicalType(Arg.getAsType()));
4746 
4747     case TemplateArgument::Pack: {
4748       if (Arg.pack_size() == 0)
4749         return Arg;
4750 
4751       TemplateArgument *CanonArgs
4752         = new (*this) TemplateArgument[Arg.pack_size()];
4753       unsigned Idx = 0;
4754       for (TemplateArgument::pack_iterator A = Arg.pack_begin(),
4755                                         AEnd = Arg.pack_end();
4756            A != AEnd; (void)++A, ++Idx)
4757         CanonArgs[Idx] = getCanonicalTemplateArgument(*A);
4758 
4759       return TemplateArgument(llvm::makeArrayRef(CanonArgs, Arg.pack_size()));
4760     }
4761   }
4762 
4763   // Silence GCC warning
4764   llvm_unreachable("Unhandled template argument kind");
4765 }
4766 
4767 NestedNameSpecifier *
4768 ASTContext::getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) const {
4769   if (!NNS)
4770     return nullptr;
4771 
4772   switch (NNS->getKind()) {
4773   case NestedNameSpecifier::Identifier:
4774     // Canonicalize the prefix but keep the identifier the same.
4775     return NestedNameSpecifier::Create(*this,
4776                          getCanonicalNestedNameSpecifier(NNS->getPrefix()),
4777                                        NNS->getAsIdentifier());
4778 
4779   case NestedNameSpecifier::Namespace:
4780     // A namespace is canonical; build a nested-name-specifier with
4781     // this namespace and no prefix.
4782     return NestedNameSpecifier::Create(*this, nullptr,
4783                                  NNS->getAsNamespace()->getOriginalNamespace());
4784 
4785   case NestedNameSpecifier::NamespaceAlias:
4786     // A namespace is canonical; build a nested-name-specifier with
4787     // this namespace and no prefix.
4788     return NestedNameSpecifier::Create(*this, nullptr,
4789                                     NNS->getAsNamespaceAlias()->getNamespace()
4790                                                       ->getOriginalNamespace());
4791 
4792   case NestedNameSpecifier::TypeSpec:
4793   case NestedNameSpecifier::TypeSpecWithTemplate: {
4794     QualType T = getCanonicalType(QualType(NNS->getAsType(), 0));
4795 
4796     // If we have some kind of dependent-named type (e.g., "typename T::type"),
4797     // break it apart into its prefix and identifier, then reconsititute those
4798     // as the canonical nested-name-specifier. This is required to canonicalize
4799     // a dependent nested-name-specifier involving typedefs of dependent-name
4800     // types, e.g.,
4801     //   typedef typename T::type T1;
4802     //   typedef typename T1::type T2;
4803     if (const DependentNameType *DNT = T->getAs<DependentNameType>())
4804       return NestedNameSpecifier::Create(*this, DNT->getQualifier(),
4805                            const_cast<IdentifierInfo *>(DNT->getIdentifier()));
4806 
4807     // Otherwise, just canonicalize the type, and force it to be a TypeSpec.
4808     // FIXME: Why are TypeSpec and TypeSpecWithTemplate distinct in the
4809     // first place?
4810     return NestedNameSpecifier::Create(*this, nullptr, false,
4811                                        const_cast<Type *>(T.getTypePtr()));
4812   }
4813 
4814   case NestedNameSpecifier::Global:
4815   case NestedNameSpecifier::Super:
4816     // The global specifier and __super specifer are canonical and unique.
4817     return NNS;
4818   }
4819 
4820   llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
4821 }
4822 
4823 const ArrayType *ASTContext::getAsArrayType(QualType T) const {
4824   // Handle the non-qualified case efficiently.
4825   if (!T.hasLocalQualifiers()) {
4826     // Handle the common positive case fast.
4827     if (const ArrayType *AT = dyn_cast<ArrayType>(T))
4828       return AT;
4829   }
4830 
4831   // Handle the common negative case fast.
4832   if (!isa<ArrayType>(T.getCanonicalType()))
4833     return nullptr;
4834 
4835   // Apply any qualifiers from the array type to the element type.  This
4836   // implements C99 6.7.3p8: "If the specification of an array type includes
4837   // any type qualifiers, the element type is so qualified, not the array type."
4838 
4839   // If we get here, we either have type qualifiers on the type, or we have
4840   // sugar such as a typedef in the way.  If we have type qualifiers on the type
4841   // we must propagate them down into the element type.
4842 
4843   SplitQualType split = T.getSplitDesugaredType();
4844   Qualifiers qs = split.Quals;
4845 
4846   // If we have a simple case, just return now.
4847   const ArrayType *ATy = dyn_cast<ArrayType>(split.Ty);
4848   if (!ATy || qs.empty())
4849     return ATy;
4850 
4851   // Otherwise, we have an array and we have qualifiers on it.  Push the
4852   // qualifiers into the array element type and return a new array type.
4853   QualType NewEltTy = getQualifiedType(ATy->getElementType(), qs);
4854 
4855   if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
4856     return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
4857                                                 CAT->getSizeModifier(),
4858                                            CAT->getIndexTypeCVRQualifiers()));
4859   if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
4860     return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
4861                                                   IAT->getSizeModifier(),
4862                                            IAT->getIndexTypeCVRQualifiers()));
4863 
4864   if (const DependentSizedArrayType *DSAT
4865         = dyn_cast<DependentSizedArrayType>(ATy))
4866     return cast<ArrayType>(
4867                      getDependentSizedArrayType(NewEltTy,
4868                                                 DSAT->getSizeExpr(),
4869                                                 DSAT->getSizeModifier(),
4870                                               DSAT->getIndexTypeCVRQualifiers(),
4871                                                 DSAT->getBracketsRange()));
4872 
4873   const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
4874   return cast<ArrayType>(getVariableArrayType(NewEltTy,
4875                                               VAT->getSizeExpr(),
4876                                               VAT->getSizeModifier(),
4877                                               VAT->getIndexTypeCVRQualifiers(),
4878                                               VAT->getBracketsRange()));
4879 }
4880 
4881 QualType ASTContext::getAdjustedParameterType(QualType T) const {
4882   if (T->isArrayType() || T->isFunctionType())
4883     return getDecayedType(T);
4884   return T;
4885 }
4886 
4887 QualType ASTContext::getSignatureParameterType(QualType T) const {
4888   T = getVariableArrayDecayedType(T);
4889   T = getAdjustedParameterType(T);
4890   return T.getUnqualifiedType();
4891 }
4892 
4893 QualType ASTContext::getExceptionObjectType(QualType T) const {
4894   // C++ [except.throw]p3:
4895   //   A throw-expression initializes a temporary object, called the exception
4896   //   object, the type of which is determined by removing any top-level
4897   //   cv-qualifiers from the static type of the operand of throw and adjusting
4898   //   the type from "array of T" or "function returning T" to "pointer to T"
4899   //   or "pointer to function returning T", [...]
4900   T = getVariableArrayDecayedType(T);
4901   if (T->isArrayType() || T->isFunctionType())
4902     T = getDecayedType(T);
4903   return T.getUnqualifiedType();
4904 }
4905 
4906 /// getArrayDecayedType - Return the properly qualified result of decaying the
4907 /// specified array type to a pointer.  This operation is non-trivial when
4908 /// handling typedefs etc.  The canonical type of "T" must be an array type,
4909 /// this returns a pointer to a properly qualified element of the array.
4910 ///
4911 /// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
4912 QualType ASTContext::getArrayDecayedType(QualType Ty) const {
4913   // Get the element type with 'getAsArrayType' so that we don't lose any
4914   // typedefs in the element type of the array.  This also handles propagation
4915   // of type qualifiers from the array type into the element type if present
4916   // (C99 6.7.3p8).
4917   const ArrayType *PrettyArrayType = getAsArrayType(Ty);
4918   assert(PrettyArrayType && "Not an array type!");
4919 
4920   QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
4921 
4922   // int x[restrict 4] ->  int *restrict
4923   QualType Result = getQualifiedType(PtrTy,
4924                                      PrettyArrayType->getIndexTypeQualifiers());
4925 
4926   // int x[_Nullable] -> int * _Nullable
4927   if (auto Nullability = Ty->getNullability(*this)) {
4928     Result = const_cast<ASTContext *>(this)->getAttributedType(
4929         AttributedType::getNullabilityAttrKind(*Nullability), Result, Result);
4930   }
4931   return Result;
4932 }
4933 
4934 QualType ASTContext::getBaseElementType(const ArrayType *array) const {
4935   return getBaseElementType(array->getElementType());
4936 }
4937 
4938 QualType ASTContext::getBaseElementType(QualType type) const {
4939   Qualifiers qs;
4940   while (true) {
4941     SplitQualType split = type.getSplitDesugaredType();
4942     const ArrayType *array = split.Ty->getAsArrayTypeUnsafe();
4943     if (!array) break;
4944 
4945     type = array->getElementType();
4946     qs.addConsistentQualifiers(split.Quals);
4947   }
4948 
4949   return getQualifiedType(type, qs);
4950 }
4951 
4952 /// getConstantArrayElementCount - Returns number of constant array elements.
4953 uint64_t
4954 ASTContext::getConstantArrayElementCount(const ConstantArrayType *CA)  const {
4955   uint64_t ElementCount = 1;
4956   do {
4957     ElementCount *= CA->getSize().getZExtValue();
4958     CA = dyn_cast_or_null<ConstantArrayType>(
4959       CA->getElementType()->getAsArrayTypeUnsafe());
4960   } while (CA);
4961   return ElementCount;
4962 }
4963 
4964 /// getFloatingRank - Return a relative rank for floating point types.
4965 /// This routine will assert if passed a built-in type that isn't a float.
4966 static FloatingRank getFloatingRank(QualType T) {
4967   if (const ComplexType *CT = T->getAs<ComplexType>())
4968     return getFloatingRank(CT->getElementType());
4969 
4970   assert(T->getAs<BuiltinType>() && "getFloatingRank(): not a floating type");
4971   switch (T->getAs<BuiltinType>()->getKind()) {
4972   default: llvm_unreachable("getFloatingRank(): not a floating type");
4973   case BuiltinType::Half:       return HalfRank;
4974   case BuiltinType::Float:      return FloatRank;
4975   case BuiltinType::Double:     return DoubleRank;
4976   case BuiltinType::LongDouble: return LongDoubleRank;
4977   case BuiltinType::Float128:   return Float128Rank;
4978   }
4979 }
4980 
4981 /// getFloatingTypeOfSizeWithinDomain - Returns a real floating
4982 /// point or a complex type (based on typeDomain/typeSize).
4983 /// 'typeDomain' is a real floating point or complex type.
4984 /// 'typeSize' is a real floating point or complex type.
4985 QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
4986                                                        QualType Domain) const {
4987   FloatingRank EltRank = getFloatingRank(Size);
4988   if (Domain->isComplexType()) {
4989     switch (EltRank) {
4990     case HalfRank: llvm_unreachable("Complex half is not supported");
4991     case FloatRank:      return FloatComplexTy;
4992     case DoubleRank:     return DoubleComplexTy;
4993     case LongDoubleRank: return LongDoubleComplexTy;
4994     case Float128Rank:   return Float128ComplexTy;
4995     }
4996   }
4997 
4998   assert(Domain->isRealFloatingType() && "Unknown domain!");
4999   switch (EltRank) {
5000   case HalfRank:       return HalfTy;
5001   case FloatRank:      return FloatTy;
5002   case DoubleRank:     return DoubleTy;
5003   case LongDoubleRank: return LongDoubleTy;
5004   case Float128Rank:   return Float128Ty;
5005   }
5006   llvm_unreachable("getFloatingRank(): illegal value for rank");
5007 }
5008 
5009 /// getFloatingTypeOrder - Compare the rank of the two specified floating
5010 /// point types, ignoring the domain of the type (i.e. 'double' ==
5011 /// '_Complex double').  If LHS > RHS, return 1.  If LHS == RHS, return 0. If
5012 /// LHS < RHS, return -1.
5013 int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) const {
5014   FloatingRank LHSR = getFloatingRank(LHS);
5015   FloatingRank RHSR = getFloatingRank(RHS);
5016 
5017   if (LHSR == RHSR)
5018     return 0;
5019   if (LHSR > RHSR)
5020     return 1;
5021   return -1;
5022 }
5023 
5024 /// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
5025 /// routine will assert if passed a built-in type that isn't an integer or enum,
5026 /// or if it is not canonicalized.
5027 unsigned ASTContext::getIntegerRank(const Type *T) const {
5028   assert(T->isCanonicalUnqualified() && "T should be canonicalized");
5029 
5030   switch (cast<BuiltinType>(T)->getKind()) {
5031   default: llvm_unreachable("getIntegerRank(): not a built-in integer");
5032   case BuiltinType::Bool:
5033     return 1 + (getIntWidth(BoolTy) << 3);
5034   case BuiltinType::Char_S:
5035   case BuiltinType::Char_U:
5036   case BuiltinType::SChar:
5037   case BuiltinType::UChar:
5038     return 2 + (getIntWidth(CharTy) << 3);
5039   case BuiltinType::Short:
5040   case BuiltinType::UShort:
5041     return 3 + (getIntWidth(ShortTy) << 3);
5042   case BuiltinType::Int:
5043   case BuiltinType::UInt:
5044     return 4 + (getIntWidth(IntTy) << 3);
5045   case BuiltinType::Long:
5046   case BuiltinType::ULong:
5047     return 5 + (getIntWidth(LongTy) << 3);
5048   case BuiltinType::LongLong:
5049   case BuiltinType::ULongLong:
5050     return 6 + (getIntWidth(LongLongTy) << 3);
5051   case BuiltinType::Int128:
5052   case BuiltinType::UInt128:
5053     return 7 + (getIntWidth(Int128Ty) << 3);
5054   }
5055 }
5056 
5057 /// \brief Whether this is a promotable bitfield reference according
5058 /// to C99 6.3.1.1p2, bullet 2 (and GCC extensions).
5059 ///
5060 /// \returns the type this bit-field will promote to, or NULL if no
5061 /// promotion occurs.
5062 QualType ASTContext::isPromotableBitField(Expr *E) const {
5063   if (E->isTypeDependent() || E->isValueDependent())
5064     return QualType();
5065 
5066   // FIXME: We should not do this unless E->refersToBitField() is true. This
5067   // matters in C where getSourceBitField() will find bit-fields for various
5068   // cases where the source expression is not a bit-field designator.
5069 
5070   FieldDecl *Field = E->getSourceBitField(); // FIXME: conditional bit-fields?
5071   if (!Field)
5072     return QualType();
5073 
5074   QualType FT = Field->getType();
5075 
5076   uint64_t BitWidth = Field->getBitWidthValue(*this);
5077   uint64_t IntSize = getTypeSize(IntTy);
5078   // C++ [conv.prom]p5:
5079   //   A prvalue for an integral bit-field can be converted to a prvalue of type
5080   //   int if int can represent all the values of the bit-field; otherwise, it
5081   //   can be converted to unsigned int if unsigned int can represent all the
5082   //   values of the bit-field. If the bit-field is larger yet, no integral
5083   //   promotion applies to it.
5084   // C11 6.3.1.1/2:
5085   //   [For a bit-field of type _Bool, int, signed int, or unsigned int:]
5086   //   If an int can represent all values of the original type (as restricted by
5087   //   the width, for a bit-field), the value is converted to an int; otherwise,
5088   //   it is converted to an unsigned int.
5089   //
5090   // FIXME: C does not permit promotion of a 'long : 3' bitfield to int.
5091   //        We perform that promotion here to match GCC and C++.
5092   if (BitWidth < IntSize)
5093     return IntTy;
5094 
5095   if (BitWidth == IntSize)
5096     return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
5097 
5098   // Types bigger than int are not subject to promotions, and therefore act
5099   // like the base type. GCC has some weird bugs in this area that we
5100   // deliberately do not follow (GCC follows a pre-standard resolution to
5101   // C's DR315 which treats bit-width as being part of the type, and this leaks
5102   // into their semantics in some cases).
5103   return QualType();
5104 }
5105 
5106 /// getPromotedIntegerType - Returns the type that Promotable will
5107 /// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable
5108 /// integer type.
5109 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const {
5110   assert(!Promotable.isNull());
5111   assert(Promotable->isPromotableIntegerType());
5112   if (const EnumType *ET = Promotable->getAs<EnumType>())
5113     return ET->getDecl()->getPromotionType();
5114 
5115   if (const BuiltinType *BT = Promotable->getAs<BuiltinType>()) {
5116     // C++ [conv.prom]: A prvalue of type char16_t, char32_t, or wchar_t
5117     // (3.9.1) can be converted to a prvalue of the first of the following
5118     // types that can represent all the values of its underlying type:
5119     // int, unsigned int, long int, unsigned long int, long long int, or
5120     // unsigned long long int [...]
5121     // FIXME: Is there some better way to compute this?
5122     if (BT->getKind() == BuiltinType::WChar_S ||
5123         BT->getKind() == BuiltinType::WChar_U ||
5124         BT->getKind() == BuiltinType::Char16 ||
5125         BT->getKind() == BuiltinType::Char32) {
5126       bool FromIsSigned = BT->getKind() == BuiltinType::WChar_S;
5127       uint64_t FromSize = getTypeSize(BT);
5128       QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy,
5129                                   LongLongTy, UnsignedLongLongTy };
5130       for (size_t Idx = 0; Idx < llvm::array_lengthof(PromoteTypes); ++Idx) {
5131         uint64_t ToSize = getTypeSize(PromoteTypes[Idx]);
5132         if (FromSize < ToSize ||
5133             (FromSize == ToSize &&
5134              FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType()))
5135           return PromoteTypes[Idx];
5136       }
5137       llvm_unreachable("char type should fit into long long");
5138     }
5139   }
5140 
5141   // At this point, we should have a signed or unsigned integer type.
5142   if (Promotable->isSignedIntegerType())
5143     return IntTy;
5144   uint64_t PromotableSize = getIntWidth(Promotable);
5145   uint64_t IntSize = getIntWidth(IntTy);
5146   assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize);
5147   return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy;
5148 }
5149 
5150 /// \brief Recurses in pointer/array types until it finds an objc retainable
5151 /// type and returns its ownership.
5152 Qualifiers::ObjCLifetime ASTContext::getInnerObjCOwnership(QualType T) const {
5153   while (!T.isNull()) {
5154     if (T.getObjCLifetime() != Qualifiers::OCL_None)
5155       return T.getObjCLifetime();
5156     if (T->isArrayType())
5157       T = getBaseElementType(T);
5158     else if (const PointerType *PT = T->getAs<PointerType>())
5159       T = PT->getPointeeType();
5160     else if (const ReferenceType *RT = T->getAs<ReferenceType>())
5161       T = RT->getPointeeType();
5162     else
5163       break;
5164   }
5165 
5166   return Qualifiers::OCL_None;
5167 }
5168 
5169 static const Type *getIntegerTypeForEnum(const EnumType *ET) {
5170   // Incomplete enum types are not treated as integer types.
5171   // FIXME: In C++, enum types are never integer types.
5172   if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped())
5173     return ET->getDecl()->getIntegerType().getTypePtr();
5174   return nullptr;
5175 }
5176 
5177 /// getIntegerTypeOrder - Returns the highest ranked integer type:
5178 /// C99 6.3.1.8p1.  If LHS > RHS, return 1.  If LHS == RHS, return 0. If
5179 /// LHS < RHS, return -1.
5180 int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) const {
5181   const Type *LHSC = getCanonicalType(LHS).getTypePtr();
5182   const Type *RHSC = getCanonicalType(RHS).getTypePtr();
5183 
5184   // Unwrap enums to their underlying type.
5185   if (const EnumType *ET = dyn_cast<EnumType>(LHSC))
5186     LHSC = getIntegerTypeForEnum(ET);
5187   if (const EnumType *ET = dyn_cast<EnumType>(RHSC))
5188     RHSC = getIntegerTypeForEnum(ET);
5189 
5190   if (LHSC == RHSC) return 0;
5191 
5192   bool LHSUnsigned = LHSC->isUnsignedIntegerType();
5193   bool RHSUnsigned = RHSC->isUnsignedIntegerType();
5194 
5195   unsigned LHSRank = getIntegerRank(LHSC);
5196   unsigned RHSRank = getIntegerRank(RHSC);
5197 
5198   if (LHSUnsigned == RHSUnsigned) {  // Both signed or both unsigned.
5199     if (LHSRank == RHSRank) return 0;
5200     return LHSRank > RHSRank ? 1 : -1;
5201   }
5202 
5203   // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
5204   if (LHSUnsigned) {
5205     // If the unsigned [LHS] type is larger, return it.
5206     if (LHSRank >= RHSRank)
5207       return 1;
5208 
5209     // If the signed type can represent all values of the unsigned type, it
5210     // wins.  Because we are dealing with 2's complement and types that are
5211     // powers of two larger than each other, this is always safe.
5212     return -1;
5213   }
5214 
5215   // If the unsigned [RHS] type is larger, return it.
5216   if (RHSRank >= LHSRank)
5217     return -1;
5218 
5219   // If the signed type can represent all values of the unsigned type, it
5220   // wins.  Because we are dealing with 2's complement and types that are
5221   // powers of two larger than each other, this is always safe.
5222   return 1;
5223 }
5224 
5225 TypedefDecl *ASTContext::getCFConstantStringDecl() const {
5226   if (!CFConstantStringTypeDecl) {
5227     assert(!CFConstantStringTagDecl &&
5228            "tag and typedef should be initialized together");
5229     CFConstantStringTagDecl = buildImplicitRecord("__NSConstantString_tag");
5230     CFConstantStringTagDecl->startDefinition();
5231 
5232     QualType FieldTypes[4];
5233     const char *FieldNames[4];
5234 
5235     // const int *isa;
5236     FieldTypes[0] = getPointerType(IntTy.withConst());
5237     FieldNames[0] = "isa";
5238     // int flags;
5239     FieldTypes[1] = IntTy;
5240     FieldNames[1] = "flags";
5241     // const char *str;
5242     FieldTypes[2] = getPointerType(CharTy.withConst());
5243     FieldNames[2] = "str";
5244     // long length;
5245     FieldTypes[3] = LongTy;
5246     FieldNames[3] = "length";
5247 
5248     // Create fields
5249     for (unsigned i = 0; i < 4; ++i) {
5250       FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTagDecl,
5251                                            SourceLocation(),
5252                                            SourceLocation(),
5253                                            &Idents.get(FieldNames[i]),
5254                                            FieldTypes[i], /*TInfo=*/nullptr,
5255                                            /*BitWidth=*/nullptr,
5256                                            /*Mutable=*/false,
5257                                            ICIS_NoInit);
5258       Field->setAccess(AS_public);
5259       CFConstantStringTagDecl->addDecl(Field);
5260     }
5261 
5262     CFConstantStringTagDecl->completeDefinition();
5263     // This type is designed to be compatible with NSConstantString, but cannot
5264     // use the same name, since NSConstantString is an interface.
5265     auto tagType = getTagDeclType(CFConstantStringTagDecl);
5266     CFConstantStringTypeDecl =
5267         buildImplicitTypedef(tagType, "__NSConstantString");
5268   }
5269 
5270   return CFConstantStringTypeDecl;
5271 }
5272 
5273 RecordDecl *ASTContext::getCFConstantStringTagDecl() const {
5274   if (!CFConstantStringTagDecl)
5275     getCFConstantStringDecl(); // Build the tag and the typedef.
5276   return CFConstantStringTagDecl;
5277 }
5278 
5279 // getCFConstantStringType - Return the type used for constant CFStrings.
5280 QualType ASTContext::getCFConstantStringType() const {
5281   return getTypedefType(getCFConstantStringDecl());
5282 }
5283 
5284 QualType ASTContext::getObjCSuperType() const {
5285   if (ObjCSuperType.isNull()) {
5286     RecordDecl *ObjCSuperTypeDecl = buildImplicitRecord("objc_super");
5287     TUDecl->addDecl(ObjCSuperTypeDecl);
5288     ObjCSuperType = getTagDeclType(ObjCSuperTypeDecl);
5289   }
5290   return ObjCSuperType;
5291 }
5292 
5293 void ASTContext::setCFConstantStringType(QualType T) {
5294   const TypedefType *TD = T->getAs<TypedefType>();
5295   assert(TD && "Invalid CFConstantStringType");
5296   CFConstantStringTypeDecl = cast<TypedefDecl>(TD->getDecl());
5297   auto TagType =
5298       CFConstantStringTypeDecl->getUnderlyingType()->getAs<RecordType>();
5299   assert(TagType && "Invalid CFConstantStringType");
5300   CFConstantStringTagDecl = TagType->getDecl();
5301 }
5302 
5303 QualType ASTContext::getBlockDescriptorType() const {
5304   if (BlockDescriptorType)
5305     return getTagDeclType(BlockDescriptorType);
5306 
5307   RecordDecl *RD;
5308   // FIXME: Needs the FlagAppleBlock bit.
5309   RD = buildImplicitRecord("__block_descriptor");
5310   RD->startDefinition();
5311 
5312   QualType FieldTypes[] = {
5313     UnsignedLongTy,
5314     UnsignedLongTy,
5315   };
5316 
5317   static const char *const FieldNames[] = {
5318     "reserved",
5319     "Size"
5320   };
5321 
5322   for (size_t i = 0; i < 2; ++i) {
5323     FieldDecl *Field = FieldDecl::Create(
5324         *this, RD, SourceLocation(), SourceLocation(),
5325         &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr,
5326         /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit);
5327     Field->setAccess(AS_public);
5328     RD->addDecl(Field);
5329   }
5330 
5331   RD->completeDefinition();
5332 
5333   BlockDescriptorType = RD;
5334 
5335   return getTagDeclType(BlockDescriptorType);
5336 }
5337 
5338 QualType ASTContext::getBlockDescriptorExtendedType() const {
5339   if (BlockDescriptorExtendedType)
5340     return getTagDeclType(BlockDescriptorExtendedType);
5341 
5342   RecordDecl *RD;
5343   // FIXME: Needs the FlagAppleBlock bit.
5344   RD = buildImplicitRecord("__block_descriptor_withcopydispose");
5345   RD->startDefinition();
5346 
5347   QualType FieldTypes[] = {
5348     UnsignedLongTy,
5349     UnsignedLongTy,
5350     getPointerType(VoidPtrTy),
5351     getPointerType(VoidPtrTy)
5352   };
5353 
5354   static const char *const FieldNames[] = {
5355     "reserved",
5356     "Size",
5357     "CopyFuncPtr",
5358     "DestroyFuncPtr"
5359   };
5360 
5361   for (size_t i = 0; i < 4; ++i) {
5362     FieldDecl *Field = FieldDecl::Create(
5363         *this, RD, SourceLocation(), SourceLocation(),
5364         &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr,
5365         /*BitWidth=*/nullptr,
5366         /*Mutable=*/false, ICIS_NoInit);
5367     Field->setAccess(AS_public);
5368     RD->addDecl(Field);
5369   }
5370 
5371   RD->completeDefinition();
5372 
5373   BlockDescriptorExtendedType = RD;
5374   return getTagDeclType(BlockDescriptorExtendedType);
5375 }
5376 
5377 /// BlockRequiresCopying - Returns true if byref variable "D" of type "Ty"
5378 /// requires copy/dispose. Note that this must match the logic
5379 /// in buildByrefHelpers.
5380 bool ASTContext::BlockRequiresCopying(QualType Ty,
5381                                       const VarDecl *D) {
5382   if (const CXXRecordDecl *record = Ty->getAsCXXRecordDecl()) {
5383     const Expr *copyExpr = getBlockVarCopyInits(D);
5384     if (!copyExpr && record->hasTrivialDestructor()) return false;
5385 
5386     return true;
5387   }
5388 
5389   if (!Ty->isObjCRetainableType()) return false;
5390 
5391   Qualifiers qs = Ty.getQualifiers();
5392 
5393   // If we have lifetime, that dominates.
5394   if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) {
5395     switch (lifetime) {
5396       case Qualifiers::OCL_None: llvm_unreachable("impossible");
5397 
5398       // These are just bits as far as the runtime is concerned.
5399       case Qualifiers::OCL_ExplicitNone:
5400       case Qualifiers::OCL_Autoreleasing:
5401         return false;
5402 
5403       // Tell the runtime that this is ARC __weak, called by the
5404       // byref routines.
5405       case Qualifiers::OCL_Weak:
5406       // ARC __strong __block variables need to be retained.
5407       case Qualifiers::OCL_Strong:
5408         return true;
5409     }
5410     llvm_unreachable("fell out of lifetime switch!");
5411   }
5412   return (Ty->isBlockPointerType() || isObjCNSObjectType(Ty) ||
5413           Ty->isObjCObjectPointerType());
5414 }
5415 
5416 bool ASTContext::getByrefLifetime(QualType Ty,
5417                               Qualifiers::ObjCLifetime &LifeTime,
5418                               bool &HasByrefExtendedLayout) const {
5419 
5420   if (!getLangOpts().ObjC1 ||
5421       getLangOpts().getGC() != LangOptions::NonGC)
5422     return false;
5423 
5424   HasByrefExtendedLayout = false;
5425   if (Ty->isRecordType()) {
5426     HasByrefExtendedLayout = true;
5427     LifeTime = Qualifiers::OCL_None;
5428   } else if ((LifeTime = Ty.getObjCLifetime())) {
5429     // Honor the ARC qualifiers.
5430   } else if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType()) {
5431     // The MRR rule.
5432     LifeTime = Qualifiers::OCL_ExplicitNone;
5433   } else {
5434     LifeTime = Qualifiers::OCL_None;
5435   }
5436   return true;
5437 }
5438 
5439 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() {
5440   if (!ObjCInstanceTypeDecl)
5441     ObjCInstanceTypeDecl =
5442         buildImplicitTypedef(getObjCIdType(), "instancetype");
5443   return ObjCInstanceTypeDecl;
5444 }
5445 
5446 // This returns true if a type has been typedefed to BOOL:
5447 // typedef <type> BOOL;
5448 static bool isTypeTypedefedAsBOOL(QualType T) {
5449   if (const TypedefType *TT = dyn_cast<TypedefType>(T))
5450     if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
5451       return II->isStr("BOOL");
5452 
5453   return false;
5454 }
5455 
5456 /// getObjCEncodingTypeSize returns size of type for objective-c encoding
5457 /// purpose.
5458 CharUnits ASTContext::getObjCEncodingTypeSize(QualType type) const {
5459   if (!type->isIncompleteArrayType() && type->isIncompleteType())
5460     return CharUnits::Zero();
5461 
5462   CharUnits sz = getTypeSizeInChars(type);
5463 
5464   // Make all integer and enum types at least as large as an int
5465   if (sz.isPositive() && type->isIntegralOrEnumerationType())
5466     sz = std::max(sz, getTypeSizeInChars(IntTy));
5467   // Treat arrays as pointers, since that's how they're passed in.
5468   else if (type->isArrayType())
5469     sz = getTypeSizeInChars(VoidPtrTy);
5470   return sz;
5471 }
5472 
5473 bool ASTContext::isMSStaticDataMemberInlineDefinition(const VarDecl *VD) const {
5474   return getTargetInfo().getCXXABI().isMicrosoft() &&
5475          VD->isStaticDataMember() &&
5476          VD->getType()->isIntegralOrEnumerationType() &&
5477          !VD->getFirstDecl()->isOutOfLine() && VD->getFirstDecl()->hasInit();
5478 }
5479 
5480 ASTContext::InlineVariableDefinitionKind
5481 ASTContext::getInlineVariableDefinitionKind(const VarDecl *VD) const {
5482   if (!VD->isInline())
5483     return InlineVariableDefinitionKind::None;
5484 
5485   // In almost all cases, it's a weak definition.
5486   auto *First = VD->getFirstDecl();
5487   if (!First->isConstexpr() || First->isInlineSpecified() ||
5488       !VD->isStaticDataMember())
5489     return InlineVariableDefinitionKind::Weak;
5490 
5491   // If there's a file-context declaration in this translation unit, it's a
5492   // non-discardable definition.
5493   for (auto *D : VD->redecls())
5494     if (D->getLexicalDeclContext()->isFileContext())
5495       return InlineVariableDefinitionKind::Strong;
5496 
5497   // If we've not seen one yet, we don't know.
5498   return InlineVariableDefinitionKind::WeakUnknown;
5499 }
5500 
5501 static inline
5502 std::string charUnitsToString(const CharUnits &CU) {
5503   return llvm::itostr(CU.getQuantity());
5504 }
5505 
5506 /// getObjCEncodingForBlock - Return the encoded type for this block
5507 /// declaration.
5508 std::string ASTContext::getObjCEncodingForBlock(const BlockExpr *Expr) const {
5509   std::string S;
5510 
5511   const BlockDecl *Decl = Expr->getBlockDecl();
5512   QualType BlockTy =
5513       Expr->getType()->getAs<BlockPointerType>()->getPointeeType();
5514   // Encode result type.
5515   if (getLangOpts().EncodeExtendedBlockSig)
5516     getObjCEncodingForMethodParameter(
5517         Decl::OBJC_TQ_None, BlockTy->getAs<FunctionType>()->getReturnType(), S,
5518         true /*Extended*/);
5519   else
5520     getObjCEncodingForType(BlockTy->getAs<FunctionType>()->getReturnType(), S);
5521   // Compute size of all parameters.
5522   // Start with computing size of a pointer in number of bytes.
5523   // FIXME: There might(should) be a better way of doing this computation!
5524   SourceLocation Loc;
5525   CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
5526   CharUnits ParmOffset = PtrSize;
5527   for (auto PI : Decl->parameters()) {
5528     QualType PType = PI->getType();
5529     CharUnits sz = getObjCEncodingTypeSize(PType);
5530     if (sz.isZero())
5531       continue;
5532     assert (sz.isPositive() && "BlockExpr - Incomplete param type");
5533     ParmOffset += sz;
5534   }
5535   // Size of the argument frame
5536   S += charUnitsToString(ParmOffset);
5537   // Block pointer and offset.
5538   S += "@?0";
5539 
5540   // Argument types.
5541   ParmOffset = PtrSize;
5542   for (auto PVDecl : Decl->parameters()) {
5543     QualType PType = PVDecl->getOriginalType();
5544     if (const ArrayType *AT =
5545           dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
5546       // Use array's original type only if it has known number of
5547       // elements.
5548       if (!isa<ConstantArrayType>(AT))
5549         PType = PVDecl->getType();
5550     } else if (PType->isFunctionType())
5551       PType = PVDecl->getType();
5552     if (getLangOpts().EncodeExtendedBlockSig)
5553       getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType,
5554                                       S, true /*Extended*/);
5555     else
5556       getObjCEncodingForType(PType, S);
5557     S += charUnitsToString(ParmOffset);
5558     ParmOffset += getObjCEncodingTypeSize(PType);
5559   }
5560 
5561   return S;
5562 }
5563 
5564 std::string
5565 ASTContext::getObjCEncodingForFunctionDecl(const FunctionDecl *Decl) const {
5566   std::string S;
5567   // Encode result type.
5568   getObjCEncodingForType(Decl->getReturnType(), S);
5569   CharUnits ParmOffset;
5570   // Compute size of all parameters.
5571   for (auto PI : Decl->parameters()) {
5572     QualType PType = PI->getType();
5573     CharUnits sz = getObjCEncodingTypeSize(PType);
5574     if (sz.isZero())
5575       continue;
5576 
5577     assert(sz.isPositive() &&
5578            "getObjCEncodingForFunctionDecl - Incomplete param type");
5579     ParmOffset += sz;
5580   }
5581   S += charUnitsToString(ParmOffset);
5582   ParmOffset = CharUnits::Zero();
5583 
5584   // Argument types.
5585   for (auto PVDecl : Decl->parameters()) {
5586     QualType PType = PVDecl->getOriginalType();
5587     if (const ArrayType *AT =
5588           dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
5589       // Use array's original type only if it has known number of
5590       // elements.
5591       if (!isa<ConstantArrayType>(AT))
5592         PType = PVDecl->getType();
5593     } else if (PType->isFunctionType())
5594       PType = PVDecl->getType();
5595     getObjCEncodingForType(PType, S);
5596     S += charUnitsToString(ParmOffset);
5597     ParmOffset += getObjCEncodingTypeSize(PType);
5598   }
5599 
5600   return S;
5601 }
5602 
5603 /// getObjCEncodingForMethodParameter - Return the encoded type for a single
5604 /// method parameter or return type. If Extended, include class names and
5605 /// block object types.
5606 void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT,
5607                                                    QualType T, std::string& S,
5608                                                    bool Extended) const {
5609   // Encode type qualifer, 'in', 'inout', etc. for the parameter.
5610   getObjCEncodingForTypeQualifier(QT, S);
5611   // Encode parameter type.
5612   getObjCEncodingForTypeImpl(T, S, true, true, nullptr,
5613                              true     /*OutermostType*/,
5614                              false    /*EncodingProperty*/,
5615                              false    /*StructField*/,
5616                              Extended /*EncodeBlockParameters*/,
5617                              Extended /*EncodeClassNames*/);
5618 }
5619 
5620 /// getObjCEncodingForMethodDecl - Return the encoded type for this method
5621 /// declaration.
5622 std::string ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
5623                                                      bool Extended) const {
5624   // FIXME: This is not very efficient.
5625   // Encode return type.
5626   std::string S;
5627   getObjCEncodingForMethodParameter(Decl->getObjCDeclQualifier(),
5628                                     Decl->getReturnType(), S, Extended);
5629   // Compute size of all parameters.
5630   // Start with computing size of a pointer in number of bytes.
5631   // FIXME: There might(should) be a better way of doing this computation!
5632   SourceLocation Loc;
5633   CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
5634   // The first two arguments (self and _cmd) are pointers; account for
5635   // their size.
5636   CharUnits ParmOffset = 2 * PtrSize;
5637   for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
5638        E = Decl->sel_param_end(); PI != E; ++PI) {
5639     QualType PType = (*PI)->getType();
5640     CharUnits sz = getObjCEncodingTypeSize(PType);
5641     if (sz.isZero())
5642       continue;
5643 
5644     assert (sz.isPositive() &&
5645         "getObjCEncodingForMethodDecl - Incomplete param type");
5646     ParmOffset += sz;
5647   }
5648   S += charUnitsToString(ParmOffset);
5649   S += "@0:";
5650   S += charUnitsToString(PtrSize);
5651 
5652   // Argument types.
5653   ParmOffset = 2 * PtrSize;
5654   for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
5655        E = Decl->sel_param_end(); PI != E; ++PI) {
5656     const ParmVarDecl *PVDecl = *PI;
5657     QualType PType = PVDecl->getOriginalType();
5658     if (const ArrayType *AT =
5659           dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
5660       // Use array's original type only if it has known number of
5661       // elements.
5662       if (!isa<ConstantArrayType>(AT))
5663         PType = PVDecl->getType();
5664     } else if (PType->isFunctionType())
5665       PType = PVDecl->getType();
5666     getObjCEncodingForMethodParameter(PVDecl->getObjCDeclQualifier(),
5667                                       PType, S, Extended);
5668     S += charUnitsToString(ParmOffset);
5669     ParmOffset += getObjCEncodingTypeSize(PType);
5670   }
5671 
5672   return S;
5673 }
5674 
5675 ObjCPropertyImplDecl *
5676 ASTContext::getObjCPropertyImplDeclForPropertyDecl(
5677                                       const ObjCPropertyDecl *PD,
5678                                       const Decl *Container) const {
5679   if (!Container)
5680     return nullptr;
5681   if (const ObjCCategoryImplDecl *CID =
5682       dyn_cast<ObjCCategoryImplDecl>(Container)) {
5683     for (auto *PID : CID->property_impls())
5684       if (PID->getPropertyDecl() == PD)
5685         return PID;
5686   } else {
5687     const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
5688     for (auto *PID : OID->property_impls())
5689       if (PID->getPropertyDecl() == PD)
5690         return PID;
5691   }
5692   return nullptr;
5693 }
5694 
5695 /// getObjCEncodingForPropertyDecl - Return the encoded type for this
5696 /// property declaration. If non-NULL, Container must be either an
5697 /// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
5698 /// NULL when getting encodings for protocol properties.
5699 /// Property attributes are stored as a comma-delimited C string. The simple
5700 /// attributes readonly and bycopy are encoded as single characters. The
5701 /// parametrized attributes, getter=name, setter=name, and ivar=name, are
5702 /// encoded as single characters, followed by an identifier. Property types
5703 /// are also encoded as a parametrized attribute. The characters used to encode
5704 /// these attributes are defined by the following enumeration:
5705 /// @code
5706 /// enum PropertyAttributes {
5707 /// kPropertyReadOnly = 'R',   // property is read-only.
5708 /// kPropertyBycopy = 'C',     // property is a copy of the value last assigned
5709 /// kPropertyByref = '&',  // property is a reference to the value last assigned
5710 /// kPropertyDynamic = 'D',    // property is dynamic
5711 /// kPropertyGetter = 'G',     // followed by getter selector name
5712 /// kPropertySetter = 'S',     // followed by setter selector name
5713 /// kPropertyInstanceVariable = 'V'  // followed by instance variable  name
5714 /// kPropertyType = 'T'              // followed by old-style type encoding.
5715 /// kPropertyWeak = 'W'              // 'weak' property
5716 /// kPropertyStrong = 'P'            // property GC'able
5717 /// kPropertyNonAtomic = 'N'         // property non-atomic
5718 /// };
5719 /// @endcode
5720 std::string
5721 ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
5722                                            const Decl *Container) const {
5723   // Collect information from the property implementation decl(s).
5724   bool Dynamic = false;
5725   ObjCPropertyImplDecl *SynthesizePID = nullptr;
5726 
5727   if (ObjCPropertyImplDecl *PropertyImpDecl =
5728       getObjCPropertyImplDeclForPropertyDecl(PD, Container)) {
5729     if (PropertyImpDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
5730       Dynamic = true;
5731     else
5732       SynthesizePID = PropertyImpDecl;
5733   }
5734 
5735   // FIXME: This is not very efficient.
5736   std::string S = "T";
5737 
5738   // Encode result type.
5739   // GCC has some special rules regarding encoding of properties which
5740   // closely resembles encoding of ivars.
5741   getObjCEncodingForPropertyType(PD->getType(), S);
5742 
5743   if (PD->isReadOnly()) {
5744     S += ",R";
5745     if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy)
5746       S += ",C";
5747     if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain)
5748       S += ",&";
5749     if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
5750       S += ",W";
5751   } else {
5752     switch (PD->getSetterKind()) {
5753     case ObjCPropertyDecl::Assign: break;
5754     case ObjCPropertyDecl::Copy:   S += ",C"; break;
5755     case ObjCPropertyDecl::Retain: S += ",&"; break;
5756     case ObjCPropertyDecl::Weak:   S += ",W"; break;
5757     }
5758   }
5759 
5760   // It really isn't clear at all what this means, since properties
5761   // are "dynamic by default".
5762   if (Dynamic)
5763     S += ",D";
5764 
5765   if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
5766     S += ",N";
5767 
5768   if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
5769     S += ",G";
5770     S += PD->getGetterName().getAsString();
5771   }
5772 
5773   if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
5774     S += ",S";
5775     S += PD->getSetterName().getAsString();
5776   }
5777 
5778   if (SynthesizePID) {
5779     const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
5780     S += ",V";
5781     S += OID->getNameAsString();
5782   }
5783 
5784   // FIXME: OBJCGC: weak & strong
5785   return S;
5786 }
5787 
5788 /// getLegacyIntegralTypeEncoding -
5789 /// Another legacy compatibility encoding: 32-bit longs are encoded as
5790 /// 'l' or 'L' , but not always.  For typedefs, we need to use
5791 /// 'i' or 'I' instead if encoding a struct field, or a pointer!
5792 ///
5793 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
5794   if (isa<TypedefType>(PointeeTy.getTypePtr())) {
5795     if (const BuiltinType *BT = PointeeTy->getAs<BuiltinType>()) {
5796       if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
5797         PointeeTy = UnsignedIntTy;
5798       else
5799         if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
5800           PointeeTy = IntTy;
5801     }
5802   }
5803 }
5804 
5805 void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
5806                                         const FieldDecl *Field,
5807                                         QualType *NotEncodedT) const {
5808   // We follow the behavior of gcc, expanding structures which are
5809   // directly pointed to, and expanding embedded structures. Note that
5810   // these rules are sufficient to prevent recursive encoding of the
5811   // same type.
5812   getObjCEncodingForTypeImpl(T, S, true, true, Field,
5813                              true /* outermost type */, false, false,
5814                              false, false, false, NotEncodedT);
5815 }
5816 
5817 void ASTContext::getObjCEncodingForPropertyType(QualType T,
5818                                                 std::string& S) const {
5819   // Encode result type.
5820   // GCC has some special rules regarding encoding of properties which
5821   // closely resembles encoding of ivars.
5822   getObjCEncodingForTypeImpl(T, S, true, true, nullptr,
5823                              true /* outermost type */,
5824                              true /* encoding property */);
5825 }
5826 
5827 static char getObjCEncodingForPrimitiveKind(const ASTContext *C,
5828                                             BuiltinType::Kind kind) {
5829     switch (kind) {
5830     case BuiltinType::Void:       return 'v';
5831     case BuiltinType::Bool:       return 'B';
5832     case BuiltinType::Char_U:
5833     case BuiltinType::UChar:      return 'C';
5834     case BuiltinType::Char16:
5835     case BuiltinType::UShort:     return 'S';
5836     case BuiltinType::Char32:
5837     case BuiltinType::UInt:       return 'I';
5838     case BuiltinType::ULong:
5839         return C->getTargetInfo().getLongWidth() == 32 ? 'L' : 'Q';
5840     case BuiltinType::UInt128:    return 'T';
5841     case BuiltinType::ULongLong:  return 'Q';
5842     case BuiltinType::Char_S:
5843     case BuiltinType::SChar:      return 'c';
5844     case BuiltinType::Short:      return 's';
5845     case BuiltinType::WChar_S:
5846     case BuiltinType::WChar_U:
5847     case BuiltinType::Int:        return 'i';
5848     case BuiltinType::Long:
5849       return C->getTargetInfo().getLongWidth() == 32 ? 'l' : 'q';
5850     case BuiltinType::LongLong:   return 'q';
5851     case BuiltinType::Int128:     return 't';
5852     case BuiltinType::Float:      return 'f';
5853     case BuiltinType::Double:     return 'd';
5854     case BuiltinType::LongDouble: return 'D';
5855     case BuiltinType::NullPtr:    return '*'; // like char*
5856 
5857     case BuiltinType::Float128:
5858     case BuiltinType::Half:
5859       // FIXME: potentially need @encodes for these!
5860       return ' ';
5861 
5862     case BuiltinType::ObjCId:
5863     case BuiltinType::ObjCClass:
5864     case BuiltinType::ObjCSel:
5865       llvm_unreachable("@encoding ObjC primitive type");
5866 
5867     // OpenCL and placeholder types don't need @encodings.
5868 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
5869     case BuiltinType::Id:
5870 #include "clang/Basic/OpenCLImageTypes.def"
5871     case BuiltinType::OCLEvent:
5872     case BuiltinType::OCLClkEvent:
5873     case BuiltinType::OCLQueue:
5874     case BuiltinType::OCLNDRange:
5875     case BuiltinType::OCLReserveID:
5876     case BuiltinType::OCLSampler:
5877     case BuiltinType::Dependent:
5878 #define BUILTIN_TYPE(KIND, ID)
5879 #define PLACEHOLDER_TYPE(KIND, ID) \
5880     case BuiltinType::KIND:
5881 #include "clang/AST/BuiltinTypes.def"
5882       llvm_unreachable("invalid builtin type for @encode");
5883     }
5884     llvm_unreachable("invalid BuiltinType::Kind value");
5885 }
5886 
5887 static char ObjCEncodingForEnumType(const ASTContext *C, const EnumType *ET) {
5888   EnumDecl *Enum = ET->getDecl();
5889 
5890   // The encoding of an non-fixed enum type is always 'i', regardless of size.
5891   if (!Enum->isFixed())
5892     return 'i';
5893 
5894   // The encoding of a fixed enum type matches its fixed underlying type.
5895   const BuiltinType *BT = Enum->getIntegerType()->castAs<BuiltinType>();
5896   return getObjCEncodingForPrimitiveKind(C, BT->getKind());
5897 }
5898 
5899 static void EncodeBitField(const ASTContext *Ctx, std::string& S,
5900                            QualType T, const FieldDecl *FD) {
5901   assert(FD->isBitField() && "not a bitfield - getObjCEncodingForTypeImpl");
5902   S += 'b';
5903   // The NeXT runtime encodes bit fields as b followed by the number of bits.
5904   // The GNU runtime requires more information; bitfields are encoded as b,
5905   // then the offset (in bits) of the first element, then the type of the
5906   // bitfield, then the size in bits.  For example, in this structure:
5907   //
5908   // struct
5909   // {
5910   //    int integer;
5911   //    int flags:2;
5912   // };
5913   // On a 32-bit system, the encoding for flags would be b2 for the NeXT
5914   // runtime, but b32i2 for the GNU runtime.  The reason for this extra
5915   // information is not especially sensible, but we're stuck with it for
5916   // compatibility with GCC, although providing it breaks anything that
5917   // actually uses runtime introspection and wants to work on both runtimes...
5918   if (Ctx->getLangOpts().ObjCRuntime.isGNUFamily()) {
5919     const RecordDecl *RD = FD->getParent();
5920     const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD);
5921     S += llvm::utostr(RL.getFieldOffset(FD->getFieldIndex()));
5922     if (const EnumType *ET = T->getAs<EnumType>())
5923       S += ObjCEncodingForEnumType(Ctx, ET);
5924     else {
5925       const BuiltinType *BT = T->castAs<BuiltinType>();
5926       S += getObjCEncodingForPrimitiveKind(Ctx, BT->getKind());
5927     }
5928   }
5929   S += llvm::utostr(FD->getBitWidthValue(*Ctx));
5930 }
5931 
5932 // FIXME: Use SmallString for accumulating string.
5933 void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S,
5934                                             bool ExpandPointedToStructures,
5935                                             bool ExpandStructures,
5936                                             const FieldDecl *FD,
5937                                             bool OutermostType,
5938                                             bool EncodingProperty,
5939                                             bool StructField,
5940                                             bool EncodeBlockParameters,
5941                                             bool EncodeClassNames,
5942                                             bool EncodePointerToObjCTypedef,
5943                                             QualType *NotEncodedT) const {
5944   CanQualType CT = getCanonicalType(T);
5945   switch (CT->getTypeClass()) {
5946   case Type::Builtin:
5947   case Type::Enum:
5948     if (FD && FD->isBitField())
5949       return EncodeBitField(this, S, T, FD);
5950     if (const BuiltinType *BT = dyn_cast<BuiltinType>(CT))
5951       S += getObjCEncodingForPrimitiveKind(this, BT->getKind());
5952     else
5953       S += ObjCEncodingForEnumType(this, cast<EnumType>(CT));
5954     return;
5955 
5956   case Type::Complex: {
5957     const ComplexType *CT = T->castAs<ComplexType>();
5958     S += 'j';
5959     getObjCEncodingForTypeImpl(CT->getElementType(), S, false, false, nullptr);
5960     return;
5961   }
5962 
5963   case Type::Atomic: {
5964     const AtomicType *AT = T->castAs<AtomicType>();
5965     S += 'A';
5966     getObjCEncodingForTypeImpl(AT->getValueType(), S, false, false, nullptr);
5967     return;
5968   }
5969 
5970   // encoding for pointer or reference types.
5971   case Type::Pointer:
5972   case Type::LValueReference:
5973   case Type::RValueReference: {
5974     QualType PointeeTy;
5975     if (isa<PointerType>(CT)) {
5976       const PointerType *PT = T->castAs<PointerType>();
5977       if (PT->isObjCSelType()) {
5978         S += ':';
5979         return;
5980       }
5981       PointeeTy = PT->getPointeeType();
5982     } else {
5983       PointeeTy = T->castAs<ReferenceType>()->getPointeeType();
5984     }
5985 
5986     bool isReadOnly = false;
5987     // For historical/compatibility reasons, the read-only qualifier of the
5988     // pointee gets emitted _before_ the '^'.  The read-only qualifier of
5989     // the pointer itself gets ignored, _unless_ we are looking at a typedef!
5990     // Also, do not emit the 'r' for anything but the outermost type!
5991     if (isa<TypedefType>(T.getTypePtr())) {
5992       if (OutermostType && T.isConstQualified()) {
5993         isReadOnly = true;
5994         S += 'r';
5995       }
5996     } else if (OutermostType) {
5997       QualType P = PointeeTy;
5998       while (P->getAs<PointerType>())
5999         P = P->getAs<PointerType>()->getPointeeType();
6000       if (P.isConstQualified()) {
6001         isReadOnly = true;
6002         S += 'r';
6003       }
6004     }
6005     if (isReadOnly) {
6006       // Another legacy compatibility encoding. Some ObjC qualifier and type
6007       // combinations need to be rearranged.
6008       // Rewrite "in const" from "nr" to "rn"
6009       if (StringRef(S).endswith("nr"))
6010         S.replace(S.end()-2, S.end(), "rn");
6011     }
6012 
6013     if (PointeeTy->isCharType()) {
6014       // char pointer types should be encoded as '*' unless it is a
6015       // type that has been typedef'd to 'BOOL'.
6016       if (!isTypeTypedefedAsBOOL(PointeeTy)) {
6017         S += '*';
6018         return;
6019       }
6020     } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
6021       // GCC binary compat: Need to convert "struct objc_class *" to "#".
6022       if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
6023         S += '#';
6024         return;
6025       }
6026       // GCC binary compat: Need to convert "struct objc_object *" to "@".
6027       if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
6028         S += '@';
6029         return;
6030       }
6031       // fall through...
6032     }
6033     S += '^';
6034     getLegacyIntegralTypeEncoding(PointeeTy);
6035 
6036     getObjCEncodingForTypeImpl(PointeeTy, S, false, ExpandPointedToStructures,
6037                                nullptr, false, false, false, false, false, false,
6038                                NotEncodedT);
6039     return;
6040   }
6041 
6042   case Type::ConstantArray:
6043   case Type::IncompleteArray:
6044   case Type::VariableArray: {
6045     const ArrayType *AT = cast<ArrayType>(CT);
6046 
6047     if (isa<IncompleteArrayType>(AT) && !StructField) {
6048       // Incomplete arrays are encoded as a pointer to the array element.
6049       S += '^';
6050 
6051       getObjCEncodingForTypeImpl(AT->getElementType(), S,
6052                                  false, ExpandStructures, FD);
6053     } else {
6054       S += '[';
6055 
6056       if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
6057         S += llvm::utostr(CAT->getSize().getZExtValue());
6058       else {
6059         //Variable length arrays are encoded as a regular array with 0 elements.
6060         assert((isa<VariableArrayType>(AT) || isa<IncompleteArrayType>(AT)) &&
6061                "Unknown array type!");
6062         S += '0';
6063       }
6064 
6065       getObjCEncodingForTypeImpl(AT->getElementType(), S,
6066                                  false, ExpandStructures, FD,
6067                                  false, false, false, false, false, false,
6068                                  NotEncodedT);
6069       S += ']';
6070     }
6071     return;
6072   }
6073 
6074   case Type::FunctionNoProto:
6075   case Type::FunctionProto:
6076     S += '?';
6077     return;
6078 
6079   case Type::Record: {
6080     RecordDecl *RDecl = cast<RecordType>(CT)->getDecl();
6081     S += RDecl->isUnion() ? '(' : '{';
6082     // Anonymous structures print as '?'
6083     if (const IdentifierInfo *II = RDecl->getIdentifier()) {
6084       S += II->getName();
6085       if (ClassTemplateSpecializationDecl *Spec
6086           = dyn_cast<ClassTemplateSpecializationDecl>(RDecl)) {
6087         const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
6088         llvm::raw_string_ostream OS(S);
6089         TemplateSpecializationType::PrintTemplateArgumentList(OS,
6090                                             TemplateArgs.asArray(),
6091                                             (*this).getPrintingPolicy());
6092       }
6093     } else {
6094       S += '?';
6095     }
6096     if (ExpandStructures) {
6097       S += '=';
6098       if (!RDecl->isUnion()) {
6099         getObjCEncodingForStructureImpl(RDecl, S, FD, true, NotEncodedT);
6100       } else {
6101         for (const auto *Field : RDecl->fields()) {
6102           if (FD) {
6103             S += '"';
6104             S += Field->getNameAsString();
6105             S += '"';
6106           }
6107 
6108           // Special case bit-fields.
6109           if (Field->isBitField()) {
6110             getObjCEncodingForTypeImpl(Field->getType(), S, false, true,
6111                                        Field);
6112           } else {
6113             QualType qt = Field->getType();
6114             getLegacyIntegralTypeEncoding(qt);
6115             getObjCEncodingForTypeImpl(qt, S, false, true,
6116                                        FD, /*OutermostType*/false,
6117                                        /*EncodingProperty*/false,
6118                                        /*StructField*/true,
6119                                        false, false, false, NotEncodedT);
6120           }
6121         }
6122       }
6123     }
6124     S += RDecl->isUnion() ? ')' : '}';
6125     return;
6126   }
6127 
6128   case Type::BlockPointer: {
6129     const BlockPointerType *BT = T->castAs<BlockPointerType>();
6130     S += "@?"; // Unlike a pointer-to-function, which is "^?".
6131     if (EncodeBlockParameters) {
6132       const FunctionType *FT = BT->getPointeeType()->castAs<FunctionType>();
6133 
6134       S += '<';
6135       // Block return type
6136       getObjCEncodingForTypeImpl(
6137           FT->getReturnType(), S, ExpandPointedToStructures, ExpandStructures,
6138           FD, false /* OutermostType */, EncodingProperty,
6139           false /* StructField */, EncodeBlockParameters, EncodeClassNames, false,
6140                                  NotEncodedT);
6141       // Block self
6142       S += "@?";
6143       // Block parameters
6144       if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
6145         for (const auto &I : FPT->param_types())
6146           getObjCEncodingForTypeImpl(
6147               I, S, ExpandPointedToStructures, ExpandStructures, FD,
6148               false /* OutermostType */, EncodingProperty,
6149               false /* StructField */, EncodeBlockParameters, EncodeClassNames,
6150                                      false, NotEncodedT);
6151       }
6152       S += '>';
6153     }
6154     return;
6155   }
6156 
6157   case Type::ObjCObject: {
6158     // hack to match legacy encoding of *id and *Class
6159     QualType Ty = getObjCObjectPointerType(CT);
6160     if (Ty->isObjCIdType()) {
6161       S += "{objc_object=}";
6162       return;
6163     }
6164     else if (Ty->isObjCClassType()) {
6165       S += "{objc_class=}";
6166       return;
6167     }
6168   }
6169 
6170   case Type::ObjCInterface: {
6171     // Ignore protocol qualifiers when mangling at this level.
6172     // @encode(class_name)
6173     ObjCInterfaceDecl *OI = T->castAs<ObjCObjectType>()->getInterface();
6174     S += '{';
6175     S += OI->getObjCRuntimeNameAsString();
6176     if (ExpandStructures) {
6177       S += '=';
6178       SmallVector<const ObjCIvarDecl*, 32> Ivars;
6179       DeepCollectObjCIvars(OI, true, Ivars);
6180       for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
6181         const FieldDecl *Field = cast<FieldDecl>(Ivars[i]);
6182         if (Field->isBitField())
6183           getObjCEncodingForTypeImpl(Field->getType(), S, false, true, Field);
6184         else
6185           getObjCEncodingForTypeImpl(Field->getType(), S, false, true, FD,
6186                                      false, false, false, false, false,
6187                                      EncodePointerToObjCTypedef,
6188                                      NotEncodedT);
6189       }
6190     }
6191     S += '}';
6192     return;
6193   }
6194 
6195   case Type::ObjCObjectPointer: {
6196     const ObjCObjectPointerType *OPT = T->castAs<ObjCObjectPointerType>();
6197     if (OPT->isObjCIdType()) {
6198       S += '@';
6199       return;
6200     }
6201 
6202     if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
6203       // FIXME: Consider if we need to output qualifiers for 'Class<p>'.
6204       // Since this is a binary compatibility issue, need to consult with runtime
6205       // folks. Fortunately, this is a *very* obsure construct.
6206       S += '#';
6207       return;
6208     }
6209 
6210     if (OPT->isObjCQualifiedIdType()) {
6211       getObjCEncodingForTypeImpl(getObjCIdType(), S,
6212                                  ExpandPointedToStructures,
6213                                  ExpandStructures, FD);
6214       if (FD || EncodingProperty || EncodeClassNames) {
6215         // Note that we do extended encoding of protocol qualifer list
6216         // Only when doing ivar or property encoding.
6217         S += '"';
6218         for (const auto *I : OPT->quals()) {
6219           S += '<';
6220           S += I->getObjCRuntimeNameAsString();
6221           S += '>';
6222         }
6223         S += '"';
6224       }
6225       return;
6226     }
6227 
6228     QualType PointeeTy = OPT->getPointeeType();
6229     if (!EncodingProperty &&
6230         isa<TypedefType>(PointeeTy.getTypePtr()) &&
6231         !EncodePointerToObjCTypedef) {
6232       // Another historical/compatibility reason.
6233       // We encode the underlying type which comes out as
6234       // {...};
6235       S += '^';
6236       if (FD && OPT->getInterfaceDecl()) {
6237         // Prevent recursive encoding of fields in some rare cases.
6238         ObjCInterfaceDecl *OI = OPT->getInterfaceDecl();
6239         SmallVector<const ObjCIvarDecl*, 32> Ivars;
6240         DeepCollectObjCIvars(OI, true, Ivars);
6241         for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
6242           if (cast<FieldDecl>(Ivars[i]) == FD) {
6243             S += '{';
6244             S += OI->getObjCRuntimeNameAsString();
6245             S += '}';
6246             return;
6247           }
6248         }
6249       }
6250       getObjCEncodingForTypeImpl(PointeeTy, S,
6251                                  false, ExpandPointedToStructures,
6252                                  nullptr,
6253                                  false, false, false, false, false,
6254                                  /*EncodePointerToObjCTypedef*/true);
6255       return;
6256     }
6257 
6258     S += '@';
6259     if (OPT->getInterfaceDecl() &&
6260         (FD || EncodingProperty || EncodeClassNames)) {
6261       S += '"';
6262       S += OPT->getInterfaceDecl()->getObjCRuntimeNameAsString();
6263       for (const auto *I : OPT->quals()) {
6264         S += '<';
6265         S += I->getObjCRuntimeNameAsString();
6266         S += '>';
6267       }
6268       S += '"';
6269     }
6270     return;
6271   }
6272 
6273   // gcc just blithely ignores member pointers.
6274   // FIXME: we shoul do better than that.  'M' is available.
6275   case Type::MemberPointer:
6276   // This matches gcc's encoding, even though technically it is insufficient.
6277   //FIXME. We should do a better job than gcc.
6278   case Type::Vector:
6279   case Type::ExtVector:
6280   // Until we have a coherent encoding of these three types, issue warning.
6281     { if (NotEncodedT)
6282         *NotEncodedT = T;
6283       return;
6284     }
6285 
6286   // We could see an undeduced auto type here during error recovery.
6287   // Just ignore it.
6288   case Type::Auto:
6289     return;
6290 
6291   case Type::Pipe:
6292 #define ABSTRACT_TYPE(KIND, BASE)
6293 #define TYPE(KIND, BASE)
6294 #define DEPENDENT_TYPE(KIND, BASE) \
6295   case Type::KIND:
6296 #define NON_CANONICAL_TYPE(KIND, BASE) \
6297   case Type::KIND:
6298 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(KIND, BASE) \
6299   case Type::KIND:
6300 #include "clang/AST/TypeNodes.def"
6301     llvm_unreachable("@encode for dependent type!");
6302   }
6303   llvm_unreachable("bad type kind!");
6304 }
6305 
6306 void ASTContext::getObjCEncodingForStructureImpl(RecordDecl *RDecl,
6307                                                  std::string &S,
6308                                                  const FieldDecl *FD,
6309                                                  bool includeVBases,
6310                                                  QualType *NotEncodedT) const {
6311   assert(RDecl && "Expected non-null RecordDecl");
6312   assert(!RDecl->isUnion() && "Should not be called for unions");
6313   if (!RDecl->getDefinition() || RDecl->getDefinition()->isInvalidDecl())
6314     return;
6315 
6316   CXXRecordDecl *CXXRec = dyn_cast<CXXRecordDecl>(RDecl);
6317   std::multimap<uint64_t, NamedDecl *> FieldOrBaseOffsets;
6318   const ASTRecordLayout &layout = getASTRecordLayout(RDecl);
6319 
6320   if (CXXRec) {
6321     for (const auto &BI : CXXRec->bases()) {
6322       if (!BI.isVirtual()) {
6323         CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl();
6324         if (base->isEmpty())
6325           continue;
6326         uint64_t offs = toBits(layout.getBaseClassOffset(base));
6327         FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
6328                                   std::make_pair(offs, base));
6329       }
6330     }
6331   }
6332 
6333   unsigned i = 0;
6334   for (auto *Field : RDecl->fields()) {
6335     uint64_t offs = layout.getFieldOffset(i);
6336     FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
6337                               std::make_pair(offs, Field));
6338     ++i;
6339   }
6340 
6341   if (CXXRec && includeVBases) {
6342     for (const auto &BI : CXXRec->vbases()) {
6343       CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl();
6344       if (base->isEmpty())
6345         continue;
6346       uint64_t offs = toBits(layout.getVBaseClassOffset(base));
6347       if (offs >= uint64_t(toBits(layout.getNonVirtualSize())) &&
6348           FieldOrBaseOffsets.find(offs) == FieldOrBaseOffsets.end())
6349         FieldOrBaseOffsets.insert(FieldOrBaseOffsets.end(),
6350                                   std::make_pair(offs, base));
6351     }
6352   }
6353 
6354   CharUnits size;
6355   if (CXXRec) {
6356     size = includeVBases ? layout.getSize() : layout.getNonVirtualSize();
6357   } else {
6358     size = layout.getSize();
6359   }
6360 
6361 #ifndef NDEBUG
6362   uint64_t CurOffs = 0;
6363 #endif
6364   std::multimap<uint64_t, NamedDecl *>::iterator
6365     CurLayObj = FieldOrBaseOffsets.begin();
6366 
6367   if (CXXRec && CXXRec->isDynamicClass() &&
6368       (CurLayObj == FieldOrBaseOffsets.end() || CurLayObj->first != 0)) {
6369     if (FD) {
6370       S += "\"_vptr$";
6371       std::string recname = CXXRec->getNameAsString();
6372       if (recname.empty()) recname = "?";
6373       S += recname;
6374       S += '"';
6375     }
6376     S += "^^?";
6377 #ifndef NDEBUG
6378     CurOffs += getTypeSize(VoidPtrTy);
6379 #endif
6380   }
6381 
6382   if (!RDecl->hasFlexibleArrayMember()) {
6383     // Mark the end of the structure.
6384     uint64_t offs = toBits(size);
6385     FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
6386                               std::make_pair(offs, nullptr));
6387   }
6388 
6389   for (; CurLayObj != FieldOrBaseOffsets.end(); ++CurLayObj) {
6390 #ifndef NDEBUG
6391     assert(CurOffs <= CurLayObj->first);
6392     if (CurOffs < CurLayObj->first) {
6393       uint64_t padding = CurLayObj->first - CurOffs;
6394       // FIXME: There doesn't seem to be a way to indicate in the encoding that
6395       // packing/alignment of members is different that normal, in which case
6396       // the encoding will be out-of-sync with the real layout.
6397       // If the runtime switches to just consider the size of types without
6398       // taking into account alignment, we could make padding explicit in the
6399       // encoding (e.g. using arrays of chars). The encoding strings would be
6400       // longer then though.
6401       CurOffs += padding;
6402     }
6403 #endif
6404 
6405     NamedDecl *dcl = CurLayObj->second;
6406     if (!dcl)
6407       break; // reached end of structure.
6408 
6409     if (CXXRecordDecl *base = dyn_cast<CXXRecordDecl>(dcl)) {
6410       // We expand the bases without their virtual bases since those are going
6411       // in the initial structure. Note that this differs from gcc which
6412       // expands virtual bases each time one is encountered in the hierarchy,
6413       // making the encoding type bigger than it really is.
6414       getObjCEncodingForStructureImpl(base, S, FD, /*includeVBases*/false,
6415                                       NotEncodedT);
6416       assert(!base->isEmpty());
6417 #ifndef NDEBUG
6418       CurOffs += toBits(getASTRecordLayout(base).getNonVirtualSize());
6419 #endif
6420     } else {
6421       FieldDecl *field = cast<FieldDecl>(dcl);
6422       if (FD) {
6423         S += '"';
6424         S += field->getNameAsString();
6425         S += '"';
6426       }
6427 
6428       if (field->isBitField()) {
6429         EncodeBitField(this, S, field->getType(), field);
6430 #ifndef NDEBUG
6431         CurOffs += field->getBitWidthValue(*this);
6432 #endif
6433       } else {
6434         QualType qt = field->getType();
6435         getLegacyIntegralTypeEncoding(qt);
6436         getObjCEncodingForTypeImpl(qt, S, false, true, FD,
6437                                    /*OutermostType*/false,
6438                                    /*EncodingProperty*/false,
6439                                    /*StructField*/true,
6440                                    false, false, false, NotEncodedT);
6441 #ifndef NDEBUG
6442         CurOffs += getTypeSize(field->getType());
6443 #endif
6444       }
6445     }
6446   }
6447 }
6448 
6449 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
6450                                                  std::string& S) const {
6451   if (QT & Decl::OBJC_TQ_In)
6452     S += 'n';
6453   if (QT & Decl::OBJC_TQ_Inout)
6454     S += 'N';
6455   if (QT & Decl::OBJC_TQ_Out)
6456     S += 'o';
6457   if (QT & Decl::OBJC_TQ_Bycopy)
6458     S += 'O';
6459   if (QT & Decl::OBJC_TQ_Byref)
6460     S += 'R';
6461   if (QT & Decl::OBJC_TQ_Oneway)
6462     S += 'V';
6463 }
6464 
6465 TypedefDecl *ASTContext::getObjCIdDecl() const {
6466   if (!ObjCIdDecl) {
6467     QualType T = getObjCObjectType(ObjCBuiltinIdTy, { }, { });
6468     T = getObjCObjectPointerType(T);
6469     ObjCIdDecl = buildImplicitTypedef(T, "id");
6470   }
6471   return ObjCIdDecl;
6472 }
6473 
6474 TypedefDecl *ASTContext::getObjCSelDecl() const {
6475   if (!ObjCSelDecl) {
6476     QualType T = getPointerType(ObjCBuiltinSelTy);
6477     ObjCSelDecl = buildImplicitTypedef(T, "SEL");
6478   }
6479   return ObjCSelDecl;
6480 }
6481 
6482 TypedefDecl *ASTContext::getObjCClassDecl() const {
6483   if (!ObjCClassDecl) {
6484     QualType T = getObjCObjectType(ObjCBuiltinClassTy, { }, { });
6485     T = getObjCObjectPointerType(T);
6486     ObjCClassDecl = buildImplicitTypedef(T, "Class");
6487   }
6488   return ObjCClassDecl;
6489 }
6490 
6491 ObjCInterfaceDecl *ASTContext::getObjCProtocolDecl() const {
6492   if (!ObjCProtocolClassDecl) {
6493     ObjCProtocolClassDecl
6494       = ObjCInterfaceDecl::Create(*this, getTranslationUnitDecl(),
6495                                   SourceLocation(),
6496                                   &Idents.get("Protocol"),
6497                                   /*typeParamList=*/nullptr,
6498                                   /*PrevDecl=*/nullptr,
6499                                   SourceLocation(), true);
6500   }
6501 
6502   return ObjCProtocolClassDecl;
6503 }
6504 
6505 //===----------------------------------------------------------------------===//
6506 // __builtin_va_list Construction Functions
6507 //===----------------------------------------------------------------------===//
6508 
6509 static TypedefDecl *CreateCharPtrNamedVaListDecl(const ASTContext *Context,
6510                                                  StringRef Name) {
6511   // typedef char* __builtin[_ms]_va_list;
6512   QualType T = Context->getPointerType(Context->CharTy);
6513   return Context->buildImplicitTypedef(T, Name);
6514 }
6515 
6516 static TypedefDecl *CreateMSVaListDecl(const ASTContext *Context) {
6517   return CreateCharPtrNamedVaListDecl(Context, "__builtin_ms_va_list");
6518 }
6519 
6520 static TypedefDecl *CreateCharPtrBuiltinVaListDecl(const ASTContext *Context) {
6521   return CreateCharPtrNamedVaListDecl(Context, "__builtin_va_list");
6522 }
6523 
6524 static TypedefDecl *CreateVoidPtrBuiltinVaListDecl(const ASTContext *Context) {
6525   // typedef void* __builtin_va_list;
6526   QualType T = Context->getPointerType(Context->VoidTy);
6527   return Context->buildImplicitTypedef(T, "__builtin_va_list");
6528 }
6529 
6530 static TypedefDecl *
6531 CreateAArch64ABIBuiltinVaListDecl(const ASTContext *Context) {
6532   // struct __va_list
6533   RecordDecl *VaListTagDecl = Context->buildImplicitRecord("__va_list");
6534   if (Context->getLangOpts().CPlusPlus) {
6535     // namespace std { struct __va_list {
6536     NamespaceDecl *NS;
6537     NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
6538                                Context->getTranslationUnitDecl(),
6539                                /*Inline*/ false, SourceLocation(),
6540                                SourceLocation(), &Context->Idents.get("std"),
6541                                /*PrevDecl*/ nullptr);
6542     NS->setImplicit();
6543     VaListTagDecl->setDeclContext(NS);
6544   }
6545 
6546   VaListTagDecl->startDefinition();
6547 
6548   const size_t NumFields = 5;
6549   QualType FieldTypes[NumFields];
6550   const char *FieldNames[NumFields];
6551 
6552   // void *__stack;
6553   FieldTypes[0] = Context->getPointerType(Context->VoidTy);
6554   FieldNames[0] = "__stack";
6555 
6556   // void *__gr_top;
6557   FieldTypes[1] = Context->getPointerType(Context->VoidTy);
6558   FieldNames[1] = "__gr_top";
6559 
6560   // void *__vr_top;
6561   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
6562   FieldNames[2] = "__vr_top";
6563 
6564   // int __gr_offs;
6565   FieldTypes[3] = Context->IntTy;
6566   FieldNames[3] = "__gr_offs";
6567 
6568   // int __vr_offs;
6569   FieldTypes[4] = Context->IntTy;
6570   FieldNames[4] = "__vr_offs";
6571 
6572   // Create fields
6573   for (unsigned i = 0; i < NumFields; ++i) {
6574     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6575                                          VaListTagDecl,
6576                                          SourceLocation(),
6577                                          SourceLocation(),
6578                                          &Context->Idents.get(FieldNames[i]),
6579                                          FieldTypes[i], /*TInfo=*/nullptr,
6580                                          /*BitWidth=*/nullptr,
6581                                          /*Mutable=*/false,
6582                                          ICIS_NoInit);
6583     Field->setAccess(AS_public);
6584     VaListTagDecl->addDecl(Field);
6585   }
6586   VaListTagDecl->completeDefinition();
6587   Context->VaListTagDecl = VaListTagDecl;
6588   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6589 
6590   // } __builtin_va_list;
6591   return Context->buildImplicitTypedef(VaListTagType, "__builtin_va_list");
6592 }
6593 
6594 static TypedefDecl *CreatePowerABIBuiltinVaListDecl(const ASTContext *Context) {
6595   // typedef struct __va_list_tag {
6596   RecordDecl *VaListTagDecl;
6597 
6598   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
6599   VaListTagDecl->startDefinition();
6600 
6601   const size_t NumFields = 5;
6602   QualType FieldTypes[NumFields];
6603   const char *FieldNames[NumFields];
6604 
6605   //   unsigned char gpr;
6606   FieldTypes[0] = Context->UnsignedCharTy;
6607   FieldNames[0] = "gpr";
6608 
6609   //   unsigned char fpr;
6610   FieldTypes[1] = Context->UnsignedCharTy;
6611   FieldNames[1] = "fpr";
6612 
6613   //   unsigned short reserved;
6614   FieldTypes[2] = Context->UnsignedShortTy;
6615   FieldNames[2] = "reserved";
6616 
6617   //   void* overflow_arg_area;
6618   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
6619   FieldNames[3] = "overflow_arg_area";
6620 
6621   //   void* reg_save_area;
6622   FieldTypes[4] = Context->getPointerType(Context->VoidTy);
6623   FieldNames[4] = "reg_save_area";
6624 
6625   // Create fields
6626   for (unsigned i = 0; i < NumFields; ++i) {
6627     FieldDecl *Field = FieldDecl::Create(*Context, VaListTagDecl,
6628                                          SourceLocation(),
6629                                          SourceLocation(),
6630                                          &Context->Idents.get(FieldNames[i]),
6631                                          FieldTypes[i], /*TInfo=*/nullptr,
6632                                          /*BitWidth=*/nullptr,
6633                                          /*Mutable=*/false,
6634                                          ICIS_NoInit);
6635     Field->setAccess(AS_public);
6636     VaListTagDecl->addDecl(Field);
6637   }
6638   VaListTagDecl->completeDefinition();
6639   Context->VaListTagDecl = VaListTagDecl;
6640   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6641 
6642   // } __va_list_tag;
6643   TypedefDecl *VaListTagTypedefDecl =
6644       Context->buildImplicitTypedef(VaListTagType, "__va_list_tag");
6645 
6646   QualType VaListTagTypedefType =
6647     Context->getTypedefType(VaListTagTypedefDecl);
6648 
6649   // typedef __va_list_tag __builtin_va_list[1];
6650   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6651   QualType VaListTagArrayType
6652     = Context->getConstantArrayType(VaListTagTypedefType,
6653                                     Size, ArrayType::Normal, 0);
6654   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
6655 }
6656 
6657 static TypedefDecl *
6658 CreateX86_64ABIBuiltinVaListDecl(const ASTContext *Context) {
6659   // struct __va_list_tag {
6660   RecordDecl *VaListTagDecl;
6661   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
6662   VaListTagDecl->startDefinition();
6663 
6664   const size_t NumFields = 4;
6665   QualType FieldTypes[NumFields];
6666   const char *FieldNames[NumFields];
6667 
6668   //   unsigned gp_offset;
6669   FieldTypes[0] = Context->UnsignedIntTy;
6670   FieldNames[0] = "gp_offset";
6671 
6672   //   unsigned fp_offset;
6673   FieldTypes[1] = Context->UnsignedIntTy;
6674   FieldNames[1] = "fp_offset";
6675 
6676   //   void* overflow_arg_area;
6677   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
6678   FieldNames[2] = "overflow_arg_area";
6679 
6680   //   void* reg_save_area;
6681   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
6682   FieldNames[3] = "reg_save_area";
6683 
6684   // Create fields
6685   for (unsigned i = 0; i < NumFields; ++i) {
6686     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6687                                          VaListTagDecl,
6688                                          SourceLocation(),
6689                                          SourceLocation(),
6690                                          &Context->Idents.get(FieldNames[i]),
6691                                          FieldTypes[i], /*TInfo=*/nullptr,
6692                                          /*BitWidth=*/nullptr,
6693                                          /*Mutable=*/false,
6694                                          ICIS_NoInit);
6695     Field->setAccess(AS_public);
6696     VaListTagDecl->addDecl(Field);
6697   }
6698   VaListTagDecl->completeDefinition();
6699   Context->VaListTagDecl = VaListTagDecl;
6700   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6701 
6702   // };
6703 
6704   // typedef struct __va_list_tag __builtin_va_list[1];
6705   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6706   QualType VaListTagArrayType =
6707       Context->getConstantArrayType(VaListTagType, Size, ArrayType::Normal, 0);
6708   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
6709 }
6710 
6711 static TypedefDecl *CreatePNaClABIBuiltinVaListDecl(const ASTContext *Context) {
6712   // typedef int __builtin_va_list[4];
6713   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 4);
6714   QualType IntArrayType =
6715       Context->getConstantArrayType(Context->IntTy, Size, ArrayType::Normal, 0);
6716   return Context->buildImplicitTypedef(IntArrayType, "__builtin_va_list");
6717 }
6718 
6719 static TypedefDecl *
6720 CreateAAPCSABIBuiltinVaListDecl(const ASTContext *Context) {
6721   // struct __va_list
6722   RecordDecl *VaListDecl = Context->buildImplicitRecord("__va_list");
6723   if (Context->getLangOpts().CPlusPlus) {
6724     // namespace std { struct __va_list {
6725     NamespaceDecl *NS;
6726     NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
6727                                Context->getTranslationUnitDecl(),
6728                                /*Inline*/false, SourceLocation(),
6729                                SourceLocation(), &Context->Idents.get("std"),
6730                                /*PrevDecl*/ nullptr);
6731     NS->setImplicit();
6732     VaListDecl->setDeclContext(NS);
6733   }
6734 
6735   VaListDecl->startDefinition();
6736 
6737   // void * __ap;
6738   FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6739                                        VaListDecl,
6740                                        SourceLocation(),
6741                                        SourceLocation(),
6742                                        &Context->Idents.get("__ap"),
6743                                        Context->getPointerType(Context->VoidTy),
6744                                        /*TInfo=*/nullptr,
6745                                        /*BitWidth=*/nullptr,
6746                                        /*Mutable=*/false,
6747                                        ICIS_NoInit);
6748   Field->setAccess(AS_public);
6749   VaListDecl->addDecl(Field);
6750 
6751   // };
6752   VaListDecl->completeDefinition();
6753   Context->VaListTagDecl = VaListDecl;
6754 
6755   // typedef struct __va_list __builtin_va_list;
6756   QualType T = Context->getRecordType(VaListDecl);
6757   return Context->buildImplicitTypedef(T, "__builtin_va_list");
6758 }
6759 
6760 static TypedefDecl *
6761 CreateSystemZBuiltinVaListDecl(const ASTContext *Context) {
6762   // struct __va_list_tag {
6763   RecordDecl *VaListTagDecl;
6764   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
6765   VaListTagDecl->startDefinition();
6766 
6767   const size_t NumFields = 4;
6768   QualType FieldTypes[NumFields];
6769   const char *FieldNames[NumFields];
6770 
6771   //   long __gpr;
6772   FieldTypes[0] = Context->LongTy;
6773   FieldNames[0] = "__gpr";
6774 
6775   //   long __fpr;
6776   FieldTypes[1] = Context->LongTy;
6777   FieldNames[1] = "__fpr";
6778 
6779   //   void *__overflow_arg_area;
6780   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
6781   FieldNames[2] = "__overflow_arg_area";
6782 
6783   //   void *__reg_save_area;
6784   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
6785   FieldNames[3] = "__reg_save_area";
6786 
6787   // Create fields
6788   for (unsigned i = 0; i < NumFields; ++i) {
6789     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6790                                          VaListTagDecl,
6791                                          SourceLocation(),
6792                                          SourceLocation(),
6793                                          &Context->Idents.get(FieldNames[i]),
6794                                          FieldTypes[i], /*TInfo=*/nullptr,
6795                                          /*BitWidth=*/nullptr,
6796                                          /*Mutable=*/false,
6797                                          ICIS_NoInit);
6798     Field->setAccess(AS_public);
6799     VaListTagDecl->addDecl(Field);
6800   }
6801   VaListTagDecl->completeDefinition();
6802   Context->VaListTagDecl = VaListTagDecl;
6803   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6804 
6805   // };
6806 
6807   // typedef __va_list_tag __builtin_va_list[1];
6808   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6809   QualType VaListTagArrayType =
6810       Context->getConstantArrayType(VaListTagType, Size, ArrayType::Normal, 0);
6811 
6812   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
6813 }
6814 
6815 static TypedefDecl *CreateVaListDecl(const ASTContext *Context,
6816                                      TargetInfo::BuiltinVaListKind Kind) {
6817   switch (Kind) {
6818   case TargetInfo::CharPtrBuiltinVaList:
6819     return CreateCharPtrBuiltinVaListDecl(Context);
6820   case TargetInfo::VoidPtrBuiltinVaList:
6821     return CreateVoidPtrBuiltinVaListDecl(Context);
6822   case TargetInfo::AArch64ABIBuiltinVaList:
6823     return CreateAArch64ABIBuiltinVaListDecl(Context);
6824   case TargetInfo::PowerABIBuiltinVaList:
6825     return CreatePowerABIBuiltinVaListDecl(Context);
6826   case TargetInfo::X86_64ABIBuiltinVaList:
6827     return CreateX86_64ABIBuiltinVaListDecl(Context);
6828   case TargetInfo::PNaClABIBuiltinVaList:
6829     return CreatePNaClABIBuiltinVaListDecl(Context);
6830   case TargetInfo::AAPCSABIBuiltinVaList:
6831     return CreateAAPCSABIBuiltinVaListDecl(Context);
6832   case TargetInfo::SystemZBuiltinVaList:
6833     return CreateSystemZBuiltinVaListDecl(Context);
6834   }
6835 
6836   llvm_unreachable("Unhandled __builtin_va_list type kind");
6837 }
6838 
6839 TypedefDecl *ASTContext::getBuiltinVaListDecl() const {
6840   if (!BuiltinVaListDecl) {
6841     BuiltinVaListDecl = CreateVaListDecl(this, Target->getBuiltinVaListKind());
6842     assert(BuiltinVaListDecl->isImplicit());
6843   }
6844 
6845   return BuiltinVaListDecl;
6846 }
6847 
6848 Decl *ASTContext::getVaListTagDecl() const {
6849   // Force the creation of VaListTagDecl by building the __builtin_va_list
6850   // declaration.
6851   if (!VaListTagDecl)
6852     (void)getBuiltinVaListDecl();
6853 
6854   return VaListTagDecl;
6855 }
6856 
6857 TypedefDecl *ASTContext::getBuiltinMSVaListDecl() const {
6858   if (!BuiltinMSVaListDecl)
6859     BuiltinMSVaListDecl = CreateMSVaListDecl(this);
6860 
6861   return BuiltinMSVaListDecl;
6862 }
6863 
6864 void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
6865   assert(ObjCConstantStringType.isNull() &&
6866          "'NSConstantString' type already set!");
6867 
6868   ObjCConstantStringType = getObjCInterfaceType(Decl);
6869 }
6870 
6871 /// \brief Retrieve the template name that corresponds to a non-empty
6872 /// lookup.
6873 TemplateName
6874 ASTContext::getOverloadedTemplateName(UnresolvedSetIterator Begin,
6875                                       UnresolvedSetIterator End) const {
6876   unsigned size = End - Begin;
6877   assert(size > 1 && "set is not overloaded!");
6878 
6879   void *memory = Allocate(sizeof(OverloadedTemplateStorage) +
6880                           size * sizeof(FunctionTemplateDecl*));
6881   OverloadedTemplateStorage *OT = new(memory) OverloadedTemplateStorage(size);
6882 
6883   NamedDecl **Storage = OT->getStorage();
6884   for (UnresolvedSetIterator I = Begin; I != End; ++I) {
6885     NamedDecl *D = *I;
6886     assert(isa<FunctionTemplateDecl>(D) ||
6887            (isa<UsingShadowDecl>(D) &&
6888             isa<FunctionTemplateDecl>(D->getUnderlyingDecl())));
6889     *Storage++ = D;
6890   }
6891 
6892   return TemplateName(OT);
6893 }
6894 
6895 /// \brief Retrieve the template name that represents a qualified
6896 /// template name such as \c std::vector.
6897 TemplateName
6898 ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS,
6899                                      bool TemplateKeyword,
6900                                      TemplateDecl *Template) const {
6901   assert(NNS && "Missing nested-name-specifier in qualified template name");
6902 
6903   // FIXME: Canonicalization?
6904   llvm::FoldingSetNodeID ID;
6905   QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template);
6906 
6907   void *InsertPos = nullptr;
6908   QualifiedTemplateName *QTN =
6909     QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6910   if (!QTN) {
6911     QTN = new (*this, alignof(QualifiedTemplateName))
6912         QualifiedTemplateName(NNS, TemplateKeyword, Template);
6913     QualifiedTemplateNames.InsertNode(QTN, InsertPos);
6914   }
6915 
6916   return TemplateName(QTN);
6917 }
6918 
6919 /// \brief Retrieve the template name that represents a dependent
6920 /// template name such as \c MetaFun::template apply.
6921 TemplateName
6922 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
6923                                      const IdentifierInfo *Name) const {
6924   assert((!NNS || NNS->isDependent()) &&
6925          "Nested name specifier must be dependent");
6926 
6927   llvm::FoldingSetNodeID ID;
6928   DependentTemplateName::Profile(ID, NNS, Name);
6929 
6930   void *InsertPos = nullptr;
6931   DependentTemplateName *QTN =
6932     DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6933 
6934   if (QTN)
6935     return TemplateName(QTN);
6936 
6937   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
6938   if (CanonNNS == NNS) {
6939     QTN = new (*this, alignof(DependentTemplateName))
6940         DependentTemplateName(NNS, Name);
6941   } else {
6942     TemplateName Canon = getDependentTemplateName(CanonNNS, Name);
6943     QTN = new (*this, alignof(DependentTemplateName))
6944         DependentTemplateName(NNS, Name, Canon);
6945     DependentTemplateName *CheckQTN =
6946       DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6947     assert(!CheckQTN && "Dependent type name canonicalization broken");
6948     (void)CheckQTN;
6949   }
6950 
6951   DependentTemplateNames.InsertNode(QTN, InsertPos);
6952   return TemplateName(QTN);
6953 }
6954 
6955 /// \brief Retrieve the template name that represents a dependent
6956 /// template name such as \c MetaFun::template operator+.
6957 TemplateName
6958 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
6959                                      OverloadedOperatorKind Operator) const {
6960   assert((!NNS || NNS->isDependent()) &&
6961          "Nested name specifier must be dependent");
6962 
6963   llvm::FoldingSetNodeID ID;
6964   DependentTemplateName::Profile(ID, NNS, Operator);
6965 
6966   void *InsertPos = nullptr;
6967   DependentTemplateName *QTN
6968     = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6969 
6970   if (QTN)
6971     return TemplateName(QTN);
6972 
6973   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
6974   if (CanonNNS == NNS) {
6975     QTN = new (*this, alignof(DependentTemplateName))
6976         DependentTemplateName(NNS, Operator);
6977   } else {
6978     TemplateName Canon = getDependentTemplateName(CanonNNS, Operator);
6979     QTN = new (*this, alignof(DependentTemplateName))
6980         DependentTemplateName(NNS, Operator, Canon);
6981 
6982     DependentTemplateName *CheckQTN
6983       = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6984     assert(!CheckQTN && "Dependent template name canonicalization broken");
6985     (void)CheckQTN;
6986   }
6987 
6988   DependentTemplateNames.InsertNode(QTN, InsertPos);
6989   return TemplateName(QTN);
6990 }
6991 
6992 TemplateName
6993 ASTContext::getSubstTemplateTemplateParm(TemplateTemplateParmDecl *param,
6994                                          TemplateName replacement) const {
6995   llvm::FoldingSetNodeID ID;
6996   SubstTemplateTemplateParmStorage::Profile(ID, param, replacement);
6997 
6998   void *insertPos = nullptr;
6999   SubstTemplateTemplateParmStorage *subst
7000     = SubstTemplateTemplateParms.FindNodeOrInsertPos(ID, insertPos);
7001 
7002   if (!subst) {
7003     subst = new (*this) SubstTemplateTemplateParmStorage(param, replacement);
7004     SubstTemplateTemplateParms.InsertNode(subst, insertPos);
7005   }
7006 
7007   return TemplateName(subst);
7008 }
7009 
7010 TemplateName
7011 ASTContext::getSubstTemplateTemplateParmPack(TemplateTemplateParmDecl *Param,
7012                                        const TemplateArgument &ArgPack) const {
7013   ASTContext &Self = const_cast<ASTContext &>(*this);
7014   llvm::FoldingSetNodeID ID;
7015   SubstTemplateTemplateParmPackStorage::Profile(ID, Self, Param, ArgPack);
7016 
7017   void *InsertPos = nullptr;
7018   SubstTemplateTemplateParmPackStorage *Subst
7019     = SubstTemplateTemplateParmPacks.FindNodeOrInsertPos(ID, InsertPos);
7020 
7021   if (!Subst) {
7022     Subst = new (*this) SubstTemplateTemplateParmPackStorage(Param,
7023                                                            ArgPack.pack_size(),
7024                                                          ArgPack.pack_begin());
7025     SubstTemplateTemplateParmPacks.InsertNode(Subst, InsertPos);
7026   }
7027 
7028   return TemplateName(Subst);
7029 }
7030 
7031 /// getFromTargetType - Given one of the integer types provided by
7032 /// TargetInfo, produce the corresponding type. The unsigned @p Type
7033 /// is actually a value of type @c TargetInfo::IntType.
7034 CanQualType ASTContext::getFromTargetType(unsigned Type) const {
7035   switch (Type) {
7036   case TargetInfo::NoInt: return CanQualType();
7037   case TargetInfo::SignedChar: return SignedCharTy;
7038   case TargetInfo::UnsignedChar: return UnsignedCharTy;
7039   case TargetInfo::SignedShort: return ShortTy;
7040   case TargetInfo::UnsignedShort: return UnsignedShortTy;
7041   case TargetInfo::SignedInt: return IntTy;
7042   case TargetInfo::UnsignedInt: return UnsignedIntTy;
7043   case TargetInfo::SignedLong: return LongTy;
7044   case TargetInfo::UnsignedLong: return UnsignedLongTy;
7045   case TargetInfo::SignedLongLong: return LongLongTy;
7046   case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
7047   }
7048 
7049   llvm_unreachable("Unhandled TargetInfo::IntType value");
7050 }
7051 
7052 //===----------------------------------------------------------------------===//
7053 //                        Type Predicates.
7054 //===----------------------------------------------------------------------===//
7055 
7056 /// getObjCGCAttr - Returns one of GCNone, Weak or Strong objc's
7057 /// garbage collection attribute.
7058 ///
7059 Qualifiers::GC ASTContext::getObjCGCAttrKind(QualType Ty) const {
7060   if (getLangOpts().getGC() == LangOptions::NonGC)
7061     return Qualifiers::GCNone;
7062 
7063   assert(getLangOpts().ObjC1);
7064   Qualifiers::GC GCAttrs = Ty.getObjCGCAttr();
7065 
7066   // Default behaviour under objective-C's gc is for ObjC pointers
7067   // (or pointers to them) be treated as though they were declared
7068   // as __strong.
7069   if (GCAttrs == Qualifiers::GCNone) {
7070     if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType())
7071       return Qualifiers::Strong;
7072     else if (Ty->isPointerType())
7073       return getObjCGCAttrKind(Ty->getAs<PointerType>()->getPointeeType());
7074   } else {
7075     // It's not valid to set GC attributes on anything that isn't a
7076     // pointer.
7077 #ifndef NDEBUG
7078     QualType CT = Ty->getCanonicalTypeInternal();
7079     while (const ArrayType *AT = dyn_cast<ArrayType>(CT))
7080       CT = AT->getElementType();
7081     assert(CT->isAnyPointerType() || CT->isBlockPointerType());
7082 #endif
7083   }
7084   return GCAttrs;
7085 }
7086 
7087 //===----------------------------------------------------------------------===//
7088 //                        Type Compatibility Testing
7089 //===----------------------------------------------------------------------===//
7090 
7091 /// areCompatVectorTypes - Return true if the two specified vector types are
7092 /// compatible.
7093 static bool areCompatVectorTypes(const VectorType *LHS,
7094                                  const VectorType *RHS) {
7095   assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified());
7096   return LHS->getElementType() == RHS->getElementType() &&
7097          LHS->getNumElements() == RHS->getNumElements();
7098 }
7099 
7100 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec,
7101                                           QualType SecondVec) {
7102   assert(FirstVec->isVectorType() && "FirstVec should be a vector type");
7103   assert(SecondVec->isVectorType() && "SecondVec should be a vector type");
7104 
7105   if (hasSameUnqualifiedType(FirstVec, SecondVec))
7106     return true;
7107 
7108   // Treat Neon vector types and most AltiVec vector types as if they are the
7109   // equivalent GCC vector types.
7110   const VectorType *First = FirstVec->getAs<VectorType>();
7111   const VectorType *Second = SecondVec->getAs<VectorType>();
7112   if (First->getNumElements() == Second->getNumElements() &&
7113       hasSameType(First->getElementType(), Second->getElementType()) &&
7114       First->getVectorKind() != VectorType::AltiVecPixel &&
7115       First->getVectorKind() != VectorType::AltiVecBool &&
7116       Second->getVectorKind() != VectorType::AltiVecPixel &&
7117       Second->getVectorKind() != VectorType::AltiVecBool)
7118     return true;
7119 
7120   return false;
7121 }
7122 
7123 //===----------------------------------------------------------------------===//
7124 // ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's.
7125 //===----------------------------------------------------------------------===//
7126 
7127 /// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the
7128 /// inheritance hierarchy of 'rProto'.
7129 bool
7130 ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto,
7131                                            ObjCProtocolDecl *rProto) const {
7132   if (declaresSameEntity(lProto, rProto))
7133     return true;
7134   for (auto *PI : rProto->protocols())
7135     if (ProtocolCompatibleWithProtocol(lProto, PI))
7136       return true;
7137   return false;
7138 }
7139 
7140 /// ObjCQualifiedClassTypesAreCompatible - compare  Class<pr,...> and
7141 /// Class<pr1, ...>.
7142 bool ASTContext::ObjCQualifiedClassTypesAreCompatible(QualType lhs,
7143                                                       QualType rhs) {
7144   const ObjCObjectPointerType *lhsQID = lhs->getAs<ObjCObjectPointerType>();
7145   const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
7146   assert ((lhsQID && rhsOPT) && "ObjCQualifiedClassTypesAreCompatible");
7147 
7148   for (auto *lhsProto : lhsQID->quals()) {
7149     bool match = false;
7150     for (auto *rhsProto : rhsOPT->quals()) {
7151       if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto)) {
7152         match = true;
7153         break;
7154       }
7155     }
7156     if (!match)
7157       return false;
7158   }
7159   return true;
7160 }
7161 
7162 /// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an
7163 /// ObjCQualifiedIDType.
7164 bool ASTContext::ObjCQualifiedIdTypesAreCompatible(QualType lhs, QualType rhs,
7165                                                    bool compare) {
7166   // Allow id<P..> and an 'id' or void* type in all cases.
7167   if (lhs->isVoidPointerType() ||
7168       lhs->isObjCIdType() || lhs->isObjCClassType())
7169     return true;
7170   else if (rhs->isVoidPointerType() ||
7171            rhs->isObjCIdType() || rhs->isObjCClassType())
7172     return true;
7173 
7174   if (const ObjCObjectPointerType *lhsQID = lhs->getAsObjCQualifiedIdType()) {
7175     const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
7176 
7177     if (!rhsOPT) return false;
7178 
7179     if (rhsOPT->qual_empty()) {
7180       // If the RHS is a unqualified interface pointer "NSString*",
7181       // make sure we check the class hierarchy.
7182       if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
7183         for (auto *I : lhsQID->quals()) {
7184           // when comparing an id<P> on lhs with a static type on rhs,
7185           // see if static class implements all of id's protocols, directly or
7186           // through its super class and categories.
7187           if (!rhsID->ClassImplementsProtocol(I, true))
7188             return false;
7189         }
7190       }
7191       // If there are no qualifiers and no interface, we have an 'id'.
7192       return true;
7193     }
7194     // Both the right and left sides have qualifiers.
7195     for (auto *lhsProto : lhsQID->quals()) {
7196       bool match = false;
7197 
7198       // when comparing an id<P> on lhs with a static type on rhs,
7199       // see if static class implements all of id's protocols, directly or
7200       // through its super class and categories.
7201       for (auto *rhsProto : rhsOPT->quals()) {
7202         if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
7203             (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
7204           match = true;
7205           break;
7206         }
7207       }
7208       // If the RHS is a qualified interface pointer "NSString<P>*",
7209       // make sure we check the class hierarchy.
7210       if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
7211         for (auto *I : lhsQID->quals()) {
7212           // when comparing an id<P> on lhs with a static type on rhs,
7213           // see if static class implements all of id's protocols, directly or
7214           // through its super class and categories.
7215           if (rhsID->ClassImplementsProtocol(I, true)) {
7216             match = true;
7217             break;
7218           }
7219         }
7220       }
7221       if (!match)
7222         return false;
7223     }
7224 
7225     return true;
7226   }
7227 
7228   const ObjCObjectPointerType *rhsQID = rhs->getAsObjCQualifiedIdType();
7229   assert(rhsQID && "One of the LHS/RHS should be id<x>");
7230 
7231   if (const ObjCObjectPointerType *lhsOPT =
7232         lhs->getAsObjCInterfacePointerType()) {
7233     // If both the right and left sides have qualifiers.
7234     for (auto *lhsProto : lhsOPT->quals()) {
7235       bool match = false;
7236 
7237       // when comparing an id<P> on rhs with a static type on lhs,
7238       // see if static class implements all of id's protocols, directly or
7239       // through its super class and categories.
7240       // First, lhs protocols in the qualifier list must be found, direct
7241       // or indirect in rhs's qualifier list or it is a mismatch.
7242       for (auto *rhsProto : rhsQID->quals()) {
7243         if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
7244             (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
7245           match = true;
7246           break;
7247         }
7248       }
7249       if (!match)
7250         return false;
7251     }
7252 
7253     // Static class's protocols, or its super class or category protocols
7254     // must be found, direct or indirect in rhs's qualifier list or it is a mismatch.
7255     if (ObjCInterfaceDecl *lhsID = lhsOPT->getInterfaceDecl()) {
7256       llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols;
7257       CollectInheritedProtocols(lhsID, LHSInheritedProtocols);
7258       // This is rather dubious but matches gcc's behavior. If lhs has
7259       // no type qualifier and its class has no static protocol(s)
7260       // assume that it is mismatch.
7261       if (LHSInheritedProtocols.empty() && lhsOPT->qual_empty())
7262         return false;
7263       for (auto *lhsProto : LHSInheritedProtocols) {
7264         bool match = false;
7265         for (auto *rhsProto : rhsQID->quals()) {
7266           if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
7267               (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
7268             match = true;
7269             break;
7270           }
7271         }
7272         if (!match)
7273           return false;
7274       }
7275     }
7276     return true;
7277   }
7278   return false;
7279 }
7280 
7281 /// canAssignObjCInterfaces - Return true if the two interface types are
7282 /// compatible for assignment from RHS to LHS.  This handles validation of any
7283 /// protocol qualifiers on the LHS or RHS.
7284 ///
7285 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT,
7286                                          const ObjCObjectPointerType *RHSOPT) {
7287   const ObjCObjectType* LHS = LHSOPT->getObjectType();
7288   const ObjCObjectType* RHS = RHSOPT->getObjectType();
7289 
7290   // If either type represents the built-in 'id' or 'Class' types, return true.
7291   if (LHS->isObjCUnqualifiedIdOrClass() ||
7292       RHS->isObjCUnqualifiedIdOrClass())
7293     return true;
7294 
7295   // Function object that propagates a successful result or handles
7296   // __kindof types.
7297   auto finish = [&](bool succeeded) -> bool {
7298     if (succeeded)
7299       return true;
7300 
7301     if (!RHS->isKindOfType())
7302       return false;
7303 
7304     // Strip off __kindof and protocol qualifiers, then check whether
7305     // we can assign the other way.
7306     return canAssignObjCInterfaces(RHSOPT->stripObjCKindOfTypeAndQuals(*this),
7307                                    LHSOPT->stripObjCKindOfTypeAndQuals(*this));
7308   };
7309 
7310   if (LHS->isObjCQualifiedId() || RHS->isObjCQualifiedId()) {
7311     return finish(ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
7312                                                     QualType(RHSOPT,0),
7313                                                     false));
7314   }
7315 
7316   if (LHS->isObjCQualifiedClass() && RHS->isObjCQualifiedClass()) {
7317     return finish(ObjCQualifiedClassTypesAreCompatible(QualType(LHSOPT,0),
7318                                                        QualType(RHSOPT,0)));
7319   }
7320 
7321   // If we have 2 user-defined types, fall into that path.
7322   if (LHS->getInterface() && RHS->getInterface()) {
7323     return finish(canAssignObjCInterfaces(LHS, RHS));
7324   }
7325 
7326   return false;
7327 }
7328 
7329 /// canAssignObjCInterfacesInBlockPointer - This routine is specifically written
7330 /// for providing type-safety for objective-c pointers used to pass/return
7331 /// arguments in block literals. When passed as arguments, passing 'A*' where
7332 /// 'id' is expected is not OK. Passing 'Sub *" where 'Super *" is expected is
7333 /// not OK. For the return type, the opposite is not OK.
7334 bool ASTContext::canAssignObjCInterfacesInBlockPointer(
7335                                          const ObjCObjectPointerType *LHSOPT,
7336                                          const ObjCObjectPointerType *RHSOPT,
7337                                          bool BlockReturnType) {
7338 
7339   // Function object that propagates a successful result or handles
7340   // __kindof types.
7341   auto finish = [&](bool succeeded) -> bool {
7342     if (succeeded)
7343       return true;
7344 
7345     const ObjCObjectPointerType *Expected = BlockReturnType ? RHSOPT : LHSOPT;
7346     if (!Expected->isKindOfType())
7347       return false;
7348 
7349     // Strip off __kindof and protocol qualifiers, then check whether
7350     // we can assign the other way.
7351     return canAssignObjCInterfacesInBlockPointer(
7352              RHSOPT->stripObjCKindOfTypeAndQuals(*this),
7353              LHSOPT->stripObjCKindOfTypeAndQuals(*this),
7354              BlockReturnType);
7355   };
7356 
7357   if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType())
7358     return true;
7359 
7360   if (LHSOPT->isObjCBuiltinType()) {
7361     return finish(RHSOPT->isObjCBuiltinType() ||
7362                   RHSOPT->isObjCQualifiedIdType());
7363   }
7364 
7365   if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType())
7366     return finish(ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
7367                                                     QualType(RHSOPT,0),
7368                                                     false));
7369 
7370   const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType();
7371   const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType();
7372   if (LHS && RHS)  { // We have 2 user-defined types.
7373     if (LHS != RHS) {
7374       if (LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
7375         return finish(BlockReturnType);
7376       if (RHS->getDecl()->isSuperClassOf(LHS->getDecl()))
7377         return finish(!BlockReturnType);
7378     }
7379     else
7380       return true;
7381   }
7382   return false;
7383 }
7384 
7385 /// Comparison routine for Objective-C protocols to be used with
7386 /// llvm::array_pod_sort.
7387 static int compareObjCProtocolsByName(ObjCProtocolDecl * const *lhs,
7388                                       ObjCProtocolDecl * const *rhs) {
7389   return (*lhs)->getName().compare((*rhs)->getName());
7390 
7391 }
7392 
7393 /// getIntersectionOfProtocols - This routine finds the intersection of set
7394 /// of protocols inherited from two distinct objective-c pointer objects with
7395 /// the given common base.
7396 /// It is used to build composite qualifier list of the composite type of
7397 /// the conditional expression involving two objective-c pointer objects.
7398 static
7399 void getIntersectionOfProtocols(ASTContext &Context,
7400                                 const ObjCInterfaceDecl *CommonBase,
7401                                 const ObjCObjectPointerType *LHSOPT,
7402                                 const ObjCObjectPointerType *RHSOPT,
7403       SmallVectorImpl<ObjCProtocolDecl *> &IntersectionSet) {
7404 
7405   const ObjCObjectType* LHS = LHSOPT->getObjectType();
7406   const ObjCObjectType* RHS = RHSOPT->getObjectType();
7407   assert(LHS->getInterface() && "LHS must have an interface base");
7408   assert(RHS->getInterface() && "RHS must have an interface base");
7409 
7410   // Add all of the protocols for the LHS.
7411   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSProtocolSet;
7412 
7413   // Start with the protocol qualifiers.
7414   for (auto proto : LHS->quals()) {
7415     Context.CollectInheritedProtocols(proto, LHSProtocolSet);
7416   }
7417 
7418   // Also add the protocols associated with the LHS interface.
7419   Context.CollectInheritedProtocols(LHS->getInterface(), LHSProtocolSet);
7420 
7421   // Add all of the protocls for the RHS.
7422   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> RHSProtocolSet;
7423 
7424   // Start with the protocol qualifiers.
7425   for (auto proto : RHS->quals()) {
7426     Context.CollectInheritedProtocols(proto, RHSProtocolSet);
7427   }
7428 
7429   // Also add the protocols associated with the RHS interface.
7430   Context.CollectInheritedProtocols(RHS->getInterface(), RHSProtocolSet);
7431 
7432   // Compute the intersection of the collected protocol sets.
7433   for (auto proto : LHSProtocolSet) {
7434     if (RHSProtocolSet.count(proto))
7435       IntersectionSet.push_back(proto);
7436   }
7437 
7438   // Compute the set of protocols that is implied by either the common type or
7439   // the protocols within the intersection.
7440   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> ImpliedProtocols;
7441   Context.CollectInheritedProtocols(CommonBase, ImpliedProtocols);
7442 
7443   // Remove any implied protocols from the list of inherited protocols.
7444   if (!ImpliedProtocols.empty()) {
7445     IntersectionSet.erase(
7446       std::remove_if(IntersectionSet.begin(),
7447                      IntersectionSet.end(),
7448                      [&](ObjCProtocolDecl *proto) -> bool {
7449                        return ImpliedProtocols.count(proto) > 0;
7450                      }),
7451       IntersectionSet.end());
7452   }
7453 
7454   // Sort the remaining protocols by name.
7455   llvm::array_pod_sort(IntersectionSet.begin(), IntersectionSet.end(),
7456                        compareObjCProtocolsByName);
7457 }
7458 
7459 /// Determine whether the first type is a subtype of the second.
7460 static bool canAssignObjCObjectTypes(ASTContext &ctx, QualType lhs,
7461                                      QualType rhs) {
7462   // Common case: two object pointers.
7463   const ObjCObjectPointerType *lhsOPT = lhs->getAs<ObjCObjectPointerType>();
7464   const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
7465   if (lhsOPT && rhsOPT)
7466     return ctx.canAssignObjCInterfaces(lhsOPT, rhsOPT);
7467 
7468   // Two block pointers.
7469   const BlockPointerType *lhsBlock = lhs->getAs<BlockPointerType>();
7470   const BlockPointerType *rhsBlock = rhs->getAs<BlockPointerType>();
7471   if (lhsBlock && rhsBlock)
7472     return ctx.typesAreBlockPointerCompatible(lhs, rhs);
7473 
7474   // If either is an unqualified 'id' and the other is a block, it's
7475   // acceptable.
7476   if ((lhsOPT && lhsOPT->isObjCIdType() && rhsBlock) ||
7477       (rhsOPT && rhsOPT->isObjCIdType() && lhsBlock))
7478     return true;
7479 
7480   return false;
7481 }
7482 
7483 // Check that the given Objective-C type argument lists are equivalent.
7484 static bool sameObjCTypeArgs(ASTContext &ctx,
7485                              const ObjCInterfaceDecl *iface,
7486                              ArrayRef<QualType> lhsArgs,
7487                              ArrayRef<QualType> rhsArgs,
7488                              bool stripKindOf) {
7489   if (lhsArgs.size() != rhsArgs.size())
7490     return false;
7491 
7492   ObjCTypeParamList *typeParams = iface->getTypeParamList();
7493   for (unsigned i = 0, n = lhsArgs.size(); i != n; ++i) {
7494     if (ctx.hasSameType(lhsArgs[i], rhsArgs[i]))
7495       continue;
7496 
7497     switch (typeParams->begin()[i]->getVariance()) {
7498     case ObjCTypeParamVariance::Invariant:
7499       if (!stripKindOf ||
7500           !ctx.hasSameType(lhsArgs[i].stripObjCKindOfType(ctx),
7501                            rhsArgs[i].stripObjCKindOfType(ctx))) {
7502         return false;
7503       }
7504       break;
7505 
7506     case ObjCTypeParamVariance::Covariant:
7507       if (!canAssignObjCObjectTypes(ctx, lhsArgs[i], rhsArgs[i]))
7508         return false;
7509       break;
7510 
7511     case ObjCTypeParamVariance::Contravariant:
7512       if (!canAssignObjCObjectTypes(ctx, rhsArgs[i], lhsArgs[i]))
7513         return false;
7514       break;
7515     }
7516   }
7517 
7518   return true;
7519 }
7520 
7521 QualType ASTContext::areCommonBaseCompatible(
7522            const ObjCObjectPointerType *Lptr,
7523            const ObjCObjectPointerType *Rptr) {
7524   const ObjCObjectType *LHS = Lptr->getObjectType();
7525   const ObjCObjectType *RHS = Rptr->getObjectType();
7526   const ObjCInterfaceDecl* LDecl = LHS->getInterface();
7527   const ObjCInterfaceDecl* RDecl = RHS->getInterface();
7528 
7529   if (!LDecl || !RDecl)
7530     return QualType();
7531 
7532   // When either LHS or RHS is a kindof type, we should return a kindof type.
7533   // For example, for common base of kindof(ASub1) and kindof(ASub2), we return
7534   // kindof(A).
7535   bool anyKindOf = LHS->isKindOfType() || RHS->isKindOfType();
7536 
7537   // Follow the left-hand side up the class hierarchy until we either hit a
7538   // root or find the RHS. Record the ancestors in case we don't find it.
7539   llvm::SmallDenseMap<const ObjCInterfaceDecl *, const ObjCObjectType *, 4>
7540     LHSAncestors;
7541   while (true) {
7542     // Record this ancestor. We'll need this if the common type isn't in the
7543     // path from the LHS to the root.
7544     LHSAncestors[LHS->getInterface()->getCanonicalDecl()] = LHS;
7545 
7546     if (declaresSameEntity(LHS->getInterface(), RDecl)) {
7547       // Get the type arguments.
7548       ArrayRef<QualType> LHSTypeArgs = LHS->getTypeArgsAsWritten();
7549       bool anyChanges = false;
7550       if (LHS->isSpecialized() && RHS->isSpecialized()) {
7551         // Both have type arguments, compare them.
7552         if (!sameObjCTypeArgs(*this, LHS->getInterface(),
7553                               LHS->getTypeArgs(), RHS->getTypeArgs(),
7554                               /*stripKindOf=*/true))
7555           return QualType();
7556       } else if (LHS->isSpecialized() != RHS->isSpecialized()) {
7557         // If only one has type arguments, the result will not have type
7558         // arguments.
7559         LHSTypeArgs = { };
7560         anyChanges = true;
7561       }
7562 
7563       // Compute the intersection of protocols.
7564       SmallVector<ObjCProtocolDecl *, 8> Protocols;
7565       getIntersectionOfProtocols(*this, LHS->getInterface(), Lptr, Rptr,
7566                                  Protocols);
7567       if (!Protocols.empty())
7568         anyChanges = true;
7569 
7570       // If anything in the LHS will have changed, build a new result type.
7571       // If we need to return a kindof type but LHS is not a kindof type, we
7572       // build a new result type.
7573       if (anyChanges || LHS->isKindOfType() != anyKindOf) {
7574         QualType Result = getObjCInterfaceType(LHS->getInterface());
7575         Result = getObjCObjectType(Result, LHSTypeArgs, Protocols,
7576                                    anyKindOf || LHS->isKindOfType());
7577         return getObjCObjectPointerType(Result);
7578       }
7579 
7580       return getObjCObjectPointerType(QualType(LHS, 0));
7581     }
7582 
7583     // Find the superclass.
7584     QualType LHSSuperType = LHS->getSuperClassType();
7585     if (LHSSuperType.isNull())
7586       break;
7587 
7588     LHS = LHSSuperType->castAs<ObjCObjectType>();
7589   }
7590 
7591   // We didn't find anything by following the LHS to its root; now check
7592   // the RHS against the cached set of ancestors.
7593   while (true) {
7594     auto KnownLHS = LHSAncestors.find(RHS->getInterface()->getCanonicalDecl());
7595     if (KnownLHS != LHSAncestors.end()) {
7596       LHS = KnownLHS->second;
7597 
7598       // Get the type arguments.
7599       ArrayRef<QualType> RHSTypeArgs = RHS->getTypeArgsAsWritten();
7600       bool anyChanges = false;
7601       if (LHS->isSpecialized() && RHS->isSpecialized()) {
7602         // Both have type arguments, compare them.
7603         if (!sameObjCTypeArgs(*this, LHS->getInterface(),
7604                               LHS->getTypeArgs(), RHS->getTypeArgs(),
7605                               /*stripKindOf=*/true))
7606           return QualType();
7607       } else if (LHS->isSpecialized() != RHS->isSpecialized()) {
7608         // If only one has type arguments, the result will not have type
7609         // arguments.
7610         RHSTypeArgs = { };
7611         anyChanges = true;
7612       }
7613 
7614       // Compute the intersection of protocols.
7615       SmallVector<ObjCProtocolDecl *, 8> Protocols;
7616       getIntersectionOfProtocols(*this, RHS->getInterface(), Lptr, Rptr,
7617                                  Protocols);
7618       if (!Protocols.empty())
7619         anyChanges = true;
7620 
7621       // If we need to return a kindof type but RHS is not a kindof type, we
7622       // build a new result type.
7623       if (anyChanges || RHS->isKindOfType() != anyKindOf) {
7624         QualType Result = getObjCInterfaceType(RHS->getInterface());
7625         Result = getObjCObjectType(Result, RHSTypeArgs, Protocols,
7626                                    anyKindOf || RHS->isKindOfType());
7627         return getObjCObjectPointerType(Result);
7628       }
7629 
7630       return getObjCObjectPointerType(QualType(RHS, 0));
7631     }
7632 
7633     // Find the superclass of the RHS.
7634     QualType RHSSuperType = RHS->getSuperClassType();
7635     if (RHSSuperType.isNull())
7636       break;
7637 
7638     RHS = RHSSuperType->castAs<ObjCObjectType>();
7639   }
7640 
7641   return QualType();
7642 }
7643 
7644 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS,
7645                                          const ObjCObjectType *RHS) {
7646   assert(LHS->getInterface() && "LHS is not an interface type");
7647   assert(RHS->getInterface() && "RHS is not an interface type");
7648 
7649   // Verify that the base decls are compatible: the RHS must be a subclass of
7650   // the LHS.
7651   ObjCInterfaceDecl *LHSInterface = LHS->getInterface();
7652   bool IsSuperClass = LHSInterface->isSuperClassOf(RHS->getInterface());
7653   if (!IsSuperClass)
7654     return false;
7655 
7656   // If the LHS has protocol qualifiers, determine whether all of them are
7657   // satisfied by the RHS (i.e., the RHS has a superset of the protocols in the
7658   // LHS).
7659   if (LHS->getNumProtocols() > 0) {
7660     // OK if conversion of LHS to SuperClass results in narrowing of types
7661     // ; i.e., SuperClass may implement at least one of the protocols
7662     // in LHS's protocol list. Example, SuperObj<P1> = lhs<P1,P2> is ok.
7663     // But not SuperObj<P1,P2,P3> = lhs<P1,P2>.
7664     llvm::SmallPtrSet<ObjCProtocolDecl *, 8> SuperClassInheritedProtocols;
7665     CollectInheritedProtocols(RHS->getInterface(), SuperClassInheritedProtocols);
7666     // Also, if RHS has explicit quelifiers, include them for comparing with LHS's
7667     // qualifiers.
7668     for (auto *RHSPI : RHS->quals())
7669       CollectInheritedProtocols(RHSPI, SuperClassInheritedProtocols);
7670     // If there is no protocols associated with RHS, it is not a match.
7671     if (SuperClassInheritedProtocols.empty())
7672       return false;
7673 
7674     for (const auto *LHSProto : LHS->quals()) {
7675       bool SuperImplementsProtocol = false;
7676       for (auto *SuperClassProto : SuperClassInheritedProtocols)
7677         if (SuperClassProto->lookupProtocolNamed(LHSProto->getIdentifier())) {
7678           SuperImplementsProtocol = true;
7679           break;
7680         }
7681       if (!SuperImplementsProtocol)
7682         return false;
7683     }
7684   }
7685 
7686   // If the LHS is specialized, we may need to check type arguments.
7687   if (LHS->isSpecialized()) {
7688     // Follow the superclass chain until we've matched the LHS class in the
7689     // hierarchy. This substitutes type arguments through.
7690     const ObjCObjectType *RHSSuper = RHS;
7691     while (!declaresSameEntity(RHSSuper->getInterface(), LHSInterface))
7692       RHSSuper = RHSSuper->getSuperClassType()->castAs<ObjCObjectType>();
7693 
7694     // If the RHS is specializd, compare type arguments.
7695     if (RHSSuper->isSpecialized() &&
7696         !sameObjCTypeArgs(*this, LHS->getInterface(),
7697                           LHS->getTypeArgs(), RHSSuper->getTypeArgs(),
7698                           /*stripKindOf=*/true)) {
7699       return false;
7700     }
7701   }
7702 
7703   return true;
7704 }
7705 
7706 bool ASTContext::areComparableObjCPointerTypes(QualType LHS, QualType RHS) {
7707   // get the "pointed to" types
7708   const ObjCObjectPointerType *LHSOPT = LHS->getAs<ObjCObjectPointerType>();
7709   const ObjCObjectPointerType *RHSOPT = RHS->getAs<ObjCObjectPointerType>();
7710 
7711   if (!LHSOPT || !RHSOPT)
7712     return false;
7713 
7714   return canAssignObjCInterfaces(LHSOPT, RHSOPT) ||
7715          canAssignObjCInterfaces(RHSOPT, LHSOPT);
7716 }
7717 
7718 bool ASTContext::canBindObjCObjectType(QualType To, QualType From) {
7719   return canAssignObjCInterfaces(
7720                 getObjCObjectPointerType(To)->getAs<ObjCObjectPointerType>(),
7721                 getObjCObjectPointerType(From)->getAs<ObjCObjectPointerType>());
7722 }
7723 
7724 /// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
7725 /// both shall have the identically qualified version of a compatible type.
7726 /// C99 6.2.7p1: Two types have compatible types if their types are the
7727 /// same. See 6.7.[2,3,5] for additional rules.
7728 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS,
7729                                     bool CompareUnqualified) {
7730   if (getLangOpts().CPlusPlus)
7731     return hasSameType(LHS, RHS);
7732 
7733   return !mergeTypes(LHS, RHS, false, CompareUnqualified).isNull();
7734 }
7735 
7736 bool ASTContext::propertyTypesAreCompatible(QualType LHS, QualType RHS) {
7737   return typesAreCompatible(LHS, RHS);
7738 }
7739 
7740 bool ASTContext::typesAreBlockPointerCompatible(QualType LHS, QualType RHS) {
7741   return !mergeTypes(LHS, RHS, true).isNull();
7742 }
7743 
7744 /// mergeTransparentUnionType - if T is a transparent union type and a member
7745 /// of T is compatible with SubType, return the merged type, else return
7746 /// QualType()
7747 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType,
7748                                                bool OfBlockPointer,
7749                                                bool Unqualified) {
7750   if (const RecordType *UT = T->getAsUnionType()) {
7751     RecordDecl *UD = UT->getDecl();
7752     if (UD->hasAttr<TransparentUnionAttr>()) {
7753       for (const auto *I : UD->fields()) {
7754         QualType ET = I->getType().getUnqualifiedType();
7755         QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified);
7756         if (!MT.isNull())
7757           return MT;
7758       }
7759     }
7760   }
7761 
7762   return QualType();
7763 }
7764 
7765 /// mergeFunctionParameterTypes - merge two types which appear as function
7766 /// parameter types
7767 QualType ASTContext::mergeFunctionParameterTypes(QualType lhs, QualType rhs,
7768                                                  bool OfBlockPointer,
7769                                                  bool Unqualified) {
7770   // GNU extension: two types are compatible if they appear as a function
7771   // argument, one of the types is a transparent union type and the other
7772   // type is compatible with a union member
7773   QualType lmerge = mergeTransparentUnionType(lhs, rhs, OfBlockPointer,
7774                                               Unqualified);
7775   if (!lmerge.isNull())
7776     return lmerge;
7777 
7778   QualType rmerge = mergeTransparentUnionType(rhs, lhs, OfBlockPointer,
7779                                               Unqualified);
7780   if (!rmerge.isNull())
7781     return rmerge;
7782 
7783   return mergeTypes(lhs, rhs, OfBlockPointer, Unqualified);
7784 }
7785 
7786 QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs,
7787                                         bool OfBlockPointer,
7788                                         bool Unqualified) {
7789   const FunctionType *lbase = lhs->getAs<FunctionType>();
7790   const FunctionType *rbase = rhs->getAs<FunctionType>();
7791   const FunctionProtoType *lproto = dyn_cast<FunctionProtoType>(lbase);
7792   const FunctionProtoType *rproto = dyn_cast<FunctionProtoType>(rbase);
7793   bool allLTypes = true;
7794   bool allRTypes = true;
7795 
7796   // Check return type
7797   QualType retType;
7798   if (OfBlockPointer) {
7799     QualType RHS = rbase->getReturnType();
7800     QualType LHS = lbase->getReturnType();
7801     bool UnqualifiedResult = Unqualified;
7802     if (!UnqualifiedResult)
7803       UnqualifiedResult = (!RHS.hasQualifiers() && LHS.hasQualifiers());
7804     retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true);
7805   }
7806   else
7807     retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false,
7808                          Unqualified);
7809   if (retType.isNull()) return QualType();
7810 
7811   if (Unqualified)
7812     retType = retType.getUnqualifiedType();
7813 
7814   CanQualType LRetType = getCanonicalType(lbase->getReturnType());
7815   CanQualType RRetType = getCanonicalType(rbase->getReturnType());
7816   if (Unqualified) {
7817     LRetType = LRetType.getUnqualifiedType();
7818     RRetType = RRetType.getUnqualifiedType();
7819   }
7820 
7821   if (getCanonicalType(retType) != LRetType)
7822     allLTypes = false;
7823   if (getCanonicalType(retType) != RRetType)
7824     allRTypes = false;
7825 
7826   // FIXME: double check this
7827   // FIXME: should we error if lbase->getRegParmAttr() != 0 &&
7828   //                           rbase->getRegParmAttr() != 0 &&
7829   //                           lbase->getRegParmAttr() != rbase->getRegParmAttr()?
7830   FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo();
7831   FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo();
7832 
7833   // Compatible functions must have compatible calling conventions
7834   if (lbaseInfo.getCC() != rbaseInfo.getCC())
7835     return QualType();
7836 
7837   // Regparm is part of the calling convention.
7838   if (lbaseInfo.getHasRegParm() != rbaseInfo.getHasRegParm())
7839     return QualType();
7840   if (lbaseInfo.getRegParm() != rbaseInfo.getRegParm())
7841     return QualType();
7842 
7843   if (lbaseInfo.getProducesResult() != rbaseInfo.getProducesResult())
7844     return QualType();
7845 
7846   // FIXME: some uses, e.g. conditional exprs, really want this to be 'both'.
7847   bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn();
7848 
7849   if (lbaseInfo.getNoReturn() != NoReturn)
7850     allLTypes = false;
7851   if (rbaseInfo.getNoReturn() != NoReturn)
7852     allRTypes = false;
7853 
7854   FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn);
7855 
7856   if (lproto && rproto) { // two C99 style function prototypes
7857     assert(!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec() &&
7858            "C++ shouldn't be here");
7859     // Compatible functions must have the same number of parameters
7860     if (lproto->getNumParams() != rproto->getNumParams())
7861       return QualType();
7862 
7863     // Variadic and non-variadic functions aren't compatible
7864     if (lproto->isVariadic() != rproto->isVariadic())
7865       return QualType();
7866 
7867     if (lproto->getTypeQuals() != rproto->getTypeQuals())
7868       return QualType();
7869 
7870     if (!doFunctionTypesMatchOnExtParameterInfos(rproto, lproto))
7871       return QualType();
7872 
7873     // Check parameter type compatibility
7874     SmallVector<QualType, 10> types;
7875     for (unsigned i = 0, n = lproto->getNumParams(); i < n; i++) {
7876       QualType lParamType = lproto->getParamType(i).getUnqualifiedType();
7877       QualType rParamType = rproto->getParamType(i).getUnqualifiedType();
7878       QualType paramType = mergeFunctionParameterTypes(
7879           lParamType, rParamType, OfBlockPointer, Unqualified);
7880       if (paramType.isNull())
7881         return QualType();
7882 
7883       if (Unqualified)
7884         paramType = paramType.getUnqualifiedType();
7885 
7886       types.push_back(paramType);
7887       if (Unqualified) {
7888         lParamType = lParamType.getUnqualifiedType();
7889         rParamType = rParamType.getUnqualifiedType();
7890       }
7891 
7892       if (getCanonicalType(paramType) != getCanonicalType(lParamType))
7893         allLTypes = false;
7894       if (getCanonicalType(paramType) != getCanonicalType(rParamType))
7895         allRTypes = false;
7896     }
7897 
7898     if (allLTypes) return lhs;
7899     if (allRTypes) return rhs;
7900 
7901     FunctionProtoType::ExtProtoInfo EPI = lproto->getExtProtoInfo();
7902     EPI.ExtInfo = einfo;
7903     return getFunctionType(retType, types, EPI);
7904   }
7905 
7906   if (lproto) allRTypes = false;
7907   if (rproto) allLTypes = false;
7908 
7909   const FunctionProtoType *proto = lproto ? lproto : rproto;
7910   if (proto) {
7911     assert(!proto->hasExceptionSpec() && "C++ shouldn't be here");
7912     if (proto->isVariadic()) return QualType();
7913     // Check that the types are compatible with the types that
7914     // would result from default argument promotions (C99 6.7.5.3p15).
7915     // The only types actually affected are promotable integer
7916     // types and floats, which would be passed as a different
7917     // type depending on whether the prototype is visible.
7918     for (unsigned i = 0, n = proto->getNumParams(); i < n; ++i) {
7919       QualType paramTy = proto->getParamType(i);
7920 
7921       // Look at the converted type of enum types, since that is the type used
7922       // to pass enum values.
7923       if (const EnumType *Enum = paramTy->getAs<EnumType>()) {
7924         paramTy = Enum->getDecl()->getIntegerType();
7925         if (paramTy.isNull())
7926           return QualType();
7927       }
7928 
7929       if (paramTy->isPromotableIntegerType() ||
7930           getCanonicalType(paramTy).getUnqualifiedType() == FloatTy)
7931         return QualType();
7932     }
7933 
7934     if (allLTypes) return lhs;
7935     if (allRTypes) return rhs;
7936 
7937     FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo();
7938     EPI.ExtInfo = einfo;
7939     return getFunctionType(retType, proto->getParamTypes(), EPI);
7940   }
7941 
7942   if (allLTypes) return lhs;
7943   if (allRTypes) return rhs;
7944   return getFunctionNoProtoType(retType, einfo);
7945 }
7946 
7947 /// Given that we have an enum type and a non-enum type, try to merge them.
7948 static QualType mergeEnumWithInteger(ASTContext &Context, const EnumType *ET,
7949                                      QualType other, bool isBlockReturnType) {
7950   // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
7951   // a signed integer type, or an unsigned integer type.
7952   // Compatibility is based on the underlying type, not the promotion
7953   // type.
7954   QualType underlyingType = ET->getDecl()->getIntegerType();
7955   if (underlyingType.isNull()) return QualType();
7956   if (Context.hasSameType(underlyingType, other))
7957     return other;
7958 
7959   // In block return types, we're more permissive and accept any
7960   // integral type of the same size.
7961   if (isBlockReturnType && other->isIntegerType() &&
7962       Context.getTypeSize(underlyingType) == Context.getTypeSize(other))
7963     return other;
7964 
7965   return QualType();
7966 }
7967 
7968 QualType ASTContext::mergeTypes(QualType LHS, QualType RHS,
7969                                 bool OfBlockPointer,
7970                                 bool Unqualified, bool BlockReturnType) {
7971   // C++ [expr]: If an expression initially has the type "reference to T", the
7972   // type is adjusted to "T" prior to any further analysis, the expression
7973   // designates the object or function denoted by the reference, and the
7974   // expression is an lvalue unless the reference is an rvalue reference and
7975   // the expression is a function call (possibly inside parentheses).
7976   assert(!LHS->getAs<ReferenceType>() && "LHS is a reference type?");
7977   assert(!RHS->getAs<ReferenceType>() && "RHS is a reference type?");
7978 
7979   if (Unqualified) {
7980     LHS = LHS.getUnqualifiedType();
7981     RHS = RHS.getUnqualifiedType();
7982   }
7983 
7984   QualType LHSCan = getCanonicalType(LHS),
7985            RHSCan = getCanonicalType(RHS);
7986 
7987   // If two types are identical, they are compatible.
7988   if (LHSCan == RHSCan)
7989     return LHS;
7990 
7991   // If the qualifiers are different, the types aren't compatible... mostly.
7992   Qualifiers LQuals = LHSCan.getLocalQualifiers();
7993   Qualifiers RQuals = RHSCan.getLocalQualifiers();
7994   if (LQuals != RQuals) {
7995     if (getLangOpts().OpenCL) {
7996       if (LHSCan.getUnqualifiedType() != RHSCan.getUnqualifiedType() ||
7997           LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers())
7998         return QualType();
7999       if (LQuals.isAddressSpaceSupersetOf(RQuals))
8000         return LHS;
8001       if (RQuals.isAddressSpaceSupersetOf(LQuals))
8002         return RHS;
8003     }
8004     // If any of these qualifiers are different, we have a type
8005     // mismatch.
8006     if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
8007         LQuals.getAddressSpace() != RQuals.getAddressSpace() ||
8008         LQuals.getObjCLifetime() != RQuals.getObjCLifetime())
8009       return QualType();
8010 
8011     // Exactly one GC qualifier difference is allowed: __strong is
8012     // okay if the other type has no GC qualifier but is an Objective
8013     // C object pointer (i.e. implicitly strong by default).  We fix
8014     // this by pretending that the unqualified type was actually
8015     // qualified __strong.
8016     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
8017     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
8018     assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
8019 
8020     if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
8021       return QualType();
8022 
8023     if (GC_L == Qualifiers::Strong && RHSCan->isObjCObjectPointerType()) {
8024       return mergeTypes(LHS, getObjCGCQualType(RHS, Qualifiers::Strong));
8025     }
8026     if (GC_R == Qualifiers::Strong && LHSCan->isObjCObjectPointerType()) {
8027       return mergeTypes(getObjCGCQualType(LHS, Qualifiers::Strong), RHS);
8028     }
8029     return QualType();
8030   }
8031 
8032   // Okay, qualifiers are equal.
8033 
8034   Type::TypeClass LHSClass = LHSCan->getTypeClass();
8035   Type::TypeClass RHSClass = RHSCan->getTypeClass();
8036 
8037   // We want to consider the two function types to be the same for these
8038   // comparisons, just force one to the other.
8039   if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
8040   if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
8041 
8042   // Same as above for arrays
8043   if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
8044     LHSClass = Type::ConstantArray;
8045   if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
8046     RHSClass = Type::ConstantArray;
8047 
8048   // ObjCInterfaces are just specialized ObjCObjects.
8049   if (LHSClass == Type::ObjCInterface) LHSClass = Type::ObjCObject;
8050   if (RHSClass == Type::ObjCInterface) RHSClass = Type::ObjCObject;
8051 
8052   // Canonicalize ExtVector -> Vector.
8053   if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
8054   if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
8055 
8056   // If the canonical type classes don't match.
8057   if (LHSClass != RHSClass) {
8058     // Note that we only have special rules for turning block enum
8059     // returns into block int returns, not vice-versa.
8060     if (const EnumType* ETy = LHS->getAs<EnumType>()) {
8061       return mergeEnumWithInteger(*this, ETy, RHS, false);
8062     }
8063     if (const EnumType* ETy = RHS->getAs<EnumType>()) {
8064       return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType);
8065     }
8066     // allow block pointer type to match an 'id' type.
8067     if (OfBlockPointer && !BlockReturnType) {
8068        if (LHS->isObjCIdType() && RHS->isBlockPointerType())
8069          return LHS;
8070       if (RHS->isObjCIdType() && LHS->isBlockPointerType())
8071         return RHS;
8072     }
8073 
8074     return QualType();
8075   }
8076 
8077   // The canonical type classes match.
8078   switch (LHSClass) {
8079 #define TYPE(Class, Base)
8080 #define ABSTRACT_TYPE(Class, Base)
8081 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
8082 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
8083 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
8084 #include "clang/AST/TypeNodes.def"
8085     llvm_unreachable("Non-canonical and dependent types shouldn't get here");
8086 
8087   case Type::Auto:
8088   case Type::LValueReference:
8089   case Type::RValueReference:
8090   case Type::MemberPointer:
8091     llvm_unreachable("C++ should never be in mergeTypes");
8092 
8093   case Type::ObjCInterface:
8094   case Type::IncompleteArray:
8095   case Type::VariableArray:
8096   case Type::FunctionProto:
8097   case Type::ExtVector:
8098     llvm_unreachable("Types are eliminated above");
8099 
8100   case Type::Pointer:
8101   {
8102     // Merge two pointer types, while trying to preserve typedef info
8103     QualType LHSPointee = LHS->getAs<PointerType>()->getPointeeType();
8104     QualType RHSPointee = RHS->getAs<PointerType>()->getPointeeType();
8105     if (Unqualified) {
8106       LHSPointee = LHSPointee.getUnqualifiedType();
8107       RHSPointee = RHSPointee.getUnqualifiedType();
8108     }
8109     QualType ResultType = mergeTypes(LHSPointee, RHSPointee, false,
8110                                      Unqualified);
8111     if (ResultType.isNull()) return QualType();
8112     if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
8113       return LHS;
8114     if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
8115       return RHS;
8116     return getPointerType(ResultType);
8117   }
8118   case Type::BlockPointer:
8119   {
8120     // Merge two block pointer types, while trying to preserve typedef info
8121     QualType LHSPointee = LHS->getAs<BlockPointerType>()->getPointeeType();
8122     QualType RHSPointee = RHS->getAs<BlockPointerType>()->getPointeeType();
8123     if (Unqualified) {
8124       LHSPointee = LHSPointee.getUnqualifiedType();
8125       RHSPointee = RHSPointee.getUnqualifiedType();
8126     }
8127     QualType ResultType = mergeTypes(LHSPointee, RHSPointee, OfBlockPointer,
8128                                      Unqualified);
8129     if (ResultType.isNull()) return QualType();
8130     if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
8131       return LHS;
8132     if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
8133       return RHS;
8134     return getBlockPointerType(ResultType);
8135   }
8136   case Type::Atomic:
8137   {
8138     // Merge two pointer types, while trying to preserve typedef info
8139     QualType LHSValue = LHS->getAs<AtomicType>()->getValueType();
8140     QualType RHSValue = RHS->getAs<AtomicType>()->getValueType();
8141     if (Unqualified) {
8142       LHSValue = LHSValue.getUnqualifiedType();
8143       RHSValue = RHSValue.getUnqualifiedType();
8144     }
8145     QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
8146                                      Unqualified);
8147     if (ResultType.isNull()) return QualType();
8148     if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
8149       return LHS;
8150     if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
8151       return RHS;
8152     return getAtomicType(ResultType);
8153   }
8154   case Type::ConstantArray:
8155   {
8156     const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
8157     const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
8158     if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
8159       return QualType();
8160 
8161     QualType LHSElem = getAsArrayType(LHS)->getElementType();
8162     QualType RHSElem = getAsArrayType(RHS)->getElementType();
8163     if (Unqualified) {
8164       LHSElem = LHSElem.getUnqualifiedType();
8165       RHSElem = RHSElem.getUnqualifiedType();
8166     }
8167 
8168     QualType ResultType = mergeTypes(LHSElem, RHSElem, false, Unqualified);
8169     if (ResultType.isNull()) return QualType();
8170     if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
8171       return LHS;
8172     if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
8173       return RHS;
8174     if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
8175                                           ArrayType::ArraySizeModifier(), 0);
8176     if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
8177                                           ArrayType::ArraySizeModifier(), 0);
8178     const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
8179     const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
8180     if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
8181       return LHS;
8182     if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
8183       return RHS;
8184     if (LVAT) {
8185       // FIXME: This isn't correct! But tricky to implement because
8186       // the array's size has to be the size of LHS, but the type
8187       // has to be different.
8188       return LHS;
8189     }
8190     if (RVAT) {
8191       // FIXME: This isn't correct! But tricky to implement because
8192       // the array's size has to be the size of RHS, but the type
8193       // has to be different.
8194       return RHS;
8195     }
8196     if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
8197     if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
8198     return getIncompleteArrayType(ResultType,
8199                                   ArrayType::ArraySizeModifier(), 0);
8200   }
8201   case Type::FunctionNoProto:
8202     return mergeFunctionTypes(LHS, RHS, OfBlockPointer, Unqualified);
8203   case Type::Record:
8204   case Type::Enum:
8205     return QualType();
8206   case Type::Builtin:
8207     // Only exactly equal builtin types are compatible, which is tested above.
8208     return QualType();
8209   case Type::Complex:
8210     // Distinct complex types are incompatible.
8211     return QualType();
8212   case Type::Vector:
8213     // FIXME: The merged type should be an ExtVector!
8214     if (areCompatVectorTypes(LHSCan->getAs<VectorType>(),
8215                              RHSCan->getAs<VectorType>()))
8216       return LHS;
8217     return QualType();
8218   case Type::ObjCObject: {
8219     // Check if the types are assignment compatible.
8220     // FIXME: This should be type compatibility, e.g. whether
8221     // "LHS x; RHS x;" at global scope is legal.
8222     const ObjCObjectType* LHSIface = LHS->getAs<ObjCObjectType>();
8223     const ObjCObjectType* RHSIface = RHS->getAs<ObjCObjectType>();
8224     if (canAssignObjCInterfaces(LHSIface, RHSIface))
8225       return LHS;
8226 
8227     return QualType();
8228   }
8229   case Type::ObjCObjectPointer: {
8230     if (OfBlockPointer) {
8231       if (canAssignObjCInterfacesInBlockPointer(
8232                                           LHS->getAs<ObjCObjectPointerType>(),
8233                                           RHS->getAs<ObjCObjectPointerType>(),
8234                                           BlockReturnType))
8235         return LHS;
8236       return QualType();
8237     }
8238     if (canAssignObjCInterfaces(LHS->getAs<ObjCObjectPointerType>(),
8239                                 RHS->getAs<ObjCObjectPointerType>()))
8240       return LHS;
8241 
8242     return QualType();
8243   }
8244   case Type::Pipe:
8245   {
8246     assert(LHS != RHS &&
8247            "Equivalent pipe types should have already been handled!");
8248     return QualType();
8249   }
8250   }
8251 
8252   llvm_unreachable("Invalid Type::Class!");
8253 }
8254 
8255 bool ASTContext::doFunctionTypesMatchOnExtParameterInfos(
8256                    const FunctionProtoType *firstFnType,
8257                    const FunctionProtoType *secondFnType) {
8258   // Fast path: if the first type doesn't have ext parameter infos,
8259   // we match if and only if they second type also doesn't have them.
8260   if (!firstFnType->hasExtParameterInfos())
8261     return !secondFnType->hasExtParameterInfos();
8262 
8263   // Otherwise, we can only match if the second type has them.
8264   if (!secondFnType->hasExtParameterInfos())
8265     return false;
8266 
8267   auto firstEPI = firstFnType->getExtParameterInfos();
8268   auto secondEPI = secondFnType->getExtParameterInfos();
8269   assert(firstEPI.size() == secondEPI.size());
8270 
8271   for (size_t i = 0, n = firstEPI.size(); i != n; ++i) {
8272     if (firstEPI[i] != secondEPI[i])
8273       return false;
8274   }
8275   return true;
8276 }
8277 
8278 void ASTContext::ResetObjCLayout(const ObjCContainerDecl *CD) {
8279   ObjCLayouts[CD] = nullptr;
8280 }
8281 
8282 /// mergeObjCGCQualifiers - This routine merges ObjC's GC attribute of 'LHS' and
8283 /// 'RHS' attributes and returns the merged version; including for function
8284 /// return types.
8285 QualType ASTContext::mergeObjCGCQualifiers(QualType LHS, QualType RHS) {
8286   QualType LHSCan = getCanonicalType(LHS),
8287   RHSCan = getCanonicalType(RHS);
8288   // If two types are identical, they are compatible.
8289   if (LHSCan == RHSCan)
8290     return LHS;
8291   if (RHSCan->isFunctionType()) {
8292     if (!LHSCan->isFunctionType())
8293       return QualType();
8294     QualType OldReturnType =
8295         cast<FunctionType>(RHSCan.getTypePtr())->getReturnType();
8296     QualType NewReturnType =
8297         cast<FunctionType>(LHSCan.getTypePtr())->getReturnType();
8298     QualType ResReturnType =
8299       mergeObjCGCQualifiers(NewReturnType, OldReturnType);
8300     if (ResReturnType.isNull())
8301       return QualType();
8302     if (ResReturnType == NewReturnType || ResReturnType == OldReturnType) {
8303       // id foo(); ... __strong id foo(); or: __strong id foo(); ... id foo();
8304       // In either case, use OldReturnType to build the new function type.
8305       const FunctionType *F = LHS->getAs<FunctionType>();
8306       if (const FunctionProtoType *FPT = cast<FunctionProtoType>(F)) {
8307         FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
8308         EPI.ExtInfo = getFunctionExtInfo(LHS);
8309         QualType ResultType =
8310             getFunctionType(OldReturnType, FPT->getParamTypes(), EPI);
8311         return ResultType;
8312       }
8313     }
8314     return QualType();
8315   }
8316 
8317   // If the qualifiers are different, the types can still be merged.
8318   Qualifiers LQuals = LHSCan.getLocalQualifiers();
8319   Qualifiers RQuals = RHSCan.getLocalQualifiers();
8320   if (LQuals != RQuals) {
8321     // If any of these qualifiers are different, we have a type mismatch.
8322     if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
8323         LQuals.getAddressSpace() != RQuals.getAddressSpace())
8324       return QualType();
8325 
8326     // Exactly one GC qualifier difference is allowed: __strong is
8327     // okay if the other type has no GC qualifier but is an Objective
8328     // C object pointer (i.e. implicitly strong by default).  We fix
8329     // this by pretending that the unqualified type was actually
8330     // qualified __strong.
8331     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
8332     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
8333     assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
8334 
8335     if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
8336       return QualType();
8337 
8338     if (GC_L == Qualifiers::Strong)
8339       return LHS;
8340     if (GC_R == Qualifiers::Strong)
8341       return RHS;
8342     return QualType();
8343   }
8344 
8345   if (LHSCan->isObjCObjectPointerType() && RHSCan->isObjCObjectPointerType()) {
8346     QualType LHSBaseQT = LHS->getAs<ObjCObjectPointerType>()->getPointeeType();
8347     QualType RHSBaseQT = RHS->getAs<ObjCObjectPointerType>()->getPointeeType();
8348     QualType ResQT = mergeObjCGCQualifiers(LHSBaseQT, RHSBaseQT);
8349     if (ResQT == LHSBaseQT)
8350       return LHS;
8351     if (ResQT == RHSBaseQT)
8352       return RHS;
8353   }
8354   return QualType();
8355 }
8356 
8357 //===----------------------------------------------------------------------===//
8358 //                         Integer Predicates
8359 //===----------------------------------------------------------------------===//
8360 
8361 unsigned ASTContext::getIntWidth(QualType T) const {
8362   if (const EnumType *ET = T->getAs<EnumType>())
8363     T = ET->getDecl()->getIntegerType();
8364   if (T->isBooleanType())
8365     return 1;
8366   // For builtin types, just use the standard type sizing method
8367   return (unsigned)getTypeSize(T);
8368 }
8369 
8370 QualType ASTContext::getCorrespondingUnsignedType(QualType T) const {
8371   assert(T->hasSignedIntegerRepresentation() && "Unexpected type");
8372 
8373   // Turn <4 x signed int> -> <4 x unsigned int>
8374   if (const VectorType *VTy = T->getAs<VectorType>())
8375     return getVectorType(getCorrespondingUnsignedType(VTy->getElementType()),
8376                          VTy->getNumElements(), VTy->getVectorKind());
8377 
8378   // For enums, we return the unsigned version of the base type.
8379   if (const EnumType *ETy = T->getAs<EnumType>())
8380     T = ETy->getDecl()->getIntegerType();
8381 
8382   const BuiltinType *BTy = T->getAs<BuiltinType>();
8383   assert(BTy && "Unexpected signed integer type");
8384   switch (BTy->getKind()) {
8385   case BuiltinType::Char_S:
8386   case BuiltinType::SChar:
8387     return UnsignedCharTy;
8388   case BuiltinType::Short:
8389     return UnsignedShortTy;
8390   case BuiltinType::Int:
8391     return UnsignedIntTy;
8392   case BuiltinType::Long:
8393     return UnsignedLongTy;
8394   case BuiltinType::LongLong:
8395     return UnsignedLongLongTy;
8396   case BuiltinType::Int128:
8397     return UnsignedInt128Ty;
8398   default:
8399     llvm_unreachable("Unexpected signed integer type");
8400   }
8401 }
8402 
8403 ASTMutationListener::~ASTMutationListener() { }
8404 
8405 void ASTMutationListener::DeducedReturnType(const FunctionDecl *FD,
8406                                             QualType ReturnType) {}
8407 
8408 //===----------------------------------------------------------------------===//
8409 //                          Builtin Type Computation
8410 //===----------------------------------------------------------------------===//
8411 
8412 /// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the
8413 /// pointer over the consumed characters.  This returns the resultant type.  If
8414 /// AllowTypeModifiers is false then modifier like * are not parsed, just basic
8415 /// types.  This allows "v2i*" to be parsed as a pointer to a v2i instead of
8416 /// a vector of "i*".
8417 ///
8418 /// RequiresICE is filled in on return to indicate whether the value is required
8419 /// to be an Integer Constant Expression.
8420 static QualType DecodeTypeFromStr(const char *&Str, const ASTContext &Context,
8421                                   ASTContext::GetBuiltinTypeError &Error,
8422                                   bool &RequiresICE,
8423                                   bool AllowTypeModifiers) {
8424   // Modifiers.
8425   int HowLong = 0;
8426   bool Signed = false, Unsigned = false;
8427   RequiresICE = false;
8428 
8429   // Read the prefixed modifiers first.
8430   bool Done = false;
8431   while (!Done) {
8432     switch (*Str++) {
8433     default: Done = true; --Str; break;
8434     case 'I':
8435       RequiresICE = true;
8436       break;
8437     case 'S':
8438       assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
8439       assert(!Signed && "Can't use 'S' modifier multiple times!");
8440       Signed = true;
8441       break;
8442     case 'U':
8443       assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
8444       assert(!Unsigned && "Can't use 'U' modifier multiple times!");
8445       Unsigned = true;
8446       break;
8447     case 'L':
8448       assert(HowLong <= 2 && "Can't have LLLL modifier");
8449       ++HowLong;
8450       break;
8451     case 'W':
8452       // This modifier represents int64 type.
8453       assert(HowLong == 0 && "Can't use both 'L' and 'W' modifiers!");
8454       switch (Context.getTargetInfo().getInt64Type()) {
8455       default:
8456         llvm_unreachable("Unexpected integer type");
8457       case TargetInfo::SignedLong:
8458         HowLong = 1;
8459         break;
8460       case TargetInfo::SignedLongLong:
8461         HowLong = 2;
8462         break;
8463       }
8464     }
8465   }
8466 
8467   QualType Type;
8468 
8469   // Read the base type.
8470   switch (*Str++) {
8471   default: llvm_unreachable("Unknown builtin type letter!");
8472   case 'v':
8473     assert(HowLong == 0 && !Signed && !Unsigned &&
8474            "Bad modifiers used with 'v'!");
8475     Type = Context.VoidTy;
8476     break;
8477   case 'h':
8478     assert(HowLong == 0 && !Signed && !Unsigned &&
8479            "Bad modifiers used with 'h'!");
8480     Type = Context.HalfTy;
8481     break;
8482   case 'f':
8483     assert(HowLong == 0 && !Signed && !Unsigned &&
8484            "Bad modifiers used with 'f'!");
8485     Type = Context.FloatTy;
8486     break;
8487   case 'd':
8488     assert(HowLong < 2 && !Signed && !Unsigned &&
8489            "Bad modifiers used with 'd'!");
8490     if (HowLong)
8491       Type = Context.LongDoubleTy;
8492     else
8493       Type = Context.DoubleTy;
8494     break;
8495   case 's':
8496     assert(HowLong == 0 && "Bad modifiers used with 's'!");
8497     if (Unsigned)
8498       Type = Context.UnsignedShortTy;
8499     else
8500       Type = Context.ShortTy;
8501     break;
8502   case 'i':
8503     if (HowLong == 3)
8504       Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
8505     else if (HowLong == 2)
8506       Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
8507     else if (HowLong == 1)
8508       Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy;
8509     else
8510       Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy;
8511     break;
8512   case 'c':
8513     assert(HowLong == 0 && "Bad modifiers used with 'c'!");
8514     if (Signed)
8515       Type = Context.SignedCharTy;
8516     else if (Unsigned)
8517       Type = Context.UnsignedCharTy;
8518     else
8519       Type = Context.CharTy;
8520     break;
8521   case 'b': // boolean
8522     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!");
8523     Type = Context.BoolTy;
8524     break;
8525   case 'z':  // size_t.
8526     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!");
8527     Type = Context.getSizeType();
8528     break;
8529   case 'w':  // wchar_t.
8530     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'w'!");
8531     Type = Context.getWideCharType();
8532     break;
8533   case 'F':
8534     Type = Context.getCFConstantStringType();
8535     break;
8536   case 'G':
8537     Type = Context.getObjCIdType();
8538     break;
8539   case 'H':
8540     Type = Context.getObjCSelType();
8541     break;
8542   case 'M':
8543     Type = Context.getObjCSuperType();
8544     break;
8545   case 'a':
8546     Type = Context.getBuiltinVaListType();
8547     assert(!Type.isNull() && "builtin va list type not initialized!");
8548     break;
8549   case 'A':
8550     // This is a "reference" to a va_list; however, what exactly
8551     // this means depends on how va_list is defined. There are two
8552     // different kinds of va_list: ones passed by value, and ones
8553     // passed by reference.  An example of a by-value va_list is
8554     // x86, where va_list is a char*. An example of by-ref va_list
8555     // is x86-64, where va_list is a __va_list_tag[1]. For x86,
8556     // we want this argument to be a char*&; for x86-64, we want
8557     // it to be a __va_list_tag*.
8558     Type = Context.getBuiltinVaListType();
8559     assert(!Type.isNull() && "builtin va list type not initialized!");
8560     if (Type->isArrayType())
8561       Type = Context.getArrayDecayedType(Type);
8562     else
8563       Type = Context.getLValueReferenceType(Type);
8564     break;
8565   case 'V': {
8566     char *End;
8567     unsigned NumElements = strtoul(Str, &End, 10);
8568     assert(End != Str && "Missing vector size");
8569     Str = End;
8570 
8571     QualType ElementType = DecodeTypeFromStr(Str, Context, Error,
8572                                              RequiresICE, false);
8573     assert(!RequiresICE && "Can't require vector ICE");
8574 
8575     // TODO: No way to make AltiVec vectors in builtins yet.
8576     Type = Context.getVectorType(ElementType, NumElements,
8577                                  VectorType::GenericVector);
8578     break;
8579   }
8580   case 'E': {
8581     char *End;
8582 
8583     unsigned NumElements = strtoul(Str, &End, 10);
8584     assert(End != Str && "Missing vector size");
8585 
8586     Str = End;
8587 
8588     QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
8589                                              false);
8590     Type = Context.getExtVectorType(ElementType, NumElements);
8591     break;
8592   }
8593   case 'X': {
8594     QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
8595                                              false);
8596     assert(!RequiresICE && "Can't require complex ICE");
8597     Type = Context.getComplexType(ElementType);
8598     break;
8599   }
8600   case 'Y' : {
8601     Type = Context.getPointerDiffType();
8602     break;
8603   }
8604   case 'P':
8605     Type = Context.getFILEType();
8606     if (Type.isNull()) {
8607       Error = ASTContext::GE_Missing_stdio;
8608       return QualType();
8609     }
8610     break;
8611   case 'J':
8612     if (Signed)
8613       Type = Context.getsigjmp_bufType();
8614     else
8615       Type = Context.getjmp_bufType();
8616 
8617     if (Type.isNull()) {
8618       Error = ASTContext::GE_Missing_setjmp;
8619       return QualType();
8620     }
8621     break;
8622   case 'K':
8623     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'K'!");
8624     Type = Context.getucontext_tType();
8625 
8626     if (Type.isNull()) {
8627       Error = ASTContext::GE_Missing_ucontext;
8628       return QualType();
8629     }
8630     break;
8631   case 'p':
8632     Type = Context.getProcessIDType();
8633     break;
8634   }
8635 
8636   // If there are modifiers and if we're allowed to parse them, go for it.
8637   Done = !AllowTypeModifiers;
8638   while (!Done) {
8639     switch (char c = *Str++) {
8640     default: Done = true; --Str; break;
8641     case '*':
8642     case '&': {
8643       // Both pointers and references can have their pointee types
8644       // qualified with an address space.
8645       char *End;
8646       unsigned AddrSpace = strtoul(Str, &End, 10);
8647       if (End != Str && AddrSpace != 0) {
8648         Type = Context.getAddrSpaceQualType(Type, AddrSpace);
8649         Str = End;
8650       }
8651       if (c == '*')
8652         Type = Context.getPointerType(Type);
8653       else
8654         Type = Context.getLValueReferenceType(Type);
8655       break;
8656     }
8657     // FIXME: There's no way to have a built-in with an rvalue ref arg.
8658     case 'C':
8659       Type = Type.withConst();
8660       break;
8661     case 'D':
8662       Type = Context.getVolatileType(Type);
8663       break;
8664     case 'R':
8665       Type = Type.withRestrict();
8666       break;
8667     }
8668   }
8669 
8670   assert((!RequiresICE || Type->isIntegralOrEnumerationType()) &&
8671          "Integer constant 'I' type must be an integer");
8672 
8673   return Type;
8674 }
8675 
8676 /// GetBuiltinType - Return the type for the specified builtin.
8677 QualType ASTContext::GetBuiltinType(unsigned Id,
8678                                     GetBuiltinTypeError &Error,
8679                                     unsigned *IntegerConstantArgs) const {
8680   const char *TypeStr = BuiltinInfo.getTypeString(Id);
8681 
8682   SmallVector<QualType, 8> ArgTypes;
8683 
8684   bool RequiresICE = false;
8685   Error = GE_None;
8686   QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error,
8687                                        RequiresICE, true);
8688   if (Error != GE_None)
8689     return QualType();
8690 
8691   assert(!RequiresICE && "Result of intrinsic cannot be required to be an ICE");
8692 
8693   while (TypeStr[0] && TypeStr[0] != '.') {
8694     QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error, RequiresICE, true);
8695     if (Error != GE_None)
8696       return QualType();
8697 
8698     // If this argument is required to be an IntegerConstantExpression and the
8699     // caller cares, fill in the bitmask we return.
8700     if (RequiresICE && IntegerConstantArgs)
8701       *IntegerConstantArgs |= 1 << ArgTypes.size();
8702 
8703     // Do array -> pointer decay.  The builtin should use the decayed type.
8704     if (Ty->isArrayType())
8705       Ty = getArrayDecayedType(Ty);
8706 
8707     ArgTypes.push_back(Ty);
8708   }
8709 
8710   if (Id == Builtin::BI__GetExceptionInfo)
8711     return QualType();
8712 
8713   assert((TypeStr[0] != '.' || TypeStr[1] == 0) &&
8714          "'.' should only occur at end of builtin type list!");
8715 
8716   FunctionType::ExtInfo EI(CC_C);
8717   if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
8718 
8719   bool Variadic = (TypeStr[0] == '.');
8720 
8721   // We really shouldn't be making a no-proto type here, especially in C++.
8722   if (ArgTypes.empty() && Variadic)
8723     return getFunctionNoProtoType(ResType, EI);
8724 
8725   FunctionProtoType::ExtProtoInfo EPI;
8726   EPI.ExtInfo = EI;
8727   EPI.Variadic = Variadic;
8728   if (getLangOpts().CPlusPlus && BuiltinInfo.isNoThrow(Id))
8729     EPI.ExceptionSpec.Type =
8730         getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone;
8731 
8732   return getFunctionType(ResType, ArgTypes, EPI);
8733 }
8734 
8735 static GVALinkage basicGVALinkageForFunction(const ASTContext &Context,
8736                                              const FunctionDecl *FD) {
8737   if (!FD->isExternallyVisible())
8738     return GVA_Internal;
8739 
8740   GVALinkage External = GVA_StrongExternal;
8741   switch (FD->getTemplateSpecializationKind()) {
8742   case TSK_Undeclared:
8743   case TSK_ExplicitSpecialization:
8744     External = GVA_StrongExternal;
8745     break;
8746 
8747   case TSK_ExplicitInstantiationDefinition:
8748     return GVA_StrongODR;
8749 
8750   // C++11 [temp.explicit]p10:
8751   //   [ Note: The intent is that an inline function that is the subject of
8752   //   an explicit instantiation declaration will still be implicitly
8753   //   instantiated when used so that the body can be considered for
8754   //   inlining, but that no out-of-line copy of the inline function would be
8755   //   generated in the translation unit. -- end note ]
8756   case TSK_ExplicitInstantiationDeclaration:
8757     return GVA_AvailableExternally;
8758 
8759   case TSK_ImplicitInstantiation:
8760     External = GVA_DiscardableODR;
8761     break;
8762   }
8763 
8764   if (!FD->isInlined())
8765     return External;
8766 
8767   if ((!Context.getLangOpts().CPlusPlus &&
8768        !Context.getTargetInfo().getCXXABI().isMicrosoft() &&
8769        !FD->hasAttr<DLLExportAttr>()) ||
8770       FD->hasAttr<GNUInlineAttr>()) {
8771     // FIXME: This doesn't match gcc's behavior for dllexport inline functions.
8772 
8773     // GNU or C99 inline semantics. Determine whether this symbol should be
8774     // externally visible.
8775     if (FD->isInlineDefinitionExternallyVisible())
8776       return External;
8777 
8778     // C99 inline semantics, where the symbol is not externally visible.
8779     return GVA_AvailableExternally;
8780   }
8781 
8782   // Functions specified with extern and inline in -fms-compatibility mode
8783   // forcibly get emitted.  While the body of the function cannot be later
8784   // replaced, the function definition cannot be discarded.
8785   if (FD->isMSExternInline())
8786     return GVA_StrongODR;
8787 
8788   return GVA_DiscardableODR;
8789 }
8790 
8791 static GVALinkage adjustGVALinkageForAttributes(const ASTContext &Context,
8792                                                 GVALinkage L, const Decl *D) {
8793   // See http://msdn.microsoft.com/en-us/library/xa0d9ste.aspx
8794   // dllexport/dllimport on inline functions.
8795   if (D->hasAttr<DLLImportAttr>()) {
8796     if (L == GVA_DiscardableODR || L == GVA_StrongODR)
8797       return GVA_AvailableExternally;
8798   } else if (D->hasAttr<DLLExportAttr>()) {
8799     if (L == GVA_DiscardableODR)
8800       return GVA_StrongODR;
8801   } else if (Context.getLangOpts().CUDA && Context.getLangOpts().CUDAIsDevice &&
8802              D->hasAttr<CUDAGlobalAttr>()) {
8803     // Device-side functions with __global__ attribute must always be
8804     // visible externally so they can be launched from host.
8805     if (L == GVA_DiscardableODR || L == GVA_Internal)
8806       return GVA_StrongODR;
8807   }
8808   return L;
8809 }
8810 
8811 GVALinkage ASTContext::GetGVALinkageForFunction(const FunctionDecl *FD) const {
8812   return adjustGVALinkageForAttributes(
8813       *this, basicGVALinkageForFunction(*this, FD), FD);
8814 }
8815 
8816 static GVALinkage basicGVALinkageForVariable(const ASTContext &Context,
8817                                              const VarDecl *VD) {
8818   if (!VD->isExternallyVisible())
8819     return GVA_Internal;
8820 
8821   if (VD->isStaticLocal()) {
8822     GVALinkage StaticLocalLinkage = GVA_DiscardableODR;
8823     const DeclContext *LexicalContext = VD->getParentFunctionOrMethod();
8824     while (LexicalContext && !isa<FunctionDecl>(LexicalContext))
8825       LexicalContext = LexicalContext->getLexicalParent();
8826 
8827     // Let the static local variable inherit its linkage from the nearest
8828     // enclosing function.
8829     if (LexicalContext)
8830       StaticLocalLinkage =
8831           Context.GetGVALinkageForFunction(cast<FunctionDecl>(LexicalContext));
8832 
8833     // GVA_StrongODR function linkage is stronger than what we need,
8834     // downgrade to GVA_DiscardableODR.
8835     // This allows us to discard the variable if we never end up needing it.
8836     return StaticLocalLinkage == GVA_StrongODR ? GVA_DiscardableODR
8837                                                : StaticLocalLinkage;
8838   }
8839 
8840   // MSVC treats in-class initialized static data members as definitions.
8841   // By giving them non-strong linkage, out-of-line definitions won't
8842   // cause link errors.
8843   if (Context.isMSStaticDataMemberInlineDefinition(VD))
8844     return GVA_DiscardableODR;
8845 
8846   // Most non-template variables have strong linkage; inline variables are
8847   // linkonce_odr or (occasionally, for compatibility) weak_odr.
8848   GVALinkage StrongLinkage;
8849   switch (Context.getInlineVariableDefinitionKind(VD)) {
8850   case ASTContext::InlineVariableDefinitionKind::None:
8851     StrongLinkage = GVA_StrongExternal;
8852     break;
8853   case ASTContext::InlineVariableDefinitionKind::Weak:
8854   case ASTContext::InlineVariableDefinitionKind::WeakUnknown:
8855     StrongLinkage = GVA_DiscardableODR;
8856     break;
8857   case ASTContext::InlineVariableDefinitionKind::Strong:
8858     StrongLinkage = GVA_StrongODR;
8859     break;
8860   }
8861 
8862   switch (VD->getTemplateSpecializationKind()) {
8863   case TSK_Undeclared:
8864     return StrongLinkage;
8865 
8866   case TSK_ExplicitSpecialization:
8867     return Context.getTargetInfo().getCXXABI().isMicrosoft() &&
8868                    VD->isStaticDataMember()
8869                ? GVA_StrongODR
8870                : StrongLinkage;
8871 
8872   case TSK_ExplicitInstantiationDefinition:
8873     return GVA_StrongODR;
8874 
8875   case TSK_ExplicitInstantiationDeclaration:
8876     return GVA_AvailableExternally;
8877 
8878   case TSK_ImplicitInstantiation:
8879     return GVA_DiscardableODR;
8880   }
8881 
8882   llvm_unreachable("Invalid Linkage!");
8883 }
8884 
8885 GVALinkage ASTContext::GetGVALinkageForVariable(const VarDecl *VD) {
8886   return adjustGVALinkageForAttributes(
8887       *this, basicGVALinkageForVariable(*this, VD), VD);
8888 }
8889 
8890 bool ASTContext::DeclMustBeEmitted(const Decl *D) {
8891   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
8892     if (!VD->isFileVarDecl())
8893       return false;
8894     // Global named register variables (GNU extension) are never emitted.
8895     if (VD->getStorageClass() == SC_Register)
8896       return false;
8897     if (VD->getDescribedVarTemplate() ||
8898         isa<VarTemplatePartialSpecializationDecl>(VD))
8899       return false;
8900   } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
8901     // We never need to emit an uninstantiated function template.
8902     if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
8903       return false;
8904   } else if (isa<PragmaCommentDecl>(D))
8905     return true;
8906   else if (isa<OMPThreadPrivateDecl>(D) ||
8907            D->hasAttr<OMPDeclareTargetDeclAttr>())
8908     return true;
8909   else if (isa<PragmaDetectMismatchDecl>(D))
8910     return true;
8911   else if (isa<OMPThreadPrivateDecl>(D))
8912     return !D->getDeclContext()->isDependentContext();
8913   else if (isa<OMPDeclareReductionDecl>(D))
8914     return !D->getDeclContext()->isDependentContext();
8915   else if (isa<ImportDecl>(D))
8916     return true;
8917   else
8918     return false;
8919 
8920   // If this is a member of a class template, we do not need to emit it.
8921   if (D->getDeclContext()->isDependentContext())
8922     return false;
8923 
8924   // Weak references don't produce any output by themselves.
8925   if (D->hasAttr<WeakRefAttr>())
8926     return false;
8927 
8928   // Aliases and used decls are required.
8929   if (D->hasAttr<AliasAttr>() || D->hasAttr<UsedAttr>())
8930     return true;
8931 
8932   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
8933     // Forward declarations aren't required.
8934     if (!FD->doesThisDeclarationHaveABody())
8935       return FD->doesDeclarationForceExternallyVisibleDefinition();
8936 
8937     // Constructors and destructors are required.
8938     if (FD->hasAttr<ConstructorAttr>() || FD->hasAttr<DestructorAttr>())
8939       return true;
8940 
8941     // The key function for a class is required.  This rule only comes
8942     // into play when inline functions can be key functions, though.
8943     if (getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
8944       if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
8945         const CXXRecordDecl *RD = MD->getParent();
8946         if (MD->isOutOfLine() && RD->isDynamicClass()) {
8947           const CXXMethodDecl *KeyFunc = getCurrentKeyFunction(RD);
8948           if (KeyFunc && KeyFunc->getCanonicalDecl() == MD->getCanonicalDecl())
8949             return true;
8950         }
8951       }
8952     }
8953 
8954     // static, static inline, always_inline, and extern inline functions can
8955     // always be deferred.  Normal inline functions can be deferred in C99/C++.
8956     // Implicit template instantiations can also be deferred in C++.
8957     return !isDiscardableGVALinkage(GetGVALinkageForFunction(FD));
8958   }
8959 
8960   const VarDecl *VD = cast<VarDecl>(D);
8961   assert(VD->isFileVarDecl() && "Expected file scoped var");
8962 
8963   if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly &&
8964       !isMSStaticDataMemberInlineDefinition(VD))
8965     return false;
8966 
8967   // Variables that can be needed in other TUs are required.
8968   if (!isDiscardableGVALinkage(GetGVALinkageForVariable(VD)))
8969     return true;
8970 
8971   // Variables that have destruction with side-effects are required.
8972   if (VD->getType().isDestructedType())
8973     return true;
8974 
8975   // Variables that have initialization with side-effects are required.
8976   if (VD->getInit() && VD->getInit()->HasSideEffects(*this) &&
8977       !VD->evaluateValue())
8978     return true;
8979 
8980   // Likewise, variables with tuple-like bindings are required if their
8981   // bindings have side-effects.
8982   if (auto *DD = dyn_cast<DecompositionDecl>(VD))
8983     for (auto *BD : DD->bindings())
8984       if (auto *BindingVD = BD->getHoldingVar())
8985         if (DeclMustBeEmitted(BindingVD))
8986           return true;
8987 
8988   return false;
8989 }
8990 
8991 CallingConv ASTContext::getDefaultCallingConvention(bool IsVariadic,
8992                                                     bool IsCXXMethod) const {
8993   // Pass through to the C++ ABI object
8994   if (IsCXXMethod)
8995     return ABI->getDefaultMethodCallConv(IsVariadic);
8996 
8997   switch (LangOpts.getDefaultCallingConv()) {
8998   case LangOptions::DCC_None:
8999     break;
9000   case LangOptions::DCC_CDecl:
9001     return CC_C;
9002   case LangOptions::DCC_FastCall:
9003     if (getTargetInfo().hasFeature("sse2"))
9004       return CC_X86FastCall;
9005     break;
9006   case LangOptions::DCC_StdCall:
9007     if (!IsVariadic)
9008       return CC_X86StdCall;
9009     break;
9010   case LangOptions::DCC_VectorCall:
9011     // __vectorcall cannot be applied to variadic functions.
9012     if (!IsVariadic)
9013       return CC_X86VectorCall;
9014     break;
9015   }
9016   return Target->getDefaultCallingConv(TargetInfo::CCMT_Unknown);
9017 }
9018 
9019 bool ASTContext::isNearlyEmpty(const CXXRecordDecl *RD) const {
9020   // Pass through to the C++ ABI object
9021   return ABI->isNearlyEmpty(RD);
9022 }
9023 
9024 VTableContextBase *ASTContext::getVTableContext() {
9025   if (!VTContext.get()) {
9026     if (Target->getCXXABI().isMicrosoft())
9027       VTContext.reset(new MicrosoftVTableContext(*this));
9028     else
9029       VTContext.reset(new ItaniumVTableContext(*this));
9030   }
9031   return VTContext.get();
9032 }
9033 
9034 MangleContext *ASTContext::createMangleContext() {
9035   switch (Target->getCXXABI().getKind()) {
9036   case TargetCXXABI::GenericAArch64:
9037   case TargetCXXABI::GenericItanium:
9038   case TargetCXXABI::GenericARM:
9039   case TargetCXXABI::GenericMIPS:
9040   case TargetCXXABI::iOS:
9041   case TargetCXXABI::iOS64:
9042   case TargetCXXABI::WebAssembly:
9043   case TargetCXXABI::WatchOS:
9044     return ItaniumMangleContext::create(*this, getDiagnostics());
9045   case TargetCXXABI::Microsoft:
9046     return MicrosoftMangleContext::create(*this, getDiagnostics());
9047   }
9048   llvm_unreachable("Unsupported ABI");
9049 }
9050 
9051 CXXABI::~CXXABI() {}
9052 
9053 size_t ASTContext::getSideTableAllocatedMemory() const {
9054   return ASTRecordLayouts.getMemorySize() +
9055          llvm::capacity_in_bytes(ObjCLayouts) +
9056          llvm::capacity_in_bytes(KeyFunctions) +
9057          llvm::capacity_in_bytes(ObjCImpls) +
9058          llvm::capacity_in_bytes(BlockVarCopyInits) +
9059          llvm::capacity_in_bytes(DeclAttrs) +
9060          llvm::capacity_in_bytes(TemplateOrInstantiation) +
9061          llvm::capacity_in_bytes(InstantiatedFromUsingDecl) +
9062          llvm::capacity_in_bytes(InstantiatedFromUsingShadowDecl) +
9063          llvm::capacity_in_bytes(InstantiatedFromUnnamedFieldDecl) +
9064          llvm::capacity_in_bytes(OverriddenMethods) +
9065          llvm::capacity_in_bytes(Types) +
9066          llvm::capacity_in_bytes(VariableArrayTypes) +
9067          llvm::capacity_in_bytes(ClassScopeSpecializationPattern);
9068 }
9069 
9070 /// getIntTypeForBitwidth -
9071 /// sets integer QualTy according to specified details:
9072 /// bitwidth, signed/unsigned.
9073 /// Returns empty type if there is no appropriate target types.
9074 QualType ASTContext::getIntTypeForBitwidth(unsigned DestWidth,
9075                                            unsigned Signed) const {
9076   TargetInfo::IntType Ty = getTargetInfo().getIntTypeByWidth(DestWidth, Signed);
9077   CanQualType QualTy = getFromTargetType(Ty);
9078   if (!QualTy && DestWidth == 128)
9079     return Signed ? Int128Ty : UnsignedInt128Ty;
9080   return QualTy;
9081 }
9082 
9083 /// getRealTypeForBitwidth -
9084 /// sets floating point QualTy according to specified bitwidth.
9085 /// Returns empty type if there is no appropriate target types.
9086 QualType ASTContext::getRealTypeForBitwidth(unsigned DestWidth) const {
9087   TargetInfo::RealType Ty = getTargetInfo().getRealTypeByWidth(DestWidth);
9088   switch (Ty) {
9089   case TargetInfo::Float:
9090     return FloatTy;
9091   case TargetInfo::Double:
9092     return DoubleTy;
9093   case TargetInfo::LongDouble:
9094     return LongDoubleTy;
9095   case TargetInfo::Float128:
9096     return Float128Ty;
9097   case TargetInfo::NoFloat:
9098     return QualType();
9099   }
9100 
9101   llvm_unreachable("Unhandled TargetInfo::RealType value");
9102 }
9103 
9104 void ASTContext::setManglingNumber(const NamedDecl *ND, unsigned Number) {
9105   if (Number > 1)
9106     MangleNumbers[ND] = Number;
9107 }
9108 
9109 unsigned ASTContext::getManglingNumber(const NamedDecl *ND) const {
9110   auto I = MangleNumbers.find(ND);
9111   return I != MangleNumbers.end() ? I->second : 1;
9112 }
9113 
9114 void ASTContext::setStaticLocalNumber(const VarDecl *VD, unsigned Number) {
9115   if (Number > 1)
9116     StaticLocalNumbers[VD] = Number;
9117 }
9118 
9119 unsigned ASTContext::getStaticLocalNumber(const VarDecl *VD) const {
9120   auto I = StaticLocalNumbers.find(VD);
9121   return I != StaticLocalNumbers.end() ? I->second : 1;
9122 }
9123 
9124 MangleNumberingContext &
9125 ASTContext::getManglingNumberContext(const DeclContext *DC) {
9126   assert(LangOpts.CPlusPlus);  // We don't need mangling numbers for plain C.
9127   std::unique_ptr<MangleNumberingContext> &MCtx = MangleNumberingContexts[DC];
9128   if (!MCtx)
9129     MCtx = createMangleNumberingContext();
9130   return *MCtx;
9131 }
9132 
9133 std::unique_ptr<MangleNumberingContext>
9134 ASTContext::createMangleNumberingContext() const {
9135   return ABI->createMangleNumberingContext();
9136 }
9137 
9138 const CXXConstructorDecl *
9139 ASTContext::getCopyConstructorForExceptionObject(CXXRecordDecl *RD) {
9140   return ABI->getCopyConstructorForExceptionObject(
9141       cast<CXXRecordDecl>(RD->getFirstDecl()));
9142 }
9143 
9144 void ASTContext::addCopyConstructorForExceptionObject(CXXRecordDecl *RD,
9145                                                       CXXConstructorDecl *CD) {
9146   return ABI->addCopyConstructorForExceptionObject(
9147       cast<CXXRecordDecl>(RD->getFirstDecl()),
9148       cast<CXXConstructorDecl>(CD->getFirstDecl()));
9149 }
9150 
9151 void ASTContext::addTypedefNameForUnnamedTagDecl(TagDecl *TD,
9152                                                  TypedefNameDecl *DD) {
9153   return ABI->addTypedefNameForUnnamedTagDecl(TD, DD);
9154 }
9155 
9156 TypedefNameDecl *
9157 ASTContext::getTypedefNameForUnnamedTagDecl(const TagDecl *TD) {
9158   return ABI->getTypedefNameForUnnamedTagDecl(TD);
9159 }
9160 
9161 void ASTContext::addDeclaratorForUnnamedTagDecl(TagDecl *TD,
9162                                                 DeclaratorDecl *DD) {
9163   return ABI->addDeclaratorForUnnamedTagDecl(TD, DD);
9164 }
9165 
9166 DeclaratorDecl *ASTContext::getDeclaratorForUnnamedTagDecl(const TagDecl *TD) {
9167   return ABI->getDeclaratorForUnnamedTagDecl(TD);
9168 }
9169 
9170 void ASTContext::setParameterIndex(const ParmVarDecl *D, unsigned int index) {
9171   ParamIndices[D] = index;
9172 }
9173 
9174 unsigned ASTContext::getParameterIndex(const ParmVarDecl *D) const {
9175   ParameterIndexTable::const_iterator I = ParamIndices.find(D);
9176   assert(I != ParamIndices.end() &&
9177          "ParmIndices lacks entry set by ParmVarDecl");
9178   return I->second;
9179 }
9180 
9181 APValue *
9182 ASTContext::getMaterializedTemporaryValue(const MaterializeTemporaryExpr *E,
9183                                           bool MayCreate) {
9184   assert(E && E->getStorageDuration() == SD_Static &&
9185          "don't need to cache the computed value for this temporary");
9186   if (MayCreate) {
9187     APValue *&MTVI = MaterializedTemporaryValues[E];
9188     if (!MTVI)
9189       MTVI = new (*this) APValue;
9190     return MTVI;
9191   }
9192 
9193   return MaterializedTemporaryValues.lookup(E);
9194 }
9195 
9196 bool ASTContext::AtomicUsesUnsupportedLibcall(const AtomicExpr *E) const {
9197   const llvm::Triple &T = getTargetInfo().getTriple();
9198   if (!T.isOSDarwin())
9199     return false;
9200 
9201   if (!(T.isiOS() && T.isOSVersionLT(7)) &&
9202       !(T.isMacOSX() && T.isOSVersionLT(10, 9)))
9203     return false;
9204 
9205   QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
9206   CharUnits sizeChars = getTypeSizeInChars(AtomicTy);
9207   uint64_t Size = sizeChars.getQuantity();
9208   CharUnits alignChars = getTypeAlignInChars(AtomicTy);
9209   unsigned Align = alignChars.getQuantity();
9210   unsigned MaxInlineWidthInBits = getTargetInfo().getMaxAtomicInlineWidth();
9211   return (Size != Align || toBits(sizeChars) > MaxInlineWidthInBits);
9212 }
9213 
9214 namespace {
9215 
9216 ast_type_traits::DynTypedNode getSingleDynTypedNodeFromParentMap(
9217     ASTContext::ParentMapPointers::mapped_type U) {
9218   if (const auto *D = U.dyn_cast<const Decl *>())
9219     return ast_type_traits::DynTypedNode::create(*D);
9220   if (const auto *S = U.dyn_cast<const Stmt *>())
9221     return ast_type_traits::DynTypedNode::create(*S);
9222   return *U.get<ast_type_traits::DynTypedNode *>();
9223 }
9224 
9225 /// Template specializations to abstract away from pointers and TypeLocs.
9226 /// @{
9227 template <typename T>
9228 ast_type_traits::DynTypedNode createDynTypedNode(const T &Node) {
9229   return ast_type_traits::DynTypedNode::create(*Node);
9230 }
9231 template <>
9232 ast_type_traits::DynTypedNode createDynTypedNode(const TypeLoc &Node) {
9233   return ast_type_traits::DynTypedNode::create(Node);
9234 }
9235 template <>
9236 ast_type_traits::DynTypedNode
9237 createDynTypedNode(const NestedNameSpecifierLoc &Node) {
9238   return ast_type_traits::DynTypedNode::create(Node);
9239 }
9240 /// @}
9241 
9242   /// \brief A \c RecursiveASTVisitor that builds a map from nodes to their
9243   /// parents as defined by the \c RecursiveASTVisitor.
9244   ///
9245   /// Note that the relationship described here is purely in terms of AST
9246   /// traversal - there are other relationships (for example declaration context)
9247   /// in the AST that are better modeled by special matchers.
9248   ///
9249   /// FIXME: Currently only builds up the map using \c Stmt and \c Decl nodes.
9250   class ParentMapASTVisitor : public RecursiveASTVisitor<ParentMapASTVisitor> {
9251   public:
9252     /// \brief Builds and returns the translation unit's parent map.
9253     ///
9254     ///  The caller takes ownership of the returned \c ParentMap.
9255     static std::pair<ASTContext::ParentMapPointers *,
9256                      ASTContext::ParentMapOtherNodes *>
9257     buildMap(TranslationUnitDecl &TU) {
9258       ParentMapASTVisitor Visitor(new ASTContext::ParentMapPointers,
9259                                   new ASTContext::ParentMapOtherNodes);
9260       Visitor.TraverseDecl(&TU);
9261       return std::make_pair(Visitor.Parents, Visitor.OtherParents);
9262     }
9263 
9264   private:
9265     typedef RecursiveASTVisitor<ParentMapASTVisitor> VisitorBase;
9266 
9267     ParentMapASTVisitor(ASTContext::ParentMapPointers *Parents,
9268                         ASTContext::ParentMapOtherNodes *OtherParents)
9269         : Parents(Parents), OtherParents(OtherParents) {}
9270 
9271     bool shouldVisitTemplateInstantiations() const {
9272       return true;
9273     }
9274     bool shouldVisitImplicitCode() const {
9275       return true;
9276     }
9277 
9278     template <typename T, typename MapNodeTy, typename BaseTraverseFn,
9279               typename MapTy>
9280     bool TraverseNode(T Node, MapNodeTy MapNode,
9281                       BaseTraverseFn BaseTraverse, MapTy *Parents) {
9282       if (!Node)
9283         return true;
9284       if (ParentStack.size() > 0) {
9285         // FIXME: Currently we add the same parent multiple times, but only
9286         // when no memoization data is available for the type.
9287         // For example when we visit all subexpressions of template
9288         // instantiations; this is suboptimal, but benign: the only way to
9289         // visit those is with hasAncestor / hasParent, and those do not create
9290         // new matches.
9291         // The plan is to enable DynTypedNode to be storable in a map or hash
9292         // map. The main problem there is to implement hash functions /
9293         // comparison operators for all types that DynTypedNode supports that
9294         // do not have pointer identity.
9295         auto &NodeOrVector = (*Parents)[MapNode];
9296         if (NodeOrVector.isNull()) {
9297           if (const auto *D = ParentStack.back().get<Decl>())
9298             NodeOrVector = D;
9299           else if (const auto *S = ParentStack.back().get<Stmt>())
9300             NodeOrVector = S;
9301           else
9302             NodeOrVector =
9303                 new ast_type_traits::DynTypedNode(ParentStack.back());
9304         } else {
9305           if (!NodeOrVector.template is<ASTContext::ParentVector *>()) {
9306             auto *Vector = new ASTContext::ParentVector(
9307                 1, getSingleDynTypedNodeFromParentMap(NodeOrVector));
9308             if (auto *Node =
9309                     NodeOrVector
9310                         .template dyn_cast<ast_type_traits::DynTypedNode *>())
9311               delete Node;
9312             NodeOrVector = Vector;
9313           }
9314 
9315           auto *Vector =
9316               NodeOrVector.template get<ASTContext::ParentVector *>();
9317           // Skip duplicates for types that have memoization data.
9318           // We must check that the type has memoization data before calling
9319           // std::find() because DynTypedNode::operator== can't compare all
9320           // types.
9321           bool Found = ParentStack.back().getMemoizationData() &&
9322                        std::find(Vector->begin(), Vector->end(),
9323                                  ParentStack.back()) != Vector->end();
9324           if (!Found)
9325             Vector->push_back(ParentStack.back());
9326         }
9327       }
9328       ParentStack.push_back(createDynTypedNode(Node));
9329       bool Result = BaseTraverse();
9330       ParentStack.pop_back();
9331       return Result;
9332     }
9333 
9334     bool TraverseDecl(Decl *DeclNode) {
9335       return TraverseNode(DeclNode, DeclNode,
9336                           [&] { return VisitorBase::TraverseDecl(DeclNode); },
9337                           Parents);
9338     }
9339 
9340     bool TraverseStmt(Stmt *StmtNode) {
9341       return TraverseNode(StmtNode, StmtNode,
9342                           [&] { return VisitorBase::TraverseStmt(StmtNode); },
9343                           Parents);
9344     }
9345 
9346     bool TraverseTypeLoc(TypeLoc TypeLocNode) {
9347       return TraverseNode(
9348           TypeLocNode, ast_type_traits::DynTypedNode::create(TypeLocNode),
9349           [&] { return VisitorBase::TraverseTypeLoc(TypeLocNode); },
9350           OtherParents);
9351     }
9352 
9353     bool TraverseNestedNameSpecifierLoc(NestedNameSpecifierLoc NNSLocNode) {
9354       return TraverseNode(
9355           NNSLocNode, ast_type_traits::DynTypedNode::create(NNSLocNode),
9356           [&] {
9357             return VisitorBase::TraverseNestedNameSpecifierLoc(NNSLocNode);
9358           },
9359           OtherParents);
9360     }
9361 
9362     ASTContext::ParentMapPointers *Parents;
9363     ASTContext::ParentMapOtherNodes *OtherParents;
9364     llvm::SmallVector<ast_type_traits::DynTypedNode, 16> ParentStack;
9365 
9366     friend class RecursiveASTVisitor<ParentMapASTVisitor>;
9367   };
9368 
9369 } // anonymous namespace
9370 
9371 template <typename NodeTy, typename MapTy>
9372 static ASTContext::DynTypedNodeList getDynNodeFromMap(const NodeTy &Node,
9373                                                       const MapTy &Map) {
9374   auto I = Map.find(Node);
9375   if (I == Map.end()) {
9376     return llvm::ArrayRef<ast_type_traits::DynTypedNode>();
9377   }
9378   if (auto *V = I->second.template dyn_cast<ASTContext::ParentVector *>()) {
9379     return llvm::makeArrayRef(*V);
9380   }
9381   return getSingleDynTypedNodeFromParentMap(I->second);
9382 }
9383 
9384 ASTContext::DynTypedNodeList
9385 ASTContext::getParents(const ast_type_traits::DynTypedNode &Node) {
9386   if (!PointerParents) {
9387     // We always need to run over the whole translation unit, as
9388     // hasAncestor can escape any subtree.
9389     auto Maps = ParentMapASTVisitor::buildMap(*getTranslationUnitDecl());
9390     PointerParents.reset(Maps.first);
9391     OtherParents.reset(Maps.second);
9392   }
9393   if (Node.getNodeKind().hasPointerIdentity())
9394     return getDynNodeFromMap(Node.getMemoizationData(), *PointerParents);
9395   return getDynNodeFromMap(Node, *OtherParents);
9396 }
9397 
9398 bool
9399 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl,
9400                                 const ObjCMethodDecl *MethodImpl) {
9401   // No point trying to match an unavailable/deprecated mothod.
9402   if (MethodDecl->hasAttr<UnavailableAttr>()
9403       || MethodDecl->hasAttr<DeprecatedAttr>())
9404     return false;
9405   if (MethodDecl->getObjCDeclQualifier() !=
9406       MethodImpl->getObjCDeclQualifier())
9407     return false;
9408   if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType()))
9409     return false;
9410 
9411   if (MethodDecl->param_size() != MethodImpl->param_size())
9412     return false;
9413 
9414   for (ObjCMethodDecl::param_const_iterator IM = MethodImpl->param_begin(),
9415        IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(),
9416        EF = MethodDecl->param_end();
9417        IM != EM && IF != EF; ++IM, ++IF) {
9418     const ParmVarDecl *DeclVar = (*IF);
9419     const ParmVarDecl *ImplVar = (*IM);
9420     if (ImplVar->getObjCDeclQualifier() != DeclVar->getObjCDeclQualifier())
9421       return false;
9422     if (!hasSameType(DeclVar->getType(), ImplVar->getType()))
9423       return false;
9424   }
9425   return (MethodDecl->isVariadic() == MethodImpl->isVariadic());
9426 
9427 }
9428 
9429 // Explicitly instantiate this in case a Redeclarable<T> is used from a TU that
9430 // doesn't include ASTContext.h
9431 template
9432 clang::LazyGenerationalUpdatePtr<
9433     const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::ValueType
9434 clang::LazyGenerationalUpdatePtr<
9435     const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::makeValue(
9436         const clang::ASTContext &Ctx, Decl *Value);
9437