]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp
Merge lld trunk r300422 and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / AST / DeclCXX.cpp
1 //===--- DeclCXX.cpp - C++ Declaration AST Node Implementation ------------===//
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 C++ related Decl classes.
11 //
12 //===----------------------------------------------------------------------===//
13 #include "clang/AST/DeclCXX.h"
14 #include "clang/AST/ASTContext.h"
15 #include "clang/AST/ASTLambda.h"
16 #include "clang/AST/ASTMutationListener.h"
17 #include "clang/AST/CXXInheritance.h"
18 #include "clang/AST/DeclTemplate.h"
19 #include "clang/AST/Expr.h"
20 #include "clang/AST/ExprCXX.h"
21 #include "clang/AST/ODRHash.h"
22 #include "clang/AST/TypeLoc.h"
23 #include "clang/Basic/IdentifierTable.h"
24 #include "llvm/ADT/STLExtras.h"
25 #include "llvm/ADT/SmallPtrSet.h"
26 using namespace clang;
27
28 //===----------------------------------------------------------------------===//
29 // Decl Allocation/Deallocation Method Implementations
30 //===----------------------------------------------------------------------===//
31
32 void AccessSpecDecl::anchor() { }
33
34 AccessSpecDecl *AccessSpecDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
35   return new (C, ID) AccessSpecDecl(EmptyShell());
36 }
37
38 void LazyASTUnresolvedSet::getFromExternalSource(ASTContext &C) const {
39   ExternalASTSource *Source = C.getExternalSource();
40   assert(Impl.Decls.isLazy() && "getFromExternalSource for non-lazy set");
41   assert(Source && "getFromExternalSource with no external source");
42
43   for (ASTUnresolvedSet::iterator I = Impl.begin(); I != Impl.end(); ++I)
44     I.setDecl(cast<NamedDecl>(Source->GetExternalDecl(
45         reinterpret_cast<uintptr_t>(I.getDecl()) >> 2)));
46   Impl.Decls.setLazy(false);
47 }
48
49 CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D)
50     : UserDeclaredConstructor(false), UserDeclaredSpecialMembers(0),
51       Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false),
52       Abstract(false), IsStandardLayout(true), HasNoNonEmptyBases(true),
53       HasPrivateFields(false), HasProtectedFields(false),
54       HasPublicFields(false), HasMutableFields(false), HasVariantMembers(false),
55       HasOnlyCMembers(true), HasInClassInitializer(false),
56       HasUninitializedReferenceMember(false), HasUninitializedFields(false),
57       HasInheritedConstructor(false), HasInheritedAssignment(false),
58       NeedOverloadResolutionForMoveConstructor(false),
59       NeedOverloadResolutionForMoveAssignment(false),
60       NeedOverloadResolutionForDestructor(false),
61       DefaultedMoveConstructorIsDeleted(false),
62       DefaultedMoveAssignmentIsDeleted(false),
63       DefaultedDestructorIsDeleted(false), HasTrivialSpecialMembers(SMF_All),
64       DeclaredNonTrivialSpecialMembers(0), HasIrrelevantDestructor(true),
65       HasConstexprNonCopyMoveConstructor(false),
66       HasDefaultedDefaultConstructor(false),
67       DefaultedDefaultConstructorIsConstexpr(true),
68       HasConstexprDefaultConstructor(false),
69       HasNonLiteralTypeFieldsOrBases(false), ComputedVisibleConversions(false),
70       UserProvidedDefaultConstructor(false), DeclaredSpecialMembers(0),
71       ImplicitCopyConstructorCanHaveConstParamForVBase(true),
72       ImplicitCopyConstructorCanHaveConstParamForNonVBase(true),
73       ImplicitCopyAssignmentHasConstParam(true),
74       HasDeclaredCopyConstructorWithConstParam(false),
75       HasDeclaredCopyAssignmentWithConstParam(false), IsLambda(false),
76       IsParsingBaseSpecifiers(false), HasODRHash(false), ODRHash(0),
77       NumBases(0), NumVBases(0), Bases(), VBases(), Definition(D),
78       FirstFriend() {}
79
80 CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getBasesSlowCase() const {
81   return Bases.get(Definition->getASTContext().getExternalSource());
82 }
83
84 CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getVBasesSlowCase() const {
85   return VBases.get(Definition->getASTContext().getExternalSource());
86 }
87
88 CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, const ASTContext &C,
89                              DeclContext *DC, SourceLocation StartLoc,
90                              SourceLocation IdLoc, IdentifierInfo *Id,
91                              CXXRecordDecl *PrevDecl)
92     : RecordDecl(K, TK, C, DC, StartLoc, IdLoc, Id, PrevDecl),
93       DefinitionData(PrevDecl ? PrevDecl->DefinitionData
94                               : nullptr),
95       TemplateOrInstantiation() {}
96
97 CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK,
98                                      DeclContext *DC, SourceLocation StartLoc,
99                                      SourceLocation IdLoc, IdentifierInfo *Id,
100                                      CXXRecordDecl* PrevDecl,
101                                      bool DelayTypeCreation) {
102   CXXRecordDecl *R = new (C, DC) CXXRecordDecl(CXXRecord, TK, C, DC, StartLoc,
103                                                IdLoc, Id, PrevDecl);
104   R->MayHaveOutOfDateDef = C.getLangOpts().Modules;
105
106   // FIXME: DelayTypeCreation seems like such a hack
107   if (!DelayTypeCreation)
108     C.getTypeDeclType(R, PrevDecl);
109   return R;
110 }
111
112 CXXRecordDecl *
113 CXXRecordDecl::CreateLambda(const ASTContext &C, DeclContext *DC,
114                             TypeSourceInfo *Info, SourceLocation Loc,
115                             bool Dependent, bool IsGeneric,
116                             LambdaCaptureDefault CaptureDefault) {
117   CXXRecordDecl *R =
118       new (C, DC) CXXRecordDecl(CXXRecord, TTK_Class, C, DC, Loc, Loc,
119                                 nullptr, nullptr);
120   R->IsBeingDefined = true;
121   R->DefinitionData =
122       new (C) struct LambdaDefinitionData(R, Info, Dependent, IsGeneric,
123                                           CaptureDefault);
124   R->MayHaveOutOfDateDef = false;
125   R->setImplicit(true);
126   C.getTypeDeclType(R, /*PrevDecl=*/nullptr);
127   return R;
128 }
129
130 CXXRecordDecl *
131 CXXRecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
132   CXXRecordDecl *R = new (C, ID) CXXRecordDecl(
133       CXXRecord, TTK_Struct, C, nullptr, SourceLocation(), SourceLocation(),
134       nullptr, nullptr);
135   R->MayHaveOutOfDateDef = false;
136   return R;
137 }
138
139 void
140 CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases,
141                         unsigned NumBases) {
142   ASTContext &C = getASTContext();
143
144   if (!data().Bases.isOffset() && data().NumBases > 0)
145     C.Deallocate(data().getBases());
146
147   if (NumBases) {
148     if (!C.getLangOpts().CPlusPlus1z) {
149       // C++ [dcl.init.aggr]p1:
150       //   An aggregate is [...] a class with [...] no base classes [...].
151       data().Aggregate = false;
152     }
153
154     // C++ [class]p4:
155     //   A POD-struct is an aggregate class...
156     data().PlainOldData = false;
157   }
158
159   // The set of seen virtual base types.
160   llvm::SmallPtrSet<CanQualType, 8> SeenVBaseTypes;
161   
162   // The virtual bases of this class.
163   SmallVector<const CXXBaseSpecifier *, 8> VBases;
164
165   data().Bases = new(C) CXXBaseSpecifier [NumBases];
166   data().NumBases = NumBases;
167   for (unsigned i = 0; i < NumBases; ++i) {
168     data().getBases()[i] = *Bases[i];
169     // Keep track of inherited vbases for this base class.
170     const CXXBaseSpecifier *Base = Bases[i];
171     QualType BaseType = Base->getType();
172     // Skip dependent types; we can't do any checking on them now.
173     if (BaseType->isDependentType())
174       continue;
175     CXXRecordDecl *BaseClassDecl
176       = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
177
178     if (!BaseClassDecl->isEmpty()) {
179       if (!data().Empty) {
180         // C++0x [class]p7:
181         //   A standard-layout class is a class that:
182         //    [...]
183         //    -- either has no non-static data members in the most derived
184         //       class and at most one base class with non-static data members,
185         //       or has no base classes with non-static data members, and
186         // If this is the second non-empty base, then neither of these two
187         // clauses can be true.
188         data().IsStandardLayout = false;
189       }
190
191       // C++14 [meta.unary.prop]p4:
192       //   T is a class type [...] with [...] no base class B for which
193       //   is_empty<B>::value is false.
194       data().Empty = false;
195       data().HasNoNonEmptyBases = false;
196     }
197     
198     // C++1z [dcl.init.agg]p1:
199     //   An aggregate is a class with [...] no private or protected base classes
200     if (Base->getAccessSpecifier() != AS_public)
201       data().Aggregate = false;
202
203     // C++ [class.virtual]p1:
204     //   A class that declares or inherits a virtual function is called a 
205     //   polymorphic class.
206     if (BaseClassDecl->isPolymorphic())
207       data().Polymorphic = true;
208
209     // C++0x [class]p7:
210     //   A standard-layout class is a class that: [...]
211     //    -- has no non-standard-layout base classes
212     if (!BaseClassDecl->isStandardLayout())
213       data().IsStandardLayout = false;
214
215     // Record if this base is the first non-literal field or base.
216     if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType(C))
217       data().HasNonLiteralTypeFieldsOrBases = true;
218     
219     // Now go through all virtual bases of this base and add them.
220     for (const auto &VBase : BaseClassDecl->vbases()) {
221       // Add this base if it's not already in the list.
222       if (SeenVBaseTypes.insert(C.getCanonicalType(VBase.getType())).second) {
223         VBases.push_back(&VBase);
224
225         // C++11 [class.copy]p8:
226         //   The implicitly-declared copy constructor for a class X will have
227         //   the form 'X::X(const X&)' if each [...] virtual base class B of X
228         //   has a copy constructor whose first parameter is of type
229         //   'const B&' or 'const volatile B&' [...]
230         if (CXXRecordDecl *VBaseDecl = VBase.getType()->getAsCXXRecordDecl())
231           if (!VBaseDecl->hasCopyConstructorWithConstParam())
232             data().ImplicitCopyConstructorCanHaveConstParamForVBase = false;
233
234         // C++1z [dcl.init.agg]p1:
235         //   An aggregate is a class with [...] no virtual base classes
236         data().Aggregate = false;
237       }
238     }
239
240     if (Base->isVirtual()) {
241       // Add this base if it's not already in the list.
242       if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)).second)
243         VBases.push_back(Base);
244
245       // C++14 [meta.unary.prop] is_empty:
246       //   T is a class type, but not a union type, with ... no virtual base
247       //   classes
248       data().Empty = false;
249
250       // C++1z [dcl.init.agg]p1:
251       //   An aggregate is a class with [...] no virtual base classes
252       data().Aggregate = false;
253
254       // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
255       //   A [default constructor, copy/move constructor, or copy/move assignment
256       //   operator for a class X] is trivial [...] if:
257       //    -- class X has [...] no virtual base classes
258       data().HasTrivialSpecialMembers &= SMF_Destructor;
259
260       // C++0x [class]p7:
261       //   A standard-layout class is a class that: [...]
262       //    -- has [...] no virtual base classes
263       data().IsStandardLayout = false;
264
265       // C++11 [dcl.constexpr]p4:
266       //   In the definition of a constexpr constructor [...]
267       //    -- the class shall not have any virtual base classes
268       data().DefaultedDefaultConstructorIsConstexpr = false;
269
270       // C++1z [class.copy]p8:
271       //   The implicitly-declared copy constructor for a class X will have
272       //   the form 'X::X(const X&)' if each potentially constructed subobject
273       //   has a copy constructor whose first parameter is of type
274       //   'const B&' or 'const volatile B&' [...]
275       if (!BaseClassDecl->hasCopyConstructorWithConstParam())
276         data().ImplicitCopyConstructorCanHaveConstParamForVBase = false;
277     } else {
278       // C++ [class.ctor]p5:
279       //   A default constructor is trivial [...] if:
280       //    -- all the direct base classes of its class have trivial default
281       //       constructors.
282       if (!BaseClassDecl->hasTrivialDefaultConstructor())
283         data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor;
284
285       // C++0x [class.copy]p13:
286       //   A copy/move constructor for class X is trivial if [...]
287       //    [...]
288       //    -- the constructor selected to copy/move each direct base class
289       //       subobject is trivial, and
290       if (!BaseClassDecl->hasTrivialCopyConstructor())
291         data().HasTrivialSpecialMembers &= ~SMF_CopyConstructor;
292       // If the base class doesn't have a simple move constructor, we'll eagerly
293       // declare it and perform overload resolution to determine which function
294       // it actually calls. If it does have a simple move constructor, this
295       // check is correct.
296       if (!BaseClassDecl->hasTrivialMoveConstructor())
297         data().HasTrivialSpecialMembers &= ~SMF_MoveConstructor;
298
299       // C++0x [class.copy]p27:
300       //   A copy/move assignment operator for class X is trivial if [...]
301       //    [...]
302       //    -- the assignment operator selected to copy/move each direct base
303       //       class subobject is trivial, and
304       if (!BaseClassDecl->hasTrivialCopyAssignment())
305         data().HasTrivialSpecialMembers &= ~SMF_CopyAssignment;
306       // If the base class doesn't have a simple move assignment, we'll eagerly
307       // declare it and perform overload resolution to determine which function
308       // it actually calls. If it does have a simple move assignment, this
309       // check is correct.
310       if (!BaseClassDecl->hasTrivialMoveAssignment())
311         data().HasTrivialSpecialMembers &= ~SMF_MoveAssignment;
312
313       // C++11 [class.ctor]p6:
314       //   If that user-written default constructor would satisfy the
315       //   requirements of a constexpr constructor, the implicitly-defined
316       //   default constructor is constexpr.
317       if (!BaseClassDecl->hasConstexprDefaultConstructor())
318         data().DefaultedDefaultConstructorIsConstexpr = false;
319
320       // C++1z [class.copy]p8:
321       //   The implicitly-declared copy constructor for a class X will have
322       //   the form 'X::X(const X&)' if each potentially constructed subobject
323       //   has a copy constructor whose first parameter is of type
324       //   'const B&' or 'const volatile B&' [...]
325       if (!BaseClassDecl->hasCopyConstructorWithConstParam())
326         data().ImplicitCopyConstructorCanHaveConstParamForNonVBase = false;
327     }
328
329     // C++ [class.ctor]p3:
330     //   A destructor is trivial if all the direct base classes of its class
331     //   have trivial destructors.
332     if (!BaseClassDecl->hasTrivialDestructor())
333       data().HasTrivialSpecialMembers &= ~SMF_Destructor;
334
335     if (!BaseClassDecl->hasIrrelevantDestructor())
336       data().HasIrrelevantDestructor = false;
337
338     // C++11 [class.copy]p18:
339     //   The implicitly-declared copy assignment oeprator for a class X will
340     //   have the form 'X& X::operator=(const X&)' if each direct base class B
341     //   of X has a copy assignment operator whose parameter is of type 'const
342     //   B&', 'const volatile B&', or 'B' [...]
343     if (!BaseClassDecl->hasCopyAssignmentWithConstParam())
344       data().ImplicitCopyAssignmentHasConstParam = false;
345
346     // A class has an Objective-C object member if... or any of its bases
347     // has an Objective-C object member.
348     if (BaseClassDecl->hasObjectMember())
349       setHasObjectMember(true);
350     
351     if (BaseClassDecl->hasVolatileMember())
352       setHasVolatileMember(true);
353
354     // Keep track of the presence of mutable fields.
355     if (BaseClassDecl->hasMutableFields())
356       data().HasMutableFields = true;
357
358     if (BaseClassDecl->hasUninitializedReferenceMember())
359       data().HasUninitializedReferenceMember = true;
360
361     if (!BaseClassDecl->allowConstDefaultInit())
362       data().HasUninitializedFields = true;
363
364     addedClassSubobject(BaseClassDecl);
365   }
366   
367   if (VBases.empty()) {
368     data().IsParsingBaseSpecifiers = false;
369     return;
370   }
371
372   // Create base specifier for any direct or indirect virtual bases.
373   data().VBases = new (C) CXXBaseSpecifier[VBases.size()];
374   data().NumVBases = VBases.size();
375   for (int I = 0, E = VBases.size(); I != E; ++I) {
376     QualType Type = VBases[I]->getType();
377     if (!Type->isDependentType())
378       addedClassSubobject(Type->getAsCXXRecordDecl());
379     data().getVBases()[I] = *VBases[I];
380   }
381
382   data().IsParsingBaseSpecifiers = false;
383 }
384
385 unsigned CXXRecordDecl::getODRHash() const {
386   assert(hasDefinition() && "ODRHash only for records with definitions");
387
388   // Previously calculated hash is stored in DefinitionData.
389   if (DefinitionData->HasODRHash)
390     return DefinitionData->ODRHash;
391
392   // Only calculate hash on first call of getODRHash per record.
393   ODRHash Hash;
394   Hash.AddCXXRecordDecl(getDefinition());
395   DefinitionData->HasODRHash = true;
396   DefinitionData->ODRHash = Hash.CalculateHash();
397
398   return DefinitionData->ODRHash;
399 }
400
401
402 void CXXRecordDecl::addedClassSubobject(CXXRecordDecl *Subobj) {
403   // C++11 [class.copy]p11:
404   //   A defaulted copy/move constructor for a class X is defined as
405   //   deleted if X has:
406   //    -- a direct or virtual base class B that cannot be copied/moved [...]
407   //    -- a non-static data member of class type M (or array thereof)
408   //       that cannot be copied or moved [...]
409   if (!Subobj->hasSimpleMoveConstructor())
410     data().NeedOverloadResolutionForMoveConstructor = true;
411
412   // C++11 [class.copy]p23:
413   //   A defaulted copy/move assignment operator for a class X is defined as
414   //   deleted if X has:
415   //    -- a direct or virtual base class B that cannot be copied/moved [...]
416   //    -- a non-static data member of class type M (or array thereof)
417   //        that cannot be copied or moved [...]
418   if (!Subobj->hasSimpleMoveAssignment())
419     data().NeedOverloadResolutionForMoveAssignment = true;
420
421   // C++11 [class.ctor]p5, C++11 [class.copy]p11, C++11 [class.dtor]p5:
422   //   A defaulted [ctor or dtor] for a class X is defined as
423   //   deleted if X has:
424   //    -- any direct or virtual base class [...] has a type with a destructor
425   //       that is deleted or inaccessible from the defaulted [ctor or dtor].
426   //    -- any non-static data member has a type with a destructor
427   //       that is deleted or inaccessible from the defaulted [ctor or dtor].
428   if (!Subobj->hasSimpleDestructor()) {
429     data().NeedOverloadResolutionForMoveConstructor = true;
430     data().NeedOverloadResolutionForDestructor = true;
431   }
432 }
433
434 bool CXXRecordDecl::hasAnyDependentBases() const {
435   if (!isDependentContext())
436     return false;
437
438   return !forallBases([](const CXXRecordDecl *) { return true; });
439 }
440
441 bool CXXRecordDecl::isTriviallyCopyable() const {
442   // C++0x [class]p5:
443   //   A trivially copyable class is a class that:
444   //   -- has no non-trivial copy constructors,
445   if (hasNonTrivialCopyConstructor()) return false;
446   //   -- has no non-trivial move constructors,
447   if (hasNonTrivialMoveConstructor()) return false;
448   //   -- has no non-trivial copy assignment operators,
449   if (hasNonTrivialCopyAssignment()) return false;
450   //   -- has no non-trivial move assignment operators, and
451   if (hasNonTrivialMoveAssignment()) return false;
452   //   -- has a trivial destructor.
453   if (!hasTrivialDestructor()) return false;
454
455   return true;
456 }
457
458 void CXXRecordDecl::markedVirtualFunctionPure() {
459   // C++ [class.abstract]p2: 
460   //   A class is abstract if it has at least one pure virtual function.
461   data().Abstract = true;
462 }
463
464 void CXXRecordDecl::addedMember(Decl *D) {
465   if (!D->isImplicit() &&
466       !isa<FieldDecl>(D) &&
467       !isa<IndirectFieldDecl>(D) &&
468       (!isa<TagDecl>(D) || cast<TagDecl>(D)->getTagKind() == TTK_Class ||
469         cast<TagDecl>(D)->getTagKind() == TTK_Interface))
470     data().HasOnlyCMembers = false;
471
472   // Ignore friends and invalid declarations.
473   if (D->getFriendObjectKind() || D->isInvalidDecl())
474     return;
475   
476   FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D);
477   if (FunTmpl)
478     D = FunTmpl->getTemplatedDecl();
479
480   // FIXME: Pass NamedDecl* to addedMember?
481   Decl *DUnderlying = D;
482   if (auto *ND = dyn_cast<NamedDecl>(DUnderlying)) {
483     DUnderlying = ND->getUnderlyingDecl();
484     if (FunctionTemplateDecl *UnderlyingFunTmpl =
485             dyn_cast<FunctionTemplateDecl>(DUnderlying))
486       DUnderlying = UnderlyingFunTmpl->getTemplatedDecl();
487   }
488   
489   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
490     if (Method->isVirtual()) {
491       // C++ [dcl.init.aggr]p1:
492       //   An aggregate is an array or a class with [...] no virtual functions.
493       data().Aggregate = false;
494       
495       // C++ [class]p4:
496       //   A POD-struct is an aggregate class...
497       data().PlainOldData = false;
498       
499       // C++14 [meta.unary.prop]p4:
500       //   T is a class type [...] with [...] no virtual member functions...
501       data().Empty = false;
502
503       // C++ [class.virtual]p1:
504       //   A class that declares or inherits a virtual function is called a 
505       //   polymorphic class.
506       data().Polymorphic = true;
507
508       // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
509       //   A [default constructor, copy/move constructor, or copy/move
510       //   assignment operator for a class X] is trivial [...] if:
511       //    -- class X has no virtual functions [...]
512       data().HasTrivialSpecialMembers &= SMF_Destructor;
513
514       // C++0x [class]p7:
515       //   A standard-layout class is a class that: [...]
516       //    -- has no virtual functions
517       data().IsStandardLayout = false;
518     }
519   }
520
521   // Notify the listener if an implicit member was added after the definition
522   // was completed.
523   if (!isBeingDefined() && D->isImplicit())
524     if (ASTMutationListener *L = getASTMutationListener())
525       L->AddedCXXImplicitMember(data().Definition, D);
526
527   // The kind of special member this declaration is, if any.
528   unsigned SMKind = 0;
529
530   // Handle constructors.
531   if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
532     if (!Constructor->isImplicit()) {
533       // Note that we have a user-declared constructor.
534       data().UserDeclaredConstructor = true;
535
536       // C++ [class]p4:
537       //   A POD-struct is an aggregate class [...]
538       // Since the POD bit is meant to be C++03 POD-ness, clear it even if the
539       // type is technically an aggregate in C++0x since it wouldn't be in 03.
540       data().PlainOldData = false;
541     }
542
543     if (Constructor->isDefaultConstructor()) {
544       SMKind |= SMF_DefaultConstructor;
545
546       if (Constructor->isUserProvided())
547         data().UserProvidedDefaultConstructor = true;
548       if (Constructor->isConstexpr())
549         data().HasConstexprDefaultConstructor = true;
550       if (Constructor->isDefaulted())
551         data().HasDefaultedDefaultConstructor = true;
552     }
553
554     if (!FunTmpl) {
555       unsigned Quals;
556       if (Constructor->isCopyConstructor(Quals)) {
557         SMKind |= SMF_CopyConstructor;
558
559         if (Quals & Qualifiers::Const)
560           data().HasDeclaredCopyConstructorWithConstParam = true;
561       } else if (Constructor->isMoveConstructor())
562         SMKind |= SMF_MoveConstructor;
563     }
564
565     // C++11 [dcl.init.aggr]p1: DR1518
566     //   An aggregate is an array or a class with no user-provided, explicit, or
567     //   inherited constructors
568     if (Constructor->isUserProvided() || Constructor->isExplicit())
569       data().Aggregate = false;
570   }
571
572   // Handle constructors, including those inherited from base classes.
573   if (CXXConstructorDecl *Constructor =
574           dyn_cast<CXXConstructorDecl>(DUnderlying)) {
575     // Record if we see any constexpr constructors which are neither copy
576     // nor move constructors.
577     // C++1z [basic.types]p10:
578     //   [...] has at least one constexpr constructor or constructor template
579     //   (possibly inherited from a base class) that is not a copy or move
580     //   constructor [...]
581     if (Constructor->isConstexpr() && !Constructor->isCopyOrMoveConstructor())
582       data().HasConstexprNonCopyMoveConstructor = true;
583   }
584
585   // Handle destructors.
586   if (CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) {
587     SMKind |= SMF_Destructor;
588
589     if (DD->isUserProvided())
590       data().HasIrrelevantDestructor = false;
591     // If the destructor is explicitly defaulted and not trivial or not public
592     // or if the destructor is deleted, we clear HasIrrelevantDestructor in
593     // finishedDefaultedOrDeletedMember.
594
595     // C++11 [class.dtor]p5:
596     //   A destructor is trivial if [...] the destructor is not virtual.
597     if (DD->isVirtual())
598       data().HasTrivialSpecialMembers &= ~SMF_Destructor;
599   }
600
601   // Handle member functions.
602   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
603     if (Method->isCopyAssignmentOperator()) {
604       SMKind |= SMF_CopyAssignment;
605
606       const ReferenceType *ParamTy =
607         Method->getParamDecl(0)->getType()->getAs<ReferenceType>();
608       if (!ParamTy || ParamTy->getPointeeType().isConstQualified())
609         data().HasDeclaredCopyAssignmentWithConstParam = true;
610     }
611
612     if (Method->isMoveAssignmentOperator())
613       SMKind |= SMF_MoveAssignment;
614
615     // Keep the list of conversion functions up-to-date.
616     if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
617       // FIXME: We use the 'unsafe' accessor for the access specifier here,
618       // because Sema may not have set it yet. That's really just a misdesign
619       // in Sema. However, LLDB *will* have set the access specifier correctly,
620       // and adds declarations after the class is technically completed,
621       // so completeDefinition()'s overriding of the access specifiers doesn't
622       // work.
623       AccessSpecifier AS = Conversion->getAccessUnsafe();
624
625       if (Conversion->getPrimaryTemplate()) {
626         // We don't record specializations.
627       } else {
628         ASTContext &Ctx = getASTContext();
629         ASTUnresolvedSet &Conversions = data().Conversions.get(Ctx);
630         NamedDecl *Primary =
631             FunTmpl ? cast<NamedDecl>(FunTmpl) : cast<NamedDecl>(Conversion);
632         if (Primary->getPreviousDecl())
633           Conversions.replace(cast<NamedDecl>(Primary->getPreviousDecl()),
634                               Primary, AS);
635         else
636           Conversions.addDecl(Ctx, Primary, AS);
637       }
638     }
639
640     if (SMKind) {
641       // If this is the first declaration of a special member, we no longer have
642       // an implicit trivial special member.
643       data().HasTrivialSpecialMembers &=
644         data().DeclaredSpecialMembers | ~SMKind;
645
646       if (!Method->isImplicit() && !Method->isUserProvided()) {
647         // This method is user-declared but not user-provided. We can't work out
648         // whether it's trivial yet (not until we get to the end of the class).
649         // We'll handle this method in finishedDefaultedOrDeletedMember.
650       } else if (Method->isTrivial())
651         data().HasTrivialSpecialMembers |= SMKind;
652       else
653         data().DeclaredNonTrivialSpecialMembers |= SMKind;
654
655       // Note when we have declared a declared special member, and suppress the
656       // implicit declaration of this special member.
657       data().DeclaredSpecialMembers |= SMKind;
658
659       if (!Method->isImplicit()) {
660         data().UserDeclaredSpecialMembers |= SMKind;
661
662         // C++03 [class]p4:
663         //   A POD-struct is an aggregate class that has [...] no user-defined
664         //   copy assignment operator and no user-defined destructor.
665         //
666         // Since the POD bit is meant to be C++03 POD-ness, and in C++03,
667         // aggregates could not have any constructors, clear it even for an
668         // explicitly defaulted or deleted constructor.
669         // type is technically an aggregate in C++0x since it wouldn't be in 03.
670         //
671         // Also, a user-declared move assignment operator makes a class non-POD.
672         // This is an extension in C++03.
673         data().PlainOldData = false;
674       }
675     }
676
677     return;
678   }
679
680   // Handle non-static data members.
681   if (FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
682     // C++ [class.bit]p2:
683     //   A declaration for a bit-field that omits the identifier declares an 
684     //   unnamed bit-field. Unnamed bit-fields are not members and cannot be 
685     //   initialized.
686     if (Field->isUnnamedBitfield())
687       return;
688     
689     // C++ [dcl.init.aggr]p1:
690     //   An aggregate is an array or a class (clause 9) with [...] no
691     //   private or protected non-static data members (clause 11).
692     //
693     // A POD must be an aggregate.    
694     if (D->getAccess() == AS_private || D->getAccess() == AS_protected) {
695       data().Aggregate = false;
696       data().PlainOldData = false;
697     }
698
699     // C++0x [class]p7:
700     //   A standard-layout class is a class that:
701     //    [...]
702     //    -- has the same access control for all non-static data members,
703     switch (D->getAccess()) {
704     case AS_private:    data().HasPrivateFields = true;   break;
705     case AS_protected:  data().HasProtectedFields = true; break;
706     case AS_public:     data().HasPublicFields = true;    break;
707     case AS_none:       llvm_unreachable("Invalid access specifier");
708     };
709     if ((data().HasPrivateFields + data().HasProtectedFields +
710          data().HasPublicFields) > 1)
711       data().IsStandardLayout = false;
712
713     // Keep track of the presence of mutable fields.
714     if (Field->isMutable())
715       data().HasMutableFields = true;
716
717     // C++11 [class.union]p8, DR1460:
718     //   If X is a union, a non-static data member of X that is not an anonymous
719     //   union is a variant member of X.
720     if (isUnion() && !Field->isAnonymousStructOrUnion())
721       data().HasVariantMembers = true;
722
723     // C++0x [class]p9:
724     //   A POD struct is a class that is both a trivial class and a 
725     //   standard-layout class, and has no non-static data members of type 
726     //   non-POD struct, non-POD union (or array of such types).
727     //
728     // Automatic Reference Counting: the presence of a member of Objective-C pointer type
729     // that does not explicitly have no lifetime makes the class a non-POD.
730     ASTContext &Context = getASTContext();
731     QualType T = Context.getBaseElementType(Field->getType());
732     if (T->isObjCRetainableType() || T.isObjCGCStrong()) {
733       if (T.hasNonTrivialObjCLifetime()) {
734         // Objective-C Automatic Reference Counting:
735         //   If a class has a non-static data member of Objective-C pointer
736         //   type (or array thereof), it is a non-POD type and its
737         //   default constructor (if any), copy constructor, move constructor,
738         //   copy assignment operator, move assignment operator, and destructor are
739         //   non-trivial.
740         setHasObjectMember(true);
741         struct DefinitionData &Data = data();
742         Data.PlainOldData = false;
743         Data.HasTrivialSpecialMembers = 0;
744         Data.HasIrrelevantDestructor = false;
745       } else if (!Context.getLangOpts().ObjCAutoRefCount) {
746         setHasObjectMember(true);
747       }
748     } else if (!T.isCXX98PODType(Context))
749       data().PlainOldData = false;
750     
751     if (T->isReferenceType()) {
752       if (!Field->hasInClassInitializer())
753         data().HasUninitializedReferenceMember = true;
754
755       // C++0x [class]p7:
756       //   A standard-layout class is a class that:
757       //    -- has no non-static data members of type [...] reference,
758       data().IsStandardLayout = false;
759     }
760
761     if (!Field->hasInClassInitializer() && !Field->isMutable()) {
762       if (CXXRecordDecl *FieldType = T->getAsCXXRecordDecl()) {
763         if (FieldType->hasDefinition() && !FieldType->allowConstDefaultInit())
764           data().HasUninitializedFields = true;
765       } else {
766         data().HasUninitializedFields = true;
767       }
768     }
769
770     // Record if this field is the first non-literal or volatile field or base.
771     if (!T->isLiteralType(Context) || T.isVolatileQualified())
772       data().HasNonLiteralTypeFieldsOrBases = true;
773
774     if (Field->hasInClassInitializer() ||
775         (Field->isAnonymousStructOrUnion() &&
776          Field->getType()->getAsCXXRecordDecl()->hasInClassInitializer())) {
777       data().HasInClassInitializer = true;
778
779       // C++11 [class]p5:
780       //   A default constructor is trivial if [...] no non-static data member
781       //   of its class has a brace-or-equal-initializer.
782       data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor;
783
784       // C++11 [dcl.init.aggr]p1:
785       //   An aggregate is a [...] class with [...] no
786       //   brace-or-equal-initializers for non-static data members.
787       //
788       // This rule was removed in C++14.
789       if (!getASTContext().getLangOpts().CPlusPlus14)
790         data().Aggregate = false;
791
792       // C++11 [class]p10:
793       //   A POD struct is [...] a trivial class.
794       data().PlainOldData = false;
795     }
796
797     // C++11 [class.copy]p23:
798     //   A defaulted copy/move assignment operator for a class X is defined
799     //   as deleted if X has:
800     //    -- a non-static data member of reference type
801     if (T->isReferenceType())
802       data().DefaultedMoveAssignmentIsDeleted = true;
803
804     if (const RecordType *RecordTy = T->getAs<RecordType>()) {
805       CXXRecordDecl* FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl());
806       if (FieldRec->getDefinition()) {
807         addedClassSubobject(FieldRec);
808
809         // We may need to perform overload resolution to determine whether a
810         // field can be moved if it's const or volatile qualified.
811         if (T.getCVRQualifiers() & (Qualifiers::Const | Qualifiers::Volatile)) {
812           data().NeedOverloadResolutionForMoveConstructor = true;
813           data().NeedOverloadResolutionForMoveAssignment = true;
814         }
815
816         // C++11 [class.ctor]p5, C++11 [class.copy]p11:
817         //   A defaulted [special member] for a class X is defined as
818         //   deleted if:
819         //    -- X is a union-like class that has a variant member with a
820         //       non-trivial [corresponding special member]
821         if (isUnion()) {
822           if (FieldRec->hasNonTrivialMoveConstructor())
823             data().DefaultedMoveConstructorIsDeleted = true;
824           if (FieldRec->hasNonTrivialMoveAssignment())
825             data().DefaultedMoveAssignmentIsDeleted = true;
826           if (FieldRec->hasNonTrivialDestructor())
827             data().DefaultedDestructorIsDeleted = true;
828         }
829
830         // For an anonymous union member, our overload resolution will perform
831         // overload resolution for its members.
832         if (Field->isAnonymousStructOrUnion()) {
833           data().NeedOverloadResolutionForMoveConstructor |=
834               FieldRec->data().NeedOverloadResolutionForMoveConstructor;
835           data().NeedOverloadResolutionForMoveAssignment |=
836               FieldRec->data().NeedOverloadResolutionForMoveAssignment;
837           data().NeedOverloadResolutionForDestructor |=
838               FieldRec->data().NeedOverloadResolutionForDestructor;
839         }
840
841         // C++0x [class.ctor]p5:
842         //   A default constructor is trivial [...] if:
843         //    -- for all the non-static data members of its class that are of
844         //       class type (or array thereof), each such class has a trivial
845         //       default constructor.
846         if (!FieldRec->hasTrivialDefaultConstructor())
847           data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor;
848
849         // C++0x [class.copy]p13:
850         //   A copy/move constructor for class X is trivial if [...]
851         //    [...]
852         //    -- for each non-static data member of X that is of class type (or
853         //       an array thereof), the constructor selected to copy/move that
854         //       member is trivial;
855         if (!FieldRec->hasTrivialCopyConstructor())
856           data().HasTrivialSpecialMembers &= ~SMF_CopyConstructor;
857         // If the field doesn't have a simple move constructor, we'll eagerly
858         // declare the move constructor for this class and we'll decide whether
859         // it's trivial then.
860         if (!FieldRec->hasTrivialMoveConstructor())
861           data().HasTrivialSpecialMembers &= ~SMF_MoveConstructor;
862
863         // C++0x [class.copy]p27:
864         //   A copy/move assignment operator for class X is trivial if [...]
865         //    [...]
866         //    -- for each non-static data member of X that is of class type (or
867         //       an array thereof), the assignment operator selected to
868         //       copy/move that member is trivial;
869         if (!FieldRec->hasTrivialCopyAssignment())
870           data().HasTrivialSpecialMembers &= ~SMF_CopyAssignment;
871         // If the field doesn't have a simple move assignment, we'll eagerly
872         // declare the move assignment for this class and we'll decide whether
873         // it's trivial then.
874         if (!FieldRec->hasTrivialMoveAssignment())
875           data().HasTrivialSpecialMembers &= ~SMF_MoveAssignment;
876
877         if (!FieldRec->hasTrivialDestructor())
878           data().HasTrivialSpecialMembers &= ~SMF_Destructor;
879         if (!FieldRec->hasIrrelevantDestructor())
880           data().HasIrrelevantDestructor = false;
881         if (FieldRec->hasObjectMember())
882           setHasObjectMember(true);
883         if (FieldRec->hasVolatileMember())
884           setHasVolatileMember(true);
885
886         // C++0x [class]p7:
887         //   A standard-layout class is a class that:
888         //    -- has no non-static data members of type non-standard-layout
889         //       class (or array of such types) [...]
890         if (!FieldRec->isStandardLayout())
891           data().IsStandardLayout = false;
892
893         // C++0x [class]p7:
894         //   A standard-layout class is a class that:
895         //    [...]
896         //    -- has no base classes of the same type as the first non-static
897         //       data member.
898         // We don't want to expend bits in the state of the record decl
899         // tracking whether this is the first non-static data member so we
900         // cheat a bit and use some of the existing state: the empty bit.
901         // Virtual bases and virtual methods make a class non-empty, but they
902         // also make it non-standard-layout so we needn't check here.
903         // A non-empty base class may leave the class standard-layout, but not
904         // if we have arrived here, and have at least one non-static data
905         // member. If IsStandardLayout remains true, then the first non-static
906         // data member must come through here with Empty still true, and Empty
907         // will subsequently be set to false below.
908         if (data().IsStandardLayout && data().Empty) {
909           for (const auto &BI : bases()) {
910             if (Context.hasSameUnqualifiedType(BI.getType(), T)) {
911               data().IsStandardLayout = false;
912               break;
913             }
914           }
915         }
916         
917         // Keep track of the presence of mutable fields.
918         if (FieldRec->hasMutableFields())
919           data().HasMutableFields = true;
920
921         // C++11 [class.copy]p13:
922         //   If the implicitly-defined constructor would satisfy the
923         //   requirements of a constexpr constructor, the implicitly-defined
924         //   constructor is constexpr.
925         // C++11 [dcl.constexpr]p4:
926         //    -- every constructor involved in initializing non-static data
927         //       members [...] shall be a constexpr constructor
928         if (!Field->hasInClassInitializer() &&
929             !FieldRec->hasConstexprDefaultConstructor() && !isUnion())
930           // The standard requires any in-class initializer to be a constant
931           // expression. We consider this to be a defect.
932           data().DefaultedDefaultConstructorIsConstexpr = false;
933
934         // C++11 [class.copy]p8:
935         //   The implicitly-declared copy constructor for a class X will have
936         //   the form 'X::X(const X&)' if each potentially constructed subobject
937         //   of a class type M (or array thereof) has a copy constructor whose
938         //   first parameter is of type 'const M&' or 'const volatile M&'.
939         if (!FieldRec->hasCopyConstructorWithConstParam())
940           data().ImplicitCopyConstructorCanHaveConstParamForNonVBase = false;
941
942         // C++11 [class.copy]p18:
943         //   The implicitly-declared copy assignment oeprator for a class X will
944         //   have the form 'X& X::operator=(const X&)' if [...] for all the
945         //   non-static data members of X that are of a class type M (or array
946         //   thereof), each such class type has a copy assignment operator whose
947         //   parameter is of type 'const M&', 'const volatile M&' or 'M'.
948         if (!FieldRec->hasCopyAssignmentWithConstParam())
949           data().ImplicitCopyAssignmentHasConstParam = false;
950
951         if (FieldRec->hasUninitializedReferenceMember() &&
952             !Field->hasInClassInitializer())
953           data().HasUninitializedReferenceMember = true;
954
955         // C++11 [class.union]p8, DR1460:
956         //   a non-static data member of an anonymous union that is a member of
957         //   X is also a variant member of X.
958         if (FieldRec->hasVariantMembers() &&
959             Field->isAnonymousStructOrUnion())
960           data().HasVariantMembers = true;
961       }
962     } else {
963       // Base element type of field is a non-class type.
964       if (!T->isLiteralType(Context) ||
965           (!Field->hasInClassInitializer() && !isUnion()))
966         data().DefaultedDefaultConstructorIsConstexpr = false;
967
968       // C++11 [class.copy]p23:
969       //   A defaulted copy/move assignment operator for a class X is defined
970       //   as deleted if X has:
971       //    -- a non-static data member of const non-class type (or array
972       //       thereof)
973       if (T.isConstQualified())
974         data().DefaultedMoveAssignmentIsDeleted = true;
975     }
976
977     // C++0x [class]p7:
978     //   A standard-layout class is a class that:
979     //    [...]
980     //    -- either has no non-static data members in the most derived
981     //       class and at most one base class with non-static data members,
982     //       or has no base classes with non-static data members, and
983     // At this point we know that we have a non-static data member, so the last
984     // clause holds.
985     if (!data().HasNoNonEmptyBases)
986       data().IsStandardLayout = false;
987
988     // C++14 [meta.unary.prop]p4:
989     //   T is a class type [...] with [...] no non-static data members other
990     //   than bit-fields of length 0...
991     if (data().Empty) {
992       if (!Field->isBitField() ||
993           (!Field->getBitWidth()->isTypeDependent() &&
994            !Field->getBitWidth()->isValueDependent() &&
995            Field->getBitWidthValue(Context) != 0))
996         data().Empty = false;
997     }
998   }
999   
1000   // Handle using declarations of conversion functions.
1001   if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D)) {
1002     if (Shadow->getDeclName().getNameKind()
1003           == DeclarationName::CXXConversionFunctionName) {
1004       ASTContext &Ctx = getASTContext();
1005       data().Conversions.get(Ctx).addDecl(Ctx, Shadow, Shadow->getAccess());
1006     }
1007   }
1008
1009   if (UsingDecl *Using = dyn_cast<UsingDecl>(D)) {
1010     if (Using->getDeclName().getNameKind() ==
1011         DeclarationName::CXXConstructorName) {
1012       data().HasInheritedConstructor = true;
1013       // C++1z [dcl.init.aggr]p1:
1014       //  An aggregate is [...] a class [...] with no inherited constructors
1015       data().Aggregate = false;
1016     }
1017
1018     if (Using->getDeclName().getCXXOverloadedOperator() == OO_Equal)
1019       data().HasInheritedAssignment = true;
1020   }
1021 }
1022
1023 void CXXRecordDecl::finishedDefaultedOrDeletedMember(CXXMethodDecl *D) {
1024   assert(!D->isImplicit() && !D->isUserProvided());
1025
1026   // The kind of special member this declaration is, if any.
1027   unsigned SMKind = 0;
1028
1029   if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1030     if (Constructor->isDefaultConstructor()) {
1031       SMKind |= SMF_DefaultConstructor;
1032       if (Constructor->isConstexpr())
1033         data().HasConstexprDefaultConstructor = true;
1034     }
1035     if (Constructor->isCopyConstructor())
1036       SMKind |= SMF_CopyConstructor;
1037     else if (Constructor->isMoveConstructor())
1038       SMKind |= SMF_MoveConstructor;
1039     else if (Constructor->isConstexpr())
1040       // We may now know that the constructor is constexpr.
1041       data().HasConstexprNonCopyMoveConstructor = true;
1042   } else if (isa<CXXDestructorDecl>(D)) {
1043     SMKind |= SMF_Destructor;
1044     if (!D->isTrivial() || D->getAccess() != AS_public || D->isDeleted())
1045       data().HasIrrelevantDestructor = false;
1046   } else if (D->isCopyAssignmentOperator())
1047     SMKind |= SMF_CopyAssignment;
1048   else if (D->isMoveAssignmentOperator())
1049     SMKind |= SMF_MoveAssignment;
1050
1051   // Update which trivial / non-trivial special members we have.
1052   // addedMember will have skipped this step for this member.
1053   if (D->isTrivial())
1054     data().HasTrivialSpecialMembers |= SMKind;
1055   else
1056     data().DeclaredNonTrivialSpecialMembers |= SMKind;
1057 }
1058
1059 bool CXXRecordDecl::isCLike() const {
1060   if (getTagKind() == TTK_Class || getTagKind() == TTK_Interface ||
1061       !TemplateOrInstantiation.isNull())
1062     return false;
1063   if (!hasDefinition())
1064     return true;
1065
1066   return isPOD() && data().HasOnlyCMembers;
1067 }
1068  
1069 bool CXXRecordDecl::isGenericLambda() const { 
1070   if (!isLambda()) return false;
1071   return getLambdaData().IsGenericLambda;
1072 }
1073
1074 CXXMethodDecl* CXXRecordDecl::getLambdaCallOperator() const {
1075   if (!isLambda()) return nullptr;
1076   DeclarationName Name = 
1077     getASTContext().DeclarationNames.getCXXOperatorName(OO_Call);
1078   DeclContext::lookup_result Calls = lookup(Name);
1079
1080   assert(!Calls.empty() && "Missing lambda call operator!");
1081   assert(Calls.size() == 1 && "More than one lambda call operator!"); 
1082    
1083   NamedDecl *CallOp = Calls.front();
1084   if (FunctionTemplateDecl *CallOpTmpl = 
1085                     dyn_cast<FunctionTemplateDecl>(CallOp)) 
1086     return cast<CXXMethodDecl>(CallOpTmpl->getTemplatedDecl());
1087   
1088   return cast<CXXMethodDecl>(CallOp);
1089 }
1090
1091 CXXMethodDecl* CXXRecordDecl::getLambdaStaticInvoker() const {
1092   if (!isLambda()) return nullptr;
1093   DeclarationName Name = 
1094     &getASTContext().Idents.get(getLambdaStaticInvokerName());
1095   DeclContext::lookup_result Invoker = lookup(Name);
1096   if (Invoker.empty()) return nullptr;
1097   assert(Invoker.size() == 1 && "More than one static invoker operator!");  
1098   NamedDecl *InvokerFun = Invoker.front();
1099   if (FunctionTemplateDecl *InvokerTemplate =
1100                   dyn_cast<FunctionTemplateDecl>(InvokerFun)) 
1101     return cast<CXXMethodDecl>(InvokerTemplate->getTemplatedDecl());
1102   
1103   return cast<CXXMethodDecl>(InvokerFun); 
1104 }
1105
1106 void CXXRecordDecl::getCaptureFields(
1107        llvm::DenseMap<const VarDecl *, FieldDecl *> &Captures,
1108        FieldDecl *&ThisCapture) const {
1109   Captures.clear();
1110   ThisCapture = nullptr;
1111
1112   LambdaDefinitionData &Lambda = getLambdaData();
1113   RecordDecl::field_iterator Field = field_begin();
1114   for (const LambdaCapture *C = Lambda.Captures, *CEnd = C + Lambda.NumCaptures;
1115        C != CEnd; ++C, ++Field) {
1116     if (C->capturesThis())
1117       ThisCapture = *Field;
1118     else if (C->capturesVariable())
1119       Captures[C->getCapturedVar()] = *Field;
1120   }
1121   assert(Field == field_end());
1122 }
1123
1124 TemplateParameterList * 
1125 CXXRecordDecl::getGenericLambdaTemplateParameterList() const {
1126   if (!isLambda()) return nullptr;
1127   CXXMethodDecl *CallOp = getLambdaCallOperator();     
1128   if (FunctionTemplateDecl *Tmpl = CallOp->getDescribedFunctionTemplate())
1129     return Tmpl->getTemplateParameters();
1130   return nullptr;
1131 }
1132
1133 Decl *CXXRecordDecl::getLambdaContextDecl() const {
1134   assert(isLambda() && "Not a lambda closure type!");
1135   ExternalASTSource *Source = getParentASTContext().getExternalSource();
1136   return getLambdaData().ContextDecl.get(Source);
1137 }
1138
1139 static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv) {
1140   QualType T =
1141       cast<CXXConversionDecl>(Conv->getUnderlyingDecl()->getAsFunction())
1142           ->getConversionType();
1143   return Context.getCanonicalType(T);
1144 }
1145
1146 /// Collect the visible conversions of a base class.
1147 ///
1148 /// \param Record a base class of the class we're considering
1149 /// \param InVirtual whether this base class is a virtual base (or a base
1150 ///   of a virtual base)
1151 /// \param Access the access along the inheritance path to this base
1152 /// \param ParentHiddenTypes the conversions provided by the inheritors
1153 ///   of this base
1154 /// \param Output the set to which to add conversions from non-virtual bases
1155 /// \param VOutput the set to which to add conversions from virtual bases
1156 /// \param HiddenVBaseCs the set of conversions which were hidden in a
1157 ///   virtual base along some inheritance path
1158 static void CollectVisibleConversions(ASTContext &Context,
1159                                       CXXRecordDecl *Record,
1160                                       bool InVirtual,
1161                                       AccessSpecifier Access,
1162                   const llvm::SmallPtrSet<CanQualType, 8> &ParentHiddenTypes,
1163                                       ASTUnresolvedSet &Output,
1164                                       UnresolvedSetImpl &VOutput,
1165                            llvm::SmallPtrSet<NamedDecl*, 8> &HiddenVBaseCs) {
1166   // The set of types which have conversions in this class or its
1167   // subclasses.  As an optimization, we don't copy the derived set
1168   // unless it might change.
1169   const llvm::SmallPtrSet<CanQualType, 8> *HiddenTypes = &ParentHiddenTypes;
1170   llvm::SmallPtrSet<CanQualType, 8> HiddenTypesBuffer;
1171
1172   // Collect the direct conversions and figure out which conversions
1173   // will be hidden in the subclasses.
1174   CXXRecordDecl::conversion_iterator ConvI = Record->conversion_begin();
1175   CXXRecordDecl::conversion_iterator ConvE = Record->conversion_end();
1176   if (ConvI != ConvE) {
1177     HiddenTypesBuffer = ParentHiddenTypes;
1178     HiddenTypes = &HiddenTypesBuffer;
1179
1180     for (CXXRecordDecl::conversion_iterator I = ConvI; I != ConvE; ++I) {
1181       CanQualType ConvType(GetConversionType(Context, I.getDecl()));
1182       bool Hidden = ParentHiddenTypes.count(ConvType);
1183       if (!Hidden)
1184         HiddenTypesBuffer.insert(ConvType);
1185
1186       // If this conversion is hidden and we're in a virtual base,
1187       // remember that it's hidden along some inheritance path.
1188       if (Hidden && InVirtual)
1189         HiddenVBaseCs.insert(cast<NamedDecl>(I.getDecl()->getCanonicalDecl()));
1190
1191       // If this conversion isn't hidden, add it to the appropriate output.
1192       else if (!Hidden) {
1193         AccessSpecifier IAccess
1194           = CXXRecordDecl::MergeAccess(Access, I.getAccess());
1195
1196         if (InVirtual)
1197           VOutput.addDecl(I.getDecl(), IAccess);
1198         else
1199           Output.addDecl(Context, I.getDecl(), IAccess);
1200       }
1201     }
1202   }
1203
1204   // Collect information recursively from any base classes.
1205   for (const auto &I : Record->bases()) {
1206     const RecordType *RT = I.getType()->getAs<RecordType>();
1207     if (!RT) continue;
1208
1209     AccessSpecifier BaseAccess
1210       = CXXRecordDecl::MergeAccess(Access, I.getAccessSpecifier());
1211     bool BaseInVirtual = InVirtual || I.isVirtual();
1212
1213     CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl());
1214     CollectVisibleConversions(Context, Base, BaseInVirtual, BaseAccess,
1215                               *HiddenTypes, Output, VOutput, HiddenVBaseCs);
1216   }
1217 }
1218
1219 /// Collect the visible conversions of a class.
1220 ///
1221 /// This would be extremely straightforward if it weren't for virtual
1222 /// bases.  It might be worth special-casing that, really.
1223 static void CollectVisibleConversions(ASTContext &Context,
1224                                       CXXRecordDecl *Record,
1225                                       ASTUnresolvedSet &Output) {
1226   // The collection of all conversions in virtual bases that we've
1227   // found.  These will be added to the output as long as they don't
1228   // appear in the hidden-conversions set.
1229   UnresolvedSet<8> VBaseCs;
1230   
1231   // The set of conversions in virtual bases that we've determined to
1232   // be hidden.
1233   llvm::SmallPtrSet<NamedDecl*, 8> HiddenVBaseCs;
1234
1235   // The set of types hidden by classes derived from this one.
1236   llvm::SmallPtrSet<CanQualType, 8> HiddenTypes;
1237
1238   // Go ahead and collect the direct conversions and add them to the
1239   // hidden-types set.
1240   CXXRecordDecl::conversion_iterator ConvI = Record->conversion_begin();
1241   CXXRecordDecl::conversion_iterator ConvE = Record->conversion_end();
1242   Output.append(Context, ConvI, ConvE);
1243   for (; ConvI != ConvE; ++ConvI)
1244     HiddenTypes.insert(GetConversionType(Context, ConvI.getDecl()));
1245
1246   // Recursively collect conversions from base classes.
1247   for (const auto &I : Record->bases()) {
1248     const RecordType *RT = I.getType()->getAs<RecordType>();
1249     if (!RT) continue;
1250
1251     CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()),
1252                               I.isVirtual(), I.getAccessSpecifier(),
1253                               HiddenTypes, Output, VBaseCs, HiddenVBaseCs);
1254   }
1255
1256   // Add any unhidden conversions provided by virtual bases.
1257   for (UnresolvedSetIterator I = VBaseCs.begin(), E = VBaseCs.end();
1258          I != E; ++I) {
1259     if (!HiddenVBaseCs.count(cast<NamedDecl>(I.getDecl()->getCanonicalDecl())))
1260       Output.addDecl(Context, I.getDecl(), I.getAccess());
1261   }
1262 }
1263
1264 /// getVisibleConversionFunctions - get all conversion functions visible
1265 /// in current class; including conversion function templates.
1266 llvm::iterator_range<CXXRecordDecl::conversion_iterator>
1267 CXXRecordDecl::getVisibleConversionFunctions() {
1268   ASTContext &Ctx = getASTContext();
1269
1270   ASTUnresolvedSet *Set;
1271   if (bases_begin() == bases_end()) {
1272     // If root class, all conversions are visible.
1273     Set = &data().Conversions.get(Ctx);
1274   } else {
1275     Set = &data().VisibleConversions.get(Ctx);
1276     // If visible conversion list is not evaluated, evaluate it.
1277     if (!data().ComputedVisibleConversions) {
1278       CollectVisibleConversions(Ctx, this, *Set);
1279       data().ComputedVisibleConversions = true;
1280     }
1281   }
1282   return llvm::make_range(Set->begin(), Set->end());
1283 }
1284
1285 void CXXRecordDecl::removeConversion(const NamedDecl *ConvDecl) {
1286   // This operation is O(N) but extremely rare.  Sema only uses it to
1287   // remove UsingShadowDecls in a class that were followed by a direct
1288   // declaration, e.g.:
1289   //   class A : B {
1290   //     using B::operator int;
1291   //     operator int();
1292   //   };
1293   // This is uncommon by itself and even more uncommon in conjunction
1294   // with sufficiently large numbers of directly-declared conversions
1295   // that asymptotic behavior matters.
1296
1297   ASTUnresolvedSet &Convs = data().Conversions.get(getASTContext());
1298   for (unsigned I = 0, E = Convs.size(); I != E; ++I) {
1299     if (Convs[I].getDecl() == ConvDecl) {
1300       Convs.erase(I);
1301       assert(std::find(Convs.begin(), Convs.end(), ConvDecl) == Convs.end()
1302              && "conversion was found multiple times in unresolved set");
1303       return;
1304     }
1305   }
1306
1307   llvm_unreachable("conversion not found in set!");
1308 }
1309
1310 CXXRecordDecl *CXXRecordDecl::getInstantiatedFromMemberClass() const {
1311   if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
1312     return cast<CXXRecordDecl>(MSInfo->getInstantiatedFrom());
1313
1314   return nullptr;
1315 }
1316
1317 MemberSpecializationInfo *CXXRecordDecl::getMemberSpecializationInfo() const {
1318   return TemplateOrInstantiation.dyn_cast<MemberSpecializationInfo *>();
1319 }
1320
1321 void 
1322 CXXRecordDecl::setInstantiationOfMemberClass(CXXRecordDecl *RD,
1323                                              TemplateSpecializationKind TSK) {
1324   assert(TemplateOrInstantiation.isNull() && 
1325          "Previous template or instantiation?");
1326   assert(!isa<ClassTemplatePartialSpecializationDecl>(this));
1327   TemplateOrInstantiation 
1328     = new (getASTContext()) MemberSpecializationInfo(RD, TSK);
1329 }
1330
1331 ClassTemplateDecl *CXXRecordDecl::getDescribedClassTemplate() const {
1332   return TemplateOrInstantiation.dyn_cast<ClassTemplateDecl *>();
1333 }
1334
1335 void CXXRecordDecl::setDescribedClassTemplate(ClassTemplateDecl *Template) {
1336   TemplateOrInstantiation = Template;
1337 }
1338
1339 TemplateSpecializationKind CXXRecordDecl::getTemplateSpecializationKind() const{
1340   if (const ClassTemplateSpecializationDecl *Spec
1341         = dyn_cast<ClassTemplateSpecializationDecl>(this))
1342     return Spec->getSpecializationKind();
1343   
1344   if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
1345     return MSInfo->getTemplateSpecializationKind();
1346   
1347   return TSK_Undeclared;
1348 }
1349
1350 void 
1351 CXXRecordDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK) {
1352   if (ClassTemplateSpecializationDecl *Spec
1353       = dyn_cast<ClassTemplateSpecializationDecl>(this)) {
1354     Spec->setSpecializationKind(TSK);
1355     return;
1356   }
1357   
1358   if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) {
1359     MSInfo->setTemplateSpecializationKind(TSK);
1360     return;
1361   }
1362   
1363   llvm_unreachable("Not a class template or member class specialization");
1364 }
1365
1366 const CXXRecordDecl *CXXRecordDecl::getTemplateInstantiationPattern() const {
1367   // If it's a class template specialization, find the template or partial
1368   // specialization from which it was instantiated.
1369   if (auto *TD = dyn_cast<ClassTemplateSpecializationDecl>(this)) {
1370     auto From = TD->getInstantiatedFrom();
1371     if (auto *CTD = From.dyn_cast<ClassTemplateDecl *>()) {
1372       while (auto *NewCTD = CTD->getInstantiatedFromMemberTemplate()) {
1373         if (NewCTD->isMemberSpecialization())
1374           break;
1375         CTD = NewCTD;
1376       }
1377       return CTD->getTemplatedDecl()->getDefinition();
1378     }
1379     if (auto *CTPSD =
1380             From.dyn_cast<ClassTemplatePartialSpecializationDecl *>()) {
1381       while (auto *NewCTPSD = CTPSD->getInstantiatedFromMember()) {
1382         if (NewCTPSD->isMemberSpecialization())
1383           break;
1384         CTPSD = NewCTPSD;
1385       }
1386       return CTPSD->getDefinition();
1387     }
1388   }
1389
1390   if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) {
1391     if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) {
1392       const CXXRecordDecl *RD = this;
1393       while (auto *NewRD = RD->getInstantiatedFromMemberClass())
1394         RD = NewRD;
1395       return RD->getDefinition();
1396     }
1397   }
1398
1399   assert(!isTemplateInstantiation(this->getTemplateSpecializationKind()) &&
1400          "couldn't find pattern for class template instantiation");
1401   return nullptr;
1402 }
1403
1404 CXXDestructorDecl *CXXRecordDecl::getDestructor() const {
1405   ASTContext &Context = getASTContext();
1406   QualType ClassType = Context.getTypeDeclType(this);
1407
1408   DeclarationName Name
1409     = Context.DeclarationNames.getCXXDestructorName(
1410                                           Context.getCanonicalType(ClassType));
1411
1412   DeclContext::lookup_result R = lookup(Name);
1413   if (R.empty())
1414     return nullptr;
1415
1416   CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(R.front());
1417   return Dtor;
1418 }
1419
1420 bool CXXRecordDecl::isAnyDestructorNoReturn() const {
1421   // Destructor is noreturn.
1422   if (const CXXDestructorDecl *Destructor = getDestructor())
1423     if (Destructor->isNoReturn())
1424       return true;
1425
1426   // Check base classes destructor for noreturn.
1427   for (const auto &Base : bases())
1428     if (Base.getType()->getAsCXXRecordDecl()->isAnyDestructorNoReturn())
1429       return true;
1430
1431   // Check fields for noreturn.
1432   for (const auto *Field : fields())
1433     if (const CXXRecordDecl *RD =
1434             Field->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl())
1435       if (RD->isAnyDestructorNoReturn())
1436         return true;
1437
1438   // All destructors are not noreturn.
1439   return false;
1440 }
1441
1442 void CXXRecordDecl::completeDefinition() {
1443   completeDefinition(nullptr);
1444 }
1445
1446 void CXXRecordDecl::completeDefinition(CXXFinalOverriderMap *FinalOverriders) {
1447   RecordDecl::completeDefinition();
1448   
1449   // If the class may be abstract (but hasn't been marked as such), check for
1450   // any pure final overriders.
1451   if (mayBeAbstract()) {
1452     CXXFinalOverriderMap MyFinalOverriders;
1453     if (!FinalOverriders) {
1454       getFinalOverriders(MyFinalOverriders);
1455       FinalOverriders = &MyFinalOverriders;
1456     }
1457     
1458     bool Done = false;
1459     for (CXXFinalOverriderMap::iterator M = FinalOverriders->begin(), 
1460                                      MEnd = FinalOverriders->end();
1461          M != MEnd && !Done; ++M) {
1462       for (OverridingMethods::iterator SO = M->second.begin(), 
1463                                     SOEnd = M->second.end();
1464            SO != SOEnd && !Done; ++SO) {
1465         assert(SO->second.size() > 0 && 
1466                "All virtual functions have overridding virtual functions");
1467         
1468         // C++ [class.abstract]p4:
1469         //   A class is abstract if it contains or inherits at least one
1470         //   pure virtual function for which the final overrider is pure
1471         //   virtual.
1472         if (SO->second.front().Method->isPure()) {
1473           data().Abstract = true;
1474           Done = true;
1475           break;
1476         }
1477       }
1478     }
1479   }
1480   
1481   // Set access bits correctly on the directly-declared conversions.
1482   for (conversion_iterator I = conversion_begin(), E = conversion_end();
1483        I != E; ++I)
1484     I.setAccess((*I)->getAccess());
1485 }
1486
1487 bool CXXRecordDecl::mayBeAbstract() const {
1488   if (data().Abstract || isInvalidDecl() || !data().Polymorphic ||
1489       isDependentContext())
1490     return false;
1491   
1492   for (const auto &B : bases()) {
1493     CXXRecordDecl *BaseDecl 
1494       = cast<CXXRecordDecl>(B.getType()->getAs<RecordType>()->getDecl());
1495     if (BaseDecl->isAbstract())
1496       return true;
1497   }
1498   
1499   return false;
1500 }
1501
1502 void CXXDeductionGuideDecl::anchor() { }
1503
1504 CXXDeductionGuideDecl *CXXDeductionGuideDecl::Create(
1505     ASTContext &C, DeclContext *DC, SourceLocation StartLoc, bool IsExplicit,
1506     const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo,
1507     SourceLocation EndLocation) {
1508   return new (C, DC) CXXDeductionGuideDecl(C, DC, StartLoc, IsExplicit,
1509                                            NameInfo, T, TInfo, EndLocation);
1510 }
1511
1512 CXXDeductionGuideDecl *CXXDeductionGuideDecl::CreateDeserialized(ASTContext &C,
1513                                                                  unsigned ID) {
1514   return new (C, ID) CXXDeductionGuideDecl(C, nullptr, SourceLocation(), false,
1515                                            DeclarationNameInfo(), QualType(),
1516                                            nullptr, SourceLocation());
1517 }
1518
1519 void CXXMethodDecl::anchor() { }
1520
1521 bool CXXMethodDecl::isStatic() const {
1522   const CXXMethodDecl *MD = getCanonicalDecl();
1523
1524   if (MD->getStorageClass() == SC_Static)
1525     return true;
1526
1527   OverloadedOperatorKind OOK = getDeclName().getCXXOverloadedOperator();
1528   return isStaticOverloadedOperator(OOK);
1529 }
1530
1531 static bool recursivelyOverrides(const CXXMethodDecl *DerivedMD,
1532                                  const CXXMethodDecl *BaseMD) {
1533   for (CXXMethodDecl::method_iterator I = DerivedMD->begin_overridden_methods(),
1534          E = DerivedMD->end_overridden_methods(); I != E; ++I) {
1535     const CXXMethodDecl *MD = *I;
1536     if (MD->getCanonicalDecl() == BaseMD->getCanonicalDecl())
1537       return true;
1538     if (recursivelyOverrides(MD, BaseMD))
1539       return true;
1540   }
1541   return false;
1542 }
1543
1544 CXXMethodDecl *
1545 CXXMethodDecl::getCorrespondingMethodInClass(const CXXRecordDecl *RD,
1546                                              bool MayBeBase) {
1547   if (this->getParent()->getCanonicalDecl() == RD->getCanonicalDecl())
1548     return this;
1549
1550   // Lookup doesn't work for destructors, so handle them separately.
1551   if (isa<CXXDestructorDecl>(this)) {
1552     CXXMethodDecl *MD = RD->getDestructor();
1553     if (MD) {
1554       if (recursivelyOverrides(MD, this))
1555         return MD;
1556       if (MayBeBase && recursivelyOverrides(this, MD))
1557         return MD;
1558     }
1559     return nullptr;
1560   }
1561
1562   for (auto *ND : RD->lookup(getDeclName())) {
1563     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND);
1564     if (!MD)
1565       continue;
1566     if (recursivelyOverrides(MD, this))
1567       return MD;
1568     if (MayBeBase && recursivelyOverrides(this, MD))
1569       return MD;
1570   }
1571
1572   for (const auto &I : RD->bases()) {
1573     const RecordType *RT = I.getType()->getAs<RecordType>();
1574     if (!RT)
1575       continue;
1576     const CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl());
1577     CXXMethodDecl *T = this->getCorrespondingMethodInClass(Base);
1578     if (T)
1579       return T;
1580   }
1581
1582   return nullptr;
1583 }
1584
1585 CXXMethodDecl *
1586 CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD,
1587                       SourceLocation StartLoc,
1588                       const DeclarationNameInfo &NameInfo,
1589                       QualType T, TypeSourceInfo *TInfo,
1590                       StorageClass SC, bool isInline,
1591                       bool isConstexpr, SourceLocation EndLocation) {
1592   return new (C, RD) CXXMethodDecl(CXXMethod, C, RD, StartLoc, NameInfo,
1593                                    T, TInfo, SC, isInline, isConstexpr,
1594                                    EndLocation);
1595 }
1596
1597 CXXMethodDecl *CXXMethodDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1598   return new (C, ID) CXXMethodDecl(CXXMethod, C, nullptr, SourceLocation(),
1599                                    DeclarationNameInfo(), QualType(), nullptr,
1600                                    SC_None, false, false, SourceLocation());
1601 }
1602
1603 bool CXXMethodDecl::isUsualDeallocationFunction() const {
1604   if (getOverloadedOperator() != OO_Delete &&
1605       getOverloadedOperator() != OO_Array_Delete)
1606     return false;
1607
1608   // C++ [basic.stc.dynamic.deallocation]p2:
1609   //   A template instance is never a usual deallocation function,
1610   //   regardless of its signature.
1611   if (getPrimaryTemplate())
1612     return false;
1613
1614   // C++ [basic.stc.dynamic.deallocation]p2:
1615   //   If a class T has a member deallocation function named operator delete 
1616   //   with exactly one parameter, then that function is a usual (non-placement)
1617   //   deallocation function. [...]
1618   if (getNumParams() == 1)
1619     return true;
1620   unsigned UsualParams = 1;
1621
1622   // C++ <=14 [basic.stc.dynamic.deallocation]p2:
1623   //   [...] If class T does not declare such an operator delete but does 
1624   //   declare a member deallocation function named operator delete with 
1625   //   exactly two parameters, the second of which has type std::size_t (18.1),
1626   //   then this function is a usual deallocation function.
1627   //
1628   // C++17 says a usual deallocation function is one with the signature
1629   //   (void* [, size_t] [, std::align_val_t] [, ...])
1630   // and all such functions are usual deallocation functions. It's not clear
1631   // that allowing varargs functions was intentional.
1632   ASTContext &Context = getASTContext();
1633   if (UsualParams < getNumParams() &&
1634       Context.hasSameUnqualifiedType(getParamDecl(UsualParams)->getType(),
1635                                      Context.getSizeType()))
1636     ++UsualParams;
1637
1638   if (UsualParams < getNumParams() &&
1639       getParamDecl(UsualParams)->getType()->isAlignValT())
1640     ++UsualParams;
1641
1642   if (UsualParams != getNumParams())
1643     return false;
1644
1645   // In C++17 onwards, all potential usual deallocation functions are actual
1646   // usual deallocation functions.
1647   if (Context.getLangOpts().AlignedAllocation)
1648     return true;
1649                  
1650   // This function is a usual deallocation function if there are no 
1651   // single-parameter deallocation functions of the same kind.
1652   DeclContext::lookup_result R = getDeclContext()->lookup(getDeclName());
1653   for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end();
1654        I != E; ++I) {
1655     if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I))
1656       if (FD->getNumParams() == 1)
1657         return false;
1658   }
1659   
1660   return true;
1661 }
1662
1663 bool CXXMethodDecl::isCopyAssignmentOperator() const {
1664   // C++0x [class.copy]p17:
1665   //  A user-declared copy assignment operator X::operator= is a non-static 
1666   //  non-template member function of class X with exactly one parameter of 
1667   //  type X, X&, const X&, volatile X& or const volatile X&.
1668   if (/*operator=*/getOverloadedOperator() != OO_Equal ||
1669       /*non-static*/ isStatic() || 
1670       /*non-template*/getPrimaryTemplate() || getDescribedFunctionTemplate() ||
1671       getNumParams() != 1)
1672     return false;
1673       
1674   QualType ParamType = getParamDecl(0)->getType();
1675   if (const LValueReferenceType *Ref = ParamType->getAs<LValueReferenceType>())
1676     ParamType = Ref->getPointeeType();
1677   
1678   ASTContext &Context = getASTContext();
1679   QualType ClassType
1680     = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1681   return Context.hasSameUnqualifiedType(ClassType, ParamType);
1682 }
1683
1684 bool CXXMethodDecl::isMoveAssignmentOperator() const {
1685   // C++0x [class.copy]p19:
1686   //  A user-declared move assignment operator X::operator= is a non-static
1687   //  non-template member function of class X with exactly one parameter of type
1688   //  X&&, const X&&, volatile X&&, or const volatile X&&.
1689   if (getOverloadedOperator() != OO_Equal || isStatic() ||
1690       getPrimaryTemplate() || getDescribedFunctionTemplate() ||
1691       getNumParams() != 1)
1692     return false;
1693
1694   QualType ParamType = getParamDecl(0)->getType();
1695   if (!isa<RValueReferenceType>(ParamType))
1696     return false;
1697   ParamType = ParamType->getPointeeType();
1698
1699   ASTContext &Context = getASTContext();
1700   QualType ClassType
1701     = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1702   return Context.hasSameUnqualifiedType(ClassType, ParamType);
1703 }
1704
1705 void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) {
1706   assert(MD->isCanonicalDecl() && "Method is not canonical!");
1707   assert(!MD->getParent()->isDependentContext() &&
1708          "Can't add an overridden method to a class template!");
1709   assert(MD->isVirtual() && "Method is not virtual!");
1710
1711   getASTContext().addOverriddenMethod(this, MD);
1712 }
1713
1714 CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const {
1715   if (isa<CXXConstructorDecl>(this)) return nullptr;
1716   return getASTContext().overridden_methods_begin(this);
1717 }
1718
1719 CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const {
1720   if (isa<CXXConstructorDecl>(this)) return nullptr;
1721   return getASTContext().overridden_methods_end(this);
1722 }
1723
1724 unsigned CXXMethodDecl::size_overridden_methods() const {
1725   if (isa<CXXConstructorDecl>(this)) return 0;
1726   return getASTContext().overridden_methods_size(this);
1727 }
1728
1729 CXXMethodDecl::overridden_method_range
1730 CXXMethodDecl::overridden_methods() const {
1731   if (isa<CXXConstructorDecl>(this))
1732     return overridden_method_range(nullptr, nullptr);
1733   return getASTContext().overridden_methods(this);
1734 }
1735
1736 QualType CXXMethodDecl::getThisType(ASTContext &C) const {
1737   // C++ 9.3.2p1: The type of this in a member function of a class X is X*.
1738   // If the member function is declared const, the type of this is const X*,
1739   // if the member function is declared volatile, the type of this is
1740   // volatile X*, and if the member function is declared const volatile,
1741   // the type of this is const volatile X*.
1742
1743   assert(isInstance() && "No 'this' for static methods!");
1744
1745   QualType ClassTy = C.getTypeDeclType(getParent());
1746   ClassTy = C.getQualifiedType(ClassTy,
1747                                Qualifiers::fromCVRUMask(getTypeQualifiers()));
1748   return C.getPointerType(ClassTy);
1749 }
1750
1751 bool CXXMethodDecl::hasInlineBody() const {
1752   // If this function is a template instantiation, look at the template from 
1753   // which it was instantiated.
1754   const FunctionDecl *CheckFn = getTemplateInstantiationPattern();
1755   if (!CheckFn)
1756     CheckFn = this;
1757   
1758   const FunctionDecl *fn;
1759   return CheckFn->hasBody(fn) && !fn->isOutOfLine();
1760 }
1761
1762 bool CXXMethodDecl::isLambdaStaticInvoker() const {
1763   const CXXRecordDecl *P = getParent();
1764   if (P->isLambda()) {
1765     if (const CXXMethodDecl *StaticInvoker = P->getLambdaStaticInvoker()) {
1766       if (StaticInvoker == this) return true;
1767       if (P->isGenericLambda() && this->isFunctionTemplateSpecialization())
1768         return StaticInvoker == this->getPrimaryTemplate()->getTemplatedDecl();
1769     }
1770   }
1771   return false;
1772 }
1773
1774 CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1775                                        TypeSourceInfo *TInfo, bool IsVirtual,
1776                                        SourceLocation L, Expr *Init,
1777                                        SourceLocation R,
1778                                        SourceLocation EllipsisLoc)
1779   : Initializee(TInfo), MemberOrEllipsisLocation(EllipsisLoc), Init(Init), 
1780     LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(IsVirtual), 
1781     IsWritten(false), SourceOrder(0)
1782 {
1783 }
1784
1785 CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1786                                        FieldDecl *Member,
1787                                        SourceLocation MemberLoc,
1788                                        SourceLocation L, Expr *Init,
1789                                        SourceLocation R)
1790   : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
1791     LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false),
1792     IsWritten(false), SourceOrder(0)
1793 {
1794 }
1795
1796 CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1797                                        IndirectFieldDecl *Member,
1798                                        SourceLocation MemberLoc,
1799                                        SourceLocation L, Expr *Init,
1800                                        SourceLocation R)
1801   : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
1802     LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false),
1803     IsWritten(false), SourceOrder(0)
1804 {
1805 }
1806
1807 CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1808                                        TypeSourceInfo *TInfo,
1809                                        SourceLocation L, Expr *Init, 
1810                                        SourceLocation R)
1811   : Initializee(TInfo), MemberOrEllipsisLocation(), Init(Init),
1812     LParenLoc(L), RParenLoc(R), IsDelegating(true), IsVirtual(false),
1813     IsWritten(false), SourceOrder(0)
1814 {
1815 }
1816
1817 TypeLoc CXXCtorInitializer::getBaseClassLoc() const {
1818   if (isBaseInitializer())
1819     return Initializee.get<TypeSourceInfo*>()->getTypeLoc();
1820   else
1821     return TypeLoc();
1822 }
1823
1824 const Type *CXXCtorInitializer::getBaseClass() const {
1825   if (isBaseInitializer())
1826     return Initializee.get<TypeSourceInfo*>()->getType().getTypePtr();
1827   else
1828     return nullptr;
1829 }
1830
1831 SourceLocation CXXCtorInitializer::getSourceLocation() const {
1832   if (isInClassMemberInitializer())
1833     return getAnyMember()->getLocation();
1834   
1835   if (isAnyMemberInitializer())
1836     return getMemberLocation();
1837
1838   if (TypeSourceInfo *TSInfo = Initializee.get<TypeSourceInfo*>())
1839     return TSInfo->getTypeLoc().getLocalSourceRange().getBegin();
1840   
1841   return SourceLocation();
1842 }
1843
1844 SourceRange CXXCtorInitializer::getSourceRange() const {
1845   if (isInClassMemberInitializer()) {
1846     FieldDecl *D = getAnyMember();
1847     if (Expr *I = D->getInClassInitializer())
1848       return I->getSourceRange();
1849     return SourceRange();
1850   }
1851
1852   return SourceRange(getSourceLocation(), getRParenLoc());
1853 }
1854
1855 void CXXConstructorDecl::anchor() { }
1856
1857 CXXConstructorDecl *CXXConstructorDecl::CreateDeserialized(ASTContext &C,
1858                                                            unsigned ID,
1859                                                            bool Inherited) {
1860   unsigned Extra = additionalSizeToAlloc<InheritedConstructor>(Inherited);
1861   auto *Result = new (C, ID, Extra) CXXConstructorDecl(
1862       C, nullptr, SourceLocation(), DeclarationNameInfo(), QualType(), nullptr,
1863       false, false, false, false, InheritedConstructor());
1864   Result->IsInheritingConstructor = Inherited;
1865   return Result;
1866 }
1867
1868 CXXConstructorDecl *
1869 CXXConstructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
1870                            SourceLocation StartLoc,
1871                            const DeclarationNameInfo &NameInfo,
1872                            QualType T, TypeSourceInfo *TInfo,
1873                            bool isExplicit, bool isInline,
1874                            bool isImplicitlyDeclared, bool isConstexpr,
1875                            InheritedConstructor Inherited) {
1876   assert(NameInfo.getName().getNameKind()
1877          == DeclarationName::CXXConstructorName &&
1878          "Name must refer to a constructor");
1879   unsigned Extra =
1880       additionalSizeToAlloc<InheritedConstructor>(Inherited ? 1 : 0);
1881   return new (C, RD, Extra) CXXConstructorDecl(
1882       C, RD, StartLoc, NameInfo, T, TInfo, isExplicit, isInline,
1883       isImplicitlyDeclared, isConstexpr, Inherited);
1884 }
1885
1886 CXXConstructorDecl::init_const_iterator CXXConstructorDecl::init_begin() const {
1887   return CtorInitializers.get(getASTContext().getExternalSource());
1888 }
1889
1890 CXXConstructorDecl *CXXConstructorDecl::getTargetConstructor() const {
1891   assert(isDelegatingConstructor() && "Not a delegating constructor!");
1892   Expr *E = (*init_begin())->getInit()->IgnoreImplicit();
1893   if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(E))
1894     return Construct->getConstructor();
1895
1896   return nullptr;
1897 }
1898
1899 bool CXXConstructorDecl::isDefaultConstructor() const {
1900   // C++ [class.ctor]p5:
1901   //   A default constructor for a class X is a constructor of class
1902   //   X that can be called without an argument.
1903   return (getNumParams() == 0) ||
1904          (getNumParams() > 0 && getParamDecl(0)->hasDefaultArg());
1905 }
1906
1907 bool
1908 CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const {
1909   return isCopyOrMoveConstructor(TypeQuals) &&
1910          getParamDecl(0)->getType()->isLValueReferenceType();
1911 }
1912
1913 bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const {
1914   return isCopyOrMoveConstructor(TypeQuals) &&
1915     getParamDecl(0)->getType()->isRValueReferenceType();
1916 }
1917
1918 /// \brief Determine whether this is a copy or move constructor.
1919 bool CXXConstructorDecl::isCopyOrMoveConstructor(unsigned &TypeQuals) const {
1920   // C++ [class.copy]p2:
1921   //   A non-template constructor for class X is a copy constructor
1922   //   if its first parameter is of type X&, const X&, volatile X& or
1923   //   const volatile X&, and either there are no other parameters
1924   //   or else all other parameters have default arguments (8.3.6).
1925   // C++0x [class.copy]p3:
1926   //   A non-template constructor for class X is a move constructor if its
1927   //   first parameter is of type X&&, const X&&, volatile X&&, or 
1928   //   const volatile X&&, and either there are no other parameters or else 
1929   //   all other parameters have default arguments.
1930   if ((getNumParams() < 1) ||
1931       (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
1932       (getPrimaryTemplate() != nullptr) ||
1933       (getDescribedFunctionTemplate() != nullptr))
1934     return false;
1935   
1936   const ParmVarDecl *Param = getParamDecl(0);
1937   
1938   // Do we have a reference type? 
1939   const ReferenceType *ParamRefType = Param->getType()->getAs<ReferenceType>();
1940   if (!ParamRefType)
1941     return false;
1942   
1943   // Is it a reference to our class type?
1944   ASTContext &Context = getASTContext();
1945   
1946   CanQualType PointeeType
1947     = Context.getCanonicalType(ParamRefType->getPointeeType());
1948   CanQualType ClassTy 
1949     = Context.getCanonicalType(Context.getTagDeclType(getParent()));
1950   if (PointeeType.getUnqualifiedType() != ClassTy)
1951     return false;
1952   
1953   // FIXME: other qualifiers?
1954   
1955   // We have a copy or move constructor.
1956   TypeQuals = PointeeType.getCVRQualifiers();
1957   return true;  
1958 }
1959
1960 bool CXXConstructorDecl::isConvertingConstructor(bool AllowExplicit) const {
1961   // C++ [class.conv.ctor]p1:
1962   //   A constructor declared without the function-specifier explicit
1963   //   that can be called with a single parameter specifies a
1964   //   conversion from the type of its first parameter to the type of
1965   //   its class. Such a constructor is called a converting
1966   //   constructor.
1967   if (isExplicit() && !AllowExplicit)
1968     return false;
1969
1970   return (getNumParams() == 0 &&
1971           getType()->getAs<FunctionProtoType>()->isVariadic()) ||
1972          (getNumParams() == 1) ||
1973          (getNumParams() > 1 &&
1974           (getParamDecl(1)->hasDefaultArg() ||
1975            getParamDecl(1)->isParameterPack()));
1976 }
1977
1978 bool CXXConstructorDecl::isSpecializationCopyingObject() const {
1979   if ((getNumParams() < 1) ||
1980       (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
1981       (getDescribedFunctionTemplate() != nullptr))
1982     return false;
1983
1984   const ParmVarDecl *Param = getParamDecl(0);
1985
1986   ASTContext &Context = getASTContext();
1987   CanQualType ParamType = Context.getCanonicalType(Param->getType());
1988   
1989   // Is it the same as our our class type?
1990   CanQualType ClassTy 
1991     = Context.getCanonicalType(Context.getTagDeclType(getParent()));
1992   if (ParamType.getUnqualifiedType() != ClassTy)
1993     return false;
1994   
1995   return true;  
1996 }
1997
1998 void CXXDestructorDecl::anchor() { }
1999
2000 CXXDestructorDecl *
2001 CXXDestructorDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2002   return new (C, ID)
2003       CXXDestructorDecl(C, nullptr, SourceLocation(), DeclarationNameInfo(),
2004                         QualType(), nullptr, false, false);
2005 }
2006
2007 CXXDestructorDecl *
2008 CXXDestructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
2009                           SourceLocation StartLoc,
2010                           const DeclarationNameInfo &NameInfo,
2011                           QualType T, TypeSourceInfo *TInfo,
2012                           bool isInline, bool isImplicitlyDeclared) {
2013   assert(NameInfo.getName().getNameKind()
2014          == DeclarationName::CXXDestructorName &&
2015          "Name must refer to a destructor");
2016   return new (C, RD) CXXDestructorDecl(C, RD, StartLoc, NameInfo, T, TInfo,
2017                                        isInline, isImplicitlyDeclared);
2018 }
2019
2020 void CXXDestructorDecl::setOperatorDelete(FunctionDecl *OD) {
2021   auto *First = cast<CXXDestructorDecl>(getFirstDecl());
2022   if (OD && !First->OperatorDelete) {
2023     First->OperatorDelete = OD;
2024     if (auto *L = getASTMutationListener())
2025       L->ResolvedOperatorDelete(First, OD);
2026   }
2027 }
2028
2029 void CXXConversionDecl::anchor() { }
2030
2031 CXXConversionDecl *
2032 CXXConversionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2033   return new (C, ID) CXXConversionDecl(C, nullptr, SourceLocation(),
2034                                        DeclarationNameInfo(), QualType(),
2035                                        nullptr, false, false, false,
2036                                        SourceLocation());
2037 }
2038
2039 CXXConversionDecl *
2040 CXXConversionDecl::Create(ASTContext &C, CXXRecordDecl *RD,
2041                           SourceLocation StartLoc,
2042                           const DeclarationNameInfo &NameInfo,
2043                           QualType T, TypeSourceInfo *TInfo,
2044                           bool isInline, bool isExplicit,
2045                           bool isConstexpr, SourceLocation EndLocation) {
2046   assert(NameInfo.getName().getNameKind()
2047          == DeclarationName::CXXConversionFunctionName &&
2048          "Name must refer to a conversion function");
2049   return new (C, RD) CXXConversionDecl(C, RD, StartLoc, NameInfo, T, TInfo,
2050                                        isInline, isExplicit, isConstexpr,
2051                                        EndLocation);
2052 }
2053
2054 bool CXXConversionDecl::isLambdaToBlockPointerConversion() const {
2055   return isImplicit() && getParent()->isLambda() &&
2056          getConversionType()->isBlockPointerType();
2057 }
2058
2059 void LinkageSpecDecl::anchor() { }
2060
2061 LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C,
2062                                          DeclContext *DC,
2063                                          SourceLocation ExternLoc,
2064                                          SourceLocation LangLoc,
2065                                          LanguageIDs Lang,
2066                                          bool HasBraces) {
2067   return new (C, DC) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, HasBraces);
2068 }
2069
2070 LinkageSpecDecl *LinkageSpecDecl::CreateDeserialized(ASTContext &C,
2071                                                      unsigned ID) {
2072   return new (C, ID) LinkageSpecDecl(nullptr, SourceLocation(),
2073                                      SourceLocation(), lang_c, false);
2074 }
2075
2076 void UsingDirectiveDecl::anchor() { }
2077
2078 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC,
2079                                                SourceLocation L,
2080                                                SourceLocation NamespaceLoc,
2081                                            NestedNameSpecifierLoc QualifierLoc,
2082                                                SourceLocation IdentLoc,
2083                                                NamedDecl *Used,
2084                                                DeclContext *CommonAncestor) {
2085   if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Used))
2086     Used = NS->getOriginalNamespace();
2087   return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc,
2088                                         IdentLoc, Used, CommonAncestor);
2089 }
2090
2091 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C,
2092                                                            unsigned ID) {
2093   return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(),
2094                                         SourceLocation(),
2095                                         NestedNameSpecifierLoc(),
2096                                         SourceLocation(), nullptr, nullptr);
2097 }
2098
2099 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() {
2100   if (NamespaceAliasDecl *NA =
2101         dyn_cast_or_null<NamespaceAliasDecl>(NominatedNamespace))
2102     return NA->getNamespace();
2103   return cast_or_null<NamespaceDecl>(NominatedNamespace);
2104 }
2105
2106 NamespaceDecl::NamespaceDecl(ASTContext &C, DeclContext *DC, bool Inline,
2107                              SourceLocation StartLoc, SourceLocation IdLoc,
2108                              IdentifierInfo *Id, NamespaceDecl *PrevDecl)
2109     : NamedDecl(Namespace, DC, IdLoc, Id), DeclContext(Namespace),
2110       redeclarable_base(C), LocStart(StartLoc), RBraceLoc(),
2111       AnonOrFirstNamespaceAndInline(nullptr, Inline) {
2112   setPreviousDecl(PrevDecl);
2113
2114   if (PrevDecl)
2115     AnonOrFirstNamespaceAndInline.setPointer(PrevDecl->getOriginalNamespace());
2116 }
2117
2118 NamespaceDecl *NamespaceDecl::Create(ASTContext &C, DeclContext *DC,
2119                                      bool Inline, SourceLocation StartLoc,
2120                                      SourceLocation IdLoc, IdentifierInfo *Id,
2121                                      NamespaceDecl *PrevDecl) {
2122   return new (C, DC) NamespaceDecl(C, DC, Inline, StartLoc, IdLoc, Id,
2123                                    PrevDecl);
2124 }
2125
2126 NamespaceDecl *NamespaceDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2127   return new (C, ID) NamespaceDecl(C, nullptr, false, SourceLocation(),
2128                                    SourceLocation(), nullptr, nullptr);
2129 }
2130
2131 NamespaceDecl *NamespaceDecl::getOriginalNamespace() {
2132   if (isFirstDecl())
2133     return this;
2134
2135   return AnonOrFirstNamespaceAndInline.getPointer();
2136 }
2137
2138 const NamespaceDecl *NamespaceDecl::getOriginalNamespace() const {
2139   if (isFirstDecl())
2140     return this;
2141
2142   return AnonOrFirstNamespaceAndInline.getPointer();
2143 }
2144
2145 bool NamespaceDecl::isOriginalNamespace() const { return isFirstDecl(); }
2146
2147 NamespaceDecl *NamespaceDecl::getNextRedeclarationImpl() {
2148   return getNextRedeclaration();
2149 }
2150 NamespaceDecl *NamespaceDecl::getPreviousDeclImpl() {
2151   return getPreviousDecl();
2152 }
2153 NamespaceDecl *NamespaceDecl::getMostRecentDeclImpl() {
2154   return getMostRecentDecl();
2155 }
2156
2157 void NamespaceAliasDecl::anchor() { }
2158
2159 NamespaceAliasDecl *NamespaceAliasDecl::getNextRedeclarationImpl() {
2160   return getNextRedeclaration();
2161 }
2162 NamespaceAliasDecl *NamespaceAliasDecl::getPreviousDeclImpl() {
2163   return getPreviousDecl();
2164 }
2165 NamespaceAliasDecl *NamespaceAliasDecl::getMostRecentDeclImpl() {
2166   return getMostRecentDecl();
2167 }
2168
2169 NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC,
2170                                                SourceLocation UsingLoc,
2171                                                SourceLocation AliasLoc,
2172                                                IdentifierInfo *Alias,
2173                                            NestedNameSpecifierLoc QualifierLoc,
2174                                                SourceLocation IdentLoc,
2175                                                NamedDecl *Namespace) {
2176   // FIXME: Preserve the aliased namespace as written.
2177   if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Namespace))
2178     Namespace = NS->getOriginalNamespace();
2179   return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias,
2180                                         QualifierLoc, IdentLoc, Namespace);
2181 }
2182
2183 NamespaceAliasDecl *
2184 NamespaceAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2185   return new (C, ID) NamespaceAliasDecl(C, nullptr, SourceLocation(),
2186                                         SourceLocation(), nullptr,
2187                                         NestedNameSpecifierLoc(),
2188                                         SourceLocation(), nullptr);
2189 }
2190
2191 void UsingShadowDecl::anchor() { }
2192
2193 UsingShadowDecl::UsingShadowDecl(Kind K, ASTContext &C, DeclContext *DC,
2194                                  SourceLocation Loc, UsingDecl *Using,
2195                                  NamedDecl *Target)
2196     : NamedDecl(K, DC, Loc, Using ? Using->getDeclName() : DeclarationName()),
2197       redeclarable_base(C), Underlying(Target),
2198       UsingOrNextShadow(cast<NamedDecl>(Using)) {
2199   if (Target)
2200     IdentifierNamespace = Target->getIdentifierNamespace();
2201   setImplicit();
2202 }
2203
2204 UsingShadowDecl::UsingShadowDecl(Kind K, ASTContext &C, EmptyShell Empty)
2205     : NamedDecl(K, nullptr, SourceLocation(), DeclarationName()),
2206       redeclarable_base(C), Underlying(), UsingOrNextShadow() {}
2207
2208 UsingShadowDecl *
2209 UsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2210   return new (C, ID) UsingShadowDecl(UsingShadow, C, EmptyShell());
2211 }
2212
2213 UsingDecl *UsingShadowDecl::getUsingDecl() const {
2214   const UsingShadowDecl *Shadow = this;
2215   while (const UsingShadowDecl *NextShadow =
2216          dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
2217     Shadow = NextShadow;
2218   return cast<UsingDecl>(Shadow->UsingOrNextShadow);
2219 }
2220
2221 void ConstructorUsingShadowDecl::anchor() { }
2222
2223 ConstructorUsingShadowDecl *
2224 ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC,
2225                                    SourceLocation Loc, UsingDecl *Using,
2226                                    NamedDecl *Target, bool IsVirtual) {
2227   return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target,
2228                                                 IsVirtual);
2229 }
2230
2231 ConstructorUsingShadowDecl *
2232 ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2233   return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell());
2234 }
2235
2236 CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const {
2237   return getUsingDecl()->getQualifier()->getAsRecordDecl();
2238 }
2239
2240 void UsingDecl::anchor() { }
2241
2242 void UsingDecl::addShadowDecl(UsingShadowDecl *S) {
2243   assert(std::find(shadow_begin(), shadow_end(), S) == shadow_end() &&
2244          "declaration already in set");
2245   assert(S->getUsingDecl() == this);
2246
2247   if (FirstUsingShadow.getPointer())
2248     S->UsingOrNextShadow = FirstUsingShadow.getPointer();
2249   FirstUsingShadow.setPointer(S);
2250 }
2251
2252 void UsingDecl::removeShadowDecl(UsingShadowDecl *S) {
2253   assert(std::find(shadow_begin(), shadow_end(), S) != shadow_end() &&
2254          "declaration not in set");
2255   assert(S->getUsingDecl() == this);
2256
2257   // Remove S from the shadow decl chain. This is O(n) but hopefully rare.
2258
2259   if (FirstUsingShadow.getPointer() == S) {
2260     FirstUsingShadow.setPointer(
2261       dyn_cast<UsingShadowDecl>(S->UsingOrNextShadow));
2262     S->UsingOrNextShadow = this;
2263     return;
2264   }
2265
2266   UsingShadowDecl *Prev = FirstUsingShadow.getPointer();
2267   while (Prev->UsingOrNextShadow != S)
2268     Prev = cast<UsingShadowDecl>(Prev->UsingOrNextShadow);
2269   Prev->UsingOrNextShadow = S->UsingOrNextShadow;
2270   S->UsingOrNextShadow = this;
2271 }
2272
2273 UsingDecl *UsingDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation UL,
2274                              NestedNameSpecifierLoc QualifierLoc,
2275                              const DeclarationNameInfo &NameInfo,
2276                              bool HasTypename) {
2277   return new (C, DC) UsingDecl(DC, UL, QualifierLoc, NameInfo, HasTypename);
2278 }
2279
2280 UsingDecl *UsingDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2281   return new (C, ID) UsingDecl(nullptr, SourceLocation(),
2282                                NestedNameSpecifierLoc(), DeclarationNameInfo(),
2283                                false);
2284 }
2285
2286 SourceRange UsingDecl::getSourceRange() const {
2287   SourceLocation Begin = isAccessDeclaration()
2288     ? getQualifierLoc().getBeginLoc() : UsingLocation;
2289   return SourceRange(Begin, getNameInfo().getEndLoc());
2290 }
2291
2292 void UsingPackDecl::anchor() { }
2293
2294 UsingPackDecl *UsingPackDecl::Create(ASTContext &C, DeclContext *DC,
2295                                      NamedDecl *InstantiatedFrom,
2296                                      ArrayRef<NamedDecl *> UsingDecls) {
2297   size_t Extra = additionalSizeToAlloc<NamedDecl *>(UsingDecls.size());
2298   return new (C, DC, Extra) UsingPackDecl(DC, InstantiatedFrom, UsingDecls);
2299 }
2300
2301 UsingPackDecl *UsingPackDecl::CreateDeserialized(ASTContext &C, unsigned ID,
2302                                                  unsigned NumExpansions) {
2303   size_t Extra = additionalSizeToAlloc<NamedDecl *>(NumExpansions);
2304   auto *Result = new (C, ID, Extra) UsingPackDecl(nullptr, nullptr, None);
2305   Result->NumExpansions = NumExpansions;
2306   auto *Trail = Result->getTrailingObjects<NamedDecl *>();
2307   for (unsigned I = 0; I != NumExpansions; ++I)
2308     new (Trail + I) NamedDecl*(nullptr);
2309   return Result;
2310 }
2311
2312 void UnresolvedUsingValueDecl::anchor() { }
2313
2314 UnresolvedUsingValueDecl *
2315 UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC,
2316                                  SourceLocation UsingLoc,
2317                                  NestedNameSpecifierLoc QualifierLoc,
2318                                  const DeclarationNameInfo &NameInfo,
2319                                  SourceLocation EllipsisLoc) {
2320   return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc,
2321                                               QualifierLoc, NameInfo,
2322                                               EllipsisLoc);
2323 }
2324
2325 UnresolvedUsingValueDecl *
2326 UnresolvedUsingValueDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2327   return new (C, ID) UnresolvedUsingValueDecl(nullptr, QualType(),
2328                                               SourceLocation(),
2329                                               NestedNameSpecifierLoc(),
2330                                               DeclarationNameInfo(),
2331                                               SourceLocation());
2332 }
2333
2334 SourceRange UnresolvedUsingValueDecl::getSourceRange() const {
2335   SourceLocation Begin = isAccessDeclaration()
2336     ? getQualifierLoc().getBeginLoc() : UsingLocation;
2337   return SourceRange(Begin, getNameInfo().getEndLoc());
2338 }
2339
2340 void UnresolvedUsingTypenameDecl::anchor() { }
2341
2342 UnresolvedUsingTypenameDecl *
2343 UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC,
2344                                     SourceLocation UsingLoc,
2345                                     SourceLocation TypenameLoc,
2346                                     NestedNameSpecifierLoc QualifierLoc,
2347                                     SourceLocation TargetNameLoc,
2348                                     DeclarationName TargetName,
2349                                     SourceLocation EllipsisLoc) {
2350   return new (C, DC) UnresolvedUsingTypenameDecl(
2351       DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc,
2352       TargetName.getAsIdentifierInfo(), EllipsisLoc);
2353 }
2354
2355 UnresolvedUsingTypenameDecl *
2356 UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2357   return new (C, ID) UnresolvedUsingTypenameDecl(
2358       nullptr, SourceLocation(), SourceLocation(), NestedNameSpecifierLoc(),
2359       SourceLocation(), nullptr, SourceLocation());
2360 }
2361
2362 void StaticAssertDecl::anchor() { }
2363
2364 StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC,
2365                                            SourceLocation StaticAssertLoc,
2366                                            Expr *AssertExpr,
2367                                            StringLiteral *Message,
2368                                            SourceLocation RParenLoc,
2369                                            bool Failed) {
2370   return new (C, DC) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message,
2371                                       RParenLoc, Failed);
2372 }
2373
2374 StaticAssertDecl *StaticAssertDecl::CreateDeserialized(ASTContext &C,
2375                                                        unsigned ID) {
2376   return new (C, ID) StaticAssertDecl(nullptr, SourceLocation(), nullptr,
2377                                       nullptr, SourceLocation(), false);
2378 }
2379
2380 void BindingDecl::anchor() {}
2381
2382 BindingDecl *BindingDecl::Create(ASTContext &C, DeclContext *DC,
2383                                  SourceLocation IdLoc, IdentifierInfo *Id) {
2384   return new (C, DC) BindingDecl(DC, IdLoc, Id);
2385 }
2386
2387 BindingDecl *BindingDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2388   return new (C, ID) BindingDecl(nullptr, SourceLocation(), nullptr);
2389 }
2390
2391 VarDecl *BindingDecl::getHoldingVar() const {
2392   Expr *B = getBinding();
2393   if (!B)
2394     return nullptr;
2395   auto *DRE = dyn_cast<DeclRefExpr>(B->IgnoreImplicit());
2396   if (!DRE)
2397     return nullptr;
2398
2399   auto *VD = dyn_cast<VarDecl>(DRE->getDecl());
2400   assert(VD->isImplicit() && "holding var for binding decl not implicit");
2401   return VD;
2402 }
2403
2404 void DecompositionDecl::anchor() {}
2405
2406 DecompositionDecl *DecompositionDecl::Create(ASTContext &C, DeclContext *DC,
2407                                              SourceLocation StartLoc,
2408                                              SourceLocation LSquareLoc,
2409                                              QualType T, TypeSourceInfo *TInfo,
2410                                              StorageClass SC,
2411                                              ArrayRef<BindingDecl *> Bindings) {
2412   size_t Extra = additionalSizeToAlloc<BindingDecl *>(Bindings.size());
2413   return new (C, DC, Extra)
2414       DecompositionDecl(C, DC, StartLoc, LSquareLoc, T, TInfo, SC, Bindings);
2415 }
2416
2417 DecompositionDecl *DecompositionDecl::CreateDeserialized(ASTContext &C,
2418                                                          unsigned ID,
2419                                                          unsigned NumBindings) {
2420   size_t Extra = additionalSizeToAlloc<BindingDecl *>(NumBindings);
2421   auto *Result = new (C, ID, Extra)
2422       DecompositionDecl(C, nullptr, SourceLocation(), SourceLocation(),
2423                         QualType(), nullptr, StorageClass(), None);
2424   // Set up and clean out the bindings array.
2425   Result->NumBindings = NumBindings;
2426   auto *Trail = Result->getTrailingObjects<BindingDecl *>();
2427   for (unsigned I = 0; I != NumBindings; ++I)
2428     new (Trail + I) BindingDecl*(nullptr);
2429   return Result;
2430 }
2431
2432 void DecompositionDecl::printName(llvm::raw_ostream &os) const {
2433   os << '[';
2434   bool Comma = false;
2435   for (auto *B : bindings()) {
2436     if (Comma)
2437       os << ", ";
2438     B->printName(os);
2439     Comma = true;
2440   }
2441   os << ']';
2442 }
2443
2444 MSPropertyDecl *MSPropertyDecl::Create(ASTContext &C, DeclContext *DC,
2445                                        SourceLocation L, DeclarationName N,
2446                                        QualType T, TypeSourceInfo *TInfo,
2447                                        SourceLocation StartL,
2448                                        IdentifierInfo *Getter,
2449                                        IdentifierInfo *Setter) {
2450   return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter);
2451 }
2452
2453 MSPropertyDecl *MSPropertyDecl::CreateDeserialized(ASTContext &C,
2454                                                    unsigned ID) {
2455   return new (C, ID) MSPropertyDecl(nullptr, SourceLocation(),
2456                                     DeclarationName(), QualType(), nullptr,
2457                                     SourceLocation(), nullptr, nullptr);
2458 }
2459
2460 static const char *getAccessName(AccessSpecifier AS) {
2461   switch (AS) {
2462     case AS_none:
2463       llvm_unreachable("Invalid access specifier!");
2464     case AS_public:
2465       return "public";
2466     case AS_private:
2467       return "private";
2468     case AS_protected:
2469       return "protected";
2470   }
2471   llvm_unreachable("Invalid access specifier!");
2472 }
2473
2474 const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
2475                                            AccessSpecifier AS) {
2476   return DB << getAccessName(AS);
2477 }
2478
2479 const PartialDiagnostic &clang::operator<<(const PartialDiagnostic &DB,
2480                                            AccessSpecifier AS) {
2481   return DB << getAccessName(AS);
2482 }