1 //===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
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 semantic analysis for C++ declarations.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/AST/ASTConsumer.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/ASTLambda.h"
17 #include "clang/AST/ASTMutationListener.h"
18 #include "clang/AST/CXXInheritance.h"
19 #include "clang/AST/CharUnits.h"
20 #include "clang/AST/EvaluatedExprVisitor.h"
21 #include "clang/AST/ExprCXX.h"
22 #include "clang/AST/RecordLayout.h"
23 #include "clang/AST/RecursiveASTVisitor.h"
24 #include "clang/AST/StmtVisitor.h"
25 #include "clang/AST/TypeLoc.h"
26 #include "clang/AST/TypeOrdering.h"
27 #include "clang/Basic/PartialDiagnostic.h"
28 #include "clang/Basic/TargetInfo.h"
29 #include "clang/Lex/LiteralSupport.h"
30 #include "clang/Lex/Preprocessor.h"
31 #include "clang/Sema/CXXFieldCollector.h"
32 #include "clang/Sema/DeclSpec.h"
33 #include "clang/Sema/Initialization.h"
34 #include "clang/Sema/Lookup.h"
35 #include "clang/Sema/ParsedTemplate.h"
36 #include "clang/Sema/Scope.h"
37 #include "clang/Sema/ScopeInfo.h"
38 #include "clang/Sema/SemaInternal.h"
39 #include "clang/Sema/Template.h"
40 #include "llvm/ADT/STLExtras.h"
41 #include "llvm/ADT/SmallString.h"
42 #include "llvm/ADT/StringExtras.h"
43 #include <map>
44 #include <set>
45 
46 using namespace clang;
47 
48 //===----------------------------------------------------------------------===//
49 // CheckDefaultArgumentVisitor
50 //===----------------------------------------------------------------------===//
51 
52 namespace {
53   /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
54   /// the default argument of a parameter to determine whether it
55   /// contains any ill-formed subexpressions. For example, this will
56   /// diagnose the use of local variables or parameters within the
57   /// default argument expression.
58   class CheckDefaultArgumentVisitor
59     : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
60     Expr *DefaultArg;
61     Sema *S;
62 
63   public:
64     CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
65       : DefaultArg(defarg), S(s) {}
66 
67     bool VisitExpr(Expr *Node);
68     bool VisitDeclRefExpr(DeclRefExpr *DRE);
69     bool VisitCXXThisExpr(CXXThisExpr *ThisE);
70     bool VisitLambdaExpr(LambdaExpr *Lambda);
71     bool VisitPseudoObjectExpr(PseudoObjectExpr *POE);
72   };
73 
74   /// VisitExpr - Visit all of the children of this expression.
75   bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
76     bool IsInvalid = false;
77     for (Stmt *SubStmt : Node->children())
78       IsInvalid |= Visit(SubStmt);
79     return IsInvalid;
80   }
81 
82   /// VisitDeclRefExpr - Visit a reference to a declaration, to
83   /// determine whether this declaration can be used in the default
84   /// argument expression.
85   bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
86     NamedDecl *Decl = DRE->getDecl();
87     if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
88       // C++ [dcl.fct.default]p9
89       //   Default arguments are evaluated each time the function is
90       //   called. The order of evaluation of function arguments is
91       //   unspecified. Consequently, parameters of a function shall not
92       //   be used in default argument expressions, even if they are not
93       //   evaluated. Parameters of a function declared before a default
94       //   argument expression are in scope and can hide namespace and
95       //   class member names.
96       return S->Diag(DRE->getLocStart(),
97                      diag::err_param_default_argument_references_param)
98          << Param->getDeclName() << DefaultArg->getSourceRange();
99     } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
100       // C++ [dcl.fct.default]p7
101       //   Local variables shall not be used in default argument
102       //   expressions.
103       if (VDecl->isLocalVarDecl())
104         return S->Diag(DRE->getLocStart(),
105                        diag::err_param_default_argument_references_local)
106           << VDecl->getDeclName() << DefaultArg->getSourceRange();
107     }
108 
109     return false;
110   }
111 
112   /// VisitCXXThisExpr - Visit a C++ "this" expression.
113   bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
114     // C++ [dcl.fct.default]p8:
115     //   The keyword this shall not be used in a default argument of a
116     //   member function.
117     return S->Diag(ThisE->getLocStart(),
118                    diag::err_param_default_argument_references_this)
119                << ThisE->getSourceRange();
120   }
121 
122   bool CheckDefaultArgumentVisitor::VisitPseudoObjectExpr(PseudoObjectExpr *POE) {
123     bool Invalid = false;
124     for (PseudoObjectExpr::semantics_iterator
125            i = POE->semantics_begin(), e = POE->semantics_end(); i != e; ++i) {
126       Expr *E = *i;
127 
128       // Look through bindings.
129       if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
130         E = OVE->getSourceExpr();
131         assert(E && "pseudo-object binding without source expression?");
132       }
133 
134       Invalid |= Visit(E);
135     }
136     return Invalid;
137   }
138 
139   bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
140     // C++11 [expr.lambda.prim]p13:
141     //   A lambda-expression appearing in a default argument shall not
142     //   implicitly or explicitly capture any entity.
143     if (Lambda->capture_begin() == Lambda->capture_end())
144       return false;
145 
146     return S->Diag(Lambda->getLocStart(),
147                    diag::err_lambda_capture_default_arg);
148   }
149 }
150 
151 void
152 Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
153                                                  const CXXMethodDecl *Method) {
154   // If we have an MSAny spec already, don't bother.
155   if (!Method || ComputedEST == EST_MSAny)
156     return;
157 
158   const FunctionProtoType *Proto
159     = Method->getType()->getAs<FunctionProtoType>();
160   Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
161   if (!Proto)
162     return;
163 
164   ExceptionSpecificationType EST = Proto->getExceptionSpecType();
165 
166   // If we have a throw-all spec at this point, ignore the function.
167   if (ComputedEST == EST_None)
168     return;
169 
170   switch(EST) {
171   // If this function can throw any exceptions, make a note of that.
172   case EST_MSAny:
173   case EST_None:
174     ClearExceptions();
175     ComputedEST = EST;
176     return;
177   // FIXME: If the call to this decl is using any of its default arguments, we
178   // need to search them for potentially-throwing calls.
179   // If this function has a basic noexcept, it doesn't affect the outcome.
180   case EST_BasicNoexcept:
181     return;
182   // If we're still at noexcept(true) and there's a nothrow() callee,
183   // change to that specification.
184   case EST_DynamicNone:
185     if (ComputedEST == EST_BasicNoexcept)
186       ComputedEST = EST_DynamicNone;
187     return;
188   // Check out noexcept specs.
189   case EST_ComputedNoexcept:
190   {
191     FunctionProtoType::NoexceptResult NR =
192         Proto->getNoexceptSpec(Self->Context);
193     assert(NR != FunctionProtoType::NR_NoNoexcept &&
194            "Must have noexcept result for EST_ComputedNoexcept.");
195     assert(NR != FunctionProtoType::NR_Dependent &&
196            "Should not generate implicit declarations for dependent cases, "
197            "and don't know how to handle them anyway.");
198     // noexcept(false) -> no spec on the new function
199     if (NR == FunctionProtoType::NR_Throw) {
200       ClearExceptions();
201       ComputedEST = EST_None;
202     }
203     // noexcept(true) won't change anything either.
204     return;
205   }
206   default:
207     break;
208   }
209   assert(EST == EST_Dynamic && "EST case not considered earlier.");
210   assert(ComputedEST != EST_None &&
211          "Shouldn't collect exceptions when throw-all is guaranteed.");
212   ComputedEST = EST_Dynamic;
213   // Record the exceptions in this function's exception specification.
214   for (const auto &E : Proto->exceptions())
215     if (ExceptionsSeen.insert(Self->Context.getCanonicalType(E)).second)
216       Exceptions.push_back(E);
217 }
218 
219 void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
220   if (!E || ComputedEST == EST_MSAny)
221     return;
222 
223   // FIXME:
224   //
225   // C++0x [except.spec]p14:
226   //   [An] implicit exception-specification specifies the type-id T if and
227   // only if T is allowed by the exception-specification of a function directly
228   // invoked by f's implicit definition; f shall allow all exceptions if any
229   // function it directly invokes allows all exceptions, and f shall allow no
230   // exceptions if every function it directly invokes allows no exceptions.
231   //
232   // Note in particular that if an implicit exception-specification is generated
233   // for a function containing a throw-expression, that specification can still
234   // be noexcept(true).
235   //
236   // Note also that 'directly invoked' is not defined in the standard, and there
237   // is no indication that we should only consider potentially-evaluated calls.
238   //
239   // Ultimately we should implement the intent of the standard: the exception
240   // specification should be the set of exceptions which can be thrown by the
241   // implicit definition. For now, we assume that any non-nothrow expression can
242   // throw any exception.
243 
244   if (Self->canThrow(E))
245     ComputedEST = EST_None;
246 }
247 
248 bool
249 Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
250                               SourceLocation EqualLoc) {
251   if (RequireCompleteType(Param->getLocation(), Param->getType(),
252                           diag::err_typecheck_decl_incomplete_type)) {
253     Param->setInvalidDecl();
254     return true;
255   }
256 
257   // C++ [dcl.fct.default]p5
258   //   A default argument expression is implicitly converted (clause
259   //   4) to the parameter type. The default argument expression has
260   //   the same semantic constraints as the initializer expression in
261   //   a declaration of a variable of the parameter type, using the
262   //   copy-initialization semantics (8.5).
263   InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
264                                                                     Param);
265   InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
266                                                            EqualLoc);
267   InitializationSequence InitSeq(*this, Entity, Kind, Arg);
268   ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
269   if (Result.isInvalid())
270     return true;
271   Arg = Result.getAs<Expr>();
272 
273   CheckCompletedExpr(Arg, EqualLoc);
274   Arg = MaybeCreateExprWithCleanups(Arg);
275 
276   // Okay: add the default argument to the parameter
277   Param->setDefaultArg(Arg);
278 
279   // We have already instantiated this parameter; provide each of the
280   // instantiations with the uninstantiated default argument.
281   UnparsedDefaultArgInstantiationsMap::iterator InstPos
282     = UnparsedDefaultArgInstantiations.find(Param);
283   if (InstPos != UnparsedDefaultArgInstantiations.end()) {
284     for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
285       InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
286 
287     // We're done tracking this parameter's instantiations.
288     UnparsedDefaultArgInstantiations.erase(InstPos);
289   }
290 
291   return false;
292 }
293 
294 /// ActOnParamDefaultArgument - Check whether the default argument
295 /// provided for a function parameter is well-formed. If so, attach it
296 /// to the parameter declaration.
297 void
298 Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
299                                 Expr *DefaultArg) {
300   if (!param || !DefaultArg)
301     return;
302 
303   ParmVarDecl *Param = cast<ParmVarDecl>(param);
304   UnparsedDefaultArgLocs.erase(Param);
305 
306   // Default arguments are only permitted in C++
307   if (!getLangOpts().CPlusPlus) {
308     Diag(EqualLoc, diag::err_param_default_argument)
309       << DefaultArg->getSourceRange();
310     Param->setInvalidDecl();
311     return;
312   }
313 
314   // Check for unexpanded parameter packs.
315   if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
316     Param->setInvalidDecl();
317     return;
318   }
319 
320   // C++11 [dcl.fct.default]p3
321   //   A default argument expression [...] shall not be specified for a
322   //   parameter pack.
323   if (Param->isParameterPack()) {
324     Diag(EqualLoc, diag::err_param_default_argument_on_parameter_pack)
325         << DefaultArg->getSourceRange();
326     return;
327   }
328 
329   // Check that the default argument is well-formed
330   CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
331   if (DefaultArgChecker.Visit(DefaultArg)) {
332     Param->setInvalidDecl();
333     return;
334   }
335 
336   SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
337 }
338 
339 /// ActOnParamUnparsedDefaultArgument - We've seen a default
340 /// argument for a function parameter, but we can't parse it yet
341 /// because we're inside a class definition. Note that this default
342 /// argument will be parsed later.
343 void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
344                                              SourceLocation EqualLoc,
345                                              SourceLocation ArgLoc) {
346   if (!param)
347     return;
348 
349   ParmVarDecl *Param = cast<ParmVarDecl>(param);
350   Param->setUnparsedDefaultArg();
351   UnparsedDefaultArgLocs[Param] = ArgLoc;
352 }
353 
354 /// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
355 /// the default argument for the parameter param failed.
356 void Sema::ActOnParamDefaultArgumentError(Decl *param,
357                                           SourceLocation EqualLoc) {
358   if (!param)
359     return;
360 
361   ParmVarDecl *Param = cast<ParmVarDecl>(param);
362   Param->setInvalidDecl();
363   UnparsedDefaultArgLocs.erase(Param);
364   Param->setDefaultArg(new(Context)
365                        OpaqueValueExpr(EqualLoc,
366                                        Param->getType().getNonReferenceType(),
367                                        VK_RValue));
368 }
369 
370 /// CheckExtraCXXDefaultArguments - Check for any extra default
371 /// arguments in the declarator, which is not a function declaration
372 /// or definition and therefore is not permitted to have default
373 /// arguments. This routine should be invoked for every declarator
374 /// that is not a function declaration or definition.
375 void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
376   // C++ [dcl.fct.default]p3
377   //   A default argument expression shall be specified only in the
378   //   parameter-declaration-clause of a function declaration or in a
379   //   template-parameter (14.1). It shall not be specified for a
380   //   parameter pack. If it is specified in a
381   //   parameter-declaration-clause, it shall not occur within a
382   //   declarator or abstract-declarator of a parameter-declaration.
383   bool MightBeFunction = D.isFunctionDeclarationContext();
384   for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
385     DeclaratorChunk &chunk = D.getTypeObject(i);
386     if (chunk.Kind == DeclaratorChunk::Function) {
387       if (MightBeFunction) {
388         // This is a function declaration. It can have default arguments, but
389         // keep looking in case its return type is a function type with default
390         // arguments.
391         MightBeFunction = false;
392         continue;
393       }
394       for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e;
395            ++argIdx) {
396         ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param);
397         if (Param->hasUnparsedDefaultArg()) {
398           std::unique_ptr<CachedTokens> Toks =
399               std::move(chunk.Fun.Params[argIdx].DefaultArgTokens);
400           SourceRange SR;
401           if (Toks->size() > 1)
402             SR = SourceRange((*Toks)[1].getLocation(),
403                              Toks->back().getLocation());
404           else
405             SR = UnparsedDefaultArgLocs[Param];
406           Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
407             << SR;
408         } else if (Param->getDefaultArg()) {
409           Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
410             << Param->getDefaultArg()->getSourceRange();
411           Param->setDefaultArg(nullptr);
412         }
413       }
414     } else if (chunk.Kind != DeclaratorChunk::Paren) {
415       MightBeFunction = false;
416     }
417   }
418 }
419 
420 static bool functionDeclHasDefaultArgument(const FunctionDecl *FD) {
421   for (unsigned NumParams = FD->getNumParams(); NumParams > 0; --NumParams) {
422     const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1);
423     if (!PVD->hasDefaultArg())
424       return false;
425     if (!PVD->hasInheritedDefaultArg())
426       return true;
427   }
428   return false;
429 }
430 
431 /// MergeCXXFunctionDecl - Merge two declarations of the same C++
432 /// function, once we already know that they have the same
433 /// type. Subroutine of MergeFunctionDecl. Returns true if there was an
434 /// error, false otherwise.
435 bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
436                                 Scope *S) {
437   bool Invalid = false;
438 
439   // The declaration context corresponding to the scope is the semantic
440   // parent, unless this is a local function declaration, in which case
441   // it is that surrounding function.
442   DeclContext *ScopeDC = New->isLocalExternDecl()
443                              ? New->getLexicalDeclContext()
444                              : New->getDeclContext();
445 
446   // Find the previous declaration for the purpose of default arguments.
447   FunctionDecl *PrevForDefaultArgs = Old;
448   for (/**/; PrevForDefaultArgs;
449        // Don't bother looking back past the latest decl if this is a local
450        // extern declaration; nothing else could work.
451        PrevForDefaultArgs = New->isLocalExternDecl()
452                                 ? nullptr
453                                 : PrevForDefaultArgs->getPreviousDecl()) {
454     // Ignore hidden declarations.
455     if (!LookupResult::isVisible(*this, PrevForDefaultArgs))
456       continue;
457 
458     if (S && !isDeclInScope(PrevForDefaultArgs, ScopeDC, S) &&
459         !New->isCXXClassMember()) {
460       // Ignore default arguments of old decl if they are not in
461       // the same scope and this is not an out-of-line definition of
462       // a member function.
463       continue;
464     }
465 
466     if (PrevForDefaultArgs->isLocalExternDecl() != New->isLocalExternDecl()) {
467       // If only one of these is a local function declaration, then they are
468       // declared in different scopes, even though isDeclInScope may think
469       // they're in the same scope. (If both are local, the scope check is
470       // sufficient, and if neither is local, then they are in the same scope.)
471       continue;
472     }
473 
474     // We found the right previous declaration.
475     break;
476   }
477 
478   // C++ [dcl.fct.default]p4:
479   //   For non-template functions, default arguments can be added in
480   //   later declarations of a function in the same
481   //   scope. Declarations in different scopes have completely
482   //   distinct sets of default arguments. That is, declarations in
483   //   inner scopes do not acquire default arguments from
484   //   declarations in outer scopes, and vice versa. In a given
485   //   function declaration, all parameters subsequent to a
486   //   parameter with a default argument shall have default
487   //   arguments supplied in this or previous declarations. A
488   //   default argument shall not be redefined by a later
489   //   declaration (not even to the same value).
490   //
491   // C++ [dcl.fct.default]p6:
492   //   Except for member functions of class templates, the default arguments
493   //   in a member function definition that appears outside of the class
494   //   definition are added to the set of default arguments provided by the
495   //   member function declaration in the class definition.
496   for (unsigned p = 0, NumParams = PrevForDefaultArgs
497                                        ? PrevForDefaultArgs->getNumParams()
498                                        : 0;
499        p < NumParams; ++p) {
500     ParmVarDecl *OldParam = PrevForDefaultArgs->getParamDecl(p);
501     ParmVarDecl *NewParam = New->getParamDecl(p);
502 
503     bool OldParamHasDfl = OldParam ? OldParam->hasDefaultArg() : false;
504     bool NewParamHasDfl = NewParam->hasDefaultArg();
505 
506     if (OldParamHasDfl && NewParamHasDfl) {
507       unsigned DiagDefaultParamID =
508         diag::err_param_default_argument_redefinition;
509 
510       // MSVC accepts that default parameters be redefined for member functions
511       // of template class. The new default parameter's value is ignored.
512       Invalid = true;
513       if (getLangOpts().MicrosoftExt) {
514         CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(New);
515         if (MD && MD->getParent()->getDescribedClassTemplate()) {
516           // Merge the old default argument into the new parameter.
517           NewParam->setHasInheritedDefaultArg();
518           if (OldParam->hasUninstantiatedDefaultArg())
519             NewParam->setUninstantiatedDefaultArg(
520                                       OldParam->getUninstantiatedDefaultArg());
521           else
522             NewParam->setDefaultArg(OldParam->getInit());
523           DiagDefaultParamID = diag::ext_param_default_argument_redefinition;
524           Invalid = false;
525         }
526       }
527 
528       // FIXME: If we knew where the '=' was, we could easily provide a fix-it
529       // hint here. Alternatively, we could walk the type-source information
530       // for NewParam to find the last source location in the type... but it
531       // isn't worth the effort right now. This is the kind of test case that
532       // is hard to get right:
533       //   int f(int);
534       //   void g(int (*fp)(int) = f);
535       //   void g(int (*fp)(int) = &f);
536       Diag(NewParam->getLocation(), DiagDefaultParamID)
537         << NewParam->getDefaultArgRange();
538 
539       // Look for the function declaration where the default argument was
540       // actually written, which may be a declaration prior to Old.
541       for (auto Older = PrevForDefaultArgs;
542            OldParam->hasInheritedDefaultArg(); /**/) {
543         Older = Older->getPreviousDecl();
544         OldParam = Older->getParamDecl(p);
545       }
546 
547       Diag(OldParam->getLocation(), diag::note_previous_definition)
548         << OldParam->getDefaultArgRange();
549     } else if (OldParamHasDfl) {
550       // Merge the old default argument into the new parameter unless the new
551       // function is a friend declaration in a template class. In the latter
552       // case the default arguments will be inherited when the friend
553       // declaration will be instantiated.
554       if (New->getFriendObjectKind() == Decl::FOK_None ||
555           !New->getLexicalDeclContext()->isDependentContext()) {
556         // It's important to use getInit() here;  getDefaultArg()
557         // strips off any top-level ExprWithCleanups.
558         NewParam->setHasInheritedDefaultArg();
559         if (OldParam->hasUnparsedDefaultArg())
560           NewParam->setUnparsedDefaultArg();
561         else if (OldParam->hasUninstantiatedDefaultArg())
562           NewParam->setUninstantiatedDefaultArg(
563                                        OldParam->getUninstantiatedDefaultArg());
564         else
565           NewParam->setDefaultArg(OldParam->getInit());
566       }
567     } else if (NewParamHasDfl) {
568       if (New->getDescribedFunctionTemplate()) {
569         // Paragraph 4, quoted above, only applies to non-template functions.
570         Diag(NewParam->getLocation(),
571              diag::err_param_default_argument_template_redecl)
572           << NewParam->getDefaultArgRange();
573         Diag(PrevForDefaultArgs->getLocation(),
574              diag::note_template_prev_declaration)
575             << false;
576       } else if (New->getTemplateSpecializationKind()
577                    != TSK_ImplicitInstantiation &&
578                  New->getTemplateSpecializationKind() != TSK_Undeclared) {
579         // C++ [temp.expr.spec]p21:
580         //   Default function arguments shall not be specified in a declaration
581         //   or a definition for one of the following explicit specializations:
582         //     - the explicit specialization of a function template;
583         //     - the explicit specialization of a member function template;
584         //     - the explicit specialization of a member function of a class
585         //       template where the class template specialization to which the
586         //       member function specialization belongs is implicitly
587         //       instantiated.
588         Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
589           << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
590           << New->getDeclName()
591           << NewParam->getDefaultArgRange();
592       } else if (New->getDeclContext()->isDependentContext()) {
593         // C++ [dcl.fct.default]p6 (DR217):
594         //   Default arguments for a member function of a class template shall
595         //   be specified on the initial declaration of the member function
596         //   within the class template.
597         //
598         // Reading the tea leaves a bit in DR217 and its reference to DR205
599         // leads me to the conclusion that one cannot add default function
600         // arguments for an out-of-line definition of a member function of a
601         // dependent type.
602         int WhichKind = 2;
603         if (CXXRecordDecl *Record
604               = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
605           if (Record->getDescribedClassTemplate())
606             WhichKind = 0;
607           else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
608             WhichKind = 1;
609           else
610             WhichKind = 2;
611         }
612 
613         Diag(NewParam->getLocation(),
614              diag::err_param_default_argument_member_template_redecl)
615           << WhichKind
616           << NewParam->getDefaultArgRange();
617       }
618     }
619   }
620 
621   // DR1344: If a default argument is added outside a class definition and that
622   // default argument makes the function a special member function, the program
623   // is ill-formed. This can only happen for constructors.
624   if (isa<CXXConstructorDecl>(New) &&
625       New->getMinRequiredArguments() < Old->getMinRequiredArguments()) {
626     CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)),
627                      OldSM = getSpecialMember(cast<CXXMethodDecl>(Old));
628     if (NewSM != OldSM) {
629       ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments());
630       assert(NewParam->hasDefaultArg());
631       Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special)
632         << NewParam->getDefaultArgRange() << NewSM;
633       Diag(Old->getLocation(), diag::note_previous_declaration);
634     }
635   }
636 
637   const FunctionDecl *Def;
638   // C++11 [dcl.constexpr]p1: If any declaration of a function or function
639   // template has a constexpr specifier then all its declarations shall
640   // contain the constexpr specifier.
641   if (New->isConstexpr() != Old->isConstexpr()) {
642     Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
643       << New << New->isConstexpr();
644     Diag(Old->getLocation(), diag::note_previous_declaration);
645     Invalid = true;
646   } else if (!Old->getMostRecentDecl()->isInlined() && New->isInlined() &&
647              Old->isDefined(Def) &&
648              // If a friend function is inlined but does not have 'inline'
649              // specifier, it is a definition. Do not report attribute conflict
650              // in this case, redefinition will be diagnosed later.
651              (New->isInlineSpecified() ||
652               New->getFriendObjectKind() == Decl::FOK_None)) {
653     // C++11 [dcl.fcn.spec]p4:
654     //   If the definition of a function appears in a translation unit before its
655     //   first declaration as inline, the program is ill-formed.
656     Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New;
657     Diag(Def->getLocation(), diag::note_previous_definition);
658     Invalid = true;
659   }
660 
661   // FIXME: It's not clear what should happen if multiple declarations of a
662   // deduction guide have different explicitness. For now at least we simply
663   // reject any case where the explicitness changes.
664   auto *NewGuide = dyn_cast<CXXDeductionGuideDecl>(New);
665   if (NewGuide && NewGuide->isExplicitSpecified() !=
666                       cast<CXXDeductionGuideDecl>(Old)->isExplicitSpecified()) {
667     Diag(New->getLocation(), diag::err_deduction_guide_explicit_mismatch)
668       << NewGuide->isExplicitSpecified();
669     Diag(Old->getLocation(), diag::note_previous_declaration);
670   }
671 
672   // C++11 [dcl.fct.default]p4: If a friend declaration specifies a default
673   // argument expression, that declaration shall be a definition and shall be
674   // the only declaration of the function or function template in the
675   // translation unit.
676   if (Old->getFriendObjectKind() == Decl::FOK_Undeclared &&
677       functionDeclHasDefaultArgument(Old)) {
678     Diag(New->getLocation(), diag::err_friend_decl_with_def_arg_redeclared);
679     Diag(Old->getLocation(), diag::note_previous_declaration);
680     Invalid = true;
681   }
682 
683   return Invalid;
684 }
685 
686 NamedDecl *
687 Sema::ActOnDecompositionDeclarator(Scope *S, Declarator &D,
688                                    MultiTemplateParamsArg TemplateParamLists) {
689   assert(D.isDecompositionDeclarator());
690   const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator();
691 
692   // The syntax only allows a decomposition declarator as a simple-declaration
693   // or a for-range-declaration, but we parse it in more cases than that.
694   if (!D.mayHaveDecompositionDeclarator()) {
695     Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context)
696       << Decomp.getSourceRange();
697     return nullptr;
698   }
699 
700   if (!TemplateParamLists.empty()) {
701     // FIXME: There's no rule against this, but there are also no rules that
702     // would actually make it usable, so we reject it for now.
703     Diag(TemplateParamLists.front()->getTemplateLoc(),
704          diag::err_decomp_decl_template);
705     return nullptr;
706   }
707 
708   Diag(Decomp.getLSquareLoc(), getLangOpts().CPlusPlus1z
709                                    ? diag::warn_cxx14_compat_decomp_decl
710                                    : diag::ext_decomp_decl)
711       << Decomp.getSourceRange();
712 
713   // The semantic context is always just the current context.
714   DeclContext *const DC = CurContext;
715 
716   // C++1z [dcl.dcl]/8:
717   //   The decl-specifier-seq shall contain only the type-specifier auto
718   //   and cv-qualifiers.
719   auto &DS = D.getDeclSpec();
720   {
721     SmallVector<StringRef, 8> BadSpecifiers;
722     SmallVector<SourceLocation, 8> BadSpecifierLocs;
723     if (auto SCS = DS.getStorageClassSpec()) {
724       BadSpecifiers.push_back(DeclSpec::getSpecifierName(SCS));
725       BadSpecifierLocs.push_back(DS.getStorageClassSpecLoc());
726     }
727     if (auto TSCS = DS.getThreadStorageClassSpec()) {
728       BadSpecifiers.push_back(DeclSpec::getSpecifierName(TSCS));
729       BadSpecifierLocs.push_back(DS.getThreadStorageClassSpecLoc());
730     }
731     if (DS.isConstexprSpecified()) {
732       BadSpecifiers.push_back("constexpr");
733       BadSpecifierLocs.push_back(DS.getConstexprSpecLoc());
734     }
735     if (DS.isInlineSpecified()) {
736       BadSpecifiers.push_back("inline");
737       BadSpecifierLocs.push_back(DS.getInlineSpecLoc());
738     }
739     if (!BadSpecifiers.empty()) {
740       auto &&Err = Diag(BadSpecifierLocs.front(), diag::err_decomp_decl_spec);
741       Err << (int)BadSpecifiers.size()
742           << llvm::join(BadSpecifiers.begin(), BadSpecifiers.end(), " ");
743       // Don't add FixItHints to remove the specifiers; we do still respect
744       // them when building the underlying variable.
745       for (auto Loc : BadSpecifierLocs)
746         Err << SourceRange(Loc, Loc);
747     }
748     // We can't recover from it being declared as a typedef.
749     if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef)
750       return nullptr;
751   }
752 
753   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
754   QualType R = TInfo->getType();
755 
756   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
757                                       UPPC_DeclarationType))
758     D.setInvalidType();
759 
760   // The syntax only allows a single ref-qualifier prior to the decomposition
761   // declarator. No other declarator chunks are permitted. Also check the type
762   // specifier here.
763   if (DS.getTypeSpecType() != DeclSpec::TST_auto ||
764       D.hasGroupingParens() || D.getNumTypeObjects() > 1 ||
765       (D.getNumTypeObjects() == 1 &&
766        D.getTypeObject(0).Kind != DeclaratorChunk::Reference)) {
767     Diag(Decomp.getLSquareLoc(),
768          (D.hasGroupingParens() ||
769           (D.getNumTypeObjects() &&
770            D.getTypeObject(0).Kind == DeclaratorChunk::Paren))
771              ? diag::err_decomp_decl_parens
772              : diag::err_decomp_decl_type)
773         << R;
774 
775     // In most cases, there's no actual problem with an explicitly-specified
776     // type, but a function type won't work here, and ActOnVariableDeclarator
777     // shouldn't be called for such a type.
778     if (R->isFunctionType())
779       D.setInvalidType();
780   }
781 
782   // Build the BindingDecls.
783   SmallVector<BindingDecl*, 8> Bindings;
784 
785   // Build the BindingDecls.
786   for (auto &B : D.getDecompositionDeclarator().bindings()) {
787     // Check for name conflicts.
788     DeclarationNameInfo NameInfo(B.Name, B.NameLoc);
789     LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
790                           ForRedeclaration);
791     LookupName(Previous, S,
792                /*CreateBuiltins*/DC->getRedeclContext()->isTranslationUnit());
793 
794     // It's not permitted to shadow a template parameter name.
795     if (Previous.isSingleResult() &&
796         Previous.getFoundDecl()->isTemplateParameter()) {
797       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
798                                       Previous.getFoundDecl());
799       Previous.clear();
800     }
801 
802     bool ConsiderLinkage = DC->isFunctionOrMethod() &&
803                            DS.getStorageClassSpec() == DeclSpec::SCS_extern;
804     FilterLookupForScope(Previous, DC, S, ConsiderLinkage,
805                          /*AllowInlineNamespace*/false);
806     if (!Previous.empty()) {
807       auto *Old = Previous.getRepresentativeDecl();
808       Diag(B.NameLoc, diag::err_redefinition) << B.Name;
809       Diag(Old->getLocation(), diag::note_previous_definition);
810     }
811 
812     auto *BD = BindingDecl::Create(Context, DC, B.NameLoc, B.Name);
813     PushOnScopeChains(BD, S, true);
814     Bindings.push_back(BD);
815     ParsingInitForAutoVars.insert(BD);
816   }
817 
818   // There are no prior lookup results for the variable itself, because it
819   // is unnamed.
820   DeclarationNameInfo NameInfo((IdentifierInfo *)nullptr,
821                                Decomp.getLSquareLoc());
822   LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
823 
824   // Build the variable that holds the non-decomposed object.
825   bool AddToScope = true;
826   NamedDecl *New =
827       ActOnVariableDeclarator(S, D, DC, TInfo, Previous,
828                               MultiTemplateParamsArg(), AddToScope, Bindings);
829   CurContext->addHiddenDecl(New);
830 
831   if (isInOpenMPDeclareTargetContext())
832     checkDeclIsAllowedInOpenMPTarget(nullptr, New);
833 
834   return New;
835 }
836 
837 static bool checkSimpleDecomposition(
838     Sema &S, ArrayRef<BindingDecl *> Bindings, ValueDecl *Src,
839     QualType DecompType, const llvm::APSInt &NumElems, QualType ElemType,
840     llvm::function_ref<ExprResult(SourceLocation, Expr *, unsigned)> GetInit) {
841   if ((int64_t)Bindings.size() != NumElems) {
842     S.Diag(Src->getLocation(), diag::err_decomp_decl_wrong_number_bindings)
843         << DecompType << (unsigned)Bindings.size() << NumElems.toString(10)
844         << (NumElems < Bindings.size());
845     return true;
846   }
847 
848   unsigned I = 0;
849   for (auto *B : Bindings) {
850     SourceLocation Loc = B->getLocation();
851     ExprResult E = S.BuildDeclRefExpr(Src, DecompType, VK_LValue, Loc);
852     if (E.isInvalid())
853       return true;
854     E = GetInit(Loc, E.get(), I++);
855     if (E.isInvalid())
856       return true;
857     B->setBinding(ElemType, E.get());
858   }
859 
860   return false;
861 }
862 
863 static bool checkArrayLikeDecomposition(Sema &S,
864                                         ArrayRef<BindingDecl *> Bindings,
865                                         ValueDecl *Src, QualType DecompType,
866                                         const llvm::APSInt &NumElems,
867                                         QualType ElemType) {
868   return checkSimpleDecomposition(
869       S, Bindings, Src, DecompType, NumElems, ElemType,
870       [&](SourceLocation Loc, Expr *Base, unsigned I) -> ExprResult {
871         ExprResult E = S.ActOnIntegerConstant(Loc, I);
872         if (E.isInvalid())
873           return ExprError();
874         return S.CreateBuiltinArraySubscriptExpr(Base, Loc, E.get(), Loc);
875       });
876 }
877 
878 static bool checkArrayDecomposition(Sema &S, ArrayRef<BindingDecl*> Bindings,
879                                     ValueDecl *Src, QualType DecompType,
880                                     const ConstantArrayType *CAT) {
881   return checkArrayLikeDecomposition(S, Bindings, Src, DecompType,
882                                      llvm::APSInt(CAT->getSize()),
883                                      CAT->getElementType());
884 }
885 
886 static bool checkVectorDecomposition(Sema &S, ArrayRef<BindingDecl*> Bindings,
887                                      ValueDecl *Src, QualType DecompType,
888                                      const VectorType *VT) {
889   return checkArrayLikeDecomposition(
890       S, Bindings, Src, DecompType, llvm::APSInt::get(VT->getNumElements()),
891       S.Context.getQualifiedType(VT->getElementType(),
892                                  DecompType.getQualifiers()));
893 }
894 
895 static bool checkComplexDecomposition(Sema &S,
896                                       ArrayRef<BindingDecl *> Bindings,
897                                       ValueDecl *Src, QualType DecompType,
898                                       const ComplexType *CT) {
899   return checkSimpleDecomposition(
900       S, Bindings, Src, DecompType, llvm::APSInt::get(2),
901       S.Context.getQualifiedType(CT->getElementType(),
902                                  DecompType.getQualifiers()),
903       [&](SourceLocation Loc, Expr *Base, unsigned I) -> ExprResult {
904         return S.CreateBuiltinUnaryOp(Loc, I ? UO_Imag : UO_Real, Base);
905       });
906 }
907 
908 static std::string printTemplateArgs(const PrintingPolicy &PrintingPolicy,
909                                      TemplateArgumentListInfo &Args) {
910   SmallString<128> SS;
911   llvm::raw_svector_ostream OS(SS);
912   bool First = true;
913   for (auto &Arg : Args.arguments()) {
914     if (!First)
915       OS << ", ";
916     Arg.getArgument().print(PrintingPolicy, OS);
917     First = false;
918   }
919   return OS.str();
920 }
921 
922 static bool lookupStdTypeTraitMember(Sema &S, LookupResult &TraitMemberLookup,
923                                      SourceLocation Loc, StringRef Trait,
924                                      TemplateArgumentListInfo &Args,
925                                      unsigned DiagID) {
926   auto DiagnoseMissing = [&] {
927     if (DiagID)
928       S.Diag(Loc, DiagID) << printTemplateArgs(S.Context.getPrintingPolicy(),
929                                                Args);
930     return true;
931   };
932 
933   // FIXME: Factor out duplication with lookupPromiseType in SemaCoroutine.
934   NamespaceDecl *Std = S.getStdNamespace();
935   if (!Std)
936     return DiagnoseMissing();
937 
938   // Look up the trait itself, within namespace std. We can diagnose various
939   // problems with this lookup even if we've been asked to not diagnose a
940   // missing specialization, because this can only fail if the user has been
941   // declaring their own names in namespace std or we don't support the
942   // standard library implementation in use.
943   LookupResult Result(S, &S.PP.getIdentifierTable().get(Trait),
944                       Loc, Sema::LookupOrdinaryName);
945   if (!S.LookupQualifiedName(Result, Std))
946     return DiagnoseMissing();
947   if (Result.isAmbiguous())
948     return true;
949 
950   ClassTemplateDecl *TraitTD = Result.getAsSingle<ClassTemplateDecl>();
951   if (!TraitTD) {
952     Result.suppressDiagnostics();
953     NamedDecl *Found = *Result.begin();
954     S.Diag(Loc, diag::err_std_type_trait_not_class_template) << Trait;
955     S.Diag(Found->getLocation(), diag::note_declared_at);
956     return true;
957   }
958 
959   // Build the template-id.
960   QualType TraitTy = S.CheckTemplateIdType(TemplateName(TraitTD), Loc, Args);
961   if (TraitTy.isNull())
962     return true;
963   if (!S.isCompleteType(Loc, TraitTy)) {
964     if (DiagID)
965       S.RequireCompleteType(
966           Loc, TraitTy, DiagID,
967           printTemplateArgs(S.Context.getPrintingPolicy(), Args));
968     return true;
969   }
970 
971   CXXRecordDecl *RD = TraitTy->getAsCXXRecordDecl();
972   assert(RD && "specialization of class template is not a class?");
973 
974   // Look up the member of the trait type.
975   S.LookupQualifiedName(TraitMemberLookup, RD);
976   return TraitMemberLookup.isAmbiguous();
977 }
978 
979 static TemplateArgumentLoc
980 getTrivialIntegralTemplateArgument(Sema &S, SourceLocation Loc, QualType T,
981                                    uint64_t I) {
982   TemplateArgument Arg(S.Context, S.Context.MakeIntValue(I, T), T);
983   return S.getTrivialTemplateArgumentLoc(Arg, T, Loc);
984 }
985 
986 static TemplateArgumentLoc
987 getTrivialTypeTemplateArgument(Sema &S, SourceLocation Loc, QualType T) {
988   return S.getTrivialTemplateArgumentLoc(TemplateArgument(T), QualType(), Loc);
989 }
990 
991 namespace { enum class IsTupleLike { TupleLike, NotTupleLike, Error }; }
992 
993 static IsTupleLike isTupleLike(Sema &S, SourceLocation Loc, QualType T,
994                                llvm::APSInt &Size) {
995   EnterExpressionEvaluationContext ContextRAII(
996       S, Sema::ExpressionEvaluationContext::ConstantEvaluated);
997 
998   DeclarationName Value = S.PP.getIdentifierInfo("value");
999   LookupResult R(S, Value, Loc, Sema::LookupOrdinaryName);
1000 
1001   // Form template argument list for tuple_size<T>.
1002   TemplateArgumentListInfo Args(Loc, Loc);
1003   Args.addArgument(getTrivialTypeTemplateArgument(S, Loc, T));
1004 
1005   // If there's no tuple_size specialization, it's not tuple-like.
1006   if (lookupStdTypeTraitMember(S, R, Loc, "tuple_size", Args, /*DiagID*/0))
1007     return IsTupleLike::NotTupleLike;
1008 
1009   // If we get this far, we've committed to the tuple interpretation, but
1010   // we can still fail if there actually isn't a usable ::value.
1011 
1012   struct ICEDiagnoser : Sema::VerifyICEDiagnoser {
1013     LookupResult &R;
1014     TemplateArgumentListInfo &Args;
1015     ICEDiagnoser(LookupResult &R, TemplateArgumentListInfo &Args)
1016         : R(R), Args(Args) {}
1017     void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) {
1018       S.Diag(Loc, diag::err_decomp_decl_std_tuple_size_not_constant)
1019           << printTemplateArgs(S.Context.getPrintingPolicy(), Args);
1020     }
1021   } Diagnoser(R, Args);
1022 
1023   if (R.empty()) {
1024     Diagnoser.diagnoseNotICE(S, Loc, SourceRange());
1025     return IsTupleLike::Error;
1026   }
1027 
1028   ExprResult E =
1029       S.BuildDeclarationNameExpr(CXXScopeSpec(), R, /*NeedsADL*/false);
1030   if (E.isInvalid())
1031     return IsTupleLike::Error;
1032 
1033   E = S.VerifyIntegerConstantExpression(E.get(), &Size, Diagnoser, false);
1034   if (E.isInvalid())
1035     return IsTupleLike::Error;
1036 
1037   return IsTupleLike::TupleLike;
1038 }
1039 
1040 /// \return std::tuple_element<I, T>::type.
1041 static QualType getTupleLikeElementType(Sema &S, SourceLocation Loc,
1042                                         unsigned I, QualType T) {
1043   // Form template argument list for tuple_element<I, T>.
1044   TemplateArgumentListInfo Args(Loc, Loc);
1045   Args.addArgument(
1046       getTrivialIntegralTemplateArgument(S, Loc, S.Context.getSizeType(), I));
1047   Args.addArgument(getTrivialTypeTemplateArgument(S, Loc, T));
1048 
1049   DeclarationName TypeDN = S.PP.getIdentifierInfo("type");
1050   LookupResult R(S, TypeDN, Loc, Sema::LookupOrdinaryName);
1051   if (lookupStdTypeTraitMember(
1052           S, R, Loc, "tuple_element", Args,
1053           diag::err_decomp_decl_std_tuple_element_not_specialized))
1054     return QualType();
1055 
1056   auto *TD = R.getAsSingle<TypeDecl>();
1057   if (!TD) {
1058     R.suppressDiagnostics();
1059     S.Diag(Loc, diag::err_decomp_decl_std_tuple_element_not_specialized)
1060       << printTemplateArgs(S.Context.getPrintingPolicy(), Args);
1061     if (!R.empty())
1062       S.Diag(R.getRepresentativeDecl()->getLocation(), diag::note_declared_at);
1063     return QualType();
1064   }
1065 
1066   return S.Context.getTypeDeclType(TD);
1067 }
1068 
1069 namespace {
1070 struct BindingDiagnosticTrap {
1071   Sema &S;
1072   DiagnosticErrorTrap Trap;
1073   BindingDecl *BD;
1074 
1075   BindingDiagnosticTrap(Sema &S, BindingDecl *BD)
1076       : S(S), Trap(S.Diags), BD(BD) {}
1077   ~BindingDiagnosticTrap() {
1078     if (Trap.hasErrorOccurred())
1079       S.Diag(BD->getLocation(), diag::note_in_binding_decl_init) << BD;
1080   }
1081 };
1082 }
1083 
1084 static bool checkTupleLikeDecomposition(Sema &S,
1085                                         ArrayRef<BindingDecl *> Bindings,
1086                                         VarDecl *Src, QualType DecompType,
1087                                         const llvm::APSInt &TupleSize) {
1088   if ((int64_t)Bindings.size() != TupleSize) {
1089     S.Diag(Src->getLocation(), diag::err_decomp_decl_wrong_number_bindings)
1090         << DecompType << (unsigned)Bindings.size() << TupleSize.toString(10)
1091         << (TupleSize < Bindings.size());
1092     return true;
1093   }
1094 
1095   if (Bindings.empty())
1096     return false;
1097 
1098   DeclarationName GetDN = S.PP.getIdentifierInfo("get");
1099 
1100   // [dcl.decomp]p3:
1101   //   The unqualified-id get is looked up in the scope of E by class member
1102   //   access lookup
1103   LookupResult MemberGet(S, GetDN, Src->getLocation(), Sema::LookupMemberName);
1104   bool UseMemberGet = false;
1105   if (S.isCompleteType(Src->getLocation(), DecompType)) {
1106     if (auto *RD = DecompType->getAsCXXRecordDecl())
1107       S.LookupQualifiedName(MemberGet, RD);
1108     if (MemberGet.isAmbiguous())
1109       return true;
1110     UseMemberGet = !MemberGet.empty();
1111     S.FilterAcceptableTemplateNames(MemberGet);
1112   }
1113 
1114   unsigned I = 0;
1115   for (auto *B : Bindings) {
1116     BindingDiagnosticTrap Trap(S, B);
1117     SourceLocation Loc = B->getLocation();
1118 
1119     ExprResult E = S.BuildDeclRefExpr(Src, DecompType, VK_LValue, Loc);
1120     if (E.isInvalid())
1121       return true;
1122 
1123     //   e is an lvalue if the type of the entity is an lvalue reference and
1124     //   an xvalue otherwise
1125     if (!Src->getType()->isLValueReferenceType())
1126       E = ImplicitCastExpr::Create(S.Context, E.get()->getType(), CK_NoOp,
1127                                    E.get(), nullptr, VK_XValue);
1128 
1129     TemplateArgumentListInfo Args(Loc, Loc);
1130     Args.addArgument(
1131         getTrivialIntegralTemplateArgument(S, Loc, S.Context.getSizeType(), I));
1132 
1133     if (UseMemberGet) {
1134       //   if [lookup of member get] finds at least one declaration, the
1135       //   initializer is e.get<i-1>().
1136       E = S.BuildMemberReferenceExpr(E.get(), DecompType, Loc, false,
1137                                      CXXScopeSpec(), SourceLocation(), nullptr,
1138                                      MemberGet, &Args, nullptr);
1139       if (E.isInvalid())
1140         return true;
1141 
1142       E = S.ActOnCallExpr(nullptr, E.get(), Loc, None, Loc);
1143     } else {
1144       //   Otherwise, the initializer is get<i-1>(e), where get is looked up
1145       //   in the associated namespaces.
1146       Expr *Get = UnresolvedLookupExpr::Create(
1147           S.Context, nullptr, NestedNameSpecifierLoc(), SourceLocation(),
1148           DeclarationNameInfo(GetDN, Loc), /*RequiresADL*/true, &Args,
1149           UnresolvedSetIterator(), UnresolvedSetIterator());
1150 
1151       Expr *Arg = E.get();
1152       E = S.ActOnCallExpr(nullptr, Get, Loc, Arg, Loc);
1153     }
1154     if (E.isInvalid())
1155       return true;
1156     Expr *Init = E.get();
1157 
1158     //   Given the type T designated by std::tuple_element<i - 1, E>::type,
1159     QualType T = getTupleLikeElementType(S, Loc, I, DecompType);
1160     if (T.isNull())
1161       return true;
1162 
1163     //   each vi is a variable of type "reference to T" initialized with the
1164     //   initializer, where the reference is an lvalue reference if the
1165     //   initializer is an lvalue and an rvalue reference otherwise
1166     QualType RefType =
1167         S.BuildReferenceType(T, E.get()->isLValue(), Loc, B->getDeclName());
1168     if (RefType.isNull())
1169       return true;
1170     auto *RefVD = VarDecl::Create(
1171         S.Context, Src->getDeclContext(), Loc, Loc,
1172         B->getDeclName().getAsIdentifierInfo(), RefType,
1173         S.Context.getTrivialTypeSourceInfo(T, Loc), Src->getStorageClass());
1174     RefVD->setLexicalDeclContext(Src->getLexicalDeclContext());
1175     RefVD->setTSCSpec(Src->getTSCSpec());
1176     RefVD->setImplicit();
1177     if (Src->isInlineSpecified())
1178       RefVD->setInlineSpecified();
1179     RefVD->getLexicalDeclContext()->addHiddenDecl(RefVD);
1180 
1181     InitializedEntity Entity = InitializedEntity::InitializeBinding(RefVD);
1182     InitializationKind Kind = InitializationKind::CreateCopy(Loc, Loc);
1183     InitializationSequence Seq(S, Entity, Kind, Init);
1184     E = Seq.Perform(S, Entity, Kind, Init);
1185     if (E.isInvalid())
1186       return true;
1187     E = S.ActOnFinishFullExpr(E.get(), Loc);
1188     if (E.isInvalid())
1189       return true;
1190     RefVD->setInit(E.get());
1191     RefVD->checkInitIsICE();
1192 
1193     E = S.BuildDeclarationNameExpr(CXXScopeSpec(),
1194                                    DeclarationNameInfo(B->getDeclName(), Loc),
1195                                    RefVD);
1196     if (E.isInvalid())
1197       return true;
1198 
1199     B->setBinding(T, E.get());
1200     I++;
1201   }
1202 
1203   return false;
1204 }
1205 
1206 /// Find the base class to decompose in a built-in decomposition of a class type.
1207 /// This base class search is, unfortunately, not quite like any other that we
1208 /// perform anywhere else in C++.
1209 static const CXXRecordDecl *findDecomposableBaseClass(Sema &S,
1210                                                       SourceLocation Loc,
1211                                                       const CXXRecordDecl *RD,
1212                                                       CXXCastPath &BasePath) {
1213   auto BaseHasFields = [](const CXXBaseSpecifier *Specifier,
1214                           CXXBasePath &Path) {
1215     return Specifier->getType()->getAsCXXRecordDecl()->hasDirectFields();
1216   };
1217 
1218   const CXXRecordDecl *ClassWithFields = nullptr;
1219   if (RD->hasDirectFields())
1220     // [dcl.decomp]p4:
1221     //   Otherwise, all of E's non-static data members shall be public direct
1222     //   members of E ...
1223     ClassWithFields = RD;
1224   else {
1225     //   ... or of ...
1226     CXXBasePaths Paths;
1227     Paths.setOrigin(const_cast<CXXRecordDecl*>(RD));
1228     if (!RD->lookupInBases(BaseHasFields, Paths)) {
1229       // If no classes have fields, just decompose RD itself. (This will work
1230       // if and only if zero bindings were provided.)
1231       return RD;
1232     }
1233 
1234     CXXBasePath *BestPath = nullptr;
1235     for (auto &P : Paths) {
1236       if (!BestPath)
1237         BestPath = &P;
1238       else if (!S.Context.hasSameType(P.back().Base->getType(),
1239                                       BestPath->back().Base->getType())) {
1240         //   ... the same ...
1241         S.Diag(Loc, diag::err_decomp_decl_multiple_bases_with_members)
1242           << false << RD << BestPath->back().Base->getType()
1243           << P.back().Base->getType();
1244         return nullptr;
1245       } else if (P.Access < BestPath->Access) {
1246         BestPath = &P;
1247       }
1248     }
1249 
1250     //   ... unambiguous ...
1251     QualType BaseType = BestPath->back().Base->getType();
1252     if (Paths.isAmbiguous(S.Context.getCanonicalType(BaseType))) {
1253       S.Diag(Loc, diag::err_decomp_decl_ambiguous_base)
1254         << RD << BaseType << S.getAmbiguousPathsDisplayString(Paths);
1255       return nullptr;
1256     }
1257 
1258     //   ... public base class of E.
1259     if (BestPath->Access != AS_public) {
1260       S.Diag(Loc, diag::err_decomp_decl_non_public_base)
1261         << RD << BaseType;
1262       for (auto &BS : *BestPath) {
1263         if (BS.Base->getAccessSpecifier() != AS_public) {
1264           S.Diag(BS.Base->getLocStart(), diag::note_access_constrained_by_path)
1265             << (BS.Base->getAccessSpecifier() == AS_protected)
1266             << (BS.Base->getAccessSpecifierAsWritten() == AS_none);
1267           break;
1268         }
1269       }
1270       return nullptr;
1271     }
1272 
1273     ClassWithFields = BaseType->getAsCXXRecordDecl();
1274     S.BuildBasePathArray(Paths, BasePath);
1275   }
1276 
1277   // The above search did not check whether the selected class itself has base
1278   // classes with fields, so check that now.
1279   CXXBasePaths Paths;
1280   if (ClassWithFields->lookupInBases(BaseHasFields, Paths)) {
1281     S.Diag(Loc, diag::err_decomp_decl_multiple_bases_with_members)
1282       << (ClassWithFields == RD) << RD << ClassWithFields
1283       << Paths.front().back().Base->getType();
1284     return nullptr;
1285   }
1286 
1287   return ClassWithFields;
1288 }
1289 
1290 static bool checkMemberDecomposition(Sema &S, ArrayRef<BindingDecl*> Bindings,
1291                                      ValueDecl *Src, QualType DecompType,
1292                                      const CXXRecordDecl *RD) {
1293   CXXCastPath BasePath;
1294   RD = findDecomposableBaseClass(S, Src->getLocation(), RD, BasePath);
1295   if (!RD)
1296     return true;
1297   QualType BaseType = S.Context.getQualifiedType(S.Context.getRecordType(RD),
1298                                                  DecompType.getQualifiers());
1299 
1300   auto DiagnoseBadNumberOfBindings = [&]() -> bool {
1301     unsigned NumFields =
1302         std::count_if(RD->field_begin(), RD->field_end(),
1303                       [](FieldDecl *FD) { return !FD->isUnnamedBitfield(); });
1304     assert(Bindings.size() != NumFields);
1305     S.Diag(Src->getLocation(), diag::err_decomp_decl_wrong_number_bindings)
1306         << DecompType << (unsigned)Bindings.size() << NumFields
1307         << (NumFields < Bindings.size());
1308     return true;
1309   };
1310 
1311   //   all of E's non-static data members shall be public [...] members,
1312   //   E shall not have an anonymous union member, ...
1313   unsigned I = 0;
1314   for (auto *FD : RD->fields()) {
1315     if (FD->isUnnamedBitfield())
1316       continue;
1317 
1318     if (FD->isAnonymousStructOrUnion()) {
1319       S.Diag(Src->getLocation(), diag::err_decomp_decl_anon_union_member)
1320         << DecompType << FD->getType()->isUnionType();
1321       S.Diag(FD->getLocation(), diag::note_declared_at);
1322       return true;
1323     }
1324 
1325     // We have a real field to bind.
1326     if (I >= Bindings.size())
1327       return DiagnoseBadNumberOfBindings();
1328     auto *B = Bindings[I++];
1329 
1330     SourceLocation Loc = B->getLocation();
1331     if (FD->getAccess() != AS_public) {
1332       S.Diag(Loc, diag::err_decomp_decl_non_public_member) << FD << DecompType;
1333 
1334       // Determine whether the access specifier was explicit.
1335       bool Implicit = true;
1336       for (const auto *D : RD->decls()) {
1337         if (declaresSameEntity(D, FD))
1338           break;
1339         if (isa<AccessSpecDecl>(D)) {
1340           Implicit = false;
1341           break;
1342         }
1343       }
1344 
1345       S.Diag(FD->getLocation(), diag::note_access_natural)
1346         << (FD->getAccess() == AS_protected) << Implicit;
1347       return true;
1348     }
1349 
1350     // Initialize the binding to Src.FD.
1351     ExprResult E = S.BuildDeclRefExpr(Src, DecompType, VK_LValue, Loc);
1352     if (E.isInvalid())
1353       return true;
1354     E = S.ImpCastExprToType(E.get(), BaseType, CK_UncheckedDerivedToBase,
1355                             VK_LValue, &BasePath);
1356     if (E.isInvalid())
1357       return true;
1358     E = S.BuildFieldReferenceExpr(E.get(), /*IsArrow*/ false, Loc,
1359                                   CXXScopeSpec(), FD,
1360                                   DeclAccessPair::make(FD, FD->getAccess()),
1361                                   DeclarationNameInfo(FD->getDeclName(), Loc));
1362     if (E.isInvalid())
1363       return true;
1364 
1365     // If the type of the member is T, the referenced type is cv T, where cv is
1366     // the cv-qualification of the decomposition expression.
1367     //
1368     // FIXME: We resolve a defect here: if the field is mutable, we do not add
1369     // 'const' to the type of the field.
1370     Qualifiers Q = DecompType.getQualifiers();
1371     if (FD->isMutable())
1372       Q.removeConst();
1373     B->setBinding(S.BuildQualifiedType(FD->getType(), Loc, Q), E.get());
1374   }
1375 
1376   if (I != Bindings.size())
1377     return DiagnoseBadNumberOfBindings();
1378 
1379   return false;
1380 }
1381 
1382 void Sema::CheckCompleteDecompositionDeclaration(DecompositionDecl *DD) {
1383   QualType DecompType = DD->getType();
1384 
1385   // If the type of the decomposition is dependent, then so is the type of
1386   // each binding.
1387   if (DecompType->isDependentType()) {
1388     for (auto *B : DD->bindings())
1389       B->setType(Context.DependentTy);
1390     return;
1391   }
1392 
1393   DecompType = DecompType.getNonReferenceType();
1394   ArrayRef<BindingDecl*> Bindings = DD->bindings();
1395 
1396   // C++1z [dcl.decomp]/2:
1397   //   If E is an array type [...]
1398   // As an extension, we also support decomposition of built-in complex and
1399   // vector types.
1400   if (auto *CAT = Context.getAsConstantArrayType(DecompType)) {
1401     if (checkArrayDecomposition(*this, Bindings, DD, DecompType, CAT))
1402       DD->setInvalidDecl();
1403     return;
1404   }
1405   if (auto *VT = DecompType->getAs<VectorType>()) {
1406     if (checkVectorDecomposition(*this, Bindings, DD, DecompType, VT))
1407       DD->setInvalidDecl();
1408     return;
1409   }
1410   if (auto *CT = DecompType->getAs<ComplexType>()) {
1411     if (checkComplexDecomposition(*this, Bindings, DD, DecompType, CT))
1412       DD->setInvalidDecl();
1413     return;
1414   }
1415 
1416   // C++1z [dcl.decomp]/3:
1417   //   if the expression std::tuple_size<E>::value is a well-formed integral
1418   //   constant expression, [...]
1419   llvm::APSInt TupleSize(32);
1420   switch (isTupleLike(*this, DD->getLocation(), DecompType, TupleSize)) {
1421   case IsTupleLike::Error:
1422     DD->setInvalidDecl();
1423     return;
1424 
1425   case IsTupleLike::TupleLike:
1426     if (checkTupleLikeDecomposition(*this, Bindings, DD, DecompType, TupleSize))
1427       DD->setInvalidDecl();
1428     return;
1429 
1430   case IsTupleLike::NotTupleLike:
1431     break;
1432   }
1433 
1434   // C++1z [dcl.dcl]/8:
1435   //   [E shall be of array or non-union class type]
1436   CXXRecordDecl *RD = DecompType->getAsCXXRecordDecl();
1437   if (!RD || RD->isUnion()) {
1438     Diag(DD->getLocation(), diag::err_decomp_decl_unbindable_type)
1439         << DD << !RD << DecompType;
1440     DD->setInvalidDecl();
1441     return;
1442   }
1443 
1444   // C++1z [dcl.decomp]/4:
1445   //   all of E's non-static data members shall be [...] direct members of
1446   //   E or of the same unambiguous public base class of E, ...
1447   if (checkMemberDecomposition(*this, Bindings, DD, DecompType, RD))
1448     DD->setInvalidDecl();
1449 }
1450 
1451 /// \brief Merge the exception specifications of two variable declarations.
1452 ///
1453 /// This is called when there's a redeclaration of a VarDecl. The function
1454 /// checks if the redeclaration might have an exception specification and
1455 /// validates compatibility and merges the specs if necessary.
1456 void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
1457   // Shortcut if exceptions are disabled.
1458   if (!getLangOpts().CXXExceptions)
1459     return;
1460 
1461   assert(Context.hasSameType(New->getType(), Old->getType()) &&
1462          "Should only be called if types are otherwise the same.");
1463 
1464   QualType NewType = New->getType();
1465   QualType OldType = Old->getType();
1466 
1467   // We're only interested in pointers and references to functions, as well
1468   // as pointers to member functions.
1469   if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
1470     NewType = R->getPointeeType();
1471     OldType = OldType->getAs<ReferenceType>()->getPointeeType();
1472   } else if (const PointerType *P = NewType->getAs<PointerType>()) {
1473     NewType = P->getPointeeType();
1474     OldType = OldType->getAs<PointerType>()->getPointeeType();
1475   } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
1476     NewType = M->getPointeeType();
1477     OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
1478   }
1479 
1480   if (!NewType->isFunctionProtoType())
1481     return;
1482 
1483   // There's lots of special cases for functions. For function pointers, system
1484   // libraries are hopefully not as broken so that we don't need these
1485   // workarounds.
1486   if (CheckEquivalentExceptionSpec(
1487         OldType->getAs<FunctionProtoType>(), Old->getLocation(),
1488         NewType->getAs<FunctionProtoType>(), New->getLocation())) {
1489     New->setInvalidDecl();
1490   }
1491 }
1492 
1493 /// CheckCXXDefaultArguments - Verify that the default arguments for a
1494 /// function declaration are well-formed according to C++
1495 /// [dcl.fct.default].
1496 void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
1497   unsigned NumParams = FD->getNumParams();
1498   unsigned p;
1499 
1500   // Find first parameter with a default argument
1501   for (p = 0; p < NumParams; ++p) {
1502     ParmVarDecl *Param = FD->getParamDecl(p);
1503     if (Param->hasDefaultArg())
1504       break;
1505   }
1506 
1507   // C++11 [dcl.fct.default]p4:
1508   //   In a given function declaration, each parameter subsequent to a parameter
1509   //   with a default argument shall have a default argument supplied in this or
1510   //   a previous declaration or shall be a function parameter pack. A default
1511   //   argument shall not be redefined by a later declaration (not even to the
1512   //   same value).
1513   unsigned LastMissingDefaultArg = 0;
1514   for (; p < NumParams; ++p) {
1515     ParmVarDecl *Param = FD->getParamDecl(p);
1516     if (!Param->hasDefaultArg() && !Param->isParameterPack()) {
1517       if (Param->isInvalidDecl())
1518         /* We already complained about this parameter. */;
1519       else if (Param->getIdentifier())
1520         Diag(Param->getLocation(),
1521              diag::err_param_default_argument_missing_name)
1522           << Param->getIdentifier();
1523       else
1524         Diag(Param->getLocation(),
1525              diag::err_param_default_argument_missing);
1526 
1527       LastMissingDefaultArg = p;
1528     }
1529   }
1530 
1531   if (LastMissingDefaultArg > 0) {
1532     // Some default arguments were missing. Clear out all of the
1533     // default arguments up to (and including) the last missing
1534     // default argument, so that we leave the function parameters
1535     // in a semantically valid state.
1536     for (p = 0; p <= LastMissingDefaultArg; ++p) {
1537       ParmVarDecl *Param = FD->getParamDecl(p);
1538       if (Param->hasDefaultArg()) {
1539         Param->setDefaultArg(nullptr);
1540       }
1541     }
1542   }
1543 }
1544 
1545 // CheckConstexprParameterTypes - Check whether a function's parameter types
1546 // are all literal types. If so, return true. If not, produce a suitable
1547 // diagnostic and return false.
1548 static bool CheckConstexprParameterTypes(Sema &SemaRef,
1549                                          const FunctionDecl *FD) {
1550   unsigned ArgIndex = 0;
1551   const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
1552   for (FunctionProtoType::param_type_iterator i = FT->param_type_begin(),
1553                                               e = FT->param_type_end();
1554        i != e; ++i, ++ArgIndex) {
1555     const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
1556     SourceLocation ParamLoc = PD->getLocation();
1557     if (!(*i)->isDependentType() &&
1558         SemaRef.RequireLiteralType(ParamLoc, *i,
1559                                    diag::err_constexpr_non_literal_param,
1560                                    ArgIndex+1, PD->getSourceRange(),
1561                                    isa<CXXConstructorDecl>(FD)))
1562       return false;
1563   }
1564   return true;
1565 }
1566 
1567 /// \brief Get diagnostic %select index for tag kind for
1568 /// record diagnostic message.
1569 /// WARNING: Indexes apply to particular diagnostics only!
1570 ///
1571 /// \returns diagnostic %select index.
1572 static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
1573   switch (Tag) {
1574   case TTK_Struct: return 0;
1575   case TTK_Interface: return 1;
1576   case TTK_Class:  return 2;
1577   default: llvm_unreachable("Invalid tag kind for record diagnostic!");
1578   }
1579 }
1580 
1581 // CheckConstexprFunctionDecl - Check whether a function declaration satisfies
1582 // the requirements of a constexpr function definition or a constexpr
1583 // constructor definition. If so, return true. If not, produce appropriate
1584 // diagnostics and return false.
1585 //
1586 // This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
1587 bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
1588   const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
1589   if (MD && MD->isInstance()) {
1590     // C++11 [dcl.constexpr]p4:
1591     //  The definition of a constexpr constructor shall satisfy the following
1592     //  constraints:
1593     //  - the class shall not have any virtual base classes;
1594     const CXXRecordDecl *RD = MD->getParent();
1595     if (RD->getNumVBases()) {
1596       Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
1597         << isa<CXXConstructorDecl>(NewFD)
1598         << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
1599       for (const auto &I : RD->vbases())
1600         Diag(I.getLocStart(),
1601              diag::note_constexpr_virtual_base_here) << I.getSourceRange();
1602       return false;
1603     }
1604   }
1605 
1606   if (!isa<CXXConstructorDecl>(NewFD)) {
1607     // C++11 [dcl.constexpr]p3:
1608     //  The definition of a constexpr function shall satisfy the following
1609     //  constraints:
1610     // - it shall not be virtual;
1611     const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
1612     if (Method && Method->isVirtual()) {
1613       Method = Method->getCanonicalDecl();
1614       Diag(Method->getLocation(), diag::err_constexpr_virtual);
1615 
1616       // If it's not obvious why this function is virtual, find an overridden
1617       // function which uses the 'virtual' keyword.
1618       const CXXMethodDecl *WrittenVirtual = Method;
1619       while (!WrittenVirtual->isVirtualAsWritten())
1620         WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
1621       if (WrittenVirtual != Method)
1622         Diag(WrittenVirtual->getLocation(),
1623              diag::note_overridden_virtual_function);
1624       return false;
1625     }
1626 
1627     // - its return type shall be a literal type;
1628     QualType RT = NewFD->getReturnType();
1629     if (!RT->isDependentType() &&
1630         RequireLiteralType(NewFD->getLocation(), RT,
1631                            diag::err_constexpr_non_literal_return))
1632       return false;
1633   }
1634 
1635   // - each of its parameter types shall be a literal type;
1636   if (!CheckConstexprParameterTypes(*this, NewFD))
1637     return false;
1638 
1639   return true;
1640 }
1641 
1642 /// Check the given declaration statement is legal within a constexpr function
1643 /// body. C++11 [dcl.constexpr]p3,p4, and C++1y [dcl.constexpr]p3.
1644 ///
1645 /// \return true if the body is OK (maybe only as an extension), false if we
1646 ///         have diagnosed a problem.
1647 static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
1648                                    DeclStmt *DS, SourceLocation &Cxx1yLoc) {
1649   // C++11 [dcl.constexpr]p3 and p4:
1650   //  The definition of a constexpr function(p3) or constructor(p4) [...] shall
1651   //  contain only
1652   for (const auto *DclIt : DS->decls()) {
1653     switch (DclIt->getKind()) {
1654     case Decl::StaticAssert:
1655     case Decl::Using:
1656     case Decl::UsingShadow:
1657     case Decl::UsingDirective:
1658     case Decl::UnresolvedUsingTypename:
1659     case Decl::UnresolvedUsingValue:
1660       //   - static_assert-declarations
1661       //   - using-declarations,
1662       //   - using-directives,
1663       continue;
1664 
1665     case Decl::Typedef:
1666     case Decl::TypeAlias: {
1667       //   - typedef declarations and alias-declarations that do not define
1668       //     classes or enumerations,
1669       const auto *TN = cast<TypedefNameDecl>(DclIt);
1670       if (TN->getUnderlyingType()->isVariablyModifiedType()) {
1671         // Don't allow variably-modified types in constexpr functions.
1672         TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
1673         SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
1674           << TL.getSourceRange() << TL.getType()
1675           << isa<CXXConstructorDecl>(Dcl);
1676         return false;
1677       }
1678       continue;
1679     }
1680 
1681     case Decl::Enum:
1682     case Decl::CXXRecord:
1683       // C++1y allows types to be defined, not just declared.
1684       if (cast<TagDecl>(DclIt)->isThisDeclarationADefinition())
1685         SemaRef.Diag(DS->getLocStart(),
1686                      SemaRef.getLangOpts().CPlusPlus14
1687                        ? diag::warn_cxx11_compat_constexpr_type_definition
1688                        : diag::ext_constexpr_type_definition)
1689           << isa<CXXConstructorDecl>(Dcl);
1690       continue;
1691 
1692     case Decl::EnumConstant:
1693     case Decl::IndirectField:
1694     case Decl::ParmVar:
1695       // These can only appear with other declarations which are banned in
1696       // C++11 and permitted in C++1y, so ignore them.
1697       continue;
1698 
1699     case Decl::Var:
1700     case Decl::Decomposition: {
1701       // C++1y [dcl.constexpr]p3 allows anything except:
1702       //   a definition of a variable of non-literal type or of static or
1703       //   thread storage duration or for which no initialization is performed.
1704       const auto *VD = cast<VarDecl>(DclIt);
1705       if (VD->isThisDeclarationADefinition()) {
1706         if (VD->isStaticLocal()) {
1707           SemaRef.Diag(VD->getLocation(),
1708                        diag::err_constexpr_local_var_static)
1709             << isa<CXXConstructorDecl>(Dcl)
1710             << (VD->getTLSKind() == VarDecl::TLS_Dynamic);
1711           return false;
1712         }
1713         if (!VD->getType()->isDependentType() &&
1714             SemaRef.RequireLiteralType(
1715               VD->getLocation(), VD->getType(),
1716               diag::err_constexpr_local_var_non_literal_type,
1717               isa<CXXConstructorDecl>(Dcl)))
1718           return false;
1719         if (!VD->getType()->isDependentType() &&
1720             !VD->hasInit() && !VD->isCXXForRangeDecl()) {
1721           SemaRef.Diag(VD->getLocation(),
1722                        diag::err_constexpr_local_var_no_init)
1723             << isa<CXXConstructorDecl>(Dcl);
1724           return false;
1725         }
1726       }
1727       SemaRef.Diag(VD->getLocation(),
1728                    SemaRef.getLangOpts().CPlusPlus14
1729                     ? diag::warn_cxx11_compat_constexpr_local_var
1730                     : diag::ext_constexpr_local_var)
1731         << isa<CXXConstructorDecl>(Dcl);
1732       continue;
1733     }
1734 
1735     case Decl::NamespaceAlias:
1736     case Decl::Function:
1737       // These are disallowed in C++11 and permitted in C++1y. Allow them
1738       // everywhere as an extension.
1739       if (!Cxx1yLoc.isValid())
1740         Cxx1yLoc = DS->getLocStart();
1741       continue;
1742 
1743     default:
1744       SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
1745         << isa<CXXConstructorDecl>(Dcl);
1746       return false;
1747     }
1748   }
1749 
1750   return true;
1751 }
1752 
1753 /// Check that the given field is initialized within a constexpr constructor.
1754 ///
1755 /// \param Dcl The constexpr constructor being checked.
1756 /// \param Field The field being checked. This may be a member of an anonymous
1757 ///        struct or union nested within the class being checked.
1758 /// \param Inits All declarations, including anonymous struct/union members and
1759 ///        indirect members, for which any initialization was provided.
1760 /// \param Diagnosed Set to true if an error is produced.
1761 static void CheckConstexprCtorInitializer(Sema &SemaRef,
1762                                           const FunctionDecl *Dcl,
1763                                           FieldDecl *Field,
1764                                           llvm::SmallSet<Decl*, 16> &Inits,
1765                                           bool &Diagnosed) {
1766   if (Field->isInvalidDecl())
1767     return;
1768 
1769   if (Field->isUnnamedBitfield())
1770     return;
1771 
1772   // Anonymous unions with no variant members and empty anonymous structs do not
1773   // need to be explicitly initialized. FIXME: Anonymous structs that contain no
1774   // indirect fields don't need initializing.
1775   if (Field->isAnonymousStructOrUnion() &&
1776       (Field->getType()->isUnionType()
1777            ? !Field->getType()->getAsCXXRecordDecl()->hasVariantMembers()
1778            : Field->getType()->getAsCXXRecordDecl()->isEmpty()))
1779     return;
1780 
1781   if (!Inits.count(Field)) {
1782     if (!Diagnosed) {
1783       SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
1784       Diagnosed = true;
1785     }
1786     SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
1787   } else if (Field->isAnonymousStructOrUnion()) {
1788     const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
1789     for (auto *I : RD->fields())
1790       // If an anonymous union contains an anonymous struct of which any member
1791       // is initialized, all members must be initialized.
1792       if (!RD->isUnion() || Inits.count(I))
1793         CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed);
1794   }
1795 }
1796 
1797 /// Check the provided statement is allowed in a constexpr function
1798 /// definition.
1799 static bool
1800 CheckConstexprFunctionStmt(Sema &SemaRef, const FunctionDecl *Dcl, Stmt *S,
1801                            SmallVectorImpl<SourceLocation> &ReturnStmts,
1802                            SourceLocation &Cxx1yLoc) {
1803   // - its function-body shall be [...] a compound-statement that contains only
1804   switch (S->getStmtClass()) {
1805   case Stmt::NullStmtClass:
1806     //   - null statements,
1807     return true;
1808 
1809   case Stmt::DeclStmtClass:
1810     //   - static_assert-declarations
1811     //   - using-declarations,
1812     //   - using-directives,
1813     //   - typedef declarations and alias-declarations that do not define
1814     //     classes or enumerations,
1815     if (!CheckConstexprDeclStmt(SemaRef, Dcl, cast<DeclStmt>(S), Cxx1yLoc))
1816       return false;
1817     return true;
1818 
1819   case Stmt::ReturnStmtClass:
1820     //   - and exactly one return statement;
1821     if (isa<CXXConstructorDecl>(Dcl)) {
1822       // C++1y allows return statements in constexpr constructors.
1823       if (!Cxx1yLoc.isValid())
1824         Cxx1yLoc = S->getLocStart();
1825       return true;
1826     }
1827 
1828     ReturnStmts.push_back(S->getLocStart());
1829     return true;
1830 
1831   case Stmt::CompoundStmtClass: {
1832     // C++1y allows compound-statements.
1833     if (!Cxx1yLoc.isValid())
1834       Cxx1yLoc = S->getLocStart();
1835 
1836     CompoundStmt *CompStmt = cast<CompoundStmt>(S);
1837     for (auto *BodyIt : CompStmt->body()) {
1838       if (!CheckConstexprFunctionStmt(SemaRef, Dcl, BodyIt, ReturnStmts,
1839                                       Cxx1yLoc))
1840         return false;
1841     }
1842     return true;
1843   }
1844 
1845   case Stmt::AttributedStmtClass:
1846     if (!Cxx1yLoc.isValid())
1847       Cxx1yLoc = S->getLocStart();
1848     return true;
1849 
1850   case Stmt::IfStmtClass: {
1851     // C++1y allows if-statements.
1852     if (!Cxx1yLoc.isValid())
1853       Cxx1yLoc = S->getLocStart();
1854 
1855     IfStmt *If = cast<IfStmt>(S);
1856     if (!CheckConstexprFunctionStmt(SemaRef, Dcl, If->getThen(), ReturnStmts,
1857                                     Cxx1yLoc))
1858       return false;
1859     if (If->getElse() &&
1860         !CheckConstexprFunctionStmt(SemaRef, Dcl, If->getElse(), ReturnStmts,
1861                                     Cxx1yLoc))
1862       return false;
1863     return true;
1864   }
1865 
1866   case Stmt::WhileStmtClass:
1867   case Stmt::DoStmtClass:
1868   case Stmt::ForStmtClass:
1869   case Stmt::CXXForRangeStmtClass:
1870   case Stmt::ContinueStmtClass:
1871     // C++1y allows all of these. We don't allow them as extensions in C++11,
1872     // because they don't make sense without variable mutation.
1873     if (!SemaRef.getLangOpts().CPlusPlus14)
1874       break;
1875     if (!Cxx1yLoc.isValid())
1876       Cxx1yLoc = S->getLocStart();
1877     for (Stmt *SubStmt : S->children())
1878       if (SubStmt &&
1879           !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts,
1880                                       Cxx1yLoc))
1881         return false;
1882     return true;
1883 
1884   case Stmt::SwitchStmtClass:
1885   case Stmt::CaseStmtClass:
1886   case Stmt::DefaultStmtClass:
1887   case Stmt::BreakStmtClass:
1888     // C++1y allows switch-statements, and since they don't need variable
1889     // mutation, we can reasonably allow them in C++11 as an extension.
1890     if (!Cxx1yLoc.isValid())
1891       Cxx1yLoc = S->getLocStart();
1892     for (Stmt *SubStmt : S->children())
1893       if (SubStmt &&
1894           !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts,
1895                                       Cxx1yLoc))
1896         return false;
1897     return true;
1898 
1899   default:
1900     if (!isa<Expr>(S))
1901       break;
1902 
1903     // C++1y allows expression-statements.
1904     if (!Cxx1yLoc.isValid())
1905       Cxx1yLoc = S->getLocStart();
1906     return true;
1907   }
1908 
1909   SemaRef.Diag(S->getLocStart(), diag::err_constexpr_body_invalid_stmt)
1910     << isa<CXXConstructorDecl>(Dcl);
1911   return false;
1912 }
1913 
1914 /// Check the body for the given constexpr function declaration only contains
1915 /// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
1916 ///
1917 /// \return true if the body is OK, false if we have diagnosed a problem.
1918 bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
1919   if (isa<CXXTryStmt>(Body)) {
1920     // C++11 [dcl.constexpr]p3:
1921     //  The definition of a constexpr function shall satisfy the following
1922     //  constraints: [...]
1923     // - its function-body shall be = delete, = default, or a
1924     //   compound-statement
1925     //
1926     // C++11 [dcl.constexpr]p4:
1927     //  In the definition of a constexpr constructor, [...]
1928     // - its function-body shall not be a function-try-block;
1929     Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
1930       << isa<CXXConstructorDecl>(Dcl);
1931     return false;
1932   }
1933 
1934   SmallVector<SourceLocation, 4> ReturnStmts;
1935 
1936   // - its function-body shall be [...] a compound-statement that contains only
1937   //   [... list of cases ...]
1938   CompoundStmt *CompBody = cast<CompoundStmt>(Body);
1939   SourceLocation Cxx1yLoc;
1940   for (auto *BodyIt : CompBody->body()) {
1941     if (!CheckConstexprFunctionStmt(*this, Dcl, BodyIt, ReturnStmts, Cxx1yLoc))
1942       return false;
1943   }
1944 
1945   if (Cxx1yLoc.isValid())
1946     Diag(Cxx1yLoc,
1947          getLangOpts().CPlusPlus14
1948            ? diag::warn_cxx11_compat_constexpr_body_invalid_stmt
1949            : diag::ext_constexpr_body_invalid_stmt)
1950       << isa<CXXConstructorDecl>(Dcl);
1951 
1952   if (const CXXConstructorDecl *Constructor
1953         = dyn_cast<CXXConstructorDecl>(Dcl)) {
1954     const CXXRecordDecl *RD = Constructor->getParent();
1955     // DR1359:
1956     // - every non-variant non-static data member and base class sub-object
1957     //   shall be initialized;
1958     // DR1460:
1959     // - if the class is a union having variant members, exactly one of them
1960     //   shall be initialized;
1961     if (RD->isUnion()) {
1962       if (Constructor->getNumCtorInitializers() == 0 &&
1963           RD->hasVariantMembers()) {
1964         Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
1965         return false;
1966       }
1967     } else if (!Constructor->isDependentContext() &&
1968                !Constructor->isDelegatingConstructor()) {
1969       assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
1970 
1971       // Skip detailed checking if we have enough initializers, and we would
1972       // allow at most one initializer per member.
1973       bool AnyAnonStructUnionMembers = false;
1974       unsigned Fields = 0;
1975       for (CXXRecordDecl::field_iterator I = RD->field_begin(),
1976            E = RD->field_end(); I != E; ++I, ++Fields) {
1977         if (I->isAnonymousStructOrUnion()) {
1978           AnyAnonStructUnionMembers = true;
1979           break;
1980         }
1981       }
1982       // DR1460:
1983       // - if the class is a union-like class, but is not a union, for each of
1984       //   its anonymous union members having variant members, exactly one of
1985       //   them shall be initialized;
1986       if (AnyAnonStructUnionMembers ||
1987           Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
1988         // Check initialization of non-static data members. Base classes are
1989         // always initialized so do not need to be checked. Dependent bases
1990         // might not have initializers in the member initializer list.
1991         llvm::SmallSet<Decl*, 16> Inits;
1992         for (const auto *I: Constructor->inits()) {
1993           if (FieldDecl *FD = I->getMember())
1994             Inits.insert(FD);
1995           else if (IndirectFieldDecl *ID = I->getIndirectMember())
1996             Inits.insert(ID->chain_begin(), ID->chain_end());
1997         }
1998 
1999         bool Diagnosed = false;
2000         for (auto *I : RD->fields())
2001           CheckConstexprCtorInitializer(*this, Dcl, I, Inits, Diagnosed);
2002         if (Diagnosed)
2003           return false;
2004       }
2005     }
2006   } else {
2007     if (ReturnStmts.empty()) {
2008       // C++1y doesn't require constexpr functions to contain a 'return'
2009       // statement. We still do, unless the return type might be void, because
2010       // otherwise if there's no return statement, the function cannot
2011       // be used in a core constant expression.
2012       bool OK = getLangOpts().CPlusPlus14 &&
2013                 (Dcl->getReturnType()->isVoidType() ||
2014                  Dcl->getReturnType()->isDependentType());
2015       Diag(Dcl->getLocation(),
2016            OK ? diag::warn_cxx11_compat_constexpr_body_no_return
2017               : diag::err_constexpr_body_no_return);
2018       if (!OK)
2019         return false;
2020     } else if (ReturnStmts.size() > 1) {
2021       Diag(ReturnStmts.back(),
2022            getLangOpts().CPlusPlus14
2023              ? diag::warn_cxx11_compat_constexpr_body_multiple_return
2024              : diag::ext_constexpr_body_multiple_return);
2025       for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
2026         Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
2027     }
2028   }
2029 
2030   // C++11 [dcl.constexpr]p5:
2031   //   if no function argument values exist such that the function invocation
2032   //   substitution would produce a constant expression, the program is
2033   //   ill-formed; no diagnostic required.
2034   // C++11 [dcl.constexpr]p3:
2035   //   - every constructor call and implicit conversion used in initializing the
2036   //     return value shall be one of those allowed in a constant expression.
2037   // C++11 [dcl.constexpr]p4:
2038   //   - every constructor involved in initializing non-static data members and
2039   //     base class sub-objects shall be a constexpr constructor.
2040   SmallVector<PartialDiagnosticAt, 8> Diags;
2041   if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
2042     Diag(Dcl->getLocation(), diag::ext_constexpr_function_never_constant_expr)
2043       << isa<CXXConstructorDecl>(Dcl);
2044     for (size_t I = 0, N = Diags.size(); I != N; ++I)
2045       Diag(Diags[I].first, Diags[I].second);
2046     // Don't return false here: we allow this for compatibility in
2047     // system headers.
2048   }
2049 
2050   return true;
2051 }
2052 
2053 /// isCurrentClassName - Determine whether the identifier II is the
2054 /// name of the class type currently being defined. In the case of
2055 /// nested classes, this will only return true if II is the name of
2056 /// the innermost class.
2057 bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
2058                               const CXXScopeSpec *SS) {
2059   assert(getLangOpts().CPlusPlus && "No class names in C!");
2060 
2061   CXXRecordDecl *CurDecl;
2062   if (SS && SS->isSet() && !SS->isInvalid()) {
2063     DeclContext *DC = computeDeclContext(*SS, true);
2064     CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
2065   } else
2066     CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
2067 
2068   if (CurDecl && CurDecl->getIdentifier())
2069     return &II == CurDecl->getIdentifier();
2070   return false;
2071 }
2072 
2073 /// \brief Determine whether the identifier II is a typo for the name of
2074 /// the class type currently being defined. If so, update it to the identifier
2075 /// that should have been used.
2076 bool Sema::isCurrentClassNameTypo(IdentifierInfo *&II, const CXXScopeSpec *SS) {
2077   assert(getLangOpts().CPlusPlus && "No class names in C!");
2078 
2079   if (!getLangOpts().SpellChecking)
2080     return false;
2081 
2082   CXXRecordDecl *CurDecl;
2083   if (SS && SS->isSet() && !SS->isInvalid()) {
2084     DeclContext *DC = computeDeclContext(*SS, true);
2085     CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
2086   } else
2087     CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
2088 
2089   if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() &&
2090       3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName())
2091           < II->getLength()) {
2092     II = CurDecl->getIdentifier();
2093     return true;
2094   }
2095 
2096   return false;
2097 }
2098 
2099 /// \brief Determine whether the given class is a base class of the given
2100 /// class, including looking at dependent bases.
2101 static bool findCircularInheritance(const CXXRecordDecl *Class,
2102                                     const CXXRecordDecl *Current) {
2103   SmallVector<const CXXRecordDecl*, 8> Queue;
2104 
2105   Class = Class->getCanonicalDecl();
2106   while (true) {
2107     for (const auto &I : Current->bases()) {
2108       CXXRecordDecl *Base = I.getType()->getAsCXXRecordDecl();
2109       if (!Base)
2110         continue;
2111 
2112       Base = Base->getDefinition();
2113       if (!Base)
2114         continue;
2115 
2116       if (Base->getCanonicalDecl() == Class)
2117         return true;
2118 
2119       Queue.push_back(Base);
2120     }
2121 
2122     if (Queue.empty())
2123       return false;
2124 
2125     Current = Queue.pop_back_val();
2126   }
2127 
2128   return false;
2129 }
2130 
2131 /// \brief Check the validity of a C++ base class specifier.
2132 ///
2133 /// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
2134 /// and returns NULL otherwise.
2135 CXXBaseSpecifier *
2136 Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
2137                          SourceRange SpecifierRange,
2138                          bool Virtual, AccessSpecifier Access,
2139                          TypeSourceInfo *TInfo,
2140                          SourceLocation EllipsisLoc) {
2141   QualType BaseType = TInfo->getType();
2142 
2143   // C++ [class.union]p1:
2144   //   A union shall not have base classes.
2145   if (Class->isUnion()) {
2146     Diag(Class->getLocation(), diag::err_base_clause_on_union)
2147       << SpecifierRange;
2148     return nullptr;
2149   }
2150 
2151   if (EllipsisLoc.isValid() &&
2152       !TInfo->getType()->containsUnexpandedParameterPack()) {
2153     Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
2154       << TInfo->getTypeLoc().getSourceRange();
2155     EllipsisLoc = SourceLocation();
2156   }
2157 
2158   SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
2159 
2160   if (BaseType->isDependentType()) {
2161     // Make sure that we don't have circular inheritance among our dependent
2162     // bases. For non-dependent bases, the check for completeness below handles
2163     // this.
2164     if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
2165       if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
2166           ((BaseDecl = BaseDecl->getDefinition()) &&
2167            findCircularInheritance(Class, BaseDecl))) {
2168         Diag(BaseLoc, diag::err_circular_inheritance)
2169           << BaseType << Context.getTypeDeclType(Class);
2170 
2171         if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
2172           Diag(BaseDecl->getLocation(), diag::note_previous_decl)
2173             << BaseType;
2174 
2175         return nullptr;
2176       }
2177     }
2178 
2179     return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
2180                                           Class->getTagKind() == TTK_Class,
2181                                           Access, TInfo, EllipsisLoc);
2182   }
2183 
2184   // Base specifiers must be record types.
2185   if (!BaseType->isRecordType()) {
2186     Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
2187     return nullptr;
2188   }
2189 
2190   // C++ [class.union]p1:
2191   //   A union shall not be used as a base class.
2192   if (BaseType->isUnionType()) {
2193     Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
2194     return nullptr;
2195   }
2196 
2197   // For the MS ABI, propagate DLL attributes to base class templates.
2198   if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
2199     if (Attr *ClassAttr = getDLLAttr(Class)) {
2200       if (auto *BaseTemplate = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
2201               BaseType->getAsCXXRecordDecl())) {
2202         propagateDLLAttrToBaseClassTemplate(Class, ClassAttr, BaseTemplate,
2203                                             BaseLoc);
2204       }
2205     }
2206   }
2207 
2208   // C++ [class.derived]p2:
2209   //   The class-name in a base-specifier shall not be an incompletely
2210   //   defined class.
2211   if (RequireCompleteType(BaseLoc, BaseType,
2212                           diag::err_incomplete_base_class, SpecifierRange)) {
2213     Class->setInvalidDecl();
2214     return nullptr;
2215   }
2216 
2217   // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
2218   RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
2219   assert(BaseDecl && "Record type has no declaration");
2220   BaseDecl = BaseDecl->getDefinition();
2221   assert(BaseDecl && "Base type is not incomplete, but has no definition");
2222   CXXRecordDecl *CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
2223   assert(CXXBaseDecl && "Base type is not a C++ type");
2224 
2225   // A class which contains a flexible array member is not suitable for use as a
2226   // base class:
2227   //   - If the layout determines that a base comes before another base,
2228   //     the flexible array member would index into the subsequent base.
2229   //   - If the layout determines that base comes before the derived class,
2230   //     the flexible array member would index into the derived class.
2231   if (CXXBaseDecl->hasFlexibleArrayMember()) {
2232     Diag(BaseLoc, diag::err_base_class_has_flexible_array_member)
2233       << CXXBaseDecl->getDeclName();
2234     return nullptr;
2235   }
2236 
2237   // C++ [class]p3:
2238   //   If a class is marked final and it appears as a base-type-specifier in
2239   //   base-clause, the program is ill-formed.
2240   if (FinalAttr *FA = CXXBaseDecl->getAttr<FinalAttr>()) {
2241     Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
2242       << CXXBaseDecl->getDeclName()
2243       << FA->isSpelledAsSealed();
2244     Diag(CXXBaseDecl->getLocation(), diag::note_entity_declared_at)
2245         << CXXBaseDecl->getDeclName() << FA->getRange();
2246     return nullptr;
2247   }
2248 
2249   if (BaseDecl->isInvalidDecl())
2250     Class->setInvalidDecl();
2251 
2252   // Create the base specifier.
2253   return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
2254                                         Class->getTagKind() == TTK_Class,
2255                                         Access, TInfo, EllipsisLoc);
2256 }
2257 
2258 /// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
2259 /// one entry in the base class list of a class specifier, for
2260 /// example:
2261 ///    class foo : public bar, virtual private baz {
2262 /// 'public bar' and 'virtual private baz' are each base-specifiers.
2263 BaseResult
2264 Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
2265                          ParsedAttributes &Attributes,
2266                          bool Virtual, AccessSpecifier Access,
2267                          ParsedType basetype, SourceLocation BaseLoc,
2268                          SourceLocation EllipsisLoc) {
2269   if (!classdecl)
2270     return true;
2271 
2272   AdjustDeclIfTemplate(classdecl);
2273   CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
2274   if (!Class)
2275     return true;
2276 
2277   // We haven't yet attached the base specifiers.
2278   Class->setIsParsingBaseSpecifiers();
2279 
2280   // We do not support any C++11 attributes on base-specifiers yet.
2281   // Diagnose any attributes we see.
2282   if (!Attributes.empty()) {
2283     for (AttributeList *Attr = Attributes.getList(); Attr;
2284          Attr = Attr->getNext()) {
2285       if (Attr->isInvalid() ||
2286           Attr->getKind() == AttributeList::IgnoredAttribute)
2287         continue;
2288       Diag(Attr->getLoc(),
2289            Attr->getKind() == AttributeList::UnknownAttribute
2290              ? diag::warn_unknown_attribute_ignored
2291              : diag::err_base_specifier_attribute)
2292         << Attr->getName();
2293     }
2294   }
2295 
2296   TypeSourceInfo *TInfo = nullptr;
2297   GetTypeFromParser(basetype, &TInfo);
2298 
2299   if (EllipsisLoc.isInvalid() &&
2300       DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
2301                                       UPPC_BaseType))
2302     return true;
2303 
2304   if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
2305                                                       Virtual, Access, TInfo,
2306                                                       EllipsisLoc))
2307     return BaseSpec;
2308   else
2309     Class->setInvalidDecl();
2310 
2311   return true;
2312 }
2313 
2314 /// Use small set to collect indirect bases.  As this is only used
2315 /// locally, there's no need to abstract the small size parameter.
2316 typedef llvm::SmallPtrSet<QualType, 4> IndirectBaseSet;
2317 
2318 /// \brief Recursively add the bases of Type.  Don't add Type itself.
2319 static void
2320 NoteIndirectBases(ASTContext &Context, IndirectBaseSet &Set,
2321                   const QualType &Type)
2322 {
2323   // Even though the incoming type is a base, it might not be
2324   // a class -- it could be a template parm, for instance.
2325   if (auto Rec = Type->getAs<RecordType>()) {
2326     auto Decl = Rec->getAsCXXRecordDecl();
2327 
2328     // Iterate over its bases.
2329     for (const auto &BaseSpec : Decl->bases()) {
2330       QualType Base = Context.getCanonicalType(BaseSpec.getType())
2331         .getUnqualifiedType();
2332       if (Set.insert(Base).second)
2333         // If we've not already seen it, recurse.
2334         NoteIndirectBases(Context, Set, Base);
2335     }
2336   }
2337 }
2338 
2339 /// \brief Performs the actual work of attaching the given base class
2340 /// specifiers to a C++ class.
2341 bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class,
2342                                 MutableArrayRef<CXXBaseSpecifier *> Bases) {
2343  if (Bases.empty())
2344     return false;
2345 
2346   // Used to keep track of which base types we have already seen, so
2347   // that we can properly diagnose redundant direct base types. Note
2348   // that the key is always the unqualified canonical type of the base
2349   // class.
2350   std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
2351 
2352   // Used to track indirect bases so we can see if a direct base is
2353   // ambiguous.
2354   IndirectBaseSet IndirectBaseTypes;
2355 
2356   // Copy non-redundant base specifiers into permanent storage.
2357   unsigned NumGoodBases = 0;
2358   bool Invalid = false;
2359   for (unsigned idx = 0; idx < Bases.size(); ++idx) {
2360     QualType NewBaseType
2361       = Context.getCanonicalType(Bases[idx]->getType());
2362     NewBaseType = NewBaseType.getLocalUnqualifiedType();
2363 
2364     CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
2365     if (KnownBase) {
2366       // C++ [class.mi]p3:
2367       //   A class shall not be specified as a direct base class of a
2368       //   derived class more than once.
2369       Diag(Bases[idx]->getLocStart(),
2370            diag::err_duplicate_base_class)
2371         << KnownBase->getType()
2372         << Bases[idx]->getSourceRange();
2373 
2374       // Delete the duplicate base class specifier; we're going to
2375       // overwrite its pointer later.
2376       Context.Deallocate(Bases[idx]);
2377 
2378       Invalid = true;
2379     } else {
2380       // Okay, add this new base class.
2381       KnownBase = Bases[idx];
2382       Bases[NumGoodBases++] = Bases[idx];
2383 
2384       // Note this base's direct & indirect bases, if there could be ambiguity.
2385       if (Bases.size() > 1)
2386         NoteIndirectBases(Context, IndirectBaseTypes, NewBaseType);
2387 
2388       if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
2389         const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
2390         if (Class->isInterface() &&
2391               (!RD->isInterface() ||
2392                KnownBase->getAccessSpecifier() != AS_public)) {
2393           // The Microsoft extension __interface does not permit bases that
2394           // are not themselves public interfaces.
2395           Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
2396             << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
2397             << RD->getSourceRange();
2398           Invalid = true;
2399         }
2400         if (RD->hasAttr<WeakAttr>())
2401           Class->addAttr(WeakAttr::CreateImplicit(Context));
2402       }
2403     }
2404   }
2405 
2406   // Attach the remaining base class specifiers to the derived class.
2407   Class->setBases(Bases.data(), NumGoodBases);
2408 
2409   for (unsigned idx = 0; idx < NumGoodBases; ++idx) {
2410     // Check whether this direct base is inaccessible due to ambiguity.
2411     QualType BaseType = Bases[idx]->getType();
2412     CanQualType CanonicalBase = Context.getCanonicalType(BaseType)
2413       .getUnqualifiedType();
2414 
2415     if (IndirectBaseTypes.count(CanonicalBase)) {
2416       CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2417                          /*DetectVirtual=*/true);
2418       bool found
2419         = Class->isDerivedFrom(CanonicalBase->getAsCXXRecordDecl(), Paths);
2420       assert(found);
2421       (void)found;
2422 
2423       if (Paths.isAmbiguous(CanonicalBase))
2424         Diag(Bases[idx]->getLocStart (), diag::warn_inaccessible_base_class)
2425           << BaseType << getAmbiguousPathsDisplayString(Paths)
2426           << Bases[idx]->getSourceRange();
2427       else
2428         assert(Bases[idx]->isVirtual());
2429     }
2430 
2431     // Delete the base class specifier, since its data has been copied
2432     // into the CXXRecordDecl.
2433     Context.Deallocate(Bases[idx]);
2434   }
2435 
2436   return Invalid;
2437 }
2438 
2439 /// ActOnBaseSpecifiers - Attach the given base specifiers to the
2440 /// class, after checking whether there are any duplicate base
2441 /// classes.
2442 void Sema::ActOnBaseSpecifiers(Decl *ClassDecl,
2443                                MutableArrayRef<CXXBaseSpecifier *> Bases) {
2444   if (!ClassDecl || Bases.empty())
2445     return;
2446 
2447   AdjustDeclIfTemplate(ClassDecl);
2448   AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl), Bases);
2449 }
2450 
2451 /// \brief Determine whether the type \p Derived is a C++ class that is
2452 /// derived from the type \p Base.
2453 bool Sema::IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base) {
2454   if (!getLangOpts().CPlusPlus)
2455     return false;
2456 
2457   CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
2458   if (!DerivedRD)
2459     return false;
2460 
2461   CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
2462   if (!BaseRD)
2463     return false;
2464 
2465   // If either the base or the derived type is invalid, don't try to
2466   // check whether one is derived from the other.
2467   if (BaseRD->isInvalidDecl() || DerivedRD->isInvalidDecl())
2468     return false;
2469 
2470   // FIXME: In a modules build, do we need the entire path to be visible for us
2471   // to be able to use the inheritance relationship?
2472   if (!isCompleteType(Loc, Derived) && !DerivedRD->isBeingDefined())
2473     return false;
2474 
2475   return DerivedRD->isDerivedFrom(BaseRD);
2476 }
2477 
2478 /// \brief Determine whether the type \p Derived is a C++ class that is
2479 /// derived from the type \p Base.
2480 bool Sema::IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base,
2481                          CXXBasePaths &Paths) {
2482   if (!getLangOpts().CPlusPlus)
2483     return false;
2484 
2485   CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
2486   if (!DerivedRD)
2487     return false;
2488 
2489   CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
2490   if (!BaseRD)
2491     return false;
2492 
2493   if (!isCompleteType(Loc, Derived) && !DerivedRD->isBeingDefined())
2494     return false;
2495 
2496   return DerivedRD->isDerivedFrom(BaseRD, Paths);
2497 }
2498 
2499 void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
2500                               CXXCastPath &BasePathArray) {
2501   assert(BasePathArray.empty() && "Base path array must be empty!");
2502   assert(Paths.isRecordingPaths() && "Must record paths!");
2503 
2504   const CXXBasePath &Path = Paths.front();
2505 
2506   // We first go backward and check if we have a virtual base.
2507   // FIXME: It would be better if CXXBasePath had the base specifier for
2508   // the nearest virtual base.
2509   unsigned Start = 0;
2510   for (unsigned I = Path.size(); I != 0; --I) {
2511     if (Path[I - 1].Base->isVirtual()) {
2512       Start = I - 1;
2513       break;
2514     }
2515   }
2516 
2517   // Now add all bases.
2518   for (unsigned I = Start, E = Path.size(); I != E; ++I)
2519     BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
2520 }
2521 
2522 /// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
2523 /// conversion (where Derived and Base are class types) is
2524 /// well-formed, meaning that the conversion is unambiguous (and
2525 /// that all of the base classes are accessible). Returns true
2526 /// and emits a diagnostic if the code is ill-formed, returns false
2527 /// otherwise. Loc is the location where this routine should point to
2528 /// if there is an error, and Range is the source range to highlight
2529 /// if there is an error.
2530 ///
2531 /// If either InaccessibleBaseID or AmbigiousBaseConvID are 0, then the
2532 /// diagnostic for the respective type of error will be suppressed, but the
2533 /// check for ill-formed code will still be performed.
2534 bool
2535 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
2536                                    unsigned InaccessibleBaseID,
2537                                    unsigned AmbigiousBaseConvID,
2538                                    SourceLocation Loc, SourceRange Range,
2539                                    DeclarationName Name,
2540                                    CXXCastPath *BasePath,
2541                                    bool IgnoreAccess) {
2542   // First, determine whether the path from Derived to Base is
2543   // ambiguous. This is slightly more expensive than checking whether
2544   // the Derived to Base conversion exists, because here we need to
2545   // explore multiple paths to determine if there is an ambiguity.
2546   CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2547                      /*DetectVirtual=*/false);
2548   bool DerivationOkay = IsDerivedFrom(Loc, Derived, Base, Paths);
2549   assert(DerivationOkay &&
2550          "Can only be used with a derived-to-base conversion");
2551   (void)DerivationOkay;
2552 
2553   if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
2554     if (!IgnoreAccess) {
2555       // Check that the base class can be accessed.
2556       switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
2557                                    InaccessibleBaseID)) {
2558         case AR_inaccessible:
2559           return true;
2560         case AR_accessible:
2561         case AR_dependent:
2562         case AR_delayed:
2563           break;
2564       }
2565     }
2566 
2567     // Build a base path if necessary.
2568     if (BasePath)
2569       BuildBasePathArray(Paths, *BasePath);
2570     return false;
2571   }
2572 
2573   if (AmbigiousBaseConvID) {
2574     // We know that the derived-to-base conversion is ambiguous, and
2575     // we're going to produce a diagnostic. Perform the derived-to-base
2576     // search just one more time to compute all of the possible paths so
2577     // that we can print them out. This is more expensive than any of
2578     // the previous derived-to-base checks we've done, but at this point
2579     // performance isn't as much of an issue.
2580     Paths.clear();
2581     Paths.setRecordingPaths(true);
2582     bool StillOkay = IsDerivedFrom(Loc, Derived, Base, Paths);
2583     assert(StillOkay && "Can only be used with a derived-to-base conversion");
2584     (void)StillOkay;
2585 
2586     // Build up a textual representation of the ambiguous paths, e.g.,
2587     // D -> B -> A, that will be used to illustrate the ambiguous
2588     // conversions in the diagnostic. We only print one of the paths
2589     // to each base class subobject.
2590     std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
2591 
2592     Diag(Loc, AmbigiousBaseConvID)
2593     << Derived << Base << PathDisplayStr << Range << Name;
2594   }
2595   return true;
2596 }
2597 
2598 bool
2599 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
2600                                    SourceLocation Loc, SourceRange Range,
2601                                    CXXCastPath *BasePath,
2602                                    bool IgnoreAccess) {
2603   return CheckDerivedToBaseConversion(
2604       Derived, Base, diag::err_upcast_to_inaccessible_base,
2605       diag::err_ambiguous_derived_to_base_conv, Loc, Range, DeclarationName(),
2606       BasePath, IgnoreAccess);
2607 }
2608 
2609 
2610 /// @brief Builds a string representing ambiguous paths from a
2611 /// specific derived class to different subobjects of the same base
2612 /// class.
2613 ///
2614 /// This function builds a string that can be used in error messages
2615 /// to show the different paths that one can take through the
2616 /// inheritance hierarchy to go from the derived class to different
2617 /// subobjects of a base class. The result looks something like this:
2618 /// @code
2619 /// struct D -> struct B -> struct A
2620 /// struct D -> struct C -> struct A
2621 /// @endcode
2622 std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
2623   std::string PathDisplayStr;
2624   std::set<unsigned> DisplayedPaths;
2625   for (CXXBasePaths::paths_iterator Path = Paths.begin();
2626        Path != Paths.end(); ++Path) {
2627     if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
2628       // We haven't displayed a path to this particular base
2629       // class subobject yet.
2630       PathDisplayStr += "\n    ";
2631       PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
2632       for (CXXBasePath::const_iterator Element = Path->begin();
2633            Element != Path->end(); ++Element)
2634         PathDisplayStr += " -> " + Element->Base->getType().getAsString();
2635     }
2636   }
2637 
2638   return PathDisplayStr;
2639 }
2640 
2641 //===----------------------------------------------------------------------===//
2642 // C++ class member Handling
2643 //===----------------------------------------------------------------------===//
2644 
2645 /// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
2646 bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
2647                                 SourceLocation ASLoc,
2648                                 SourceLocation ColonLoc,
2649                                 AttributeList *Attrs) {
2650   assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
2651   AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
2652                                                   ASLoc, ColonLoc);
2653   CurContext->addHiddenDecl(ASDecl);
2654   return ProcessAccessDeclAttributeList(ASDecl, Attrs);
2655 }
2656 
2657 /// CheckOverrideControl - Check C++11 override control semantics.
2658 void Sema::CheckOverrideControl(NamedDecl *D) {
2659   if (D->isInvalidDecl())
2660     return;
2661 
2662   // We only care about "override" and "final" declarations.
2663   if (!D->hasAttr<OverrideAttr>() && !D->hasAttr<FinalAttr>())
2664     return;
2665 
2666   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
2667 
2668   // We can't check dependent instance methods.
2669   if (MD && MD->isInstance() &&
2670       (MD->getParent()->hasAnyDependentBases() ||
2671        MD->getType()->isDependentType()))
2672     return;
2673 
2674   if (MD && !MD->isVirtual()) {
2675     // If we have a non-virtual method, check if if hides a virtual method.
2676     // (In that case, it's most likely the method has the wrong type.)
2677     SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
2678     FindHiddenVirtualMethods(MD, OverloadedMethods);
2679 
2680     if (!OverloadedMethods.empty()) {
2681       if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
2682         Diag(OA->getLocation(),
2683              diag::override_keyword_hides_virtual_member_function)
2684           << "override" << (OverloadedMethods.size() > 1);
2685       } else if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
2686         Diag(FA->getLocation(),
2687              diag::override_keyword_hides_virtual_member_function)
2688           << (FA->isSpelledAsSealed() ? "sealed" : "final")
2689           << (OverloadedMethods.size() > 1);
2690       }
2691       NoteHiddenVirtualMethods(MD, OverloadedMethods);
2692       MD->setInvalidDecl();
2693       return;
2694     }
2695     // Fall through into the general case diagnostic.
2696     // FIXME: We might want to attempt typo correction here.
2697   }
2698 
2699   if (!MD || !MD->isVirtual()) {
2700     if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
2701       Diag(OA->getLocation(),
2702            diag::override_keyword_only_allowed_on_virtual_member_functions)
2703         << "override" << FixItHint::CreateRemoval(OA->getLocation());
2704       D->dropAttr<OverrideAttr>();
2705     }
2706     if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
2707       Diag(FA->getLocation(),
2708            diag::override_keyword_only_allowed_on_virtual_member_functions)
2709         << (FA->isSpelledAsSealed() ? "sealed" : "final")
2710         << FixItHint::CreateRemoval(FA->getLocation());
2711       D->dropAttr<FinalAttr>();
2712     }
2713     return;
2714   }
2715 
2716   // C++11 [class.virtual]p5:
2717   //   If a function is marked with the virt-specifier override and
2718   //   does not override a member function of a base class, the program is
2719   //   ill-formed.
2720   bool HasOverriddenMethods =
2721     MD->begin_overridden_methods() != MD->end_overridden_methods();
2722   if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
2723     Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
2724       << MD->getDeclName();
2725 }
2726 
2727 void Sema::DiagnoseAbsenceOfOverrideControl(NamedDecl *D) {
2728   if (D->isInvalidDecl() || D->hasAttr<OverrideAttr>())
2729     return;
2730   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
2731   if (!MD || MD->isImplicit() || MD->hasAttr<FinalAttr>())
2732     return;
2733 
2734   SourceLocation Loc = MD->getLocation();
2735   SourceLocation SpellingLoc = Loc;
2736   if (getSourceManager().isMacroArgExpansion(Loc))
2737     SpellingLoc = getSourceManager().getImmediateExpansionRange(Loc).first;
2738   SpellingLoc = getSourceManager().getSpellingLoc(SpellingLoc);
2739   if (SpellingLoc.isValid() && getSourceManager().isInSystemHeader(SpellingLoc))
2740       return;
2741 
2742   if (MD->size_overridden_methods() > 0) {
2743     unsigned DiagID = isa<CXXDestructorDecl>(MD)
2744                           ? diag::warn_destructor_marked_not_override_overriding
2745                           : diag::warn_function_marked_not_override_overriding;
2746     Diag(MD->getLocation(), DiagID) << MD->getDeclName();
2747     const CXXMethodDecl *OMD = *MD->begin_overridden_methods();
2748     Diag(OMD->getLocation(), diag::note_overridden_virtual_function);
2749   }
2750 }
2751 
2752 /// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
2753 /// function overrides a virtual member function marked 'final', according to
2754 /// C++11 [class.virtual]p4.
2755 bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
2756                                                   const CXXMethodDecl *Old) {
2757   FinalAttr *FA = Old->getAttr<FinalAttr>();
2758   if (!FA)
2759     return false;
2760 
2761   Diag(New->getLocation(), diag::err_final_function_overridden)
2762     << New->getDeclName()
2763     << FA->isSpelledAsSealed();
2764   Diag(Old->getLocation(), diag::note_overridden_virtual_function);
2765   return true;
2766 }
2767 
2768 static bool InitializationHasSideEffects(const FieldDecl &FD) {
2769   const Type *T = FD.getType()->getBaseElementTypeUnsafe();
2770   // FIXME: Destruction of ObjC lifetime types has side-effects.
2771   if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
2772     return !RD->isCompleteDefinition() ||
2773            !RD->hasTrivialDefaultConstructor() ||
2774            !RD->hasTrivialDestructor();
2775   return false;
2776 }
2777 
2778 static AttributeList *getMSPropertyAttr(AttributeList *list) {
2779   for (AttributeList *it = list; it != nullptr; it = it->getNext())
2780     if (it->isDeclspecPropertyAttribute())
2781       return it;
2782   return nullptr;
2783 }
2784 
2785 // Check if there is a field shadowing.
2786 void Sema::CheckShadowInheritedFields(const SourceLocation &Loc,
2787                                       DeclarationName FieldName,
2788                                       const CXXRecordDecl *RD) {
2789   if (Diags.isIgnored(diag::warn_shadow_field, Loc))
2790     return;
2791 
2792   // To record a shadowed field in a base
2793   std::map<CXXRecordDecl*, NamedDecl*> Bases;
2794   auto FieldShadowed = [&](const CXXBaseSpecifier *Specifier,
2795                            CXXBasePath &Path) {
2796     const auto Base = Specifier->getType()->getAsCXXRecordDecl();
2797     // Record an ambiguous path directly
2798     if (Bases.find(Base) != Bases.end())
2799       return true;
2800     for (const auto Field : Base->lookup(FieldName)) {
2801       if ((isa<FieldDecl>(Field) || isa<IndirectFieldDecl>(Field)) &&
2802           Field->getAccess() != AS_private) {
2803         assert(Field->getAccess() != AS_none);
2804         assert(Bases.find(Base) == Bases.end());
2805         Bases[Base] = Field;
2806         return true;
2807       }
2808     }
2809     return false;
2810   };
2811 
2812   CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2813                      /*DetectVirtual=*/true);
2814   if (!RD->lookupInBases(FieldShadowed, Paths))
2815     return;
2816 
2817   for (const auto &P : Paths) {
2818     auto Base = P.back().Base->getType()->getAsCXXRecordDecl();
2819     auto It = Bases.find(Base);
2820     // Skip duplicated bases
2821     if (It == Bases.end())
2822       continue;
2823     auto BaseField = It->second;
2824     assert(BaseField->getAccess() != AS_private);
2825     if (AS_none !=
2826         CXXRecordDecl::MergeAccess(P.Access, BaseField->getAccess())) {
2827       Diag(Loc, diag::warn_shadow_field)
2828         << FieldName.getAsString() << RD->getName() << Base->getName();
2829       Diag(BaseField->getLocation(), diag::note_shadow_field);
2830       Bases.erase(It);
2831     }
2832   }
2833 }
2834 
2835 /// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
2836 /// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
2837 /// bitfield width if there is one, 'InitExpr' specifies the initializer if
2838 /// one has been parsed, and 'InitStyle' is set if an in-class initializer is
2839 /// present (but parsing it has been deferred).
2840 NamedDecl *
2841 Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
2842                                MultiTemplateParamsArg TemplateParameterLists,
2843                                Expr *BW, const VirtSpecifiers &VS,
2844                                InClassInitStyle InitStyle) {
2845   const DeclSpec &DS = D.getDeclSpec();
2846   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
2847   DeclarationName Name = NameInfo.getName();
2848   SourceLocation Loc = NameInfo.getLoc();
2849 
2850   // For anonymous bitfields, the location should point to the type.
2851   if (Loc.isInvalid())
2852     Loc = D.getLocStart();
2853 
2854   Expr *BitWidth = static_cast<Expr*>(BW);
2855 
2856   assert(isa<CXXRecordDecl>(CurContext));
2857   assert(!DS.isFriendSpecified());
2858 
2859   bool isFunc = D.isDeclarationOfFunction();
2860 
2861   if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
2862     // The Microsoft extension __interface only permits public member functions
2863     // and prohibits constructors, destructors, operators, non-public member
2864     // functions, static methods and data members.
2865     unsigned InvalidDecl;
2866     bool ShowDeclName = true;
2867     if (!isFunc)
2868       InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
2869     else if (AS != AS_public)
2870       InvalidDecl = 2;
2871     else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
2872       InvalidDecl = 3;
2873     else switch (Name.getNameKind()) {
2874       case DeclarationName::CXXConstructorName:
2875         InvalidDecl = 4;
2876         ShowDeclName = false;
2877         break;
2878 
2879       case DeclarationName::CXXDestructorName:
2880         InvalidDecl = 5;
2881         ShowDeclName = false;
2882         break;
2883 
2884       case DeclarationName::CXXOperatorName:
2885       case DeclarationName::CXXConversionFunctionName:
2886         InvalidDecl = 6;
2887         break;
2888 
2889       default:
2890         InvalidDecl = 0;
2891         break;
2892     }
2893 
2894     if (InvalidDecl) {
2895       if (ShowDeclName)
2896         Diag(Loc, diag::err_invalid_member_in_interface)
2897           << (InvalidDecl-1) << Name;
2898       else
2899         Diag(Loc, diag::err_invalid_member_in_interface)
2900           << (InvalidDecl-1) << "";
2901       return nullptr;
2902     }
2903   }
2904 
2905   // C++ 9.2p6: A member shall not be declared to have automatic storage
2906   // duration (auto, register) or with the extern storage-class-specifier.
2907   // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
2908   // data members and cannot be applied to names declared const or static,
2909   // and cannot be applied to reference members.
2910   switch (DS.getStorageClassSpec()) {
2911   case DeclSpec::SCS_unspecified:
2912   case DeclSpec::SCS_typedef:
2913   case DeclSpec::SCS_static:
2914     break;
2915   case DeclSpec::SCS_mutable:
2916     if (isFunc) {
2917       Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
2918 
2919       // FIXME: It would be nicer if the keyword was ignored only for this
2920       // declarator. Otherwise we could get follow-up errors.
2921       D.getMutableDeclSpec().ClearStorageClassSpecs();
2922     }
2923     break;
2924   default:
2925     Diag(DS.getStorageClassSpecLoc(),
2926          diag::err_storageclass_invalid_for_member);
2927     D.getMutableDeclSpec().ClearStorageClassSpecs();
2928     break;
2929   }
2930 
2931   bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
2932                        DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
2933                       !isFunc);
2934 
2935   if (DS.isConstexprSpecified() && isInstField) {
2936     SemaDiagnosticBuilder B =
2937         Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr_member);
2938     SourceLocation ConstexprLoc = DS.getConstexprSpecLoc();
2939     if (InitStyle == ICIS_NoInit) {
2940       B << 0 << 0;
2941       if (D.getDeclSpec().getTypeQualifiers() & DeclSpec::TQ_const)
2942         B << FixItHint::CreateRemoval(ConstexprLoc);
2943       else {
2944         B << FixItHint::CreateReplacement(ConstexprLoc, "const");
2945         D.getMutableDeclSpec().ClearConstexprSpec();
2946         const char *PrevSpec;
2947         unsigned DiagID;
2948         bool Failed = D.getMutableDeclSpec().SetTypeQual(
2949             DeclSpec::TQ_const, ConstexprLoc, PrevSpec, DiagID, getLangOpts());
2950         (void)Failed;
2951         assert(!Failed && "Making a constexpr member const shouldn't fail");
2952       }
2953     } else {
2954       B << 1;
2955       const char *PrevSpec;
2956       unsigned DiagID;
2957       if (D.getMutableDeclSpec().SetStorageClassSpec(
2958           *this, DeclSpec::SCS_static, ConstexprLoc, PrevSpec, DiagID,
2959           Context.getPrintingPolicy())) {
2960         assert(DS.getStorageClassSpec() == DeclSpec::SCS_mutable &&
2961                "This is the only DeclSpec that should fail to be applied");
2962         B << 1;
2963       } else {
2964         B << 0 << FixItHint::CreateInsertion(ConstexprLoc, "static ");
2965         isInstField = false;
2966       }
2967     }
2968   }
2969 
2970   NamedDecl *Member;
2971   if (isInstField) {
2972     CXXScopeSpec &SS = D.getCXXScopeSpec();
2973 
2974     // Data members must have identifiers for names.
2975     if (!Name.isIdentifier()) {
2976       Diag(Loc, diag::err_bad_variable_name)
2977         << Name;
2978       return nullptr;
2979     }
2980 
2981     IdentifierInfo *II = Name.getAsIdentifierInfo();
2982 
2983     // Member field could not be with "template" keyword.
2984     // So TemplateParameterLists should be empty in this case.
2985     if (TemplateParameterLists.size()) {
2986       TemplateParameterList* TemplateParams = TemplateParameterLists[0];
2987       if (TemplateParams->size()) {
2988         // There is no such thing as a member field template.
2989         Diag(D.getIdentifierLoc(), diag::err_template_member)
2990             << II
2991             << SourceRange(TemplateParams->getTemplateLoc(),
2992                 TemplateParams->getRAngleLoc());
2993       } else {
2994         // There is an extraneous 'template<>' for this member.
2995         Diag(TemplateParams->getTemplateLoc(),
2996             diag::err_template_member_noparams)
2997             << II
2998             << SourceRange(TemplateParams->getTemplateLoc(),
2999                 TemplateParams->getRAngleLoc());
3000       }
3001       return nullptr;
3002     }
3003 
3004     if (SS.isSet() && !SS.isInvalid()) {
3005       // The user provided a superfluous scope specifier inside a class
3006       // definition:
3007       //
3008       // class X {
3009       //   int X::member;
3010       // };
3011       if (DeclContext *DC = computeDeclContext(SS, false))
3012         diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
3013       else
3014         Diag(D.getIdentifierLoc(), diag::err_member_qualification)
3015           << Name << SS.getRange();
3016 
3017       SS.clear();
3018     }
3019 
3020     AttributeList *MSPropertyAttr =
3021       getMSPropertyAttr(D.getDeclSpec().getAttributes().getList());
3022     if (MSPropertyAttr) {
3023       Member = HandleMSProperty(S, cast<CXXRecordDecl>(CurContext), Loc, D,
3024                                 BitWidth, InitStyle, AS, MSPropertyAttr);
3025       if (!Member)
3026         return nullptr;
3027       isInstField = false;
3028     } else {
3029       Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D,
3030                                 BitWidth, InitStyle, AS);
3031       if (!Member)
3032         return nullptr;
3033     }
3034 
3035     CheckShadowInheritedFields(Loc, Name, cast<CXXRecordDecl>(CurContext));
3036   } else {
3037     Member = HandleDeclarator(S, D, TemplateParameterLists);
3038     if (!Member)
3039       return nullptr;
3040 
3041     // Non-instance-fields can't have a bitfield.
3042     if (BitWidth) {
3043       if (Member->isInvalidDecl()) {
3044         // don't emit another diagnostic.
3045       } else if (isa<VarDecl>(Member) || isa<VarTemplateDecl>(Member)) {
3046         // C++ 9.6p3: A bit-field shall not be a static member.
3047         // "static member 'A' cannot be a bit-field"
3048         Diag(Loc, diag::err_static_not_bitfield)
3049           << Name << BitWidth->getSourceRange();
3050       } else if (isa<TypedefDecl>(Member)) {
3051         // "typedef member 'x' cannot be a bit-field"
3052         Diag(Loc, diag::err_typedef_not_bitfield)
3053           << Name << BitWidth->getSourceRange();
3054       } else {
3055         // A function typedef ("typedef int f(); f a;").
3056         // C++ 9.6p3: A bit-field shall have integral or enumeration type.
3057         Diag(Loc, diag::err_not_integral_type_bitfield)
3058           << Name << cast<ValueDecl>(Member)->getType()
3059           << BitWidth->getSourceRange();
3060       }
3061 
3062       BitWidth = nullptr;
3063       Member->setInvalidDecl();
3064     }
3065 
3066     Member->setAccess(AS);
3067 
3068     // If we have declared a member function template or static data member
3069     // template, set the access of the templated declaration as well.
3070     if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
3071       FunTmpl->getTemplatedDecl()->setAccess(AS);
3072     else if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(Member))
3073       VarTmpl->getTemplatedDecl()->setAccess(AS);
3074   }
3075 
3076   if (VS.isOverrideSpecified())
3077     Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context, 0));
3078   if (VS.isFinalSpecified())
3079     Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context,
3080                                             VS.isFinalSpelledSealed()));
3081 
3082   if (VS.getLastLocation().isValid()) {
3083     // Update the end location of a method that has a virt-specifiers.
3084     if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
3085       MD->setRangeEnd(VS.getLastLocation());
3086   }
3087 
3088   CheckOverrideControl(Member);
3089 
3090   assert((Name || isInstField) && "No identifier for non-field ?");
3091 
3092   if (isInstField) {
3093     FieldDecl *FD = cast<FieldDecl>(Member);
3094     FieldCollector->Add(FD);
3095 
3096     if (!Diags.isIgnored(diag::warn_unused_private_field, FD->getLocation())) {
3097       // Remember all explicit private FieldDecls that have a name, no side
3098       // effects and are not part of a dependent type declaration.
3099       if (!FD->isImplicit() && FD->getDeclName() &&
3100           FD->getAccess() == AS_private &&
3101           !FD->hasAttr<UnusedAttr>() &&
3102           !FD->getParent()->isDependentContext() &&
3103           !InitializationHasSideEffects(*FD))
3104         UnusedPrivateFields.insert(FD);
3105     }
3106   }
3107 
3108   return Member;
3109 }
3110 
3111 namespace {
3112   class UninitializedFieldVisitor
3113       : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
3114     Sema &S;
3115     // List of Decls to generate a warning on.  Also remove Decls that become
3116     // initialized.
3117     llvm::SmallPtrSetImpl<ValueDecl*> &Decls;
3118     // List of base classes of the record.  Classes are removed after their
3119     // initializers.
3120     llvm::SmallPtrSetImpl<QualType> &BaseClasses;
3121     // Vector of decls to be removed from the Decl set prior to visiting the
3122     // nodes.  These Decls may have been initialized in the prior initializer.
3123     llvm::SmallVector<ValueDecl*, 4> DeclsToRemove;
3124     // If non-null, add a note to the warning pointing back to the constructor.
3125     const CXXConstructorDecl *Constructor;
3126     // Variables to hold state when processing an initializer list.  When
3127     // InitList is true, special case initialization of FieldDecls matching
3128     // InitListFieldDecl.
3129     bool InitList;
3130     FieldDecl *InitListFieldDecl;
3131     llvm::SmallVector<unsigned, 4> InitFieldIndex;
3132 
3133   public:
3134     typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
3135     UninitializedFieldVisitor(Sema &S,
3136                               llvm::SmallPtrSetImpl<ValueDecl*> &Decls,
3137                               llvm::SmallPtrSetImpl<QualType> &BaseClasses)
3138       : Inherited(S.Context), S(S), Decls(Decls), BaseClasses(BaseClasses),
3139         Constructor(nullptr), InitList(false), InitListFieldDecl(nullptr) {}
3140 
3141     // Returns true if the use of ME is not an uninitialized use.
3142     bool IsInitListMemberExprInitialized(MemberExpr *ME,
3143                                          bool CheckReferenceOnly) {
3144       llvm::SmallVector<FieldDecl*, 4> Fields;
3145       bool ReferenceField = false;
3146       while (ME) {
3147         FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
3148         if (!FD)
3149           return false;
3150         Fields.push_back(FD);
3151         if (FD->getType()->isReferenceType())
3152           ReferenceField = true;
3153         ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParenImpCasts());
3154       }
3155 
3156       // Binding a reference to an unintialized field is not an
3157       // uninitialized use.
3158       if (CheckReferenceOnly && !ReferenceField)
3159         return true;
3160 
3161       llvm::SmallVector<unsigned, 4> UsedFieldIndex;
3162       // Discard the first field since it is the field decl that is being
3163       // initialized.
3164       for (auto I = Fields.rbegin() + 1, E = Fields.rend(); I != E; ++I) {
3165         UsedFieldIndex.push_back((*I)->getFieldIndex());
3166       }
3167 
3168       for (auto UsedIter = UsedFieldIndex.begin(),
3169                 UsedEnd = UsedFieldIndex.end(),
3170                 OrigIter = InitFieldIndex.begin(),
3171                 OrigEnd = InitFieldIndex.end();
3172            UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) {
3173         if (*UsedIter < *OrigIter)
3174           return true;
3175         if (*UsedIter > *OrigIter)
3176           break;
3177       }
3178 
3179       return false;
3180     }
3181 
3182     void HandleMemberExpr(MemberExpr *ME, bool CheckReferenceOnly,
3183                           bool AddressOf) {
3184       if (isa<EnumConstantDecl>(ME->getMemberDecl()))
3185         return;
3186 
3187       // FieldME is the inner-most MemberExpr that is not an anonymous struct
3188       // or union.
3189       MemberExpr *FieldME = ME;
3190 
3191       bool AllPODFields = FieldME->getType().isPODType(S.Context);
3192 
3193       Expr *Base = ME;
3194       while (MemberExpr *SubME =
3195                  dyn_cast<MemberExpr>(Base->IgnoreParenImpCasts())) {
3196 
3197         if (isa<VarDecl>(SubME->getMemberDecl()))
3198           return;
3199 
3200         if (FieldDecl *FD = dyn_cast<FieldDecl>(SubME->getMemberDecl()))
3201           if (!FD->isAnonymousStructOrUnion())
3202             FieldME = SubME;
3203 
3204         if (!FieldME->getType().isPODType(S.Context))
3205           AllPODFields = false;
3206 
3207         Base = SubME->getBase();
3208       }
3209 
3210       if (!isa<CXXThisExpr>(Base->IgnoreParenImpCasts()))
3211         return;
3212 
3213       if (AddressOf && AllPODFields)
3214         return;
3215 
3216       ValueDecl* FoundVD = FieldME->getMemberDecl();
3217 
3218       if (ImplicitCastExpr *BaseCast = dyn_cast<ImplicitCastExpr>(Base)) {
3219         while (isa<ImplicitCastExpr>(BaseCast->getSubExpr())) {
3220           BaseCast = cast<ImplicitCastExpr>(BaseCast->getSubExpr());
3221         }
3222 
3223         if (BaseCast->getCastKind() == CK_UncheckedDerivedToBase) {
3224           QualType T = BaseCast->getType();
3225           if (T->isPointerType() &&
3226               BaseClasses.count(T->getPointeeType())) {
3227             S.Diag(FieldME->getExprLoc(), diag::warn_base_class_is_uninit)
3228                 << T->getPointeeType() << FoundVD;
3229           }
3230         }
3231       }
3232 
3233       if (!Decls.count(FoundVD))
3234         return;
3235 
3236       const bool IsReference = FoundVD->getType()->isReferenceType();
3237 
3238       if (InitList && !AddressOf && FoundVD == InitListFieldDecl) {
3239         // Special checking for initializer lists.
3240         if (IsInitListMemberExprInitialized(ME, CheckReferenceOnly)) {
3241           return;
3242         }
3243       } else {
3244         // Prevent double warnings on use of unbounded references.
3245         if (CheckReferenceOnly && !IsReference)
3246           return;
3247       }
3248 
3249       unsigned diag = IsReference
3250           ? diag::warn_reference_field_is_uninit
3251           : diag::warn_field_is_uninit;
3252       S.Diag(FieldME->getExprLoc(), diag) << FoundVD;
3253       if (Constructor)
3254         S.Diag(Constructor->getLocation(),
3255                diag::note_uninit_in_this_constructor)
3256           << (Constructor->isDefaultConstructor() && Constructor->isImplicit());
3257 
3258     }
3259 
3260     void HandleValue(Expr *E, bool AddressOf) {
3261       E = E->IgnoreParens();
3262 
3263       if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
3264         HandleMemberExpr(ME, false /*CheckReferenceOnly*/,
3265                          AddressOf /*AddressOf*/);
3266         return;
3267       }
3268 
3269       if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
3270         Visit(CO->getCond());
3271         HandleValue(CO->getTrueExpr(), AddressOf);
3272         HandleValue(CO->getFalseExpr(), AddressOf);
3273         return;
3274       }
3275 
3276       if (BinaryConditionalOperator *BCO =
3277               dyn_cast<BinaryConditionalOperator>(E)) {
3278         Visit(BCO->getCond());
3279         HandleValue(BCO->getFalseExpr(), AddressOf);
3280         return;
3281       }
3282 
3283       if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
3284         HandleValue(OVE->getSourceExpr(), AddressOf);
3285         return;
3286       }
3287 
3288       if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
3289         switch (BO->getOpcode()) {
3290         default:
3291           break;
3292         case(BO_PtrMemD):
3293         case(BO_PtrMemI):
3294           HandleValue(BO->getLHS(), AddressOf);
3295           Visit(BO->getRHS());
3296           return;
3297         case(BO_Comma):
3298           Visit(BO->getLHS());
3299           HandleValue(BO->getRHS(), AddressOf);
3300           return;
3301         }
3302       }
3303 
3304       Visit(E);
3305     }
3306 
3307     void CheckInitListExpr(InitListExpr *ILE) {
3308       InitFieldIndex.push_back(0);
3309       for (auto Child : ILE->children()) {
3310         if (InitListExpr *SubList = dyn_cast<InitListExpr>(Child)) {
3311           CheckInitListExpr(SubList);
3312         } else {
3313           Visit(Child);
3314         }
3315         ++InitFieldIndex.back();
3316       }
3317       InitFieldIndex.pop_back();
3318     }
3319 
3320     void CheckInitializer(Expr *E, const CXXConstructorDecl *FieldConstructor,
3321                           FieldDecl *Field, const Type *BaseClass) {
3322       // Remove Decls that may have been initialized in the previous
3323       // initializer.
3324       for (ValueDecl* VD : DeclsToRemove)
3325         Decls.erase(VD);
3326       DeclsToRemove.clear();
3327 
3328       Constructor = FieldConstructor;
3329       InitListExpr *ILE = dyn_cast<InitListExpr>(E);
3330 
3331       if (ILE && Field) {
3332         InitList = true;
3333         InitListFieldDecl = Field;
3334         InitFieldIndex.clear();
3335         CheckInitListExpr(ILE);
3336       } else {
3337         InitList = false;
3338         Visit(E);
3339       }
3340 
3341       if (Field)
3342         Decls.erase(Field);
3343       if (BaseClass)
3344         BaseClasses.erase(BaseClass->getCanonicalTypeInternal());
3345     }
3346 
3347     void VisitMemberExpr(MemberExpr *ME) {
3348       // All uses of unbounded reference fields will warn.
3349       HandleMemberExpr(ME, true /*CheckReferenceOnly*/, false /*AddressOf*/);
3350     }
3351 
3352     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
3353       if (E->getCastKind() == CK_LValueToRValue) {
3354         HandleValue(E->getSubExpr(), false /*AddressOf*/);
3355         return;
3356       }
3357 
3358       Inherited::VisitImplicitCastExpr(E);
3359     }
3360 
3361     void VisitCXXConstructExpr(CXXConstructExpr *E) {
3362       if (E->getConstructor()->isCopyConstructor()) {
3363         Expr *ArgExpr = E->getArg(0);
3364         if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr))
3365           if (ILE->getNumInits() == 1)
3366             ArgExpr = ILE->getInit(0);
3367         if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
3368           if (ICE->getCastKind() == CK_NoOp)
3369             ArgExpr = ICE->getSubExpr();
3370         HandleValue(ArgExpr, false /*AddressOf*/);
3371         return;
3372       }
3373       Inherited::VisitCXXConstructExpr(E);
3374     }
3375 
3376     void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
3377       Expr *Callee = E->getCallee();
3378       if (isa<MemberExpr>(Callee)) {
3379         HandleValue(Callee, false /*AddressOf*/);
3380         for (auto Arg : E->arguments())
3381           Visit(Arg);
3382         return;
3383       }
3384 
3385       Inherited::VisitCXXMemberCallExpr(E);
3386     }
3387 
3388     void VisitCallExpr(CallExpr *E) {
3389       // Treat std::move as a use.
3390       if (E->getNumArgs() == 1) {
3391         if (FunctionDecl *FD = E->getDirectCallee()) {
3392           if (FD->isInStdNamespace() && FD->getIdentifier() &&
3393               FD->getIdentifier()->isStr("move")) {
3394             HandleValue(E->getArg(0), false /*AddressOf*/);
3395             return;
3396           }
3397         }
3398       }
3399 
3400       Inherited::VisitCallExpr(E);
3401     }
3402 
3403     void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
3404       Expr *Callee = E->getCallee();
3405 
3406       if (isa<UnresolvedLookupExpr>(Callee))
3407         return Inherited::VisitCXXOperatorCallExpr(E);
3408 
3409       Visit(Callee);
3410       for (auto Arg : E->arguments())
3411         HandleValue(Arg->IgnoreParenImpCasts(), false /*AddressOf*/);
3412     }
3413 
3414     void VisitBinaryOperator(BinaryOperator *E) {
3415       // If a field assignment is detected, remove the field from the
3416       // uninitiailized field set.
3417       if (E->getOpcode() == BO_Assign)
3418         if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getLHS()))
3419           if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
3420             if (!FD->getType()->isReferenceType())
3421               DeclsToRemove.push_back(FD);
3422 
3423       if (E->isCompoundAssignmentOp()) {
3424         HandleValue(E->getLHS(), false /*AddressOf*/);
3425         Visit(E->getRHS());
3426         return;
3427       }
3428 
3429       Inherited::VisitBinaryOperator(E);
3430     }
3431 
3432     void VisitUnaryOperator(UnaryOperator *E) {
3433       if (E->isIncrementDecrementOp()) {
3434         HandleValue(E->getSubExpr(), false /*AddressOf*/);
3435         return;
3436       }
3437       if (E->getOpcode() == UO_AddrOf) {
3438         if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getSubExpr())) {
3439           HandleValue(ME->getBase(), true /*AddressOf*/);
3440           return;
3441         }
3442       }
3443 
3444       Inherited::VisitUnaryOperator(E);
3445     }
3446   };
3447 
3448   // Diagnose value-uses of fields to initialize themselves, e.g.
3449   //   foo(foo)
3450   // where foo is not also a parameter to the constructor.
3451   // Also diagnose across field uninitialized use such as
3452   //   x(y), y(x)
3453   // TODO: implement -Wuninitialized and fold this into that framework.
3454   static void DiagnoseUninitializedFields(
3455       Sema &SemaRef, const CXXConstructorDecl *Constructor) {
3456 
3457     if (SemaRef.getDiagnostics().isIgnored(diag::warn_field_is_uninit,
3458                                            Constructor->getLocation())) {
3459       return;
3460     }
3461 
3462     if (Constructor->isInvalidDecl())
3463       return;
3464 
3465     const CXXRecordDecl *RD = Constructor->getParent();
3466 
3467     if (RD->getDescribedClassTemplate())
3468       return;
3469 
3470     // Holds fields that are uninitialized.
3471     llvm::SmallPtrSet<ValueDecl*, 4> UninitializedFields;
3472 
3473     // At the beginning, all fields are uninitialized.
3474     for (auto *I : RD->decls()) {
3475       if (auto *FD = dyn_cast<FieldDecl>(I)) {
3476         UninitializedFields.insert(FD);
3477       } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) {
3478         UninitializedFields.insert(IFD->getAnonField());
3479       }
3480     }
3481 
3482     llvm::SmallPtrSet<QualType, 4> UninitializedBaseClasses;
3483     for (auto I : RD->bases())
3484       UninitializedBaseClasses.insert(I.getType().getCanonicalType());
3485 
3486     if (UninitializedFields.empty() && UninitializedBaseClasses.empty())
3487       return;
3488 
3489     UninitializedFieldVisitor UninitializedChecker(SemaRef,
3490                                                    UninitializedFields,
3491                                                    UninitializedBaseClasses);
3492 
3493     for (const auto *FieldInit : Constructor->inits()) {
3494       if (UninitializedFields.empty() && UninitializedBaseClasses.empty())
3495         break;
3496 
3497       Expr *InitExpr = FieldInit->getInit();
3498       if (!InitExpr)
3499         continue;
3500 
3501       if (CXXDefaultInitExpr *Default =
3502               dyn_cast<CXXDefaultInitExpr>(InitExpr)) {
3503         InitExpr = Default->getExpr();
3504         if (!InitExpr)
3505           continue;
3506         // In class initializers will point to the constructor.
3507         UninitializedChecker.CheckInitializer(InitExpr, Constructor,
3508                                               FieldInit->getAnyMember(),
3509                                               FieldInit->getBaseClass());
3510       } else {
3511         UninitializedChecker.CheckInitializer(InitExpr, nullptr,
3512                                               FieldInit->getAnyMember(),
3513                                               FieldInit->getBaseClass());
3514       }
3515     }
3516   }
3517 } // namespace
3518 
3519 /// \brief Enter a new C++ default initializer scope. After calling this, the
3520 /// caller must call \ref ActOnFinishCXXInClassMemberInitializer, even if
3521 /// parsing or instantiating the initializer failed.
3522 void Sema::ActOnStartCXXInClassMemberInitializer() {
3523   // Create a synthetic function scope to represent the call to the constructor
3524   // that notionally surrounds a use of this initializer.
3525   PushFunctionScope();
3526 }
3527 
3528 /// \brief This is invoked after parsing an in-class initializer for a
3529 /// non-static C++ class member, and after instantiating an in-class initializer
3530 /// in a class template. Such actions are deferred until the class is complete.
3531 void Sema::ActOnFinishCXXInClassMemberInitializer(Decl *D,
3532                                                   SourceLocation InitLoc,
3533                                                   Expr *InitExpr) {
3534   // Pop the notional constructor scope we created earlier.
3535   PopFunctionScopeInfo(nullptr, D);
3536 
3537   FieldDecl *FD = dyn_cast<FieldDecl>(D);
3538   assert((isa<MSPropertyDecl>(D) || FD->getInClassInitStyle() != ICIS_NoInit) &&
3539          "must set init style when field is created");
3540 
3541   if (!InitExpr) {
3542     D->setInvalidDecl();
3543     if (FD)
3544       FD->removeInClassInitializer();
3545     return;
3546   }
3547 
3548   if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
3549     FD->setInvalidDecl();
3550     FD->removeInClassInitializer();
3551     return;
3552   }
3553 
3554   ExprResult Init = InitExpr;
3555   if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
3556     InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
3557     InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
3558         ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
3559         : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
3560     InitializationSequence Seq(*this, Entity, Kind, InitExpr);
3561     Init = Seq.Perform(*this, Entity, Kind, InitExpr);
3562     if (Init.isInvalid()) {
3563       FD->setInvalidDecl();
3564       return;
3565     }
3566   }
3567 
3568   // C++11 [class.base.init]p7:
3569   //   The initialization of each base and member constitutes a
3570   //   full-expression.
3571   Init = ActOnFinishFullExpr(Init.get(), InitLoc);
3572   if (Init.isInvalid()) {
3573     FD->setInvalidDecl();
3574     return;
3575   }
3576 
3577   InitExpr = Init.get();
3578 
3579   FD->setInClassInitializer(InitExpr);
3580 }
3581 
3582 /// \brief Find the direct and/or virtual base specifiers that
3583 /// correspond to the given base type, for use in base initialization
3584 /// within a constructor.
3585 static bool FindBaseInitializer(Sema &SemaRef,
3586                                 CXXRecordDecl *ClassDecl,
3587                                 QualType BaseType,
3588                                 const CXXBaseSpecifier *&DirectBaseSpec,
3589                                 const CXXBaseSpecifier *&VirtualBaseSpec) {
3590   // First, check for a direct base class.
3591   DirectBaseSpec = nullptr;
3592   for (const auto &Base : ClassDecl->bases()) {
3593     if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base.getType())) {
3594       // We found a direct base of this type. That's what we're
3595       // initializing.
3596       DirectBaseSpec = &Base;
3597       break;
3598     }
3599   }
3600 
3601   // Check for a virtual base class.
3602   // FIXME: We might be able to short-circuit this if we know in advance that
3603   // there are no virtual bases.
3604   VirtualBaseSpec = nullptr;
3605   if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
3606     // We haven't found a base yet; search the class hierarchy for a
3607     // virtual base class.
3608     CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
3609                        /*DetectVirtual=*/false);
3610     if (SemaRef.IsDerivedFrom(ClassDecl->getLocation(),
3611                               SemaRef.Context.getTypeDeclType(ClassDecl),
3612                               BaseType, Paths)) {
3613       for (CXXBasePaths::paths_iterator Path = Paths.begin();
3614            Path != Paths.end(); ++Path) {
3615         if (Path->back().Base->isVirtual()) {
3616           VirtualBaseSpec = Path->back().Base;
3617           break;
3618         }
3619       }
3620     }
3621   }
3622 
3623   return DirectBaseSpec || VirtualBaseSpec;
3624 }
3625 
3626 /// \brief Handle a C++ member initializer using braced-init-list syntax.
3627 MemInitResult
3628 Sema::ActOnMemInitializer(Decl *ConstructorD,
3629                           Scope *S,
3630                           CXXScopeSpec &SS,
3631                           IdentifierInfo *MemberOrBase,
3632                           ParsedType TemplateTypeTy,
3633                           const DeclSpec &DS,
3634                           SourceLocation IdLoc,
3635                           Expr *InitList,
3636                           SourceLocation EllipsisLoc) {
3637   return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
3638                              DS, IdLoc, InitList,
3639                              EllipsisLoc);
3640 }
3641 
3642 /// \brief Handle a C++ member initializer using parentheses syntax.
3643 MemInitResult
3644 Sema::ActOnMemInitializer(Decl *ConstructorD,
3645                           Scope *S,
3646                           CXXScopeSpec &SS,
3647                           IdentifierInfo *MemberOrBase,
3648                           ParsedType TemplateTypeTy,
3649                           const DeclSpec &DS,
3650                           SourceLocation IdLoc,
3651                           SourceLocation LParenLoc,
3652                           ArrayRef<Expr *> Args,
3653                           SourceLocation RParenLoc,
3654                           SourceLocation EllipsisLoc) {
3655   Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
3656                                            Args, RParenLoc);
3657   return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
3658                              DS, IdLoc, List, EllipsisLoc);
3659 }
3660 
3661 namespace {
3662 
3663 // Callback to only accept typo corrections that can be a valid C++ member
3664 // intializer: either a non-static field member or a base class.
3665 class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
3666 public:
3667   explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
3668       : ClassDecl(ClassDecl) {}
3669 
3670   bool ValidateCandidate(const TypoCorrection &candidate) override {
3671     if (NamedDecl *ND = candidate.getCorrectionDecl()) {
3672       if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
3673         return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
3674       return isa<TypeDecl>(ND);
3675     }
3676     return false;
3677   }
3678 
3679 private:
3680   CXXRecordDecl *ClassDecl;
3681 };
3682 
3683 }
3684 
3685 /// \brief Handle a C++ member initializer.
3686 MemInitResult
3687 Sema::BuildMemInitializer(Decl *ConstructorD,
3688                           Scope *S,
3689                           CXXScopeSpec &SS,
3690                           IdentifierInfo *MemberOrBase,
3691                           ParsedType TemplateTypeTy,
3692                           const DeclSpec &DS,
3693                           SourceLocation IdLoc,
3694                           Expr *Init,
3695                           SourceLocation EllipsisLoc) {
3696   ExprResult Res = CorrectDelayedTyposInExpr(Init);
3697   if (!Res.isUsable())
3698     return true;
3699   Init = Res.get();
3700 
3701   if (!ConstructorD)
3702     return true;
3703 
3704   AdjustDeclIfTemplate(ConstructorD);
3705 
3706   CXXConstructorDecl *Constructor
3707     = dyn_cast<CXXConstructorDecl>(ConstructorD);
3708   if (!Constructor) {
3709     // The user wrote a constructor initializer on a function that is
3710     // not a C++ constructor. Ignore the error for now, because we may
3711     // have more member initializers coming; we'll diagnose it just
3712     // once in ActOnMemInitializers.
3713     return true;
3714   }
3715 
3716   CXXRecordDecl *ClassDecl = Constructor->getParent();
3717 
3718   // C++ [class.base.init]p2:
3719   //   Names in a mem-initializer-id are looked up in the scope of the
3720   //   constructor's class and, if not found in that scope, are looked
3721   //   up in the scope containing the constructor's definition.
3722   //   [Note: if the constructor's class contains a member with the
3723   //   same name as a direct or virtual base class of the class, a
3724   //   mem-initializer-id naming the member or base class and composed
3725   //   of a single identifier refers to the class member. A
3726   //   mem-initializer-id for the hidden base class may be specified
3727   //   using a qualified name. ]
3728   if (!SS.getScopeRep() && !TemplateTypeTy) {
3729     // Look for a member, first.
3730     DeclContext::lookup_result Result = ClassDecl->lookup(MemberOrBase);
3731     if (!Result.empty()) {
3732       ValueDecl *Member;
3733       if ((Member = dyn_cast<FieldDecl>(Result.front())) ||
3734           (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) {
3735         if (EllipsisLoc.isValid())
3736           Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
3737             << MemberOrBase
3738             << SourceRange(IdLoc, Init->getSourceRange().getEnd());
3739 
3740         return BuildMemberInitializer(Member, Init, IdLoc);
3741       }
3742     }
3743   }
3744   // It didn't name a member, so see if it names a class.
3745   QualType BaseType;
3746   TypeSourceInfo *TInfo = nullptr;
3747 
3748   if (TemplateTypeTy) {
3749     BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
3750   } else if (DS.getTypeSpecType() == TST_decltype) {
3751     BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
3752   } else if (DS.getTypeSpecType() == TST_decltype_auto) {
3753     Diag(DS.getTypeSpecTypeLoc(), diag::err_decltype_auto_invalid);
3754     return true;
3755   } else {
3756     LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
3757     LookupParsedName(R, S, &SS);
3758 
3759     TypeDecl *TyD = R.getAsSingle<TypeDecl>();
3760     if (!TyD) {
3761       if (R.isAmbiguous()) return true;
3762 
3763       // We don't want access-control diagnostics here.
3764       R.suppressDiagnostics();
3765 
3766       if (SS.isSet() && isDependentScopeSpecifier(SS)) {
3767         bool NotUnknownSpecialization = false;
3768         DeclContext *DC = computeDeclContext(SS, false);
3769         if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
3770           NotUnknownSpecialization = !Record->hasAnyDependentBases();
3771 
3772         if (!NotUnknownSpecialization) {
3773           // When the scope specifier can refer to a member of an unknown
3774           // specialization, we take it as a type name.
3775           BaseType = CheckTypenameType(ETK_None, SourceLocation(),
3776                                        SS.getWithLocInContext(Context),
3777                                        *MemberOrBase, IdLoc);
3778           if (BaseType.isNull())
3779             return true;
3780 
3781           TInfo = Context.CreateTypeSourceInfo(BaseType);
3782           DependentNameTypeLoc TL =
3783               TInfo->getTypeLoc().castAs<DependentNameTypeLoc>();
3784           if (!TL.isNull()) {
3785             TL.setNameLoc(IdLoc);
3786             TL.setElaboratedKeywordLoc(SourceLocation());
3787             TL.setQualifierLoc(SS.getWithLocInContext(Context));
3788           }
3789 
3790           R.clear();
3791           R.setLookupName(MemberOrBase);
3792         }
3793       }
3794 
3795       // If no results were found, try to correct typos.
3796       TypoCorrection Corr;
3797       if (R.empty() && BaseType.isNull() &&
3798           (Corr = CorrectTypo(
3799                R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
3800                llvm::make_unique<MemInitializerValidatorCCC>(ClassDecl),
3801                CTK_ErrorRecovery, ClassDecl))) {
3802         if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
3803           // We have found a non-static data member with a similar
3804           // name to what was typed; complain and initialize that
3805           // member.
3806           diagnoseTypo(Corr,
3807                        PDiag(diag::err_mem_init_not_member_or_class_suggest)
3808                          << MemberOrBase << true);
3809           return BuildMemberInitializer(Member, Init, IdLoc);
3810         } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
3811           const CXXBaseSpecifier *DirectBaseSpec;
3812           const CXXBaseSpecifier *VirtualBaseSpec;
3813           if (FindBaseInitializer(*this, ClassDecl,
3814                                   Context.getTypeDeclType(Type),
3815                                   DirectBaseSpec, VirtualBaseSpec)) {
3816             // We have found a direct or virtual base class with a
3817             // similar name to what was typed; complain and initialize
3818             // that base class.
3819             diagnoseTypo(Corr,
3820                          PDiag(diag::err_mem_init_not_member_or_class_suggest)
3821                            << MemberOrBase << false,
3822                          PDiag() /*Suppress note, we provide our own.*/);
3823 
3824             const CXXBaseSpecifier *BaseSpec = DirectBaseSpec ? DirectBaseSpec
3825                                                               : VirtualBaseSpec;
3826             Diag(BaseSpec->getLocStart(),
3827                  diag::note_base_class_specified_here)
3828               << BaseSpec->getType()
3829               << BaseSpec->getSourceRange();
3830 
3831             TyD = Type;
3832           }
3833         }
3834       }
3835 
3836       if (!TyD && BaseType.isNull()) {
3837         Diag(IdLoc, diag::err_mem_init_not_member_or_class)
3838           << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
3839         return true;
3840       }
3841     }
3842 
3843     if (BaseType.isNull()) {
3844       BaseType = Context.getTypeDeclType(TyD);
3845       MarkAnyDeclReferenced(TyD->getLocation(), TyD, /*OdrUse=*/false);
3846       if (SS.isSet()) {
3847         BaseType = Context.getElaboratedType(ETK_None, SS.getScopeRep(),
3848                                              BaseType);
3849         TInfo = Context.CreateTypeSourceInfo(BaseType);
3850         ElaboratedTypeLoc TL = TInfo->getTypeLoc().castAs<ElaboratedTypeLoc>();
3851         TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc);
3852         TL.setElaboratedKeywordLoc(SourceLocation());
3853         TL.setQualifierLoc(SS.getWithLocInContext(Context));
3854       }
3855     }
3856   }
3857 
3858   if (!TInfo)
3859     TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
3860 
3861   return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
3862 }
3863 
3864 /// Checks a member initializer expression for cases where reference (or
3865 /// pointer) members are bound to by-value parameters (or their addresses).
3866 static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
3867                                                Expr *Init,
3868                                                SourceLocation IdLoc) {
3869   QualType MemberTy = Member->getType();
3870 
3871   // We only handle pointers and references currently.
3872   // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
3873   if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
3874     return;
3875 
3876   const bool IsPointer = MemberTy->isPointerType();
3877   if (IsPointer) {
3878     if (const UnaryOperator *Op
3879           = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
3880       // The only case we're worried about with pointers requires taking the
3881       // address.
3882       if (Op->getOpcode() != UO_AddrOf)
3883         return;
3884 
3885       Init = Op->getSubExpr();
3886     } else {
3887       // We only handle address-of expression initializers for pointers.
3888       return;
3889     }
3890   }
3891 
3892   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
3893     // We only warn when referring to a non-reference parameter declaration.
3894     const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
3895     if (!Parameter || Parameter->getType()->isReferenceType())
3896       return;
3897 
3898     S.Diag(Init->getExprLoc(),
3899            IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
3900                      : diag::warn_bind_ref_member_to_parameter)
3901       << Member << Parameter << Init->getSourceRange();
3902   } else {
3903     // Other initializers are fine.
3904     return;
3905   }
3906 
3907   S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
3908     << (unsigned)IsPointer;
3909 }
3910 
3911 MemInitResult
3912 Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
3913                              SourceLocation IdLoc) {
3914   FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
3915   IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
3916   assert((DirectMember || IndirectMember) &&
3917          "Member must be a FieldDecl or IndirectFieldDecl");
3918 
3919   if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
3920     return true;
3921 
3922   if (Member->isInvalidDecl())
3923     return true;
3924 
3925   MultiExprArg Args;
3926   if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
3927     Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
3928   } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) {
3929     Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
3930   } else {
3931     // Template instantiation doesn't reconstruct ParenListExprs for us.
3932     Args = Init;
3933   }
3934 
3935   SourceRange InitRange = Init->getSourceRange();
3936 
3937   if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
3938     // Can't check initialization for a member of dependent type or when
3939     // any of the arguments are type-dependent expressions.
3940     DiscardCleanupsInEvaluationContext();
3941   } else {
3942     bool InitList = false;
3943     if (isa<InitListExpr>(Init)) {
3944       InitList = true;
3945       Args = Init;
3946     }
3947 
3948     // Initialize the member.
3949     InitializedEntity MemberEntity =
3950       DirectMember ? InitializedEntity::InitializeMember(DirectMember, nullptr)
3951                    : InitializedEntity::InitializeMember(IndirectMember,
3952                                                          nullptr);
3953     InitializationKind Kind =
3954       InitList ? InitializationKind::CreateDirectList(IdLoc)
3955                : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
3956                                                   InitRange.getEnd());
3957 
3958     InitializationSequence InitSeq(*this, MemberEntity, Kind, Args);
3959     ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args,
3960                                             nullptr);
3961     if (MemberInit.isInvalid())
3962       return true;
3963 
3964     CheckForDanglingReferenceOrPointer(*this, Member, MemberInit.get(), IdLoc);
3965 
3966     // C++11 [class.base.init]p7:
3967     //   The initialization of each base and member constitutes a
3968     //   full-expression.
3969     MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin());
3970     if (MemberInit.isInvalid())
3971       return true;
3972 
3973     Init = MemberInit.get();
3974   }
3975 
3976   if (DirectMember) {
3977     return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
3978                                             InitRange.getBegin(), Init,
3979                                             InitRange.getEnd());
3980   } else {
3981     return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
3982                                             InitRange.getBegin(), Init,
3983                                             InitRange.getEnd());
3984   }
3985 }
3986 
3987 MemInitResult
3988 Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
3989                                  CXXRecordDecl *ClassDecl) {
3990   SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
3991   if (!LangOpts.CPlusPlus11)
3992     return Diag(NameLoc, diag::err_delegating_ctor)
3993       << TInfo->getTypeLoc().getLocalSourceRange();
3994   Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
3995 
3996   bool InitList = true;
3997   MultiExprArg Args = Init;
3998   if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
3999     InitList = false;
4000     Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
4001   }
4002 
4003   SourceRange InitRange = Init->getSourceRange();
4004   // Initialize the object.
4005   InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
4006                                      QualType(ClassDecl->getTypeForDecl(), 0));
4007   InitializationKind Kind =
4008     InitList ? InitializationKind::CreateDirectList(NameLoc)
4009              : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
4010                                                 InitRange.getEnd());
4011   InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args);
4012   ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
4013                                               Args, nullptr);
4014   if (DelegationInit.isInvalid())
4015     return true;
4016 
4017   assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
4018          "Delegating constructor with no target?");
4019 
4020   // C++11 [class.base.init]p7:
4021   //   The initialization of each base and member constitutes a
4022   //   full-expression.
4023   DelegationInit = ActOnFinishFullExpr(DelegationInit.get(),
4024                                        InitRange.getBegin());
4025   if (DelegationInit.isInvalid())
4026     return true;
4027 
4028   // If we are in a dependent context, template instantiation will
4029   // perform this type-checking again. Just save the arguments that we
4030   // received in a ParenListExpr.
4031   // FIXME: This isn't quite ideal, since our ASTs don't capture all
4032   // of the information that we have about the base
4033   // initializer. However, deconstructing the ASTs is a dicey process,
4034   // and this approach is far more likely to get the corner cases right.
4035   if (CurContext->isDependentContext())
4036     DelegationInit = Init;
4037 
4038   return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
4039                                           DelegationInit.getAs<Expr>(),
4040                                           InitRange.getEnd());
4041 }
4042 
4043 MemInitResult
4044 Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
4045                            Expr *Init, CXXRecordDecl *ClassDecl,
4046                            SourceLocation EllipsisLoc) {
4047   SourceLocation BaseLoc
4048     = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
4049 
4050   if (!BaseType->isDependentType() && !BaseType->isRecordType())
4051     return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
4052              << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
4053 
4054   // C++ [class.base.init]p2:
4055   //   [...] Unless the mem-initializer-id names a nonstatic data
4056   //   member of the constructor's class or a direct or virtual base
4057   //   of that class, the mem-initializer is ill-formed. A
4058   //   mem-initializer-list can initialize a base class using any
4059   //   name that denotes that base class type.
4060   bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
4061 
4062   SourceRange InitRange = Init->getSourceRange();
4063   if (EllipsisLoc.isValid()) {
4064     // This is a pack expansion.
4065     if (!BaseType->containsUnexpandedParameterPack())  {
4066       Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
4067         << SourceRange(BaseLoc, InitRange.getEnd());
4068 
4069       EllipsisLoc = SourceLocation();
4070     }
4071   } else {
4072     // Check for any unexpanded parameter packs.
4073     if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
4074       return true;
4075 
4076     if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
4077       return true;
4078   }
4079 
4080   // Check for direct and virtual base classes.
4081   const CXXBaseSpecifier *DirectBaseSpec = nullptr;
4082   const CXXBaseSpecifier *VirtualBaseSpec = nullptr;
4083   if (!Dependent) {
4084     if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
4085                                        BaseType))
4086       return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
4087 
4088     FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
4089                         VirtualBaseSpec);
4090 
4091     // C++ [base.class.init]p2:
4092     // Unless the mem-initializer-id names a nonstatic data member of the
4093     // constructor's class or a direct or virtual base of that class, the
4094     // mem-initializer is ill-formed.
4095     if (!DirectBaseSpec && !VirtualBaseSpec) {
4096       // If the class has any dependent bases, then it's possible that
4097       // one of those types will resolve to the same type as
4098       // BaseType. Therefore, just treat this as a dependent base
4099       // class initialization.  FIXME: Should we try to check the
4100       // initialization anyway? It seems odd.
4101       if (ClassDecl->hasAnyDependentBases())
4102         Dependent = true;
4103       else
4104         return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
4105           << BaseType << Context.getTypeDeclType(ClassDecl)
4106           << BaseTInfo->getTypeLoc().getLocalSourceRange();
4107     }
4108   }
4109 
4110   if (Dependent) {
4111     DiscardCleanupsInEvaluationContext();
4112 
4113     return new (Context) CXXCtorInitializer(Context, BaseTInfo,
4114                                             /*IsVirtual=*/false,
4115                                             InitRange.getBegin(), Init,
4116                                             InitRange.getEnd(), EllipsisLoc);
4117   }
4118 
4119   // C++ [base.class.init]p2:
4120   //   If a mem-initializer-id is ambiguous because it designates both
4121   //   a direct non-virtual base class and an inherited virtual base
4122   //   class, the mem-initializer is ill-formed.
4123   if (DirectBaseSpec && VirtualBaseSpec)
4124     return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
4125       << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
4126 
4127   const CXXBaseSpecifier *BaseSpec = DirectBaseSpec;
4128   if (!BaseSpec)
4129     BaseSpec = VirtualBaseSpec;
4130 
4131   // Initialize the base.
4132   bool InitList = true;
4133   MultiExprArg Args = Init;
4134   if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
4135     InitList = false;
4136     Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
4137   }
4138 
4139   InitializedEntity BaseEntity =
4140     InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
4141   InitializationKind Kind =
4142     InitList ? InitializationKind::CreateDirectList(BaseLoc)
4143              : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
4144                                                 InitRange.getEnd());
4145   InitializationSequence InitSeq(*this, BaseEntity, Kind, Args);
4146   ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, nullptr);
4147   if (BaseInit.isInvalid())
4148     return true;
4149 
4150   // C++11 [class.base.init]p7:
4151   //   The initialization of each base and member constitutes a
4152   //   full-expression.
4153   BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin());
4154   if (BaseInit.isInvalid())
4155     return true;
4156 
4157   // If we are in a dependent context, template instantiation will
4158   // perform this type-checking again. Just save the arguments that we
4159   // received in a ParenListExpr.
4160   // FIXME: This isn't quite ideal, since our ASTs don't capture all
4161   // of the information that we have about the base
4162   // initializer. However, deconstructing the ASTs is a dicey process,
4163   // and this approach is far more likely to get the corner cases right.
4164   if (CurContext->isDependentContext())
4165     BaseInit = Init;
4166 
4167   return new (Context) CXXCtorInitializer(Context, BaseTInfo,
4168                                           BaseSpec->isVirtual(),
4169                                           InitRange.getBegin(),
4170                                           BaseInit.getAs<Expr>(),
4171                                           InitRange.getEnd(), EllipsisLoc);
4172 }
4173 
4174 // Create a static_cast\<T&&>(expr).
4175 static Expr *CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) {
4176   if (T.isNull()) T = E->getType();
4177   QualType TargetType = SemaRef.BuildReferenceType(
4178       T, /*SpelledAsLValue*/false, SourceLocation(), DeclarationName());
4179   SourceLocation ExprLoc = E->getLocStart();
4180   TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
4181       TargetType, ExprLoc);
4182 
4183   return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
4184                                    SourceRange(ExprLoc, ExprLoc),
4185                                    E->getSourceRange()).get();
4186 }
4187 
4188 /// ImplicitInitializerKind - How an implicit base or member initializer should
4189 /// initialize its base or member.
4190 enum ImplicitInitializerKind {
4191   IIK_Default,
4192   IIK_Copy,
4193   IIK_Move,
4194   IIK_Inherit
4195 };
4196 
4197 static bool
4198 BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
4199                              ImplicitInitializerKind ImplicitInitKind,
4200                              CXXBaseSpecifier *BaseSpec,
4201                              bool IsInheritedVirtualBase,
4202                              CXXCtorInitializer *&CXXBaseInit) {
4203   InitializedEntity InitEntity
4204     = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
4205                                         IsInheritedVirtualBase);
4206 
4207   ExprResult BaseInit;
4208 
4209   switch (ImplicitInitKind) {
4210   case IIK_Inherit:
4211   case IIK_Default: {
4212     InitializationKind InitKind
4213       = InitializationKind::CreateDefault(Constructor->getLocation());
4214     InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
4215     BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
4216     break;
4217   }
4218 
4219   case IIK_Move:
4220   case IIK_Copy: {
4221     bool Moving = ImplicitInitKind == IIK_Move;
4222     ParmVarDecl *Param = Constructor->getParamDecl(0);
4223     QualType ParamType = Param->getType().getNonReferenceType();
4224 
4225     Expr *CopyCtorArg =
4226       DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
4227                           SourceLocation(), Param, false,
4228                           Constructor->getLocation(), ParamType,
4229                           VK_LValue, nullptr);
4230 
4231     SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
4232 
4233     // Cast to the base class to avoid ambiguities.
4234     QualType ArgTy =
4235       SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
4236                                        ParamType.getQualifiers());
4237 
4238     if (Moving) {
4239       CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
4240     }
4241 
4242     CXXCastPath BasePath;
4243     BasePath.push_back(BaseSpec);
4244     CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
4245                                             CK_UncheckedDerivedToBase,
4246                                             Moving ? VK_XValue : VK_LValue,
4247                                             &BasePath).get();
4248 
4249     InitializationKind InitKind
4250       = InitializationKind::CreateDirect(Constructor->getLocation(),
4251                                          SourceLocation(), SourceLocation());
4252     InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, CopyCtorArg);
4253     BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg);
4254     break;
4255   }
4256   }
4257 
4258   BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
4259   if (BaseInit.isInvalid())
4260     return true;
4261 
4262   CXXBaseInit =
4263     new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
4264                SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
4265                                                         SourceLocation()),
4266                                              BaseSpec->isVirtual(),
4267                                              SourceLocation(),
4268                                              BaseInit.getAs<Expr>(),
4269                                              SourceLocation(),
4270                                              SourceLocation());
4271 
4272   return false;
4273 }
4274 
4275 static bool RefersToRValueRef(Expr *MemRef) {
4276   ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
4277   return Referenced->getType()->isRValueReferenceType();
4278 }
4279 
4280 static bool
4281 BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
4282                                ImplicitInitializerKind ImplicitInitKind,
4283                                FieldDecl *Field, IndirectFieldDecl *Indirect,
4284                                CXXCtorInitializer *&CXXMemberInit) {
4285   if (Field->isInvalidDecl())
4286     return true;
4287 
4288   SourceLocation Loc = Constructor->getLocation();
4289 
4290   if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
4291     bool Moving = ImplicitInitKind == IIK_Move;
4292     ParmVarDecl *Param = Constructor->getParamDecl(0);
4293     QualType ParamType = Param->getType().getNonReferenceType();
4294 
4295     // Suppress copying zero-width bitfields.
4296     if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
4297       return false;
4298 
4299     Expr *MemberExprBase =
4300       DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
4301                           SourceLocation(), Param, false,
4302                           Loc, ParamType, VK_LValue, nullptr);
4303 
4304     SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
4305 
4306     if (Moving) {
4307       MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
4308     }
4309 
4310     // Build a reference to this field within the parameter.
4311     CXXScopeSpec SS;
4312     LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
4313                               Sema::LookupMemberName);
4314     MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
4315                                   : cast<ValueDecl>(Field), AS_public);
4316     MemberLookup.resolveKind();
4317     ExprResult CtorArg
4318       = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
4319                                          ParamType, Loc,
4320                                          /*IsArrow=*/false,
4321                                          SS,
4322                                          /*TemplateKWLoc=*/SourceLocation(),
4323                                          /*FirstQualifierInScope=*/nullptr,
4324                                          MemberLookup,
4325                                          /*TemplateArgs=*/nullptr,
4326                                          /*S*/nullptr);
4327     if (CtorArg.isInvalid())
4328       return true;
4329 
4330     // C++11 [class.copy]p15:
4331     //   - if a member m has rvalue reference type T&&, it is direct-initialized
4332     //     with static_cast<T&&>(x.m);
4333     if (RefersToRValueRef(CtorArg.get())) {
4334       CtorArg = CastForMoving(SemaRef, CtorArg.get());
4335     }
4336 
4337     InitializedEntity Entity =
4338         Indirect ? InitializedEntity::InitializeMember(Indirect, nullptr,
4339                                                        /*Implicit*/ true)
4340                  : InitializedEntity::InitializeMember(Field, nullptr,
4341                                                        /*Implicit*/ true);
4342 
4343     // Direct-initialize to use the copy constructor.
4344     InitializationKind InitKind =
4345       InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
4346 
4347     Expr *CtorArgE = CtorArg.getAs<Expr>();
4348     InitializationSequence InitSeq(SemaRef, Entity, InitKind, CtorArgE);
4349     ExprResult MemberInit =
4350         InitSeq.Perform(SemaRef, Entity, InitKind, MultiExprArg(&CtorArgE, 1));
4351     MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
4352     if (MemberInit.isInvalid())
4353       return true;
4354 
4355     if (Indirect)
4356       CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(
4357           SemaRef.Context, Indirect, Loc, Loc, MemberInit.getAs<Expr>(), Loc);
4358     else
4359       CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(
4360           SemaRef.Context, Field, Loc, Loc, MemberInit.getAs<Expr>(), Loc);
4361     return false;
4362   }
4363 
4364   assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) &&
4365          "Unhandled implicit init kind!");
4366 
4367   QualType FieldBaseElementType =
4368     SemaRef.Context.getBaseElementType(Field->getType());
4369 
4370   if (FieldBaseElementType->isRecordType()) {
4371     InitializedEntity InitEntity =
4372         Indirect ? InitializedEntity::InitializeMember(Indirect, nullptr,
4373                                                        /*Implicit*/ true)
4374                  : InitializedEntity::InitializeMember(Field, nullptr,
4375                                                        /*Implicit*/ true);
4376     InitializationKind InitKind =
4377       InitializationKind::CreateDefault(Loc);
4378 
4379     InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
4380     ExprResult MemberInit =
4381       InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
4382 
4383     MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
4384     if (MemberInit.isInvalid())
4385       return true;
4386 
4387     if (Indirect)
4388       CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
4389                                                                Indirect, Loc,
4390                                                                Loc,
4391                                                                MemberInit.get(),
4392                                                                Loc);
4393     else
4394       CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
4395                                                                Field, Loc, Loc,
4396                                                                MemberInit.get(),
4397                                                                Loc);
4398     return false;
4399   }
4400 
4401   if (!Field->getParent()->isUnion()) {
4402     if (FieldBaseElementType->isReferenceType()) {
4403       SemaRef.Diag(Constructor->getLocation(),
4404                    diag::err_uninitialized_member_in_ctor)
4405       << (int)Constructor->isImplicit()
4406       << SemaRef.Context.getTagDeclType(Constructor->getParent())
4407       << 0 << Field->getDeclName();
4408       SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
4409       return true;
4410     }
4411 
4412     if (FieldBaseElementType.isConstQualified()) {
4413       SemaRef.Diag(Constructor->getLocation(),
4414                    diag::err_uninitialized_member_in_ctor)
4415       << (int)Constructor->isImplicit()
4416       << SemaRef.Context.getTagDeclType(Constructor->getParent())
4417       << 1 << Field->getDeclName();
4418       SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
4419       return true;
4420     }
4421   }
4422 
4423   if (FieldBaseElementType.hasNonTrivialObjCLifetime()) {
4424     // ARC and Weak:
4425     //   Default-initialize Objective-C pointers to NULL.
4426     CXXMemberInit
4427       = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
4428                                                  Loc, Loc,
4429                  new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
4430                                                  Loc);
4431     return false;
4432   }
4433 
4434   // Nothing to initialize.
4435   CXXMemberInit = nullptr;
4436   return false;
4437 }
4438 
4439 namespace {
4440 struct BaseAndFieldInfo {
4441   Sema &S;
4442   CXXConstructorDecl *Ctor;
4443   bool AnyErrorsInInits;
4444   ImplicitInitializerKind IIK;
4445   llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
4446   SmallVector<CXXCtorInitializer*, 8> AllToInit;
4447   llvm::DenseMap<TagDecl*, FieldDecl*> ActiveUnionMember;
4448 
4449   BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
4450     : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
4451     bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
4452     if (Ctor->getInheritedConstructor())
4453       IIK = IIK_Inherit;
4454     else if (Generated && Ctor->isCopyConstructor())
4455       IIK = IIK_Copy;
4456     else if (Generated && Ctor->isMoveConstructor())
4457       IIK = IIK_Move;
4458     else
4459       IIK = IIK_Default;
4460   }
4461 
4462   bool isImplicitCopyOrMove() const {
4463     switch (IIK) {
4464     case IIK_Copy:
4465     case IIK_Move:
4466       return true;
4467 
4468     case IIK_Default:
4469     case IIK_Inherit:
4470       return false;
4471     }
4472 
4473     llvm_unreachable("Invalid ImplicitInitializerKind!");
4474   }
4475 
4476   bool addFieldInitializer(CXXCtorInitializer *Init) {
4477     AllToInit.push_back(Init);
4478 
4479     // Check whether this initializer makes the field "used".
4480     if (Init->getInit()->HasSideEffects(S.Context))
4481       S.UnusedPrivateFields.remove(Init->getAnyMember());
4482 
4483     return false;
4484   }
4485 
4486   bool isInactiveUnionMember(FieldDecl *Field) {
4487     RecordDecl *Record = Field->getParent();
4488     if (!Record->isUnion())
4489       return false;
4490 
4491     if (FieldDecl *Active =
4492             ActiveUnionMember.lookup(Record->getCanonicalDecl()))
4493       return Active != Field->getCanonicalDecl();
4494 
4495     // In an implicit copy or move constructor, ignore any in-class initializer.
4496     if (isImplicitCopyOrMove())
4497       return true;
4498 
4499     // If there's no explicit initialization, the field is active only if it
4500     // has an in-class initializer...
4501     if (Field->hasInClassInitializer())
4502       return false;
4503     // ... or it's an anonymous struct or union whose class has an in-class
4504     // initializer.
4505     if (!Field->isAnonymousStructOrUnion())
4506       return true;
4507     CXXRecordDecl *FieldRD = Field->getType()->getAsCXXRecordDecl();
4508     return !FieldRD->hasInClassInitializer();
4509   }
4510 
4511   /// \brief Determine whether the given field is, or is within, a union member
4512   /// that is inactive (because there was an initializer given for a different
4513   /// member of the union, or because the union was not initialized at all).
4514   bool isWithinInactiveUnionMember(FieldDecl *Field,
4515                                    IndirectFieldDecl *Indirect) {
4516     if (!Indirect)
4517       return isInactiveUnionMember(Field);
4518 
4519     for (auto *C : Indirect->chain()) {
4520       FieldDecl *Field = dyn_cast<FieldDecl>(C);
4521       if (Field && isInactiveUnionMember(Field))
4522         return true;
4523     }
4524     return false;
4525   }
4526 };
4527 }
4528 
4529 /// \brief Determine whether the given type is an incomplete or zero-lenfgth
4530 /// array type.
4531 static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
4532   if (T->isIncompleteArrayType())
4533     return true;
4534 
4535   while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
4536     if (!ArrayT->getSize())
4537       return true;
4538 
4539     T = ArrayT->getElementType();
4540   }
4541 
4542   return false;
4543 }
4544 
4545 static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
4546                                     FieldDecl *Field,
4547                                     IndirectFieldDecl *Indirect = nullptr) {
4548   if (Field->isInvalidDecl())
4549     return false;
4550 
4551   // Overwhelmingly common case: we have a direct initializer for this field.
4552   if (CXXCtorInitializer *Init =
4553           Info.AllBaseFields.lookup(Field->getCanonicalDecl()))
4554     return Info.addFieldInitializer(Init);
4555 
4556   // C++11 [class.base.init]p8:
4557   //   if the entity is a non-static data member that has a
4558   //   brace-or-equal-initializer and either
4559   //   -- the constructor's class is a union and no other variant member of that
4560   //      union is designated by a mem-initializer-id or
4561   //   -- the constructor's class is not a union, and, if the entity is a member
4562   //      of an anonymous union, no other member of that union is designated by
4563   //      a mem-initializer-id,
4564   //   the entity is initialized as specified in [dcl.init].
4565   //
4566   // We also apply the same rules to handle anonymous structs within anonymous
4567   // unions.
4568   if (Info.isWithinInactiveUnionMember(Field, Indirect))
4569     return false;
4570 
4571   if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
4572     ExprResult DIE =
4573         SemaRef.BuildCXXDefaultInitExpr(Info.Ctor->getLocation(), Field);
4574     if (DIE.isInvalid())
4575       return true;
4576     CXXCtorInitializer *Init;
4577     if (Indirect)
4578       Init = new (SemaRef.Context)
4579           CXXCtorInitializer(SemaRef.Context, Indirect, SourceLocation(),
4580                              SourceLocation(), DIE.get(), SourceLocation());
4581     else
4582       Init = new (SemaRef.Context)
4583           CXXCtorInitializer(SemaRef.Context, Field, SourceLocation(),
4584                              SourceLocation(), DIE.get(), SourceLocation());
4585     return Info.addFieldInitializer(Init);
4586   }
4587 
4588   // Don't initialize incomplete or zero-length arrays.
4589   if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
4590     return false;
4591 
4592   // Don't try to build an implicit initializer if there were semantic
4593   // errors in any of the initializers (and therefore we might be
4594   // missing some that the user actually wrote).
4595   if (Info.AnyErrorsInInits)
4596     return false;
4597 
4598   CXXCtorInitializer *Init = nullptr;
4599   if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
4600                                      Indirect, Init))
4601     return true;
4602 
4603   if (!Init)
4604     return false;
4605 
4606   return Info.addFieldInitializer(Init);
4607 }
4608 
4609 bool
4610 Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
4611                                CXXCtorInitializer *Initializer) {
4612   assert(Initializer->isDelegatingInitializer());
4613   Constructor->setNumCtorInitializers(1);
4614   CXXCtorInitializer **initializer =
4615     new (Context) CXXCtorInitializer*[1];
4616   memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
4617   Constructor->setCtorInitializers(initializer);
4618 
4619   if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
4620     MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
4621     DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
4622   }
4623 
4624   DelegatingCtorDecls.push_back(Constructor);
4625 
4626   DiagnoseUninitializedFields(*this, Constructor);
4627 
4628   return false;
4629 }
4630 
4631 bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors,
4632                                ArrayRef<CXXCtorInitializer *> Initializers) {
4633   if (Constructor->isDependentContext()) {
4634     // Just store the initializers as written, they will be checked during
4635     // instantiation.
4636     if (!Initializers.empty()) {
4637       Constructor->setNumCtorInitializers(Initializers.size());
4638       CXXCtorInitializer **baseOrMemberInitializers =
4639         new (Context) CXXCtorInitializer*[Initializers.size()];
4640       memcpy(baseOrMemberInitializers, Initializers.data(),
4641              Initializers.size() * sizeof(CXXCtorInitializer*));
4642       Constructor->setCtorInitializers(baseOrMemberInitializers);
4643     }
4644 
4645     // Let template instantiation know whether we had errors.
4646     if (AnyErrors)
4647       Constructor->setInvalidDecl();
4648 
4649     return false;
4650   }
4651 
4652   BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
4653 
4654   // We need to build the initializer AST according to order of construction
4655   // and not what user specified in the Initializers list.
4656   CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
4657   if (!ClassDecl)
4658     return true;
4659 
4660   bool HadError = false;
4661 
4662   for (unsigned i = 0; i < Initializers.size(); i++) {
4663     CXXCtorInitializer *Member = Initializers[i];
4664 
4665     if (Member->isBaseInitializer())
4666       Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
4667     else {
4668       Info.AllBaseFields[Member->getAnyMember()->getCanonicalDecl()] = Member;
4669 
4670       if (IndirectFieldDecl *F = Member->getIndirectMember()) {
4671         for (auto *C : F->chain()) {
4672           FieldDecl *FD = dyn_cast<FieldDecl>(C);
4673           if (FD && FD->getParent()->isUnion())
4674             Info.ActiveUnionMember.insert(std::make_pair(
4675                 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl()));
4676         }
4677       } else if (FieldDecl *FD = Member->getMember()) {
4678         if (FD->getParent()->isUnion())
4679           Info.ActiveUnionMember.insert(std::make_pair(
4680               FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl()));
4681       }
4682     }
4683   }
4684 
4685   // Keep track of the direct virtual bases.
4686   llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
4687   for (auto &I : ClassDecl->bases()) {
4688     if (I.isVirtual())
4689       DirectVBases.insert(&I);
4690   }
4691 
4692   // Push virtual bases before others.
4693   for (auto &VBase : ClassDecl->vbases()) {
4694     if (CXXCtorInitializer *Value
4695         = Info.AllBaseFields.lookup(VBase.getType()->getAs<RecordType>())) {
4696       // [class.base.init]p7, per DR257:
4697       //   A mem-initializer where the mem-initializer-id names a virtual base
4698       //   class is ignored during execution of a constructor of any class that
4699       //   is not the most derived class.
4700       if (ClassDecl->isAbstract()) {
4701         // FIXME: Provide a fixit to remove the base specifier. This requires
4702         // tracking the location of the associated comma for a base specifier.
4703         Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored)
4704           << VBase.getType() << ClassDecl;
4705         DiagnoseAbstractType(ClassDecl);
4706       }
4707 
4708       Info.AllToInit.push_back(Value);
4709     } else if (!AnyErrors && !ClassDecl->isAbstract()) {
4710       // [class.base.init]p8, per DR257:
4711       //   If a given [...] base class is not named by a mem-initializer-id
4712       //   [...] and the entity is not a virtual base class of an abstract
4713       //   class, then [...] the entity is default-initialized.
4714       bool IsInheritedVirtualBase = !DirectVBases.count(&VBase);
4715       CXXCtorInitializer *CXXBaseInit;
4716       if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
4717                                        &VBase, IsInheritedVirtualBase,
4718                                        CXXBaseInit)) {
4719         HadError = true;
4720         continue;
4721       }
4722 
4723       Info.AllToInit.push_back(CXXBaseInit);
4724     }
4725   }
4726 
4727   // Non-virtual bases.
4728   for (auto &Base : ClassDecl->bases()) {
4729     // Virtuals are in the virtual base list and already constructed.
4730     if (Base.isVirtual())
4731       continue;
4732 
4733     if (CXXCtorInitializer *Value
4734           = Info.AllBaseFields.lookup(Base.getType()->getAs<RecordType>())) {
4735       Info.AllToInit.push_back(Value);
4736     } else if (!AnyErrors) {
4737       CXXCtorInitializer *CXXBaseInit;
4738       if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
4739                                        &Base, /*IsInheritedVirtualBase=*/false,
4740                                        CXXBaseInit)) {
4741         HadError = true;
4742         continue;
4743       }
4744 
4745       Info.AllToInit.push_back(CXXBaseInit);
4746     }
4747   }
4748 
4749   // Fields.
4750   for (auto *Mem : ClassDecl->decls()) {
4751     if (auto *F = dyn_cast<FieldDecl>(Mem)) {
4752       // C++ [class.bit]p2:
4753       //   A declaration for a bit-field that omits the identifier declares an
4754       //   unnamed bit-field. Unnamed bit-fields are not members and cannot be
4755       //   initialized.
4756       if (F->isUnnamedBitfield())
4757         continue;
4758 
4759       // If we're not generating the implicit copy/move constructor, then we'll
4760       // handle anonymous struct/union fields based on their individual
4761       // indirect fields.
4762       if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove())
4763         continue;
4764 
4765       if (CollectFieldInitializer(*this, Info, F))
4766         HadError = true;
4767       continue;
4768     }
4769 
4770     // Beyond this point, we only consider default initialization.
4771     if (Info.isImplicitCopyOrMove())
4772       continue;
4773 
4774     if (auto *F = dyn_cast<IndirectFieldDecl>(Mem)) {
4775       if (F->getType()->isIncompleteArrayType()) {
4776         assert(ClassDecl->hasFlexibleArrayMember() &&
4777                "Incomplete array type is not valid");
4778         continue;
4779       }
4780 
4781       // Initialize each field of an anonymous struct individually.
4782       if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
4783         HadError = true;
4784 
4785       continue;
4786     }
4787   }
4788 
4789   unsigned NumInitializers = Info.AllToInit.size();
4790   if (NumInitializers > 0) {
4791     Constructor->setNumCtorInitializers(NumInitializers);
4792     CXXCtorInitializer **baseOrMemberInitializers =
4793       new (Context) CXXCtorInitializer*[NumInitializers];
4794     memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
4795            NumInitializers * sizeof(CXXCtorInitializer*));
4796     Constructor->setCtorInitializers(baseOrMemberInitializers);
4797 
4798     // Constructors implicitly reference the base and member
4799     // destructors.
4800     MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
4801                                            Constructor->getParent());
4802   }
4803 
4804   return HadError;
4805 }
4806 
4807 static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) {
4808   if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
4809     const RecordDecl *RD = RT->getDecl();
4810     if (RD->isAnonymousStructOrUnion()) {
4811       for (auto *Field : RD->fields())
4812         PopulateKeysForFields(Field, IdealInits);
4813       return;
4814     }
4815   }
4816   IdealInits.push_back(Field->getCanonicalDecl());
4817 }
4818 
4819 static const void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
4820   return Context.getCanonicalType(BaseType).getTypePtr();
4821 }
4822 
4823 static const void *GetKeyForMember(ASTContext &Context,
4824                                    CXXCtorInitializer *Member) {
4825   if (!Member->isAnyMemberInitializer())
4826     return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
4827 
4828   return Member->getAnyMember()->getCanonicalDecl();
4829 }
4830 
4831 static void DiagnoseBaseOrMemInitializerOrder(
4832     Sema &SemaRef, const CXXConstructorDecl *Constructor,
4833     ArrayRef<CXXCtorInitializer *> Inits) {
4834   if (Constructor->getDeclContext()->isDependentContext())
4835     return;
4836 
4837   // Don't check initializers order unless the warning is enabled at the
4838   // location of at least one initializer.
4839   bool ShouldCheckOrder = false;
4840   for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
4841     CXXCtorInitializer *Init = Inits[InitIndex];
4842     if (!SemaRef.Diags.isIgnored(diag::warn_initializer_out_of_order,
4843                                  Init->getSourceLocation())) {
4844       ShouldCheckOrder = true;
4845       break;
4846     }
4847   }
4848   if (!ShouldCheckOrder)
4849     return;
4850 
4851   // Build the list of bases and members in the order that they'll
4852   // actually be initialized.  The explicit initializers should be in
4853   // this same order but may be missing things.
4854   SmallVector<const void*, 32> IdealInitKeys;
4855 
4856   const CXXRecordDecl *ClassDecl = Constructor->getParent();
4857 
4858   // 1. Virtual bases.
4859   for (const auto &VBase : ClassDecl->vbases())
4860     IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase.getType()));
4861 
4862   // 2. Non-virtual bases.
4863   for (const auto &Base : ClassDecl->bases()) {
4864     if (Base.isVirtual())
4865       continue;
4866     IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base.getType()));
4867   }
4868 
4869   // 3. Direct fields.
4870   for (auto *Field : ClassDecl->fields()) {
4871     if (Field->isUnnamedBitfield())
4872       continue;
4873 
4874     PopulateKeysForFields(Field, IdealInitKeys);
4875   }
4876 
4877   unsigned NumIdealInits = IdealInitKeys.size();
4878   unsigned IdealIndex = 0;
4879 
4880   CXXCtorInitializer *PrevInit = nullptr;
4881   for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
4882     CXXCtorInitializer *Init = Inits[InitIndex];
4883     const void *InitKey = GetKeyForMember(SemaRef.Context, Init);
4884 
4885     // Scan forward to try to find this initializer in the idealized
4886     // initializers list.
4887     for (; IdealIndex != NumIdealInits; ++IdealIndex)
4888       if (InitKey == IdealInitKeys[IdealIndex])
4889         break;
4890 
4891     // If we didn't find this initializer, it must be because we
4892     // scanned past it on a previous iteration.  That can only
4893     // happen if we're out of order;  emit a warning.
4894     if (IdealIndex == NumIdealInits && PrevInit) {
4895       Sema::SemaDiagnosticBuilder D =
4896         SemaRef.Diag(PrevInit->getSourceLocation(),
4897                      diag::warn_initializer_out_of_order);
4898 
4899       if (PrevInit->isAnyMemberInitializer())
4900         D << 0 << PrevInit->getAnyMember()->getDeclName();
4901       else
4902         D << 1 << PrevInit->getTypeSourceInfo()->getType();
4903 
4904       if (Init->isAnyMemberInitializer())
4905         D << 0 << Init->getAnyMember()->getDeclName();
4906       else
4907         D << 1 << Init->getTypeSourceInfo()->getType();
4908 
4909       // Move back to the initializer's location in the ideal list.
4910       for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
4911         if (InitKey == IdealInitKeys[IdealIndex])
4912           break;
4913 
4914       assert(IdealIndex < NumIdealInits &&
4915              "initializer not found in initializer list");
4916     }
4917 
4918     PrevInit = Init;
4919   }
4920 }
4921 
4922 namespace {
4923 bool CheckRedundantInit(Sema &S,
4924                         CXXCtorInitializer *Init,
4925                         CXXCtorInitializer *&PrevInit) {
4926   if (!PrevInit) {
4927     PrevInit = Init;
4928     return false;
4929   }
4930 
4931   if (FieldDecl *Field = Init->getAnyMember())
4932     S.Diag(Init->getSourceLocation(),
4933            diag::err_multiple_mem_initialization)
4934       << Field->getDeclName()
4935       << Init->getSourceRange();
4936   else {
4937     const Type *BaseClass = Init->getBaseClass();
4938     assert(BaseClass && "neither field nor base");
4939     S.Diag(Init->getSourceLocation(),
4940            diag::err_multiple_base_initialization)
4941       << QualType(BaseClass, 0)
4942       << Init->getSourceRange();
4943   }
4944   S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
4945     << 0 << PrevInit->getSourceRange();
4946 
4947   return true;
4948 }
4949 
4950 typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
4951 typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
4952 
4953 bool CheckRedundantUnionInit(Sema &S,
4954                              CXXCtorInitializer *Init,
4955                              RedundantUnionMap &Unions) {
4956   FieldDecl *Field = Init->getAnyMember();
4957   RecordDecl *Parent = Field->getParent();
4958   NamedDecl *Child = Field;
4959 
4960   while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
4961     if (Parent->isUnion()) {
4962       UnionEntry &En = Unions[Parent];
4963       if (En.first && En.first != Child) {
4964         S.Diag(Init->getSourceLocation(),
4965                diag::err_multiple_mem_union_initialization)
4966           << Field->getDeclName()
4967           << Init->getSourceRange();
4968         S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
4969           << 0 << En.second->getSourceRange();
4970         return true;
4971       }
4972       if (!En.first) {
4973         En.first = Child;
4974         En.second = Init;
4975       }
4976       if (!Parent->isAnonymousStructOrUnion())
4977         return false;
4978     }
4979 
4980     Child = Parent;
4981     Parent = cast<RecordDecl>(Parent->getDeclContext());
4982   }
4983 
4984   return false;
4985 }
4986 }
4987 
4988 /// ActOnMemInitializers - Handle the member initializers for a constructor.
4989 void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
4990                                 SourceLocation ColonLoc,
4991                                 ArrayRef<CXXCtorInitializer*> MemInits,
4992                                 bool AnyErrors) {
4993   if (!ConstructorDecl)
4994     return;
4995 
4996   AdjustDeclIfTemplate(ConstructorDecl);
4997 
4998   CXXConstructorDecl *Constructor
4999     = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
5000 
5001   if (!Constructor) {
5002     Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
5003     return;
5004   }
5005 
5006   // Mapping for the duplicate initializers check.
5007   // For member initializers, this is keyed with a FieldDecl*.
5008   // For base initializers, this is keyed with a Type*.
5009   llvm::DenseMap<const void *, CXXCtorInitializer *> Members;
5010 
5011   // Mapping for the inconsistent anonymous-union initializers check.
5012   RedundantUnionMap MemberUnions;
5013 
5014   bool HadError = false;
5015   for (unsigned i = 0; i < MemInits.size(); i++) {
5016     CXXCtorInitializer *Init = MemInits[i];
5017 
5018     // Set the source order index.
5019     Init->setSourceOrder(i);
5020 
5021     if (Init->isAnyMemberInitializer()) {
5022       const void *Key = GetKeyForMember(Context, Init);
5023       if (CheckRedundantInit(*this, Init, Members[Key]) ||
5024           CheckRedundantUnionInit(*this, Init, MemberUnions))
5025         HadError = true;
5026     } else if (Init->isBaseInitializer()) {
5027       const void *Key = GetKeyForMember(Context, Init);
5028       if (CheckRedundantInit(*this, Init, Members[Key]))
5029         HadError = true;
5030     } else {
5031       assert(Init->isDelegatingInitializer());
5032       // This must be the only initializer
5033       if (MemInits.size() != 1) {
5034         Diag(Init->getSourceLocation(),
5035              diag::err_delegating_initializer_alone)
5036           << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
5037         // We will treat this as being the only initializer.
5038       }
5039       SetDelegatingInitializer(Constructor, MemInits[i]);
5040       // Return immediately as the initializer is set.
5041       return;
5042     }
5043   }
5044 
5045   if (HadError)
5046     return;
5047 
5048   DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits);
5049 
5050   SetCtorInitializers(Constructor, AnyErrors, MemInits);
5051 
5052   DiagnoseUninitializedFields(*this, Constructor);
5053 }
5054 
5055 void
5056 Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
5057                                              CXXRecordDecl *ClassDecl) {
5058   // Ignore dependent contexts. Also ignore unions, since their members never
5059   // have destructors implicitly called.
5060   if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
5061     return;
5062 
5063   // FIXME: all the access-control diagnostics are positioned on the
5064   // field/base declaration.  That's probably good; that said, the
5065   // user might reasonably want to know why the destructor is being
5066   // emitted, and we currently don't say.
5067 
5068   // Non-static data members.
5069   for (auto *Field : ClassDecl->fields()) {
5070     if (Field->isInvalidDecl())
5071       continue;
5072 
5073     // Don't destroy incomplete or zero-length arrays.
5074     if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
5075       continue;
5076 
5077     QualType FieldType = Context.getBaseElementType(Field->getType());
5078 
5079     const RecordType* RT = FieldType->getAs<RecordType>();
5080     if (!RT)
5081       continue;
5082 
5083     CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
5084     if (FieldClassDecl->isInvalidDecl())
5085       continue;
5086     if (FieldClassDecl->hasIrrelevantDestructor())
5087       continue;
5088     // The destructor for an implicit anonymous union member is never invoked.
5089     if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
5090       continue;
5091 
5092     CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
5093     assert(Dtor && "No dtor found for FieldClassDecl!");
5094     CheckDestructorAccess(Field->getLocation(), Dtor,
5095                           PDiag(diag::err_access_dtor_field)
5096                             << Field->getDeclName()
5097                             << FieldType);
5098 
5099     MarkFunctionReferenced(Location, Dtor);
5100     DiagnoseUseOfDecl(Dtor, Location);
5101   }
5102 
5103   // We only potentially invoke the destructors of potentially constructed
5104   // subobjects.
5105   bool VisitVirtualBases = !ClassDecl->isAbstract();
5106 
5107   llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
5108 
5109   // Bases.
5110   for (const auto &Base : ClassDecl->bases()) {
5111     // Bases are always records in a well-formed non-dependent class.
5112     const RecordType *RT = Base.getType()->getAs<RecordType>();
5113 
5114     // Remember direct virtual bases.
5115     if (Base.isVirtual()) {
5116       if (!VisitVirtualBases)
5117         continue;
5118       DirectVirtualBases.insert(RT);
5119     }
5120 
5121     CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
5122     // If our base class is invalid, we probably can't get its dtor anyway.
5123     if (BaseClassDecl->isInvalidDecl())
5124       continue;
5125     if (BaseClassDecl->hasIrrelevantDestructor())
5126       continue;
5127 
5128     CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
5129     assert(Dtor && "No dtor found for BaseClassDecl!");
5130 
5131     // FIXME: caret should be on the start of the class name
5132     CheckDestructorAccess(Base.getLocStart(), Dtor,
5133                           PDiag(diag::err_access_dtor_base)
5134                             << Base.getType()
5135                             << Base.getSourceRange(),
5136                           Context.getTypeDeclType(ClassDecl));
5137 
5138     MarkFunctionReferenced(Location, Dtor);
5139     DiagnoseUseOfDecl(Dtor, Location);
5140   }
5141 
5142   if (!VisitVirtualBases)
5143     return;
5144 
5145   // Virtual bases.
5146   for (const auto &VBase : ClassDecl->vbases()) {
5147     // Bases are always records in a well-formed non-dependent class.
5148     const RecordType *RT = VBase.getType()->castAs<RecordType>();
5149 
5150     // Ignore direct virtual bases.
5151     if (DirectVirtualBases.count(RT))
5152       continue;
5153 
5154     CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
5155     // If our base class is invalid, we probably can't get its dtor anyway.
5156     if (BaseClassDecl->isInvalidDecl())
5157       continue;
5158     if (BaseClassDecl->hasIrrelevantDestructor())
5159       continue;
5160 
5161     CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
5162     assert(Dtor && "No dtor found for BaseClassDecl!");
5163     if (CheckDestructorAccess(
5164             ClassDecl->getLocation(), Dtor,
5165             PDiag(diag::err_access_dtor_vbase)
5166                 << Context.getTypeDeclType(ClassDecl) << VBase.getType(),
5167             Context.getTypeDeclType(ClassDecl)) ==
5168         AR_accessible) {
5169       CheckDerivedToBaseConversion(
5170           Context.getTypeDeclType(ClassDecl), VBase.getType(),
5171           diag::err_access_dtor_vbase, 0, ClassDecl->getLocation(),
5172           SourceRange(), DeclarationName(), nullptr);
5173     }
5174 
5175     MarkFunctionReferenced(Location, Dtor);
5176     DiagnoseUseOfDecl(Dtor, Location);
5177   }
5178 }
5179 
5180 void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
5181   if (!CDtorDecl)
5182     return;
5183 
5184   if (CXXConstructorDecl *Constructor
5185       = dyn_cast<CXXConstructorDecl>(CDtorDecl)) {
5186     SetCtorInitializers(Constructor, /*AnyErrors=*/false);
5187     DiagnoseUninitializedFields(*this, Constructor);
5188   }
5189 }
5190 
5191 bool Sema::isAbstractType(SourceLocation Loc, QualType T) {
5192   if (!getLangOpts().CPlusPlus)
5193     return false;
5194 
5195   const auto *RD = Context.getBaseElementType(T)->getAsCXXRecordDecl();
5196   if (!RD)
5197     return false;
5198 
5199   // FIXME: Per [temp.inst]p1, we are supposed to trigger instantiation of a
5200   // class template specialization here, but doing so breaks a lot of code.
5201 
5202   // We can't answer whether something is abstract until it has a
5203   // definition. If it's currently being defined, we'll walk back
5204   // over all the declarations when we have a full definition.
5205   const CXXRecordDecl *Def = RD->getDefinition();
5206   if (!Def || Def->isBeingDefined())
5207     return false;
5208 
5209   return RD->isAbstract();
5210 }
5211 
5212 bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
5213                                   TypeDiagnoser &Diagnoser) {
5214   if (!isAbstractType(Loc, T))
5215     return false;
5216 
5217   T = Context.getBaseElementType(T);
5218   Diagnoser.diagnose(*this, Loc, T);
5219   DiagnoseAbstractType(T->getAsCXXRecordDecl());
5220   return true;
5221 }
5222 
5223 void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
5224   // Check if we've already emitted the list of pure virtual functions
5225   // for this class.
5226   if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
5227     return;
5228 
5229   // If the diagnostic is suppressed, don't emit the notes. We're only
5230   // going to emit them once, so try to attach them to a diagnostic we're
5231   // actually going to show.
5232   if (Diags.isLastDiagnosticIgnored())
5233     return;
5234 
5235   CXXFinalOverriderMap FinalOverriders;
5236   RD->getFinalOverriders(FinalOverriders);
5237 
5238   // Keep a set of seen pure methods so we won't diagnose the same method
5239   // more than once.
5240   llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
5241 
5242   for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
5243                                    MEnd = FinalOverriders.end();
5244        M != MEnd;
5245        ++M) {
5246     for (OverridingMethods::iterator SO = M->second.begin(),
5247                                   SOEnd = M->second.end();
5248          SO != SOEnd; ++SO) {
5249       // C++ [class.abstract]p4:
5250       //   A class is abstract if it contains or inherits at least one
5251       //   pure virtual function for which the final overrider is pure
5252       //   virtual.
5253 
5254       //
5255       if (SO->second.size() != 1)
5256         continue;
5257 
5258       if (!SO->second.front().Method->isPure())
5259         continue;
5260 
5261       if (!SeenPureMethods.insert(SO->second.front().Method).second)
5262         continue;
5263 
5264       Diag(SO->second.front().Method->getLocation(),
5265            diag::note_pure_virtual_function)
5266         << SO->second.front().Method->getDeclName() << RD->getDeclName();
5267     }
5268   }
5269 
5270   if (!PureVirtualClassDiagSet)
5271     PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
5272   PureVirtualClassDiagSet->insert(RD);
5273 }
5274 
5275 namespace {
5276 struct AbstractUsageInfo {
5277   Sema &S;
5278   CXXRecordDecl *Record;
5279   CanQualType AbstractType;
5280   bool Invalid;
5281 
5282   AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
5283     : S(S), Record(Record),
5284       AbstractType(S.Context.getCanonicalType(
5285                    S.Context.getTypeDeclType(Record))),
5286       Invalid(false) {}
5287 
5288   void DiagnoseAbstractType() {
5289     if (Invalid) return;
5290     S.DiagnoseAbstractType(Record);
5291     Invalid = true;
5292   }
5293 
5294   void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
5295 };
5296 
5297 struct CheckAbstractUsage {
5298   AbstractUsageInfo &Info;
5299   const NamedDecl *Ctx;
5300 
5301   CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
5302     : Info(Info), Ctx(Ctx) {}
5303 
5304   void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
5305     switch (TL.getTypeLocClass()) {
5306 #define ABSTRACT_TYPELOC(CLASS, PARENT)
5307 #define TYPELOC(CLASS, PARENT) \
5308     case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break;
5309 #include "clang/AST/TypeLocNodes.def"
5310     }
5311   }
5312 
5313   void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
5314     Visit(TL.getReturnLoc(), Sema::AbstractReturnType);
5315     for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) {
5316       if (!TL.getParam(I))
5317         continue;
5318 
5319       TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo();
5320       if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
5321     }
5322   }
5323 
5324   void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
5325     Visit(TL.getElementLoc(), Sema::AbstractArrayType);
5326   }
5327 
5328   void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
5329     // Visit the type parameters from a permissive context.
5330     for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
5331       TemplateArgumentLoc TAL = TL.getArgLoc(I);
5332       if (TAL.getArgument().getKind() == TemplateArgument::Type)
5333         if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
5334           Visit(TSI->getTypeLoc(), Sema::AbstractNone);
5335       // TODO: other template argument types?
5336     }
5337   }
5338 
5339   // Visit pointee types from a permissive context.
5340 #define CheckPolymorphic(Type) \
5341   void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
5342     Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
5343   }
5344   CheckPolymorphic(PointerTypeLoc)
5345   CheckPolymorphic(ReferenceTypeLoc)
5346   CheckPolymorphic(MemberPointerTypeLoc)
5347   CheckPolymorphic(BlockPointerTypeLoc)
5348   CheckPolymorphic(AtomicTypeLoc)
5349 
5350   /// Handle all the types we haven't given a more specific
5351   /// implementation for above.
5352   void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
5353     // Every other kind of type that we haven't called out already
5354     // that has an inner type is either (1) sugar or (2) contains that
5355     // inner type in some way as a subobject.
5356     if (TypeLoc Next = TL.getNextTypeLoc())
5357       return Visit(Next, Sel);
5358 
5359     // If there's no inner type and we're in a permissive context,
5360     // don't diagnose.
5361     if (Sel == Sema::AbstractNone) return;
5362 
5363     // Check whether the type matches the abstract type.
5364     QualType T = TL.getType();
5365     if (T->isArrayType()) {
5366       Sel = Sema::AbstractArrayType;
5367       T = Info.S.Context.getBaseElementType(T);
5368     }
5369     CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
5370     if (CT != Info.AbstractType) return;
5371 
5372     // It matched; do some magic.
5373     if (Sel == Sema::AbstractArrayType) {
5374       Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
5375         << T << TL.getSourceRange();
5376     } else {
5377       Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
5378         << Sel << T << TL.getSourceRange();
5379     }
5380     Info.DiagnoseAbstractType();
5381   }
5382 };
5383 
5384 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
5385                                   Sema::AbstractDiagSelID Sel) {
5386   CheckAbstractUsage(*this, D).Visit(TL, Sel);
5387 }
5388 
5389 }
5390 
5391 /// Check for invalid uses of an abstract type in a method declaration.
5392 static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
5393                                     CXXMethodDecl *MD) {
5394   // No need to do the check on definitions, which require that
5395   // the return/param types be complete.
5396   if (MD->doesThisDeclarationHaveABody())
5397     return;
5398 
5399   // For safety's sake, just ignore it if we don't have type source
5400   // information.  This should never happen for non-implicit methods,
5401   // but...
5402   if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
5403     Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
5404 }
5405 
5406 /// Check for invalid uses of an abstract type within a class definition.
5407 static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
5408                                     CXXRecordDecl *RD) {
5409   for (auto *D : RD->decls()) {
5410     if (D->isImplicit()) continue;
5411 
5412     // Methods and method templates.
5413     if (isa<CXXMethodDecl>(D)) {
5414       CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
5415     } else if (isa<FunctionTemplateDecl>(D)) {
5416       FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
5417       CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
5418 
5419     // Fields and static variables.
5420     } else if (isa<FieldDecl>(D)) {
5421       FieldDecl *FD = cast<FieldDecl>(D);
5422       if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
5423         Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
5424     } else if (isa<VarDecl>(D)) {
5425       VarDecl *VD = cast<VarDecl>(D);
5426       if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
5427         Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
5428 
5429     // Nested classes and class templates.
5430     } else if (isa<CXXRecordDecl>(D)) {
5431       CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
5432     } else if (isa<ClassTemplateDecl>(D)) {
5433       CheckAbstractClassUsage(Info,
5434                              cast<ClassTemplateDecl>(D)->getTemplatedDecl());
5435     }
5436   }
5437 }
5438 
5439 static void ReferenceDllExportedMethods(Sema &S, CXXRecordDecl *Class) {
5440   Attr *ClassAttr = getDLLAttr(Class);
5441   if (!ClassAttr)
5442     return;
5443 
5444   assert(ClassAttr->getKind() == attr::DLLExport);
5445 
5446   TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind();
5447 
5448   if (TSK == TSK_ExplicitInstantiationDeclaration)
5449     // Don't go any further if this is just an explicit instantiation
5450     // declaration.
5451     return;
5452 
5453   for (Decl *Member : Class->decls()) {
5454     auto *MD = dyn_cast<CXXMethodDecl>(Member);
5455     if (!MD)
5456       continue;
5457 
5458     if (Member->getAttr<DLLExportAttr>()) {
5459       if (MD->isUserProvided()) {
5460         // Instantiate non-default class member functions ...
5461 
5462         // .. except for certain kinds of template specializations.
5463         if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited())
5464           continue;
5465 
5466         S.MarkFunctionReferenced(Class->getLocation(), MD);
5467 
5468         // The function will be passed to the consumer when its definition is
5469         // encountered.
5470       } else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() ||
5471                  MD->isCopyAssignmentOperator() ||
5472                  MD->isMoveAssignmentOperator()) {
5473         // Synthesize and instantiate non-trivial implicit methods, explicitly
5474         // defaulted methods, and the copy and move assignment operators. The
5475         // latter are exported even if they are trivial, because the address of
5476         // an operator can be taken and should compare equal across libraries.
5477         DiagnosticErrorTrap Trap(S.Diags);
5478         S.MarkFunctionReferenced(Class->getLocation(), MD);
5479         if (Trap.hasErrorOccurred()) {
5480           S.Diag(ClassAttr->getLocation(), diag::note_due_to_dllexported_class)
5481               << Class->getName() << !S.getLangOpts().CPlusPlus11;
5482           break;
5483         }
5484 
5485         // There is no later point when we will see the definition of this
5486         // function, so pass it to the consumer now.
5487         S.Consumer.HandleTopLevelDecl(DeclGroupRef(MD));
5488       }
5489     }
5490   }
5491 }
5492 
5493 static void checkForMultipleExportedDefaultConstructors(Sema &S,
5494                                                         CXXRecordDecl *Class) {
5495   // Only the MS ABI has default constructor closures, so we don't need to do
5496   // this semantic checking anywhere else.
5497   if (!S.Context.getTargetInfo().getCXXABI().isMicrosoft())
5498     return;
5499 
5500   CXXConstructorDecl *LastExportedDefaultCtor = nullptr;
5501   for (Decl *Member : Class->decls()) {
5502     // Look for exported default constructors.
5503     auto *CD = dyn_cast<CXXConstructorDecl>(Member);
5504     if (!CD || !CD->isDefaultConstructor())
5505       continue;
5506     auto *Attr = CD->getAttr<DLLExportAttr>();
5507     if (!Attr)
5508       continue;
5509 
5510     // If the class is non-dependent, mark the default arguments as ODR-used so
5511     // that we can properly codegen the constructor closure.
5512     if (!Class->isDependentContext()) {
5513       for (ParmVarDecl *PD : CD->parameters()) {
5514         (void)S.CheckCXXDefaultArgExpr(Attr->getLocation(), CD, PD);
5515         S.DiscardCleanupsInEvaluationContext();
5516       }
5517     }
5518 
5519     if (LastExportedDefaultCtor) {
5520       S.Diag(LastExportedDefaultCtor->getLocation(),
5521              diag::err_attribute_dll_ambiguous_default_ctor)
5522           << Class;
5523       S.Diag(CD->getLocation(), diag::note_entity_declared_at)
5524           << CD->getDeclName();
5525       return;
5526     }
5527     LastExportedDefaultCtor = CD;
5528   }
5529 }
5530 
5531 /// \brief Check class-level dllimport/dllexport attribute.
5532 void Sema::checkClassLevelDLLAttribute(CXXRecordDecl *Class) {
5533   Attr *ClassAttr = getDLLAttr(Class);
5534 
5535   // MSVC inherits DLL attributes to partial class template specializations.
5536   if (Context.getTargetInfo().getCXXABI().isMicrosoft() && !ClassAttr) {
5537     if (auto *Spec = dyn_cast<ClassTemplatePartialSpecializationDecl>(Class)) {
5538       if (Attr *TemplateAttr =
5539               getDLLAttr(Spec->getSpecializedTemplate()->getTemplatedDecl())) {
5540         auto *A = cast<InheritableAttr>(TemplateAttr->clone(getASTContext()));
5541         A->setInherited(true);
5542         ClassAttr = A;
5543       }
5544     }
5545   }
5546 
5547   if (!ClassAttr)
5548     return;
5549 
5550   if (!Class->isExternallyVisible()) {
5551     Diag(Class->getLocation(), diag::err_attribute_dll_not_extern)
5552         << Class << ClassAttr;
5553     return;
5554   }
5555 
5556   if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
5557       !ClassAttr->isInherited()) {
5558     // Diagnose dll attributes on members of class with dll attribute.
5559     for (Decl *Member : Class->decls()) {
5560       if (!isa<VarDecl>(Member) && !isa<CXXMethodDecl>(Member))
5561         continue;
5562       InheritableAttr *MemberAttr = getDLLAttr(Member);
5563       if (!MemberAttr || MemberAttr->isInherited() || Member->isInvalidDecl())
5564         continue;
5565 
5566       Diag(MemberAttr->getLocation(),
5567              diag::err_attribute_dll_member_of_dll_class)
5568           << MemberAttr << ClassAttr;
5569       Diag(ClassAttr->getLocation(), diag::note_previous_attribute);
5570       Member->setInvalidDecl();
5571     }
5572   }
5573 
5574   if (Class->getDescribedClassTemplate())
5575     // Don't inherit dll attribute until the template is instantiated.
5576     return;
5577 
5578   // The class is either imported or exported.
5579   const bool ClassExported = ClassAttr->getKind() == attr::DLLExport;
5580 
5581   TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind();
5582 
5583   // Ignore explicit dllexport on explicit class template instantiation declarations.
5584   if (ClassExported && !ClassAttr->isInherited() &&
5585       TSK == TSK_ExplicitInstantiationDeclaration) {
5586     Class->dropAttr<DLLExportAttr>();
5587     return;
5588   }
5589 
5590   // Force declaration of implicit members so they can inherit the attribute.
5591   ForceDeclarationOfImplicitMembers(Class);
5592 
5593   // FIXME: MSVC's docs say all bases must be exportable, but this doesn't
5594   // seem to be true in practice?
5595 
5596   for (Decl *Member : Class->decls()) {
5597     VarDecl *VD = dyn_cast<VarDecl>(Member);
5598     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
5599 
5600     // Only methods and static fields inherit the attributes.
5601     if (!VD && !MD)
5602       continue;
5603 
5604     if (MD) {
5605       // Don't process deleted methods.
5606       if (MD->isDeleted())
5607         continue;
5608 
5609       if (MD->isInlined()) {
5610         // MinGW does not import or export inline methods.
5611         if (!Context.getTargetInfo().getCXXABI().isMicrosoft() &&
5612             !Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())
5613           continue;
5614 
5615         // MSVC versions before 2015 don't export the move assignment operators
5616         // and move constructor, so don't attempt to import/export them if
5617         // we have a definition.
5618         auto *Ctor = dyn_cast<CXXConstructorDecl>(MD);
5619         if ((MD->isMoveAssignmentOperator() ||
5620              (Ctor && Ctor->isMoveConstructor())) &&
5621             !getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015))
5622           continue;
5623 
5624         // MSVC2015 doesn't export trivial defaulted x-tor but copy assign
5625         // operator is exported anyway.
5626         if (getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015) &&
5627             (Ctor || isa<CXXDestructorDecl>(MD)) && MD->isTrivial())
5628           continue;
5629       }
5630     }
5631 
5632     if (!cast<NamedDecl>(Member)->isExternallyVisible())
5633       continue;
5634 
5635     if (!getDLLAttr(Member)) {
5636       auto *NewAttr =
5637           cast<InheritableAttr>(ClassAttr->clone(getASTContext()));
5638       NewAttr->setInherited(true);
5639       Member->addAttr(NewAttr);
5640     }
5641   }
5642 
5643   if (ClassExported)
5644     DelayedDllExportClasses.push_back(Class);
5645 }
5646 
5647 /// \brief Perform propagation of DLL attributes from a derived class to a
5648 /// templated base class for MS compatibility.
5649 void Sema::propagateDLLAttrToBaseClassTemplate(
5650     CXXRecordDecl *Class, Attr *ClassAttr,
5651     ClassTemplateSpecializationDecl *BaseTemplateSpec, SourceLocation BaseLoc) {
5652   if (getDLLAttr(
5653           BaseTemplateSpec->getSpecializedTemplate()->getTemplatedDecl())) {
5654     // If the base class template has a DLL attribute, don't try to change it.
5655     return;
5656   }
5657 
5658   auto TSK = BaseTemplateSpec->getSpecializationKind();
5659   if (!getDLLAttr(BaseTemplateSpec) &&
5660       (TSK == TSK_Undeclared || TSK == TSK_ExplicitInstantiationDeclaration ||
5661        TSK == TSK_ImplicitInstantiation)) {
5662     // The template hasn't been instantiated yet (or it has, but only as an
5663     // explicit instantiation declaration or implicit instantiation, which means
5664     // we haven't codegenned any members yet), so propagate the attribute.
5665     auto *NewAttr = cast<InheritableAttr>(ClassAttr->clone(getASTContext()));
5666     NewAttr->setInherited(true);
5667     BaseTemplateSpec->addAttr(NewAttr);
5668 
5669     // If the template is already instantiated, checkDLLAttributeRedeclaration()
5670     // needs to be run again to work see the new attribute. Otherwise this will
5671     // get run whenever the template is instantiated.
5672     if (TSK != TSK_Undeclared)
5673       checkClassLevelDLLAttribute(BaseTemplateSpec);
5674 
5675     return;
5676   }
5677 
5678   if (getDLLAttr(BaseTemplateSpec)) {
5679     // The template has already been specialized or instantiated with an
5680     // attribute, explicitly or through propagation. We should not try to change
5681     // it.
5682     return;
5683   }
5684 
5685   // The template was previously instantiated or explicitly specialized without
5686   // a dll attribute, It's too late for us to add an attribute, so warn that
5687   // this is unsupported.
5688   Diag(BaseLoc, diag::warn_attribute_dll_instantiated_base_class)
5689       << BaseTemplateSpec->isExplicitSpecialization();
5690   Diag(ClassAttr->getLocation(), diag::note_attribute);
5691   if (BaseTemplateSpec->isExplicitSpecialization()) {
5692     Diag(BaseTemplateSpec->getLocation(),
5693            diag::note_template_class_explicit_specialization_was_here)
5694         << BaseTemplateSpec;
5695   } else {
5696     Diag(BaseTemplateSpec->getPointOfInstantiation(),
5697            diag::note_template_class_instantiation_was_here)
5698         << BaseTemplateSpec;
5699   }
5700 }
5701 
5702 static void DefineImplicitSpecialMember(Sema &S, CXXMethodDecl *MD,
5703                                         SourceLocation DefaultLoc) {
5704   switch (S.getSpecialMember(MD)) {
5705   case Sema::CXXDefaultConstructor:
5706     S.DefineImplicitDefaultConstructor(DefaultLoc,
5707                                        cast<CXXConstructorDecl>(MD));
5708     break;
5709   case Sema::CXXCopyConstructor:
5710     S.DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
5711     break;
5712   case Sema::CXXCopyAssignment:
5713     S.DefineImplicitCopyAssignment(DefaultLoc, MD);
5714     break;
5715   case Sema::CXXDestructor:
5716     S.DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD));
5717     break;
5718   case Sema::CXXMoveConstructor:
5719     S.DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
5720     break;
5721   case Sema::CXXMoveAssignment:
5722     S.DefineImplicitMoveAssignment(DefaultLoc, MD);
5723     break;
5724   case Sema::CXXInvalid:
5725     llvm_unreachable("Invalid special member.");
5726   }
5727 }
5728 
5729 /// \brief Perform semantic checks on a class definition that has been
5730 /// completing, introducing implicitly-declared members, checking for
5731 /// abstract types, etc.
5732 void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
5733   if (!Record)
5734     return;
5735 
5736   if (Record->isAbstract() && !Record->isInvalidDecl()) {
5737     AbstractUsageInfo Info(*this, Record);
5738     CheckAbstractClassUsage(Info, Record);
5739   }
5740 
5741   // If this is not an aggregate type and has no user-declared constructor,
5742   // complain about any non-static data members of reference or const scalar
5743   // type, since they will never get initializers.
5744   if (!Record->isInvalidDecl() && !Record->isDependentType() &&
5745       !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
5746       !Record->isLambda()) {
5747     bool Complained = false;
5748     for (const auto *F : Record->fields()) {
5749       if (F->hasInClassInitializer() || F->isUnnamedBitfield())
5750         continue;
5751 
5752       if (F->getType()->isReferenceType() ||
5753           (F->getType().isConstQualified() && F->getType()->isScalarType())) {
5754         if (!Complained) {
5755           Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
5756             << Record->getTagKind() << Record;
5757           Complained = true;
5758         }
5759 
5760         Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
5761           << F->getType()->isReferenceType()
5762           << F->getDeclName();
5763       }
5764     }
5765   }
5766 
5767   if (Record->getIdentifier()) {
5768     // C++ [class.mem]p13:
5769     //   If T is the name of a class, then each of the following shall have a
5770     //   name different from T:
5771     //     - every member of every anonymous union that is a member of class T.
5772     //
5773     // C++ [class.mem]p14:
5774     //   In addition, if class T has a user-declared constructor (12.1), every
5775     //   non-static data member of class T shall have a name different from T.
5776     DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
5777     for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
5778          ++I) {
5779       NamedDecl *D = *I;
5780       if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
5781           isa<IndirectFieldDecl>(D)) {
5782         Diag(D->getLocation(), diag::err_member_name_of_class)
5783           << D->getDeclName();
5784         break;
5785       }
5786     }
5787   }
5788 
5789   // Warn if the class has virtual methods but non-virtual public destructor.
5790   if (Record->isPolymorphic() && !Record->isDependentType()) {
5791     CXXDestructorDecl *dtor = Record->getDestructor();
5792     if ((!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public)) &&
5793         !Record->hasAttr<FinalAttr>())
5794       Diag(dtor ? dtor->getLocation() : Record->getLocation(),
5795            diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
5796   }
5797 
5798   if (Record->isAbstract()) {
5799     if (FinalAttr *FA = Record->getAttr<FinalAttr>()) {
5800       Diag(Record->getLocation(), diag::warn_abstract_final_class)
5801         << FA->isSpelledAsSealed();
5802       DiagnoseAbstractType(Record);
5803     }
5804   }
5805 
5806   bool HasMethodWithOverrideControl = false,
5807        HasOverridingMethodWithoutOverrideControl = false;
5808   if (!Record->isDependentType()) {
5809     for (auto *M : Record->methods()) {
5810       // See if a method overloads virtual methods in a base
5811       // class without overriding any.
5812       if (!M->isStatic())
5813         DiagnoseHiddenVirtualMethods(M);
5814       if (M->hasAttr<OverrideAttr>())
5815         HasMethodWithOverrideControl = true;
5816       else if (M->size_overridden_methods() > 0)
5817         HasOverridingMethodWithoutOverrideControl = true;
5818       // Check whether the explicitly-defaulted special members are valid.
5819       if (!M->isInvalidDecl() && M->isExplicitlyDefaulted())
5820         CheckExplicitlyDefaultedSpecialMember(M);
5821 
5822       // For an explicitly defaulted or deleted special member, we defer
5823       // determining triviality until the class is complete. That time is now!
5824       CXXSpecialMember CSM = getSpecialMember(M);
5825       if (!M->isImplicit() && !M->isUserProvided()) {
5826         if (CSM != CXXInvalid) {
5827           M->setTrivial(SpecialMemberIsTrivial(M, CSM));
5828 
5829           // Inform the class that we've finished declaring this member.
5830           Record->finishedDefaultedOrDeletedMember(M);
5831         }
5832       }
5833 
5834       if (!M->isInvalidDecl() && M->isExplicitlyDefaulted() &&
5835           M->hasAttr<DLLExportAttr>()) {
5836         if (getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015) &&
5837             M->isTrivial() &&
5838             (CSM == CXXDefaultConstructor || CSM == CXXCopyConstructor ||
5839              CSM == CXXDestructor))
5840           M->dropAttr<DLLExportAttr>();
5841 
5842         if (M->hasAttr<DLLExportAttr>()) {
5843           DefineImplicitSpecialMember(*this, M, M->getLocation());
5844           ActOnFinishInlineFunctionDef(M);
5845         }
5846       }
5847     }
5848   }
5849 
5850   if (HasMethodWithOverrideControl &&
5851       HasOverridingMethodWithoutOverrideControl) {
5852     // At least one method has the 'override' control declared.
5853     // Diagnose all other overridden methods which do not have 'override' specified on them.
5854     for (auto *M : Record->methods())
5855       DiagnoseAbsenceOfOverrideControl(M);
5856   }
5857 
5858   // ms_struct is a request to use the same ABI rules as MSVC.  Check
5859   // whether this class uses any C++ features that are implemented
5860   // completely differently in MSVC, and if so, emit a diagnostic.
5861   // That diagnostic defaults to an error, but we allow projects to
5862   // map it down to a warning (or ignore it).  It's a fairly common
5863   // practice among users of the ms_struct pragma to mass-annotate
5864   // headers, sweeping up a bunch of types that the project doesn't
5865   // really rely on MSVC-compatible layout for.  We must therefore
5866   // support "ms_struct except for C++ stuff" as a secondary ABI.
5867   if (Record->isMsStruct(Context) &&
5868       (Record->isPolymorphic() || Record->getNumBases())) {
5869     Diag(Record->getLocation(), diag::warn_cxx_ms_struct);
5870   }
5871 
5872   checkClassLevelDLLAttribute(Record);
5873 }
5874 
5875 /// Look up the special member function that would be called by a special
5876 /// member function for a subobject of class type.
5877 ///
5878 /// \param Class The class type of the subobject.
5879 /// \param CSM The kind of special member function.
5880 /// \param FieldQuals If the subobject is a field, its cv-qualifiers.
5881 /// \param ConstRHS True if this is a copy operation with a const object
5882 ///        on its RHS, that is, if the argument to the outer special member
5883 ///        function is 'const' and this is not a field marked 'mutable'.
5884 static Sema::SpecialMemberOverloadResult lookupCallFromSpecialMember(
5885     Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM,
5886     unsigned FieldQuals, bool ConstRHS) {
5887   unsigned LHSQuals = 0;
5888   if (CSM == Sema::CXXCopyAssignment || CSM == Sema::CXXMoveAssignment)
5889     LHSQuals = FieldQuals;
5890 
5891   unsigned RHSQuals = FieldQuals;
5892   if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
5893     RHSQuals = 0;
5894   else if (ConstRHS)
5895     RHSQuals |= Qualifiers::Const;
5896 
5897   return S.LookupSpecialMember(Class, CSM,
5898                                RHSQuals & Qualifiers::Const,
5899                                RHSQuals & Qualifiers::Volatile,
5900                                false,
5901                                LHSQuals & Qualifiers::Const,
5902                                LHSQuals & Qualifiers::Volatile);
5903 }
5904 
5905 class Sema::InheritedConstructorInfo {
5906   Sema &S;
5907   SourceLocation UseLoc;
5908 
5909   /// A mapping from the base classes through which the constructor was
5910   /// inherited to the using shadow declaration in that base class (or a null
5911   /// pointer if the constructor was declared in that base class).
5912   llvm::DenseMap<CXXRecordDecl *, ConstructorUsingShadowDecl *>
5913       InheritedFromBases;
5914 
5915 public:
5916   InheritedConstructorInfo(Sema &S, SourceLocation UseLoc,
5917                            ConstructorUsingShadowDecl *Shadow)
5918       : S(S), UseLoc(UseLoc) {
5919     bool DiagnosedMultipleConstructedBases = false;
5920     CXXRecordDecl *ConstructedBase = nullptr;
5921     UsingDecl *ConstructedBaseUsing = nullptr;
5922 
5923     // Find the set of such base class subobjects and check that there's a
5924     // unique constructed subobject.
5925     for (auto *D : Shadow->redecls()) {
5926       auto *DShadow = cast<ConstructorUsingShadowDecl>(D);
5927       auto *DNominatedBase = DShadow->getNominatedBaseClass();
5928       auto *DConstructedBase = DShadow->getConstructedBaseClass();
5929 
5930       InheritedFromBases.insert(
5931           std::make_pair(DNominatedBase->getCanonicalDecl(),
5932                          DShadow->getNominatedBaseClassShadowDecl()));
5933       if (DShadow->constructsVirtualBase())
5934         InheritedFromBases.insert(
5935             std::make_pair(DConstructedBase->getCanonicalDecl(),
5936                            DShadow->getConstructedBaseClassShadowDecl()));
5937       else
5938         assert(DNominatedBase == DConstructedBase);
5939 
5940       // [class.inhctor.init]p2:
5941       //   If the constructor was inherited from multiple base class subobjects
5942       //   of type B, the program is ill-formed.
5943       if (!ConstructedBase) {
5944         ConstructedBase = DConstructedBase;
5945         ConstructedBaseUsing = D->getUsingDecl();
5946       } else if (ConstructedBase != DConstructedBase &&
5947                  !Shadow->isInvalidDecl()) {
5948         if (!DiagnosedMultipleConstructedBases) {
5949           S.Diag(UseLoc, diag::err_ambiguous_inherited_constructor)
5950               << Shadow->getTargetDecl();
5951           S.Diag(ConstructedBaseUsing->getLocation(),
5952                diag::note_ambiguous_inherited_constructor_using)
5953               << ConstructedBase;
5954           DiagnosedMultipleConstructedBases = true;
5955         }
5956         S.Diag(D->getUsingDecl()->getLocation(),
5957                diag::note_ambiguous_inherited_constructor_using)
5958             << DConstructedBase;
5959       }
5960     }
5961 
5962     if (DiagnosedMultipleConstructedBases)
5963       Shadow->setInvalidDecl();
5964   }
5965 
5966   /// Find the constructor to use for inherited construction of a base class,
5967   /// and whether that base class constructor inherits the constructor from a
5968   /// virtual base class (in which case it won't actually invoke it).
5969   std::pair<CXXConstructorDecl *, bool>
5970   findConstructorForBase(CXXRecordDecl *Base, CXXConstructorDecl *Ctor) const {
5971     auto It = InheritedFromBases.find(Base->getCanonicalDecl());
5972     if (It == InheritedFromBases.end())
5973       return std::make_pair(nullptr, false);
5974 
5975     // This is an intermediary class.
5976     if (It->second)
5977       return std::make_pair(
5978           S.findInheritingConstructor(UseLoc, Ctor, It->second),
5979           It->second->constructsVirtualBase());
5980 
5981     // This is the base class from which the constructor was inherited.
5982     return std::make_pair(Ctor, false);
5983   }
5984 };
5985 
5986 /// Is the special member function which would be selected to perform the
5987 /// specified operation on the specified class type a constexpr constructor?
5988 static bool
5989 specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
5990                          Sema::CXXSpecialMember CSM, unsigned Quals,
5991                          bool ConstRHS,
5992                          CXXConstructorDecl *InheritedCtor = nullptr,
5993                          Sema::InheritedConstructorInfo *Inherited = nullptr) {
5994   // If we're inheriting a constructor, see if we need to call it for this base
5995   // class.
5996   if (InheritedCtor) {
5997     assert(CSM == Sema::CXXDefaultConstructor);
5998     auto BaseCtor =
5999         Inherited->findConstructorForBase(ClassDecl, InheritedCtor).first;
6000     if (BaseCtor)
6001       return BaseCtor->isConstexpr();
6002   }
6003 
6004   if (CSM == Sema::CXXDefaultConstructor)
6005     return ClassDecl->hasConstexprDefaultConstructor();
6006 
6007   Sema::SpecialMemberOverloadResult SMOR =
6008       lookupCallFromSpecialMember(S, ClassDecl, CSM, Quals, ConstRHS);
6009   if (!SMOR.getMethod())
6010     // A constructor we wouldn't select can't be "involved in initializing"
6011     // anything.
6012     return true;
6013   return SMOR.getMethod()->isConstexpr();
6014 }
6015 
6016 /// Determine whether the specified special member function would be constexpr
6017 /// if it were implicitly defined.
6018 static bool defaultedSpecialMemberIsConstexpr(
6019     Sema &S, CXXRecordDecl *ClassDecl, Sema::CXXSpecialMember CSM,
6020     bool ConstArg, CXXConstructorDecl *InheritedCtor = nullptr,
6021     Sema::InheritedConstructorInfo *Inherited = nullptr) {
6022   if (!S.getLangOpts().CPlusPlus11)
6023     return false;
6024 
6025   // C++11 [dcl.constexpr]p4:
6026   // In the definition of a constexpr constructor [...]
6027   bool Ctor = true;
6028   switch (CSM) {
6029   case Sema::CXXDefaultConstructor:
6030     if (Inherited)
6031       break;
6032     // Since default constructor lookup is essentially trivial (and cannot
6033     // involve, for instance, template instantiation), we compute whether a
6034     // defaulted default constructor is constexpr directly within CXXRecordDecl.
6035     //
6036     // This is important for performance; we need to know whether the default
6037     // constructor is constexpr to determine whether the type is a literal type.
6038     return ClassDecl->defaultedDefaultConstructorIsConstexpr();
6039 
6040   case Sema::CXXCopyConstructor:
6041   case Sema::CXXMoveConstructor:
6042     // For copy or move constructors, we need to perform overload resolution.
6043     break;
6044 
6045   case Sema::CXXCopyAssignment:
6046   case Sema::CXXMoveAssignment:
6047     if (!S.getLangOpts().CPlusPlus14)
6048       return false;
6049     // In C++1y, we need to perform overload resolution.
6050     Ctor = false;
6051     break;
6052 
6053   case Sema::CXXDestructor:
6054   case Sema::CXXInvalid:
6055     return false;
6056   }
6057 
6058   //   -- if the class is a non-empty union, or for each non-empty anonymous
6059   //      union member of a non-union class, exactly one non-static data member
6060   //      shall be initialized; [DR1359]
6061   //
6062   // If we squint, this is guaranteed, since exactly one non-static data member
6063   // will be initialized (if the constructor isn't deleted), we just don't know
6064   // which one.
6065   if (Ctor && ClassDecl->isUnion())
6066     return CSM == Sema::CXXDefaultConstructor
6067                ? ClassDecl->hasInClassInitializer() ||
6068                      !ClassDecl->hasVariantMembers()
6069                : true;
6070 
6071   //   -- the class shall not have any virtual base classes;
6072   if (Ctor && ClassDecl->getNumVBases())
6073     return false;
6074 
6075   // C++1y [class.copy]p26:
6076   //   -- [the class] is a literal type, and
6077   if (!Ctor && !ClassDecl->isLiteral())
6078     return false;
6079 
6080   //   -- every constructor involved in initializing [...] base class
6081   //      sub-objects shall be a constexpr constructor;
6082   //   -- the assignment operator selected to copy/move each direct base
6083   //      class is a constexpr function, and
6084   for (const auto &B : ClassDecl->bases()) {
6085     const RecordType *BaseType = B.getType()->getAs<RecordType>();
6086     if (!BaseType) continue;
6087 
6088     CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
6089     if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, 0, ConstArg,
6090                                   InheritedCtor, Inherited))
6091       return false;
6092   }
6093 
6094   //   -- every constructor involved in initializing non-static data members
6095   //      [...] shall be a constexpr constructor;
6096   //   -- every non-static data member and base class sub-object shall be
6097   //      initialized
6098   //   -- for each non-static data member of X that is of class type (or array
6099   //      thereof), the assignment operator selected to copy/move that member is
6100   //      a constexpr function
6101   for (const auto *F : ClassDecl->fields()) {
6102     if (F->isInvalidDecl())
6103       continue;
6104     if (CSM == Sema::CXXDefaultConstructor && F->hasInClassInitializer())
6105       continue;
6106     QualType BaseType = S.Context.getBaseElementType(F->getType());
6107     if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
6108       CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6109       if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM,
6110                                     BaseType.getCVRQualifiers(),
6111                                     ConstArg && !F->isMutable()))
6112         return false;
6113     } else if (CSM == Sema::CXXDefaultConstructor) {
6114       return false;
6115     }
6116   }
6117 
6118   // All OK, it's constexpr!
6119   return true;
6120 }
6121 
6122 static Sema::ImplicitExceptionSpecification
6123 ComputeDefaultedSpecialMemberExceptionSpec(
6124     Sema &S, SourceLocation Loc, CXXMethodDecl *MD, Sema::CXXSpecialMember CSM,
6125     Sema::InheritedConstructorInfo *ICI);
6126 
6127 static Sema::ImplicitExceptionSpecification
6128 computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
6129   auto CSM = S.getSpecialMember(MD);
6130   if (CSM != Sema::CXXInvalid)
6131     return ComputeDefaultedSpecialMemberExceptionSpec(S, Loc, MD, CSM, nullptr);
6132 
6133   auto *CD = cast<CXXConstructorDecl>(MD);
6134   assert(CD->getInheritedConstructor() &&
6135          "only special members have implicit exception specs");
6136   Sema::InheritedConstructorInfo ICI(
6137       S, Loc, CD->getInheritedConstructor().getShadowDecl());
6138   return ComputeDefaultedSpecialMemberExceptionSpec(
6139       S, Loc, CD, Sema::CXXDefaultConstructor, &ICI);
6140 }
6141 
6142 static FunctionProtoType::ExtProtoInfo getImplicitMethodEPI(Sema &S,
6143                                                             CXXMethodDecl *MD) {
6144   FunctionProtoType::ExtProtoInfo EPI;
6145 
6146   // Build an exception specification pointing back at this member.
6147   EPI.ExceptionSpec.Type = EST_Unevaluated;
6148   EPI.ExceptionSpec.SourceDecl = MD;
6149 
6150   // Set the calling convention to the default for C++ instance methods.
6151   EPI.ExtInfo = EPI.ExtInfo.withCallingConv(
6152       S.Context.getDefaultCallingConvention(/*IsVariadic=*/false,
6153                                             /*IsCXXMethod=*/true));
6154   return EPI;
6155 }
6156 
6157 void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
6158   const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
6159   if (FPT->getExceptionSpecType() != EST_Unevaluated)
6160     return;
6161 
6162   // Evaluate the exception specification.
6163   auto IES = computeImplicitExceptionSpec(*this, Loc, MD);
6164   auto ESI = IES.getExceptionSpec();
6165 
6166   // Update the type of the special member to use it.
6167   UpdateExceptionSpec(MD, ESI);
6168 
6169   // A user-provided destructor can be defined outside the class. When that
6170   // happens, be sure to update the exception specification on both
6171   // declarations.
6172   const FunctionProtoType *CanonicalFPT =
6173     MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
6174   if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
6175     UpdateExceptionSpec(MD->getCanonicalDecl(), ESI);
6176 }
6177 
6178 void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
6179   CXXRecordDecl *RD = MD->getParent();
6180   CXXSpecialMember CSM = getSpecialMember(MD);
6181 
6182   assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
6183          "not an explicitly-defaulted special member");
6184 
6185   // Whether this was the first-declared instance of the constructor.
6186   // This affects whether we implicitly add an exception spec and constexpr.
6187   bool First = MD == MD->getCanonicalDecl();
6188 
6189   bool HadError = false;
6190 
6191   // C++11 [dcl.fct.def.default]p1:
6192   //   A function that is explicitly defaulted shall
6193   //     -- be a special member function (checked elsewhere),
6194   //     -- have the same type (except for ref-qualifiers, and except that a
6195   //        copy operation can take a non-const reference) as an implicit
6196   //        declaration, and
6197   //     -- not have default arguments.
6198   unsigned ExpectedParams = 1;
6199   if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
6200     ExpectedParams = 0;
6201   if (MD->getNumParams() != ExpectedParams) {
6202     // This also checks for default arguments: a copy or move constructor with a
6203     // default argument is classified as a default constructor, and assignment
6204     // operations and destructors can't have default arguments.
6205     Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
6206       << CSM << MD->getSourceRange();
6207     HadError = true;
6208   } else if (MD->isVariadic()) {
6209     Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic)
6210       << CSM << MD->getSourceRange();
6211     HadError = true;
6212   }
6213 
6214   const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
6215 
6216   bool CanHaveConstParam = false;
6217   if (CSM == CXXCopyConstructor)
6218     CanHaveConstParam = RD->implicitCopyConstructorHasConstParam();
6219   else if (CSM == CXXCopyAssignment)
6220     CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam();
6221 
6222   QualType ReturnType = Context.VoidTy;
6223   if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
6224     // Check for return type matching.
6225     ReturnType = Type->getReturnType();
6226     QualType ExpectedReturnType =
6227         Context.getLValueReferenceType(Context.getTypeDeclType(RD));
6228     if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
6229       Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
6230         << (CSM == CXXMoveAssignment) << ExpectedReturnType;
6231       HadError = true;
6232     }
6233 
6234     // A defaulted special member cannot have cv-qualifiers.
6235     if (Type->getTypeQuals()) {
6236       Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
6237         << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus14;
6238       HadError = true;
6239     }
6240   }
6241 
6242   // Check for parameter type matching.
6243   QualType ArgType = ExpectedParams ? Type->getParamType(0) : QualType();
6244   bool HasConstParam = false;
6245   if (ExpectedParams && ArgType->isReferenceType()) {
6246     // Argument must be reference to possibly-const T.
6247     QualType ReferentType = ArgType->getPointeeType();
6248     HasConstParam = ReferentType.isConstQualified();
6249 
6250     if (ReferentType.isVolatileQualified()) {
6251       Diag(MD->getLocation(),
6252            diag::err_defaulted_special_member_volatile_param) << CSM;
6253       HadError = true;
6254     }
6255 
6256     if (HasConstParam && !CanHaveConstParam) {
6257       if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
6258         Diag(MD->getLocation(),
6259              diag::err_defaulted_special_member_copy_const_param)
6260           << (CSM == CXXCopyAssignment);
6261         // FIXME: Explain why this special member can't be const.
6262       } else {
6263         Diag(MD->getLocation(),
6264              diag::err_defaulted_special_member_move_const_param)
6265           << (CSM == CXXMoveAssignment);
6266       }
6267       HadError = true;
6268     }
6269   } else if (ExpectedParams) {
6270     // A copy assignment operator can take its argument by value, but a
6271     // defaulted one cannot.
6272     assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
6273     Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
6274     HadError = true;
6275   }
6276 
6277   // C++11 [dcl.fct.def.default]p2:
6278   //   An explicitly-defaulted function may be declared constexpr only if it
6279   //   would have been implicitly declared as constexpr,
6280   // Do not apply this rule to members of class templates, since core issue 1358
6281   // makes such functions always instantiate to constexpr functions. For
6282   // functions which cannot be constexpr (for non-constructors in C++11 and for
6283   // destructors in C++1y), this is checked elsewhere.
6284   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
6285                                                      HasConstParam);
6286   if ((getLangOpts().CPlusPlus14 ? !isa<CXXDestructorDecl>(MD)
6287                                  : isa<CXXConstructorDecl>(MD)) &&
6288       MD->isConstexpr() && !Constexpr &&
6289       MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
6290     Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
6291     // FIXME: Explain why the special member can't be constexpr.
6292     HadError = true;
6293   }
6294 
6295   //   and may have an explicit exception-specification only if it is compatible
6296   //   with the exception-specification on the implicit declaration.
6297   if (Type->hasExceptionSpec()) {
6298     // Delay the check if this is the first declaration of the special member,
6299     // since we may not have parsed some necessary in-class initializers yet.
6300     if (First) {
6301       // If the exception specification needs to be instantiated, do so now,
6302       // before we clobber it with an EST_Unevaluated specification below.
6303       if (Type->getExceptionSpecType() == EST_Uninstantiated) {
6304         InstantiateExceptionSpec(MD->getLocStart(), MD);
6305         Type = MD->getType()->getAs<FunctionProtoType>();
6306       }
6307       DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type));
6308     } else
6309       CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type);
6310   }
6311 
6312   //   If a function is explicitly defaulted on its first declaration,
6313   if (First) {
6314     //  -- it is implicitly considered to be constexpr if the implicit
6315     //     definition would be,
6316     MD->setConstexpr(Constexpr);
6317 
6318     //  -- it is implicitly considered to have the same exception-specification
6319     //     as if it had been implicitly declared,
6320     FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
6321     EPI.ExceptionSpec.Type = EST_Unevaluated;
6322     EPI.ExceptionSpec.SourceDecl = MD;
6323     MD->setType(Context.getFunctionType(ReturnType,
6324                                         llvm::makeArrayRef(&ArgType,
6325                                                            ExpectedParams),
6326                                         EPI));
6327   }
6328 
6329   if (ShouldDeleteSpecialMember(MD, CSM)) {
6330     if (First) {
6331       SetDeclDeleted(MD, MD->getLocation());
6332     } else {
6333       // C++11 [dcl.fct.def.default]p4:
6334       //   [For a] user-provided explicitly-defaulted function [...] if such a
6335       //   function is implicitly defined as deleted, the program is ill-formed.
6336       Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
6337       ShouldDeleteSpecialMember(MD, CSM, nullptr, /*Diagnose*/true);
6338       HadError = true;
6339     }
6340   }
6341 
6342   if (HadError)
6343     MD->setInvalidDecl();
6344 }
6345 
6346 /// Check whether the exception specification provided for an
6347 /// explicitly-defaulted special member matches the exception specification
6348 /// that would have been generated for an implicit special member, per
6349 /// C++11 [dcl.fct.def.default]p2.
6350 void Sema::CheckExplicitlyDefaultedMemberExceptionSpec(
6351     CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) {
6352   // If the exception specification was explicitly specified but hadn't been
6353   // parsed when the method was defaulted, grab it now.
6354   if (SpecifiedType->getExceptionSpecType() == EST_Unparsed)
6355     SpecifiedType =
6356         MD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>();
6357 
6358   // Compute the implicit exception specification.
6359   CallingConv CC = Context.getDefaultCallingConvention(/*IsVariadic=*/false,
6360                                                        /*IsCXXMethod=*/true);
6361   FunctionProtoType::ExtProtoInfo EPI(CC);
6362   auto IES = computeImplicitExceptionSpec(*this, MD->getLocation(), MD);
6363   EPI.ExceptionSpec = IES.getExceptionSpec();
6364   const FunctionProtoType *ImplicitType = cast<FunctionProtoType>(
6365     Context.getFunctionType(Context.VoidTy, None, EPI));
6366 
6367   // Ensure that it matches.
6368   CheckEquivalentExceptionSpec(
6369     PDiag(diag::err_incorrect_defaulted_exception_spec)
6370       << getSpecialMember(MD), PDiag(),
6371     ImplicitType, SourceLocation(),
6372     SpecifiedType, MD->getLocation());
6373 }
6374 
6375 void Sema::CheckDelayedMemberExceptionSpecs() {
6376   decltype(DelayedExceptionSpecChecks) Checks;
6377   decltype(DelayedDefaultedMemberExceptionSpecs) Specs;
6378 
6379   std::swap(Checks, DelayedExceptionSpecChecks);
6380   std::swap(Specs, DelayedDefaultedMemberExceptionSpecs);
6381 
6382   // Perform any deferred checking of exception specifications for virtual
6383   // destructors.
6384   for (auto &Check : Checks)
6385     CheckOverridingFunctionExceptionSpec(Check.first, Check.second);
6386 
6387   // Check that any explicitly-defaulted methods have exception specifications
6388   // compatible with their implicit exception specifications.
6389   for (auto &Spec : Specs)
6390     CheckExplicitlyDefaultedMemberExceptionSpec(Spec.first, Spec.second);
6391 }
6392 
6393 namespace {
6394 /// CRTP base class for visiting operations performed by a special member
6395 /// function (or inherited constructor).
6396 template<typename Derived>
6397 struct SpecialMemberVisitor {
6398   Sema &S;
6399   CXXMethodDecl *MD;
6400   Sema::CXXSpecialMember CSM;
6401   Sema::InheritedConstructorInfo *ICI;
6402 
6403   // Properties of the special member, computed for convenience.
6404   bool IsConstructor = false, IsAssignment = false, ConstArg = false;
6405 
6406   SpecialMemberVisitor(Sema &S, CXXMethodDecl *MD, Sema::CXXSpecialMember CSM,
6407                        Sema::InheritedConstructorInfo *ICI)
6408       : S(S), MD(MD), CSM(CSM), ICI(ICI) {
6409     switch (CSM) {
6410     case Sema::CXXDefaultConstructor:
6411     case Sema::CXXCopyConstructor:
6412     case Sema::CXXMoveConstructor:
6413       IsConstructor = true;
6414       break;
6415     case Sema::CXXCopyAssignment:
6416     case Sema::CXXMoveAssignment:
6417       IsAssignment = true;
6418       break;
6419     case Sema::CXXDestructor:
6420       break;
6421     case Sema::CXXInvalid:
6422       llvm_unreachable("invalid special member kind");
6423     }
6424 
6425     if (MD->getNumParams()) {
6426       if (const ReferenceType *RT =
6427               MD->getParamDecl(0)->getType()->getAs<ReferenceType>())
6428         ConstArg = RT->getPointeeType().isConstQualified();
6429     }
6430   }
6431 
6432   Derived &getDerived() { return static_cast<Derived&>(*this); }
6433 
6434   /// Is this a "move" special member?
6435   bool isMove() const {
6436     return CSM == Sema::CXXMoveConstructor || CSM == Sema::CXXMoveAssignment;
6437   }
6438 
6439   /// Look up the corresponding special member in the given class.
6440   Sema::SpecialMemberOverloadResult lookupIn(CXXRecordDecl *Class,
6441                                              unsigned Quals, bool IsMutable) {
6442     return lookupCallFromSpecialMember(S, Class, CSM, Quals,
6443                                        ConstArg && !IsMutable);
6444   }
6445 
6446   /// Look up the constructor for the specified base class to see if it's
6447   /// overridden due to this being an inherited constructor.
6448   Sema::SpecialMemberOverloadResult lookupInheritedCtor(CXXRecordDecl *Class) {
6449     if (!ICI)
6450       return {};
6451     assert(CSM == Sema::CXXDefaultConstructor);
6452     auto *BaseCtor =
6453       cast<CXXConstructorDecl>(MD)->getInheritedConstructor().getConstructor();
6454     if (auto *MD = ICI->findConstructorForBase(Class, BaseCtor).first)
6455       return MD;
6456     return {};
6457   }
6458 
6459   /// A base or member subobject.
6460   typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
6461 
6462   /// Get the location to use for a subobject in diagnostics.
6463   static SourceLocation getSubobjectLoc(Subobject Subobj) {
6464     // FIXME: For an indirect virtual base, the direct base leading to
6465     // the indirect virtual base would be a more useful choice.
6466     if (auto *B = Subobj.dyn_cast<CXXBaseSpecifier*>())
6467       return B->getBaseTypeLoc();
6468     else
6469       return Subobj.get<FieldDecl*>()->getLocation();
6470   }
6471 
6472   enum BasesToVisit {
6473     /// Visit all non-virtual (direct) bases.
6474     VisitNonVirtualBases,
6475     /// Visit all direct bases, virtual or not.
6476     VisitDirectBases,
6477     /// Visit all non-virtual bases, and all virtual bases if the class
6478     /// is not abstract.
6479     VisitPotentiallyConstructedBases,
6480     /// Visit all direct or virtual bases.
6481     VisitAllBases
6482   };
6483 
6484   // Visit the bases and members of the class.
6485   bool visit(BasesToVisit Bases) {
6486     CXXRecordDecl *RD = MD->getParent();
6487 
6488     if (Bases == VisitPotentiallyConstructedBases)
6489       Bases = RD->isAbstract() ? VisitNonVirtualBases : VisitAllBases;
6490 
6491     for (auto &B : RD->bases())
6492       if ((Bases == VisitDirectBases || !B.isVirtual()) &&
6493           getDerived().visitBase(&B))
6494         return true;
6495 
6496     if (Bases == VisitAllBases)
6497       for (auto &B : RD->vbases())
6498         if (getDerived().visitBase(&B))
6499           return true;
6500 
6501     for (auto *F : RD->fields())
6502       if (!F->isInvalidDecl() && !F->isUnnamedBitfield() &&
6503           getDerived().visitField(F))
6504         return true;
6505 
6506     return false;
6507   }
6508 };
6509 }
6510 
6511 namespace {
6512 struct SpecialMemberDeletionInfo
6513     : SpecialMemberVisitor<SpecialMemberDeletionInfo> {
6514   bool Diagnose;
6515 
6516   SourceLocation Loc;
6517 
6518   bool AllFieldsAreConst;
6519 
6520   SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
6521                             Sema::CXXSpecialMember CSM,
6522                             Sema::InheritedConstructorInfo *ICI, bool Diagnose)
6523       : SpecialMemberVisitor(S, MD, CSM, ICI), Diagnose(Diagnose),
6524         Loc(MD->getLocation()), AllFieldsAreConst(true) {}
6525 
6526   bool inUnion() const { return MD->getParent()->isUnion(); }
6527 
6528   Sema::CXXSpecialMember getEffectiveCSM() {
6529     return ICI ? Sema::CXXInvalid : CSM;
6530   }
6531 
6532   bool visitBase(CXXBaseSpecifier *Base) { return shouldDeleteForBase(Base); }
6533   bool visitField(FieldDecl *Field) { return shouldDeleteForField(Field); }
6534 
6535   bool shouldDeleteForBase(CXXBaseSpecifier *Base);
6536   bool shouldDeleteForField(FieldDecl *FD);
6537   bool shouldDeleteForAllConstMembers();
6538 
6539   bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
6540                                      unsigned Quals);
6541   bool shouldDeleteForSubobjectCall(Subobject Subobj,
6542                                     Sema::SpecialMemberOverloadResult SMOR,
6543                                     bool IsDtorCallInCtor);
6544 
6545   bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
6546 };
6547 }
6548 
6549 /// Is the given special member inaccessible when used on the given
6550 /// sub-object.
6551 bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
6552                                              CXXMethodDecl *target) {
6553   /// If we're operating on a base class, the object type is the
6554   /// type of this special member.
6555   QualType objectTy;
6556   AccessSpecifier access = target->getAccess();
6557   if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
6558     objectTy = S.Context.getTypeDeclType(MD->getParent());
6559     access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
6560 
6561   // If we're operating on a field, the object type is the type of the field.
6562   } else {
6563     objectTy = S.Context.getTypeDeclType(target->getParent());
6564   }
6565 
6566   return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
6567 }
6568 
6569 /// Check whether we should delete a special member due to the implicit
6570 /// definition containing a call to a special member of a subobject.
6571 bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
6572     Subobject Subobj, Sema::SpecialMemberOverloadResult SMOR,
6573     bool IsDtorCallInCtor) {
6574   CXXMethodDecl *Decl = SMOR.getMethod();
6575   FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
6576 
6577   int DiagKind = -1;
6578 
6579   if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
6580     DiagKind = !Decl ? 0 : 1;
6581   else if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
6582     DiagKind = 2;
6583   else if (!isAccessible(Subobj, Decl))
6584     DiagKind = 3;
6585   else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
6586            !Decl->isTrivial()) {
6587     // A member of a union must have a trivial corresponding special member.
6588     // As a weird special case, a destructor call from a union's constructor
6589     // must be accessible and non-deleted, but need not be trivial. Such a
6590     // destructor is never actually called, but is semantically checked as
6591     // if it were.
6592     DiagKind = 4;
6593   }
6594 
6595   if (DiagKind == -1)
6596     return false;
6597 
6598   if (Diagnose) {
6599     if (Field) {
6600       S.Diag(Field->getLocation(),
6601              diag::note_deleted_special_member_class_subobject)
6602         << getEffectiveCSM() << MD->getParent() << /*IsField*/true
6603         << Field << DiagKind << IsDtorCallInCtor;
6604     } else {
6605       CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
6606       S.Diag(Base->getLocStart(),
6607              diag::note_deleted_special_member_class_subobject)
6608         << getEffectiveCSM() << MD->getParent() << /*IsField*/false
6609         << Base->getType() << DiagKind << IsDtorCallInCtor;
6610     }
6611 
6612     if (DiagKind == 1)
6613       S.NoteDeletedFunction(Decl);
6614     // FIXME: Explain inaccessibility if DiagKind == 3.
6615   }
6616 
6617   return true;
6618 }
6619 
6620 /// Check whether we should delete a special member function due to having a
6621 /// direct or virtual base class or non-static data member of class type M.
6622 bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
6623     CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
6624   FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
6625   bool IsMutable = Field && Field->isMutable();
6626 
6627   // C++11 [class.ctor]p5:
6628   // -- any direct or virtual base class, or non-static data member with no
6629   //    brace-or-equal-initializer, has class type M (or array thereof) and
6630   //    either M has no default constructor or overload resolution as applied
6631   //    to M's default constructor results in an ambiguity or in a function
6632   //    that is deleted or inaccessible
6633   // C++11 [class.copy]p11, C++11 [class.copy]p23:
6634   // -- a direct or virtual base class B that cannot be copied/moved because
6635   //    overload resolution, as applied to B's corresponding special member,
6636   //    results in an ambiguity or a function that is deleted or inaccessible
6637   //    from the defaulted special member
6638   // C++11 [class.dtor]p5:
6639   // -- any direct or virtual base class [...] has a type with a destructor
6640   //    that is deleted or inaccessible
6641   if (!(CSM == Sema::CXXDefaultConstructor &&
6642         Field && Field->hasInClassInitializer()) &&
6643       shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable),
6644                                    false))
6645     return true;
6646 
6647   // C++11 [class.ctor]p5, C++11 [class.copy]p11:
6648   // -- any direct or virtual base class or non-static data member has a
6649   //    type with a destructor that is deleted or inaccessible
6650   if (IsConstructor) {
6651     Sema::SpecialMemberOverloadResult SMOR =
6652         S.LookupSpecialMember(Class, Sema::CXXDestructor,
6653                               false, false, false, false, false);
6654     if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
6655       return true;
6656   }
6657 
6658   return false;
6659 }
6660 
6661 /// Check whether we should delete a special member function due to the class
6662 /// having a particular direct or virtual base class.
6663 bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
6664   CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
6665   // If program is correct, BaseClass cannot be null, but if it is, the error
6666   // must be reported elsewhere.
6667   if (!BaseClass)
6668     return false;
6669   // If we have an inheriting constructor, check whether we're calling an
6670   // inherited constructor instead of a default constructor.
6671   Sema::SpecialMemberOverloadResult SMOR = lookupInheritedCtor(BaseClass);
6672   if (auto *BaseCtor = SMOR.getMethod()) {
6673     // Note that we do not check access along this path; other than that,
6674     // this is the same as shouldDeleteForSubobjectCall(Base, BaseCtor, false);
6675     // FIXME: Check that the base has a usable destructor! Sink this into
6676     // shouldDeleteForClassSubobject.
6677     if (BaseCtor->isDeleted() && Diagnose) {
6678       S.Diag(Base->getLocStart(),
6679              diag::note_deleted_special_member_class_subobject)
6680         << getEffectiveCSM() << MD->getParent() << /*IsField*/false
6681         << Base->getType() << /*Deleted*/1 << /*IsDtorCallInCtor*/false;
6682       S.NoteDeletedFunction(BaseCtor);
6683     }
6684     return BaseCtor->isDeleted();
6685   }
6686   return shouldDeleteForClassSubobject(BaseClass, Base, 0);
6687 }
6688 
6689 /// Check whether we should delete a special member function due to the class
6690 /// having a particular non-static data member.
6691 bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
6692   QualType FieldType = S.Context.getBaseElementType(FD->getType());
6693   CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
6694 
6695   if (CSM == Sema::CXXDefaultConstructor) {
6696     // For a default constructor, all references must be initialized in-class
6697     // and, if a union, it must have a non-const member.
6698     if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
6699       if (Diagnose)
6700         S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
6701           << !!ICI << MD->getParent() << FD << FieldType << /*Reference*/0;
6702       return true;
6703     }
6704     // C++11 [class.ctor]p5: any non-variant non-static data member of
6705     // const-qualified type (or array thereof) with no
6706     // brace-or-equal-initializer does not have a user-provided default
6707     // constructor.
6708     if (!inUnion() && FieldType.isConstQualified() &&
6709         !FD->hasInClassInitializer() &&
6710         (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
6711       if (Diagnose)
6712         S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
6713           << !!ICI << MD->getParent() << FD << FD->getType() << /*Const*/1;
6714       return true;
6715     }
6716 
6717     if (inUnion() && !FieldType.isConstQualified())
6718       AllFieldsAreConst = false;
6719   } else if (CSM == Sema::CXXCopyConstructor) {
6720     // For a copy constructor, data members must not be of rvalue reference
6721     // type.
6722     if (FieldType->isRValueReferenceType()) {
6723       if (Diagnose)
6724         S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
6725           << MD->getParent() << FD << FieldType;
6726       return true;
6727     }
6728   } else if (IsAssignment) {
6729     // For an assignment operator, data members must not be of reference type.
6730     if (FieldType->isReferenceType()) {
6731       if (Diagnose)
6732         S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
6733           << isMove() << MD->getParent() << FD << FieldType << /*Reference*/0;
6734       return true;
6735     }
6736     if (!FieldRecord && FieldType.isConstQualified()) {
6737       // C++11 [class.copy]p23:
6738       // -- a non-static data member of const non-class type (or array thereof)
6739       if (Diagnose)
6740         S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
6741           << isMove() << MD->getParent() << FD << FD->getType() << /*Const*/1;
6742       return true;
6743     }
6744   }
6745 
6746   if (FieldRecord) {
6747     // Some additional restrictions exist on the variant members.
6748     if (!inUnion() && FieldRecord->isUnion() &&
6749         FieldRecord->isAnonymousStructOrUnion()) {
6750       bool AllVariantFieldsAreConst = true;
6751 
6752       // FIXME: Handle anonymous unions declared within anonymous unions.
6753       for (auto *UI : FieldRecord->fields()) {
6754         QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
6755 
6756         if (!UnionFieldType.isConstQualified())
6757           AllVariantFieldsAreConst = false;
6758 
6759         CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
6760         if (UnionFieldRecord &&
6761             shouldDeleteForClassSubobject(UnionFieldRecord, UI,
6762                                           UnionFieldType.getCVRQualifiers()))
6763           return true;
6764       }
6765 
6766       // At least one member in each anonymous union must be non-const
6767       if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
6768           !FieldRecord->field_empty()) {
6769         if (Diagnose)
6770           S.Diag(FieldRecord->getLocation(),
6771                  diag::note_deleted_default_ctor_all_const)
6772             << !!ICI << MD->getParent() << /*anonymous union*/1;
6773         return true;
6774       }
6775 
6776       // Don't check the implicit member of the anonymous union type.
6777       // This is technically non-conformant, but sanity demands it.
6778       return false;
6779     }
6780 
6781     if (shouldDeleteForClassSubobject(FieldRecord, FD,
6782                                       FieldType.getCVRQualifiers()))
6783       return true;
6784   }
6785 
6786   return false;
6787 }
6788 
6789 /// C++11 [class.ctor] p5:
6790 ///   A defaulted default constructor for a class X is defined as deleted if
6791 /// X is a union and all of its variant members are of const-qualified type.
6792 bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
6793   // This is a silly definition, because it gives an empty union a deleted
6794   // default constructor. Don't do that.
6795   if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst) {
6796     bool AnyFields = false;
6797     for (auto *F : MD->getParent()->fields())
6798       if ((AnyFields = !F->isUnnamedBitfield()))
6799         break;
6800     if (!AnyFields)
6801       return false;
6802     if (Diagnose)
6803       S.Diag(MD->getParent()->getLocation(),
6804              diag::note_deleted_default_ctor_all_const)
6805         << !!ICI << MD->getParent() << /*not anonymous union*/0;
6806     return true;
6807   }
6808   return false;
6809 }
6810 
6811 /// Determine whether a defaulted special member function should be defined as
6812 /// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
6813 /// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
6814 bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
6815                                      InheritedConstructorInfo *ICI,
6816                                      bool Diagnose) {
6817   if (MD->isInvalidDecl())
6818     return false;
6819   CXXRecordDecl *RD = MD->getParent();
6820   assert(!RD->isDependentType() && "do deletion after instantiation");
6821   if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl())
6822     return false;
6823 
6824   // C++11 [expr.lambda.prim]p19:
6825   //   The closure type associated with a lambda-expression has a
6826   //   deleted (8.4.3) default constructor and a deleted copy
6827   //   assignment operator.
6828   if (RD->isLambda() &&
6829       (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
6830     if (Diagnose)
6831       Diag(RD->getLocation(), diag::note_lambda_decl);
6832     return true;
6833   }
6834 
6835   // For an anonymous struct or union, the copy and assignment special members
6836   // will never be used, so skip the check. For an anonymous union declared at
6837   // namespace scope, the constructor and destructor are used.
6838   if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
6839       RD->isAnonymousStructOrUnion())
6840     return false;
6841 
6842   // C++11 [class.copy]p7, p18:
6843   //   If the class definition declares a move constructor or move assignment
6844   //   operator, an implicitly declared copy constructor or copy assignment
6845   //   operator is defined as deleted.
6846   if (MD->isImplicit() &&
6847       (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
6848     CXXMethodDecl *UserDeclaredMove = nullptr;
6849 
6850     // In Microsoft mode up to MSVC 2013, a user-declared move only causes the
6851     // deletion of the corresponding copy operation, not both copy operations.
6852     // MSVC 2015 has adopted the standards conforming behavior.
6853     bool DeletesOnlyMatchingCopy =
6854         getLangOpts().MSVCCompat &&
6855         !getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015);
6856 
6857     if (RD->hasUserDeclaredMoveConstructor() &&
6858         (!DeletesOnlyMatchingCopy || CSM == CXXCopyConstructor)) {
6859       if (!Diagnose) return true;
6860 
6861       // Find any user-declared move constructor.
6862       for (auto *I : RD->ctors()) {
6863         if (I->isMoveConstructor()) {
6864           UserDeclaredMove = I;
6865           break;
6866         }
6867       }
6868       assert(UserDeclaredMove);
6869     } else if (RD->hasUserDeclaredMoveAssignment() &&
6870                (!DeletesOnlyMatchingCopy || CSM == CXXCopyAssignment)) {
6871       if (!Diagnose) return true;
6872 
6873       // Find any user-declared move assignment operator.
6874       for (auto *I : RD->methods()) {
6875         if (I->isMoveAssignmentOperator()) {
6876           UserDeclaredMove = I;
6877           break;
6878         }
6879       }
6880       assert(UserDeclaredMove);
6881     }
6882 
6883     if (UserDeclaredMove) {
6884       Diag(UserDeclaredMove->getLocation(),
6885            diag::note_deleted_copy_user_declared_move)
6886         << (CSM == CXXCopyAssignment) << RD
6887         << UserDeclaredMove->isMoveAssignmentOperator();
6888       return true;
6889     }
6890   }
6891 
6892   // Do access control from the special member function
6893   ContextRAII MethodContext(*this, MD);
6894 
6895   // C++11 [class.dtor]p5:
6896   // -- for a virtual destructor, lookup of the non-array deallocation function
6897   //    results in an ambiguity or in a function that is deleted or inaccessible
6898   if (CSM == CXXDestructor && MD->isVirtual()) {
6899     FunctionDecl *OperatorDelete = nullptr;
6900     DeclarationName Name =
6901       Context.DeclarationNames.getCXXOperatorName(OO_Delete);
6902     if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
6903                                  OperatorDelete, /*Diagnose*/false)) {
6904       if (Diagnose)
6905         Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
6906       return true;
6907     }
6908   }
6909 
6910   SpecialMemberDeletionInfo SMI(*this, MD, CSM, ICI, Diagnose);
6911 
6912   // Per DR1611, do not consider virtual bases of constructors of abstract
6913   // classes, since we are not going to construct them.
6914   // Per DR1658, do not consider virtual bases of destructors of abstract
6915   // classes either.
6916   // Per DR2180, for assignment operators we only assign (and thus only
6917   // consider) direct bases.
6918   if (SMI.visit(SMI.IsAssignment ? SMI.VisitDirectBases
6919                                  : SMI.VisitPotentiallyConstructedBases))
6920     return true;
6921 
6922   if (SMI.shouldDeleteForAllConstMembers())
6923     return true;
6924 
6925   if (getLangOpts().CUDA) {
6926     // We should delete the special member in CUDA mode if target inference
6927     // failed.
6928     return inferCUDATargetForImplicitSpecialMember(RD, CSM, MD, SMI.ConstArg,
6929                                                    Diagnose);
6930   }
6931 
6932   return false;
6933 }
6934 
6935 /// Perform lookup for a special member of the specified kind, and determine
6936 /// whether it is trivial. If the triviality can be determined without the
6937 /// lookup, skip it. This is intended for use when determining whether a
6938 /// special member of a containing object is trivial, and thus does not ever
6939 /// perform overload resolution for default constructors.
6940 ///
6941 /// If \p Selected is not \c NULL, \c *Selected will be filled in with the
6942 /// member that was most likely to be intended to be trivial, if any.
6943 static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD,
6944                                      Sema::CXXSpecialMember CSM, unsigned Quals,
6945                                      bool ConstRHS, CXXMethodDecl **Selected) {
6946   if (Selected)
6947     *Selected = nullptr;
6948 
6949   switch (CSM) {
6950   case Sema::CXXInvalid:
6951     llvm_unreachable("not a special member");
6952 
6953   case Sema::CXXDefaultConstructor:
6954     // C++11 [class.ctor]p5:
6955     //   A default constructor is trivial if:
6956     //    - all the [direct subobjects] have trivial default constructors
6957     //
6958     // Note, no overload resolution is performed in this case.
6959     if (RD->hasTrivialDefaultConstructor())
6960       return true;
6961 
6962     if (Selected) {
6963       // If there's a default constructor which could have been trivial, dig it
6964       // out. Otherwise, if there's any user-provided default constructor, point
6965       // to that as an example of why there's not a trivial one.
6966       CXXConstructorDecl *DefCtor = nullptr;
6967       if (RD->needsImplicitDefaultConstructor())
6968         S.DeclareImplicitDefaultConstructor(RD);
6969       for (auto *CI : RD->ctors()) {
6970         if (!CI->isDefaultConstructor())
6971           continue;
6972         DefCtor = CI;
6973         if (!DefCtor->isUserProvided())
6974           break;
6975       }
6976 
6977       *Selected = DefCtor;
6978     }
6979 
6980     return false;
6981 
6982   case Sema::CXXDestructor:
6983     // C++11 [class.dtor]p5:
6984     //   A destructor is trivial if:
6985     //    - all the direct [subobjects] have trivial destructors
6986     if (RD->hasTrivialDestructor())
6987       return true;
6988 
6989     if (Selected) {
6990       if (RD->needsImplicitDestructor())
6991         S.DeclareImplicitDestructor(RD);
6992       *Selected = RD->getDestructor();
6993     }
6994 
6995     return false;
6996 
6997   case Sema::CXXCopyConstructor:
6998     // C++11 [class.copy]p12:
6999     //   A copy constructor is trivial if:
7000     //    - the constructor selected to copy each direct [subobject] is trivial
7001     if (RD->hasTrivialCopyConstructor()) {
7002       if (Quals == Qualifiers::Const)
7003         // We must either select the trivial copy constructor or reach an
7004         // ambiguity; no need to actually perform overload resolution.
7005         return true;
7006     } else if (!Selected) {
7007       return false;
7008     }
7009     // In C++98, we are not supposed to perform overload resolution here, but we
7010     // treat that as a language defect, as suggested on cxx-abi-dev, to treat
7011     // cases like B as having a non-trivial copy constructor:
7012     //   struct A { template<typename T> A(T&); };
7013     //   struct B { mutable A a; };
7014     goto NeedOverloadResolution;
7015 
7016   case Sema::CXXCopyAssignment:
7017     // C++11 [class.copy]p25:
7018     //   A copy assignment operator is trivial if:
7019     //    - the assignment operator selected to copy each direct [subobject] is
7020     //      trivial
7021     if (RD->hasTrivialCopyAssignment()) {
7022       if (Quals == Qualifiers::Const)
7023         return true;
7024     } else if (!Selected) {
7025       return false;
7026     }
7027     // In C++98, we are not supposed to perform overload resolution here, but we
7028     // treat that as a language defect.
7029     goto NeedOverloadResolution;
7030 
7031   case Sema::CXXMoveConstructor:
7032   case Sema::CXXMoveAssignment:
7033   NeedOverloadResolution:
7034     Sema::SpecialMemberOverloadResult SMOR =
7035         lookupCallFromSpecialMember(S, RD, CSM, Quals, ConstRHS);
7036 
7037     // The standard doesn't describe how to behave if the lookup is ambiguous.
7038     // We treat it as not making the member non-trivial, just like the standard
7039     // mandates for the default constructor. This should rarely matter, because
7040     // the member will also be deleted.
7041     if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
7042       return true;
7043 
7044     if (!SMOR.getMethod()) {
7045       assert(SMOR.getKind() ==
7046              Sema::SpecialMemberOverloadResult::NoMemberOrDeleted);
7047       return false;
7048     }
7049 
7050     // We deliberately don't check if we found a deleted special member. We're
7051     // not supposed to!
7052     if (Selected)
7053       *Selected = SMOR.getMethod();
7054     return SMOR.getMethod()->isTrivial();
7055   }
7056 
7057   llvm_unreachable("unknown special method kind");
7058 }
7059 
7060 static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) {
7061   for (auto *CI : RD->ctors())
7062     if (!CI->isImplicit())
7063       return CI;
7064 
7065   // Look for constructor templates.
7066   typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter;
7067   for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) {
7068     if (CXXConstructorDecl *CD =
7069           dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl()))
7070       return CD;
7071   }
7072 
7073   return nullptr;
7074 }
7075 
7076 /// The kind of subobject we are checking for triviality. The values of this
7077 /// enumeration are used in diagnostics.
7078 enum TrivialSubobjectKind {
7079   /// The subobject is a base class.
7080   TSK_BaseClass,
7081   /// The subobject is a non-static data member.
7082   TSK_Field,
7083   /// The object is actually the complete object.
7084   TSK_CompleteObject
7085 };
7086 
7087 /// Check whether the special member selected for a given type would be trivial.
7088 static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc,
7089                                       QualType SubType, bool ConstRHS,
7090                                       Sema::CXXSpecialMember CSM,
7091                                       TrivialSubobjectKind Kind,
7092                                       bool Diagnose) {
7093   CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl();
7094   if (!SubRD)
7095     return true;
7096 
7097   CXXMethodDecl *Selected;
7098   if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(),
7099                                ConstRHS, Diagnose ? &Selected : nullptr))
7100     return true;
7101 
7102   if (Diagnose) {
7103     if (ConstRHS)
7104       SubType.addConst();
7105 
7106     if (!Selected && CSM == Sema::CXXDefaultConstructor) {
7107       S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor)
7108         << Kind << SubType.getUnqualifiedType();
7109       if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD))
7110         S.Diag(CD->getLocation(), diag::note_user_declared_ctor);
7111     } else if (!Selected)
7112       S.Diag(SubobjLoc, diag::note_nontrivial_no_copy)
7113         << Kind << SubType.getUnqualifiedType() << CSM << SubType;
7114     else if (Selected->isUserProvided()) {
7115       if (Kind == TSK_CompleteObject)
7116         S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided)
7117           << Kind << SubType.getUnqualifiedType() << CSM;
7118       else {
7119         S.Diag(SubobjLoc, diag::note_nontrivial_user_provided)
7120           << Kind << SubType.getUnqualifiedType() << CSM;
7121         S.Diag(Selected->getLocation(), diag::note_declared_at);
7122       }
7123     } else {
7124       if (Kind != TSK_CompleteObject)
7125         S.Diag(SubobjLoc, diag::note_nontrivial_subobject)
7126           << Kind << SubType.getUnqualifiedType() << CSM;
7127 
7128       // Explain why the defaulted or deleted special member isn't trivial.
7129       S.SpecialMemberIsTrivial(Selected, CSM, Diagnose);
7130     }
7131   }
7132 
7133   return false;
7134 }
7135 
7136 /// Check whether the members of a class type allow a special member to be
7137 /// trivial.
7138 static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD,
7139                                      Sema::CXXSpecialMember CSM,
7140                                      bool ConstArg, bool Diagnose) {
7141   for (const auto *FI : RD->fields()) {
7142     if (FI->isInvalidDecl() || FI->isUnnamedBitfield())
7143       continue;
7144 
7145     QualType FieldType = S.Context.getBaseElementType(FI->getType());
7146 
7147     // Pretend anonymous struct or union members are members of this class.
7148     if (FI->isAnonymousStructOrUnion()) {
7149       if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(),
7150                                     CSM, ConstArg, Diagnose))
7151         return false;
7152       continue;
7153     }
7154 
7155     // C++11 [class.ctor]p5:
7156     //   A default constructor is trivial if [...]
7157     //    -- no non-static data member of its class has a
7158     //       brace-or-equal-initializer
7159     if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) {
7160       if (Diagnose)
7161         S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << FI;
7162       return false;
7163     }
7164 
7165     // Objective C ARC 4.3.5:
7166     //   [...] nontrivally ownership-qualified types are [...] not trivially
7167     //   default constructible, copy constructible, move constructible, copy
7168     //   assignable, move assignable, or destructible [...]
7169     if (FieldType.hasNonTrivialObjCLifetime()) {
7170       if (Diagnose)
7171         S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership)
7172           << RD << FieldType.getObjCLifetime();
7173       return false;
7174     }
7175 
7176     bool ConstRHS = ConstArg && !FI->isMutable();
7177     if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, ConstRHS,
7178                                    CSM, TSK_Field, Diagnose))
7179       return false;
7180   }
7181 
7182   return true;
7183 }
7184 
7185 /// Diagnose why the specified class does not have a trivial special member of
7186 /// the given kind.
7187 void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) {
7188   QualType Ty = Context.getRecordType(RD);
7189 
7190   bool ConstArg = (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment);
7191   checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, ConstArg, CSM,
7192                             TSK_CompleteObject, /*Diagnose*/true);
7193 }
7194 
7195 /// Determine whether a defaulted or deleted special member function is trivial,
7196 /// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12,
7197 /// C++11 [class.copy]p25, and C++11 [class.dtor]p5.
7198 bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM,
7199                                   bool Diagnose) {
7200   assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough");
7201 
7202   CXXRecordDecl *RD = MD->getParent();
7203 
7204   bool ConstArg = false;
7205 
7206   // C++11 [class.copy]p12, p25: [DR1593]
7207   //   A [special member] is trivial if [...] its parameter-type-list is
7208   //   equivalent to the parameter-type-list of an implicit declaration [...]
7209   switch (CSM) {
7210   case CXXDefaultConstructor:
7211   case CXXDestructor:
7212     // Trivial default constructors and destructors cannot have parameters.
7213     break;
7214 
7215   case CXXCopyConstructor:
7216   case CXXCopyAssignment: {
7217     // Trivial copy operations always have const, non-volatile parameter types.
7218     ConstArg = true;
7219     const ParmVarDecl *Param0 = MD->getParamDecl(0);
7220     const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>();
7221     if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) {
7222       if (Diagnose)
7223         Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
7224           << Param0->getSourceRange() << Param0->getType()
7225           << Context.getLValueReferenceType(
7226                Context.getRecordType(RD).withConst());
7227       return false;
7228     }
7229     break;
7230   }
7231 
7232   case CXXMoveConstructor:
7233   case CXXMoveAssignment: {
7234     // Trivial move operations always have non-cv-qualified parameters.
7235     const ParmVarDecl *Param0 = MD->getParamDecl(0);
7236     const RValueReferenceType *RT =
7237       Param0->getType()->getAs<RValueReferenceType>();
7238     if (!RT || RT->getPointeeType().getCVRQualifiers()) {
7239       if (Diagnose)
7240         Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
7241           << Param0->getSourceRange() << Param0->getType()
7242           << Context.getRValueReferenceType(Context.getRecordType(RD));
7243       return false;
7244     }
7245     break;
7246   }
7247 
7248   case CXXInvalid:
7249     llvm_unreachable("not a special member");
7250   }
7251 
7252   if (MD->getMinRequiredArguments() < MD->getNumParams()) {
7253     if (Diagnose)
7254       Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(),
7255            diag::note_nontrivial_default_arg)
7256         << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange();
7257     return false;
7258   }
7259   if (MD->isVariadic()) {
7260     if (Diagnose)
7261       Diag(MD->getLocation(), diag::note_nontrivial_variadic);
7262     return false;
7263   }
7264 
7265   // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
7266   //   A copy/move [constructor or assignment operator] is trivial if
7267   //    -- the [member] selected to copy/move each direct base class subobject
7268   //       is trivial
7269   //
7270   // C++11 [class.copy]p12, C++11 [class.copy]p25:
7271   //   A [default constructor or destructor] is trivial if
7272   //    -- all the direct base classes have trivial [default constructors or
7273   //       destructors]
7274   for (const auto &BI : RD->bases())
7275     if (!checkTrivialSubobjectCall(*this, BI.getLocStart(), BI.getType(),
7276                                    ConstArg, CSM, TSK_BaseClass, Diagnose))
7277       return false;
7278 
7279   // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
7280   //   A copy/move [constructor or assignment operator] for a class X is
7281   //   trivial if
7282   //    -- for each non-static data member of X that is of class type (or array
7283   //       thereof), the constructor selected to copy/move that member is
7284   //       trivial
7285   //
7286   // C++11 [class.copy]p12, C++11 [class.copy]p25:
7287   //   A [default constructor or destructor] is trivial if
7288   //    -- for all of the non-static data members of its class that are of class
7289   //       type (or array thereof), each such class has a trivial [default
7290   //       constructor or destructor]
7291   if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose))
7292     return false;
7293 
7294   // C++11 [class.dtor]p5:
7295   //   A destructor is trivial if [...]
7296   //    -- the destructor is not virtual
7297   if (CSM == CXXDestructor && MD->isVirtual()) {
7298     if (Diagnose)
7299       Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD;
7300     return false;
7301   }
7302 
7303   // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
7304   //   A [special member] for class X is trivial if [...]
7305   //    -- class X has no virtual functions and no virtual base classes
7306   if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) {
7307     if (!Diagnose)
7308       return false;
7309 
7310     if (RD->getNumVBases()) {
7311       // Check for virtual bases. We already know that the corresponding
7312       // member in all bases is trivial, so vbases must all be direct.
7313       CXXBaseSpecifier &BS = *RD->vbases_begin();
7314       assert(BS.isVirtual());
7315       Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1;
7316       return false;
7317     }
7318 
7319     // Must have a virtual method.
7320     for (const auto *MI : RD->methods()) {
7321       if (MI->isVirtual()) {
7322         SourceLocation MLoc = MI->getLocStart();
7323         Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0;
7324         return false;
7325       }
7326     }
7327 
7328     llvm_unreachable("dynamic class with no vbases and no virtual functions");
7329   }
7330 
7331   // Looks like it's trivial!
7332   return true;
7333 }
7334 
7335 namespace {
7336 struct FindHiddenVirtualMethod {
7337   Sema *S;
7338   CXXMethodDecl *Method;
7339   llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
7340   SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
7341 
7342 private:
7343   /// Check whether any most overriden method from MD in Methods
7344   static bool CheckMostOverridenMethods(
7345       const CXXMethodDecl *MD,
7346       const llvm::SmallPtrSetImpl<const CXXMethodDecl *> &Methods) {
7347     if (MD->size_overridden_methods() == 0)
7348       return Methods.count(MD->getCanonicalDecl());
7349     for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
7350                                         E = MD->end_overridden_methods();
7351          I != E; ++I)
7352       if (CheckMostOverridenMethods(*I, Methods))
7353         return true;
7354     return false;
7355   }
7356 
7357 public:
7358   /// Member lookup function that determines whether a given C++
7359   /// method overloads virtual methods in a base class without overriding any,
7360   /// to be used with CXXRecordDecl::lookupInBases().
7361   bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
7362     RecordDecl *BaseRecord =
7363         Specifier->getType()->getAs<RecordType>()->getDecl();
7364 
7365     DeclarationName Name = Method->getDeclName();
7366     assert(Name.getNameKind() == DeclarationName::Identifier);
7367 
7368     bool foundSameNameMethod = false;
7369     SmallVector<CXXMethodDecl *, 8> overloadedMethods;
7370     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
7371          Path.Decls = Path.Decls.slice(1)) {
7372       NamedDecl *D = Path.Decls.front();
7373       if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
7374         MD = MD->getCanonicalDecl();
7375         foundSameNameMethod = true;
7376         // Interested only in hidden virtual methods.
7377         if (!MD->isVirtual())
7378           continue;
7379         // If the method we are checking overrides a method from its base
7380         // don't warn about the other overloaded methods. Clang deviates from
7381         // GCC by only diagnosing overloads of inherited virtual functions that
7382         // do not override any other virtual functions in the base. GCC's
7383         // -Woverloaded-virtual diagnoses any derived function hiding a virtual
7384         // function from a base class. These cases may be better served by a
7385         // warning (not specific to virtual functions) on call sites when the
7386         // call would select a different function from the base class, were it
7387         // visible.
7388         // See FIXME in test/SemaCXX/warn-overload-virtual.cpp for an example.
7389         if (!S->IsOverload(Method, MD, false))
7390           return true;
7391         // Collect the overload only if its hidden.
7392         if (!CheckMostOverridenMethods(MD, OverridenAndUsingBaseMethods))
7393           overloadedMethods.push_back(MD);
7394       }
7395     }
7396 
7397     if (foundSameNameMethod)
7398       OverloadedMethods.append(overloadedMethods.begin(),
7399                                overloadedMethods.end());
7400     return foundSameNameMethod;
7401   }
7402 };
7403 } // end anonymous namespace
7404 
7405 /// \brief Add the most overriden methods from MD to Methods
7406 static void AddMostOverridenMethods(const CXXMethodDecl *MD,
7407                         llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) {
7408   if (MD->size_overridden_methods() == 0)
7409     Methods.insert(MD->getCanonicalDecl());
7410   for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
7411                                       E = MD->end_overridden_methods();
7412        I != E; ++I)
7413     AddMostOverridenMethods(*I, Methods);
7414 }
7415 
7416 /// \brief Check if a method overloads virtual methods in a base class without
7417 /// overriding any.
7418 void Sema::FindHiddenVirtualMethods(CXXMethodDecl *MD,
7419                           SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) {
7420   if (!MD->getDeclName().isIdentifier())
7421     return;
7422 
7423   CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
7424                      /*bool RecordPaths=*/false,
7425                      /*bool DetectVirtual=*/false);
7426   FindHiddenVirtualMethod FHVM;
7427   FHVM.Method = MD;
7428   FHVM.S = this;
7429 
7430   // Keep the base methods that were overriden or introduced in the subclass
7431   // by 'using' in a set. A base method not in this set is hidden.
7432   CXXRecordDecl *DC = MD->getParent();
7433   DeclContext::lookup_result R = DC->lookup(MD->getDeclName());
7434   for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) {
7435     NamedDecl *ND = *I;
7436     if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I))
7437       ND = shad->getTargetDecl();
7438     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
7439       AddMostOverridenMethods(MD, FHVM.OverridenAndUsingBaseMethods);
7440   }
7441 
7442   if (DC->lookupInBases(FHVM, Paths))
7443     OverloadedMethods = FHVM.OverloadedMethods;
7444 }
7445 
7446 void Sema::NoteHiddenVirtualMethods(CXXMethodDecl *MD,
7447                           SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) {
7448   for (unsigned i = 0, e = OverloadedMethods.size(); i != e; ++i) {
7449     CXXMethodDecl *overloadedMD = OverloadedMethods[i];
7450     PartialDiagnostic PD = PDiag(
7451          diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
7452     HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType());
7453     Diag(overloadedMD->getLocation(), PD);
7454   }
7455 }
7456 
7457 /// \brief Diagnose methods which overload virtual methods in a base class
7458 /// without overriding any.
7459 void Sema::DiagnoseHiddenVirtualMethods(CXXMethodDecl *MD) {
7460   if (MD->isInvalidDecl())
7461     return;
7462 
7463   if (Diags.isIgnored(diag::warn_overloaded_virtual, MD->getLocation()))
7464     return;
7465 
7466   SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
7467   FindHiddenVirtualMethods(MD, OverloadedMethods);
7468   if (!OverloadedMethods.empty()) {
7469     Diag(MD->getLocation(), diag::warn_overloaded_virtual)
7470       << MD << (OverloadedMethods.size() > 1);
7471 
7472     NoteHiddenVirtualMethods(MD, OverloadedMethods);
7473   }
7474 }
7475 
7476 void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
7477                                              Decl *TagDecl,
7478                                              SourceLocation LBrac,
7479                                              SourceLocation RBrac,
7480                                              AttributeList *AttrList) {
7481   if (!TagDecl)
7482     return;
7483 
7484   AdjustDeclIfTemplate(TagDecl);
7485 
7486   for (const AttributeList* l = AttrList; l; l = l->getNext()) {
7487     if (l->getKind() != AttributeList::AT_Visibility)
7488       continue;
7489     l->setInvalid();
7490     Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
7491       l->getName();
7492   }
7493 
7494   ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
7495               // strict aliasing violation!
7496               reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
7497               FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
7498 
7499   CheckCompletedCXXClass(
7500                         dyn_cast_or_null<CXXRecordDecl>(TagDecl));
7501 }
7502 
7503 /// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
7504 /// special functions, such as the default constructor, copy
7505 /// constructor, or destructor, to the given C++ class (C++
7506 /// [special]p1).  This routine can only be executed just before the
7507 /// definition of the class is complete.
7508 void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
7509   if (ClassDecl->needsImplicitDefaultConstructor()) {
7510     ++ASTContext::NumImplicitDefaultConstructors;
7511 
7512     if (ClassDecl->hasInheritedConstructor())
7513       DeclareImplicitDefaultConstructor(ClassDecl);
7514   }
7515 
7516   if (ClassDecl->needsImplicitCopyConstructor()) {
7517     ++ASTContext::NumImplicitCopyConstructors;
7518 
7519     // If the properties or semantics of the copy constructor couldn't be
7520     // determined while the class was being declared, force a declaration
7521     // of it now.
7522     if (ClassDecl->needsOverloadResolutionForCopyConstructor() ||
7523         ClassDecl->hasInheritedConstructor())
7524       DeclareImplicitCopyConstructor(ClassDecl);
7525     // For the MS ABI we need to know whether the copy ctor is deleted. A
7526     // prerequisite for deleting the implicit copy ctor is that the class has a
7527     // move ctor or move assignment that is either user-declared or whose
7528     // semantics are inherited from a subobject. FIXME: We should provide a more
7529     // direct way for CodeGen to ask whether the constructor was deleted.
7530     else if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
7531              (ClassDecl->hasUserDeclaredMoveConstructor() ||
7532               ClassDecl->needsOverloadResolutionForMoveConstructor() ||
7533               ClassDecl->hasUserDeclaredMoveAssignment() ||
7534               ClassDecl->needsOverloadResolutionForMoveAssignment()))
7535       DeclareImplicitCopyConstructor(ClassDecl);
7536   }
7537 
7538   if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) {
7539     ++ASTContext::NumImplicitMoveConstructors;
7540 
7541     if (ClassDecl->needsOverloadResolutionForMoveConstructor() ||
7542         ClassDecl->hasInheritedConstructor())
7543       DeclareImplicitMoveConstructor(ClassDecl);
7544   }
7545 
7546   if (ClassDecl->needsImplicitCopyAssignment()) {
7547     ++ASTContext::NumImplicitCopyAssignmentOperators;
7548 
7549     // If we have a dynamic class, then the copy assignment operator may be
7550     // virtual, so we have to declare it immediately. This ensures that, e.g.,
7551     // it shows up in the right place in the vtable and that we diagnose
7552     // problems with the implicit exception specification.
7553     if (ClassDecl->isDynamicClass() ||
7554         ClassDecl->needsOverloadResolutionForCopyAssignment() ||
7555         ClassDecl->hasInheritedAssignment())
7556       DeclareImplicitCopyAssignment(ClassDecl);
7557   }
7558 
7559   if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) {
7560     ++ASTContext::NumImplicitMoveAssignmentOperators;
7561 
7562     // Likewise for the move assignment operator.
7563     if (ClassDecl->isDynamicClass() ||
7564         ClassDecl->needsOverloadResolutionForMoveAssignment() ||
7565         ClassDecl->hasInheritedAssignment())
7566       DeclareImplicitMoveAssignment(ClassDecl);
7567   }
7568 
7569   if (ClassDecl->needsImplicitDestructor()) {
7570     ++ASTContext::NumImplicitDestructors;
7571 
7572     // If we have a dynamic class, then the destructor may be virtual, so we
7573     // have to declare the destructor immediately. This ensures that, e.g., it
7574     // shows up in the right place in the vtable and that we diagnose problems
7575     // with the implicit exception specification.
7576     if (ClassDecl->isDynamicClass() ||
7577         ClassDecl->needsOverloadResolutionForDestructor())
7578       DeclareImplicitDestructor(ClassDecl);
7579   }
7580 }
7581 
7582 unsigned Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
7583   if (!D)
7584     return 0;
7585 
7586   // The order of template parameters is not important here. All names
7587   // get added to the same scope.
7588   SmallVector<TemplateParameterList *, 4> ParameterLists;
7589 
7590   if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
7591     D = TD->getTemplatedDecl();
7592 
7593   if (auto *PSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
7594     ParameterLists.push_back(PSD->getTemplateParameters());
7595 
7596   if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
7597     for (unsigned i = 0; i < DD->getNumTemplateParameterLists(); ++i)
7598       ParameterLists.push_back(DD->getTemplateParameterList(i));
7599 
7600     if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
7601       if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
7602         ParameterLists.push_back(FTD->getTemplateParameters());
7603     }
7604   }
7605 
7606   if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
7607     for (unsigned i = 0; i < TD->getNumTemplateParameterLists(); ++i)
7608       ParameterLists.push_back(TD->getTemplateParameterList(i));
7609 
7610     if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD)) {
7611       if (ClassTemplateDecl *CTD = RD->getDescribedClassTemplate())
7612         ParameterLists.push_back(CTD->getTemplateParameters());
7613     }
7614   }
7615 
7616   unsigned Count = 0;
7617   for (TemplateParameterList *Params : ParameterLists) {
7618     if (Params->size() > 0)
7619       // Ignore explicit specializations; they don't contribute to the template
7620       // depth.
7621       ++Count;
7622     for (NamedDecl *Param : *Params) {
7623       if (Param->getDeclName()) {
7624         S->AddDecl(Param);
7625         IdResolver.AddDecl(Param);
7626       }
7627     }
7628   }
7629 
7630   return Count;
7631 }
7632 
7633 void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
7634   if (!RecordD) return;
7635   AdjustDeclIfTemplate(RecordD);
7636   CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
7637   PushDeclContext(S, Record);
7638 }
7639 
7640 void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
7641   if (!RecordD) return;
7642   PopDeclContext();
7643 }
7644 
7645 /// This is used to implement the constant expression evaluation part of the
7646 /// attribute enable_if extension. There is nothing in standard C++ which would
7647 /// require reentering parameters.
7648 void Sema::ActOnReenterCXXMethodParameter(Scope *S, ParmVarDecl *Param) {
7649   if (!Param)
7650     return;
7651 
7652   S->AddDecl(Param);
7653   if (Param->getDeclName())
7654     IdResolver.AddDecl(Param);
7655 }
7656 
7657 /// ActOnStartDelayedCXXMethodDeclaration - We have completed
7658 /// parsing a top-level (non-nested) C++ class, and we are now
7659 /// parsing those parts of the given Method declaration that could
7660 /// not be parsed earlier (C++ [class.mem]p2), such as default
7661 /// arguments. This action should enter the scope of the given
7662 /// Method declaration as if we had just parsed the qualified method
7663 /// name. However, it should not bring the parameters into scope;
7664 /// that will be performed by ActOnDelayedCXXMethodParameter.
7665 void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
7666 }
7667 
7668 /// ActOnDelayedCXXMethodParameter - We've already started a delayed
7669 /// C++ method declaration. We're (re-)introducing the given
7670 /// function parameter into scope for use in parsing later parts of
7671 /// the method declaration. For example, we could see an
7672 /// ActOnParamDefaultArgument event for this parameter.
7673 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
7674   if (!ParamD)
7675     return;
7676 
7677   ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
7678 
7679   // If this parameter has an unparsed default argument, clear it out
7680   // to make way for the parsed default argument.
7681   if (Param->hasUnparsedDefaultArg())
7682     Param->setDefaultArg(nullptr);
7683 
7684   S->AddDecl(Param);
7685   if (Param->getDeclName())
7686     IdResolver.AddDecl(Param);
7687 }
7688 
7689 /// ActOnFinishDelayedCXXMethodDeclaration - We have finished
7690 /// processing the delayed method declaration for Method. The method
7691 /// declaration is now considered finished. There may be a separate
7692 /// ActOnStartOfFunctionDef action later (not necessarily
7693 /// immediately!) for this method, if it was also defined inside the
7694 /// class body.
7695 void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
7696   if (!MethodD)
7697     return;
7698 
7699   AdjustDeclIfTemplate(MethodD);
7700 
7701   FunctionDecl *Method = cast<FunctionDecl>(MethodD);
7702 
7703   // Now that we have our default arguments, check the constructor
7704   // again. It could produce additional diagnostics or affect whether
7705   // the class has implicitly-declared destructors, among other
7706   // things.
7707   if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
7708     CheckConstructor(Constructor);
7709 
7710   // Check the default arguments, which we may have added.
7711   if (!Method->isInvalidDecl())
7712     CheckCXXDefaultArguments(Method);
7713 }
7714 
7715 /// CheckConstructorDeclarator - Called by ActOnDeclarator to check
7716 /// the well-formedness of the constructor declarator @p D with type @p
7717 /// R. If there are any errors in the declarator, this routine will
7718 /// emit diagnostics and set the invalid bit to true.  In any case, the type
7719 /// will be updated to reflect a well-formed type for the constructor and
7720 /// returned.
7721 QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
7722                                           StorageClass &SC) {
7723   bool isVirtual = D.getDeclSpec().isVirtualSpecified();
7724 
7725   // C++ [class.ctor]p3:
7726   //   A constructor shall not be virtual (10.3) or static (9.4). A
7727   //   constructor can be invoked for a const, volatile or const
7728   //   volatile object. A constructor shall not be declared const,
7729   //   volatile, or const volatile (9.3.2).
7730   if (isVirtual) {
7731     if (!D.isInvalidType())
7732       Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
7733         << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
7734         << SourceRange(D.getIdentifierLoc());
7735     D.setInvalidType();
7736   }
7737   if (SC == SC_Static) {
7738     if (!D.isInvalidType())
7739       Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
7740         << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
7741         << SourceRange(D.getIdentifierLoc());
7742     D.setInvalidType();
7743     SC = SC_None;
7744   }
7745 
7746   if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
7747     diagnoseIgnoredQualifiers(
7748         diag::err_constructor_return_type, TypeQuals, SourceLocation(),
7749         D.getDeclSpec().getConstSpecLoc(), D.getDeclSpec().getVolatileSpecLoc(),
7750         D.getDeclSpec().getRestrictSpecLoc(),
7751         D.getDeclSpec().getAtomicSpecLoc());
7752     D.setInvalidType();
7753   }
7754 
7755   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
7756   if (FTI.TypeQuals != 0) {
7757     if (FTI.TypeQuals & Qualifiers::Const)
7758       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
7759         << "const" << SourceRange(D.getIdentifierLoc());
7760     if (FTI.TypeQuals & Qualifiers::Volatile)
7761       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
7762         << "volatile" << SourceRange(D.getIdentifierLoc());
7763     if (FTI.TypeQuals & Qualifiers::Restrict)
7764       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
7765         << "restrict" << SourceRange(D.getIdentifierLoc());
7766     D.setInvalidType();
7767   }
7768 
7769   // C++0x [class.ctor]p4:
7770   //   A constructor shall not be declared with a ref-qualifier.
7771   if (FTI.hasRefQualifier()) {
7772     Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
7773       << FTI.RefQualifierIsLValueRef
7774       << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
7775     D.setInvalidType();
7776   }
7777 
7778   // Rebuild the function type "R" without any type qualifiers (in
7779   // case any of the errors above fired) and with "void" as the
7780   // return type, since constructors don't have return types.
7781   const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
7782   if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType())
7783     return R;
7784 
7785   FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
7786   EPI.TypeQuals = 0;
7787   EPI.RefQualifier = RQ_None;
7788 
7789   return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI);
7790 }
7791 
7792 /// CheckConstructor - Checks a fully-formed constructor for
7793 /// well-formedness, issuing any diagnostics required. Returns true if
7794 /// the constructor declarator is invalid.
7795 void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
7796   CXXRecordDecl *ClassDecl
7797     = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
7798   if (!ClassDecl)
7799     return Constructor->setInvalidDecl();
7800 
7801   // C++ [class.copy]p3:
7802   //   A declaration of a constructor for a class X is ill-formed if
7803   //   its first parameter is of type (optionally cv-qualified) X and
7804   //   either there are no other parameters or else all other
7805   //   parameters have default arguments.
7806   if (!Constructor->isInvalidDecl() &&
7807       ((Constructor->getNumParams() == 1) ||
7808        (Constructor->getNumParams() > 1 &&
7809         Constructor->getParamDecl(1)->hasDefaultArg())) &&
7810       Constructor->getTemplateSpecializationKind()
7811                                               != TSK_ImplicitInstantiation) {
7812     QualType ParamType = Constructor->getParamDecl(0)->getType();
7813     QualType ClassTy = Context.getTagDeclType(ClassDecl);
7814     if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
7815       SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
7816       const char *ConstRef
7817         = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
7818                                                         : " const &";
7819       Diag(ParamLoc, diag::err_constructor_byvalue_arg)
7820         << FixItHint::CreateInsertion(ParamLoc, ConstRef);
7821 
7822       // FIXME: Rather that making the constructor invalid, we should endeavor
7823       // to fix the type.
7824       Constructor->setInvalidDecl();
7825     }
7826   }
7827 }
7828 
7829 /// CheckDestructor - Checks a fully-formed destructor definition for
7830 /// well-formedness, issuing any diagnostics required.  Returns true
7831 /// on error.
7832 bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
7833   CXXRecordDecl *RD = Destructor->getParent();
7834 
7835   if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) {
7836     SourceLocation Loc;
7837 
7838     if (!Destructor->isImplicit())
7839       Loc = Destructor->getLocation();
7840     else
7841       Loc = RD->getLocation();
7842 
7843     // If we have a virtual destructor, look up the deallocation function
7844     if (FunctionDecl *OperatorDelete =
7845             FindDeallocationFunctionForDestructor(Loc, RD)) {
7846       MarkFunctionReferenced(Loc, OperatorDelete);
7847       Destructor->setOperatorDelete(OperatorDelete);
7848     }
7849   }
7850 
7851   return false;
7852 }
7853 
7854 /// CheckDestructorDeclarator - Called by ActOnDeclarator to check
7855 /// the well-formednes of the destructor declarator @p D with type @p
7856 /// R. If there are any errors in the declarator, this routine will
7857 /// emit diagnostics and set the declarator to invalid.  Even if this happens,
7858 /// will be updated to reflect a well-formed type for the destructor and
7859 /// returned.
7860 QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
7861                                          StorageClass& SC) {
7862   // C++ [class.dtor]p1:
7863   //   [...] A typedef-name that names a class is a class-name
7864   //   (7.1.3); however, a typedef-name that names a class shall not
7865   //   be used as the identifier in the declarator for a destructor
7866   //   declaration.
7867   QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
7868   if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
7869     Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
7870       << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
7871   else if (const TemplateSpecializationType *TST =
7872              DeclaratorType->getAs<TemplateSpecializationType>())
7873     if (TST->isTypeAlias())
7874       Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
7875         << DeclaratorType << 1;
7876 
7877   // C++ [class.dtor]p2:
7878   //   A destructor is used to destroy objects of its class type. A
7879   //   destructor takes no parameters, and no return type can be
7880   //   specified for it (not even void). The address of a destructor
7881   //   shall not be taken. A destructor shall not be static. A
7882   //   destructor can be invoked for a const, volatile or const
7883   //   volatile object. A destructor shall not be declared const,
7884   //   volatile or const volatile (9.3.2).
7885   if (SC == SC_Static) {
7886     if (!D.isInvalidType())
7887       Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
7888         << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
7889         << SourceRange(D.getIdentifierLoc())
7890         << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
7891 
7892     SC = SC_None;
7893   }
7894   if (!D.isInvalidType()) {
7895     // Destructors don't have return types, but the parser will
7896     // happily parse something like:
7897     //
7898     //   class X {
7899     //     float ~X();
7900     //   };
7901     //
7902     // The return type will be eliminated later.
7903     if (D.getDeclSpec().hasTypeSpecifier())
7904       Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
7905         << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
7906         << SourceRange(D.getIdentifierLoc());
7907     else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
7908       diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals,
7909                                 SourceLocation(),
7910                                 D.getDeclSpec().getConstSpecLoc(),
7911                                 D.getDeclSpec().getVolatileSpecLoc(),
7912                                 D.getDeclSpec().getRestrictSpecLoc(),
7913                                 D.getDeclSpec().getAtomicSpecLoc());
7914       D.setInvalidType();
7915     }
7916   }
7917 
7918   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
7919   if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
7920     if (FTI.TypeQuals & Qualifiers::Const)
7921       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
7922         << "const" << SourceRange(D.getIdentifierLoc());
7923     if (FTI.TypeQuals & Qualifiers::Volatile)
7924       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
7925         << "volatile" << SourceRange(D.getIdentifierLoc());
7926     if (FTI.TypeQuals & Qualifiers::Restrict)
7927       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
7928         << "restrict" << SourceRange(D.getIdentifierLoc());
7929     D.setInvalidType();
7930   }
7931 
7932   // C++0x [class.dtor]p2:
7933   //   A destructor shall not be declared with a ref-qualifier.
7934   if (FTI.hasRefQualifier()) {
7935     Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
7936       << FTI.RefQualifierIsLValueRef
7937       << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
7938     D.setInvalidType();
7939   }
7940 
7941   // Make sure we don't have any parameters.
7942   if (FTIHasNonVoidParameters(FTI)) {
7943     Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
7944 
7945     // Delete the parameters.
7946     FTI.freeParams();
7947     D.setInvalidType();
7948   }
7949 
7950   // Make sure the destructor isn't variadic.
7951   if (FTI.isVariadic) {
7952     Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
7953     D.setInvalidType();
7954   }
7955 
7956   // Rebuild the function type "R" without any type qualifiers or
7957   // parameters (in case any of the errors above fired) and with
7958   // "void" as the return type, since destructors don't have return
7959   // types.
7960   if (!D.isInvalidType())
7961     return R;
7962 
7963   const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
7964   FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
7965   EPI.Variadic = false;
7966   EPI.TypeQuals = 0;
7967   EPI.RefQualifier = RQ_None;
7968   return Context.getFunctionType(Context.VoidTy, None, EPI);
7969 }
7970 
7971 static void extendLeft(SourceRange &R, SourceRange Before) {
7972   if (Before.isInvalid())
7973     return;
7974   R.setBegin(Before.getBegin());
7975   if (R.getEnd().isInvalid())
7976     R.setEnd(Before.getEnd());
7977 }
7978 
7979 static void extendRight(SourceRange &R, SourceRange After) {
7980   if (After.isInvalid())
7981     return;
7982   if (R.getBegin().isInvalid())
7983     R.setBegin(After.getBegin());
7984   R.setEnd(After.getEnd());
7985 }
7986 
7987 /// CheckConversionDeclarator - Called by ActOnDeclarator to check the
7988 /// well-formednes of the conversion function declarator @p D with
7989 /// type @p R. If there are any errors in the declarator, this routine
7990 /// will emit diagnostics and return true. Otherwise, it will return
7991 /// false. Either way, the type @p R will be updated to reflect a
7992 /// well-formed type for the conversion operator.
7993 void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
7994                                      StorageClass& SC) {
7995   // C++ [class.conv.fct]p1:
7996   //   Neither parameter types nor return type can be specified. The
7997   //   type of a conversion function (8.3.5) is "function taking no
7998   //   parameter returning conversion-type-id."
7999   if (SC == SC_Static) {
8000     if (!D.isInvalidType())
8001       Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
8002         << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
8003         << D.getName().getSourceRange();
8004     D.setInvalidType();
8005     SC = SC_None;
8006   }
8007 
8008   TypeSourceInfo *ConvTSI = nullptr;
8009   QualType ConvType =
8010       GetTypeFromParser(D.getName().ConversionFunctionId, &ConvTSI);
8011 
8012   if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
8013     // Conversion functions don't have return types, but the parser will
8014     // happily parse something like:
8015     //
8016     //   class X {
8017     //     float operator bool();
8018     //   };
8019     //
8020     // The return type will be changed later anyway.
8021     Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
8022       << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
8023       << SourceRange(D.getIdentifierLoc());
8024     D.setInvalidType();
8025   }
8026 
8027   const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
8028 
8029   // Make sure we don't have any parameters.
8030   if (Proto->getNumParams() > 0) {
8031     Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
8032 
8033     // Delete the parameters.
8034     D.getFunctionTypeInfo().freeParams();
8035     D.setInvalidType();
8036   } else if (Proto->isVariadic()) {
8037     Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
8038     D.setInvalidType();
8039   }
8040 
8041   // Diagnose "&operator bool()" and other such nonsense.  This
8042   // is actually a gcc extension which we don't support.
8043   if (Proto->getReturnType() != ConvType) {
8044     bool NeedsTypedef = false;
8045     SourceRange Before, After;
8046 
8047     // Walk the chunks and extract information on them for our diagnostic.
8048     bool PastFunctionChunk = false;
8049     for (auto &Chunk : D.type_objects()) {
8050       switch (Chunk.Kind) {
8051       case DeclaratorChunk::Function:
8052         if (!PastFunctionChunk) {
8053           if (Chunk.Fun.HasTrailingReturnType) {
8054             TypeSourceInfo *TRT = nullptr;
8055             GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT);
8056             if (TRT) extendRight(After, TRT->getTypeLoc().getSourceRange());
8057           }
8058           PastFunctionChunk = true;
8059           break;
8060         }
8061         // Fall through.
8062       case DeclaratorChunk::Array:
8063         NeedsTypedef = true;
8064         extendRight(After, Chunk.getSourceRange());
8065         break;
8066 
8067       case DeclaratorChunk::Pointer:
8068       case DeclaratorChunk::BlockPointer:
8069       case DeclaratorChunk::Reference:
8070       case DeclaratorChunk::MemberPointer:
8071       case DeclaratorChunk::Pipe:
8072         extendLeft(Before, Chunk.getSourceRange());
8073         break;
8074 
8075       case DeclaratorChunk::Paren:
8076         extendLeft(Before, Chunk.Loc);
8077         extendRight(After, Chunk.EndLoc);
8078         break;
8079       }
8080     }
8081 
8082     SourceLocation Loc = Before.isValid() ? Before.getBegin() :
8083                          After.isValid()  ? After.getBegin() :
8084                                             D.getIdentifierLoc();
8085     auto &&DB = Diag(Loc, diag::err_conv_function_with_complex_decl);
8086     DB << Before << After;
8087 
8088     if (!NeedsTypedef) {
8089       DB << /*don't need a typedef*/0;
8090 
8091       // If we can provide a correct fix-it hint, do so.
8092       if (After.isInvalid() && ConvTSI) {
8093         SourceLocation InsertLoc =
8094             getLocForEndOfToken(ConvTSI->getTypeLoc().getLocEnd());
8095         DB << FixItHint::CreateInsertion(InsertLoc, " ")
8096            << FixItHint::CreateInsertionFromRange(
8097                   InsertLoc, CharSourceRange::getTokenRange(Before))
8098            << FixItHint::CreateRemoval(Before);
8099       }
8100     } else if (!Proto->getReturnType()->isDependentType()) {
8101       DB << /*typedef*/1 << Proto->getReturnType();
8102     } else if (getLangOpts().CPlusPlus11) {
8103       DB << /*alias template*/2 << Proto->getReturnType();
8104     } else {
8105       DB << /*might not be fixable*/3;
8106     }
8107 
8108     // Recover by incorporating the other type chunks into the result type.
8109     // Note, this does *not* change the name of the function. This is compatible
8110     // with the GCC extension:
8111     //   struct S { &operator int(); } s;
8112     //   int &r = s.operator int(); // ok in GCC
8113     //   S::operator int&() {} // error in GCC, function name is 'operator int'.
8114     ConvType = Proto->getReturnType();
8115   }
8116 
8117   // C++ [class.conv.fct]p4:
8118   //   The conversion-type-id shall not represent a function type nor
8119   //   an array type.
8120   if (ConvType->isArrayType()) {
8121     Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
8122     ConvType = Context.getPointerType(ConvType);
8123     D.setInvalidType();
8124   } else if (ConvType->isFunctionType()) {
8125     Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
8126     ConvType = Context.getPointerType(ConvType);
8127     D.setInvalidType();
8128   }
8129 
8130   // Rebuild the function type "R" without any parameters (in case any
8131   // of the errors above fired) and with the conversion type as the
8132   // return type.
8133   if (D.isInvalidType())
8134     R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo());
8135 
8136   // C++0x explicit conversion operators.
8137   if (D.getDeclSpec().isExplicitSpecified())
8138     Diag(D.getDeclSpec().getExplicitSpecLoc(),
8139          getLangOpts().CPlusPlus11 ?
8140            diag::warn_cxx98_compat_explicit_conversion_functions :
8141            diag::ext_explicit_conversion_functions)
8142       << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
8143 }
8144 
8145 /// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
8146 /// the declaration of the given C++ conversion function. This routine
8147 /// is responsible for recording the conversion function in the C++
8148 /// class, if possible.
8149 Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
8150   assert(Conversion && "Expected to receive a conversion function declaration");
8151 
8152   CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
8153 
8154   // Make sure we aren't redeclaring the conversion function.
8155   QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
8156 
8157   // C++ [class.conv.fct]p1:
8158   //   [...] A conversion function is never used to convert a
8159   //   (possibly cv-qualified) object to the (possibly cv-qualified)
8160   //   same object type (or a reference to it), to a (possibly
8161   //   cv-qualified) base class of that type (or a reference to it),
8162   //   or to (possibly cv-qualified) void.
8163   // FIXME: Suppress this warning if the conversion function ends up being a
8164   // virtual function that overrides a virtual function in a base class.
8165   QualType ClassType
8166     = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
8167   if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
8168     ConvType = ConvTypeRef->getPointeeType();
8169   if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
8170       Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
8171     /* Suppress diagnostics for instantiations. */;
8172   else if (ConvType->isRecordType()) {
8173     ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
8174     if (ConvType == ClassType)
8175       Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
8176         << ClassType;
8177     else if (IsDerivedFrom(Conversion->getLocation(), ClassType, ConvType))
8178       Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
8179         <<  ClassType << ConvType;
8180   } else if (ConvType->isVoidType()) {
8181     Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
8182       << ClassType << ConvType;
8183   }
8184 
8185   if (FunctionTemplateDecl *ConversionTemplate
8186                                 = Conversion->getDescribedFunctionTemplate())
8187     return ConversionTemplate;
8188 
8189   return Conversion;
8190 }
8191 
8192 namespace {
8193 /// Utility class to accumulate and print a diagnostic listing the invalid
8194 /// specifier(s) on a declaration.
8195 struct BadSpecifierDiagnoser {
8196   BadSpecifierDiagnoser(Sema &S, SourceLocation Loc, unsigned DiagID)
8197       : S(S), Diagnostic(S.Diag(Loc, DiagID)) {}
8198   ~BadSpecifierDiagnoser() {
8199     Diagnostic << Specifiers;
8200   }
8201 
8202   template<typename T> void check(SourceLocation SpecLoc, T Spec) {
8203     return check(SpecLoc, DeclSpec::getSpecifierName(Spec));
8204   }
8205   void check(SourceLocation SpecLoc, DeclSpec::TST Spec) {
8206     return check(SpecLoc,
8207                  DeclSpec::getSpecifierName(Spec, S.getPrintingPolicy()));
8208   }
8209   void check(SourceLocation SpecLoc, const char *Spec) {
8210     if (SpecLoc.isInvalid()) return;
8211     Diagnostic << SourceRange(SpecLoc, SpecLoc);
8212     if (!Specifiers.empty()) Specifiers += " ";
8213     Specifiers += Spec;
8214   }
8215 
8216   Sema &S;
8217   Sema::SemaDiagnosticBuilder Diagnostic;
8218   std::string Specifiers;
8219 };
8220 }
8221 
8222 /// Check the validity of a declarator that we parsed for a deduction-guide.
8223 /// These aren't actually declarators in the grammar, so we need to check that
8224 /// the user didn't specify any pieces that are not part of the deduction-guide
8225 /// grammar.
8226 void Sema::CheckDeductionGuideDeclarator(Declarator &D, QualType &R,
8227                                          StorageClass &SC) {
8228   TemplateName GuidedTemplate = D.getName().TemplateName.get().get();
8229   TemplateDecl *GuidedTemplateDecl = GuidedTemplate.getAsTemplateDecl();
8230   assert(GuidedTemplateDecl && "missing template decl for deduction guide");
8231 
8232   // C++ [temp.deduct.guide]p3:
8233   //   A deduction-gide shall be declared in the same scope as the
8234   //   corresponding class template.
8235   if (!CurContext->getRedeclContext()->Equals(
8236           GuidedTemplateDecl->getDeclContext()->getRedeclContext())) {
8237     Diag(D.getIdentifierLoc(), diag::err_deduction_guide_wrong_scope)
8238       << GuidedTemplateDecl;
8239     Diag(GuidedTemplateDecl->getLocation(), diag::note_template_decl_here);
8240   }
8241 
8242   auto &DS = D.getMutableDeclSpec();
8243   // We leave 'friend' and 'virtual' to be rejected in the normal way.
8244   if (DS.hasTypeSpecifier() || DS.getTypeQualifiers() ||
8245       DS.getStorageClassSpecLoc().isValid() || DS.isInlineSpecified() ||
8246       DS.isNoreturnSpecified() || DS.isConstexprSpecified() ||
8247       DS.isConceptSpecified()) {
8248     BadSpecifierDiagnoser Diagnoser(
8249         *this, D.getIdentifierLoc(),
8250         diag::err_deduction_guide_invalid_specifier);
8251 
8252     Diagnoser.check(DS.getStorageClassSpecLoc(), DS.getStorageClassSpec());
8253     DS.ClearStorageClassSpecs();
8254     SC = SC_None;
8255 
8256     // 'explicit' is permitted.
8257     Diagnoser.check(DS.getInlineSpecLoc(), "inline");
8258     Diagnoser.check(DS.getNoreturnSpecLoc(), "_Noreturn");
8259     Diagnoser.check(DS.getConstexprSpecLoc(), "constexpr");
8260     Diagnoser.check(DS.getConceptSpecLoc(), "concept");
8261     DS.ClearConstexprSpec();
8262     DS.ClearConceptSpec();
8263 
8264     Diagnoser.check(DS.getConstSpecLoc(), "const");
8265     Diagnoser.check(DS.getRestrictSpecLoc(), "__restrict");
8266     Diagnoser.check(DS.getVolatileSpecLoc(), "volatile");
8267     Diagnoser.check(DS.getAtomicSpecLoc(), "_Atomic");
8268     Diagnoser.check(DS.getUnalignedSpecLoc(), "__unaligned");
8269     DS.ClearTypeQualifiers();
8270 
8271     Diagnoser.check(DS.getTypeSpecComplexLoc(), DS.getTypeSpecComplex());
8272     Diagnoser.check(DS.getTypeSpecSignLoc(), DS.getTypeSpecSign());
8273     Diagnoser.check(DS.getTypeSpecWidthLoc(), DS.getTypeSpecWidth());
8274     Diagnoser.check(DS.getTypeSpecTypeLoc(), DS.getTypeSpecType());
8275     DS.ClearTypeSpecType();
8276   }
8277 
8278   if (D.isInvalidType())
8279     return;
8280 
8281   // Check the declarator is simple enough.
8282   bool FoundFunction = false;
8283   for (const DeclaratorChunk &Chunk : llvm::reverse(D.type_objects())) {
8284     if (Chunk.Kind == DeclaratorChunk::Paren)
8285       continue;
8286     if (Chunk.Kind != DeclaratorChunk::Function || FoundFunction) {
8287       Diag(D.getDeclSpec().getLocStart(),
8288           diag::err_deduction_guide_with_complex_decl)
8289         << D.getSourceRange();
8290       break;
8291     }
8292     if (!Chunk.Fun.hasTrailingReturnType()) {
8293       Diag(D.getName().getLocStart(),
8294            diag::err_deduction_guide_no_trailing_return_type);
8295       break;
8296     }
8297 
8298     // Check that the return type is written as a specialization of
8299     // the template specified as the deduction-guide's name.
8300     ParsedType TrailingReturnType = Chunk.Fun.getTrailingReturnType();
8301     TypeSourceInfo *TSI = nullptr;
8302     QualType RetTy = GetTypeFromParser(TrailingReturnType, &TSI);
8303     assert(TSI && "deduction guide has valid type but invalid return type?");
8304     bool AcceptableReturnType = false;
8305     bool MightInstantiateToSpecialization = false;
8306     if (auto RetTST =
8307             TSI->getTypeLoc().getAs<TemplateSpecializationTypeLoc>()) {
8308       TemplateName SpecifiedName = RetTST.getTypePtr()->getTemplateName();
8309       bool TemplateMatches =
8310           Context.hasSameTemplateName(SpecifiedName, GuidedTemplate);
8311       if (SpecifiedName.getKind() == TemplateName::Template && TemplateMatches)
8312         AcceptableReturnType = true;
8313       else {
8314         // This could still instantiate to the right type, unless we know it
8315         // names the wrong class template.
8316         auto *TD = SpecifiedName.getAsTemplateDecl();
8317         MightInstantiateToSpecialization = !(TD && isa<ClassTemplateDecl>(TD) &&
8318                                              !TemplateMatches);
8319       }
8320     } else if (!RetTy.hasQualifiers() && RetTy->isDependentType()) {
8321       MightInstantiateToSpecialization = true;
8322     }
8323 
8324     if (!AcceptableReturnType) {
8325       Diag(TSI->getTypeLoc().getLocStart(),
8326            diag::err_deduction_guide_bad_trailing_return_type)
8327         << GuidedTemplate << TSI->getType() << MightInstantiateToSpecialization
8328         << TSI->getTypeLoc().getSourceRange();
8329     }
8330 
8331     // Keep going to check that we don't have any inner declarator pieces (we
8332     // could still have a function returning a pointer to a function).
8333     FoundFunction = true;
8334   }
8335 
8336   if (D.isFunctionDefinition())
8337     Diag(D.getIdentifierLoc(), diag::err_deduction_guide_defines_function);
8338 }
8339 
8340 //===----------------------------------------------------------------------===//
8341 // Namespace Handling
8342 //===----------------------------------------------------------------------===//
8343 
8344 /// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
8345 /// reopened.
8346 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
8347                                             SourceLocation Loc,
8348                                             IdentifierInfo *II, bool *IsInline,
8349                                             NamespaceDecl *PrevNS) {
8350   assert(*IsInline != PrevNS->isInline());
8351 
8352   // HACK: Work around a bug in libstdc++4.6's <atomic>, where
8353   // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
8354   // inline namespaces, with the intention of bringing names into namespace std.
8355   //
8356   // We support this just well enough to get that case working; this is not
8357   // sufficient to support reopening namespaces as inline in general.
8358   if (*IsInline && II && II->getName().startswith("__atomic") &&
8359       S.getSourceManager().isInSystemHeader(Loc)) {
8360     // Mark all prior declarations of the namespace as inline.
8361     for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
8362          NS = NS->getPreviousDecl())
8363       NS->setInline(*IsInline);
8364     // Patch up the lookup table for the containing namespace. This isn't really
8365     // correct, but it's good enough for this particular case.
8366     for (auto *I : PrevNS->decls())
8367       if (auto *ND = dyn_cast<NamedDecl>(I))
8368         PrevNS->getParent()->makeDeclVisibleInContext(ND);
8369     return;
8370   }
8371 
8372   if (PrevNS->isInline())
8373     // The user probably just forgot the 'inline', so suggest that it
8374     // be added back.
8375     S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
8376       << FixItHint::CreateInsertion(KeywordLoc, "inline ");
8377   else
8378     S.Diag(Loc, diag::err_inline_namespace_mismatch);
8379 
8380   S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
8381   *IsInline = PrevNS->isInline();
8382 }
8383 
8384 /// ActOnStartNamespaceDef - This is called at the start of a namespace
8385 /// definition.
8386 Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
8387                                    SourceLocation InlineLoc,
8388                                    SourceLocation NamespaceLoc,
8389                                    SourceLocation IdentLoc,
8390                                    IdentifierInfo *II,
8391                                    SourceLocation LBrace,
8392                                    AttributeList *AttrList,
8393                                    UsingDirectiveDecl *&UD) {
8394   SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
8395   // For anonymous namespace, take the location of the left brace.
8396   SourceLocation Loc = II ? IdentLoc : LBrace;
8397   bool IsInline = InlineLoc.isValid();
8398   bool IsInvalid = false;
8399   bool IsStd = false;
8400   bool AddToKnown = false;
8401   Scope *DeclRegionScope = NamespcScope->getParent();
8402 
8403   NamespaceDecl *PrevNS = nullptr;
8404   if (II) {
8405     // C++ [namespace.def]p2:
8406     //   The identifier in an original-namespace-definition shall not
8407     //   have been previously defined in the declarative region in
8408     //   which the original-namespace-definition appears. The
8409     //   identifier in an original-namespace-definition is the name of
8410     //   the namespace. Subsequently in that declarative region, it is
8411     //   treated as an original-namespace-name.
8412     //
8413     // Since namespace names are unique in their scope, and we don't
8414     // look through using directives, just look for any ordinary names
8415     // as if by qualified name lookup.
8416     LookupResult R(*this, II, IdentLoc, LookupOrdinaryName, ForRedeclaration);
8417     LookupQualifiedName(R, CurContext->getRedeclContext());
8418     NamedDecl *PrevDecl =
8419         R.isSingleResult() ? R.getRepresentativeDecl() : nullptr;
8420     PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
8421 
8422     if (PrevNS) {
8423       // This is an extended namespace definition.
8424       if (IsInline != PrevNS->isInline())
8425         DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
8426                                         &IsInline, PrevNS);
8427     } else if (PrevDecl) {
8428       // This is an invalid name redefinition.
8429       Diag(Loc, diag::err_redefinition_different_kind)
8430         << II;
8431       Diag(PrevDecl->getLocation(), diag::note_previous_definition);
8432       IsInvalid = true;
8433       // Continue on to push Namespc as current DeclContext and return it.
8434     } else if (II->isStr("std") &&
8435                CurContext->getRedeclContext()->isTranslationUnit()) {
8436       // This is the first "real" definition of the namespace "std", so update
8437       // our cache of the "std" namespace to point at this definition.
8438       PrevNS = getStdNamespace();
8439       IsStd = true;
8440       AddToKnown = !IsInline;
8441     } else {
8442       // We've seen this namespace for the first time.
8443       AddToKnown = !IsInline;
8444     }
8445   } else {
8446     // Anonymous namespaces.
8447 
8448     // Determine whether the parent already has an anonymous namespace.
8449     DeclContext *Parent = CurContext->getRedeclContext();
8450     if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
8451       PrevNS = TU->getAnonymousNamespace();
8452     } else {
8453       NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
8454       PrevNS = ND->getAnonymousNamespace();
8455     }
8456 
8457     if (PrevNS && IsInline != PrevNS->isInline())
8458       DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
8459                                       &IsInline, PrevNS);
8460   }
8461 
8462   NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
8463                                                  StartLoc, Loc, II, PrevNS);
8464   if (IsInvalid)
8465     Namespc->setInvalidDecl();
8466 
8467   ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
8468   AddPragmaAttributes(DeclRegionScope, Namespc);
8469 
8470   // FIXME: Should we be merging attributes?
8471   if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
8472     PushNamespaceVisibilityAttr(Attr, Loc);
8473 
8474   if (IsStd)
8475     StdNamespace = Namespc;
8476   if (AddToKnown)
8477     KnownNamespaces[Namespc] = false;
8478 
8479   if (II) {
8480     PushOnScopeChains(Namespc, DeclRegionScope);
8481   } else {
8482     // Link the anonymous namespace into its parent.
8483     DeclContext *Parent = CurContext->getRedeclContext();
8484     if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
8485       TU->setAnonymousNamespace(Namespc);
8486     } else {
8487       cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
8488     }
8489 
8490     CurContext->addDecl(Namespc);
8491 
8492     // C++ [namespace.unnamed]p1.  An unnamed-namespace-definition
8493     //   behaves as if it were replaced by
8494     //     namespace unique { /* empty body */ }
8495     //     using namespace unique;
8496     //     namespace unique { namespace-body }
8497     //   where all occurrences of 'unique' in a translation unit are
8498     //   replaced by the same identifier and this identifier differs
8499     //   from all other identifiers in the entire program.
8500 
8501     // We just create the namespace with an empty name and then add an
8502     // implicit using declaration, just like the standard suggests.
8503     //
8504     // CodeGen enforces the "universally unique" aspect by giving all
8505     // declarations semantically contained within an anonymous
8506     // namespace internal linkage.
8507 
8508     if (!PrevNS) {
8509       UD = UsingDirectiveDecl::Create(Context, Parent,
8510                                       /* 'using' */ LBrace,
8511                                       /* 'namespace' */ SourceLocation(),
8512                                       /* qualifier */ NestedNameSpecifierLoc(),
8513                                       /* identifier */ SourceLocation(),
8514                                       Namespc,
8515                                       /* Ancestor */ Parent);
8516       UD->setImplicit();
8517       Parent->addDecl(UD);
8518     }
8519   }
8520 
8521   ActOnDocumentableDecl(Namespc);
8522 
8523   // Although we could have an invalid decl (i.e. the namespace name is a
8524   // redefinition), push it as current DeclContext and try to continue parsing.
8525   // FIXME: We should be able to push Namespc here, so that the each DeclContext
8526   // for the namespace has the declarations that showed up in that particular
8527   // namespace definition.
8528   PushDeclContext(NamespcScope, Namespc);
8529   return Namespc;
8530 }
8531 
8532 /// getNamespaceDecl - Returns the namespace a decl represents. If the decl
8533 /// is a namespace alias, returns the namespace it points to.
8534 static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
8535   if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
8536     return AD->getNamespace();
8537   return dyn_cast_or_null<NamespaceDecl>(D);
8538 }
8539 
8540 /// ActOnFinishNamespaceDef - This callback is called after a namespace is
8541 /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
8542 void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
8543   NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
8544   assert(Namespc && "Invalid parameter, expected NamespaceDecl");
8545   Namespc->setRBraceLoc(RBrace);
8546   PopDeclContext();
8547   if (Namespc->hasAttr<VisibilityAttr>())
8548     PopPragmaVisibility(true, RBrace);
8549 }
8550 
8551 CXXRecordDecl *Sema::getStdBadAlloc() const {
8552   return cast_or_null<CXXRecordDecl>(
8553                                   StdBadAlloc.get(Context.getExternalSource()));
8554 }
8555 
8556 EnumDecl *Sema::getStdAlignValT() const {
8557   return cast_or_null<EnumDecl>(StdAlignValT.get(Context.getExternalSource()));
8558 }
8559 
8560 NamespaceDecl *Sema::getStdNamespace() const {
8561   return cast_or_null<NamespaceDecl>(
8562                                  StdNamespace.get(Context.getExternalSource()));
8563 }
8564 
8565 NamespaceDecl *Sema::lookupStdExperimentalNamespace() {
8566   if (!StdExperimentalNamespaceCache) {
8567     if (auto Std = getStdNamespace()) {
8568       LookupResult Result(*this, &PP.getIdentifierTable().get("experimental"),
8569                           SourceLocation(), LookupNamespaceName);
8570       if (!LookupQualifiedName(Result, Std) ||
8571           !(StdExperimentalNamespaceCache =
8572                 Result.getAsSingle<NamespaceDecl>()))
8573         Result.suppressDiagnostics();
8574     }
8575   }
8576   return StdExperimentalNamespaceCache;
8577 }
8578 
8579 /// \brief Retrieve the special "std" namespace, which may require us to
8580 /// implicitly define the namespace.
8581 NamespaceDecl *Sema::getOrCreateStdNamespace() {
8582   if (!StdNamespace) {
8583     // The "std" namespace has not yet been defined, so build one implicitly.
8584     StdNamespace = NamespaceDecl::Create(Context,
8585                                          Context.getTranslationUnitDecl(),
8586                                          /*Inline=*/false,
8587                                          SourceLocation(), SourceLocation(),
8588                                          &PP.getIdentifierTable().get("std"),
8589                                          /*PrevDecl=*/nullptr);
8590     getStdNamespace()->setImplicit(true);
8591   }
8592 
8593   return getStdNamespace();
8594 }
8595 
8596 bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
8597   assert(getLangOpts().CPlusPlus &&
8598          "Looking for std::initializer_list outside of C++.");
8599 
8600   // We're looking for implicit instantiations of
8601   // template <typename E> class std::initializer_list.
8602 
8603   if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
8604     return false;
8605 
8606   ClassTemplateDecl *Template = nullptr;
8607   const TemplateArgument *Arguments = nullptr;
8608 
8609   if (const RecordType *RT = Ty->getAs<RecordType>()) {
8610 
8611     ClassTemplateSpecializationDecl *Specialization =
8612         dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
8613     if (!Specialization)
8614       return false;
8615 
8616     Template = Specialization->getSpecializedTemplate();
8617     Arguments = Specialization->getTemplateArgs().data();
8618   } else if (const TemplateSpecializationType *TST =
8619                  Ty->getAs<TemplateSpecializationType>()) {
8620     Template = dyn_cast_or_null<ClassTemplateDecl>(
8621         TST->getTemplateName().getAsTemplateDecl());
8622     Arguments = TST->getArgs();
8623   }
8624   if (!Template)
8625     return false;
8626 
8627   if (!StdInitializerList) {
8628     // Haven't recognized std::initializer_list yet, maybe this is it.
8629     CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
8630     if (TemplateClass->getIdentifier() !=
8631             &PP.getIdentifierTable().get("initializer_list") ||
8632         !getStdNamespace()->InEnclosingNamespaceSetOf(
8633             TemplateClass->getDeclContext()))
8634       return false;
8635     // This is a template called std::initializer_list, but is it the right
8636     // template?
8637     TemplateParameterList *Params = Template->getTemplateParameters();
8638     if (Params->getMinRequiredArguments() != 1)
8639       return false;
8640     if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
8641       return false;
8642 
8643     // It's the right template.
8644     StdInitializerList = Template;
8645   }
8646 
8647   if (Template->getCanonicalDecl() != StdInitializerList->getCanonicalDecl())
8648     return false;
8649 
8650   // This is an instance of std::initializer_list. Find the argument type.
8651   if (Element)
8652     *Element = Arguments[0].getAsType();
8653   return true;
8654 }
8655 
8656 static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
8657   NamespaceDecl *Std = S.getStdNamespace();
8658   if (!Std) {
8659     S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
8660     return nullptr;
8661   }
8662 
8663   LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
8664                       Loc, Sema::LookupOrdinaryName);
8665   if (!S.LookupQualifiedName(Result, Std)) {
8666     S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
8667     return nullptr;
8668   }
8669   ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
8670   if (!Template) {
8671     Result.suppressDiagnostics();
8672     // We found something weird. Complain about the first thing we found.
8673     NamedDecl *Found = *Result.begin();
8674     S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
8675     return nullptr;
8676   }
8677 
8678   // We found some template called std::initializer_list. Now verify that it's
8679   // correct.
8680   TemplateParameterList *Params = Template->getTemplateParameters();
8681   if (Params->getMinRequiredArguments() != 1 ||
8682       !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
8683     S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
8684     return nullptr;
8685   }
8686 
8687   return Template;
8688 }
8689 
8690 QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
8691   if (!StdInitializerList) {
8692     StdInitializerList = LookupStdInitializerList(*this, Loc);
8693     if (!StdInitializerList)
8694       return QualType();
8695   }
8696 
8697   TemplateArgumentListInfo Args(Loc, Loc);
8698   Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
8699                                        Context.getTrivialTypeSourceInfo(Element,
8700                                                                         Loc)));
8701   return Context.getCanonicalType(
8702       CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
8703 }
8704 
8705 bool Sema::isInitListConstructor(const FunctionDecl *Ctor) {
8706   // C++ [dcl.init.list]p2:
8707   //   A constructor is an initializer-list constructor if its first parameter
8708   //   is of type std::initializer_list<E> or reference to possibly cv-qualified
8709   //   std::initializer_list<E> for some type E, and either there are no other
8710   //   parameters or else all other parameters have default arguments.
8711   if (Ctor->getNumParams() < 1 ||
8712       (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
8713     return false;
8714 
8715   QualType ArgType = Ctor->getParamDecl(0)->getType();
8716   if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
8717     ArgType = RT->getPointeeType().getUnqualifiedType();
8718 
8719   return isStdInitializerList(ArgType, nullptr);
8720 }
8721 
8722 /// \brief Determine whether a using statement is in a context where it will be
8723 /// apply in all contexts.
8724 static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
8725   switch (CurContext->getDeclKind()) {
8726     case Decl::TranslationUnit:
8727       return true;
8728     case Decl::LinkageSpec:
8729       return IsUsingDirectiveInToplevelContext(CurContext->getParent());
8730     default:
8731       return false;
8732   }
8733 }
8734 
8735 namespace {
8736 
8737 // Callback to only accept typo corrections that are namespaces.
8738 class NamespaceValidatorCCC : public CorrectionCandidateCallback {
8739 public:
8740   bool ValidateCandidate(const TypoCorrection &candidate) override {
8741     if (NamedDecl *ND = candidate.getCorrectionDecl())
8742       return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
8743     return false;
8744   }
8745 };
8746 
8747 }
8748 
8749 static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
8750                                        CXXScopeSpec &SS,
8751                                        SourceLocation IdentLoc,
8752                                        IdentifierInfo *Ident) {
8753   R.clear();
8754   if (TypoCorrection Corrected =
8755           S.CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), Sc, &SS,
8756                         llvm::make_unique<NamespaceValidatorCCC>(),
8757                         Sema::CTK_ErrorRecovery)) {
8758     if (DeclContext *DC = S.computeDeclContext(SS, false)) {
8759       std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
8760       bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
8761                               Ident->getName().equals(CorrectedStr);
8762       S.diagnoseTypo(Corrected,
8763                      S.PDiag(diag::err_using_directive_member_suggest)
8764                        << Ident << DC << DroppedSpecifier << SS.getRange(),
8765                      S.PDiag(diag::note_namespace_defined_here));
8766     } else {
8767       S.diagnoseTypo(Corrected,
8768                      S.PDiag(diag::err_using_directive_suggest) << Ident,
8769                      S.PDiag(diag::note_namespace_defined_here));
8770     }
8771     R.addDecl(Corrected.getFoundDecl());
8772     return true;
8773   }
8774   return false;
8775 }
8776 
8777 Decl *Sema::ActOnUsingDirective(Scope *S,
8778                                           SourceLocation UsingLoc,
8779                                           SourceLocation NamespcLoc,
8780                                           CXXScopeSpec &SS,
8781                                           SourceLocation IdentLoc,
8782                                           IdentifierInfo *NamespcName,
8783                                           AttributeList *AttrList) {
8784   assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
8785   assert(NamespcName && "Invalid NamespcName.");
8786   assert(IdentLoc.isValid() && "Invalid NamespceName location.");
8787 
8788   // This can only happen along a recovery path.
8789   while (S->isTemplateParamScope())
8790     S = S->getParent();
8791   assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
8792 
8793   UsingDirectiveDecl *UDir = nullptr;
8794   NestedNameSpecifier *Qualifier = nullptr;
8795   if (SS.isSet())
8796     Qualifier = SS.getScopeRep();
8797 
8798   // Lookup namespace name.
8799   LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
8800   LookupParsedName(R, S, &SS);
8801   if (R.isAmbiguous())
8802     return nullptr;
8803 
8804   if (R.empty()) {
8805     R.clear();
8806     // Allow "using namespace std;" or "using namespace ::std;" even if
8807     // "std" hasn't been defined yet, for GCC compatibility.
8808     if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
8809         NamespcName->isStr("std")) {
8810       Diag(IdentLoc, diag::ext_using_undefined_std);
8811       R.addDecl(getOrCreateStdNamespace());
8812       R.resolveKind();
8813     }
8814     // Otherwise, attempt typo correction.
8815     else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
8816   }
8817 
8818   if (!R.empty()) {
8819     NamedDecl *Named = R.getRepresentativeDecl();
8820     NamespaceDecl *NS = R.getAsSingle<NamespaceDecl>();
8821     assert(NS && "expected namespace decl");
8822 
8823     // The use of a nested name specifier may trigger deprecation warnings.
8824     DiagnoseUseOfDecl(Named, IdentLoc);
8825 
8826     // C++ [namespace.udir]p1:
8827     //   A using-directive specifies that the names in the nominated
8828     //   namespace can be used in the scope in which the
8829     //   using-directive appears after the using-directive. During
8830     //   unqualified name lookup (3.4.1), the names appear as if they
8831     //   were declared in the nearest enclosing namespace which
8832     //   contains both the using-directive and the nominated
8833     //   namespace. [Note: in this context, "contains" means "contains
8834     //   directly or indirectly". ]
8835 
8836     // Find enclosing context containing both using-directive and
8837     // nominated namespace.
8838     DeclContext *CommonAncestor = cast<DeclContext>(NS);
8839     while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
8840       CommonAncestor = CommonAncestor->getParent();
8841 
8842     UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
8843                                       SS.getWithLocInContext(Context),
8844                                       IdentLoc, Named, CommonAncestor);
8845 
8846     if (IsUsingDirectiveInToplevelContext(CurContext) &&
8847         !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
8848       Diag(IdentLoc, diag::warn_using_directive_in_header);
8849     }
8850 
8851     PushUsingDirective(S, UDir);
8852   } else {
8853     Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
8854   }
8855 
8856   if (UDir)
8857     ProcessDeclAttributeList(S, UDir, AttrList);
8858 
8859   return UDir;
8860 }
8861 
8862 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
8863   // If the scope has an associated entity and the using directive is at
8864   // namespace or translation unit scope, add the UsingDirectiveDecl into
8865   // its lookup structure so qualified name lookup can find it.
8866   DeclContext *Ctx = S->getEntity();
8867   if (Ctx && !Ctx->isFunctionOrMethod())
8868     Ctx->addDecl(UDir);
8869   else
8870     // Otherwise, it is at block scope. The using-directives will affect lookup
8871     // only to the end of the scope.
8872     S->PushUsingDirective(UDir);
8873 }
8874 
8875 
8876 Decl *Sema::ActOnUsingDeclaration(Scope *S,
8877                                   AccessSpecifier AS,
8878                                   SourceLocation UsingLoc,
8879                                   SourceLocation TypenameLoc,
8880                                   CXXScopeSpec &SS,
8881                                   UnqualifiedId &Name,
8882                                   SourceLocation EllipsisLoc,
8883                                   AttributeList *AttrList) {
8884   assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
8885 
8886   if (SS.isEmpty()) {
8887     Diag(Name.getLocStart(), diag::err_using_requires_qualname);
8888     return nullptr;
8889   }
8890 
8891   switch (Name.getKind()) {
8892   case UnqualifiedId::IK_ImplicitSelfParam:
8893   case UnqualifiedId::IK_Identifier:
8894   case UnqualifiedId::IK_OperatorFunctionId:
8895   case UnqualifiedId::IK_LiteralOperatorId:
8896   case UnqualifiedId::IK_ConversionFunctionId:
8897     break;
8898 
8899   case UnqualifiedId::IK_ConstructorName:
8900   case UnqualifiedId::IK_ConstructorTemplateId:
8901     // C++11 inheriting constructors.
8902     Diag(Name.getLocStart(),
8903          getLangOpts().CPlusPlus11 ?
8904            diag::warn_cxx98_compat_using_decl_constructor :
8905            diag::err_using_decl_constructor)
8906       << SS.getRange();
8907 
8908     if (getLangOpts().CPlusPlus11) break;
8909 
8910     return nullptr;
8911 
8912   case UnqualifiedId::IK_DestructorName:
8913     Diag(Name.getLocStart(), diag::err_using_decl_destructor)
8914       << SS.getRange();
8915     return nullptr;
8916 
8917   case UnqualifiedId::IK_TemplateId:
8918     Diag(Name.getLocStart(), diag::err_using_decl_template_id)
8919       << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
8920     return nullptr;
8921 
8922   case UnqualifiedId::IK_DeductionGuideName:
8923     llvm_unreachable("cannot parse qualified deduction guide name");
8924   }
8925 
8926   DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
8927   DeclarationName TargetName = TargetNameInfo.getName();
8928   if (!TargetName)
8929     return nullptr;
8930 
8931   // Warn about access declarations.
8932   if (UsingLoc.isInvalid()) {
8933     Diag(Name.getLocStart(),
8934          getLangOpts().CPlusPlus11 ? diag::err_access_decl
8935                                    : diag::warn_access_decl_deprecated)
8936       << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
8937   }
8938 
8939   if (EllipsisLoc.isInvalid()) {
8940     if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
8941         DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
8942       return nullptr;
8943   } else {
8944     if (!SS.getScopeRep()->containsUnexpandedParameterPack() &&
8945         !TargetNameInfo.containsUnexpandedParameterPack()) {
8946       Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
8947         << SourceRange(SS.getBeginLoc(), TargetNameInfo.getEndLoc());
8948       EllipsisLoc = SourceLocation();
8949     }
8950   }
8951 
8952   NamedDecl *UD =
8953       BuildUsingDeclaration(S, AS, UsingLoc, TypenameLoc.isValid(), TypenameLoc,
8954                             SS, TargetNameInfo, EllipsisLoc, AttrList,
8955                             /*IsInstantiation*/false);
8956   if (UD)
8957     PushOnScopeChains(UD, S, /*AddToContext*/ false);
8958 
8959   return UD;
8960 }
8961 
8962 /// \brief Determine whether a using declaration considers the given
8963 /// declarations as "equivalent", e.g., if they are redeclarations of
8964 /// the same entity or are both typedefs of the same type.
8965 static bool
8966 IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2) {
8967   if (D1->getCanonicalDecl() == D2->getCanonicalDecl())
8968     return true;
8969 
8970   if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
8971     if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2))
8972       return Context.hasSameType(TD1->getUnderlyingType(),
8973                                  TD2->getUnderlyingType());
8974 
8975   return false;
8976 }
8977 
8978 
8979 /// Determines whether to create a using shadow decl for a particular
8980 /// decl, given the set of decls existing prior to this using lookup.
8981 bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
8982                                 const LookupResult &Previous,
8983                                 UsingShadowDecl *&PrevShadow) {
8984   // Diagnose finding a decl which is not from a base class of the
8985   // current class.  We do this now because there are cases where this
8986   // function will silently decide not to build a shadow decl, which
8987   // will pre-empt further diagnostics.
8988   //
8989   // We don't need to do this in C++11 because we do the check once on
8990   // the qualifier.
8991   //
8992   // FIXME: diagnose the following if we care enough:
8993   //   struct A { int foo; };
8994   //   struct B : A { using A::foo; };
8995   //   template <class T> struct C : A {};
8996   //   template <class T> struct D : C<T> { using B::foo; } // <---
8997   // This is invalid (during instantiation) in C++03 because B::foo
8998   // resolves to the using decl in B, which is not a base class of D<T>.
8999   // We can't diagnose it immediately because C<T> is an unknown
9000   // specialization.  The UsingShadowDecl in D<T> then points directly
9001   // to A::foo, which will look well-formed when we instantiate.
9002   // The right solution is to not collapse the shadow-decl chain.
9003   if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) {
9004     DeclContext *OrigDC = Orig->getDeclContext();
9005 
9006     // Handle enums and anonymous structs.
9007     if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
9008     CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
9009     while (OrigRec->isAnonymousStructOrUnion())
9010       OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
9011 
9012     if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
9013       if (OrigDC == CurContext) {
9014         Diag(Using->getLocation(),
9015              diag::err_using_decl_nested_name_specifier_is_current_class)
9016           << Using->getQualifierLoc().getSourceRange();
9017         Diag(Orig->getLocation(), diag::note_using_decl_target);
9018         Using->setInvalidDecl();
9019         return true;
9020       }
9021 
9022       Diag(Using->getQualifierLoc().getBeginLoc(),
9023            diag::err_using_decl_nested_name_specifier_is_not_base_class)
9024         << Using->getQualifier()
9025         << cast<CXXRecordDecl>(CurContext)
9026         << Using->getQualifierLoc().getSourceRange();
9027       Diag(Orig->getLocation(), diag::note_using_decl_target);
9028       Using->setInvalidDecl();
9029       return true;
9030     }
9031   }
9032 
9033   if (Previous.empty()) return false;
9034 
9035   NamedDecl *Target = Orig;
9036   if (isa<UsingShadowDecl>(Target))
9037     Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
9038 
9039   // If the target happens to be one of the previous declarations, we
9040   // don't have a conflict.
9041   //
9042   // FIXME: but we might be increasing its access, in which case we
9043   // should redeclare it.
9044   NamedDecl *NonTag = nullptr, *Tag = nullptr;
9045   bool FoundEquivalentDecl = false;
9046   for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
9047          I != E; ++I) {
9048     NamedDecl *D = (*I)->getUnderlyingDecl();
9049     // We can have UsingDecls in our Previous results because we use the same
9050     // LookupResult for checking whether the UsingDecl itself is a valid
9051     // redeclaration.
9052     if (isa<UsingDecl>(D) || isa<UsingPackDecl>(D))
9053       continue;
9054 
9055     if (IsEquivalentForUsingDecl(Context, D, Target)) {
9056       if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I))
9057         PrevShadow = Shadow;
9058       FoundEquivalentDecl = true;
9059     } else if (isEquivalentInternalLinkageDeclaration(D, Target)) {
9060       // We don't conflict with an existing using shadow decl of an equivalent
9061       // declaration, but we're not a redeclaration of it.
9062       FoundEquivalentDecl = true;
9063     }
9064 
9065     if (isVisible(D))
9066       (isa<TagDecl>(D) ? Tag : NonTag) = D;
9067   }
9068 
9069   if (FoundEquivalentDecl)
9070     return false;
9071 
9072   if (FunctionDecl *FD = Target->getAsFunction()) {
9073     NamedDecl *OldDecl = nullptr;
9074     switch (CheckOverload(nullptr, FD, Previous, OldDecl,
9075                           /*IsForUsingDecl*/ true)) {
9076     case Ovl_Overload:
9077       return false;
9078 
9079     case Ovl_NonFunction:
9080       Diag(Using->getLocation(), diag::err_using_decl_conflict);
9081       break;
9082 
9083     // We found a decl with the exact signature.
9084     case Ovl_Match:
9085       // If we're in a record, we want to hide the target, so we
9086       // return true (without a diagnostic) to tell the caller not to
9087       // build a shadow decl.
9088       if (CurContext->isRecord())
9089         return true;
9090 
9091       // If we're not in a record, this is an error.
9092       Diag(Using->getLocation(), diag::err_using_decl_conflict);
9093       break;
9094     }
9095 
9096     Diag(Target->getLocation(), diag::note_using_decl_target);
9097     Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
9098     Using->setInvalidDecl();
9099     return true;
9100   }
9101 
9102   // Target is not a function.
9103 
9104   if (isa<TagDecl>(Target)) {
9105     // No conflict between a tag and a non-tag.
9106     if (!Tag) return false;
9107 
9108     Diag(Using->getLocation(), diag::err_using_decl_conflict);
9109     Diag(Target->getLocation(), diag::note_using_decl_target);
9110     Diag(Tag->getLocation(), diag::note_using_decl_conflict);
9111     Using->setInvalidDecl();
9112     return true;
9113   }
9114 
9115   // No conflict between a tag and a non-tag.
9116   if (!NonTag) return false;
9117 
9118   Diag(Using->getLocation(), diag::err_using_decl_conflict);
9119   Diag(Target->getLocation(), diag::note_using_decl_target);
9120   Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
9121   Using->setInvalidDecl();
9122   return true;
9123 }
9124 
9125 /// Determine whether a direct base class is a virtual base class.
9126 static bool isVirtualDirectBase(CXXRecordDecl *Derived, CXXRecordDecl *Base) {
9127   if (!Derived->getNumVBases())
9128     return false;
9129   for (auto &B : Derived->bases())
9130     if (B.getType()->getAsCXXRecordDecl() == Base)
9131       return B.isVirtual();
9132   llvm_unreachable("not a direct base class");
9133 }
9134 
9135 /// Builds a shadow declaration corresponding to a 'using' declaration.
9136 UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
9137                                             UsingDecl *UD,
9138                                             NamedDecl *Orig,
9139                                             UsingShadowDecl *PrevDecl) {
9140   // If we resolved to another shadow declaration, just coalesce them.
9141   NamedDecl *Target = Orig;
9142   if (isa<UsingShadowDecl>(Target)) {
9143     Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
9144     assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
9145   }
9146 
9147   NamedDecl *NonTemplateTarget = Target;
9148   if (auto *TargetTD = dyn_cast<TemplateDecl>(Target))
9149     NonTemplateTarget = TargetTD->getTemplatedDecl();
9150 
9151   UsingShadowDecl *Shadow;
9152   if (isa<CXXConstructorDecl>(NonTemplateTarget)) {
9153     bool IsVirtualBase =
9154         isVirtualDirectBase(cast<CXXRecordDecl>(CurContext),
9155                             UD->getQualifier()->getAsRecordDecl());
9156     Shadow = ConstructorUsingShadowDecl::Create(
9157         Context, CurContext, UD->getLocation(), UD, Orig, IsVirtualBase);
9158   } else {
9159     Shadow = UsingShadowDecl::Create(Context, CurContext, UD->getLocation(), UD,
9160                                      Target);
9161   }
9162   UD->addShadowDecl(Shadow);
9163 
9164   Shadow->setAccess(UD->getAccess());
9165   if (Orig->isInvalidDecl() || UD->isInvalidDecl())
9166     Shadow->setInvalidDecl();
9167 
9168   Shadow->setPreviousDecl(PrevDecl);
9169 
9170   if (S)
9171     PushOnScopeChains(Shadow, S);
9172   else
9173     CurContext->addDecl(Shadow);
9174 
9175 
9176   return Shadow;
9177 }
9178 
9179 /// Hides a using shadow declaration.  This is required by the current
9180 /// using-decl implementation when a resolvable using declaration in a
9181 /// class is followed by a declaration which would hide or override
9182 /// one or more of the using decl's targets; for example:
9183 ///
9184 ///   struct Base { void foo(int); };
9185 ///   struct Derived : Base {
9186 ///     using Base::foo;
9187 ///     void foo(int);
9188 ///   };
9189 ///
9190 /// The governing language is C++03 [namespace.udecl]p12:
9191 ///
9192 ///   When a using-declaration brings names from a base class into a
9193 ///   derived class scope, member functions in the derived class
9194 ///   override and/or hide member functions with the same name and
9195 ///   parameter types in a base class (rather than conflicting).
9196 ///
9197 /// There are two ways to implement this:
9198 ///   (1) optimistically create shadow decls when they're not hidden
9199 ///       by existing declarations, or
9200 ///   (2) don't create any shadow decls (or at least don't make them
9201 ///       visible) until we've fully parsed/instantiated the class.
9202 /// The problem with (1) is that we might have to retroactively remove
9203 /// a shadow decl, which requires several O(n) operations because the
9204 /// decl structures are (very reasonably) not designed for removal.
9205 /// (2) avoids this but is very fiddly and phase-dependent.
9206 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
9207   if (Shadow->getDeclName().getNameKind() ==
9208         DeclarationName::CXXConversionFunctionName)
9209     cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
9210 
9211   // Remove it from the DeclContext...
9212   Shadow->getDeclContext()->removeDecl(Shadow);
9213 
9214   // ...and the scope, if applicable...
9215   if (S) {
9216     S->RemoveDecl(Shadow);
9217     IdResolver.RemoveDecl(Shadow);
9218   }
9219 
9220   // ...and the using decl.
9221   Shadow->getUsingDecl()->removeShadowDecl(Shadow);
9222 
9223   // TODO: complain somehow if Shadow was used.  It shouldn't
9224   // be possible for this to happen, because...?
9225 }
9226 
9227 /// Find the base specifier for a base class with the given type.
9228 static CXXBaseSpecifier *findDirectBaseWithType(CXXRecordDecl *Derived,
9229                                                 QualType DesiredBase,
9230                                                 bool &AnyDependentBases) {
9231   // Check whether the named type is a direct base class.
9232   CanQualType CanonicalDesiredBase = DesiredBase->getCanonicalTypeUnqualified();
9233   for (auto &Base : Derived->bases()) {
9234     CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified();
9235     if (CanonicalDesiredBase == BaseType)
9236       return &Base;
9237     if (BaseType->isDependentType())
9238       AnyDependentBases = true;
9239   }
9240   return nullptr;
9241 }
9242 
9243 namespace {
9244 class UsingValidatorCCC : public CorrectionCandidateCallback {
9245 public:
9246   UsingValidatorCCC(bool HasTypenameKeyword, bool IsInstantiation,
9247                     NestedNameSpecifier *NNS, CXXRecordDecl *RequireMemberOf)
9248       : HasTypenameKeyword(HasTypenameKeyword),
9249         IsInstantiation(IsInstantiation), OldNNS(NNS),
9250         RequireMemberOf(RequireMemberOf) {}
9251 
9252   bool ValidateCandidate(const TypoCorrection &Candidate) override {
9253     NamedDecl *ND = Candidate.getCorrectionDecl();
9254 
9255     // Keywords are not valid here.
9256     if (!ND || isa<NamespaceDecl>(ND))
9257       return false;
9258 
9259     // Completely unqualified names are invalid for a 'using' declaration.
9260     if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier())
9261       return false;
9262 
9263     // FIXME: Don't correct to a name that CheckUsingDeclRedeclaration would
9264     // reject.
9265 
9266     if (RequireMemberOf) {
9267       auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND);
9268       if (FoundRecord && FoundRecord->isInjectedClassName()) {
9269         // No-one ever wants a using-declaration to name an injected-class-name
9270         // of a base class, unless they're declaring an inheriting constructor.
9271         ASTContext &Ctx = ND->getASTContext();
9272         if (!Ctx.getLangOpts().CPlusPlus11)
9273           return false;
9274         QualType FoundType = Ctx.getRecordType(FoundRecord);
9275 
9276         // Check that the injected-class-name is named as a member of its own
9277         // type; we don't want to suggest 'using Derived::Base;', since that
9278         // means something else.
9279         NestedNameSpecifier *Specifier =
9280             Candidate.WillReplaceSpecifier()
9281                 ? Candidate.getCorrectionSpecifier()
9282                 : OldNNS;
9283         if (!Specifier->getAsType() ||
9284             !Ctx.hasSameType(QualType(Specifier->getAsType(), 0), FoundType))
9285           return false;
9286 
9287         // Check that this inheriting constructor declaration actually names a
9288         // direct base class of the current class.
9289         bool AnyDependentBases = false;
9290         if (!findDirectBaseWithType(RequireMemberOf,
9291                                     Ctx.getRecordType(FoundRecord),
9292                                     AnyDependentBases) &&
9293             !AnyDependentBases)
9294           return false;
9295       } else {
9296         auto *RD = dyn_cast<CXXRecordDecl>(ND->getDeclContext());
9297         if (!RD || RequireMemberOf->isProvablyNotDerivedFrom(RD))
9298           return false;
9299 
9300         // FIXME: Check that the base class member is accessible?
9301       }
9302     } else {
9303       auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND);
9304       if (FoundRecord && FoundRecord->isInjectedClassName())
9305         return false;
9306     }
9307 
9308     if (isa<TypeDecl>(ND))
9309       return HasTypenameKeyword || !IsInstantiation;
9310 
9311     return !HasTypenameKeyword;
9312   }
9313 
9314 private:
9315   bool HasTypenameKeyword;
9316   bool IsInstantiation;
9317   NestedNameSpecifier *OldNNS;
9318   CXXRecordDecl *RequireMemberOf;
9319 };
9320 } // end anonymous namespace
9321 
9322 /// Builds a using declaration.
9323 ///
9324 /// \param IsInstantiation - Whether this call arises from an
9325 ///   instantiation of an unresolved using declaration.  We treat
9326 ///   the lookup differently for these declarations.
9327 NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
9328                                        SourceLocation UsingLoc,
9329                                        bool HasTypenameKeyword,
9330                                        SourceLocation TypenameLoc,
9331                                        CXXScopeSpec &SS,
9332                                        DeclarationNameInfo NameInfo,
9333                                        SourceLocation EllipsisLoc,
9334                                        AttributeList *AttrList,
9335                                        bool IsInstantiation) {
9336   assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
9337   SourceLocation IdentLoc = NameInfo.getLoc();
9338   assert(IdentLoc.isValid() && "Invalid TargetName location.");
9339 
9340   // FIXME: We ignore attributes for now.
9341 
9342   // For an inheriting constructor declaration, the name of the using
9343   // declaration is the name of a constructor in this class, not in the
9344   // base class.
9345   DeclarationNameInfo UsingName = NameInfo;
9346   if (UsingName.getName().getNameKind() == DeclarationName::CXXConstructorName)
9347     if (auto *RD = dyn_cast<CXXRecordDecl>(CurContext))
9348       UsingName.setName(Context.DeclarationNames.getCXXConstructorName(
9349           Context.getCanonicalType(Context.getRecordType(RD))));
9350 
9351   // Do the redeclaration lookup in the current scope.
9352   LookupResult Previous(*this, UsingName, LookupUsingDeclName,
9353                         ForRedeclaration);
9354   Previous.setHideTags(false);
9355   if (S) {
9356     LookupName(Previous, S);
9357 
9358     // It is really dumb that we have to do this.
9359     LookupResult::Filter F = Previous.makeFilter();
9360     while (F.hasNext()) {
9361       NamedDecl *D = F.next();
9362       if (!isDeclInScope(D, CurContext, S))
9363         F.erase();
9364       // If we found a local extern declaration that's not ordinarily visible,
9365       // and this declaration is being added to a non-block scope, ignore it.
9366       // We're only checking for scope conflicts here, not also for violations
9367       // of the linkage rules.
9368       else if (!CurContext->isFunctionOrMethod() && D->isLocalExternDecl() &&
9369                !(D->getIdentifierNamespace() & Decl::IDNS_Ordinary))
9370         F.erase();
9371     }
9372     F.done();
9373   } else {
9374     assert(IsInstantiation && "no scope in non-instantiation");
9375     if (CurContext->isRecord())
9376       LookupQualifiedName(Previous, CurContext);
9377     else {
9378       // No redeclaration check is needed here; in non-member contexts we
9379       // diagnosed all possible conflicts with other using-declarations when
9380       // building the template:
9381       //
9382       // For a dependent non-type using declaration, the only valid case is
9383       // if we instantiate to a single enumerator. We check for conflicts
9384       // between shadow declarations we introduce, and we check in the template
9385       // definition for conflicts between a non-type using declaration and any
9386       // other declaration, which together covers all cases.
9387       //
9388       // A dependent typename using declaration will never successfully
9389       // instantiate, since it will always name a class member, so we reject
9390       // that in the template definition.
9391     }
9392   }
9393 
9394   // Check for invalid redeclarations.
9395   if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword,
9396                                   SS, IdentLoc, Previous))
9397     return nullptr;
9398 
9399   // Check for bad qualifiers.
9400   if (CheckUsingDeclQualifier(UsingLoc, HasTypenameKeyword, SS, NameInfo,
9401                               IdentLoc))
9402     return nullptr;
9403 
9404   DeclContext *LookupContext = computeDeclContext(SS);
9405   NamedDecl *D;
9406   NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
9407   if (!LookupContext || EllipsisLoc.isValid()) {
9408     if (HasTypenameKeyword) {
9409       // FIXME: not all declaration name kinds are legal here
9410       D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
9411                                               UsingLoc, TypenameLoc,
9412                                               QualifierLoc,
9413                                               IdentLoc, NameInfo.getName(),
9414                                               EllipsisLoc);
9415     } else {
9416       D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
9417                                            QualifierLoc, NameInfo, EllipsisLoc);
9418     }
9419     D->setAccess(AS);
9420     CurContext->addDecl(D);
9421     return D;
9422   }
9423 
9424   auto Build = [&](bool Invalid) {
9425     UsingDecl *UD =
9426         UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
9427                           UsingName, HasTypenameKeyword);
9428     UD->setAccess(AS);
9429     CurContext->addDecl(UD);
9430     UD->setInvalidDecl(Invalid);
9431     return UD;
9432   };
9433   auto BuildInvalid = [&]{ return Build(true); };
9434   auto BuildValid = [&]{ return Build(false); };
9435 
9436   if (RequireCompleteDeclContext(SS, LookupContext))
9437     return BuildInvalid();
9438 
9439   // Look up the target name.
9440   LookupResult R(*this, NameInfo, LookupOrdinaryName);
9441 
9442   // Unlike most lookups, we don't always want to hide tag
9443   // declarations: tag names are visible through the using declaration
9444   // even if hidden by ordinary names, *except* in a dependent context
9445   // where it's important for the sanity of two-phase lookup.
9446   if (!IsInstantiation)
9447     R.setHideTags(false);
9448 
9449   // For the purposes of this lookup, we have a base object type
9450   // equal to that of the current context.
9451   if (CurContext->isRecord()) {
9452     R.setBaseObjectType(
9453                    Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
9454   }
9455 
9456   LookupQualifiedName(R, LookupContext);
9457 
9458   // Try to correct typos if possible. If constructor name lookup finds no
9459   // results, that means the named class has no explicit constructors, and we
9460   // suppressed declaring implicit ones (probably because it's dependent or
9461   // invalid).
9462   if (R.empty() &&
9463       NameInfo.getName().getNameKind() != DeclarationName::CXXConstructorName) {
9464     // HACK: Work around a bug in libstdc++'s detection of ::gets. Sometimes
9465     // it will believe that glibc provides a ::gets in cases where it does not,
9466     // and will try to pull it into namespace std with a using-declaration.
9467     // Just ignore the using-declaration in that case.
9468     auto *II = NameInfo.getName().getAsIdentifierInfo();
9469     if (getLangOpts().CPlusPlus14 && II && II->isStr("gets") &&
9470         CurContext->isStdNamespace() &&
9471         isa<TranslationUnitDecl>(LookupContext) &&
9472         getSourceManager().isInSystemHeader(UsingLoc))
9473       return nullptr;
9474     if (TypoCorrection Corrected = CorrectTypo(
9475             R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
9476             llvm::make_unique<UsingValidatorCCC>(
9477                 HasTypenameKeyword, IsInstantiation, SS.getScopeRep(),
9478                 dyn_cast<CXXRecordDecl>(CurContext)),
9479             CTK_ErrorRecovery)) {
9480       // We reject candidates where DroppedSpecifier == true, hence the
9481       // literal '0' below.
9482       diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
9483                                 << NameInfo.getName() << LookupContext << 0
9484                                 << SS.getRange());
9485 
9486       // If we picked a correction with no attached Decl we can't do anything
9487       // useful with it, bail out.
9488       NamedDecl *ND = Corrected.getCorrectionDecl();
9489       if (!ND)
9490         return BuildInvalid();
9491 
9492       // If we corrected to an inheriting constructor, handle it as one.
9493       auto *RD = dyn_cast<CXXRecordDecl>(ND);
9494       if (RD && RD->isInjectedClassName()) {
9495         // The parent of the injected class name is the class itself.
9496         RD = cast<CXXRecordDecl>(RD->getParent());
9497 
9498         // Fix up the information we'll use to build the using declaration.
9499         if (Corrected.WillReplaceSpecifier()) {
9500           NestedNameSpecifierLocBuilder Builder;
9501           Builder.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
9502                               QualifierLoc.getSourceRange());
9503           QualifierLoc = Builder.getWithLocInContext(Context);
9504         }
9505 
9506         // In this case, the name we introduce is the name of a derived class
9507         // constructor.
9508         auto *CurClass = cast<CXXRecordDecl>(CurContext);
9509         UsingName.setName(Context.DeclarationNames.getCXXConstructorName(
9510             Context.getCanonicalType(Context.getRecordType(CurClass))));
9511         UsingName.setNamedTypeInfo(nullptr);
9512         for (auto *Ctor : LookupConstructors(RD))
9513           R.addDecl(Ctor);
9514         R.resolveKind();
9515       } else {
9516         // FIXME: Pick up all the declarations if we found an overloaded
9517         // function.
9518         UsingName.setName(ND->getDeclName());
9519         R.addDecl(ND);
9520       }
9521     } else {
9522       Diag(IdentLoc, diag::err_no_member)
9523         << NameInfo.getName() << LookupContext << SS.getRange();
9524       return BuildInvalid();
9525     }
9526   }
9527 
9528   if (R.isAmbiguous())
9529     return BuildInvalid();
9530 
9531   if (HasTypenameKeyword) {
9532     // If we asked for a typename and got a non-type decl, error out.
9533     if (!R.getAsSingle<TypeDecl>()) {
9534       Diag(IdentLoc, diag::err_using_typename_non_type);
9535       for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
9536         Diag((*I)->getUnderlyingDecl()->getLocation(),
9537              diag::note_using_decl_target);
9538       return BuildInvalid();
9539     }
9540   } else {
9541     // If we asked for a non-typename and we got a type, error out,
9542     // but only if this is an instantiation of an unresolved using
9543     // decl.  Otherwise just silently find the type name.
9544     if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
9545       Diag(IdentLoc, diag::err_using_dependent_value_is_type);
9546       Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
9547       return BuildInvalid();
9548     }
9549   }
9550 
9551   // C++14 [namespace.udecl]p6:
9552   // A using-declaration shall not name a namespace.
9553   if (R.getAsSingle<NamespaceDecl>()) {
9554     Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
9555       << SS.getRange();
9556     return BuildInvalid();
9557   }
9558 
9559   // C++14 [namespace.udecl]p7:
9560   // A using-declaration shall not name a scoped enumerator.
9561   if (auto *ED = R.getAsSingle<EnumConstantDecl>()) {
9562     if (cast<EnumDecl>(ED->getDeclContext())->isScoped()) {
9563       Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_scoped_enum)
9564         << SS.getRange();
9565       return BuildInvalid();
9566     }
9567   }
9568 
9569   UsingDecl *UD = BuildValid();
9570 
9571   // Some additional rules apply to inheriting constructors.
9572   if (UsingName.getName().getNameKind() ==
9573         DeclarationName::CXXConstructorName) {
9574     // Suppress access diagnostics; the access check is instead performed at the
9575     // point of use for an inheriting constructor.
9576     R.suppressDiagnostics();
9577     if (CheckInheritingConstructorUsingDecl(UD))
9578       return UD;
9579   }
9580 
9581   for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
9582     UsingShadowDecl *PrevDecl = nullptr;
9583     if (!CheckUsingShadowDecl(UD, *I, Previous, PrevDecl))
9584       BuildUsingShadowDecl(S, UD, *I, PrevDecl);
9585   }
9586 
9587   return UD;
9588 }
9589 
9590 NamedDecl *Sema::BuildUsingPackDecl(NamedDecl *InstantiatedFrom,
9591                                     ArrayRef<NamedDecl *> Expansions) {
9592   assert(isa<UnresolvedUsingValueDecl>(InstantiatedFrom) ||
9593          isa<UnresolvedUsingTypenameDecl>(InstantiatedFrom) ||
9594          isa<UsingPackDecl>(InstantiatedFrom));
9595 
9596   auto *UPD =
9597       UsingPackDecl::Create(Context, CurContext, InstantiatedFrom, Expansions);
9598   UPD->setAccess(InstantiatedFrom->getAccess());
9599   CurContext->addDecl(UPD);
9600   return UPD;
9601 }
9602 
9603 /// Additional checks for a using declaration referring to a constructor name.
9604 bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
9605   assert(!UD->hasTypename() && "expecting a constructor name");
9606 
9607   const Type *SourceType = UD->getQualifier()->getAsType();
9608   assert(SourceType &&
9609          "Using decl naming constructor doesn't have type in scope spec.");
9610   CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
9611 
9612   // Check whether the named type is a direct base class.
9613   bool AnyDependentBases = false;
9614   auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0),
9615                                       AnyDependentBases);
9616   if (!Base && !AnyDependentBases) {
9617     Diag(UD->getUsingLoc(),
9618          diag::err_using_decl_constructor_not_in_direct_base)
9619       << UD->getNameInfo().getSourceRange()
9620       << QualType(SourceType, 0) << TargetClass;
9621     UD->setInvalidDecl();
9622     return true;
9623   }
9624 
9625   if (Base)
9626     Base->setInheritConstructors();
9627 
9628   return false;
9629 }
9630 
9631 /// Checks that the given using declaration is not an invalid
9632 /// redeclaration.  Note that this is checking only for the using decl
9633 /// itself, not for any ill-formedness among the UsingShadowDecls.
9634 bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
9635                                        bool HasTypenameKeyword,
9636                                        const CXXScopeSpec &SS,
9637                                        SourceLocation NameLoc,
9638                                        const LookupResult &Prev) {
9639   NestedNameSpecifier *Qual = SS.getScopeRep();
9640 
9641   // C++03 [namespace.udecl]p8:
9642   // C++0x [namespace.udecl]p10:
9643   //   A using-declaration is a declaration and can therefore be used
9644   //   repeatedly where (and only where) multiple declarations are
9645   //   allowed.
9646   //
9647   // That's in non-member contexts.
9648   if (!CurContext->getRedeclContext()->isRecord()) {
9649     // A dependent qualifier outside a class can only ever resolve to an
9650     // enumeration type. Therefore it conflicts with any other non-type
9651     // declaration in the same scope.
9652     // FIXME: How should we check for dependent type-type conflicts at block
9653     // scope?
9654     if (Qual->isDependent() && !HasTypenameKeyword) {
9655       for (auto *D : Prev) {
9656         if (!isa<TypeDecl>(D) && !isa<UsingDecl>(D) && !isa<UsingPackDecl>(D)) {
9657           bool OldCouldBeEnumerator =
9658               isa<UnresolvedUsingValueDecl>(D) || isa<EnumConstantDecl>(D);
9659           Diag(NameLoc,
9660                OldCouldBeEnumerator ? diag::err_redefinition
9661                                     : diag::err_redefinition_different_kind)
9662               << Prev.getLookupName();
9663           Diag(D->getLocation(), diag::note_previous_definition);
9664           return true;
9665         }
9666       }
9667     }
9668     return false;
9669   }
9670 
9671   for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
9672     NamedDecl *D = *I;
9673 
9674     bool DTypename;
9675     NestedNameSpecifier *DQual;
9676     if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
9677       DTypename = UD->hasTypename();
9678       DQual = UD->getQualifier();
9679     } else if (UnresolvedUsingValueDecl *UD
9680                  = dyn_cast<UnresolvedUsingValueDecl>(D)) {
9681       DTypename = false;
9682       DQual = UD->getQualifier();
9683     } else if (UnresolvedUsingTypenameDecl *UD
9684                  = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
9685       DTypename = true;
9686       DQual = UD->getQualifier();
9687     } else continue;
9688 
9689     // using decls differ if one says 'typename' and the other doesn't.
9690     // FIXME: non-dependent using decls?
9691     if (HasTypenameKeyword != DTypename) continue;
9692 
9693     // using decls differ if they name different scopes (but note that
9694     // template instantiation can cause this check to trigger when it
9695     // didn't before instantiation).
9696     if (Context.getCanonicalNestedNameSpecifier(Qual) !=
9697         Context.getCanonicalNestedNameSpecifier(DQual))
9698       continue;
9699 
9700     Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
9701     Diag(D->getLocation(), diag::note_using_decl) << 1;
9702     return true;
9703   }
9704 
9705   return false;
9706 }
9707 
9708 
9709 /// Checks that the given nested-name qualifier used in a using decl
9710 /// in the current context is appropriately related to the current
9711 /// scope.  If an error is found, diagnoses it and returns true.
9712 bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
9713                                    bool HasTypename,
9714                                    const CXXScopeSpec &SS,
9715                                    const DeclarationNameInfo &NameInfo,
9716                                    SourceLocation NameLoc) {
9717   DeclContext *NamedContext = computeDeclContext(SS);
9718 
9719   if (!CurContext->isRecord()) {
9720     // C++03 [namespace.udecl]p3:
9721     // C++0x [namespace.udecl]p8:
9722     //   A using-declaration for a class member shall be a member-declaration.
9723 
9724     // If we weren't able to compute a valid scope, it might validly be a
9725     // dependent class scope or a dependent enumeration unscoped scope. If
9726     // we have a 'typename' keyword, the scope must resolve to a class type.
9727     if ((HasTypename && !NamedContext) ||
9728         (NamedContext && NamedContext->getRedeclContext()->isRecord())) {
9729       auto *RD = NamedContext
9730                      ? cast<CXXRecordDecl>(NamedContext->getRedeclContext())
9731                      : nullptr;
9732       if (RD && RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), RD))
9733         RD = nullptr;
9734 
9735       Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
9736         << SS.getRange();
9737 
9738       // If we have a complete, non-dependent source type, try to suggest a
9739       // way to get the same effect.
9740       if (!RD)
9741         return true;
9742 
9743       // Find what this using-declaration was referring to.
9744       LookupResult R(*this, NameInfo, LookupOrdinaryName);
9745       R.setHideTags(false);
9746       R.suppressDiagnostics();
9747       LookupQualifiedName(R, RD);
9748 
9749       if (R.getAsSingle<TypeDecl>()) {
9750         if (getLangOpts().CPlusPlus11) {
9751           // Convert 'using X::Y;' to 'using Y = X::Y;'.
9752           Diag(SS.getBeginLoc(), diag::note_using_decl_class_member_workaround)
9753             << 0 // alias declaration
9754             << FixItHint::CreateInsertion(SS.getBeginLoc(),
9755                                           NameInfo.getName().getAsString() +
9756                                               " = ");
9757         } else {
9758           // Convert 'using X::Y;' to 'typedef X::Y Y;'.
9759           SourceLocation InsertLoc =
9760               getLocForEndOfToken(NameInfo.getLocEnd());
9761           Diag(InsertLoc, diag::note_using_decl_class_member_workaround)
9762             << 1 // typedef declaration
9763             << FixItHint::CreateReplacement(UsingLoc, "typedef")
9764             << FixItHint::CreateInsertion(
9765                    InsertLoc, " " + NameInfo.getName().getAsString());
9766         }
9767       } else if (R.getAsSingle<VarDecl>()) {
9768         // Don't provide a fixit outside C++11 mode; we don't want to suggest
9769         // repeating the type of the static data member here.
9770         FixItHint FixIt;
9771         if (getLangOpts().CPlusPlus11) {
9772           // Convert 'using X::Y;' to 'auto &Y = X::Y;'.
9773           FixIt = FixItHint::CreateReplacement(
9774               UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = ");
9775         }
9776 
9777         Diag(UsingLoc, diag::note_using_decl_class_member_workaround)
9778           << 2 // reference declaration
9779           << FixIt;
9780       } else if (R.getAsSingle<EnumConstantDecl>()) {
9781         // Don't provide a fixit outside C++11 mode; we don't want to suggest
9782         // repeating the type of the enumeration here, and we can't do so if
9783         // the type is anonymous.
9784         FixItHint FixIt;
9785         if (getLangOpts().CPlusPlus11) {
9786           // Convert 'using X::Y;' to 'auto &Y = X::Y;'.
9787           FixIt = FixItHint::CreateReplacement(
9788               UsingLoc,
9789               "constexpr auto " + NameInfo.getName().getAsString() + " = ");
9790         }
9791 
9792         Diag(UsingLoc, diag::note_using_decl_class_member_workaround)
9793           << (getLangOpts().CPlusPlus11 ? 4 : 3) // const[expr] variable
9794           << FixIt;
9795       }
9796       return true;
9797     }
9798 
9799     // Otherwise, this might be valid.
9800     return false;
9801   }
9802 
9803   // The current scope is a record.
9804 
9805   // If the named context is dependent, we can't decide much.
9806   if (!NamedContext) {
9807     // FIXME: in C++0x, we can diagnose if we can prove that the
9808     // nested-name-specifier does not refer to a base class, which is
9809     // still possible in some cases.
9810 
9811     // Otherwise we have to conservatively report that things might be
9812     // okay.
9813     return false;
9814   }
9815 
9816   if (!NamedContext->isRecord()) {
9817     // Ideally this would point at the last name in the specifier,
9818     // but we don't have that level of source info.
9819     Diag(SS.getRange().getBegin(),
9820          diag::err_using_decl_nested_name_specifier_is_not_class)
9821       << SS.getScopeRep() << SS.getRange();
9822     return true;
9823   }
9824 
9825   if (!NamedContext->isDependentContext() &&
9826       RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
9827     return true;
9828 
9829   if (getLangOpts().CPlusPlus11) {
9830     // C++11 [namespace.udecl]p3:
9831     //   In a using-declaration used as a member-declaration, the
9832     //   nested-name-specifier shall name a base class of the class
9833     //   being defined.
9834 
9835     if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
9836                                  cast<CXXRecordDecl>(NamedContext))) {
9837       if (CurContext == NamedContext) {
9838         Diag(NameLoc,
9839              diag::err_using_decl_nested_name_specifier_is_current_class)
9840           << SS.getRange();
9841         return true;
9842       }
9843 
9844       if (!cast<CXXRecordDecl>(NamedContext)->isInvalidDecl()) {
9845         Diag(SS.getRange().getBegin(),
9846              diag::err_using_decl_nested_name_specifier_is_not_base_class)
9847           << SS.getScopeRep()
9848           << cast<CXXRecordDecl>(CurContext)
9849           << SS.getRange();
9850       }
9851       return true;
9852     }
9853 
9854     return false;
9855   }
9856 
9857   // C++03 [namespace.udecl]p4:
9858   //   A using-declaration used as a member-declaration shall refer
9859   //   to a member of a base class of the class being defined [etc.].
9860 
9861   // Salient point: SS doesn't have to name a base class as long as
9862   // lookup only finds members from base classes.  Therefore we can
9863   // diagnose here only if we can prove that that can't happen,
9864   // i.e. if the class hierarchies provably don't intersect.
9865 
9866   // TODO: it would be nice if "definitely valid" results were cached
9867   // in the UsingDecl and UsingShadowDecl so that these checks didn't
9868   // need to be repeated.
9869 
9870   llvm::SmallPtrSet<const CXXRecordDecl *, 4> Bases;
9871   auto Collect = [&Bases](const CXXRecordDecl *Base) {
9872     Bases.insert(Base);
9873     return true;
9874   };
9875 
9876   // Collect all bases. Return false if we find a dependent base.
9877   if (!cast<CXXRecordDecl>(CurContext)->forallBases(Collect))
9878     return false;
9879 
9880   // Returns true if the base is dependent or is one of the accumulated base
9881   // classes.
9882   auto IsNotBase = [&Bases](const CXXRecordDecl *Base) {
9883     return !Bases.count(Base);
9884   };
9885 
9886   // Return false if the class has a dependent base or if it or one
9887   // of its bases is present in the base set of the current context.
9888   if (Bases.count(cast<CXXRecordDecl>(NamedContext)) ||
9889       !cast<CXXRecordDecl>(NamedContext)->forallBases(IsNotBase))
9890     return false;
9891 
9892   Diag(SS.getRange().getBegin(),
9893        diag::err_using_decl_nested_name_specifier_is_not_base_class)
9894     << SS.getScopeRep()
9895     << cast<CXXRecordDecl>(CurContext)
9896     << SS.getRange();
9897 
9898   return true;
9899 }
9900 
9901 Decl *Sema::ActOnAliasDeclaration(Scope *S,
9902                                   AccessSpecifier AS,
9903                                   MultiTemplateParamsArg TemplateParamLists,
9904                                   SourceLocation UsingLoc,
9905                                   UnqualifiedId &Name,
9906                                   AttributeList *AttrList,
9907                                   TypeResult Type,
9908                                   Decl *DeclFromDeclSpec) {
9909   // Skip up to the relevant declaration scope.
9910   while (S->isTemplateParamScope())
9911     S = S->getParent();
9912   assert((S->getFlags() & Scope::DeclScope) &&
9913          "got alias-declaration outside of declaration scope");
9914 
9915   if (Type.isInvalid())
9916     return nullptr;
9917 
9918   bool Invalid = false;
9919   DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
9920   TypeSourceInfo *TInfo = nullptr;
9921   GetTypeFromParser(Type.get(), &TInfo);
9922 
9923   if (DiagnoseClassNameShadow(CurContext, NameInfo))
9924     return nullptr;
9925 
9926   if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
9927                                       UPPC_DeclarationType)) {
9928     Invalid = true;
9929     TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9930                                              TInfo->getTypeLoc().getBeginLoc());
9931   }
9932 
9933   LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
9934   LookupName(Previous, S);
9935 
9936   // Warn about shadowing the name of a template parameter.
9937   if (Previous.isSingleResult() &&
9938       Previous.getFoundDecl()->isTemplateParameter()) {
9939     DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
9940     Previous.clear();
9941   }
9942 
9943   assert(Name.Kind == UnqualifiedId::IK_Identifier &&
9944          "name in alias declaration must be an identifier");
9945   TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
9946                                                Name.StartLocation,
9947                                                Name.Identifier, TInfo);
9948 
9949   NewTD->setAccess(AS);
9950 
9951   if (Invalid)
9952     NewTD->setInvalidDecl();
9953 
9954   ProcessDeclAttributeList(S, NewTD, AttrList);
9955   AddPragmaAttributes(S, NewTD);
9956 
9957   CheckTypedefForVariablyModifiedType(S, NewTD);
9958   Invalid |= NewTD->isInvalidDecl();
9959 
9960   bool Redeclaration = false;
9961 
9962   NamedDecl *NewND;
9963   if (TemplateParamLists.size()) {
9964     TypeAliasTemplateDecl *OldDecl = nullptr;
9965     TemplateParameterList *OldTemplateParams = nullptr;
9966 
9967     if (TemplateParamLists.size() != 1) {
9968       Diag(UsingLoc, diag::err_alias_template_extra_headers)
9969         << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
9970          TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
9971     }
9972     TemplateParameterList *TemplateParams = TemplateParamLists[0];
9973 
9974     // Check that we can declare a template here.
9975     if (CheckTemplateDeclScope(S, TemplateParams))
9976       return nullptr;
9977 
9978     // Only consider previous declarations in the same scope.
9979     FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
9980                          /*ExplicitInstantiationOrSpecialization*/false);
9981     if (!Previous.empty()) {
9982       Redeclaration = true;
9983 
9984       OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
9985       if (!OldDecl && !Invalid) {
9986         Diag(UsingLoc, diag::err_redefinition_different_kind)
9987           << Name.Identifier;
9988 
9989         NamedDecl *OldD = Previous.getRepresentativeDecl();
9990         if (OldD->getLocation().isValid())
9991           Diag(OldD->getLocation(), diag::note_previous_definition);
9992 
9993         Invalid = true;
9994       }
9995 
9996       if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
9997         if (TemplateParameterListsAreEqual(TemplateParams,
9998                                            OldDecl->getTemplateParameters(),
9999                                            /*Complain=*/true,
10000                                            TPL_TemplateMatch))
10001           OldTemplateParams = OldDecl->getTemplateParameters();
10002         else
10003           Invalid = true;
10004 
10005         TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
10006         if (!Invalid &&
10007             !Context.hasSameType(OldTD->getUnderlyingType(),
10008                                  NewTD->getUnderlyingType())) {
10009           // FIXME: The C++0x standard does not clearly say this is ill-formed,
10010           // but we can't reasonably accept it.
10011           Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
10012             << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
10013           if (OldTD->getLocation().isValid())
10014             Diag(OldTD->getLocation(), diag::note_previous_definition);
10015           Invalid = true;
10016         }
10017       }
10018     }
10019 
10020     // Merge any previous default template arguments into our parameters,
10021     // and check the parameter list.
10022     if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
10023                                    TPC_TypeAliasTemplate))
10024       return nullptr;
10025 
10026     TypeAliasTemplateDecl *NewDecl =
10027       TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
10028                                     Name.Identifier, TemplateParams,
10029                                     NewTD);
10030     NewTD->setDescribedAliasTemplate(NewDecl);
10031 
10032     NewDecl->setAccess(AS);
10033 
10034     if (Invalid)
10035       NewDecl->setInvalidDecl();
10036     else if (OldDecl)
10037       NewDecl->setPreviousDecl(OldDecl);
10038 
10039     NewND = NewDecl;
10040   } else {
10041     if (auto *TD = dyn_cast_or_null<TagDecl>(DeclFromDeclSpec)) {
10042       setTagNameForLinkagePurposes(TD, NewTD);
10043       handleTagNumbering(TD, S);
10044     }
10045     ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
10046     NewND = NewTD;
10047   }
10048 
10049   PushOnScopeChains(NewND, S);
10050   ActOnDocumentableDecl(NewND);
10051   return NewND;
10052 }
10053 
10054 Decl *Sema::ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc,
10055                                    SourceLocation AliasLoc,
10056                                    IdentifierInfo *Alias, CXXScopeSpec &SS,
10057                                    SourceLocation IdentLoc,
10058                                    IdentifierInfo *Ident) {
10059 
10060   // Lookup the namespace name.
10061   LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
10062   LookupParsedName(R, S, &SS);
10063 
10064   if (R.isAmbiguous())
10065     return nullptr;
10066 
10067   if (R.empty()) {
10068     if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
10069       Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
10070       return nullptr;
10071     }
10072   }
10073   assert(!R.isAmbiguous() && !R.empty());
10074   NamedDecl *ND = R.getRepresentativeDecl();
10075 
10076   // Check if we have a previous declaration with the same name.
10077   LookupResult PrevR(*this, Alias, AliasLoc, LookupOrdinaryName,
10078                      ForRedeclaration);
10079   LookupName(PrevR, S);
10080 
10081   // Check we're not shadowing a template parameter.
10082   if (PrevR.isSingleResult() && PrevR.getFoundDecl()->isTemplateParameter()) {
10083     DiagnoseTemplateParameterShadow(AliasLoc, PrevR.getFoundDecl());
10084     PrevR.clear();
10085   }
10086 
10087   // Filter out any other lookup result from an enclosing scope.
10088   FilterLookupForScope(PrevR, CurContext, S, /*ConsiderLinkage*/false,
10089                        /*AllowInlineNamespace*/false);
10090 
10091   // Find the previous declaration and check that we can redeclare it.
10092   NamespaceAliasDecl *Prev = nullptr;
10093   if (PrevR.isSingleResult()) {
10094     NamedDecl *PrevDecl = PrevR.getRepresentativeDecl();
10095     if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
10096       // We already have an alias with the same name that points to the same
10097       // namespace; check that it matches.
10098       if (AD->getNamespace()->Equals(getNamespaceDecl(ND))) {
10099         Prev = AD;
10100       } else if (isVisible(PrevDecl)) {
10101         Diag(AliasLoc, diag::err_redefinition_different_namespace_alias)
10102           << Alias;
10103         Diag(AD->getLocation(), diag::note_previous_namespace_alias)
10104           << AD->getNamespace();
10105         return nullptr;
10106       }
10107     } else if (isVisible(PrevDecl)) {
10108       unsigned DiagID = isa<NamespaceDecl>(PrevDecl->getUnderlyingDecl())
10109                             ? diag::err_redefinition
10110                             : diag::err_redefinition_different_kind;
10111       Diag(AliasLoc, DiagID) << Alias;
10112       Diag(PrevDecl->getLocation(), diag::note_previous_definition);
10113       return nullptr;
10114     }
10115   }
10116 
10117   // The use of a nested name specifier may trigger deprecation warnings.
10118   DiagnoseUseOfDecl(ND, IdentLoc);
10119 
10120   NamespaceAliasDecl *AliasDecl =
10121     NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
10122                                Alias, SS.getWithLocInContext(Context),
10123                                IdentLoc, ND);
10124   if (Prev)
10125     AliasDecl->setPreviousDecl(Prev);
10126 
10127   PushOnScopeChains(AliasDecl, S);
10128   return AliasDecl;
10129 }
10130 
10131 namespace {
10132 struct SpecialMemberExceptionSpecInfo
10133     : SpecialMemberVisitor<SpecialMemberExceptionSpecInfo> {
10134   SourceLocation Loc;
10135   Sema::ImplicitExceptionSpecification ExceptSpec;
10136 
10137   SpecialMemberExceptionSpecInfo(Sema &S, CXXMethodDecl *MD,
10138                                  Sema::CXXSpecialMember CSM,
10139                                  Sema::InheritedConstructorInfo *ICI,
10140                                  SourceLocation Loc)
10141       : SpecialMemberVisitor(S, MD, CSM, ICI), Loc(Loc), ExceptSpec(S) {}
10142 
10143   bool visitBase(CXXBaseSpecifier *Base);
10144   bool visitField(FieldDecl *FD);
10145 
10146   void visitClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
10147                            unsigned Quals);
10148 
10149   void visitSubobjectCall(Subobject Subobj,
10150                           Sema::SpecialMemberOverloadResult SMOR);
10151 };
10152 }
10153 
10154 bool SpecialMemberExceptionSpecInfo::visitBase(CXXBaseSpecifier *Base) {
10155   auto *RT = Base->getType()->getAs<RecordType>();
10156   if (!RT)
10157     return false;
10158 
10159   auto *BaseClass = cast<CXXRecordDecl>(RT->getDecl());
10160   Sema::SpecialMemberOverloadResult SMOR = lookupInheritedCtor(BaseClass);
10161   if (auto *BaseCtor = SMOR.getMethod()) {
10162     visitSubobjectCall(Base, BaseCtor);
10163     return false;
10164   }
10165 
10166   visitClassSubobject(BaseClass, Base, 0);
10167   return false;
10168 }
10169 
10170 bool SpecialMemberExceptionSpecInfo::visitField(FieldDecl *FD) {
10171   if (CSM == Sema::CXXDefaultConstructor && FD->hasInClassInitializer()) {
10172     Expr *E = FD->getInClassInitializer();
10173     if (!E)
10174       // FIXME: It's a little wasteful to build and throw away a
10175       // CXXDefaultInitExpr here.
10176       // FIXME: We should have a single context note pointing at Loc, and
10177       // this location should be MD->getLocation() instead, since that's
10178       // the location where we actually use the default init expression.
10179       E = S.BuildCXXDefaultInitExpr(Loc, FD).get();
10180     if (E)
10181       ExceptSpec.CalledExpr(E);
10182   } else if (auto *RT = S.Context.getBaseElementType(FD->getType())
10183                             ->getAs<RecordType>()) {
10184     visitClassSubobject(cast<CXXRecordDecl>(RT->getDecl()), FD,
10185                         FD->getType().getCVRQualifiers());
10186   }
10187   return false;
10188 }
10189 
10190 void SpecialMemberExceptionSpecInfo::visitClassSubobject(CXXRecordDecl *Class,
10191                                                          Subobject Subobj,
10192                                                          unsigned Quals) {
10193   FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
10194   bool IsMutable = Field && Field->isMutable();
10195   visitSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable));
10196 }
10197 
10198 void SpecialMemberExceptionSpecInfo::visitSubobjectCall(
10199     Subobject Subobj, Sema::SpecialMemberOverloadResult SMOR) {
10200   // Note, if lookup fails, it doesn't matter what exception specification we
10201   // choose because the special member will be deleted.
10202   if (CXXMethodDecl *MD = SMOR.getMethod())
10203     ExceptSpec.CalledDecl(getSubobjectLoc(Subobj), MD);
10204 }
10205 
10206 static Sema::ImplicitExceptionSpecification
10207 ComputeDefaultedSpecialMemberExceptionSpec(
10208     Sema &S, SourceLocation Loc, CXXMethodDecl *MD, Sema::CXXSpecialMember CSM,
10209     Sema::InheritedConstructorInfo *ICI) {
10210   CXXRecordDecl *ClassDecl = MD->getParent();
10211 
10212   // C++ [except.spec]p14:
10213   //   An implicitly declared special member function (Clause 12) shall have an
10214   //   exception-specification. [...]
10215   SpecialMemberExceptionSpecInfo Info(S, MD, CSM, ICI, Loc);
10216   if (ClassDecl->isInvalidDecl())
10217     return Info.ExceptSpec;
10218 
10219   // C++1z [except.spec]p7:
10220   //   [Look for exceptions thrown by] a constructor selected [...] to
10221   //   initialize a potentially constructed subobject,
10222   // C++1z [except.spec]p8:
10223   //   The exception specification for an implicitly-declared destructor, or a
10224   //   destructor without a noexcept-specifier, is potentially-throwing if and
10225   //   only if any of the destructors for any of its potentially constructed
10226   //   subojects is potentially throwing.
10227   // FIXME: We respect the first rule but ignore the "potentially constructed"
10228   // in the second rule to resolve a core issue (no number yet) that would have
10229   // us reject:
10230   //   struct A { virtual void f() = 0; virtual ~A() noexcept(false) = 0; };
10231   //   struct B : A {};
10232   //   struct C : B { void f(); };
10233   // ... due to giving B::~B() a non-throwing exception specification.
10234   Info.visit(Info.IsConstructor ? Info.VisitPotentiallyConstructedBases
10235                                 : Info.VisitAllBases);
10236 
10237   return Info.ExceptSpec;
10238 }
10239 
10240 namespace {
10241 /// RAII object to register a special member as being currently declared.
10242 struct DeclaringSpecialMember {
10243   Sema &S;
10244   Sema::SpecialMemberDecl D;
10245   Sema::ContextRAII SavedContext;
10246   bool WasAlreadyBeingDeclared;
10247 
10248   DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM)
10249       : S(S), D(RD, CSM), SavedContext(S, RD) {
10250     WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D).second;
10251     if (WasAlreadyBeingDeclared)
10252       // This almost never happens, but if it does, ensure that our cache
10253       // doesn't contain a stale result.
10254       S.SpecialMemberCache.clear();
10255     else {
10256       // Register a note to be produced if we encounter an error while
10257       // declaring the special member.
10258       Sema::CodeSynthesisContext Ctx;
10259       Ctx.Kind = Sema::CodeSynthesisContext::DeclaringSpecialMember;
10260       // FIXME: We don't have a location to use here. Using the class's
10261       // location maintains the fiction that we declare all special members
10262       // with the class, but (1) it's not clear that lying about that helps our
10263       // users understand what's going on, and (2) there may be outer contexts
10264       // on the stack (some of which are relevant) and printing them exposes
10265       // our lies.
10266       Ctx.PointOfInstantiation = RD->getLocation();
10267       Ctx.Entity = RD;
10268       Ctx.SpecialMember = CSM;
10269       S.pushCodeSynthesisContext(Ctx);
10270     }
10271   }
10272   ~DeclaringSpecialMember() {
10273     if (!WasAlreadyBeingDeclared) {
10274       S.SpecialMembersBeingDeclared.erase(D);
10275       S.popCodeSynthesisContext();
10276     }
10277   }
10278 
10279   /// \brief Are we already trying to declare this special member?
10280   bool isAlreadyBeingDeclared() const {
10281     return WasAlreadyBeingDeclared;
10282   }
10283 };
10284 }
10285 
10286 void Sema::CheckImplicitSpecialMemberDeclaration(Scope *S, FunctionDecl *FD) {
10287   // Look up any existing declarations, but don't trigger declaration of all
10288   // implicit special members with this name.
10289   DeclarationName Name = FD->getDeclName();
10290   LookupResult R(*this, Name, SourceLocation(), LookupOrdinaryName,
10291                  ForRedeclaration);
10292   for (auto *D : FD->getParent()->lookup(Name))
10293     if (auto *Acceptable = R.getAcceptableDecl(D))
10294       R.addDecl(Acceptable);
10295   R.resolveKind();
10296   R.suppressDiagnostics();
10297 
10298   CheckFunctionDeclaration(S, FD, R, /*IsMemberSpecialization*/false);
10299 }
10300 
10301 CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
10302                                                      CXXRecordDecl *ClassDecl) {
10303   // C++ [class.ctor]p5:
10304   //   A default constructor for a class X is a constructor of class X
10305   //   that can be called without an argument. If there is no
10306   //   user-declared constructor for class X, a default constructor is
10307   //   implicitly declared. An implicitly-declared default constructor
10308   //   is an inline public member of its class.
10309   assert(ClassDecl->needsImplicitDefaultConstructor() &&
10310          "Should not build implicit default constructor!");
10311 
10312   DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor);
10313   if (DSM.isAlreadyBeingDeclared())
10314     return nullptr;
10315 
10316   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
10317                                                      CXXDefaultConstructor,
10318                                                      false);
10319 
10320   // Create the actual constructor declaration.
10321   CanQualType ClassType
10322     = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
10323   SourceLocation ClassLoc = ClassDecl->getLocation();
10324   DeclarationName Name
10325     = Context.DeclarationNames.getCXXConstructorName(ClassType);
10326   DeclarationNameInfo NameInfo(Name, ClassLoc);
10327   CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
10328       Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(),
10329       /*TInfo=*/nullptr, /*isExplicit=*/false, /*isInline=*/true,
10330       /*isImplicitlyDeclared=*/true, Constexpr);
10331   DefaultCon->setAccess(AS_public);
10332   DefaultCon->setDefaulted();
10333 
10334   if (getLangOpts().CUDA) {
10335     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDefaultConstructor,
10336                                             DefaultCon,
10337                                             /* ConstRHS */ false,
10338                                             /* Diagnose */ false);
10339   }
10340 
10341   // Build an exception specification pointing back at this constructor.
10342   FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon);
10343   DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
10344 
10345   // We don't need to use SpecialMemberIsTrivial here; triviality for default
10346   // constructors is easy to compute.
10347   DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
10348 
10349   // Note that we have declared this constructor.
10350   ++ASTContext::NumImplicitDefaultConstructorsDeclared;
10351 
10352   Scope *S = getScopeForContext(ClassDecl);
10353   CheckImplicitSpecialMemberDeclaration(S, DefaultCon);
10354 
10355   if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
10356     SetDeclDeleted(DefaultCon, ClassLoc);
10357 
10358   if (S)
10359     PushOnScopeChains(DefaultCon, S, false);
10360   ClassDecl->addDecl(DefaultCon);
10361 
10362   return DefaultCon;
10363 }
10364 
10365 void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
10366                                             CXXConstructorDecl *Constructor) {
10367   assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
10368           !Constructor->doesThisDeclarationHaveABody() &&
10369           !Constructor->isDeleted()) &&
10370     "DefineImplicitDefaultConstructor - call it for implicit default ctor");
10371   if (Constructor->willHaveBody() || Constructor->isInvalidDecl())
10372     return;
10373 
10374   CXXRecordDecl *ClassDecl = Constructor->getParent();
10375   assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
10376 
10377   SynthesizedFunctionScope Scope(*this, Constructor);
10378 
10379   // The exception specification is needed because we are defining the
10380   // function.
10381   ResolveExceptionSpec(CurrentLocation,
10382                        Constructor->getType()->castAs<FunctionProtoType>());
10383   MarkVTableUsed(CurrentLocation, ClassDecl);
10384 
10385   // Add a context note for diagnostics produced after this point.
10386   Scope.addContextNote(CurrentLocation);
10387 
10388   if (SetCtorInitializers(Constructor, /*AnyErrors=*/false)) {
10389     Constructor->setInvalidDecl();
10390     return;
10391   }
10392 
10393   SourceLocation Loc = Constructor->getLocEnd().isValid()
10394                            ? Constructor->getLocEnd()
10395                            : Constructor->getLocation();
10396   Constructor->setBody(new (Context) CompoundStmt(Loc));
10397   Constructor->markUsed(Context);
10398 
10399   if (ASTMutationListener *L = getASTMutationListener()) {
10400     L->CompletedImplicitDefinition(Constructor);
10401   }
10402 
10403   DiagnoseUninitializedFields(*this, Constructor);
10404 }
10405 
10406 void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
10407   // Perform any delayed checks on exception specifications.
10408   CheckDelayedMemberExceptionSpecs();
10409 }
10410 
10411 /// Find or create the fake constructor we synthesize to model constructing an
10412 /// object of a derived class via a constructor of a base class.
10413 CXXConstructorDecl *
10414 Sema::findInheritingConstructor(SourceLocation Loc,
10415                                 CXXConstructorDecl *BaseCtor,
10416                                 ConstructorUsingShadowDecl *Shadow) {
10417   CXXRecordDecl *Derived = Shadow->getParent();
10418   SourceLocation UsingLoc = Shadow->getLocation();
10419 
10420   // FIXME: Add a new kind of DeclarationName for an inherited constructor.
10421   // For now we use the name of the base class constructor as a member of the
10422   // derived class to indicate a (fake) inherited constructor name.
10423   DeclarationName Name = BaseCtor->getDeclName();
10424 
10425   // Check to see if we already have a fake constructor for this inherited
10426   // constructor call.
10427   for (NamedDecl *Ctor : Derived->lookup(Name))
10428     if (declaresSameEntity(cast<CXXConstructorDecl>(Ctor)
10429                                ->getInheritedConstructor()
10430                                .getConstructor(),
10431                            BaseCtor))
10432       return cast<CXXConstructorDecl>(Ctor);
10433 
10434   DeclarationNameInfo NameInfo(Name, UsingLoc);
10435   TypeSourceInfo *TInfo =
10436       Context.getTrivialTypeSourceInfo(BaseCtor->getType(), UsingLoc);
10437   FunctionProtoTypeLoc ProtoLoc =
10438       TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>();
10439 
10440   // Check the inherited constructor is valid and find the list of base classes
10441   // from which it was inherited.
10442   InheritedConstructorInfo ICI(*this, Loc, Shadow);
10443 
10444   bool Constexpr =
10445       BaseCtor->isConstexpr() &&
10446       defaultedSpecialMemberIsConstexpr(*this, Derived, CXXDefaultConstructor,
10447                                         false, BaseCtor, &ICI);
10448 
10449   CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create(
10450       Context, Derived, UsingLoc, NameInfo, TInfo->getType(), TInfo,
10451       BaseCtor->isExplicit(), /*Inline=*/true,
10452       /*ImplicitlyDeclared=*/true, Constexpr,
10453       InheritedConstructor(Shadow, BaseCtor));
10454   if (Shadow->isInvalidDecl())
10455     DerivedCtor->setInvalidDecl();
10456 
10457   // Build an unevaluated exception specification for this fake constructor.
10458   const FunctionProtoType *FPT = TInfo->getType()->castAs<FunctionProtoType>();
10459   FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
10460   EPI.ExceptionSpec.Type = EST_Unevaluated;
10461   EPI.ExceptionSpec.SourceDecl = DerivedCtor;
10462   DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(),
10463                                                FPT->getParamTypes(), EPI));
10464 
10465   // Build the parameter declarations.
10466   SmallVector<ParmVarDecl *, 16> ParamDecls;
10467   for (unsigned I = 0, N = FPT->getNumParams(); I != N; ++I) {
10468     TypeSourceInfo *TInfo =
10469         Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc);
10470     ParmVarDecl *PD = ParmVarDecl::Create(
10471         Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr,
10472         FPT->getParamType(I), TInfo, SC_None, /*DefaultArg=*/nullptr);
10473     PD->setScopeInfo(0, I);
10474     PD->setImplicit();
10475     // Ensure attributes are propagated onto parameters (this matters for
10476     // format, pass_object_size, ...).
10477     mergeDeclAttributes(PD, BaseCtor->getParamDecl(I));
10478     ParamDecls.push_back(PD);
10479     ProtoLoc.setParam(I, PD);
10480   }
10481 
10482   // Set up the new constructor.
10483   assert(!BaseCtor->isDeleted() && "should not use deleted constructor");
10484   DerivedCtor->setAccess(BaseCtor->getAccess());
10485   DerivedCtor->setParams(ParamDecls);
10486   Derived->addDecl(DerivedCtor);
10487 
10488   if (ShouldDeleteSpecialMember(DerivedCtor, CXXDefaultConstructor, &ICI))
10489     SetDeclDeleted(DerivedCtor, UsingLoc);
10490 
10491   return DerivedCtor;
10492 }
10493 
10494 void Sema::NoteDeletedInheritingConstructor(CXXConstructorDecl *Ctor) {
10495   InheritedConstructorInfo ICI(*this, Ctor->getLocation(),
10496                                Ctor->getInheritedConstructor().getShadowDecl());
10497   ShouldDeleteSpecialMember(Ctor, CXXDefaultConstructor, &ICI,
10498                             /*Diagnose*/true);
10499 }
10500 
10501 void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation,
10502                                        CXXConstructorDecl *Constructor) {
10503   CXXRecordDecl *ClassDecl = Constructor->getParent();
10504   assert(Constructor->getInheritedConstructor() &&
10505          !Constructor->doesThisDeclarationHaveABody() &&
10506          !Constructor->isDeleted());
10507   if (Constructor->willHaveBody() || Constructor->isInvalidDecl())
10508     return;
10509 
10510   // Initializations are performed "as if by a defaulted default constructor",
10511   // so enter the appropriate scope.
10512   SynthesizedFunctionScope Scope(*this, Constructor);
10513 
10514   // The exception specification is needed because we are defining the
10515   // function.
10516   ResolveExceptionSpec(CurrentLocation,
10517                        Constructor->getType()->castAs<FunctionProtoType>());
10518   MarkVTableUsed(CurrentLocation, ClassDecl);
10519 
10520   // Add a context note for diagnostics produced after this point.
10521   Scope.addContextNote(CurrentLocation);
10522 
10523   ConstructorUsingShadowDecl *Shadow =
10524       Constructor->getInheritedConstructor().getShadowDecl();
10525   CXXConstructorDecl *InheritedCtor =
10526       Constructor->getInheritedConstructor().getConstructor();
10527 
10528   // [class.inhctor.init]p1:
10529   //   initialization proceeds as if a defaulted default constructor is used to
10530   //   initialize the D object and each base class subobject from which the
10531   //   constructor was inherited
10532 
10533   InheritedConstructorInfo ICI(*this, CurrentLocation, Shadow);
10534   CXXRecordDecl *RD = Shadow->getParent();
10535   SourceLocation InitLoc = Shadow->getLocation();
10536 
10537   // Build explicit initializers for all base classes from which the
10538   // constructor was inherited.
10539   SmallVector<CXXCtorInitializer*, 8> Inits;
10540   for (bool VBase : {false, true}) {
10541     for (CXXBaseSpecifier &B : VBase ? RD->vbases() : RD->bases()) {
10542       if (B.isVirtual() != VBase)
10543         continue;
10544 
10545       auto *BaseRD = B.getType()->getAsCXXRecordDecl();
10546       if (!BaseRD)
10547         continue;
10548 
10549       auto BaseCtor = ICI.findConstructorForBase(BaseRD, InheritedCtor);
10550       if (!BaseCtor.first)
10551         continue;
10552 
10553       MarkFunctionReferenced(CurrentLocation, BaseCtor.first);
10554       ExprResult Init = new (Context) CXXInheritedCtorInitExpr(
10555           InitLoc, B.getType(), BaseCtor.first, VBase, BaseCtor.second);
10556 
10557       auto *TInfo = Context.getTrivialTypeSourceInfo(B.getType(), InitLoc);
10558       Inits.push_back(new (Context) CXXCtorInitializer(
10559           Context, TInfo, VBase, InitLoc, Init.get(), InitLoc,
10560           SourceLocation()));
10561     }
10562   }
10563 
10564   // We now proceed as if for a defaulted default constructor, with the relevant
10565   // initializers replaced.
10566 
10567   if (SetCtorInitializers(Constructor, /*AnyErrors*/false, Inits)) {
10568     Constructor->setInvalidDecl();
10569     return;
10570   }
10571 
10572   Constructor->setBody(new (Context) CompoundStmt(InitLoc));
10573   Constructor->markUsed(Context);
10574 
10575   if (ASTMutationListener *L = getASTMutationListener()) {
10576     L->CompletedImplicitDefinition(Constructor);
10577   }
10578 
10579   DiagnoseUninitializedFields(*this, Constructor);
10580 }
10581 
10582 CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
10583   // C++ [class.dtor]p2:
10584   //   If a class has no user-declared destructor, a destructor is
10585   //   declared implicitly. An implicitly-declared destructor is an
10586   //   inline public member of its class.
10587   assert(ClassDecl->needsImplicitDestructor());
10588 
10589   DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor);
10590   if (DSM.isAlreadyBeingDeclared())
10591     return nullptr;
10592 
10593   // Create the actual destructor declaration.
10594   CanQualType ClassType
10595     = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
10596   SourceLocation ClassLoc = ClassDecl->getLocation();
10597   DeclarationName Name
10598     = Context.DeclarationNames.getCXXDestructorName(ClassType);
10599   DeclarationNameInfo NameInfo(Name, ClassLoc);
10600   CXXDestructorDecl *Destructor
10601       = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
10602                                   QualType(), nullptr, /*isInline=*/true,
10603                                   /*isImplicitlyDeclared=*/true);
10604   Destructor->setAccess(AS_public);
10605   Destructor->setDefaulted();
10606 
10607   if (getLangOpts().CUDA) {
10608     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDestructor,
10609                                             Destructor,
10610                                             /* ConstRHS */ false,
10611                                             /* Diagnose */ false);
10612   }
10613 
10614   // Build an exception specification pointing back at this destructor.
10615   FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, Destructor);
10616   Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
10617 
10618   // We don't need to use SpecialMemberIsTrivial here; triviality for
10619   // destructors is easy to compute.
10620   Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
10621 
10622   // Note that we have declared this destructor.
10623   ++ASTContext::NumImplicitDestructorsDeclared;
10624 
10625   Scope *S = getScopeForContext(ClassDecl);
10626   CheckImplicitSpecialMemberDeclaration(S, Destructor);
10627 
10628   // We can't check whether an implicit destructor is deleted before we complete
10629   // the definition of the class, because its validity depends on the alignment
10630   // of the class. We'll check this from ActOnFields once the class is complete.
10631   if (ClassDecl->isCompleteDefinition() &&
10632       ShouldDeleteSpecialMember(Destructor, CXXDestructor))
10633     SetDeclDeleted(Destructor, ClassLoc);
10634 
10635   // Introduce this destructor into its scope.
10636   if (S)
10637     PushOnScopeChains(Destructor, S, false);
10638   ClassDecl->addDecl(Destructor);
10639 
10640   return Destructor;
10641 }
10642 
10643 void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
10644                                     CXXDestructorDecl *Destructor) {
10645   assert((Destructor->isDefaulted() &&
10646           !Destructor->doesThisDeclarationHaveABody() &&
10647           !Destructor->isDeleted()) &&
10648          "DefineImplicitDestructor - call it for implicit default dtor");
10649   if (Destructor->willHaveBody() || Destructor->isInvalidDecl())
10650     return;
10651 
10652   CXXRecordDecl *ClassDecl = Destructor->getParent();
10653   assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
10654 
10655   SynthesizedFunctionScope Scope(*this, Destructor);
10656 
10657   // The exception specification is needed because we are defining the
10658   // function.
10659   ResolveExceptionSpec(CurrentLocation,
10660                        Destructor->getType()->castAs<FunctionProtoType>());
10661   MarkVTableUsed(CurrentLocation, ClassDecl);
10662 
10663   // Add a context note for diagnostics produced after this point.
10664   Scope.addContextNote(CurrentLocation);
10665 
10666   MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
10667                                          Destructor->getParent());
10668 
10669   if (CheckDestructor(Destructor)) {
10670     Destructor->setInvalidDecl();
10671     return;
10672   }
10673 
10674   SourceLocation Loc = Destructor->getLocEnd().isValid()
10675                            ? Destructor->getLocEnd()
10676                            : Destructor->getLocation();
10677   Destructor->setBody(new (Context) CompoundStmt(Loc));
10678   Destructor->markUsed(Context);
10679 
10680   if (ASTMutationListener *L = getASTMutationListener()) {
10681     L->CompletedImplicitDefinition(Destructor);
10682   }
10683 }
10684 
10685 /// \brief Perform any semantic analysis which needs to be delayed until all
10686 /// pending class member declarations have been parsed.
10687 void Sema::ActOnFinishCXXMemberDecls() {
10688   // If the context is an invalid C++ class, just suppress these checks.
10689   if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) {
10690     if (Record->isInvalidDecl()) {
10691       DelayedDefaultedMemberExceptionSpecs.clear();
10692       DelayedExceptionSpecChecks.clear();
10693       return;
10694     }
10695     checkForMultipleExportedDefaultConstructors(*this, Record);
10696   }
10697 }
10698 
10699 void Sema::ActOnFinishCXXNonNestedClass(Decl *D) {
10700   referenceDLLExportedClassMethods();
10701 }
10702 
10703 void Sema::referenceDLLExportedClassMethods() {
10704   if (!DelayedDllExportClasses.empty()) {
10705     // Calling ReferenceDllExportedMethods might cause the current function to
10706     // be called again, so use a local copy of DelayedDllExportClasses.
10707     SmallVector<CXXRecordDecl *, 4> WorkList;
10708     std::swap(DelayedDllExportClasses, WorkList);
10709     for (CXXRecordDecl *Class : WorkList)
10710       ReferenceDllExportedMethods(*this, Class);
10711   }
10712 }
10713 
10714 void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
10715                                          CXXDestructorDecl *Destructor) {
10716   assert(getLangOpts().CPlusPlus11 &&
10717          "adjusting dtor exception specs was introduced in c++11");
10718 
10719   // C++11 [class.dtor]p3:
10720   //   A declaration of a destructor that does not have an exception-
10721   //   specification is implicitly considered to have the same exception-
10722   //   specification as an implicit declaration.
10723   const FunctionProtoType *DtorType = Destructor->getType()->
10724                                         getAs<FunctionProtoType>();
10725   if (DtorType->hasExceptionSpec())
10726     return;
10727 
10728   // Replace the destructor's type, building off the existing one. Fortunately,
10729   // the only thing of interest in the destructor type is its extended info.
10730   // The return and arguments are fixed.
10731   FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
10732   EPI.ExceptionSpec.Type = EST_Unevaluated;
10733   EPI.ExceptionSpec.SourceDecl = Destructor;
10734   Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
10735 
10736   // FIXME: If the destructor has a body that could throw, and the newly created
10737   // spec doesn't allow exceptions, we should emit a warning, because this
10738   // change in behavior can break conforming C++03 programs at runtime.
10739   // However, we don't have a body or an exception specification yet, so it
10740   // needs to be done somewhere else.
10741 }
10742 
10743 namespace {
10744 /// \brief An abstract base class for all helper classes used in building the
10745 //  copy/move operators. These classes serve as factory functions and help us
10746 //  avoid using the same Expr* in the AST twice.
10747 class ExprBuilder {
10748   ExprBuilder(const ExprBuilder&) = delete;
10749   ExprBuilder &operator=(const ExprBuilder&) = delete;
10750 
10751 protected:
10752   static Expr *assertNotNull(Expr *E) {
10753     assert(E && "Expression construction must not fail.");
10754     return E;
10755   }
10756 
10757 public:
10758   ExprBuilder() {}
10759   virtual ~ExprBuilder() {}
10760 
10761   virtual Expr *build(Sema &S, SourceLocation Loc) const = 0;
10762 };
10763 
10764 class RefBuilder: public ExprBuilder {
10765   VarDecl *Var;
10766   QualType VarType;
10767 
10768 public:
10769   Expr *build(Sema &S, SourceLocation Loc) const override {
10770     return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get());
10771   }
10772 
10773   RefBuilder(VarDecl *Var, QualType VarType)
10774       : Var(Var), VarType(VarType) {}
10775 };
10776 
10777 class ThisBuilder: public ExprBuilder {
10778 public:
10779   Expr *build(Sema &S, SourceLocation Loc) const override {
10780     return assertNotNull(S.ActOnCXXThis(Loc).getAs<Expr>());
10781   }
10782 };
10783 
10784 class CastBuilder: public ExprBuilder {
10785   const ExprBuilder &Builder;
10786   QualType Type;
10787   ExprValueKind Kind;
10788   const CXXCastPath &Path;
10789 
10790 public:
10791   Expr *build(Sema &S, SourceLocation Loc) const override {
10792     return assertNotNull(S.ImpCastExprToType(Builder.build(S, Loc), Type,
10793                                              CK_UncheckedDerivedToBase, Kind,
10794                                              &Path).get());
10795   }
10796 
10797   CastBuilder(const ExprBuilder &Builder, QualType Type, ExprValueKind Kind,
10798               const CXXCastPath &Path)
10799       : Builder(Builder), Type(Type), Kind(Kind), Path(Path) {}
10800 };
10801 
10802 class DerefBuilder: public ExprBuilder {
10803   const ExprBuilder &Builder;
10804 
10805 public:
10806   Expr *build(Sema &S, SourceLocation Loc) const override {
10807     return assertNotNull(
10808         S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get());
10809   }
10810 
10811   DerefBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
10812 };
10813 
10814 class MemberBuilder: public ExprBuilder {
10815   const ExprBuilder &Builder;
10816   QualType Type;
10817   CXXScopeSpec SS;
10818   bool IsArrow;
10819   LookupResult &MemberLookup;
10820 
10821 public:
10822   Expr *build(Sema &S, SourceLocation Loc) const override {
10823     return assertNotNull(S.BuildMemberReferenceExpr(
10824         Builder.build(S, Loc), Type, Loc, IsArrow, SS, SourceLocation(),
10825         nullptr, MemberLookup, nullptr, nullptr).get());
10826   }
10827 
10828   MemberBuilder(const ExprBuilder &Builder, QualType Type, bool IsArrow,
10829                 LookupResult &MemberLookup)
10830       : Builder(Builder), Type(Type), IsArrow(IsArrow),
10831         MemberLookup(MemberLookup) {}
10832 };
10833 
10834 class MoveCastBuilder: public ExprBuilder {
10835   const ExprBuilder &Builder;
10836 
10837 public:
10838   Expr *build(Sema &S, SourceLocation Loc) const override {
10839     return assertNotNull(CastForMoving(S, Builder.build(S, Loc)));
10840   }
10841 
10842   MoveCastBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
10843 };
10844 
10845 class LvalueConvBuilder: public ExprBuilder {
10846   const ExprBuilder &Builder;
10847 
10848 public:
10849   Expr *build(Sema &S, SourceLocation Loc) const override {
10850     return assertNotNull(
10851         S.DefaultLvalueConversion(Builder.build(S, Loc)).get());
10852   }
10853 
10854   LvalueConvBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
10855 };
10856 
10857 class SubscriptBuilder: public ExprBuilder {
10858   const ExprBuilder &Base;
10859   const ExprBuilder &Index;
10860 
10861 public:
10862   Expr *build(Sema &S, SourceLocation Loc) const override {
10863     return assertNotNull(S.CreateBuiltinArraySubscriptExpr(
10864         Base.build(S, Loc), Loc, Index.build(S, Loc), Loc).get());
10865   }
10866 
10867   SubscriptBuilder(const ExprBuilder &Base, const ExprBuilder &Index)
10868       : Base(Base), Index(Index) {}
10869 };
10870 
10871 } // end anonymous namespace
10872 
10873 /// When generating a defaulted copy or move assignment operator, if a field
10874 /// should be copied with __builtin_memcpy rather than via explicit assignments,
10875 /// do so. This optimization only applies for arrays of scalars, and for arrays
10876 /// of class type where the selected copy/move-assignment operator is trivial.
10877 static StmtResult
10878 buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
10879                            const ExprBuilder &ToB, const ExprBuilder &FromB) {
10880   // Compute the size of the memory buffer to be copied.
10881   QualType SizeType = S.Context.getSizeType();
10882   llvm::APInt Size(S.Context.getTypeSize(SizeType),
10883                    S.Context.getTypeSizeInChars(T).getQuantity());
10884 
10885   // Take the address of the field references for "from" and "to". We
10886   // directly construct UnaryOperators here because semantic analysis
10887   // does not permit us to take the address of an xvalue.
10888   Expr *From = FromB.build(S, Loc);
10889   From = new (S.Context) UnaryOperator(From, UO_AddrOf,
10890                          S.Context.getPointerType(From->getType()),
10891                          VK_RValue, OK_Ordinary, Loc);
10892   Expr *To = ToB.build(S, Loc);
10893   To = new (S.Context) UnaryOperator(To, UO_AddrOf,
10894                        S.Context.getPointerType(To->getType()),
10895                        VK_RValue, OK_Ordinary, Loc);
10896 
10897   const Type *E = T->getBaseElementTypeUnsafe();
10898   bool NeedsCollectableMemCpy =
10899     E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
10900 
10901   // Create a reference to the __builtin_objc_memmove_collectable function
10902   StringRef MemCpyName = NeedsCollectableMemCpy ?
10903     "__builtin_objc_memmove_collectable" :
10904     "__builtin_memcpy";
10905   LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
10906                  Sema::LookupOrdinaryName);
10907   S.LookupName(R, S.TUScope, true);
10908 
10909   FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
10910   if (!MemCpy)
10911     // Something went horribly wrong earlier, and we will have complained
10912     // about it.
10913     return StmtError();
10914 
10915   ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
10916                                             VK_RValue, Loc, nullptr);
10917   assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
10918 
10919   Expr *CallArgs[] = {
10920     To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
10921   };
10922   ExprResult Call = S.ActOnCallExpr(/*Scope=*/nullptr, MemCpyRef.get(),
10923                                     Loc, CallArgs, Loc);
10924 
10925   assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
10926   return Call.getAs<Stmt>();
10927 }
10928 
10929 /// \brief Builds a statement that copies/moves the given entity from \p From to
10930 /// \c To.
10931 ///
10932 /// This routine is used to copy/move the members of a class with an
10933 /// implicitly-declared copy/move assignment operator. When the entities being
10934 /// copied are arrays, this routine builds for loops to copy them.
10935 ///
10936 /// \param S The Sema object used for type-checking.
10937 ///
10938 /// \param Loc The location where the implicit copy/move is being generated.
10939 ///
10940 /// \param T The type of the expressions being copied/moved. Both expressions
10941 /// must have this type.
10942 ///
10943 /// \param To The expression we are copying/moving to.
10944 ///
10945 /// \param From The expression we are copying/moving from.
10946 ///
10947 /// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
10948 /// Otherwise, it's a non-static member subobject.
10949 ///
10950 /// \param Copying Whether we're copying or moving.
10951 ///
10952 /// \param Depth Internal parameter recording the depth of the recursion.
10953 ///
10954 /// \returns A statement or a loop that copies the expressions, or StmtResult(0)
10955 /// if a memcpy should be used instead.
10956 static StmtResult
10957 buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
10958                                  const ExprBuilder &To, const ExprBuilder &From,
10959                                  bool CopyingBaseSubobject, bool Copying,
10960                                  unsigned Depth = 0) {
10961   // C++11 [class.copy]p28:
10962   //   Each subobject is assigned in the manner appropriate to its type:
10963   //
10964   //     - if the subobject is of class type, as if by a call to operator= with
10965   //       the subobject as the object expression and the corresponding
10966   //       subobject of x as a single function argument (as if by explicit
10967   //       qualification; that is, ignoring any possible virtual overriding
10968   //       functions in more derived classes);
10969   //
10970   // C++03 [class.copy]p13:
10971   //     - if the subobject is of class type, the copy assignment operator for
10972   //       the class is used (as if by explicit qualification; that is,
10973   //       ignoring any possible virtual overriding functions in more derived
10974   //       classes);
10975   if (const RecordType *RecordTy = T->getAs<RecordType>()) {
10976     CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
10977 
10978     // Look for operator=.
10979     DeclarationName Name
10980       = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
10981     LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
10982     S.LookupQualifiedName(OpLookup, ClassDecl, false);
10983 
10984     // Prior to C++11, filter out any result that isn't a copy/move-assignment
10985     // operator.
10986     if (!S.getLangOpts().CPlusPlus11) {
10987       LookupResult::Filter F = OpLookup.makeFilter();
10988       while (F.hasNext()) {
10989         NamedDecl *D = F.next();
10990         if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
10991           if (Method->isCopyAssignmentOperator() ||
10992               (!Copying && Method->isMoveAssignmentOperator()))
10993             continue;
10994 
10995         F.erase();
10996       }
10997       F.done();
10998     }
10999 
11000     // Suppress the protected check (C++ [class.protected]) for each of the
11001     // assignment operators we found. This strange dance is required when
11002     // we're assigning via a base classes's copy-assignment operator. To
11003     // ensure that we're getting the right base class subobject (without
11004     // ambiguities), we need to cast "this" to that subobject type; to
11005     // ensure that we don't go through the virtual call mechanism, we need
11006     // to qualify the operator= name with the base class (see below). However,
11007     // this means that if the base class has a protected copy assignment
11008     // operator, the protected member access check will fail. So, we
11009     // rewrite "protected" access to "public" access in this case, since we
11010     // know by construction that we're calling from a derived class.
11011     if (CopyingBaseSubobject) {
11012       for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
11013            L != LEnd; ++L) {
11014         if (L.getAccess() == AS_protected)
11015           L.setAccess(AS_public);
11016       }
11017     }
11018 
11019     // Create the nested-name-specifier that will be used to qualify the
11020     // reference to operator=; this is required to suppress the virtual
11021     // call mechanism.
11022     CXXScopeSpec SS;
11023     const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
11024     SS.MakeTrivial(S.Context,
11025                    NestedNameSpecifier::Create(S.Context, nullptr, false,
11026                                                CanonicalT),
11027                    Loc);
11028 
11029     // Create the reference to operator=.
11030     ExprResult OpEqualRef
11031       = S.BuildMemberReferenceExpr(To.build(S, Loc), T, Loc, /*isArrow=*/false,
11032                                    SS, /*TemplateKWLoc=*/SourceLocation(),
11033                                    /*FirstQualifierInScope=*/nullptr,
11034                                    OpLookup,
11035                                    /*TemplateArgs=*/nullptr, /*S*/nullptr,
11036                                    /*SuppressQualifierCheck=*/true);
11037     if (OpEqualRef.isInvalid())
11038       return StmtError();
11039 
11040     // Build the call to the assignment operator.
11041 
11042     Expr *FromInst = From.build(S, Loc);
11043     ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/nullptr,
11044                                                   OpEqualRef.getAs<Expr>(),
11045                                                   Loc, FromInst, Loc);
11046     if (Call.isInvalid())
11047       return StmtError();
11048 
11049     // If we built a call to a trivial 'operator=' while copying an array,
11050     // bail out. We'll replace the whole shebang with a memcpy.
11051     CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
11052     if (CE && CE->getMethodDecl()->isTrivial() && Depth)
11053       return StmtResult((Stmt*)nullptr);
11054 
11055     // Convert to an expression-statement, and clean up any produced
11056     // temporaries.
11057     return S.ActOnExprStmt(Call);
11058   }
11059 
11060   //     - if the subobject is of scalar type, the built-in assignment
11061   //       operator is used.
11062   const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
11063   if (!ArrayTy) {
11064     ExprResult Assignment = S.CreateBuiltinBinOp(
11065         Loc, BO_Assign, To.build(S, Loc), From.build(S, Loc));
11066     if (Assignment.isInvalid())
11067       return StmtError();
11068     return S.ActOnExprStmt(Assignment);
11069   }
11070 
11071   //     - if the subobject is an array, each element is assigned, in the
11072   //       manner appropriate to the element type;
11073 
11074   // Construct a loop over the array bounds, e.g.,
11075   //
11076   //   for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
11077   //
11078   // that will copy each of the array elements.
11079   QualType SizeType = S.Context.getSizeType();
11080 
11081   // Create the iteration variable.
11082   IdentifierInfo *IterationVarName = nullptr;
11083   {
11084     SmallString<8> Str;
11085     llvm::raw_svector_ostream OS(Str);
11086     OS << "__i" << Depth;
11087     IterationVarName = &S.Context.Idents.get(OS.str());
11088   }
11089   VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
11090                                           IterationVarName, SizeType,
11091                             S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
11092                                           SC_None);
11093 
11094   // Initialize the iteration variable to zero.
11095   llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
11096   IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
11097 
11098   // Creates a reference to the iteration variable.
11099   RefBuilder IterationVarRef(IterationVar, SizeType);
11100   LvalueConvBuilder IterationVarRefRVal(IterationVarRef);
11101 
11102   // Create the DeclStmt that holds the iteration variable.
11103   Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
11104 
11105   // Subscript the "from" and "to" expressions with the iteration variable.
11106   SubscriptBuilder FromIndexCopy(From, IterationVarRefRVal);
11107   MoveCastBuilder FromIndexMove(FromIndexCopy);
11108   const ExprBuilder *FromIndex;
11109   if (Copying)
11110     FromIndex = &FromIndexCopy;
11111   else
11112     FromIndex = &FromIndexMove;
11113 
11114   SubscriptBuilder ToIndex(To, IterationVarRefRVal);
11115 
11116   // Build the copy/move for an individual element of the array.
11117   StmtResult Copy =
11118     buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
11119                                      ToIndex, *FromIndex, CopyingBaseSubobject,
11120                                      Copying, Depth + 1);
11121   // Bail out if copying fails or if we determined that we should use memcpy.
11122   if (Copy.isInvalid() || !Copy.get())
11123     return Copy;
11124 
11125   // Create the comparison against the array bound.
11126   llvm::APInt Upper
11127     = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
11128   Expr *Comparison
11129     = new (S.Context) BinaryOperator(IterationVarRefRVal.build(S, Loc),
11130                      IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
11131                                      BO_NE, S.Context.BoolTy,
11132                                      VK_RValue, OK_Ordinary, Loc, FPOptions());
11133 
11134   // Create the pre-increment of the iteration variable.
11135   Expr *Increment
11136     = new (S.Context) UnaryOperator(IterationVarRef.build(S, Loc), UO_PreInc,
11137                                     SizeType, VK_LValue, OK_Ordinary, Loc);
11138 
11139   // Construct the loop that copies all elements of this array.
11140   return S.ActOnForStmt(
11141       Loc, Loc, InitStmt,
11142       S.ActOnCondition(nullptr, Loc, Comparison, Sema::ConditionKind::Boolean),
11143       S.MakeFullDiscardedValueExpr(Increment), Loc, Copy.get());
11144 }
11145 
11146 static StmtResult
11147 buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
11148                       const ExprBuilder &To, const ExprBuilder &From,
11149                       bool CopyingBaseSubobject, bool Copying) {
11150   // Maybe we should use a memcpy?
11151   if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
11152       T.isTriviallyCopyableType(S.Context))
11153     return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
11154 
11155   StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
11156                                                      CopyingBaseSubobject,
11157                                                      Copying, 0));
11158 
11159   // If we ended up picking a trivial assignment operator for an array of a
11160   // non-trivially-copyable class type, just emit a memcpy.
11161   if (!Result.isInvalid() && !Result.get())
11162     return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
11163 
11164   return Result;
11165 }
11166 
11167 CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
11168   // Note: The following rules are largely analoguous to the copy
11169   // constructor rules. Note that virtual bases are not taken into account
11170   // for determining the argument type of the operator. Note also that
11171   // operators taking an object instead of a reference are allowed.
11172   assert(ClassDecl->needsImplicitCopyAssignment());
11173 
11174   DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment);
11175   if (DSM.isAlreadyBeingDeclared())
11176     return nullptr;
11177 
11178   QualType ArgType = Context.getTypeDeclType(ClassDecl);
11179   QualType RetType = Context.getLValueReferenceType(ArgType);
11180   bool Const = ClassDecl->implicitCopyAssignmentHasConstParam();
11181   if (Const)
11182     ArgType = ArgType.withConst();
11183   ArgType = Context.getLValueReferenceType(ArgType);
11184 
11185   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
11186                                                      CXXCopyAssignment,
11187                                                      Const);
11188 
11189   //   An implicitly-declared copy assignment operator is an inline public
11190   //   member of its class.
11191   DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
11192   SourceLocation ClassLoc = ClassDecl->getLocation();
11193   DeclarationNameInfo NameInfo(Name, ClassLoc);
11194   CXXMethodDecl *CopyAssignment =
11195       CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
11196                             /*TInfo=*/nullptr, /*StorageClass=*/SC_None,
11197                             /*isInline=*/true, Constexpr, SourceLocation());
11198   CopyAssignment->setAccess(AS_public);
11199   CopyAssignment->setDefaulted();
11200   CopyAssignment->setImplicit();
11201 
11202   if (getLangOpts().CUDA) {
11203     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyAssignment,
11204                                             CopyAssignment,
11205                                             /* ConstRHS */ Const,
11206                                             /* Diagnose */ false);
11207   }
11208 
11209   // Build an exception specification pointing back at this member.
11210   FunctionProtoType::ExtProtoInfo EPI =
11211       getImplicitMethodEPI(*this, CopyAssignment);
11212   CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
11213 
11214   // Add the parameter to the operator.
11215   ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
11216                                                ClassLoc, ClassLoc,
11217                                                /*Id=*/nullptr, ArgType,
11218                                                /*TInfo=*/nullptr, SC_None,
11219                                                nullptr);
11220   CopyAssignment->setParams(FromParam);
11221 
11222   CopyAssignment->setTrivial(
11223     ClassDecl->needsOverloadResolutionForCopyAssignment()
11224       ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment)
11225       : ClassDecl->hasTrivialCopyAssignment());
11226 
11227   // Note that we have added this copy-assignment operator.
11228   ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
11229 
11230   Scope *S = getScopeForContext(ClassDecl);
11231   CheckImplicitSpecialMemberDeclaration(S, CopyAssignment);
11232 
11233   if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
11234     SetDeclDeleted(CopyAssignment, ClassLoc);
11235 
11236   if (S)
11237     PushOnScopeChains(CopyAssignment, S, false);
11238   ClassDecl->addDecl(CopyAssignment);
11239 
11240   return CopyAssignment;
11241 }
11242 
11243 /// Diagnose an implicit copy operation for a class which is odr-used, but
11244 /// which is deprecated because the class has a user-declared copy constructor,
11245 /// copy assignment operator, or destructor.
11246 static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp) {
11247   assert(CopyOp->isImplicit());
11248 
11249   CXXRecordDecl *RD = CopyOp->getParent();
11250   CXXMethodDecl *UserDeclaredOperation = nullptr;
11251 
11252   // In Microsoft mode, assignment operations don't affect constructors and
11253   // vice versa.
11254   if (RD->hasUserDeclaredDestructor()) {
11255     UserDeclaredOperation = RD->getDestructor();
11256   } else if (!isa<CXXConstructorDecl>(CopyOp) &&
11257              RD->hasUserDeclaredCopyConstructor() &&
11258              !S.getLangOpts().MSVCCompat) {
11259     // Find any user-declared copy constructor.
11260     for (auto *I : RD->ctors()) {
11261       if (I->isCopyConstructor()) {
11262         UserDeclaredOperation = I;
11263         break;
11264       }
11265     }
11266     assert(UserDeclaredOperation);
11267   } else if (isa<CXXConstructorDecl>(CopyOp) &&
11268              RD->hasUserDeclaredCopyAssignment() &&
11269              !S.getLangOpts().MSVCCompat) {
11270     // Find any user-declared move assignment operator.
11271     for (auto *I : RD->methods()) {
11272       if (I->isCopyAssignmentOperator()) {
11273         UserDeclaredOperation = I;
11274         break;
11275       }
11276     }
11277     assert(UserDeclaredOperation);
11278   }
11279 
11280   if (UserDeclaredOperation) {
11281     S.Diag(UserDeclaredOperation->getLocation(),
11282          diag::warn_deprecated_copy_operation)
11283       << RD << /*copy assignment*/!isa<CXXConstructorDecl>(CopyOp)
11284       << /*destructor*/isa<CXXDestructorDecl>(UserDeclaredOperation);
11285   }
11286 }
11287 
11288 void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
11289                                         CXXMethodDecl *CopyAssignOperator) {
11290   assert((CopyAssignOperator->isDefaulted() &&
11291           CopyAssignOperator->isOverloadedOperator() &&
11292           CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
11293           !CopyAssignOperator->doesThisDeclarationHaveABody() &&
11294           !CopyAssignOperator->isDeleted()) &&
11295          "DefineImplicitCopyAssignment called for wrong function");
11296   if (CopyAssignOperator->willHaveBody() || CopyAssignOperator->isInvalidDecl())
11297     return;
11298 
11299   CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
11300   if (ClassDecl->isInvalidDecl()) {
11301     CopyAssignOperator->setInvalidDecl();
11302     return;
11303   }
11304 
11305   SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
11306 
11307   // The exception specification is needed because we are defining the
11308   // function.
11309   ResolveExceptionSpec(CurrentLocation,
11310                        CopyAssignOperator->getType()->castAs<FunctionProtoType>());
11311 
11312   // Add a context note for diagnostics produced after this point.
11313   Scope.addContextNote(CurrentLocation);
11314 
11315   // C++11 [class.copy]p18:
11316   //   The [definition of an implicitly declared copy assignment operator] is
11317   //   deprecated if the class has a user-declared copy constructor or a
11318   //   user-declared destructor.
11319   if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit())
11320     diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator);
11321 
11322   // C++0x [class.copy]p30:
11323   //   The implicitly-defined or explicitly-defaulted copy assignment operator
11324   //   for a non-union class X performs memberwise copy assignment of its
11325   //   subobjects. The direct base classes of X are assigned first, in the
11326   //   order of their declaration in the base-specifier-list, and then the
11327   //   immediate non-static data members of X are assigned, in the order in
11328   //   which they were declared in the class definition.
11329 
11330   // The statements that form the synthesized function body.
11331   SmallVector<Stmt*, 8> Statements;
11332 
11333   // The parameter for the "other" object, which we are copying from.
11334   ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
11335   Qualifiers OtherQuals = Other->getType().getQualifiers();
11336   QualType OtherRefType = Other->getType();
11337   if (const LValueReferenceType *OtherRef
11338                                 = OtherRefType->getAs<LValueReferenceType>()) {
11339     OtherRefType = OtherRef->getPointeeType();
11340     OtherQuals = OtherRefType.getQualifiers();
11341   }
11342 
11343   // Our location for everything implicitly-generated.
11344   SourceLocation Loc = CopyAssignOperator->getLocEnd().isValid()
11345                            ? CopyAssignOperator->getLocEnd()
11346                            : CopyAssignOperator->getLocation();
11347 
11348   // Builds a DeclRefExpr for the "other" object.
11349   RefBuilder OtherRef(Other, OtherRefType);
11350 
11351   // Builds the "this" pointer.
11352   ThisBuilder This;
11353 
11354   // Assign base classes.
11355   bool Invalid = false;
11356   for (auto &Base : ClassDecl->bases()) {
11357     // Form the assignment:
11358     //   static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
11359     QualType BaseType = Base.getType().getUnqualifiedType();
11360     if (!BaseType->isRecordType()) {
11361       Invalid = true;
11362       continue;
11363     }
11364 
11365     CXXCastPath BasePath;
11366     BasePath.push_back(&Base);
11367 
11368     // Construct the "from" expression, which is an implicit cast to the
11369     // appropriately-qualified base type.
11370     CastBuilder From(OtherRef, Context.getQualifiedType(BaseType, OtherQuals),
11371                      VK_LValue, BasePath);
11372 
11373     // Dereference "this".
11374     DerefBuilder DerefThis(This);
11375     CastBuilder To(DerefThis,
11376                    Context.getCVRQualifiedType(
11377                        BaseType, CopyAssignOperator->getTypeQualifiers()),
11378                    VK_LValue, BasePath);
11379 
11380     // Build the copy.
11381     StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
11382                                             To, From,
11383                                             /*CopyingBaseSubobject=*/true,
11384                                             /*Copying=*/true);
11385     if (Copy.isInvalid()) {
11386       CopyAssignOperator->setInvalidDecl();
11387       return;
11388     }
11389 
11390     // Success! Record the copy.
11391     Statements.push_back(Copy.getAs<Expr>());
11392   }
11393 
11394   // Assign non-static members.
11395   for (auto *Field : ClassDecl->fields()) {
11396     // FIXME: We should form some kind of AST representation for the implied
11397     // memcpy in a union copy operation.
11398     if (Field->isUnnamedBitfield() || Field->getParent()->isUnion())
11399       continue;
11400 
11401     if (Field->isInvalidDecl()) {
11402       Invalid = true;
11403       continue;
11404     }
11405 
11406     // Check for members of reference type; we can't copy those.
11407     if (Field->getType()->isReferenceType()) {
11408       Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
11409         << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
11410       Diag(Field->getLocation(), diag::note_declared_at);
11411       Invalid = true;
11412       continue;
11413     }
11414 
11415     // Check for members of const-qualified, non-class type.
11416     QualType BaseType = Context.getBaseElementType(Field->getType());
11417     if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
11418       Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
11419         << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
11420       Diag(Field->getLocation(), diag::note_declared_at);
11421       Invalid = true;
11422       continue;
11423     }
11424 
11425     // Suppress assigning zero-width bitfields.
11426     if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
11427       continue;
11428 
11429     QualType FieldType = Field->getType().getNonReferenceType();
11430     if (FieldType->isIncompleteArrayType()) {
11431       assert(ClassDecl->hasFlexibleArrayMember() &&
11432              "Incomplete array type is not valid");
11433       continue;
11434     }
11435 
11436     // Build references to the field in the object we're copying from and to.
11437     CXXScopeSpec SS; // Intentionally empty
11438     LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
11439                               LookupMemberName);
11440     MemberLookup.addDecl(Field);
11441     MemberLookup.resolveKind();
11442 
11443     MemberBuilder From(OtherRef, OtherRefType, /*IsArrow=*/false, MemberLookup);
11444 
11445     MemberBuilder To(This, getCurrentThisType(), /*IsArrow=*/true, MemberLookup);
11446 
11447     // Build the copy of this field.
11448     StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
11449                                             To, From,
11450                                             /*CopyingBaseSubobject=*/false,
11451                                             /*Copying=*/true);
11452     if (Copy.isInvalid()) {
11453       CopyAssignOperator->setInvalidDecl();
11454       return;
11455     }
11456 
11457     // Success! Record the copy.
11458     Statements.push_back(Copy.getAs<Stmt>());
11459   }
11460 
11461   if (!Invalid) {
11462     // Add a "return *this;"
11463     ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc));
11464 
11465     StmtResult Return = BuildReturnStmt(Loc, ThisObj.get());
11466     if (Return.isInvalid())
11467       Invalid = true;
11468     else
11469       Statements.push_back(Return.getAs<Stmt>());
11470   }
11471 
11472   if (Invalid) {
11473     CopyAssignOperator->setInvalidDecl();
11474     return;
11475   }
11476 
11477   StmtResult Body;
11478   {
11479     CompoundScopeRAII CompoundScope(*this);
11480     Body = ActOnCompoundStmt(Loc, Loc, Statements,
11481                              /*isStmtExpr=*/false);
11482     assert(!Body.isInvalid() && "Compound statement creation cannot fail");
11483   }
11484   CopyAssignOperator->setBody(Body.getAs<Stmt>());
11485   CopyAssignOperator->markUsed(Context);
11486 
11487   if (ASTMutationListener *L = getASTMutationListener()) {
11488     L->CompletedImplicitDefinition(CopyAssignOperator);
11489   }
11490 }
11491 
11492 CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
11493   assert(ClassDecl->needsImplicitMoveAssignment());
11494 
11495   DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment);
11496   if (DSM.isAlreadyBeingDeclared())
11497     return nullptr;
11498 
11499   // Note: The following rules are largely analoguous to the move
11500   // constructor rules.
11501 
11502   QualType ArgType = Context.getTypeDeclType(ClassDecl);
11503   QualType RetType = Context.getLValueReferenceType(ArgType);
11504   ArgType = Context.getRValueReferenceType(ArgType);
11505 
11506   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
11507                                                      CXXMoveAssignment,
11508                                                      false);
11509 
11510   //   An implicitly-declared move assignment operator is an inline public
11511   //   member of its class.
11512   DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
11513   SourceLocation ClassLoc = ClassDecl->getLocation();
11514   DeclarationNameInfo NameInfo(Name, ClassLoc);
11515   CXXMethodDecl *MoveAssignment =
11516       CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
11517                             /*TInfo=*/nullptr, /*StorageClass=*/SC_None,
11518                             /*isInline=*/true, Constexpr, SourceLocation());
11519   MoveAssignment->setAccess(AS_public);
11520   MoveAssignment->setDefaulted();
11521   MoveAssignment->setImplicit();
11522 
11523   if (getLangOpts().CUDA) {
11524     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveAssignment,
11525                                             MoveAssignment,
11526                                             /* ConstRHS */ false,
11527                                             /* Diagnose */ false);
11528   }
11529 
11530   // Build an exception specification pointing back at this member.
11531   FunctionProtoType::ExtProtoInfo EPI =
11532       getImplicitMethodEPI(*this, MoveAssignment);
11533   MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
11534 
11535   // Add the parameter to the operator.
11536   ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
11537                                                ClassLoc, ClassLoc,
11538                                                /*Id=*/nullptr, ArgType,
11539                                                /*TInfo=*/nullptr, SC_None,
11540                                                nullptr);
11541   MoveAssignment->setParams(FromParam);
11542 
11543   MoveAssignment->setTrivial(
11544     ClassDecl->needsOverloadResolutionForMoveAssignment()
11545       ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment)
11546       : ClassDecl->hasTrivialMoveAssignment());
11547 
11548   // Note that we have added this copy-assignment operator.
11549   ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
11550 
11551   Scope *S = getScopeForContext(ClassDecl);
11552   CheckImplicitSpecialMemberDeclaration(S, MoveAssignment);
11553 
11554   if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
11555     ClassDecl->setImplicitMoveAssignmentIsDeleted();
11556     SetDeclDeleted(MoveAssignment, ClassLoc);
11557   }
11558 
11559   if (S)
11560     PushOnScopeChains(MoveAssignment, S, false);
11561   ClassDecl->addDecl(MoveAssignment);
11562 
11563   return MoveAssignment;
11564 }
11565 
11566 /// Check if we're implicitly defining a move assignment operator for a class
11567 /// with virtual bases. Such a move assignment might move-assign the virtual
11568 /// base multiple times.
11569 static void checkMoveAssignmentForRepeatedMove(Sema &S, CXXRecordDecl *Class,
11570                                                SourceLocation CurrentLocation) {
11571   assert(!Class->isDependentContext() && "should not define dependent move");
11572 
11573   // Only a virtual base could get implicitly move-assigned multiple times.
11574   // Only a non-trivial move assignment can observe this. We only want to
11575   // diagnose if we implicitly define an assignment operator that assigns
11576   // two base classes, both of which move-assign the same virtual base.
11577   if (Class->getNumVBases() == 0 || Class->hasTrivialMoveAssignment() ||
11578       Class->getNumBases() < 2)
11579     return;
11580 
11581   llvm::SmallVector<CXXBaseSpecifier *, 16> Worklist;
11582   typedef llvm::DenseMap<CXXRecordDecl*, CXXBaseSpecifier*> VBaseMap;
11583   VBaseMap VBases;
11584 
11585   for (auto &BI : Class->bases()) {
11586     Worklist.push_back(&BI);
11587     while (!Worklist.empty()) {
11588       CXXBaseSpecifier *BaseSpec = Worklist.pop_back_val();
11589       CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl();
11590 
11591       // If the base has no non-trivial move assignment operators,
11592       // we don't care about moves from it.
11593       if (!Base->hasNonTrivialMoveAssignment())
11594         continue;
11595 
11596       // If there's nothing virtual here, skip it.
11597       if (!BaseSpec->isVirtual() && !Base->getNumVBases())
11598         continue;
11599 
11600       // If we're not actually going to call a move assignment for this base,
11601       // or the selected move assignment is trivial, skip it.
11602       Sema::SpecialMemberOverloadResult SMOR =
11603         S.LookupSpecialMember(Base, Sema::CXXMoveAssignment,
11604                               /*ConstArg*/false, /*VolatileArg*/false,
11605                               /*RValueThis*/true, /*ConstThis*/false,
11606                               /*VolatileThis*/false);
11607       if (!SMOR.getMethod() || SMOR.getMethod()->isTrivial() ||
11608           !SMOR.getMethod()->isMoveAssignmentOperator())
11609         continue;
11610 
11611       if (BaseSpec->isVirtual()) {
11612         // We're going to move-assign this virtual base, and its move
11613         // assignment operator is not trivial. If this can happen for
11614         // multiple distinct direct bases of Class, diagnose it. (If it
11615         // only happens in one base, we'll diagnose it when synthesizing
11616         // that base class's move assignment operator.)
11617         CXXBaseSpecifier *&Existing =
11618             VBases.insert(std::make_pair(Base->getCanonicalDecl(), &BI))
11619                 .first->second;
11620         if (Existing && Existing != &BI) {
11621           S.Diag(CurrentLocation, diag::warn_vbase_moved_multiple_times)
11622             << Class << Base;
11623           S.Diag(Existing->getLocStart(), diag::note_vbase_moved_here)
11624             << (Base->getCanonicalDecl() ==
11625                 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl())
11626             << Base << Existing->getType() << Existing->getSourceRange();
11627           S.Diag(BI.getLocStart(), diag::note_vbase_moved_here)
11628             << (Base->getCanonicalDecl() ==
11629                 BI.getType()->getAsCXXRecordDecl()->getCanonicalDecl())
11630             << Base << BI.getType() << BaseSpec->getSourceRange();
11631 
11632           // Only diagnose each vbase once.
11633           Existing = nullptr;
11634         }
11635       } else {
11636         // Only walk over bases that have defaulted move assignment operators.
11637         // We assume that any user-provided move assignment operator handles
11638         // the multiple-moves-of-vbase case itself somehow.
11639         if (!SMOR.getMethod()->isDefaulted())
11640           continue;
11641 
11642         // We're going to move the base classes of Base. Add them to the list.
11643         for (auto &BI : Base->bases())
11644           Worklist.push_back(&BI);
11645       }
11646     }
11647   }
11648 }
11649 
11650 void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
11651                                         CXXMethodDecl *MoveAssignOperator) {
11652   assert((MoveAssignOperator->isDefaulted() &&
11653           MoveAssignOperator->isOverloadedOperator() &&
11654           MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
11655           !MoveAssignOperator->doesThisDeclarationHaveABody() &&
11656           !MoveAssignOperator->isDeleted()) &&
11657          "DefineImplicitMoveAssignment called for wrong function");
11658   if (MoveAssignOperator->willHaveBody() || MoveAssignOperator->isInvalidDecl())
11659     return;
11660 
11661   CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
11662   if (ClassDecl->isInvalidDecl()) {
11663     MoveAssignOperator->setInvalidDecl();
11664     return;
11665   }
11666 
11667   // C++0x [class.copy]p28:
11668   //   The implicitly-defined or move assignment operator for a non-union class
11669   //   X performs memberwise move assignment of its subobjects. The direct base
11670   //   classes of X are assigned first, in the order of their declaration in the
11671   //   base-specifier-list, and then the immediate non-static data members of X
11672   //   are assigned, in the order in which they were declared in the class
11673   //   definition.
11674 
11675   // Issue a warning if our implicit move assignment operator will move
11676   // from a virtual base more than once.
11677   checkMoveAssignmentForRepeatedMove(*this, ClassDecl, CurrentLocation);
11678 
11679   SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
11680 
11681   // The exception specification is needed because we are defining the
11682   // function.
11683   ResolveExceptionSpec(CurrentLocation,
11684                        MoveAssignOperator->getType()->castAs<FunctionProtoType>());
11685 
11686   // Add a context note for diagnostics produced after this point.
11687   Scope.addContextNote(CurrentLocation);
11688 
11689   // The statements that form the synthesized function body.
11690   SmallVector<Stmt*, 8> Statements;
11691 
11692   // The parameter for the "other" object, which we are move from.
11693   ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
11694   QualType OtherRefType = Other->getType()->
11695       getAs<RValueReferenceType>()->getPointeeType();
11696   assert(!OtherRefType.getQualifiers() &&
11697          "Bad argument type of defaulted move assignment");
11698 
11699   // Our location for everything implicitly-generated.
11700   SourceLocation Loc = MoveAssignOperator->getLocEnd().isValid()
11701                            ? MoveAssignOperator->getLocEnd()
11702                            : MoveAssignOperator->getLocation();
11703 
11704   // Builds a reference to the "other" object.
11705   RefBuilder OtherRef(Other, OtherRefType);
11706   // Cast to rvalue.
11707   MoveCastBuilder MoveOther(OtherRef);
11708 
11709   // Builds the "this" pointer.
11710   ThisBuilder This;
11711 
11712   // Assign base classes.
11713   bool Invalid = false;
11714   for (auto &Base : ClassDecl->bases()) {
11715     // C++11 [class.copy]p28:
11716     //   It is unspecified whether subobjects representing virtual base classes
11717     //   are assigned more than once by the implicitly-defined copy assignment
11718     //   operator.
11719     // FIXME: Do not assign to a vbase that will be assigned by some other base
11720     // class. For a move-assignment, this can result in the vbase being moved
11721     // multiple times.
11722 
11723     // Form the assignment:
11724     //   static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
11725     QualType BaseType = Base.getType().getUnqualifiedType();
11726     if (!BaseType->isRecordType()) {
11727       Invalid = true;
11728       continue;
11729     }
11730 
11731     CXXCastPath BasePath;
11732     BasePath.push_back(&Base);
11733 
11734     // Construct the "from" expression, which is an implicit cast to the
11735     // appropriately-qualified base type.
11736     CastBuilder From(OtherRef, BaseType, VK_XValue, BasePath);
11737 
11738     // Dereference "this".
11739     DerefBuilder DerefThis(This);
11740 
11741     // Implicitly cast "this" to the appropriately-qualified base type.
11742     CastBuilder To(DerefThis,
11743                    Context.getCVRQualifiedType(
11744                        BaseType, MoveAssignOperator->getTypeQualifiers()),
11745                    VK_LValue, BasePath);
11746 
11747     // Build the move.
11748     StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
11749                                             To, From,
11750                                             /*CopyingBaseSubobject=*/true,
11751                                             /*Copying=*/false);
11752     if (Move.isInvalid()) {
11753       MoveAssignOperator->setInvalidDecl();
11754       return;
11755     }
11756 
11757     // Success! Record the move.
11758     Statements.push_back(Move.getAs<Expr>());
11759   }
11760 
11761   // Assign non-static members.
11762   for (auto *Field : ClassDecl->fields()) {
11763     // FIXME: We should form some kind of AST representation for the implied
11764     // memcpy in a union copy operation.
11765     if (Field->isUnnamedBitfield() || Field->getParent()->isUnion())
11766       continue;
11767 
11768     if (Field->isInvalidDecl()) {
11769       Invalid = true;
11770       continue;
11771     }
11772 
11773     // Check for members of reference type; we can't move those.
11774     if (Field->getType()->isReferenceType()) {
11775       Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
11776         << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
11777       Diag(Field->getLocation(), diag::note_declared_at);
11778       Invalid = true;
11779       continue;
11780     }
11781 
11782     // Check for members of const-qualified, non-class type.
11783     QualType BaseType = Context.getBaseElementType(Field->getType());
11784     if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
11785       Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
11786         << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
11787       Diag(Field->getLocation(), diag::note_declared_at);
11788       Invalid = true;
11789       continue;
11790     }
11791 
11792     // Suppress assigning zero-width bitfields.
11793     if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
11794       continue;
11795 
11796     QualType FieldType = Field->getType().getNonReferenceType();
11797     if (FieldType->isIncompleteArrayType()) {
11798       assert(ClassDecl->hasFlexibleArrayMember() &&
11799              "Incomplete array type is not valid");
11800       continue;
11801     }
11802 
11803     // Build references to the field in the object we're copying from and to.
11804     LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
11805                               LookupMemberName);
11806     MemberLookup.addDecl(Field);
11807     MemberLookup.resolveKind();
11808     MemberBuilder From(MoveOther, OtherRefType,
11809                        /*IsArrow=*/false, MemberLookup);
11810     MemberBuilder To(This, getCurrentThisType(),
11811                      /*IsArrow=*/true, MemberLookup);
11812 
11813     assert(!From.build(*this, Loc)->isLValue() && // could be xvalue or prvalue
11814         "Member reference with rvalue base must be rvalue except for reference "
11815         "members, which aren't allowed for move assignment.");
11816 
11817     // Build the move of this field.
11818     StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
11819                                             To, From,
11820                                             /*CopyingBaseSubobject=*/false,
11821                                             /*Copying=*/false);
11822     if (Move.isInvalid()) {
11823       MoveAssignOperator->setInvalidDecl();
11824       return;
11825     }
11826 
11827     // Success! Record the copy.
11828     Statements.push_back(Move.getAs<Stmt>());
11829   }
11830 
11831   if (!Invalid) {
11832     // Add a "return *this;"
11833     ExprResult ThisObj =
11834         CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc));
11835 
11836     StmtResult Return = BuildReturnStmt(Loc, ThisObj.get());
11837     if (Return.isInvalid())
11838       Invalid = true;
11839     else
11840       Statements.push_back(Return.getAs<Stmt>());
11841   }
11842 
11843   if (Invalid) {
11844     MoveAssignOperator->setInvalidDecl();
11845     return;
11846   }
11847 
11848   StmtResult Body;
11849   {
11850     CompoundScopeRAII CompoundScope(*this);
11851     Body = ActOnCompoundStmt(Loc, Loc, Statements,
11852                              /*isStmtExpr=*/false);
11853     assert(!Body.isInvalid() && "Compound statement creation cannot fail");
11854   }
11855   MoveAssignOperator->setBody(Body.getAs<Stmt>());
11856   MoveAssignOperator->markUsed(Context);
11857 
11858   if (ASTMutationListener *L = getASTMutationListener()) {
11859     L->CompletedImplicitDefinition(MoveAssignOperator);
11860   }
11861 }
11862 
11863 CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
11864                                                     CXXRecordDecl *ClassDecl) {
11865   // C++ [class.copy]p4:
11866   //   If the class definition does not explicitly declare a copy
11867   //   constructor, one is declared implicitly.
11868   assert(ClassDecl->needsImplicitCopyConstructor());
11869 
11870   DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor);
11871   if (DSM.isAlreadyBeingDeclared())
11872     return nullptr;
11873 
11874   QualType ClassType = Context.getTypeDeclType(ClassDecl);
11875   QualType ArgType = ClassType;
11876   bool Const = ClassDecl->implicitCopyConstructorHasConstParam();
11877   if (Const)
11878     ArgType = ArgType.withConst();
11879   ArgType = Context.getLValueReferenceType(ArgType);
11880 
11881   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
11882                                                      CXXCopyConstructor,
11883                                                      Const);
11884 
11885   DeclarationName Name
11886     = Context.DeclarationNames.getCXXConstructorName(
11887                                            Context.getCanonicalType(ClassType));
11888   SourceLocation ClassLoc = ClassDecl->getLocation();
11889   DeclarationNameInfo NameInfo(Name, ClassLoc);
11890 
11891   //   An implicitly-declared copy constructor is an inline public
11892   //   member of its class.
11893   CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
11894       Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr,
11895       /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
11896       Constexpr);
11897   CopyConstructor->setAccess(AS_public);
11898   CopyConstructor->setDefaulted();
11899 
11900   if (getLangOpts().CUDA) {
11901     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyConstructor,
11902                                             CopyConstructor,
11903                                             /* ConstRHS */ Const,
11904                                             /* Diagnose */ false);
11905   }
11906 
11907   // Build an exception specification pointing back at this member.
11908   FunctionProtoType::ExtProtoInfo EPI =
11909       getImplicitMethodEPI(*this, CopyConstructor);
11910   CopyConstructor->setType(
11911       Context.getFunctionType(Context.VoidTy, ArgType, EPI));
11912 
11913   // Add the parameter to the constructor.
11914   ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
11915                                                ClassLoc, ClassLoc,
11916                                                /*IdentifierInfo=*/nullptr,
11917                                                ArgType, /*TInfo=*/nullptr,
11918                                                SC_None, nullptr);
11919   CopyConstructor->setParams(FromParam);
11920 
11921   CopyConstructor->setTrivial(
11922     ClassDecl->needsOverloadResolutionForCopyConstructor()
11923       ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor)
11924       : ClassDecl->hasTrivialCopyConstructor());
11925 
11926   // Note that we have declared this constructor.
11927   ++ASTContext::NumImplicitCopyConstructorsDeclared;
11928 
11929   Scope *S = getScopeForContext(ClassDecl);
11930   CheckImplicitSpecialMemberDeclaration(S, CopyConstructor);
11931 
11932   if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
11933     SetDeclDeleted(CopyConstructor, ClassLoc);
11934 
11935   if (S)
11936     PushOnScopeChains(CopyConstructor, S, false);
11937   ClassDecl->addDecl(CopyConstructor);
11938 
11939   return CopyConstructor;
11940 }
11941 
11942 void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
11943                                          CXXConstructorDecl *CopyConstructor) {
11944   assert((CopyConstructor->isDefaulted() &&
11945           CopyConstructor->isCopyConstructor() &&
11946           !CopyConstructor->doesThisDeclarationHaveABody() &&
11947           !CopyConstructor->isDeleted()) &&
11948          "DefineImplicitCopyConstructor - call it for implicit copy ctor");
11949   if (CopyConstructor->willHaveBody() || CopyConstructor->isInvalidDecl())
11950     return;
11951 
11952   CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
11953   assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
11954 
11955   SynthesizedFunctionScope Scope(*this, CopyConstructor);
11956 
11957   // The exception specification is needed because we are defining the
11958   // function.
11959   ResolveExceptionSpec(CurrentLocation,
11960                        CopyConstructor->getType()->castAs<FunctionProtoType>());
11961   MarkVTableUsed(CurrentLocation, ClassDecl);
11962 
11963   // Add a context note for diagnostics produced after this point.
11964   Scope.addContextNote(CurrentLocation);
11965 
11966   // C++11 [class.copy]p7:
11967   //   The [definition of an implicitly declared copy constructor] is
11968   //   deprecated if the class has a user-declared copy assignment operator
11969   //   or a user-declared destructor.
11970   if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit())
11971     diagnoseDeprecatedCopyOperation(*this, CopyConstructor);
11972 
11973   if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false)) {
11974     CopyConstructor->setInvalidDecl();
11975   }  else {
11976     SourceLocation Loc = CopyConstructor->getLocEnd().isValid()
11977                              ? CopyConstructor->getLocEnd()
11978                              : CopyConstructor->getLocation();
11979     Sema::CompoundScopeRAII CompoundScope(*this);
11980     CopyConstructor->setBody(
11981         ActOnCompoundStmt(Loc, Loc, None, /*isStmtExpr=*/false).getAs<Stmt>());
11982     CopyConstructor->markUsed(Context);
11983   }
11984 
11985   if (ASTMutationListener *L = getASTMutationListener()) {
11986     L->CompletedImplicitDefinition(CopyConstructor);
11987   }
11988 }
11989 
11990 CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
11991                                                     CXXRecordDecl *ClassDecl) {
11992   assert(ClassDecl->needsImplicitMoveConstructor());
11993 
11994   DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor);
11995   if (DSM.isAlreadyBeingDeclared())
11996     return nullptr;
11997 
11998   QualType ClassType = Context.getTypeDeclType(ClassDecl);
11999   QualType ArgType = Context.getRValueReferenceType(ClassType);
12000 
12001   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
12002                                                      CXXMoveConstructor,
12003                                                      false);
12004 
12005   DeclarationName Name
12006     = Context.DeclarationNames.getCXXConstructorName(
12007                                            Context.getCanonicalType(ClassType));
12008   SourceLocation ClassLoc = ClassDecl->getLocation();
12009   DeclarationNameInfo NameInfo(Name, ClassLoc);
12010 
12011   // C++11 [class.copy]p11:
12012   //   An implicitly-declared copy/move constructor is an inline public
12013   //   member of its class.
12014   CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
12015       Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr,
12016       /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
12017       Constexpr);
12018   MoveConstructor->setAccess(AS_public);
12019   MoveConstructor->setDefaulted();
12020 
12021   if (getLangOpts().CUDA) {
12022     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveConstructor,
12023                                             MoveConstructor,
12024                                             /* ConstRHS */ false,
12025                                             /* Diagnose */ false);
12026   }
12027 
12028   // Build an exception specification pointing back at this member.
12029   FunctionProtoType::ExtProtoInfo EPI =
12030       getImplicitMethodEPI(*this, MoveConstructor);
12031   MoveConstructor->setType(
12032       Context.getFunctionType(Context.VoidTy, ArgType, EPI));
12033 
12034   // Add the parameter to the constructor.
12035   ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
12036                                                ClassLoc, ClassLoc,
12037                                                /*IdentifierInfo=*/nullptr,
12038                                                ArgType, /*TInfo=*/nullptr,
12039                                                SC_None, nullptr);
12040   MoveConstructor->setParams(FromParam);
12041 
12042   MoveConstructor->setTrivial(
12043     ClassDecl->needsOverloadResolutionForMoveConstructor()
12044       ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor)
12045       : ClassDecl->hasTrivialMoveConstructor());
12046 
12047   // Note that we have declared this constructor.
12048   ++ASTContext::NumImplicitMoveConstructorsDeclared;
12049 
12050   Scope *S = getScopeForContext(ClassDecl);
12051   CheckImplicitSpecialMemberDeclaration(S, MoveConstructor);
12052 
12053   if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
12054     ClassDecl->setImplicitMoveConstructorIsDeleted();
12055     SetDeclDeleted(MoveConstructor, ClassLoc);
12056   }
12057 
12058   if (S)
12059     PushOnScopeChains(MoveConstructor, S, false);
12060   ClassDecl->addDecl(MoveConstructor);
12061 
12062   return MoveConstructor;
12063 }
12064 
12065 void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
12066                                          CXXConstructorDecl *MoveConstructor) {
12067   assert((MoveConstructor->isDefaulted() &&
12068           MoveConstructor->isMoveConstructor() &&
12069           !MoveConstructor->doesThisDeclarationHaveABody() &&
12070           !MoveConstructor->isDeleted()) &&
12071          "DefineImplicitMoveConstructor - call it for implicit move ctor");
12072   if (MoveConstructor->willHaveBody() || MoveConstructor->isInvalidDecl())
12073     return;
12074 
12075   CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
12076   assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
12077 
12078   SynthesizedFunctionScope Scope(*this, MoveConstructor);
12079 
12080   // The exception specification is needed because we are defining the
12081   // function.
12082   ResolveExceptionSpec(CurrentLocation,
12083                        MoveConstructor->getType()->castAs<FunctionProtoType>());
12084   MarkVTableUsed(CurrentLocation, ClassDecl);
12085 
12086   // Add a context note for diagnostics produced after this point.
12087   Scope.addContextNote(CurrentLocation);
12088 
12089   if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false)) {
12090     MoveConstructor->setInvalidDecl();
12091   } else {
12092     SourceLocation Loc = MoveConstructor->getLocEnd().isValid()
12093                              ? MoveConstructor->getLocEnd()
12094                              : MoveConstructor->getLocation();
12095     Sema::CompoundScopeRAII CompoundScope(*this);
12096     MoveConstructor->setBody(ActOnCompoundStmt(
12097         Loc, Loc, None, /*isStmtExpr=*/ false).getAs<Stmt>());
12098     MoveConstructor->markUsed(Context);
12099   }
12100 
12101   if (ASTMutationListener *L = getASTMutationListener()) {
12102     L->CompletedImplicitDefinition(MoveConstructor);
12103   }
12104 }
12105 
12106 bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
12107   return FD->isDeleted() && FD->isDefaulted() && isa<CXXMethodDecl>(FD);
12108 }
12109 
12110 void Sema::DefineImplicitLambdaToFunctionPointerConversion(
12111                             SourceLocation CurrentLocation,
12112                             CXXConversionDecl *Conv) {
12113   SynthesizedFunctionScope Scope(*this, Conv);
12114 
12115   CXXRecordDecl *Lambda = Conv->getParent();
12116   CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator();
12117   // If we are defining a specialization of a conversion to function-ptr
12118   // cache the deduced template arguments for this specialization
12119   // so that we can use them to retrieve the corresponding call-operator
12120   // and static-invoker.
12121   const TemplateArgumentList *DeducedTemplateArgs = nullptr;
12122 
12123   // Retrieve the corresponding call-operator specialization.
12124   if (Lambda->isGenericLambda()) {
12125     assert(Conv->isFunctionTemplateSpecialization());
12126     FunctionTemplateDecl *CallOpTemplate =
12127         CallOp->getDescribedFunctionTemplate();
12128     DeducedTemplateArgs = Conv->getTemplateSpecializationArgs();
12129     void *InsertPos = nullptr;
12130     FunctionDecl *CallOpSpec = CallOpTemplate->findSpecialization(
12131                                                 DeducedTemplateArgs->asArray(),
12132                                                 InsertPos);
12133     assert(CallOpSpec &&
12134           "Conversion operator must have a corresponding call operator");
12135     CallOp = cast<CXXMethodDecl>(CallOpSpec);
12136   }
12137 
12138   // Mark the call operator referenced (and add to pending instantiations
12139   // if necessary).
12140   // For both the conversion and static-invoker template specializations
12141   // we construct their body's in this function, so no need to add them
12142   // to the PendingInstantiations.
12143   MarkFunctionReferenced(CurrentLocation, CallOp);
12144 
12145   // Retrieve the static invoker...
12146   CXXMethodDecl *Invoker = Lambda->getLambdaStaticInvoker();
12147   // ... and get the corresponding specialization for a generic lambda.
12148   if (Lambda->isGenericLambda()) {
12149     assert(DeducedTemplateArgs &&
12150       "Must have deduced template arguments from Conversion Operator");
12151     FunctionTemplateDecl *InvokeTemplate =
12152                           Invoker->getDescribedFunctionTemplate();
12153     void *InsertPos = nullptr;
12154     FunctionDecl *InvokeSpec = InvokeTemplate->findSpecialization(
12155                                                 DeducedTemplateArgs->asArray(),
12156                                                 InsertPos);
12157     assert(InvokeSpec &&
12158       "Must have a corresponding static invoker specialization");
12159     Invoker = cast<CXXMethodDecl>(InvokeSpec);
12160   }
12161   // Construct the body of the conversion function { return __invoke; }.
12162   Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(),
12163                                         VK_LValue, Conv->getLocation()).get();
12164    assert(FunctionRef && "Can't refer to __invoke function?");
12165    Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get();
12166    Conv->setBody(new (Context) CompoundStmt(Context, Return,
12167                                             Conv->getLocation(),
12168                                             Conv->getLocation()));
12169 
12170   Conv->markUsed(Context);
12171   Conv->setReferenced();
12172 
12173   // Fill in the __invoke function with a dummy implementation. IR generation
12174   // will fill in the actual details.
12175   Invoker->markUsed(Context);
12176   Invoker->setReferenced();
12177   Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation()));
12178 
12179   if (ASTMutationListener *L = getASTMutationListener()) {
12180     L->CompletedImplicitDefinition(Conv);
12181     L->CompletedImplicitDefinition(Invoker);
12182   }
12183 }
12184 
12185 
12186 
12187 void Sema::DefineImplicitLambdaToBlockPointerConversion(
12188        SourceLocation CurrentLocation,
12189        CXXConversionDecl *Conv)
12190 {
12191   assert(!Conv->getParent()->isGenericLambda());
12192 
12193   SynthesizedFunctionScope Scope(*this, Conv);
12194 
12195   // Copy-initialize the lambda object as needed to capture it.
12196   Expr *This = ActOnCXXThis(CurrentLocation).get();
12197   Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get();
12198 
12199   ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
12200                                                         Conv->getLocation(),
12201                                                         Conv, DerefThis);
12202 
12203   // If we're not under ARC, make sure we still get the _Block_copy/autorelease
12204   // behavior.  Note that only the general conversion function does this
12205   // (since it's unusable otherwise); in the case where we inline the
12206   // block literal, it has block literal lifetime semantics.
12207   if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
12208     BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
12209                                           CK_CopyAndAutoreleaseBlockObject,
12210                                           BuildBlock.get(), nullptr, VK_RValue);
12211 
12212   if (BuildBlock.isInvalid()) {
12213     Diag(CurrentLocation, diag::note_lambda_to_block_conv);
12214     Conv->setInvalidDecl();
12215     return;
12216   }
12217 
12218   // Create the return statement that returns the block from the conversion
12219   // function.
12220   StmtResult Return = BuildReturnStmt(Conv->getLocation(), BuildBlock.get());
12221   if (Return.isInvalid()) {
12222     Diag(CurrentLocation, diag::note_lambda_to_block_conv);
12223     Conv->setInvalidDecl();
12224     return;
12225   }
12226 
12227   // Set the body of the conversion function.
12228   Stmt *ReturnS = Return.get();
12229   Conv->setBody(new (Context) CompoundStmt(Context, ReturnS,
12230                                            Conv->getLocation(),
12231                                            Conv->getLocation()));
12232   Conv->markUsed(Context);
12233 
12234   // We're done; notify the mutation listener, if any.
12235   if (ASTMutationListener *L = getASTMutationListener()) {
12236     L->CompletedImplicitDefinition(Conv);
12237   }
12238 }
12239 
12240 /// \brief Determine whether the given list arguments contains exactly one
12241 /// "real" (non-default) argument.
12242 static bool hasOneRealArgument(MultiExprArg Args) {
12243   switch (Args.size()) {
12244   case 0:
12245     return false;
12246 
12247   default:
12248     if (!Args[1]->isDefaultArgument())
12249       return false;
12250 
12251     // fall through
12252   case 1:
12253     return !Args[0]->isDefaultArgument();
12254   }
12255 
12256   return false;
12257 }
12258 
12259 ExprResult
12260 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
12261                             NamedDecl *FoundDecl,
12262                             CXXConstructorDecl *Constructor,
12263                             MultiExprArg ExprArgs,
12264                             bool HadMultipleCandidates,
12265                             bool IsListInitialization,
12266                             bool IsStdInitListInitialization,
12267                             bool RequiresZeroInit,
12268                             unsigned ConstructKind,
12269                             SourceRange ParenRange) {
12270   bool Elidable = false;
12271 
12272   // C++0x [class.copy]p34:
12273   //   When certain criteria are met, an implementation is allowed to
12274   //   omit the copy/move construction of a class object, even if the
12275   //   copy/move constructor and/or destructor for the object have
12276   //   side effects. [...]
12277   //     - when a temporary class object that has not been bound to a
12278   //       reference (12.2) would be copied/moved to a class object
12279   //       with the same cv-unqualified type, the copy/move operation
12280   //       can be omitted by constructing the temporary object
12281   //       directly into the target of the omitted copy/move
12282   if (ConstructKind == CXXConstructExpr::CK_Complete && Constructor &&
12283       Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
12284     Expr *SubExpr = ExprArgs[0];
12285     Elidable = SubExpr->isTemporaryObject(
12286         Context, cast<CXXRecordDecl>(FoundDecl->getDeclContext()));
12287   }
12288 
12289   return BuildCXXConstructExpr(ConstructLoc, DeclInitType,
12290                                FoundDecl, Constructor,
12291                                Elidable, ExprArgs, HadMultipleCandidates,
12292                                IsListInitialization,
12293                                IsStdInitListInitialization, RequiresZeroInit,
12294                                ConstructKind, ParenRange);
12295 }
12296 
12297 ExprResult
12298 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
12299                             NamedDecl *FoundDecl,
12300                             CXXConstructorDecl *Constructor,
12301                             bool Elidable,
12302                             MultiExprArg ExprArgs,
12303                             bool HadMultipleCandidates,
12304                             bool IsListInitialization,
12305                             bool IsStdInitListInitialization,
12306                             bool RequiresZeroInit,
12307                             unsigned ConstructKind,
12308                             SourceRange ParenRange) {
12309   if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) {
12310     Constructor = findInheritingConstructor(ConstructLoc, Constructor, Shadow);
12311     if (DiagnoseUseOfDecl(Constructor, ConstructLoc))
12312       return ExprError();
12313   }
12314 
12315   return BuildCXXConstructExpr(
12316       ConstructLoc, DeclInitType, Constructor, Elidable, ExprArgs,
12317       HadMultipleCandidates, IsListInitialization, IsStdInitListInitialization,
12318       RequiresZeroInit, ConstructKind, ParenRange);
12319 }
12320 
12321 /// BuildCXXConstructExpr - Creates a complete call to a constructor,
12322 /// including handling of its default argument expressions.
12323 ExprResult
12324 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
12325                             CXXConstructorDecl *Constructor,
12326                             bool Elidable,
12327                             MultiExprArg ExprArgs,
12328                             bool HadMultipleCandidates,
12329                             bool IsListInitialization,
12330                             bool IsStdInitListInitialization,
12331                             bool RequiresZeroInit,
12332                             unsigned ConstructKind,
12333                             SourceRange ParenRange) {
12334   assert(declaresSameEntity(
12335              Constructor->getParent(),
12336              DeclInitType->getBaseElementTypeUnsafe()->getAsCXXRecordDecl()) &&
12337          "given constructor for wrong type");
12338   MarkFunctionReferenced(ConstructLoc, Constructor);
12339   if (getLangOpts().CUDA && !CheckCUDACall(ConstructLoc, Constructor))
12340     return ExprError();
12341 
12342   return CXXConstructExpr::Create(
12343       Context, DeclInitType, ConstructLoc, Constructor, Elidable,
12344       ExprArgs, HadMultipleCandidates, IsListInitialization,
12345       IsStdInitListInitialization, RequiresZeroInit,
12346       static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
12347       ParenRange);
12348 }
12349 
12350 ExprResult Sema::BuildCXXDefaultInitExpr(SourceLocation Loc, FieldDecl *Field) {
12351   assert(Field->hasInClassInitializer());
12352 
12353   // If we already have the in-class initializer nothing needs to be done.
12354   if (Field->getInClassInitializer())
12355     return CXXDefaultInitExpr::Create(Context, Loc, Field);
12356 
12357   // If we might have already tried and failed to instantiate, don't try again.
12358   if (Field->isInvalidDecl())
12359     return ExprError();
12360 
12361   // Maybe we haven't instantiated the in-class initializer. Go check the
12362   // pattern FieldDecl to see if it has one.
12363   CXXRecordDecl *ParentRD = cast<CXXRecordDecl>(Field->getParent());
12364 
12365   if (isTemplateInstantiation(ParentRD->getTemplateSpecializationKind())) {
12366     CXXRecordDecl *ClassPattern = ParentRD->getTemplateInstantiationPattern();
12367     DeclContext::lookup_result Lookup =
12368         ClassPattern->lookup(Field->getDeclName());
12369 
12370     // Lookup can return at most two results: the pattern for the field, or the
12371     // injected class name of the parent record. No other member can have the
12372     // same name as the field.
12373     // In modules mode, lookup can return multiple results (coming from
12374     // different modules).
12375     assert((getLangOpts().Modules || (!Lookup.empty() && Lookup.size() <= 2)) &&
12376            "more than two lookup results for field name");
12377     FieldDecl *Pattern = dyn_cast<FieldDecl>(Lookup[0]);
12378     if (!Pattern) {
12379       assert(isa<CXXRecordDecl>(Lookup[0]) &&
12380              "cannot have other non-field member with same name");
12381       for (auto L : Lookup)
12382         if (isa<FieldDecl>(L)) {
12383           Pattern = cast<FieldDecl>(L);
12384           break;
12385         }
12386       assert(Pattern && "We must have set the Pattern!");
12387     }
12388 
12389     if (InstantiateInClassInitializer(Loc, Field, Pattern,
12390                                       getTemplateInstantiationArgs(Field))) {
12391       // Don't diagnose this again.
12392       Field->setInvalidDecl();
12393       return ExprError();
12394     }
12395     return CXXDefaultInitExpr::Create(Context, Loc, Field);
12396   }
12397 
12398   // DR1351:
12399   //   If the brace-or-equal-initializer of a non-static data member
12400   //   invokes a defaulted default constructor of its class or of an
12401   //   enclosing class in a potentially evaluated subexpression, the
12402   //   program is ill-formed.
12403   //
12404   // This resolution is unworkable: the exception specification of the
12405   // default constructor can be needed in an unevaluated context, in
12406   // particular, in the operand of a noexcept-expression, and we can be
12407   // unable to compute an exception specification for an enclosed class.
12408   //
12409   // Any attempt to resolve the exception specification of a defaulted default
12410   // constructor before the initializer is lexically complete will ultimately
12411   // come here at which point we can diagnose it.
12412   RecordDecl *OutermostClass = ParentRD->getOuterLexicalRecordContext();
12413   Diag(Loc, diag::err_in_class_initializer_not_yet_parsed)
12414       << OutermostClass << Field;
12415   Diag(Field->getLocEnd(), diag::note_in_class_initializer_not_yet_parsed);
12416   // Recover by marking the field invalid, unless we're in a SFINAE context.
12417   if (!isSFINAEContext())
12418     Field->setInvalidDecl();
12419   return ExprError();
12420 }
12421 
12422 void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
12423   if (VD->isInvalidDecl()) return;
12424 
12425   CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
12426   if (ClassDecl->isInvalidDecl()) return;
12427   if (ClassDecl->hasIrrelevantDestructor()) return;
12428   if (ClassDecl->isDependentContext()) return;
12429 
12430   CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
12431   MarkFunctionReferenced(VD->getLocation(), Destructor);
12432   CheckDestructorAccess(VD->getLocation(), Destructor,
12433                         PDiag(diag::err_access_dtor_var)
12434                         << VD->getDeclName()
12435                         << VD->getType());
12436   DiagnoseUseOfDecl(Destructor, VD->getLocation());
12437 
12438   if (Destructor->isTrivial()) return;
12439   if (!VD->hasGlobalStorage()) return;
12440 
12441   // Emit warning for non-trivial dtor in global scope (a real global,
12442   // class-static, function-static).
12443   Diag(VD->getLocation(), diag::warn_exit_time_destructor);
12444 
12445   // TODO: this should be re-enabled for static locals by !CXAAtExit
12446   if (!VD->isStaticLocal())
12447     Diag(VD->getLocation(), diag::warn_global_destructor);
12448 }
12449 
12450 /// \brief Given a constructor and the set of arguments provided for the
12451 /// constructor, convert the arguments and add any required default arguments
12452 /// to form a proper call to this constructor.
12453 ///
12454 /// \returns true if an error occurred, false otherwise.
12455 bool
12456 Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
12457                               MultiExprArg ArgsPtr,
12458                               SourceLocation Loc,
12459                               SmallVectorImpl<Expr*> &ConvertedArgs,
12460                               bool AllowExplicit,
12461                               bool IsListInitialization) {
12462   // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
12463   unsigned NumArgs = ArgsPtr.size();
12464   Expr **Args = ArgsPtr.data();
12465 
12466   const FunctionProtoType *Proto
12467     = Constructor->getType()->getAs<FunctionProtoType>();
12468   assert(Proto && "Constructor without a prototype?");
12469   unsigned NumParams = Proto->getNumParams();
12470 
12471   // If too few arguments are available, we'll fill in the rest with defaults.
12472   if (NumArgs < NumParams)
12473     ConvertedArgs.reserve(NumParams);
12474   else
12475     ConvertedArgs.reserve(NumArgs);
12476 
12477   VariadicCallType CallType =
12478     Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
12479   SmallVector<Expr *, 8> AllArgs;
12480   bool Invalid = GatherArgumentsForCall(Loc, Constructor,
12481                                         Proto, 0,
12482                                         llvm::makeArrayRef(Args, NumArgs),
12483                                         AllArgs,
12484                                         CallType, AllowExplicit,
12485                                         IsListInitialization);
12486   ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
12487 
12488   DiagnoseSentinelCalls(Constructor, Loc, AllArgs);
12489 
12490   CheckConstructorCall(Constructor,
12491                        llvm::makeArrayRef(AllArgs.data(), AllArgs.size()),
12492                        Proto, Loc);
12493 
12494   return Invalid;
12495 }
12496 
12497 static inline bool
12498 CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
12499                                        const FunctionDecl *FnDecl) {
12500   const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
12501   if (isa<NamespaceDecl>(DC)) {
12502     return SemaRef.Diag(FnDecl->getLocation(),
12503                         diag::err_operator_new_delete_declared_in_namespace)
12504       << FnDecl->getDeclName();
12505   }
12506 
12507   if (isa<TranslationUnitDecl>(DC) &&
12508       FnDecl->getStorageClass() == SC_Static) {
12509     return SemaRef.Diag(FnDecl->getLocation(),
12510                         diag::err_operator_new_delete_declared_static)
12511       << FnDecl->getDeclName();
12512   }
12513 
12514   return false;
12515 }
12516 
12517 static inline bool
12518 CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
12519                             CanQualType ExpectedResultType,
12520                             CanQualType ExpectedFirstParamType,
12521                             unsigned DependentParamTypeDiag,
12522                             unsigned InvalidParamTypeDiag) {
12523   QualType ResultType =
12524       FnDecl->getType()->getAs<FunctionType>()->getReturnType();
12525 
12526   // Check that the result type is not dependent.
12527   if (ResultType->isDependentType())
12528     return SemaRef.Diag(FnDecl->getLocation(),
12529                         diag::err_operator_new_delete_dependent_result_type)
12530     << FnDecl->getDeclName() << ExpectedResultType;
12531 
12532   // Check that the result type is what we expect.
12533   if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
12534     return SemaRef.Diag(FnDecl->getLocation(),
12535                         diag::err_operator_new_delete_invalid_result_type)
12536     << FnDecl->getDeclName() << ExpectedResultType;
12537 
12538   // A function template must have at least 2 parameters.
12539   if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
12540     return SemaRef.Diag(FnDecl->getLocation(),
12541                       diag::err_operator_new_delete_template_too_few_parameters)
12542         << FnDecl->getDeclName();
12543 
12544   // The function decl must have at least 1 parameter.
12545   if (FnDecl->getNumParams() == 0)
12546     return SemaRef.Diag(FnDecl->getLocation(),
12547                         diag::err_operator_new_delete_too_few_parameters)
12548       << FnDecl->getDeclName();
12549 
12550   // Check the first parameter type is not dependent.
12551   QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
12552   if (FirstParamType->isDependentType())
12553     return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
12554       << FnDecl->getDeclName() << ExpectedFirstParamType;
12555 
12556   // Check that the first parameter type is what we expect.
12557   if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
12558       ExpectedFirstParamType)
12559     return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
12560     << FnDecl->getDeclName() << ExpectedFirstParamType;
12561 
12562   return false;
12563 }
12564 
12565 static bool
12566 CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
12567   // C++ [basic.stc.dynamic.allocation]p1:
12568   //   A program is ill-formed if an allocation function is declared in a
12569   //   namespace scope other than global scope or declared static in global
12570   //   scope.
12571   if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
12572     return true;
12573 
12574   CanQualType SizeTy =
12575     SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
12576 
12577   // C++ [basic.stc.dynamic.allocation]p1:
12578   //  The return type shall be void*. The first parameter shall have type
12579   //  std::size_t.
12580   if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
12581                                   SizeTy,
12582                                   diag::err_operator_new_dependent_param_type,
12583                                   diag::err_operator_new_param_type))
12584     return true;
12585 
12586   // C++ [basic.stc.dynamic.allocation]p1:
12587   //  The first parameter shall not have an associated default argument.
12588   if (FnDecl->getParamDecl(0)->hasDefaultArg())
12589     return SemaRef.Diag(FnDecl->getLocation(),
12590                         diag::err_operator_new_default_arg)
12591       << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
12592 
12593   return false;
12594 }
12595 
12596 static bool
12597 CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
12598   // C++ [basic.stc.dynamic.deallocation]p1:
12599   //   A program is ill-formed if deallocation functions are declared in a
12600   //   namespace scope other than global scope or declared static in global
12601   //   scope.
12602   if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
12603     return true;
12604 
12605   // C++ [basic.stc.dynamic.deallocation]p2:
12606   //   Each deallocation function shall return void and its first parameter
12607   //   shall be void*.
12608   if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
12609                                   SemaRef.Context.VoidPtrTy,
12610                                  diag::err_operator_delete_dependent_param_type,
12611                                  diag::err_operator_delete_param_type))
12612     return true;
12613 
12614   return false;
12615 }
12616 
12617 /// CheckOverloadedOperatorDeclaration - Check whether the declaration
12618 /// of this overloaded operator is well-formed. If so, returns false;
12619 /// otherwise, emits appropriate diagnostics and returns true.
12620 bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
12621   assert(FnDecl && FnDecl->isOverloadedOperator() &&
12622          "Expected an overloaded operator declaration");
12623 
12624   OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
12625 
12626   // C++ [over.oper]p5:
12627   //   The allocation and deallocation functions, operator new,
12628   //   operator new[], operator delete and operator delete[], are
12629   //   described completely in 3.7.3. The attributes and restrictions
12630   //   found in the rest of this subclause do not apply to them unless
12631   //   explicitly stated in 3.7.3.
12632   if (Op == OO_Delete || Op == OO_Array_Delete)
12633     return CheckOperatorDeleteDeclaration(*this, FnDecl);
12634 
12635   if (Op == OO_New || Op == OO_Array_New)
12636     return CheckOperatorNewDeclaration(*this, FnDecl);
12637 
12638   // C++ [over.oper]p6:
12639   //   An operator function shall either be a non-static member
12640   //   function or be a non-member function and have at least one
12641   //   parameter whose type is a class, a reference to a class, an
12642   //   enumeration, or a reference to an enumeration.
12643   if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
12644     if (MethodDecl->isStatic())
12645       return Diag(FnDecl->getLocation(),
12646                   diag::err_operator_overload_static) << FnDecl->getDeclName();
12647   } else {
12648     bool ClassOrEnumParam = false;
12649     for (auto Param : FnDecl->parameters()) {
12650       QualType ParamType = Param->getType().getNonReferenceType();
12651       if (ParamType->isDependentType() || ParamType->isRecordType() ||
12652           ParamType->isEnumeralType()) {
12653         ClassOrEnumParam = true;
12654         break;
12655       }
12656     }
12657 
12658     if (!ClassOrEnumParam)
12659       return Diag(FnDecl->getLocation(),
12660                   diag::err_operator_overload_needs_class_or_enum)
12661         << FnDecl->getDeclName();
12662   }
12663 
12664   // C++ [over.oper]p8:
12665   //   An operator function cannot have default arguments (8.3.6),
12666   //   except where explicitly stated below.
12667   //
12668   // Only the function-call operator allows default arguments
12669   // (C++ [over.call]p1).
12670   if (Op != OO_Call) {
12671     for (auto Param : FnDecl->parameters()) {
12672       if (Param->hasDefaultArg())
12673         return Diag(Param->getLocation(),
12674                     diag::err_operator_overload_default_arg)
12675           << FnDecl->getDeclName() << Param->getDefaultArgRange();
12676     }
12677   }
12678 
12679   static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
12680     { false, false, false }
12681 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
12682     , { Unary, Binary, MemberOnly }
12683 #include "clang/Basic/OperatorKinds.def"
12684   };
12685 
12686   bool CanBeUnaryOperator = OperatorUses[Op][0];
12687   bool CanBeBinaryOperator = OperatorUses[Op][1];
12688   bool MustBeMemberOperator = OperatorUses[Op][2];
12689 
12690   // C++ [over.oper]p8:
12691   //   [...] Operator functions cannot have more or fewer parameters
12692   //   than the number required for the corresponding operator, as
12693   //   described in the rest of this subclause.
12694   unsigned NumParams = FnDecl->getNumParams()
12695                      + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
12696   if (Op != OO_Call &&
12697       ((NumParams == 1 && !CanBeUnaryOperator) ||
12698        (NumParams == 2 && !CanBeBinaryOperator) ||
12699        (NumParams < 1) || (NumParams > 2))) {
12700     // We have the wrong number of parameters.
12701     unsigned ErrorKind;
12702     if (CanBeUnaryOperator && CanBeBinaryOperator) {
12703       ErrorKind = 2;  // 2 -> unary or binary.
12704     } else if (CanBeUnaryOperator) {
12705       ErrorKind = 0;  // 0 -> unary
12706     } else {
12707       assert(CanBeBinaryOperator &&
12708              "All non-call overloaded operators are unary or binary!");
12709       ErrorKind = 1;  // 1 -> binary
12710     }
12711 
12712     return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
12713       << FnDecl->getDeclName() << NumParams << ErrorKind;
12714   }
12715 
12716   // Overloaded operators other than operator() cannot be variadic.
12717   if (Op != OO_Call &&
12718       FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
12719     return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
12720       << FnDecl->getDeclName();
12721   }
12722 
12723   // Some operators must be non-static member functions.
12724   if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
12725     return Diag(FnDecl->getLocation(),
12726                 diag::err_operator_overload_must_be_member)
12727       << FnDecl->getDeclName();
12728   }
12729 
12730   // C++ [over.inc]p1:
12731   //   The user-defined function called operator++ implements the
12732   //   prefix and postfix ++ operator. If this function is a member
12733   //   function with no parameters, or a non-member function with one
12734   //   parameter of class or enumeration type, it defines the prefix
12735   //   increment operator ++ for objects of that type. If the function
12736   //   is a member function with one parameter (which shall be of type
12737   //   int) or a non-member function with two parameters (the second
12738   //   of which shall be of type int), it defines the postfix
12739   //   increment operator ++ for objects of that type.
12740   if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
12741     ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
12742     QualType ParamType = LastParam->getType();
12743 
12744     if (!ParamType->isSpecificBuiltinType(BuiltinType::Int) &&
12745         !ParamType->isDependentType())
12746       return Diag(LastParam->getLocation(),
12747                   diag::err_operator_overload_post_incdec_must_be_int)
12748         << LastParam->getType() << (Op == OO_MinusMinus);
12749   }
12750 
12751   return false;
12752 }
12753 
12754 static bool
12755 checkLiteralOperatorTemplateParameterList(Sema &SemaRef,
12756                                           FunctionTemplateDecl *TpDecl) {
12757   TemplateParameterList *TemplateParams = TpDecl->getTemplateParameters();
12758 
12759   // Must have one or two template parameters.
12760   if (TemplateParams->size() == 1) {
12761     NonTypeTemplateParmDecl *PmDecl =
12762         dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(0));
12763 
12764     // The template parameter must be a char parameter pack.
12765     if (PmDecl && PmDecl->isTemplateParameterPack() &&
12766         SemaRef.Context.hasSameType(PmDecl->getType(), SemaRef.Context.CharTy))
12767       return false;
12768 
12769   } else if (TemplateParams->size() == 2) {
12770     TemplateTypeParmDecl *PmType =
12771         dyn_cast<TemplateTypeParmDecl>(TemplateParams->getParam(0));
12772     NonTypeTemplateParmDecl *PmArgs =
12773         dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(1));
12774 
12775     // The second template parameter must be a parameter pack with the
12776     // first template parameter as its type.
12777     if (PmType && PmArgs && !PmType->isTemplateParameterPack() &&
12778         PmArgs->isTemplateParameterPack()) {
12779       const TemplateTypeParmType *TArgs =
12780           PmArgs->getType()->getAs<TemplateTypeParmType>();
12781       if (TArgs && TArgs->getDepth() == PmType->getDepth() &&
12782           TArgs->getIndex() == PmType->getIndex()) {
12783         if (!SemaRef.inTemplateInstantiation())
12784           SemaRef.Diag(TpDecl->getLocation(),
12785                        diag::ext_string_literal_operator_template);
12786         return false;
12787       }
12788     }
12789   }
12790 
12791   SemaRef.Diag(TpDecl->getTemplateParameters()->getSourceRange().getBegin(),
12792                diag::err_literal_operator_template)
12793       << TpDecl->getTemplateParameters()->getSourceRange();
12794   return true;
12795 }
12796 
12797 /// CheckLiteralOperatorDeclaration - Check whether the declaration
12798 /// of this literal operator function is well-formed. If so, returns
12799 /// false; otherwise, emits appropriate diagnostics and returns true.
12800 bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
12801   if (isa<CXXMethodDecl>(FnDecl)) {
12802     Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
12803       << FnDecl->getDeclName();
12804     return true;
12805   }
12806 
12807   if (FnDecl->isExternC()) {
12808     Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
12809     if (const LinkageSpecDecl *LSD =
12810             FnDecl->getDeclContext()->getExternCContext())
12811       Diag(LSD->getExternLoc(), diag::note_extern_c_begins_here);
12812     return true;
12813   }
12814 
12815   // This might be the definition of a literal operator template.
12816   FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
12817 
12818   // This might be a specialization of a literal operator template.
12819   if (!TpDecl)
12820     TpDecl = FnDecl->getPrimaryTemplate();
12821 
12822   // template <char...> type operator "" name() and
12823   // template <class T, T...> type operator "" name() are the only valid
12824   // template signatures, and the only valid signatures with no parameters.
12825   if (TpDecl) {
12826     if (FnDecl->param_size() != 0) {
12827       Diag(FnDecl->getLocation(),
12828            diag::err_literal_operator_template_with_params);
12829       return true;
12830     }
12831 
12832     if (checkLiteralOperatorTemplateParameterList(*this, TpDecl))
12833       return true;
12834 
12835   } else if (FnDecl->param_size() == 1) {
12836     const ParmVarDecl *Param = FnDecl->getParamDecl(0);
12837 
12838     QualType ParamType = Param->getType().getUnqualifiedType();
12839 
12840     // Only unsigned long long int, long double, any character type, and const
12841     // char * are allowed as the only parameters.
12842     if (ParamType->isSpecificBuiltinType(BuiltinType::ULongLong) ||
12843         ParamType->isSpecificBuiltinType(BuiltinType::LongDouble) ||
12844         Context.hasSameType(ParamType, Context.CharTy) ||
12845         Context.hasSameType(ParamType, Context.WideCharTy) ||
12846         Context.hasSameType(ParamType, Context.Char16Ty) ||
12847         Context.hasSameType(ParamType, Context.Char32Ty)) {
12848     } else if (const PointerType *Ptr = ParamType->getAs<PointerType>()) {
12849       QualType InnerType = Ptr->getPointeeType();
12850 
12851       // Pointer parameter must be a const char *.
12852       if (!(Context.hasSameType(InnerType.getUnqualifiedType(),
12853                                 Context.CharTy) &&
12854             InnerType.isConstQualified() && !InnerType.isVolatileQualified())) {
12855         Diag(Param->getSourceRange().getBegin(),
12856              diag::err_literal_operator_param)
12857             << ParamType << "'const char *'" << Param->getSourceRange();
12858         return true;
12859       }
12860 
12861     } else if (ParamType->isRealFloatingType()) {
12862       Diag(Param->getSourceRange().getBegin(), diag::err_literal_operator_param)
12863           << ParamType << Context.LongDoubleTy << Param->getSourceRange();
12864       return true;
12865 
12866     } else if (ParamType->isIntegerType()) {
12867       Diag(Param->getSourceRange().getBegin(), diag::err_literal_operator_param)
12868           << ParamType << Context.UnsignedLongLongTy << Param->getSourceRange();
12869       return true;
12870 
12871     } else {
12872       Diag(Param->getSourceRange().getBegin(),
12873            diag::err_literal_operator_invalid_param)
12874           << ParamType << Param->getSourceRange();
12875       return true;
12876     }
12877 
12878   } else if (FnDecl->param_size() == 2) {
12879     FunctionDecl::param_iterator Param = FnDecl->param_begin();
12880 
12881     // First, verify that the first parameter is correct.
12882 
12883     QualType FirstParamType = (*Param)->getType().getUnqualifiedType();
12884 
12885     // Two parameter function must have a pointer to const as a
12886     // first parameter; let's strip those qualifiers.
12887     const PointerType *PT = FirstParamType->getAs<PointerType>();
12888 
12889     if (!PT) {
12890       Diag((*Param)->getSourceRange().getBegin(),
12891            diag::err_literal_operator_param)
12892           << FirstParamType << "'const char *'" << (*Param)->getSourceRange();
12893       return true;
12894     }
12895 
12896     QualType PointeeType = PT->getPointeeType();
12897     // First parameter must be const
12898     if (!PointeeType.isConstQualified() || PointeeType.isVolatileQualified()) {
12899       Diag((*Param)->getSourceRange().getBegin(),
12900            diag::err_literal_operator_param)
12901           << FirstParamType << "'const char *'" << (*Param)->getSourceRange();
12902       return true;
12903     }
12904 
12905     QualType InnerType = PointeeType.getUnqualifiedType();
12906     // Only const char *, const wchar_t*, const char16_t*, and const char32_t*
12907     // are allowed as the first parameter to a two-parameter function
12908     if (!(Context.hasSameType(InnerType, Context.CharTy) ||
12909           Context.hasSameType(InnerType, Context.WideCharTy) ||
12910           Context.hasSameType(InnerType, Context.Char16Ty) ||
12911           Context.hasSameType(InnerType, Context.Char32Ty))) {
12912       Diag((*Param)->getSourceRange().getBegin(),
12913            diag::err_literal_operator_param)
12914           << FirstParamType << "'const char *'" << (*Param)->getSourceRange();
12915       return true;
12916     }
12917 
12918     // Move on to the second and final parameter.
12919     ++Param;
12920 
12921     // The second parameter must be a std::size_t.
12922     QualType SecondParamType = (*Param)->getType().getUnqualifiedType();
12923     if (!Context.hasSameType(SecondParamType, Context.getSizeType())) {
12924       Diag((*Param)->getSourceRange().getBegin(),
12925            diag::err_literal_operator_param)
12926           << SecondParamType << Context.getSizeType()
12927           << (*Param)->getSourceRange();
12928       return true;
12929     }
12930   } else {
12931     Diag(FnDecl->getLocation(), diag::err_literal_operator_bad_param_count);
12932     return true;
12933   }
12934 
12935   // Parameters are good.
12936 
12937   // A parameter-declaration-clause containing a default argument is not
12938   // equivalent to any of the permitted forms.
12939   for (auto Param : FnDecl->parameters()) {
12940     if (Param->hasDefaultArg()) {
12941       Diag(Param->getDefaultArgRange().getBegin(),
12942            diag::err_literal_operator_default_argument)
12943         << Param->getDefaultArgRange();
12944       break;
12945     }
12946   }
12947 
12948   StringRef LiteralName
12949     = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
12950   if (LiteralName[0] != '_') {
12951     // C++11 [usrlit.suffix]p1:
12952     //   Literal suffix identifiers that do not start with an underscore
12953     //   are reserved for future standardization.
12954     Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved)
12955       << StringLiteralParser::isValidUDSuffix(getLangOpts(), LiteralName);
12956   }
12957 
12958   return false;
12959 }
12960 
12961 /// ActOnStartLinkageSpecification - Parsed the beginning of a C++
12962 /// linkage specification, including the language and (if present)
12963 /// the '{'. ExternLoc is the location of the 'extern', Lang is the
12964 /// language string literal. LBraceLoc, if valid, provides the location of
12965 /// the '{' brace. Otherwise, this linkage specification does not
12966 /// have any braces.
12967 Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
12968                                            Expr *LangStr,
12969                                            SourceLocation LBraceLoc) {
12970   StringLiteral *Lit = cast<StringLiteral>(LangStr);
12971   if (!Lit->isAscii()) {
12972     Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_not_ascii)
12973       << LangStr->getSourceRange();
12974     return nullptr;
12975   }
12976 
12977   StringRef Lang = Lit->getString();
12978   LinkageSpecDecl::LanguageIDs Language;
12979   if (Lang == "C")
12980     Language = LinkageSpecDecl::lang_c;
12981   else if (Lang == "C++")
12982     Language = LinkageSpecDecl::lang_cxx;
12983   else {
12984     Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_unknown)
12985       << LangStr->getSourceRange();
12986     return nullptr;
12987   }
12988 
12989   // FIXME: Add all the various semantics of linkage specifications
12990 
12991   LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, ExternLoc,
12992                                                LangStr->getExprLoc(), Language,
12993                                                LBraceLoc.isValid());
12994   CurContext->addDecl(D);
12995   PushDeclContext(S, D);
12996   return D;
12997 }
12998 
12999 /// ActOnFinishLinkageSpecification - Complete the definition of
13000 /// the C++ linkage specification LinkageSpec. If RBraceLoc is
13001 /// valid, it's the position of the closing '}' brace in a linkage
13002 /// specification that uses braces.
13003 Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
13004                                             Decl *LinkageSpec,
13005                                             SourceLocation RBraceLoc) {
13006   if (RBraceLoc.isValid()) {
13007     LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
13008     LSDecl->setRBraceLoc(RBraceLoc);
13009   }
13010   PopDeclContext();
13011   return LinkageSpec;
13012 }
13013 
13014 Decl *Sema::ActOnEmptyDeclaration(Scope *S,
13015                                   AttributeList *AttrList,
13016                                   SourceLocation SemiLoc) {
13017   Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc);
13018   // Attribute declarations appertain to empty declaration so we handle
13019   // them here.
13020   if (AttrList)
13021     ProcessDeclAttributeList(S, ED, AttrList);
13022 
13023   CurContext->addDecl(ED);
13024   return ED;
13025 }
13026 
13027 /// \brief Perform semantic analysis for the variable declaration that
13028 /// occurs within a C++ catch clause, returning the newly-created
13029 /// variable.
13030 VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
13031                                          TypeSourceInfo *TInfo,
13032                                          SourceLocation StartLoc,
13033                                          SourceLocation Loc,
13034                                          IdentifierInfo *Name) {
13035   bool Invalid = false;
13036   QualType ExDeclType = TInfo->getType();
13037 
13038   // Arrays and functions decay.
13039   if (ExDeclType->isArrayType())
13040     ExDeclType = Context.getArrayDecayedType(ExDeclType);
13041   else if (ExDeclType->isFunctionType())
13042     ExDeclType = Context.getPointerType(ExDeclType);
13043 
13044   // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
13045   // The exception-declaration shall not denote a pointer or reference to an
13046   // incomplete type, other than [cv] void*.
13047   // N2844 forbids rvalue references.
13048   if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
13049     Diag(Loc, diag::err_catch_rvalue_ref);
13050     Invalid = true;
13051   }
13052 
13053   if (ExDeclType->isVariablyModifiedType()) {
13054     Diag(Loc, diag::err_catch_variably_modified) << ExDeclType;
13055     Invalid = true;
13056   }
13057 
13058   QualType BaseType = ExDeclType;
13059   int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
13060   unsigned DK = diag::err_catch_incomplete;
13061   if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
13062     BaseType = Ptr->getPointeeType();
13063     Mode = 1;
13064     DK = diag::err_catch_incomplete_ptr;
13065   } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
13066     // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
13067     BaseType = Ref->getPointeeType();
13068     Mode = 2;
13069     DK = diag::err_catch_incomplete_ref;
13070   }
13071   if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
13072       !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
13073     Invalid = true;
13074 
13075   if (!Invalid && !ExDeclType->isDependentType() &&
13076       RequireNonAbstractType(Loc, ExDeclType,
13077                              diag::err_abstract_type_in_decl,
13078                              AbstractVariableType))
13079     Invalid = true;
13080 
13081   // Only the non-fragile NeXT runtime currently supports C++ catches
13082   // of ObjC types, and no runtime supports catching ObjC types by value.
13083   if (!Invalid && getLangOpts().ObjC1) {
13084     QualType T = ExDeclType;
13085     if (const ReferenceType *RT = T->getAs<ReferenceType>())
13086       T = RT->getPointeeType();
13087 
13088     if (T->isObjCObjectType()) {
13089       Diag(Loc, diag::err_objc_object_catch);
13090       Invalid = true;
13091     } else if (T->isObjCObjectPointerType()) {
13092       // FIXME: should this be a test for macosx-fragile specifically?
13093       if (getLangOpts().ObjCRuntime.isFragile())
13094         Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
13095     }
13096   }
13097 
13098   VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
13099                                     ExDeclType, TInfo, SC_None);
13100   ExDecl->setExceptionVariable(true);
13101 
13102   // In ARC, infer 'retaining' for variables of retainable type.
13103   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
13104     Invalid = true;
13105 
13106   if (!Invalid && !ExDeclType->isDependentType()) {
13107     if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
13108       // Insulate this from anything else we might currently be parsing.
13109       EnterExpressionEvaluationContext scope(
13110           *this, ExpressionEvaluationContext::PotentiallyEvaluated);
13111 
13112       // C++ [except.handle]p16:
13113       //   The object declared in an exception-declaration or, if the
13114       //   exception-declaration does not specify a name, a temporary (12.2) is
13115       //   copy-initialized (8.5) from the exception object. [...]
13116       //   The object is destroyed when the handler exits, after the destruction
13117       //   of any automatic objects initialized within the handler.
13118       //
13119       // We just pretend to initialize the object with itself, then make sure
13120       // it can be destroyed later.
13121       QualType initType = Context.getExceptionObjectType(ExDeclType);
13122 
13123       InitializedEntity entity =
13124         InitializedEntity::InitializeVariable(ExDecl);
13125       InitializationKind initKind =
13126         InitializationKind::CreateCopy(Loc, SourceLocation());
13127 
13128       Expr *opaqueValue =
13129         new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
13130       InitializationSequence sequence(*this, entity, initKind, opaqueValue);
13131       ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue);
13132       if (result.isInvalid())
13133         Invalid = true;
13134       else {
13135         // If the constructor used was non-trivial, set this as the
13136         // "initializer".
13137         CXXConstructExpr *construct = result.getAs<CXXConstructExpr>();
13138         if (!construct->getConstructor()->isTrivial()) {
13139           Expr *init = MaybeCreateExprWithCleanups(construct);
13140           ExDecl->setInit(init);
13141         }
13142 
13143         // And make sure it's destructable.
13144         FinalizeVarWithDestructor(ExDecl, recordType);
13145       }
13146     }
13147   }
13148 
13149   if (Invalid)
13150     ExDecl->setInvalidDecl();
13151 
13152   return ExDecl;
13153 }
13154 
13155 /// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
13156 /// handler.
13157 Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
13158   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13159   bool Invalid = D.isInvalidType();
13160 
13161   // Check for unexpanded parameter packs.
13162   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
13163                                       UPPC_ExceptionType)) {
13164     TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
13165                                              D.getIdentifierLoc());
13166     Invalid = true;
13167   }
13168 
13169   IdentifierInfo *II = D.getIdentifier();
13170   if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
13171                                              LookupOrdinaryName,
13172                                              ForRedeclaration)) {
13173     // The scope should be freshly made just for us. There is just no way
13174     // it contains any previous declaration, except for function parameters in
13175     // a function-try-block's catch statement.
13176     assert(!S->isDeclScope(PrevDecl));
13177     if (isDeclInScope(PrevDecl, CurContext, S)) {
13178       Diag(D.getIdentifierLoc(), diag::err_redefinition)
13179         << D.getIdentifier();
13180       Diag(PrevDecl->getLocation(), diag::note_previous_definition);
13181       Invalid = true;
13182     } else if (PrevDecl->isTemplateParameter())
13183       // Maybe we will complain about the shadowed template parameter.
13184       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
13185   }
13186 
13187   if (D.getCXXScopeSpec().isSet() && !Invalid) {
13188     Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
13189       << D.getCXXScopeSpec().getRange();
13190     Invalid = true;
13191   }
13192 
13193   VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
13194                                               D.getLocStart(),
13195                                               D.getIdentifierLoc(),
13196                                               D.getIdentifier());
13197   if (Invalid)
13198     ExDecl->setInvalidDecl();
13199 
13200   // Add the exception declaration into this scope.
13201   if (II)
13202     PushOnScopeChains(ExDecl, S);
13203   else
13204     CurContext->addDecl(ExDecl);
13205 
13206   ProcessDeclAttributes(S, ExDecl, D);
13207   return ExDecl;
13208 }
13209 
13210 Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
13211                                          Expr *AssertExpr,
13212                                          Expr *AssertMessageExpr,
13213                                          SourceLocation RParenLoc) {
13214   StringLiteral *AssertMessage =
13215       AssertMessageExpr ? cast<StringLiteral>(AssertMessageExpr) : nullptr;
13216 
13217   if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
13218     return nullptr;
13219 
13220   return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
13221                                       AssertMessage, RParenLoc, false);
13222 }
13223 
13224 Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
13225                                          Expr *AssertExpr,
13226                                          StringLiteral *AssertMessage,
13227                                          SourceLocation RParenLoc,
13228                                          bool Failed) {
13229   assert(AssertExpr != nullptr && "Expected non-null condition");
13230   if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
13231       !Failed) {
13232     // In a static_assert-declaration, the constant-expression shall be a
13233     // constant expression that can be contextually converted to bool.
13234     ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
13235     if (Converted.isInvalid())
13236       Failed = true;
13237 
13238     llvm::APSInt Cond;
13239     if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
13240           diag::err_static_assert_expression_is_not_constant,
13241           /*AllowFold=*/false).isInvalid())
13242       Failed = true;
13243 
13244     if (!Failed && !Cond) {
13245       SmallString<256> MsgBuffer;
13246       llvm::raw_svector_ostream Msg(MsgBuffer);
13247       if (AssertMessage)
13248         AssertMessage->printPretty(Msg, nullptr, getPrintingPolicy());
13249       Diag(StaticAssertLoc, diag::err_static_assert_failed)
13250         << !AssertMessage << Msg.str() << AssertExpr->getSourceRange();
13251       Failed = true;
13252     }
13253   }
13254 
13255   ExprResult FullAssertExpr = ActOnFinishFullExpr(AssertExpr, StaticAssertLoc,
13256                                                   /*DiscardedValue*/false,
13257                                                   /*IsConstexpr*/true);
13258   if (FullAssertExpr.isInvalid())
13259     Failed = true;
13260   else
13261     AssertExpr = FullAssertExpr.get();
13262 
13263   Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
13264                                         AssertExpr, AssertMessage, RParenLoc,
13265                                         Failed);
13266 
13267   CurContext->addDecl(Decl);
13268   return Decl;
13269 }
13270 
13271 /// \brief Perform semantic analysis of the given friend type declaration.
13272 ///
13273 /// \returns A friend declaration that.
13274 FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
13275                                       SourceLocation FriendLoc,
13276                                       TypeSourceInfo *TSInfo) {
13277   assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
13278 
13279   QualType T = TSInfo->getType();
13280   SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
13281 
13282   // C++03 [class.friend]p2:
13283   //   An elaborated-type-specifier shall be used in a friend declaration
13284   //   for a class.*
13285   //
13286   //   * The class-key of the elaborated-type-specifier is required.
13287   if (!CodeSynthesisContexts.empty()) {
13288     // Do not complain about the form of friend template types during any kind
13289     // of code synthesis. For template instantiation, we will have complained
13290     // when the template was defined.
13291   } else {
13292     if (!T->isElaboratedTypeSpecifier()) {
13293       // If we evaluated the type to a record type, suggest putting
13294       // a tag in front.
13295       if (const RecordType *RT = T->getAs<RecordType>()) {
13296         RecordDecl *RD = RT->getDecl();
13297 
13298         SmallString<16> InsertionText(" ");
13299         InsertionText += RD->getKindName();
13300 
13301         Diag(TypeRange.getBegin(),
13302              getLangOpts().CPlusPlus11 ?
13303                diag::warn_cxx98_compat_unelaborated_friend_type :
13304                diag::ext_unelaborated_friend_type)
13305           << (unsigned) RD->getTagKind()
13306           << T
13307           << FixItHint::CreateInsertion(getLocForEndOfToken(FriendLoc),
13308                                         InsertionText);
13309       } else {
13310         Diag(FriendLoc,
13311              getLangOpts().CPlusPlus11 ?
13312                diag::warn_cxx98_compat_nonclass_type_friend :
13313                diag::ext_nonclass_type_friend)
13314           << T
13315           << TypeRange;
13316       }
13317     } else if (T->getAs<EnumType>()) {
13318       Diag(FriendLoc,
13319            getLangOpts().CPlusPlus11 ?
13320              diag::warn_cxx98_compat_enum_friend :
13321              diag::ext_enum_friend)
13322         << T
13323         << TypeRange;
13324     }
13325 
13326     // C++11 [class.friend]p3:
13327     //   A friend declaration that does not declare a function shall have one
13328     //   of the following forms:
13329     //     friend elaborated-type-specifier ;
13330     //     friend simple-type-specifier ;
13331     //     friend typename-specifier ;
13332     if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc)
13333       Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
13334   }
13335 
13336   //   If the type specifier in a friend declaration designates a (possibly
13337   //   cv-qualified) class type, that class is declared as a friend; otherwise,
13338   //   the friend declaration is ignored.
13339   return FriendDecl::Create(Context, CurContext,
13340                             TSInfo->getTypeLoc().getLocStart(), TSInfo,
13341                             FriendLoc);
13342 }
13343 
13344 /// Handle a friend tag declaration where the scope specifier was
13345 /// templated.
13346 Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
13347                                     unsigned TagSpec, SourceLocation TagLoc,
13348                                     CXXScopeSpec &SS,
13349                                     IdentifierInfo *Name,
13350                                     SourceLocation NameLoc,
13351                                     AttributeList *Attr,
13352                                     MultiTemplateParamsArg TempParamLists) {
13353   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
13354 
13355   bool IsMemberSpecialization = false;
13356   bool Invalid = false;
13357 
13358   if (TemplateParameterList *TemplateParams =
13359           MatchTemplateParametersToScopeSpecifier(
13360               TagLoc, NameLoc, SS, nullptr, TempParamLists, /*friend*/ true,
13361               IsMemberSpecialization, Invalid)) {
13362     if (TemplateParams->size() > 0) {
13363       // This is a declaration of a class template.
13364       if (Invalid)
13365         return nullptr;
13366 
13367       return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc, SS, Name,
13368                                 NameLoc, Attr, TemplateParams, AS_public,
13369                                 /*ModulePrivateLoc=*/SourceLocation(),
13370                                 FriendLoc, TempParamLists.size() - 1,
13371                                 TempParamLists.data()).get();
13372     } else {
13373       // The "template<>" header is extraneous.
13374       Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
13375         << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
13376       IsMemberSpecialization = true;
13377     }
13378   }
13379 
13380   if (Invalid) return nullptr;
13381 
13382   bool isAllExplicitSpecializations = true;
13383   for (unsigned I = TempParamLists.size(); I-- > 0; ) {
13384     if (TempParamLists[I]->size()) {
13385       isAllExplicitSpecializations = false;
13386       break;
13387     }
13388   }
13389 
13390   // FIXME: don't ignore attributes.
13391 
13392   // If it's explicit specializations all the way down, just forget
13393   // about the template header and build an appropriate non-templated
13394   // friend.  TODO: for source fidelity, remember the headers.
13395   if (isAllExplicitSpecializations) {
13396     if (SS.isEmpty()) {
13397       bool Owned = false;
13398       bool IsDependent = false;
13399       return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
13400                       Attr, AS_public,
13401                       /*ModulePrivateLoc=*/SourceLocation(),
13402                       MultiTemplateParamsArg(), Owned, IsDependent,
13403                       /*ScopedEnumKWLoc=*/SourceLocation(),
13404                       /*ScopedEnumUsesClassTag=*/false,
13405                       /*UnderlyingType=*/TypeResult(),
13406                       /*IsTypeSpecifier=*/false,
13407                       /*IsTemplateParamOrArg=*/false);
13408     }
13409 
13410     NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
13411     ElaboratedTypeKeyword Keyword
13412       = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
13413     QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
13414                                    *Name, NameLoc);
13415     if (T.isNull())
13416       return nullptr;
13417 
13418     TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
13419     if (isa<DependentNameType>(T)) {
13420       DependentNameTypeLoc TL =
13421           TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
13422       TL.setElaboratedKeywordLoc(TagLoc);
13423       TL.setQualifierLoc(QualifierLoc);
13424       TL.setNameLoc(NameLoc);
13425     } else {
13426       ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
13427       TL.setElaboratedKeywordLoc(TagLoc);
13428       TL.setQualifierLoc(QualifierLoc);
13429       TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc);
13430     }
13431 
13432     FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
13433                                             TSI, FriendLoc, TempParamLists);
13434     Friend->setAccess(AS_public);
13435     CurContext->addDecl(Friend);
13436     return Friend;
13437   }
13438 
13439   assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
13440 
13441 
13442 
13443   // Handle the case of a templated-scope friend class.  e.g.
13444   //   template <class T> class A<T>::B;
13445   // FIXME: we don't support these right now.
13446   Diag(NameLoc, diag::warn_template_qualified_friend_unsupported)
13447     << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext);
13448   ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
13449   QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
13450   TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
13451   DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
13452   TL.setElaboratedKeywordLoc(TagLoc);
13453   TL.setQualifierLoc(SS.getWithLocInContext(Context));
13454   TL.setNameLoc(NameLoc);
13455 
13456   FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
13457                                           TSI, FriendLoc, TempParamLists);
13458   Friend->setAccess(AS_public);
13459   Friend->setUnsupportedFriend(true);
13460   CurContext->addDecl(Friend);
13461   return Friend;
13462 }
13463 
13464 
13465 /// Handle a friend type declaration.  This works in tandem with
13466 /// ActOnTag.
13467 ///
13468 /// Notes on friend class templates:
13469 ///
13470 /// We generally treat friend class declarations as if they were
13471 /// declaring a class.  So, for example, the elaborated type specifier
13472 /// in a friend declaration is required to obey the restrictions of a
13473 /// class-head (i.e. no typedefs in the scope chain), template
13474 /// parameters are required to match up with simple template-ids, &c.
13475 /// However, unlike when declaring a template specialization, it's
13476 /// okay to refer to a template specialization without an empty
13477 /// template parameter declaration, e.g.
13478 ///   friend class A<T>::B<unsigned>;
13479 /// We permit this as a special case; if there are any template
13480 /// parameters present at all, require proper matching, i.e.
13481 ///   template <> template \<class T> friend class A<int>::B;
13482 Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
13483                                 MultiTemplateParamsArg TempParams) {
13484   SourceLocation Loc = DS.getLocStart();
13485 
13486   assert(DS.isFriendSpecified());
13487   assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
13488 
13489   // Try to convert the decl specifier to a type.  This works for
13490   // friend templates because ActOnTag never produces a ClassTemplateDecl
13491   // for a TUK_Friend.
13492   Declarator TheDeclarator(DS, Declarator::MemberContext);
13493   TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
13494   QualType T = TSI->getType();
13495   if (TheDeclarator.isInvalidType())
13496     return nullptr;
13497 
13498   if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
13499     return nullptr;
13500 
13501   // This is definitely an error in C++98.  It's probably meant to
13502   // be forbidden in C++0x, too, but the specification is just
13503   // poorly written.
13504   //
13505   // The problem is with declarations like the following:
13506   //   template <T> friend A<T>::foo;
13507   // where deciding whether a class C is a friend or not now hinges
13508   // on whether there exists an instantiation of A that causes
13509   // 'foo' to equal C.  There are restrictions on class-heads
13510   // (which we declare (by fiat) elaborated friend declarations to
13511   // be) that makes this tractable.
13512   //
13513   // FIXME: handle "template <> friend class A<T>;", which
13514   // is possibly well-formed?  Who even knows?
13515   if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
13516     Diag(Loc, diag::err_tagless_friend_type_template)
13517       << DS.getSourceRange();
13518     return nullptr;
13519   }
13520 
13521   // C++98 [class.friend]p1: A friend of a class is a function
13522   //   or class that is not a member of the class . . .
13523   // This is fixed in DR77, which just barely didn't make the C++03
13524   // deadline.  It's also a very silly restriction that seriously
13525   // affects inner classes and which nobody else seems to implement;
13526   // thus we never diagnose it, not even in -pedantic.
13527   //
13528   // But note that we could warn about it: it's always useless to
13529   // friend one of your own members (it's not, however, worthless to
13530   // friend a member of an arbitrary specialization of your template).
13531 
13532   Decl *D;
13533   if (!TempParams.empty())
13534     D = FriendTemplateDecl::Create(Context, CurContext, Loc,
13535                                    TempParams,
13536                                    TSI,
13537                                    DS.getFriendSpecLoc());
13538   else
13539     D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
13540 
13541   if (!D)
13542     return nullptr;
13543 
13544   D->setAccess(AS_public);
13545   CurContext->addDecl(D);
13546 
13547   return D;
13548 }
13549 
13550 NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
13551                                         MultiTemplateParamsArg TemplateParams) {
13552   const DeclSpec &DS = D.getDeclSpec();
13553 
13554   assert(DS.isFriendSpecified());
13555   assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
13556 
13557   SourceLocation Loc = D.getIdentifierLoc();
13558   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13559 
13560   // C++ [class.friend]p1
13561   //   A friend of a class is a function or class....
13562   // Note that this sees through typedefs, which is intended.
13563   // It *doesn't* see through dependent types, which is correct
13564   // according to [temp.arg.type]p3:
13565   //   If a declaration acquires a function type through a
13566   //   type dependent on a template-parameter and this causes
13567   //   a declaration that does not use the syntactic form of a
13568   //   function declarator to have a function type, the program
13569   //   is ill-formed.
13570   if (!TInfo->getType()->isFunctionType()) {
13571     Diag(Loc, diag::err_unexpected_friend);
13572 
13573     // It might be worthwhile to try to recover by creating an
13574     // appropriate declaration.
13575     return nullptr;
13576   }
13577 
13578   // C++ [namespace.memdef]p3
13579   //  - If a friend declaration in a non-local class first declares a
13580   //    class or function, the friend class or function is a member
13581   //    of the innermost enclosing namespace.
13582   //  - The name of the friend is not found by simple name lookup
13583   //    until a matching declaration is provided in that namespace
13584   //    scope (either before or after the class declaration granting
13585   //    friendship).
13586   //  - If a friend function is called, its name may be found by the
13587   //    name lookup that considers functions from namespaces and
13588   //    classes associated with the types of the function arguments.
13589   //  - When looking for a prior declaration of a class or a function
13590   //    declared as a friend, scopes outside the innermost enclosing
13591   //    namespace scope are not considered.
13592 
13593   CXXScopeSpec &SS = D.getCXXScopeSpec();
13594   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
13595   DeclarationName Name = NameInfo.getName();
13596   assert(Name);
13597 
13598   // Check for unexpanded parameter packs.
13599   if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
13600       DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
13601       DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
13602     return nullptr;
13603 
13604   // The context we found the declaration in, or in which we should
13605   // create the declaration.
13606   DeclContext *DC;
13607   Scope *DCScope = S;
13608   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
13609                         ForRedeclaration);
13610 
13611   // There are five cases here.
13612   //   - There's no scope specifier and we're in a local class. Only look
13613   //     for functions declared in the immediately-enclosing block scope.
13614   // We recover from invalid scope qualifiers as if they just weren't there.
13615   FunctionDecl *FunctionContainingLocalClass = nullptr;
13616   if ((SS.isInvalid() || !SS.isSet()) &&
13617       (FunctionContainingLocalClass =
13618            cast<CXXRecordDecl>(CurContext)->isLocalClass())) {
13619     // C++11 [class.friend]p11:
13620     //   If a friend declaration appears in a local class and the name
13621     //   specified is an unqualified name, a prior declaration is
13622     //   looked up without considering scopes that are outside the
13623     //   innermost enclosing non-class scope. For a friend function
13624     //   declaration, if there is no prior declaration, the program is
13625     //   ill-formed.
13626 
13627     // Find the innermost enclosing non-class scope. This is the block
13628     // scope containing the local class definition (or for a nested class,
13629     // the outer local class).
13630     DCScope = S->getFnParent();
13631 
13632     // Look up the function name in the scope.
13633     Previous.clear(LookupLocalFriendName);
13634     LookupName(Previous, S, /*AllowBuiltinCreation*/false);
13635 
13636     if (!Previous.empty()) {
13637       // All possible previous declarations must have the same context:
13638       // either they were declared at block scope or they are members of
13639       // one of the enclosing local classes.
13640       DC = Previous.getRepresentativeDecl()->getDeclContext();
13641     } else {
13642       // This is ill-formed, but provide the context that we would have
13643       // declared the function in, if we were permitted to, for error recovery.
13644       DC = FunctionContainingLocalClass;
13645     }
13646     adjustContextForLocalExternDecl(DC);
13647 
13648     // C++ [class.friend]p6:
13649     //   A function can be defined in a friend declaration of a class if and
13650     //   only if the class is a non-local class (9.8), the function name is
13651     //   unqualified, and the function has namespace scope.
13652     if (D.isFunctionDefinition()) {
13653       Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
13654     }
13655 
13656   //   - There's no scope specifier, in which case we just go to the
13657   //     appropriate scope and look for a function or function template
13658   //     there as appropriate.
13659   } else if (SS.isInvalid() || !SS.isSet()) {
13660     // C++11 [namespace.memdef]p3:
13661     //   If the name in a friend declaration is neither qualified nor
13662     //   a template-id and the declaration is a function or an
13663     //   elaborated-type-specifier, the lookup to determine whether
13664     //   the entity has been previously declared shall not consider
13665     //   any scopes outside the innermost enclosing namespace.
13666     bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
13667 
13668     // Find the appropriate context according to the above.
13669     DC = CurContext;
13670 
13671     // Skip class contexts.  If someone can cite chapter and verse
13672     // for this behavior, that would be nice --- it's what GCC and
13673     // EDG do, and it seems like a reasonable intent, but the spec
13674     // really only says that checks for unqualified existing
13675     // declarations should stop at the nearest enclosing namespace,
13676     // not that they should only consider the nearest enclosing
13677     // namespace.
13678     while (DC->isRecord())
13679       DC = DC->getParent();
13680 
13681     DeclContext *LookupDC = DC;
13682     while (LookupDC->isTransparentContext())
13683       LookupDC = LookupDC->getParent();
13684 
13685     while (true) {
13686       LookupQualifiedName(Previous, LookupDC);
13687 
13688       if (!Previous.empty()) {
13689         DC = LookupDC;
13690         break;
13691       }
13692 
13693       if (isTemplateId) {
13694         if (isa<TranslationUnitDecl>(LookupDC)) break;
13695       } else {
13696         if (LookupDC->isFileContext()) break;
13697       }
13698       LookupDC = LookupDC->getParent();
13699     }
13700 
13701     DCScope = getScopeForDeclContext(S, DC);
13702 
13703   //   - There's a non-dependent scope specifier, in which case we
13704   //     compute it and do a previous lookup there for a function
13705   //     or function template.
13706   } else if (!SS.getScopeRep()->isDependent()) {
13707     DC = computeDeclContext(SS);
13708     if (!DC) return nullptr;
13709 
13710     if (RequireCompleteDeclContext(SS, DC)) return nullptr;
13711 
13712     LookupQualifiedName(Previous, DC);
13713 
13714     // Ignore things found implicitly in the wrong scope.
13715     // TODO: better diagnostics for this case.  Suggesting the right
13716     // qualified scope would be nice...
13717     LookupResult::Filter F = Previous.makeFilter();
13718     while (F.hasNext()) {
13719       NamedDecl *D = F.next();
13720       if (!DC->InEnclosingNamespaceSetOf(
13721               D->getDeclContext()->getRedeclContext()))
13722         F.erase();
13723     }
13724     F.done();
13725 
13726     if (Previous.empty()) {
13727       D.setInvalidType();
13728       Diag(Loc, diag::err_qualified_friend_not_found)
13729           << Name << TInfo->getType();
13730       return nullptr;
13731     }
13732 
13733     // C++ [class.friend]p1: A friend of a class is a function or
13734     //   class that is not a member of the class . . .
13735     if (DC->Equals(CurContext))
13736       Diag(DS.getFriendSpecLoc(),
13737            getLangOpts().CPlusPlus11 ?
13738              diag::warn_cxx98_compat_friend_is_member :
13739              diag::err_friend_is_member);
13740 
13741     if (D.isFunctionDefinition()) {
13742       // C++ [class.friend]p6:
13743       //   A function can be defined in a friend declaration of a class if and
13744       //   only if the class is a non-local class (9.8), the function name is
13745       //   unqualified, and the function has namespace scope.
13746       SemaDiagnosticBuilder DB
13747         = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
13748 
13749       DB << SS.getScopeRep();
13750       if (DC->isFileContext())
13751         DB << FixItHint::CreateRemoval(SS.getRange());
13752       SS.clear();
13753     }
13754 
13755   //   - There's a scope specifier that does not match any template
13756   //     parameter lists, in which case we use some arbitrary context,
13757   //     create a method or method template, and wait for instantiation.
13758   //   - There's a scope specifier that does match some template
13759   //     parameter lists, which we don't handle right now.
13760   } else {
13761     if (D.isFunctionDefinition()) {
13762       // C++ [class.friend]p6:
13763       //   A function can be defined in a friend declaration of a class if and
13764       //   only if the class is a non-local class (9.8), the function name is
13765       //   unqualified, and the function has namespace scope.
13766       Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
13767         << SS.getScopeRep();
13768     }
13769 
13770     DC = CurContext;
13771     assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
13772   }
13773 
13774   if (!DC->isRecord()) {
13775     int DiagArg = -1;
13776     switch (D.getName().getKind()) {
13777     case UnqualifiedId::IK_ConstructorTemplateId:
13778     case UnqualifiedId::IK_ConstructorName:
13779       DiagArg = 0;
13780       break;
13781     case UnqualifiedId::IK_DestructorName:
13782       DiagArg = 1;
13783       break;
13784     case UnqualifiedId::IK_ConversionFunctionId:
13785       DiagArg = 2;
13786       break;
13787     case UnqualifiedId::IK_DeductionGuideName:
13788       DiagArg = 3;
13789       break;
13790     case UnqualifiedId::IK_Identifier:
13791     case UnqualifiedId::IK_ImplicitSelfParam:
13792     case UnqualifiedId::IK_LiteralOperatorId:
13793     case UnqualifiedId::IK_OperatorFunctionId:
13794     case UnqualifiedId::IK_TemplateId:
13795       break;
13796     }
13797     // This implies that it has to be an operator or function.
13798     if (DiagArg >= 0) {
13799       Diag(Loc, diag::err_introducing_special_friend) << DiagArg;
13800       return nullptr;
13801     }
13802   }
13803 
13804   // FIXME: This is an egregious hack to cope with cases where the scope stack
13805   // does not contain the declaration context, i.e., in an out-of-line
13806   // definition of a class.
13807   Scope FakeDCScope(S, Scope::DeclScope, Diags);
13808   if (!DCScope) {
13809     FakeDCScope.setEntity(DC);
13810     DCScope = &FakeDCScope;
13811   }
13812 
13813   bool AddToScope = true;
13814   NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
13815                                           TemplateParams, AddToScope);
13816   if (!ND) return nullptr;
13817 
13818   assert(ND->getLexicalDeclContext() == CurContext);
13819 
13820   // If we performed typo correction, we might have added a scope specifier
13821   // and changed the decl context.
13822   DC = ND->getDeclContext();
13823 
13824   // Add the function declaration to the appropriate lookup tables,
13825   // adjusting the redeclarations list as necessary.  We don't
13826   // want to do this yet if the friending class is dependent.
13827   //
13828   // Also update the scope-based lookup if the target context's
13829   // lookup context is in lexical scope.
13830   if (!CurContext->isDependentContext()) {
13831     DC = DC->getRedeclContext();
13832     DC->makeDeclVisibleInContext(ND);
13833     if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
13834       PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
13835   }
13836 
13837   FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
13838                                        D.getIdentifierLoc(), ND,
13839                                        DS.getFriendSpecLoc());
13840   FrD->setAccess(AS_public);
13841   CurContext->addDecl(FrD);
13842 
13843   if (ND->isInvalidDecl()) {
13844     FrD->setInvalidDecl();
13845   } else {
13846     if (DC->isRecord()) CheckFriendAccess(ND);
13847 
13848     FunctionDecl *FD;
13849     if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
13850       FD = FTD->getTemplatedDecl();
13851     else
13852       FD = cast<FunctionDecl>(ND);
13853 
13854     // C++11 [dcl.fct.default]p4: If a friend declaration specifies a
13855     // default argument expression, that declaration shall be a definition
13856     // and shall be the only declaration of the function or function
13857     // template in the translation unit.
13858     if (functionDeclHasDefaultArgument(FD)) {
13859       // We can't look at FD->getPreviousDecl() because it may not have been set
13860       // if we're in a dependent context. If the function is known to be a
13861       // redeclaration, we will have narrowed Previous down to the right decl.
13862       if (D.isRedeclaration()) {
13863         Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_redeclared);
13864         Diag(Previous.getRepresentativeDecl()->getLocation(),
13865              diag::note_previous_declaration);
13866       } else if (!D.isFunctionDefinition())
13867         Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_must_be_def);
13868     }
13869 
13870     // Mark templated-scope function declarations as unsupported.
13871     if (FD->getNumTemplateParameterLists() && SS.isValid()) {
13872       Diag(FD->getLocation(), diag::warn_template_qualified_friend_unsupported)
13873         << SS.getScopeRep() << SS.getRange()
13874         << cast<CXXRecordDecl>(CurContext);
13875       FrD->setUnsupportedFriend(true);
13876     }
13877   }
13878 
13879   return ND;
13880 }
13881 
13882 void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
13883   AdjustDeclIfTemplate(Dcl);
13884 
13885   FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl);
13886   if (!Fn) {
13887     Diag(DelLoc, diag::err_deleted_non_function);
13888     return;
13889   }
13890 
13891   // Deleted function does not have a body.
13892   Fn->setWillHaveBody(false);
13893 
13894   if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
13895     // Don't consider the implicit declaration we generate for explicit
13896     // specializations. FIXME: Do not generate these implicit declarations.
13897     if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization ||
13898          Prev->getPreviousDecl()) &&
13899         !Prev->isDefined()) {
13900       Diag(DelLoc, diag::err_deleted_decl_not_first);
13901       Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(),
13902            Prev->isImplicit() ? diag::note_previous_implicit_declaration
13903                               : diag::note_previous_declaration);
13904     }
13905     // If the declaration wasn't the first, we delete the function anyway for
13906     // recovery.
13907     Fn = Fn->getCanonicalDecl();
13908   }
13909 
13910   // dllimport/dllexport cannot be deleted.
13911   if (const InheritableAttr *DLLAttr = getDLLAttr(Fn)) {
13912     Diag(Fn->getLocation(), diag::err_attribute_dll_deleted) << DLLAttr;
13913     Fn->setInvalidDecl();
13914   }
13915 
13916   if (Fn->isDeleted())
13917     return;
13918 
13919   // See if we're deleting a function which is already known to override a
13920   // non-deleted virtual function.
13921   if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn)) {
13922     bool IssuedDiagnostic = false;
13923     for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
13924                                         E = MD->end_overridden_methods();
13925          I != E; ++I) {
13926       if (!(*MD->begin_overridden_methods())->isDeleted()) {
13927         if (!IssuedDiagnostic) {
13928           Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName();
13929           IssuedDiagnostic = true;
13930         }
13931         Diag((*I)->getLocation(), diag::note_overridden_virtual_function);
13932       }
13933     }
13934     // If this function was implicitly deleted because it was defaulted,
13935     // explain why it was deleted.
13936     if (IssuedDiagnostic && MD->isDefaulted())
13937       ShouldDeleteSpecialMember(MD, getSpecialMember(MD), nullptr,
13938                                 /*Diagnose*/true);
13939   }
13940 
13941   // C++11 [basic.start.main]p3:
13942   //   A program that defines main as deleted [...] is ill-formed.
13943   if (Fn->isMain())
13944     Diag(DelLoc, diag::err_deleted_main);
13945 
13946   // C++11 [dcl.fct.def.delete]p4:
13947   //  A deleted function is implicitly inline.
13948   Fn->setImplicitlyInline();
13949   Fn->setDeletedAsWritten();
13950 }
13951 
13952 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
13953   CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Dcl);
13954 
13955   if (MD) {
13956     if (MD->getParent()->isDependentType()) {
13957       MD->setDefaulted();
13958       MD->setExplicitlyDefaulted();
13959       return;
13960     }
13961 
13962     CXXSpecialMember Member = getSpecialMember(MD);
13963     if (Member == CXXInvalid) {
13964       if (!MD->isInvalidDecl())
13965         Diag(DefaultLoc, diag::err_default_special_members);
13966       return;
13967     }
13968 
13969     MD->setDefaulted();
13970     MD->setExplicitlyDefaulted();
13971 
13972     // Unset that we will have a body for this function. We might not,
13973     // if it turns out to be trivial, and we don't need this marking now
13974     // that we've marked it as defaulted.
13975     MD->setWillHaveBody(false);
13976 
13977     // If this definition appears within the record, do the checking when
13978     // the record is complete.
13979     const FunctionDecl *Primary = MD;
13980     if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
13981       // Ask the template instantiation pattern that actually had the
13982       // '= default' on it.
13983       Primary = Pattern;
13984 
13985     // If the method was defaulted on its first declaration, we will have
13986     // already performed the checking in CheckCompletedCXXClass. Such a
13987     // declaration doesn't trigger an implicit definition.
13988     if (Primary->getCanonicalDecl()->isDefaulted())
13989       return;
13990 
13991     CheckExplicitlyDefaultedSpecialMember(MD);
13992 
13993     if (!MD->isInvalidDecl())
13994       DefineImplicitSpecialMember(*this, MD, DefaultLoc);
13995   } else {
13996     Diag(DefaultLoc, diag::err_default_special_members);
13997   }
13998 }
13999 
14000 static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
14001   for (Stmt *SubStmt : S->children()) {
14002     if (!SubStmt)
14003       continue;
14004     if (isa<ReturnStmt>(SubStmt))
14005       Self.Diag(SubStmt->getLocStart(),
14006            diag::err_return_in_constructor_handler);
14007     if (!isa<Expr>(SubStmt))
14008       SearchForReturnInStmt(Self, SubStmt);
14009   }
14010 }
14011 
14012 void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
14013   for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
14014     CXXCatchStmt *Handler = TryBlock->getHandler(I);
14015     SearchForReturnInStmt(*this, Handler);
14016   }
14017 }
14018 
14019 bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
14020                                              const CXXMethodDecl *Old) {
14021   const FunctionType *NewFT = New->getType()->getAs<FunctionType>();
14022   const FunctionType *OldFT = Old->getType()->getAs<FunctionType>();
14023 
14024   CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv();
14025 
14026   // If the calling conventions match, everything is fine
14027   if (NewCC == OldCC)
14028     return false;
14029 
14030   // If the calling conventions mismatch because the new function is static,
14031   // suppress the calling convention mismatch error; the error about static
14032   // function override (err_static_overrides_virtual from
14033   // Sema::CheckFunctionDeclaration) is more clear.
14034   if (New->getStorageClass() == SC_Static)
14035     return false;
14036 
14037   Diag(New->getLocation(),
14038        diag::err_conflicting_overriding_cc_attributes)
14039     << New->getDeclName() << New->getType() << Old->getType();
14040   Diag(Old->getLocation(), diag::note_overridden_virtual_function);
14041   return true;
14042 }
14043 
14044 bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
14045                                              const CXXMethodDecl *Old) {
14046   QualType NewTy = New->getType()->getAs<FunctionType>()->getReturnType();
14047   QualType OldTy = Old->getType()->getAs<FunctionType>()->getReturnType();
14048 
14049   if (Context.hasSameType(NewTy, OldTy) ||
14050       NewTy->isDependentType() || OldTy->isDependentType())
14051     return false;
14052 
14053   // Check if the return types are covariant
14054   QualType NewClassTy, OldClassTy;
14055 
14056   /// Both types must be pointers or references to classes.
14057   if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
14058     if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
14059       NewClassTy = NewPT->getPointeeType();
14060       OldClassTy = OldPT->getPointeeType();
14061     }
14062   } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
14063     if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
14064       if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
14065         NewClassTy = NewRT->getPointeeType();
14066         OldClassTy = OldRT->getPointeeType();
14067       }
14068     }
14069   }
14070 
14071   // The return types aren't either both pointers or references to a class type.
14072   if (NewClassTy.isNull()) {
14073     Diag(New->getLocation(),
14074          diag::err_different_return_type_for_overriding_virtual_function)
14075         << New->getDeclName() << NewTy << OldTy
14076         << New->getReturnTypeSourceRange();
14077     Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14078         << Old->getReturnTypeSourceRange();
14079 
14080     return true;
14081   }
14082 
14083   if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
14084     // C++14 [class.virtual]p8:
14085     //   If the class type in the covariant return type of D::f differs from
14086     //   that of B::f, the class type in the return type of D::f shall be
14087     //   complete at the point of declaration of D::f or shall be the class
14088     //   type D.
14089     if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
14090       if (!RT->isBeingDefined() &&
14091           RequireCompleteType(New->getLocation(), NewClassTy,
14092                               diag::err_covariant_return_incomplete,
14093                               New->getDeclName()))
14094         return true;
14095     }
14096 
14097     // Check if the new class derives from the old class.
14098     if (!IsDerivedFrom(New->getLocation(), NewClassTy, OldClassTy)) {
14099       Diag(New->getLocation(), diag::err_covariant_return_not_derived)
14100           << New->getDeclName() << NewTy << OldTy
14101           << New->getReturnTypeSourceRange();
14102       Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14103           << Old->getReturnTypeSourceRange();
14104       return true;
14105     }
14106 
14107     // Check if we the conversion from derived to base is valid.
14108     if (CheckDerivedToBaseConversion(
14109             NewClassTy, OldClassTy,
14110             diag::err_covariant_return_inaccessible_base,
14111             diag::err_covariant_return_ambiguous_derived_to_base_conv,
14112             New->getLocation(), New->getReturnTypeSourceRange(),
14113             New->getDeclName(), nullptr)) {
14114       // FIXME: this note won't trigger for delayed access control
14115       // diagnostics, and it's impossible to get an undelayed error
14116       // here from access control during the original parse because
14117       // the ParsingDeclSpec/ParsingDeclarator are still in scope.
14118       Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14119           << Old->getReturnTypeSourceRange();
14120       return true;
14121     }
14122   }
14123 
14124   // The qualifiers of the return types must be the same.
14125   if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
14126     Diag(New->getLocation(),
14127          diag::err_covariant_return_type_different_qualifications)
14128         << New->getDeclName() << NewTy << OldTy
14129         << New->getReturnTypeSourceRange();
14130     Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14131         << Old->getReturnTypeSourceRange();
14132     return true;
14133   }
14134 
14135 
14136   // The new class type must have the same or less qualifiers as the old type.
14137   if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
14138     Diag(New->getLocation(),
14139          diag::err_covariant_return_type_class_type_more_qualified)
14140         << New->getDeclName() << NewTy << OldTy
14141         << New->getReturnTypeSourceRange();
14142     Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14143         << Old->getReturnTypeSourceRange();
14144     return true;
14145   }
14146 
14147   return false;
14148 }
14149 
14150 /// \brief Mark the given method pure.
14151 ///
14152 /// \param Method the method to be marked pure.
14153 ///
14154 /// \param InitRange the source range that covers the "0" initializer.
14155 bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
14156   SourceLocation EndLoc = InitRange.getEnd();
14157   if (EndLoc.isValid())
14158     Method->setRangeEnd(EndLoc);
14159 
14160   if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
14161     Method->setPure();
14162     return false;
14163   }
14164 
14165   if (!Method->isInvalidDecl())
14166     Diag(Method->getLocation(), diag::err_non_virtual_pure)
14167       << Method->getDeclName() << InitRange;
14168   return true;
14169 }
14170 
14171 void Sema::ActOnPureSpecifier(Decl *D, SourceLocation ZeroLoc) {
14172   if (D->getFriendObjectKind())
14173     Diag(D->getLocation(), diag::err_pure_friend);
14174   else if (auto *M = dyn_cast<CXXMethodDecl>(D))
14175     CheckPureMethod(M, ZeroLoc);
14176   else
14177     Diag(D->getLocation(), diag::err_illegal_initializer);
14178 }
14179 
14180 /// \brief Determine whether the given declaration is a static data member.
14181 static bool isStaticDataMember(const Decl *D) {
14182   if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D))
14183     return Var->isStaticDataMember();
14184 
14185   return false;
14186 }
14187 
14188 /// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
14189 /// an initializer for the out-of-line declaration 'Dcl'.  The scope
14190 /// is a fresh scope pushed for just this purpose.
14191 ///
14192 /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
14193 /// static data member of class X, names should be looked up in the scope of
14194 /// class X.
14195 void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
14196   // If there is no declaration, there was an error parsing it.
14197   if (!D || D->isInvalidDecl())
14198     return;
14199 
14200   // We will always have a nested name specifier here, but this declaration
14201   // might not be out of line if the specifier names the current namespace:
14202   //   extern int n;
14203   //   int ::n = 0;
14204   if (D->isOutOfLine())
14205     EnterDeclaratorContext(S, D->getDeclContext());
14206 
14207   // If we are parsing the initializer for a static data member, push a
14208   // new expression evaluation context that is associated with this static
14209   // data member.
14210   if (isStaticDataMember(D))
14211     PushExpressionEvaluationContext(
14212         ExpressionEvaluationContext::PotentiallyEvaluated, D);
14213 }
14214 
14215 /// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
14216 /// initializer for the out-of-line declaration 'D'.
14217 void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
14218   // If there is no declaration, there was an error parsing it.
14219   if (!D || D->isInvalidDecl())
14220     return;
14221 
14222   if (isStaticDataMember(D))
14223     PopExpressionEvaluationContext();
14224 
14225   if (D->isOutOfLine())
14226     ExitDeclaratorContext(S);
14227 }
14228 
14229 /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
14230 /// C++ if/switch/while/for statement.
14231 /// e.g: "if (int x = f()) {...}"
14232 DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
14233   // C++ 6.4p2:
14234   // The declarator shall not specify a function or an array.
14235   // The type-specifier-seq shall not contain typedef and shall not declare a
14236   // new class or enumeration.
14237   assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
14238          "Parser allowed 'typedef' as storage class of condition decl.");
14239 
14240   Decl *Dcl = ActOnDeclarator(S, D);
14241   if (!Dcl)
14242     return true;
14243 
14244   if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
14245     Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
14246       << D.getSourceRange();
14247     return true;
14248   }
14249 
14250   return Dcl;
14251 }
14252 
14253 void Sema::LoadExternalVTableUses() {
14254   if (!ExternalSource)
14255     return;
14256 
14257   SmallVector<ExternalVTableUse, 4> VTables;
14258   ExternalSource->ReadUsedVTables(VTables);
14259   SmallVector<VTableUse, 4> NewUses;
14260   for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
14261     llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
14262       = VTablesUsed.find(VTables[I].Record);
14263     // Even if a definition wasn't required before, it may be required now.
14264     if (Pos != VTablesUsed.end()) {
14265       if (!Pos->second && VTables[I].DefinitionRequired)
14266         Pos->second = true;
14267       continue;
14268     }
14269 
14270     VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
14271     NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
14272   }
14273 
14274   VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
14275 }
14276 
14277 void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
14278                           bool DefinitionRequired) {
14279   // Ignore any vtable uses in unevaluated operands or for classes that do
14280   // not have a vtable.
14281   if (!Class->isDynamicClass() || Class->isDependentContext() ||
14282       CurContext->isDependentContext() || isUnevaluatedContext())
14283     return;
14284 
14285   // Try to insert this class into the map.
14286   LoadExternalVTableUses();
14287   Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
14288   std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
14289     Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
14290   if (!Pos.second) {
14291     // If we already had an entry, check to see if we are promoting this vtable
14292     // to require a definition. If so, we need to reappend to the VTableUses
14293     // list, since we may have already processed the first entry.
14294     if (DefinitionRequired && !Pos.first->second) {
14295       Pos.first->second = true;
14296     } else {
14297       // Otherwise, we can early exit.
14298       return;
14299     }
14300   } else {
14301     // The Microsoft ABI requires that we perform the destructor body
14302     // checks (i.e. operator delete() lookup) when the vtable is marked used, as
14303     // the deleting destructor is emitted with the vtable, not with the
14304     // destructor definition as in the Itanium ABI.
14305     if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
14306       CXXDestructorDecl *DD = Class->getDestructor();
14307       if (DD && DD->isVirtual() && !DD->isDeleted()) {
14308         if (Class->hasUserDeclaredDestructor() && !DD->isDefined()) {
14309           // If this is an out-of-line declaration, marking it referenced will
14310           // not do anything. Manually call CheckDestructor to look up operator
14311           // delete().
14312           ContextRAII SavedContext(*this, DD);
14313           CheckDestructor(DD);
14314         } else {
14315           MarkFunctionReferenced(Loc, Class->getDestructor());
14316         }
14317       }
14318     }
14319   }
14320 
14321   // Local classes need to have their virtual members marked
14322   // immediately. For all other classes, we mark their virtual members
14323   // at the end of the translation unit.
14324   if (Class->isLocalClass())
14325     MarkVirtualMembersReferenced(Loc, Class);
14326   else
14327     VTableUses.push_back(std::make_pair(Class, Loc));
14328 }
14329 
14330 bool Sema::DefineUsedVTables() {
14331   LoadExternalVTableUses();
14332   if (VTableUses.empty())
14333     return false;
14334 
14335   // Note: The VTableUses vector could grow as a result of marking
14336   // the members of a class as "used", so we check the size each
14337   // time through the loop and prefer indices (which are stable) to
14338   // iterators (which are not).
14339   bool DefinedAnything = false;
14340   for (unsigned I = 0; I != VTableUses.size(); ++I) {
14341     CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
14342     if (!Class)
14343       continue;
14344     TemplateSpecializationKind ClassTSK =
14345         Class->getTemplateSpecializationKind();
14346 
14347     SourceLocation Loc = VTableUses[I].second;
14348 
14349     bool DefineVTable = true;
14350 
14351     // If this class has a key function, but that key function is
14352     // defined in another translation unit, we don't need to emit the
14353     // vtable even though we're using it.
14354     const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class);
14355     if (KeyFunction && !KeyFunction->hasBody()) {
14356       // The key function is in another translation unit.
14357       DefineVTable = false;
14358       TemplateSpecializationKind TSK =
14359           KeyFunction->getTemplateSpecializationKind();
14360       assert(TSK != TSK_ExplicitInstantiationDefinition &&
14361              TSK != TSK_ImplicitInstantiation &&
14362              "Instantiations don't have key functions");
14363       (void)TSK;
14364     } else if (!KeyFunction) {
14365       // If we have a class with no key function that is the subject
14366       // of an explicit instantiation declaration, suppress the
14367       // vtable; it will live with the explicit instantiation
14368       // definition.
14369       bool IsExplicitInstantiationDeclaration =
14370           ClassTSK == TSK_ExplicitInstantiationDeclaration;
14371       for (auto R : Class->redecls()) {
14372         TemplateSpecializationKind TSK
14373           = cast<CXXRecordDecl>(R)->getTemplateSpecializationKind();
14374         if (TSK == TSK_ExplicitInstantiationDeclaration)
14375           IsExplicitInstantiationDeclaration = true;
14376         else if (TSK == TSK_ExplicitInstantiationDefinition) {
14377           IsExplicitInstantiationDeclaration = false;
14378           break;
14379         }
14380       }
14381 
14382       if (IsExplicitInstantiationDeclaration)
14383         DefineVTable = false;
14384     }
14385 
14386     // The exception specifications for all virtual members may be needed even
14387     // if we are not providing an authoritative form of the vtable in this TU.
14388     // We may choose to emit it available_externally anyway.
14389     if (!DefineVTable) {
14390       MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
14391       continue;
14392     }
14393 
14394     // Mark all of the virtual members of this class as referenced, so
14395     // that we can build a vtable. Then, tell the AST consumer that a
14396     // vtable for this class is required.
14397     DefinedAnything = true;
14398     MarkVirtualMembersReferenced(Loc, Class);
14399     CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
14400     if (VTablesUsed[Canonical])
14401       Consumer.HandleVTable(Class);
14402 
14403     // Warn if we're emitting a weak vtable. The vtable will be weak if there is
14404     // no key function or the key function is inlined. Don't warn in C++ ABIs
14405     // that lack key functions, since the user won't be able to make one.
14406     if (Context.getTargetInfo().getCXXABI().hasKeyFunctions() &&
14407         Class->isExternallyVisible() && ClassTSK != TSK_ImplicitInstantiation) {
14408       const FunctionDecl *KeyFunctionDef = nullptr;
14409       if (!KeyFunction || (KeyFunction->hasBody(KeyFunctionDef) &&
14410                            KeyFunctionDef->isInlined())) {
14411         Diag(Class->getLocation(),
14412              ClassTSK == TSK_ExplicitInstantiationDefinition
14413                  ? diag::warn_weak_template_vtable
14414                  : diag::warn_weak_vtable)
14415             << Class;
14416       }
14417     }
14418   }
14419   VTableUses.clear();
14420 
14421   return DefinedAnything;
14422 }
14423 
14424 void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
14425                                                  const CXXRecordDecl *RD) {
14426   for (const auto *I : RD->methods())
14427     if (I->isVirtual() && !I->isPure())
14428       ResolveExceptionSpec(Loc, I->getType()->castAs<FunctionProtoType>());
14429 }
14430 
14431 void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
14432                                         const CXXRecordDecl *RD) {
14433   // Mark all functions which will appear in RD's vtable as used.
14434   CXXFinalOverriderMap FinalOverriders;
14435   RD->getFinalOverriders(FinalOverriders);
14436   for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
14437                                             E = FinalOverriders.end();
14438        I != E; ++I) {
14439     for (OverridingMethods::const_iterator OI = I->second.begin(),
14440                                            OE = I->second.end();
14441          OI != OE; ++OI) {
14442       assert(OI->second.size() > 0 && "no final overrider");
14443       CXXMethodDecl *Overrider = OI->second.front().Method;
14444 
14445       // C++ [basic.def.odr]p2:
14446       //   [...] A virtual member function is used if it is not pure. [...]
14447       if (!Overrider->isPure())
14448         MarkFunctionReferenced(Loc, Overrider);
14449     }
14450   }
14451 
14452   // Only classes that have virtual bases need a VTT.
14453   if (RD->getNumVBases() == 0)
14454     return;
14455 
14456   for (const auto &I : RD->bases()) {
14457     const CXXRecordDecl *Base =
14458         cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl());
14459     if (Base->getNumVBases() == 0)
14460       continue;
14461     MarkVirtualMembersReferenced(Loc, Base);
14462   }
14463 }
14464 
14465 /// SetIvarInitializers - This routine builds initialization ASTs for the
14466 /// Objective-C implementation whose ivars need be initialized.
14467 void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
14468   if (!getLangOpts().CPlusPlus)
14469     return;
14470   if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
14471     SmallVector<ObjCIvarDecl*, 8> ivars;
14472     CollectIvarsToConstructOrDestruct(OID, ivars);
14473     if (ivars.empty())
14474       return;
14475     SmallVector<CXXCtorInitializer*, 32> AllToInit;
14476     for (unsigned i = 0; i < ivars.size(); i++) {
14477       FieldDecl *Field = ivars[i];
14478       if (Field->isInvalidDecl())
14479         continue;
14480 
14481       CXXCtorInitializer *Member;
14482       InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
14483       InitializationKind InitKind =
14484         InitializationKind::CreateDefault(ObjCImplementation->getLocation());
14485 
14486       InitializationSequence InitSeq(*this, InitEntity, InitKind, None);
14487       ExprResult MemberInit =
14488         InitSeq.Perform(*this, InitEntity, InitKind, None);
14489       MemberInit = MaybeCreateExprWithCleanups(MemberInit);
14490       // Note, MemberInit could actually come back empty if no initialization
14491       // is required (e.g., because it would call a trivial default constructor)
14492       if (!MemberInit.get() || MemberInit.isInvalid())
14493         continue;
14494 
14495       Member =
14496         new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
14497                                          SourceLocation(),
14498                                          MemberInit.getAs<Expr>(),
14499                                          SourceLocation());
14500       AllToInit.push_back(Member);
14501 
14502       // Be sure that the destructor is accessible and is marked as referenced.
14503       if (const RecordType *RecordTy =
14504               Context.getBaseElementType(Field->getType())
14505                   ->getAs<RecordType>()) {
14506         CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
14507         if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
14508           MarkFunctionReferenced(Field->getLocation(), Destructor);
14509           CheckDestructorAccess(Field->getLocation(), Destructor,
14510                             PDiag(diag::err_access_dtor_ivar)
14511                               << Context.getBaseElementType(Field->getType()));
14512         }
14513       }
14514     }
14515     ObjCImplementation->setIvarInitializers(Context,
14516                                             AllToInit.data(), AllToInit.size());
14517   }
14518 }
14519 
14520 static
14521 void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
14522                            llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
14523                            llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
14524                            llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
14525                            Sema &S) {
14526   if (Ctor->isInvalidDecl())
14527     return;
14528 
14529   CXXConstructorDecl *Target = Ctor->getTargetConstructor();
14530 
14531   // Target may not be determinable yet, for instance if this is a dependent
14532   // call in an uninstantiated template.
14533   if (Target) {
14534     const FunctionDecl *FNTarget = nullptr;
14535     (void)Target->hasBody(FNTarget);
14536     Target = const_cast<CXXConstructorDecl*>(
14537       cast_or_null<CXXConstructorDecl>(FNTarget));
14538   }
14539 
14540   CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
14541                      // Avoid dereferencing a null pointer here.
14542                      *TCanonical = Target? Target->getCanonicalDecl() : nullptr;
14543 
14544   if (!Current.insert(Canonical).second)
14545     return;
14546 
14547   // We know that beyond here, we aren't chaining into a cycle.
14548   if (!Target || !Target->isDelegatingConstructor() ||
14549       Target->isInvalidDecl() || Valid.count(TCanonical)) {
14550     Valid.insert(Current.begin(), Current.end());
14551     Current.clear();
14552   // We've hit a cycle.
14553   } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
14554              Current.count(TCanonical)) {
14555     // If we haven't diagnosed this cycle yet, do so now.
14556     if (!Invalid.count(TCanonical)) {
14557       S.Diag((*Ctor->init_begin())->getSourceLocation(),
14558              diag::warn_delegating_ctor_cycle)
14559         << Ctor;
14560 
14561       // Don't add a note for a function delegating directly to itself.
14562       if (TCanonical != Canonical)
14563         S.Diag(Target->getLocation(), diag::note_it_delegates_to);
14564 
14565       CXXConstructorDecl *C = Target;
14566       while (C->getCanonicalDecl() != Canonical) {
14567         const FunctionDecl *FNTarget = nullptr;
14568         (void)C->getTargetConstructor()->hasBody(FNTarget);
14569         assert(FNTarget && "Ctor cycle through bodiless function");
14570 
14571         C = const_cast<CXXConstructorDecl*>(
14572           cast<CXXConstructorDecl>(FNTarget));
14573         S.Diag(C->getLocation(), diag::note_which_delegates_to);
14574       }
14575     }
14576 
14577     Invalid.insert(Current.begin(), Current.end());
14578     Current.clear();
14579   } else {
14580     DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
14581   }
14582 }
14583 
14584 
14585 void Sema::CheckDelegatingCtorCycles() {
14586   llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
14587 
14588   for (DelegatingCtorDeclsType::iterator
14589          I = DelegatingCtorDecls.begin(ExternalSource),
14590          E = DelegatingCtorDecls.end();
14591        I != E; ++I)
14592     DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
14593 
14594   for (llvm::SmallSet<CXXConstructorDecl *, 4>::iterator CI = Invalid.begin(),
14595                                                          CE = Invalid.end();
14596        CI != CE; ++CI)
14597     (*CI)->setInvalidDecl();
14598 }
14599 
14600 namespace {
14601   /// \brief AST visitor that finds references to the 'this' expression.
14602   class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
14603     Sema &S;
14604 
14605   public:
14606     explicit FindCXXThisExpr(Sema &S) : S(S) { }
14607 
14608     bool VisitCXXThisExpr(CXXThisExpr *E) {
14609       S.Diag(E->getLocation(), diag::err_this_static_member_func)
14610         << E->isImplicit();
14611       return false;
14612     }
14613   };
14614 }
14615 
14616 bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
14617   TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
14618   if (!TSInfo)
14619     return false;
14620 
14621   TypeLoc TL = TSInfo->getTypeLoc();
14622   FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
14623   if (!ProtoTL)
14624     return false;
14625 
14626   // C++11 [expr.prim.general]p3:
14627   //   [The expression this] shall not appear before the optional
14628   //   cv-qualifier-seq and it shall not appear within the declaration of a
14629   //   static member function (although its type and value category are defined
14630   //   within a static member function as they are within a non-static member
14631   //   function). [ Note: this is because declaration matching does not occur
14632   //  until the complete declarator is known. - end note ]
14633   const FunctionProtoType *Proto = ProtoTL.getTypePtr();
14634   FindCXXThisExpr Finder(*this);
14635 
14636   // If the return type came after the cv-qualifier-seq, check it now.
14637   if (Proto->hasTrailingReturn() &&
14638       !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc()))
14639     return true;
14640 
14641   // Check the exception specification.
14642   if (checkThisInStaticMemberFunctionExceptionSpec(Method))
14643     return true;
14644 
14645   return checkThisInStaticMemberFunctionAttributes(Method);
14646 }
14647 
14648 bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
14649   TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
14650   if (!TSInfo)
14651     return false;
14652 
14653   TypeLoc TL = TSInfo->getTypeLoc();
14654   FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
14655   if (!ProtoTL)
14656     return false;
14657 
14658   const FunctionProtoType *Proto = ProtoTL.getTypePtr();
14659   FindCXXThisExpr Finder(*this);
14660 
14661   switch (Proto->getExceptionSpecType()) {
14662   case EST_Unparsed:
14663   case EST_Uninstantiated:
14664   case EST_Unevaluated:
14665   case EST_BasicNoexcept:
14666   case EST_DynamicNone:
14667   case EST_MSAny:
14668   case EST_None:
14669     break;
14670 
14671   case EST_ComputedNoexcept:
14672     if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
14673       return true;
14674     LLVM_FALLTHROUGH;
14675 
14676   case EST_Dynamic:
14677     for (const auto &E : Proto->exceptions()) {
14678       if (!Finder.TraverseType(E))
14679         return true;
14680     }
14681     break;
14682   }
14683 
14684   return false;
14685 }
14686 
14687 bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
14688   FindCXXThisExpr Finder(*this);
14689 
14690   // Check attributes.
14691   for (const auto *A : Method->attrs()) {
14692     // FIXME: This should be emitted by tblgen.
14693     Expr *Arg = nullptr;
14694     ArrayRef<Expr *> Args;
14695     if (const auto *G = dyn_cast<GuardedByAttr>(A))
14696       Arg = G->getArg();
14697     else if (const auto *G = dyn_cast<PtGuardedByAttr>(A))
14698       Arg = G->getArg();
14699     else if (const auto *AA = dyn_cast<AcquiredAfterAttr>(A))
14700       Args = llvm::makeArrayRef(AA->args_begin(), AA->args_size());
14701     else if (const auto *AB = dyn_cast<AcquiredBeforeAttr>(A))
14702       Args = llvm::makeArrayRef(AB->args_begin(), AB->args_size());
14703     else if (const auto *ETLF = dyn_cast<ExclusiveTrylockFunctionAttr>(A)) {
14704       Arg = ETLF->getSuccessValue();
14705       Args = llvm::makeArrayRef(ETLF->args_begin(), ETLF->args_size());
14706     } else if (const auto *STLF = dyn_cast<SharedTrylockFunctionAttr>(A)) {
14707       Arg = STLF->getSuccessValue();
14708       Args = llvm::makeArrayRef(STLF->args_begin(), STLF->args_size());
14709     } else if (const auto *LR = dyn_cast<LockReturnedAttr>(A))
14710       Arg = LR->getArg();
14711     else if (const auto *LE = dyn_cast<LocksExcludedAttr>(A))
14712       Args = llvm::makeArrayRef(LE->args_begin(), LE->args_size());
14713     else if (const auto *RC = dyn_cast<RequiresCapabilityAttr>(A))
14714       Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size());
14715     else if (const auto *AC = dyn_cast<AcquireCapabilityAttr>(A))
14716       Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size());
14717     else if (const auto *AC = dyn_cast<TryAcquireCapabilityAttr>(A))
14718       Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size());
14719     else if (const auto *RC = dyn_cast<ReleaseCapabilityAttr>(A))
14720       Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size());
14721 
14722     if (Arg && !Finder.TraverseStmt(Arg))
14723       return true;
14724 
14725     for (unsigned I = 0, N = Args.size(); I != N; ++I) {
14726       if (!Finder.TraverseStmt(Args[I]))
14727         return true;
14728     }
14729   }
14730 
14731   return false;
14732 }
14733 
14734 void Sema::checkExceptionSpecification(
14735     bool IsTopLevel, ExceptionSpecificationType EST,
14736     ArrayRef<ParsedType> DynamicExceptions,
14737     ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr,
14738     SmallVectorImpl<QualType> &Exceptions,
14739     FunctionProtoType::ExceptionSpecInfo &ESI) {
14740   Exceptions.clear();
14741   ESI.Type = EST;
14742   if (EST == EST_Dynamic) {
14743     Exceptions.reserve(DynamicExceptions.size());
14744     for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
14745       // FIXME: Preserve type source info.
14746       QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
14747 
14748       if (IsTopLevel) {
14749         SmallVector<UnexpandedParameterPack, 2> Unexpanded;
14750         collectUnexpandedParameterPacks(ET, Unexpanded);
14751         if (!Unexpanded.empty()) {
14752           DiagnoseUnexpandedParameterPacks(
14753               DynamicExceptionRanges[ei].getBegin(), UPPC_ExceptionType,
14754               Unexpanded);
14755           continue;
14756         }
14757       }
14758 
14759       // Check that the type is valid for an exception spec, and
14760       // drop it if not.
14761       if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
14762         Exceptions.push_back(ET);
14763     }
14764     ESI.Exceptions = Exceptions;
14765     return;
14766   }
14767 
14768   if (EST == EST_ComputedNoexcept) {
14769     // If an error occurred, there's no expression here.
14770     if (NoexceptExpr) {
14771       assert((NoexceptExpr->isTypeDependent() ||
14772               NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
14773               Context.BoolTy) &&
14774              "Parser should have made sure that the expression is boolean");
14775       if (IsTopLevel && NoexceptExpr &&
14776           DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
14777         ESI.Type = EST_BasicNoexcept;
14778         return;
14779       }
14780 
14781       if (!NoexceptExpr->isValueDependent())
14782         NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, nullptr,
14783                          diag::err_noexcept_needs_constant_expression,
14784                          /*AllowFold*/ false).get();
14785       ESI.NoexceptExpr = NoexceptExpr;
14786     }
14787     return;
14788   }
14789 }
14790 
14791 void Sema::actOnDelayedExceptionSpecification(Decl *MethodD,
14792              ExceptionSpecificationType EST,
14793              SourceRange SpecificationRange,
14794              ArrayRef<ParsedType> DynamicExceptions,
14795              ArrayRef<SourceRange> DynamicExceptionRanges,
14796              Expr *NoexceptExpr) {
14797   if (!MethodD)
14798     return;
14799 
14800   // Dig out the method we're referring to.
14801   if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(MethodD))
14802     MethodD = FunTmpl->getTemplatedDecl();
14803 
14804   CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(MethodD);
14805   if (!Method)
14806     return;
14807 
14808   // Check the exception specification.
14809   llvm::SmallVector<QualType, 4> Exceptions;
14810   FunctionProtoType::ExceptionSpecInfo ESI;
14811   checkExceptionSpecification(/*IsTopLevel*/true, EST, DynamicExceptions,
14812                               DynamicExceptionRanges, NoexceptExpr, Exceptions,
14813                               ESI);
14814 
14815   // Update the exception specification on the function type.
14816   Context.adjustExceptionSpec(Method, ESI, /*AsWritten*/true);
14817 
14818   if (Method->isStatic())
14819     checkThisInStaticMemberFunctionExceptionSpec(Method);
14820 
14821   if (Method->isVirtual()) {
14822     // Check overrides, which we previously had to delay.
14823     for (CXXMethodDecl::method_iterator O = Method->begin_overridden_methods(),
14824                                      OEnd = Method->end_overridden_methods();
14825          O != OEnd; ++O)
14826       CheckOverridingFunctionExceptionSpec(Method, *O);
14827   }
14828 }
14829 
14830 /// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class.
14831 ///
14832 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record,
14833                                        SourceLocation DeclStart,
14834                                        Declarator &D, Expr *BitWidth,
14835                                        InClassInitStyle InitStyle,
14836                                        AccessSpecifier AS,
14837                                        AttributeList *MSPropertyAttr) {
14838   IdentifierInfo *II = D.getIdentifier();
14839   if (!II) {
14840     Diag(DeclStart, diag::err_anonymous_property);
14841     return nullptr;
14842   }
14843   SourceLocation Loc = D.getIdentifierLoc();
14844 
14845   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
14846   QualType T = TInfo->getType();
14847   if (getLangOpts().CPlusPlus) {
14848     CheckExtraCXXDefaultArguments(D);
14849 
14850     if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
14851                                         UPPC_DataMemberType)) {
14852       D.setInvalidType();
14853       T = Context.IntTy;
14854       TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
14855     }
14856   }
14857 
14858   DiagnoseFunctionSpecifiers(D.getDeclSpec());
14859 
14860   if (D.getDeclSpec().isInlineSpecified())
14861     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
14862         << getLangOpts().CPlusPlus1z;
14863   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
14864     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
14865          diag::err_invalid_thread)
14866       << DeclSpec::getSpecifierName(TSCS);
14867 
14868   // Check to see if this name was declared as a member previously
14869   NamedDecl *PrevDecl = nullptr;
14870   LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration);
14871   LookupName(Previous, S);
14872   switch (Previous.getResultKind()) {
14873   case LookupResult::Found:
14874   case LookupResult::FoundUnresolvedValue:
14875     PrevDecl = Previous.getAsSingle<NamedDecl>();
14876     break;
14877 
14878   case LookupResult::FoundOverloaded:
14879     PrevDecl = Previous.getRepresentativeDecl();
14880     break;
14881 
14882   case LookupResult::NotFound:
14883   case LookupResult::NotFoundInCurrentInstantiation:
14884   case LookupResult::Ambiguous:
14885     break;
14886   }
14887 
14888   if (PrevDecl && PrevDecl->isTemplateParameter()) {
14889     // Maybe we will complain about the shadowed template parameter.
14890     DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
14891     // Just pretend that we didn't see the previous declaration.
14892     PrevDecl = nullptr;
14893   }
14894 
14895   if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
14896     PrevDecl = nullptr;
14897 
14898   SourceLocation TSSL = D.getLocStart();
14899   const AttributeList::PropertyData &Data = MSPropertyAttr->getPropertyData();
14900   MSPropertyDecl *NewPD = MSPropertyDecl::Create(
14901       Context, Record, Loc, II, T, TInfo, TSSL, Data.GetterId, Data.SetterId);
14902   ProcessDeclAttributes(TUScope, NewPD, D);
14903   NewPD->setAccess(AS);
14904 
14905   if (NewPD->isInvalidDecl())
14906     Record->setInvalidDecl();
14907 
14908   if (D.getDeclSpec().isModulePrivateSpecified())
14909     NewPD->setModulePrivate();
14910 
14911   if (NewPD->isInvalidDecl() && PrevDecl) {
14912     // Don't introduce NewFD into scope; there's already something
14913     // with the same name in the same scope.
14914   } else if (II) {
14915     PushOnScopeChains(NewPD, S);
14916   } else
14917     Record->addDecl(NewPD);
14918 
14919   return NewPD;
14920 }
14921