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 QualType
3141 ASTContext::getFunctionType(QualType ResultTy, ArrayRef<QualType> ArgArray,
3142                             const FunctionProtoType::ExtProtoInfo &EPI) const {
3143   size_t NumArgs = ArgArray.size();
3144 
3145   // Unique functions, to guarantee there is only one function of a particular
3146   // structure.
3147   llvm::FoldingSetNodeID ID;
3148   FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI,
3149                              *this);
3150 
3151   void *InsertPos = nullptr;
3152   if (FunctionProtoType *FTP =
3153         FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos))
3154     return QualType(FTP, 0);
3155 
3156   // Determine whether the type being created is already canonical or not.
3157   bool isCanonical =
3158     EPI.ExceptionSpec.Type == EST_None && isCanonicalResultType(ResultTy) &&
3159     !EPI.HasTrailingReturn;
3160   for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
3161     if (!ArgArray[i].isCanonicalAsParam())
3162       isCanonical = false;
3163 
3164   // If this type isn't canonical, get the canonical version of it.
3165   // The exception spec is not part of the canonical type.
3166   QualType Canonical;
3167   if (!isCanonical) {
3168     SmallVector<QualType, 16> CanonicalArgs;
3169     CanonicalArgs.reserve(NumArgs);
3170     for (unsigned i = 0; i != NumArgs; ++i)
3171       CanonicalArgs.push_back(getCanonicalParamType(ArgArray[i]));
3172 
3173     FunctionProtoType::ExtProtoInfo CanonicalEPI = EPI;
3174     CanonicalEPI.HasTrailingReturn = false;
3175     CanonicalEPI.ExceptionSpec = FunctionProtoType::ExceptionSpecInfo();
3176 
3177     // Adjust the canonical function result type.
3178     CanQualType CanResultTy = getCanonicalFunctionResultType(ResultTy);
3179     Canonical = getFunctionType(CanResultTy, CanonicalArgs, CanonicalEPI);
3180 
3181     // Get the new insert position for the node we care about.
3182     FunctionProtoType *NewIP =
3183       FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos);
3184     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
3185   }
3186 
3187   // FunctionProtoType objects are allocated with extra bytes after
3188   // them for three variable size arrays at the end:
3189   //  - parameter types
3190   //  - exception types
3191   //  - extended parameter information
3192   // Instead of the exception types, there could be a noexcept
3193   // expression, or information used to resolve the exception
3194   // specification.
3195   size_t Size = sizeof(FunctionProtoType) +
3196                 NumArgs * sizeof(QualType);
3197 
3198   if (EPI.ExceptionSpec.Type == EST_Dynamic) {
3199     Size += EPI.ExceptionSpec.Exceptions.size() * sizeof(QualType);
3200   } else if (EPI.ExceptionSpec.Type == EST_ComputedNoexcept) {
3201     Size += sizeof(Expr*);
3202   } else if (EPI.ExceptionSpec.Type == EST_Uninstantiated) {
3203     Size += 2 * sizeof(FunctionDecl*);
3204   } else if (EPI.ExceptionSpec.Type == EST_Unevaluated) {
3205     Size += sizeof(FunctionDecl*);
3206   }
3207 
3208   // Put the ExtParameterInfos last.  If all were equal, it would make
3209   // more sense to put these before the exception specification, because
3210   // it's much easier to skip past them compared to the elaborate switch
3211   // required to skip the exception specification.  However, all is not
3212   // equal; ExtParameterInfos are used to model very uncommon features,
3213   // and it's better not to burden the more common paths.
3214   if (EPI.ExtParameterInfos) {
3215     Size += NumArgs * sizeof(FunctionProtoType::ExtParameterInfo);
3216   }
3217 
3218   FunctionProtoType *FTP = (FunctionProtoType*) Allocate(Size, TypeAlignment);
3219   FunctionProtoType::ExtProtoInfo newEPI = EPI;
3220   new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
3221   Types.push_back(FTP);
3222   FunctionProtoTypes.InsertNode(FTP, InsertPos);
3223   return QualType(FTP, 0);
3224 }
3225 
3226 /// Return pipe type for the specified type.
3227 QualType ASTContext::getPipeType(QualType T) const {
3228   llvm::FoldingSetNodeID ID;
3229   PipeType::Profile(ID, T);
3230 
3231   void *InsertPos = 0;
3232   if (PipeType *PT = PipeTypes.FindNodeOrInsertPos(ID, InsertPos))
3233     return QualType(PT, 0);
3234 
3235   // If the pipe element type isn't canonical, this won't be a canonical type
3236   // either, so fill in the canonical type field.
3237   QualType Canonical;
3238   if (!T.isCanonical()) {
3239     Canonical = getPipeType(getCanonicalType(T));
3240 
3241     // Get the new insert position for the node we care about.
3242     PipeType *NewIP = PipeTypes.FindNodeOrInsertPos(ID, InsertPos);
3243     assert(!NewIP && "Shouldn't be in the map!");
3244     (void)NewIP;
3245   }
3246   PipeType *New = new (*this, TypeAlignment) PipeType(T, Canonical);
3247   Types.push_back(New);
3248   PipeTypes.InsertNode(New, InsertPos);
3249   return QualType(New, 0);
3250 }
3251 
3252 #ifndef NDEBUG
3253 static bool NeedsInjectedClassNameType(const RecordDecl *D) {
3254   if (!isa<CXXRecordDecl>(D)) return false;
3255   const CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
3256   if (isa<ClassTemplatePartialSpecializationDecl>(RD))
3257     return true;
3258   if (RD->getDescribedClassTemplate() &&
3259       !isa<ClassTemplateSpecializationDecl>(RD))
3260     return true;
3261   return false;
3262 }
3263 #endif
3264 
3265 /// getInjectedClassNameType - Return the unique reference to the
3266 /// injected class name type for the specified templated declaration.
3267 QualType ASTContext::getInjectedClassNameType(CXXRecordDecl *Decl,
3268                                               QualType TST) const {
3269   assert(NeedsInjectedClassNameType(Decl));
3270   if (Decl->TypeForDecl) {
3271     assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
3272   } else if (CXXRecordDecl *PrevDecl = Decl->getPreviousDecl()) {
3273     assert(PrevDecl->TypeForDecl && "previous declaration has no type");
3274     Decl->TypeForDecl = PrevDecl->TypeForDecl;
3275     assert(isa<InjectedClassNameType>(Decl->TypeForDecl));
3276   } else {
3277     Type *newType =
3278       new (*this, TypeAlignment) InjectedClassNameType(Decl, TST);
3279     Decl->TypeForDecl = newType;
3280     Types.push_back(newType);
3281   }
3282   return QualType(Decl->TypeForDecl, 0);
3283 }
3284 
3285 /// getTypeDeclType - Return the unique reference to the type for the
3286 /// specified type declaration.
3287 QualType ASTContext::getTypeDeclTypeSlow(const TypeDecl *Decl) const {
3288   assert(Decl && "Passed null for Decl param");
3289   assert(!Decl->TypeForDecl && "TypeForDecl present in slow case");
3290 
3291   if (const TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Decl))
3292     return getTypedefType(Typedef);
3293 
3294   assert(!isa<TemplateTypeParmDecl>(Decl) &&
3295          "Template type parameter types are always available.");
3296 
3297   if (const RecordDecl *Record = dyn_cast<RecordDecl>(Decl)) {
3298     assert(Record->isFirstDecl() && "struct/union has previous declaration");
3299     assert(!NeedsInjectedClassNameType(Record));
3300     return getRecordType(Record);
3301   } else if (const EnumDecl *Enum = dyn_cast<EnumDecl>(Decl)) {
3302     assert(Enum->isFirstDecl() && "enum has previous declaration");
3303     return getEnumType(Enum);
3304   } else if (const UnresolvedUsingTypenameDecl *Using =
3305                dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) {
3306     Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Using);
3307     Decl->TypeForDecl = newType;
3308     Types.push_back(newType);
3309   } else
3310     llvm_unreachable("TypeDecl without a type?");
3311 
3312   return QualType(Decl->TypeForDecl, 0);
3313 }
3314 
3315 /// getTypedefType - Return the unique reference to the type for the
3316 /// specified typedef name decl.
3317 QualType
3318 ASTContext::getTypedefType(const TypedefNameDecl *Decl,
3319                            QualType Canonical) const {
3320   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
3321 
3322   if (Canonical.isNull())
3323     Canonical = getCanonicalType(Decl->getUnderlyingType());
3324   TypedefType *newType = new(*this, TypeAlignment)
3325     TypedefType(Type::Typedef, Decl, Canonical);
3326   Decl->TypeForDecl = newType;
3327   Types.push_back(newType);
3328   return QualType(newType, 0);
3329 }
3330 
3331 QualType ASTContext::getRecordType(const RecordDecl *Decl) const {
3332   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
3333 
3334   if (const RecordDecl *PrevDecl = Decl->getPreviousDecl())
3335     if (PrevDecl->TypeForDecl)
3336       return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
3337 
3338   RecordType *newType = new (*this, TypeAlignment) RecordType(Decl);
3339   Decl->TypeForDecl = newType;
3340   Types.push_back(newType);
3341   return QualType(newType, 0);
3342 }
3343 
3344 QualType ASTContext::getEnumType(const EnumDecl *Decl) const {
3345   if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
3346 
3347   if (const EnumDecl *PrevDecl = Decl->getPreviousDecl())
3348     if (PrevDecl->TypeForDecl)
3349       return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0);
3350 
3351   EnumType *newType = new (*this, TypeAlignment) EnumType(Decl);
3352   Decl->TypeForDecl = newType;
3353   Types.push_back(newType);
3354   return QualType(newType, 0);
3355 }
3356 
3357 QualType ASTContext::getAttributedType(AttributedType::Kind attrKind,
3358                                        QualType modifiedType,
3359                                        QualType equivalentType) {
3360   llvm::FoldingSetNodeID id;
3361   AttributedType::Profile(id, attrKind, modifiedType, equivalentType);
3362 
3363   void *insertPos = nullptr;
3364   AttributedType *type = AttributedTypes.FindNodeOrInsertPos(id, insertPos);
3365   if (type) return QualType(type, 0);
3366 
3367   QualType canon = getCanonicalType(equivalentType);
3368   type = new (*this, TypeAlignment)
3369            AttributedType(canon, attrKind, modifiedType, equivalentType);
3370 
3371   Types.push_back(type);
3372   AttributedTypes.InsertNode(type, insertPos);
3373 
3374   return QualType(type, 0);
3375 }
3376 
3377 /// \brief Retrieve a substitution-result type.
3378 QualType
3379 ASTContext::getSubstTemplateTypeParmType(const TemplateTypeParmType *Parm,
3380                                          QualType Replacement) const {
3381   assert(Replacement.isCanonical()
3382          && "replacement types must always be canonical");
3383 
3384   llvm::FoldingSetNodeID ID;
3385   SubstTemplateTypeParmType::Profile(ID, Parm, Replacement);
3386   void *InsertPos = nullptr;
3387   SubstTemplateTypeParmType *SubstParm
3388     = SubstTemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3389 
3390   if (!SubstParm) {
3391     SubstParm = new (*this, TypeAlignment)
3392       SubstTemplateTypeParmType(Parm, Replacement);
3393     Types.push_back(SubstParm);
3394     SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
3395   }
3396 
3397   return QualType(SubstParm, 0);
3398 }
3399 
3400 /// \brief Retrieve a
3401 QualType ASTContext::getSubstTemplateTypeParmPackType(
3402                                           const TemplateTypeParmType *Parm,
3403                                               const TemplateArgument &ArgPack) {
3404 #ifndef NDEBUG
3405   for (const auto &P : ArgPack.pack_elements()) {
3406     assert(P.getKind() == TemplateArgument::Type &&"Pack contains a non-type");
3407     assert(P.getAsType().isCanonical() && "Pack contains non-canonical type");
3408   }
3409 #endif
3410 
3411   llvm::FoldingSetNodeID ID;
3412   SubstTemplateTypeParmPackType::Profile(ID, Parm, ArgPack);
3413   void *InsertPos = nullptr;
3414   if (SubstTemplateTypeParmPackType *SubstParm
3415         = SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos))
3416     return QualType(SubstParm, 0);
3417 
3418   QualType Canon;
3419   if (!Parm->isCanonicalUnqualified()) {
3420     Canon = getCanonicalType(QualType(Parm, 0));
3421     Canon = getSubstTemplateTypeParmPackType(cast<TemplateTypeParmType>(Canon),
3422                                              ArgPack);
3423     SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos);
3424   }
3425 
3426   SubstTemplateTypeParmPackType *SubstParm
3427     = new (*this, TypeAlignment) SubstTemplateTypeParmPackType(Parm, Canon,
3428                                                                ArgPack);
3429   Types.push_back(SubstParm);
3430   SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos);
3431   return QualType(SubstParm, 0);
3432 }
3433 
3434 /// \brief Retrieve the template type parameter type for a template
3435 /// parameter or parameter pack with the given depth, index, and (optionally)
3436 /// name.
3437 QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index,
3438                                              bool ParameterPack,
3439                                              TemplateTypeParmDecl *TTPDecl) const {
3440   llvm::FoldingSetNodeID ID;
3441   TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl);
3442   void *InsertPos = nullptr;
3443   TemplateTypeParmType *TypeParm
3444     = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3445 
3446   if (TypeParm)
3447     return QualType(TypeParm, 0);
3448 
3449   if (TTPDecl) {
3450     QualType Canon = getTemplateTypeParmType(Depth, Index, ParameterPack);
3451     TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon);
3452 
3453     TemplateTypeParmType *TypeCheck
3454       = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
3455     assert(!TypeCheck && "Template type parameter canonical type broken");
3456     (void)TypeCheck;
3457   } else
3458     TypeParm = new (*this, TypeAlignment)
3459       TemplateTypeParmType(Depth, Index, ParameterPack);
3460 
3461   Types.push_back(TypeParm);
3462   TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos);
3463 
3464   return QualType(TypeParm, 0);
3465 }
3466 
3467 TypeSourceInfo *
3468 ASTContext::getTemplateSpecializationTypeInfo(TemplateName Name,
3469                                               SourceLocation NameLoc,
3470                                         const TemplateArgumentListInfo &Args,
3471                                               QualType Underlying) const {
3472   assert(!Name.getAsDependentTemplateName() &&
3473          "No dependent template names here!");
3474   QualType TST = getTemplateSpecializationType(Name, Args, Underlying);
3475 
3476   TypeSourceInfo *DI = CreateTypeSourceInfo(TST);
3477   TemplateSpecializationTypeLoc TL =
3478       DI->getTypeLoc().castAs<TemplateSpecializationTypeLoc>();
3479   TL.setTemplateKeywordLoc(SourceLocation());
3480   TL.setTemplateNameLoc(NameLoc);
3481   TL.setLAngleLoc(Args.getLAngleLoc());
3482   TL.setRAngleLoc(Args.getRAngleLoc());
3483   for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
3484     TL.setArgLocInfo(i, Args[i].getLocInfo());
3485   return DI;
3486 }
3487 
3488 QualType
3489 ASTContext::getTemplateSpecializationType(TemplateName Template,
3490                                           const TemplateArgumentListInfo &Args,
3491                                           QualType Underlying) const {
3492   assert(!Template.getAsDependentTemplateName() &&
3493          "No dependent template names here!");
3494 
3495   SmallVector<TemplateArgument, 4> ArgVec;
3496   ArgVec.reserve(Args.size());
3497   for (const TemplateArgumentLoc &Arg : Args.arguments())
3498     ArgVec.push_back(Arg.getArgument());
3499 
3500   return getTemplateSpecializationType(Template, ArgVec, Underlying);
3501 }
3502 
3503 #ifndef NDEBUG
3504 static bool hasAnyPackExpansions(ArrayRef<TemplateArgument> Args) {
3505   for (const TemplateArgument &Arg : Args)
3506     if (Arg.isPackExpansion())
3507       return true;
3508 
3509   return true;
3510 }
3511 #endif
3512 
3513 QualType
3514 ASTContext::getTemplateSpecializationType(TemplateName Template,
3515                                           ArrayRef<TemplateArgument> Args,
3516                                           QualType Underlying) const {
3517   assert(!Template.getAsDependentTemplateName() &&
3518          "No dependent template names here!");
3519   // Look through qualified template names.
3520   if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
3521     Template = TemplateName(QTN->getTemplateDecl());
3522 
3523   bool IsTypeAlias =
3524     Template.getAsTemplateDecl() &&
3525     isa<TypeAliasTemplateDecl>(Template.getAsTemplateDecl());
3526   QualType CanonType;
3527   if (!Underlying.isNull())
3528     CanonType = getCanonicalType(Underlying);
3529   else {
3530     // We can get here with an alias template when the specialization contains
3531     // a pack expansion that does not match up with a parameter pack.
3532     assert((!IsTypeAlias || hasAnyPackExpansions(Args)) &&
3533            "Caller must compute aliased type");
3534     IsTypeAlias = false;
3535     CanonType = getCanonicalTemplateSpecializationType(Template, Args);
3536   }
3537 
3538   // Allocate the (non-canonical) template specialization type, but don't
3539   // try to unique it: these types typically have location information that
3540   // we don't unique and don't want to lose.
3541   void *Mem = Allocate(sizeof(TemplateSpecializationType) +
3542                        sizeof(TemplateArgument) * Args.size() +
3543                        (IsTypeAlias? sizeof(QualType) : 0),
3544                        TypeAlignment);
3545   TemplateSpecializationType *Spec
3546     = new (Mem) TemplateSpecializationType(Template, Args, CanonType,
3547                                          IsTypeAlias ? Underlying : QualType());
3548 
3549   Types.push_back(Spec);
3550   return QualType(Spec, 0);
3551 }
3552 
3553 QualType ASTContext::getCanonicalTemplateSpecializationType(
3554     TemplateName Template, ArrayRef<TemplateArgument> Args) const {
3555   assert(!Template.getAsDependentTemplateName() &&
3556          "No dependent template names here!");
3557 
3558   // Look through qualified template names.
3559   if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
3560     Template = TemplateName(QTN->getTemplateDecl());
3561 
3562   // Build the canonical template specialization type.
3563   TemplateName CanonTemplate = getCanonicalTemplateName(Template);
3564   SmallVector<TemplateArgument, 4> CanonArgs;
3565   unsigned NumArgs = Args.size();
3566   CanonArgs.reserve(NumArgs);
3567   for (const TemplateArgument &Arg : Args)
3568     CanonArgs.push_back(getCanonicalTemplateArgument(Arg));
3569 
3570   // Determine whether this canonical template specialization type already
3571   // exists.
3572   llvm::FoldingSetNodeID ID;
3573   TemplateSpecializationType::Profile(ID, CanonTemplate,
3574                                       CanonArgs, *this);
3575 
3576   void *InsertPos = nullptr;
3577   TemplateSpecializationType *Spec
3578     = TemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3579 
3580   if (!Spec) {
3581     // Allocate a new canonical template specialization type.
3582     void *Mem = Allocate((sizeof(TemplateSpecializationType) +
3583                           sizeof(TemplateArgument) * NumArgs),
3584                          TypeAlignment);
3585     Spec = new (Mem) TemplateSpecializationType(CanonTemplate,
3586                                                 CanonArgs,
3587                                                 QualType(), QualType());
3588     Types.push_back(Spec);
3589     TemplateSpecializationTypes.InsertNode(Spec, InsertPos);
3590   }
3591 
3592   assert(Spec->isDependentType() &&
3593          "Non-dependent template-id type must have a canonical type");
3594   return QualType(Spec, 0);
3595 }
3596 
3597 QualType
3598 ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword,
3599                               NestedNameSpecifier *NNS,
3600                               QualType NamedType) const {
3601   llvm::FoldingSetNodeID ID;
3602   ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
3603 
3604   void *InsertPos = nullptr;
3605   ElaboratedType *T = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
3606   if (T)
3607     return QualType(T, 0);
3608 
3609   QualType Canon = NamedType;
3610   if (!Canon.isCanonical()) {
3611     Canon = getCanonicalType(NamedType);
3612     ElaboratedType *CheckT = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos);
3613     assert(!CheckT && "Elaborated canonical type broken");
3614     (void)CheckT;
3615   }
3616 
3617   T = new (*this, TypeAlignment) ElaboratedType(Keyword, NNS, NamedType, Canon);
3618   Types.push_back(T);
3619   ElaboratedTypes.InsertNode(T, InsertPos);
3620   return QualType(T, 0);
3621 }
3622 
3623 QualType
3624 ASTContext::getParenType(QualType InnerType) const {
3625   llvm::FoldingSetNodeID ID;
3626   ParenType::Profile(ID, InnerType);
3627 
3628   void *InsertPos = nullptr;
3629   ParenType *T = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
3630   if (T)
3631     return QualType(T, 0);
3632 
3633   QualType Canon = InnerType;
3634   if (!Canon.isCanonical()) {
3635     Canon = getCanonicalType(InnerType);
3636     ParenType *CheckT = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
3637     assert(!CheckT && "Paren canonical type broken");
3638     (void)CheckT;
3639   }
3640 
3641   T = new (*this, TypeAlignment) ParenType(InnerType, Canon);
3642   Types.push_back(T);
3643   ParenTypes.InsertNode(T, InsertPos);
3644   return QualType(T, 0);
3645 }
3646 
3647 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword,
3648                                           NestedNameSpecifier *NNS,
3649                                           const IdentifierInfo *Name,
3650                                           QualType Canon) const {
3651   if (Canon.isNull()) {
3652     NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
3653     ElaboratedTypeKeyword CanonKeyword = Keyword;
3654     if (Keyword == ETK_None)
3655       CanonKeyword = ETK_Typename;
3656 
3657     if (CanonNNS != NNS || CanonKeyword != Keyword)
3658       Canon = getDependentNameType(CanonKeyword, CanonNNS, Name);
3659   }
3660 
3661   llvm::FoldingSetNodeID ID;
3662   DependentNameType::Profile(ID, Keyword, NNS, Name);
3663 
3664   void *InsertPos = nullptr;
3665   DependentNameType *T
3666     = DependentNameTypes.FindNodeOrInsertPos(ID, InsertPos);
3667   if (T)
3668     return QualType(T, 0);
3669 
3670   T = new (*this, TypeAlignment) DependentNameType(Keyword, NNS, Name, Canon);
3671   Types.push_back(T);
3672   DependentNameTypes.InsertNode(T, InsertPos);
3673   return QualType(T, 0);
3674 }
3675 
3676 QualType
3677 ASTContext::getDependentTemplateSpecializationType(
3678                                  ElaboratedTypeKeyword Keyword,
3679                                  NestedNameSpecifier *NNS,
3680                                  const IdentifierInfo *Name,
3681                                  const TemplateArgumentListInfo &Args) const {
3682   // TODO: avoid this copy
3683   SmallVector<TemplateArgument, 16> ArgCopy;
3684   for (unsigned I = 0, E = Args.size(); I != E; ++I)
3685     ArgCopy.push_back(Args[I].getArgument());
3686   return getDependentTemplateSpecializationType(Keyword, NNS, Name, ArgCopy);
3687 }
3688 
3689 QualType
3690 ASTContext::getDependentTemplateSpecializationType(
3691                                  ElaboratedTypeKeyword Keyword,
3692                                  NestedNameSpecifier *NNS,
3693                                  const IdentifierInfo *Name,
3694                                  ArrayRef<TemplateArgument> Args) const {
3695   assert((!NNS || NNS->isDependent()) &&
3696          "nested-name-specifier must be dependent");
3697 
3698   llvm::FoldingSetNodeID ID;
3699   DependentTemplateSpecializationType::Profile(ID, *this, Keyword, NNS,
3700                                                Name, Args);
3701 
3702   void *InsertPos = nullptr;
3703   DependentTemplateSpecializationType *T
3704     = DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3705   if (T)
3706     return QualType(T, 0);
3707 
3708   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
3709 
3710   ElaboratedTypeKeyword CanonKeyword = Keyword;
3711   if (Keyword == ETK_None) CanonKeyword = ETK_Typename;
3712 
3713   bool AnyNonCanonArgs = false;
3714   unsigned NumArgs = Args.size();
3715   SmallVector<TemplateArgument, 16> CanonArgs(NumArgs);
3716   for (unsigned I = 0; I != NumArgs; ++I) {
3717     CanonArgs[I] = getCanonicalTemplateArgument(Args[I]);
3718     if (!CanonArgs[I].structurallyEquals(Args[I]))
3719       AnyNonCanonArgs = true;
3720   }
3721 
3722   QualType Canon;
3723   if (AnyNonCanonArgs || CanonNNS != NNS || CanonKeyword != Keyword) {
3724     Canon = getDependentTemplateSpecializationType(CanonKeyword, CanonNNS,
3725                                                    Name,
3726                                                    CanonArgs);
3727 
3728     // Find the insert position again.
3729     DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
3730   }
3731 
3732   void *Mem = Allocate((sizeof(DependentTemplateSpecializationType) +
3733                         sizeof(TemplateArgument) * NumArgs),
3734                        TypeAlignment);
3735   T = new (Mem) DependentTemplateSpecializationType(Keyword, NNS,
3736                                                     Name, Args, Canon);
3737   Types.push_back(T);
3738   DependentTemplateSpecializationTypes.InsertNode(T, InsertPos);
3739   return QualType(T, 0);
3740 }
3741 
3742 QualType ASTContext::getPackExpansionType(QualType Pattern,
3743                                           Optional<unsigned> NumExpansions) {
3744   llvm::FoldingSetNodeID ID;
3745   PackExpansionType::Profile(ID, Pattern, NumExpansions);
3746 
3747   assert(Pattern->containsUnexpandedParameterPack() &&
3748          "Pack expansions must expand one or more parameter packs");
3749   void *InsertPos = nullptr;
3750   PackExpansionType *T
3751     = PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
3752   if (T)
3753     return QualType(T, 0);
3754 
3755   QualType Canon;
3756   if (!Pattern.isCanonical()) {
3757     Canon = getCanonicalType(Pattern);
3758     // The canonical type might not contain an unexpanded parameter pack, if it
3759     // contains an alias template specialization which ignores one of its
3760     // parameters.
3761     if (Canon->containsUnexpandedParameterPack()) {
3762       Canon = getPackExpansionType(Canon, NumExpansions);
3763 
3764       // Find the insert position again, in case we inserted an element into
3765       // PackExpansionTypes and invalidated our insert position.
3766       PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos);
3767     }
3768   }
3769 
3770   T = new (*this, TypeAlignment)
3771       PackExpansionType(Pattern, Canon, NumExpansions);
3772   Types.push_back(T);
3773   PackExpansionTypes.InsertNode(T, InsertPos);
3774   return QualType(T, 0);
3775 }
3776 
3777 /// CmpProtocolNames - Comparison predicate for sorting protocols
3778 /// alphabetically.
3779 static int CmpProtocolNames(ObjCProtocolDecl *const *LHS,
3780                             ObjCProtocolDecl *const *RHS) {
3781   return DeclarationName::compare((*LHS)->getDeclName(), (*RHS)->getDeclName());
3782 }
3783 
3784 static bool areSortedAndUniqued(ArrayRef<ObjCProtocolDecl *> Protocols) {
3785   if (Protocols.empty()) return true;
3786 
3787   if (Protocols[0]->getCanonicalDecl() != Protocols[0])
3788     return false;
3789 
3790   for (unsigned i = 1; i != Protocols.size(); ++i)
3791     if (CmpProtocolNames(&Protocols[i - 1], &Protocols[i]) >= 0 ||
3792         Protocols[i]->getCanonicalDecl() != Protocols[i])
3793       return false;
3794   return true;
3795 }
3796 
3797 static void
3798 SortAndUniqueProtocols(SmallVectorImpl<ObjCProtocolDecl *> &Protocols) {
3799   // Sort protocols, keyed by name.
3800   llvm::array_pod_sort(Protocols.begin(), Protocols.end(), CmpProtocolNames);
3801 
3802   // Canonicalize.
3803   for (ObjCProtocolDecl *&P : Protocols)
3804     P = P->getCanonicalDecl();
3805 
3806   // Remove duplicates.
3807   auto ProtocolsEnd = std::unique(Protocols.begin(), Protocols.end());
3808   Protocols.erase(ProtocolsEnd, Protocols.end());
3809 }
3810 
3811 QualType ASTContext::getObjCObjectType(QualType BaseType,
3812                                        ObjCProtocolDecl * const *Protocols,
3813                                        unsigned NumProtocols) const {
3814   return getObjCObjectType(BaseType, { },
3815                            llvm::makeArrayRef(Protocols, NumProtocols),
3816                            /*isKindOf=*/false);
3817 }
3818 
3819 QualType ASTContext::getObjCObjectType(
3820            QualType baseType,
3821            ArrayRef<QualType> typeArgs,
3822            ArrayRef<ObjCProtocolDecl *> protocols,
3823            bool isKindOf) const {
3824   // If the base type is an interface and there aren't any protocols or
3825   // type arguments to add, then the interface type will do just fine.
3826   if (typeArgs.empty() && protocols.empty() && !isKindOf &&
3827       isa<ObjCInterfaceType>(baseType))
3828     return baseType;
3829 
3830   // Look in the folding set for an existing type.
3831   llvm::FoldingSetNodeID ID;
3832   ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf);
3833   void *InsertPos = nullptr;
3834   if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
3835     return QualType(QT, 0);
3836 
3837   // Determine the type arguments to be used for canonicalization,
3838   // which may be explicitly specified here or written on the base
3839   // type.
3840   ArrayRef<QualType> effectiveTypeArgs = typeArgs;
3841   if (effectiveTypeArgs.empty()) {
3842     if (auto baseObject = baseType->getAs<ObjCObjectType>())
3843       effectiveTypeArgs = baseObject->getTypeArgs();
3844   }
3845 
3846   // Build the canonical type, which has the canonical base type and a
3847   // sorted-and-uniqued list of protocols and the type arguments
3848   // canonicalized.
3849   QualType canonical;
3850   bool typeArgsAreCanonical = std::all_of(effectiveTypeArgs.begin(),
3851                                           effectiveTypeArgs.end(),
3852                                           [&](QualType type) {
3853                                             return type.isCanonical();
3854                                           });
3855   bool protocolsSorted = areSortedAndUniqued(protocols);
3856   if (!typeArgsAreCanonical || !protocolsSorted || !baseType.isCanonical()) {
3857     // Determine the canonical type arguments.
3858     ArrayRef<QualType> canonTypeArgs;
3859     SmallVector<QualType, 4> canonTypeArgsVec;
3860     if (!typeArgsAreCanonical) {
3861       canonTypeArgsVec.reserve(effectiveTypeArgs.size());
3862       for (auto typeArg : effectiveTypeArgs)
3863         canonTypeArgsVec.push_back(getCanonicalType(typeArg));
3864       canonTypeArgs = canonTypeArgsVec;
3865     } else {
3866       canonTypeArgs = effectiveTypeArgs;
3867     }
3868 
3869     ArrayRef<ObjCProtocolDecl *> canonProtocols;
3870     SmallVector<ObjCProtocolDecl*, 8> canonProtocolsVec;
3871     if (!protocolsSorted) {
3872       canonProtocolsVec.append(protocols.begin(), protocols.end());
3873       SortAndUniqueProtocols(canonProtocolsVec);
3874       canonProtocols = canonProtocolsVec;
3875     } else {
3876       canonProtocols = protocols;
3877     }
3878 
3879     canonical = getObjCObjectType(getCanonicalType(baseType), canonTypeArgs,
3880                                   canonProtocols, isKindOf);
3881 
3882     // Regenerate InsertPos.
3883     ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos);
3884   }
3885 
3886   unsigned size = sizeof(ObjCObjectTypeImpl);
3887   size += typeArgs.size() * sizeof(QualType);
3888   size += protocols.size() * sizeof(ObjCProtocolDecl *);
3889   void *mem = Allocate(size, TypeAlignment);
3890   ObjCObjectTypeImpl *T =
3891     new (mem) ObjCObjectTypeImpl(canonical, baseType, typeArgs, protocols,
3892                                  isKindOf);
3893 
3894   Types.push_back(T);
3895   ObjCObjectTypes.InsertNode(T, InsertPos);
3896   return QualType(T, 0);
3897 }
3898 
3899 /// Apply Objective-C protocol qualifiers to the given type.
3900 /// If this is for the canonical type of a type parameter, we can apply
3901 /// protocol qualifiers on the ObjCObjectPointerType.
3902 QualType
3903 ASTContext::applyObjCProtocolQualifiers(QualType type,
3904                   ArrayRef<ObjCProtocolDecl *> protocols, bool &hasError,
3905                   bool allowOnPointerType) const {
3906   hasError = false;
3907 
3908   if (const ObjCTypeParamType *objT =
3909       dyn_cast<ObjCTypeParamType>(type.getTypePtr())) {
3910     return getObjCTypeParamType(objT->getDecl(), protocols);
3911   }
3912 
3913   // Apply protocol qualifiers to ObjCObjectPointerType.
3914   if (allowOnPointerType) {
3915     if (const ObjCObjectPointerType *objPtr =
3916         dyn_cast<ObjCObjectPointerType>(type.getTypePtr())) {
3917       const ObjCObjectType *objT = objPtr->getObjectType();
3918       // Merge protocol lists and construct ObjCObjectType.
3919       SmallVector<ObjCProtocolDecl*, 8> protocolsVec;
3920       protocolsVec.append(objT->qual_begin(),
3921                           objT->qual_end());
3922       protocolsVec.append(protocols.begin(), protocols.end());
3923       ArrayRef<ObjCProtocolDecl *> protocols = protocolsVec;
3924       type = getObjCObjectType(
3925              objT->getBaseType(),
3926              objT->getTypeArgsAsWritten(),
3927              protocols,
3928              objT->isKindOfTypeAsWritten());
3929       return getObjCObjectPointerType(type);
3930     }
3931   }
3932 
3933   // Apply protocol qualifiers to ObjCObjectType.
3934   if (const ObjCObjectType *objT = dyn_cast<ObjCObjectType>(type.getTypePtr())){
3935     // FIXME: Check for protocols to which the class type is already
3936     // known to conform.
3937 
3938     return getObjCObjectType(objT->getBaseType(),
3939                              objT->getTypeArgsAsWritten(),
3940                              protocols,
3941                              objT->isKindOfTypeAsWritten());
3942   }
3943 
3944   // If the canonical type is ObjCObjectType, ...
3945   if (type->isObjCObjectType()) {
3946     // Silently overwrite any existing protocol qualifiers.
3947     // TODO: determine whether that's the right thing to do.
3948 
3949     // FIXME: Check for protocols to which the class type is already
3950     // known to conform.
3951     return getObjCObjectType(type, { }, protocols, false);
3952   }
3953 
3954   // id<protocol-list>
3955   if (type->isObjCIdType()) {
3956     const ObjCObjectPointerType *objPtr = type->castAs<ObjCObjectPointerType>();
3957     type = getObjCObjectType(ObjCBuiltinIdTy, { }, protocols,
3958                                  objPtr->isKindOfType());
3959     return getObjCObjectPointerType(type);
3960   }
3961 
3962   // Class<protocol-list>
3963   if (type->isObjCClassType()) {
3964     const ObjCObjectPointerType *objPtr = type->castAs<ObjCObjectPointerType>();
3965     type = getObjCObjectType(ObjCBuiltinClassTy, { }, protocols,
3966                                  objPtr->isKindOfType());
3967     return getObjCObjectPointerType(type);
3968   }
3969 
3970   hasError = true;
3971   return type;
3972 }
3973 
3974 QualType
3975 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl,
3976                            ArrayRef<ObjCProtocolDecl *> protocols,
3977                            QualType Canonical) const {
3978   // Look in the folding set for an existing type.
3979   llvm::FoldingSetNodeID ID;
3980   ObjCTypeParamType::Profile(ID, Decl, protocols);
3981   void *InsertPos = nullptr;
3982   if (ObjCTypeParamType *TypeParam =
3983       ObjCTypeParamTypes.FindNodeOrInsertPos(ID, InsertPos))
3984     return QualType(TypeParam, 0);
3985 
3986   if (Canonical.isNull()) {
3987     // We canonicalize to the underlying type.
3988     Canonical = getCanonicalType(Decl->getUnderlyingType());
3989     if (!protocols.empty()) {
3990       // Apply the protocol qualifers.
3991       bool hasError;
3992       Canonical = applyObjCProtocolQualifiers(Canonical, protocols, hasError,
3993           true/*allowOnPointerType*/);
3994       assert(!hasError && "Error when apply protocol qualifier to bound type");
3995     }
3996   }
3997 
3998   unsigned size = sizeof(ObjCTypeParamType);
3999   size += protocols.size() * sizeof(ObjCProtocolDecl *);
4000   void *mem = Allocate(size, TypeAlignment);
4001   ObjCTypeParamType *newType = new (mem)
4002     ObjCTypeParamType(Decl, Canonical, protocols);
4003 
4004   Types.push_back(newType);
4005   ObjCTypeParamTypes.InsertNode(newType, InsertPos);
4006   return QualType(newType, 0);
4007 }
4008 
4009 /// ObjCObjectAdoptsQTypeProtocols - Checks that protocols in IC's
4010 /// protocol list adopt all protocols in QT's qualified-id protocol
4011 /// list.
4012 bool ASTContext::ObjCObjectAdoptsQTypeProtocols(QualType QT,
4013                                                 ObjCInterfaceDecl *IC) {
4014   if (!QT->isObjCQualifiedIdType())
4015     return false;
4016 
4017   if (const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>()) {
4018     // If both the right and left sides have qualifiers.
4019     for (auto *Proto : OPT->quals()) {
4020       if (!IC->ClassImplementsProtocol(Proto, false))
4021         return false;
4022     }
4023     return true;
4024   }
4025   return false;
4026 }
4027 
4028 /// QIdProtocolsAdoptObjCObjectProtocols - Checks that protocols in
4029 /// QT's qualified-id protocol list adopt all protocols in IDecl's list
4030 /// of protocols.
4031 bool ASTContext::QIdProtocolsAdoptObjCObjectProtocols(QualType QT,
4032                                                 ObjCInterfaceDecl *IDecl) {
4033   if (!QT->isObjCQualifiedIdType())
4034     return false;
4035   const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>();
4036   if (!OPT)
4037     return false;
4038   if (!IDecl->hasDefinition())
4039     return false;
4040   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> InheritedProtocols;
4041   CollectInheritedProtocols(IDecl, InheritedProtocols);
4042   if (InheritedProtocols.empty())
4043     return false;
4044   // Check that if every protocol in list of id<plist> conforms to a protcol
4045   // of IDecl's, then bridge casting is ok.
4046   bool Conforms = false;
4047   for (auto *Proto : OPT->quals()) {
4048     Conforms = false;
4049     for (auto *PI : InheritedProtocols) {
4050       if (ProtocolCompatibleWithProtocol(Proto, PI)) {
4051         Conforms = true;
4052         break;
4053       }
4054     }
4055     if (!Conforms)
4056       break;
4057   }
4058   if (Conforms)
4059     return true;
4060 
4061   for (auto *PI : InheritedProtocols) {
4062     // If both the right and left sides have qualifiers.
4063     bool Adopts = false;
4064     for (auto *Proto : OPT->quals()) {
4065       // return 'true' if 'PI' is in the inheritance hierarchy of Proto
4066       if ((Adopts = ProtocolCompatibleWithProtocol(PI, Proto)))
4067         break;
4068     }
4069     if (!Adopts)
4070       return false;
4071   }
4072   return true;
4073 }
4074 
4075 /// getObjCObjectPointerType - Return a ObjCObjectPointerType type for
4076 /// the given object type.
4077 QualType ASTContext::getObjCObjectPointerType(QualType ObjectT) const {
4078   llvm::FoldingSetNodeID ID;
4079   ObjCObjectPointerType::Profile(ID, ObjectT);
4080 
4081   void *InsertPos = nullptr;
4082   if (ObjCObjectPointerType *QT =
4083               ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
4084     return QualType(QT, 0);
4085 
4086   // Find the canonical object type.
4087   QualType Canonical;
4088   if (!ObjectT.isCanonical()) {
4089     Canonical = getObjCObjectPointerType(getCanonicalType(ObjectT));
4090 
4091     // Regenerate InsertPos.
4092     ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
4093   }
4094 
4095   // No match.
4096   void *Mem = Allocate(sizeof(ObjCObjectPointerType), TypeAlignment);
4097   ObjCObjectPointerType *QType =
4098     new (Mem) ObjCObjectPointerType(Canonical, ObjectT);
4099 
4100   Types.push_back(QType);
4101   ObjCObjectPointerTypes.InsertNode(QType, InsertPos);
4102   return QualType(QType, 0);
4103 }
4104 
4105 /// getObjCInterfaceType - Return the unique reference to the type for the
4106 /// specified ObjC interface decl. The list of protocols is optional.
4107 QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl,
4108                                           ObjCInterfaceDecl *PrevDecl) const {
4109   if (Decl->TypeForDecl)
4110     return QualType(Decl->TypeForDecl, 0);
4111 
4112   if (PrevDecl) {
4113     assert(PrevDecl->TypeForDecl && "previous decl has no TypeForDecl");
4114     Decl->TypeForDecl = PrevDecl->TypeForDecl;
4115     return QualType(PrevDecl->TypeForDecl, 0);
4116   }
4117 
4118   // Prefer the definition, if there is one.
4119   if (const ObjCInterfaceDecl *Def = Decl->getDefinition())
4120     Decl = Def;
4121 
4122   void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment);
4123   ObjCInterfaceType *T = new (Mem) ObjCInterfaceType(Decl);
4124   Decl->TypeForDecl = T;
4125   Types.push_back(T);
4126   return QualType(T, 0);
4127 }
4128 
4129 /// getTypeOfExprType - Unlike many "get<Type>" functions, we can't unique
4130 /// TypeOfExprType AST's (since expression's are never shared). For example,
4131 /// multiple declarations that refer to "typeof(x)" all contain different
4132 /// DeclRefExpr's. This doesn't effect the type checker, since it operates
4133 /// on canonical type's (which are always unique).
4134 QualType ASTContext::getTypeOfExprType(Expr *tofExpr) const {
4135   TypeOfExprType *toe;
4136   if (tofExpr->isTypeDependent()) {
4137     llvm::FoldingSetNodeID ID;
4138     DependentTypeOfExprType::Profile(ID, *this, tofExpr);
4139 
4140     void *InsertPos = nullptr;
4141     DependentTypeOfExprType *Canon
4142       = DependentTypeOfExprTypes.FindNodeOrInsertPos(ID, InsertPos);
4143     if (Canon) {
4144       // We already have a "canonical" version of an identical, dependent
4145       // typeof(expr) type. Use that as our canonical type.
4146       toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr,
4147                                           QualType((TypeOfExprType*)Canon, 0));
4148     } else {
4149       // Build a new, canonical typeof(expr) type.
4150       Canon
4151         = new (*this, TypeAlignment) DependentTypeOfExprType(*this, tofExpr);
4152       DependentTypeOfExprTypes.InsertNode(Canon, InsertPos);
4153       toe = Canon;
4154     }
4155   } else {
4156     QualType Canonical = getCanonicalType(tofExpr->getType());
4157     toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical);
4158   }
4159   Types.push_back(toe);
4160   return QualType(toe, 0);
4161 }
4162 
4163 /// getTypeOfType -  Unlike many "get<Type>" functions, we don't unique
4164 /// TypeOfType nodes. The only motivation to unique these nodes would be
4165 /// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
4166 /// an issue. This doesn't affect the type checker, since it operates
4167 /// on canonical types (which are always unique).
4168 QualType ASTContext::getTypeOfType(QualType tofType) const {
4169   QualType Canonical = getCanonicalType(tofType);
4170   TypeOfType *tot = new (*this, TypeAlignment) TypeOfType(tofType, Canonical);
4171   Types.push_back(tot);
4172   return QualType(tot, 0);
4173 }
4174 
4175 /// \brief Unlike many "get<Type>" functions, we don't unique DecltypeType
4176 /// nodes. This would never be helpful, since each such type has its own
4177 /// expression, and would not give a significant memory saving, since there
4178 /// is an Expr tree under each such type.
4179 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const {
4180   DecltypeType *dt;
4181 
4182   // C++11 [temp.type]p2:
4183   //   If an expression e involves a template parameter, decltype(e) denotes a
4184   //   unique dependent type. Two such decltype-specifiers refer to the same
4185   //   type only if their expressions are equivalent (14.5.6.1).
4186   if (e->isInstantiationDependent()) {
4187     llvm::FoldingSetNodeID ID;
4188     DependentDecltypeType::Profile(ID, *this, e);
4189 
4190     void *InsertPos = nullptr;
4191     DependentDecltypeType *Canon
4192       = DependentDecltypeTypes.FindNodeOrInsertPos(ID, InsertPos);
4193     if (!Canon) {
4194       // Build a new, canonical typeof(expr) type.
4195       Canon = new (*this, TypeAlignment) DependentDecltypeType(*this, e);
4196       DependentDecltypeTypes.InsertNode(Canon, InsertPos);
4197     }
4198     dt = new (*this, TypeAlignment)
4199         DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0));
4200   } else {
4201     dt = new (*this, TypeAlignment)
4202         DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType));
4203   }
4204   Types.push_back(dt);
4205   return QualType(dt, 0);
4206 }
4207 
4208 /// getUnaryTransformationType - We don't unique these, since the memory
4209 /// savings are minimal and these are rare.
4210 QualType ASTContext::getUnaryTransformType(QualType BaseType,
4211                                            QualType UnderlyingType,
4212                                            UnaryTransformType::UTTKind Kind)
4213     const {
4214   UnaryTransformType *ut = nullptr;
4215 
4216   if (BaseType->isDependentType()) {
4217     // Look in the folding set for an existing type.
4218     llvm::FoldingSetNodeID ID;
4219     DependentUnaryTransformType::Profile(ID, getCanonicalType(BaseType), Kind);
4220 
4221     void *InsertPos = nullptr;
4222     DependentUnaryTransformType *Canon
4223       = DependentUnaryTransformTypes.FindNodeOrInsertPos(ID, InsertPos);
4224 
4225     if (!Canon) {
4226       // Build a new, canonical __underlying_type(type) type.
4227       Canon = new (*this, TypeAlignment)
4228              DependentUnaryTransformType(*this, getCanonicalType(BaseType),
4229                                          Kind);
4230       DependentUnaryTransformTypes.InsertNode(Canon, InsertPos);
4231     }
4232     ut = new (*this, TypeAlignment) UnaryTransformType (BaseType,
4233                                                         QualType(), Kind,
4234                                                         QualType(Canon, 0));
4235   } else {
4236     QualType CanonType = getCanonicalType(UnderlyingType);
4237     ut = new (*this, TypeAlignment) UnaryTransformType (BaseType,
4238                                                         UnderlyingType, Kind,
4239                                                         CanonType);
4240   }
4241   Types.push_back(ut);
4242   return QualType(ut, 0);
4243 }
4244 
4245 /// getAutoType - Return the uniqued reference to the 'auto' type which has been
4246 /// deduced to the given type, or to the canonical undeduced 'auto' type, or the
4247 /// canonical deduced-but-dependent 'auto' type.
4248 QualType ASTContext::getAutoType(QualType DeducedType, AutoTypeKeyword Keyword,
4249                                  bool IsDependent) const {
4250   if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto && !IsDependent)
4251     return getAutoDeductType();
4252 
4253   // Look in the folding set for an existing type.
4254   void *InsertPos = nullptr;
4255   llvm::FoldingSetNodeID ID;
4256   AutoType::Profile(ID, DeducedType, Keyword, IsDependent);
4257   if (AutoType *AT = AutoTypes.FindNodeOrInsertPos(ID, InsertPos))
4258     return QualType(AT, 0);
4259 
4260   AutoType *AT = new (*this, TypeAlignment) AutoType(DeducedType,
4261                                                      Keyword,
4262                                                      IsDependent);
4263   Types.push_back(AT);
4264   if (InsertPos)
4265     AutoTypes.InsertNode(AT, InsertPos);
4266   return QualType(AT, 0);
4267 }
4268 
4269 /// getAtomicType - Return the uniqued reference to the atomic type for
4270 /// the given value type.
4271 QualType ASTContext::getAtomicType(QualType T) const {
4272   // Unique pointers, to guarantee there is only one pointer of a particular
4273   // structure.
4274   llvm::FoldingSetNodeID ID;
4275   AtomicType::Profile(ID, T);
4276 
4277   void *InsertPos = nullptr;
4278   if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos))
4279     return QualType(AT, 0);
4280 
4281   // If the atomic value type isn't canonical, this won't be a canonical type
4282   // either, so fill in the canonical type field.
4283   QualType Canonical;
4284   if (!T.isCanonical()) {
4285     Canonical = getAtomicType(getCanonicalType(T));
4286 
4287     // Get the new insert position for the node we care about.
4288     AtomicType *NewIP = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos);
4289     assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP;
4290   }
4291   AtomicType *New = new (*this, TypeAlignment) AtomicType(T, Canonical);
4292   Types.push_back(New);
4293   AtomicTypes.InsertNode(New, InsertPos);
4294   return QualType(New, 0);
4295 }
4296 
4297 /// getAutoDeductType - Get type pattern for deducing against 'auto'.
4298 QualType ASTContext::getAutoDeductType() const {
4299   if (AutoDeductTy.isNull())
4300     AutoDeductTy = QualType(
4301       new (*this, TypeAlignment) AutoType(QualType(), AutoTypeKeyword::Auto,
4302                                           /*dependent*/false),
4303       0);
4304   return AutoDeductTy;
4305 }
4306 
4307 /// getAutoRRefDeductType - Get type pattern for deducing against 'auto &&'.
4308 QualType ASTContext::getAutoRRefDeductType() const {
4309   if (AutoRRefDeductTy.isNull())
4310     AutoRRefDeductTy = getRValueReferenceType(getAutoDeductType());
4311   assert(!AutoRRefDeductTy.isNull() && "can't build 'auto &&' pattern");
4312   return AutoRRefDeductTy;
4313 }
4314 
4315 /// getTagDeclType - Return the unique reference to the type for the
4316 /// specified TagDecl (struct/union/class/enum) decl.
4317 QualType ASTContext::getTagDeclType(const TagDecl *Decl) const {
4318   assert (Decl);
4319   // FIXME: What is the design on getTagDeclType when it requires casting
4320   // away const?  mutable?
4321   return getTypeDeclType(const_cast<TagDecl*>(Decl));
4322 }
4323 
4324 /// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
4325 /// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
4326 /// needs to agree with the definition in <stddef.h>.
4327 CanQualType ASTContext::getSizeType() const {
4328   return getFromTargetType(Target->getSizeType());
4329 }
4330 
4331 /// getIntMaxType - Return the unique type for "intmax_t" (C99 7.18.1.5).
4332 CanQualType ASTContext::getIntMaxType() const {
4333   return getFromTargetType(Target->getIntMaxType());
4334 }
4335 
4336 /// getUIntMaxType - Return the unique type for "uintmax_t" (C99 7.18.1.5).
4337 CanQualType ASTContext::getUIntMaxType() const {
4338   return getFromTargetType(Target->getUIntMaxType());
4339 }
4340 
4341 /// getSignedWCharType - Return the type of "signed wchar_t".
4342 /// Used when in C++, as a GCC extension.
4343 QualType ASTContext::getSignedWCharType() const {
4344   // FIXME: derive from "Target" ?
4345   return WCharTy;
4346 }
4347 
4348 /// getUnsignedWCharType - Return the type of "unsigned wchar_t".
4349 /// Used when in C++, as a GCC extension.
4350 QualType ASTContext::getUnsignedWCharType() const {
4351   // FIXME: derive from "Target" ?
4352   return UnsignedIntTy;
4353 }
4354 
4355 QualType ASTContext::getIntPtrType() const {
4356   return getFromTargetType(Target->getIntPtrType());
4357 }
4358 
4359 QualType ASTContext::getUIntPtrType() const {
4360   return getCorrespondingUnsignedType(getIntPtrType());
4361 }
4362 
4363 /// getPointerDiffType - Return the unique type for "ptrdiff_t" (C99 7.17)
4364 /// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
4365 QualType ASTContext::getPointerDiffType() const {
4366   return getFromTargetType(Target->getPtrDiffType(0));
4367 }
4368 
4369 /// \brief Return the unique type for "pid_t" defined in
4370 /// <sys/types.h>. We need this to compute the correct type for vfork().
4371 QualType ASTContext::getProcessIDType() const {
4372   return getFromTargetType(Target->getProcessIDType());
4373 }
4374 
4375 //===----------------------------------------------------------------------===//
4376 //                              Type Operators
4377 //===----------------------------------------------------------------------===//
4378 
4379 CanQualType ASTContext::getCanonicalParamType(QualType T) const {
4380   // Push qualifiers into arrays, and then discard any remaining
4381   // qualifiers.
4382   T = getCanonicalType(T);
4383   T = getVariableArrayDecayedType(T);
4384   const Type *Ty = T.getTypePtr();
4385   QualType Result;
4386   if (isa<ArrayType>(Ty)) {
4387     Result = getArrayDecayedType(QualType(Ty,0));
4388   } else if (isa<FunctionType>(Ty)) {
4389     Result = getPointerType(QualType(Ty, 0));
4390   } else {
4391     Result = QualType(Ty, 0);
4392   }
4393 
4394   return CanQualType::CreateUnsafe(Result);
4395 }
4396 
4397 QualType ASTContext::getUnqualifiedArrayType(QualType type,
4398                                              Qualifiers &quals) {
4399   SplitQualType splitType = type.getSplitUnqualifiedType();
4400 
4401   // FIXME: getSplitUnqualifiedType() actually walks all the way to
4402   // the unqualified desugared type and then drops it on the floor.
4403   // We then have to strip that sugar back off with
4404   // getUnqualifiedDesugaredType(), which is silly.
4405   const ArrayType *AT =
4406     dyn_cast<ArrayType>(splitType.Ty->getUnqualifiedDesugaredType());
4407 
4408   // If we don't have an array, just use the results in splitType.
4409   if (!AT) {
4410     quals = splitType.Quals;
4411     return QualType(splitType.Ty, 0);
4412   }
4413 
4414   // Otherwise, recurse on the array's element type.
4415   QualType elementType = AT->getElementType();
4416   QualType unqualElementType = getUnqualifiedArrayType(elementType, quals);
4417 
4418   // If that didn't change the element type, AT has no qualifiers, so we
4419   // can just use the results in splitType.
4420   if (elementType == unqualElementType) {
4421     assert(quals.empty()); // from the recursive call
4422     quals = splitType.Quals;
4423     return QualType(splitType.Ty, 0);
4424   }
4425 
4426   // Otherwise, add in the qualifiers from the outermost type, then
4427   // build the type back up.
4428   quals.addConsistentQualifiers(splitType.Quals);
4429 
4430   if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
4431     return getConstantArrayType(unqualElementType, CAT->getSize(),
4432                                 CAT->getSizeModifier(), 0);
4433   }
4434 
4435   if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
4436     return getIncompleteArrayType(unqualElementType, IAT->getSizeModifier(), 0);
4437   }
4438 
4439   if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(AT)) {
4440     return getVariableArrayType(unqualElementType,
4441                                 VAT->getSizeExpr(),
4442                                 VAT->getSizeModifier(),
4443                                 VAT->getIndexTypeCVRQualifiers(),
4444                                 VAT->getBracketsRange());
4445   }
4446 
4447   const DependentSizedArrayType *DSAT = cast<DependentSizedArrayType>(AT);
4448   return getDependentSizedArrayType(unqualElementType, DSAT->getSizeExpr(),
4449                                     DSAT->getSizeModifier(), 0,
4450                                     SourceRange());
4451 }
4452 
4453 /// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types  that
4454 /// may be similar (C++ 4.4), replaces T1 and T2 with the type that
4455 /// they point to and return true. If T1 and T2 aren't pointer types
4456 /// or pointer-to-member types, or if they are not similar at this
4457 /// level, returns false and leaves T1 and T2 unchanged. Top-level
4458 /// qualifiers on T1 and T2 are ignored. This function will typically
4459 /// be called in a loop that successively "unwraps" pointer and
4460 /// pointer-to-member types to compare them at each level.
4461 bool ASTContext::UnwrapSimilarPointerTypes(QualType &T1, QualType &T2) {
4462   const PointerType *T1PtrType = T1->getAs<PointerType>(),
4463                     *T2PtrType = T2->getAs<PointerType>();
4464   if (T1PtrType && T2PtrType) {
4465     T1 = T1PtrType->getPointeeType();
4466     T2 = T2PtrType->getPointeeType();
4467     return true;
4468   }
4469 
4470   const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
4471                           *T2MPType = T2->getAs<MemberPointerType>();
4472   if (T1MPType && T2MPType &&
4473       hasSameUnqualifiedType(QualType(T1MPType->getClass(), 0),
4474                              QualType(T2MPType->getClass(), 0))) {
4475     T1 = T1MPType->getPointeeType();
4476     T2 = T2MPType->getPointeeType();
4477     return true;
4478   }
4479 
4480   if (getLangOpts().ObjC1) {
4481     const ObjCObjectPointerType *T1OPType = T1->getAs<ObjCObjectPointerType>(),
4482                                 *T2OPType = T2->getAs<ObjCObjectPointerType>();
4483     if (T1OPType && T2OPType) {
4484       T1 = T1OPType->getPointeeType();
4485       T2 = T2OPType->getPointeeType();
4486       return true;
4487     }
4488   }
4489 
4490   // FIXME: Block pointers, too?
4491 
4492   return false;
4493 }
4494 
4495 DeclarationNameInfo
4496 ASTContext::getNameForTemplate(TemplateName Name,
4497                                SourceLocation NameLoc) const {
4498   switch (Name.getKind()) {
4499   case TemplateName::QualifiedTemplate:
4500   case TemplateName::Template:
4501     // DNInfo work in progress: CHECKME: what about DNLoc?
4502     return DeclarationNameInfo(Name.getAsTemplateDecl()->getDeclName(),
4503                                NameLoc);
4504 
4505   case TemplateName::OverloadedTemplate: {
4506     OverloadedTemplateStorage *Storage = Name.getAsOverloadedTemplate();
4507     // DNInfo work in progress: CHECKME: what about DNLoc?
4508     return DeclarationNameInfo((*Storage->begin())->getDeclName(), NameLoc);
4509   }
4510 
4511   case TemplateName::DependentTemplate: {
4512     DependentTemplateName *DTN = Name.getAsDependentTemplateName();
4513     DeclarationName DName;
4514     if (DTN->isIdentifier()) {
4515       DName = DeclarationNames.getIdentifier(DTN->getIdentifier());
4516       return DeclarationNameInfo(DName, NameLoc);
4517     } else {
4518       DName = DeclarationNames.getCXXOperatorName(DTN->getOperator());
4519       // DNInfo work in progress: FIXME: source locations?
4520       DeclarationNameLoc DNLoc;
4521       DNLoc.CXXOperatorName.BeginOpNameLoc = SourceLocation().getRawEncoding();
4522       DNLoc.CXXOperatorName.EndOpNameLoc = SourceLocation().getRawEncoding();
4523       return DeclarationNameInfo(DName, NameLoc, DNLoc);
4524     }
4525   }
4526 
4527   case TemplateName::SubstTemplateTemplateParm: {
4528     SubstTemplateTemplateParmStorage *subst
4529       = Name.getAsSubstTemplateTemplateParm();
4530     return DeclarationNameInfo(subst->getParameter()->getDeclName(),
4531                                NameLoc);
4532   }
4533 
4534   case TemplateName::SubstTemplateTemplateParmPack: {
4535     SubstTemplateTemplateParmPackStorage *subst
4536       = Name.getAsSubstTemplateTemplateParmPack();
4537     return DeclarationNameInfo(subst->getParameterPack()->getDeclName(),
4538                                NameLoc);
4539   }
4540   }
4541 
4542   llvm_unreachable("bad template name kind!");
4543 }
4544 
4545 TemplateName ASTContext::getCanonicalTemplateName(TemplateName Name) const {
4546   switch (Name.getKind()) {
4547   case TemplateName::QualifiedTemplate:
4548   case TemplateName::Template: {
4549     TemplateDecl *Template = Name.getAsTemplateDecl();
4550     if (TemplateTemplateParmDecl *TTP
4551           = dyn_cast<TemplateTemplateParmDecl>(Template))
4552       Template = getCanonicalTemplateTemplateParmDecl(TTP);
4553 
4554     // The canonical template name is the canonical template declaration.
4555     return TemplateName(cast<TemplateDecl>(Template->getCanonicalDecl()));
4556   }
4557 
4558   case TemplateName::OverloadedTemplate:
4559     llvm_unreachable("cannot canonicalize overloaded template");
4560 
4561   case TemplateName::DependentTemplate: {
4562     DependentTemplateName *DTN = Name.getAsDependentTemplateName();
4563     assert(DTN && "Non-dependent template names must refer to template decls.");
4564     return DTN->CanonicalTemplateName;
4565   }
4566 
4567   case TemplateName::SubstTemplateTemplateParm: {
4568     SubstTemplateTemplateParmStorage *subst
4569       = Name.getAsSubstTemplateTemplateParm();
4570     return getCanonicalTemplateName(subst->getReplacement());
4571   }
4572 
4573   case TemplateName::SubstTemplateTemplateParmPack: {
4574     SubstTemplateTemplateParmPackStorage *subst
4575                                   = Name.getAsSubstTemplateTemplateParmPack();
4576     TemplateTemplateParmDecl *canonParameter
4577       = getCanonicalTemplateTemplateParmDecl(subst->getParameterPack());
4578     TemplateArgument canonArgPack
4579       = getCanonicalTemplateArgument(subst->getArgumentPack());
4580     return getSubstTemplateTemplateParmPack(canonParameter, canonArgPack);
4581   }
4582   }
4583 
4584   llvm_unreachable("bad template name!");
4585 }
4586 
4587 bool ASTContext::hasSameTemplateName(TemplateName X, TemplateName Y) {
4588   X = getCanonicalTemplateName(X);
4589   Y = getCanonicalTemplateName(Y);
4590   return X.getAsVoidPointer() == Y.getAsVoidPointer();
4591 }
4592 
4593 TemplateArgument
4594 ASTContext::getCanonicalTemplateArgument(const TemplateArgument &Arg) const {
4595   switch (Arg.getKind()) {
4596     case TemplateArgument::Null:
4597       return Arg;
4598 
4599     case TemplateArgument::Expression:
4600       return Arg;
4601 
4602     case TemplateArgument::Declaration: {
4603       ValueDecl *D = cast<ValueDecl>(Arg.getAsDecl()->getCanonicalDecl());
4604       return TemplateArgument(D, Arg.getParamTypeForDecl());
4605     }
4606 
4607     case TemplateArgument::NullPtr:
4608       return TemplateArgument(getCanonicalType(Arg.getNullPtrType()),
4609                               /*isNullPtr*/true);
4610 
4611     case TemplateArgument::Template:
4612       return TemplateArgument(getCanonicalTemplateName(Arg.getAsTemplate()));
4613 
4614     case TemplateArgument::TemplateExpansion:
4615       return TemplateArgument(getCanonicalTemplateName(
4616                                          Arg.getAsTemplateOrTemplatePattern()),
4617                               Arg.getNumTemplateExpansions());
4618 
4619     case TemplateArgument::Integral:
4620       return TemplateArgument(Arg, getCanonicalType(Arg.getIntegralType()));
4621 
4622     case TemplateArgument::Type:
4623       return TemplateArgument(getCanonicalType(Arg.getAsType()));
4624 
4625     case TemplateArgument::Pack: {
4626       if (Arg.pack_size() == 0)
4627         return Arg;
4628 
4629       TemplateArgument *CanonArgs
4630         = new (*this) TemplateArgument[Arg.pack_size()];
4631       unsigned Idx = 0;
4632       for (TemplateArgument::pack_iterator A = Arg.pack_begin(),
4633                                         AEnd = Arg.pack_end();
4634            A != AEnd; (void)++A, ++Idx)
4635         CanonArgs[Idx] = getCanonicalTemplateArgument(*A);
4636 
4637       return TemplateArgument(llvm::makeArrayRef(CanonArgs, Arg.pack_size()));
4638     }
4639   }
4640 
4641   // Silence GCC warning
4642   llvm_unreachable("Unhandled template argument kind");
4643 }
4644 
4645 NestedNameSpecifier *
4646 ASTContext::getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) const {
4647   if (!NNS)
4648     return nullptr;
4649 
4650   switch (NNS->getKind()) {
4651   case NestedNameSpecifier::Identifier:
4652     // Canonicalize the prefix but keep the identifier the same.
4653     return NestedNameSpecifier::Create(*this,
4654                          getCanonicalNestedNameSpecifier(NNS->getPrefix()),
4655                                        NNS->getAsIdentifier());
4656 
4657   case NestedNameSpecifier::Namespace:
4658     // A namespace is canonical; build a nested-name-specifier with
4659     // this namespace and no prefix.
4660     return NestedNameSpecifier::Create(*this, nullptr,
4661                                  NNS->getAsNamespace()->getOriginalNamespace());
4662 
4663   case NestedNameSpecifier::NamespaceAlias:
4664     // A namespace is canonical; build a nested-name-specifier with
4665     // this namespace and no prefix.
4666     return NestedNameSpecifier::Create(*this, nullptr,
4667                                     NNS->getAsNamespaceAlias()->getNamespace()
4668                                                       ->getOriginalNamespace());
4669 
4670   case NestedNameSpecifier::TypeSpec:
4671   case NestedNameSpecifier::TypeSpecWithTemplate: {
4672     QualType T = getCanonicalType(QualType(NNS->getAsType(), 0));
4673 
4674     // If we have some kind of dependent-named type (e.g., "typename T::type"),
4675     // break it apart into its prefix and identifier, then reconsititute those
4676     // as the canonical nested-name-specifier. This is required to canonicalize
4677     // a dependent nested-name-specifier involving typedefs of dependent-name
4678     // types, e.g.,
4679     //   typedef typename T::type T1;
4680     //   typedef typename T1::type T2;
4681     if (const DependentNameType *DNT = T->getAs<DependentNameType>())
4682       return NestedNameSpecifier::Create(*this, DNT->getQualifier(),
4683                            const_cast<IdentifierInfo *>(DNT->getIdentifier()));
4684 
4685     // Otherwise, just canonicalize the type, and force it to be a TypeSpec.
4686     // FIXME: Why are TypeSpec and TypeSpecWithTemplate distinct in the
4687     // first place?
4688     return NestedNameSpecifier::Create(*this, nullptr, false,
4689                                        const_cast<Type *>(T.getTypePtr()));
4690   }
4691 
4692   case NestedNameSpecifier::Global:
4693   case NestedNameSpecifier::Super:
4694     // The global specifier and __super specifer are canonical and unique.
4695     return NNS;
4696   }
4697 
4698   llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
4699 }
4700 
4701 const ArrayType *ASTContext::getAsArrayType(QualType T) const {
4702   // Handle the non-qualified case efficiently.
4703   if (!T.hasLocalQualifiers()) {
4704     // Handle the common positive case fast.
4705     if (const ArrayType *AT = dyn_cast<ArrayType>(T))
4706       return AT;
4707   }
4708 
4709   // Handle the common negative case fast.
4710   if (!isa<ArrayType>(T.getCanonicalType()))
4711     return nullptr;
4712 
4713   // Apply any qualifiers from the array type to the element type.  This
4714   // implements C99 6.7.3p8: "If the specification of an array type includes
4715   // any type qualifiers, the element type is so qualified, not the array type."
4716 
4717   // If we get here, we either have type qualifiers on the type, or we have
4718   // sugar such as a typedef in the way.  If we have type qualifiers on the type
4719   // we must propagate them down into the element type.
4720 
4721   SplitQualType split = T.getSplitDesugaredType();
4722   Qualifiers qs = split.Quals;
4723 
4724   // If we have a simple case, just return now.
4725   const ArrayType *ATy = dyn_cast<ArrayType>(split.Ty);
4726   if (!ATy || qs.empty())
4727     return ATy;
4728 
4729   // Otherwise, we have an array and we have qualifiers on it.  Push the
4730   // qualifiers into the array element type and return a new array type.
4731   QualType NewEltTy = getQualifiedType(ATy->getElementType(), qs);
4732 
4733   if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
4734     return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
4735                                                 CAT->getSizeModifier(),
4736                                            CAT->getIndexTypeCVRQualifiers()));
4737   if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
4738     return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
4739                                                   IAT->getSizeModifier(),
4740                                            IAT->getIndexTypeCVRQualifiers()));
4741 
4742   if (const DependentSizedArrayType *DSAT
4743         = dyn_cast<DependentSizedArrayType>(ATy))
4744     return cast<ArrayType>(
4745                      getDependentSizedArrayType(NewEltTy,
4746                                                 DSAT->getSizeExpr(),
4747                                                 DSAT->getSizeModifier(),
4748                                               DSAT->getIndexTypeCVRQualifiers(),
4749                                                 DSAT->getBracketsRange()));
4750 
4751   const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
4752   return cast<ArrayType>(getVariableArrayType(NewEltTy,
4753                                               VAT->getSizeExpr(),
4754                                               VAT->getSizeModifier(),
4755                                               VAT->getIndexTypeCVRQualifiers(),
4756                                               VAT->getBracketsRange()));
4757 }
4758 
4759 QualType ASTContext::getAdjustedParameterType(QualType T) const {
4760   if (T->isArrayType() || T->isFunctionType())
4761     return getDecayedType(T);
4762   return T;
4763 }
4764 
4765 QualType ASTContext::getSignatureParameterType(QualType T) const {
4766   T = getVariableArrayDecayedType(T);
4767   T = getAdjustedParameterType(T);
4768   return T.getUnqualifiedType();
4769 }
4770 
4771 QualType ASTContext::getExceptionObjectType(QualType T) const {
4772   // C++ [except.throw]p3:
4773   //   A throw-expression initializes a temporary object, called the exception
4774   //   object, the type of which is determined by removing any top-level
4775   //   cv-qualifiers from the static type of the operand of throw and adjusting
4776   //   the type from "array of T" or "function returning T" to "pointer to T"
4777   //   or "pointer to function returning T", [...]
4778   T = getVariableArrayDecayedType(T);
4779   if (T->isArrayType() || T->isFunctionType())
4780     T = getDecayedType(T);
4781   return T.getUnqualifiedType();
4782 }
4783 
4784 /// getArrayDecayedType - Return the properly qualified result of decaying the
4785 /// specified array type to a pointer.  This operation is non-trivial when
4786 /// handling typedefs etc.  The canonical type of "T" must be an array type,
4787 /// this returns a pointer to a properly qualified element of the array.
4788 ///
4789 /// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
4790 QualType ASTContext::getArrayDecayedType(QualType Ty) const {
4791   // Get the element type with 'getAsArrayType' so that we don't lose any
4792   // typedefs in the element type of the array.  This also handles propagation
4793   // of type qualifiers from the array type into the element type if present
4794   // (C99 6.7.3p8).
4795   const ArrayType *PrettyArrayType = getAsArrayType(Ty);
4796   assert(PrettyArrayType && "Not an array type!");
4797 
4798   QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
4799 
4800   // int x[restrict 4] ->  int *restrict
4801   return getQualifiedType(PtrTy, PrettyArrayType->getIndexTypeQualifiers());
4802 }
4803 
4804 QualType ASTContext::getBaseElementType(const ArrayType *array) const {
4805   return getBaseElementType(array->getElementType());
4806 }
4807 
4808 QualType ASTContext::getBaseElementType(QualType type) const {
4809   Qualifiers qs;
4810   while (true) {
4811     SplitQualType split = type.getSplitDesugaredType();
4812     const ArrayType *array = split.Ty->getAsArrayTypeUnsafe();
4813     if (!array) break;
4814 
4815     type = array->getElementType();
4816     qs.addConsistentQualifiers(split.Quals);
4817   }
4818 
4819   return getQualifiedType(type, qs);
4820 }
4821 
4822 /// getConstantArrayElementCount - Returns number of constant array elements.
4823 uint64_t
4824 ASTContext::getConstantArrayElementCount(const ConstantArrayType *CA)  const {
4825   uint64_t ElementCount = 1;
4826   do {
4827     ElementCount *= CA->getSize().getZExtValue();
4828     CA = dyn_cast_or_null<ConstantArrayType>(
4829       CA->getElementType()->getAsArrayTypeUnsafe());
4830   } while (CA);
4831   return ElementCount;
4832 }
4833 
4834 /// getFloatingRank - Return a relative rank for floating point types.
4835 /// This routine will assert if passed a built-in type that isn't a float.
4836 static FloatingRank getFloatingRank(QualType T) {
4837   if (const ComplexType *CT = T->getAs<ComplexType>())
4838     return getFloatingRank(CT->getElementType());
4839 
4840   assert(T->getAs<BuiltinType>() && "getFloatingRank(): not a floating type");
4841   switch (T->getAs<BuiltinType>()->getKind()) {
4842   default: llvm_unreachable("getFloatingRank(): not a floating type");
4843   case BuiltinType::Half:       return HalfRank;
4844   case BuiltinType::Float:      return FloatRank;
4845   case BuiltinType::Double:     return DoubleRank;
4846   case BuiltinType::LongDouble: return LongDoubleRank;
4847   case BuiltinType::Float128:   return Float128Rank;
4848   }
4849 }
4850 
4851 /// getFloatingTypeOfSizeWithinDomain - Returns a real floating
4852 /// point or a complex type (based on typeDomain/typeSize).
4853 /// 'typeDomain' is a real floating point or complex type.
4854 /// 'typeSize' is a real floating point or complex type.
4855 QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
4856                                                        QualType Domain) const {
4857   FloatingRank EltRank = getFloatingRank(Size);
4858   if (Domain->isComplexType()) {
4859     switch (EltRank) {
4860     case HalfRank: llvm_unreachable("Complex half is not supported");
4861     case FloatRank:      return FloatComplexTy;
4862     case DoubleRank:     return DoubleComplexTy;
4863     case LongDoubleRank: return LongDoubleComplexTy;
4864     case Float128Rank:   return Float128ComplexTy;
4865     }
4866   }
4867 
4868   assert(Domain->isRealFloatingType() && "Unknown domain!");
4869   switch (EltRank) {
4870   case HalfRank:       return HalfTy;
4871   case FloatRank:      return FloatTy;
4872   case DoubleRank:     return DoubleTy;
4873   case LongDoubleRank: return LongDoubleTy;
4874   case Float128Rank:   return Float128Ty;
4875   }
4876   llvm_unreachable("getFloatingRank(): illegal value for rank");
4877 }
4878 
4879 /// getFloatingTypeOrder - Compare the rank of the two specified floating
4880 /// point types, ignoring the domain of the type (i.e. 'double' ==
4881 /// '_Complex double').  If LHS > RHS, return 1.  If LHS == RHS, return 0. If
4882 /// LHS < RHS, return -1.
4883 int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) const {
4884   FloatingRank LHSR = getFloatingRank(LHS);
4885   FloatingRank RHSR = getFloatingRank(RHS);
4886 
4887   if (LHSR == RHSR)
4888     return 0;
4889   if (LHSR > RHSR)
4890     return 1;
4891   return -1;
4892 }
4893 
4894 /// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
4895 /// routine will assert if passed a built-in type that isn't an integer or enum,
4896 /// or if it is not canonicalized.
4897 unsigned ASTContext::getIntegerRank(const Type *T) const {
4898   assert(T->isCanonicalUnqualified() && "T should be canonicalized");
4899 
4900   switch (cast<BuiltinType>(T)->getKind()) {
4901   default: llvm_unreachable("getIntegerRank(): not a built-in integer");
4902   case BuiltinType::Bool:
4903     return 1 + (getIntWidth(BoolTy) << 3);
4904   case BuiltinType::Char_S:
4905   case BuiltinType::Char_U:
4906   case BuiltinType::SChar:
4907   case BuiltinType::UChar:
4908     return 2 + (getIntWidth(CharTy) << 3);
4909   case BuiltinType::Short:
4910   case BuiltinType::UShort:
4911     return 3 + (getIntWidth(ShortTy) << 3);
4912   case BuiltinType::Int:
4913   case BuiltinType::UInt:
4914     return 4 + (getIntWidth(IntTy) << 3);
4915   case BuiltinType::Long:
4916   case BuiltinType::ULong:
4917     return 5 + (getIntWidth(LongTy) << 3);
4918   case BuiltinType::LongLong:
4919   case BuiltinType::ULongLong:
4920     return 6 + (getIntWidth(LongLongTy) << 3);
4921   case BuiltinType::Int128:
4922   case BuiltinType::UInt128:
4923     return 7 + (getIntWidth(Int128Ty) << 3);
4924   }
4925 }
4926 
4927 /// \brief Whether this is a promotable bitfield reference according
4928 /// to C99 6.3.1.1p2, bullet 2 (and GCC extensions).
4929 ///
4930 /// \returns the type this bit-field will promote to, or NULL if no
4931 /// promotion occurs.
4932 QualType ASTContext::isPromotableBitField(Expr *E) const {
4933   if (E->isTypeDependent() || E->isValueDependent())
4934     return QualType();
4935 
4936   // FIXME: We should not do this unless E->refersToBitField() is true. This
4937   // matters in C where getSourceBitField() will find bit-fields for various
4938   // cases where the source expression is not a bit-field designator.
4939 
4940   FieldDecl *Field = E->getSourceBitField(); // FIXME: conditional bit-fields?
4941   if (!Field)
4942     return QualType();
4943 
4944   QualType FT = Field->getType();
4945 
4946   uint64_t BitWidth = Field->getBitWidthValue(*this);
4947   uint64_t IntSize = getTypeSize(IntTy);
4948   // C++ [conv.prom]p5:
4949   //   A prvalue for an integral bit-field can be converted to a prvalue of type
4950   //   int if int can represent all the values of the bit-field; otherwise, it
4951   //   can be converted to unsigned int if unsigned int can represent all the
4952   //   values of the bit-field. If the bit-field is larger yet, no integral
4953   //   promotion applies to it.
4954   // C11 6.3.1.1/2:
4955   //   [For a bit-field of type _Bool, int, signed int, or unsigned int:]
4956   //   If an int can represent all values of the original type (as restricted by
4957   //   the width, for a bit-field), the value is converted to an int; otherwise,
4958   //   it is converted to an unsigned int.
4959   //
4960   // FIXME: C does not permit promotion of a 'long : 3' bitfield to int.
4961   //        We perform that promotion here to match GCC and C++.
4962   if (BitWidth < IntSize)
4963     return IntTy;
4964 
4965   if (BitWidth == IntSize)
4966     return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
4967 
4968   // Types bigger than int are not subject to promotions, and therefore act
4969   // like the base type. GCC has some weird bugs in this area that we
4970   // deliberately do not follow (GCC follows a pre-standard resolution to
4971   // C's DR315 which treats bit-width as being part of the type, and this leaks
4972   // into their semantics in some cases).
4973   return QualType();
4974 }
4975 
4976 /// getPromotedIntegerType - Returns the type that Promotable will
4977 /// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable
4978 /// integer type.
4979 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const {
4980   assert(!Promotable.isNull());
4981   assert(Promotable->isPromotableIntegerType());
4982   if (const EnumType *ET = Promotable->getAs<EnumType>())
4983     return ET->getDecl()->getPromotionType();
4984 
4985   if (const BuiltinType *BT = Promotable->getAs<BuiltinType>()) {
4986     // C++ [conv.prom]: A prvalue of type char16_t, char32_t, or wchar_t
4987     // (3.9.1) can be converted to a prvalue of the first of the following
4988     // types that can represent all the values of its underlying type:
4989     // int, unsigned int, long int, unsigned long int, long long int, or
4990     // unsigned long long int [...]
4991     // FIXME: Is there some better way to compute this?
4992     if (BT->getKind() == BuiltinType::WChar_S ||
4993         BT->getKind() == BuiltinType::WChar_U ||
4994         BT->getKind() == BuiltinType::Char16 ||
4995         BT->getKind() == BuiltinType::Char32) {
4996       bool FromIsSigned = BT->getKind() == BuiltinType::WChar_S;
4997       uint64_t FromSize = getTypeSize(BT);
4998       QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy,
4999                                   LongLongTy, UnsignedLongLongTy };
5000       for (size_t Idx = 0; Idx < llvm::array_lengthof(PromoteTypes); ++Idx) {
5001         uint64_t ToSize = getTypeSize(PromoteTypes[Idx]);
5002         if (FromSize < ToSize ||
5003             (FromSize == ToSize &&
5004              FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType()))
5005           return PromoteTypes[Idx];
5006       }
5007       llvm_unreachable("char type should fit into long long");
5008     }
5009   }
5010 
5011   // At this point, we should have a signed or unsigned integer type.
5012   if (Promotable->isSignedIntegerType())
5013     return IntTy;
5014   uint64_t PromotableSize = getIntWidth(Promotable);
5015   uint64_t IntSize = getIntWidth(IntTy);
5016   assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize);
5017   return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy;
5018 }
5019 
5020 /// \brief Recurses in pointer/array types until it finds an objc retainable
5021 /// type and returns its ownership.
5022 Qualifiers::ObjCLifetime ASTContext::getInnerObjCOwnership(QualType T) const {
5023   while (!T.isNull()) {
5024     if (T.getObjCLifetime() != Qualifiers::OCL_None)
5025       return T.getObjCLifetime();
5026     if (T->isArrayType())
5027       T = getBaseElementType(T);
5028     else if (const PointerType *PT = T->getAs<PointerType>())
5029       T = PT->getPointeeType();
5030     else if (const ReferenceType *RT = T->getAs<ReferenceType>())
5031       T = RT->getPointeeType();
5032     else
5033       break;
5034   }
5035 
5036   return Qualifiers::OCL_None;
5037 }
5038 
5039 static const Type *getIntegerTypeForEnum(const EnumType *ET) {
5040   // Incomplete enum types are not treated as integer types.
5041   // FIXME: In C++, enum types are never integer types.
5042   if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped())
5043     return ET->getDecl()->getIntegerType().getTypePtr();
5044   return nullptr;
5045 }
5046 
5047 /// getIntegerTypeOrder - Returns the highest ranked integer type:
5048 /// C99 6.3.1.8p1.  If LHS > RHS, return 1.  If LHS == RHS, return 0. If
5049 /// LHS < RHS, return -1.
5050 int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) const {
5051   const Type *LHSC = getCanonicalType(LHS).getTypePtr();
5052   const Type *RHSC = getCanonicalType(RHS).getTypePtr();
5053 
5054   // Unwrap enums to their underlying type.
5055   if (const EnumType *ET = dyn_cast<EnumType>(LHSC))
5056     LHSC = getIntegerTypeForEnum(ET);
5057   if (const EnumType *ET = dyn_cast<EnumType>(RHSC))
5058     RHSC = getIntegerTypeForEnum(ET);
5059 
5060   if (LHSC == RHSC) return 0;
5061 
5062   bool LHSUnsigned = LHSC->isUnsignedIntegerType();
5063   bool RHSUnsigned = RHSC->isUnsignedIntegerType();
5064 
5065   unsigned LHSRank = getIntegerRank(LHSC);
5066   unsigned RHSRank = getIntegerRank(RHSC);
5067 
5068   if (LHSUnsigned == RHSUnsigned) {  // Both signed or both unsigned.
5069     if (LHSRank == RHSRank) return 0;
5070     return LHSRank > RHSRank ? 1 : -1;
5071   }
5072 
5073   // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
5074   if (LHSUnsigned) {
5075     // If the unsigned [LHS] type is larger, return it.
5076     if (LHSRank >= RHSRank)
5077       return 1;
5078 
5079     // If the signed type can represent all values of the unsigned type, it
5080     // wins.  Because we are dealing with 2's complement and types that are
5081     // powers of two larger than each other, this is always safe.
5082     return -1;
5083   }
5084 
5085   // If the unsigned [RHS] type is larger, return it.
5086   if (RHSRank >= LHSRank)
5087     return -1;
5088 
5089   // If the signed type can represent all values of the unsigned type, it
5090   // wins.  Because we are dealing with 2's complement and types that are
5091   // powers of two larger than each other, this is always safe.
5092   return 1;
5093 }
5094 
5095 TypedefDecl *ASTContext::getCFConstantStringDecl() const {
5096   if (!CFConstantStringTypeDecl) {
5097     assert(!CFConstantStringTagDecl &&
5098            "tag and typedef should be initialized together");
5099     CFConstantStringTagDecl = buildImplicitRecord("__NSConstantString_tag");
5100     CFConstantStringTagDecl->startDefinition();
5101 
5102     QualType FieldTypes[4];
5103     const char *FieldNames[4];
5104 
5105     // const int *isa;
5106     FieldTypes[0] = getPointerType(IntTy.withConst());
5107     FieldNames[0] = "isa";
5108     // int flags;
5109     FieldTypes[1] = IntTy;
5110     FieldNames[1] = "flags";
5111     // const char *str;
5112     FieldTypes[2] = getPointerType(CharTy.withConst());
5113     FieldNames[2] = "str";
5114     // long length;
5115     FieldTypes[3] = LongTy;
5116     FieldNames[3] = "length";
5117 
5118     // Create fields
5119     for (unsigned i = 0; i < 4; ++i) {
5120       FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTagDecl,
5121                                            SourceLocation(),
5122                                            SourceLocation(),
5123                                            &Idents.get(FieldNames[i]),
5124                                            FieldTypes[i], /*TInfo=*/nullptr,
5125                                            /*BitWidth=*/nullptr,
5126                                            /*Mutable=*/false,
5127                                            ICIS_NoInit);
5128       Field->setAccess(AS_public);
5129       CFConstantStringTagDecl->addDecl(Field);
5130     }
5131 
5132     CFConstantStringTagDecl->completeDefinition();
5133     // This type is designed to be compatible with NSConstantString, but cannot
5134     // use the same name, since NSConstantString is an interface.
5135     auto tagType = getTagDeclType(CFConstantStringTagDecl);
5136     CFConstantStringTypeDecl =
5137         buildImplicitTypedef(tagType, "__NSConstantString");
5138   }
5139 
5140   return CFConstantStringTypeDecl;
5141 }
5142 
5143 RecordDecl *ASTContext::getCFConstantStringTagDecl() const {
5144   if (!CFConstantStringTagDecl)
5145     getCFConstantStringDecl(); // Build the tag and the typedef.
5146   return CFConstantStringTagDecl;
5147 }
5148 
5149 // getCFConstantStringType - Return the type used for constant CFStrings.
5150 QualType ASTContext::getCFConstantStringType() const {
5151   return getTypedefType(getCFConstantStringDecl());
5152 }
5153 
5154 QualType ASTContext::getObjCSuperType() const {
5155   if (ObjCSuperType.isNull()) {
5156     RecordDecl *ObjCSuperTypeDecl = buildImplicitRecord("objc_super");
5157     TUDecl->addDecl(ObjCSuperTypeDecl);
5158     ObjCSuperType = getTagDeclType(ObjCSuperTypeDecl);
5159   }
5160   return ObjCSuperType;
5161 }
5162 
5163 void ASTContext::setCFConstantStringType(QualType T) {
5164   const TypedefType *TD = T->getAs<TypedefType>();
5165   assert(TD && "Invalid CFConstantStringType");
5166   CFConstantStringTypeDecl = cast<TypedefDecl>(TD->getDecl());
5167   auto TagType =
5168       CFConstantStringTypeDecl->getUnderlyingType()->getAs<RecordType>();
5169   assert(TagType && "Invalid CFConstantStringType");
5170   CFConstantStringTagDecl = TagType->getDecl();
5171 }
5172 
5173 QualType ASTContext::getBlockDescriptorType() const {
5174   if (BlockDescriptorType)
5175     return getTagDeclType(BlockDescriptorType);
5176 
5177   RecordDecl *RD;
5178   // FIXME: Needs the FlagAppleBlock bit.
5179   RD = buildImplicitRecord("__block_descriptor");
5180   RD->startDefinition();
5181 
5182   QualType FieldTypes[] = {
5183     UnsignedLongTy,
5184     UnsignedLongTy,
5185   };
5186 
5187   static const char *const FieldNames[] = {
5188     "reserved",
5189     "Size"
5190   };
5191 
5192   for (size_t i = 0; i < 2; ++i) {
5193     FieldDecl *Field = FieldDecl::Create(
5194         *this, RD, SourceLocation(), SourceLocation(),
5195         &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr,
5196         /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit);
5197     Field->setAccess(AS_public);
5198     RD->addDecl(Field);
5199   }
5200 
5201   RD->completeDefinition();
5202 
5203   BlockDescriptorType = RD;
5204 
5205   return getTagDeclType(BlockDescriptorType);
5206 }
5207 
5208 QualType ASTContext::getBlockDescriptorExtendedType() const {
5209   if (BlockDescriptorExtendedType)
5210     return getTagDeclType(BlockDescriptorExtendedType);
5211 
5212   RecordDecl *RD;
5213   // FIXME: Needs the FlagAppleBlock bit.
5214   RD = buildImplicitRecord("__block_descriptor_withcopydispose");
5215   RD->startDefinition();
5216 
5217   QualType FieldTypes[] = {
5218     UnsignedLongTy,
5219     UnsignedLongTy,
5220     getPointerType(VoidPtrTy),
5221     getPointerType(VoidPtrTy)
5222   };
5223 
5224   static const char *const FieldNames[] = {
5225     "reserved",
5226     "Size",
5227     "CopyFuncPtr",
5228     "DestroyFuncPtr"
5229   };
5230 
5231   for (size_t i = 0; i < 4; ++i) {
5232     FieldDecl *Field = FieldDecl::Create(
5233         *this, RD, SourceLocation(), SourceLocation(),
5234         &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr,
5235         /*BitWidth=*/nullptr,
5236         /*Mutable=*/false, ICIS_NoInit);
5237     Field->setAccess(AS_public);
5238     RD->addDecl(Field);
5239   }
5240 
5241   RD->completeDefinition();
5242 
5243   BlockDescriptorExtendedType = RD;
5244   return getTagDeclType(BlockDescriptorExtendedType);
5245 }
5246 
5247 /// BlockRequiresCopying - Returns true if byref variable "D" of type "Ty"
5248 /// requires copy/dispose. Note that this must match the logic
5249 /// in buildByrefHelpers.
5250 bool ASTContext::BlockRequiresCopying(QualType Ty,
5251                                       const VarDecl *D) {
5252   if (const CXXRecordDecl *record = Ty->getAsCXXRecordDecl()) {
5253     const Expr *copyExpr = getBlockVarCopyInits(D);
5254     if (!copyExpr && record->hasTrivialDestructor()) return false;
5255 
5256     return true;
5257   }
5258 
5259   if (!Ty->isObjCRetainableType()) return false;
5260 
5261   Qualifiers qs = Ty.getQualifiers();
5262 
5263   // If we have lifetime, that dominates.
5264   if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) {
5265     switch (lifetime) {
5266       case Qualifiers::OCL_None: llvm_unreachable("impossible");
5267 
5268       // These are just bits as far as the runtime is concerned.
5269       case Qualifiers::OCL_ExplicitNone:
5270       case Qualifiers::OCL_Autoreleasing:
5271         return false;
5272 
5273       // Tell the runtime that this is ARC __weak, called by the
5274       // byref routines.
5275       case Qualifiers::OCL_Weak:
5276       // ARC __strong __block variables need to be retained.
5277       case Qualifiers::OCL_Strong:
5278         return true;
5279     }
5280     llvm_unreachable("fell out of lifetime switch!");
5281   }
5282   return (Ty->isBlockPointerType() || isObjCNSObjectType(Ty) ||
5283           Ty->isObjCObjectPointerType());
5284 }
5285 
5286 bool ASTContext::getByrefLifetime(QualType Ty,
5287                               Qualifiers::ObjCLifetime &LifeTime,
5288                               bool &HasByrefExtendedLayout) const {
5289 
5290   if (!getLangOpts().ObjC1 ||
5291       getLangOpts().getGC() != LangOptions::NonGC)
5292     return false;
5293 
5294   HasByrefExtendedLayout = false;
5295   if (Ty->isRecordType()) {
5296     HasByrefExtendedLayout = true;
5297     LifeTime = Qualifiers::OCL_None;
5298   } else if ((LifeTime = Ty.getObjCLifetime())) {
5299     // Honor the ARC qualifiers.
5300   } else if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType()) {
5301     // The MRR rule.
5302     LifeTime = Qualifiers::OCL_ExplicitNone;
5303   } else {
5304     LifeTime = Qualifiers::OCL_None;
5305   }
5306   return true;
5307 }
5308 
5309 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() {
5310   if (!ObjCInstanceTypeDecl)
5311     ObjCInstanceTypeDecl =
5312         buildImplicitTypedef(getObjCIdType(), "instancetype");
5313   return ObjCInstanceTypeDecl;
5314 }
5315 
5316 // This returns true if a type has been typedefed to BOOL:
5317 // typedef <type> BOOL;
5318 static bool isTypeTypedefedAsBOOL(QualType T) {
5319   if (const TypedefType *TT = dyn_cast<TypedefType>(T))
5320     if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
5321       return II->isStr("BOOL");
5322 
5323   return false;
5324 }
5325 
5326 /// getObjCEncodingTypeSize returns size of type for objective-c encoding
5327 /// purpose.
5328 CharUnits ASTContext::getObjCEncodingTypeSize(QualType type) const {
5329   if (!type->isIncompleteArrayType() && type->isIncompleteType())
5330     return CharUnits::Zero();
5331 
5332   CharUnits sz = getTypeSizeInChars(type);
5333 
5334   // Make all integer and enum types at least as large as an int
5335   if (sz.isPositive() && type->isIntegralOrEnumerationType())
5336     sz = std::max(sz, getTypeSizeInChars(IntTy));
5337   // Treat arrays as pointers, since that's how they're passed in.
5338   else if (type->isArrayType())
5339     sz = getTypeSizeInChars(VoidPtrTy);
5340   return sz;
5341 }
5342 
5343 bool ASTContext::isMSStaticDataMemberInlineDefinition(const VarDecl *VD) const {
5344   return getTargetInfo().getCXXABI().isMicrosoft() &&
5345          VD->isStaticDataMember() &&
5346          VD->getType()->isIntegralOrEnumerationType() &&
5347          !VD->getFirstDecl()->isOutOfLine() && VD->getFirstDecl()->hasInit();
5348 }
5349 
5350 ASTContext::InlineVariableDefinitionKind
5351 ASTContext::getInlineVariableDefinitionKind(const VarDecl *VD) const {
5352   if (!VD->isInline())
5353     return InlineVariableDefinitionKind::None;
5354 
5355   // In almost all cases, it's a weak definition.
5356   auto *First = VD->getFirstDecl();
5357   if (!First->isConstexpr() || First->isInlineSpecified() ||
5358       !VD->isStaticDataMember())
5359     return InlineVariableDefinitionKind::Weak;
5360 
5361   // If there's a file-context declaration in this translation unit, it's a
5362   // non-discardable definition.
5363   for (auto *D : VD->redecls())
5364     if (D->getLexicalDeclContext()->isFileContext())
5365       return InlineVariableDefinitionKind::Strong;
5366 
5367   // If we've not seen one yet, we don't know.
5368   return InlineVariableDefinitionKind::WeakUnknown;
5369 }
5370 
5371 static inline
5372 std::string charUnitsToString(const CharUnits &CU) {
5373   return llvm::itostr(CU.getQuantity());
5374 }
5375 
5376 /// getObjCEncodingForBlock - Return the encoded type for this block
5377 /// declaration.
5378 std::string ASTContext::getObjCEncodingForBlock(const BlockExpr *Expr) const {
5379   std::string S;
5380 
5381   const BlockDecl *Decl = Expr->getBlockDecl();
5382   QualType BlockTy =
5383       Expr->getType()->getAs<BlockPointerType>()->getPointeeType();
5384   // Encode result type.
5385   if (getLangOpts().EncodeExtendedBlockSig)
5386     getObjCEncodingForMethodParameter(
5387         Decl::OBJC_TQ_None, BlockTy->getAs<FunctionType>()->getReturnType(), S,
5388         true /*Extended*/);
5389   else
5390     getObjCEncodingForType(BlockTy->getAs<FunctionType>()->getReturnType(), S);
5391   // Compute size of all parameters.
5392   // Start with computing size of a pointer in number of bytes.
5393   // FIXME: There might(should) be a better way of doing this computation!
5394   SourceLocation Loc;
5395   CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
5396   CharUnits ParmOffset = PtrSize;
5397   for (auto PI : Decl->parameters()) {
5398     QualType PType = PI->getType();
5399     CharUnits sz = getObjCEncodingTypeSize(PType);
5400     if (sz.isZero())
5401       continue;
5402     assert (sz.isPositive() && "BlockExpr - Incomplete param type");
5403     ParmOffset += sz;
5404   }
5405   // Size of the argument frame
5406   S += charUnitsToString(ParmOffset);
5407   // Block pointer and offset.
5408   S += "@?0";
5409 
5410   // Argument types.
5411   ParmOffset = PtrSize;
5412   for (auto PVDecl : Decl->parameters()) {
5413     QualType PType = PVDecl->getOriginalType();
5414     if (const ArrayType *AT =
5415           dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
5416       // Use array's original type only if it has known number of
5417       // elements.
5418       if (!isa<ConstantArrayType>(AT))
5419         PType = PVDecl->getType();
5420     } else if (PType->isFunctionType())
5421       PType = PVDecl->getType();
5422     if (getLangOpts().EncodeExtendedBlockSig)
5423       getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType,
5424                                       S, true /*Extended*/);
5425     else
5426       getObjCEncodingForType(PType, S);
5427     S += charUnitsToString(ParmOffset);
5428     ParmOffset += getObjCEncodingTypeSize(PType);
5429   }
5430 
5431   return S;
5432 }
5433 
5434 bool ASTContext::getObjCEncodingForFunctionDecl(const FunctionDecl *Decl,
5435                                                 std::string& S) {
5436   // Encode result type.
5437   getObjCEncodingForType(Decl->getReturnType(), S);
5438   CharUnits ParmOffset;
5439   // Compute size of all parameters.
5440   for (auto PI : Decl->parameters()) {
5441     QualType PType = PI->getType();
5442     CharUnits sz = getObjCEncodingTypeSize(PType);
5443     if (sz.isZero())
5444       continue;
5445 
5446     assert (sz.isPositive() &&
5447         "getObjCEncodingForFunctionDecl - Incomplete param type");
5448     ParmOffset += sz;
5449   }
5450   S += charUnitsToString(ParmOffset);
5451   ParmOffset = CharUnits::Zero();
5452 
5453   // Argument types.
5454   for (auto PVDecl : Decl->parameters()) {
5455     QualType PType = PVDecl->getOriginalType();
5456     if (const ArrayType *AT =
5457           dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
5458       // Use array's original type only if it has known number of
5459       // elements.
5460       if (!isa<ConstantArrayType>(AT))
5461         PType = PVDecl->getType();
5462     } else if (PType->isFunctionType())
5463       PType = PVDecl->getType();
5464     getObjCEncodingForType(PType, S);
5465     S += charUnitsToString(ParmOffset);
5466     ParmOffset += getObjCEncodingTypeSize(PType);
5467   }
5468 
5469   return false;
5470 }
5471 
5472 /// getObjCEncodingForMethodParameter - Return the encoded type for a single
5473 /// method parameter or return type. If Extended, include class names and
5474 /// block object types.
5475 void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT,
5476                                                    QualType T, std::string& S,
5477                                                    bool Extended) const {
5478   // Encode type qualifer, 'in', 'inout', etc. for the parameter.
5479   getObjCEncodingForTypeQualifier(QT, S);
5480   // Encode parameter type.
5481   getObjCEncodingForTypeImpl(T, S, true, true, nullptr,
5482                              true     /*OutermostType*/,
5483                              false    /*EncodingProperty*/,
5484                              false    /*StructField*/,
5485                              Extended /*EncodeBlockParameters*/,
5486                              Extended /*EncodeClassNames*/);
5487 }
5488 
5489 /// getObjCEncodingForMethodDecl - Return the encoded type for this method
5490 /// declaration.
5491 bool ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
5492                                               std::string& S,
5493                                               bool Extended) const {
5494   // FIXME: This is not very efficient.
5495   // Encode return type.
5496   getObjCEncodingForMethodParameter(Decl->getObjCDeclQualifier(),
5497                                     Decl->getReturnType(), S, Extended);
5498   // Compute size of all parameters.
5499   // Start with computing size of a pointer in number of bytes.
5500   // FIXME: There might(should) be a better way of doing this computation!
5501   SourceLocation Loc;
5502   CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy);
5503   // The first two arguments (self and _cmd) are pointers; account for
5504   // their size.
5505   CharUnits ParmOffset = 2 * PtrSize;
5506   for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
5507        E = Decl->sel_param_end(); PI != E; ++PI) {
5508     QualType PType = (*PI)->getType();
5509     CharUnits sz = getObjCEncodingTypeSize(PType);
5510     if (sz.isZero())
5511       continue;
5512 
5513     assert (sz.isPositive() &&
5514         "getObjCEncodingForMethodDecl - Incomplete param type");
5515     ParmOffset += sz;
5516   }
5517   S += charUnitsToString(ParmOffset);
5518   S += "@0:";
5519   S += charUnitsToString(PtrSize);
5520 
5521   // Argument types.
5522   ParmOffset = 2 * PtrSize;
5523   for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(),
5524        E = Decl->sel_param_end(); PI != E; ++PI) {
5525     const ParmVarDecl *PVDecl = *PI;
5526     QualType PType = PVDecl->getOriginalType();
5527     if (const ArrayType *AT =
5528           dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) {
5529       // Use array's original type only if it has known number of
5530       // elements.
5531       if (!isa<ConstantArrayType>(AT))
5532         PType = PVDecl->getType();
5533     } else if (PType->isFunctionType())
5534       PType = PVDecl->getType();
5535     getObjCEncodingForMethodParameter(PVDecl->getObjCDeclQualifier(),
5536                                       PType, S, Extended);
5537     S += charUnitsToString(ParmOffset);
5538     ParmOffset += getObjCEncodingTypeSize(PType);
5539   }
5540 
5541   return false;
5542 }
5543 
5544 ObjCPropertyImplDecl *
5545 ASTContext::getObjCPropertyImplDeclForPropertyDecl(
5546                                       const ObjCPropertyDecl *PD,
5547                                       const Decl *Container) const {
5548   if (!Container)
5549     return nullptr;
5550   if (const ObjCCategoryImplDecl *CID =
5551       dyn_cast<ObjCCategoryImplDecl>(Container)) {
5552     for (auto *PID : CID->property_impls())
5553       if (PID->getPropertyDecl() == PD)
5554         return PID;
5555   } else {
5556     const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
5557     for (auto *PID : OID->property_impls())
5558       if (PID->getPropertyDecl() == PD)
5559         return PID;
5560   }
5561   return nullptr;
5562 }
5563 
5564 /// getObjCEncodingForPropertyDecl - Return the encoded type for this
5565 /// property declaration. If non-NULL, Container must be either an
5566 /// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
5567 /// NULL when getting encodings for protocol properties.
5568 /// Property attributes are stored as a comma-delimited C string. The simple
5569 /// attributes readonly and bycopy are encoded as single characters. The
5570 /// parametrized attributes, getter=name, setter=name, and ivar=name, are
5571 /// encoded as single characters, followed by an identifier. Property types
5572 /// are also encoded as a parametrized attribute. The characters used to encode
5573 /// these attributes are defined by the following enumeration:
5574 /// @code
5575 /// enum PropertyAttributes {
5576 /// kPropertyReadOnly = 'R',   // property is read-only.
5577 /// kPropertyBycopy = 'C',     // property is a copy of the value last assigned
5578 /// kPropertyByref = '&',  // property is a reference to the value last assigned
5579 /// kPropertyDynamic = 'D',    // property is dynamic
5580 /// kPropertyGetter = 'G',     // followed by getter selector name
5581 /// kPropertySetter = 'S',     // followed by setter selector name
5582 /// kPropertyInstanceVariable = 'V'  // followed by instance variable  name
5583 /// kPropertyType = 'T'              // followed by old-style type encoding.
5584 /// kPropertyWeak = 'W'              // 'weak' property
5585 /// kPropertyStrong = 'P'            // property GC'able
5586 /// kPropertyNonAtomic = 'N'         // property non-atomic
5587 /// };
5588 /// @endcode
5589 void ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
5590                                                 const Decl *Container,
5591                                                 std::string& S) const {
5592   // Collect information from the property implementation decl(s).
5593   bool Dynamic = false;
5594   ObjCPropertyImplDecl *SynthesizePID = nullptr;
5595 
5596   if (ObjCPropertyImplDecl *PropertyImpDecl =
5597       getObjCPropertyImplDeclForPropertyDecl(PD, Container)) {
5598     if (PropertyImpDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
5599       Dynamic = true;
5600     else
5601       SynthesizePID = PropertyImpDecl;
5602   }
5603 
5604   // FIXME: This is not very efficient.
5605   S = "T";
5606 
5607   // Encode result type.
5608   // GCC has some special rules regarding encoding of properties which
5609   // closely resembles encoding of ivars.
5610   getObjCEncodingForPropertyType(PD->getType(), S);
5611 
5612   if (PD->isReadOnly()) {
5613     S += ",R";
5614     if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy)
5615       S += ",C";
5616     if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain)
5617       S += ",&";
5618     if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
5619       S += ",W";
5620   } else {
5621     switch (PD->getSetterKind()) {
5622     case ObjCPropertyDecl::Assign: break;
5623     case ObjCPropertyDecl::Copy:   S += ",C"; break;
5624     case ObjCPropertyDecl::Retain: S += ",&"; break;
5625     case ObjCPropertyDecl::Weak:   S += ",W"; break;
5626     }
5627   }
5628 
5629   // It really isn't clear at all what this means, since properties
5630   // are "dynamic by default".
5631   if (Dynamic)
5632     S += ",D";
5633 
5634   if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
5635     S += ",N";
5636 
5637   if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
5638     S += ",G";
5639     S += PD->getGetterName().getAsString();
5640   }
5641 
5642   if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
5643     S += ",S";
5644     S += PD->getSetterName().getAsString();
5645   }
5646 
5647   if (SynthesizePID) {
5648     const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
5649     S += ",V";
5650     S += OID->getNameAsString();
5651   }
5652 
5653   // FIXME: OBJCGC: weak & strong
5654 }
5655 
5656 /// getLegacyIntegralTypeEncoding -
5657 /// Another legacy compatibility encoding: 32-bit longs are encoded as
5658 /// 'l' or 'L' , but not always.  For typedefs, we need to use
5659 /// 'i' or 'I' instead if encoding a struct field, or a pointer!
5660 ///
5661 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
5662   if (isa<TypedefType>(PointeeTy.getTypePtr())) {
5663     if (const BuiltinType *BT = PointeeTy->getAs<BuiltinType>()) {
5664       if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
5665         PointeeTy = UnsignedIntTy;
5666       else
5667         if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
5668           PointeeTy = IntTy;
5669     }
5670   }
5671 }
5672 
5673 void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
5674                                         const FieldDecl *Field,
5675                                         QualType *NotEncodedT) const {
5676   // We follow the behavior of gcc, expanding structures which are
5677   // directly pointed to, and expanding embedded structures. Note that
5678   // these rules are sufficient to prevent recursive encoding of the
5679   // same type.
5680   getObjCEncodingForTypeImpl(T, S, true, true, Field,
5681                              true /* outermost type */, false, false,
5682                              false, false, false, NotEncodedT);
5683 }
5684 
5685 void ASTContext::getObjCEncodingForPropertyType(QualType T,
5686                                                 std::string& S) const {
5687   // Encode result type.
5688   // GCC has some special rules regarding encoding of properties which
5689   // closely resembles encoding of ivars.
5690   getObjCEncodingForTypeImpl(T, S, true, true, nullptr,
5691                              true /* outermost type */,
5692                              true /* encoding property */);
5693 }
5694 
5695 static char getObjCEncodingForPrimitiveKind(const ASTContext *C,
5696                                             BuiltinType::Kind kind) {
5697     switch (kind) {
5698     case BuiltinType::Void:       return 'v';
5699     case BuiltinType::Bool:       return 'B';
5700     case BuiltinType::Char_U:
5701     case BuiltinType::UChar:      return 'C';
5702     case BuiltinType::Char16:
5703     case BuiltinType::UShort:     return 'S';
5704     case BuiltinType::Char32:
5705     case BuiltinType::UInt:       return 'I';
5706     case BuiltinType::ULong:
5707         return C->getTargetInfo().getLongWidth() == 32 ? 'L' : 'Q';
5708     case BuiltinType::UInt128:    return 'T';
5709     case BuiltinType::ULongLong:  return 'Q';
5710     case BuiltinType::Char_S:
5711     case BuiltinType::SChar:      return 'c';
5712     case BuiltinType::Short:      return 's';
5713     case BuiltinType::WChar_S:
5714     case BuiltinType::WChar_U:
5715     case BuiltinType::Int:        return 'i';
5716     case BuiltinType::Long:
5717       return C->getTargetInfo().getLongWidth() == 32 ? 'l' : 'q';
5718     case BuiltinType::LongLong:   return 'q';
5719     case BuiltinType::Int128:     return 't';
5720     case BuiltinType::Float:      return 'f';
5721     case BuiltinType::Double:     return 'd';
5722     case BuiltinType::LongDouble: return 'D';
5723     case BuiltinType::NullPtr:    return '*'; // like char*
5724 
5725     case BuiltinType::Float128:
5726     case BuiltinType::Half:
5727       // FIXME: potentially need @encodes for these!
5728       return ' ';
5729 
5730     case BuiltinType::ObjCId:
5731     case BuiltinType::ObjCClass:
5732     case BuiltinType::ObjCSel:
5733       llvm_unreachable("@encoding ObjC primitive type");
5734 
5735     // OpenCL and placeholder types don't need @encodings.
5736 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
5737     case BuiltinType::Id:
5738 #include "clang/Basic/OpenCLImageTypes.def"
5739     case BuiltinType::OCLEvent:
5740     case BuiltinType::OCLClkEvent:
5741     case BuiltinType::OCLQueue:
5742     case BuiltinType::OCLNDRange:
5743     case BuiltinType::OCLReserveID:
5744     case BuiltinType::OCLSampler:
5745     case BuiltinType::Dependent:
5746 #define BUILTIN_TYPE(KIND, ID)
5747 #define PLACEHOLDER_TYPE(KIND, ID) \
5748     case BuiltinType::KIND:
5749 #include "clang/AST/BuiltinTypes.def"
5750       llvm_unreachable("invalid builtin type for @encode");
5751     }
5752     llvm_unreachable("invalid BuiltinType::Kind value");
5753 }
5754 
5755 static char ObjCEncodingForEnumType(const ASTContext *C, const EnumType *ET) {
5756   EnumDecl *Enum = ET->getDecl();
5757 
5758   // The encoding of an non-fixed enum type is always 'i', regardless of size.
5759   if (!Enum->isFixed())
5760     return 'i';
5761 
5762   // The encoding of a fixed enum type matches its fixed underlying type.
5763   const BuiltinType *BT = Enum->getIntegerType()->castAs<BuiltinType>();
5764   return getObjCEncodingForPrimitiveKind(C, BT->getKind());
5765 }
5766 
5767 static void EncodeBitField(const ASTContext *Ctx, std::string& S,
5768                            QualType T, const FieldDecl *FD) {
5769   assert(FD->isBitField() && "not a bitfield - getObjCEncodingForTypeImpl");
5770   S += 'b';
5771   // The NeXT runtime encodes bit fields as b followed by the number of bits.
5772   // The GNU runtime requires more information; bitfields are encoded as b,
5773   // then the offset (in bits) of the first element, then the type of the
5774   // bitfield, then the size in bits.  For example, in this structure:
5775   //
5776   // struct
5777   // {
5778   //    int integer;
5779   //    int flags:2;
5780   // };
5781   // On a 32-bit system, the encoding for flags would be b2 for the NeXT
5782   // runtime, but b32i2 for the GNU runtime.  The reason for this extra
5783   // information is not especially sensible, but we're stuck with it for
5784   // compatibility with GCC, although providing it breaks anything that
5785   // actually uses runtime introspection and wants to work on both runtimes...
5786   if (Ctx->getLangOpts().ObjCRuntime.isGNUFamily()) {
5787     const RecordDecl *RD = FD->getParent();
5788     const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD);
5789     S += llvm::utostr(RL.getFieldOffset(FD->getFieldIndex()));
5790     if (const EnumType *ET = T->getAs<EnumType>())
5791       S += ObjCEncodingForEnumType(Ctx, ET);
5792     else {
5793       const BuiltinType *BT = T->castAs<BuiltinType>();
5794       S += getObjCEncodingForPrimitiveKind(Ctx, BT->getKind());
5795     }
5796   }
5797   S += llvm::utostr(FD->getBitWidthValue(*Ctx));
5798 }
5799 
5800 // FIXME: Use SmallString for accumulating string.
5801 void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S,
5802                                             bool ExpandPointedToStructures,
5803                                             bool ExpandStructures,
5804                                             const FieldDecl *FD,
5805                                             bool OutermostType,
5806                                             bool EncodingProperty,
5807                                             bool StructField,
5808                                             bool EncodeBlockParameters,
5809                                             bool EncodeClassNames,
5810                                             bool EncodePointerToObjCTypedef,
5811                                             QualType *NotEncodedT) const {
5812   CanQualType CT = getCanonicalType(T);
5813   switch (CT->getTypeClass()) {
5814   case Type::Builtin:
5815   case Type::Enum:
5816     if (FD && FD->isBitField())
5817       return EncodeBitField(this, S, T, FD);
5818     if (const BuiltinType *BT = dyn_cast<BuiltinType>(CT))
5819       S += getObjCEncodingForPrimitiveKind(this, BT->getKind());
5820     else
5821       S += ObjCEncodingForEnumType(this, cast<EnumType>(CT));
5822     return;
5823 
5824   case Type::Complex: {
5825     const ComplexType *CT = T->castAs<ComplexType>();
5826     S += 'j';
5827     getObjCEncodingForTypeImpl(CT->getElementType(), S, false, false, nullptr);
5828     return;
5829   }
5830 
5831   case Type::Atomic: {
5832     const AtomicType *AT = T->castAs<AtomicType>();
5833     S += 'A';
5834     getObjCEncodingForTypeImpl(AT->getValueType(), S, false, false, nullptr);
5835     return;
5836   }
5837 
5838   // encoding for pointer or reference types.
5839   case Type::Pointer:
5840   case Type::LValueReference:
5841   case Type::RValueReference: {
5842     QualType PointeeTy;
5843     if (isa<PointerType>(CT)) {
5844       const PointerType *PT = T->castAs<PointerType>();
5845       if (PT->isObjCSelType()) {
5846         S += ':';
5847         return;
5848       }
5849       PointeeTy = PT->getPointeeType();
5850     } else {
5851       PointeeTy = T->castAs<ReferenceType>()->getPointeeType();
5852     }
5853 
5854     bool isReadOnly = false;
5855     // For historical/compatibility reasons, the read-only qualifier of the
5856     // pointee gets emitted _before_ the '^'.  The read-only qualifier of
5857     // the pointer itself gets ignored, _unless_ we are looking at a typedef!
5858     // Also, do not emit the 'r' for anything but the outermost type!
5859     if (isa<TypedefType>(T.getTypePtr())) {
5860       if (OutermostType && T.isConstQualified()) {
5861         isReadOnly = true;
5862         S += 'r';
5863       }
5864     } else if (OutermostType) {
5865       QualType P = PointeeTy;
5866       while (P->getAs<PointerType>())
5867         P = P->getAs<PointerType>()->getPointeeType();
5868       if (P.isConstQualified()) {
5869         isReadOnly = true;
5870         S += 'r';
5871       }
5872     }
5873     if (isReadOnly) {
5874       // Another legacy compatibility encoding. Some ObjC qualifier and type
5875       // combinations need to be rearranged.
5876       // Rewrite "in const" from "nr" to "rn"
5877       if (StringRef(S).endswith("nr"))
5878         S.replace(S.end()-2, S.end(), "rn");
5879     }
5880 
5881     if (PointeeTy->isCharType()) {
5882       // char pointer types should be encoded as '*' unless it is a
5883       // type that has been typedef'd to 'BOOL'.
5884       if (!isTypeTypedefedAsBOOL(PointeeTy)) {
5885         S += '*';
5886         return;
5887       }
5888     } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
5889       // GCC binary compat: Need to convert "struct objc_class *" to "#".
5890       if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
5891         S += '#';
5892         return;
5893       }
5894       // GCC binary compat: Need to convert "struct objc_object *" to "@".
5895       if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
5896         S += '@';
5897         return;
5898       }
5899       // fall through...
5900     }
5901     S += '^';
5902     getLegacyIntegralTypeEncoding(PointeeTy);
5903 
5904     getObjCEncodingForTypeImpl(PointeeTy, S, false, ExpandPointedToStructures,
5905                                nullptr, false, false, false, false, false, false,
5906                                NotEncodedT);
5907     return;
5908   }
5909 
5910   case Type::ConstantArray:
5911   case Type::IncompleteArray:
5912   case Type::VariableArray: {
5913     const ArrayType *AT = cast<ArrayType>(CT);
5914 
5915     if (isa<IncompleteArrayType>(AT) && !StructField) {
5916       // Incomplete arrays are encoded as a pointer to the array element.
5917       S += '^';
5918 
5919       getObjCEncodingForTypeImpl(AT->getElementType(), S,
5920                                  false, ExpandStructures, FD);
5921     } else {
5922       S += '[';
5923 
5924       if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
5925         S += llvm::utostr(CAT->getSize().getZExtValue());
5926       else {
5927         //Variable length arrays are encoded as a regular array with 0 elements.
5928         assert((isa<VariableArrayType>(AT) || isa<IncompleteArrayType>(AT)) &&
5929                "Unknown array type!");
5930         S += '0';
5931       }
5932 
5933       getObjCEncodingForTypeImpl(AT->getElementType(), S,
5934                                  false, ExpandStructures, FD,
5935                                  false, false, false, false, false, false,
5936                                  NotEncodedT);
5937       S += ']';
5938     }
5939     return;
5940   }
5941 
5942   case Type::FunctionNoProto:
5943   case Type::FunctionProto:
5944     S += '?';
5945     return;
5946 
5947   case Type::Record: {
5948     RecordDecl *RDecl = cast<RecordType>(CT)->getDecl();
5949     S += RDecl->isUnion() ? '(' : '{';
5950     // Anonymous structures print as '?'
5951     if (const IdentifierInfo *II = RDecl->getIdentifier()) {
5952       S += II->getName();
5953       if (ClassTemplateSpecializationDecl *Spec
5954           = dyn_cast<ClassTemplateSpecializationDecl>(RDecl)) {
5955         const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
5956         llvm::raw_string_ostream OS(S);
5957         TemplateSpecializationType::PrintTemplateArgumentList(OS,
5958                                             TemplateArgs.asArray(),
5959                                             (*this).getPrintingPolicy());
5960       }
5961     } else {
5962       S += '?';
5963     }
5964     if (ExpandStructures) {
5965       S += '=';
5966       if (!RDecl->isUnion()) {
5967         getObjCEncodingForStructureImpl(RDecl, S, FD, true, NotEncodedT);
5968       } else {
5969         for (const auto *Field : RDecl->fields()) {
5970           if (FD) {
5971             S += '"';
5972             S += Field->getNameAsString();
5973             S += '"';
5974           }
5975 
5976           // Special case bit-fields.
5977           if (Field->isBitField()) {
5978             getObjCEncodingForTypeImpl(Field->getType(), S, false, true,
5979                                        Field);
5980           } else {
5981             QualType qt = Field->getType();
5982             getLegacyIntegralTypeEncoding(qt);
5983             getObjCEncodingForTypeImpl(qt, S, false, true,
5984                                        FD, /*OutermostType*/false,
5985                                        /*EncodingProperty*/false,
5986                                        /*StructField*/true,
5987                                        false, false, false, NotEncodedT);
5988           }
5989         }
5990       }
5991     }
5992     S += RDecl->isUnion() ? ')' : '}';
5993     return;
5994   }
5995 
5996   case Type::BlockPointer: {
5997     const BlockPointerType *BT = T->castAs<BlockPointerType>();
5998     S += "@?"; // Unlike a pointer-to-function, which is "^?".
5999     if (EncodeBlockParameters) {
6000       const FunctionType *FT = BT->getPointeeType()->castAs<FunctionType>();
6001 
6002       S += '<';
6003       // Block return type
6004       getObjCEncodingForTypeImpl(
6005           FT->getReturnType(), S, ExpandPointedToStructures, ExpandStructures,
6006           FD, false /* OutermostType */, EncodingProperty,
6007           false /* StructField */, EncodeBlockParameters, EncodeClassNames, false,
6008                                  NotEncodedT);
6009       // Block self
6010       S += "@?";
6011       // Block parameters
6012       if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
6013         for (const auto &I : FPT->param_types())
6014           getObjCEncodingForTypeImpl(
6015               I, S, ExpandPointedToStructures, ExpandStructures, FD,
6016               false /* OutermostType */, EncodingProperty,
6017               false /* StructField */, EncodeBlockParameters, EncodeClassNames,
6018                                      false, NotEncodedT);
6019       }
6020       S += '>';
6021     }
6022     return;
6023   }
6024 
6025   case Type::ObjCObject: {
6026     // hack to match legacy encoding of *id and *Class
6027     QualType Ty = getObjCObjectPointerType(CT);
6028     if (Ty->isObjCIdType()) {
6029       S += "{objc_object=}";
6030       return;
6031     }
6032     else if (Ty->isObjCClassType()) {
6033       S += "{objc_class=}";
6034       return;
6035     }
6036   }
6037 
6038   case Type::ObjCInterface: {
6039     // Ignore protocol qualifiers when mangling at this level.
6040     // @encode(class_name)
6041     ObjCInterfaceDecl *OI = T->castAs<ObjCObjectType>()->getInterface();
6042     S += '{';
6043     S += OI->getObjCRuntimeNameAsString();
6044     if (ExpandStructures) {
6045       S += '=';
6046       SmallVector<const ObjCIvarDecl*, 32> Ivars;
6047       DeepCollectObjCIvars(OI, true, Ivars);
6048       for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
6049         const FieldDecl *Field = cast<FieldDecl>(Ivars[i]);
6050         if (Field->isBitField())
6051           getObjCEncodingForTypeImpl(Field->getType(), S, false, true, Field);
6052         else
6053           getObjCEncodingForTypeImpl(Field->getType(), S, false, true, FD,
6054                                      false, false, false, false, false,
6055                                      EncodePointerToObjCTypedef,
6056                                      NotEncodedT);
6057       }
6058     }
6059     S += '}';
6060     return;
6061   }
6062 
6063   case Type::ObjCObjectPointer: {
6064     const ObjCObjectPointerType *OPT = T->castAs<ObjCObjectPointerType>();
6065     if (OPT->isObjCIdType()) {
6066       S += '@';
6067       return;
6068     }
6069 
6070     if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
6071       // FIXME: Consider if we need to output qualifiers for 'Class<p>'.
6072       // Since this is a binary compatibility issue, need to consult with runtime
6073       // folks. Fortunately, this is a *very* obsure construct.
6074       S += '#';
6075       return;
6076     }
6077 
6078     if (OPT->isObjCQualifiedIdType()) {
6079       getObjCEncodingForTypeImpl(getObjCIdType(), S,
6080                                  ExpandPointedToStructures,
6081                                  ExpandStructures, FD);
6082       if (FD || EncodingProperty || EncodeClassNames) {
6083         // Note that we do extended encoding of protocol qualifer list
6084         // Only when doing ivar or property encoding.
6085         S += '"';
6086         for (const auto *I : OPT->quals()) {
6087           S += '<';
6088           S += I->getObjCRuntimeNameAsString();
6089           S += '>';
6090         }
6091         S += '"';
6092       }
6093       return;
6094     }
6095 
6096     QualType PointeeTy = OPT->getPointeeType();
6097     if (!EncodingProperty &&
6098         isa<TypedefType>(PointeeTy.getTypePtr()) &&
6099         !EncodePointerToObjCTypedef) {
6100       // Another historical/compatibility reason.
6101       // We encode the underlying type which comes out as
6102       // {...};
6103       S += '^';
6104       if (FD && OPT->getInterfaceDecl()) {
6105         // Prevent recursive encoding of fields in some rare cases.
6106         ObjCInterfaceDecl *OI = OPT->getInterfaceDecl();
6107         SmallVector<const ObjCIvarDecl*, 32> Ivars;
6108         DeepCollectObjCIvars(OI, true, Ivars);
6109         for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
6110           if (cast<FieldDecl>(Ivars[i]) == FD) {
6111             S += '{';
6112             S += OI->getObjCRuntimeNameAsString();
6113             S += '}';
6114             return;
6115           }
6116         }
6117       }
6118       getObjCEncodingForTypeImpl(PointeeTy, S,
6119                                  false, ExpandPointedToStructures,
6120                                  nullptr,
6121                                  false, false, false, false, false,
6122                                  /*EncodePointerToObjCTypedef*/true);
6123       return;
6124     }
6125 
6126     S += '@';
6127     if (OPT->getInterfaceDecl() &&
6128         (FD || EncodingProperty || EncodeClassNames)) {
6129       S += '"';
6130       S += OPT->getInterfaceDecl()->getObjCRuntimeNameAsString();
6131       for (const auto *I : OPT->quals()) {
6132         S += '<';
6133         S += I->getObjCRuntimeNameAsString();
6134         S += '>';
6135       }
6136       S += '"';
6137     }
6138     return;
6139   }
6140 
6141   // gcc just blithely ignores member pointers.
6142   // FIXME: we shoul do better than that.  'M' is available.
6143   case Type::MemberPointer:
6144   // This matches gcc's encoding, even though technically it is insufficient.
6145   //FIXME. We should do a better job than gcc.
6146   case Type::Vector:
6147   case Type::ExtVector:
6148   // Until we have a coherent encoding of these three types, issue warning.
6149     { if (NotEncodedT)
6150         *NotEncodedT = T;
6151       return;
6152     }
6153 
6154   // We could see an undeduced auto type here during error recovery.
6155   // Just ignore it.
6156   case Type::Auto:
6157     return;
6158 
6159   case Type::Pipe:
6160 #define ABSTRACT_TYPE(KIND, BASE)
6161 #define TYPE(KIND, BASE)
6162 #define DEPENDENT_TYPE(KIND, BASE) \
6163   case Type::KIND:
6164 #define NON_CANONICAL_TYPE(KIND, BASE) \
6165   case Type::KIND:
6166 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(KIND, BASE) \
6167   case Type::KIND:
6168 #include "clang/AST/TypeNodes.def"
6169     llvm_unreachable("@encode for dependent type!");
6170   }
6171   llvm_unreachable("bad type kind!");
6172 }
6173 
6174 void ASTContext::getObjCEncodingForStructureImpl(RecordDecl *RDecl,
6175                                                  std::string &S,
6176                                                  const FieldDecl *FD,
6177                                                  bool includeVBases,
6178                                                  QualType *NotEncodedT) const {
6179   assert(RDecl && "Expected non-null RecordDecl");
6180   assert(!RDecl->isUnion() && "Should not be called for unions");
6181   if (!RDecl->getDefinition() || RDecl->getDefinition()->isInvalidDecl())
6182     return;
6183 
6184   CXXRecordDecl *CXXRec = dyn_cast<CXXRecordDecl>(RDecl);
6185   std::multimap<uint64_t, NamedDecl *> FieldOrBaseOffsets;
6186   const ASTRecordLayout &layout = getASTRecordLayout(RDecl);
6187 
6188   if (CXXRec) {
6189     for (const auto &BI : CXXRec->bases()) {
6190       if (!BI.isVirtual()) {
6191         CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl();
6192         if (base->isEmpty())
6193           continue;
6194         uint64_t offs = toBits(layout.getBaseClassOffset(base));
6195         FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
6196                                   std::make_pair(offs, base));
6197       }
6198     }
6199   }
6200 
6201   unsigned i = 0;
6202   for (auto *Field : RDecl->fields()) {
6203     uint64_t offs = layout.getFieldOffset(i);
6204     FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
6205                               std::make_pair(offs, Field));
6206     ++i;
6207   }
6208 
6209   if (CXXRec && includeVBases) {
6210     for (const auto &BI : CXXRec->vbases()) {
6211       CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl();
6212       if (base->isEmpty())
6213         continue;
6214       uint64_t offs = toBits(layout.getVBaseClassOffset(base));
6215       if (offs >= uint64_t(toBits(layout.getNonVirtualSize())) &&
6216           FieldOrBaseOffsets.find(offs) == FieldOrBaseOffsets.end())
6217         FieldOrBaseOffsets.insert(FieldOrBaseOffsets.end(),
6218                                   std::make_pair(offs, base));
6219     }
6220   }
6221 
6222   CharUnits size;
6223   if (CXXRec) {
6224     size = includeVBases ? layout.getSize() : layout.getNonVirtualSize();
6225   } else {
6226     size = layout.getSize();
6227   }
6228 
6229 #ifndef NDEBUG
6230   uint64_t CurOffs = 0;
6231 #endif
6232   std::multimap<uint64_t, NamedDecl *>::iterator
6233     CurLayObj = FieldOrBaseOffsets.begin();
6234 
6235   if (CXXRec && CXXRec->isDynamicClass() &&
6236       (CurLayObj == FieldOrBaseOffsets.end() || CurLayObj->first != 0)) {
6237     if (FD) {
6238       S += "\"_vptr$";
6239       std::string recname = CXXRec->getNameAsString();
6240       if (recname.empty()) recname = "?";
6241       S += recname;
6242       S += '"';
6243     }
6244     S += "^^?";
6245 #ifndef NDEBUG
6246     CurOffs += getTypeSize(VoidPtrTy);
6247 #endif
6248   }
6249 
6250   if (!RDecl->hasFlexibleArrayMember()) {
6251     // Mark the end of the structure.
6252     uint64_t offs = toBits(size);
6253     FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs),
6254                               std::make_pair(offs, nullptr));
6255   }
6256 
6257   for (; CurLayObj != FieldOrBaseOffsets.end(); ++CurLayObj) {
6258 #ifndef NDEBUG
6259     assert(CurOffs <= CurLayObj->first);
6260     if (CurOffs < CurLayObj->first) {
6261       uint64_t padding = CurLayObj->first - CurOffs;
6262       // FIXME: There doesn't seem to be a way to indicate in the encoding that
6263       // packing/alignment of members is different that normal, in which case
6264       // the encoding will be out-of-sync with the real layout.
6265       // If the runtime switches to just consider the size of types without
6266       // taking into account alignment, we could make padding explicit in the
6267       // encoding (e.g. using arrays of chars). The encoding strings would be
6268       // longer then though.
6269       CurOffs += padding;
6270     }
6271 #endif
6272 
6273     NamedDecl *dcl = CurLayObj->second;
6274     if (!dcl)
6275       break; // reached end of structure.
6276 
6277     if (CXXRecordDecl *base = dyn_cast<CXXRecordDecl>(dcl)) {
6278       // We expand the bases without their virtual bases since those are going
6279       // in the initial structure. Note that this differs from gcc which
6280       // expands virtual bases each time one is encountered in the hierarchy,
6281       // making the encoding type bigger than it really is.
6282       getObjCEncodingForStructureImpl(base, S, FD, /*includeVBases*/false,
6283                                       NotEncodedT);
6284       assert(!base->isEmpty());
6285 #ifndef NDEBUG
6286       CurOffs += toBits(getASTRecordLayout(base).getNonVirtualSize());
6287 #endif
6288     } else {
6289       FieldDecl *field = cast<FieldDecl>(dcl);
6290       if (FD) {
6291         S += '"';
6292         S += field->getNameAsString();
6293         S += '"';
6294       }
6295 
6296       if (field->isBitField()) {
6297         EncodeBitField(this, S, field->getType(), field);
6298 #ifndef NDEBUG
6299         CurOffs += field->getBitWidthValue(*this);
6300 #endif
6301       } else {
6302         QualType qt = field->getType();
6303         getLegacyIntegralTypeEncoding(qt);
6304         getObjCEncodingForTypeImpl(qt, S, false, true, FD,
6305                                    /*OutermostType*/false,
6306                                    /*EncodingProperty*/false,
6307                                    /*StructField*/true,
6308                                    false, false, false, NotEncodedT);
6309 #ifndef NDEBUG
6310         CurOffs += getTypeSize(field->getType());
6311 #endif
6312       }
6313     }
6314   }
6315 }
6316 
6317 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
6318                                                  std::string& S) const {
6319   if (QT & Decl::OBJC_TQ_In)
6320     S += 'n';
6321   if (QT & Decl::OBJC_TQ_Inout)
6322     S += 'N';
6323   if (QT & Decl::OBJC_TQ_Out)
6324     S += 'o';
6325   if (QT & Decl::OBJC_TQ_Bycopy)
6326     S += 'O';
6327   if (QT & Decl::OBJC_TQ_Byref)
6328     S += 'R';
6329   if (QT & Decl::OBJC_TQ_Oneway)
6330     S += 'V';
6331 }
6332 
6333 TypedefDecl *ASTContext::getObjCIdDecl() const {
6334   if (!ObjCIdDecl) {
6335     QualType T = getObjCObjectType(ObjCBuiltinIdTy, { }, { });
6336     T = getObjCObjectPointerType(T);
6337     ObjCIdDecl = buildImplicitTypedef(T, "id");
6338   }
6339   return ObjCIdDecl;
6340 }
6341 
6342 TypedefDecl *ASTContext::getObjCSelDecl() const {
6343   if (!ObjCSelDecl) {
6344     QualType T = getPointerType(ObjCBuiltinSelTy);
6345     ObjCSelDecl = buildImplicitTypedef(T, "SEL");
6346   }
6347   return ObjCSelDecl;
6348 }
6349 
6350 TypedefDecl *ASTContext::getObjCClassDecl() const {
6351   if (!ObjCClassDecl) {
6352     QualType T = getObjCObjectType(ObjCBuiltinClassTy, { }, { });
6353     T = getObjCObjectPointerType(T);
6354     ObjCClassDecl = buildImplicitTypedef(T, "Class");
6355   }
6356   return ObjCClassDecl;
6357 }
6358 
6359 ObjCInterfaceDecl *ASTContext::getObjCProtocolDecl() const {
6360   if (!ObjCProtocolClassDecl) {
6361     ObjCProtocolClassDecl
6362       = ObjCInterfaceDecl::Create(*this, getTranslationUnitDecl(),
6363                                   SourceLocation(),
6364                                   &Idents.get("Protocol"),
6365                                   /*typeParamList=*/nullptr,
6366                                   /*PrevDecl=*/nullptr,
6367                                   SourceLocation(), true);
6368   }
6369 
6370   return ObjCProtocolClassDecl;
6371 }
6372 
6373 //===----------------------------------------------------------------------===//
6374 // __builtin_va_list Construction Functions
6375 //===----------------------------------------------------------------------===//
6376 
6377 static TypedefDecl *CreateCharPtrNamedVaListDecl(const ASTContext *Context,
6378                                                  StringRef Name) {
6379   // typedef char* __builtin[_ms]_va_list;
6380   QualType T = Context->getPointerType(Context->CharTy);
6381   return Context->buildImplicitTypedef(T, Name);
6382 }
6383 
6384 static TypedefDecl *CreateMSVaListDecl(const ASTContext *Context) {
6385   return CreateCharPtrNamedVaListDecl(Context, "__builtin_ms_va_list");
6386 }
6387 
6388 static TypedefDecl *CreateCharPtrBuiltinVaListDecl(const ASTContext *Context) {
6389   return CreateCharPtrNamedVaListDecl(Context, "__builtin_va_list");
6390 }
6391 
6392 static TypedefDecl *CreateVoidPtrBuiltinVaListDecl(const ASTContext *Context) {
6393   // typedef void* __builtin_va_list;
6394   QualType T = Context->getPointerType(Context->VoidTy);
6395   return Context->buildImplicitTypedef(T, "__builtin_va_list");
6396 }
6397 
6398 static TypedefDecl *
6399 CreateAArch64ABIBuiltinVaListDecl(const ASTContext *Context) {
6400   // struct __va_list
6401   RecordDecl *VaListTagDecl = Context->buildImplicitRecord("__va_list");
6402   if (Context->getLangOpts().CPlusPlus) {
6403     // namespace std { struct __va_list {
6404     NamespaceDecl *NS;
6405     NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
6406                                Context->getTranslationUnitDecl(),
6407                                /*Inline*/ false, SourceLocation(),
6408                                SourceLocation(), &Context->Idents.get("std"),
6409                                /*PrevDecl*/ nullptr);
6410     NS->setImplicit();
6411     VaListTagDecl->setDeclContext(NS);
6412   }
6413 
6414   VaListTagDecl->startDefinition();
6415 
6416   const size_t NumFields = 5;
6417   QualType FieldTypes[NumFields];
6418   const char *FieldNames[NumFields];
6419 
6420   // void *__stack;
6421   FieldTypes[0] = Context->getPointerType(Context->VoidTy);
6422   FieldNames[0] = "__stack";
6423 
6424   // void *__gr_top;
6425   FieldTypes[1] = Context->getPointerType(Context->VoidTy);
6426   FieldNames[1] = "__gr_top";
6427 
6428   // void *__vr_top;
6429   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
6430   FieldNames[2] = "__vr_top";
6431 
6432   // int __gr_offs;
6433   FieldTypes[3] = Context->IntTy;
6434   FieldNames[3] = "__gr_offs";
6435 
6436   // int __vr_offs;
6437   FieldTypes[4] = Context->IntTy;
6438   FieldNames[4] = "__vr_offs";
6439 
6440   // Create fields
6441   for (unsigned i = 0; i < NumFields; ++i) {
6442     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6443                                          VaListTagDecl,
6444                                          SourceLocation(),
6445                                          SourceLocation(),
6446                                          &Context->Idents.get(FieldNames[i]),
6447                                          FieldTypes[i], /*TInfo=*/nullptr,
6448                                          /*BitWidth=*/nullptr,
6449                                          /*Mutable=*/false,
6450                                          ICIS_NoInit);
6451     Field->setAccess(AS_public);
6452     VaListTagDecl->addDecl(Field);
6453   }
6454   VaListTagDecl->completeDefinition();
6455   Context->VaListTagDecl = VaListTagDecl;
6456   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6457 
6458   // } __builtin_va_list;
6459   return Context->buildImplicitTypedef(VaListTagType, "__builtin_va_list");
6460 }
6461 
6462 static TypedefDecl *CreatePowerABIBuiltinVaListDecl(const ASTContext *Context) {
6463   // typedef struct __va_list_tag {
6464   RecordDecl *VaListTagDecl;
6465 
6466   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
6467   VaListTagDecl->startDefinition();
6468 
6469   const size_t NumFields = 5;
6470   QualType FieldTypes[NumFields];
6471   const char *FieldNames[NumFields];
6472 
6473   //   unsigned char gpr;
6474   FieldTypes[0] = Context->UnsignedCharTy;
6475   FieldNames[0] = "gpr";
6476 
6477   //   unsigned char fpr;
6478   FieldTypes[1] = Context->UnsignedCharTy;
6479   FieldNames[1] = "fpr";
6480 
6481   //   unsigned short reserved;
6482   FieldTypes[2] = Context->UnsignedShortTy;
6483   FieldNames[2] = "reserved";
6484 
6485   //   void* overflow_arg_area;
6486   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
6487   FieldNames[3] = "overflow_arg_area";
6488 
6489   //   void* reg_save_area;
6490   FieldTypes[4] = Context->getPointerType(Context->VoidTy);
6491   FieldNames[4] = "reg_save_area";
6492 
6493   // Create fields
6494   for (unsigned i = 0; i < NumFields; ++i) {
6495     FieldDecl *Field = FieldDecl::Create(*Context, VaListTagDecl,
6496                                          SourceLocation(),
6497                                          SourceLocation(),
6498                                          &Context->Idents.get(FieldNames[i]),
6499                                          FieldTypes[i], /*TInfo=*/nullptr,
6500                                          /*BitWidth=*/nullptr,
6501                                          /*Mutable=*/false,
6502                                          ICIS_NoInit);
6503     Field->setAccess(AS_public);
6504     VaListTagDecl->addDecl(Field);
6505   }
6506   VaListTagDecl->completeDefinition();
6507   Context->VaListTagDecl = VaListTagDecl;
6508   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6509 
6510   // } __va_list_tag;
6511   TypedefDecl *VaListTagTypedefDecl =
6512       Context->buildImplicitTypedef(VaListTagType, "__va_list_tag");
6513 
6514   QualType VaListTagTypedefType =
6515     Context->getTypedefType(VaListTagTypedefDecl);
6516 
6517   // typedef __va_list_tag __builtin_va_list[1];
6518   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6519   QualType VaListTagArrayType
6520     = Context->getConstantArrayType(VaListTagTypedefType,
6521                                     Size, ArrayType::Normal, 0);
6522   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
6523 }
6524 
6525 static TypedefDecl *
6526 CreateX86_64ABIBuiltinVaListDecl(const ASTContext *Context) {
6527   // struct __va_list_tag {
6528   RecordDecl *VaListTagDecl;
6529   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
6530   VaListTagDecl->startDefinition();
6531 
6532   const size_t NumFields = 4;
6533   QualType FieldTypes[NumFields];
6534   const char *FieldNames[NumFields];
6535 
6536   //   unsigned gp_offset;
6537   FieldTypes[0] = Context->UnsignedIntTy;
6538   FieldNames[0] = "gp_offset";
6539 
6540   //   unsigned fp_offset;
6541   FieldTypes[1] = Context->UnsignedIntTy;
6542   FieldNames[1] = "fp_offset";
6543 
6544   //   void* overflow_arg_area;
6545   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
6546   FieldNames[2] = "overflow_arg_area";
6547 
6548   //   void* reg_save_area;
6549   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
6550   FieldNames[3] = "reg_save_area";
6551 
6552   // Create fields
6553   for (unsigned i = 0; i < NumFields; ++i) {
6554     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6555                                          VaListTagDecl,
6556                                          SourceLocation(),
6557                                          SourceLocation(),
6558                                          &Context->Idents.get(FieldNames[i]),
6559                                          FieldTypes[i], /*TInfo=*/nullptr,
6560                                          /*BitWidth=*/nullptr,
6561                                          /*Mutable=*/false,
6562                                          ICIS_NoInit);
6563     Field->setAccess(AS_public);
6564     VaListTagDecl->addDecl(Field);
6565   }
6566   VaListTagDecl->completeDefinition();
6567   Context->VaListTagDecl = VaListTagDecl;
6568   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6569 
6570   // };
6571 
6572   // typedef struct __va_list_tag __builtin_va_list[1];
6573   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6574   QualType VaListTagArrayType =
6575       Context->getConstantArrayType(VaListTagType, Size, ArrayType::Normal, 0);
6576   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
6577 }
6578 
6579 static TypedefDecl *CreatePNaClABIBuiltinVaListDecl(const ASTContext *Context) {
6580   // typedef int __builtin_va_list[4];
6581   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 4);
6582   QualType IntArrayType =
6583       Context->getConstantArrayType(Context->IntTy, Size, ArrayType::Normal, 0);
6584   return Context->buildImplicitTypedef(IntArrayType, "__builtin_va_list");
6585 }
6586 
6587 static TypedefDecl *
6588 CreateAAPCSABIBuiltinVaListDecl(const ASTContext *Context) {
6589   // struct __va_list
6590   RecordDecl *VaListDecl = Context->buildImplicitRecord("__va_list");
6591   if (Context->getLangOpts().CPlusPlus) {
6592     // namespace std { struct __va_list {
6593     NamespaceDecl *NS;
6594     NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context),
6595                                Context->getTranslationUnitDecl(),
6596                                /*Inline*/false, SourceLocation(),
6597                                SourceLocation(), &Context->Idents.get("std"),
6598                                /*PrevDecl*/ nullptr);
6599     NS->setImplicit();
6600     VaListDecl->setDeclContext(NS);
6601   }
6602 
6603   VaListDecl->startDefinition();
6604 
6605   // void * __ap;
6606   FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6607                                        VaListDecl,
6608                                        SourceLocation(),
6609                                        SourceLocation(),
6610                                        &Context->Idents.get("__ap"),
6611                                        Context->getPointerType(Context->VoidTy),
6612                                        /*TInfo=*/nullptr,
6613                                        /*BitWidth=*/nullptr,
6614                                        /*Mutable=*/false,
6615                                        ICIS_NoInit);
6616   Field->setAccess(AS_public);
6617   VaListDecl->addDecl(Field);
6618 
6619   // };
6620   VaListDecl->completeDefinition();
6621   Context->VaListTagDecl = VaListDecl;
6622 
6623   // typedef struct __va_list __builtin_va_list;
6624   QualType T = Context->getRecordType(VaListDecl);
6625   return Context->buildImplicitTypedef(T, "__builtin_va_list");
6626 }
6627 
6628 static TypedefDecl *
6629 CreateSystemZBuiltinVaListDecl(const ASTContext *Context) {
6630   // struct __va_list_tag {
6631   RecordDecl *VaListTagDecl;
6632   VaListTagDecl = Context->buildImplicitRecord("__va_list_tag");
6633   VaListTagDecl->startDefinition();
6634 
6635   const size_t NumFields = 4;
6636   QualType FieldTypes[NumFields];
6637   const char *FieldNames[NumFields];
6638 
6639   //   long __gpr;
6640   FieldTypes[0] = Context->LongTy;
6641   FieldNames[0] = "__gpr";
6642 
6643   //   long __fpr;
6644   FieldTypes[1] = Context->LongTy;
6645   FieldNames[1] = "__fpr";
6646 
6647   //   void *__overflow_arg_area;
6648   FieldTypes[2] = Context->getPointerType(Context->VoidTy);
6649   FieldNames[2] = "__overflow_arg_area";
6650 
6651   //   void *__reg_save_area;
6652   FieldTypes[3] = Context->getPointerType(Context->VoidTy);
6653   FieldNames[3] = "__reg_save_area";
6654 
6655   // Create fields
6656   for (unsigned i = 0; i < NumFields; ++i) {
6657     FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context),
6658                                          VaListTagDecl,
6659                                          SourceLocation(),
6660                                          SourceLocation(),
6661                                          &Context->Idents.get(FieldNames[i]),
6662                                          FieldTypes[i], /*TInfo=*/nullptr,
6663                                          /*BitWidth=*/nullptr,
6664                                          /*Mutable=*/false,
6665                                          ICIS_NoInit);
6666     Field->setAccess(AS_public);
6667     VaListTagDecl->addDecl(Field);
6668   }
6669   VaListTagDecl->completeDefinition();
6670   Context->VaListTagDecl = VaListTagDecl;
6671   QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6672 
6673   // };
6674 
6675   // typedef __va_list_tag __builtin_va_list[1];
6676   llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6677   QualType VaListTagArrayType =
6678       Context->getConstantArrayType(VaListTagType, Size, ArrayType::Normal, 0);
6679 
6680   return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list");
6681 }
6682 
6683 static TypedefDecl *CreateVaListDecl(const ASTContext *Context,
6684                                      TargetInfo::BuiltinVaListKind Kind) {
6685   switch (Kind) {
6686   case TargetInfo::CharPtrBuiltinVaList:
6687     return CreateCharPtrBuiltinVaListDecl(Context);
6688   case TargetInfo::VoidPtrBuiltinVaList:
6689     return CreateVoidPtrBuiltinVaListDecl(Context);
6690   case TargetInfo::AArch64ABIBuiltinVaList:
6691     return CreateAArch64ABIBuiltinVaListDecl(Context);
6692   case TargetInfo::PowerABIBuiltinVaList:
6693     return CreatePowerABIBuiltinVaListDecl(Context);
6694   case TargetInfo::X86_64ABIBuiltinVaList:
6695     return CreateX86_64ABIBuiltinVaListDecl(Context);
6696   case TargetInfo::PNaClABIBuiltinVaList:
6697     return CreatePNaClABIBuiltinVaListDecl(Context);
6698   case TargetInfo::AAPCSABIBuiltinVaList:
6699     return CreateAAPCSABIBuiltinVaListDecl(Context);
6700   case TargetInfo::SystemZBuiltinVaList:
6701     return CreateSystemZBuiltinVaListDecl(Context);
6702   }
6703 
6704   llvm_unreachable("Unhandled __builtin_va_list type kind");
6705 }
6706 
6707 TypedefDecl *ASTContext::getBuiltinVaListDecl() const {
6708   if (!BuiltinVaListDecl) {
6709     BuiltinVaListDecl = CreateVaListDecl(this, Target->getBuiltinVaListKind());
6710     assert(BuiltinVaListDecl->isImplicit());
6711   }
6712 
6713   return BuiltinVaListDecl;
6714 }
6715 
6716 Decl *ASTContext::getVaListTagDecl() const {
6717   // Force the creation of VaListTagDecl by building the __builtin_va_list
6718   // declaration.
6719   if (!VaListTagDecl)
6720     (void)getBuiltinVaListDecl();
6721 
6722   return VaListTagDecl;
6723 }
6724 
6725 TypedefDecl *ASTContext::getBuiltinMSVaListDecl() const {
6726   if (!BuiltinMSVaListDecl)
6727     BuiltinMSVaListDecl = CreateMSVaListDecl(this);
6728 
6729   return BuiltinMSVaListDecl;
6730 }
6731 
6732 void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
6733   assert(ObjCConstantStringType.isNull() &&
6734          "'NSConstantString' type already set!");
6735 
6736   ObjCConstantStringType = getObjCInterfaceType(Decl);
6737 }
6738 
6739 /// \brief Retrieve the template name that corresponds to a non-empty
6740 /// lookup.
6741 TemplateName
6742 ASTContext::getOverloadedTemplateName(UnresolvedSetIterator Begin,
6743                                       UnresolvedSetIterator End) const {
6744   unsigned size = End - Begin;
6745   assert(size > 1 && "set is not overloaded!");
6746 
6747   void *memory = Allocate(sizeof(OverloadedTemplateStorage) +
6748                           size * sizeof(FunctionTemplateDecl*));
6749   OverloadedTemplateStorage *OT = new(memory) OverloadedTemplateStorage(size);
6750 
6751   NamedDecl **Storage = OT->getStorage();
6752   for (UnresolvedSetIterator I = Begin; I != End; ++I) {
6753     NamedDecl *D = *I;
6754     assert(isa<FunctionTemplateDecl>(D) ||
6755            (isa<UsingShadowDecl>(D) &&
6756             isa<FunctionTemplateDecl>(D->getUnderlyingDecl())));
6757     *Storage++ = D;
6758   }
6759 
6760   return TemplateName(OT);
6761 }
6762 
6763 /// \brief Retrieve the template name that represents a qualified
6764 /// template name such as \c std::vector.
6765 TemplateName
6766 ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS,
6767                                      bool TemplateKeyword,
6768                                      TemplateDecl *Template) const {
6769   assert(NNS && "Missing nested-name-specifier in qualified template name");
6770 
6771   // FIXME: Canonicalization?
6772   llvm::FoldingSetNodeID ID;
6773   QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template);
6774 
6775   void *InsertPos = nullptr;
6776   QualifiedTemplateName *QTN =
6777     QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6778   if (!QTN) {
6779     QTN = new (*this, llvm::alignOf<QualifiedTemplateName>())
6780         QualifiedTemplateName(NNS, TemplateKeyword, Template);
6781     QualifiedTemplateNames.InsertNode(QTN, InsertPos);
6782   }
6783 
6784   return TemplateName(QTN);
6785 }
6786 
6787 /// \brief Retrieve the template name that represents a dependent
6788 /// template name such as \c MetaFun::template apply.
6789 TemplateName
6790 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
6791                                      const IdentifierInfo *Name) const {
6792   assert((!NNS || NNS->isDependent()) &&
6793          "Nested name specifier must be dependent");
6794 
6795   llvm::FoldingSetNodeID ID;
6796   DependentTemplateName::Profile(ID, NNS, Name);
6797 
6798   void *InsertPos = nullptr;
6799   DependentTemplateName *QTN =
6800     DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6801 
6802   if (QTN)
6803     return TemplateName(QTN);
6804 
6805   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
6806   if (CanonNNS == NNS) {
6807     QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6808         DependentTemplateName(NNS, Name);
6809   } else {
6810     TemplateName Canon = getDependentTemplateName(CanonNNS, Name);
6811     QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6812         DependentTemplateName(NNS, Name, Canon);
6813     DependentTemplateName *CheckQTN =
6814       DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6815     assert(!CheckQTN && "Dependent type name canonicalization broken");
6816     (void)CheckQTN;
6817   }
6818 
6819   DependentTemplateNames.InsertNode(QTN, InsertPos);
6820   return TemplateName(QTN);
6821 }
6822 
6823 /// \brief Retrieve the template name that represents a dependent
6824 /// template name such as \c MetaFun::template operator+.
6825 TemplateName
6826 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS,
6827                                      OverloadedOperatorKind Operator) const {
6828   assert((!NNS || NNS->isDependent()) &&
6829          "Nested name specifier must be dependent");
6830 
6831   llvm::FoldingSetNodeID ID;
6832   DependentTemplateName::Profile(ID, NNS, Operator);
6833 
6834   void *InsertPos = nullptr;
6835   DependentTemplateName *QTN
6836     = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6837 
6838   if (QTN)
6839     return TemplateName(QTN);
6840 
6841   NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS);
6842   if (CanonNNS == NNS) {
6843     QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6844         DependentTemplateName(NNS, Operator);
6845   } else {
6846     TemplateName Canon = getDependentTemplateName(CanonNNS, Operator);
6847     QTN = new (*this, llvm::alignOf<DependentTemplateName>())
6848         DependentTemplateName(NNS, Operator, Canon);
6849 
6850     DependentTemplateName *CheckQTN
6851       = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos);
6852     assert(!CheckQTN && "Dependent template name canonicalization broken");
6853     (void)CheckQTN;
6854   }
6855 
6856   DependentTemplateNames.InsertNode(QTN, InsertPos);
6857   return TemplateName(QTN);
6858 }
6859 
6860 TemplateName
6861 ASTContext::getSubstTemplateTemplateParm(TemplateTemplateParmDecl *param,
6862                                          TemplateName replacement) const {
6863   llvm::FoldingSetNodeID ID;
6864   SubstTemplateTemplateParmStorage::Profile(ID, param, replacement);
6865 
6866   void *insertPos = nullptr;
6867   SubstTemplateTemplateParmStorage *subst
6868     = SubstTemplateTemplateParms.FindNodeOrInsertPos(ID, insertPos);
6869 
6870   if (!subst) {
6871     subst = new (*this) SubstTemplateTemplateParmStorage(param, replacement);
6872     SubstTemplateTemplateParms.InsertNode(subst, insertPos);
6873   }
6874 
6875   return TemplateName(subst);
6876 }
6877 
6878 TemplateName
6879 ASTContext::getSubstTemplateTemplateParmPack(TemplateTemplateParmDecl *Param,
6880                                        const TemplateArgument &ArgPack) const {
6881   ASTContext &Self = const_cast<ASTContext &>(*this);
6882   llvm::FoldingSetNodeID ID;
6883   SubstTemplateTemplateParmPackStorage::Profile(ID, Self, Param, ArgPack);
6884 
6885   void *InsertPos = nullptr;
6886   SubstTemplateTemplateParmPackStorage *Subst
6887     = SubstTemplateTemplateParmPacks.FindNodeOrInsertPos(ID, InsertPos);
6888 
6889   if (!Subst) {
6890     Subst = new (*this) SubstTemplateTemplateParmPackStorage(Param,
6891                                                            ArgPack.pack_size(),
6892                                                          ArgPack.pack_begin());
6893     SubstTemplateTemplateParmPacks.InsertNode(Subst, InsertPos);
6894   }
6895 
6896   return TemplateName(Subst);
6897 }
6898 
6899 /// getFromTargetType - Given one of the integer types provided by
6900 /// TargetInfo, produce the corresponding type. The unsigned @p Type
6901 /// is actually a value of type @c TargetInfo::IntType.
6902 CanQualType ASTContext::getFromTargetType(unsigned Type) const {
6903   switch (Type) {
6904   case TargetInfo::NoInt: return CanQualType();
6905   case TargetInfo::SignedChar: return SignedCharTy;
6906   case TargetInfo::UnsignedChar: return UnsignedCharTy;
6907   case TargetInfo::SignedShort: return ShortTy;
6908   case TargetInfo::UnsignedShort: return UnsignedShortTy;
6909   case TargetInfo::SignedInt: return IntTy;
6910   case TargetInfo::UnsignedInt: return UnsignedIntTy;
6911   case TargetInfo::SignedLong: return LongTy;
6912   case TargetInfo::UnsignedLong: return UnsignedLongTy;
6913   case TargetInfo::SignedLongLong: return LongLongTy;
6914   case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
6915   }
6916 
6917   llvm_unreachable("Unhandled TargetInfo::IntType value");
6918 }
6919 
6920 //===----------------------------------------------------------------------===//
6921 //                        Type Predicates.
6922 //===----------------------------------------------------------------------===//
6923 
6924 /// getObjCGCAttr - Returns one of GCNone, Weak or Strong objc's
6925 /// garbage collection attribute.
6926 ///
6927 Qualifiers::GC ASTContext::getObjCGCAttrKind(QualType Ty) const {
6928   if (getLangOpts().getGC() == LangOptions::NonGC)
6929     return Qualifiers::GCNone;
6930 
6931   assert(getLangOpts().ObjC1);
6932   Qualifiers::GC GCAttrs = Ty.getObjCGCAttr();
6933 
6934   // Default behaviour under objective-C's gc is for ObjC pointers
6935   // (or pointers to them) be treated as though they were declared
6936   // as __strong.
6937   if (GCAttrs == Qualifiers::GCNone) {
6938     if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType())
6939       return Qualifiers::Strong;
6940     else if (Ty->isPointerType())
6941       return getObjCGCAttrKind(Ty->getAs<PointerType>()->getPointeeType());
6942   } else {
6943     // It's not valid to set GC attributes on anything that isn't a
6944     // pointer.
6945 #ifndef NDEBUG
6946     QualType CT = Ty->getCanonicalTypeInternal();
6947     while (const ArrayType *AT = dyn_cast<ArrayType>(CT))
6948       CT = AT->getElementType();
6949     assert(CT->isAnyPointerType() || CT->isBlockPointerType());
6950 #endif
6951   }
6952   return GCAttrs;
6953 }
6954 
6955 //===----------------------------------------------------------------------===//
6956 //                        Type Compatibility Testing
6957 //===----------------------------------------------------------------------===//
6958 
6959 /// areCompatVectorTypes - Return true if the two specified vector types are
6960 /// compatible.
6961 static bool areCompatVectorTypes(const VectorType *LHS,
6962                                  const VectorType *RHS) {
6963   assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified());
6964   return LHS->getElementType() == RHS->getElementType() &&
6965          LHS->getNumElements() == RHS->getNumElements();
6966 }
6967 
6968 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec,
6969                                           QualType SecondVec) {
6970   assert(FirstVec->isVectorType() && "FirstVec should be a vector type");
6971   assert(SecondVec->isVectorType() && "SecondVec should be a vector type");
6972 
6973   if (hasSameUnqualifiedType(FirstVec, SecondVec))
6974     return true;
6975 
6976   // Treat Neon vector types and most AltiVec vector types as if they are the
6977   // equivalent GCC vector types.
6978   const VectorType *First = FirstVec->getAs<VectorType>();
6979   const VectorType *Second = SecondVec->getAs<VectorType>();
6980   if (First->getNumElements() == Second->getNumElements() &&
6981       hasSameType(First->getElementType(), Second->getElementType()) &&
6982       First->getVectorKind() != VectorType::AltiVecPixel &&
6983       First->getVectorKind() != VectorType::AltiVecBool &&
6984       Second->getVectorKind() != VectorType::AltiVecPixel &&
6985       Second->getVectorKind() != VectorType::AltiVecBool)
6986     return true;
6987 
6988   return false;
6989 }
6990 
6991 //===----------------------------------------------------------------------===//
6992 // ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's.
6993 //===----------------------------------------------------------------------===//
6994 
6995 /// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the
6996 /// inheritance hierarchy of 'rProto'.
6997 bool
6998 ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto,
6999                                            ObjCProtocolDecl *rProto) const {
7000   if (declaresSameEntity(lProto, rProto))
7001     return true;
7002   for (auto *PI : rProto->protocols())
7003     if (ProtocolCompatibleWithProtocol(lProto, PI))
7004       return true;
7005   return false;
7006 }
7007 
7008 /// ObjCQualifiedClassTypesAreCompatible - compare  Class<pr,...> and
7009 /// Class<pr1, ...>.
7010 bool ASTContext::ObjCQualifiedClassTypesAreCompatible(QualType lhs,
7011                                                       QualType rhs) {
7012   const ObjCObjectPointerType *lhsQID = lhs->getAs<ObjCObjectPointerType>();
7013   const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
7014   assert ((lhsQID && rhsOPT) && "ObjCQualifiedClassTypesAreCompatible");
7015 
7016   for (auto *lhsProto : lhsQID->quals()) {
7017     bool match = false;
7018     for (auto *rhsProto : rhsOPT->quals()) {
7019       if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto)) {
7020         match = true;
7021         break;
7022       }
7023     }
7024     if (!match)
7025       return false;
7026   }
7027   return true;
7028 }
7029 
7030 /// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an
7031 /// ObjCQualifiedIDType.
7032 bool ASTContext::ObjCQualifiedIdTypesAreCompatible(QualType lhs, QualType rhs,
7033                                                    bool compare) {
7034   // Allow id<P..> and an 'id' or void* type in all cases.
7035   if (lhs->isVoidPointerType() ||
7036       lhs->isObjCIdType() || lhs->isObjCClassType())
7037     return true;
7038   else if (rhs->isVoidPointerType() ||
7039            rhs->isObjCIdType() || rhs->isObjCClassType())
7040     return true;
7041 
7042   if (const ObjCObjectPointerType *lhsQID = lhs->getAsObjCQualifiedIdType()) {
7043     const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
7044 
7045     if (!rhsOPT) return false;
7046 
7047     if (rhsOPT->qual_empty()) {
7048       // If the RHS is a unqualified interface pointer "NSString*",
7049       // make sure we check the class hierarchy.
7050       if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
7051         for (auto *I : lhsQID->quals()) {
7052           // when comparing an id<P> on lhs with a static type on rhs,
7053           // see if static class implements all of id's protocols, directly or
7054           // through its super class and categories.
7055           if (!rhsID->ClassImplementsProtocol(I, true))
7056             return false;
7057         }
7058       }
7059       // If there are no qualifiers and no interface, we have an 'id'.
7060       return true;
7061     }
7062     // Both the right and left sides have qualifiers.
7063     for (auto *lhsProto : lhsQID->quals()) {
7064       bool match = false;
7065 
7066       // when comparing an id<P> on lhs with a static type on rhs,
7067       // see if static class implements all of id's protocols, directly or
7068       // through its super class and categories.
7069       for (auto *rhsProto : rhsOPT->quals()) {
7070         if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
7071             (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
7072           match = true;
7073           break;
7074         }
7075       }
7076       // If the RHS is a qualified interface pointer "NSString<P>*",
7077       // make sure we check the class hierarchy.
7078       if (ObjCInterfaceDecl *rhsID = rhsOPT->getInterfaceDecl()) {
7079         for (auto *I : lhsQID->quals()) {
7080           // when comparing an id<P> on lhs with a static type on rhs,
7081           // see if static class implements all of id's protocols, directly or
7082           // through its super class and categories.
7083           if (rhsID->ClassImplementsProtocol(I, true)) {
7084             match = true;
7085             break;
7086           }
7087         }
7088       }
7089       if (!match)
7090         return false;
7091     }
7092 
7093     return true;
7094   }
7095 
7096   const ObjCObjectPointerType *rhsQID = rhs->getAsObjCQualifiedIdType();
7097   assert(rhsQID && "One of the LHS/RHS should be id<x>");
7098 
7099   if (const ObjCObjectPointerType *lhsOPT =
7100         lhs->getAsObjCInterfacePointerType()) {
7101     // If both the right and left sides have qualifiers.
7102     for (auto *lhsProto : lhsOPT->quals()) {
7103       bool match = false;
7104 
7105       // when comparing an id<P> on rhs with a static type on lhs,
7106       // see if static class implements all of id's protocols, directly or
7107       // through its super class and categories.
7108       // First, lhs protocols in the qualifier list must be found, direct
7109       // or indirect in rhs's qualifier list or it is a mismatch.
7110       for (auto *rhsProto : rhsQID->quals()) {
7111         if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
7112             (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
7113           match = true;
7114           break;
7115         }
7116       }
7117       if (!match)
7118         return false;
7119     }
7120 
7121     // Static class's protocols, or its super class or category protocols
7122     // must be found, direct or indirect in rhs's qualifier list or it is a mismatch.
7123     if (ObjCInterfaceDecl *lhsID = lhsOPT->getInterfaceDecl()) {
7124       llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols;
7125       CollectInheritedProtocols(lhsID, LHSInheritedProtocols);
7126       // This is rather dubious but matches gcc's behavior. If lhs has
7127       // no type qualifier and its class has no static protocol(s)
7128       // assume that it is mismatch.
7129       if (LHSInheritedProtocols.empty() && lhsOPT->qual_empty())
7130         return false;
7131       for (auto *lhsProto : LHSInheritedProtocols) {
7132         bool match = false;
7133         for (auto *rhsProto : rhsQID->quals()) {
7134           if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
7135               (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) {
7136             match = true;
7137             break;
7138           }
7139         }
7140         if (!match)
7141           return false;
7142       }
7143     }
7144     return true;
7145   }
7146   return false;
7147 }
7148 
7149 /// canAssignObjCInterfaces - Return true if the two interface types are
7150 /// compatible for assignment from RHS to LHS.  This handles validation of any
7151 /// protocol qualifiers on the LHS or RHS.
7152 ///
7153 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT,
7154                                          const ObjCObjectPointerType *RHSOPT) {
7155   const ObjCObjectType* LHS = LHSOPT->getObjectType();
7156   const ObjCObjectType* RHS = RHSOPT->getObjectType();
7157 
7158   // If either type represents the built-in 'id' or 'Class' types, return true.
7159   if (LHS->isObjCUnqualifiedIdOrClass() ||
7160       RHS->isObjCUnqualifiedIdOrClass())
7161     return true;
7162 
7163   // Function object that propagates a successful result or handles
7164   // __kindof types.
7165   auto finish = [&](bool succeeded) -> bool {
7166     if (succeeded)
7167       return true;
7168 
7169     if (!RHS->isKindOfType())
7170       return false;
7171 
7172     // Strip off __kindof and protocol qualifiers, then check whether
7173     // we can assign the other way.
7174     return canAssignObjCInterfaces(RHSOPT->stripObjCKindOfTypeAndQuals(*this),
7175                                    LHSOPT->stripObjCKindOfTypeAndQuals(*this));
7176   };
7177 
7178   if (LHS->isObjCQualifiedId() || RHS->isObjCQualifiedId()) {
7179     return finish(ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
7180                                                     QualType(RHSOPT,0),
7181                                                     false));
7182   }
7183 
7184   if (LHS->isObjCQualifiedClass() && RHS->isObjCQualifiedClass()) {
7185     return finish(ObjCQualifiedClassTypesAreCompatible(QualType(LHSOPT,0),
7186                                                        QualType(RHSOPT,0)));
7187   }
7188 
7189   // If we have 2 user-defined types, fall into that path.
7190   if (LHS->getInterface() && RHS->getInterface()) {
7191     return finish(canAssignObjCInterfaces(LHS, RHS));
7192   }
7193 
7194   return false;
7195 }
7196 
7197 /// canAssignObjCInterfacesInBlockPointer - This routine is specifically written
7198 /// for providing type-safety for objective-c pointers used to pass/return
7199 /// arguments in block literals. When passed as arguments, passing 'A*' where
7200 /// 'id' is expected is not OK. Passing 'Sub *" where 'Super *" is expected is
7201 /// not OK. For the return type, the opposite is not OK.
7202 bool ASTContext::canAssignObjCInterfacesInBlockPointer(
7203                                          const ObjCObjectPointerType *LHSOPT,
7204                                          const ObjCObjectPointerType *RHSOPT,
7205                                          bool BlockReturnType) {
7206 
7207   // Function object that propagates a successful result or handles
7208   // __kindof types.
7209   auto finish = [&](bool succeeded) -> bool {
7210     if (succeeded)
7211       return true;
7212 
7213     const ObjCObjectPointerType *Expected = BlockReturnType ? RHSOPT : LHSOPT;
7214     if (!Expected->isKindOfType())
7215       return false;
7216 
7217     // Strip off __kindof and protocol qualifiers, then check whether
7218     // we can assign the other way.
7219     return canAssignObjCInterfacesInBlockPointer(
7220              RHSOPT->stripObjCKindOfTypeAndQuals(*this),
7221              LHSOPT->stripObjCKindOfTypeAndQuals(*this),
7222              BlockReturnType);
7223   };
7224 
7225   if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType())
7226     return true;
7227 
7228   if (LHSOPT->isObjCBuiltinType()) {
7229     return finish(RHSOPT->isObjCBuiltinType() ||
7230                   RHSOPT->isObjCQualifiedIdType());
7231   }
7232 
7233   if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType())
7234     return finish(ObjCQualifiedIdTypesAreCompatible(QualType(LHSOPT,0),
7235                                                     QualType(RHSOPT,0),
7236                                                     false));
7237 
7238   const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType();
7239   const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType();
7240   if (LHS && RHS)  { // We have 2 user-defined types.
7241     if (LHS != RHS) {
7242       if (LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
7243         return finish(BlockReturnType);
7244       if (RHS->getDecl()->isSuperClassOf(LHS->getDecl()))
7245         return finish(!BlockReturnType);
7246     }
7247     else
7248       return true;
7249   }
7250   return false;
7251 }
7252 
7253 /// Comparison routine for Objective-C protocols to be used with
7254 /// llvm::array_pod_sort.
7255 static int compareObjCProtocolsByName(ObjCProtocolDecl * const *lhs,
7256                                       ObjCProtocolDecl * const *rhs) {
7257   return (*lhs)->getName().compare((*rhs)->getName());
7258 
7259 }
7260 
7261 /// getIntersectionOfProtocols - This routine finds the intersection of set
7262 /// of protocols inherited from two distinct objective-c pointer objects with
7263 /// the given common base.
7264 /// It is used to build composite qualifier list of the composite type of
7265 /// the conditional expression involving two objective-c pointer objects.
7266 static
7267 void getIntersectionOfProtocols(ASTContext &Context,
7268                                 const ObjCInterfaceDecl *CommonBase,
7269                                 const ObjCObjectPointerType *LHSOPT,
7270                                 const ObjCObjectPointerType *RHSOPT,
7271       SmallVectorImpl<ObjCProtocolDecl *> &IntersectionSet) {
7272 
7273   const ObjCObjectType* LHS = LHSOPT->getObjectType();
7274   const ObjCObjectType* RHS = RHSOPT->getObjectType();
7275   assert(LHS->getInterface() && "LHS must have an interface base");
7276   assert(RHS->getInterface() && "RHS must have an interface base");
7277 
7278   // Add all of the protocols for the LHS.
7279   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSProtocolSet;
7280 
7281   // Start with the protocol qualifiers.
7282   for (auto proto : LHS->quals()) {
7283     Context.CollectInheritedProtocols(proto, LHSProtocolSet);
7284   }
7285 
7286   // Also add the protocols associated with the LHS interface.
7287   Context.CollectInheritedProtocols(LHS->getInterface(), LHSProtocolSet);
7288 
7289   // Add all of the protocls for the RHS.
7290   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> RHSProtocolSet;
7291 
7292   // Start with the protocol qualifiers.
7293   for (auto proto : RHS->quals()) {
7294     Context.CollectInheritedProtocols(proto, RHSProtocolSet);
7295   }
7296 
7297   // Also add the protocols associated with the RHS interface.
7298   Context.CollectInheritedProtocols(RHS->getInterface(), RHSProtocolSet);
7299 
7300   // Compute the intersection of the collected protocol sets.
7301   for (auto proto : LHSProtocolSet) {
7302     if (RHSProtocolSet.count(proto))
7303       IntersectionSet.push_back(proto);
7304   }
7305 
7306   // Compute the set of protocols that is implied by either the common type or
7307   // the protocols within the intersection.
7308   llvm::SmallPtrSet<ObjCProtocolDecl *, 8> ImpliedProtocols;
7309   Context.CollectInheritedProtocols(CommonBase, ImpliedProtocols);
7310 
7311   // Remove any implied protocols from the list of inherited protocols.
7312   if (!ImpliedProtocols.empty()) {
7313     IntersectionSet.erase(
7314       std::remove_if(IntersectionSet.begin(),
7315                      IntersectionSet.end(),
7316                      [&](ObjCProtocolDecl *proto) -> bool {
7317                        return ImpliedProtocols.count(proto) > 0;
7318                      }),
7319       IntersectionSet.end());
7320   }
7321 
7322   // Sort the remaining protocols by name.
7323   llvm::array_pod_sort(IntersectionSet.begin(), IntersectionSet.end(),
7324                        compareObjCProtocolsByName);
7325 }
7326 
7327 /// Determine whether the first type is a subtype of the second.
7328 static bool canAssignObjCObjectTypes(ASTContext &ctx, QualType lhs,
7329                                      QualType rhs) {
7330   // Common case: two object pointers.
7331   const ObjCObjectPointerType *lhsOPT = lhs->getAs<ObjCObjectPointerType>();
7332   const ObjCObjectPointerType *rhsOPT = rhs->getAs<ObjCObjectPointerType>();
7333   if (lhsOPT && rhsOPT)
7334     return ctx.canAssignObjCInterfaces(lhsOPT, rhsOPT);
7335 
7336   // Two block pointers.
7337   const BlockPointerType *lhsBlock = lhs->getAs<BlockPointerType>();
7338   const BlockPointerType *rhsBlock = rhs->getAs<BlockPointerType>();
7339   if (lhsBlock && rhsBlock)
7340     return ctx.typesAreBlockPointerCompatible(lhs, rhs);
7341 
7342   // If either is an unqualified 'id' and the other is a block, it's
7343   // acceptable.
7344   if ((lhsOPT && lhsOPT->isObjCIdType() && rhsBlock) ||
7345       (rhsOPT && rhsOPT->isObjCIdType() && lhsBlock))
7346     return true;
7347 
7348   return false;
7349 }
7350 
7351 // Check that the given Objective-C type argument lists are equivalent.
7352 static bool sameObjCTypeArgs(ASTContext &ctx,
7353                              const ObjCInterfaceDecl *iface,
7354                              ArrayRef<QualType> lhsArgs,
7355                              ArrayRef<QualType> rhsArgs,
7356                              bool stripKindOf) {
7357   if (lhsArgs.size() != rhsArgs.size())
7358     return false;
7359 
7360   ObjCTypeParamList *typeParams = iface->getTypeParamList();
7361   for (unsigned i = 0, n = lhsArgs.size(); i != n; ++i) {
7362     if (ctx.hasSameType(lhsArgs[i], rhsArgs[i]))
7363       continue;
7364 
7365     switch (typeParams->begin()[i]->getVariance()) {
7366     case ObjCTypeParamVariance::Invariant:
7367       if (!stripKindOf ||
7368           !ctx.hasSameType(lhsArgs[i].stripObjCKindOfType(ctx),
7369                            rhsArgs[i].stripObjCKindOfType(ctx))) {
7370         return false;
7371       }
7372       break;
7373 
7374     case ObjCTypeParamVariance::Covariant:
7375       if (!canAssignObjCObjectTypes(ctx, lhsArgs[i], rhsArgs[i]))
7376         return false;
7377       break;
7378 
7379     case ObjCTypeParamVariance::Contravariant:
7380       if (!canAssignObjCObjectTypes(ctx, rhsArgs[i], lhsArgs[i]))
7381         return false;
7382       break;
7383     }
7384   }
7385 
7386   return true;
7387 }
7388 
7389 QualType ASTContext::areCommonBaseCompatible(
7390            const ObjCObjectPointerType *Lptr,
7391            const ObjCObjectPointerType *Rptr) {
7392   const ObjCObjectType *LHS = Lptr->getObjectType();
7393   const ObjCObjectType *RHS = Rptr->getObjectType();
7394   const ObjCInterfaceDecl* LDecl = LHS->getInterface();
7395   const ObjCInterfaceDecl* RDecl = RHS->getInterface();
7396 
7397   if (!LDecl || !RDecl)
7398     return QualType();
7399 
7400   // When either LHS or RHS is a kindof type, we should return a kindof type.
7401   // For example, for common base of kindof(ASub1) and kindof(ASub2), we return
7402   // kindof(A).
7403   bool anyKindOf = LHS->isKindOfType() || RHS->isKindOfType();
7404 
7405   // Follow the left-hand side up the class hierarchy until we either hit a
7406   // root or find the RHS. Record the ancestors in case we don't find it.
7407   llvm::SmallDenseMap<const ObjCInterfaceDecl *, const ObjCObjectType *, 4>
7408     LHSAncestors;
7409   while (true) {
7410     // Record this ancestor. We'll need this if the common type isn't in the
7411     // path from the LHS to the root.
7412     LHSAncestors[LHS->getInterface()->getCanonicalDecl()] = LHS;
7413 
7414     if (declaresSameEntity(LHS->getInterface(), RDecl)) {
7415       // Get the type arguments.
7416       ArrayRef<QualType> LHSTypeArgs = LHS->getTypeArgsAsWritten();
7417       bool anyChanges = false;
7418       if (LHS->isSpecialized() && RHS->isSpecialized()) {
7419         // Both have type arguments, compare them.
7420         if (!sameObjCTypeArgs(*this, LHS->getInterface(),
7421                               LHS->getTypeArgs(), RHS->getTypeArgs(),
7422                               /*stripKindOf=*/true))
7423           return QualType();
7424       } else if (LHS->isSpecialized() != RHS->isSpecialized()) {
7425         // If only one has type arguments, the result will not have type
7426         // arguments.
7427         LHSTypeArgs = { };
7428         anyChanges = true;
7429       }
7430 
7431       // Compute the intersection of protocols.
7432       SmallVector<ObjCProtocolDecl *, 8> Protocols;
7433       getIntersectionOfProtocols(*this, LHS->getInterface(), Lptr, Rptr,
7434                                  Protocols);
7435       if (!Protocols.empty())
7436         anyChanges = true;
7437 
7438       // If anything in the LHS will have changed, build a new result type.
7439       // If we need to return a kindof type but LHS is not a kindof type, we
7440       // build a new result type.
7441       if (anyChanges || LHS->isKindOfType() != anyKindOf) {
7442         QualType Result = getObjCInterfaceType(LHS->getInterface());
7443         Result = getObjCObjectType(Result, LHSTypeArgs, Protocols,
7444                                    anyKindOf || LHS->isKindOfType());
7445         return getObjCObjectPointerType(Result);
7446       }
7447 
7448       return getObjCObjectPointerType(QualType(LHS, 0));
7449     }
7450 
7451     // Find the superclass.
7452     QualType LHSSuperType = LHS->getSuperClassType();
7453     if (LHSSuperType.isNull())
7454       break;
7455 
7456     LHS = LHSSuperType->castAs<ObjCObjectType>();
7457   }
7458 
7459   // We didn't find anything by following the LHS to its root; now check
7460   // the RHS against the cached set of ancestors.
7461   while (true) {
7462     auto KnownLHS = LHSAncestors.find(RHS->getInterface()->getCanonicalDecl());
7463     if (KnownLHS != LHSAncestors.end()) {
7464       LHS = KnownLHS->second;
7465 
7466       // Get the type arguments.
7467       ArrayRef<QualType> RHSTypeArgs = RHS->getTypeArgsAsWritten();
7468       bool anyChanges = false;
7469       if (LHS->isSpecialized() && RHS->isSpecialized()) {
7470         // Both have type arguments, compare them.
7471         if (!sameObjCTypeArgs(*this, LHS->getInterface(),
7472                               LHS->getTypeArgs(), RHS->getTypeArgs(),
7473                               /*stripKindOf=*/true))
7474           return QualType();
7475       } else if (LHS->isSpecialized() != RHS->isSpecialized()) {
7476         // If only one has type arguments, the result will not have type
7477         // arguments.
7478         RHSTypeArgs = { };
7479         anyChanges = true;
7480       }
7481 
7482       // Compute the intersection of protocols.
7483       SmallVector<ObjCProtocolDecl *, 8> Protocols;
7484       getIntersectionOfProtocols(*this, RHS->getInterface(), Lptr, Rptr,
7485                                  Protocols);
7486       if (!Protocols.empty())
7487         anyChanges = true;
7488 
7489       // If we need to return a kindof type but RHS is not a kindof type, we
7490       // build a new result type.
7491       if (anyChanges || RHS->isKindOfType() != anyKindOf) {
7492         QualType Result = getObjCInterfaceType(RHS->getInterface());
7493         Result = getObjCObjectType(Result, RHSTypeArgs, Protocols,
7494                                    anyKindOf || RHS->isKindOfType());
7495         return getObjCObjectPointerType(Result);
7496       }
7497 
7498       return getObjCObjectPointerType(QualType(RHS, 0));
7499     }
7500 
7501     // Find the superclass of the RHS.
7502     QualType RHSSuperType = RHS->getSuperClassType();
7503     if (RHSSuperType.isNull())
7504       break;
7505 
7506     RHS = RHSSuperType->castAs<ObjCObjectType>();
7507   }
7508 
7509   return QualType();
7510 }
7511 
7512 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS,
7513                                          const ObjCObjectType *RHS) {
7514   assert(LHS->getInterface() && "LHS is not an interface type");
7515   assert(RHS->getInterface() && "RHS is not an interface type");
7516 
7517   // Verify that the base decls are compatible: the RHS must be a subclass of
7518   // the LHS.
7519   ObjCInterfaceDecl *LHSInterface = LHS->getInterface();
7520   bool IsSuperClass = LHSInterface->isSuperClassOf(RHS->getInterface());
7521   if (!IsSuperClass)
7522     return false;
7523 
7524   // If the LHS has protocol qualifiers, determine whether all of them are
7525   // satisfied by the RHS (i.e., the RHS has a superset of the protocols in the
7526   // LHS).
7527   if (LHS->getNumProtocols() > 0) {
7528     // OK if conversion of LHS to SuperClass results in narrowing of types
7529     // ; i.e., SuperClass may implement at least one of the protocols
7530     // in LHS's protocol list. Example, SuperObj<P1> = lhs<P1,P2> is ok.
7531     // But not SuperObj<P1,P2,P3> = lhs<P1,P2>.
7532     llvm::SmallPtrSet<ObjCProtocolDecl *, 8> SuperClassInheritedProtocols;
7533     CollectInheritedProtocols(RHS->getInterface(), SuperClassInheritedProtocols);
7534     // Also, if RHS has explicit quelifiers, include them for comparing with LHS's
7535     // qualifiers.
7536     for (auto *RHSPI : RHS->quals())
7537       CollectInheritedProtocols(RHSPI, SuperClassInheritedProtocols);
7538     // If there is no protocols associated with RHS, it is not a match.
7539     if (SuperClassInheritedProtocols.empty())
7540       return false;
7541 
7542     for (const auto *LHSProto : LHS->quals()) {
7543       bool SuperImplementsProtocol = false;
7544       for (auto *SuperClassProto : SuperClassInheritedProtocols)
7545         if (SuperClassProto->lookupProtocolNamed(LHSProto->getIdentifier())) {
7546           SuperImplementsProtocol = true;
7547           break;
7548         }
7549       if (!SuperImplementsProtocol)
7550         return false;
7551     }
7552   }
7553 
7554   // If the LHS is specialized, we may need to check type arguments.
7555   if (LHS->isSpecialized()) {
7556     // Follow the superclass chain until we've matched the LHS class in the
7557     // hierarchy. This substitutes type arguments through.
7558     const ObjCObjectType *RHSSuper = RHS;
7559     while (!declaresSameEntity(RHSSuper->getInterface(), LHSInterface))
7560       RHSSuper = RHSSuper->getSuperClassType()->castAs<ObjCObjectType>();
7561 
7562     // If the RHS is specializd, compare type arguments.
7563     if (RHSSuper->isSpecialized() &&
7564         !sameObjCTypeArgs(*this, LHS->getInterface(),
7565                           LHS->getTypeArgs(), RHSSuper->getTypeArgs(),
7566                           /*stripKindOf=*/true)) {
7567       return false;
7568     }
7569   }
7570 
7571   return true;
7572 }
7573 
7574 bool ASTContext::areComparableObjCPointerTypes(QualType LHS, QualType RHS) {
7575   // get the "pointed to" types
7576   const ObjCObjectPointerType *LHSOPT = LHS->getAs<ObjCObjectPointerType>();
7577   const ObjCObjectPointerType *RHSOPT = RHS->getAs<ObjCObjectPointerType>();
7578 
7579   if (!LHSOPT || !RHSOPT)
7580     return false;
7581 
7582   return canAssignObjCInterfaces(LHSOPT, RHSOPT) ||
7583          canAssignObjCInterfaces(RHSOPT, LHSOPT);
7584 }
7585 
7586 bool ASTContext::canBindObjCObjectType(QualType To, QualType From) {
7587   return canAssignObjCInterfaces(
7588                 getObjCObjectPointerType(To)->getAs<ObjCObjectPointerType>(),
7589                 getObjCObjectPointerType(From)->getAs<ObjCObjectPointerType>());
7590 }
7591 
7592 /// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
7593 /// both shall have the identically qualified version of a compatible type.
7594 /// C99 6.2.7p1: Two types have compatible types if their types are the
7595 /// same. See 6.7.[2,3,5] for additional rules.
7596 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS,
7597                                     bool CompareUnqualified) {
7598   if (getLangOpts().CPlusPlus)
7599     return hasSameType(LHS, RHS);
7600 
7601   return !mergeTypes(LHS, RHS, false, CompareUnqualified).isNull();
7602 }
7603 
7604 bool ASTContext::propertyTypesAreCompatible(QualType LHS, QualType RHS) {
7605   return typesAreCompatible(LHS, RHS);
7606 }
7607 
7608 bool ASTContext::typesAreBlockPointerCompatible(QualType LHS, QualType RHS) {
7609   return !mergeTypes(LHS, RHS, true).isNull();
7610 }
7611 
7612 /// mergeTransparentUnionType - if T is a transparent union type and a member
7613 /// of T is compatible with SubType, return the merged type, else return
7614 /// QualType()
7615 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType,
7616                                                bool OfBlockPointer,
7617                                                bool Unqualified) {
7618   if (const RecordType *UT = T->getAsUnionType()) {
7619     RecordDecl *UD = UT->getDecl();
7620     if (UD->hasAttr<TransparentUnionAttr>()) {
7621       for (const auto *I : UD->fields()) {
7622         QualType ET = I->getType().getUnqualifiedType();
7623         QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified);
7624         if (!MT.isNull())
7625           return MT;
7626       }
7627     }
7628   }
7629 
7630   return QualType();
7631 }
7632 
7633 /// mergeFunctionParameterTypes - merge two types which appear as function
7634 /// parameter types
7635 QualType ASTContext::mergeFunctionParameterTypes(QualType lhs, QualType rhs,
7636                                                  bool OfBlockPointer,
7637                                                  bool Unqualified) {
7638   // GNU extension: two types are compatible if they appear as a function
7639   // argument, one of the types is a transparent union type and the other
7640   // type is compatible with a union member
7641   QualType lmerge = mergeTransparentUnionType(lhs, rhs, OfBlockPointer,
7642                                               Unqualified);
7643   if (!lmerge.isNull())
7644     return lmerge;
7645 
7646   QualType rmerge = mergeTransparentUnionType(rhs, lhs, OfBlockPointer,
7647                                               Unqualified);
7648   if (!rmerge.isNull())
7649     return rmerge;
7650 
7651   return mergeTypes(lhs, rhs, OfBlockPointer, Unqualified);
7652 }
7653 
7654 QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs,
7655                                         bool OfBlockPointer,
7656                                         bool Unqualified) {
7657   const FunctionType *lbase = lhs->getAs<FunctionType>();
7658   const FunctionType *rbase = rhs->getAs<FunctionType>();
7659   const FunctionProtoType *lproto = dyn_cast<FunctionProtoType>(lbase);
7660   const FunctionProtoType *rproto = dyn_cast<FunctionProtoType>(rbase);
7661   bool allLTypes = true;
7662   bool allRTypes = true;
7663 
7664   // Check return type
7665   QualType retType;
7666   if (OfBlockPointer) {
7667     QualType RHS = rbase->getReturnType();
7668     QualType LHS = lbase->getReturnType();
7669     bool UnqualifiedResult = Unqualified;
7670     if (!UnqualifiedResult)
7671       UnqualifiedResult = (!RHS.hasQualifiers() && LHS.hasQualifiers());
7672     retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true);
7673   }
7674   else
7675     retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false,
7676                          Unqualified);
7677   if (retType.isNull()) return QualType();
7678 
7679   if (Unqualified)
7680     retType = retType.getUnqualifiedType();
7681 
7682   CanQualType LRetType = getCanonicalType(lbase->getReturnType());
7683   CanQualType RRetType = getCanonicalType(rbase->getReturnType());
7684   if (Unqualified) {
7685     LRetType = LRetType.getUnqualifiedType();
7686     RRetType = RRetType.getUnqualifiedType();
7687   }
7688 
7689   if (getCanonicalType(retType) != LRetType)
7690     allLTypes = false;
7691   if (getCanonicalType(retType) != RRetType)
7692     allRTypes = false;
7693 
7694   // FIXME: double check this
7695   // FIXME: should we error if lbase->getRegParmAttr() != 0 &&
7696   //                           rbase->getRegParmAttr() != 0 &&
7697   //                           lbase->getRegParmAttr() != rbase->getRegParmAttr()?
7698   FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo();
7699   FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo();
7700 
7701   // Compatible functions must have compatible calling conventions
7702   if (lbaseInfo.getCC() != rbaseInfo.getCC())
7703     return QualType();
7704 
7705   // Regparm is part of the calling convention.
7706   if (lbaseInfo.getHasRegParm() != rbaseInfo.getHasRegParm())
7707     return QualType();
7708   if (lbaseInfo.getRegParm() != rbaseInfo.getRegParm())
7709     return QualType();
7710 
7711   if (lbaseInfo.getProducesResult() != rbaseInfo.getProducesResult())
7712     return QualType();
7713 
7714   // FIXME: some uses, e.g. conditional exprs, really want this to be 'both'.
7715   bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn();
7716 
7717   if (lbaseInfo.getNoReturn() != NoReturn)
7718     allLTypes = false;
7719   if (rbaseInfo.getNoReturn() != NoReturn)
7720     allRTypes = false;
7721 
7722   FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn);
7723 
7724   if (lproto && rproto) { // two C99 style function prototypes
7725     assert(!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec() &&
7726            "C++ shouldn't be here");
7727     // Compatible functions must have the same number of parameters
7728     if (lproto->getNumParams() != rproto->getNumParams())
7729       return QualType();
7730 
7731     // Variadic and non-variadic functions aren't compatible
7732     if (lproto->isVariadic() != rproto->isVariadic())
7733       return QualType();
7734 
7735     if (lproto->getTypeQuals() != rproto->getTypeQuals())
7736       return QualType();
7737 
7738     if (!doFunctionTypesMatchOnExtParameterInfos(rproto, lproto))
7739       return QualType();
7740 
7741     // Check parameter type compatibility
7742     SmallVector<QualType, 10> types;
7743     for (unsigned i = 0, n = lproto->getNumParams(); i < n; i++) {
7744       QualType lParamType = lproto->getParamType(i).getUnqualifiedType();
7745       QualType rParamType = rproto->getParamType(i).getUnqualifiedType();
7746       QualType paramType = mergeFunctionParameterTypes(
7747           lParamType, rParamType, OfBlockPointer, Unqualified);
7748       if (paramType.isNull())
7749         return QualType();
7750 
7751       if (Unqualified)
7752         paramType = paramType.getUnqualifiedType();
7753 
7754       types.push_back(paramType);
7755       if (Unqualified) {
7756         lParamType = lParamType.getUnqualifiedType();
7757         rParamType = rParamType.getUnqualifiedType();
7758       }
7759 
7760       if (getCanonicalType(paramType) != getCanonicalType(lParamType))
7761         allLTypes = false;
7762       if (getCanonicalType(paramType) != getCanonicalType(rParamType))
7763         allRTypes = false;
7764     }
7765 
7766     if (allLTypes) return lhs;
7767     if (allRTypes) return rhs;
7768 
7769     FunctionProtoType::ExtProtoInfo EPI = lproto->getExtProtoInfo();
7770     EPI.ExtInfo = einfo;
7771     return getFunctionType(retType, types, EPI);
7772   }
7773 
7774   if (lproto) allRTypes = false;
7775   if (rproto) allLTypes = false;
7776 
7777   const FunctionProtoType *proto = lproto ? lproto : rproto;
7778   if (proto) {
7779     assert(!proto->hasExceptionSpec() && "C++ shouldn't be here");
7780     if (proto->isVariadic()) return QualType();
7781     // Check that the types are compatible with the types that
7782     // would result from default argument promotions (C99 6.7.5.3p15).
7783     // The only types actually affected are promotable integer
7784     // types and floats, which would be passed as a different
7785     // type depending on whether the prototype is visible.
7786     for (unsigned i = 0, n = proto->getNumParams(); i < n; ++i) {
7787       QualType paramTy = proto->getParamType(i);
7788 
7789       // Look at the converted type of enum types, since that is the type used
7790       // to pass enum values.
7791       if (const EnumType *Enum = paramTy->getAs<EnumType>()) {
7792         paramTy = Enum->getDecl()->getIntegerType();
7793         if (paramTy.isNull())
7794           return QualType();
7795       }
7796 
7797       if (paramTy->isPromotableIntegerType() ||
7798           getCanonicalType(paramTy).getUnqualifiedType() == FloatTy)
7799         return QualType();
7800     }
7801 
7802     if (allLTypes) return lhs;
7803     if (allRTypes) return rhs;
7804 
7805     FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo();
7806     EPI.ExtInfo = einfo;
7807     return getFunctionType(retType, proto->getParamTypes(), EPI);
7808   }
7809 
7810   if (allLTypes) return lhs;
7811   if (allRTypes) return rhs;
7812   return getFunctionNoProtoType(retType, einfo);
7813 }
7814 
7815 /// Given that we have an enum type and a non-enum type, try to merge them.
7816 static QualType mergeEnumWithInteger(ASTContext &Context, const EnumType *ET,
7817                                      QualType other, bool isBlockReturnType) {
7818   // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
7819   // a signed integer type, or an unsigned integer type.
7820   // Compatibility is based on the underlying type, not the promotion
7821   // type.
7822   QualType underlyingType = ET->getDecl()->getIntegerType();
7823   if (underlyingType.isNull()) return QualType();
7824   if (Context.hasSameType(underlyingType, other))
7825     return other;
7826 
7827   // In block return types, we're more permissive and accept any
7828   // integral type of the same size.
7829   if (isBlockReturnType && other->isIntegerType() &&
7830       Context.getTypeSize(underlyingType) == Context.getTypeSize(other))
7831     return other;
7832 
7833   return QualType();
7834 }
7835 
7836 QualType ASTContext::mergeTypes(QualType LHS, QualType RHS,
7837                                 bool OfBlockPointer,
7838                                 bool Unqualified, bool BlockReturnType) {
7839   // C++ [expr]: If an expression initially has the type "reference to T", the
7840   // type is adjusted to "T" prior to any further analysis, the expression
7841   // designates the object or function denoted by the reference, and the
7842   // expression is an lvalue unless the reference is an rvalue reference and
7843   // the expression is a function call (possibly inside parentheses).
7844   assert(!LHS->getAs<ReferenceType>() && "LHS is a reference type?");
7845   assert(!RHS->getAs<ReferenceType>() && "RHS is a reference type?");
7846 
7847   if (Unqualified) {
7848     LHS = LHS.getUnqualifiedType();
7849     RHS = RHS.getUnqualifiedType();
7850   }
7851 
7852   QualType LHSCan = getCanonicalType(LHS),
7853            RHSCan = getCanonicalType(RHS);
7854 
7855   // If two types are identical, they are compatible.
7856   if (LHSCan == RHSCan)
7857     return LHS;
7858 
7859   // If the qualifiers are different, the types aren't compatible... mostly.
7860   Qualifiers LQuals = LHSCan.getLocalQualifiers();
7861   Qualifiers RQuals = RHSCan.getLocalQualifiers();
7862   if (LQuals != RQuals) {
7863     if (getLangOpts().OpenCL) {
7864       if (LHSCan.getUnqualifiedType() != RHSCan.getUnqualifiedType() ||
7865           LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers())
7866         return QualType();
7867       if (LQuals.isAddressSpaceSupersetOf(RQuals))
7868         return LHS;
7869       if (RQuals.isAddressSpaceSupersetOf(LQuals))
7870         return RHS;
7871     }
7872     // If any of these qualifiers are different, we have a type
7873     // mismatch.
7874     if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
7875         LQuals.getAddressSpace() != RQuals.getAddressSpace() ||
7876         LQuals.getObjCLifetime() != RQuals.getObjCLifetime())
7877       return QualType();
7878 
7879     // Exactly one GC qualifier difference is allowed: __strong is
7880     // okay if the other type has no GC qualifier but is an Objective
7881     // C object pointer (i.e. implicitly strong by default).  We fix
7882     // this by pretending that the unqualified type was actually
7883     // qualified __strong.
7884     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
7885     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
7886     assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
7887 
7888     if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
7889       return QualType();
7890 
7891     if (GC_L == Qualifiers::Strong && RHSCan->isObjCObjectPointerType()) {
7892       return mergeTypes(LHS, getObjCGCQualType(RHS, Qualifiers::Strong));
7893     }
7894     if (GC_R == Qualifiers::Strong && LHSCan->isObjCObjectPointerType()) {
7895       return mergeTypes(getObjCGCQualType(LHS, Qualifiers::Strong), RHS);
7896     }
7897     return QualType();
7898   }
7899 
7900   // Okay, qualifiers are equal.
7901 
7902   Type::TypeClass LHSClass = LHSCan->getTypeClass();
7903   Type::TypeClass RHSClass = RHSCan->getTypeClass();
7904 
7905   // We want to consider the two function types to be the same for these
7906   // comparisons, just force one to the other.
7907   if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
7908   if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
7909 
7910   // Same as above for arrays
7911   if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
7912     LHSClass = Type::ConstantArray;
7913   if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
7914     RHSClass = Type::ConstantArray;
7915 
7916   // ObjCInterfaces are just specialized ObjCObjects.
7917   if (LHSClass == Type::ObjCInterface) LHSClass = Type::ObjCObject;
7918   if (RHSClass == Type::ObjCInterface) RHSClass = Type::ObjCObject;
7919 
7920   // Canonicalize ExtVector -> Vector.
7921   if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
7922   if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
7923 
7924   // If the canonical type classes don't match.
7925   if (LHSClass != RHSClass) {
7926     // Note that we only have special rules for turning block enum
7927     // returns into block int returns, not vice-versa.
7928     if (const EnumType* ETy = LHS->getAs<EnumType>()) {
7929       return mergeEnumWithInteger(*this, ETy, RHS, false);
7930     }
7931     if (const EnumType* ETy = RHS->getAs<EnumType>()) {
7932       return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType);
7933     }
7934     // allow block pointer type to match an 'id' type.
7935     if (OfBlockPointer && !BlockReturnType) {
7936        if (LHS->isObjCIdType() && RHS->isBlockPointerType())
7937          return LHS;
7938       if (RHS->isObjCIdType() && LHS->isBlockPointerType())
7939         return RHS;
7940     }
7941 
7942     return QualType();
7943   }
7944 
7945   // The canonical type classes match.
7946   switch (LHSClass) {
7947 #define TYPE(Class, Base)
7948 #define ABSTRACT_TYPE(Class, Base)
7949 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
7950 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
7951 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
7952 #include "clang/AST/TypeNodes.def"
7953     llvm_unreachable("Non-canonical and dependent types shouldn't get here");
7954 
7955   case Type::Auto:
7956   case Type::LValueReference:
7957   case Type::RValueReference:
7958   case Type::MemberPointer:
7959     llvm_unreachable("C++ should never be in mergeTypes");
7960 
7961   case Type::ObjCInterface:
7962   case Type::IncompleteArray:
7963   case Type::VariableArray:
7964   case Type::FunctionProto:
7965   case Type::ExtVector:
7966     llvm_unreachable("Types are eliminated above");
7967 
7968   case Type::Pointer:
7969   {
7970     // Merge two pointer types, while trying to preserve typedef info
7971     QualType LHSPointee = LHS->getAs<PointerType>()->getPointeeType();
7972     QualType RHSPointee = RHS->getAs<PointerType>()->getPointeeType();
7973     if (Unqualified) {
7974       LHSPointee = LHSPointee.getUnqualifiedType();
7975       RHSPointee = RHSPointee.getUnqualifiedType();
7976     }
7977     QualType ResultType = mergeTypes(LHSPointee, RHSPointee, false,
7978                                      Unqualified);
7979     if (ResultType.isNull()) return QualType();
7980     if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
7981       return LHS;
7982     if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
7983       return RHS;
7984     return getPointerType(ResultType);
7985   }
7986   case Type::BlockPointer:
7987   {
7988     // Merge two block pointer types, while trying to preserve typedef info
7989     QualType LHSPointee = LHS->getAs<BlockPointerType>()->getPointeeType();
7990     QualType RHSPointee = RHS->getAs<BlockPointerType>()->getPointeeType();
7991     if (Unqualified) {
7992       LHSPointee = LHSPointee.getUnqualifiedType();
7993       RHSPointee = RHSPointee.getUnqualifiedType();
7994     }
7995     QualType ResultType = mergeTypes(LHSPointee, RHSPointee, OfBlockPointer,
7996                                      Unqualified);
7997     if (ResultType.isNull()) return QualType();
7998     if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
7999       return LHS;
8000     if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
8001       return RHS;
8002     return getBlockPointerType(ResultType);
8003   }
8004   case Type::Atomic:
8005   {
8006     // Merge two pointer types, while trying to preserve typedef info
8007     QualType LHSValue = LHS->getAs<AtomicType>()->getValueType();
8008     QualType RHSValue = RHS->getAs<AtomicType>()->getValueType();
8009     if (Unqualified) {
8010       LHSValue = LHSValue.getUnqualifiedType();
8011       RHSValue = RHSValue.getUnqualifiedType();
8012     }
8013     QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
8014                                      Unqualified);
8015     if (ResultType.isNull()) return QualType();
8016     if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
8017       return LHS;
8018     if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
8019       return RHS;
8020     return getAtomicType(ResultType);
8021   }
8022   case Type::ConstantArray:
8023   {
8024     const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
8025     const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
8026     if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
8027       return QualType();
8028 
8029     QualType LHSElem = getAsArrayType(LHS)->getElementType();
8030     QualType RHSElem = getAsArrayType(RHS)->getElementType();
8031     if (Unqualified) {
8032       LHSElem = LHSElem.getUnqualifiedType();
8033       RHSElem = RHSElem.getUnqualifiedType();
8034     }
8035 
8036     QualType ResultType = mergeTypes(LHSElem, RHSElem, false, Unqualified);
8037     if (ResultType.isNull()) return QualType();
8038     if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
8039       return LHS;
8040     if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
8041       return RHS;
8042     if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
8043                                           ArrayType::ArraySizeModifier(), 0);
8044     if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
8045                                           ArrayType::ArraySizeModifier(), 0);
8046     const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
8047     const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
8048     if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
8049       return LHS;
8050     if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
8051       return RHS;
8052     if (LVAT) {
8053       // FIXME: This isn't correct! But tricky to implement because
8054       // the array's size has to be the size of LHS, but the type
8055       // has to be different.
8056       return LHS;
8057     }
8058     if (RVAT) {
8059       // FIXME: This isn't correct! But tricky to implement because
8060       // the array's size has to be the size of RHS, but the type
8061       // has to be different.
8062       return RHS;
8063     }
8064     if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
8065     if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
8066     return getIncompleteArrayType(ResultType,
8067                                   ArrayType::ArraySizeModifier(), 0);
8068   }
8069   case Type::FunctionNoProto:
8070     return mergeFunctionTypes(LHS, RHS, OfBlockPointer, Unqualified);
8071   case Type::Record:
8072   case Type::Enum:
8073     return QualType();
8074   case Type::Builtin:
8075     // Only exactly equal builtin types are compatible, which is tested above.
8076     return QualType();
8077   case Type::Complex:
8078     // Distinct complex types are incompatible.
8079     return QualType();
8080   case Type::Vector:
8081     // FIXME: The merged type should be an ExtVector!
8082     if (areCompatVectorTypes(LHSCan->getAs<VectorType>(),
8083                              RHSCan->getAs<VectorType>()))
8084       return LHS;
8085     return QualType();
8086   case Type::ObjCObject: {
8087     // Check if the types are assignment compatible.
8088     // FIXME: This should be type compatibility, e.g. whether
8089     // "LHS x; RHS x;" at global scope is legal.
8090     const ObjCObjectType* LHSIface = LHS->getAs<ObjCObjectType>();
8091     const ObjCObjectType* RHSIface = RHS->getAs<ObjCObjectType>();
8092     if (canAssignObjCInterfaces(LHSIface, RHSIface))
8093       return LHS;
8094 
8095     return QualType();
8096   }
8097   case Type::ObjCObjectPointer: {
8098     if (OfBlockPointer) {
8099       if (canAssignObjCInterfacesInBlockPointer(
8100                                           LHS->getAs<ObjCObjectPointerType>(),
8101                                           RHS->getAs<ObjCObjectPointerType>(),
8102                                           BlockReturnType))
8103         return LHS;
8104       return QualType();
8105     }
8106     if (canAssignObjCInterfaces(LHS->getAs<ObjCObjectPointerType>(),
8107                                 RHS->getAs<ObjCObjectPointerType>()))
8108       return LHS;
8109 
8110     return QualType();
8111   }
8112   case Type::Pipe:
8113   {
8114     // Merge two pointer types, while trying to preserve typedef info
8115     QualType LHSValue = LHS->getAs<PipeType>()->getElementType();
8116     QualType RHSValue = RHS->getAs<PipeType>()->getElementType();
8117     if (Unqualified) {
8118       LHSValue = LHSValue.getUnqualifiedType();
8119       RHSValue = RHSValue.getUnqualifiedType();
8120     }
8121     QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
8122                                      Unqualified);
8123     if (ResultType.isNull()) return QualType();
8124     if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
8125       return LHS;
8126     if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
8127       return RHS;
8128     return getPipeType(ResultType);
8129   }
8130   }
8131 
8132   llvm_unreachable("Invalid Type::Class!");
8133 }
8134 
8135 bool ASTContext::doFunctionTypesMatchOnExtParameterInfos(
8136                    const FunctionProtoType *firstFnType,
8137                    const FunctionProtoType *secondFnType) {
8138   // Fast path: if the first type doesn't have ext parameter infos,
8139   // we match if and only if they second type also doesn't have them.
8140   if (!firstFnType->hasExtParameterInfos())
8141     return !secondFnType->hasExtParameterInfos();
8142 
8143   // Otherwise, we can only match if the second type has them.
8144   if (!secondFnType->hasExtParameterInfos())
8145     return false;
8146 
8147   auto firstEPI = firstFnType->getExtParameterInfos();
8148   auto secondEPI = secondFnType->getExtParameterInfos();
8149   assert(firstEPI.size() == secondEPI.size());
8150 
8151   for (size_t i = 0, n = firstEPI.size(); i != n; ++i) {
8152     if (firstEPI[i] != secondEPI[i])
8153       return false;
8154   }
8155   return true;
8156 }
8157 
8158 void ASTContext::ResetObjCLayout(const ObjCContainerDecl *CD) {
8159   ObjCLayouts[CD] = nullptr;
8160 }
8161 
8162 /// mergeObjCGCQualifiers - This routine merges ObjC's GC attribute of 'LHS' and
8163 /// 'RHS' attributes and returns the merged version; including for function
8164 /// return types.
8165 QualType ASTContext::mergeObjCGCQualifiers(QualType LHS, QualType RHS) {
8166   QualType LHSCan = getCanonicalType(LHS),
8167   RHSCan = getCanonicalType(RHS);
8168   // If two types are identical, they are compatible.
8169   if (LHSCan == RHSCan)
8170     return LHS;
8171   if (RHSCan->isFunctionType()) {
8172     if (!LHSCan->isFunctionType())
8173       return QualType();
8174     QualType OldReturnType =
8175         cast<FunctionType>(RHSCan.getTypePtr())->getReturnType();
8176     QualType NewReturnType =
8177         cast<FunctionType>(LHSCan.getTypePtr())->getReturnType();
8178     QualType ResReturnType =
8179       mergeObjCGCQualifiers(NewReturnType, OldReturnType);
8180     if (ResReturnType.isNull())
8181       return QualType();
8182     if (ResReturnType == NewReturnType || ResReturnType == OldReturnType) {
8183       // id foo(); ... __strong id foo(); or: __strong id foo(); ... id foo();
8184       // In either case, use OldReturnType to build the new function type.
8185       const FunctionType *F = LHS->getAs<FunctionType>();
8186       if (const FunctionProtoType *FPT = cast<FunctionProtoType>(F)) {
8187         FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
8188         EPI.ExtInfo = getFunctionExtInfo(LHS);
8189         QualType ResultType =
8190             getFunctionType(OldReturnType, FPT->getParamTypes(), EPI);
8191         return ResultType;
8192       }
8193     }
8194     return QualType();
8195   }
8196 
8197   // If the qualifiers are different, the types can still be merged.
8198   Qualifiers LQuals = LHSCan.getLocalQualifiers();
8199   Qualifiers RQuals = RHSCan.getLocalQualifiers();
8200   if (LQuals != RQuals) {
8201     // If any of these qualifiers are different, we have a type mismatch.
8202     if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() ||
8203         LQuals.getAddressSpace() != RQuals.getAddressSpace())
8204       return QualType();
8205 
8206     // Exactly one GC qualifier difference is allowed: __strong is
8207     // okay if the other type has no GC qualifier but is an Objective
8208     // C object pointer (i.e. implicitly strong by default).  We fix
8209     // this by pretending that the unqualified type was actually
8210     // qualified __strong.
8211     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
8212     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
8213     assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements");
8214 
8215     if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak)
8216       return QualType();
8217 
8218     if (GC_L == Qualifiers::Strong)
8219       return LHS;
8220     if (GC_R == Qualifiers::Strong)
8221       return RHS;
8222     return QualType();
8223   }
8224 
8225   if (LHSCan->isObjCObjectPointerType() && RHSCan->isObjCObjectPointerType()) {
8226     QualType LHSBaseQT = LHS->getAs<ObjCObjectPointerType>()->getPointeeType();
8227     QualType RHSBaseQT = RHS->getAs<ObjCObjectPointerType>()->getPointeeType();
8228     QualType ResQT = mergeObjCGCQualifiers(LHSBaseQT, RHSBaseQT);
8229     if (ResQT == LHSBaseQT)
8230       return LHS;
8231     if (ResQT == RHSBaseQT)
8232       return RHS;
8233   }
8234   return QualType();
8235 }
8236 
8237 //===----------------------------------------------------------------------===//
8238 //                         Integer Predicates
8239 //===----------------------------------------------------------------------===//
8240 
8241 unsigned ASTContext::getIntWidth(QualType T) const {
8242   if (const EnumType *ET = T->getAs<EnumType>())
8243     T = ET->getDecl()->getIntegerType();
8244   if (T->isBooleanType())
8245     return 1;
8246   // For builtin types, just use the standard type sizing method
8247   return (unsigned)getTypeSize(T);
8248 }
8249 
8250 QualType ASTContext::getCorrespondingUnsignedType(QualType T) const {
8251   assert(T->hasSignedIntegerRepresentation() && "Unexpected type");
8252 
8253   // Turn <4 x signed int> -> <4 x unsigned int>
8254   if (const VectorType *VTy = T->getAs<VectorType>())
8255     return getVectorType(getCorrespondingUnsignedType(VTy->getElementType()),
8256                          VTy->getNumElements(), VTy->getVectorKind());
8257 
8258   // For enums, we return the unsigned version of the base type.
8259   if (const EnumType *ETy = T->getAs<EnumType>())
8260     T = ETy->getDecl()->getIntegerType();
8261 
8262   const BuiltinType *BTy = T->getAs<BuiltinType>();
8263   assert(BTy && "Unexpected signed integer type");
8264   switch (BTy->getKind()) {
8265   case BuiltinType::Char_S:
8266   case BuiltinType::SChar:
8267     return UnsignedCharTy;
8268   case BuiltinType::Short:
8269     return UnsignedShortTy;
8270   case BuiltinType::Int:
8271     return UnsignedIntTy;
8272   case BuiltinType::Long:
8273     return UnsignedLongTy;
8274   case BuiltinType::LongLong:
8275     return UnsignedLongLongTy;
8276   case BuiltinType::Int128:
8277     return UnsignedInt128Ty;
8278   default:
8279     llvm_unreachable("Unexpected signed integer type");
8280   }
8281 }
8282 
8283 ASTMutationListener::~ASTMutationListener() { }
8284 
8285 void ASTMutationListener::DeducedReturnType(const FunctionDecl *FD,
8286                                             QualType ReturnType) {}
8287 
8288 //===----------------------------------------------------------------------===//
8289 //                          Builtin Type Computation
8290 //===----------------------------------------------------------------------===//
8291 
8292 /// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the
8293 /// pointer over the consumed characters.  This returns the resultant type.  If
8294 /// AllowTypeModifiers is false then modifier like * are not parsed, just basic
8295 /// types.  This allows "v2i*" to be parsed as a pointer to a v2i instead of
8296 /// a vector of "i*".
8297 ///
8298 /// RequiresICE is filled in on return to indicate whether the value is required
8299 /// to be an Integer Constant Expression.
8300 static QualType DecodeTypeFromStr(const char *&Str, const ASTContext &Context,
8301                                   ASTContext::GetBuiltinTypeError &Error,
8302                                   bool &RequiresICE,
8303                                   bool AllowTypeModifiers) {
8304   // Modifiers.
8305   int HowLong = 0;
8306   bool Signed = false, Unsigned = false;
8307   RequiresICE = false;
8308 
8309   // Read the prefixed modifiers first.
8310   bool Done = false;
8311   while (!Done) {
8312     switch (*Str++) {
8313     default: Done = true; --Str; break;
8314     case 'I':
8315       RequiresICE = true;
8316       break;
8317     case 'S':
8318       assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
8319       assert(!Signed && "Can't use 'S' modifier multiple times!");
8320       Signed = true;
8321       break;
8322     case 'U':
8323       assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
8324       assert(!Unsigned && "Can't use 'U' modifier multiple times!");
8325       Unsigned = true;
8326       break;
8327     case 'L':
8328       assert(HowLong <= 2 && "Can't have LLLL modifier");
8329       ++HowLong;
8330       break;
8331     case 'W':
8332       // This modifier represents int64 type.
8333       assert(HowLong == 0 && "Can't use both 'L' and 'W' modifiers!");
8334       switch (Context.getTargetInfo().getInt64Type()) {
8335       default:
8336         llvm_unreachable("Unexpected integer type");
8337       case TargetInfo::SignedLong:
8338         HowLong = 1;
8339         break;
8340       case TargetInfo::SignedLongLong:
8341         HowLong = 2;
8342         break;
8343       }
8344     }
8345   }
8346 
8347   QualType Type;
8348 
8349   // Read the base type.
8350   switch (*Str++) {
8351   default: llvm_unreachable("Unknown builtin type letter!");
8352   case 'v':
8353     assert(HowLong == 0 && !Signed && !Unsigned &&
8354            "Bad modifiers used with 'v'!");
8355     Type = Context.VoidTy;
8356     break;
8357   case 'h':
8358     assert(HowLong == 0 && !Signed && !Unsigned &&
8359            "Bad modifiers used with 'h'!");
8360     Type = Context.HalfTy;
8361     break;
8362   case 'f':
8363     assert(HowLong == 0 && !Signed && !Unsigned &&
8364            "Bad modifiers used with 'f'!");
8365     Type = Context.FloatTy;
8366     break;
8367   case 'd':
8368     assert(HowLong < 2 && !Signed && !Unsigned &&
8369            "Bad modifiers used with 'd'!");
8370     if (HowLong)
8371       Type = Context.LongDoubleTy;
8372     else
8373       Type = Context.DoubleTy;
8374     break;
8375   case 's':
8376     assert(HowLong == 0 && "Bad modifiers used with 's'!");
8377     if (Unsigned)
8378       Type = Context.UnsignedShortTy;
8379     else
8380       Type = Context.ShortTy;
8381     break;
8382   case 'i':
8383     if (HowLong == 3)
8384       Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
8385     else if (HowLong == 2)
8386       Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
8387     else if (HowLong == 1)
8388       Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy;
8389     else
8390       Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy;
8391     break;
8392   case 'c':
8393     assert(HowLong == 0 && "Bad modifiers used with 'c'!");
8394     if (Signed)
8395       Type = Context.SignedCharTy;
8396     else if (Unsigned)
8397       Type = Context.UnsignedCharTy;
8398     else
8399       Type = Context.CharTy;
8400     break;
8401   case 'b': // boolean
8402     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!");
8403     Type = Context.BoolTy;
8404     break;
8405   case 'z':  // size_t.
8406     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!");
8407     Type = Context.getSizeType();
8408     break;
8409   case 'F':
8410     Type = Context.getCFConstantStringType();
8411     break;
8412   case 'G':
8413     Type = Context.getObjCIdType();
8414     break;
8415   case 'H':
8416     Type = Context.getObjCSelType();
8417     break;
8418   case 'M':
8419     Type = Context.getObjCSuperType();
8420     break;
8421   case 'a':
8422     Type = Context.getBuiltinVaListType();
8423     assert(!Type.isNull() && "builtin va list type not initialized!");
8424     break;
8425   case 'A':
8426     // This is a "reference" to a va_list; however, what exactly
8427     // this means depends on how va_list is defined. There are two
8428     // different kinds of va_list: ones passed by value, and ones
8429     // passed by reference.  An example of a by-value va_list is
8430     // x86, where va_list is a char*. An example of by-ref va_list
8431     // is x86-64, where va_list is a __va_list_tag[1]. For x86,
8432     // we want this argument to be a char*&; for x86-64, we want
8433     // it to be a __va_list_tag*.
8434     Type = Context.getBuiltinVaListType();
8435     assert(!Type.isNull() && "builtin va list type not initialized!");
8436     if (Type->isArrayType())
8437       Type = Context.getArrayDecayedType(Type);
8438     else
8439       Type = Context.getLValueReferenceType(Type);
8440     break;
8441   case 'V': {
8442     char *End;
8443     unsigned NumElements = strtoul(Str, &End, 10);
8444     assert(End != Str && "Missing vector size");
8445     Str = End;
8446 
8447     QualType ElementType = DecodeTypeFromStr(Str, Context, Error,
8448                                              RequiresICE, false);
8449     assert(!RequiresICE && "Can't require vector ICE");
8450 
8451     // TODO: No way to make AltiVec vectors in builtins yet.
8452     Type = Context.getVectorType(ElementType, NumElements,
8453                                  VectorType::GenericVector);
8454     break;
8455   }
8456   case 'E': {
8457     char *End;
8458 
8459     unsigned NumElements = strtoul(Str, &End, 10);
8460     assert(End != Str && "Missing vector size");
8461 
8462     Str = End;
8463 
8464     QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
8465                                              false);
8466     Type = Context.getExtVectorType(ElementType, NumElements);
8467     break;
8468   }
8469   case 'X': {
8470     QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
8471                                              false);
8472     assert(!RequiresICE && "Can't require complex ICE");
8473     Type = Context.getComplexType(ElementType);
8474     break;
8475   }
8476   case 'Y' : {
8477     Type = Context.getPointerDiffType();
8478     break;
8479   }
8480   case 'P':
8481     Type = Context.getFILEType();
8482     if (Type.isNull()) {
8483       Error = ASTContext::GE_Missing_stdio;
8484       return QualType();
8485     }
8486     break;
8487   case 'J':
8488     if (Signed)
8489       Type = Context.getsigjmp_bufType();
8490     else
8491       Type = Context.getjmp_bufType();
8492 
8493     if (Type.isNull()) {
8494       Error = ASTContext::GE_Missing_setjmp;
8495       return QualType();
8496     }
8497     break;
8498   case 'K':
8499     assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'K'!");
8500     Type = Context.getucontext_tType();
8501 
8502     if (Type.isNull()) {
8503       Error = ASTContext::GE_Missing_ucontext;
8504       return QualType();
8505     }
8506     break;
8507   case 'p':
8508     Type = Context.getProcessIDType();
8509     break;
8510   }
8511 
8512   // If there are modifiers and if we're allowed to parse them, go for it.
8513   Done = !AllowTypeModifiers;
8514   while (!Done) {
8515     switch (char c = *Str++) {
8516     default: Done = true; --Str; break;
8517     case '*':
8518     case '&': {
8519       // Both pointers and references can have their pointee types
8520       // qualified with an address space.
8521       char *End;
8522       unsigned AddrSpace = strtoul(Str, &End, 10);
8523       if (End != Str && AddrSpace != 0) {
8524         Type = Context.getAddrSpaceQualType(Type, AddrSpace);
8525         Str = End;
8526       }
8527       if (c == '*')
8528         Type = Context.getPointerType(Type);
8529       else
8530         Type = Context.getLValueReferenceType(Type);
8531       break;
8532     }
8533     // FIXME: There's no way to have a built-in with an rvalue ref arg.
8534     case 'C':
8535       Type = Type.withConst();
8536       break;
8537     case 'D':
8538       Type = Context.getVolatileType(Type);
8539       break;
8540     case 'R':
8541       Type = Type.withRestrict();
8542       break;
8543     }
8544   }
8545 
8546   assert((!RequiresICE || Type->isIntegralOrEnumerationType()) &&
8547          "Integer constant 'I' type must be an integer");
8548 
8549   return Type;
8550 }
8551 
8552 /// GetBuiltinType - Return the type for the specified builtin.
8553 QualType ASTContext::GetBuiltinType(unsigned Id,
8554                                     GetBuiltinTypeError &Error,
8555                                     unsigned *IntegerConstantArgs) const {
8556   const char *TypeStr = BuiltinInfo.getTypeString(Id);
8557 
8558   SmallVector<QualType, 8> ArgTypes;
8559 
8560   bool RequiresICE = false;
8561   Error = GE_None;
8562   QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error,
8563                                        RequiresICE, true);
8564   if (Error != GE_None)
8565     return QualType();
8566 
8567   assert(!RequiresICE && "Result of intrinsic cannot be required to be an ICE");
8568 
8569   while (TypeStr[0] && TypeStr[0] != '.') {
8570     QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error, RequiresICE, true);
8571     if (Error != GE_None)
8572       return QualType();
8573 
8574     // If this argument is required to be an IntegerConstantExpression and the
8575     // caller cares, fill in the bitmask we return.
8576     if (RequiresICE && IntegerConstantArgs)
8577       *IntegerConstantArgs |= 1 << ArgTypes.size();
8578 
8579     // Do array -> pointer decay.  The builtin should use the decayed type.
8580     if (Ty->isArrayType())
8581       Ty = getArrayDecayedType(Ty);
8582 
8583     ArgTypes.push_back(Ty);
8584   }
8585 
8586   if (Id == Builtin::BI__GetExceptionInfo)
8587     return QualType();
8588 
8589   assert((TypeStr[0] != '.' || TypeStr[1] == 0) &&
8590          "'.' should only occur at end of builtin type list!");
8591 
8592   FunctionType::ExtInfo EI(CC_C);
8593   if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
8594 
8595   bool Variadic = (TypeStr[0] == '.');
8596 
8597   // We really shouldn't be making a no-proto type here, especially in C++.
8598   if (ArgTypes.empty() && Variadic)
8599     return getFunctionNoProtoType(ResType, EI);
8600 
8601   FunctionProtoType::ExtProtoInfo EPI;
8602   EPI.ExtInfo = EI;
8603   EPI.Variadic = Variadic;
8604 
8605   return getFunctionType(ResType, ArgTypes, EPI);
8606 }
8607 
8608 static GVALinkage basicGVALinkageForFunction(const ASTContext &Context,
8609                                              const FunctionDecl *FD) {
8610   if (!FD->isExternallyVisible())
8611     return GVA_Internal;
8612 
8613   GVALinkage External = GVA_StrongExternal;
8614   switch (FD->getTemplateSpecializationKind()) {
8615   case TSK_Undeclared:
8616   case TSK_ExplicitSpecialization:
8617     External = GVA_StrongExternal;
8618     break;
8619 
8620   case TSK_ExplicitInstantiationDefinition:
8621     return GVA_StrongODR;
8622 
8623   // C++11 [temp.explicit]p10:
8624   //   [ Note: The intent is that an inline function that is the subject of
8625   //   an explicit instantiation declaration will still be implicitly
8626   //   instantiated when used so that the body can be considered for
8627   //   inlining, but that no out-of-line copy of the inline function would be
8628   //   generated in the translation unit. -- end note ]
8629   case TSK_ExplicitInstantiationDeclaration:
8630     return GVA_AvailableExternally;
8631 
8632   case TSK_ImplicitInstantiation:
8633     External = GVA_DiscardableODR;
8634     break;
8635   }
8636 
8637   if (!FD->isInlined())
8638     return External;
8639 
8640   if ((!Context.getLangOpts().CPlusPlus &&
8641        !Context.getTargetInfo().getCXXABI().isMicrosoft() &&
8642        !FD->hasAttr<DLLExportAttr>()) ||
8643       FD->hasAttr<GNUInlineAttr>()) {
8644     // FIXME: This doesn't match gcc's behavior for dllexport inline functions.
8645 
8646     // GNU or C99 inline semantics. Determine whether this symbol should be
8647     // externally visible.
8648     if (FD->isInlineDefinitionExternallyVisible())
8649       return External;
8650 
8651     // C99 inline semantics, where the symbol is not externally visible.
8652     return GVA_AvailableExternally;
8653   }
8654 
8655   // Functions specified with extern and inline in -fms-compatibility mode
8656   // forcibly get emitted.  While the body of the function cannot be later
8657   // replaced, the function definition cannot be discarded.
8658   if (FD->isMSExternInline())
8659     return GVA_StrongODR;
8660 
8661   return GVA_DiscardableODR;
8662 }
8663 
8664 static GVALinkage adjustGVALinkageForAttributes(const ASTContext &Context,
8665                                                 GVALinkage L, const Decl *D) {
8666   // See http://msdn.microsoft.com/en-us/library/xa0d9ste.aspx
8667   // dllexport/dllimport on inline functions.
8668   if (D->hasAttr<DLLImportAttr>()) {
8669     if (L == GVA_DiscardableODR || L == GVA_StrongODR)
8670       return GVA_AvailableExternally;
8671   } else if (D->hasAttr<DLLExportAttr>()) {
8672     if (L == GVA_DiscardableODR)
8673       return GVA_StrongODR;
8674   } else if (Context.getLangOpts().CUDA && Context.getLangOpts().CUDAIsDevice &&
8675              D->hasAttr<CUDAGlobalAttr>()) {
8676     // Device-side functions with __global__ attribute must always be
8677     // visible externally so they can be launched from host.
8678     if (L == GVA_DiscardableODR || L == GVA_Internal)
8679       return GVA_StrongODR;
8680   }
8681   return L;
8682 }
8683 
8684 GVALinkage ASTContext::GetGVALinkageForFunction(const FunctionDecl *FD) const {
8685   return adjustGVALinkageForAttributes(
8686       *this, basicGVALinkageForFunction(*this, FD), FD);
8687 }
8688 
8689 static GVALinkage basicGVALinkageForVariable(const ASTContext &Context,
8690                                              const VarDecl *VD) {
8691   if (!VD->isExternallyVisible())
8692     return GVA_Internal;
8693 
8694   if (VD->isStaticLocal()) {
8695     GVALinkage StaticLocalLinkage = GVA_DiscardableODR;
8696     const DeclContext *LexicalContext = VD->getParentFunctionOrMethod();
8697     while (LexicalContext && !isa<FunctionDecl>(LexicalContext))
8698       LexicalContext = LexicalContext->getLexicalParent();
8699 
8700     // Let the static local variable inherit its linkage from the nearest
8701     // enclosing function.
8702     if (LexicalContext)
8703       StaticLocalLinkage =
8704           Context.GetGVALinkageForFunction(cast<FunctionDecl>(LexicalContext));
8705 
8706     // GVA_StrongODR function linkage is stronger than what we need,
8707     // downgrade to GVA_DiscardableODR.
8708     // This allows us to discard the variable if we never end up needing it.
8709     return StaticLocalLinkage == GVA_StrongODR ? GVA_DiscardableODR
8710                                                : StaticLocalLinkage;
8711   }
8712 
8713   // MSVC treats in-class initialized static data members as definitions.
8714   // By giving them non-strong linkage, out-of-line definitions won't
8715   // cause link errors.
8716   if (Context.isMSStaticDataMemberInlineDefinition(VD))
8717     return GVA_DiscardableODR;
8718 
8719   // Most non-template variables have strong linkage; inline variables are
8720   // linkonce_odr or (occasionally, for compatibility) weak_odr.
8721   GVALinkage StrongLinkage;
8722   switch (Context.getInlineVariableDefinitionKind(VD)) {
8723   case ASTContext::InlineVariableDefinitionKind::None:
8724     StrongLinkage = GVA_StrongExternal;
8725     break;
8726   case ASTContext::InlineVariableDefinitionKind::Weak:
8727   case ASTContext::InlineVariableDefinitionKind::WeakUnknown:
8728     StrongLinkage = GVA_DiscardableODR;
8729     break;
8730   case ASTContext::InlineVariableDefinitionKind::Strong:
8731     StrongLinkage = GVA_StrongODR;
8732     break;
8733   }
8734 
8735   switch (VD->getTemplateSpecializationKind()) {
8736   case TSK_Undeclared:
8737     return StrongLinkage;
8738 
8739   case TSK_ExplicitSpecialization:
8740     return Context.getTargetInfo().getCXXABI().isMicrosoft() &&
8741                    VD->isStaticDataMember()
8742                ? GVA_StrongODR
8743                : StrongLinkage;
8744 
8745   case TSK_ExplicitInstantiationDefinition:
8746     return GVA_StrongODR;
8747 
8748   case TSK_ExplicitInstantiationDeclaration:
8749     return GVA_AvailableExternally;
8750 
8751   case TSK_ImplicitInstantiation:
8752     return GVA_DiscardableODR;
8753   }
8754 
8755   llvm_unreachable("Invalid Linkage!");
8756 }
8757 
8758 GVALinkage ASTContext::GetGVALinkageForVariable(const VarDecl *VD) {
8759   return adjustGVALinkageForAttributes(
8760       *this, basicGVALinkageForVariable(*this, VD), VD);
8761 }
8762 
8763 bool ASTContext::DeclMustBeEmitted(const Decl *D) {
8764   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
8765     if (!VD->isFileVarDecl())
8766       return false;
8767     // Global named register variables (GNU extension) are never emitted.
8768     if (VD->getStorageClass() == SC_Register)
8769       return false;
8770     if (VD->getDescribedVarTemplate() ||
8771         isa<VarTemplatePartialSpecializationDecl>(VD))
8772       return false;
8773   } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
8774     // We never need to emit an uninstantiated function template.
8775     if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
8776       return false;
8777   } else if (isa<PragmaCommentDecl>(D))
8778     return true;
8779   else if (isa<OMPThreadPrivateDecl>(D) ||
8780            D->hasAttr<OMPDeclareTargetDeclAttr>())
8781     return true;
8782   else if (isa<PragmaDetectMismatchDecl>(D))
8783     return true;
8784   else if (isa<OMPThreadPrivateDecl>(D))
8785     return !D->getDeclContext()->isDependentContext();
8786   else if (isa<OMPDeclareReductionDecl>(D))
8787     return !D->getDeclContext()->isDependentContext();
8788   else if (isa<ImportDecl>(D))
8789     return true;
8790   else
8791     return false;
8792 
8793   // If this is a member of a class template, we do not need to emit it.
8794   if (D->getDeclContext()->isDependentContext())
8795     return false;
8796 
8797   // Weak references don't produce any output by themselves.
8798   if (D->hasAttr<WeakRefAttr>())
8799     return false;
8800 
8801   // Aliases and used decls are required.
8802   if (D->hasAttr<AliasAttr>() || D->hasAttr<UsedAttr>())
8803     return true;
8804 
8805   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
8806     // Forward declarations aren't required.
8807     if (!FD->doesThisDeclarationHaveABody())
8808       return FD->doesDeclarationForceExternallyVisibleDefinition();
8809 
8810     // Constructors and destructors are required.
8811     if (FD->hasAttr<ConstructorAttr>() || FD->hasAttr<DestructorAttr>())
8812       return true;
8813 
8814     // The key function for a class is required.  This rule only comes
8815     // into play when inline functions can be key functions, though.
8816     if (getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
8817       if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
8818         const CXXRecordDecl *RD = MD->getParent();
8819         if (MD->isOutOfLine() && RD->isDynamicClass()) {
8820           const CXXMethodDecl *KeyFunc = getCurrentKeyFunction(RD);
8821           if (KeyFunc && KeyFunc->getCanonicalDecl() == MD->getCanonicalDecl())
8822             return true;
8823         }
8824       }
8825     }
8826 
8827     GVALinkage Linkage = GetGVALinkageForFunction(FD);
8828 
8829     // static, static inline, always_inline, and extern inline functions can
8830     // always be deferred.  Normal inline functions can be deferred in C99/C++.
8831     // Implicit template instantiations can also be deferred in C++.
8832     if (Linkage == GVA_Internal || Linkage == GVA_AvailableExternally ||
8833         Linkage == GVA_DiscardableODR)
8834       return false;
8835     return true;
8836   }
8837 
8838   const VarDecl *VD = cast<VarDecl>(D);
8839   assert(VD->isFileVarDecl() && "Expected file scoped var");
8840 
8841   if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly &&
8842       !isMSStaticDataMemberInlineDefinition(VD))
8843     return false;
8844 
8845   // Variables that can be needed in other TUs are required.
8846   GVALinkage L = GetGVALinkageForVariable(VD);
8847   if (L != GVA_Internal && L != GVA_AvailableExternally &&
8848       L != GVA_DiscardableODR)
8849     return true;
8850 
8851   // Variables that have destruction with side-effects are required.
8852   if (VD->getType().isDestructedType())
8853     return true;
8854 
8855   // Variables that have initialization with side-effects are required.
8856   if (VD->getInit() && VD->getInit()->HasSideEffects(*this) &&
8857       !VD->evaluateValue())
8858     return true;
8859 
8860   // Likewise, variables with tuple-like bindings are required if their
8861   // bindings have side-effects.
8862   if (auto *DD = dyn_cast<DecompositionDecl>(VD))
8863     for (auto *BD : DD->bindings())
8864       if (auto *BindingVD = BD->getHoldingVar())
8865         if (DeclMustBeEmitted(BindingVD))
8866           return true;
8867 
8868   return false;
8869 }
8870 
8871 CallingConv ASTContext::getDefaultCallingConvention(bool IsVariadic,
8872                                                     bool IsCXXMethod) const {
8873   // Pass through to the C++ ABI object
8874   if (IsCXXMethod)
8875     return ABI->getDefaultMethodCallConv(IsVariadic);
8876 
8877   switch (LangOpts.getDefaultCallingConv()) {
8878   case LangOptions::DCC_None:
8879     break;
8880   case LangOptions::DCC_CDecl:
8881     return CC_C;
8882   case LangOptions::DCC_FastCall:
8883     if (getTargetInfo().hasFeature("sse2"))
8884       return CC_X86FastCall;
8885     break;
8886   case LangOptions::DCC_StdCall:
8887     if (!IsVariadic)
8888       return CC_X86StdCall;
8889     break;
8890   case LangOptions::DCC_VectorCall:
8891     // __vectorcall cannot be applied to variadic functions.
8892     if (!IsVariadic)
8893       return CC_X86VectorCall;
8894     break;
8895   }
8896   return Target->getDefaultCallingConv(TargetInfo::CCMT_Unknown);
8897 }
8898 
8899 bool ASTContext::isNearlyEmpty(const CXXRecordDecl *RD) const {
8900   // Pass through to the C++ ABI object
8901   return ABI->isNearlyEmpty(RD);
8902 }
8903 
8904 VTableContextBase *ASTContext::getVTableContext() {
8905   if (!VTContext.get()) {
8906     if (Target->getCXXABI().isMicrosoft())
8907       VTContext.reset(new MicrosoftVTableContext(*this));
8908     else
8909       VTContext.reset(new ItaniumVTableContext(*this));
8910   }
8911   return VTContext.get();
8912 }
8913 
8914 MangleContext *ASTContext::createMangleContext() {
8915   switch (Target->getCXXABI().getKind()) {
8916   case TargetCXXABI::GenericAArch64:
8917   case TargetCXXABI::GenericItanium:
8918   case TargetCXXABI::GenericARM:
8919   case TargetCXXABI::GenericMIPS:
8920   case TargetCXXABI::iOS:
8921   case TargetCXXABI::iOS64:
8922   case TargetCXXABI::WebAssembly:
8923   case TargetCXXABI::WatchOS:
8924     return ItaniumMangleContext::create(*this, getDiagnostics());
8925   case TargetCXXABI::Microsoft:
8926     return MicrosoftMangleContext::create(*this, getDiagnostics());
8927   }
8928   llvm_unreachable("Unsupported ABI");
8929 }
8930 
8931 CXXABI::~CXXABI() {}
8932 
8933 size_t ASTContext::getSideTableAllocatedMemory() const {
8934   return ASTRecordLayouts.getMemorySize() +
8935          llvm::capacity_in_bytes(ObjCLayouts) +
8936          llvm::capacity_in_bytes(KeyFunctions) +
8937          llvm::capacity_in_bytes(ObjCImpls) +
8938          llvm::capacity_in_bytes(BlockVarCopyInits) +
8939          llvm::capacity_in_bytes(DeclAttrs) +
8940          llvm::capacity_in_bytes(TemplateOrInstantiation) +
8941          llvm::capacity_in_bytes(InstantiatedFromUsingDecl) +
8942          llvm::capacity_in_bytes(InstantiatedFromUsingShadowDecl) +
8943          llvm::capacity_in_bytes(InstantiatedFromUnnamedFieldDecl) +
8944          llvm::capacity_in_bytes(OverriddenMethods) +
8945          llvm::capacity_in_bytes(Types) +
8946          llvm::capacity_in_bytes(VariableArrayTypes) +
8947          llvm::capacity_in_bytes(ClassScopeSpecializationPattern);
8948 }
8949 
8950 /// getIntTypeForBitwidth -
8951 /// sets integer QualTy according to specified details:
8952 /// bitwidth, signed/unsigned.
8953 /// Returns empty type if there is no appropriate target types.
8954 QualType ASTContext::getIntTypeForBitwidth(unsigned DestWidth,
8955                                            unsigned Signed) const {
8956   TargetInfo::IntType Ty = getTargetInfo().getIntTypeByWidth(DestWidth, Signed);
8957   CanQualType QualTy = getFromTargetType(Ty);
8958   if (!QualTy && DestWidth == 128)
8959     return Signed ? Int128Ty : UnsignedInt128Ty;
8960   return QualTy;
8961 }
8962 
8963 /// getRealTypeForBitwidth -
8964 /// sets floating point QualTy according to specified bitwidth.
8965 /// Returns empty type if there is no appropriate target types.
8966 QualType ASTContext::getRealTypeForBitwidth(unsigned DestWidth) const {
8967   TargetInfo::RealType Ty = getTargetInfo().getRealTypeByWidth(DestWidth);
8968   switch (Ty) {
8969   case TargetInfo::Float:
8970     return FloatTy;
8971   case TargetInfo::Double:
8972     return DoubleTy;
8973   case TargetInfo::LongDouble:
8974     return LongDoubleTy;
8975   case TargetInfo::Float128:
8976     return Float128Ty;
8977   case TargetInfo::NoFloat:
8978     return QualType();
8979   }
8980 
8981   llvm_unreachable("Unhandled TargetInfo::RealType value");
8982 }
8983 
8984 void ASTContext::setManglingNumber(const NamedDecl *ND, unsigned Number) {
8985   if (Number > 1)
8986     MangleNumbers[ND] = Number;
8987 }
8988 
8989 unsigned ASTContext::getManglingNumber(const NamedDecl *ND) const {
8990   auto I = MangleNumbers.find(ND);
8991   return I != MangleNumbers.end() ? I->second : 1;
8992 }
8993 
8994 void ASTContext::setStaticLocalNumber(const VarDecl *VD, unsigned Number) {
8995   if (Number > 1)
8996     StaticLocalNumbers[VD] = Number;
8997 }
8998 
8999 unsigned ASTContext::getStaticLocalNumber(const VarDecl *VD) const {
9000   auto I = StaticLocalNumbers.find(VD);
9001   return I != StaticLocalNumbers.end() ? I->second : 1;
9002 }
9003 
9004 MangleNumberingContext &
9005 ASTContext::getManglingNumberContext(const DeclContext *DC) {
9006   assert(LangOpts.CPlusPlus);  // We don't need mangling numbers for plain C.
9007   std::unique_ptr<MangleNumberingContext> &MCtx = MangleNumberingContexts[DC];
9008   if (!MCtx)
9009     MCtx = createMangleNumberingContext();
9010   return *MCtx;
9011 }
9012 
9013 std::unique_ptr<MangleNumberingContext>
9014 ASTContext::createMangleNumberingContext() const {
9015   return ABI->createMangleNumberingContext();
9016 }
9017 
9018 const CXXConstructorDecl *
9019 ASTContext::getCopyConstructorForExceptionObject(CXXRecordDecl *RD) {
9020   return ABI->getCopyConstructorForExceptionObject(
9021       cast<CXXRecordDecl>(RD->getFirstDecl()));
9022 }
9023 
9024 void ASTContext::addCopyConstructorForExceptionObject(CXXRecordDecl *RD,
9025                                                       CXXConstructorDecl *CD) {
9026   return ABI->addCopyConstructorForExceptionObject(
9027       cast<CXXRecordDecl>(RD->getFirstDecl()),
9028       cast<CXXConstructorDecl>(CD->getFirstDecl()));
9029 }
9030 
9031 void ASTContext::addDefaultArgExprForConstructor(const CXXConstructorDecl *CD,
9032                                                  unsigned ParmIdx, Expr *DAE) {
9033   ABI->addDefaultArgExprForConstructor(
9034       cast<CXXConstructorDecl>(CD->getFirstDecl()), ParmIdx, DAE);
9035 }
9036 
9037 Expr *ASTContext::getDefaultArgExprForConstructor(const CXXConstructorDecl *CD,
9038                                                   unsigned ParmIdx) {
9039   return ABI->getDefaultArgExprForConstructor(
9040       cast<CXXConstructorDecl>(CD->getFirstDecl()), ParmIdx);
9041 }
9042 
9043 void ASTContext::addTypedefNameForUnnamedTagDecl(TagDecl *TD,
9044                                                  TypedefNameDecl *DD) {
9045   return ABI->addTypedefNameForUnnamedTagDecl(TD, DD);
9046 }
9047 
9048 TypedefNameDecl *
9049 ASTContext::getTypedefNameForUnnamedTagDecl(const TagDecl *TD) {
9050   return ABI->getTypedefNameForUnnamedTagDecl(TD);
9051 }
9052 
9053 void ASTContext::addDeclaratorForUnnamedTagDecl(TagDecl *TD,
9054                                                 DeclaratorDecl *DD) {
9055   return ABI->addDeclaratorForUnnamedTagDecl(TD, DD);
9056 }
9057 
9058 DeclaratorDecl *ASTContext::getDeclaratorForUnnamedTagDecl(const TagDecl *TD) {
9059   return ABI->getDeclaratorForUnnamedTagDecl(TD);
9060 }
9061 
9062 void ASTContext::setParameterIndex(const ParmVarDecl *D, unsigned int index) {
9063   ParamIndices[D] = index;
9064 }
9065 
9066 unsigned ASTContext::getParameterIndex(const ParmVarDecl *D) const {
9067   ParameterIndexTable::const_iterator I = ParamIndices.find(D);
9068   assert(I != ParamIndices.end() &&
9069          "ParmIndices lacks entry set by ParmVarDecl");
9070   return I->second;
9071 }
9072 
9073 APValue *
9074 ASTContext::getMaterializedTemporaryValue(const MaterializeTemporaryExpr *E,
9075                                           bool MayCreate) {
9076   assert(E && E->getStorageDuration() == SD_Static &&
9077          "don't need to cache the computed value for this temporary");
9078   if (MayCreate) {
9079     APValue *&MTVI = MaterializedTemporaryValues[E];
9080     if (!MTVI)
9081       MTVI = new (*this) APValue;
9082     return MTVI;
9083   }
9084 
9085   return MaterializedTemporaryValues.lookup(E);
9086 }
9087 
9088 bool ASTContext::AtomicUsesUnsupportedLibcall(const AtomicExpr *E) const {
9089   const llvm::Triple &T = getTargetInfo().getTriple();
9090   if (!T.isOSDarwin())
9091     return false;
9092 
9093   if (!(T.isiOS() && T.isOSVersionLT(7)) &&
9094       !(T.isMacOSX() && T.isOSVersionLT(10, 9)))
9095     return false;
9096 
9097   QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
9098   CharUnits sizeChars = getTypeSizeInChars(AtomicTy);
9099   uint64_t Size = sizeChars.getQuantity();
9100   CharUnits alignChars = getTypeAlignInChars(AtomicTy);
9101   unsigned Align = alignChars.getQuantity();
9102   unsigned MaxInlineWidthInBits = getTargetInfo().getMaxAtomicInlineWidth();
9103   return (Size != Align || toBits(sizeChars) > MaxInlineWidthInBits);
9104 }
9105 
9106 namespace {
9107 
9108 ast_type_traits::DynTypedNode getSingleDynTypedNodeFromParentMap(
9109     ASTContext::ParentMapPointers::mapped_type U) {
9110   if (const auto *D = U.dyn_cast<const Decl *>())
9111     return ast_type_traits::DynTypedNode::create(*D);
9112   if (const auto *S = U.dyn_cast<const Stmt *>())
9113     return ast_type_traits::DynTypedNode::create(*S);
9114   return *U.get<ast_type_traits::DynTypedNode *>();
9115 }
9116 
9117 /// Template specializations to abstract away from pointers and TypeLocs.
9118 /// @{
9119 template <typename T>
9120 ast_type_traits::DynTypedNode createDynTypedNode(const T &Node) {
9121   return ast_type_traits::DynTypedNode::create(*Node);
9122 }
9123 template <>
9124 ast_type_traits::DynTypedNode createDynTypedNode(const TypeLoc &Node) {
9125   return ast_type_traits::DynTypedNode::create(Node);
9126 }
9127 template <>
9128 ast_type_traits::DynTypedNode
9129 createDynTypedNode(const NestedNameSpecifierLoc &Node) {
9130   return ast_type_traits::DynTypedNode::create(Node);
9131 }
9132 /// @}
9133 
9134   /// \brief A \c RecursiveASTVisitor that builds a map from nodes to their
9135   /// parents as defined by the \c RecursiveASTVisitor.
9136   ///
9137   /// Note that the relationship described here is purely in terms of AST
9138   /// traversal - there are other relationships (for example declaration context)
9139   /// in the AST that are better modeled by special matchers.
9140   ///
9141   /// FIXME: Currently only builds up the map using \c Stmt and \c Decl nodes.
9142   class ParentMapASTVisitor : public RecursiveASTVisitor<ParentMapASTVisitor> {
9143   public:
9144     /// \brief Builds and returns the translation unit's parent map.
9145     ///
9146     ///  The caller takes ownership of the returned \c ParentMap.
9147     static std::pair<ASTContext::ParentMapPointers *,
9148                      ASTContext::ParentMapOtherNodes *>
9149     buildMap(TranslationUnitDecl &TU) {
9150       ParentMapASTVisitor Visitor(new ASTContext::ParentMapPointers,
9151                                   new ASTContext::ParentMapOtherNodes);
9152       Visitor.TraverseDecl(&TU);
9153       return std::make_pair(Visitor.Parents, Visitor.OtherParents);
9154     }
9155 
9156   private:
9157     typedef RecursiveASTVisitor<ParentMapASTVisitor> VisitorBase;
9158 
9159     ParentMapASTVisitor(ASTContext::ParentMapPointers *Parents,
9160                         ASTContext::ParentMapOtherNodes *OtherParents)
9161         : Parents(Parents), OtherParents(OtherParents) {}
9162 
9163     bool shouldVisitTemplateInstantiations() const {
9164       return true;
9165     }
9166     bool shouldVisitImplicitCode() const {
9167       return true;
9168     }
9169 
9170     template <typename T, typename MapNodeTy, typename BaseTraverseFn,
9171               typename MapTy>
9172     bool TraverseNode(T Node, MapNodeTy MapNode,
9173                       BaseTraverseFn BaseTraverse, MapTy *Parents) {
9174       if (!Node)
9175         return true;
9176       if (ParentStack.size() > 0) {
9177         // FIXME: Currently we add the same parent multiple times, but only
9178         // when no memoization data is available for the type.
9179         // For example when we visit all subexpressions of template
9180         // instantiations; this is suboptimal, but benign: the only way to
9181         // visit those is with hasAncestor / hasParent, and those do not create
9182         // new matches.
9183         // The plan is to enable DynTypedNode to be storable in a map or hash
9184         // map. The main problem there is to implement hash functions /
9185         // comparison operators for all types that DynTypedNode supports that
9186         // do not have pointer identity.
9187         auto &NodeOrVector = (*Parents)[MapNode];
9188         if (NodeOrVector.isNull()) {
9189           if (const auto *D = ParentStack.back().get<Decl>())
9190             NodeOrVector = D;
9191           else if (const auto *S = ParentStack.back().get<Stmt>())
9192             NodeOrVector = S;
9193           else
9194             NodeOrVector =
9195                 new ast_type_traits::DynTypedNode(ParentStack.back());
9196         } else {
9197           if (!NodeOrVector.template is<ASTContext::ParentVector *>()) {
9198             auto *Vector = new ASTContext::ParentVector(
9199                 1, getSingleDynTypedNodeFromParentMap(NodeOrVector));
9200             if (auto *Node =
9201                     NodeOrVector
9202                         .template dyn_cast<ast_type_traits::DynTypedNode *>())
9203               delete Node;
9204             NodeOrVector = Vector;
9205           }
9206 
9207           auto *Vector =
9208               NodeOrVector.template get<ASTContext::ParentVector *>();
9209           // Skip duplicates for types that have memoization data.
9210           // We must check that the type has memoization data before calling
9211           // std::find() because DynTypedNode::operator== can't compare all
9212           // types.
9213           bool Found = ParentStack.back().getMemoizationData() &&
9214                        std::find(Vector->begin(), Vector->end(),
9215                                  ParentStack.back()) != Vector->end();
9216           if (!Found)
9217             Vector->push_back(ParentStack.back());
9218         }
9219       }
9220       ParentStack.push_back(createDynTypedNode(Node));
9221       bool Result = BaseTraverse();
9222       ParentStack.pop_back();
9223       return Result;
9224     }
9225 
9226     bool TraverseDecl(Decl *DeclNode) {
9227       return TraverseNode(DeclNode, DeclNode,
9228                           [&] { return VisitorBase::TraverseDecl(DeclNode); },
9229                           Parents);
9230     }
9231 
9232     bool TraverseStmt(Stmt *StmtNode) {
9233       return TraverseNode(StmtNode, StmtNode,
9234                           [&] { return VisitorBase::TraverseStmt(StmtNode); },
9235                           Parents);
9236     }
9237 
9238     bool TraverseTypeLoc(TypeLoc TypeLocNode) {
9239       return TraverseNode(
9240           TypeLocNode, ast_type_traits::DynTypedNode::create(TypeLocNode),
9241           [&] { return VisitorBase::TraverseTypeLoc(TypeLocNode); },
9242           OtherParents);
9243     }
9244 
9245     bool TraverseNestedNameSpecifierLoc(NestedNameSpecifierLoc NNSLocNode) {
9246       return TraverseNode(
9247           NNSLocNode, ast_type_traits::DynTypedNode::create(NNSLocNode),
9248           [&] {
9249             return VisitorBase::TraverseNestedNameSpecifierLoc(NNSLocNode);
9250           },
9251           OtherParents);
9252     }
9253 
9254     ASTContext::ParentMapPointers *Parents;
9255     ASTContext::ParentMapOtherNodes *OtherParents;
9256     llvm::SmallVector<ast_type_traits::DynTypedNode, 16> ParentStack;
9257 
9258     friend class RecursiveASTVisitor<ParentMapASTVisitor>;
9259   };
9260 
9261 } // anonymous namespace
9262 
9263 template <typename NodeTy, typename MapTy>
9264 static ASTContext::DynTypedNodeList getDynNodeFromMap(const NodeTy &Node,
9265                                                       const MapTy &Map) {
9266   auto I = Map.find(Node);
9267   if (I == Map.end()) {
9268     return llvm::ArrayRef<ast_type_traits::DynTypedNode>();
9269   }
9270   if (auto *V = I->second.template dyn_cast<ASTContext::ParentVector *>()) {
9271     return llvm::makeArrayRef(*V);
9272   }
9273   return getSingleDynTypedNodeFromParentMap(I->second);
9274 }
9275 
9276 ASTContext::DynTypedNodeList
9277 ASTContext::getParents(const ast_type_traits::DynTypedNode &Node) {
9278   if (!PointerParents) {
9279     // We always need to run over the whole translation unit, as
9280     // hasAncestor can escape any subtree.
9281     auto Maps = ParentMapASTVisitor::buildMap(*getTranslationUnitDecl());
9282     PointerParents.reset(Maps.first);
9283     OtherParents.reset(Maps.second);
9284   }
9285   if (Node.getNodeKind().hasPointerIdentity())
9286     return getDynNodeFromMap(Node.getMemoizationData(), *PointerParents);
9287   return getDynNodeFromMap(Node, *OtherParents);
9288 }
9289 
9290 bool
9291 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl,
9292                                 const ObjCMethodDecl *MethodImpl) {
9293   // No point trying to match an unavailable/deprecated mothod.
9294   if (MethodDecl->hasAttr<UnavailableAttr>()
9295       || MethodDecl->hasAttr<DeprecatedAttr>())
9296     return false;
9297   if (MethodDecl->getObjCDeclQualifier() !=
9298       MethodImpl->getObjCDeclQualifier())
9299     return false;
9300   if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType()))
9301     return false;
9302 
9303   if (MethodDecl->param_size() != MethodImpl->param_size())
9304     return false;
9305 
9306   for (ObjCMethodDecl::param_const_iterator IM = MethodImpl->param_begin(),
9307        IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(),
9308        EF = MethodDecl->param_end();
9309        IM != EM && IF != EF; ++IM, ++IF) {
9310     const ParmVarDecl *DeclVar = (*IF);
9311     const ParmVarDecl *ImplVar = (*IM);
9312     if (ImplVar->getObjCDeclQualifier() != DeclVar->getObjCDeclQualifier())
9313       return false;
9314     if (!hasSameType(DeclVar->getType(), ImplVar->getType()))
9315       return false;
9316   }
9317   return (MethodDecl->isVariadic() == MethodImpl->isVariadic());
9318 
9319 }
9320 
9321 // Explicitly instantiate this in case a Redeclarable<T> is used from a TU that
9322 // doesn't include ASTContext.h
9323 template
9324 clang::LazyGenerationalUpdatePtr<
9325     const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::ValueType
9326 clang::LazyGenerationalUpdatePtr<
9327     const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::makeValue(
9328         const clang::ASTContext &Ctx, Decl *Value);
9329