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