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   if (EST == EST_None && Method->hasAttr<NoThrowAttr>())
171     EST = EST_BasicNoexcept;
172 
173   switch(EST) {
174   // If this function can throw any exceptions, make a note of that.
175   case EST_MSAny:
176   case EST_None:
177     ClearExceptions();
178     ComputedEST = EST;
179     return;
180   // FIXME: If the call to this decl is using any of its default arguments, we
181   // need to search them for potentially-throwing calls.
182   // If this function has a basic noexcept, it doesn't affect the outcome.
183   case EST_BasicNoexcept:
184     return;
185   // If we're still at noexcept(true) and there's a nothrow() callee,
186   // change to that specification.
187   case EST_DynamicNone:
188     if (ComputedEST == EST_BasicNoexcept)
189       ComputedEST = EST_DynamicNone;
190     return;
191   // Check out noexcept specs.
192   case EST_ComputedNoexcept:
193   {
194     FunctionProtoType::NoexceptResult NR =
195         Proto->getNoexceptSpec(Self->Context);
196     assert(NR != FunctionProtoType::NR_NoNoexcept &&
197            "Must have noexcept result for EST_ComputedNoexcept.");
198     assert(NR != FunctionProtoType::NR_Dependent &&
199            "Should not generate implicit declarations for dependent cases, "
200            "and don't know how to handle them anyway.");
201     // noexcept(false) -> no spec on the new function
202     if (NR == FunctionProtoType::NR_Throw) {
203       ClearExceptions();
204       ComputedEST = EST_None;
205     }
206     // noexcept(true) won't change anything either.
207     return;
208   }
209   default:
210     break;
211   }
212   assert(EST == EST_Dynamic && "EST case not considered earlier.");
213   assert(ComputedEST != EST_None &&
214          "Shouldn't collect exceptions when throw-all is guaranteed.");
215   ComputedEST = EST_Dynamic;
216   // Record the exceptions in this function's exception specification.
217   for (const auto &E : Proto->exceptions())
218     if (ExceptionsSeen.insert(Self->Context.getCanonicalType(E)).second)
219       Exceptions.push_back(E);
220 }
221 
222 void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
223   if (!E || ComputedEST == EST_MSAny)
224     return;
225 
226   // FIXME:
227   //
228   // C++0x [except.spec]p14:
229   //   [An] implicit exception-specification specifies the type-id T if and
230   // only if T is allowed by the exception-specification of a function directly
231   // invoked by f's implicit definition; f shall allow all exceptions if any
232   // function it directly invokes allows all exceptions, and f shall allow no
233   // exceptions if every function it directly invokes allows no exceptions.
234   //
235   // Note in particular that if an implicit exception-specification is generated
236   // for a function containing a throw-expression, that specification can still
237   // be noexcept(true).
238   //
239   // Note also that 'directly invoked' is not defined in the standard, and there
240   // is no indication that we should only consider potentially-evaluated calls.
241   //
242   // Ultimately we should implement the intent of the standard: the exception
243   // specification should be the set of exceptions which can be thrown by the
244   // implicit definition. For now, we assume that any non-nothrow expression can
245   // throw any exception.
246 
247   if (Self->canThrow(E))
248     ComputedEST = EST_None;
249 }
250 
251 bool
252 Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
253                               SourceLocation EqualLoc) {
254   if (RequireCompleteType(Param->getLocation(), Param->getType(),
255                           diag::err_typecheck_decl_incomplete_type)) {
256     Param->setInvalidDecl();
257     return true;
258   }
259 
260   // C++ [dcl.fct.default]p5
261   //   A default argument expression is implicitly converted (clause
262   //   4) to the parameter type. The default argument expression has
263   //   the same semantic constraints as the initializer expression in
264   //   a declaration of a variable of the parameter type, using the
265   //   copy-initialization semantics (8.5).
266   InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
267                                                                     Param);
268   InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
269                                                            EqualLoc);
270   InitializationSequence InitSeq(*this, Entity, Kind, Arg);
271   ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
272   if (Result.isInvalid())
273     return true;
274   Arg = Result.getAs<Expr>();
275 
276   CheckCompletedExpr(Arg, EqualLoc);
277   Arg = MaybeCreateExprWithCleanups(Arg);
278 
279   // Okay: add the default argument to the parameter
280   Param->setDefaultArg(Arg);
281 
282   // We have already instantiated this parameter; provide each of the
283   // instantiations with the uninstantiated default argument.
284   UnparsedDefaultArgInstantiationsMap::iterator InstPos
285     = UnparsedDefaultArgInstantiations.find(Param);
286   if (InstPos != UnparsedDefaultArgInstantiations.end()) {
287     for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
288       InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
289 
290     // We're done tracking this parameter's instantiations.
291     UnparsedDefaultArgInstantiations.erase(InstPos);
292   }
293 
294   return false;
295 }
296 
297 /// ActOnParamDefaultArgument - Check whether the default argument
298 /// provided for a function parameter is well-formed. If so, attach it
299 /// to the parameter declaration.
300 void
301 Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
302                                 Expr *DefaultArg) {
303   if (!param || !DefaultArg)
304     return;
305 
306   ParmVarDecl *Param = cast<ParmVarDecl>(param);
307   UnparsedDefaultArgLocs.erase(Param);
308 
309   // Default arguments are only permitted in C++
310   if (!getLangOpts().CPlusPlus) {
311     Diag(EqualLoc, diag::err_param_default_argument)
312       << DefaultArg->getSourceRange();
313     Param->setInvalidDecl();
314     return;
315   }
316 
317   // Check for unexpanded parameter packs.
318   if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
319     Param->setInvalidDecl();
320     return;
321   }
322 
323   // C++11 [dcl.fct.default]p3
324   //   A default argument expression [...] shall not be specified for a
325   //   parameter pack.
326   if (Param->isParameterPack()) {
327     Diag(EqualLoc, diag::err_param_default_argument_on_parameter_pack)
328         << DefaultArg->getSourceRange();
329     return;
330   }
331 
332   // Check that the default argument is well-formed
333   CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
334   if (DefaultArgChecker.Visit(DefaultArg)) {
335     Param->setInvalidDecl();
336     return;
337   }
338 
339   SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
340 }
341 
342 /// ActOnParamUnparsedDefaultArgument - We've seen a default
343 /// argument for a function parameter, but we can't parse it yet
344 /// because we're inside a class definition. Note that this default
345 /// argument will be parsed later.
346 void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
347                                              SourceLocation EqualLoc,
348                                              SourceLocation ArgLoc) {
349   if (!param)
350     return;
351 
352   ParmVarDecl *Param = cast<ParmVarDecl>(param);
353   Param->setUnparsedDefaultArg();
354   UnparsedDefaultArgLocs[Param] = ArgLoc;
355 }
356 
357 /// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
358 /// the default argument for the parameter param failed.
359 void Sema::ActOnParamDefaultArgumentError(Decl *param,
360                                           SourceLocation EqualLoc) {
361   if (!param)
362     return;
363 
364   ParmVarDecl *Param = cast<ParmVarDecl>(param);
365   Param->setInvalidDecl();
366   UnparsedDefaultArgLocs.erase(Param);
367   Param->setDefaultArg(new(Context)
368                        OpaqueValueExpr(EqualLoc,
369                                        Param->getType().getNonReferenceType(),
370                                        VK_RValue));
371 }
372 
373 /// CheckExtraCXXDefaultArguments - Check for any extra default
374 /// arguments in the declarator, which is not a function declaration
375 /// or definition and therefore is not permitted to have default
376 /// arguments. This routine should be invoked for every declarator
377 /// that is not a function declaration or definition.
378 void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
379   // C++ [dcl.fct.default]p3
380   //   A default argument expression shall be specified only in the
381   //   parameter-declaration-clause of a function declaration or in a
382   //   template-parameter (14.1). It shall not be specified for a
383   //   parameter pack. If it is specified in a
384   //   parameter-declaration-clause, it shall not occur within a
385   //   declarator or abstract-declarator of a parameter-declaration.
386   bool MightBeFunction = D.isFunctionDeclarationContext();
387   for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
388     DeclaratorChunk &chunk = D.getTypeObject(i);
389     if (chunk.Kind == DeclaratorChunk::Function) {
390       if (MightBeFunction) {
391         // This is a function declaration. It can have default arguments, but
392         // keep looking in case its return type is a function type with default
393         // arguments.
394         MightBeFunction = false;
395         continue;
396       }
397       for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e;
398            ++argIdx) {
399         ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param);
400         if (Param->hasUnparsedDefaultArg()) {
401           std::unique_ptr<CachedTokens> Toks =
402               std::move(chunk.Fun.Params[argIdx].DefaultArgTokens);
403           SourceRange SR;
404           if (Toks->size() > 1)
405             SR = SourceRange((*Toks)[1].getLocation(),
406                              Toks->back().getLocation());
407           else
408             SR = UnparsedDefaultArgLocs[Param];
409           Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
410             << SR;
411         } else if (Param->getDefaultArg()) {
412           Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
413             << Param->getDefaultArg()->getSourceRange();
414           Param->setDefaultArg(nullptr);
415         }
416       }
417     } else if (chunk.Kind != DeclaratorChunk::Paren) {
418       MightBeFunction = false;
419     }
420   }
421 }
422 
423 static bool functionDeclHasDefaultArgument(const FunctionDecl *FD) {
424   for (unsigned NumParams = FD->getNumParams(); NumParams > 0; --NumParams) {
425     const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1);
426     if (!PVD->hasDefaultArg())
427       return false;
428     if (!PVD->hasInheritedDefaultArg())
429       return true;
430   }
431   return false;
432 }
433 
434 /// MergeCXXFunctionDecl - Merge two declarations of the same C++
435 /// function, once we already know that they have the same
436 /// type. Subroutine of MergeFunctionDecl. Returns true if there was an
437 /// error, false otherwise.
438 bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
439                                 Scope *S) {
440   bool Invalid = false;
441 
442   // The declaration context corresponding to the scope is the semantic
443   // parent, unless this is a local function declaration, in which case
444   // it is that surrounding function.
445   DeclContext *ScopeDC = New->isLocalExternDecl()
446                              ? New->getLexicalDeclContext()
447                              : New->getDeclContext();
448 
449   // Find the previous declaration for the purpose of default arguments.
450   FunctionDecl *PrevForDefaultArgs = Old;
451   for (/**/; PrevForDefaultArgs;
452        // Don't bother looking back past the latest decl if this is a local
453        // extern declaration; nothing else could work.
454        PrevForDefaultArgs = New->isLocalExternDecl()
455                                 ? nullptr
456                                 : PrevForDefaultArgs->getPreviousDecl()) {
457     // Ignore hidden declarations.
458     if (!LookupResult::isVisible(*this, PrevForDefaultArgs))
459       continue;
460 
461     if (S && !isDeclInScope(PrevForDefaultArgs, ScopeDC, S) &&
462         !New->isCXXClassMember()) {
463       // Ignore default arguments of old decl if they are not in
464       // the same scope and this is not an out-of-line definition of
465       // a member function.
466       continue;
467     }
468 
469     if (PrevForDefaultArgs->isLocalExternDecl() != New->isLocalExternDecl()) {
470       // If only one of these is a local function declaration, then they are
471       // declared in different scopes, even though isDeclInScope may think
472       // they're in the same scope. (If both are local, the scope check is
473       // sufficient, and if neither is local, then they are in the same scope.)
474       continue;
475     }
476 
477     // We found the right previous declaration.
478     break;
479   }
480 
481   // C++ [dcl.fct.default]p4:
482   //   For non-template functions, default arguments can be added in
483   //   later declarations of a function in the same
484   //   scope. Declarations in different scopes have completely
485   //   distinct sets of default arguments. That is, declarations in
486   //   inner scopes do not acquire default arguments from
487   //   declarations in outer scopes, and vice versa. In a given
488   //   function declaration, all parameters subsequent to a
489   //   parameter with a default argument shall have default
490   //   arguments supplied in this or previous declarations. A
491   //   default argument shall not be redefined by a later
492   //   declaration (not even to the same value).
493   //
494   // C++ [dcl.fct.default]p6:
495   //   Except for member functions of class templates, the default arguments
496   //   in a member function definition that appears outside of the class
497   //   definition are added to the set of default arguments provided by the
498   //   member function declaration in the class definition.
499   for (unsigned p = 0, NumParams = PrevForDefaultArgs
500                                        ? PrevForDefaultArgs->getNumParams()
501                                        : 0;
502        p < NumParams; ++p) {
503     ParmVarDecl *OldParam = PrevForDefaultArgs->getParamDecl(p);
504     ParmVarDecl *NewParam = New->getParamDecl(p);
505 
506     bool OldParamHasDfl = OldParam ? OldParam->hasDefaultArg() : false;
507     bool NewParamHasDfl = NewParam->hasDefaultArg();
508 
509     if (OldParamHasDfl && NewParamHasDfl) {
510       unsigned DiagDefaultParamID =
511         diag::err_param_default_argument_redefinition;
512 
513       // MSVC accepts that default parameters be redefined for member functions
514       // of template class. The new default parameter's value is ignored.
515       Invalid = true;
516       if (getLangOpts().MicrosoftExt) {
517         CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(New);
518         if (MD && MD->getParent()->getDescribedClassTemplate()) {
519           // Merge the old default argument into the new parameter.
520           NewParam->setHasInheritedDefaultArg();
521           if (OldParam->hasUninstantiatedDefaultArg())
522             NewParam->setUninstantiatedDefaultArg(
523                                       OldParam->getUninstantiatedDefaultArg());
524           else
525             NewParam->setDefaultArg(OldParam->getInit());
526           DiagDefaultParamID = diag::ext_param_default_argument_redefinition;
527           Invalid = false;
528         }
529       }
530 
531       // FIXME: If we knew where the '=' was, we could easily provide a fix-it
532       // hint here. Alternatively, we could walk the type-source information
533       // for NewParam to find the last source location in the type... but it
534       // isn't worth the effort right now. This is the kind of test case that
535       // is hard to get right:
536       //   int f(int);
537       //   void g(int (*fp)(int) = f);
538       //   void g(int (*fp)(int) = &f);
539       Diag(NewParam->getLocation(), DiagDefaultParamID)
540         << NewParam->getDefaultArgRange();
541 
542       // Look for the function declaration where the default argument was
543       // actually written, which may be a declaration prior to Old.
544       for (auto Older = PrevForDefaultArgs;
545            OldParam->hasInheritedDefaultArg(); /**/) {
546         Older = Older->getPreviousDecl();
547         OldParam = Older->getParamDecl(p);
548       }
549 
550       Diag(OldParam->getLocation(), diag::note_previous_definition)
551         << OldParam->getDefaultArgRange();
552     } else if (OldParamHasDfl) {
553       // Merge the old default argument into the new parameter unless the new
554       // function is a friend declaration in a template class. In the latter
555       // case the default arguments will be inherited when the friend
556       // declaration will be instantiated.
557       if (New->getFriendObjectKind() == Decl::FOK_None ||
558           !New->getLexicalDeclContext()->isDependentContext()) {
559         // It's important to use getInit() here;  getDefaultArg()
560         // strips off any top-level ExprWithCleanups.
561         NewParam->setHasInheritedDefaultArg();
562         if (OldParam->hasUnparsedDefaultArg())
563           NewParam->setUnparsedDefaultArg();
564         else if (OldParam->hasUninstantiatedDefaultArg())
565           NewParam->setUninstantiatedDefaultArg(
566                                        OldParam->getUninstantiatedDefaultArg());
567         else
568           NewParam->setDefaultArg(OldParam->getInit());
569       }
570     } else if (NewParamHasDfl) {
571       if (New->getDescribedFunctionTemplate()) {
572         // Paragraph 4, quoted above, only applies to non-template functions.
573         Diag(NewParam->getLocation(),
574              diag::err_param_default_argument_template_redecl)
575           << NewParam->getDefaultArgRange();
576         Diag(PrevForDefaultArgs->getLocation(),
577              diag::note_template_prev_declaration)
578             << false;
579       } else if (New->getTemplateSpecializationKind()
580                    != TSK_ImplicitInstantiation &&
581                  New->getTemplateSpecializationKind() != TSK_Undeclared) {
582         // C++ [temp.expr.spec]p21:
583         //   Default function arguments shall not be specified in a declaration
584         //   or a definition for one of the following explicit specializations:
585         //     - the explicit specialization of a function template;
586         //     - the explicit specialization of a member function template;
587         //     - the explicit specialization of a member function of a class
588         //       template where the class template specialization to which the
589         //       member function specialization belongs is implicitly
590         //       instantiated.
591         Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
592           << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
593           << New->getDeclName()
594           << NewParam->getDefaultArgRange();
595       } else if (New->getDeclContext()->isDependentContext()) {
596         // C++ [dcl.fct.default]p6 (DR217):
597         //   Default arguments for a member function of a class template shall
598         //   be specified on the initial declaration of the member function
599         //   within the class template.
600         //
601         // Reading the tea leaves a bit in DR217 and its reference to DR205
602         // leads me to the conclusion that one cannot add default function
603         // arguments for an out-of-line definition of a member function of a
604         // dependent type.
605         int WhichKind = 2;
606         if (CXXRecordDecl *Record
607               = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
608           if (Record->getDescribedClassTemplate())
609             WhichKind = 0;
610           else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
611             WhichKind = 1;
612           else
613             WhichKind = 2;
614         }
615 
616         Diag(NewParam->getLocation(),
617              diag::err_param_default_argument_member_template_redecl)
618           << WhichKind
619           << NewParam->getDefaultArgRange();
620       }
621     }
622   }
623 
624   // DR1344: If a default argument is added outside a class definition and that
625   // default argument makes the function a special member function, the program
626   // is ill-formed. This can only happen for constructors.
627   if (isa<CXXConstructorDecl>(New) &&
628       New->getMinRequiredArguments() < Old->getMinRequiredArguments()) {
629     CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)),
630                      OldSM = getSpecialMember(cast<CXXMethodDecl>(Old));
631     if (NewSM != OldSM) {
632       ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments());
633       assert(NewParam->hasDefaultArg());
634       Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special)
635         << NewParam->getDefaultArgRange() << NewSM;
636       Diag(Old->getLocation(), diag::note_previous_declaration);
637     }
638   }
639 
640   const FunctionDecl *Def;
641   // C++11 [dcl.constexpr]p1: If any declaration of a function or function
642   // template has a constexpr specifier then all its declarations shall
643   // contain the constexpr specifier.
644   if (New->isConstexpr() != Old->isConstexpr()) {
645     Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
646       << New << New->isConstexpr();
647     Diag(Old->getLocation(), diag::note_previous_declaration);
648     Invalid = true;
649   } else if (!Old->getMostRecentDecl()->isInlined() && New->isInlined() &&
650              Old->isDefined(Def) &&
651              // If a friend function is inlined but does not have 'inline'
652              // specifier, it is a definition. Do not report attribute conflict
653              // in this case, redefinition will be diagnosed later.
654              (New->isInlineSpecified() ||
655               New->getFriendObjectKind() == Decl::FOK_None)) {
656     // C++11 [dcl.fcn.spec]p4:
657     //   If the definition of a function appears in a translation unit before its
658     //   first declaration as inline, the program is ill-formed.
659     Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New;
660     Diag(Def->getLocation(), diag::note_previous_definition);
661     Invalid = true;
662   }
663 
664   // FIXME: It's not clear what should happen if multiple declarations of a
665   // deduction guide have different explicitness. For now at least we simply
666   // reject any case where the explicitness changes.
667   auto *NewGuide = dyn_cast<CXXDeductionGuideDecl>(New);
668   if (NewGuide && NewGuide->isExplicitSpecified() !=
669                       cast<CXXDeductionGuideDecl>(Old)->isExplicitSpecified()) {
670     Diag(New->getLocation(), diag::err_deduction_guide_explicit_mismatch)
671       << NewGuide->isExplicitSpecified();
672     Diag(Old->getLocation(), diag::note_previous_declaration);
673   }
674 
675   // C++11 [dcl.fct.default]p4: If a friend declaration specifies a default
676   // argument expression, that declaration shall be a definition and shall be
677   // the only declaration of the function or function template in the
678   // translation unit.
679   if (Old->getFriendObjectKind() == Decl::FOK_Undeclared &&
680       functionDeclHasDefaultArgument(Old)) {
681     Diag(New->getLocation(), diag::err_friend_decl_with_def_arg_redeclared);
682     Diag(Old->getLocation(), diag::note_previous_declaration);
683     Invalid = true;
684   }
685 
686   return Invalid;
687 }
688 
689 NamedDecl *
690 Sema::ActOnDecompositionDeclarator(Scope *S, Declarator &D,
691                                    MultiTemplateParamsArg TemplateParamLists) {
692   assert(D.isDecompositionDeclarator());
693   const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator();
694 
695   // The syntax only allows a decomposition declarator as a simple-declaration
696   // or a for-range-declaration, but we parse it in more cases than that.
697   if (!D.mayHaveDecompositionDeclarator()) {
698     Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context)
699       << Decomp.getSourceRange();
700     return nullptr;
701   }
702 
703   if (!TemplateParamLists.empty()) {
704     // FIXME: There's no rule against this, but there are also no rules that
705     // would actually make it usable, so we reject it for now.
706     Diag(TemplateParamLists.front()->getTemplateLoc(),
707          diag::err_decomp_decl_template);
708     return nullptr;
709   }
710 
711   Diag(Decomp.getLSquareLoc(), getLangOpts().CPlusPlus1z
712                                    ? diag::warn_cxx14_compat_decomp_decl
713                                    : diag::ext_decomp_decl)
714       << Decomp.getSourceRange();
715 
716   // The semantic context is always just the current context.
717   DeclContext *const DC = CurContext;
718 
719   // C++1z [dcl.dcl]/8:
720   //   The decl-specifier-seq shall contain only the type-specifier auto
721   //   and cv-qualifiers.
722   auto &DS = D.getDeclSpec();
723   {
724     SmallVector<StringRef, 8> BadSpecifiers;
725     SmallVector<SourceLocation, 8> BadSpecifierLocs;
726     if (auto SCS = DS.getStorageClassSpec()) {
727       BadSpecifiers.push_back(DeclSpec::getSpecifierName(SCS));
728       BadSpecifierLocs.push_back(DS.getStorageClassSpecLoc());
729     }
730     if (auto TSCS = DS.getThreadStorageClassSpec()) {
731       BadSpecifiers.push_back(DeclSpec::getSpecifierName(TSCS));
732       BadSpecifierLocs.push_back(DS.getThreadStorageClassSpecLoc());
733     }
734     if (DS.isConstexprSpecified()) {
735       BadSpecifiers.push_back("constexpr");
736       BadSpecifierLocs.push_back(DS.getConstexprSpecLoc());
737     }
738     if (DS.isInlineSpecified()) {
739       BadSpecifiers.push_back("inline");
740       BadSpecifierLocs.push_back(DS.getInlineSpecLoc());
741     }
742     if (!BadSpecifiers.empty()) {
743       auto &&Err = Diag(BadSpecifierLocs.front(), diag::err_decomp_decl_spec);
744       Err << (int)BadSpecifiers.size()
745           << llvm::join(BadSpecifiers.begin(), BadSpecifiers.end(), " ");
746       // Don't add FixItHints to remove the specifiers; we do still respect
747       // them when building the underlying variable.
748       for (auto Loc : BadSpecifierLocs)
749         Err << SourceRange(Loc, Loc);
750     }
751     // We can't recover from it being declared as a typedef.
752     if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef)
753       return nullptr;
754   }
755 
756   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
757   QualType R = TInfo->getType();
758 
759   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
760                                       UPPC_DeclarationType))
761     D.setInvalidType();
762 
763   // The syntax only allows a single ref-qualifier prior to the decomposition
764   // declarator. No other declarator chunks are permitted. Also check the type
765   // specifier here.
766   if (DS.getTypeSpecType() != DeclSpec::TST_auto ||
767       D.hasGroupingParens() || D.getNumTypeObjects() > 1 ||
768       (D.getNumTypeObjects() == 1 &&
769        D.getTypeObject(0).Kind != DeclaratorChunk::Reference)) {
770     Diag(Decomp.getLSquareLoc(),
771          (D.hasGroupingParens() ||
772           (D.getNumTypeObjects() &&
773            D.getTypeObject(0).Kind == DeclaratorChunk::Paren))
774              ? diag::err_decomp_decl_parens
775              : diag::err_decomp_decl_type)
776         << R;
777 
778     // In most cases, there's no actual problem with an explicitly-specified
779     // type, but a function type won't work here, and ActOnVariableDeclarator
780     // shouldn't be called for such a type.
781     if (R->isFunctionType())
782       D.setInvalidType();
783   }
784 
785   // Build the BindingDecls.
786   SmallVector<BindingDecl*, 8> Bindings;
787 
788   // Build the BindingDecls.
789   for (auto &B : D.getDecompositionDeclarator().bindings()) {
790     // Check for name conflicts.
791     DeclarationNameInfo NameInfo(B.Name, B.NameLoc);
792     LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
793                           ForVisibleRedeclaration);
794     LookupName(Previous, S,
795                /*CreateBuiltins*/DC->getRedeclContext()->isTranslationUnit());
796 
797     // It's not permitted to shadow a template parameter name.
798     if (Previous.isSingleResult() &&
799         Previous.getFoundDecl()->isTemplateParameter()) {
800       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
801                                       Previous.getFoundDecl());
802       Previous.clear();
803     }
804 
805     bool ConsiderLinkage = DC->isFunctionOrMethod() &&
806                            DS.getStorageClassSpec() == DeclSpec::SCS_extern;
807     FilterLookupForScope(Previous, DC, S, ConsiderLinkage,
808                          /*AllowInlineNamespace*/false);
809     if (!Previous.empty()) {
810       auto *Old = Previous.getRepresentativeDecl();
811       Diag(B.NameLoc, diag::err_redefinition) << B.Name;
812       Diag(Old->getLocation(), diag::note_previous_definition);
813     }
814 
815     auto *BD = BindingDecl::Create(Context, DC, B.NameLoc, B.Name);
816     PushOnScopeChains(BD, S, true);
817     Bindings.push_back(BD);
818     ParsingInitForAutoVars.insert(BD);
819   }
820 
821   // There are no prior lookup results for the variable itself, because it
822   // is unnamed.
823   DeclarationNameInfo NameInfo((IdentifierInfo *)nullptr,
824                                Decomp.getLSquareLoc());
825   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
826                         ForVisibleRedeclaration);
827 
828   // Build the variable that holds the non-decomposed object.
829   bool AddToScope = true;
830   NamedDecl *New =
831       ActOnVariableDeclarator(S, D, DC, TInfo, Previous,
832                               MultiTemplateParamsArg(), AddToScope, Bindings);
833   if (AddToScope) {
834     S->AddDecl(New);
835     CurContext->addHiddenDecl(New);
836   }
837 
838   if (isInOpenMPDeclareTargetContext())
839     checkDeclIsAllowedInOpenMPTarget(nullptr, New);
840 
841   return New;
842 }
843 
844 static bool checkSimpleDecomposition(
845     Sema &S, ArrayRef<BindingDecl *> Bindings, ValueDecl *Src,
846     QualType DecompType, const llvm::APSInt &NumElems, QualType ElemType,
847     llvm::function_ref<ExprResult(SourceLocation, Expr *, unsigned)> GetInit) {
848   if ((int64_t)Bindings.size() != NumElems) {
849     S.Diag(Src->getLocation(), diag::err_decomp_decl_wrong_number_bindings)
850         << DecompType << (unsigned)Bindings.size() << NumElems.toString(10)
851         << (NumElems < Bindings.size());
852     return true;
853   }
854 
855   unsigned I = 0;
856   for (auto *B : Bindings) {
857     SourceLocation Loc = B->getLocation();
858     ExprResult E = S.BuildDeclRefExpr(Src, DecompType, VK_LValue, Loc);
859     if (E.isInvalid())
860       return true;
861     E = GetInit(Loc, E.get(), I++);
862     if (E.isInvalid())
863       return true;
864     B->setBinding(ElemType, E.get());
865   }
866 
867   return false;
868 }
869 
870 static bool checkArrayLikeDecomposition(Sema &S,
871                                         ArrayRef<BindingDecl *> Bindings,
872                                         ValueDecl *Src, QualType DecompType,
873                                         const llvm::APSInt &NumElems,
874                                         QualType ElemType) {
875   return checkSimpleDecomposition(
876       S, Bindings, Src, DecompType, NumElems, ElemType,
877       [&](SourceLocation Loc, Expr *Base, unsigned I) -> ExprResult {
878         ExprResult E = S.ActOnIntegerConstant(Loc, I);
879         if (E.isInvalid())
880           return ExprError();
881         return S.CreateBuiltinArraySubscriptExpr(Base, Loc, E.get(), Loc);
882       });
883 }
884 
885 static bool checkArrayDecomposition(Sema &S, ArrayRef<BindingDecl*> Bindings,
886                                     ValueDecl *Src, QualType DecompType,
887                                     const ConstantArrayType *CAT) {
888   return checkArrayLikeDecomposition(S, Bindings, Src, DecompType,
889                                      llvm::APSInt(CAT->getSize()),
890                                      CAT->getElementType());
891 }
892 
893 static bool checkVectorDecomposition(Sema &S, ArrayRef<BindingDecl*> Bindings,
894                                      ValueDecl *Src, QualType DecompType,
895                                      const VectorType *VT) {
896   return checkArrayLikeDecomposition(
897       S, Bindings, Src, DecompType, llvm::APSInt::get(VT->getNumElements()),
898       S.Context.getQualifiedType(VT->getElementType(),
899                                  DecompType.getQualifiers()));
900 }
901 
902 static bool checkComplexDecomposition(Sema &S,
903                                       ArrayRef<BindingDecl *> Bindings,
904                                       ValueDecl *Src, QualType DecompType,
905                                       const ComplexType *CT) {
906   return checkSimpleDecomposition(
907       S, Bindings, Src, DecompType, llvm::APSInt::get(2),
908       S.Context.getQualifiedType(CT->getElementType(),
909                                  DecompType.getQualifiers()),
910       [&](SourceLocation Loc, Expr *Base, unsigned I) -> ExprResult {
911         return S.CreateBuiltinUnaryOp(Loc, I ? UO_Imag : UO_Real, Base);
912       });
913 }
914 
915 static std::string printTemplateArgs(const PrintingPolicy &PrintingPolicy,
916                                      TemplateArgumentListInfo &Args) {
917   SmallString<128> SS;
918   llvm::raw_svector_ostream OS(SS);
919   bool First = true;
920   for (auto &Arg : Args.arguments()) {
921     if (!First)
922       OS << ", ";
923     Arg.getArgument().print(PrintingPolicy, OS);
924     First = false;
925   }
926   return OS.str();
927 }
928 
929 static bool lookupStdTypeTraitMember(Sema &S, LookupResult &TraitMemberLookup,
930                                      SourceLocation Loc, StringRef Trait,
931                                      TemplateArgumentListInfo &Args,
932                                      unsigned DiagID) {
933   auto DiagnoseMissing = [&] {
934     if (DiagID)
935       S.Diag(Loc, DiagID) << printTemplateArgs(S.Context.getPrintingPolicy(),
936                                                Args);
937     return true;
938   };
939 
940   // FIXME: Factor out duplication with lookupPromiseType in SemaCoroutine.
941   NamespaceDecl *Std = S.getStdNamespace();
942   if (!Std)
943     return DiagnoseMissing();
944 
945   // Look up the trait itself, within namespace std. We can diagnose various
946   // problems with this lookup even if we've been asked to not diagnose a
947   // missing specialization, because this can only fail if the user has been
948   // declaring their own names in namespace std or we don't support the
949   // standard library implementation in use.
950   LookupResult Result(S, &S.PP.getIdentifierTable().get(Trait),
951                       Loc, Sema::LookupOrdinaryName);
952   if (!S.LookupQualifiedName(Result, Std))
953     return DiagnoseMissing();
954   if (Result.isAmbiguous())
955     return true;
956 
957   ClassTemplateDecl *TraitTD = Result.getAsSingle<ClassTemplateDecl>();
958   if (!TraitTD) {
959     Result.suppressDiagnostics();
960     NamedDecl *Found = *Result.begin();
961     S.Diag(Loc, diag::err_std_type_trait_not_class_template) << Trait;
962     S.Diag(Found->getLocation(), diag::note_declared_at);
963     return true;
964   }
965 
966   // Build the template-id.
967   QualType TraitTy = S.CheckTemplateIdType(TemplateName(TraitTD), Loc, Args);
968   if (TraitTy.isNull())
969     return true;
970   if (!S.isCompleteType(Loc, TraitTy)) {
971     if (DiagID)
972       S.RequireCompleteType(
973           Loc, TraitTy, DiagID,
974           printTemplateArgs(S.Context.getPrintingPolicy(), Args));
975     return true;
976   }
977 
978   CXXRecordDecl *RD = TraitTy->getAsCXXRecordDecl();
979   assert(RD && "specialization of class template is not a class?");
980 
981   // Look up the member of the trait type.
982   S.LookupQualifiedName(TraitMemberLookup, RD);
983   return TraitMemberLookup.isAmbiguous();
984 }
985 
986 static TemplateArgumentLoc
987 getTrivialIntegralTemplateArgument(Sema &S, SourceLocation Loc, QualType T,
988                                    uint64_t I) {
989   TemplateArgument Arg(S.Context, S.Context.MakeIntValue(I, T), T);
990   return S.getTrivialTemplateArgumentLoc(Arg, T, Loc);
991 }
992 
993 static TemplateArgumentLoc
994 getTrivialTypeTemplateArgument(Sema &S, SourceLocation Loc, QualType T) {
995   return S.getTrivialTemplateArgumentLoc(TemplateArgument(T), QualType(), Loc);
996 }
997 
998 namespace { enum class IsTupleLike { TupleLike, NotTupleLike, Error }; }
999 
1000 static IsTupleLike isTupleLike(Sema &S, SourceLocation Loc, QualType T,
1001                                llvm::APSInt &Size) {
1002   EnterExpressionEvaluationContext ContextRAII(
1003       S, Sema::ExpressionEvaluationContext::ConstantEvaluated);
1004 
1005   DeclarationName Value = S.PP.getIdentifierInfo("value");
1006   LookupResult R(S, Value, Loc, Sema::LookupOrdinaryName);
1007 
1008   // Form template argument list for tuple_size<T>.
1009   TemplateArgumentListInfo Args(Loc, Loc);
1010   Args.addArgument(getTrivialTypeTemplateArgument(S, Loc, T));
1011 
1012   // If there's no tuple_size specialization, it's not tuple-like.
1013   if (lookupStdTypeTraitMember(S, R, Loc, "tuple_size", Args, /*DiagID*/0))
1014     return IsTupleLike::NotTupleLike;
1015 
1016   // If we get this far, we've committed to the tuple interpretation, but
1017   // we can still fail if there actually isn't a usable ::value.
1018 
1019   struct ICEDiagnoser : Sema::VerifyICEDiagnoser {
1020     LookupResult &R;
1021     TemplateArgumentListInfo &Args;
1022     ICEDiagnoser(LookupResult &R, TemplateArgumentListInfo &Args)
1023         : R(R), Args(Args) {}
1024     void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) {
1025       S.Diag(Loc, diag::err_decomp_decl_std_tuple_size_not_constant)
1026           << printTemplateArgs(S.Context.getPrintingPolicy(), Args);
1027     }
1028   } Diagnoser(R, Args);
1029 
1030   if (R.empty()) {
1031     Diagnoser.diagnoseNotICE(S, Loc, SourceRange());
1032     return IsTupleLike::Error;
1033   }
1034 
1035   ExprResult E =
1036       S.BuildDeclarationNameExpr(CXXScopeSpec(), R, /*NeedsADL*/false);
1037   if (E.isInvalid())
1038     return IsTupleLike::Error;
1039 
1040   E = S.VerifyIntegerConstantExpression(E.get(), &Size, Diagnoser, false);
1041   if (E.isInvalid())
1042     return IsTupleLike::Error;
1043 
1044   return IsTupleLike::TupleLike;
1045 }
1046 
1047 /// \return std::tuple_element<I, T>::type.
1048 static QualType getTupleLikeElementType(Sema &S, SourceLocation Loc,
1049                                         unsigned I, QualType T) {
1050   // Form template argument list for tuple_element<I, T>.
1051   TemplateArgumentListInfo Args(Loc, Loc);
1052   Args.addArgument(
1053       getTrivialIntegralTemplateArgument(S, Loc, S.Context.getSizeType(), I));
1054   Args.addArgument(getTrivialTypeTemplateArgument(S, Loc, T));
1055 
1056   DeclarationName TypeDN = S.PP.getIdentifierInfo("type");
1057   LookupResult R(S, TypeDN, Loc, Sema::LookupOrdinaryName);
1058   if (lookupStdTypeTraitMember(
1059           S, R, Loc, "tuple_element", Args,
1060           diag::err_decomp_decl_std_tuple_element_not_specialized))
1061     return QualType();
1062 
1063   auto *TD = R.getAsSingle<TypeDecl>();
1064   if (!TD) {
1065     R.suppressDiagnostics();
1066     S.Diag(Loc, diag::err_decomp_decl_std_tuple_element_not_specialized)
1067       << printTemplateArgs(S.Context.getPrintingPolicy(), Args);
1068     if (!R.empty())
1069       S.Diag(R.getRepresentativeDecl()->getLocation(), diag::note_declared_at);
1070     return QualType();
1071   }
1072 
1073   return S.Context.getTypeDeclType(TD);
1074 }
1075 
1076 namespace {
1077 struct BindingDiagnosticTrap {
1078   Sema &S;
1079   DiagnosticErrorTrap Trap;
1080   BindingDecl *BD;
1081 
1082   BindingDiagnosticTrap(Sema &S, BindingDecl *BD)
1083       : S(S), Trap(S.Diags), BD(BD) {}
1084   ~BindingDiagnosticTrap() {
1085     if (Trap.hasErrorOccurred())
1086       S.Diag(BD->getLocation(), diag::note_in_binding_decl_init) << BD;
1087   }
1088 };
1089 }
1090 
1091 static bool checkTupleLikeDecomposition(Sema &S,
1092                                         ArrayRef<BindingDecl *> Bindings,
1093                                         VarDecl *Src, QualType DecompType,
1094                                         const llvm::APSInt &TupleSize) {
1095   if ((int64_t)Bindings.size() != TupleSize) {
1096     S.Diag(Src->getLocation(), diag::err_decomp_decl_wrong_number_bindings)
1097         << DecompType << (unsigned)Bindings.size() << TupleSize.toString(10)
1098         << (TupleSize < Bindings.size());
1099     return true;
1100   }
1101 
1102   if (Bindings.empty())
1103     return false;
1104 
1105   DeclarationName GetDN = S.PP.getIdentifierInfo("get");
1106 
1107   // [dcl.decomp]p3:
1108   //   The unqualified-id get is looked up in the scope of E by class member
1109   //   access lookup
1110   LookupResult MemberGet(S, GetDN, Src->getLocation(), Sema::LookupMemberName);
1111   bool UseMemberGet = false;
1112   if (S.isCompleteType(Src->getLocation(), DecompType)) {
1113     if (auto *RD = DecompType->getAsCXXRecordDecl())
1114       S.LookupQualifiedName(MemberGet, RD);
1115     if (MemberGet.isAmbiguous())
1116       return true;
1117     UseMemberGet = !MemberGet.empty();
1118     S.FilterAcceptableTemplateNames(MemberGet);
1119   }
1120 
1121   unsigned I = 0;
1122   for (auto *B : Bindings) {
1123     BindingDiagnosticTrap Trap(S, B);
1124     SourceLocation Loc = B->getLocation();
1125 
1126     ExprResult E = S.BuildDeclRefExpr(Src, DecompType, VK_LValue, Loc);
1127     if (E.isInvalid())
1128       return true;
1129 
1130     //   e is an lvalue if the type of the entity is an lvalue reference and
1131     //   an xvalue otherwise
1132     if (!Src->getType()->isLValueReferenceType())
1133       E = ImplicitCastExpr::Create(S.Context, E.get()->getType(), CK_NoOp,
1134                                    E.get(), nullptr, VK_XValue);
1135 
1136     TemplateArgumentListInfo Args(Loc, Loc);
1137     Args.addArgument(
1138         getTrivialIntegralTemplateArgument(S, Loc, S.Context.getSizeType(), I));
1139 
1140     if (UseMemberGet) {
1141       //   if [lookup of member get] finds at least one declaration, the
1142       //   initializer is e.get<i-1>().
1143       E = S.BuildMemberReferenceExpr(E.get(), DecompType, Loc, false,
1144                                      CXXScopeSpec(), SourceLocation(), nullptr,
1145                                      MemberGet, &Args, nullptr);
1146       if (E.isInvalid())
1147         return true;
1148 
1149       E = S.ActOnCallExpr(nullptr, E.get(), Loc, None, Loc);
1150     } else {
1151       //   Otherwise, the initializer is get<i-1>(e), where get is looked up
1152       //   in the associated namespaces.
1153       Expr *Get = UnresolvedLookupExpr::Create(
1154           S.Context, nullptr, NestedNameSpecifierLoc(), SourceLocation(),
1155           DeclarationNameInfo(GetDN, Loc), /*RequiresADL*/true, &Args,
1156           UnresolvedSetIterator(), UnresolvedSetIterator());
1157 
1158       Expr *Arg = E.get();
1159       E = S.ActOnCallExpr(nullptr, Get, Loc, Arg, Loc);
1160     }
1161     if (E.isInvalid())
1162       return true;
1163     Expr *Init = E.get();
1164 
1165     //   Given the type T designated by std::tuple_element<i - 1, E>::type,
1166     QualType T = getTupleLikeElementType(S, Loc, I, DecompType);
1167     if (T.isNull())
1168       return true;
1169 
1170     //   each vi is a variable of type "reference to T" initialized with the
1171     //   initializer, where the reference is an lvalue reference if the
1172     //   initializer is an lvalue and an rvalue reference otherwise
1173     QualType RefType =
1174         S.BuildReferenceType(T, E.get()->isLValue(), Loc, B->getDeclName());
1175     if (RefType.isNull())
1176       return true;
1177     auto *RefVD = VarDecl::Create(
1178         S.Context, Src->getDeclContext(), Loc, Loc,
1179         B->getDeclName().getAsIdentifierInfo(), RefType,
1180         S.Context.getTrivialTypeSourceInfo(T, Loc), Src->getStorageClass());
1181     RefVD->setLexicalDeclContext(Src->getLexicalDeclContext());
1182     RefVD->setTSCSpec(Src->getTSCSpec());
1183     RefVD->setImplicit();
1184     if (Src->isInlineSpecified())
1185       RefVD->setInlineSpecified();
1186     RefVD->getLexicalDeclContext()->addHiddenDecl(RefVD);
1187 
1188     InitializedEntity Entity = InitializedEntity::InitializeBinding(RefVD);
1189     InitializationKind Kind = InitializationKind::CreateCopy(Loc, Loc);
1190     InitializationSequence Seq(S, Entity, Kind, Init);
1191     E = Seq.Perform(S, Entity, Kind, Init);
1192     if (E.isInvalid())
1193       return true;
1194     E = S.ActOnFinishFullExpr(E.get(), Loc);
1195     if (E.isInvalid())
1196       return true;
1197     RefVD->setInit(E.get());
1198     RefVD->checkInitIsICE();
1199 
1200     E = S.BuildDeclarationNameExpr(CXXScopeSpec(),
1201                                    DeclarationNameInfo(B->getDeclName(), Loc),
1202                                    RefVD);
1203     if (E.isInvalid())
1204       return true;
1205 
1206     B->setBinding(T, E.get());
1207     I++;
1208   }
1209 
1210   return false;
1211 }
1212 
1213 /// Find the base class to decompose in a built-in decomposition of a class type.
1214 /// This base class search is, unfortunately, not quite like any other that we
1215 /// perform anywhere else in C++.
1216 static const CXXRecordDecl *findDecomposableBaseClass(Sema &S,
1217                                                       SourceLocation Loc,
1218                                                       const CXXRecordDecl *RD,
1219                                                       CXXCastPath &BasePath) {
1220   auto BaseHasFields = [](const CXXBaseSpecifier *Specifier,
1221                           CXXBasePath &Path) {
1222     return Specifier->getType()->getAsCXXRecordDecl()->hasDirectFields();
1223   };
1224 
1225   const CXXRecordDecl *ClassWithFields = nullptr;
1226   if (RD->hasDirectFields())
1227     // [dcl.decomp]p4:
1228     //   Otherwise, all of E's non-static data members shall be public direct
1229     //   members of E ...
1230     ClassWithFields = RD;
1231   else {
1232     //   ... or of ...
1233     CXXBasePaths Paths;
1234     Paths.setOrigin(const_cast<CXXRecordDecl*>(RD));
1235     if (!RD->lookupInBases(BaseHasFields, Paths)) {
1236       // If no classes have fields, just decompose RD itself. (This will work
1237       // if and only if zero bindings were provided.)
1238       return RD;
1239     }
1240 
1241     CXXBasePath *BestPath = nullptr;
1242     for (auto &P : Paths) {
1243       if (!BestPath)
1244         BestPath = &P;
1245       else if (!S.Context.hasSameType(P.back().Base->getType(),
1246                                       BestPath->back().Base->getType())) {
1247         //   ... the same ...
1248         S.Diag(Loc, diag::err_decomp_decl_multiple_bases_with_members)
1249           << false << RD << BestPath->back().Base->getType()
1250           << P.back().Base->getType();
1251         return nullptr;
1252       } else if (P.Access < BestPath->Access) {
1253         BestPath = &P;
1254       }
1255     }
1256 
1257     //   ... unambiguous ...
1258     QualType BaseType = BestPath->back().Base->getType();
1259     if (Paths.isAmbiguous(S.Context.getCanonicalType(BaseType))) {
1260       S.Diag(Loc, diag::err_decomp_decl_ambiguous_base)
1261         << RD << BaseType << S.getAmbiguousPathsDisplayString(Paths);
1262       return nullptr;
1263     }
1264 
1265     //   ... public base class of E.
1266     if (BestPath->Access != AS_public) {
1267       S.Diag(Loc, diag::err_decomp_decl_non_public_base)
1268         << RD << BaseType;
1269       for (auto &BS : *BestPath) {
1270         if (BS.Base->getAccessSpecifier() != AS_public) {
1271           S.Diag(BS.Base->getLocStart(), diag::note_access_constrained_by_path)
1272             << (BS.Base->getAccessSpecifier() == AS_protected)
1273             << (BS.Base->getAccessSpecifierAsWritten() == AS_none);
1274           break;
1275         }
1276       }
1277       return nullptr;
1278     }
1279 
1280     ClassWithFields = BaseType->getAsCXXRecordDecl();
1281     S.BuildBasePathArray(Paths, BasePath);
1282   }
1283 
1284   // The above search did not check whether the selected class itself has base
1285   // classes with fields, so check that now.
1286   CXXBasePaths Paths;
1287   if (ClassWithFields->lookupInBases(BaseHasFields, Paths)) {
1288     S.Diag(Loc, diag::err_decomp_decl_multiple_bases_with_members)
1289       << (ClassWithFields == RD) << RD << ClassWithFields
1290       << Paths.front().back().Base->getType();
1291     return nullptr;
1292   }
1293 
1294   return ClassWithFields;
1295 }
1296 
1297 static bool checkMemberDecomposition(Sema &S, ArrayRef<BindingDecl*> Bindings,
1298                                      ValueDecl *Src, QualType DecompType,
1299                                      const CXXRecordDecl *RD) {
1300   CXXCastPath BasePath;
1301   RD = findDecomposableBaseClass(S, Src->getLocation(), RD, BasePath);
1302   if (!RD)
1303     return true;
1304   QualType BaseType = S.Context.getQualifiedType(S.Context.getRecordType(RD),
1305                                                  DecompType.getQualifiers());
1306 
1307   auto DiagnoseBadNumberOfBindings = [&]() -> bool {
1308     unsigned NumFields =
1309         std::count_if(RD->field_begin(), RD->field_end(),
1310                       [](FieldDecl *FD) { return !FD->isUnnamedBitfield(); });
1311     assert(Bindings.size() != NumFields);
1312     S.Diag(Src->getLocation(), diag::err_decomp_decl_wrong_number_bindings)
1313         << DecompType << (unsigned)Bindings.size() << NumFields
1314         << (NumFields < Bindings.size());
1315     return true;
1316   };
1317 
1318   //   all of E's non-static data members shall be public [...] members,
1319   //   E shall not have an anonymous union member, ...
1320   unsigned I = 0;
1321   for (auto *FD : RD->fields()) {
1322     if (FD->isUnnamedBitfield())
1323       continue;
1324 
1325     if (FD->isAnonymousStructOrUnion()) {
1326       S.Diag(Src->getLocation(), diag::err_decomp_decl_anon_union_member)
1327         << DecompType << FD->getType()->isUnionType();
1328       S.Diag(FD->getLocation(), diag::note_declared_at);
1329       return true;
1330     }
1331 
1332     // We have a real field to bind.
1333     if (I >= Bindings.size())
1334       return DiagnoseBadNumberOfBindings();
1335     auto *B = Bindings[I++];
1336 
1337     SourceLocation Loc = B->getLocation();
1338     if (FD->getAccess() != AS_public) {
1339       S.Diag(Loc, diag::err_decomp_decl_non_public_member) << FD << DecompType;
1340 
1341       // Determine whether the access specifier was explicit.
1342       bool Implicit = true;
1343       for (const auto *D : RD->decls()) {
1344         if (declaresSameEntity(D, FD))
1345           break;
1346         if (isa<AccessSpecDecl>(D)) {
1347           Implicit = false;
1348           break;
1349         }
1350       }
1351 
1352       S.Diag(FD->getLocation(), diag::note_access_natural)
1353         << (FD->getAccess() == AS_protected) << Implicit;
1354       return true;
1355     }
1356 
1357     // Initialize the binding to Src.FD.
1358     ExprResult E = S.BuildDeclRefExpr(Src, DecompType, VK_LValue, Loc);
1359     if (E.isInvalid())
1360       return true;
1361     E = S.ImpCastExprToType(E.get(), BaseType, CK_UncheckedDerivedToBase,
1362                             VK_LValue, &BasePath);
1363     if (E.isInvalid())
1364       return true;
1365     E = S.BuildFieldReferenceExpr(E.get(), /*IsArrow*/ false, Loc,
1366                                   CXXScopeSpec(), FD,
1367                                   DeclAccessPair::make(FD, FD->getAccess()),
1368                                   DeclarationNameInfo(FD->getDeclName(), Loc));
1369     if (E.isInvalid())
1370       return true;
1371 
1372     // If the type of the member is T, the referenced type is cv T, where cv is
1373     // the cv-qualification of the decomposition expression.
1374     //
1375     // FIXME: We resolve a defect here: if the field is mutable, we do not add
1376     // 'const' to the type of the field.
1377     Qualifiers Q = DecompType.getQualifiers();
1378     if (FD->isMutable())
1379       Q.removeConst();
1380     B->setBinding(S.BuildQualifiedType(FD->getType(), Loc, Q), E.get());
1381   }
1382 
1383   if (I != Bindings.size())
1384     return DiagnoseBadNumberOfBindings();
1385 
1386   return false;
1387 }
1388 
1389 void Sema::CheckCompleteDecompositionDeclaration(DecompositionDecl *DD) {
1390   QualType DecompType = DD->getType();
1391 
1392   // If the type of the decomposition is dependent, then so is the type of
1393   // each binding.
1394   if (DecompType->isDependentType()) {
1395     for (auto *B : DD->bindings())
1396       B->setType(Context.DependentTy);
1397     return;
1398   }
1399 
1400   DecompType = DecompType.getNonReferenceType();
1401   ArrayRef<BindingDecl*> Bindings = DD->bindings();
1402 
1403   // C++1z [dcl.decomp]/2:
1404   //   If E is an array type [...]
1405   // As an extension, we also support decomposition of built-in complex and
1406   // vector types.
1407   if (auto *CAT = Context.getAsConstantArrayType(DecompType)) {
1408     if (checkArrayDecomposition(*this, Bindings, DD, DecompType, CAT))
1409       DD->setInvalidDecl();
1410     return;
1411   }
1412   if (auto *VT = DecompType->getAs<VectorType>()) {
1413     if (checkVectorDecomposition(*this, Bindings, DD, DecompType, VT))
1414       DD->setInvalidDecl();
1415     return;
1416   }
1417   if (auto *CT = DecompType->getAs<ComplexType>()) {
1418     if (checkComplexDecomposition(*this, Bindings, DD, DecompType, CT))
1419       DD->setInvalidDecl();
1420     return;
1421   }
1422 
1423   // C++1z [dcl.decomp]/3:
1424   //   if the expression std::tuple_size<E>::value is a well-formed integral
1425   //   constant expression, [...]
1426   llvm::APSInt TupleSize(32);
1427   switch (isTupleLike(*this, DD->getLocation(), DecompType, TupleSize)) {
1428   case IsTupleLike::Error:
1429     DD->setInvalidDecl();
1430     return;
1431 
1432   case IsTupleLike::TupleLike:
1433     if (checkTupleLikeDecomposition(*this, Bindings, DD, DecompType, TupleSize))
1434       DD->setInvalidDecl();
1435     return;
1436 
1437   case IsTupleLike::NotTupleLike:
1438     break;
1439   }
1440 
1441   // C++1z [dcl.dcl]/8:
1442   //   [E shall be of array or non-union class type]
1443   CXXRecordDecl *RD = DecompType->getAsCXXRecordDecl();
1444   if (!RD || RD->isUnion()) {
1445     Diag(DD->getLocation(), diag::err_decomp_decl_unbindable_type)
1446         << DD << !RD << DecompType;
1447     DD->setInvalidDecl();
1448     return;
1449   }
1450 
1451   // C++1z [dcl.decomp]/4:
1452   //   all of E's non-static data members shall be [...] direct members of
1453   //   E or of the same unambiguous public base class of E, ...
1454   if (checkMemberDecomposition(*this, Bindings, DD, DecompType, RD))
1455     DD->setInvalidDecl();
1456 }
1457 
1458 /// \brief Merge the exception specifications of two variable declarations.
1459 ///
1460 /// This is called when there's a redeclaration of a VarDecl. The function
1461 /// checks if the redeclaration might have an exception specification and
1462 /// validates compatibility and merges the specs if necessary.
1463 void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
1464   // Shortcut if exceptions are disabled.
1465   if (!getLangOpts().CXXExceptions)
1466     return;
1467 
1468   assert(Context.hasSameType(New->getType(), Old->getType()) &&
1469          "Should only be called if types are otherwise the same.");
1470 
1471   QualType NewType = New->getType();
1472   QualType OldType = Old->getType();
1473 
1474   // We're only interested in pointers and references to functions, as well
1475   // as pointers to member functions.
1476   if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
1477     NewType = R->getPointeeType();
1478     OldType = OldType->getAs<ReferenceType>()->getPointeeType();
1479   } else if (const PointerType *P = NewType->getAs<PointerType>()) {
1480     NewType = P->getPointeeType();
1481     OldType = OldType->getAs<PointerType>()->getPointeeType();
1482   } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
1483     NewType = M->getPointeeType();
1484     OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
1485   }
1486 
1487   if (!NewType->isFunctionProtoType())
1488     return;
1489 
1490   // There's lots of special cases for functions. For function pointers, system
1491   // libraries are hopefully not as broken so that we don't need these
1492   // workarounds.
1493   if (CheckEquivalentExceptionSpec(
1494         OldType->getAs<FunctionProtoType>(), Old->getLocation(),
1495         NewType->getAs<FunctionProtoType>(), New->getLocation())) {
1496     New->setInvalidDecl();
1497   }
1498 }
1499 
1500 /// CheckCXXDefaultArguments - Verify that the default arguments for a
1501 /// function declaration are well-formed according to C++
1502 /// [dcl.fct.default].
1503 void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
1504   unsigned NumParams = FD->getNumParams();
1505   unsigned p;
1506 
1507   // Find first parameter with a default argument
1508   for (p = 0; p < NumParams; ++p) {
1509     ParmVarDecl *Param = FD->getParamDecl(p);
1510     if (Param->hasDefaultArg())
1511       break;
1512   }
1513 
1514   // C++11 [dcl.fct.default]p4:
1515   //   In a given function declaration, each parameter subsequent to a parameter
1516   //   with a default argument shall have a default argument supplied in this or
1517   //   a previous declaration or shall be a function parameter pack. A default
1518   //   argument shall not be redefined by a later declaration (not even to the
1519   //   same value).
1520   unsigned LastMissingDefaultArg = 0;
1521   for (; p < NumParams; ++p) {
1522     ParmVarDecl *Param = FD->getParamDecl(p);
1523     if (!Param->hasDefaultArg() && !Param->isParameterPack()) {
1524       if (Param->isInvalidDecl())
1525         /* We already complained about this parameter. */;
1526       else if (Param->getIdentifier())
1527         Diag(Param->getLocation(),
1528              diag::err_param_default_argument_missing_name)
1529           << Param->getIdentifier();
1530       else
1531         Diag(Param->getLocation(),
1532              diag::err_param_default_argument_missing);
1533 
1534       LastMissingDefaultArg = p;
1535     }
1536   }
1537 
1538   if (LastMissingDefaultArg > 0) {
1539     // Some default arguments were missing. Clear out all of the
1540     // default arguments up to (and including) the last missing
1541     // default argument, so that we leave the function parameters
1542     // in a semantically valid state.
1543     for (p = 0; p <= LastMissingDefaultArg; ++p) {
1544       ParmVarDecl *Param = FD->getParamDecl(p);
1545       if (Param->hasDefaultArg()) {
1546         Param->setDefaultArg(nullptr);
1547       }
1548     }
1549   }
1550 }
1551 
1552 // CheckConstexprParameterTypes - Check whether a function's parameter types
1553 // are all literal types. If so, return true. If not, produce a suitable
1554 // diagnostic and return false.
1555 static bool CheckConstexprParameterTypes(Sema &SemaRef,
1556                                          const FunctionDecl *FD) {
1557   unsigned ArgIndex = 0;
1558   const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
1559   for (FunctionProtoType::param_type_iterator i = FT->param_type_begin(),
1560                                               e = FT->param_type_end();
1561        i != e; ++i, ++ArgIndex) {
1562     const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
1563     SourceLocation ParamLoc = PD->getLocation();
1564     if (!(*i)->isDependentType() &&
1565         SemaRef.RequireLiteralType(ParamLoc, *i,
1566                                    diag::err_constexpr_non_literal_param,
1567                                    ArgIndex+1, PD->getSourceRange(),
1568                                    isa<CXXConstructorDecl>(FD)))
1569       return false;
1570   }
1571   return true;
1572 }
1573 
1574 /// \brief Get diagnostic %select index for tag kind for
1575 /// record diagnostic message.
1576 /// WARNING: Indexes apply to particular diagnostics only!
1577 ///
1578 /// \returns diagnostic %select index.
1579 static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
1580   switch (Tag) {
1581   case TTK_Struct: return 0;
1582   case TTK_Interface: return 1;
1583   case TTK_Class:  return 2;
1584   default: llvm_unreachable("Invalid tag kind for record diagnostic!");
1585   }
1586 }
1587 
1588 // CheckConstexprFunctionDecl - Check whether a function declaration satisfies
1589 // the requirements of a constexpr function definition or a constexpr
1590 // constructor definition. If so, return true. If not, produce appropriate
1591 // diagnostics and return false.
1592 //
1593 // This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
1594 bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
1595   const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
1596   if (MD && MD->isInstance()) {
1597     // C++11 [dcl.constexpr]p4:
1598     //  The definition of a constexpr constructor shall satisfy the following
1599     //  constraints:
1600     //  - the class shall not have any virtual base classes;
1601     const CXXRecordDecl *RD = MD->getParent();
1602     if (RD->getNumVBases()) {
1603       Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
1604         << isa<CXXConstructorDecl>(NewFD)
1605         << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
1606       for (const auto &I : RD->vbases())
1607         Diag(I.getLocStart(),
1608              diag::note_constexpr_virtual_base_here) << I.getSourceRange();
1609       return false;
1610     }
1611   }
1612 
1613   if (!isa<CXXConstructorDecl>(NewFD)) {
1614     // C++11 [dcl.constexpr]p3:
1615     //  The definition of a constexpr function shall satisfy the following
1616     //  constraints:
1617     // - it shall not be virtual;
1618     const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
1619     if (Method && Method->isVirtual()) {
1620       Method = Method->getCanonicalDecl();
1621       Diag(Method->getLocation(), diag::err_constexpr_virtual);
1622 
1623       // If it's not obvious why this function is virtual, find an overridden
1624       // function which uses the 'virtual' keyword.
1625       const CXXMethodDecl *WrittenVirtual = Method;
1626       while (!WrittenVirtual->isVirtualAsWritten())
1627         WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
1628       if (WrittenVirtual != Method)
1629         Diag(WrittenVirtual->getLocation(),
1630              diag::note_overridden_virtual_function);
1631       return false;
1632     }
1633 
1634     // - its return type shall be a literal type;
1635     QualType RT = NewFD->getReturnType();
1636     if (!RT->isDependentType() &&
1637         RequireLiteralType(NewFD->getLocation(), RT,
1638                            diag::err_constexpr_non_literal_return))
1639       return false;
1640   }
1641 
1642   // - each of its parameter types shall be a literal type;
1643   if (!CheckConstexprParameterTypes(*this, NewFD))
1644     return false;
1645 
1646   return true;
1647 }
1648 
1649 /// Check the given declaration statement is legal within a constexpr function
1650 /// body. C++11 [dcl.constexpr]p3,p4, and C++1y [dcl.constexpr]p3.
1651 ///
1652 /// \return true if the body is OK (maybe only as an extension), false if we
1653 ///         have diagnosed a problem.
1654 static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
1655                                    DeclStmt *DS, SourceLocation &Cxx1yLoc) {
1656   // C++11 [dcl.constexpr]p3 and p4:
1657   //  The definition of a constexpr function(p3) or constructor(p4) [...] shall
1658   //  contain only
1659   for (const auto *DclIt : DS->decls()) {
1660     switch (DclIt->getKind()) {
1661     case Decl::StaticAssert:
1662     case Decl::Using:
1663     case Decl::UsingShadow:
1664     case Decl::UsingDirective:
1665     case Decl::UnresolvedUsingTypename:
1666     case Decl::UnresolvedUsingValue:
1667       //   - static_assert-declarations
1668       //   - using-declarations,
1669       //   - using-directives,
1670       continue;
1671 
1672     case Decl::Typedef:
1673     case Decl::TypeAlias: {
1674       //   - typedef declarations and alias-declarations that do not define
1675       //     classes or enumerations,
1676       const auto *TN = cast<TypedefNameDecl>(DclIt);
1677       if (TN->getUnderlyingType()->isVariablyModifiedType()) {
1678         // Don't allow variably-modified types in constexpr functions.
1679         TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
1680         SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
1681           << TL.getSourceRange() << TL.getType()
1682           << isa<CXXConstructorDecl>(Dcl);
1683         return false;
1684       }
1685       continue;
1686     }
1687 
1688     case Decl::Enum:
1689     case Decl::CXXRecord:
1690       // C++1y allows types to be defined, not just declared.
1691       if (cast<TagDecl>(DclIt)->isThisDeclarationADefinition())
1692         SemaRef.Diag(DS->getLocStart(),
1693                      SemaRef.getLangOpts().CPlusPlus14
1694                        ? diag::warn_cxx11_compat_constexpr_type_definition
1695                        : diag::ext_constexpr_type_definition)
1696           << isa<CXXConstructorDecl>(Dcl);
1697       continue;
1698 
1699     case Decl::EnumConstant:
1700     case Decl::IndirectField:
1701     case Decl::ParmVar:
1702       // These can only appear with other declarations which are banned in
1703       // C++11 and permitted in C++1y, so ignore them.
1704       continue;
1705 
1706     case Decl::Var:
1707     case Decl::Decomposition: {
1708       // C++1y [dcl.constexpr]p3 allows anything except:
1709       //   a definition of a variable of non-literal type or of static or
1710       //   thread storage duration or for which no initialization is performed.
1711       const auto *VD = cast<VarDecl>(DclIt);
1712       if (VD->isThisDeclarationADefinition()) {
1713         if (VD->isStaticLocal()) {
1714           SemaRef.Diag(VD->getLocation(),
1715                        diag::err_constexpr_local_var_static)
1716             << isa<CXXConstructorDecl>(Dcl)
1717             << (VD->getTLSKind() == VarDecl::TLS_Dynamic);
1718           return false;
1719         }
1720         if (!VD->getType()->isDependentType() &&
1721             SemaRef.RequireLiteralType(
1722               VD->getLocation(), VD->getType(),
1723               diag::err_constexpr_local_var_non_literal_type,
1724               isa<CXXConstructorDecl>(Dcl)))
1725           return false;
1726         if (!VD->getType()->isDependentType() &&
1727             !VD->hasInit() && !VD->isCXXForRangeDecl()) {
1728           SemaRef.Diag(VD->getLocation(),
1729                        diag::err_constexpr_local_var_no_init)
1730             << isa<CXXConstructorDecl>(Dcl);
1731           return false;
1732         }
1733       }
1734       SemaRef.Diag(VD->getLocation(),
1735                    SemaRef.getLangOpts().CPlusPlus14
1736                     ? diag::warn_cxx11_compat_constexpr_local_var
1737                     : diag::ext_constexpr_local_var)
1738         << isa<CXXConstructorDecl>(Dcl);
1739       continue;
1740     }
1741 
1742     case Decl::NamespaceAlias:
1743     case Decl::Function:
1744       // These are disallowed in C++11 and permitted in C++1y. Allow them
1745       // everywhere as an extension.
1746       if (!Cxx1yLoc.isValid())
1747         Cxx1yLoc = DS->getLocStart();
1748       continue;
1749 
1750     default:
1751       SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
1752         << isa<CXXConstructorDecl>(Dcl);
1753       return false;
1754     }
1755   }
1756 
1757   return true;
1758 }
1759 
1760 /// Check that the given field is initialized within a constexpr constructor.
1761 ///
1762 /// \param Dcl The constexpr constructor being checked.
1763 /// \param Field The field being checked. This may be a member of an anonymous
1764 ///        struct or union nested within the class being checked.
1765 /// \param Inits All declarations, including anonymous struct/union members and
1766 ///        indirect members, for which any initialization was provided.
1767 /// \param Diagnosed Set to true if an error is produced.
1768 static void CheckConstexprCtorInitializer(Sema &SemaRef,
1769                                           const FunctionDecl *Dcl,
1770                                           FieldDecl *Field,
1771                                           llvm::SmallSet<Decl*, 16> &Inits,
1772                                           bool &Diagnosed) {
1773   if (Field->isInvalidDecl())
1774     return;
1775 
1776   if (Field->isUnnamedBitfield())
1777     return;
1778 
1779   // Anonymous unions with no variant members and empty anonymous structs do not
1780   // need to be explicitly initialized. FIXME: Anonymous structs that contain no
1781   // indirect fields don't need initializing.
1782   if (Field->isAnonymousStructOrUnion() &&
1783       (Field->getType()->isUnionType()
1784            ? !Field->getType()->getAsCXXRecordDecl()->hasVariantMembers()
1785            : Field->getType()->getAsCXXRecordDecl()->isEmpty()))
1786     return;
1787 
1788   if (!Inits.count(Field)) {
1789     if (!Diagnosed) {
1790       SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
1791       Diagnosed = true;
1792     }
1793     SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
1794   } else if (Field->isAnonymousStructOrUnion()) {
1795     const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
1796     for (auto *I : RD->fields())
1797       // If an anonymous union contains an anonymous struct of which any member
1798       // is initialized, all members must be initialized.
1799       if (!RD->isUnion() || Inits.count(I))
1800         CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed);
1801   }
1802 }
1803 
1804 /// Check the provided statement is allowed in a constexpr function
1805 /// definition.
1806 static bool
1807 CheckConstexprFunctionStmt(Sema &SemaRef, const FunctionDecl *Dcl, Stmt *S,
1808                            SmallVectorImpl<SourceLocation> &ReturnStmts,
1809                            SourceLocation &Cxx1yLoc) {
1810   // - its function-body shall be [...] a compound-statement that contains only
1811   switch (S->getStmtClass()) {
1812   case Stmt::NullStmtClass:
1813     //   - null statements,
1814     return true;
1815 
1816   case Stmt::DeclStmtClass:
1817     //   - static_assert-declarations
1818     //   - using-declarations,
1819     //   - using-directives,
1820     //   - typedef declarations and alias-declarations that do not define
1821     //     classes or enumerations,
1822     if (!CheckConstexprDeclStmt(SemaRef, Dcl, cast<DeclStmt>(S), Cxx1yLoc))
1823       return false;
1824     return true;
1825 
1826   case Stmt::ReturnStmtClass:
1827     //   - and exactly one return statement;
1828     if (isa<CXXConstructorDecl>(Dcl)) {
1829       // C++1y allows return statements in constexpr constructors.
1830       if (!Cxx1yLoc.isValid())
1831         Cxx1yLoc = S->getLocStart();
1832       return true;
1833     }
1834 
1835     ReturnStmts.push_back(S->getLocStart());
1836     return true;
1837 
1838   case Stmt::CompoundStmtClass: {
1839     // C++1y allows compound-statements.
1840     if (!Cxx1yLoc.isValid())
1841       Cxx1yLoc = S->getLocStart();
1842 
1843     CompoundStmt *CompStmt = cast<CompoundStmt>(S);
1844     for (auto *BodyIt : CompStmt->body()) {
1845       if (!CheckConstexprFunctionStmt(SemaRef, Dcl, BodyIt, ReturnStmts,
1846                                       Cxx1yLoc))
1847         return false;
1848     }
1849     return true;
1850   }
1851 
1852   case Stmt::AttributedStmtClass:
1853     if (!Cxx1yLoc.isValid())
1854       Cxx1yLoc = S->getLocStart();
1855     return true;
1856 
1857   case Stmt::IfStmtClass: {
1858     // C++1y allows if-statements.
1859     if (!Cxx1yLoc.isValid())
1860       Cxx1yLoc = S->getLocStart();
1861 
1862     IfStmt *If = cast<IfStmt>(S);
1863     if (!CheckConstexprFunctionStmt(SemaRef, Dcl, If->getThen(), ReturnStmts,
1864                                     Cxx1yLoc))
1865       return false;
1866     if (If->getElse() &&
1867         !CheckConstexprFunctionStmt(SemaRef, Dcl, If->getElse(), ReturnStmts,
1868                                     Cxx1yLoc))
1869       return false;
1870     return true;
1871   }
1872 
1873   case Stmt::WhileStmtClass:
1874   case Stmt::DoStmtClass:
1875   case Stmt::ForStmtClass:
1876   case Stmt::CXXForRangeStmtClass:
1877   case Stmt::ContinueStmtClass:
1878     // C++1y allows all of these. We don't allow them as extensions in C++11,
1879     // because they don't make sense without variable mutation.
1880     if (!SemaRef.getLangOpts().CPlusPlus14)
1881       break;
1882     if (!Cxx1yLoc.isValid())
1883       Cxx1yLoc = S->getLocStart();
1884     for (Stmt *SubStmt : S->children())
1885       if (SubStmt &&
1886           !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts,
1887                                       Cxx1yLoc))
1888         return false;
1889     return true;
1890 
1891   case Stmt::SwitchStmtClass:
1892   case Stmt::CaseStmtClass:
1893   case Stmt::DefaultStmtClass:
1894   case Stmt::BreakStmtClass:
1895     // C++1y allows switch-statements, and since they don't need variable
1896     // mutation, we can reasonably allow them in C++11 as an extension.
1897     if (!Cxx1yLoc.isValid())
1898       Cxx1yLoc = S->getLocStart();
1899     for (Stmt *SubStmt : S->children())
1900       if (SubStmt &&
1901           !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts,
1902                                       Cxx1yLoc))
1903         return false;
1904     return true;
1905 
1906   default:
1907     if (!isa<Expr>(S))
1908       break;
1909 
1910     // C++1y allows expression-statements.
1911     if (!Cxx1yLoc.isValid())
1912       Cxx1yLoc = S->getLocStart();
1913     return true;
1914   }
1915 
1916   SemaRef.Diag(S->getLocStart(), diag::err_constexpr_body_invalid_stmt)
1917     << isa<CXXConstructorDecl>(Dcl);
1918   return false;
1919 }
1920 
1921 /// Check the body for the given constexpr function declaration only contains
1922 /// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
1923 ///
1924 /// \return true if the body is OK, false if we have diagnosed a problem.
1925 bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
1926   if (isa<CXXTryStmt>(Body)) {
1927     // C++11 [dcl.constexpr]p3:
1928     //  The definition of a constexpr function shall satisfy the following
1929     //  constraints: [...]
1930     // - its function-body shall be = delete, = default, or a
1931     //   compound-statement
1932     //
1933     // C++11 [dcl.constexpr]p4:
1934     //  In the definition of a constexpr constructor, [...]
1935     // - its function-body shall not be a function-try-block;
1936     Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
1937       << isa<CXXConstructorDecl>(Dcl);
1938     return false;
1939   }
1940 
1941   SmallVector<SourceLocation, 4> ReturnStmts;
1942 
1943   // - its function-body shall be [...] a compound-statement that contains only
1944   //   [... list of cases ...]
1945   CompoundStmt *CompBody = cast<CompoundStmt>(Body);
1946   SourceLocation Cxx1yLoc;
1947   for (auto *BodyIt : CompBody->body()) {
1948     if (!CheckConstexprFunctionStmt(*this, Dcl, BodyIt, ReturnStmts, Cxx1yLoc))
1949       return false;
1950   }
1951 
1952   if (Cxx1yLoc.isValid())
1953     Diag(Cxx1yLoc,
1954          getLangOpts().CPlusPlus14
1955            ? diag::warn_cxx11_compat_constexpr_body_invalid_stmt
1956            : diag::ext_constexpr_body_invalid_stmt)
1957       << isa<CXXConstructorDecl>(Dcl);
1958 
1959   if (const CXXConstructorDecl *Constructor
1960         = dyn_cast<CXXConstructorDecl>(Dcl)) {
1961     const CXXRecordDecl *RD = Constructor->getParent();
1962     // DR1359:
1963     // - every non-variant non-static data member and base class sub-object
1964     //   shall be initialized;
1965     // DR1460:
1966     // - if the class is a union having variant members, exactly one of them
1967     //   shall be initialized;
1968     if (RD->isUnion()) {
1969       if (Constructor->getNumCtorInitializers() == 0 &&
1970           RD->hasVariantMembers()) {
1971         Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
1972         return false;
1973       }
1974     } else if (!Constructor->isDependentContext() &&
1975                !Constructor->isDelegatingConstructor()) {
1976       assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
1977 
1978       // Skip detailed checking if we have enough initializers, and we would
1979       // allow at most one initializer per member.
1980       bool AnyAnonStructUnionMembers = false;
1981       unsigned Fields = 0;
1982       for (CXXRecordDecl::field_iterator I = RD->field_begin(),
1983            E = RD->field_end(); I != E; ++I, ++Fields) {
1984         if (I->isAnonymousStructOrUnion()) {
1985           AnyAnonStructUnionMembers = true;
1986           break;
1987         }
1988       }
1989       // DR1460:
1990       // - if the class is a union-like class, but is not a union, for each of
1991       //   its anonymous union members having variant members, exactly one of
1992       //   them shall be initialized;
1993       if (AnyAnonStructUnionMembers ||
1994           Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
1995         // Check initialization of non-static data members. Base classes are
1996         // always initialized so do not need to be checked. Dependent bases
1997         // might not have initializers in the member initializer list.
1998         llvm::SmallSet<Decl*, 16> Inits;
1999         for (const auto *I: Constructor->inits()) {
2000           if (FieldDecl *FD = I->getMember())
2001             Inits.insert(FD);
2002           else if (IndirectFieldDecl *ID = I->getIndirectMember())
2003             Inits.insert(ID->chain_begin(), ID->chain_end());
2004         }
2005 
2006         bool Diagnosed = false;
2007         for (auto *I : RD->fields())
2008           CheckConstexprCtorInitializer(*this, Dcl, I, Inits, Diagnosed);
2009         if (Diagnosed)
2010           return false;
2011       }
2012     }
2013   } else {
2014     if (ReturnStmts.empty()) {
2015       // C++1y doesn't require constexpr functions to contain a 'return'
2016       // statement. We still do, unless the return type might be void, because
2017       // otherwise if there's no return statement, the function cannot
2018       // be used in a core constant expression.
2019       bool OK = getLangOpts().CPlusPlus14 &&
2020                 (Dcl->getReturnType()->isVoidType() ||
2021                  Dcl->getReturnType()->isDependentType());
2022       Diag(Dcl->getLocation(),
2023            OK ? diag::warn_cxx11_compat_constexpr_body_no_return
2024               : diag::err_constexpr_body_no_return);
2025       if (!OK)
2026         return false;
2027     } else if (ReturnStmts.size() > 1) {
2028       Diag(ReturnStmts.back(),
2029            getLangOpts().CPlusPlus14
2030              ? diag::warn_cxx11_compat_constexpr_body_multiple_return
2031              : diag::ext_constexpr_body_multiple_return);
2032       for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
2033         Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
2034     }
2035   }
2036 
2037   // C++11 [dcl.constexpr]p5:
2038   //   if no function argument values exist such that the function invocation
2039   //   substitution would produce a constant expression, the program is
2040   //   ill-formed; no diagnostic required.
2041   // C++11 [dcl.constexpr]p3:
2042   //   - every constructor call and implicit conversion used in initializing the
2043   //     return value shall be one of those allowed in a constant expression.
2044   // C++11 [dcl.constexpr]p4:
2045   //   - every constructor involved in initializing non-static data members and
2046   //     base class sub-objects shall be a constexpr constructor.
2047   SmallVector<PartialDiagnosticAt, 8> Diags;
2048   if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
2049     Diag(Dcl->getLocation(), diag::ext_constexpr_function_never_constant_expr)
2050       << isa<CXXConstructorDecl>(Dcl);
2051     for (size_t I = 0, N = Diags.size(); I != N; ++I)
2052       Diag(Diags[I].first, Diags[I].second);
2053     // Don't return false here: we allow this for compatibility in
2054     // system headers.
2055   }
2056 
2057   return true;
2058 }
2059 
2060 /// isCurrentClassName - Determine whether the identifier II is the
2061 /// name of the class type currently being defined. In the case of
2062 /// nested classes, this will only return true if II is the name of
2063 /// the innermost class.
2064 bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
2065                               const CXXScopeSpec *SS) {
2066   assert(getLangOpts().CPlusPlus && "No class names in C!");
2067 
2068   CXXRecordDecl *CurDecl;
2069   if (SS && SS->isSet() && !SS->isInvalid()) {
2070     DeclContext *DC = computeDeclContext(*SS, true);
2071     CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
2072   } else
2073     CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
2074 
2075   if (CurDecl && CurDecl->getIdentifier())
2076     return &II == CurDecl->getIdentifier();
2077   return false;
2078 }
2079 
2080 /// \brief Determine whether the identifier II is a typo for the name of
2081 /// the class type currently being defined. If so, update it to the identifier
2082 /// that should have been used.
2083 bool Sema::isCurrentClassNameTypo(IdentifierInfo *&II, const CXXScopeSpec *SS) {
2084   assert(getLangOpts().CPlusPlus && "No class names in C!");
2085 
2086   if (!getLangOpts().SpellChecking)
2087     return false;
2088 
2089   CXXRecordDecl *CurDecl;
2090   if (SS && SS->isSet() && !SS->isInvalid()) {
2091     DeclContext *DC = computeDeclContext(*SS, true);
2092     CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
2093   } else
2094     CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
2095 
2096   if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() &&
2097       3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName())
2098           < II->getLength()) {
2099     II = CurDecl->getIdentifier();
2100     return true;
2101   }
2102 
2103   return false;
2104 }
2105 
2106 /// \brief Determine whether the given class is a base class of the given
2107 /// class, including looking at dependent bases.
2108 static bool findCircularInheritance(const CXXRecordDecl *Class,
2109                                     const CXXRecordDecl *Current) {
2110   SmallVector<const CXXRecordDecl*, 8> Queue;
2111 
2112   Class = Class->getCanonicalDecl();
2113   while (true) {
2114     for (const auto &I : Current->bases()) {
2115       CXXRecordDecl *Base = I.getType()->getAsCXXRecordDecl();
2116       if (!Base)
2117         continue;
2118 
2119       Base = Base->getDefinition();
2120       if (!Base)
2121         continue;
2122 
2123       if (Base->getCanonicalDecl() == Class)
2124         return true;
2125 
2126       Queue.push_back(Base);
2127     }
2128 
2129     if (Queue.empty())
2130       return false;
2131 
2132     Current = Queue.pop_back_val();
2133   }
2134 
2135   return false;
2136 }
2137 
2138 /// \brief Check the validity of a C++ base class specifier.
2139 ///
2140 /// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
2141 /// and returns NULL otherwise.
2142 CXXBaseSpecifier *
2143 Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
2144                          SourceRange SpecifierRange,
2145                          bool Virtual, AccessSpecifier Access,
2146                          TypeSourceInfo *TInfo,
2147                          SourceLocation EllipsisLoc) {
2148   QualType BaseType = TInfo->getType();
2149 
2150   // C++ [class.union]p1:
2151   //   A union shall not have base classes.
2152   if (Class->isUnion()) {
2153     Diag(Class->getLocation(), diag::err_base_clause_on_union)
2154       << SpecifierRange;
2155     return nullptr;
2156   }
2157 
2158   if (EllipsisLoc.isValid() &&
2159       !TInfo->getType()->containsUnexpandedParameterPack()) {
2160     Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
2161       << TInfo->getTypeLoc().getSourceRange();
2162     EllipsisLoc = SourceLocation();
2163   }
2164 
2165   SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
2166 
2167   if (BaseType->isDependentType()) {
2168     // Make sure that we don't have circular inheritance among our dependent
2169     // bases. For non-dependent bases, the check for completeness below handles
2170     // this.
2171     if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
2172       if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
2173           ((BaseDecl = BaseDecl->getDefinition()) &&
2174            findCircularInheritance(Class, BaseDecl))) {
2175         Diag(BaseLoc, diag::err_circular_inheritance)
2176           << BaseType << Context.getTypeDeclType(Class);
2177 
2178         if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
2179           Diag(BaseDecl->getLocation(), diag::note_previous_decl)
2180             << BaseType;
2181 
2182         return nullptr;
2183       }
2184     }
2185 
2186     return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
2187                                           Class->getTagKind() == TTK_Class,
2188                                           Access, TInfo, EllipsisLoc);
2189   }
2190 
2191   // Base specifiers must be record types.
2192   if (!BaseType->isRecordType()) {
2193     Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
2194     return nullptr;
2195   }
2196 
2197   // C++ [class.union]p1:
2198   //   A union shall not be used as a base class.
2199   if (BaseType->isUnionType()) {
2200     Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
2201     return nullptr;
2202   }
2203 
2204   // For the MS ABI, propagate DLL attributes to base class templates.
2205   if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
2206     if (Attr *ClassAttr = getDLLAttr(Class)) {
2207       if (auto *BaseTemplate = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
2208               BaseType->getAsCXXRecordDecl())) {
2209         propagateDLLAttrToBaseClassTemplate(Class, ClassAttr, BaseTemplate,
2210                                             BaseLoc);
2211       }
2212     }
2213   }
2214 
2215   // C++ [class.derived]p2:
2216   //   The class-name in a base-specifier shall not be an incompletely
2217   //   defined class.
2218   if (RequireCompleteType(BaseLoc, BaseType,
2219                           diag::err_incomplete_base_class, SpecifierRange)) {
2220     Class->setInvalidDecl();
2221     return nullptr;
2222   }
2223 
2224   // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
2225   RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
2226   assert(BaseDecl && "Record type has no declaration");
2227   BaseDecl = BaseDecl->getDefinition();
2228   assert(BaseDecl && "Base type is not incomplete, but has no definition");
2229   CXXRecordDecl *CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
2230   assert(CXXBaseDecl && "Base type is not a C++ type");
2231 
2232   // A class which contains a flexible array member is not suitable for use as a
2233   // base class:
2234   //   - If the layout determines that a base comes before another base,
2235   //     the flexible array member would index into the subsequent base.
2236   //   - If the layout determines that base comes before the derived class,
2237   //     the flexible array member would index into the derived class.
2238   if (CXXBaseDecl->hasFlexibleArrayMember()) {
2239     Diag(BaseLoc, diag::err_base_class_has_flexible_array_member)
2240       << CXXBaseDecl->getDeclName();
2241     return nullptr;
2242   }
2243 
2244   // C++ [class]p3:
2245   //   If a class is marked final and it appears as a base-type-specifier in
2246   //   base-clause, the program is ill-formed.
2247   if (FinalAttr *FA = CXXBaseDecl->getAttr<FinalAttr>()) {
2248     Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
2249       << CXXBaseDecl->getDeclName()
2250       << FA->isSpelledAsSealed();
2251     Diag(CXXBaseDecl->getLocation(), diag::note_entity_declared_at)
2252         << CXXBaseDecl->getDeclName() << FA->getRange();
2253     return nullptr;
2254   }
2255 
2256   if (BaseDecl->isInvalidDecl())
2257     Class->setInvalidDecl();
2258 
2259   // Create the base specifier.
2260   return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
2261                                         Class->getTagKind() == TTK_Class,
2262                                         Access, TInfo, EllipsisLoc);
2263 }
2264 
2265 /// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
2266 /// one entry in the base class list of a class specifier, for
2267 /// example:
2268 ///    class foo : public bar, virtual private baz {
2269 /// 'public bar' and 'virtual private baz' are each base-specifiers.
2270 BaseResult
2271 Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
2272                          ParsedAttributes &Attributes,
2273                          bool Virtual, AccessSpecifier Access,
2274                          ParsedType basetype, SourceLocation BaseLoc,
2275                          SourceLocation EllipsisLoc) {
2276   if (!classdecl)
2277     return true;
2278 
2279   AdjustDeclIfTemplate(classdecl);
2280   CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
2281   if (!Class)
2282     return true;
2283 
2284   // We haven't yet attached the base specifiers.
2285   Class->setIsParsingBaseSpecifiers();
2286 
2287   // We do not support any C++11 attributes on base-specifiers yet.
2288   // Diagnose any attributes we see.
2289   if (!Attributes.empty()) {
2290     for (AttributeList *Attr = Attributes.getList(); Attr;
2291          Attr = Attr->getNext()) {
2292       if (Attr->isInvalid() ||
2293           Attr->getKind() == AttributeList::IgnoredAttribute)
2294         continue;
2295       Diag(Attr->getLoc(),
2296            Attr->getKind() == AttributeList::UnknownAttribute
2297              ? diag::warn_unknown_attribute_ignored
2298              : diag::err_base_specifier_attribute)
2299         << Attr->getName();
2300     }
2301   }
2302 
2303   TypeSourceInfo *TInfo = nullptr;
2304   GetTypeFromParser(basetype, &TInfo);
2305 
2306   if (EllipsisLoc.isInvalid() &&
2307       DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
2308                                       UPPC_BaseType))
2309     return true;
2310 
2311   if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
2312                                                       Virtual, Access, TInfo,
2313                                                       EllipsisLoc))
2314     return BaseSpec;
2315   else
2316     Class->setInvalidDecl();
2317 
2318   return true;
2319 }
2320 
2321 /// Use small set to collect indirect bases.  As this is only used
2322 /// locally, there's no need to abstract the small size parameter.
2323 typedef llvm::SmallPtrSet<QualType, 4> IndirectBaseSet;
2324 
2325 /// \brief Recursively add the bases of Type.  Don't add Type itself.
2326 static void
2327 NoteIndirectBases(ASTContext &Context, IndirectBaseSet &Set,
2328                   const QualType &Type)
2329 {
2330   // Even though the incoming type is a base, it might not be
2331   // a class -- it could be a template parm, for instance.
2332   if (auto Rec = Type->getAs<RecordType>()) {
2333     auto Decl = Rec->getAsCXXRecordDecl();
2334 
2335     // Iterate over its bases.
2336     for (const auto &BaseSpec : Decl->bases()) {
2337       QualType Base = Context.getCanonicalType(BaseSpec.getType())
2338         .getUnqualifiedType();
2339       if (Set.insert(Base).second)
2340         // If we've not already seen it, recurse.
2341         NoteIndirectBases(Context, Set, Base);
2342     }
2343   }
2344 }
2345 
2346 /// \brief Performs the actual work of attaching the given base class
2347 /// specifiers to a C++ class.
2348 bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class,
2349                                 MutableArrayRef<CXXBaseSpecifier *> Bases) {
2350  if (Bases.empty())
2351     return false;
2352 
2353   // Used to keep track of which base types we have already seen, so
2354   // that we can properly diagnose redundant direct base types. Note
2355   // that the key is always the unqualified canonical type of the base
2356   // class.
2357   std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
2358 
2359   // Used to track indirect bases so we can see if a direct base is
2360   // ambiguous.
2361   IndirectBaseSet IndirectBaseTypes;
2362 
2363   // Copy non-redundant base specifiers into permanent storage.
2364   unsigned NumGoodBases = 0;
2365   bool Invalid = false;
2366   for (unsigned idx = 0; idx < Bases.size(); ++idx) {
2367     QualType NewBaseType
2368       = Context.getCanonicalType(Bases[idx]->getType());
2369     NewBaseType = NewBaseType.getLocalUnqualifiedType();
2370 
2371     CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
2372     if (KnownBase) {
2373       // C++ [class.mi]p3:
2374       //   A class shall not be specified as a direct base class of a
2375       //   derived class more than once.
2376       Diag(Bases[idx]->getLocStart(),
2377            diag::err_duplicate_base_class)
2378         << KnownBase->getType()
2379         << Bases[idx]->getSourceRange();
2380 
2381       // Delete the duplicate base class specifier; we're going to
2382       // overwrite its pointer later.
2383       Context.Deallocate(Bases[idx]);
2384 
2385       Invalid = true;
2386     } else {
2387       // Okay, add this new base class.
2388       KnownBase = Bases[idx];
2389       Bases[NumGoodBases++] = Bases[idx];
2390 
2391       // Note this base's direct & indirect bases, if there could be ambiguity.
2392       if (Bases.size() > 1)
2393         NoteIndirectBases(Context, IndirectBaseTypes, NewBaseType);
2394 
2395       if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
2396         const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
2397         if (Class->isInterface() &&
2398               (!RD->isInterfaceLike() ||
2399                KnownBase->getAccessSpecifier() != AS_public)) {
2400           // The Microsoft extension __interface does not permit bases that
2401           // are not themselves public interfaces.
2402           Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
2403             << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
2404             << RD->getSourceRange();
2405           Invalid = true;
2406         }
2407         if (RD->hasAttr<WeakAttr>())
2408           Class->addAttr(WeakAttr::CreateImplicit(Context));
2409       }
2410     }
2411   }
2412 
2413   // Attach the remaining base class specifiers to the derived class.
2414   Class->setBases(Bases.data(), NumGoodBases);
2415 
2416   for (unsigned idx = 0; idx < NumGoodBases; ++idx) {
2417     // Check whether this direct base is inaccessible due to ambiguity.
2418     QualType BaseType = Bases[idx]->getType();
2419     CanQualType CanonicalBase = Context.getCanonicalType(BaseType)
2420       .getUnqualifiedType();
2421 
2422     if (IndirectBaseTypes.count(CanonicalBase)) {
2423       CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2424                          /*DetectVirtual=*/true);
2425       bool found
2426         = Class->isDerivedFrom(CanonicalBase->getAsCXXRecordDecl(), Paths);
2427       assert(found);
2428       (void)found;
2429 
2430       if (Paths.isAmbiguous(CanonicalBase))
2431         Diag(Bases[idx]->getLocStart (), diag::warn_inaccessible_base_class)
2432           << BaseType << getAmbiguousPathsDisplayString(Paths)
2433           << Bases[idx]->getSourceRange();
2434       else
2435         assert(Bases[idx]->isVirtual());
2436     }
2437 
2438     // Delete the base class specifier, since its data has been copied
2439     // into the CXXRecordDecl.
2440     Context.Deallocate(Bases[idx]);
2441   }
2442 
2443   return Invalid;
2444 }
2445 
2446 /// ActOnBaseSpecifiers - Attach the given base specifiers to the
2447 /// class, after checking whether there are any duplicate base
2448 /// classes.
2449 void Sema::ActOnBaseSpecifiers(Decl *ClassDecl,
2450                                MutableArrayRef<CXXBaseSpecifier *> Bases) {
2451   if (!ClassDecl || Bases.empty())
2452     return;
2453 
2454   AdjustDeclIfTemplate(ClassDecl);
2455   AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl), Bases);
2456 }
2457 
2458 /// \brief Determine whether the type \p Derived is a C++ class that is
2459 /// derived from the type \p Base.
2460 bool Sema::IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base) {
2461   if (!getLangOpts().CPlusPlus)
2462     return false;
2463 
2464   CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
2465   if (!DerivedRD)
2466     return false;
2467 
2468   CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
2469   if (!BaseRD)
2470     return false;
2471 
2472   // If either the base or the derived type is invalid, don't try to
2473   // check whether one is derived from the other.
2474   if (BaseRD->isInvalidDecl() || DerivedRD->isInvalidDecl())
2475     return false;
2476 
2477   // FIXME: In a modules build, do we need the entire path to be visible for us
2478   // to be able to use the inheritance relationship?
2479   if (!isCompleteType(Loc, Derived) && !DerivedRD->isBeingDefined())
2480     return false;
2481 
2482   return DerivedRD->isDerivedFrom(BaseRD);
2483 }
2484 
2485 /// \brief Determine whether the type \p Derived is a C++ class that is
2486 /// derived from the type \p Base.
2487 bool Sema::IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base,
2488                          CXXBasePaths &Paths) {
2489   if (!getLangOpts().CPlusPlus)
2490     return false;
2491 
2492   CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
2493   if (!DerivedRD)
2494     return false;
2495 
2496   CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
2497   if (!BaseRD)
2498     return false;
2499 
2500   if (!isCompleteType(Loc, Derived) && !DerivedRD->isBeingDefined())
2501     return false;
2502 
2503   return DerivedRD->isDerivedFrom(BaseRD, Paths);
2504 }
2505 
2506 void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
2507                               CXXCastPath &BasePathArray) {
2508   assert(BasePathArray.empty() && "Base path array must be empty!");
2509   assert(Paths.isRecordingPaths() && "Must record paths!");
2510 
2511   const CXXBasePath &Path = Paths.front();
2512 
2513   // We first go backward and check if we have a virtual base.
2514   // FIXME: It would be better if CXXBasePath had the base specifier for
2515   // the nearest virtual base.
2516   unsigned Start = 0;
2517   for (unsigned I = Path.size(); I != 0; --I) {
2518     if (Path[I - 1].Base->isVirtual()) {
2519       Start = I - 1;
2520       break;
2521     }
2522   }
2523 
2524   // Now add all bases.
2525   for (unsigned I = Start, E = Path.size(); I != E; ++I)
2526     BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
2527 }
2528 
2529 /// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
2530 /// conversion (where Derived and Base are class types) is
2531 /// well-formed, meaning that the conversion is unambiguous (and
2532 /// that all of the base classes are accessible). Returns true
2533 /// and emits a diagnostic if the code is ill-formed, returns false
2534 /// otherwise. Loc is the location where this routine should point to
2535 /// if there is an error, and Range is the source range to highlight
2536 /// if there is an error.
2537 ///
2538 /// If either InaccessibleBaseID or AmbigiousBaseConvID are 0, then the
2539 /// diagnostic for the respective type of error will be suppressed, but the
2540 /// check for ill-formed code will still be performed.
2541 bool
2542 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
2543                                    unsigned InaccessibleBaseID,
2544                                    unsigned AmbigiousBaseConvID,
2545                                    SourceLocation Loc, SourceRange Range,
2546                                    DeclarationName Name,
2547                                    CXXCastPath *BasePath,
2548                                    bool IgnoreAccess) {
2549   // First, determine whether the path from Derived to Base is
2550   // ambiguous. This is slightly more expensive than checking whether
2551   // the Derived to Base conversion exists, because here we need to
2552   // explore multiple paths to determine if there is an ambiguity.
2553   CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2554                      /*DetectVirtual=*/false);
2555   bool DerivationOkay = IsDerivedFrom(Loc, Derived, Base, Paths);
2556   assert(DerivationOkay &&
2557          "Can only be used with a derived-to-base conversion");
2558   (void)DerivationOkay;
2559 
2560   if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
2561     if (!IgnoreAccess) {
2562       // Check that the base class can be accessed.
2563       switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
2564                                    InaccessibleBaseID)) {
2565         case AR_inaccessible:
2566           return true;
2567         case AR_accessible:
2568         case AR_dependent:
2569         case AR_delayed:
2570           break;
2571       }
2572     }
2573 
2574     // Build a base path if necessary.
2575     if (BasePath)
2576       BuildBasePathArray(Paths, *BasePath);
2577     return false;
2578   }
2579 
2580   if (AmbigiousBaseConvID) {
2581     // We know that the derived-to-base conversion is ambiguous, and
2582     // we're going to produce a diagnostic. Perform the derived-to-base
2583     // search just one more time to compute all of the possible paths so
2584     // that we can print them out. This is more expensive than any of
2585     // the previous derived-to-base checks we've done, but at this point
2586     // performance isn't as much of an issue.
2587     Paths.clear();
2588     Paths.setRecordingPaths(true);
2589     bool StillOkay = IsDerivedFrom(Loc, Derived, Base, Paths);
2590     assert(StillOkay && "Can only be used with a derived-to-base conversion");
2591     (void)StillOkay;
2592 
2593     // Build up a textual representation of the ambiguous paths, e.g.,
2594     // D -> B -> A, that will be used to illustrate the ambiguous
2595     // conversions in the diagnostic. We only print one of the paths
2596     // to each base class subobject.
2597     std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
2598 
2599     Diag(Loc, AmbigiousBaseConvID)
2600     << Derived << Base << PathDisplayStr << Range << Name;
2601   }
2602   return true;
2603 }
2604 
2605 bool
2606 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
2607                                    SourceLocation Loc, SourceRange Range,
2608                                    CXXCastPath *BasePath,
2609                                    bool IgnoreAccess) {
2610   return CheckDerivedToBaseConversion(
2611       Derived, Base, diag::err_upcast_to_inaccessible_base,
2612       diag::err_ambiguous_derived_to_base_conv, Loc, Range, DeclarationName(),
2613       BasePath, IgnoreAccess);
2614 }
2615 
2616 
2617 /// @brief Builds a string representing ambiguous paths from a
2618 /// specific derived class to different subobjects of the same base
2619 /// class.
2620 ///
2621 /// This function builds a string that can be used in error messages
2622 /// to show the different paths that one can take through the
2623 /// inheritance hierarchy to go from the derived class to different
2624 /// subobjects of a base class. The result looks something like this:
2625 /// @code
2626 /// struct D -> struct B -> struct A
2627 /// struct D -> struct C -> struct A
2628 /// @endcode
2629 std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
2630   std::string PathDisplayStr;
2631   std::set<unsigned> DisplayedPaths;
2632   for (CXXBasePaths::paths_iterator Path = Paths.begin();
2633        Path != Paths.end(); ++Path) {
2634     if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
2635       // We haven't displayed a path to this particular base
2636       // class subobject yet.
2637       PathDisplayStr += "\n    ";
2638       PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
2639       for (CXXBasePath::const_iterator Element = Path->begin();
2640            Element != Path->end(); ++Element)
2641         PathDisplayStr += " -> " + Element->Base->getType().getAsString();
2642     }
2643   }
2644 
2645   return PathDisplayStr;
2646 }
2647 
2648 //===----------------------------------------------------------------------===//
2649 // C++ class member Handling
2650 //===----------------------------------------------------------------------===//
2651 
2652 /// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
2653 bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
2654                                 SourceLocation ASLoc,
2655                                 SourceLocation ColonLoc,
2656                                 AttributeList *Attrs) {
2657   assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
2658   AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
2659                                                   ASLoc, ColonLoc);
2660   CurContext->addHiddenDecl(ASDecl);
2661   return ProcessAccessDeclAttributeList(ASDecl, Attrs);
2662 }
2663 
2664 /// CheckOverrideControl - Check C++11 override control semantics.
2665 void Sema::CheckOverrideControl(NamedDecl *D) {
2666   if (D->isInvalidDecl())
2667     return;
2668 
2669   // We only care about "override" and "final" declarations.
2670   if (!D->hasAttr<OverrideAttr>() && !D->hasAttr<FinalAttr>())
2671     return;
2672 
2673   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
2674 
2675   // We can't check dependent instance methods.
2676   if (MD && MD->isInstance() &&
2677       (MD->getParent()->hasAnyDependentBases() ||
2678        MD->getType()->isDependentType()))
2679     return;
2680 
2681   if (MD && !MD->isVirtual()) {
2682     // If we have a non-virtual method, check if if hides a virtual method.
2683     // (In that case, it's most likely the method has the wrong type.)
2684     SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
2685     FindHiddenVirtualMethods(MD, OverloadedMethods);
2686 
2687     if (!OverloadedMethods.empty()) {
2688       if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
2689         Diag(OA->getLocation(),
2690              diag::override_keyword_hides_virtual_member_function)
2691           << "override" << (OverloadedMethods.size() > 1);
2692       } else if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
2693         Diag(FA->getLocation(),
2694              diag::override_keyword_hides_virtual_member_function)
2695           << (FA->isSpelledAsSealed() ? "sealed" : "final")
2696           << (OverloadedMethods.size() > 1);
2697       }
2698       NoteHiddenVirtualMethods(MD, OverloadedMethods);
2699       MD->setInvalidDecl();
2700       return;
2701     }
2702     // Fall through into the general case diagnostic.
2703     // FIXME: We might want to attempt typo correction here.
2704   }
2705 
2706   if (!MD || !MD->isVirtual()) {
2707     if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
2708       Diag(OA->getLocation(),
2709            diag::override_keyword_only_allowed_on_virtual_member_functions)
2710         << "override" << FixItHint::CreateRemoval(OA->getLocation());
2711       D->dropAttr<OverrideAttr>();
2712     }
2713     if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
2714       Diag(FA->getLocation(),
2715            diag::override_keyword_only_allowed_on_virtual_member_functions)
2716         << (FA->isSpelledAsSealed() ? "sealed" : "final")
2717         << FixItHint::CreateRemoval(FA->getLocation());
2718       D->dropAttr<FinalAttr>();
2719     }
2720     return;
2721   }
2722 
2723   // C++11 [class.virtual]p5:
2724   //   If a function is marked with the virt-specifier override and
2725   //   does not override a member function of a base class, the program is
2726   //   ill-formed.
2727   bool HasOverriddenMethods =
2728     MD->begin_overridden_methods() != MD->end_overridden_methods();
2729   if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
2730     Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
2731       << MD->getDeclName();
2732 }
2733 
2734 void Sema::DiagnoseAbsenceOfOverrideControl(NamedDecl *D) {
2735   if (D->isInvalidDecl() || D->hasAttr<OverrideAttr>())
2736     return;
2737   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
2738   if (!MD || MD->isImplicit() || MD->hasAttr<FinalAttr>())
2739     return;
2740 
2741   SourceLocation Loc = MD->getLocation();
2742   SourceLocation SpellingLoc = Loc;
2743   if (getSourceManager().isMacroArgExpansion(Loc))
2744     SpellingLoc = getSourceManager().getImmediateExpansionRange(Loc).first;
2745   SpellingLoc = getSourceManager().getSpellingLoc(SpellingLoc);
2746   if (SpellingLoc.isValid() && getSourceManager().isInSystemHeader(SpellingLoc))
2747       return;
2748 
2749   if (MD->size_overridden_methods() > 0) {
2750     unsigned DiagID = isa<CXXDestructorDecl>(MD)
2751                           ? diag::warn_destructor_marked_not_override_overriding
2752                           : diag::warn_function_marked_not_override_overriding;
2753     Diag(MD->getLocation(), DiagID) << MD->getDeclName();
2754     const CXXMethodDecl *OMD = *MD->begin_overridden_methods();
2755     Diag(OMD->getLocation(), diag::note_overridden_virtual_function);
2756   }
2757 }
2758 
2759 /// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
2760 /// function overrides a virtual member function marked 'final', according to
2761 /// C++11 [class.virtual]p4.
2762 bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
2763                                                   const CXXMethodDecl *Old) {
2764   FinalAttr *FA = Old->getAttr<FinalAttr>();
2765   if (!FA)
2766     return false;
2767 
2768   Diag(New->getLocation(), diag::err_final_function_overridden)
2769     << New->getDeclName()
2770     << FA->isSpelledAsSealed();
2771   Diag(Old->getLocation(), diag::note_overridden_virtual_function);
2772   return true;
2773 }
2774 
2775 static bool InitializationHasSideEffects(const FieldDecl &FD) {
2776   const Type *T = FD.getType()->getBaseElementTypeUnsafe();
2777   // FIXME: Destruction of ObjC lifetime types has side-effects.
2778   if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
2779     return !RD->isCompleteDefinition() ||
2780            !RD->hasTrivialDefaultConstructor() ||
2781            !RD->hasTrivialDestructor();
2782   return false;
2783 }
2784 
2785 static AttributeList *getMSPropertyAttr(AttributeList *list) {
2786   for (AttributeList *it = list; it != nullptr; it = it->getNext())
2787     if (it->isDeclspecPropertyAttribute())
2788       return it;
2789   return nullptr;
2790 }
2791 
2792 // Check if there is a field shadowing.
2793 void Sema::CheckShadowInheritedFields(const SourceLocation &Loc,
2794                                       DeclarationName FieldName,
2795                                       const CXXRecordDecl *RD) {
2796   if (Diags.isIgnored(diag::warn_shadow_field, Loc))
2797     return;
2798 
2799   // To record a shadowed field in a base
2800   std::map<CXXRecordDecl*, NamedDecl*> Bases;
2801   auto FieldShadowed = [&](const CXXBaseSpecifier *Specifier,
2802                            CXXBasePath &Path) {
2803     const auto Base = Specifier->getType()->getAsCXXRecordDecl();
2804     // Record an ambiguous path directly
2805     if (Bases.find(Base) != Bases.end())
2806       return true;
2807     for (const auto Field : Base->lookup(FieldName)) {
2808       if ((isa<FieldDecl>(Field) || isa<IndirectFieldDecl>(Field)) &&
2809           Field->getAccess() != AS_private) {
2810         assert(Field->getAccess() != AS_none);
2811         assert(Bases.find(Base) == Bases.end());
2812         Bases[Base] = Field;
2813         return true;
2814       }
2815     }
2816     return false;
2817   };
2818 
2819   CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2820                      /*DetectVirtual=*/true);
2821   if (!RD->lookupInBases(FieldShadowed, Paths))
2822     return;
2823 
2824   for (const auto &P : Paths) {
2825     auto Base = P.back().Base->getType()->getAsCXXRecordDecl();
2826     auto It = Bases.find(Base);
2827     // Skip duplicated bases
2828     if (It == Bases.end())
2829       continue;
2830     auto BaseField = It->second;
2831     assert(BaseField->getAccess() != AS_private);
2832     if (AS_none !=
2833         CXXRecordDecl::MergeAccess(P.Access, BaseField->getAccess())) {
2834       Diag(Loc, diag::warn_shadow_field)
2835         << FieldName.getAsString() << RD->getName() << Base->getName();
2836       Diag(BaseField->getLocation(), diag::note_shadow_field);
2837       Bases.erase(It);
2838     }
2839   }
2840 }
2841 
2842 /// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
2843 /// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
2844 /// bitfield width if there is one, 'InitExpr' specifies the initializer if
2845 /// one has been parsed, and 'InitStyle' is set if an in-class initializer is
2846 /// present (but parsing it has been deferred).
2847 NamedDecl *
2848 Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
2849                                MultiTemplateParamsArg TemplateParameterLists,
2850                                Expr *BW, const VirtSpecifiers &VS,
2851                                InClassInitStyle InitStyle) {
2852   const DeclSpec &DS = D.getDeclSpec();
2853   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
2854   DeclarationName Name = NameInfo.getName();
2855   SourceLocation Loc = NameInfo.getLoc();
2856 
2857   // For anonymous bitfields, the location should point to the type.
2858   if (Loc.isInvalid())
2859     Loc = D.getLocStart();
2860 
2861   Expr *BitWidth = static_cast<Expr*>(BW);
2862 
2863   assert(isa<CXXRecordDecl>(CurContext));
2864   assert(!DS.isFriendSpecified());
2865 
2866   bool isFunc = D.isDeclarationOfFunction();
2867   AttributeList *MSPropertyAttr =
2868       getMSPropertyAttr(D.getDeclSpec().getAttributes().getList());
2869 
2870   if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
2871     // The Microsoft extension __interface only permits public member functions
2872     // and prohibits constructors, destructors, operators, non-public member
2873     // functions, static methods and data members.
2874     unsigned InvalidDecl;
2875     bool ShowDeclName = true;
2876     if (!isFunc &&
2877         (DS.getStorageClassSpec() == DeclSpec::SCS_typedef || MSPropertyAttr))
2878       InvalidDecl = 0;
2879     else if (!isFunc)
2880       InvalidDecl = 1;
2881     else if (AS != AS_public)
2882       InvalidDecl = 2;
2883     else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
2884       InvalidDecl = 3;
2885     else switch (Name.getNameKind()) {
2886       case DeclarationName::CXXConstructorName:
2887         InvalidDecl = 4;
2888         ShowDeclName = false;
2889         break;
2890 
2891       case DeclarationName::CXXDestructorName:
2892         InvalidDecl = 5;
2893         ShowDeclName = false;
2894         break;
2895 
2896       case DeclarationName::CXXOperatorName:
2897       case DeclarationName::CXXConversionFunctionName:
2898         InvalidDecl = 6;
2899         break;
2900 
2901       default:
2902         InvalidDecl = 0;
2903         break;
2904     }
2905 
2906     if (InvalidDecl) {
2907       if (ShowDeclName)
2908         Diag(Loc, diag::err_invalid_member_in_interface)
2909           << (InvalidDecl-1) << Name;
2910       else
2911         Diag(Loc, diag::err_invalid_member_in_interface)
2912           << (InvalidDecl-1) << "";
2913       return nullptr;
2914     }
2915   }
2916 
2917   // C++ 9.2p6: A member shall not be declared to have automatic storage
2918   // duration (auto, register) or with the extern storage-class-specifier.
2919   // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
2920   // data members and cannot be applied to names declared const or static,
2921   // and cannot be applied to reference members.
2922   switch (DS.getStorageClassSpec()) {
2923   case DeclSpec::SCS_unspecified:
2924   case DeclSpec::SCS_typedef:
2925   case DeclSpec::SCS_static:
2926     break;
2927   case DeclSpec::SCS_mutable:
2928     if (isFunc) {
2929       Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
2930 
2931       // FIXME: It would be nicer if the keyword was ignored only for this
2932       // declarator. Otherwise we could get follow-up errors.
2933       D.getMutableDeclSpec().ClearStorageClassSpecs();
2934     }
2935     break;
2936   default:
2937     Diag(DS.getStorageClassSpecLoc(),
2938          diag::err_storageclass_invalid_for_member);
2939     D.getMutableDeclSpec().ClearStorageClassSpecs();
2940     break;
2941   }
2942 
2943   bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
2944                        DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
2945                       !isFunc);
2946 
2947   if (DS.isConstexprSpecified() && isInstField) {
2948     SemaDiagnosticBuilder B =
2949         Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr_member);
2950     SourceLocation ConstexprLoc = DS.getConstexprSpecLoc();
2951     if (InitStyle == ICIS_NoInit) {
2952       B << 0 << 0;
2953       if (D.getDeclSpec().getTypeQualifiers() & DeclSpec::TQ_const)
2954         B << FixItHint::CreateRemoval(ConstexprLoc);
2955       else {
2956         B << FixItHint::CreateReplacement(ConstexprLoc, "const");
2957         D.getMutableDeclSpec().ClearConstexprSpec();
2958         const char *PrevSpec;
2959         unsigned DiagID;
2960         bool Failed = D.getMutableDeclSpec().SetTypeQual(
2961             DeclSpec::TQ_const, ConstexprLoc, PrevSpec, DiagID, getLangOpts());
2962         (void)Failed;
2963         assert(!Failed && "Making a constexpr member const shouldn't fail");
2964       }
2965     } else {
2966       B << 1;
2967       const char *PrevSpec;
2968       unsigned DiagID;
2969       if (D.getMutableDeclSpec().SetStorageClassSpec(
2970           *this, DeclSpec::SCS_static, ConstexprLoc, PrevSpec, DiagID,
2971           Context.getPrintingPolicy())) {
2972         assert(DS.getStorageClassSpec() == DeclSpec::SCS_mutable &&
2973                "This is the only DeclSpec that should fail to be applied");
2974         B << 1;
2975       } else {
2976         B << 0 << FixItHint::CreateInsertion(ConstexprLoc, "static ");
2977         isInstField = false;
2978       }
2979     }
2980   }
2981 
2982   NamedDecl *Member;
2983   if (isInstField) {
2984     CXXScopeSpec &SS = D.getCXXScopeSpec();
2985 
2986     // Data members must have identifiers for names.
2987     if (!Name.isIdentifier()) {
2988       Diag(Loc, diag::err_bad_variable_name)
2989         << Name;
2990       return nullptr;
2991     }
2992 
2993     IdentifierInfo *II = Name.getAsIdentifierInfo();
2994 
2995     // Member field could not be with "template" keyword.
2996     // So TemplateParameterLists should be empty in this case.
2997     if (TemplateParameterLists.size()) {
2998       TemplateParameterList* TemplateParams = TemplateParameterLists[0];
2999       if (TemplateParams->size()) {
3000         // There is no such thing as a member field template.
3001         Diag(D.getIdentifierLoc(), diag::err_template_member)
3002             << II
3003             << SourceRange(TemplateParams->getTemplateLoc(),
3004                 TemplateParams->getRAngleLoc());
3005       } else {
3006         // There is an extraneous 'template<>' for this member.
3007         Diag(TemplateParams->getTemplateLoc(),
3008             diag::err_template_member_noparams)
3009             << II
3010             << SourceRange(TemplateParams->getTemplateLoc(),
3011                 TemplateParams->getRAngleLoc());
3012       }
3013       return nullptr;
3014     }
3015 
3016     if (SS.isSet() && !SS.isInvalid()) {
3017       // The user provided a superfluous scope specifier inside a class
3018       // definition:
3019       //
3020       // class X {
3021       //   int X::member;
3022       // };
3023       if (DeclContext *DC = computeDeclContext(SS, false))
3024         diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
3025       else
3026         Diag(D.getIdentifierLoc(), diag::err_member_qualification)
3027           << Name << SS.getRange();
3028 
3029       SS.clear();
3030     }
3031 
3032     if (MSPropertyAttr) {
3033       Member = HandleMSProperty(S, cast<CXXRecordDecl>(CurContext), Loc, D,
3034                                 BitWidth, InitStyle, AS, MSPropertyAttr);
3035       if (!Member)
3036         return nullptr;
3037       isInstField = false;
3038     } else {
3039       Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D,
3040                                 BitWidth, InitStyle, AS);
3041       if (!Member)
3042         return nullptr;
3043     }
3044 
3045     CheckShadowInheritedFields(Loc, Name, cast<CXXRecordDecl>(CurContext));
3046   } else {
3047     Member = HandleDeclarator(S, D, TemplateParameterLists);
3048     if (!Member)
3049       return nullptr;
3050 
3051     // Non-instance-fields can't have a bitfield.
3052     if (BitWidth) {
3053       if (Member->isInvalidDecl()) {
3054         // don't emit another diagnostic.
3055       } else if (isa<VarDecl>(Member) || isa<VarTemplateDecl>(Member)) {
3056         // C++ 9.6p3: A bit-field shall not be a static member.
3057         // "static member 'A' cannot be a bit-field"
3058         Diag(Loc, diag::err_static_not_bitfield)
3059           << Name << BitWidth->getSourceRange();
3060       } else if (isa<TypedefDecl>(Member)) {
3061         // "typedef member 'x' cannot be a bit-field"
3062         Diag(Loc, diag::err_typedef_not_bitfield)
3063           << Name << BitWidth->getSourceRange();
3064       } else {
3065         // A function typedef ("typedef int f(); f a;").
3066         // C++ 9.6p3: A bit-field shall have integral or enumeration type.
3067         Diag(Loc, diag::err_not_integral_type_bitfield)
3068           << Name << cast<ValueDecl>(Member)->getType()
3069           << BitWidth->getSourceRange();
3070       }
3071 
3072       BitWidth = nullptr;
3073       Member->setInvalidDecl();
3074     }
3075 
3076     Member->setAccess(AS);
3077 
3078     // If we have declared a member function template or static data member
3079     // template, set the access of the templated declaration as well.
3080     if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
3081       FunTmpl->getTemplatedDecl()->setAccess(AS);
3082     else if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(Member))
3083       VarTmpl->getTemplatedDecl()->setAccess(AS);
3084   }
3085 
3086   if (VS.isOverrideSpecified())
3087     Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context, 0));
3088   if (VS.isFinalSpecified())
3089     Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context,
3090                                             VS.isFinalSpelledSealed()));
3091 
3092   if (VS.getLastLocation().isValid()) {
3093     // Update the end location of a method that has a virt-specifiers.
3094     if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
3095       MD->setRangeEnd(VS.getLastLocation());
3096   }
3097 
3098   CheckOverrideControl(Member);
3099 
3100   assert((Name || isInstField) && "No identifier for non-field ?");
3101 
3102   if (isInstField) {
3103     FieldDecl *FD = cast<FieldDecl>(Member);
3104     FieldCollector->Add(FD);
3105 
3106     if (!Diags.isIgnored(diag::warn_unused_private_field, FD->getLocation())) {
3107       // Remember all explicit private FieldDecls that have a name, no side
3108       // effects and are not part of a dependent type declaration.
3109       if (!FD->isImplicit() && FD->getDeclName() &&
3110           FD->getAccess() == AS_private &&
3111           !FD->hasAttr<UnusedAttr>() &&
3112           !FD->getParent()->isDependentContext() &&
3113           !InitializationHasSideEffects(*FD))
3114         UnusedPrivateFields.insert(FD);
3115     }
3116   }
3117 
3118   return Member;
3119 }
3120 
3121 namespace {
3122   class UninitializedFieldVisitor
3123       : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
3124     Sema &S;
3125     // List of Decls to generate a warning on.  Also remove Decls that become
3126     // initialized.
3127     llvm::SmallPtrSetImpl<ValueDecl*> &Decls;
3128     // List of base classes of the record.  Classes are removed after their
3129     // initializers.
3130     llvm::SmallPtrSetImpl<QualType> &BaseClasses;
3131     // Vector of decls to be removed from the Decl set prior to visiting the
3132     // nodes.  These Decls may have been initialized in the prior initializer.
3133     llvm::SmallVector<ValueDecl*, 4> DeclsToRemove;
3134     // If non-null, add a note to the warning pointing back to the constructor.
3135     const CXXConstructorDecl *Constructor;
3136     // Variables to hold state when processing an initializer list.  When
3137     // InitList is true, special case initialization of FieldDecls matching
3138     // InitListFieldDecl.
3139     bool InitList;
3140     FieldDecl *InitListFieldDecl;
3141     llvm::SmallVector<unsigned, 4> InitFieldIndex;
3142 
3143   public:
3144     typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
3145     UninitializedFieldVisitor(Sema &S,
3146                               llvm::SmallPtrSetImpl<ValueDecl*> &Decls,
3147                               llvm::SmallPtrSetImpl<QualType> &BaseClasses)
3148       : Inherited(S.Context), S(S), Decls(Decls), BaseClasses(BaseClasses),
3149         Constructor(nullptr), InitList(false), InitListFieldDecl(nullptr) {}
3150 
3151     // Returns true if the use of ME is not an uninitialized use.
3152     bool IsInitListMemberExprInitialized(MemberExpr *ME,
3153                                          bool CheckReferenceOnly) {
3154       llvm::SmallVector<FieldDecl*, 4> Fields;
3155       bool ReferenceField = false;
3156       while (ME) {
3157         FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
3158         if (!FD)
3159           return false;
3160         Fields.push_back(FD);
3161         if (FD->getType()->isReferenceType())
3162           ReferenceField = true;
3163         ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParenImpCasts());
3164       }
3165 
3166       // Binding a reference to an unintialized field is not an
3167       // uninitialized use.
3168       if (CheckReferenceOnly && !ReferenceField)
3169         return true;
3170 
3171       llvm::SmallVector<unsigned, 4> UsedFieldIndex;
3172       // Discard the first field since it is the field decl that is being
3173       // initialized.
3174       for (auto I = Fields.rbegin() + 1, E = Fields.rend(); I != E; ++I) {
3175         UsedFieldIndex.push_back((*I)->getFieldIndex());
3176       }
3177 
3178       for (auto UsedIter = UsedFieldIndex.begin(),
3179                 UsedEnd = UsedFieldIndex.end(),
3180                 OrigIter = InitFieldIndex.begin(),
3181                 OrigEnd = InitFieldIndex.end();
3182            UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) {
3183         if (*UsedIter < *OrigIter)
3184           return true;
3185         if (*UsedIter > *OrigIter)
3186           break;
3187       }
3188 
3189       return false;
3190     }
3191 
3192     void HandleMemberExpr(MemberExpr *ME, bool CheckReferenceOnly,
3193                           bool AddressOf) {
3194       if (isa<EnumConstantDecl>(ME->getMemberDecl()))
3195         return;
3196 
3197       // FieldME is the inner-most MemberExpr that is not an anonymous struct
3198       // or union.
3199       MemberExpr *FieldME = ME;
3200 
3201       bool AllPODFields = FieldME->getType().isPODType(S.Context);
3202 
3203       Expr *Base = ME;
3204       while (MemberExpr *SubME =
3205                  dyn_cast<MemberExpr>(Base->IgnoreParenImpCasts())) {
3206 
3207         if (isa<VarDecl>(SubME->getMemberDecl()))
3208           return;
3209 
3210         if (FieldDecl *FD = dyn_cast<FieldDecl>(SubME->getMemberDecl()))
3211           if (!FD->isAnonymousStructOrUnion())
3212             FieldME = SubME;
3213 
3214         if (!FieldME->getType().isPODType(S.Context))
3215           AllPODFields = false;
3216 
3217         Base = SubME->getBase();
3218       }
3219 
3220       if (!isa<CXXThisExpr>(Base->IgnoreParenImpCasts()))
3221         return;
3222 
3223       if (AddressOf && AllPODFields)
3224         return;
3225 
3226       ValueDecl* FoundVD = FieldME->getMemberDecl();
3227 
3228       if (ImplicitCastExpr *BaseCast = dyn_cast<ImplicitCastExpr>(Base)) {
3229         while (isa<ImplicitCastExpr>(BaseCast->getSubExpr())) {
3230           BaseCast = cast<ImplicitCastExpr>(BaseCast->getSubExpr());
3231         }
3232 
3233         if (BaseCast->getCastKind() == CK_UncheckedDerivedToBase) {
3234           QualType T = BaseCast->getType();
3235           if (T->isPointerType() &&
3236               BaseClasses.count(T->getPointeeType())) {
3237             S.Diag(FieldME->getExprLoc(), diag::warn_base_class_is_uninit)
3238                 << T->getPointeeType() << FoundVD;
3239           }
3240         }
3241       }
3242 
3243       if (!Decls.count(FoundVD))
3244         return;
3245 
3246       const bool IsReference = FoundVD->getType()->isReferenceType();
3247 
3248       if (InitList && !AddressOf && FoundVD == InitListFieldDecl) {
3249         // Special checking for initializer lists.
3250         if (IsInitListMemberExprInitialized(ME, CheckReferenceOnly)) {
3251           return;
3252         }
3253       } else {
3254         // Prevent double warnings on use of unbounded references.
3255         if (CheckReferenceOnly && !IsReference)
3256           return;
3257       }
3258 
3259       unsigned diag = IsReference
3260           ? diag::warn_reference_field_is_uninit
3261           : diag::warn_field_is_uninit;
3262       S.Diag(FieldME->getExprLoc(), diag) << FoundVD;
3263       if (Constructor)
3264         S.Diag(Constructor->getLocation(),
3265                diag::note_uninit_in_this_constructor)
3266           << (Constructor->isDefaultConstructor() && Constructor->isImplicit());
3267 
3268     }
3269 
3270     void HandleValue(Expr *E, bool AddressOf) {
3271       E = E->IgnoreParens();
3272 
3273       if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
3274         HandleMemberExpr(ME, false /*CheckReferenceOnly*/,
3275                          AddressOf /*AddressOf*/);
3276         return;
3277       }
3278 
3279       if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
3280         Visit(CO->getCond());
3281         HandleValue(CO->getTrueExpr(), AddressOf);
3282         HandleValue(CO->getFalseExpr(), AddressOf);
3283         return;
3284       }
3285 
3286       if (BinaryConditionalOperator *BCO =
3287               dyn_cast<BinaryConditionalOperator>(E)) {
3288         Visit(BCO->getCond());
3289         HandleValue(BCO->getFalseExpr(), AddressOf);
3290         return;
3291       }
3292 
3293       if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
3294         HandleValue(OVE->getSourceExpr(), AddressOf);
3295         return;
3296       }
3297 
3298       if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
3299         switch (BO->getOpcode()) {
3300         default:
3301           break;
3302         case(BO_PtrMemD):
3303         case(BO_PtrMemI):
3304           HandleValue(BO->getLHS(), AddressOf);
3305           Visit(BO->getRHS());
3306           return;
3307         case(BO_Comma):
3308           Visit(BO->getLHS());
3309           HandleValue(BO->getRHS(), AddressOf);
3310           return;
3311         }
3312       }
3313 
3314       Visit(E);
3315     }
3316 
3317     void CheckInitListExpr(InitListExpr *ILE) {
3318       InitFieldIndex.push_back(0);
3319       for (auto Child : ILE->children()) {
3320         if (InitListExpr *SubList = dyn_cast<InitListExpr>(Child)) {
3321           CheckInitListExpr(SubList);
3322         } else {
3323           Visit(Child);
3324         }
3325         ++InitFieldIndex.back();
3326       }
3327       InitFieldIndex.pop_back();
3328     }
3329 
3330     void CheckInitializer(Expr *E, const CXXConstructorDecl *FieldConstructor,
3331                           FieldDecl *Field, const Type *BaseClass) {
3332       // Remove Decls that may have been initialized in the previous
3333       // initializer.
3334       for (ValueDecl* VD : DeclsToRemove)
3335         Decls.erase(VD);
3336       DeclsToRemove.clear();
3337 
3338       Constructor = FieldConstructor;
3339       InitListExpr *ILE = dyn_cast<InitListExpr>(E);
3340 
3341       if (ILE && Field) {
3342         InitList = true;
3343         InitListFieldDecl = Field;
3344         InitFieldIndex.clear();
3345         CheckInitListExpr(ILE);
3346       } else {
3347         InitList = false;
3348         Visit(E);
3349       }
3350 
3351       if (Field)
3352         Decls.erase(Field);
3353       if (BaseClass)
3354         BaseClasses.erase(BaseClass->getCanonicalTypeInternal());
3355     }
3356 
3357     void VisitMemberExpr(MemberExpr *ME) {
3358       // All uses of unbounded reference fields will warn.
3359       HandleMemberExpr(ME, true /*CheckReferenceOnly*/, false /*AddressOf*/);
3360     }
3361 
3362     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
3363       if (E->getCastKind() == CK_LValueToRValue) {
3364         HandleValue(E->getSubExpr(), false /*AddressOf*/);
3365         return;
3366       }
3367 
3368       Inherited::VisitImplicitCastExpr(E);
3369     }
3370 
3371     void VisitCXXConstructExpr(CXXConstructExpr *E) {
3372       if (E->getConstructor()->isCopyConstructor()) {
3373         Expr *ArgExpr = E->getArg(0);
3374         if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr))
3375           if (ILE->getNumInits() == 1)
3376             ArgExpr = ILE->getInit(0);
3377         if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
3378           if (ICE->getCastKind() == CK_NoOp)
3379             ArgExpr = ICE->getSubExpr();
3380         HandleValue(ArgExpr, false /*AddressOf*/);
3381         return;
3382       }
3383       Inherited::VisitCXXConstructExpr(E);
3384     }
3385 
3386     void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
3387       Expr *Callee = E->getCallee();
3388       if (isa<MemberExpr>(Callee)) {
3389         HandleValue(Callee, false /*AddressOf*/);
3390         for (auto Arg : E->arguments())
3391           Visit(Arg);
3392         return;
3393       }
3394 
3395       Inherited::VisitCXXMemberCallExpr(E);
3396     }
3397 
3398     void VisitCallExpr(CallExpr *E) {
3399       // Treat std::move as a use.
3400       if (E->isCallToStdMove()) {
3401         HandleValue(E->getArg(0), /*AddressOf=*/false);
3402         return;
3403       }
3404 
3405       Inherited::VisitCallExpr(E);
3406     }
3407 
3408     void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
3409       Expr *Callee = E->getCallee();
3410 
3411       if (isa<UnresolvedLookupExpr>(Callee))
3412         return Inherited::VisitCXXOperatorCallExpr(E);
3413 
3414       Visit(Callee);
3415       for (auto Arg : E->arguments())
3416         HandleValue(Arg->IgnoreParenImpCasts(), false /*AddressOf*/);
3417     }
3418 
3419     void VisitBinaryOperator(BinaryOperator *E) {
3420       // If a field assignment is detected, remove the field from the
3421       // uninitiailized field set.
3422       if (E->getOpcode() == BO_Assign)
3423         if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getLHS()))
3424           if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
3425             if (!FD->getType()->isReferenceType())
3426               DeclsToRemove.push_back(FD);
3427 
3428       if (E->isCompoundAssignmentOp()) {
3429         HandleValue(E->getLHS(), false /*AddressOf*/);
3430         Visit(E->getRHS());
3431         return;
3432       }
3433 
3434       Inherited::VisitBinaryOperator(E);
3435     }
3436 
3437     void VisitUnaryOperator(UnaryOperator *E) {
3438       if (E->isIncrementDecrementOp()) {
3439         HandleValue(E->getSubExpr(), false /*AddressOf*/);
3440         return;
3441       }
3442       if (E->getOpcode() == UO_AddrOf) {
3443         if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getSubExpr())) {
3444           HandleValue(ME->getBase(), true /*AddressOf*/);
3445           return;
3446         }
3447       }
3448 
3449       Inherited::VisitUnaryOperator(E);
3450     }
3451   };
3452 
3453   // Diagnose value-uses of fields to initialize themselves, e.g.
3454   //   foo(foo)
3455   // where foo is not also a parameter to the constructor.
3456   // Also diagnose across field uninitialized use such as
3457   //   x(y), y(x)
3458   // TODO: implement -Wuninitialized and fold this into that framework.
3459   static void DiagnoseUninitializedFields(
3460       Sema &SemaRef, const CXXConstructorDecl *Constructor) {
3461 
3462     if (SemaRef.getDiagnostics().isIgnored(diag::warn_field_is_uninit,
3463                                            Constructor->getLocation())) {
3464       return;
3465     }
3466 
3467     if (Constructor->isInvalidDecl())
3468       return;
3469 
3470     const CXXRecordDecl *RD = Constructor->getParent();
3471 
3472     if (RD->getDescribedClassTemplate())
3473       return;
3474 
3475     // Holds fields that are uninitialized.
3476     llvm::SmallPtrSet<ValueDecl*, 4> UninitializedFields;
3477 
3478     // At the beginning, all fields are uninitialized.
3479     for (auto *I : RD->decls()) {
3480       if (auto *FD = dyn_cast<FieldDecl>(I)) {
3481         UninitializedFields.insert(FD);
3482       } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) {
3483         UninitializedFields.insert(IFD->getAnonField());
3484       }
3485     }
3486 
3487     llvm::SmallPtrSet<QualType, 4> UninitializedBaseClasses;
3488     for (auto I : RD->bases())
3489       UninitializedBaseClasses.insert(I.getType().getCanonicalType());
3490 
3491     if (UninitializedFields.empty() && UninitializedBaseClasses.empty())
3492       return;
3493 
3494     UninitializedFieldVisitor UninitializedChecker(SemaRef,
3495                                                    UninitializedFields,
3496                                                    UninitializedBaseClasses);
3497 
3498     for (const auto *FieldInit : Constructor->inits()) {
3499       if (UninitializedFields.empty() && UninitializedBaseClasses.empty())
3500         break;
3501 
3502       Expr *InitExpr = FieldInit->getInit();
3503       if (!InitExpr)
3504         continue;
3505 
3506       if (CXXDefaultInitExpr *Default =
3507               dyn_cast<CXXDefaultInitExpr>(InitExpr)) {
3508         InitExpr = Default->getExpr();
3509         if (!InitExpr)
3510           continue;
3511         // In class initializers will point to the constructor.
3512         UninitializedChecker.CheckInitializer(InitExpr, Constructor,
3513                                               FieldInit->getAnyMember(),
3514                                               FieldInit->getBaseClass());
3515       } else {
3516         UninitializedChecker.CheckInitializer(InitExpr, nullptr,
3517                                               FieldInit->getAnyMember(),
3518                                               FieldInit->getBaseClass());
3519       }
3520     }
3521   }
3522 } // namespace
3523 
3524 /// \brief Enter a new C++ default initializer scope. After calling this, the
3525 /// caller must call \ref ActOnFinishCXXInClassMemberInitializer, even if
3526 /// parsing or instantiating the initializer failed.
3527 void Sema::ActOnStartCXXInClassMemberInitializer() {
3528   // Create a synthetic function scope to represent the call to the constructor
3529   // that notionally surrounds a use of this initializer.
3530   PushFunctionScope();
3531 }
3532 
3533 /// \brief This is invoked after parsing an in-class initializer for a
3534 /// non-static C++ class member, and after instantiating an in-class initializer
3535 /// in a class template. Such actions are deferred until the class is complete.
3536 void Sema::ActOnFinishCXXInClassMemberInitializer(Decl *D,
3537                                                   SourceLocation InitLoc,
3538                                                   Expr *InitExpr) {
3539   // Pop the notional constructor scope we created earlier.
3540   PopFunctionScopeInfo(nullptr, D);
3541 
3542   FieldDecl *FD = dyn_cast<FieldDecl>(D);
3543   assert((isa<MSPropertyDecl>(D) || FD->getInClassInitStyle() != ICIS_NoInit) &&
3544          "must set init style when field is created");
3545 
3546   if (!InitExpr) {
3547     D->setInvalidDecl();
3548     if (FD)
3549       FD->removeInClassInitializer();
3550     return;
3551   }
3552 
3553   if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
3554     FD->setInvalidDecl();
3555     FD->removeInClassInitializer();
3556     return;
3557   }
3558 
3559   ExprResult Init = InitExpr;
3560   if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
3561     InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
3562     InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
3563         ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
3564         : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
3565     InitializationSequence Seq(*this, Entity, Kind, InitExpr);
3566     Init = Seq.Perform(*this, Entity, Kind, InitExpr);
3567     if (Init.isInvalid()) {
3568       FD->setInvalidDecl();
3569       return;
3570     }
3571   }
3572 
3573   // C++11 [class.base.init]p7:
3574   //   The initialization of each base and member constitutes a
3575   //   full-expression.
3576   Init = ActOnFinishFullExpr(Init.get(), InitLoc);
3577   if (Init.isInvalid()) {
3578     FD->setInvalidDecl();
3579     return;
3580   }
3581 
3582   InitExpr = Init.get();
3583 
3584   FD->setInClassInitializer(InitExpr);
3585 }
3586 
3587 /// \brief Find the direct and/or virtual base specifiers that
3588 /// correspond to the given base type, for use in base initialization
3589 /// within a constructor.
3590 static bool FindBaseInitializer(Sema &SemaRef,
3591                                 CXXRecordDecl *ClassDecl,
3592                                 QualType BaseType,
3593                                 const CXXBaseSpecifier *&DirectBaseSpec,
3594                                 const CXXBaseSpecifier *&VirtualBaseSpec) {
3595   // First, check for a direct base class.
3596   DirectBaseSpec = nullptr;
3597   for (const auto &Base : ClassDecl->bases()) {
3598     if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base.getType())) {
3599       // We found a direct base of this type. That's what we're
3600       // initializing.
3601       DirectBaseSpec = &Base;
3602       break;
3603     }
3604   }
3605 
3606   // Check for a virtual base class.
3607   // FIXME: We might be able to short-circuit this if we know in advance that
3608   // there are no virtual bases.
3609   VirtualBaseSpec = nullptr;
3610   if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
3611     // We haven't found a base yet; search the class hierarchy for a
3612     // virtual base class.
3613     CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
3614                        /*DetectVirtual=*/false);
3615     if (SemaRef.IsDerivedFrom(ClassDecl->getLocation(),
3616                               SemaRef.Context.getTypeDeclType(ClassDecl),
3617                               BaseType, Paths)) {
3618       for (CXXBasePaths::paths_iterator Path = Paths.begin();
3619            Path != Paths.end(); ++Path) {
3620         if (Path->back().Base->isVirtual()) {
3621           VirtualBaseSpec = Path->back().Base;
3622           break;
3623         }
3624       }
3625     }
3626   }
3627 
3628   return DirectBaseSpec || VirtualBaseSpec;
3629 }
3630 
3631 /// \brief Handle a C++ member initializer using braced-init-list syntax.
3632 MemInitResult
3633 Sema::ActOnMemInitializer(Decl *ConstructorD,
3634                           Scope *S,
3635                           CXXScopeSpec &SS,
3636                           IdentifierInfo *MemberOrBase,
3637                           ParsedType TemplateTypeTy,
3638                           const DeclSpec &DS,
3639                           SourceLocation IdLoc,
3640                           Expr *InitList,
3641                           SourceLocation EllipsisLoc) {
3642   return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
3643                              DS, IdLoc, InitList,
3644                              EllipsisLoc);
3645 }
3646 
3647 /// \brief Handle a C++ member initializer using parentheses syntax.
3648 MemInitResult
3649 Sema::ActOnMemInitializer(Decl *ConstructorD,
3650                           Scope *S,
3651                           CXXScopeSpec &SS,
3652                           IdentifierInfo *MemberOrBase,
3653                           ParsedType TemplateTypeTy,
3654                           const DeclSpec &DS,
3655                           SourceLocation IdLoc,
3656                           SourceLocation LParenLoc,
3657                           ArrayRef<Expr *> Args,
3658                           SourceLocation RParenLoc,
3659                           SourceLocation EllipsisLoc) {
3660   Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
3661                                            Args, RParenLoc);
3662   return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
3663                              DS, IdLoc, List, EllipsisLoc);
3664 }
3665 
3666 namespace {
3667 
3668 // Callback to only accept typo corrections that can be a valid C++ member
3669 // intializer: either a non-static field member or a base class.
3670 class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
3671 public:
3672   explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
3673       : ClassDecl(ClassDecl) {}
3674 
3675   bool ValidateCandidate(const TypoCorrection &candidate) override {
3676     if (NamedDecl *ND = candidate.getCorrectionDecl()) {
3677       if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
3678         return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
3679       return isa<TypeDecl>(ND);
3680     }
3681     return false;
3682   }
3683 
3684 private:
3685   CXXRecordDecl *ClassDecl;
3686 };
3687 
3688 }
3689 
3690 /// \brief Handle a C++ member initializer.
3691 MemInitResult
3692 Sema::BuildMemInitializer(Decl *ConstructorD,
3693                           Scope *S,
3694                           CXXScopeSpec &SS,
3695                           IdentifierInfo *MemberOrBase,
3696                           ParsedType TemplateTypeTy,
3697                           const DeclSpec &DS,
3698                           SourceLocation IdLoc,
3699                           Expr *Init,
3700                           SourceLocation EllipsisLoc) {
3701   ExprResult Res = CorrectDelayedTyposInExpr(Init);
3702   if (!Res.isUsable())
3703     return true;
3704   Init = Res.get();
3705 
3706   if (!ConstructorD)
3707     return true;
3708 
3709   AdjustDeclIfTemplate(ConstructorD);
3710 
3711   CXXConstructorDecl *Constructor
3712     = dyn_cast<CXXConstructorDecl>(ConstructorD);
3713   if (!Constructor) {
3714     // The user wrote a constructor initializer on a function that is
3715     // not a C++ constructor. Ignore the error for now, because we may
3716     // have more member initializers coming; we'll diagnose it just
3717     // once in ActOnMemInitializers.
3718     return true;
3719   }
3720 
3721   CXXRecordDecl *ClassDecl = Constructor->getParent();
3722 
3723   // C++ [class.base.init]p2:
3724   //   Names in a mem-initializer-id are looked up in the scope of the
3725   //   constructor's class and, if not found in that scope, are looked
3726   //   up in the scope containing the constructor's definition.
3727   //   [Note: if the constructor's class contains a member with the
3728   //   same name as a direct or virtual base class of the class, a
3729   //   mem-initializer-id naming the member or base class and composed
3730   //   of a single identifier refers to the class member. A
3731   //   mem-initializer-id for the hidden base class may be specified
3732   //   using a qualified name. ]
3733   if (!SS.getScopeRep() && !TemplateTypeTy) {
3734     // Look for a member, first.
3735     DeclContext::lookup_result Result = ClassDecl->lookup(MemberOrBase);
3736     if (!Result.empty()) {
3737       ValueDecl *Member;
3738       if ((Member = dyn_cast<FieldDecl>(Result.front())) ||
3739           (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) {
3740         if (EllipsisLoc.isValid())
3741           Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
3742             << MemberOrBase
3743             << SourceRange(IdLoc, Init->getSourceRange().getEnd());
3744 
3745         return BuildMemberInitializer(Member, Init, IdLoc);
3746       }
3747     }
3748   }
3749   // It didn't name a member, so see if it names a class.
3750   QualType BaseType;
3751   TypeSourceInfo *TInfo = nullptr;
3752 
3753   if (TemplateTypeTy) {
3754     BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
3755   } else if (DS.getTypeSpecType() == TST_decltype) {
3756     BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
3757   } else if (DS.getTypeSpecType() == TST_decltype_auto) {
3758     Diag(DS.getTypeSpecTypeLoc(), diag::err_decltype_auto_invalid);
3759     return true;
3760   } else {
3761     LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
3762     LookupParsedName(R, S, &SS);
3763 
3764     TypeDecl *TyD = R.getAsSingle<TypeDecl>();
3765     if (!TyD) {
3766       if (R.isAmbiguous()) return true;
3767 
3768       // We don't want access-control diagnostics here.
3769       R.suppressDiagnostics();
3770 
3771       if (SS.isSet() && isDependentScopeSpecifier(SS)) {
3772         bool NotUnknownSpecialization = false;
3773         DeclContext *DC = computeDeclContext(SS, false);
3774         if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
3775           NotUnknownSpecialization = !Record->hasAnyDependentBases();
3776 
3777         if (!NotUnknownSpecialization) {
3778           // When the scope specifier can refer to a member of an unknown
3779           // specialization, we take it as a type name.
3780           BaseType = CheckTypenameType(ETK_None, SourceLocation(),
3781                                        SS.getWithLocInContext(Context),
3782                                        *MemberOrBase, IdLoc);
3783           if (BaseType.isNull())
3784             return true;
3785 
3786           TInfo = Context.CreateTypeSourceInfo(BaseType);
3787           DependentNameTypeLoc TL =
3788               TInfo->getTypeLoc().castAs<DependentNameTypeLoc>();
3789           if (!TL.isNull()) {
3790             TL.setNameLoc(IdLoc);
3791             TL.setElaboratedKeywordLoc(SourceLocation());
3792             TL.setQualifierLoc(SS.getWithLocInContext(Context));
3793           }
3794 
3795           R.clear();
3796           R.setLookupName(MemberOrBase);
3797         }
3798       }
3799 
3800       // If no results were found, try to correct typos.
3801       TypoCorrection Corr;
3802       if (R.empty() && BaseType.isNull() &&
3803           (Corr = CorrectTypo(
3804                R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
3805                llvm::make_unique<MemInitializerValidatorCCC>(ClassDecl),
3806                CTK_ErrorRecovery, ClassDecl))) {
3807         if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
3808           // We have found a non-static data member with a similar
3809           // name to what was typed; complain and initialize that
3810           // member.
3811           diagnoseTypo(Corr,
3812                        PDiag(diag::err_mem_init_not_member_or_class_suggest)
3813                          << MemberOrBase << true);
3814           return BuildMemberInitializer(Member, Init, IdLoc);
3815         } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
3816           const CXXBaseSpecifier *DirectBaseSpec;
3817           const CXXBaseSpecifier *VirtualBaseSpec;
3818           if (FindBaseInitializer(*this, ClassDecl,
3819                                   Context.getTypeDeclType(Type),
3820                                   DirectBaseSpec, VirtualBaseSpec)) {
3821             // We have found a direct or virtual base class with a
3822             // similar name to what was typed; complain and initialize
3823             // that base class.
3824             diagnoseTypo(Corr,
3825                          PDiag(diag::err_mem_init_not_member_or_class_suggest)
3826                            << MemberOrBase << false,
3827                          PDiag() /*Suppress note, we provide our own.*/);
3828 
3829             const CXXBaseSpecifier *BaseSpec = DirectBaseSpec ? DirectBaseSpec
3830                                                               : VirtualBaseSpec;
3831             Diag(BaseSpec->getLocStart(),
3832                  diag::note_base_class_specified_here)
3833               << BaseSpec->getType()
3834               << BaseSpec->getSourceRange();
3835 
3836             TyD = Type;
3837           }
3838         }
3839       }
3840 
3841       if (!TyD && BaseType.isNull()) {
3842         Diag(IdLoc, diag::err_mem_init_not_member_or_class)
3843           << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
3844         return true;
3845       }
3846     }
3847 
3848     if (BaseType.isNull()) {
3849       BaseType = Context.getTypeDeclType(TyD);
3850       MarkAnyDeclReferenced(TyD->getLocation(), TyD, /*OdrUse=*/false);
3851       if (SS.isSet()) {
3852         BaseType = Context.getElaboratedType(ETK_None, SS.getScopeRep(),
3853                                              BaseType);
3854         TInfo = Context.CreateTypeSourceInfo(BaseType);
3855         ElaboratedTypeLoc TL = TInfo->getTypeLoc().castAs<ElaboratedTypeLoc>();
3856         TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc);
3857         TL.setElaboratedKeywordLoc(SourceLocation());
3858         TL.setQualifierLoc(SS.getWithLocInContext(Context));
3859       }
3860     }
3861   }
3862 
3863   if (!TInfo)
3864     TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
3865 
3866   return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
3867 }
3868 
3869 /// Checks a member initializer expression for cases where reference (or
3870 /// pointer) members are bound to by-value parameters (or their addresses).
3871 static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
3872                                                Expr *Init,
3873                                                SourceLocation IdLoc) {
3874   QualType MemberTy = Member->getType();
3875 
3876   // We only handle pointers and references currently.
3877   // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
3878   if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
3879     return;
3880 
3881   const bool IsPointer = MemberTy->isPointerType();
3882   if (IsPointer) {
3883     if (const UnaryOperator *Op
3884           = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
3885       // The only case we're worried about with pointers requires taking the
3886       // address.
3887       if (Op->getOpcode() != UO_AddrOf)
3888         return;
3889 
3890       Init = Op->getSubExpr();
3891     } else {
3892       // We only handle address-of expression initializers for pointers.
3893       return;
3894     }
3895   }
3896 
3897   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
3898     // We only warn when referring to a non-reference parameter declaration.
3899     const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
3900     if (!Parameter || Parameter->getType()->isReferenceType())
3901       return;
3902 
3903     S.Diag(Init->getExprLoc(),
3904            IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
3905                      : diag::warn_bind_ref_member_to_parameter)
3906       << Member << Parameter << Init->getSourceRange();
3907   } else {
3908     // Other initializers are fine.
3909     return;
3910   }
3911 
3912   S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
3913     << (unsigned)IsPointer;
3914 }
3915 
3916 MemInitResult
3917 Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
3918                              SourceLocation IdLoc) {
3919   FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
3920   IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
3921   assert((DirectMember || IndirectMember) &&
3922          "Member must be a FieldDecl or IndirectFieldDecl");
3923 
3924   if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
3925     return true;
3926 
3927   if (Member->isInvalidDecl())
3928     return true;
3929 
3930   MultiExprArg Args;
3931   if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
3932     Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
3933   } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) {
3934     Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
3935   } else {
3936     // Template instantiation doesn't reconstruct ParenListExprs for us.
3937     Args = Init;
3938   }
3939 
3940   SourceRange InitRange = Init->getSourceRange();
3941 
3942   if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
3943     // Can't check initialization for a member of dependent type or when
3944     // any of the arguments are type-dependent expressions.
3945     DiscardCleanupsInEvaluationContext();
3946   } else {
3947     bool InitList = false;
3948     if (isa<InitListExpr>(Init)) {
3949       InitList = true;
3950       Args = Init;
3951     }
3952 
3953     // Initialize the member.
3954     InitializedEntity MemberEntity =
3955       DirectMember ? InitializedEntity::InitializeMember(DirectMember, nullptr)
3956                    : InitializedEntity::InitializeMember(IndirectMember,
3957                                                          nullptr);
3958     InitializationKind Kind =
3959       InitList ? InitializationKind::CreateDirectList(IdLoc)
3960                : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
3961                                                   InitRange.getEnd());
3962 
3963     InitializationSequence InitSeq(*this, MemberEntity, Kind, Args);
3964     ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args,
3965                                             nullptr);
3966     if (MemberInit.isInvalid())
3967       return true;
3968 
3969     CheckForDanglingReferenceOrPointer(*this, Member, MemberInit.get(), IdLoc);
3970 
3971     // C++11 [class.base.init]p7:
3972     //   The initialization of each base and member constitutes a
3973     //   full-expression.
3974     MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin());
3975     if (MemberInit.isInvalid())
3976       return true;
3977 
3978     Init = MemberInit.get();
3979   }
3980 
3981   if (DirectMember) {
3982     return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
3983                                             InitRange.getBegin(), Init,
3984                                             InitRange.getEnd());
3985   } else {
3986     return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
3987                                             InitRange.getBegin(), Init,
3988                                             InitRange.getEnd());
3989   }
3990 }
3991 
3992 MemInitResult
3993 Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
3994                                  CXXRecordDecl *ClassDecl) {
3995   SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
3996   if (!LangOpts.CPlusPlus11)
3997     return Diag(NameLoc, diag::err_delegating_ctor)
3998       << TInfo->getTypeLoc().getLocalSourceRange();
3999   Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
4000 
4001   bool InitList = true;
4002   MultiExprArg Args = Init;
4003   if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
4004     InitList = false;
4005     Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
4006   }
4007 
4008   SourceRange InitRange = Init->getSourceRange();
4009   // Initialize the object.
4010   InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
4011                                      QualType(ClassDecl->getTypeForDecl(), 0));
4012   InitializationKind Kind =
4013     InitList ? InitializationKind::CreateDirectList(NameLoc)
4014              : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
4015                                                 InitRange.getEnd());
4016   InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args);
4017   ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
4018                                               Args, nullptr);
4019   if (DelegationInit.isInvalid())
4020     return true;
4021 
4022   assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
4023          "Delegating constructor with no target?");
4024 
4025   // C++11 [class.base.init]p7:
4026   //   The initialization of each base and member constitutes a
4027   //   full-expression.
4028   DelegationInit = ActOnFinishFullExpr(DelegationInit.get(),
4029                                        InitRange.getBegin());
4030   if (DelegationInit.isInvalid())
4031     return true;
4032 
4033   // If we are in a dependent context, template instantiation will
4034   // perform this type-checking again. Just save the arguments that we
4035   // received in a ParenListExpr.
4036   // FIXME: This isn't quite ideal, since our ASTs don't capture all
4037   // of the information that we have about the base
4038   // initializer. However, deconstructing the ASTs is a dicey process,
4039   // and this approach is far more likely to get the corner cases right.
4040   if (CurContext->isDependentContext())
4041     DelegationInit = Init;
4042 
4043   return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
4044                                           DelegationInit.getAs<Expr>(),
4045                                           InitRange.getEnd());
4046 }
4047 
4048 MemInitResult
4049 Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
4050                            Expr *Init, CXXRecordDecl *ClassDecl,
4051                            SourceLocation EllipsisLoc) {
4052   SourceLocation BaseLoc
4053     = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
4054 
4055   if (!BaseType->isDependentType() && !BaseType->isRecordType())
4056     return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
4057              << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
4058 
4059   // C++ [class.base.init]p2:
4060   //   [...] Unless the mem-initializer-id names a nonstatic data
4061   //   member of the constructor's class or a direct or virtual base
4062   //   of that class, the mem-initializer is ill-formed. A
4063   //   mem-initializer-list can initialize a base class using any
4064   //   name that denotes that base class type.
4065   bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
4066 
4067   SourceRange InitRange = Init->getSourceRange();
4068   if (EllipsisLoc.isValid()) {
4069     // This is a pack expansion.
4070     if (!BaseType->containsUnexpandedParameterPack())  {
4071       Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
4072         << SourceRange(BaseLoc, InitRange.getEnd());
4073 
4074       EllipsisLoc = SourceLocation();
4075     }
4076   } else {
4077     // Check for any unexpanded parameter packs.
4078     if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
4079       return true;
4080 
4081     if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
4082       return true;
4083   }
4084 
4085   // Check for direct and virtual base classes.
4086   const CXXBaseSpecifier *DirectBaseSpec = nullptr;
4087   const CXXBaseSpecifier *VirtualBaseSpec = nullptr;
4088   if (!Dependent) {
4089     if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
4090                                        BaseType))
4091       return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
4092 
4093     FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
4094                         VirtualBaseSpec);
4095 
4096     // C++ [base.class.init]p2:
4097     // Unless the mem-initializer-id names a nonstatic data member of the
4098     // constructor's class or a direct or virtual base of that class, the
4099     // mem-initializer is ill-formed.
4100     if (!DirectBaseSpec && !VirtualBaseSpec) {
4101       // If the class has any dependent bases, then it's possible that
4102       // one of those types will resolve to the same type as
4103       // BaseType. Therefore, just treat this as a dependent base
4104       // class initialization.  FIXME: Should we try to check the
4105       // initialization anyway? It seems odd.
4106       if (ClassDecl->hasAnyDependentBases())
4107         Dependent = true;
4108       else
4109         return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
4110           << BaseType << Context.getTypeDeclType(ClassDecl)
4111           << BaseTInfo->getTypeLoc().getLocalSourceRange();
4112     }
4113   }
4114 
4115   if (Dependent) {
4116     DiscardCleanupsInEvaluationContext();
4117 
4118     return new (Context) CXXCtorInitializer(Context, BaseTInfo,
4119                                             /*IsVirtual=*/false,
4120                                             InitRange.getBegin(), Init,
4121                                             InitRange.getEnd(), EllipsisLoc);
4122   }
4123 
4124   // C++ [base.class.init]p2:
4125   //   If a mem-initializer-id is ambiguous because it designates both
4126   //   a direct non-virtual base class and an inherited virtual base
4127   //   class, the mem-initializer is ill-formed.
4128   if (DirectBaseSpec && VirtualBaseSpec)
4129     return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
4130       << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
4131 
4132   const CXXBaseSpecifier *BaseSpec = DirectBaseSpec;
4133   if (!BaseSpec)
4134     BaseSpec = VirtualBaseSpec;
4135 
4136   // Initialize the base.
4137   bool InitList = true;
4138   MultiExprArg Args = Init;
4139   if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
4140     InitList = false;
4141     Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
4142   }
4143 
4144   InitializedEntity BaseEntity =
4145     InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
4146   InitializationKind Kind =
4147     InitList ? InitializationKind::CreateDirectList(BaseLoc)
4148              : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
4149                                                 InitRange.getEnd());
4150   InitializationSequence InitSeq(*this, BaseEntity, Kind, Args);
4151   ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, nullptr);
4152   if (BaseInit.isInvalid())
4153     return true;
4154 
4155   // C++11 [class.base.init]p7:
4156   //   The initialization of each base and member constitutes a
4157   //   full-expression.
4158   BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin());
4159   if (BaseInit.isInvalid())
4160     return true;
4161 
4162   // If we are in a dependent context, template instantiation will
4163   // perform this type-checking again. Just save the arguments that we
4164   // received in a ParenListExpr.
4165   // FIXME: This isn't quite ideal, since our ASTs don't capture all
4166   // of the information that we have about the base
4167   // initializer. However, deconstructing the ASTs is a dicey process,
4168   // and this approach is far more likely to get the corner cases right.
4169   if (CurContext->isDependentContext())
4170     BaseInit = Init;
4171 
4172   return new (Context) CXXCtorInitializer(Context, BaseTInfo,
4173                                           BaseSpec->isVirtual(),
4174                                           InitRange.getBegin(),
4175                                           BaseInit.getAs<Expr>(),
4176                                           InitRange.getEnd(), EllipsisLoc);
4177 }
4178 
4179 // Create a static_cast\<T&&>(expr).
4180 static Expr *CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) {
4181   if (T.isNull()) T = E->getType();
4182   QualType TargetType = SemaRef.BuildReferenceType(
4183       T, /*SpelledAsLValue*/false, SourceLocation(), DeclarationName());
4184   SourceLocation ExprLoc = E->getLocStart();
4185   TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
4186       TargetType, ExprLoc);
4187 
4188   return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
4189                                    SourceRange(ExprLoc, ExprLoc),
4190                                    E->getSourceRange()).get();
4191 }
4192 
4193 /// ImplicitInitializerKind - How an implicit base or member initializer should
4194 /// initialize its base or member.
4195 enum ImplicitInitializerKind {
4196   IIK_Default,
4197   IIK_Copy,
4198   IIK_Move,
4199   IIK_Inherit
4200 };
4201 
4202 static bool
4203 BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
4204                              ImplicitInitializerKind ImplicitInitKind,
4205                              CXXBaseSpecifier *BaseSpec,
4206                              bool IsInheritedVirtualBase,
4207                              CXXCtorInitializer *&CXXBaseInit) {
4208   InitializedEntity InitEntity
4209     = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
4210                                         IsInheritedVirtualBase);
4211 
4212   ExprResult BaseInit;
4213 
4214   switch (ImplicitInitKind) {
4215   case IIK_Inherit:
4216   case IIK_Default: {
4217     InitializationKind InitKind
4218       = InitializationKind::CreateDefault(Constructor->getLocation());
4219     InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
4220     BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
4221     break;
4222   }
4223 
4224   case IIK_Move:
4225   case IIK_Copy: {
4226     bool Moving = ImplicitInitKind == IIK_Move;
4227     ParmVarDecl *Param = Constructor->getParamDecl(0);
4228     QualType ParamType = Param->getType().getNonReferenceType();
4229 
4230     Expr *CopyCtorArg =
4231       DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
4232                           SourceLocation(), Param, false,
4233                           Constructor->getLocation(), ParamType,
4234                           VK_LValue, nullptr);
4235 
4236     SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
4237 
4238     // Cast to the base class to avoid ambiguities.
4239     QualType ArgTy =
4240       SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
4241                                        ParamType.getQualifiers());
4242 
4243     if (Moving) {
4244       CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
4245     }
4246 
4247     CXXCastPath BasePath;
4248     BasePath.push_back(BaseSpec);
4249     CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
4250                                             CK_UncheckedDerivedToBase,
4251                                             Moving ? VK_XValue : VK_LValue,
4252                                             &BasePath).get();
4253 
4254     InitializationKind InitKind
4255       = InitializationKind::CreateDirect(Constructor->getLocation(),
4256                                          SourceLocation(), SourceLocation());
4257     InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, CopyCtorArg);
4258     BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg);
4259     break;
4260   }
4261   }
4262 
4263   BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
4264   if (BaseInit.isInvalid())
4265     return true;
4266 
4267   CXXBaseInit =
4268     new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
4269                SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
4270                                                         SourceLocation()),
4271                                              BaseSpec->isVirtual(),
4272                                              SourceLocation(),
4273                                              BaseInit.getAs<Expr>(),
4274                                              SourceLocation(),
4275                                              SourceLocation());
4276 
4277   return false;
4278 }
4279 
4280 static bool RefersToRValueRef(Expr *MemRef) {
4281   ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
4282   return Referenced->getType()->isRValueReferenceType();
4283 }
4284 
4285 static bool
4286 BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
4287                                ImplicitInitializerKind ImplicitInitKind,
4288                                FieldDecl *Field, IndirectFieldDecl *Indirect,
4289                                CXXCtorInitializer *&CXXMemberInit) {
4290   if (Field->isInvalidDecl())
4291     return true;
4292 
4293   SourceLocation Loc = Constructor->getLocation();
4294 
4295   if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
4296     bool Moving = ImplicitInitKind == IIK_Move;
4297     ParmVarDecl *Param = Constructor->getParamDecl(0);
4298     QualType ParamType = Param->getType().getNonReferenceType();
4299 
4300     // Suppress copying zero-width bitfields.
4301     if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
4302       return false;
4303 
4304     Expr *MemberExprBase =
4305       DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
4306                           SourceLocation(), Param, false,
4307                           Loc, ParamType, VK_LValue, nullptr);
4308 
4309     SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
4310 
4311     if (Moving) {
4312       MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
4313     }
4314 
4315     // Build a reference to this field within the parameter.
4316     CXXScopeSpec SS;
4317     LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
4318                               Sema::LookupMemberName);
4319     MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
4320                                   : cast<ValueDecl>(Field), AS_public);
4321     MemberLookup.resolveKind();
4322     ExprResult CtorArg
4323       = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
4324                                          ParamType, Loc,
4325                                          /*IsArrow=*/false,
4326                                          SS,
4327                                          /*TemplateKWLoc=*/SourceLocation(),
4328                                          /*FirstQualifierInScope=*/nullptr,
4329                                          MemberLookup,
4330                                          /*TemplateArgs=*/nullptr,
4331                                          /*S*/nullptr);
4332     if (CtorArg.isInvalid())
4333       return true;
4334 
4335     // C++11 [class.copy]p15:
4336     //   - if a member m has rvalue reference type T&&, it is direct-initialized
4337     //     with static_cast<T&&>(x.m);
4338     if (RefersToRValueRef(CtorArg.get())) {
4339       CtorArg = CastForMoving(SemaRef, CtorArg.get());
4340     }
4341 
4342     InitializedEntity Entity =
4343         Indirect ? InitializedEntity::InitializeMember(Indirect, nullptr,
4344                                                        /*Implicit*/ true)
4345                  : InitializedEntity::InitializeMember(Field, nullptr,
4346                                                        /*Implicit*/ true);
4347 
4348     // Direct-initialize to use the copy constructor.
4349     InitializationKind InitKind =
4350       InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
4351 
4352     Expr *CtorArgE = CtorArg.getAs<Expr>();
4353     InitializationSequence InitSeq(SemaRef, Entity, InitKind, CtorArgE);
4354     ExprResult MemberInit =
4355         InitSeq.Perform(SemaRef, Entity, InitKind, MultiExprArg(&CtorArgE, 1));
4356     MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
4357     if (MemberInit.isInvalid())
4358       return true;
4359 
4360     if (Indirect)
4361       CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(
4362           SemaRef.Context, Indirect, Loc, Loc, MemberInit.getAs<Expr>(), Loc);
4363     else
4364       CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(
4365           SemaRef.Context, Field, Loc, Loc, MemberInit.getAs<Expr>(), Loc);
4366     return false;
4367   }
4368 
4369   assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) &&
4370          "Unhandled implicit init kind!");
4371 
4372   QualType FieldBaseElementType =
4373     SemaRef.Context.getBaseElementType(Field->getType());
4374 
4375   if (FieldBaseElementType->isRecordType()) {
4376     InitializedEntity InitEntity =
4377         Indirect ? InitializedEntity::InitializeMember(Indirect, nullptr,
4378                                                        /*Implicit*/ true)
4379                  : InitializedEntity::InitializeMember(Field, nullptr,
4380                                                        /*Implicit*/ true);
4381     InitializationKind InitKind =
4382       InitializationKind::CreateDefault(Loc);
4383 
4384     InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
4385     ExprResult MemberInit =
4386       InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
4387 
4388     MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
4389     if (MemberInit.isInvalid())
4390       return true;
4391 
4392     if (Indirect)
4393       CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
4394                                                                Indirect, Loc,
4395                                                                Loc,
4396                                                                MemberInit.get(),
4397                                                                Loc);
4398     else
4399       CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
4400                                                                Field, Loc, Loc,
4401                                                                MemberInit.get(),
4402                                                                Loc);
4403     return false;
4404   }
4405 
4406   if (!Field->getParent()->isUnion()) {
4407     if (FieldBaseElementType->isReferenceType()) {
4408       SemaRef.Diag(Constructor->getLocation(),
4409                    diag::err_uninitialized_member_in_ctor)
4410       << (int)Constructor->isImplicit()
4411       << SemaRef.Context.getTagDeclType(Constructor->getParent())
4412       << 0 << Field->getDeclName();
4413       SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
4414       return true;
4415     }
4416 
4417     if (FieldBaseElementType.isConstQualified()) {
4418       SemaRef.Diag(Constructor->getLocation(),
4419                    diag::err_uninitialized_member_in_ctor)
4420       << (int)Constructor->isImplicit()
4421       << SemaRef.Context.getTagDeclType(Constructor->getParent())
4422       << 1 << Field->getDeclName();
4423       SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
4424       return true;
4425     }
4426   }
4427 
4428   if (FieldBaseElementType.hasNonTrivialObjCLifetime()) {
4429     // ARC and Weak:
4430     //   Default-initialize Objective-C pointers to NULL.
4431     CXXMemberInit
4432       = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
4433                                                  Loc, Loc,
4434                  new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
4435                                                  Loc);
4436     return false;
4437   }
4438 
4439   // Nothing to initialize.
4440   CXXMemberInit = nullptr;
4441   return false;
4442 }
4443 
4444 namespace {
4445 struct BaseAndFieldInfo {
4446   Sema &S;
4447   CXXConstructorDecl *Ctor;
4448   bool AnyErrorsInInits;
4449   ImplicitInitializerKind IIK;
4450   llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
4451   SmallVector<CXXCtorInitializer*, 8> AllToInit;
4452   llvm::DenseMap<TagDecl*, FieldDecl*> ActiveUnionMember;
4453 
4454   BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
4455     : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
4456     bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
4457     if (Ctor->getInheritedConstructor())
4458       IIK = IIK_Inherit;
4459     else if (Generated && Ctor->isCopyConstructor())
4460       IIK = IIK_Copy;
4461     else if (Generated && Ctor->isMoveConstructor())
4462       IIK = IIK_Move;
4463     else
4464       IIK = IIK_Default;
4465   }
4466 
4467   bool isImplicitCopyOrMove() const {
4468     switch (IIK) {
4469     case IIK_Copy:
4470     case IIK_Move:
4471       return true;
4472 
4473     case IIK_Default:
4474     case IIK_Inherit:
4475       return false;
4476     }
4477 
4478     llvm_unreachable("Invalid ImplicitInitializerKind!");
4479   }
4480 
4481   bool addFieldInitializer(CXXCtorInitializer *Init) {
4482     AllToInit.push_back(Init);
4483 
4484     // Check whether this initializer makes the field "used".
4485     if (Init->getInit()->HasSideEffects(S.Context))
4486       S.UnusedPrivateFields.remove(Init->getAnyMember());
4487 
4488     return false;
4489   }
4490 
4491   bool isInactiveUnionMember(FieldDecl *Field) {
4492     RecordDecl *Record = Field->getParent();
4493     if (!Record->isUnion())
4494       return false;
4495 
4496     if (FieldDecl *Active =
4497             ActiveUnionMember.lookup(Record->getCanonicalDecl()))
4498       return Active != Field->getCanonicalDecl();
4499 
4500     // In an implicit copy or move constructor, ignore any in-class initializer.
4501     if (isImplicitCopyOrMove())
4502       return true;
4503 
4504     // If there's no explicit initialization, the field is active only if it
4505     // has an in-class initializer...
4506     if (Field->hasInClassInitializer())
4507       return false;
4508     // ... or it's an anonymous struct or union whose class has an in-class
4509     // initializer.
4510     if (!Field->isAnonymousStructOrUnion())
4511       return true;
4512     CXXRecordDecl *FieldRD = Field->getType()->getAsCXXRecordDecl();
4513     return !FieldRD->hasInClassInitializer();
4514   }
4515 
4516   /// \brief Determine whether the given field is, or is within, a union member
4517   /// that is inactive (because there was an initializer given for a different
4518   /// member of the union, or because the union was not initialized at all).
4519   bool isWithinInactiveUnionMember(FieldDecl *Field,
4520                                    IndirectFieldDecl *Indirect) {
4521     if (!Indirect)
4522       return isInactiveUnionMember(Field);
4523 
4524     for (auto *C : Indirect->chain()) {
4525       FieldDecl *Field = dyn_cast<FieldDecl>(C);
4526       if (Field && isInactiveUnionMember(Field))
4527         return true;
4528     }
4529     return false;
4530   }
4531 };
4532 }
4533 
4534 /// \brief Determine whether the given type is an incomplete or zero-lenfgth
4535 /// array type.
4536 static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
4537   if (T->isIncompleteArrayType())
4538     return true;
4539 
4540   while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
4541     if (!ArrayT->getSize())
4542       return true;
4543 
4544     T = ArrayT->getElementType();
4545   }
4546 
4547   return false;
4548 }
4549 
4550 static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
4551                                     FieldDecl *Field,
4552                                     IndirectFieldDecl *Indirect = nullptr) {
4553   if (Field->isInvalidDecl())
4554     return false;
4555 
4556   // Overwhelmingly common case: we have a direct initializer for this field.
4557   if (CXXCtorInitializer *Init =
4558           Info.AllBaseFields.lookup(Field->getCanonicalDecl()))
4559     return Info.addFieldInitializer(Init);
4560 
4561   // C++11 [class.base.init]p8:
4562   //   if the entity is a non-static data member that has a
4563   //   brace-or-equal-initializer and either
4564   //   -- the constructor's class is a union and no other variant member of that
4565   //      union is designated by a mem-initializer-id or
4566   //   -- the constructor's class is not a union, and, if the entity is a member
4567   //      of an anonymous union, no other member of that union is designated by
4568   //      a mem-initializer-id,
4569   //   the entity is initialized as specified in [dcl.init].
4570   //
4571   // We also apply the same rules to handle anonymous structs within anonymous
4572   // unions.
4573   if (Info.isWithinInactiveUnionMember(Field, Indirect))
4574     return false;
4575 
4576   if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
4577     ExprResult DIE =
4578         SemaRef.BuildCXXDefaultInitExpr(Info.Ctor->getLocation(), Field);
4579     if (DIE.isInvalid())
4580       return true;
4581     CXXCtorInitializer *Init;
4582     if (Indirect)
4583       Init = new (SemaRef.Context)
4584           CXXCtorInitializer(SemaRef.Context, Indirect, SourceLocation(),
4585                              SourceLocation(), DIE.get(), SourceLocation());
4586     else
4587       Init = new (SemaRef.Context)
4588           CXXCtorInitializer(SemaRef.Context, Field, SourceLocation(),
4589                              SourceLocation(), DIE.get(), SourceLocation());
4590     return Info.addFieldInitializer(Init);
4591   }
4592 
4593   // Don't initialize incomplete or zero-length arrays.
4594   if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
4595     return false;
4596 
4597   // Don't try to build an implicit initializer if there were semantic
4598   // errors in any of the initializers (and therefore we might be
4599   // missing some that the user actually wrote).
4600   if (Info.AnyErrorsInInits)
4601     return false;
4602 
4603   CXXCtorInitializer *Init = nullptr;
4604   if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
4605                                      Indirect, Init))
4606     return true;
4607 
4608   if (!Init)
4609     return false;
4610 
4611   return Info.addFieldInitializer(Init);
4612 }
4613 
4614 bool
4615 Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
4616                                CXXCtorInitializer *Initializer) {
4617   assert(Initializer->isDelegatingInitializer());
4618   Constructor->setNumCtorInitializers(1);
4619   CXXCtorInitializer **initializer =
4620     new (Context) CXXCtorInitializer*[1];
4621   memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
4622   Constructor->setCtorInitializers(initializer);
4623 
4624   if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
4625     MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
4626     DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
4627   }
4628 
4629   DelegatingCtorDecls.push_back(Constructor);
4630 
4631   DiagnoseUninitializedFields(*this, Constructor);
4632 
4633   return false;
4634 }
4635 
4636 bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors,
4637                                ArrayRef<CXXCtorInitializer *> Initializers) {
4638   if (Constructor->isDependentContext()) {
4639     // Just store the initializers as written, they will be checked during
4640     // instantiation.
4641     if (!Initializers.empty()) {
4642       Constructor->setNumCtorInitializers(Initializers.size());
4643       CXXCtorInitializer **baseOrMemberInitializers =
4644         new (Context) CXXCtorInitializer*[Initializers.size()];
4645       memcpy(baseOrMemberInitializers, Initializers.data(),
4646              Initializers.size() * sizeof(CXXCtorInitializer*));
4647       Constructor->setCtorInitializers(baseOrMemberInitializers);
4648     }
4649 
4650     // Let template instantiation know whether we had errors.
4651     if (AnyErrors)
4652       Constructor->setInvalidDecl();
4653 
4654     return false;
4655   }
4656 
4657   BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
4658 
4659   // We need to build the initializer AST according to order of construction
4660   // and not what user specified in the Initializers list.
4661   CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
4662   if (!ClassDecl)
4663     return true;
4664 
4665   bool HadError = false;
4666 
4667   for (unsigned i = 0; i < Initializers.size(); i++) {
4668     CXXCtorInitializer *Member = Initializers[i];
4669 
4670     if (Member->isBaseInitializer())
4671       Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
4672     else {
4673       Info.AllBaseFields[Member->getAnyMember()->getCanonicalDecl()] = Member;
4674 
4675       if (IndirectFieldDecl *F = Member->getIndirectMember()) {
4676         for (auto *C : F->chain()) {
4677           FieldDecl *FD = dyn_cast<FieldDecl>(C);
4678           if (FD && FD->getParent()->isUnion())
4679             Info.ActiveUnionMember.insert(std::make_pair(
4680                 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl()));
4681         }
4682       } else if (FieldDecl *FD = Member->getMember()) {
4683         if (FD->getParent()->isUnion())
4684           Info.ActiveUnionMember.insert(std::make_pair(
4685               FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl()));
4686       }
4687     }
4688   }
4689 
4690   // Keep track of the direct virtual bases.
4691   llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
4692   for (auto &I : ClassDecl->bases()) {
4693     if (I.isVirtual())
4694       DirectVBases.insert(&I);
4695   }
4696 
4697   // Push virtual bases before others.
4698   for (auto &VBase : ClassDecl->vbases()) {
4699     if (CXXCtorInitializer *Value
4700         = Info.AllBaseFields.lookup(VBase.getType()->getAs<RecordType>())) {
4701       // [class.base.init]p7, per DR257:
4702       //   A mem-initializer where the mem-initializer-id names a virtual base
4703       //   class is ignored during execution of a constructor of any class that
4704       //   is not the most derived class.
4705       if (ClassDecl->isAbstract()) {
4706         // FIXME: Provide a fixit to remove the base specifier. This requires
4707         // tracking the location of the associated comma for a base specifier.
4708         Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored)
4709           << VBase.getType() << ClassDecl;
4710         DiagnoseAbstractType(ClassDecl);
4711       }
4712 
4713       Info.AllToInit.push_back(Value);
4714     } else if (!AnyErrors && !ClassDecl->isAbstract()) {
4715       // [class.base.init]p8, per DR257:
4716       //   If a given [...] base class is not named by a mem-initializer-id
4717       //   [...] and the entity is not a virtual base class of an abstract
4718       //   class, then [...] the entity is default-initialized.
4719       bool IsInheritedVirtualBase = !DirectVBases.count(&VBase);
4720       CXXCtorInitializer *CXXBaseInit;
4721       if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
4722                                        &VBase, IsInheritedVirtualBase,
4723                                        CXXBaseInit)) {
4724         HadError = true;
4725         continue;
4726       }
4727 
4728       Info.AllToInit.push_back(CXXBaseInit);
4729     }
4730   }
4731 
4732   // Non-virtual bases.
4733   for (auto &Base : ClassDecl->bases()) {
4734     // Virtuals are in the virtual base list and already constructed.
4735     if (Base.isVirtual())
4736       continue;
4737 
4738     if (CXXCtorInitializer *Value
4739           = Info.AllBaseFields.lookup(Base.getType()->getAs<RecordType>())) {
4740       Info.AllToInit.push_back(Value);
4741     } else if (!AnyErrors) {
4742       CXXCtorInitializer *CXXBaseInit;
4743       if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
4744                                        &Base, /*IsInheritedVirtualBase=*/false,
4745                                        CXXBaseInit)) {
4746         HadError = true;
4747         continue;
4748       }
4749 
4750       Info.AllToInit.push_back(CXXBaseInit);
4751     }
4752   }
4753 
4754   // Fields.
4755   for (auto *Mem : ClassDecl->decls()) {
4756     if (auto *F = dyn_cast<FieldDecl>(Mem)) {
4757       // C++ [class.bit]p2:
4758       //   A declaration for a bit-field that omits the identifier declares an
4759       //   unnamed bit-field. Unnamed bit-fields are not members and cannot be
4760       //   initialized.
4761       if (F->isUnnamedBitfield())
4762         continue;
4763 
4764       // If we're not generating the implicit copy/move constructor, then we'll
4765       // handle anonymous struct/union fields based on their individual
4766       // indirect fields.
4767       if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove())
4768         continue;
4769 
4770       if (CollectFieldInitializer(*this, Info, F))
4771         HadError = true;
4772       continue;
4773     }
4774 
4775     // Beyond this point, we only consider default initialization.
4776     if (Info.isImplicitCopyOrMove())
4777       continue;
4778 
4779     if (auto *F = dyn_cast<IndirectFieldDecl>(Mem)) {
4780       if (F->getType()->isIncompleteArrayType()) {
4781         assert(ClassDecl->hasFlexibleArrayMember() &&
4782                "Incomplete array type is not valid");
4783         continue;
4784       }
4785 
4786       // Initialize each field of an anonymous struct individually.
4787       if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
4788         HadError = true;
4789 
4790       continue;
4791     }
4792   }
4793 
4794   unsigned NumInitializers = Info.AllToInit.size();
4795   if (NumInitializers > 0) {
4796     Constructor->setNumCtorInitializers(NumInitializers);
4797     CXXCtorInitializer **baseOrMemberInitializers =
4798       new (Context) CXXCtorInitializer*[NumInitializers];
4799     memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
4800            NumInitializers * sizeof(CXXCtorInitializer*));
4801     Constructor->setCtorInitializers(baseOrMemberInitializers);
4802 
4803     // Constructors implicitly reference the base and member
4804     // destructors.
4805     MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
4806                                            Constructor->getParent());
4807   }
4808 
4809   return HadError;
4810 }
4811 
4812 static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) {
4813   if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
4814     const RecordDecl *RD = RT->getDecl();
4815     if (RD->isAnonymousStructOrUnion()) {
4816       for (auto *Field : RD->fields())
4817         PopulateKeysForFields(Field, IdealInits);
4818       return;
4819     }
4820   }
4821   IdealInits.push_back(Field->getCanonicalDecl());
4822 }
4823 
4824 static const void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
4825   return Context.getCanonicalType(BaseType).getTypePtr();
4826 }
4827 
4828 static const void *GetKeyForMember(ASTContext &Context,
4829                                    CXXCtorInitializer *Member) {
4830   if (!Member->isAnyMemberInitializer())
4831     return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
4832 
4833   return Member->getAnyMember()->getCanonicalDecl();
4834 }
4835 
4836 static void DiagnoseBaseOrMemInitializerOrder(
4837     Sema &SemaRef, const CXXConstructorDecl *Constructor,
4838     ArrayRef<CXXCtorInitializer *> Inits) {
4839   if (Constructor->getDeclContext()->isDependentContext())
4840     return;
4841 
4842   // Don't check initializers order unless the warning is enabled at the
4843   // location of at least one initializer.
4844   bool ShouldCheckOrder = false;
4845   for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
4846     CXXCtorInitializer *Init = Inits[InitIndex];
4847     if (!SemaRef.Diags.isIgnored(diag::warn_initializer_out_of_order,
4848                                  Init->getSourceLocation())) {
4849       ShouldCheckOrder = true;
4850       break;
4851     }
4852   }
4853   if (!ShouldCheckOrder)
4854     return;
4855 
4856   // Build the list of bases and members in the order that they'll
4857   // actually be initialized.  The explicit initializers should be in
4858   // this same order but may be missing things.
4859   SmallVector<const void*, 32> IdealInitKeys;
4860 
4861   const CXXRecordDecl *ClassDecl = Constructor->getParent();
4862 
4863   // 1. Virtual bases.
4864   for (const auto &VBase : ClassDecl->vbases())
4865     IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase.getType()));
4866 
4867   // 2. Non-virtual bases.
4868   for (const auto &Base : ClassDecl->bases()) {
4869     if (Base.isVirtual())
4870       continue;
4871     IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base.getType()));
4872   }
4873 
4874   // 3. Direct fields.
4875   for (auto *Field : ClassDecl->fields()) {
4876     if (Field->isUnnamedBitfield())
4877       continue;
4878 
4879     PopulateKeysForFields(Field, IdealInitKeys);
4880   }
4881 
4882   unsigned NumIdealInits = IdealInitKeys.size();
4883   unsigned IdealIndex = 0;
4884 
4885   CXXCtorInitializer *PrevInit = nullptr;
4886   for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
4887     CXXCtorInitializer *Init = Inits[InitIndex];
4888     const void *InitKey = GetKeyForMember(SemaRef.Context, Init);
4889 
4890     // Scan forward to try to find this initializer in the idealized
4891     // initializers list.
4892     for (; IdealIndex != NumIdealInits; ++IdealIndex)
4893       if (InitKey == IdealInitKeys[IdealIndex])
4894         break;
4895 
4896     // If we didn't find this initializer, it must be because we
4897     // scanned past it on a previous iteration.  That can only
4898     // happen if we're out of order;  emit a warning.
4899     if (IdealIndex == NumIdealInits && PrevInit) {
4900       Sema::SemaDiagnosticBuilder D =
4901         SemaRef.Diag(PrevInit->getSourceLocation(),
4902                      diag::warn_initializer_out_of_order);
4903 
4904       if (PrevInit->isAnyMemberInitializer())
4905         D << 0 << PrevInit->getAnyMember()->getDeclName();
4906       else
4907         D << 1 << PrevInit->getTypeSourceInfo()->getType();
4908 
4909       if (Init->isAnyMemberInitializer())
4910         D << 0 << Init->getAnyMember()->getDeclName();
4911       else
4912         D << 1 << Init->getTypeSourceInfo()->getType();
4913 
4914       // Move back to the initializer's location in the ideal list.
4915       for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
4916         if (InitKey == IdealInitKeys[IdealIndex])
4917           break;
4918 
4919       assert(IdealIndex < NumIdealInits &&
4920              "initializer not found in initializer list");
4921     }
4922 
4923     PrevInit = Init;
4924   }
4925 }
4926 
4927 namespace {
4928 bool CheckRedundantInit(Sema &S,
4929                         CXXCtorInitializer *Init,
4930                         CXXCtorInitializer *&PrevInit) {
4931   if (!PrevInit) {
4932     PrevInit = Init;
4933     return false;
4934   }
4935 
4936   if (FieldDecl *Field = Init->getAnyMember())
4937     S.Diag(Init->getSourceLocation(),
4938            diag::err_multiple_mem_initialization)
4939       << Field->getDeclName()
4940       << Init->getSourceRange();
4941   else {
4942     const Type *BaseClass = Init->getBaseClass();
4943     assert(BaseClass && "neither field nor base");
4944     S.Diag(Init->getSourceLocation(),
4945            diag::err_multiple_base_initialization)
4946       << QualType(BaseClass, 0)
4947       << Init->getSourceRange();
4948   }
4949   S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
4950     << 0 << PrevInit->getSourceRange();
4951 
4952   return true;
4953 }
4954 
4955 typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
4956 typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
4957 
4958 bool CheckRedundantUnionInit(Sema &S,
4959                              CXXCtorInitializer *Init,
4960                              RedundantUnionMap &Unions) {
4961   FieldDecl *Field = Init->getAnyMember();
4962   RecordDecl *Parent = Field->getParent();
4963   NamedDecl *Child = Field;
4964 
4965   while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
4966     if (Parent->isUnion()) {
4967       UnionEntry &En = Unions[Parent];
4968       if (En.first && En.first != Child) {
4969         S.Diag(Init->getSourceLocation(),
4970                diag::err_multiple_mem_union_initialization)
4971           << Field->getDeclName()
4972           << Init->getSourceRange();
4973         S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
4974           << 0 << En.second->getSourceRange();
4975         return true;
4976       }
4977       if (!En.first) {
4978         En.first = Child;
4979         En.second = Init;
4980       }
4981       if (!Parent->isAnonymousStructOrUnion())
4982         return false;
4983     }
4984 
4985     Child = Parent;
4986     Parent = cast<RecordDecl>(Parent->getDeclContext());
4987   }
4988 
4989   return false;
4990 }
4991 }
4992 
4993 /// ActOnMemInitializers - Handle the member initializers for a constructor.
4994 void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
4995                                 SourceLocation ColonLoc,
4996                                 ArrayRef<CXXCtorInitializer*> MemInits,
4997                                 bool AnyErrors) {
4998   if (!ConstructorDecl)
4999     return;
5000 
5001   AdjustDeclIfTemplate(ConstructorDecl);
5002 
5003   CXXConstructorDecl *Constructor
5004     = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
5005 
5006   if (!Constructor) {
5007     Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
5008     return;
5009   }
5010 
5011   // Mapping for the duplicate initializers check.
5012   // For member initializers, this is keyed with a FieldDecl*.
5013   // For base initializers, this is keyed with a Type*.
5014   llvm::DenseMap<const void *, CXXCtorInitializer *> Members;
5015 
5016   // Mapping for the inconsistent anonymous-union initializers check.
5017   RedundantUnionMap MemberUnions;
5018 
5019   bool HadError = false;
5020   for (unsigned i = 0; i < MemInits.size(); i++) {
5021     CXXCtorInitializer *Init = MemInits[i];
5022 
5023     // Set the source order index.
5024     Init->setSourceOrder(i);
5025 
5026     if (Init->isAnyMemberInitializer()) {
5027       const void *Key = GetKeyForMember(Context, Init);
5028       if (CheckRedundantInit(*this, Init, Members[Key]) ||
5029           CheckRedundantUnionInit(*this, Init, MemberUnions))
5030         HadError = true;
5031     } else if (Init->isBaseInitializer()) {
5032       const void *Key = GetKeyForMember(Context, Init);
5033       if (CheckRedundantInit(*this, Init, Members[Key]))
5034         HadError = true;
5035     } else {
5036       assert(Init->isDelegatingInitializer());
5037       // This must be the only initializer
5038       if (MemInits.size() != 1) {
5039         Diag(Init->getSourceLocation(),
5040              diag::err_delegating_initializer_alone)
5041           << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
5042         // We will treat this as being the only initializer.
5043       }
5044       SetDelegatingInitializer(Constructor, MemInits[i]);
5045       // Return immediately as the initializer is set.
5046       return;
5047     }
5048   }
5049 
5050   if (HadError)
5051     return;
5052 
5053   DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits);
5054 
5055   SetCtorInitializers(Constructor, AnyErrors, MemInits);
5056 
5057   DiagnoseUninitializedFields(*this, Constructor);
5058 }
5059 
5060 void
5061 Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
5062                                              CXXRecordDecl *ClassDecl) {
5063   // Ignore dependent contexts. Also ignore unions, since their members never
5064   // have destructors implicitly called.
5065   if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
5066     return;
5067 
5068   // FIXME: all the access-control diagnostics are positioned on the
5069   // field/base declaration.  That's probably good; that said, the
5070   // user might reasonably want to know why the destructor is being
5071   // emitted, and we currently don't say.
5072 
5073   // Non-static data members.
5074   for (auto *Field : ClassDecl->fields()) {
5075     if (Field->isInvalidDecl())
5076       continue;
5077 
5078     // Don't destroy incomplete or zero-length arrays.
5079     if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
5080       continue;
5081 
5082     QualType FieldType = Context.getBaseElementType(Field->getType());
5083 
5084     const RecordType* RT = FieldType->getAs<RecordType>();
5085     if (!RT)
5086       continue;
5087 
5088     CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
5089     if (FieldClassDecl->isInvalidDecl())
5090       continue;
5091     if (FieldClassDecl->hasIrrelevantDestructor())
5092       continue;
5093     // The destructor for an implicit anonymous union member is never invoked.
5094     if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
5095       continue;
5096 
5097     CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
5098     assert(Dtor && "No dtor found for FieldClassDecl!");
5099     CheckDestructorAccess(Field->getLocation(), Dtor,
5100                           PDiag(diag::err_access_dtor_field)
5101                             << Field->getDeclName()
5102                             << FieldType);
5103 
5104     MarkFunctionReferenced(Location, Dtor);
5105     DiagnoseUseOfDecl(Dtor, Location);
5106   }
5107 
5108   // We only potentially invoke the destructors of potentially constructed
5109   // subobjects.
5110   bool VisitVirtualBases = !ClassDecl->isAbstract();
5111 
5112   llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
5113 
5114   // Bases.
5115   for (const auto &Base : ClassDecl->bases()) {
5116     // Bases are always records in a well-formed non-dependent class.
5117     const RecordType *RT = Base.getType()->getAs<RecordType>();
5118 
5119     // Remember direct virtual bases.
5120     if (Base.isVirtual()) {
5121       if (!VisitVirtualBases)
5122         continue;
5123       DirectVirtualBases.insert(RT);
5124     }
5125 
5126     CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
5127     // If our base class is invalid, we probably can't get its dtor anyway.
5128     if (BaseClassDecl->isInvalidDecl())
5129       continue;
5130     if (BaseClassDecl->hasIrrelevantDestructor())
5131       continue;
5132 
5133     CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
5134     assert(Dtor && "No dtor found for BaseClassDecl!");
5135 
5136     // FIXME: caret should be on the start of the class name
5137     CheckDestructorAccess(Base.getLocStart(), Dtor,
5138                           PDiag(diag::err_access_dtor_base)
5139                             << Base.getType()
5140                             << Base.getSourceRange(),
5141                           Context.getTypeDeclType(ClassDecl));
5142 
5143     MarkFunctionReferenced(Location, Dtor);
5144     DiagnoseUseOfDecl(Dtor, Location);
5145   }
5146 
5147   if (!VisitVirtualBases)
5148     return;
5149 
5150   // Virtual bases.
5151   for (const auto &VBase : ClassDecl->vbases()) {
5152     // Bases are always records in a well-formed non-dependent class.
5153     const RecordType *RT = VBase.getType()->castAs<RecordType>();
5154 
5155     // Ignore direct virtual bases.
5156     if (DirectVirtualBases.count(RT))
5157       continue;
5158 
5159     CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
5160     // If our base class is invalid, we probably can't get its dtor anyway.
5161     if (BaseClassDecl->isInvalidDecl())
5162       continue;
5163     if (BaseClassDecl->hasIrrelevantDestructor())
5164       continue;
5165 
5166     CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
5167     assert(Dtor && "No dtor found for BaseClassDecl!");
5168     if (CheckDestructorAccess(
5169             ClassDecl->getLocation(), Dtor,
5170             PDiag(diag::err_access_dtor_vbase)
5171                 << Context.getTypeDeclType(ClassDecl) << VBase.getType(),
5172             Context.getTypeDeclType(ClassDecl)) ==
5173         AR_accessible) {
5174       CheckDerivedToBaseConversion(
5175           Context.getTypeDeclType(ClassDecl), VBase.getType(),
5176           diag::err_access_dtor_vbase, 0, ClassDecl->getLocation(),
5177           SourceRange(), DeclarationName(), nullptr);
5178     }
5179 
5180     MarkFunctionReferenced(Location, Dtor);
5181     DiagnoseUseOfDecl(Dtor, Location);
5182   }
5183 }
5184 
5185 void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
5186   if (!CDtorDecl)
5187     return;
5188 
5189   if (CXXConstructorDecl *Constructor
5190       = dyn_cast<CXXConstructorDecl>(CDtorDecl)) {
5191     SetCtorInitializers(Constructor, /*AnyErrors=*/false);
5192     DiagnoseUninitializedFields(*this, Constructor);
5193   }
5194 }
5195 
5196 bool Sema::isAbstractType(SourceLocation Loc, QualType T) {
5197   if (!getLangOpts().CPlusPlus)
5198     return false;
5199 
5200   const auto *RD = Context.getBaseElementType(T)->getAsCXXRecordDecl();
5201   if (!RD)
5202     return false;
5203 
5204   // FIXME: Per [temp.inst]p1, we are supposed to trigger instantiation of a
5205   // class template specialization here, but doing so breaks a lot of code.
5206 
5207   // We can't answer whether something is abstract until it has a
5208   // definition. If it's currently being defined, we'll walk back
5209   // over all the declarations when we have a full definition.
5210   const CXXRecordDecl *Def = RD->getDefinition();
5211   if (!Def || Def->isBeingDefined())
5212     return false;
5213 
5214   return RD->isAbstract();
5215 }
5216 
5217 bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
5218                                   TypeDiagnoser &Diagnoser) {
5219   if (!isAbstractType(Loc, T))
5220     return false;
5221 
5222   T = Context.getBaseElementType(T);
5223   Diagnoser.diagnose(*this, Loc, T);
5224   DiagnoseAbstractType(T->getAsCXXRecordDecl());
5225   return true;
5226 }
5227 
5228 void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
5229   // Check if we've already emitted the list of pure virtual functions
5230   // for this class.
5231   if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
5232     return;
5233 
5234   // If the diagnostic is suppressed, don't emit the notes. We're only
5235   // going to emit them once, so try to attach them to a diagnostic we're
5236   // actually going to show.
5237   if (Diags.isLastDiagnosticIgnored())
5238     return;
5239 
5240   CXXFinalOverriderMap FinalOverriders;
5241   RD->getFinalOverriders(FinalOverriders);
5242 
5243   // Keep a set of seen pure methods so we won't diagnose the same method
5244   // more than once.
5245   llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
5246 
5247   for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
5248                                    MEnd = FinalOverriders.end();
5249        M != MEnd;
5250        ++M) {
5251     for (OverridingMethods::iterator SO = M->second.begin(),
5252                                   SOEnd = M->second.end();
5253          SO != SOEnd; ++SO) {
5254       // C++ [class.abstract]p4:
5255       //   A class is abstract if it contains or inherits at least one
5256       //   pure virtual function for which the final overrider is pure
5257       //   virtual.
5258 
5259       //
5260       if (SO->second.size() != 1)
5261         continue;
5262 
5263       if (!SO->second.front().Method->isPure())
5264         continue;
5265 
5266       if (!SeenPureMethods.insert(SO->second.front().Method).second)
5267         continue;
5268 
5269       Diag(SO->second.front().Method->getLocation(),
5270            diag::note_pure_virtual_function)
5271         << SO->second.front().Method->getDeclName() << RD->getDeclName();
5272     }
5273   }
5274 
5275   if (!PureVirtualClassDiagSet)
5276     PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
5277   PureVirtualClassDiagSet->insert(RD);
5278 }
5279 
5280 namespace {
5281 struct AbstractUsageInfo {
5282   Sema &S;
5283   CXXRecordDecl *Record;
5284   CanQualType AbstractType;
5285   bool Invalid;
5286 
5287   AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
5288     : S(S), Record(Record),
5289       AbstractType(S.Context.getCanonicalType(
5290                    S.Context.getTypeDeclType(Record))),
5291       Invalid(false) {}
5292 
5293   void DiagnoseAbstractType() {
5294     if (Invalid) return;
5295     S.DiagnoseAbstractType(Record);
5296     Invalid = true;
5297   }
5298 
5299   void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
5300 };
5301 
5302 struct CheckAbstractUsage {
5303   AbstractUsageInfo &Info;
5304   const NamedDecl *Ctx;
5305 
5306   CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
5307     : Info(Info), Ctx(Ctx) {}
5308 
5309   void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
5310     switch (TL.getTypeLocClass()) {
5311 #define ABSTRACT_TYPELOC(CLASS, PARENT)
5312 #define TYPELOC(CLASS, PARENT) \
5313     case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break;
5314 #include "clang/AST/TypeLocNodes.def"
5315     }
5316   }
5317 
5318   void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
5319     Visit(TL.getReturnLoc(), Sema::AbstractReturnType);
5320     for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) {
5321       if (!TL.getParam(I))
5322         continue;
5323 
5324       TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo();
5325       if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
5326     }
5327   }
5328 
5329   void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
5330     Visit(TL.getElementLoc(), Sema::AbstractArrayType);
5331   }
5332 
5333   void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
5334     // Visit the type parameters from a permissive context.
5335     for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
5336       TemplateArgumentLoc TAL = TL.getArgLoc(I);
5337       if (TAL.getArgument().getKind() == TemplateArgument::Type)
5338         if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
5339           Visit(TSI->getTypeLoc(), Sema::AbstractNone);
5340       // TODO: other template argument types?
5341     }
5342   }
5343 
5344   // Visit pointee types from a permissive context.
5345 #define CheckPolymorphic(Type) \
5346   void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
5347     Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
5348   }
5349   CheckPolymorphic(PointerTypeLoc)
5350   CheckPolymorphic(ReferenceTypeLoc)
5351   CheckPolymorphic(MemberPointerTypeLoc)
5352   CheckPolymorphic(BlockPointerTypeLoc)
5353   CheckPolymorphic(AtomicTypeLoc)
5354 
5355   /// Handle all the types we haven't given a more specific
5356   /// implementation for above.
5357   void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
5358     // Every other kind of type that we haven't called out already
5359     // that has an inner type is either (1) sugar or (2) contains that
5360     // inner type in some way as a subobject.
5361     if (TypeLoc Next = TL.getNextTypeLoc())
5362       return Visit(Next, Sel);
5363 
5364     // If there's no inner type and we're in a permissive context,
5365     // don't diagnose.
5366     if (Sel == Sema::AbstractNone) return;
5367 
5368     // Check whether the type matches the abstract type.
5369     QualType T = TL.getType();
5370     if (T->isArrayType()) {
5371       Sel = Sema::AbstractArrayType;
5372       T = Info.S.Context.getBaseElementType(T);
5373     }
5374     CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
5375     if (CT != Info.AbstractType) return;
5376 
5377     // It matched; do some magic.
5378     if (Sel == Sema::AbstractArrayType) {
5379       Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
5380         << T << TL.getSourceRange();
5381     } else {
5382       Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
5383         << Sel << T << TL.getSourceRange();
5384     }
5385     Info.DiagnoseAbstractType();
5386   }
5387 };
5388 
5389 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
5390                                   Sema::AbstractDiagSelID Sel) {
5391   CheckAbstractUsage(*this, D).Visit(TL, Sel);
5392 }
5393 
5394 }
5395 
5396 /// Check for invalid uses of an abstract type in a method declaration.
5397 static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
5398                                     CXXMethodDecl *MD) {
5399   // No need to do the check on definitions, which require that
5400   // the return/param types be complete.
5401   if (MD->doesThisDeclarationHaveABody())
5402     return;
5403 
5404   // For safety's sake, just ignore it if we don't have type source
5405   // information.  This should never happen for non-implicit methods,
5406   // but...
5407   if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
5408     Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
5409 }
5410 
5411 /// Check for invalid uses of an abstract type within a class definition.
5412 static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
5413                                     CXXRecordDecl *RD) {
5414   for (auto *D : RD->decls()) {
5415     if (D->isImplicit()) continue;
5416 
5417     // Methods and method templates.
5418     if (isa<CXXMethodDecl>(D)) {
5419       CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
5420     } else if (isa<FunctionTemplateDecl>(D)) {
5421       FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
5422       CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
5423 
5424     // Fields and static variables.
5425     } else if (isa<FieldDecl>(D)) {
5426       FieldDecl *FD = cast<FieldDecl>(D);
5427       if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
5428         Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
5429     } else if (isa<VarDecl>(D)) {
5430       VarDecl *VD = cast<VarDecl>(D);
5431       if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
5432         Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
5433 
5434     // Nested classes and class templates.
5435     } else if (isa<CXXRecordDecl>(D)) {
5436       CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
5437     } else if (isa<ClassTemplateDecl>(D)) {
5438       CheckAbstractClassUsage(Info,
5439                              cast<ClassTemplateDecl>(D)->getTemplatedDecl());
5440     }
5441   }
5442 }
5443 
5444 static void ReferenceDllExportedMethods(Sema &S, CXXRecordDecl *Class) {
5445   Attr *ClassAttr = getDLLAttr(Class);
5446   if (!ClassAttr)
5447     return;
5448 
5449   assert(ClassAttr->getKind() == attr::DLLExport);
5450 
5451   TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind();
5452 
5453   if (TSK == TSK_ExplicitInstantiationDeclaration)
5454     // Don't go any further if this is just an explicit instantiation
5455     // declaration.
5456     return;
5457 
5458   for (Decl *Member : Class->decls()) {
5459     auto *MD = dyn_cast<CXXMethodDecl>(Member);
5460     if (!MD)
5461       continue;
5462 
5463     if (Member->getAttr<DLLExportAttr>()) {
5464       if (MD->isUserProvided()) {
5465         // Instantiate non-default class member functions ...
5466 
5467         // .. except for certain kinds of template specializations.
5468         if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited())
5469           continue;
5470 
5471         S.MarkFunctionReferenced(Class->getLocation(), MD);
5472 
5473         // The function will be passed to the consumer when its definition is
5474         // encountered.
5475       } else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() ||
5476                  MD->isCopyAssignmentOperator() ||
5477                  MD->isMoveAssignmentOperator()) {
5478         // Synthesize and instantiate non-trivial implicit methods, explicitly
5479         // defaulted methods, and the copy and move assignment operators. The
5480         // latter are exported even if they are trivial, because the address of
5481         // an operator can be taken and should compare equal across libraries.
5482         DiagnosticErrorTrap Trap(S.Diags);
5483         S.MarkFunctionReferenced(Class->getLocation(), MD);
5484         if (Trap.hasErrorOccurred()) {
5485           S.Diag(ClassAttr->getLocation(), diag::note_due_to_dllexported_class)
5486               << Class->getName() << !S.getLangOpts().CPlusPlus11;
5487           break;
5488         }
5489 
5490         // There is no later point when we will see the definition of this
5491         // function, so pass it to the consumer now.
5492         S.Consumer.HandleTopLevelDecl(DeclGroupRef(MD));
5493       }
5494     }
5495   }
5496 }
5497 
5498 static void checkForMultipleExportedDefaultConstructors(Sema &S,
5499                                                         CXXRecordDecl *Class) {
5500   // Only the MS ABI has default constructor closures, so we don't need to do
5501   // this semantic checking anywhere else.
5502   if (!S.Context.getTargetInfo().getCXXABI().isMicrosoft())
5503     return;
5504 
5505   CXXConstructorDecl *LastExportedDefaultCtor = nullptr;
5506   for (Decl *Member : Class->decls()) {
5507     // Look for exported default constructors.
5508     auto *CD = dyn_cast<CXXConstructorDecl>(Member);
5509     if (!CD || !CD->isDefaultConstructor())
5510       continue;
5511     auto *Attr = CD->getAttr<DLLExportAttr>();
5512     if (!Attr)
5513       continue;
5514 
5515     // If the class is non-dependent, mark the default arguments as ODR-used so
5516     // that we can properly codegen the constructor closure.
5517     if (!Class->isDependentContext()) {
5518       for (ParmVarDecl *PD : CD->parameters()) {
5519         (void)S.CheckCXXDefaultArgExpr(Attr->getLocation(), CD, PD);
5520         S.DiscardCleanupsInEvaluationContext();
5521       }
5522     }
5523 
5524     if (LastExportedDefaultCtor) {
5525       S.Diag(LastExportedDefaultCtor->getLocation(),
5526              diag::err_attribute_dll_ambiguous_default_ctor)
5527           << Class;
5528       S.Diag(CD->getLocation(), diag::note_entity_declared_at)
5529           << CD->getDeclName();
5530       return;
5531     }
5532     LastExportedDefaultCtor = CD;
5533   }
5534 }
5535 
5536 /// \brief Check class-level dllimport/dllexport attribute.
5537 void Sema::checkClassLevelDLLAttribute(CXXRecordDecl *Class) {
5538   Attr *ClassAttr = getDLLAttr(Class);
5539 
5540   // MSVC inherits DLL attributes to partial class template specializations.
5541   if (Context.getTargetInfo().getCXXABI().isMicrosoft() && !ClassAttr) {
5542     if (auto *Spec = dyn_cast<ClassTemplatePartialSpecializationDecl>(Class)) {
5543       if (Attr *TemplateAttr =
5544               getDLLAttr(Spec->getSpecializedTemplate()->getTemplatedDecl())) {
5545         auto *A = cast<InheritableAttr>(TemplateAttr->clone(getASTContext()));
5546         A->setInherited(true);
5547         ClassAttr = A;
5548       }
5549     }
5550   }
5551 
5552   if (!ClassAttr)
5553     return;
5554 
5555   if (!Class->isExternallyVisible()) {
5556     Diag(Class->getLocation(), diag::err_attribute_dll_not_extern)
5557         << Class << ClassAttr;
5558     return;
5559   }
5560 
5561   if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
5562       !ClassAttr->isInherited()) {
5563     // Diagnose dll attributes on members of class with dll attribute.
5564     for (Decl *Member : Class->decls()) {
5565       if (!isa<VarDecl>(Member) && !isa<CXXMethodDecl>(Member))
5566         continue;
5567       InheritableAttr *MemberAttr = getDLLAttr(Member);
5568       if (!MemberAttr || MemberAttr->isInherited() || Member->isInvalidDecl())
5569         continue;
5570 
5571       Diag(MemberAttr->getLocation(),
5572              diag::err_attribute_dll_member_of_dll_class)
5573           << MemberAttr << ClassAttr;
5574       Diag(ClassAttr->getLocation(), diag::note_previous_attribute);
5575       Member->setInvalidDecl();
5576     }
5577   }
5578 
5579   if (Class->getDescribedClassTemplate())
5580     // Don't inherit dll attribute until the template is instantiated.
5581     return;
5582 
5583   // The class is either imported or exported.
5584   const bool ClassExported = ClassAttr->getKind() == attr::DLLExport;
5585 
5586   TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind();
5587 
5588   // Ignore explicit dllexport on explicit class template instantiation declarations.
5589   if (ClassExported && !ClassAttr->isInherited() &&
5590       TSK == TSK_ExplicitInstantiationDeclaration) {
5591     Class->dropAttr<DLLExportAttr>();
5592     return;
5593   }
5594 
5595   // Force declaration of implicit members so they can inherit the attribute.
5596   ForceDeclarationOfImplicitMembers(Class);
5597 
5598   // FIXME: MSVC's docs say all bases must be exportable, but this doesn't
5599   // seem to be true in practice?
5600 
5601   for (Decl *Member : Class->decls()) {
5602     VarDecl *VD = dyn_cast<VarDecl>(Member);
5603     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
5604 
5605     // Only methods and static fields inherit the attributes.
5606     if (!VD && !MD)
5607       continue;
5608 
5609     if (MD) {
5610       // Don't process deleted methods.
5611       if (MD->isDeleted())
5612         continue;
5613 
5614       if (MD->isInlined()) {
5615         // MinGW does not import or export inline methods.
5616         if (!Context.getTargetInfo().getCXXABI().isMicrosoft() &&
5617             !Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())
5618           continue;
5619 
5620         // MSVC versions before 2015 don't export the move assignment operators
5621         // and move constructor, so don't attempt to import/export them if
5622         // we have a definition.
5623         auto *Ctor = dyn_cast<CXXConstructorDecl>(MD);
5624         if ((MD->isMoveAssignmentOperator() ||
5625              (Ctor && Ctor->isMoveConstructor())) &&
5626             !getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015))
5627           continue;
5628 
5629         // MSVC2015 doesn't export trivial defaulted x-tor but copy assign
5630         // operator is exported anyway.
5631         if (getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015) &&
5632             (Ctor || isa<CXXDestructorDecl>(MD)) && MD->isTrivial())
5633           continue;
5634       }
5635     }
5636 
5637     if (!cast<NamedDecl>(Member)->isExternallyVisible())
5638       continue;
5639 
5640     if (!getDLLAttr(Member)) {
5641       auto *NewAttr =
5642           cast<InheritableAttr>(ClassAttr->clone(getASTContext()));
5643       NewAttr->setInherited(true);
5644       Member->addAttr(NewAttr);
5645     }
5646   }
5647 
5648   if (ClassExported)
5649     DelayedDllExportClasses.push_back(Class);
5650 }
5651 
5652 /// \brief Perform propagation of DLL attributes from a derived class to a
5653 /// templated base class for MS compatibility.
5654 void Sema::propagateDLLAttrToBaseClassTemplate(
5655     CXXRecordDecl *Class, Attr *ClassAttr,
5656     ClassTemplateSpecializationDecl *BaseTemplateSpec, SourceLocation BaseLoc) {
5657   if (getDLLAttr(
5658           BaseTemplateSpec->getSpecializedTemplate()->getTemplatedDecl())) {
5659     // If the base class template has a DLL attribute, don't try to change it.
5660     return;
5661   }
5662 
5663   auto TSK = BaseTemplateSpec->getSpecializationKind();
5664   if (!getDLLAttr(BaseTemplateSpec) &&
5665       (TSK == TSK_Undeclared || TSK == TSK_ExplicitInstantiationDeclaration ||
5666        TSK == TSK_ImplicitInstantiation)) {
5667     // The template hasn't been instantiated yet (or it has, but only as an
5668     // explicit instantiation declaration or implicit instantiation, which means
5669     // we haven't codegenned any members yet), so propagate the attribute.
5670     auto *NewAttr = cast<InheritableAttr>(ClassAttr->clone(getASTContext()));
5671     NewAttr->setInherited(true);
5672     BaseTemplateSpec->addAttr(NewAttr);
5673 
5674     // If the template is already instantiated, checkDLLAttributeRedeclaration()
5675     // needs to be run again to work see the new attribute. Otherwise this will
5676     // get run whenever the template is instantiated.
5677     if (TSK != TSK_Undeclared)
5678       checkClassLevelDLLAttribute(BaseTemplateSpec);
5679 
5680     return;
5681   }
5682 
5683   if (getDLLAttr(BaseTemplateSpec)) {
5684     // The template has already been specialized or instantiated with an
5685     // attribute, explicitly or through propagation. We should not try to change
5686     // it.
5687     return;
5688   }
5689 
5690   // The template was previously instantiated or explicitly specialized without
5691   // a dll attribute, It's too late for us to add an attribute, so warn that
5692   // this is unsupported.
5693   Diag(BaseLoc, diag::warn_attribute_dll_instantiated_base_class)
5694       << BaseTemplateSpec->isExplicitSpecialization();
5695   Diag(ClassAttr->getLocation(), diag::note_attribute);
5696   if (BaseTemplateSpec->isExplicitSpecialization()) {
5697     Diag(BaseTemplateSpec->getLocation(),
5698            diag::note_template_class_explicit_specialization_was_here)
5699         << BaseTemplateSpec;
5700   } else {
5701     Diag(BaseTemplateSpec->getPointOfInstantiation(),
5702            diag::note_template_class_instantiation_was_here)
5703         << BaseTemplateSpec;
5704   }
5705 }
5706 
5707 static void DefineImplicitSpecialMember(Sema &S, CXXMethodDecl *MD,
5708                                         SourceLocation DefaultLoc) {
5709   switch (S.getSpecialMember(MD)) {
5710   case Sema::CXXDefaultConstructor:
5711     S.DefineImplicitDefaultConstructor(DefaultLoc,
5712                                        cast<CXXConstructorDecl>(MD));
5713     break;
5714   case Sema::CXXCopyConstructor:
5715     S.DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
5716     break;
5717   case Sema::CXXCopyAssignment:
5718     S.DefineImplicitCopyAssignment(DefaultLoc, MD);
5719     break;
5720   case Sema::CXXDestructor:
5721     S.DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD));
5722     break;
5723   case Sema::CXXMoveConstructor:
5724     S.DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
5725     break;
5726   case Sema::CXXMoveAssignment:
5727     S.DefineImplicitMoveAssignment(DefaultLoc, MD);
5728     break;
5729   case Sema::CXXInvalid:
5730     llvm_unreachable("Invalid special member.");
5731   }
5732 }
5733 
5734 /// Determine whether a type is permitted to be passed or returned in
5735 /// registers, per C++ [class.temporary]p3.
5736 static bool computeCanPassInRegisters(Sema &S, CXXRecordDecl *D) {
5737   if (D->isDependentType() || D->isInvalidDecl())
5738     return false;
5739 
5740   // Per C++ [class.temporary]p3, the relevant condition is:
5741   //   each copy constructor, move constructor, and destructor of X is
5742   //   either trivial or deleted, and X has at least one non-deleted copy
5743   //   or move constructor
5744   bool HasNonDeletedCopyOrMove = false;
5745 
5746   if (D->needsImplicitCopyConstructor() &&
5747       !D->defaultedCopyConstructorIsDeleted()) {
5748     if (!D->hasTrivialCopyConstructor())
5749       return false;
5750     HasNonDeletedCopyOrMove = true;
5751   }
5752 
5753   if (S.getLangOpts().CPlusPlus11 && D->needsImplicitMoveConstructor() &&
5754       !D->defaultedMoveConstructorIsDeleted()) {
5755     if (!D->hasTrivialMoveConstructor())
5756       return false;
5757     HasNonDeletedCopyOrMove = true;
5758   }
5759 
5760   if (D->needsImplicitDestructor() && !D->defaultedDestructorIsDeleted() &&
5761       !D->hasTrivialDestructor())
5762     return false;
5763 
5764   for (const CXXMethodDecl *MD : D->methods()) {
5765     if (MD->isDeleted())
5766       continue;
5767 
5768     auto *CD = dyn_cast<CXXConstructorDecl>(MD);
5769     if (CD && CD->isCopyOrMoveConstructor())
5770       HasNonDeletedCopyOrMove = true;
5771     else if (!isa<CXXDestructorDecl>(MD))
5772       continue;
5773 
5774     if (!MD->isTrivial())
5775       return false;
5776   }
5777 
5778   return HasNonDeletedCopyOrMove;
5779 }
5780 
5781 /// \brief Perform semantic checks on a class definition that has been
5782 /// completing, introducing implicitly-declared members, checking for
5783 /// abstract types, etc.
5784 void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
5785   if (!Record)
5786     return;
5787 
5788   if (Record->isAbstract() && !Record->isInvalidDecl()) {
5789     AbstractUsageInfo Info(*this, Record);
5790     CheckAbstractClassUsage(Info, Record);
5791   }
5792 
5793   // If this is not an aggregate type and has no user-declared constructor,
5794   // complain about any non-static data members of reference or const scalar
5795   // type, since they will never get initializers.
5796   if (!Record->isInvalidDecl() && !Record->isDependentType() &&
5797       !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
5798       !Record->isLambda()) {
5799     bool Complained = false;
5800     for (const auto *F : Record->fields()) {
5801       if (F->hasInClassInitializer() || F->isUnnamedBitfield())
5802         continue;
5803 
5804       if (F->getType()->isReferenceType() ||
5805           (F->getType().isConstQualified() && F->getType()->isScalarType())) {
5806         if (!Complained) {
5807           Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
5808             << Record->getTagKind() << Record;
5809           Complained = true;
5810         }
5811 
5812         Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
5813           << F->getType()->isReferenceType()
5814           << F->getDeclName();
5815       }
5816     }
5817   }
5818 
5819   if (Record->getIdentifier()) {
5820     // C++ [class.mem]p13:
5821     //   If T is the name of a class, then each of the following shall have a
5822     //   name different from T:
5823     //     - every member of every anonymous union that is a member of class T.
5824     //
5825     // C++ [class.mem]p14:
5826     //   In addition, if class T has a user-declared constructor (12.1), every
5827     //   non-static data member of class T shall have a name different from T.
5828     DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
5829     for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
5830          ++I) {
5831       NamedDecl *D = *I;
5832       if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
5833           isa<IndirectFieldDecl>(D)) {
5834         Diag(D->getLocation(), diag::err_member_name_of_class)
5835           << D->getDeclName();
5836         break;
5837       }
5838     }
5839   }
5840 
5841   // Warn if the class has virtual methods but non-virtual public destructor.
5842   if (Record->isPolymorphic() && !Record->isDependentType()) {
5843     CXXDestructorDecl *dtor = Record->getDestructor();
5844     if ((!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public)) &&
5845         !Record->hasAttr<FinalAttr>())
5846       Diag(dtor ? dtor->getLocation() : Record->getLocation(),
5847            diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
5848   }
5849 
5850   if (Record->isAbstract()) {
5851     if (FinalAttr *FA = Record->getAttr<FinalAttr>()) {
5852       Diag(Record->getLocation(), diag::warn_abstract_final_class)
5853         << FA->isSpelledAsSealed();
5854       DiagnoseAbstractType(Record);
5855     }
5856   }
5857 
5858   bool HasMethodWithOverrideControl = false,
5859        HasOverridingMethodWithoutOverrideControl = false;
5860   if (!Record->isDependentType()) {
5861     for (auto *M : Record->methods()) {
5862       // See if a method overloads virtual methods in a base
5863       // class without overriding any.
5864       if (!M->isStatic())
5865         DiagnoseHiddenVirtualMethods(M);
5866       if (M->hasAttr<OverrideAttr>())
5867         HasMethodWithOverrideControl = true;
5868       else if (M->size_overridden_methods() > 0)
5869         HasOverridingMethodWithoutOverrideControl = true;
5870       // Check whether the explicitly-defaulted special members are valid.
5871       if (!M->isInvalidDecl() && M->isExplicitlyDefaulted())
5872         CheckExplicitlyDefaultedSpecialMember(M);
5873 
5874       // For an explicitly defaulted or deleted special member, we defer
5875       // determining triviality until the class is complete. That time is now!
5876       CXXSpecialMember CSM = getSpecialMember(M);
5877       if (!M->isImplicit() && !M->isUserProvided()) {
5878         if (CSM != CXXInvalid) {
5879           M->setTrivial(SpecialMemberIsTrivial(M, CSM));
5880 
5881           // Inform the class that we've finished declaring this member.
5882           Record->finishedDefaultedOrDeletedMember(M);
5883         }
5884       }
5885 
5886       if (!M->isInvalidDecl() && M->isExplicitlyDefaulted() &&
5887           M->hasAttr<DLLExportAttr>()) {
5888         if (getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015) &&
5889             M->isTrivial() &&
5890             (CSM == CXXDefaultConstructor || CSM == CXXCopyConstructor ||
5891              CSM == CXXDestructor))
5892           M->dropAttr<DLLExportAttr>();
5893 
5894         if (M->hasAttr<DLLExportAttr>()) {
5895           DefineImplicitSpecialMember(*this, M, M->getLocation());
5896           ActOnFinishInlineFunctionDef(M);
5897         }
5898       }
5899     }
5900   }
5901 
5902   if (HasMethodWithOverrideControl &&
5903       HasOverridingMethodWithoutOverrideControl) {
5904     // At least one method has the 'override' control declared.
5905     // Diagnose all other overridden methods which do not have 'override' specified on them.
5906     for (auto *M : Record->methods())
5907       DiagnoseAbsenceOfOverrideControl(M);
5908   }
5909 
5910   // ms_struct is a request to use the same ABI rules as MSVC.  Check
5911   // whether this class uses any C++ features that are implemented
5912   // completely differently in MSVC, and if so, emit a diagnostic.
5913   // That diagnostic defaults to an error, but we allow projects to
5914   // map it down to a warning (or ignore it).  It's a fairly common
5915   // practice among users of the ms_struct pragma to mass-annotate
5916   // headers, sweeping up a bunch of types that the project doesn't
5917   // really rely on MSVC-compatible layout for.  We must therefore
5918   // support "ms_struct except for C++ stuff" as a secondary ABI.
5919   if (Record->isMsStruct(Context) &&
5920       (Record->isPolymorphic() || Record->getNumBases())) {
5921     Diag(Record->getLocation(), diag::warn_cxx_ms_struct);
5922   }
5923 
5924   checkClassLevelDLLAttribute(Record);
5925 
5926   Record->setCanPassInRegisters(computeCanPassInRegisters(*this, Record));
5927 }
5928 
5929 /// Look up the special member function that would be called by a special
5930 /// member function for a subobject of class type.
5931 ///
5932 /// \param Class The class type of the subobject.
5933 /// \param CSM The kind of special member function.
5934 /// \param FieldQuals If the subobject is a field, its cv-qualifiers.
5935 /// \param ConstRHS True if this is a copy operation with a const object
5936 ///        on its RHS, that is, if the argument to the outer special member
5937 ///        function is 'const' and this is not a field marked 'mutable'.
5938 static Sema::SpecialMemberOverloadResult lookupCallFromSpecialMember(
5939     Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM,
5940     unsigned FieldQuals, bool ConstRHS) {
5941   unsigned LHSQuals = 0;
5942   if (CSM == Sema::CXXCopyAssignment || CSM == Sema::CXXMoveAssignment)
5943     LHSQuals = FieldQuals;
5944 
5945   unsigned RHSQuals = FieldQuals;
5946   if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
5947     RHSQuals = 0;
5948   else if (ConstRHS)
5949     RHSQuals |= Qualifiers::Const;
5950 
5951   return S.LookupSpecialMember(Class, CSM,
5952                                RHSQuals & Qualifiers::Const,
5953                                RHSQuals & Qualifiers::Volatile,
5954                                false,
5955                                LHSQuals & Qualifiers::Const,
5956                                LHSQuals & Qualifiers::Volatile);
5957 }
5958 
5959 class Sema::InheritedConstructorInfo {
5960   Sema &S;
5961   SourceLocation UseLoc;
5962 
5963   /// A mapping from the base classes through which the constructor was
5964   /// inherited to the using shadow declaration in that base class (or a null
5965   /// pointer if the constructor was declared in that base class).
5966   llvm::DenseMap<CXXRecordDecl *, ConstructorUsingShadowDecl *>
5967       InheritedFromBases;
5968 
5969 public:
5970   InheritedConstructorInfo(Sema &S, SourceLocation UseLoc,
5971                            ConstructorUsingShadowDecl *Shadow)
5972       : S(S), UseLoc(UseLoc) {
5973     bool DiagnosedMultipleConstructedBases = false;
5974     CXXRecordDecl *ConstructedBase = nullptr;
5975     UsingDecl *ConstructedBaseUsing = nullptr;
5976 
5977     // Find the set of such base class subobjects and check that there's a
5978     // unique constructed subobject.
5979     for (auto *D : Shadow->redecls()) {
5980       auto *DShadow = cast<ConstructorUsingShadowDecl>(D);
5981       auto *DNominatedBase = DShadow->getNominatedBaseClass();
5982       auto *DConstructedBase = DShadow->getConstructedBaseClass();
5983 
5984       InheritedFromBases.insert(
5985           std::make_pair(DNominatedBase->getCanonicalDecl(),
5986                          DShadow->getNominatedBaseClassShadowDecl()));
5987       if (DShadow->constructsVirtualBase())
5988         InheritedFromBases.insert(
5989             std::make_pair(DConstructedBase->getCanonicalDecl(),
5990                            DShadow->getConstructedBaseClassShadowDecl()));
5991       else
5992         assert(DNominatedBase == DConstructedBase);
5993 
5994       // [class.inhctor.init]p2:
5995       //   If the constructor was inherited from multiple base class subobjects
5996       //   of type B, the program is ill-formed.
5997       if (!ConstructedBase) {
5998         ConstructedBase = DConstructedBase;
5999         ConstructedBaseUsing = D->getUsingDecl();
6000       } else if (ConstructedBase != DConstructedBase &&
6001                  !Shadow->isInvalidDecl()) {
6002         if (!DiagnosedMultipleConstructedBases) {
6003           S.Diag(UseLoc, diag::err_ambiguous_inherited_constructor)
6004               << Shadow->getTargetDecl();
6005           S.Diag(ConstructedBaseUsing->getLocation(),
6006                diag::note_ambiguous_inherited_constructor_using)
6007               << ConstructedBase;
6008           DiagnosedMultipleConstructedBases = true;
6009         }
6010         S.Diag(D->getUsingDecl()->getLocation(),
6011                diag::note_ambiguous_inherited_constructor_using)
6012             << DConstructedBase;
6013       }
6014     }
6015 
6016     if (DiagnosedMultipleConstructedBases)
6017       Shadow->setInvalidDecl();
6018   }
6019 
6020   /// Find the constructor to use for inherited construction of a base class,
6021   /// and whether that base class constructor inherits the constructor from a
6022   /// virtual base class (in which case it won't actually invoke it).
6023   std::pair<CXXConstructorDecl *, bool>
6024   findConstructorForBase(CXXRecordDecl *Base, CXXConstructorDecl *Ctor) const {
6025     auto It = InheritedFromBases.find(Base->getCanonicalDecl());
6026     if (It == InheritedFromBases.end())
6027       return std::make_pair(nullptr, false);
6028 
6029     // This is an intermediary class.
6030     if (It->second)
6031       return std::make_pair(
6032           S.findInheritingConstructor(UseLoc, Ctor, It->second),
6033           It->second->constructsVirtualBase());
6034 
6035     // This is the base class from which the constructor was inherited.
6036     return std::make_pair(Ctor, false);
6037   }
6038 };
6039 
6040 /// Is the special member function which would be selected to perform the
6041 /// specified operation on the specified class type a constexpr constructor?
6042 static bool
6043 specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
6044                          Sema::CXXSpecialMember CSM, unsigned Quals,
6045                          bool ConstRHS,
6046                          CXXConstructorDecl *InheritedCtor = nullptr,
6047                          Sema::InheritedConstructorInfo *Inherited = nullptr) {
6048   // If we're inheriting a constructor, see if we need to call it for this base
6049   // class.
6050   if (InheritedCtor) {
6051     assert(CSM == Sema::CXXDefaultConstructor);
6052     auto BaseCtor =
6053         Inherited->findConstructorForBase(ClassDecl, InheritedCtor).first;
6054     if (BaseCtor)
6055       return BaseCtor->isConstexpr();
6056   }
6057 
6058   if (CSM == Sema::CXXDefaultConstructor)
6059     return ClassDecl->hasConstexprDefaultConstructor();
6060 
6061   Sema::SpecialMemberOverloadResult SMOR =
6062       lookupCallFromSpecialMember(S, ClassDecl, CSM, Quals, ConstRHS);
6063   if (!SMOR.getMethod())
6064     // A constructor we wouldn't select can't be "involved in initializing"
6065     // anything.
6066     return true;
6067   return SMOR.getMethod()->isConstexpr();
6068 }
6069 
6070 /// Determine whether the specified special member function would be constexpr
6071 /// if it were implicitly defined.
6072 static bool defaultedSpecialMemberIsConstexpr(
6073     Sema &S, CXXRecordDecl *ClassDecl, Sema::CXXSpecialMember CSM,
6074     bool ConstArg, CXXConstructorDecl *InheritedCtor = nullptr,
6075     Sema::InheritedConstructorInfo *Inherited = nullptr) {
6076   if (!S.getLangOpts().CPlusPlus11)
6077     return false;
6078 
6079   // C++11 [dcl.constexpr]p4:
6080   // In the definition of a constexpr constructor [...]
6081   bool Ctor = true;
6082   switch (CSM) {
6083   case Sema::CXXDefaultConstructor:
6084     if (Inherited)
6085       break;
6086     // Since default constructor lookup is essentially trivial (and cannot
6087     // involve, for instance, template instantiation), we compute whether a
6088     // defaulted default constructor is constexpr directly within CXXRecordDecl.
6089     //
6090     // This is important for performance; we need to know whether the default
6091     // constructor is constexpr to determine whether the type is a literal type.
6092     return ClassDecl->defaultedDefaultConstructorIsConstexpr();
6093 
6094   case Sema::CXXCopyConstructor:
6095   case Sema::CXXMoveConstructor:
6096     // For copy or move constructors, we need to perform overload resolution.
6097     break;
6098 
6099   case Sema::CXXCopyAssignment:
6100   case Sema::CXXMoveAssignment:
6101     if (!S.getLangOpts().CPlusPlus14)
6102       return false;
6103     // In C++1y, we need to perform overload resolution.
6104     Ctor = false;
6105     break;
6106 
6107   case Sema::CXXDestructor:
6108   case Sema::CXXInvalid:
6109     return false;
6110   }
6111 
6112   //   -- if the class is a non-empty union, or for each non-empty anonymous
6113   //      union member of a non-union class, exactly one non-static data member
6114   //      shall be initialized; [DR1359]
6115   //
6116   // If we squint, this is guaranteed, since exactly one non-static data member
6117   // will be initialized (if the constructor isn't deleted), we just don't know
6118   // which one.
6119   if (Ctor && ClassDecl->isUnion())
6120     return CSM == Sema::CXXDefaultConstructor
6121                ? ClassDecl->hasInClassInitializer() ||
6122                      !ClassDecl->hasVariantMembers()
6123                : true;
6124 
6125   //   -- the class shall not have any virtual base classes;
6126   if (Ctor && ClassDecl->getNumVBases())
6127     return false;
6128 
6129   // C++1y [class.copy]p26:
6130   //   -- [the class] is a literal type, and
6131   if (!Ctor && !ClassDecl->isLiteral())
6132     return false;
6133 
6134   //   -- every constructor involved in initializing [...] base class
6135   //      sub-objects shall be a constexpr constructor;
6136   //   -- the assignment operator selected to copy/move each direct base
6137   //      class is a constexpr function, and
6138   for (const auto &B : ClassDecl->bases()) {
6139     const RecordType *BaseType = B.getType()->getAs<RecordType>();
6140     if (!BaseType) continue;
6141 
6142     CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
6143     if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, 0, ConstArg,
6144                                   InheritedCtor, Inherited))
6145       return false;
6146   }
6147 
6148   //   -- every constructor involved in initializing non-static data members
6149   //      [...] shall be a constexpr constructor;
6150   //   -- every non-static data member and base class sub-object shall be
6151   //      initialized
6152   //   -- for each non-static data member of X that is of class type (or array
6153   //      thereof), the assignment operator selected to copy/move that member is
6154   //      a constexpr function
6155   for (const auto *F : ClassDecl->fields()) {
6156     if (F->isInvalidDecl())
6157       continue;
6158     if (CSM == Sema::CXXDefaultConstructor && F->hasInClassInitializer())
6159       continue;
6160     QualType BaseType = S.Context.getBaseElementType(F->getType());
6161     if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
6162       CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6163       if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM,
6164                                     BaseType.getCVRQualifiers(),
6165                                     ConstArg && !F->isMutable()))
6166         return false;
6167     } else if (CSM == Sema::CXXDefaultConstructor) {
6168       return false;
6169     }
6170   }
6171 
6172   // All OK, it's constexpr!
6173   return true;
6174 }
6175 
6176 static Sema::ImplicitExceptionSpecification
6177 ComputeDefaultedSpecialMemberExceptionSpec(
6178     Sema &S, SourceLocation Loc, CXXMethodDecl *MD, Sema::CXXSpecialMember CSM,
6179     Sema::InheritedConstructorInfo *ICI);
6180 
6181 static Sema::ImplicitExceptionSpecification
6182 computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
6183   auto CSM = S.getSpecialMember(MD);
6184   if (CSM != Sema::CXXInvalid)
6185     return ComputeDefaultedSpecialMemberExceptionSpec(S, Loc, MD, CSM, nullptr);
6186 
6187   auto *CD = cast<CXXConstructorDecl>(MD);
6188   assert(CD->getInheritedConstructor() &&
6189          "only special members have implicit exception specs");
6190   Sema::InheritedConstructorInfo ICI(
6191       S, Loc, CD->getInheritedConstructor().getShadowDecl());
6192   return ComputeDefaultedSpecialMemberExceptionSpec(
6193       S, Loc, CD, Sema::CXXDefaultConstructor, &ICI);
6194 }
6195 
6196 static FunctionProtoType::ExtProtoInfo getImplicitMethodEPI(Sema &S,
6197                                                             CXXMethodDecl *MD) {
6198   FunctionProtoType::ExtProtoInfo EPI;
6199 
6200   // Build an exception specification pointing back at this member.
6201   EPI.ExceptionSpec.Type = EST_Unevaluated;
6202   EPI.ExceptionSpec.SourceDecl = MD;
6203 
6204   // Set the calling convention to the default for C++ instance methods.
6205   EPI.ExtInfo = EPI.ExtInfo.withCallingConv(
6206       S.Context.getDefaultCallingConvention(/*IsVariadic=*/false,
6207                                             /*IsCXXMethod=*/true));
6208   return EPI;
6209 }
6210 
6211 void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
6212   const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
6213   if (FPT->getExceptionSpecType() != EST_Unevaluated)
6214     return;
6215 
6216   // Evaluate the exception specification.
6217   auto IES = computeImplicitExceptionSpec(*this, Loc, MD);
6218   auto ESI = IES.getExceptionSpec();
6219 
6220   // Update the type of the special member to use it.
6221   UpdateExceptionSpec(MD, ESI);
6222 
6223   // A user-provided destructor can be defined outside the class. When that
6224   // happens, be sure to update the exception specification on both
6225   // declarations.
6226   const FunctionProtoType *CanonicalFPT =
6227     MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
6228   if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
6229     UpdateExceptionSpec(MD->getCanonicalDecl(), ESI);
6230 }
6231 
6232 void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
6233   CXXRecordDecl *RD = MD->getParent();
6234   CXXSpecialMember CSM = getSpecialMember(MD);
6235 
6236   assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
6237          "not an explicitly-defaulted special member");
6238 
6239   // Whether this was the first-declared instance of the constructor.
6240   // This affects whether we implicitly add an exception spec and constexpr.
6241   bool First = MD == MD->getCanonicalDecl();
6242 
6243   bool HadError = false;
6244 
6245   // C++11 [dcl.fct.def.default]p1:
6246   //   A function that is explicitly defaulted shall
6247   //     -- be a special member function (checked elsewhere),
6248   //     -- have the same type (except for ref-qualifiers, and except that a
6249   //        copy operation can take a non-const reference) as an implicit
6250   //        declaration, and
6251   //     -- not have default arguments.
6252   unsigned ExpectedParams = 1;
6253   if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
6254     ExpectedParams = 0;
6255   if (MD->getNumParams() != ExpectedParams) {
6256     // This also checks for default arguments: a copy or move constructor with a
6257     // default argument is classified as a default constructor, and assignment
6258     // operations and destructors can't have default arguments.
6259     Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
6260       << CSM << MD->getSourceRange();
6261     HadError = true;
6262   } else if (MD->isVariadic()) {
6263     Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic)
6264       << CSM << MD->getSourceRange();
6265     HadError = true;
6266   }
6267 
6268   const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
6269 
6270   bool CanHaveConstParam = false;
6271   if (CSM == CXXCopyConstructor)
6272     CanHaveConstParam = RD->implicitCopyConstructorHasConstParam();
6273   else if (CSM == CXXCopyAssignment)
6274     CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam();
6275 
6276   QualType ReturnType = Context.VoidTy;
6277   if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
6278     // Check for return type matching.
6279     ReturnType = Type->getReturnType();
6280     QualType ExpectedReturnType =
6281         Context.getLValueReferenceType(Context.getTypeDeclType(RD));
6282     if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
6283       Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
6284         << (CSM == CXXMoveAssignment) << ExpectedReturnType;
6285       HadError = true;
6286     }
6287 
6288     // A defaulted special member cannot have cv-qualifiers.
6289     if (Type->getTypeQuals()) {
6290       Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
6291         << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus14;
6292       HadError = true;
6293     }
6294   }
6295 
6296   // Check for parameter type matching.
6297   QualType ArgType = ExpectedParams ? Type->getParamType(0) : QualType();
6298   bool HasConstParam = false;
6299   if (ExpectedParams && ArgType->isReferenceType()) {
6300     // Argument must be reference to possibly-const T.
6301     QualType ReferentType = ArgType->getPointeeType();
6302     HasConstParam = ReferentType.isConstQualified();
6303 
6304     if (ReferentType.isVolatileQualified()) {
6305       Diag(MD->getLocation(),
6306            diag::err_defaulted_special_member_volatile_param) << CSM;
6307       HadError = true;
6308     }
6309 
6310     if (HasConstParam && !CanHaveConstParam) {
6311       if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
6312         Diag(MD->getLocation(),
6313              diag::err_defaulted_special_member_copy_const_param)
6314           << (CSM == CXXCopyAssignment);
6315         // FIXME: Explain why this special member can't be const.
6316       } else {
6317         Diag(MD->getLocation(),
6318              diag::err_defaulted_special_member_move_const_param)
6319           << (CSM == CXXMoveAssignment);
6320       }
6321       HadError = true;
6322     }
6323   } else if (ExpectedParams) {
6324     // A copy assignment operator can take its argument by value, but a
6325     // defaulted one cannot.
6326     assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
6327     Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
6328     HadError = true;
6329   }
6330 
6331   // C++11 [dcl.fct.def.default]p2:
6332   //   An explicitly-defaulted function may be declared constexpr only if it
6333   //   would have been implicitly declared as constexpr,
6334   // Do not apply this rule to members of class templates, since core issue 1358
6335   // makes such functions always instantiate to constexpr functions. For
6336   // functions which cannot be constexpr (for non-constructors in C++11 and for
6337   // destructors in C++1y), this is checked elsewhere.
6338   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
6339                                                      HasConstParam);
6340   if ((getLangOpts().CPlusPlus14 ? !isa<CXXDestructorDecl>(MD)
6341                                  : isa<CXXConstructorDecl>(MD)) &&
6342       MD->isConstexpr() && !Constexpr &&
6343       MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
6344     Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
6345     // FIXME: Explain why the special member can't be constexpr.
6346     HadError = true;
6347   }
6348 
6349   //   and may have an explicit exception-specification only if it is compatible
6350   //   with the exception-specification on the implicit declaration.
6351   if (Type->hasExceptionSpec()) {
6352     // Delay the check if this is the first declaration of the special member,
6353     // since we may not have parsed some necessary in-class initializers yet.
6354     if (First) {
6355       // If the exception specification needs to be instantiated, do so now,
6356       // before we clobber it with an EST_Unevaluated specification below.
6357       if (Type->getExceptionSpecType() == EST_Uninstantiated) {
6358         InstantiateExceptionSpec(MD->getLocStart(), MD);
6359         Type = MD->getType()->getAs<FunctionProtoType>();
6360       }
6361       DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type));
6362     } else
6363       CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type);
6364   }
6365 
6366   //   If a function is explicitly defaulted on its first declaration,
6367   if (First) {
6368     //  -- it is implicitly considered to be constexpr if the implicit
6369     //     definition would be,
6370     MD->setConstexpr(Constexpr);
6371 
6372     //  -- it is implicitly considered to have the same exception-specification
6373     //     as if it had been implicitly declared,
6374     FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
6375     EPI.ExceptionSpec.Type = EST_Unevaluated;
6376     EPI.ExceptionSpec.SourceDecl = MD;
6377     MD->setType(Context.getFunctionType(ReturnType,
6378                                         llvm::makeArrayRef(&ArgType,
6379                                                            ExpectedParams),
6380                                         EPI));
6381   }
6382 
6383   if (ShouldDeleteSpecialMember(MD, CSM)) {
6384     if (First) {
6385       SetDeclDeleted(MD, MD->getLocation());
6386     } else {
6387       // C++11 [dcl.fct.def.default]p4:
6388       //   [For a] user-provided explicitly-defaulted function [...] if such a
6389       //   function is implicitly defined as deleted, the program is ill-formed.
6390       Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
6391       ShouldDeleteSpecialMember(MD, CSM, nullptr, /*Diagnose*/true);
6392       HadError = true;
6393     }
6394   }
6395 
6396   if (HadError)
6397     MD->setInvalidDecl();
6398 }
6399 
6400 /// Check whether the exception specification provided for an
6401 /// explicitly-defaulted special member matches the exception specification
6402 /// that would have been generated for an implicit special member, per
6403 /// C++11 [dcl.fct.def.default]p2.
6404 void Sema::CheckExplicitlyDefaultedMemberExceptionSpec(
6405     CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) {
6406   // If the exception specification was explicitly specified but hadn't been
6407   // parsed when the method was defaulted, grab it now.
6408   if (SpecifiedType->getExceptionSpecType() == EST_Unparsed)
6409     SpecifiedType =
6410         MD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>();
6411 
6412   // Compute the implicit exception specification.
6413   CallingConv CC = Context.getDefaultCallingConvention(/*IsVariadic=*/false,
6414                                                        /*IsCXXMethod=*/true);
6415   FunctionProtoType::ExtProtoInfo EPI(CC);
6416   auto IES = computeImplicitExceptionSpec(*this, MD->getLocation(), MD);
6417   EPI.ExceptionSpec = IES.getExceptionSpec();
6418   const FunctionProtoType *ImplicitType = cast<FunctionProtoType>(
6419     Context.getFunctionType(Context.VoidTy, None, EPI));
6420 
6421   // Ensure that it matches.
6422   CheckEquivalentExceptionSpec(
6423     PDiag(diag::err_incorrect_defaulted_exception_spec)
6424       << getSpecialMember(MD), PDiag(),
6425     ImplicitType, SourceLocation(),
6426     SpecifiedType, MD->getLocation());
6427 }
6428 
6429 void Sema::CheckDelayedMemberExceptionSpecs() {
6430   decltype(DelayedExceptionSpecChecks) Checks;
6431   decltype(DelayedDefaultedMemberExceptionSpecs) Specs;
6432 
6433   std::swap(Checks, DelayedExceptionSpecChecks);
6434   std::swap(Specs, DelayedDefaultedMemberExceptionSpecs);
6435 
6436   // Perform any deferred checking of exception specifications for virtual
6437   // destructors.
6438   for (auto &Check : Checks)
6439     CheckOverridingFunctionExceptionSpec(Check.first, Check.second);
6440 
6441   // Check that any explicitly-defaulted methods have exception specifications
6442   // compatible with their implicit exception specifications.
6443   for (auto &Spec : Specs)
6444     CheckExplicitlyDefaultedMemberExceptionSpec(Spec.first, Spec.second);
6445 }
6446 
6447 namespace {
6448 /// CRTP base class for visiting operations performed by a special member
6449 /// function (or inherited constructor).
6450 template<typename Derived>
6451 struct SpecialMemberVisitor {
6452   Sema &S;
6453   CXXMethodDecl *MD;
6454   Sema::CXXSpecialMember CSM;
6455   Sema::InheritedConstructorInfo *ICI;
6456 
6457   // Properties of the special member, computed for convenience.
6458   bool IsConstructor = false, IsAssignment = false, ConstArg = false;
6459 
6460   SpecialMemberVisitor(Sema &S, CXXMethodDecl *MD, Sema::CXXSpecialMember CSM,
6461                        Sema::InheritedConstructorInfo *ICI)
6462       : S(S), MD(MD), CSM(CSM), ICI(ICI) {
6463     switch (CSM) {
6464     case Sema::CXXDefaultConstructor:
6465     case Sema::CXXCopyConstructor:
6466     case Sema::CXXMoveConstructor:
6467       IsConstructor = true;
6468       break;
6469     case Sema::CXXCopyAssignment:
6470     case Sema::CXXMoveAssignment:
6471       IsAssignment = true;
6472       break;
6473     case Sema::CXXDestructor:
6474       break;
6475     case Sema::CXXInvalid:
6476       llvm_unreachable("invalid special member kind");
6477     }
6478 
6479     if (MD->getNumParams()) {
6480       if (const ReferenceType *RT =
6481               MD->getParamDecl(0)->getType()->getAs<ReferenceType>())
6482         ConstArg = RT->getPointeeType().isConstQualified();
6483     }
6484   }
6485 
6486   Derived &getDerived() { return static_cast<Derived&>(*this); }
6487 
6488   /// Is this a "move" special member?
6489   bool isMove() const {
6490     return CSM == Sema::CXXMoveConstructor || CSM == Sema::CXXMoveAssignment;
6491   }
6492 
6493   /// Look up the corresponding special member in the given class.
6494   Sema::SpecialMemberOverloadResult lookupIn(CXXRecordDecl *Class,
6495                                              unsigned Quals, bool IsMutable) {
6496     return lookupCallFromSpecialMember(S, Class, CSM, Quals,
6497                                        ConstArg && !IsMutable);
6498   }
6499 
6500   /// Look up the constructor for the specified base class to see if it's
6501   /// overridden due to this being an inherited constructor.
6502   Sema::SpecialMemberOverloadResult lookupInheritedCtor(CXXRecordDecl *Class) {
6503     if (!ICI)
6504       return {};
6505     assert(CSM == Sema::CXXDefaultConstructor);
6506     auto *BaseCtor =
6507       cast<CXXConstructorDecl>(MD)->getInheritedConstructor().getConstructor();
6508     if (auto *MD = ICI->findConstructorForBase(Class, BaseCtor).first)
6509       return MD;
6510     return {};
6511   }
6512 
6513   /// A base or member subobject.
6514   typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
6515 
6516   /// Get the location to use for a subobject in diagnostics.
6517   static SourceLocation getSubobjectLoc(Subobject Subobj) {
6518     // FIXME: For an indirect virtual base, the direct base leading to
6519     // the indirect virtual base would be a more useful choice.
6520     if (auto *B = Subobj.dyn_cast<CXXBaseSpecifier*>())
6521       return B->getBaseTypeLoc();
6522     else
6523       return Subobj.get<FieldDecl*>()->getLocation();
6524   }
6525 
6526   enum BasesToVisit {
6527     /// Visit all non-virtual (direct) bases.
6528     VisitNonVirtualBases,
6529     /// Visit all direct bases, virtual or not.
6530     VisitDirectBases,
6531     /// Visit all non-virtual bases, and all virtual bases if the class
6532     /// is not abstract.
6533     VisitPotentiallyConstructedBases,
6534     /// Visit all direct or virtual bases.
6535     VisitAllBases
6536   };
6537 
6538   // Visit the bases and members of the class.
6539   bool visit(BasesToVisit Bases) {
6540     CXXRecordDecl *RD = MD->getParent();
6541 
6542     if (Bases == VisitPotentiallyConstructedBases)
6543       Bases = RD->isAbstract() ? VisitNonVirtualBases : VisitAllBases;
6544 
6545     for (auto &B : RD->bases())
6546       if ((Bases == VisitDirectBases || !B.isVirtual()) &&
6547           getDerived().visitBase(&B))
6548         return true;
6549 
6550     if (Bases == VisitAllBases)
6551       for (auto &B : RD->vbases())
6552         if (getDerived().visitBase(&B))
6553           return true;
6554 
6555     for (auto *F : RD->fields())
6556       if (!F->isInvalidDecl() && !F->isUnnamedBitfield() &&
6557           getDerived().visitField(F))
6558         return true;
6559 
6560     return false;
6561   }
6562 };
6563 }
6564 
6565 namespace {
6566 struct SpecialMemberDeletionInfo
6567     : SpecialMemberVisitor<SpecialMemberDeletionInfo> {
6568   bool Diagnose;
6569 
6570   SourceLocation Loc;
6571 
6572   bool AllFieldsAreConst;
6573 
6574   SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
6575                             Sema::CXXSpecialMember CSM,
6576                             Sema::InheritedConstructorInfo *ICI, bool Diagnose)
6577       : SpecialMemberVisitor(S, MD, CSM, ICI), Diagnose(Diagnose),
6578         Loc(MD->getLocation()), AllFieldsAreConst(true) {}
6579 
6580   bool inUnion() const { return MD->getParent()->isUnion(); }
6581 
6582   Sema::CXXSpecialMember getEffectiveCSM() {
6583     return ICI ? Sema::CXXInvalid : CSM;
6584   }
6585 
6586   bool visitBase(CXXBaseSpecifier *Base) { return shouldDeleteForBase(Base); }
6587   bool visitField(FieldDecl *Field) { return shouldDeleteForField(Field); }
6588 
6589   bool shouldDeleteForBase(CXXBaseSpecifier *Base);
6590   bool shouldDeleteForField(FieldDecl *FD);
6591   bool shouldDeleteForAllConstMembers();
6592 
6593   bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
6594                                      unsigned Quals);
6595   bool shouldDeleteForSubobjectCall(Subobject Subobj,
6596                                     Sema::SpecialMemberOverloadResult SMOR,
6597                                     bool IsDtorCallInCtor);
6598 
6599   bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
6600 };
6601 }
6602 
6603 /// Is the given special member inaccessible when used on the given
6604 /// sub-object.
6605 bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
6606                                              CXXMethodDecl *target) {
6607   /// If we're operating on a base class, the object type is the
6608   /// type of this special member.
6609   QualType objectTy;
6610   AccessSpecifier access = target->getAccess();
6611   if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
6612     objectTy = S.Context.getTypeDeclType(MD->getParent());
6613     access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
6614 
6615   // If we're operating on a field, the object type is the type of the field.
6616   } else {
6617     objectTy = S.Context.getTypeDeclType(target->getParent());
6618   }
6619 
6620   return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
6621 }
6622 
6623 /// Check whether we should delete a special member due to the implicit
6624 /// definition containing a call to a special member of a subobject.
6625 bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
6626     Subobject Subobj, Sema::SpecialMemberOverloadResult SMOR,
6627     bool IsDtorCallInCtor) {
6628   CXXMethodDecl *Decl = SMOR.getMethod();
6629   FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
6630 
6631   int DiagKind = -1;
6632 
6633   if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
6634     DiagKind = !Decl ? 0 : 1;
6635   else if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
6636     DiagKind = 2;
6637   else if (!isAccessible(Subobj, Decl))
6638     DiagKind = 3;
6639   else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
6640            !Decl->isTrivial()) {
6641     // A member of a union must have a trivial corresponding special member.
6642     // As a weird special case, a destructor call from a union's constructor
6643     // must be accessible and non-deleted, but need not be trivial. Such a
6644     // destructor is never actually called, but is semantically checked as
6645     // if it were.
6646     DiagKind = 4;
6647   }
6648 
6649   if (DiagKind == -1)
6650     return false;
6651 
6652   if (Diagnose) {
6653     if (Field) {
6654       S.Diag(Field->getLocation(),
6655              diag::note_deleted_special_member_class_subobject)
6656         << getEffectiveCSM() << MD->getParent() << /*IsField*/true
6657         << Field << DiagKind << IsDtorCallInCtor;
6658     } else {
6659       CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
6660       S.Diag(Base->getLocStart(),
6661              diag::note_deleted_special_member_class_subobject)
6662         << getEffectiveCSM() << MD->getParent() << /*IsField*/false
6663         << Base->getType() << DiagKind << IsDtorCallInCtor;
6664     }
6665 
6666     if (DiagKind == 1)
6667       S.NoteDeletedFunction(Decl);
6668     // FIXME: Explain inaccessibility if DiagKind == 3.
6669   }
6670 
6671   return true;
6672 }
6673 
6674 /// Check whether we should delete a special member function due to having a
6675 /// direct or virtual base class or non-static data member of class type M.
6676 bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
6677     CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
6678   FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
6679   bool IsMutable = Field && Field->isMutable();
6680 
6681   // C++11 [class.ctor]p5:
6682   // -- any direct or virtual base class, or non-static data member with no
6683   //    brace-or-equal-initializer, has class type M (or array thereof) and
6684   //    either M has no default constructor or overload resolution as applied
6685   //    to M's default constructor results in an ambiguity or in a function
6686   //    that is deleted or inaccessible
6687   // C++11 [class.copy]p11, C++11 [class.copy]p23:
6688   // -- a direct or virtual base class B that cannot be copied/moved because
6689   //    overload resolution, as applied to B's corresponding special member,
6690   //    results in an ambiguity or a function that is deleted or inaccessible
6691   //    from the defaulted special member
6692   // C++11 [class.dtor]p5:
6693   // -- any direct or virtual base class [...] has a type with a destructor
6694   //    that is deleted or inaccessible
6695   if (!(CSM == Sema::CXXDefaultConstructor &&
6696         Field && Field->hasInClassInitializer()) &&
6697       shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable),
6698                                    false))
6699     return true;
6700 
6701   // C++11 [class.ctor]p5, C++11 [class.copy]p11:
6702   // -- any direct or virtual base class or non-static data member has a
6703   //    type with a destructor that is deleted or inaccessible
6704   if (IsConstructor) {
6705     Sema::SpecialMemberOverloadResult SMOR =
6706         S.LookupSpecialMember(Class, Sema::CXXDestructor,
6707                               false, false, false, false, false);
6708     if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
6709       return true;
6710   }
6711 
6712   return false;
6713 }
6714 
6715 /// Check whether we should delete a special member function due to the class
6716 /// having a particular direct or virtual base class.
6717 bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
6718   CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
6719   // If program is correct, BaseClass cannot be null, but if it is, the error
6720   // must be reported elsewhere.
6721   if (!BaseClass)
6722     return false;
6723   // If we have an inheriting constructor, check whether we're calling an
6724   // inherited constructor instead of a default constructor.
6725   Sema::SpecialMemberOverloadResult SMOR = lookupInheritedCtor(BaseClass);
6726   if (auto *BaseCtor = SMOR.getMethod()) {
6727     // Note that we do not check access along this path; other than that,
6728     // this is the same as shouldDeleteForSubobjectCall(Base, BaseCtor, false);
6729     // FIXME: Check that the base has a usable destructor! Sink this into
6730     // shouldDeleteForClassSubobject.
6731     if (BaseCtor->isDeleted() && Diagnose) {
6732       S.Diag(Base->getLocStart(),
6733              diag::note_deleted_special_member_class_subobject)
6734         << getEffectiveCSM() << MD->getParent() << /*IsField*/false
6735         << Base->getType() << /*Deleted*/1 << /*IsDtorCallInCtor*/false;
6736       S.NoteDeletedFunction(BaseCtor);
6737     }
6738     return BaseCtor->isDeleted();
6739   }
6740   return shouldDeleteForClassSubobject(BaseClass, Base, 0);
6741 }
6742 
6743 /// Check whether we should delete a special member function due to the class
6744 /// having a particular non-static data member.
6745 bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
6746   QualType FieldType = S.Context.getBaseElementType(FD->getType());
6747   CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
6748 
6749   if (CSM == Sema::CXXDefaultConstructor) {
6750     // For a default constructor, all references must be initialized in-class
6751     // and, if a union, it must have a non-const member.
6752     if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
6753       if (Diagnose)
6754         S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
6755           << !!ICI << MD->getParent() << FD << FieldType << /*Reference*/0;
6756       return true;
6757     }
6758     // C++11 [class.ctor]p5: any non-variant non-static data member of
6759     // const-qualified type (or array thereof) with no
6760     // brace-or-equal-initializer does not have a user-provided default
6761     // constructor.
6762     if (!inUnion() && FieldType.isConstQualified() &&
6763         !FD->hasInClassInitializer() &&
6764         (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
6765       if (Diagnose)
6766         S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
6767           << !!ICI << MD->getParent() << FD << FD->getType() << /*Const*/1;
6768       return true;
6769     }
6770 
6771     if (inUnion() && !FieldType.isConstQualified())
6772       AllFieldsAreConst = false;
6773   } else if (CSM == Sema::CXXCopyConstructor) {
6774     // For a copy constructor, data members must not be of rvalue reference
6775     // type.
6776     if (FieldType->isRValueReferenceType()) {
6777       if (Diagnose)
6778         S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
6779           << MD->getParent() << FD << FieldType;
6780       return true;
6781     }
6782   } else if (IsAssignment) {
6783     // For an assignment operator, data members must not be of reference type.
6784     if (FieldType->isReferenceType()) {
6785       if (Diagnose)
6786         S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
6787           << isMove() << MD->getParent() << FD << FieldType << /*Reference*/0;
6788       return true;
6789     }
6790     if (!FieldRecord && FieldType.isConstQualified()) {
6791       // C++11 [class.copy]p23:
6792       // -- a non-static data member of const non-class type (or array thereof)
6793       if (Diagnose)
6794         S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
6795           << isMove() << MD->getParent() << FD << FD->getType() << /*Const*/1;
6796       return true;
6797     }
6798   }
6799 
6800   if (FieldRecord) {
6801     // Some additional restrictions exist on the variant members.
6802     if (!inUnion() && FieldRecord->isUnion() &&
6803         FieldRecord->isAnonymousStructOrUnion()) {
6804       bool AllVariantFieldsAreConst = true;
6805 
6806       // FIXME: Handle anonymous unions declared within anonymous unions.
6807       for (auto *UI : FieldRecord->fields()) {
6808         QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
6809 
6810         if (!UnionFieldType.isConstQualified())
6811           AllVariantFieldsAreConst = false;
6812 
6813         CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
6814         if (UnionFieldRecord &&
6815             shouldDeleteForClassSubobject(UnionFieldRecord, UI,
6816                                           UnionFieldType.getCVRQualifiers()))
6817           return true;
6818       }
6819 
6820       // At least one member in each anonymous union must be non-const
6821       if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
6822           !FieldRecord->field_empty()) {
6823         if (Diagnose)
6824           S.Diag(FieldRecord->getLocation(),
6825                  diag::note_deleted_default_ctor_all_const)
6826             << !!ICI << MD->getParent() << /*anonymous union*/1;
6827         return true;
6828       }
6829 
6830       // Don't check the implicit member of the anonymous union type.
6831       // This is technically non-conformant, but sanity demands it.
6832       return false;
6833     }
6834 
6835     if (shouldDeleteForClassSubobject(FieldRecord, FD,
6836                                       FieldType.getCVRQualifiers()))
6837       return true;
6838   }
6839 
6840   return false;
6841 }
6842 
6843 /// C++11 [class.ctor] p5:
6844 ///   A defaulted default constructor for a class X is defined as deleted if
6845 /// X is a union and all of its variant members are of const-qualified type.
6846 bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
6847   // This is a silly definition, because it gives an empty union a deleted
6848   // default constructor. Don't do that.
6849   if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst) {
6850     bool AnyFields = false;
6851     for (auto *F : MD->getParent()->fields())
6852       if ((AnyFields = !F->isUnnamedBitfield()))
6853         break;
6854     if (!AnyFields)
6855       return false;
6856     if (Diagnose)
6857       S.Diag(MD->getParent()->getLocation(),
6858              diag::note_deleted_default_ctor_all_const)
6859         << !!ICI << MD->getParent() << /*not anonymous union*/0;
6860     return true;
6861   }
6862   return false;
6863 }
6864 
6865 /// Determine whether a defaulted special member function should be defined as
6866 /// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
6867 /// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
6868 bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
6869                                      InheritedConstructorInfo *ICI,
6870                                      bool Diagnose) {
6871   if (MD->isInvalidDecl())
6872     return false;
6873   CXXRecordDecl *RD = MD->getParent();
6874   assert(!RD->isDependentType() && "do deletion after instantiation");
6875   if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl())
6876     return false;
6877 
6878   // C++11 [expr.lambda.prim]p19:
6879   //   The closure type associated with a lambda-expression has a
6880   //   deleted (8.4.3) default constructor and a deleted copy
6881   //   assignment operator.
6882   if (RD->isLambda() &&
6883       (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
6884     if (Diagnose)
6885       Diag(RD->getLocation(), diag::note_lambda_decl);
6886     return true;
6887   }
6888 
6889   // For an anonymous struct or union, the copy and assignment special members
6890   // will never be used, so skip the check. For an anonymous union declared at
6891   // namespace scope, the constructor and destructor are used.
6892   if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
6893       RD->isAnonymousStructOrUnion())
6894     return false;
6895 
6896   // C++11 [class.copy]p7, p18:
6897   //   If the class definition declares a move constructor or move assignment
6898   //   operator, an implicitly declared copy constructor or copy assignment
6899   //   operator is defined as deleted.
6900   if (MD->isImplicit() &&
6901       (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
6902     CXXMethodDecl *UserDeclaredMove = nullptr;
6903 
6904     // In Microsoft mode up to MSVC 2013, a user-declared move only causes the
6905     // deletion of the corresponding copy operation, not both copy operations.
6906     // MSVC 2015 has adopted the standards conforming behavior.
6907     bool DeletesOnlyMatchingCopy =
6908         getLangOpts().MSVCCompat &&
6909         !getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015);
6910 
6911     if (RD->hasUserDeclaredMoveConstructor() &&
6912         (!DeletesOnlyMatchingCopy || CSM == CXXCopyConstructor)) {
6913       if (!Diagnose) return true;
6914 
6915       // Find any user-declared move constructor.
6916       for (auto *I : RD->ctors()) {
6917         if (I->isMoveConstructor()) {
6918           UserDeclaredMove = I;
6919           break;
6920         }
6921       }
6922       assert(UserDeclaredMove);
6923     } else if (RD->hasUserDeclaredMoveAssignment() &&
6924                (!DeletesOnlyMatchingCopy || CSM == CXXCopyAssignment)) {
6925       if (!Diagnose) return true;
6926 
6927       // Find any user-declared move assignment operator.
6928       for (auto *I : RD->methods()) {
6929         if (I->isMoveAssignmentOperator()) {
6930           UserDeclaredMove = I;
6931           break;
6932         }
6933       }
6934       assert(UserDeclaredMove);
6935     }
6936 
6937     if (UserDeclaredMove) {
6938       Diag(UserDeclaredMove->getLocation(),
6939            diag::note_deleted_copy_user_declared_move)
6940         << (CSM == CXXCopyAssignment) << RD
6941         << UserDeclaredMove->isMoveAssignmentOperator();
6942       return true;
6943     }
6944   }
6945 
6946   // Do access control from the special member function
6947   ContextRAII MethodContext(*this, MD);
6948 
6949   // C++11 [class.dtor]p5:
6950   // -- for a virtual destructor, lookup of the non-array deallocation function
6951   //    results in an ambiguity or in a function that is deleted or inaccessible
6952   if (CSM == CXXDestructor && MD->isVirtual()) {
6953     FunctionDecl *OperatorDelete = nullptr;
6954     DeclarationName Name =
6955       Context.DeclarationNames.getCXXOperatorName(OO_Delete);
6956     if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
6957                                  OperatorDelete, /*Diagnose*/false)) {
6958       if (Diagnose)
6959         Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
6960       return true;
6961     }
6962   }
6963 
6964   SpecialMemberDeletionInfo SMI(*this, MD, CSM, ICI, Diagnose);
6965 
6966   // Per DR1611, do not consider virtual bases of constructors of abstract
6967   // classes, since we are not going to construct them.
6968   // Per DR1658, do not consider virtual bases of destructors of abstract
6969   // classes either.
6970   // Per DR2180, for assignment operators we only assign (and thus only
6971   // consider) direct bases.
6972   if (SMI.visit(SMI.IsAssignment ? SMI.VisitDirectBases
6973                                  : SMI.VisitPotentiallyConstructedBases))
6974     return true;
6975 
6976   if (SMI.shouldDeleteForAllConstMembers())
6977     return true;
6978 
6979   if (getLangOpts().CUDA) {
6980     // We should delete the special member in CUDA mode if target inference
6981     // failed.
6982     return inferCUDATargetForImplicitSpecialMember(RD, CSM, MD, SMI.ConstArg,
6983                                                    Diagnose);
6984   }
6985 
6986   return false;
6987 }
6988 
6989 /// Perform lookup for a special member of the specified kind, and determine
6990 /// whether it is trivial. If the triviality can be determined without the
6991 /// lookup, skip it. This is intended for use when determining whether a
6992 /// special member of a containing object is trivial, and thus does not ever
6993 /// perform overload resolution for default constructors.
6994 ///
6995 /// If \p Selected is not \c NULL, \c *Selected will be filled in with the
6996 /// member that was most likely to be intended to be trivial, if any.
6997 static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD,
6998                                      Sema::CXXSpecialMember CSM, unsigned Quals,
6999                                      bool ConstRHS, CXXMethodDecl **Selected) {
7000   if (Selected)
7001     *Selected = nullptr;
7002 
7003   switch (CSM) {
7004   case Sema::CXXInvalid:
7005     llvm_unreachable("not a special member");
7006 
7007   case Sema::CXXDefaultConstructor:
7008     // C++11 [class.ctor]p5:
7009     //   A default constructor is trivial if:
7010     //    - all the [direct subobjects] have trivial default constructors
7011     //
7012     // Note, no overload resolution is performed in this case.
7013     if (RD->hasTrivialDefaultConstructor())
7014       return true;
7015 
7016     if (Selected) {
7017       // If there's a default constructor which could have been trivial, dig it
7018       // out. Otherwise, if there's any user-provided default constructor, point
7019       // to that as an example of why there's not a trivial one.
7020       CXXConstructorDecl *DefCtor = nullptr;
7021       if (RD->needsImplicitDefaultConstructor())
7022         S.DeclareImplicitDefaultConstructor(RD);
7023       for (auto *CI : RD->ctors()) {
7024         if (!CI->isDefaultConstructor())
7025           continue;
7026         DefCtor = CI;
7027         if (!DefCtor->isUserProvided())
7028           break;
7029       }
7030 
7031       *Selected = DefCtor;
7032     }
7033 
7034     return false;
7035 
7036   case Sema::CXXDestructor:
7037     // C++11 [class.dtor]p5:
7038     //   A destructor is trivial if:
7039     //    - all the direct [subobjects] have trivial destructors
7040     if (RD->hasTrivialDestructor())
7041       return true;
7042 
7043     if (Selected) {
7044       if (RD->needsImplicitDestructor())
7045         S.DeclareImplicitDestructor(RD);
7046       *Selected = RD->getDestructor();
7047     }
7048 
7049     return false;
7050 
7051   case Sema::CXXCopyConstructor:
7052     // C++11 [class.copy]p12:
7053     //   A copy constructor is trivial if:
7054     //    - the constructor selected to copy each direct [subobject] is trivial
7055     if (RD->hasTrivialCopyConstructor()) {
7056       if (Quals == Qualifiers::Const)
7057         // We must either select the trivial copy constructor or reach an
7058         // ambiguity; no need to actually perform overload resolution.
7059         return true;
7060     } else if (!Selected) {
7061       return false;
7062     }
7063     // In C++98, we are not supposed to perform overload resolution here, but we
7064     // treat that as a language defect, as suggested on cxx-abi-dev, to treat
7065     // cases like B as having a non-trivial copy constructor:
7066     //   struct A { template<typename T> A(T&); };
7067     //   struct B { mutable A a; };
7068     goto NeedOverloadResolution;
7069 
7070   case Sema::CXXCopyAssignment:
7071     // C++11 [class.copy]p25:
7072     //   A copy assignment operator is trivial if:
7073     //    - the assignment operator selected to copy each direct [subobject] is
7074     //      trivial
7075     if (RD->hasTrivialCopyAssignment()) {
7076       if (Quals == Qualifiers::Const)
7077         return true;
7078     } else if (!Selected) {
7079       return false;
7080     }
7081     // In C++98, we are not supposed to perform overload resolution here, but we
7082     // treat that as a language defect.
7083     goto NeedOverloadResolution;
7084 
7085   case Sema::CXXMoveConstructor:
7086   case Sema::CXXMoveAssignment:
7087   NeedOverloadResolution:
7088     Sema::SpecialMemberOverloadResult SMOR =
7089         lookupCallFromSpecialMember(S, RD, CSM, Quals, ConstRHS);
7090 
7091     // The standard doesn't describe how to behave if the lookup is ambiguous.
7092     // We treat it as not making the member non-trivial, just like the standard
7093     // mandates for the default constructor. This should rarely matter, because
7094     // the member will also be deleted.
7095     if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
7096       return true;
7097 
7098     if (!SMOR.getMethod()) {
7099       assert(SMOR.getKind() ==
7100              Sema::SpecialMemberOverloadResult::NoMemberOrDeleted);
7101       return false;
7102     }
7103 
7104     // We deliberately don't check if we found a deleted special member. We're
7105     // not supposed to!
7106     if (Selected)
7107       *Selected = SMOR.getMethod();
7108     return SMOR.getMethod()->isTrivial();
7109   }
7110 
7111   llvm_unreachable("unknown special method kind");
7112 }
7113 
7114 static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) {
7115   for (auto *CI : RD->ctors())
7116     if (!CI->isImplicit())
7117       return CI;
7118 
7119   // Look for constructor templates.
7120   typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter;
7121   for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) {
7122     if (CXXConstructorDecl *CD =
7123           dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl()))
7124       return CD;
7125   }
7126 
7127   return nullptr;
7128 }
7129 
7130 /// The kind of subobject we are checking for triviality. The values of this
7131 /// enumeration are used in diagnostics.
7132 enum TrivialSubobjectKind {
7133   /// The subobject is a base class.
7134   TSK_BaseClass,
7135   /// The subobject is a non-static data member.
7136   TSK_Field,
7137   /// The object is actually the complete object.
7138   TSK_CompleteObject
7139 };
7140 
7141 /// Check whether the special member selected for a given type would be trivial.
7142 static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc,
7143                                       QualType SubType, bool ConstRHS,
7144                                       Sema::CXXSpecialMember CSM,
7145                                       TrivialSubobjectKind Kind,
7146                                       bool Diagnose) {
7147   CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl();
7148   if (!SubRD)
7149     return true;
7150 
7151   CXXMethodDecl *Selected;
7152   if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(),
7153                                ConstRHS, Diagnose ? &Selected : nullptr))
7154     return true;
7155 
7156   if (Diagnose) {
7157     if (ConstRHS)
7158       SubType.addConst();
7159 
7160     if (!Selected && CSM == Sema::CXXDefaultConstructor) {
7161       S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor)
7162         << Kind << SubType.getUnqualifiedType();
7163       if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD))
7164         S.Diag(CD->getLocation(), diag::note_user_declared_ctor);
7165     } else if (!Selected)
7166       S.Diag(SubobjLoc, diag::note_nontrivial_no_copy)
7167         << Kind << SubType.getUnqualifiedType() << CSM << SubType;
7168     else if (Selected->isUserProvided()) {
7169       if (Kind == TSK_CompleteObject)
7170         S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided)
7171           << Kind << SubType.getUnqualifiedType() << CSM;
7172       else {
7173         S.Diag(SubobjLoc, diag::note_nontrivial_user_provided)
7174           << Kind << SubType.getUnqualifiedType() << CSM;
7175         S.Diag(Selected->getLocation(), diag::note_declared_at);
7176       }
7177     } else {
7178       if (Kind != TSK_CompleteObject)
7179         S.Diag(SubobjLoc, diag::note_nontrivial_subobject)
7180           << Kind << SubType.getUnqualifiedType() << CSM;
7181 
7182       // Explain why the defaulted or deleted special member isn't trivial.
7183       S.SpecialMemberIsTrivial(Selected, CSM, Diagnose);
7184     }
7185   }
7186 
7187   return false;
7188 }
7189 
7190 /// Check whether the members of a class type allow a special member to be
7191 /// trivial.
7192 static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD,
7193                                      Sema::CXXSpecialMember CSM,
7194                                      bool ConstArg, bool Diagnose) {
7195   for (const auto *FI : RD->fields()) {
7196     if (FI->isInvalidDecl() || FI->isUnnamedBitfield())
7197       continue;
7198 
7199     QualType FieldType = S.Context.getBaseElementType(FI->getType());
7200 
7201     // Pretend anonymous struct or union members are members of this class.
7202     if (FI->isAnonymousStructOrUnion()) {
7203       if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(),
7204                                     CSM, ConstArg, Diagnose))
7205         return false;
7206       continue;
7207     }
7208 
7209     // C++11 [class.ctor]p5:
7210     //   A default constructor is trivial if [...]
7211     //    -- no non-static data member of its class has a
7212     //       brace-or-equal-initializer
7213     if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) {
7214       if (Diagnose)
7215         S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << FI;
7216       return false;
7217     }
7218 
7219     // Objective C ARC 4.3.5:
7220     //   [...] nontrivally ownership-qualified types are [...] not trivially
7221     //   default constructible, copy constructible, move constructible, copy
7222     //   assignable, move assignable, or destructible [...]
7223     if (FieldType.hasNonTrivialObjCLifetime()) {
7224       if (Diagnose)
7225         S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership)
7226           << RD << FieldType.getObjCLifetime();
7227       return false;
7228     }
7229 
7230     bool ConstRHS = ConstArg && !FI->isMutable();
7231     if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, ConstRHS,
7232                                    CSM, TSK_Field, Diagnose))
7233       return false;
7234   }
7235 
7236   return true;
7237 }
7238 
7239 /// Diagnose why the specified class does not have a trivial special member of
7240 /// the given kind.
7241 void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) {
7242   QualType Ty = Context.getRecordType(RD);
7243 
7244   bool ConstArg = (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment);
7245   checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, ConstArg, CSM,
7246                             TSK_CompleteObject, /*Diagnose*/true);
7247 }
7248 
7249 /// Determine whether a defaulted or deleted special member function is trivial,
7250 /// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12,
7251 /// C++11 [class.copy]p25, and C++11 [class.dtor]p5.
7252 bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM,
7253                                   bool Diagnose) {
7254   assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough");
7255 
7256   CXXRecordDecl *RD = MD->getParent();
7257 
7258   bool ConstArg = false;
7259 
7260   // C++11 [class.copy]p12, p25: [DR1593]
7261   //   A [special member] is trivial if [...] its parameter-type-list is
7262   //   equivalent to the parameter-type-list of an implicit declaration [...]
7263   switch (CSM) {
7264   case CXXDefaultConstructor:
7265   case CXXDestructor:
7266     // Trivial default constructors and destructors cannot have parameters.
7267     break;
7268 
7269   case CXXCopyConstructor:
7270   case CXXCopyAssignment: {
7271     // Trivial copy operations always have const, non-volatile parameter types.
7272     ConstArg = true;
7273     const ParmVarDecl *Param0 = MD->getParamDecl(0);
7274     const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>();
7275     if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) {
7276       if (Diagnose)
7277         Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
7278           << Param0->getSourceRange() << Param0->getType()
7279           << Context.getLValueReferenceType(
7280                Context.getRecordType(RD).withConst());
7281       return false;
7282     }
7283     break;
7284   }
7285 
7286   case CXXMoveConstructor:
7287   case CXXMoveAssignment: {
7288     // Trivial move operations always have non-cv-qualified parameters.
7289     const ParmVarDecl *Param0 = MD->getParamDecl(0);
7290     const RValueReferenceType *RT =
7291       Param0->getType()->getAs<RValueReferenceType>();
7292     if (!RT || RT->getPointeeType().getCVRQualifiers()) {
7293       if (Diagnose)
7294         Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
7295           << Param0->getSourceRange() << Param0->getType()
7296           << Context.getRValueReferenceType(Context.getRecordType(RD));
7297       return false;
7298     }
7299     break;
7300   }
7301 
7302   case CXXInvalid:
7303     llvm_unreachable("not a special member");
7304   }
7305 
7306   if (MD->getMinRequiredArguments() < MD->getNumParams()) {
7307     if (Diagnose)
7308       Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(),
7309            diag::note_nontrivial_default_arg)
7310         << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange();
7311     return false;
7312   }
7313   if (MD->isVariadic()) {
7314     if (Diagnose)
7315       Diag(MD->getLocation(), diag::note_nontrivial_variadic);
7316     return false;
7317   }
7318 
7319   // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
7320   //   A copy/move [constructor or assignment operator] is trivial if
7321   //    -- the [member] selected to copy/move each direct base class subobject
7322   //       is trivial
7323   //
7324   // C++11 [class.copy]p12, C++11 [class.copy]p25:
7325   //   A [default constructor or destructor] is trivial if
7326   //    -- all the direct base classes have trivial [default constructors or
7327   //       destructors]
7328   for (const auto &BI : RD->bases())
7329     if (!checkTrivialSubobjectCall(*this, BI.getLocStart(), BI.getType(),
7330                                    ConstArg, CSM, TSK_BaseClass, Diagnose))
7331       return false;
7332 
7333   // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
7334   //   A copy/move [constructor or assignment operator] for a class X is
7335   //   trivial if
7336   //    -- for each non-static data member of X that is of class type (or array
7337   //       thereof), the constructor selected to copy/move that member is
7338   //       trivial
7339   //
7340   // C++11 [class.copy]p12, C++11 [class.copy]p25:
7341   //   A [default constructor or destructor] is trivial if
7342   //    -- for all of the non-static data members of its class that are of class
7343   //       type (or array thereof), each such class has a trivial [default
7344   //       constructor or destructor]
7345   if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose))
7346     return false;
7347 
7348   // C++11 [class.dtor]p5:
7349   //   A destructor is trivial if [...]
7350   //    -- the destructor is not virtual
7351   if (CSM == CXXDestructor && MD->isVirtual()) {
7352     if (Diagnose)
7353       Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD;
7354     return false;
7355   }
7356 
7357   // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
7358   //   A [special member] for class X is trivial if [...]
7359   //    -- class X has no virtual functions and no virtual base classes
7360   if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) {
7361     if (!Diagnose)
7362       return false;
7363 
7364     if (RD->getNumVBases()) {
7365       // Check for virtual bases. We already know that the corresponding
7366       // member in all bases is trivial, so vbases must all be direct.
7367       CXXBaseSpecifier &BS = *RD->vbases_begin();
7368       assert(BS.isVirtual());
7369       Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1;
7370       return false;
7371     }
7372 
7373     // Must have a virtual method.
7374     for (const auto *MI : RD->methods()) {
7375       if (MI->isVirtual()) {
7376         SourceLocation MLoc = MI->getLocStart();
7377         Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0;
7378         return false;
7379       }
7380     }
7381 
7382     llvm_unreachable("dynamic class with no vbases and no virtual functions");
7383   }
7384 
7385   // Looks like it's trivial!
7386   return true;
7387 }
7388 
7389 namespace {
7390 struct FindHiddenVirtualMethod {
7391   Sema *S;
7392   CXXMethodDecl *Method;
7393   llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
7394   SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
7395 
7396 private:
7397   /// Check whether any most overriden method from MD in Methods
7398   static bool CheckMostOverridenMethods(
7399       const CXXMethodDecl *MD,
7400       const llvm::SmallPtrSetImpl<const CXXMethodDecl *> &Methods) {
7401     if (MD->size_overridden_methods() == 0)
7402       return Methods.count(MD->getCanonicalDecl());
7403     for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
7404                                         E = MD->end_overridden_methods();
7405          I != E; ++I)
7406       if (CheckMostOverridenMethods(*I, Methods))
7407         return true;
7408     return false;
7409   }
7410 
7411 public:
7412   /// Member lookup function that determines whether a given C++
7413   /// method overloads virtual methods in a base class without overriding any,
7414   /// to be used with CXXRecordDecl::lookupInBases().
7415   bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
7416     RecordDecl *BaseRecord =
7417         Specifier->getType()->getAs<RecordType>()->getDecl();
7418 
7419     DeclarationName Name = Method->getDeclName();
7420     assert(Name.getNameKind() == DeclarationName::Identifier);
7421 
7422     bool foundSameNameMethod = false;
7423     SmallVector<CXXMethodDecl *, 8> overloadedMethods;
7424     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
7425          Path.Decls = Path.Decls.slice(1)) {
7426       NamedDecl *D = Path.Decls.front();
7427       if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
7428         MD = MD->getCanonicalDecl();
7429         foundSameNameMethod = true;
7430         // Interested only in hidden virtual methods.
7431         if (!MD->isVirtual())
7432           continue;
7433         // If the method we are checking overrides a method from its base
7434         // don't warn about the other overloaded methods. Clang deviates from
7435         // GCC by only diagnosing overloads of inherited virtual functions that
7436         // do not override any other virtual functions in the base. GCC's
7437         // -Woverloaded-virtual diagnoses any derived function hiding a virtual
7438         // function from a base class. These cases may be better served by a
7439         // warning (not specific to virtual functions) on call sites when the
7440         // call would select a different function from the base class, were it
7441         // visible.
7442         // See FIXME in test/SemaCXX/warn-overload-virtual.cpp for an example.
7443         if (!S->IsOverload(Method, MD, false))
7444           return true;
7445         // Collect the overload only if its hidden.
7446         if (!CheckMostOverridenMethods(MD, OverridenAndUsingBaseMethods))
7447           overloadedMethods.push_back(MD);
7448       }
7449     }
7450 
7451     if (foundSameNameMethod)
7452       OverloadedMethods.append(overloadedMethods.begin(),
7453                                overloadedMethods.end());
7454     return foundSameNameMethod;
7455   }
7456 };
7457 } // end anonymous namespace
7458 
7459 /// \brief Add the most overriden methods from MD to Methods
7460 static void AddMostOverridenMethods(const CXXMethodDecl *MD,
7461                         llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) {
7462   if (MD->size_overridden_methods() == 0)
7463     Methods.insert(MD->getCanonicalDecl());
7464   for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
7465                                       E = MD->end_overridden_methods();
7466        I != E; ++I)
7467     AddMostOverridenMethods(*I, Methods);
7468 }
7469 
7470 /// \brief Check if a method overloads virtual methods in a base class without
7471 /// overriding any.
7472 void Sema::FindHiddenVirtualMethods(CXXMethodDecl *MD,
7473                           SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) {
7474   if (!MD->getDeclName().isIdentifier())
7475     return;
7476 
7477   CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
7478                      /*bool RecordPaths=*/false,
7479                      /*bool DetectVirtual=*/false);
7480   FindHiddenVirtualMethod FHVM;
7481   FHVM.Method = MD;
7482   FHVM.S = this;
7483 
7484   // Keep the base methods that were overriden or introduced in the subclass
7485   // by 'using' in a set. A base method not in this set is hidden.
7486   CXXRecordDecl *DC = MD->getParent();
7487   DeclContext::lookup_result R = DC->lookup(MD->getDeclName());
7488   for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) {
7489     NamedDecl *ND = *I;
7490     if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I))
7491       ND = shad->getTargetDecl();
7492     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
7493       AddMostOverridenMethods(MD, FHVM.OverridenAndUsingBaseMethods);
7494   }
7495 
7496   if (DC->lookupInBases(FHVM, Paths))
7497     OverloadedMethods = FHVM.OverloadedMethods;
7498 }
7499 
7500 void Sema::NoteHiddenVirtualMethods(CXXMethodDecl *MD,
7501                           SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) {
7502   for (unsigned i = 0, e = OverloadedMethods.size(); i != e; ++i) {
7503     CXXMethodDecl *overloadedMD = OverloadedMethods[i];
7504     PartialDiagnostic PD = PDiag(
7505          diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
7506     HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType());
7507     Diag(overloadedMD->getLocation(), PD);
7508   }
7509 }
7510 
7511 /// \brief Diagnose methods which overload virtual methods in a base class
7512 /// without overriding any.
7513 void Sema::DiagnoseHiddenVirtualMethods(CXXMethodDecl *MD) {
7514   if (MD->isInvalidDecl())
7515     return;
7516 
7517   if (Diags.isIgnored(diag::warn_overloaded_virtual, MD->getLocation()))
7518     return;
7519 
7520   SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
7521   FindHiddenVirtualMethods(MD, OverloadedMethods);
7522   if (!OverloadedMethods.empty()) {
7523     Diag(MD->getLocation(), diag::warn_overloaded_virtual)
7524       << MD << (OverloadedMethods.size() > 1);
7525 
7526     NoteHiddenVirtualMethods(MD, OverloadedMethods);
7527   }
7528 }
7529 
7530 void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
7531                                              Decl *TagDecl,
7532                                              SourceLocation LBrac,
7533                                              SourceLocation RBrac,
7534                                              AttributeList *AttrList) {
7535   if (!TagDecl)
7536     return;
7537 
7538   AdjustDeclIfTemplate(TagDecl);
7539 
7540   for (const AttributeList* l = AttrList; l; l = l->getNext()) {
7541     if (l->getKind() != AttributeList::AT_Visibility)
7542       continue;
7543     l->setInvalid();
7544     Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
7545       l->getName();
7546   }
7547 
7548   ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
7549               // strict aliasing violation!
7550               reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
7551               FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
7552 
7553   CheckCompletedCXXClass(dyn_cast_or_null<CXXRecordDecl>(TagDecl));
7554 }
7555 
7556 /// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
7557 /// special functions, such as the default constructor, copy
7558 /// constructor, or destructor, to the given C++ class (C++
7559 /// [special]p1).  This routine can only be executed just before the
7560 /// definition of the class is complete.
7561 void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
7562   if (ClassDecl->needsImplicitDefaultConstructor()) {
7563     ++ASTContext::NumImplicitDefaultConstructors;
7564 
7565     if (ClassDecl->hasInheritedConstructor())
7566       DeclareImplicitDefaultConstructor(ClassDecl);
7567   }
7568 
7569   if (ClassDecl->needsImplicitCopyConstructor()) {
7570     ++ASTContext::NumImplicitCopyConstructors;
7571 
7572     // If the properties or semantics of the copy constructor couldn't be
7573     // determined while the class was being declared, force a declaration
7574     // of it now.
7575     if (ClassDecl->needsOverloadResolutionForCopyConstructor() ||
7576         ClassDecl->hasInheritedConstructor())
7577       DeclareImplicitCopyConstructor(ClassDecl);
7578     // For the MS ABI we need to know whether the copy ctor is deleted. A
7579     // prerequisite for deleting the implicit copy ctor is that the class has a
7580     // move ctor or move assignment that is either user-declared or whose
7581     // semantics are inherited from a subobject. FIXME: We should provide a more
7582     // direct way for CodeGen to ask whether the constructor was deleted.
7583     else if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
7584              (ClassDecl->hasUserDeclaredMoveConstructor() ||
7585               ClassDecl->needsOverloadResolutionForMoveConstructor() ||
7586               ClassDecl->hasUserDeclaredMoveAssignment() ||
7587               ClassDecl->needsOverloadResolutionForMoveAssignment()))
7588       DeclareImplicitCopyConstructor(ClassDecl);
7589   }
7590 
7591   if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) {
7592     ++ASTContext::NumImplicitMoveConstructors;
7593 
7594     if (ClassDecl->needsOverloadResolutionForMoveConstructor() ||
7595         ClassDecl->hasInheritedConstructor())
7596       DeclareImplicitMoveConstructor(ClassDecl);
7597   }
7598 
7599   if (ClassDecl->needsImplicitCopyAssignment()) {
7600     ++ASTContext::NumImplicitCopyAssignmentOperators;
7601 
7602     // If we have a dynamic class, then the copy assignment operator may be
7603     // virtual, so we have to declare it immediately. This ensures that, e.g.,
7604     // it shows up in the right place in the vtable and that we diagnose
7605     // problems with the implicit exception specification.
7606     if (ClassDecl->isDynamicClass() ||
7607         ClassDecl->needsOverloadResolutionForCopyAssignment() ||
7608         ClassDecl->hasInheritedAssignment())
7609       DeclareImplicitCopyAssignment(ClassDecl);
7610   }
7611 
7612   if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) {
7613     ++ASTContext::NumImplicitMoveAssignmentOperators;
7614 
7615     // Likewise for the move assignment operator.
7616     if (ClassDecl->isDynamicClass() ||
7617         ClassDecl->needsOverloadResolutionForMoveAssignment() ||
7618         ClassDecl->hasInheritedAssignment())
7619       DeclareImplicitMoveAssignment(ClassDecl);
7620   }
7621 
7622   if (ClassDecl->needsImplicitDestructor()) {
7623     ++ASTContext::NumImplicitDestructors;
7624 
7625     // If we have a dynamic class, then the destructor may be virtual, so we
7626     // have to declare the destructor immediately. This ensures that, e.g., it
7627     // shows up in the right place in the vtable and that we diagnose problems
7628     // with the implicit exception specification.
7629     if (ClassDecl->isDynamicClass() ||
7630         ClassDecl->needsOverloadResolutionForDestructor())
7631       DeclareImplicitDestructor(ClassDecl);
7632   }
7633 }
7634 
7635 unsigned Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
7636   if (!D)
7637     return 0;
7638 
7639   // The order of template parameters is not important here. All names
7640   // get added to the same scope.
7641   SmallVector<TemplateParameterList *, 4> ParameterLists;
7642 
7643   if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
7644     D = TD->getTemplatedDecl();
7645 
7646   if (auto *PSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
7647     ParameterLists.push_back(PSD->getTemplateParameters());
7648 
7649   if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
7650     for (unsigned i = 0; i < DD->getNumTemplateParameterLists(); ++i)
7651       ParameterLists.push_back(DD->getTemplateParameterList(i));
7652 
7653     if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
7654       if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
7655         ParameterLists.push_back(FTD->getTemplateParameters());
7656     }
7657   }
7658 
7659   if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
7660     for (unsigned i = 0; i < TD->getNumTemplateParameterLists(); ++i)
7661       ParameterLists.push_back(TD->getTemplateParameterList(i));
7662 
7663     if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD)) {
7664       if (ClassTemplateDecl *CTD = RD->getDescribedClassTemplate())
7665         ParameterLists.push_back(CTD->getTemplateParameters());
7666     }
7667   }
7668 
7669   unsigned Count = 0;
7670   for (TemplateParameterList *Params : ParameterLists) {
7671     if (Params->size() > 0)
7672       // Ignore explicit specializations; they don't contribute to the template
7673       // depth.
7674       ++Count;
7675     for (NamedDecl *Param : *Params) {
7676       if (Param->getDeclName()) {
7677         S->AddDecl(Param);
7678         IdResolver.AddDecl(Param);
7679       }
7680     }
7681   }
7682 
7683   return Count;
7684 }
7685 
7686 void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
7687   if (!RecordD) return;
7688   AdjustDeclIfTemplate(RecordD);
7689   CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
7690   PushDeclContext(S, Record);
7691 }
7692 
7693 void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
7694   if (!RecordD) return;
7695   PopDeclContext();
7696 }
7697 
7698 /// This is used to implement the constant expression evaluation part of the
7699 /// attribute enable_if extension. There is nothing in standard C++ which would
7700 /// require reentering parameters.
7701 void Sema::ActOnReenterCXXMethodParameter(Scope *S, ParmVarDecl *Param) {
7702   if (!Param)
7703     return;
7704 
7705   S->AddDecl(Param);
7706   if (Param->getDeclName())
7707     IdResolver.AddDecl(Param);
7708 }
7709 
7710 /// ActOnStartDelayedCXXMethodDeclaration - We have completed
7711 /// parsing a top-level (non-nested) C++ class, and we are now
7712 /// parsing those parts of the given Method declaration that could
7713 /// not be parsed earlier (C++ [class.mem]p2), such as default
7714 /// arguments. This action should enter the scope of the given
7715 /// Method declaration as if we had just parsed the qualified method
7716 /// name. However, it should not bring the parameters into scope;
7717 /// that will be performed by ActOnDelayedCXXMethodParameter.
7718 void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
7719 }
7720 
7721 /// ActOnDelayedCXXMethodParameter - We've already started a delayed
7722 /// C++ method declaration. We're (re-)introducing the given
7723 /// function parameter into scope for use in parsing later parts of
7724 /// the method declaration. For example, we could see an
7725 /// ActOnParamDefaultArgument event for this parameter.
7726 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
7727   if (!ParamD)
7728     return;
7729 
7730   ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
7731 
7732   // If this parameter has an unparsed default argument, clear it out
7733   // to make way for the parsed default argument.
7734   if (Param->hasUnparsedDefaultArg())
7735     Param->setDefaultArg(nullptr);
7736 
7737   S->AddDecl(Param);
7738   if (Param->getDeclName())
7739     IdResolver.AddDecl(Param);
7740 }
7741 
7742 /// ActOnFinishDelayedCXXMethodDeclaration - We have finished
7743 /// processing the delayed method declaration for Method. The method
7744 /// declaration is now considered finished. There may be a separate
7745 /// ActOnStartOfFunctionDef action later (not necessarily
7746 /// immediately!) for this method, if it was also defined inside the
7747 /// class body.
7748 void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
7749   if (!MethodD)
7750     return;
7751 
7752   AdjustDeclIfTemplate(MethodD);
7753 
7754   FunctionDecl *Method = cast<FunctionDecl>(MethodD);
7755 
7756   // Now that we have our default arguments, check the constructor
7757   // again. It could produce additional diagnostics or affect whether
7758   // the class has implicitly-declared destructors, among other
7759   // things.
7760   if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
7761     CheckConstructor(Constructor);
7762 
7763   // Check the default arguments, which we may have added.
7764   if (!Method->isInvalidDecl())
7765     CheckCXXDefaultArguments(Method);
7766 }
7767 
7768 /// CheckConstructorDeclarator - Called by ActOnDeclarator to check
7769 /// the well-formedness of the constructor declarator @p D with type @p
7770 /// R. If there are any errors in the declarator, this routine will
7771 /// emit diagnostics and set the invalid bit to true.  In any case, the type
7772 /// will be updated to reflect a well-formed type for the constructor and
7773 /// returned.
7774 QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
7775                                           StorageClass &SC) {
7776   bool isVirtual = D.getDeclSpec().isVirtualSpecified();
7777 
7778   // C++ [class.ctor]p3:
7779   //   A constructor shall not be virtual (10.3) or static (9.4). A
7780   //   constructor can be invoked for a const, volatile or const
7781   //   volatile object. A constructor shall not be declared const,
7782   //   volatile, or const volatile (9.3.2).
7783   if (isVirtual) {
7784     if (!D.isInvalidType())
7785       Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
7786         << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
7787         << SourceRange(D.getIdentifierLoc());
7788     D.setInvalidType();
7789   }
7790   if (SC == SC_Static) {
7791     if (!D.isInvalidType())
7792       Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
7793         << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
7794         << SourceRange(D.getIdentifierLoc());
7795     D.setInvalidType();
7796     SC = SC_None;
7797   }
7798 
7799   if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
7800     diagnoseIgnoredQualifiers(
7801         diag::err_constructor_return_type, TypeQuals, SourceLocation(),
7802         D.getDeclSpec().getConstSpecLoc(), D.getDeclSpec().getVolatileSpecLoc(),
7803         D.getDeclSpec().getRestrictSpecLoc(),
7804         D.getDeclSpec().getAtomicSpecLoc());
7805     D.setInvalidType();
7806   }
7807 
7808   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
7809   if (FTI.TypeQuals != 0) {
7810     if (FTI.TypeQuals & Qualifiers::Const)
7811       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
7812         << "const" << SourceRange(D.getIdentifierLoc());
7813     if (FTI.TypeQuals & Qualifiers::Volatile)
7814       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
7815         << "volatile" << SourceRange(D.getIdentifierLoc());
7816     if (FTI.TypeQuals & Qualifiers::Restrict)
7817       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
7818         << "restrict" << SourceRange(D.getIdentifierLoc());
7819     D.setInvalidType();
7820   }
7821 
7822   // C++0x [class.ctor]p4:
7823   //   A constructor shall not be declared with a ref-qualifier.
7824   if (FTI.hasRefQualifier()) {
7825     Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
7826       << FTI.RefQualifierIsLValueRef
7827       << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
7828     D.setInvalidType();
7829   }
7830 
7831   // Rebuild the function type "R" without any type qualifiers (in
7832   // case any of the errors above fired) and with "void" as the
7833   // return type, since constructors don't have return types.
7834   const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
7835   if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType())
7836     return R;
7837 
7838   FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
7839   EPI.TypeQuals = 0;
7840   EPI.RefQualifier = RQ_None;
7841 
7842   return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI);
7843 }
7844 
7845 /// CheckConstructor - Checks a fully-formed constructor for
7846 /// well-formedness, issuing any diagnostics required. Returns true if
7847 /// the constructor declarator is invalid.
7848 void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
7849   CXXRecordDecl *ClassDecl
7850     = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
7851   if (!ClassDecl)
7852     return Constructor->setInvalidDecl();
7853 
7854   // C++ [class.copy]p3:
7855   //   A declaration of a constructor for a class X is ill-formed if
7856   //   its first parameter is of type (optionally cv-qualified) X and
7857   //   either there are no other parameters or else all other
7858   //   parameters have default arguments.
7859   if (!Constructor->isInvalidDecl() &&
7860       ((Constructor->getNumParams() == 1) ||
7861        (Constructor->getNumParams() > 1 &&
7862         Constructor->getParamDecl(1)->hasDefaultArg())) &&
7863       Constructor->getTemplateSpecializationKind()
7864                                               != TSK_ImplicitInstantiation) {
7865     QualType ParamType = Constructor->getParamDecl(0)->getType();
7866     QualType ClassTy = Context.getTagDeclType(ClassDecl);
7867     if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
7868       SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
7869       const char *ConstRef
7870         = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
7871                                                         : " const &";
7872       Diag(ParamLoc, diag::err_constructor_byvalue_arg)
7873         << FixItHint::CreateInsertion(ParamLoc, ConstRef);
7874 
7875       // FIXME: Rather that making the constructor invalid, we should endeavor
7876       // to fix the type.
7877       Constructor->setInvalidDecl();
7878     }
7879   }
7880 }
7881 
7882 /// CheckDestructor - Checks a fully-formed destructor definition for
7883 /// well-formedness, issuing any diagnostics required.  Returns true
7884 /// on error.
7885 bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
7886   CXXRecordDecl *RD = Destructor->getParent();
7887 
7888   if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) {
7889     SourceLocation Loc;
7890 
7891     if (!Destructor->isImplicit())
7892       Loc = Destructor->getLocation();
7893     else
7894       Loc = RD->getLocation();
7895 
7896     // If we have a virtual destructor, look up the deallocation function
7897     if (FunctionDecl *OperatorDelete =
7898             FindDeallocationFunctionForDestructor(Loc, RD)) {
7899       MarkFunctionReferenced(Loc, OperatorDelete);
7900       Destructor->setOperatorDelete(OperatorDelete);
7901     }
7902   }
7903 
7904   return false;
7905 }
7906 
7907 /// CheckDestructorDeclarator - Called by ActOnDeclarator to check
7908 /// the well-formednes of the destructor declarator @p D with type @p
7909 /// R. If there are any errors in the declarator, this routine will
7910 /// emit diagnostics and set the declarator to invalid.  Even if this happens,
7911 /// will be updated to reflect a well-formed type for the destructor and
7912 /// returned.
7913 QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
7914                                          StorageClass& SC) {
7915   // C++ [class.dtor]p1:
7916   //   [...] A typedef-name that names a class is a class-name
7917   //   (7.1.3); however, a typedef-name that names a class shall not
7918   //   be used as the identifier in the declarator for a destructor
7919   //   declaration.
7920   QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
7921   if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
7922     Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
7923       << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
7924   else if (const TemplateSpecializationType *TST =
7925              DeclaratorType->getAs<TemplateSpecializationType>())
7926     if (TST->isTypeAlias())
7927       Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
7928         << DeclaratorType << 1;
7929 
7930   // C++ [class.dtor]p2:
7931   //   A destructor is used to destroy objects of its class type. A
7932   //   destructor takes no parameters, and no return type can be
7933   //   specified for it (not even void). The address of a destructor
7934   //   shall not be taken. A destructor shall not be static. A
7935   //   destructor can be invoked for a const, volatile or const
7936   //   volatile object. A destructor shall not be declared const,
7937   //   volatile or const volatile (9.3.2).
7938   if (SC == SC_Static) {
7939     if (!D.isInvalidType())
7940       Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
7941         << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
7942         << SourceRange(D.getIdentifierLoc())
7943         << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
7944 
7945     SC = SC_None;
7946   }
7947   if (!D.isInvalidType()) {
7948     // Destructors don't have return types, but the parser will
7949     // happily parse something like:
7950     //
7951     //   class X {
7952     //     float ~X();
7953     //   };
7954     //
7955     // The return type will be eliminated later.
7956     if (D.getDeclSpec().hasTypeSpecifier())
7957       Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
7958         << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
7959         << SourceRange(D.getIdentifierLoc());
7960     else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
7961       diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals,
7962                                 SourceLocation(),
7963                                 D.getDeclSpec().getConstSpecLoc(),
7964                                 D.getDeclSpec().getVolatileSpecLoc(),
7965                                 D.getDeclSpec().getRestrictSpecLoc(),
7966                                 D.getDeclSpec().getAtomicSpecLoc());
7967       D.setInvalidType();
7968     }
7969   }
7970 
7971   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
7972   if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
7973     if (FTI.TypeQuals & Qualifiers::Const)
7974       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
7975         << "const" << SourceRange(D.getIdentifierLoc());
7976     if (FTI.TypeQuals & Qualifiers::Volatile)
7977       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
7978         << "volatile" << SourceRange(D.getIdentifierLoc());
7979     if (FTI.TypeQuals & Qualifiers::Restrict)
7980       Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
7981         << "restrict" << SourceRange(D.getIdentifierLoc());
7982     D.setInvalidType();
7983   }
7984 
7985   // C++0x [class.dtor]p2:
7986   //   A destructor shall not be declared with a ref-qualifier.
7987   if (FTI.hasRefQualifier()) {
7988     Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
7989       << FTI.RefQualifierIsLValueRef
7990       << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
7991     D.setInvalidType();
7992   }
7993 
7994   // Make sure we don't have any parameters.
7995   if (FTIHasNonVoidParameters(FTI)) {
7996     Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
7997 
7998     // Delete the parameters.
7999     FTI.freeParams();
8000     D.setInvalidType();
8001   }
8002 
8003   // Make sure the destructor isn't variadic.
8004   if (FTI.isVariadic) {
8005     Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
8006     D.setInvalidType();
8007   }
8008 
8009   // Rebuild the function type "R" without any type qualifiers or
8010   // parameters (in case any of the errors above fired) and with
8011   // "void" as the return type, since destructors don't have return
8012   // types.
8013   if (!D.isInvalidType())
8014     return R;
8015 
8016   const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
8017   FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
8018   EPI.Variadic = false;
8019   EPI.TypeQuals = 0;
8020   EPI.RefQualifier = RQ_None;
8021   return Context.getFunctionType(Context.VoidTy, None, EPI);
8022 }
8023 
8024 static void extendLeft(SourceRange &R, SourceRange Before) {
8025   if (Before.isInvalid())
8026     return;
8027   R.setBegin(Before.getBegin());
8028   if (R.getEnd().isInvalid())
8029     R.setEnd(Before.getEnd());
8030 }
8031 
8032 static void extendRight(SourceRange &R, SourceRange After) {
8033   if (After.isInvalid())
8034     return;
8035   if (R.getBegin().isInvalid())
8036     R.setBegin(After.getBegin());
8037   R.setEnd(After.getEnd());
8038 }
8039 
8040 /// CheckConversionDeclarator - Called by ActOnDeclarator to check the
8041 /// well-formednes of the conversion function declarator @p D with
8042 /// type @p R. If there are any errors in the declarator, this routine
8043 /// will emit diagnostics and return true. Otherwise, it will return
8044 /// false. Either way, the type @p R will be updated to reflect a
8045 /// well-formed type for the conversion operator.
8046 void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
8047                                      StorageClass& SC) {
8048   // C++ [class.conv.fct]p1:
8049   //   Neither parameter types nor return type can be specified. The
8050   //   type of a conversion function (8.3.5) is "function taking no
8051   //   parameter returning conversion-type-id."
8052   if (SC == SC_Static) {
8053     if (!D.isInvalidType())
8054       Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
8055         << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
8056         << D.getName().getSourceRange();
8057     D.setInvalidType();
8058     SC = SC_None;
8059   }
8060 
8061   TypeSourceInfo *ConvTSI = nullptr;
8062   QualType ConvType =
8063       GetTypeFromParser(D.getName().ConversionFunctionId, &ConvTSI);
8064 
8065   if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
8066     // Conversion functions don't have return types, but the parser will
8067     // happily parse something like:
8068     //
8069     //   class X {
8070     //     float operator bool();
8071     //   };
8072     //
8073     // The return type will be changed later anyway.
8074     Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
8075       << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
8076       << SourceRange(D.getIdentifierLoc());
8077     D.setInvalidType();
8078   }
8079 
8080   const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
8081 
8082   // Make sure we don't have any parameters.
8083   if (Proto->getNumParams() > 0) {
8084     Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
8085 
8086     // Delete the parameters.
8087     D.getFunctionTypeInfo().freeParams();
8088     D.setInvalidType();
8089   } else if (Proto->isVariadic()) {
8090     Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
8091     D.setInvalidType();
8092   }
8093 
8094   // Diagnose "&operator bool()" and other such nonsense.  This
8095   // is actually a gcc extension which we don't support.
8096   if (Proto->getReturnType() != ConvType) {
8097     bool NeedsTypedef = false;
8098     SourceRange Before, After;
8099 
8100     // Walk the chunks and extract information on them for our diagnostic.
8101     bool PastFunctionChunk = false;
8102     for (auto &Chunk : D.type_objects()) {
8103       switch (Chunk.Kind) {
8104       case DeclaratorChunk::Function:
8105         if (!PastFunctionChunk) {
8106           if (Chunk.Fun.HasTrailingReturnType) {
8107             TypeSourceInfo *TRT = nullptr;
8108             GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT);
8109             if (TRT) extendRight(After, TRT->getTypeLoc().getSourceRange());
8110           }
8111           PastFunctionChunk = true;
8112           break;
8113         }
8114         // Fall through.
8115       case DeclaratorChunk::Array:
8116         NeedsTypedef = true;
8117         extendRight(After, Chunk.getSourceRange());
8118         break;
8119 
8120       case DeclaratorChunk::Pointer:
8121       case DeclaratorChunk::BlockPointer:
8122       case DeclaratorChunk::Reference:
8123       case DeclaratorChunk::MemberPointer:
8124       case DeclaratorChunk::Pipe:
8125         extendLeft(Before, Chunk.getSourceRange());
8126         break;
8127 
8128       case DeclaratorChunk::Paren:
8129         extendLeft(Before, Chunk.Loc);
8130         extendRight(After, Chunk.EndLoc);
8131         break;
8132       }
8133     }
8134 
8135     SourceLocation Loc = Before.isValid() ? Before.getBegin() :
8136                          After.isValid()  ? After.getBegin() :
8137                                             D.getIdentifierLoc();
8138     auto &&DB = Diag(Loc, diag::err_conv_function_with_complex_decl);
8139     DB << Before << After;
8140 
8141     if (!NeedsTypedef) {
8142       DB << /*don't need a typedef*/0;
8143 
8144       // If we can provide a correct fix-it hint, do so.
8145       if (After.isInvalid() && ConvTSI) {
8146         SourceLocation InsertLoc =
8147             getLocForEndOfToken(ConvTSI->getTypeLoc().getLocEnd());
8148         DB << FixItHint::CreateInsertion(InsertLoc, " ")
8149            << FixItHint::CreateInsertionFromRange(
8150                   InsertLoc, CharSourceRange::getTokenRange(Before))
8151            << FixItHint::CreateRemoval(Before);
8152       }
8153     } else if (!Proto->getReturnType()->isDependentType()) {
8154       DB << /*typedef*/1 << Proto->getReturnType();
8155     } else if (getLangOpts().CPlusPlus11) {
8156       DB << /*alias template*/2 << Proto->getReturnType();
8157     } else {
8158       DB << /*might not be fixable*/3;
8159     }
8160 
8161     // Recover by incorporating the other type chunks into the result type.
8162     // Note, this does *not* change the name of the function. This is compatible
8163     // with the GCC extension:
8164     //   struct S { &operator int(); } s;
8165     //   int &r = s.operator int(); // ok in GCC
8166     //   S::operator int&() {} // error in GCC, function name is 'operator int'.
8167     ConvType = Proto->getReturnType();
8168   }
8169 
8170   // C++ [class.conv.fct]p4:
8171   //   The conversion-type-id shall not represent a function type nor
8172   //   an array type.
8173   if (ConvType->isArrayType()) {
8174     Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
8175     ConvType = Context.getPointerType(ConvType);
8176     D.setInvalidType();
8177   } else if (ConvType->isFunctionType()) {
8178     Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
8179     ConvType = Context.getPointerType(ConvType);
8180     D.setInvalidType();
8181   }
8182 
8183   // Rebuild the function type "R" without any parameters (in case any
8184   // of the errors above fired) and with the conversion type as the
8185   // return type.
8186   if (D.isInvalidType())
8187     R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo());
8188 
8189   // C++0x explicit conversion operators.
8190   if (D.getDeclSpec().isExplicitSpecified())
8191     Diag(D.getDeclSpec().getExplicitSpecLoc(),
8192          getLangOpts().CPlusPlus11 ?
8193            diag::warn_cxx98_compat_explicit_conversion_functions :
8194            diag::ext_explicit_conversion_functions)
8195       << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
8196 }
8197 
8198 /// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
8199 /// the declaration of the given C++ conversion function. This routine
8200 /// is responsible for recording the conversion function in the C++
8201 /// class, if possible.
8202 Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
8203   assert(Conversion && "Expected to receive a conversion function declaration");
8204 
8205   CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
8206 
8207   // Make sure we aren't redeclaring the conversion function.
8208   QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
8209 
8210   // C++ [class.conv.fct]p1:
8211   //   [...] A conversion function is never used to convert a
8212   //   (possibly cv-qualified) object to the (possibly cv-qualified)
8213   //   same object type (or a reference to it), to a (possibly
8214   //   cv-qualified) base class of that type (or a reference to it),
8215   //   or to (possibly cv-qualified) void.
8216   // FIXME: Suppress this warning if the conversion function ends up being a
8217   // virtual function that overrides a virtual function in a base class.
8218   QualType ClassType
8219     = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
8220   if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
8221     ConvType = ConvTypeRef->getPointeeType();
8222   if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
8223       Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
8224     /* Suppress diagnostics for instantiations. */;
8225   else if (ConvType->isRecordType()) {
8226     ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
8227     if (ConvType == ClassType)
8228       Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
8229         << ClassType;
8230     else if (IsDerivedFrom(Conversion->getLocation(), ClassType, ConvType))
8231       Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
8232         <<  ClassType << ConvType;
8233   } else if (ConvType->isVoidType()) {
8234     Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
8235       << ClassType << ConvType;
8236   }
8237 
8238   if (FunctionTemplateDecl *ConversionTemplate
8239                                 = Conversion->getDescribedFunctionTemplate())
8240     return ConversionTemplate;
8241 
8242   return Conversion;
8243 }
8244 
8245 namespace {
8246 /// Utility class to accumulate and print a diagnostic listing the invalid
8247 /// specifier(s) on a declaration.
8248 struct BadSpecifierDiagnoser {
8249   BadSpecifierDiagnoser(Sema &S, SourceLocation Loc, unsigned DiagID)
8250       : S(S), Diagnostic(S.Diag(Loc, DiagID)) {}
8251   ~BadSpecifierDiagnoser() {
8252     Diagnostic << Specifiers;
8253   }
8254 
8255   template<typename T> void check(SourceLocation SpecLoc, T Spec) {
8256     return check(SpecLoc, DeclSpec::getSpecifierName(Spec));
8257   }
8258   void check(SourceLocation SpecLoc, DeclSpec::TST Spec) {
8259     return check(SpecLoc,
8260                  DeclSpec::getSpecifierName(Spec, S.getPrintingPolicy()));
8261   }
8262   void check(SourceLocation SpecLoc, const char *Spec) {
8263     if (SpecLoc.isInvalid()) return;
8264     Diagnostic << SourceRange(SpecLoc, SpecLoc);
8265     if (!Specifiers.empty()) Specifiers += " ";
8266     Specifiers += Spec;
8267   }
8268 
8269   Sema &S;
8270   Sema::SemaDiagnosticBuilder Diagnostic;
8271   std::string Specifiers;
8272 };
8273 }
8274 
8275 /// Check the validity of a declarator that we parsed for a deduction-guide.
8276 /// These aren't actually declarators in the grammar, so we need to check that
8277 /// the user didn't specify any pieces that are not part of the deduction-guide
8278 /// grammar.
8279 void Sema::CheckDeductionGuideDeclarator(Declarator &D, QualType &R,
8280                                          StorageClass &SC) {
8281   TemplateName GuidedTemplate = D.getName().TemplateName.get().get();
8282   TemplateDecl *GuidedTemplateDecl = GuidedTemplate.getAsTemplateDecl();
8283   assert(GuidedTemplateDecl && "missing template decl for deduction guide");
8284 
8285   // C++ [temp.deduct.guide]p3:
8286   //   A deduction-gide shall be declared in the same scope as the
8287   //   corresponding class template.
8288   if (!CurContext->getRedeclContext()->Equals(
8289           GuidedTemplateDecl->getDeclContext()->getRedeclContext())) {
8290     Diag(D.getIdentifierLoc(), diag::err_deduction_guide_wrong_scope)
8291       << GuidedTemplateDecl;
8292     Diag(GuidedTemplateDecl->getLocation(), diag::note_template_decl_here);
8293   }
8294 
8295   auto &DS = D.getMutableDeclSpec();
8296   // We leave 'friend' and 'virtual' to be rejected in the normal way.
8297   if (DS.hasTypeSpecifier() || DS.getTypeQualifiers() ||
8298       DS.getStorageClassSpecLoc().isValid() || DS.isInlineSpecified() ||
8299       DS.isNoreturnSpecified() || DS.isConstexprSpecified() ||
8300       DS.isConceptSpecified()) {
8301     BadSpecifierDiagnoser Diagnoser(
8302         *this, D.getIdentifierLoc(),
8303         diag::err_deduction_guide_invalid_specifier);
8304 
8305     Diagnoser.check(DS.getStorageClassSpecLoc(), DS.getStorageClassSpec());
8306     DS.ClearStorageClassSpecs();
8307     SC = SC_None;
8308 
8309     // 'explicit' is permitted.
8310     Diagnoser.check(DS.getInlineSpecLoc(), "inline");
8311     Diagnoser.check(DS.getNoreturnSpecLoc(), "_Noreturn");
8312     Diagnoser.check(DS.getConstexprSpecLoc(), "constexpr");
8313     Diagnoser.check(DS.getConceptSpecLoc(), "concept");
8314     DS.ClearConstexprSpec();
8315     DS.ClearConceptSpec();
8316 
8317     Diagnoser.check(DS.getConstSpecLoc(), "const");
8318     Diagnoser.check(DS.getRestrictSpecLoc(), "__restrict");
8319     Diagnoser.check(DS.getVolatileSpecLoc(), "volatile");
8320     Diagnoser.check(DS.getAtomicSpecLoc(), "_Atomic");
8321     Diagnoser.check(DS.getUnalignedSpecLoc(), "__unaligned");
8322     DS.ClearTypeQualifiers();
8323 
8324     Diagnoser.check(DS.getTypeSpecComplexLoc(), DS.getTypeSpecComplex());
8325     Diagnoser.check(DS.getTypeSpecSignLoc(), DS.getTypeSpecSign());
8326     Diagnoser.check(DS.getTypeSpecWidthLoc(), DS.getTypeSpecWidth());
8327     Diagnoser.check(DS.getTypeSpecTypeLoc(), DS.getTypeSpecType());
8328     DS.ClearTypeSpecType();
8329   }
8330 
8331   if (D.isInvalidType())
8332     return;
8333 
8334   // Check the declarator is simple enough.
8335   bool FoundFunction = false;
8336   for (const DeclaratorChunk &Chunk : llvm::reverse(D.type_objects())) {
8337     if (Chunk.Kind == DeclaratorChunk::Paren)
8338       continue;
8339     if (Chunk.Kind != DeclaratorChunk::Function || FoundFunction) {
8340       Diag(D.getDeclSpec().getLocStart(),
8341           diag::err_deduction_guide_with_complex_decl)
8342         << D.getSourceRange();
8343       break;
8344     }
8345     if (!Chunk.Fun.hasTrailingReturnType()) {
8346       Diag(D.getName().getLocStart(),
8347            diag::err_deduction_guide_no_trailing_return_type);
8348       break;
8349     }
8350 
8351     // Check that the return type is written as a specialization of
8352     // the template specified as the deduction-guide's name.
8353     ParsedType TrailingReturnType = Chunk.Fun.getTrailingReturnType();
8354     TypeSourceInfo *TSI = nullptr;
8355     QualType RetTy = GetTypeFromParser(TrailingReturnType, &TSI);
8356     assert(TSI && "deduction guide has valid type but invalid return type?");
8357     bool AcceptableReturnType = false;
8358     bool MightInstantiateToSpecialization = false;
8359     if (auto RetTST =
8360             TSI->getTypeLoc().getAs<TemplateSpecializationTypeLoc>()) {
8361       TemplateName SpecifiedName = RetTST.getTypePtr()->getTemplateName();
8362       bool TemplateMatches =
8363           Context.hasSameTemplateName(SpecifiedName, GuidedTemplate);
8364       if (SpecifiedName.getKind() == TemplateName::Template && TemplateMatches)
8365         AcceptableReturnType = true;
8366       else {
8367         // This could still instantiate to the right type, unless we know it
8368         // names the wrong class template.
8369         auto *TD = SpecifiedName.getAsTemplateDecl();
8370         MightInstantiateToSpecialization = !(TD && isa<ClassTemplateDecl>(TD) &&
8371                                              !TemplateMatches);
8372       }
8373     } else if (!RetTy.hasQualifiers() && RetTy->isDependentType()) {
8374       MightInstantiateToSpecialization = true;
8375     }
8376 
8377     if (!AcceptableReturnType) {
8378       Diag(TSI->getTypeLoc().getLocStart(),
8379            diag::err_deduction_guide_bad_trailing_return_type)
8380         << GuidedTemplate << TSI->getType() << MightInstantiateToSpecialization
8381         << TSI->getTypeLoc().getSourceRange();
8382     }
8383 
8384     // Keep going to check that we don't have any inner declarator pieces (we
8385     // could still have a function returning a pointer to a function).
8386     FoundFunction = true;
8387   }
8388 
8389   if (D.isFunctionDefinition())
8390     Diag(D.getIdentifierLoc(), diag::err_deduction_guide_defines_function);
8391 }
8392 
8393 //===----------------------------------------------------------------------===//
8394 // Namespace Handling
8395 //===----------------------------------------------------------------------===//
8396 
8397 /// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
8398 /// reopened.
8399 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
8400                                             SourceLocation Loc,
8401                                             IdentifierInfo *II, bool *IsInline,
8402                                             NamespaceDecl *PrevNS) {
8403   assert(*IsInline != PrevNS->isInline());
8404 
8405   // HACK: Work around a bug in libstdc++4.6's <atomic>, where
8406   // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
8407   // inline namespaces, with the intention of bringing names into namespace std.
8408   //
8409   // We support this just well enough to get that case working; this is not
8410   // sufficient to support reopening namespaces as inline in general.
8411   if (*IsInline && II && II->getName().startswith("__atomic") &&
8412       S.getSourceManager().isInSystemHeader(Loc)) {
8413     // Mark all prior declarations of the namespace as inline.
8414     for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
8415          NS = NS->getPreviousDecl())
8416       NS->setInline(*IsInline);
8417     // Patch up the lookup table for the containing namespace. This isn't really
8418     // correct, but it's good enough for this particular case.
8419     for (auto *I : PrevNS->decls())
8420       if (auto *ND = dyn_cast<NamedDecl>(I))
8421         PrevNS->getParent()->makeDeclVisibleInContext(ND);
8422     return;
8423   }
8424 
8425   if (PrevNS->isInline())
8426     // The user probably just forgot the 'inline', so suggest that it
8427     // be added back.
8428     S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
8429       << FixItHint::CreateInsertion(KeywordLoc, "inline ");
8430   else
8431     S.Diag(Loc, diag::err_inline_namespace_mismatch);
8432 
8433   S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
8434   *IsInline = PrevNS->isInline();
8435 }
8436 
8437 /// ActOnStartNamespaceDef - This is called at the start of a namespace
8438 /// definition.
8439 Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
8440                                    SourceLocation InlineLoc,
8441                                    SourceLocation NamespaceLoc,
8442                                    SourceLocation IdentLoc,
8443                                    IdentifierInfo *II,
8444                                    SourceLocation LBrace,
8445                                    AttributeList *AttrList,
8446                                    UsingDirectiveDecl *&UD) {
8447   SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
8448   // For anonymous namespace, take the location of the left brace.
8449   SourceLocation Loc = II ? IdentLoc : LBrace;
8450   bool IsInline = InlineLoc.isValid();
8451   bool IsInvalid = false;
8452   bool IsStd = false;
8453   bool AddToKnown = false;
8454   Scope *DeclRegionScope = NamespcScope->getParent();
8455 
8456   NamespaceDecl *PrevNS = nullptr;
8457   if (II) {
8458     // C++ [namespace.def]p2:
8459     //   The identifier in an original-namespace-definition shall not
8460     //   have been previously defined in the declarative region in
8461     //   which the original-namespace-definition appears. The
8462     //   identifier in an original-namespace-definition is the name of
8463     //   the namespace. Subsequently in that declarative region, it is
8464     //   treated as an original-namespace-name.
8465     //
8466     // Since namespace names are unique in their scope, and we don't
8467     // look through using directives, just look for any ordinary names
8468     // as if by qualified name lookup.
8469     LookupResult R(*this, II, IdentLoc, LookupOrdinaryName,
8470                    ForExternalRedeclaration);
8471     LookupQualifiedName(R, CurContext->getRedeclContext());
8472     NamedDecl *PrevDecl =
8473         R.isSingleResult() ? R.getRepresentativeDecl() : nullptr;
8474     PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
8475 
8476     if (PrevNS) {
8477       // This is an extended namespace definition.
8478       if (IsInline != PrevNS->isInline())
8479         DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
8480                                         &IsInline, PrevNS);
8481     } else if (PrevDecl) {
8482       // This is an invalid name redefinition.
8483       Diag(Loc, diag::err_redefinition_different_kind)
8484         << II;
8485       Diag(PrevDecl->getLocation(), diag::note_previous_definition);
8486       IsInvalid = true;
8487       // Continue on to push Namespc as current DeclContext and return it.
8488     } else if (II->isStr("std") &&
8489                CurContext->getRedeclContext()->isTranslationUnit()) {
8490       // This is the first "real" definition of the namespace "std", so update
8491       // our cache of the "std" namespace to point at this definition.
8492       PrevNS = getStdNamespace();
8493       IsStd = true;
8494       AddToKnown = !IsInline;
8495     } else {
8496       // We've seen this namespace for the first time.
8497       AddToKnown = !IsInline;
8498     }
8499   } else {
8500     // Anonymous namespaces.
8501 
8502     // Determine whether the parent already has an anonymous namespace.
8503     DeclContext *Parent = CurContext->getRedeclContext();
8504     if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
8505       PrevNS = TU->getAnonymousNamespace();
8506     } else {
8507       NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
8508       PrevNS = ND->getAnonymousNamespace();
8509     }
8510 
8511     if (PrevNS && IsInline != PrevNS->isInline())
8512       DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
8513                                       &IsInline, PrevNS);
8514   }
8515 
8516   NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
8517                                                  StartLoc, Loc, II, PrevNS);
8518   if (IsInvalid)
8519     Namespc->setInvalidDecl();
8520 
8521   ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
8522   AddPragmaAttributes(DeclRegionScope, Namespc);
8523 
8524   // FIXME: Should we be merging attributes?
8525   if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
8526     PushNamespaceVisibilityAttr(Attr, Loc);
8527 
8528   if (IsStd)
8529     StdNamespace = Namespc;
8530   if (AddToKnown)
8531     KnownNamespaces[Namespc] = false;
8532 
8533   if (II) {
8534     PushOnScopeChains(Namespc, DeclRegionScope);
8535   } else {
8536     // Link the anonymous namespace into its parent.
8537     DeclContext *Parent = CurContext->getRedeclContext();
8538     if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
8539       TU->setAnonymousNamespace(Namespc);
8540     } else {
8541       cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
8542     }
8543 
8544     CurContext->addDecl(Namespc);
8545 
8546     // C++ [namespace.unnamed]p1.  An unnamed-namespace-definition
8547     //   behaves as if it were replaced by
8548     //     namespace unique { /* empty body */ }
8549     //     using namespace unique;
8550     //     namespace unique { namespace-body }
8551     //   where all occurrences of 'unique' in a translation unit are
8552     //   replaced by the same identifier and this identifier differs
8553     //   from all other identifiers in the entire program.
8554 
8555     // We just create the namespace with an empty name and then add an
8556     // implicit using declaration, just like the standard suggests.
8557     //
8558     // CodeGen enforces the "universally unique" aspect by giving all
8559     // declarations semantically contained within an anonymous
8560     // namespace internal linkage.
8561 
8562     if (!PrevNS) {
8563       UD = UsingDirectiveDecl::Create(Context, Parent,
8564                                       /* 'using' */ LBrace,
8565                                       /* 'namespace' */ SourceLocation(),
8566                                       /* qualifier */ NestedNameSpecifierLoc(),
8567                                       /* identifier */ SourceLocation(),
8568                                       Namespc,
8569                                       /* Ancestor */ Parent);
8570       UD->setImplicit();
8571       Parent->addDecl(UD);
8572     }
8573   }
8574 
8575   ActOnDocumentableDecl(Namespc);
8576 
8577   // Although we could have an invalid decl (i.e. the namespace name is a
8578   // redefinition), push it as current DeclContext and try to continue parsing.
8579   // FIXME: We should be able to push Namespc here, so that the each DeclContext
8580   // for the namespace has the declarations that showed up in that particular
8581   // namespace definition.
8582   PushDeclContext(NamespcScope, Namespc);
8583   return Namespc;
8584 }
8585 
8586 /// getNamespaceDecl - Returns the namespace a decl represents. If the decl
8587 /// is a namespace alias, returns the namespace it points to.
8588 static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
8589   if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
8590     return AD->getNamespace();
8591   return dyn_cast_or_null<NamespaceDecl>(D);
8592 }
8593 
8594 /// ActOnFinishNamespaceDef - This callback is called after a namespace is
8595 /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
8596 void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
8597   NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
8598   assert(Namespc && "Invalid parameter, expected NamespaceDecl");
8599   Namespc->setRBraceLoc(RBrace);
8600   PopDeclContext();
8601   if (Namespc->hasAttr<VisibilityAttr>())
8602     PopPragmaVisibility(true, RBrace);
8603 }
8604 
8605 CXXRecordDecl *Sema::getStdBadAlloc() const {
8606   return cast_or_null<CXXRecordDecl>(
8607                                   StdBadAlloc.get(Context.getExternalSource()));
8608 }
8609 
8610 EnumDecl *Sema::getStdAlignValT() const {
8611   return cast_or_null<EnumDecl>(StdAlignValT.get(Context.getExternalSource()));
8612 }
8613 
8614 NamespaceDecl *Sema::getStdNamespace() const {
8615   return cast_or_null<NamespaceDecl>(
8616                                  StdNamespace.get(Context.getExternalSource()));
8617 }
8618 
8619 NamespaceDecl *Sema::lookupStdExperimentalNamespace() {
8620   if (!StdExperimentalNamespaceCache) {
8621     if (auto Std = getStdNamespace()) {
8622       LookupResult Result(*this, &PP.getIdentifierTable().get("experimental"),
8623                           SourceLocation(), LookupNamespaceName);
8624       if (!LookupQualifiedName(Result, Std) ||
8625           !(StdExperimentalNamespaceCache =
8626                 Result.getAsSingle<NamespaceDecl>()))
8627         Result.suppressDiagnostics();
8628     }
8629   }
8630   return StdExperimentalNamespaceCache;
8631 }
8632 
8633 /// \brief Retrieve the special "std" namespace, which may require us to
8634 /// implicitly define the namespace.
8635 NamespaceDecl *Sema::getOrCreateStdNamespace() {
8636   if (!StdNamespace) {
8637     // The "std" namespace has not yet been defined, so build one implicitly.
8638     StdNamespace = NamespaceDecl::Create(Context,
8639                                          Context.getTranslationUnitDecl(),
8640                                          /*Inline=*/false,
8641                                          SourceLocation(), SourceLocation(),
8642                                          &PP.getIdentifierTable().get("std"),
8643                                          /*PrevDecl=*/nullptr);
8644     getStdNamespace()->setImplicit(true);
8645   }
8646 
8647   return getStdNamespace();
8648 }
8649 
8650 bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
8651   assert(getLangOpts().CPlusPlus &&
8652          "Looking for std::initializer_list outside of C++.");
8653 
8654   // We're looking for implicit instantiations of
8655   // template <typename E> class std::initializer_list.
8656 
8657   if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
8658     return false;
8659 
8660   ClassTemplateDecl *Template = nullptr;
8661   const TemplateArgument *Arguments = nullptr;
8662 
8663   if (const RecordType *RT = Ty->getAs<RecordType>()) {
8664 
8665     ClassTemplateSpecializationDecl *Specialization =
8666         dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
8667     if (!Specialization)
8668       return false;
8669 
8670     Template = Specialization->getSpecializedTemplate();
8671     Arguments = Specialization->getTemplateArgs().data();
8672   } else if (const TemplateSpecializationType *TST =
8673                  Ty->getAs<TemplateSpecializationType>()) {
8674     Template = dyn_cast_or_null<ClassTemplateDecl>(
8675         TST->getTemplateName().getAsTemplateDecl());
8676     Arguments = TST->getArgs();
8677   }
8678   if (!Template)
8679     return false;
8680 
8681   if (!StdInitializerList) {
8682     // Haven't recognized std::initializer_list yet, maybe this is it.
8683     CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
8684     if (TemplateClass->getIdentifier() !=
8685             &PP.getIdentifierTable().get("initializer_list") ||
8686         !getStdNamespace()->InEnclosingNamespaceSetOf(
8687             TemplateClass->getDeclContext()))
8688       return false;
8689     // This is a template called std::initializer_list, but is it the right
8690     // template?
8691     TemplateParameterList *Params = Template->getTemplateParameters();
8692     if (Params->getMinRequiredArguments() != 1)
8693       return false;
8694     if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
8695       return false;
8696 
8697     // It's the right template.
8698     StdInitializerList = Template;
8699   }
8700 
8701   if (Template->getCanonicalDecl() != StdInitializerList->getCanonicalDecl())
8702     return false;
8703 
8704   // This is an instance of std::initializer_list. Find the argument type.
8705   if (Element)
8706     *Element = Arguments[0].getAsType();
8707   return true;
8708 }
8709 
8710 static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
8711   NamespaceDecl *Std = S.getStdNamespace();
8712   if (!Std) {
8713     S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
8714     return nullptr;
8715   }
8716 
8717   LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
8718                       Loc, Sema::LookupOrdinaryName);
8719   if (!S.LookupQualifiedName(Result, Std)) {
8720     S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
8721     return nullptr;
8722   }
8723   ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
8724   if (!Template) {
8725     Result.suppressDiagnostics();
8726     // We found something weird. Complain about the first thing we found.
8727     NamedDecl *Found = *Result.begin();
8728     S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
8729     return nullptr;
8730   }
8731 
8732   // We found some template called std::initializer_list. Now verify that it's
8733   // correct.
8734   TemplateParameterList *Params = Template->getTemplateParameters();
8735   if (Params->getMinRequiredArguments() != 1 ||
8736       !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
8737     S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
8738     return nullptr;
8739   }
8740 
8741   return Template;
8742 }
8743 
8744 QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
8745   if (!StdInitializerList) {
8746     StdInitializerList = LookupStdInitializerList(*this, Loc);
8747     if (!StdInitializerList)
8748       return QualType();
8749   }
8750 
8751   TemplateArgumentListInfo Args(Loc, Loc);
8752   Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
8753                                        Context.getTrivialTypeSourceInfo(Element,
8754                                                                         Loc)));
8755   return Context.getCanonicalType(
8756       CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
8757 }
8758 
8759 bool Sema::isInitListConstructor(const FunctionDecl *Ctor) {
8760   // C++ [dcl.init.list]p2:
8761   //   A constructor is an initializer-list constructor if its first parameter
8762   //   is of type std::initializer_list<E> or reference to possibly cv-qualified
8763   //   std::initializer_list<E> for some type E, and either there are no other
8764   //   parameters or else all other parameters have default arguments.
8765   if (Ctor->getNumParams() < 1 ||
8766       (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
8767     return false;
8768 
8769   QualType ArgType = Ctor->getParamDecl(0)->getType();
8770   if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
8771     ArgType = RT->getPointeeType().getUnqualifiedType();
8772 
8773   return isStdInitializerList(ArgType, nullptr);
8774 }
8775 
8776 /// \brief Determine whether a using statement is in a context where it will be
8777 /// apply in all contexts.
8778 static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
8779   switch (CurContext->getDeclKind()) {
8780     case Decl::TranslationUnit:
8781       return true;
8782     case Decl::LinkageSpec:
8783       return IsUsingDirectiveInToplevelContext(CurContext->getParent());
8784     default:
8785       return false;
8786   }
8787 }
8788 
8789 namespace {
8790 
8791 // Callback to only accept typo corrections that are namespaces.
8792 class NamespaceValidatorCCC : public CorrectionCandidateCallback {
8793 public:
8794   bool ValidateCandidate(const TypoCorrection &candidate) override {
8795     if (NamedDecl *ND = candidate.getCorrectionDecl())
8796       return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
8797     return false;
8798   }
8799 };
8800 
8801 }
8802 
8803 static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
8804                                        CXXScopeSpec &SS,
8805                                        SourceLocation IdentLoc,
8806                                        IdentifierInfo *Ident) {
8807   R.clear();
8808   if (TypoCorrection Corrected =
8809           S.CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), Sc, &SS,
8810                         llvm::make_unique<NamespaceValidatorCCC>(),
8811                         Sema::CTK_ErrorRecovery)) {
8812     if (DeclContext *DC = S.computeDeclContext(SS, false)) {
8813       std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
8814       bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
8815                               Ident->getName().equals(CorrectedStr);
8816       S.diagnoseTypo(Corrected,
8817                      S.PDiag(diag::err_using_directive_member_suggest)
8818                        << Ident << DC << DroppedSpecifier << SS.getRange(),
8819                      S.PDiag(diag::note_namespace_defined_here));
8820     } else {
8821       S.diagnoseTypo(Corrected,
8822                      S.PDiag(diag::err_using_directive_suggest) << Ident,
8823                      S.PDiag(diag::note_namespace_defined_here));
8824     }
8825     R.addDecl(Corrected.getFoundDecl());
8826     return true;
8827   }
8828   return false;
8829 }
8830 
8831 Decl *Sema::ActOnUsingDirective(Scope *S,
8832                                           SourceLocation UsingLoc,
8833                                           SourceLocation NamespcLoc,
8834                                           CXXScopeSpec &SS,
8835                                           SourceLocation IdentLoc,
8836                                           IdentifierInfo *NamespcName,
8837                                           AttributeList *AttrList) {
8838   assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
8839   assert(NamespcName && "Invalid NamespcName.");
8840   assert(IdentLoc.isValid() && "Invalid NamespceName location.");
8841 
8842   // This can only happen along a recovery path.
8843   while (S->isTemplateParamScope())
8844     S = S->getParent();
8845   assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
8846 
8847   UsingDirectiveDecl *UDir = nullptr;
8848   NestedNameSpecifier *Qualifier = nullptr;
8849   if (SS.isSet())
8850     Qualifier = SS.getScopeRep();
8851 
8852   // Lookup namespace name.
8853   LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
8854   LookupParsedName(R, S, &SS);
8855   if (R.isAmbiguous())
8856     return nullptr;
8857 
8858   if (R.empty()) {
8859     R.clear();
8860     // Allow "using namespace std;" or "using namespace ::std;" even if
8861     // "std" hasn't been defined yet, for GCC compatibility.
8862     if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
8863         NamespcName->isStr("std")) {
8864       Diag(IdentLoc, diag::ext_using_undefined_std);
8865       R.addDecl(getOrCreateStdNamespace());
8866       R.resolveKind();
8867     }
8868     // Otherwise, attempt typo correction.
8869     else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
8870   }
8871 
8872   if (!R.empty()) {
8873     NamedDecl *Named = R.getRepresentativeDecl();
8874     NamespaceDecl *NS = R.getAsSingle<NamespaceDecl>();
8875     assert(NS && "expected namespace decl");
8876 
8877     // The use of a nested name specifier may trigger deprecation warnings.
8878     DiagnoseUseOfDecl(Named, IdentLoc);
8879 
8880     // C++ [namespace.udir]p1:
8881     //   A using-directive specifies that the names in the nominated
8882     //   namespace can be used in the scope in which the
8883     //   using-directive appears after the using-directive. During
8884     //   unqualified name lookup (3.4.1), the names appear as if they
8885     //   were declared in the nearest enclosing namespace which
8886     //   contains both the using-directive and the nominated
8887     //   namespace. [Note: in this context, "contains" means "contains
8888     //   directly or indirectly". ]
8889 
8890     // Find enclosing context containing both using-directive and
8891     // nominated namespace.
8892     DeclContext *CommonAncestor = cast<DeclContext>(NS);
8893     while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
8894       CommonAncestor = CommonAncestor->getParent();
8895 
8896     UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
8897                                       SS.getWithLocInContext(Context),
8898                                       IdentLoc, Named, CommonAncestor);
8899 
8900     if (IsUsingDirectiveInToplevelContext(CurContext) &&
8901         !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
8902       Diag(IdentLoc, diag::warn_using_directive_in_header);
8903     }
8904 
8905     PushUsingDirective(S, UDir);
8906   } else {
8907     Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
8908   }
8909 
8910   if (UDir)
8911     ProcessDeclAttributeList(S, UDir, AttrList);
8912 
8913   return UDir;
8914 }
8915 
8916 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
8917   // If the scope has an associated entity and the using directive is at
8918   // namespace or translation unit scope, add the UsingDirectiveDecl into
8919   // its lookup structure so qualified name lookup can find it.
8920   DeclContext *Ctx = S->getEntity();
8921   if (Ctx && !Ctx->isFunctionOrMethod())
8922     Ctx->addDecl(UDir);
8923   else
8924     // Otherwise, it is at block scope. The using-directives will affect lookup
8925     // only to the end of the scope.
8926     S->PushUsingDirective(UDir);
8927 }
8928 
8929 
8930 Decl *Sema::ActOnUsingDeclaration(Scope *S,
8931                                   AccessSpecifier AS,
8932                                   SourceLocation UsingLoc,
8933                                   SourceLocation TypenameLoc,
8934                                   CXXScopeSpec &SS,
8935                                   UnqualifiedId &Name,
8936                                   SourceLocation EllipsisLoc,
8937                                   AttributeList *AttrList) {
8938   assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
8939 
8940   if (SS.isEmpty()) {
8941     Diag(Name.getLocStart(), diag::err_using_requires_qualname);
8942     return nullptr;
8943   }
8944 
8945   switch (Name.getKind()) {
8946   case UnqualifiedId::IK_ImplicitSelfParam:
8947   case UnqualifiedId::IK_Identifier:
8948   case UnqualifiedId::IK_OperatorFunctionId:
8949   case UnqualifiedId::IK_LiteralOperatorId:
8950   case UnqualifiedId::IK_ConversionFunctionId:
8951     break;
8952 
8953   case UnqualifiedId::IK_ConstructorName:
8954   case UnqualifiedId::IK_ConstructorTemplateId:
8955     // C++11 inheriting constructors.
8956     Diag(Name.getLocStart(),
8957          getLangOpts().CPlusPlus11 ?
8958            diag::warn_cxx98_compat_using_decl_constructor :
8959            diag::err_using_decl_constructor)
8960       << SS.getRange();
8961 
8962     if (getLangOpts().CPlusPlus11) break;
8963 
8964     return nullptr;
8965 
8966   case UnqualifiedId::IK_DestructorName:
8967     Diag(Name.getLocStart(), diag::err_using_decl_destructor)
8968       << SS.getRange();
8969     return nullptr;
8970 
8971   case UnqualifiedId::IK_TemplateId:
8972     Diag(Name.getLocStart(), diag::err_using_decl_template_id)
8973       << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
8974     return nullptr;
8975 
8976   case UnqualifiedId::IK_DeductionGuideName:
8977     llvm_unreachable("cannot parse qualified deduction guide name");
8978   }
8979 
8980   DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
8981   DeclarationName TargetName = TargetNameInfo.getName();
8982   if (!TargetName)
8983     return nullptr;
8984 
8985   // Warn about access declarations.
8986   if (UsingLoc.isInvalid()) {
8987     Diag(Name.getLocStart(),
8988          getLangOpts().CPlusPlus11 ? diag::err_access_decl
8989                                    : diag::warn_access_decl_deprecated)
8990       << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
8991   }
8992 
8993   if (EllipsisLoc.isInvalid()) {
8994     if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
8995         DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
8996       return nullptr;
8997   } else {
8998     if (!SS.getScopeRep()->containsUnexpandedParameterPack() &&
8999         !TargetNameInfo.containsUnexpandedParameterPack()) {
9000       Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
9001         << SourceRange(SS.getBeginLoc(), TargetNameInfo.getEndLoc());
9002       EllipsisLoc = SourceLocation();
9003     }
9004   }
9005 
9006   NamedDecl *UD =
9007       BuildUsingDeclaration(S, AS, UsingLoc, TypenameLoc.isValid(), TypenameLoc,
9008                             SS, TargetNameInfo, EllipsisLoc, AttrList,
9009                             /*IsInstantiation*/false);
9010   if (UD)
9011     PushOnScopeChains(UD, S, /*AddToContext*/ false);
9012 
9013   return UD;
9014 }
9015 
9016 /// \brief Determine whether a using declaration considers the given
9017 /// declarations as "equivalent", e.g., if they are redeclarations of
9018 /// the same entity or are both typedefs of the same type.
9019 static bool
9020 IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2) {
9021   if (D1->getCanonicalDecl() == D2->getCanonicalDecl())
9022     return true;
9023 
9024   if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
9025     if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2))
9026       return Context.hasSameType(TD1->getUnderlyingType(),
9027                                  TD2->getUnderlyingType());
9028 
9029   return false;
9030 }
9031 
9032 
9033 /// Determines whether to create a using shadow decl for a particular
9034 /// decl, given the set of decls existing prior to this using lookup.
9035 bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
9036                                 const LookupResult &Previous,
9037                                 UsingShadowDecl *&PrevShadow) {
9038   // Diagnose finding a decl which is not from a base class of the
9039   // current class.  We do this now because there are cases where this
9040   // function will silently decide not to build a shadow decl, which
9041   // will pre-empt further diagnostics.
9042   //
9043   // We don't need to do this in C++11 because we do the check once on
9044   // the qualifier.
9045   //
9046   // FIXME: diagnose the following if we care enough:
9047   //   struct A { int foo; };
9048   //   struct B : A { using A::foo; };
9049   //   template <class T> struct C : A {};
9050   //   template <class T> struct D : C<T> { using B::foo; } // <---
9051   // This is invalid (during instantiation) in C++03 because B::foo
9052   // resolves to the using decl in B, which is not a base class of D<T>.
9053   // We can't diagnose it immediately because C<T> is an unknown
9054   // specialization.  The UsingShadowDecl in D<T> then points directly
9055   // to A::foo, which will look well-formed when we instantiate.
9056   // The right solution is to not collapse the shadow-decl chain.
9057   if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) {
9058     DeclContext *OrigDC = Orig->getDeclContext();
9059 
9060     // Handle enums and anonymous structs.
9061     if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
9062     CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
9063     while (OrigRec->isAnonymousStructOrUnion())
9064       OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
9065 
9066     if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
9067       if (OrigDC == CurContext) {
9068         Diag(Using->getLocation(),
9069              diag::err_using_decl_nested_name_specifier_is_current_class)
9070           << Using->getQualifierLoc().getSourceRange();
9071         Diag(Orig->getLocation(), diag::note_using_decl_target);
9072         Using->setInvalidDecl();
9073         return true;
9074       }
9075 
9076       Diag(Using->getQualifierLoc().getBeginLoc(),
9077            diag::err_using_decl_nested_name_specifier_is_not_base_class)
9078         << Using->getQualifier()
9079         << cast<CXXRecordDecl>(CurContext)
9080         << Using->getQualifierLoc().getSourceRange();
9081       Diag(Orig->getLocation(), diag::note_using_decl_target);
9082       Using->setInvalidDecl();
9083       return true;
9084     }
9085   }
9086 
9087   if (Previous.empty()) return false;
9088 
9089   NamedDecl *Target = Orig;
9090   if (isa<UsingShadowDecl>(Target))
9091     Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
9092 
9093   // If the target happens to be one of the previous declarations, we
9094   // don't have a conflict.
9095   //
9096   // FIXME: but we might be increasing its access, in which case we
9097   // should redeclare it.
9098   NamedDecl *NonTag = nullptr, *Tag = nullptr;
9099   bool FoundEquivalentDecl = false;
9100   for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
9101          I != E; ++I) {
9102     NamedDecl *D = (*I)->getUnderlyingDecl();
9103     // We can have UsingDecls in our Previous results because we use the same
9104     // LookupResult for checking whether the UsingDecl itself is a valid
9105     // redeclaration.
9106     if (isa<UsingDecl>(D) || isa<UsingPackDecl>(D))
9107       continue;
9108 
9109     if (IsEquivalentForUsingDecl(Context, D, Target)) {
9110       if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I))
9111         PrevShadow = Shadow;
9112       FoundEquivalentDecl = true;
9113     } else if (isEquivalentInternalLinkageDeclaration(D, Target)) {
9114       // We don't conflict with an existing using shadow decl of an equivalent
9115       // declaration, but we're not a redeclaration of it.
9116       FoundEquivalentDecl = true;
9117     }
9118 
9119     if (isVisible(D))
9120       (isa<TagDecl>(D) ? Tag : NonTag) = D;
9121   }
9122 
9123   if (FoundEquivalentDecl)
9124     return false;
9125 
9126   if (FunctionDecl *FD = Target->getAsFunction()) {
9127     NamedDecl *OldDecl = nullptr;
9128     switch (CheckOverload(nullptr, FD, Previous, OldDecl,
9129                           /*IsForUsingDecl*/ true)) {
9130     case Ovl_Overload:
9131       return false;
9132 
9133     case Ovl_NonFunction:
9134       Diag(Using->getLocation(), diag::err_using_decl_conflict);
9135       break;
9136 
9137     // We found a decl with the exact signature.
9138     case Ovl_Match:
9139       // If we're in a record, we want to hide the target, so we
9140       // return true (without a diagnostic) to tell the caller not to
9141       // build a shadow decl.
9142       if (CurContext->isRecord())
9143         return true;
9144 
9145       // If we're not in a record, this is an error.
9146       Diag(Using->getLocation(), diag::err_using_decl_conflict);
9147       break;
9148     }
9149 
9150     Diag(Target->getLocation(), diag::note_using_decl_target);
9151     Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
9152     Using->setInvalidDecl();
9153     return true;
9154   }
9155 
9156   // Target is not a function.
9157 
9158   if (isa<TagDecl>(Target)) {
9159     // No conflict between a tag and a non-tag.
9160     if (!Tag) return false;
9161 
9162     Diag(Using->getLocation(), diag::err_using_decl_conflict);
9163     Diag(Target->getLocation(), diag::note_using_decl_target);
9164     Diag(Tag->getLocation(), diag::note_using_decl_conflict);
9165     Using->setInvalidDecl();
9166     return true;
9167   }
9168 
9169   // No conflict between a tag and a non-tag.
9170   if (!NonTag) return false;
9171 
9172   Diag(Using->getLocation(), diag::err_using_decl_conflict);
9173   Diag(Target->getLocation(), diag::note_using_decl_target);
9174   Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
9175   Using->setInvalidDecl();
9176   return true;
9177 }
9178 
9179 /// Determine whether a direct base class is a virtual base class.
9180 static bool isVirtualDirectBase(CXXRecordDecl *Derived, CXXRecordDecl *Base) {
9181   if (!Derived->getNumVBases())
9182     return false;
9183   for (auto &B : Derived->bases())
9184     if (B.getType()->getAsCXXRecordDecl() == Base)
9185       return B.isVirtual();
9186   llvm_unreachable("not a direct base class");
9187 }
9188 
9189 /// Builds a shadow declaration corresponding to a 'using' declaration.
9190 UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
9191                                             UsingDecl *UD,
9192                                             NamedDecl *Orig,
9193                                             UsingShadowDecl *PrevDecl) {
9194   // If we resolved to another shadow declaration, just coalesce them.
9195   NamedDecl *Target = Orig;
9196   if (isa<UsingShadowDecl>(Target)) {
9197     Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
9198     assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
9199   }
9200 
9201   NamedDecl *NonTemplateTarget = Target;
9202   if (auto *TargetTD = dyn_cast<TemplateDecl>(Target))
9203     NonTemplateTarget = TargetTD->getTemplatedDecl();
9204 
9205   UsingShadowDecl *Shadow;
9206   if (isa<CXXConstructorDecl>(NonTemplateTarget)) {
9207     bool IsVirtualBase =
9208         isVirtualDirectBase(cast<CXXRecordDecl>(CurContext),
9209                             UD->getQualifier()->getAsRecordDecl());
9210     Shadow = ConstructorUsingShadowDecl::Create(
9211         Context, CurContext, UD->getLocation(), UD, Orig, IsVirtualBase);
9212   } else {
9213     Shadow = UsingShadowDecl::Create(Context, CurContext, UD->getLocation(), UD,
9214                                      Target);
9215   }
9216   UD->addShadowDecl(Shadow);
9217 
9218   Shadow->setAccess(UD->getAccess());
9219   if (Orig->isInvalidDecl() || UD->isInvalidDecl())
9220     Shadow->setInvalidDecl();
9221 
9222   Shadow->setPreviousDecl(PrevDecl);
9223 
9224   if (S)
9225     PushOnScopeChains(Shadow, S);
9226   else
9227     CurContext->addDecl(Shadow);
9228 
9229 
9230   return Shadow;
9231 }
9232 
9233 /// Hides a using shadow declaration.  This is required by the current
9234 /// using-decl implementation when a resolvable using declaration in a
9235 /// class is followed by a declaration which would hide or override
9236 /// one or more of the using decl's targets; for example:
9237 ///
9238 ///   struct Base { void foo(int); };
9239 ///   struct Derived : Base {
9240 ///     using Base::foo;
9241 ///     void foo(int);
9242 ///   };
9243 ///
9244 /// The governing language is C++03 [namespace.udecl]p12:
9245 ///
9246 ///   When a using-declaration brings names from a base class into a
9247 ///   derived class scope, member functions in the derived class
9248 ///   override and/or hide member functions with the same name and
9249 ///   parameter types in a base class (rather than conflicting).
9250 ///
9251 /// There are two ways to implement this:
9252 ///   (1) optimistically create shadow decls when they're not hidden
9253 ///       by existing declarations, or
9254 ///   (2) don't create any shadow decls (or at least don't make them
9255 ///       visible) until we've fully parsed/instantiated the class.
9256 /// The problem with (1) is that we might have to retroactively remove
9257 /// a shadow decl, which requires several O(n) operations because the
9258 /// decl structures are (very reasonably) not designed for removal.
9259 /// (2) avoids this but is very fiddly and phase-dependent.
9260 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
9261   if (Shadow->getDeclName().getNameKind() ==
9262         DeclarationName::CXXConversionFunctionName)
9263     cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
9264 
9265   // Remove it from the DeclContext...
9266   Shadow->getDeclContext()->removeDecl(Shadow);
9267 
9268   // ...and the scope, if applicable...
9269   if (S) {
9270     S->RemoveDecl(Shadow);
9271     IdResolver.RemoveDecl(Shadow);
9272   }
9273 
9274   // ...and the using decl.
9275   Shadow->getUsingDecl()->removeShadowDecl(Shadow);
9276 
9277   // TODO: complain somehow if Shadow was used.  It shouldn't
9278   // be possible for this to happen, because...?
9279 }
9280 
9281 /// Find the base specifier for a base class with the given type.
9282 static CXXBaseSpecifier *findDirectBaseWithType(CXXRecordDecl *Derived,
9283                                                 QualType DesiredBase,
9284                                                 bool &AnyDependentBases) {
9285   // Check whether the named type is a direct base class.
9286   CanQualType CanonicalDesiredBase = DesiredBase->getCanonicalTypeUnqualified();
9287   for (auto &Base : Derived->bases()) {
9288     CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified();
9289     if (CanonicalDesiredBase == BaseType)
9290       return &Base;
9291     if (BaseType->isDependentType())
9292       AnyDependentBases = true;
9293   }
9294   return nullptr;
9295 }
9296 
9297 namespace {
9298 class UsingValidatorCCC : public CorrectionCandidateCallback {
9299 public:
9300   UsingValidatorCCC(bool HasTypenameKeyword, bool IsInstantiation,
9301                     NestedNameSpecifier *NNS, CXXRecordDecl *RequireMemberOf)
9302       : HasTypenameKeyword(HasTypenameKeyword),
9303         IsInstantiation(IsInstantiation), OldNNS(NNS),
9304         RequireMemberOf(RequireMemberOf) {}
9305 
9306   bool ValidateCandidate(const TypoCorrection &Candidate) override {
9307     NamedDecl *ND = Candidate.getCorrectionDecl();
9308 
9309     // Keywords are not valid here.
9310     if (!ND || isa<NamespaceDecl>(ND))
9311       return false;
9312 
9313     // Completely unqualified names are invalid for a 'using' declaration.
9314     if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier())
9315       return false;
9316 
9317     // FIXME: Don't correct to a name that CheckUsingDeclRedeclaration would
9318     // reject.
9319 
9320     if (RequireMemberOf) {
9321       auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND);
9322       if (FoundRecord && FoundRecord->isInjectedClassName()) {
9323         // No-one ever wants a using-declaration to name an injected-class-name
9324         // of a base class, unless they're declaring an inheriting constructor.
9325         ASTContext &Ctx = ND->getASTContext();
9326         if (!Ctx.getLangOpts().CPlusPlus11)
9327           return false;
9328         QualType FoundType = Ctx.getRecordType(FoundRecord);
9329 
9330         // Check that the injected-class-name is named as a member of its own
9331         // type; we don't want to suggest 'using Derived::Base;', since that
9332         // means something else.
9333         NestedNameSpecifier *Specifier =
9334             Candidate.WillReplaceSpecifier()
9335                 ? Candidate.getCorrectionSpecifier()
9336                 : OldNNS;
9337         if (!Specifier->getAsType() ||
9338             !Ctx.hasSameType(QualType(Specifier->getAsType(), 0), FoundType))
9339           return false;
9340 
9341         // Check that this inheriting constructor declaration actually names a
9342         // direct base class of the current class.
9343         bool AnyDependentBases = false;
9344         if (!findDirectBaseWithType(RequireMemberOf,
9345                                     Ctx.getRecordType(FoundRecord),
9346                                     AnyDependentBases) &&
9347             !AnyDependentBases)
9348           return false;
9349       } else {
9350         auto *RD = dyn_cast<CXXRecordDecl>(ND->getDeclContext());
9351         if (!RD || RequireMemberOf->isProvablyNotDerivedFrom(RD))
9352           return false;
9353 
9354         // FIXME: Check that the base class member is accessible?
9355       }
9356     } else {
9357       auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND);
9358       if (FoundRecord && FoundRecord->isInjectedClassName())
9359         return false;
9360     }
9361 
9362     if (isa<TypeDecl>(ND))
9363       return HasTypenameKeyword || !IsInstantiation;
9364 
9365     return !HasTypenameKeyword;
9366   }
9367 
9368 private:
9369   bool HasTypenameKeyword;
9370   bool IsInstantiation;
9371   NestedNameSpecifier *OldNNS;
9372   CXXRecordDecl *RequireMemberOf;
9373 };
9374 } // end anonymous namespace
9375 
9376 /// Builds a using declaration.
9377 ///
9378 /// \param IsInstantiation - Whether this call arises from an
9379 ///   instantiation of an unresolved using declaration.  We treat
9380 ///   the lookup differently for these declarations.
9381 NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
9382                                        SourceLocation UsingLoc,
9383                                        bool HasTypenameKeyword,
9384                                        SourceLocation TypenameLoc,
9385                                        CXXScopeSpec &SS,
9386                                        DeclarationNameInfo NameInfo,
9387                                        SourceLocation EllipsisLoc,
9388                                        AttributeList *AttrList,
9389                                        bool IsInstantiation) {
9390   assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
9391   SourceLocation IdentLoc = NameInfo.getLoc();
9392   assert(IdentLoc.isValid() && "Invalid TargetName location.");
9393 
9394   // FIXME: We ignore attributes for now.
9395 
9396   // For an inheriting constructor declaration, the name of the using
9397   // declaration is the name of a constructor in this class, not in the
9398   // base class.
9399   DeclarationNameInfo UsingName = NameInfo;
9400   if (UsingName.getName().getNameKind() == DeclarationName::CXXConstructorName)
9401     if (auto *RD = dyn_cast<CXXRecordDecl>(CurContext))
9402       UsingName.setName(Context.DeclarationNames.getCXXConstructorName(
9403           Context.getCanonicalType(Context.getRecordType(RD))));
9404 
9405   // Do the redeclaration lookup in the current scope.
9406   LookupResult Previous(*this, UsingName, LookupUsingDeclName,
9407                         ForVisibleRedeclaration);
9408   Previous.setHideTags(false);
9409   if (S) {
9410     LookupName(Previous, S);
9411 
9412     // It is really dumb that we have to do this.
9413     LookupResult::Filter F = Previous.makeFilter();
9414     while (F.hasNext()) {
9415       NamedDecl *D = F.next();
9416       if (!isDeclInScope(D, CurContext, S))
9417         F.erase();
9418       // If we found a local extern declaration that's not ordinarily visible,
9419       // and this declaration is being added to a non-block scope, ignore it.
9420       // We're only checking for scope conflicts here, not also for violations
9421       // of the linkage rules.
9422       else if (!CurContext->isFunctionOrMethod() && D->isLocalExternDecl() &&
9423                !(D->getIdentifierNamespace() & Decl::IDNS_Ordinary))
9424         F.erase();
9425     }
9426     F.done();
9427   } else {
9428     assert(IsInstantiation && "no scope in non-instantiation");
9429     if (CurContext->isRecord())
9430       LookupQualifiedName(Previous, CurContext);
9431     else {
9432       // No redeclaration check is needed here; in non-member contexts we
9433       // diagnosed all possible conflicts with other using-declarations when
9434       // building the template:
9435       //
9436       // For a dependent non-type using declaration, the only valid case is
9437       // if we instantiate to a single enumerator. We check for conflicts
9438       // between shadow declarations we introduce, and we check in the template
9439       // definition for conflicts between a non-type using declaration and any
9440       // other declaration, which together covers all cases.
9441       //
9442       // A dependent typename using declaration will never successfully
9443       // instantiate, since it will always name a class member, so we reject
9444       // that in the template definition.
9445     }
9446   }
9447 
9448   // Check for invalid redeclarations.
9449   if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword,
9450                                   SS, IdentLoc, Previous))
9451     return nullptr;
9452 
9453   // Check for bad qualifiers.
9454   if (CheckUsingDeclQualifier(UsingLoc, HasTypenameKeyword, SS, NameInfo,
9455                               IdentLoc))
9456     return nullptr;
9457 
9458   DeclContext *LookupContext = computeDeclContext(SS);
9459   NamedDecl *D;
9460   NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
9461   if (!LookupContext || EllipsisLoc.isValid()) {
9462     if (HasTypenameKeyword) {
9463       // FIXME: not all declaration name kinds are legal here
9464       D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
9465                                               UsingLoc, TypenameLoc,
9466                                               QualifierLoc,
9467                                               IdentLoc, NameInfo.getName(),
9468                                               EllipsisLoc);
9469     } else {
9470       D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
9471                                            QualifierLoc, NameInfo, EllipsisLoc);
9472     }
9473     D->setAccess(AS);
9474     CurContext->addDecl(D);
9475     return D;
9476   }
9477 
9478   auto Build = [&](bool Invalid) {
9479     UsingDecl *UD =
9480         UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
9481                           UsingName, HasTypenameKeyword);
9482     UD->setAccess(AS);
9483     CurContext->addDecl(UD);
9484     UD->setInvalidDecl(Invalid);
9485     return UD;
9486   };
9487   auto BuildInvalid = [&]{ return Build(true); };
9488   auto BuildValid = [&]{ return Build(false); };
9489 
9490   if (RequireCompleteDeclContext(SS, LookupContext))
9491     return BuildInvalid();
9492 
9493   // Look up the target name.
9494   LookupResult R(*this, NameInfo, LookupOrdinaryName);
9495 
9496   // Unlike most lookups, we don't always want to hide tag
9497   // declarations: tag names are visible through the using declaration
9498   // even if hidden by ordinary names, *except* in a dependent context
9499   // where it's important for the sanity of two-phase lookup.
9500   if (!IsInstantiation)
9501     R.setHideTags(false);
9502 
9503   // For the purposes of this lookup, we have a base object type
9504   // equal to that of the current context.
9505   if (CurContext->isRecord()) {
9506     R.setBaseObjectType(
9507                    Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
9508   }
9509 
9510   LookupQualifiedName(R, LookupContext);
9511 
9512   // Try to correct typos if possible. If constructor name lookup finds no
9513   // results, that means the named class has no explicit constructors, and we
9514   // suppressed declaring implicit ones (probably because it's dependent or
9515   // invalid).
9516   if (R.empty() &&
9517       NameInfo.getName().getNameKind() != DeclarationName::CXXConstructorName) {
9518     // HACK: Work around a bug in libstdc++'s detection of ::gets. Sometimes
9519     // it will believe that glibc provides a ::gets in cases where it does not,
9520     // and will try to pull it into namespace std with a using-declaration.
9521     // Just ignore the using-declaration in that case.
9522     auto *II = NameInfo.getName().getAsIdentifierInfo();
9523     if (getLangOpts().CPlusPlus14 && II && II->isStr("gets") &&
9524         CurContext->isStdNamespace() &&
9525         isa<TranslationUnitDecl>(LookupContext) &&
9526         getSourceManager().isInSystemHeader(UsingLoc))
9527       return nullptr;
9528     if (TypoCorrection Corrected = CorrectTypo(
9529             R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
9530             llvm::make_unique<UsingValidatorCCC>(
9531                 HasTypenameKeyword, IsInstantiation, SS.getScopeRep(),
9532                 dyn_cast<CXXRecordDecl>(CurContext)),
9533             CTK_ErrorRecovery)) {
9534       // We reject candidates where DroppedSpecifier == true, hence the
9535       // literal '0' below.
9536       diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
9537                                 << NameInfo.getName() << LookupContext << 0
9538                                 << SS.getRange());
9539 
9540       // If we picked a correction with no attached Decl we can't do anything
9541       // useful with it, bail out.
9542       NamedDecl *ND = Corrected.getCorrectionDecl();
9543       if (!ND)
9544         return BuildInvalid();
9545 
9546       // If we corrected to an inheriting constructor, handle it as one.
9547       auto *RD = dyn_cast<CXXRecordDecl>(ND);
9548       if (RD && RD->isInjectedClassName()) {
9549         // The parent of the injected class name is the class itself.
9550         RD = cast<CXXRecordDecl>(RD->getParent());
9551 
9552         // Fix up the information we'll use to build the using declaration.
9553         if (Corrected.WillReplaceSpecifier()) {
9554           NestedNameSpecifierLocBuilder Builder;
9555           Builder.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
9556                               QualifierLoc.getSourceRange());
9557           QualifierLoc = Builder.getWithLocInContext(Context);
9558         }
9559 
9560         // In this case, the name we introduce is the name of a derived class
9561         // constructor.
9562         auto *CurClass = cast<CXXRecordDecl>(CurContext);
9563         UsingName.setName(Context.DeclarationNames.getCXXConstructorName(
9564             Context.getCanonicalType(Context.getRecordType(CurClass))));
9565         UsingName.setNamedTypeInfo(nullptr);
9566         for (auto *Ctor : LookupConstructors(RD))
9567           R.addDecl(Ctor);
9568         R.resolveKind();
9569       } else {
9570         // FIXME: Pick up all the declarations if we found an overloaded
9571         // function.
9572         UsingName.setName(ND->getDeclName());
9573         R.addDecl(ND);
9574       }
9575     } else {
9576       Diag(IdentLoc, diag::err_no_member)
9577         << NameInfo.getName() << LookupContext << SS.getRange();
9578       return BuildInvalid();
9579     }
9580   }
9581 
9582   if (R.isAmbiguous())
9583     return BuildInvalid();
9584 
9585   if (HasTypenameKeyword) {
9586     // If we asked for a typename and got a non-type decl, error out.
9587     if (!R.getAsSingle<TypeDecl>()) {
9588       Diag(IdentLoc, diag::err_using_typename_non_type);
9589       for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
9590         Diag((*I)->getUnderlyingDecl()->getLocation(),
9591              diag::note_using_decl_target);
9592       return BuildInvalid();
9593     }
9594   } else {
9595     // If we asked for a non-typename and we got a type, error out,
9596     // but only if this is an instantiation of an unresolved using
9597     // decl.  Otherwise just silently find the type name.
9598     if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
9599       Diag(IdentLoc, diag::err_using_dependent_value_is_type);
9600       Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
9601       return BuildInvalid();
9602     }
9603   }
9604 
9605   // C++14 [namespace.udecl]p6:
9606   // A using-declaration shall not name a namespace.
9607   if (R.getAsSingle<NamespaceDecl>()) {
9608     Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
9609       << SS.getRange();
9610     return BuildInvalid();
9611   }
9612 
9613   // C++14 [namespace.udecl]p7:
9614   // A using-declaration shall not name a scoped enumerator.
9615   if (auto *ED = R.getAsSingle<EnumConstantDecl>()) {
9616     if (cast<EnumDecl>(ED->getDeclContext())->isScoped()) {
9617       Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_scoped_enum)
9618         << SS.getRange();
9619       return BuildInvalid();
9620     }
9621   }
9622 
9623   UsingDecl *UD = BuildValid();
9624 
9625   // Some additional rules apply to inheriting constructors.
9626   if (UsingName.getName().getNameKind() ==
9627         DeclarationName::CXXConstructorName) {
9628     // Suppress access diagnostics; the access check is instead performed at the
9629     // point of use for an inheriting constructor.
9630     R.suppressDiagnostics();
9631     if (CheckInheritingConstructorUsingDecl(UD))
9632       return UD;
9633   }
9634 
9635   for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
9636     UsingShadowDecl *PrevDecl = nullptr;
9637     if (!CheckUsingShadowDecl(UD, *I, Previous, PrevDecl))
9638       BuildUsingShadowDecl(S, UD, *I, PrevDecl);
9639   }
9640 
9641   return UD;
9642 }
9643 
9644 NamedDecl *Sema::BuildUsingPackDecl(NamedDecl *InstantiatedFrom,
9645                                     ArrayRef<NamedDecl *> Expansions) {
9646   assert(isa<UnresolvedUsingValueDecl>(InstantiatedFrom) ||
9647          isa<UnresolvedUsingTypenameDecl>(InstantiatedFrom) ||
9648          isa<UsingPackDecl>(InstantiatedFrom));
9649 
9650   auto *UPD =
9651       UsingPackDecl::Create(Context, CurContext, InstantiatedFrom, Expansions);
9652   UPD->setAccess(InstantiatedFrom->getAccess());
9653   CurContext->addDecl(UPD);
9654   return UPD;
9655 }
9656 
9657 /// Additional checks for a using declaration referring to a constructor name.
9658 bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
9659   assert(!UD->hasTypename() && "expecting a constructor name");
9660 
9661   const Type *SourceType = UD->getQualifier()->getAsType();
9662   assert(SourceType &&
9663          "Using decl naming constructor doesn't have type in scope spec.");
9664   CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
9665 
9666   // Check whether the named type is a direct base class.
9667   bool AnyDependentBases = false;
9668   auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0),
9669                                       AnyDependentBases);
9670   if (!Base && !AnyDependentBases) {
9671     Diag(UD->getUsingLoc(),
9672          diag::err_using_decl_constructor_not_in_direct_base)
9673       << UD->getNameInfo().getSourceRange()
9674       << QualType(SourceType, 0) << TargetClass;
9675     UD->setInvalidDecl();
9676     return true;
9677   }
9678 
9679   if (Base)
9680     Base->setInheritConstructors();
9681 
9682   return false;
9683 }
9684 
9685 /// Checks that the given using declaration is not an invalid
9686 /// redeclaration.  Note that this is checking only for the using decl
9687 /// itself, not for any ill-formedness among the UsingShadowDecls.
9688 bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
9689                                        bool HasTypenameKeyword,
9690                                        const CXXScopeSpec &SS,
9691                                        SourceLocation NameLoc,
9692                                        const LookupResult &Prev) {
9693   NestedNameSpecifier *Qual = SS.getScopeRep();
9694 
9695   // C++03 [namespace.udecl]p8:
9696   // C++0x [namespace.udecl]p10:
9697   //   A using-declaration is a declaration and can therefore be used
9698   //   repeatedly where (and only where) multiple declarations are
9699   //   allowed.
9700   //
9701   // That's in non-member contexts.
9702   if (!CurContext->getRedeclContext()->isRecord()) {
9703     // A dependent qualifier outside a class can only ever resolve to an
9704     // enumeration type. Therefore it conflicts with any other non-type
9705     // declaration in the same scope.
9706     // FIXME: How should we check for dependent type-type conflicts at block
9707     // scope?
9708     if (Qual->isDependent() && !HasTypenameKeyword) {
9709       for (auto *D : Prev) {
9710         if (!isa<TypeDecl>(D) && !isa<UsingDecl>(D) && !isa<UsingPackDecl>(D)) {
9711           bool OldCouldBeEnumerator =
9712               isa<UnresolvedUsingValueDecl>(D) || isa<EnumConstantDecl>(D);
9713           Diag(NameLoc,
9714                OldCouldBeEnumerator ? diag::err_redefinition
9715                                     : diag::err_redefinition_different_kind)
9716               << Prev.getLookupName();
9717           Diag(D->getLocation(), diag::note_previous_definition);
9718           return true;
9719         }
9720       }
9721     }
9722     return false;
9723   }
9724 
9725   for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
9726     NamedDecl *D = *I;
9727 
9728     bool DTypename;
9729     NestedNameSpecifier *DQual;
9730     if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
9731       DTypename = UD->hasTypename();
9732       DQual = UD->getQualifier();
9733     } else if (UnresolvedUsingValueDecl *UD
9734                  = dyn_cast<UnresolvedUsingValueDecl>(D)) {
9735       DTypename = false;
9736       DQual = UD->getQualifier();
9737     } else if (UnresolvedUsingTypenameDecl *UD
9738                  = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
9739       DTypename = true;
9740       DQual = UD->getQualifier();
9741     } else continue;
9742 
9743     // using decls differ if one says 'typename' and the other doesn't.
9744     // FIXME: non-dependent using decls?
9745     if (HasTypenameKeyword != DTypename) continue;
9746 
9747     // using decls differ if they name different scopes (but note that
9748     // template instantiation can cause this check to trigger when it
9749     // didn't before instantiation).
9750     if (Context.getCanonicalNestedNameSpecifier(Qual) !=
9751         Context.getCanonicalNestedNameSpecifier(DQual))
9752       continue;
9753 
9754     Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
9755     Diag(D->getLocation(), diag::note_using_decl) << 1;
9756     return true;
9757   }
9758 
9759   return false;
9760 }
9761 
9762 
9763 /// Checks that the given nested-name qualifier used in a using decl
9764 /// in the current context is appropriately related to the current
9765 /// scope.  If an error is found, diagnoses it and returns true.
9766 bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
9767                                    bool HasTypename,
9768                                    const CXXScopeSpec &SS,
9769                                    const DeclarationNameInfo &NameInfo,
9770                                    SourceLocation NameLoc) {
9771   DeclContext *NamedContext = computeDeclContext(SS);
9772 
9773   if (!CurContext->isRecord()) {
9774     // C++03 [namespace.udecl]p3:
9775     // C++0x [namespace.udecl]p8:
9776     //   A using-declaration for a class member shall be a member-declaration.
9777 
9778     // If we weren't able to compute a valid scope, it might validly be a
9779     // dependent class scope or a dependent enumeration unscoped scope. If
9780     // we have a 'typename' keyword, the scope must resolve to a class type.
9781     if ((HasTypename && !NamedContext) ||
9782         (NamedContext && NamedContext->getRedeclContext()->isRecord())) {
9783       auto *RD = NamedContext
9784                      ? cast<CXXRecordDecl>(NamedContext->getRedeclContext())
9785                      : nullptr;
9786       if (RD && RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), RD))
9787         RD = nullptr;
9788 
9789       Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
9790         << SS.getRange();
9791 
9792       // If we have a complete, non-dependent source type, try to suggest a
9793       // way to get the same effect.
9794       if (!RD)
9795         return true;
9796 
9797       // Find what this using-declaration was referring to.
9798       LookupResult R(*this, NameInfo, LookupOrdinaryName);
9799       R.setHideTags(false);
9800       R.suppressDiagnostics();
9801       LookupQualifiedName(R, RD);
9802 
9803       if (R.getAsSingle<TypeDecl>()) {
9804         if (getLangOpts().CPlusPlus11) {
9805           // Convert 'using X::Y;' to 'using Y = X::Y;'.
9806           Diag(SS.getBeginLoc(), diag::note_using_decl_class_member_workaround)
9807             << 0 // alias declaration
9808             << FixItHint::CreateInsertion(SS.getBeginLoc(),
9809                                           NameInfo.getName().getAsString() +
9810                                               " = ");
9811         } else {
9812           // Convert 'using X::Y;' to 'typedef X::Y Y;'.
9813           SourceLocation InsertLoc =
9814               getLocForEndOfToken(NameInfo.getLocEnd());
9815           Diag(InsertLoc, diag::note_using_decl_class_member_workaround)
9816             << 1 // typedef declaration
9817             << FixItHint::CreateReplacement(UsingLoc, "typedef")
9818             << FixItHint::CreateInsertion(
9819                    InsertLoc, " " + NameInfo.getName().getAsString());
9820         }
9821       } else if (R.getAsSingle<VarDecl>()) {
9822         // Don't provide a fixit outside C++11 mode; we don't want to suggest
9823         // repeating the type of the static data member here.
9824         FixItHint FixIt;
9825         if (getLangOpts().CPlusPlus11) {
9826           // Convert 'using X::Y;' to 'auto &Y = X::Y;'.
9827           FixIt = FixItHint::CreateReplacement(
9828               UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = ");
9829         }
9830 
9831         Diag(UsingLoc, diag::note_using_decl_class_member_workaround)
9832           << 2 // reference declaration
9833           << FixIt;
9834       } else if (R.getAsSingle<EnumConstantDecl>()) {
9835         // Don't provide a fixit outside C++11 mode; we don't want to suggest
9836         // repeating the type of the enumeration here, and we can't do so if
9837         // the type is anonymous.
9838         FixItHint FixIt;
9839         if (getLangOpts().CPlusPlus11) {
9840           // Convert 'using X::Y;' to 'auto &Y = X::Y;'.
9841           FixIt = FixItHint::CreateReplacement(
9842               UsingLoc,
9843               "constexpr auto " + NameInfo.getName().getAsString() + " = ");
9844         }
9845 
9846         Diag(UsingLoc, diag::note_using_decl_class_member_workaround)
9847           << (getLangOpts().CPlusPlus11 ? 4 : 3) // const[expr] variable
9848           << FixIt;
9849       }
9850       return true;
9851     }
9852 
9853     // Otherwise, this might be valid.
9854     return false;
9855   }
9856 
9857   // The current scope is a record.
9858 
9859   // If the named context is dependent, we can't decide much.
9860   if (!NamedContext) {
9861     // FIXME: in C++0x, we can diagnose if we can prove that the
9862     // nested-name-specifier does not refer to a base class, which is
9863     // still possible in some cases.
9864 
9865     // Otherwise we have to conservatively report that things might be
9866     // okay.
9867     return false;
9868   }
9869 
9870   if (!NamedContext->isRecord()) {
9871     // Ideally this would point at the last name in the specifier,
9872     // but we don't have that level of source info.
9873     Diag(SS.getRange().getBegin(),
9874          diag::err_using_decl_nested_name_specifier_is_not_class)
9875       << SS.getScopeRep() << SS.getRange();
9876     return true;
9877   }
9878 
9879   if (!NamedContext->isDependentContext() &&
9880       RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
9881     return true;
9882 
9883   if (getLangOpts().CPlusPlus11) {
9884     // C++11 [namespace.udecl]p3:
9885     //   In a using-declaration used as a member-declaration, the
9886     //   nested-name-specifier shall name a base class of the class
9887     //   being defined.
9888 
9889     if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
9890                                  cast<CXXRecordDecl>(NamedContext))) {
9891       if (CurContext == NamedContext) {
9892         Diag(NameLoc,
9893              diag::err_using_decl_nested_name_specifier_is_current_class)
9894           << SS.getRange();
9895         return true;
9896       }
9897 
9898       if (!cast<CXXRecordDecl>(NamedContext)->isInvalidDecl()) {
9899         Diag(SS.getRange().getBegin(),
9900              diag::err_using_decl_nested_name_specifier_is_not_base_class)
9901           << SS.getScopeRep()
9902           << cast<CXXRecordDecl>(CurContext)
9903           << SS.getRange();
9904       }
9905       return true;
9906     }
9907 
9908     return false;
9909   }
9910 
9911   // C++03 [namespace.udecl]p4:
9912   //   A using-declaration used as a member-declaration shall refer
9913   //   to a member of a base class of the class being defined [etc.].
9914 
9915   // Salient point: SS doesn't have to name a base class as long as
9916   // lookup only finds members from base classes.  Therefore we can
9917   // diagnose here only if we can prove that that can't happen,
9918   // i.e. if the class hierarchies provably don't intersect.
9919 
9920   // TODO: it would be nice if "definitely valid" results were cached
9921   // in the UsingDecl and UsingShadowDecl so that these checks didn't
9922   // need to be repeated.
9923 
9924   llvm::SmallPtrSet<const CXXRecordDecl *, 4> Bases;
9925   auto Collect = [&Bases](const CXXRecordDecl *Base) {
9926     Bases.insert(Base);
9927     return true;
9928   };
9929 
9930   // Collect all bases. Return false if we find a dependent base.
9931   if (!cast<CXXRecordDecl>(CurContext)->forallBases(Collect))
9932     return false;
9933 
9934   // Returns true if the base is dependent or is one of the accumulated base
9935   // classes.
9936   auto IsNotBase = [&Bases](const CXXRecordDecl *Base) {
9937     return !Bases.count(Base);
9938   };
9939 
9940   // Return false if the class has a dependent base or if it or one
9941   // of its bases is present in the base set of the current context.
9942   if (Bases.count(cast<CXXRecordDecl>(NamedContext)) ||
9943       !cast<CXXRecordDecl>(NamedContext)->forallBases(IsNotBase))
9944     return false;
9945 
9946   Diag(SS.getRange().getBegin(),
9947        diag::err_using_decl_nested_name_specifier_is_not_base_class)
9948     << SS.getScopeRep()
9949     << cast<CXXRecordDecl>(CurContext)
9950     << SS.getRange();
9951 
9952   return true;
9953 }
9954 
9955 Decl *Sema::ActOnAliasDeclaration(Scope *S,
9956                                   AccessSpecifier AS,
9957                                   MultiTemplateParamsArg TemplateParamLists,
9958                                   SourceLocation UsingLoc,
9959                                   UnqualifiedId &Name,
9960                                   AttributeList *AttrList,
9961                                   TypeResult Type,
9962                                   Decl *DeclFromDeclSpec) {
9963   // Skip up to the relevant declaration scope.
9964   while (S->isTemplateParamScope())
9965     S = S->getParent();
9966   assert((S->getFlags() & Scope::DeclScope) &&
9967          "got alias-declaration outside of declaration scope");
9968 
9969   if (Type.isInvalid())
9970     return nullptr;
9971 
9972   bool Invalid = false;
9973   DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
9974   TypeSourceInfo *TInfo = nullptr;
9975   GetTypeFromParser(Type.get(), &TInfo);
9976 
9977   if (DiagnoseClassNameShadow(CurContext, NameInfo))
9978     return nullptr;
9979 
9980   if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
9981                                       UPPC_DeclarationType)) {
9982     Invalid = true;
9983     TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9984                                              TInfo->getTypeLoc().getBeginLoc());
9985   }
9986 
9987   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
9988                         TemplateParamLists.size()
9989                             ? forRedeclarationInCurContext()
9990                             : ForVisibleRedeclaration);
9991   LookupName(Previous, S);
9992 
9993   // Warn about shadowing the name of a template parameter.
9994   if (Previous.isSingleResult() &&
9995       Previous.getFoundDecl()->isTemplateParameter()) {
9996     DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
9997     Previous.clear();
9998   }
9999 
10000   assert(Name.Kind == UnqualifiedId::IK_Identifier &&
10001          "name in alias declaration must be an identifier");
10002   TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
10003                                                Name.StartLocation,
10004                                                Name.Identifier, TInfo);
10005 
10006   NewTD->setAccess(AS);
10007 
10008   if (Invalid)
10009     NewTD->setInvalidDecl();
10010 
10011   ProcessDeclAttributeList(S, NewTD, AttrList);
10012   AddPragmaAttributes(S, NewTD);
10013 
10014   CheckTypedefForVariablyModifiedType(S, NewTD);
10015   Invalid |= NewTD->isInvalidDecl();
10016 
10017   bool Redeclaration = false;
10018 
10019   NamedDecl *NewND;
10020   if (TemplateParamLists.size()) {
10021     TypeAliasTemplateDecl *OldDecl = nullptr;
10022     TemplateParameterList *OldTemplateParams = nullptr;
10023 
10024     if (TemplateParamLists.size() != 1) {
10025       Diag(UsingLoc, diag::err_alias_template_extra_headers)
10026         << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
10027          TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
10028     }
10029     TemplateParameterList *TemplateParams = TemplateParamLists[0];
10030 
10031     // Check that we can declare a template here.
10032     if (CheckTemplateDeclScope(S, TemplateParams))
10033       return nullptr;
10034 
10035     // Only consider previous declarations in the same scope.
10036     FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
10037                          /*ExplicitInstantiationOrSpecialization*/false);
10038     if (!Previous.empty()) {
10039       Redeclaration = true;
10040 
10041       OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
10042       if (!OldDecl && !Invalid) {
10043         Diag(UsingLoc, diag::err_redefinition_different_kind)
10044           << Name.Identifier;
10045 
10046         NamedDecl *OldD = Previous.getRepresentativeDecl();
10047         if (OldD->getLocation().isValid())
10048           Diag(OldD->getLocation(), diag::note_previous_definition);
10049 
10050         Invalid = true;
10051       }
10052 
10053       if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
10054         if (TemplateParameterListsAreEqual(TemplateParams,
10055                                            OldDecl->getTemplateParameters(),
10056                                            /*Complain=*/true,
10057                                            TPL_TemplateMatch))
10058           OldTemplateParams = OldDecl->getTemplateParameters();
10059         else
10060           Invalid = true;
10061 
10062         TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
10063         if (!Invalid &&
10064             !Context.hasSameType(OldTD->getUnderlyingType(),
10065                                  NewTD->getUnderlyingType())) {
10066           // FIXME: The C++0x standard does not clearly say this is ill-formed,
10067           // but we can't reasonably accept it.
10068           Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
10069             << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
10070           if (OldTD->getLocation().isValid())
10071             Diag(OldTD->getLocation(), diag::note_previous_definition);
10072           Invalid = true;
10073         }
10074       }
10075     }
10076 
10077     // Merge any previous default template arguments into our parameters,
10078     // and check the parameter list.
10079     if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
10080                                    TPC_TypeAliasTemplate))
10081       return nullptr;
10082 
10083     TypeAliasTemplateDecl *NewDecl =
10084       TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
10085                                     Name.Identifier, TemplateParams,
10086                                     NewTD);
10087     NewTD->setDescribedAliasTemplate(NewDecl);
10088 
10089     NewDecl->setAccess(AS);
10090 
10091     if (Invalid)
10092       NewDecl->setInvalidDecl();
10093     else if (OldDecl) {
10094       NewDecl->setPreviousDecl(OldDecl);
10095       CheckRedeclarationModuleOwnership(NewDecl, OldDecl);
10096     }
10097 
10098     NewND = NewDecl;
10099   } else {
10100     if (auto *TD = dyn_cast_or_null<TagDecl>(DeclFromDeclSpec)) {
10101       setTagNameForLinkagePurposes(TD, NewTD);
10102       handleTagNumbering(TD, S);
10103     }
10104     ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
10105     NewND = NewTD;
10106   }
10107 
10108   PushOnScopeChains(NewND, S);
10109   ActOnDocumentableDecl(NewND);
10110   return NewND;
10111 }
10112 
10113 Decl *Sema::ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc,
10114                                    SourceLocation AliasLoc,
10115                                    IdentifierInfo *Alias, CXXScopeSpec &SS,
10116                                    SourceLocation IdentLoc,
10117                                    IdentifierInfo *Ident) {
10118 
10119   // Lookup the namespace name.
10120   LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
10121   LookupParsedName(R, S, &SS);
10122 
10123   if (R.isAmbiguous())
10124     return nullptr;
10125 
10126   if (R.empty()) {
10127     if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
10128       Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
10129       return nullptr;
10130     }
10131   }
10132   assert(!R.isAmbiguous() && !R.empty());
10133   NamedDecl *ND = R.getRepresentativeDecl();
10134 
10135   // Check if we have a previous declaration with the same name.
10136   LookupResult PrevR(*this, Alias, AliasLoc, LookupOrdinaryName,
10137                      ForVisibleRedeclaration);
10138   LookupName(PrevR, S);
10139 
10140   // Check we're not shadowing a template parameter.
10141   if (PrevR.isSingleResult() && PrevR.getFoundDecl()->isTemplateParameter()) {
10142     DiagnoseTemplateParameterShadow(AliasLoc, PrevR.getFoundDecl());
10143     PrevR.clear();
10144   }
10145 
10146   // Filter out any other lookup result from an enclosing scope.
10147   FilterLookupForScope(PrevR, CurContext, S, /*ConsiderLinkage*/false,
10148                        /*AllowInlineNamespace*/false);
10149 
10150   // Find the previous declaration and check that we can redeclare it.
10151   NamespaceAliasDecl *Prev = nullptr;
10152   if (PrevR.isSingleResult()) {
10153     NamedDecl *PrevDecl = PrevR.getRepresentativeDecl();
10154     if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
10155       // We already have an alias with the same name that points to the same
10156       // namespace; check that it matches.
10157       if (AD->getNamespace()->Equals(getNamespaceDecl(ND))) {
10158         Prev = AD;
10159       } else if (isVisible(PrevDecl)) {
10160         Diag(AliasLoc, diag::err_redefinition_different_namespace_alias)
10161           << Alias;
10162         Diag(AD->getLocation(), diag::note_previous_namespace_alias)
10163           << AD->getNamespace();
10164         return nullptr;
10165       }
10166     } else if (isVisible(PrevDecl)) {
10167       unsigned DiagID = isa<NamespaceDecl>(PrevDecl->getUnderlyingDecl())
10168                             ? diag::err_redefinition
10169                             : diag::err_redefinition_different_kind;
10170       Diag(AliasLoc, DiagID) << Alias;
10171       Diag(PrevDecl->getLocation(), diag::note_previous_definition);
10172       return nullptr;
10173     }
10174   }
10175 
10176   // The use of a nested name specifier may trigger deprecation warnings.
10177   DiagnoseUseOfDecl(ND, IdentLoc);
10178 
10179   NamespaceAliasDecl *AliasDecl =
10180     NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
10181                                Alias, SS.getWithLocInContext(Context),
10182                                IdentLoc, ND);
10183   if (Prev)
10184     AliasDecl->setPreviousDecl(Prev);
10185 
10186   PushOnScopeChains(AliasDecl, S);
10187   return AliasDecl;
10188 }
10189 
10190 namespace {
10191 struct SpecialMemberExceptionSpecInfo
10192     : SpecialMemberVisitor<SpecialMemberExceptionSpecInfo> {
10193   SourceLocation Loc;
10194   Sema::ImplicitExceptionSpecification ExceptSpec;
10195 
10196   SpecialMemberExceptionSpecInfo(Sema &S, CXXMethodDecl *MD,
10197                                  Sema::CXXSpecialMember CSM,
10198                                  Sema::InheritedConstructorInfo *ICI,
10199                                  SourceLocation Loc)
10200       : SpecialMemberVisitor(S, MD, CSM, ICI), Loc(Loc), ExceptSpec(S) {}
10201 
10202   bool visitBase(CXXBaseSpecifier *Base);
10203   bool visitField(FieldDecl *FD);
10204 
10205   void visitClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
10206                            unsigned Quals);
10207 
10208   void visitSubobjectCall(Subobject Subobj,
10209                           Sema::SpecialMemberOverloadResult SMOR);
10210 };
10211 }
10212 
10213 bool SpecialMemberExceptionSpecInfo::visitBase(CXXBaseSpecifier *Base) {
10214   auto *RT = Base->getType()->getAs<RecordType>();
10215   if (!RT)
10216     return false;
10217 
10218   auto *BaseClass = cast<CXXRecordDecl>(RT->getDecl());
10219   Sema::SpecialMemberOverloadResult SMOR = lookupInheritedCtor(BaseClass);
10220   if (auto *BaseCtor = SMOR.getMethod()) {
10221     visitSubobjectCall(Base, BaseCtor);
10222     return false;
10223   }
10224 
10225   visitClassSubobject(BaseClass, Base, 0);
10226   return false;
10227 }
10228 
10229 bool SpecialMemberExceptionSpecInfo::visitField(FieldDecl *FD) {
10230   if (CSM == Sema::CXXDefaultConstructor && FD->hasInClassInitializer()) {
10231     Expr *E = FD->getInClassInitializer();
10232     if (!E)
10233       // FIXME: It's a little wasteful to build and throw away a
10234       // CXXDefaultInitExpr here.
10235       // FIXME: We should have a single context note pointing at Loc, and
10236       // this location should be MD->getLocation() instead, since that's
10237       // the location where we actually use the default init expression.
10238       E = S.BuildCXXDefaultInitExpr(Loc, FD).get();
10239     if (E)
10240       ExceptSpec.CalledExpr(E);
10241   } else if (auto *RT = S.Context.getBaseElementType(FD->getType())
10242                             ->getAs<RecordType>()) {
10243     visitClassSubobject(cast<CXXRecordDecl>(RT->getDecl()), FD,
10244                         FD->getType().getCVRQualifiers());
10245   }
10246   return false;
10247 }
10248 
10249 void SpecialMemberExceptionSpecInfo::visitClassSubobject(CXXRecordDecl *Class,
10250                                                          Subobject Subobj,
10251                                                          unsigned Quals) {
10252   FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
10253   bool IsMutable = Field && Field->isMutable();
10254   visitSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable));
10255 }
10256 
10257 void SpecialMemberExceptionSpecInfo::visitSubobjectCall(
10258     Subobject Subobj, Sema::SpecialMemberOverloadResult SMOR) {
10259   // Note, if lookup fails, it doesn't matter what exception specification we
10260   // choose because the special member will be deleted.
10261   if (CXXMethodDecl *MD = SMOR.getMethod())
10262     ExceptSpec.CalledDecl(getSubobjectLoc(Subobj), MD);
10263 }
10264 
10265 static Sema::ImplicitExceptionSpecification
10266 ComputeDefaultedSpecialMemberExceptionSpec(
10267     Sema &S, SourceLocation Loc, CXXMethodDecl *MD, Sema::CXXSpecialMember CSM,
10268     Sema::InheritedConstructorInfo *ICI) {
10269   CXXRecordDecl *ClassDecl = MD->getParent();
10270 
10271   // C++ [except.spec]p14:
10272   //   An implicitly declared special member function (Clause 12) shall have an
10273   //   exception-specification. [...]
10274   SpecialMemberExceptionSpecInfo Info(S, MD, CSM, ICI, Loc);
10275   if (ClassDecl->isInvalidDecl())
10276     return Info.ExceptSpec;
10277 
10278   // C++1z [except.spec]p7:
10279   //   [Look for exceptions thrown by] a constructor selected [...] to
10280   //   initialize a potentially constructed subobject,
10281   // C++1z [except.spec]p8:
10282   //   The exception specification for an implicitly-declared destructor, or a
10283   //   destructor without a noexcept-specifier, is potentially-throwing if and
10284   //   only if any of the destructors for any of its potentially constructed
10285   //   subojects is potentially throwing.
10286   // FIXME: We respect the first rule but ignore the "potentially constructed"
10287   // in the second rule to resolve a core issue (no number yet) that would have
10288   // us reject:
10289   //   struct A { virtual void f() = 0; virtual ~A() noexcept(false) = 0; };
10290   //   struct B : A {};
10291   //   struct C : B { void f(); };
10292   // ... due to giving B::~B() a non-throwing exception specification.
10293   Info.visit(Info.IsConstructor ? Info.VisitPotentiallyConstructedBases
10294                                 : Info.VisitAllBases);
10295 
10296   return Info.ExceptSpec;
10297 }
10298 
10299 namespace {
10300 /// RAII object to register a special member as being currently declared.
10301 struct DeclaringSpecialMember {
10302   Sema &S;
10303   Sema::SpecialMemberDecl D;
10304   Sema::ContextRAII SavedContext;
10305   bool WasAlreadyBeingDeclared;
10306 
10307   DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM)
10308       : S(S), D(RD, CSM), SavedContext(S, RD) {
10309     WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D).second;
10310     if (WasAlreadyBeingDeclared)
10311       // This almost never happens, but if it does, ensure that our cache
10312       // doesn't contain a stale result.
10313       S.SpecialMemberCache.clear();
10314     else {
10315       // Register a note to be produced if we encounter an error while
10316       // declaring the special member.
10317       Sema::CodeSynthesisContext Ctx;
10318       Ctx.Kind = Sema::CodeSynthesisContext::DeclaringSpecialMember;
10319       // FIXME: We don't have a location to use here. Using the class's
10320       // location maintains the fiction that we declare all special members
10321       // with the class, but (1) it's not clear that lying about that helps our
10322       // users understand what's going on, and (2) there may be outer contexts
10323       // on the stack (some of which are relevant) and printing them exposes
10324       // our lies.
10325       Ctx.PointOfInstantiation = RD->getLocation();
10326       Ctx.Entity = RD;
10327       Ctx.SpecialMember = CSM;
10328       S.pushCodeSynthesisContext(Ctx);
10329     }
10330   }
10331   ~DeclaringSpecialMember() {
10332     if (!WasAlreadyBeingDeclared) {
10333       S.SpecialMembersBeingDeclared.erase(D);
10334       S.popCodeSynthesisContext();
10335     }
10336   }
10337 
10338   /// \brief Are we already trying to declare this special member?
10339   bool isAlreadyBeingDeclared() const {
10340     return WasAlreadyBeingDeclared;
10341   }
10342 };
10343 }
10344 
10345 void Sema::CheckImplicitSpecialMemberDeclaration(Scope *S, FunctionDecl *FD) {
10346   // Look up any existing declarations, but don't trigger declaration of all
10347   // implicit special members with this name.
10348   DeclarationName Name = FD->getDeclName();
10349   LookupResult R(*this, Name, SourceLocation(), LookupOrdinaryName,
10350                  ForExternalRedeclaration);
10351   for (auto *D : FD->getParent()->lookup(Name))
10352     if (auto *Acceptable = R.getAcceptableDecl(D))
10353       R.addDecl(Acceptable);
10354   R.resolveKind();
10355   R.suppressDiagnostics();
10356 
10357   CheckFunctionDeclaration(S, FD, R, /*IsMemberSpecialization*/false);
10358 }
10359 
10360 CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
10361                                                      CXXRecordDecl *ClassDecl) {
10362   // C++ [class.ctor]p5:
10363   //   A default constructor for a class X is a constructor of class X
10364   //   that can be called without an argument. If there is no
10365   //   user-declared constructor for class X, a default constructor is
10366   //   implicitly declared. An implicitly-declared default constructor
10367   //   is an inline public member of its class.
10368   assert(ClassDecl->needsImplicitDefaultConstructor() &&
10369          "Should not build implicit default constructor!");
10370 
10371   DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor);
10372   if (DSM.isAlreadyBeingDeclared())
10373     return nullptr;
10374 
10375   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
10376                                                      CXXDefaultConstructor,
10377                                                      false);
10378 
10379   // Create the actual constructor declaration.
10380   CanQualType ClassType
10381     = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
10382   SourceLocation ClassLoc = ClassDecl->getLocation();
10383   DeclarationName Name
10384     = Context.DeclarationNames.getCXXConstructorName(ClassType);
10385   DeclarationNameInfo NameInfo(Name, ClassLoc);
10386   CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
10387       Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(),
10388       /*TInfo=*/nullptr, /*isExplicit=*/false, /*isInline=*/true,
10389       /*isImplicitlyDeclared=*/true, Constexpr);
10390   DefaultCon->setAccess(AS_public);
10391   DefaultCon->setDefaulted();
10392 
10393   if (getLangOpts().CUDA) {
10394     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDefaultConstructor,
10395                                             DefaultCon,
10396                                             /* ConstRHS */ false,
10397                                             /* Diagnose */ false);
10398   }
10399 
10400   // Build an exception specification pointing back at this constructor.
10401   FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon);
10402   DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
10403 
10404   // We don't need to use SpecialMemberIsTrivial here; triviality for default
10405   // constructors is easy to compute.
10406   DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
10407 
10408   // Note that we have declared this constructor.
10409   ++ASTContext::NumImplicitDefaultConstructorsDeclared;
10410 
10411   Scope *S = getScopeForContext(ClassDecl);
10412   CheckImplicitSpecialMemberDeclaration(S, DefaultCon);
10413 
10414   if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
10415     SetDeclDeleted(DefaultCon, ClassLoc);
10416 
10417   if (S)
10418     PushOnScopeChains(DefaultCon, S, false);
10419   ClassDecl->addDecl(DefaultCon);
10420 
10421   return DefaultCon;
10422 }
10423 
10424 void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
10425                                             CXXConstructorDecl *Constructor) {
10426   assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
10427           !Constructor->doesThisDeclarationHaveABody() &&
10428           !Constructor->isDeleted()) &&
10429     "DefineImplicitDefaultConstructor - call it for implicit default ctor");
10430   if (Constructor->willHaveBody() || Constructor->isInvalidDecl())
10431     return;
10432 
10433   CXXRecordDecl *ClassDecl = Constructor->getParent();
10434   assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
10435 
10436   SynthesizedFunctionScope Scope(*this, Constructor);
10437 
10438   // The exception specification is needed because we are defining the
10439   // function.
10440   ResolveExceptionSpec(CurrentLocation,
10441                        Constructor->getType()->castAs<FunctionProtoType>());
10442   MarkVTableUsed(CurrentLocation, ClassDecl);
10443 
10444   // Add a context note for diagnostics produced after this point.
10445   Scope.addContextNote(CurrentLocation);
10446 
10447   if (SetCtorInitializers(Constructor, /*AnyErrors=*/false)) {
10448     Constructor->setInvalidDecl();
10449     return;
10450   }
10451 
10452   SourceLocation Loc = Constructor->getLocEnd().isValid()
10453                            ? Constructor->getLocEnd()
10454                            : Constructor->getLocation();
10455   Constructor->setBody(new (Context) CompoundStmt(Loc));
10456   Constructor->markUsed(Context);
10457 
10458   if (ASTMutationListener *L = getASTMutationListener()) {
10459     L->CompletedImplicitDefinition(Constructor);
10460   }
10461 
10462   DiagnoseUninitializedFields(*this, Constructor);
10463 }
10464 
10465 void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
10466   // Perform any delayed checks on exception specifications.
10467   CheckDelayedMemberExceptionSpecs();
10468 }
10469 
10470 /// Find or create the fake constructor we synthesize to model constructing an
10471 /// object of a derived class via a constructor of a base class.
10472 CXXConstructorDecl *
10473 Sema::findInheritingConstructor(SourceLocation Loc,
10474                                 CXXConstructorDecl *BaseCtor,
10475                                 ConstructorUsingShadowDecl *Shadow) {
10476   CXXRecordDecl *Derived = Shadow->getParent();
10477   SourceLocation UsingLoc = Shadow->getLocation();
10478 
10479   // FIXME: Add a new kind of DeclarationName for an inherited constructor.
10480   // For now we use the name of the base class constructor as a member of the
10481   // derived class to indicate a (fake) inherited constructor name.
10482   DeclarationName Name = BaseCtor->getDeclName();
10483 
10484   // Check to see if we already have a fake constructor for this inherited
10485   // constructor call.
10486   for (NamedDecl *Ctor : Derived->lookup(Name))
10487     if (declaresSameEntity(cast<CXXConstructorDecl>(Ctor)
10488                                ->getInheritedConstructor()
10489                                .getConstructor(),
10490                            BaseCtor))
10491       return cast<CXXConstructorDecl>(Ctor);
10492 
10493   DeclarationNameInfo NameInfo(Name, UsingLoc);
10494   TypeSourceInfo *TInfo =
10495       Context.getTrivialTypeSourceInfo(BaseCtor->getType(), UsingLoc);
10496   FunctionProtoTypeLoc ProtoLoc =
10497       TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>();
10498 
10499   // Check the inherited constructor is valid and find the list of base classes
10500   // from which it was inherited.
10501   InheritedConstructorInfo ICI(*this, Loc, Shadow);
10502 
10503   bool Constexpr =
10504       BaseCtor->isConstexpr() &&
10505       defaultedSpecialMemberIsConstexpr(*this, Derived, CXXDefaultConstructor,
10506                                         false, BaseCtor, &ICI);
10507 
10508   CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create(
10509       Context, Derived, UsingLoc, NameInfo, TInfo->getType(), TInfo,
10510       BaseCtor->isExplicit(), /*Inline=*/true,
10511       /*ImplicitlyDeclared=*/true, Constexpr,
10512       InheritedConstructor(Shadow, BaseCtor));
10513   if (Shadow->isInvalidDecl())
10514     DerivedCtor->setInvalidDecl();
10515 
10516   // Build an unevaluated exception specification for this fake constructor.
10517   const FunctionProtoType *FPT = TInfo->getType()->castAs<FunctionProtoType>();
10518   FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
10519   EPI.ExceptionSpec.Type = EST_Unevaluated;
10520   EPI.ExceptionSpec.SourceDecl = DerivedCtor;
10521   DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(),
10522                                                FPT->getParamTypes(), EPI));
10523 
10524   // Build the parameter declarations.
10525   SmallVector<ParmVarDecl *, 16> ParamDecls;
10526   for (unsigned I = 0, N = FPT->getNumParams(); I != N; ++I) {
10527     TypeSourceInfo *TInfo =
10528         Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc);
10529     ParmVarDecl *PD = ParmVarDecl::Create(
10530         Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr,
10531         FPT->getParamType(I), TInfo, SC_None, /*DefaultArg=*/nullptr);
10532     PD->setScopeInfo(0, I);
10533     PD->setImplicit();
10534     // Ensure attributes are propagated onto parameters (this matters for
10535     // format, pass_object_size, ...).
10536     mergeDeclAttributes(PD, BaseCtor->getParamDecl(I));
10537     ParamDecls.push_back(PD);
10538     ProtoLoc.setParam(I, PD);
10539   }
10540 
10541   // Set up the new constructor.
10542   assert(!BaseCtor->isDeleted() && "should not use deleted constructor");
10543   DerivedCtor->setAccess(BaseCtor->getAccess());
10544   DerivedCtor->setParams(ParamDecls);
10545   Derived->addDecl(DerivedCtor);
10546 
10547   if (ShouldDeleteSpecialMember(DerivedCtor, CXXDefaultConstructor, &ICI))
10548     SetDeclDeleted(DerivedCtor, UsingLoc);
10549 
10550   return DerivedCtor;
10551 }
10552 
10553 void Sema::NoteDeletedInheritingConstructor(CXXConstructorDecl *Ctor) {
10554   InheritedConstructorInfo ICI(*this, Ctor->getLocation(),
10555                                Ctor->getInheritedConstructor().getShadowDecl());
10556   ShouldDeleteSpecialMember(Ctor, CXXDefaultConstructor, &ICI,
10557                             /*Diagnose*/true);
10558 }
10559 
10560 void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation,
10561                                        CXXConstructorDecl *Constructor) {
10562   CXXRecordDecl *ClassDecl = Constructor->getParent();
10563   assert(Constructor->getInheritedConstructor() &&
10564          !Constructor->doesThisDeclarationHaveABody() &&
10565          !Constructor->isDeleted());
10566   if (Constructor->willHaveBody() || Constructor->isInvalidDecl())
10567     return;
10568 
10569   // Initializations are performed "as if by a defaulted default constructor",
10570   // so enter the appropriate scope.
10571   SynthesizedFunctionScope Scope(*this, Constructor);
10572 
10573   // The exception specification is needed because we are defining the
10574   // function.
10575   ResolveExceptionSpec(CurrentLocation,
10576                        Constructor->getType()->castAs<FunctionProtoType>());
10577   MarkVTableUsed(CurrentLocation, ClassDecl);
10578 
10579   // Add a context note for diagnostics produced after this point.
10580   Scope.addContextNote(CurrentLocation);
10581 
10582   ConstructorUsingShadowDecl *Shadow =
10583       Constructor->getInheritedConstructor().getShadowDecl();
10584   CXXConstructorDecl *InheritedCtor =
10585       Constructor->getInheritedConstructor().getConstructor();
10586 
10587   // [class.inhctor.init]p1:
10588   //   initialization proceeds as if a defaulted default constructor is used to
10589   //   initialize the D object and each base class subobject from which the
10590   //   constructor was inherited
10591 
10592   InheritedConstructorInfo ICI(*this, CurrentLocation, Shadow);
10593   CXXRecordDecl *RD = Shadow->getParent();
10594   SourceLocation InitLoc = Shadow->getLocation();
10595 
10596   // Build explicit initializers for all base classes from which the
10597   // constructor was inherited.
10598   SmallVector<CXXCtorInitializer*, 8> Inits;
10599   for (bool VBase : {false, true}) {
10600     for (CXXBaseSpecifier &B : VBase ? RD->vbases() : RD->bases()) {
10601       if (B.isVirtual() != VBase)
10602         continue;
10603 
10604       auto *BaseRD = B.getType()->getAsCXXRecordDecl();
10605       if (!BaseRD)
10606         continue;
10607 
10608       auto BaseCtor = ICI.findConstructorForBase(BaseRD, InheritedCtor);
10609       if (!BaseCtor.first)
10610         continue;
10611 
10612       MarkFunctionReferenced(CurrentLocation, BaseCtor.first);
10613       ExprResult Init = new (Context) CXXInheritedCtorInitExpr(
10614           InitLoc, B.getType(), BaseCtor.first, VBase, BaseCtor.second);
10615 
10616       auto *TInfo = Context.getTrivialTypeSourceInfo(B.getType(), InitLoc);
10617       Inits.push_back(new (Context) CXXCtorInitializer(
10618           Context, TInfo, VBase, InitLoc, Init.get(), InitLoc,
10619           SourceLocation()));
10620     }
10621   }
10622 
10623   // We now proceed as if for a defaulted default constructor, with the relevant
10624   // initializers replaced.
10625 
10626   if (SetCtorInitializers(Constructor, /*AnyErrors*/false, Inits)) {
10627     Constructor->setInvalidDecl();
10628     return;
10629   }
10630 
10631   Constructor->setBody(new (Context) CompoundStmt(InitLoc));
10632   Constructor->markUsed(Context);
10633 
10634   if (ASTMutationListener *L = getASTMutationListener()) {
10635     L->CompletedImplicitDefinition(Constructor);
10636   }
10637 
10638   DiagnoseUninitializedFields(*this, Constructor);
10639 }
10640 
10641 CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
10642   // C++ [class.dtor]p2:
10643   //   If a class has no user-declared destructor, a destructor is
10644   //   declared implicitly. An implicitly-declared destructor is an
10645   //   inline public member of its class.
10646   assert(ClassDecl->needsImplicitDestructor());
10647 
10648   DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor);
10649   if (DSM.isAlreadyBeingDeclared())
10650     return nullptr;
10651 
10652   // Create the actual destructor declaration.
10653   CanQualType ClassType
10654     = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
10655   SourceLocation ClassLoc = ClassDecl->getLocation();
10656   DeclarationName Name
10657     = Context.DeclarationNames.getCXXDestructorName(ClassType);
10658   DeclarationNameInfo NameInfo(Name, ClassLoc);
10659   CXXDestructorDecl *Destructor
10660       = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
10661                                   QualType(), nullptr, /*isInline=*/true,
10662                                   /*isImplicitlyDeclared=*/true);
10663   Destructor->setAccess(AS_public);
10664   Destructor->setDefaulted();
10665 
10666   if (getLangOpts().CUDA) {
10667     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDestructor,
10668                                             Destructor,
10669                                             /* ConstRHS */ false,
10670                                             /* Diagnose */ false);
10671   }
10672 
10673   // Build an exception specification pointing back at this destructor.
10674   FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, Destructor);
10675   Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
10676 
10677   // We don't need to use SpecialMemberIsTrivial here; triviality for
10678   // destructors is easy to compute.
10679   Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
10680 
10681   // Note that we have declared this destructor.
10682   ++ASTContext::NumImplicitDestructorsDeclared;
10683 
10684   Scope *S = getScopeForContext(ClassDecl);
10685   CheckImplicitSpecialMemberDeclaration(S, Destructor);
10686 
10687   // We can't check whether an implicit destructor is deleted before we complete
10688   // the definition of the class, because its validity depends on the alignment
10689   // of the class. We'll check this from ActOnFields once the class is complete.
10690   if (ClassDecl->isCompleteDefinition() &&
10691       ShouldDeleteSpecialMember(Destructor, CXXDestructor))
10692     SetDeclDeleted(Destructor, ClassLoc);
10693 
10694   // Introduce this destructor into its scope.
10695   if (S)
10696     PushOnScopeChains(Destructor, S, false);
10697   ClassDecl->addDecl(Destructor);
10698 
10699   return Destructor;
10700 }
10701 
10702 void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
10703                                     CXXDestructorDecl *Destructor) {
10704   assert((Destructor->isDefaulted() &&
10705           !Destructor->doesThisDeclarationHaveABody() &&
10706           !Destructor->isDeleted()) &&
10707          "DefineImplicitDestructor - call it for implicit default dtor");
10708   if (Destructor->willHaveBody() || Destructor->isInvalidDecl())
10709     return;
10710 
10711   CXXRecordDecl *ClassDecl = Destructor->getParent();
10712   assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
10713 
10714   SynthesizedFunctionScope Scope(*this, Destructor);
10715 
10716   // The exception specification is needed because we are defining the
10717   // function.
10718   ResolveExceptionSpec(CurrentLocation,
10719                        Destructor->getType()->castAs<FunctionProtoType>());
10720   MarkVTableUsed(CurrentLocation, ClassDecl);
10721 
10722   // Add a context note for diagnostics produced after this point.
10723   Scope.addContextNote(CurrentLocation);
10724 
10725   MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
10726                                          Destructor->getParent());
10727 
10728   if (CheckDestructor(Destructor)) {
10729     Destructor->setInvalidDecl();
10730     return;
10731   }
10732 
10733   SourceLocation Loc = Destructor->getLocEnd().isValid()
10734                            ? Destructor->getLocEnd()
10735                            : Destructor->getLocation();
10736   Destructor->setBody(new (Context) CompoundStmt(Loc));
10737   Destructor->markUsed(Context);
10738 
10739   if (ASTMutationListener *L = getASTMutationListener()) {
10740     L->CompletedImplicitDefinition(Destructor);
10741   }
10742 }
10743 
10744 /// \brief Perform any semantic analysis which needs to be delayed until all
10745 /// pending class member declarations have been parsed.
10746 void Sema::ActOnFinishCXXMemberDecls() {
10747   // If the context is an invalid C++ class, just suppress these checks.
10748   if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) {
10749     if (Record->isInvalidDecl()) {
10750       DelayedDefaultedMemberExceptionSpecs.clear();
10751       DelayedExceptionSpecChecks.clear();
10752       return;
10753     }
10754     checkForMultipleExportedDefaultConstructors(*this, Record);
10755   }
10756 }
10757 
10758 void Sema::ActOnFinishCXXNonNestedClass(Decl *D) {
10759   referenceDLLExportedClassMethods();
10760 }
10761 
10762 void Sema::referenceDLLExportedClassMethods() {
10763   if (!DelayedDllExportClasses.empty()) {
10764     // Calling ReferenceDllExportedMethods might cause the current function to
10765     // be called again, so use a local copy of DelayedDllExportClasses.
10766     SmallVector<CXXRecordDecl *, 4> WorkList;
10767     std::swap(DelayedDllExportClasses, WorkList);
10768     for (CXXRecordDecl *Class : WorkList)
10769       ReferenceDllExportedMethods(*this, Class);
10770   }
10771 }
10772 
10773 void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
10774                                          CXXDestructorDecl *Destructor) {
10775   assert(getLangOpts().CPlusPlus11 &&
10776          "adjusting dtor exception specs was introduced in c++11");
10777 
10778   // C++11 [class.dtor]p3:
10779   //   A declaration of a destructor that does not have an exception-
10780   //   specification is implicitly considered to have the same exception-
10781   //   specification as an implicit declaration.
10782   const FunctionProtoType *DtorType = Destructor->getType()->
10783                                         getAs<FunctionProtoType>();
10784   if (DtorType->hasExceptionSpec())
10785     return;
10786 
10787   // Replace the destructor's type, building off the existing one. Fortunately,
10788   // the only thing of interest in the destructor type is its extended info.
10789   // The return and arguments are fixed.
10790   FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
10791   EPI.ExceptionSpec.Type = EST_Unevaluated;
10792   EPI.ExceptionSpec.SourceDecl = Destructor;
10793   Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
10794 
10795   // FIXME: If the destructor has a body that could throw, and the newly created
10796   // spec doesn't allow exceptions, we should emit a warning, because this
10797   // change in behavior can break conforming C++03 programs at runtime.
10798   // However, we don't have a body or an exception specification yet, so it
10799   // needs to be done somewhere else.
10800 }
10801 
10802 namespace {
10803 /// \brief An abstract base class for all helper classes used in building the
10804 //  copy/move operators. These classes serve as factory functions and help us
10805 //  avoid using the same Expr* in the AST twice.
10806 class ExprBuilder {
10807   ExprBuilder(const ExprBuilder&) = delete;
10808   ExprBuilder &operator=(const ExprBuilder&) = delete;
10809 
10810 protected:
10811   static Expr *assertNotNull(Expr *E) {
10812     assert(E && "Expression construction must not fail.");
10813     return E;
10814   }
10815 
10816 public:
10817   ExprBuilder() {}
10818   virtual ~ExprBuilder() {}
10819 
10820   virtual Expr *build(Sema &S, SourceLocation Loc) const = 0;
10821 };
10822 
10823 class RefBuilder: public ExprBuilder {
10824   VarDecl *Var;
10825   QualType VarType;
10826 
10827 public:
10828   Expr *build(Sema &S, SourceLocation Loc) const override {
10829     return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get());
10830   }
10831 
10832   RefBuilder(VarDecl *Var, QualType VarType)
10833       : Var(Var), VarType(VarType) {}
10834 };
10835 
10836 class ThisBuilder: public ExprBuilder {
10837 public:
10838   Expr *build(Sema &S, SourceLocation Loc) const override {
10839     return assertNotNull(S.ActOnCXXThis(Loc).getAs<Expr>());
10840   }
10841 };
10842 
10843 class CastBuilder: public ExprBuilder {
10844   const ExprBuilder &Builder;
10845   QualType Type;
10846   ExprValueKind Kind;
10847   const CXXCastPath &Path;
10848 
10849 public:
10850   Expr *build(Sema &S, SourceLocation Loc) const override {
10851     return assertNotNull(S.ImpCastExprToType(Builder.build(S, Loc), Type,
10852                                              CK_UncheckedDerivedToBase, Kind,
10853                                              &Path).get());
10854   }
10855 
10856   CastBuilder(const ExprBuilder &Builder, QualType Type, ExprValueKind Kind,
10857               const CXXCastPath &Path)
10858       : Builder(Builder), Type(Type), Kind(Kind), Path(Path) {}
10859 };
10860 
10861 class DerefBuilder: public ExprBuilder {
10862   const ExprBuilder &Builder;
10863 
10864 public:
10865   Expr *build(Sema &S, SourceLocation Loc) const override {
10866     return assertNotNull(
10867         S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get());
10868   }
10869 
10870   DerefBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
10871 };
10872 
10873 class MemberBuilder: public ExprBuilder {
10874   const ExprBuilder &Builder;
10875   QualType Type;
10876   CXXScopeSpec SS;
10877   bool IsArrow;
10878   LookupResult &MemberLookup;
10879 
10880 public:
10881   Expr *build(Sema &S, SourceLocation Loc) const override {
10882     return assertNotNull(S.BuildMemberReferenceExpr(
10883         Builder.build(S, Loc), Type, Loc, IsArrow, SS, SourceLocation(),
10884         nullptr, MemberLookup, nullptr, nullptr).get());
10885   }
10886 
10887   MemberBuilder(const ExprBuilder &Builder, QualType Type, bool IsArrow,
10888                 LookupResult &MemberLookup)
10889       : Builder(Builder), Type(Type), IsArrow(IsArrow),
10890         MemberLookup(MemberLookup) {}
10891 };
10892 
10893 class MoveCastBuilder: public ExprBuilder {
10894   const ExprBuilder &Builder;
10895 
10896 public:
10897   Expr *build(Sema &S, SourceLocation Loc) const override {
10898     return assertNotNull(CastForMoving(S, Builder.build(S, Loc)));
10899   }
10900 
10901   MoveCastBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
10902 };
10903 
10904 class LvalueConvBuilder: public ExprBuilder {
10905   const ExprBuilder &Builder;
10906 
10907 public:
10908   Expr *build(Sema &S, SourceLocation Loc) const override {
10909     return assertNotNull(
10910         S.DefaultLvalueConversion(Builder.build(S, Loc)).get());
10911   }
10912 
10913   LvalueConvBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
10914 };
10915 
10916 class SubscriptBuilder: public ExprBuilder {
10917   const ExprBuilder &Base;
10918   const ExprBuilder &Index;
10919 
10920 public:
10921   Expr *build(Sema &S, SourceLocation Loc) const override {
10922     return assertNotNull(S.CreateBuiltinArraySubscriptExpr(
10923         Base.build(S, Loc), Loc, Index.build(S, Loc), Loc).get());
10924   }
10925 
10926   SubscriptBuilder(const ExprBuilder &Base, const ExprBuilder &Index)
10927       : Base(Base), Index(Index) {}
10928 };
10929 
10930 } // end anonymous namespace
10931 
10932 /// When generating a defaulted copy or move assignment operator, if a field
10933 /// should be copied with __builtin_memcpy rather than via explicit assignments,
10934 /// do so. This optimization only applies for arrays of scalars, and for arrays
10935 /// of class type where the selected copy/move-assignment operator is trivial.
10936 static StmtResult
10937 buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
10938                            const ExprBuilder &ToB, const ExprBuilder &FromB) {
10939   // Compute the size of the memory buffer to be copied.
10940   QualType SizeType = S.Context.getSizeType();
10941   llvm::APInt Size(S.Context.getTypeSize(SizeType),
10942                    S.Context.getTypeSizeInChars(T).getQuantity());
10943 
10944   // Take the address of the field references for "from" and "to". We
10945   // directly construct UnaryOperators here because semantic analysis
10946   // does not permit us to take the address of an xvalue.
10947   Expr *From = FromB.build(S, Loc);
10948   From = new (S.Context) UnaryOperator(From, UO_AddrOf,
10949                          S.Context.getPointerType(From->getType()),
10950                          VK_RValue, OK_Ordinary, Loc);
10951   Expr *To = ToB.build(S, Loc);
10952   To = new (S.Context) UnaryOperator(To, UO_AddrOf,
10953                        S.Context.getPointerType(To->getType()),
10954                        VK_RValue, OK_Ordinary, Loc);
10955 
10956   const Type *E = T->getBaseElementTypeUnsafe();
10957   bool NeedsCollectableMemCpy =
10958     E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
10959 
10960   // Create a reference to the __builtin_objc_memmove_collectable function
10961   StringRef MemCpyName = NeedsCollectableMemCpy ?
10962     "__builtin_objc_memmove_collectable" :
10963     "__builtin_memcpy";
10964   LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
10965                  Sema::LookupOrdinaryName);
10966   S.LookupName(R, S.TUScope, true);
10967 
10968   FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
10969   if (!MemCpy)
10970     // Something went horribly wrong earlier, and we will have complained
10971     // about it.
10972     return StmtError();
10973 
10974   ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
10975                                             VK_RValue, Loc, nullptr);
10976   assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
10977 
10978   Expr *CallArgs[] = {
10979     To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
10980   };
10981   ExprResult Call = S.ActOnCallExpr(/*Scope=*/nullptr, MemCpyRef.get(),
10982                                     Loc, CallArgs, Loc);
10983 
10984   assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
10985   return Call.getAs<Stmt>();
10986 }
10987 
10988 /// \brief Builds a statement that copies/moves the given entity from \p From to
10989 /// \c To.
10990 ///
10991 /// This routine is used to copy/move the members of a class with an
10992 /// implicitly-declared copy/move assignment operator. When the entities being
10993 /// copied are arrays, this routine builds for loops to copy them.
10994 ///
10995 /// \param S The Sema object used for type-checking.
10996 ///
10997 /// \param Loc The location where the implicit copy/move is being generated.
10998 ///
10999 /// \param T The type of the expressions being copied/moved. Both expressions
11000 /// must have this type.
11001 ///
11002 /// \param To The expression we are copying/moving to.
11003 ///
11004 /// \param From The expression we are copying/moving from.
11005 ///
11006 /// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
11007 /// Otherwise, it's a non-static member subobject.
11008 ///
11009 /// \param Copying Whether we're copying or moving.
11010 ///
11011 /// \param Depth Internal parameter recording the depth of the recursion.
11012 ///
11013 /// \returns A statement or a loop that copies the expressions, or StmtResult(0)
11014 /// if a memcpy should be used instead.
11015 static StmtResult
11016 buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
11017                                  const ExprBuilder &To, const ExprBuilder &From,
11018                                  bool CopyingBaseSubobject, bool Copying,
11019                                  unsigned Depth = 0) {
11020   // C++11 [class.copy]p28:
11021   //   Each subobject is assigned in the manner appropriate to its type:
11022   //
11023   //     - if the subobject is of class type, as if by a call to operator= with
11024   //       the subobject as the object expression and the corresponding
11025   //       subobject of x as a single function argument (as if by explicit
11026   //       qualification; that is, ignoring any possible virtual overriding
11027   //       functions in more derived classes);
11028   //
11029   // C++03 [class.copy]p13:
11030   //     - if the subobject is of class type, the copy assignment operator for
11031   //       the class is used (as if by explicit qualification; that is,
11032   //       ignoring any possible virtual overriding functions in more derived
11033   //       classes);
11034   if (const RecordType *RecordTy = T->getAs<RecordType>()) {
11035     CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
11036 
11037     // Look for operator=.
11038     DeclarationName Name
11039       = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
11040     LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
11041     S.LookupQualifiedName(OpLookup, ClassDecl, false);
11042 
11043     // Prior to C++11, filter out any result that isn't a copy/move-assignment
11044     // operator.
11045     if (!S.getLangOpts().CPlusPlus11) {
11046       LookupResult::Filter F = OpLookup.makeFilter();
11047       while (F.hasNext()) {
11048         NamedDecl *D = F.next();
11049         if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
11050           if (Method->isCopyAssignmentOperator() ||
11051               (!Copying && Method->isMoveAssignmentOperator()))
11052             continue;
11053 
11054         F.erase();
11055       }
11056       F.done();
11057     }
11058 
11059     // Suppress the protected check (C++ [class.protected]) for each of the
11060     // assignment operators we found. This strange dance is required when
11061     // we're assigning via a base classes's copy-assignment operator. To
11062     // ensure that we're getting the right base class subobject (without
11063     // ambiguities), we need to cast "this" to that subobject type; to
11064     // ensure that we don't go through the virtual call mechanism, we need
11065     // to qualify the operator= name with the base class (see below). However,
11066     // this means that if the base class has a protected copy assignment
11067     // operator, the protected member access check will fail. So, we
11068     // rewrite "protected" access to "public" access in this case, since we
11069     // know by construction that we're calling from a derived class.
11070     if (CopyingBaseSubobject) {
11071       for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
11072            L != LEnd; ++L) {
11073         if (L.getAccess() == AS_protected)
11074           L.setAccess(AS_public);
11075       }
11076     }
11077 
11078     // Create the nested-name-specifier that will be used to qualify the
11079     // reference to operator=; this is required to suppress the virtual
11080     // call mechanism.
11081     CXXScopeSpec SS;
11082     const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
11083     SS.MakeTrivial(S.Context,
11084                    NestedNameSpecifier::Create(S.Context, nullptr, false,
11085                                                CanonicalT),
11086                    Loc);
11087 
11088     // Create the reference to operator=.
11089     ExprResult OpEqualRef
11090       = S.BuildMemberReferenceExpr(To.build(S, Loc), T, Loc, /*isArrow=*/false,
11091                                    SS, /*TemplateKWLoc=*/SourceLocation(),
11092                                    /*FirstQualifierInScope=*/nullptr,
11093                                    OpLookup,
11094                                    /*TemplateArgs=*/nullptr, /*S*/nullptr,
11095                                    /*SuppressQualifierCheck=*/true);
11096     if (OpEqualRef.isInvalid())
11097       return StmtError();
11098 
11099     // Build the call to the assignment operator.
11100 
11101     Expr *FromInst = From.build(S, Loc);
11102     ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/nullptr,
11103                                                   OpEqualRef.getAs<Expr>(),
11104                                                   Loc, FromInst, Loc);
11105     if (Call.isInvalid())
11106       return StmtError();
11107 
11108     // If we built a call to a trivial 'operator=' while copying an array,
11109     // bail out. We'll replace the whole shebang with a memcpy.
11110     CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
11111     if (CE && CE->getMethodDecl()->isTrivial() && Depth)
11112       return StmtResult((Stmt*)nullptr);
11113 
11114     // Convert to an expression-statement, and clean up any produced
11115     // temporaries.
11116     return S.ActOnExprStmt(Call);
11117   }
11118 
11119   //     - if the subobject is of scalar type, the built-in assignment
11120   //       operator is used.
11121   const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
11122   if (!ArrayTy) {
11123     ExprResult Assignment = S.CreateBuiltinBinOp(
11124         Loc, BO_Assign, To.build(S, Loc), From.build(S, Loc));
11125     if (Assignment.isInvalid())
11126       return StmtError();
11127     return S.ActOnExprStmt(Assignment);
11128   }
11129 
11130   //     - if the subobject is an array, each element is assigned, in the
11131   //       manner appropriate to the element type;
11132 
11133   // Construct a loop over the array bounds, e.g.,
11134   //
11135   //   for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
11136   //
11137   // that will copy each of the array elements.
11138   QualType SizeType = S.Context.getSizeType();
11139 
11140   // Create the iteration variable.
11141   IdentifierInfo *IterationVarName = nullptr;
11142   {
11143     SmallString<8> Str;
11144     llvm::raw_svector_ostream OS(Str);
11145     OS << "__i" << Depth;
11146     IterationVarName = &S.Context.Idents.get(OS.str());
11147   }
11148   VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
11149                                           IterationVarName, SizeType,
11150                             S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
11151                                           SC_None);
11152 
11153   // Initialize the iteration variable to zero.
11154   llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
11155   IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
11156 
11157   // Creates a reference to the iteration variable.
11158   RefBuilder IterationVarRef(IterationVar, SizeType);
11159   LvalueConvBuilder IterationVarRefRVal(IterationVarRef);
11160 
11161   // Create the DeclStmt that holds the iteration variable.
11162   Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
11163 
11164   // Subscript the "from" and "to" expressions with the iteration variable.
11165   SubscriptBuilder FromIndexCopy(From, IterationVarRefRVal);
11166   MoveCastBuilder FromIndexMove(FromIndexCopy);
11167   const ExprBuilder *FromIndex;
11168   if (Copying)
11169     FromIndex = &FromIndexCopy;
11170   else
11171     FromIndex = &FromIndexMove;
11172 
11173   SubscriptBuilder ToIndex(To, IterationVarRefRVal);
11174 
11175   // Build the copy/move for an individual element of the array.
11176   StmtResult Copy =
11177     buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
11178                                      ToIndex, *FromIndex, CopyingBaseSubobject,
11179                                      Copying, Depth + 1);
11180   // Bail out if copying fails or if we determined that we should use memcpy.
11181   if (Copy.isInvalid() || !Copy.get())
11182     return Copy;
11183 
11184   // Create the comparison against the array bound.
11185   llvm::APInt Upper
11186     = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
11187   Expr *Comparison
11188     = new (S.Context) BinaryOperator(IterationVarRefRVal.build(S, Loc),
11189                      IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
11190                                      BO_NE, S.Context.BoolTy,
11191                                      VK_RValue, OK_Ordinary, Loc, FPOptions());
11192 
11193   // Create the pre-increment of the iteration variable.
11194   Expr *Increment
11195     = new (S.Context) UnaryOperator(IterationVarRef.build(S, Loc), UO_PreInc,
11196                                     SizeType, VK_LValue, OK_Ordinary, Loc);
11197 
11198   // Construct the loop that copies all elements of this array.
11199   return S.ActOnForStmt(
11200       Loc, Loc, InitStmt,
11201       S.ActOnCondition(nullptr, Loc, Comparison, Sema::ConditionKind::Boolean),
11202       S.MakeFullDiscardedValueExpr(Increment), Loc, Copy.get());
11203 }
11204 
11205 static StmtResult
11206 buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
11207                       const ExprBuilder &To, const ExprBuilder &From,
11208                       bool CopyingBaseSubobject, bool Copying) {
11209   // Maybe we should use a memcpy?
11210   if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
11211       T.isTriviallyCopyableType(S.Context))
11212     return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
11213 
11214   StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
11215                                                      CopyingBaseSubobject,
11216                                                      Copying, 0));
11217 
11218   // If we ended up picking a trivial assignment operator for an array of a
11219   // non-trivially-copyable class type, just emit a memcpy.
11220   if (!Result.isInvalid() && !Result.get())
11221     return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
11222 
11223   return Result;
11224 }
11225 
11226 CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
11227   // Note: The following rules are largely analoguous to the copy
11228   // constructor rules. Note that virtual bases are not taken into account
11229   // for determining the argument type of the operator. Note also that
11230   // operators taking an object instead of a reference are allowed.
11231   assert(ClassDecl->needsImplicitCopyAssignment());
11232 
11233   DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment);
11234   if (DSM.isAlreadyBeingDeclared())
11235     return nullptr;
11236 
11237   QualType ArgType = Context.getTypeDeclType(ClassDecl);
11238   QualType RetType = Context.getLValueReferenceType(ArgType);
11239   bool Const = ClassDecl->implicitCopyAssignmentHasConstParam();
11240   if (Const)
11241     ArgType = ArgType.withConst();
11242   ArgType = Context.getLValueReferenceType(ArgType);
11243 
11244   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
11245                                                      CXXCopyAssignment,
11246                                                      Const);
11247 
11248   //   An implicitly-declared copy assignment operator is an inline public
11249   //   member of its class.
11250   DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
11251   SourceLocation ClassLoc = ClassDecl->getLocation();
11252   DeclarationNameInfo NameInfo(Name, ClassLoc);
11253   CXXMethodDecl *CopyAssignment =
11254       CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
11255                             /*TInfo=*/nullptr, /*StorageClass=*/SC_None,
11256                             /*isInline=*/true, Constexpr, SourceLocation());
11257   CopyAssignment->setAccess(AS_public);
11258   CopyAssignment->setDefaulted();
11259   CopyAssignment->setImplicit();
11260 
11261   if (getLangOpts().CUDA) {
11262     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyAssignment,
11263                                             CopyAssignment,
11264                                             /* ConstRHS */ Const,
11265                                             /* Diagnose */ false);
11266   }
11267 
11268   // Build an exception specification pointing back at this member.
11269   FunctionProtoType::ExtProtoInfo EPI =
11270       getImplicitMethodEPI(*this, CopyAssignment);
11271   CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
11272 
11273   // Add the parameter to the operator.
11274   ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
11275                                                ClassLoc, ClassLoc,
11276                                                /*Id=*/nullptr, ArgType,
11277                                                /*TInfo=*/nullptr, SC_None,
11278                                                nullptr);
11279   CopyAssignment->setParams(FromParam);
11280 
11281   CopyAssignment->setTrivial(
11282     ClassDecl->needsOverloadResolutionForCopyAssignment()
11283       ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment)
11284       : ClassDecl->hasTrivialCopyAssignment());
11285 
11286   // Note that we have added this copy-assignment operator.
11287   ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
11288 
11289   Scope *S = getScopeForContext(ClassDecl);
11290   CheckImplicitSpecialMemberDeclaration(S, CopyAssignment);
11291 
11292   if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
11293     SetDeclDeleted(CopyAssignment, ClassLoc);
11294 
11295   if (S)
11296     PushOnScopeChains(CopyAssignment, S, false);
11297   ClassDecl->addDecl(CopyAssignment);
11298 
11299   return CopyAssignment;
11300 }
11301 
11302 /// Diagnose an implicit copy operation for a class which is odr-used, but
11303 /// which is deprecated because the class has a user-declared copy constructor,
11304 /// copy assignment operator, or destructor.
11305 static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp) {
11306   assert(CopyOp->isImplicit());
11307 
11308   CXXRecordDecl *RD = CopyOp->getParent();
11309   CXXMethodDecl *UserDeclaredOperation = nullptr;
11310 
11311   // In Microsoft mode, assignment operations don't affect constructors and
11312   // vice versa.
11313   if (RD->hasUserDeclaredDestructor()) {
11314     UserDeclaredOperation = RD->getDestructor();
11315   } else if (!isa<CXXConstructorDecl>(CopyOp) &&
11316              RD->hasUserDeclaredCopyConstructor() &&
11317              !S.getLangOpts().MSVCCompat) {
11318     // Find any user-declared copy constructor.
11319     for (auto *I : RD->ctors()) {
11320       if (I->isCopyConstructor()) {
11321         UserDeclaredOperation = I;
11322         break;
11323       }
11324     }
11325     assert(UserDeclaredOperation);
11326   } else if (isa<CXXConstructorDecl>(CopyOp) &&
11327              RD->hasUserDeclaredCopyAssignment() &&
11328              !S.getLangOpts().MSVCCompat) {
11329     // Find any user-declared move assignment operator.
11330     for (auto *I : RD->methods()) {
11331       if (I->isCopyAssignmentOperator()) {
11332         UserDeclaredOperation = I;
11333         break;
11334       }
11335     }
11336     assert(UserDeclaredOperation);
11337   }
11338 
11339   if (UserDeclaredOperation) {
11340     S.Diag(UserDeclaredOperation->getLocation(),
11341          diag::warn_deprecated_copy_operation)
11342       << RD << /*copy assignment*/!isa<CXXConstructorDecl>(CopyOp)
11343       << /*destructor*/isa<CXXDestructorDecl>(UserDeclaredOperation);
11344   }
11345 }
11346 
11347 void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
11348                                         CXXMethodDecl *CopyAssignOperator) {
11349   assert((CopyAssignOperator->isDefaulted() &&
11350           CopyAssignOperator->isOverloadedOperator() &&
11351           CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
11352           !CopyAssignOperator->doesThisDeclarationHaveABody() &&
11353           !CopyAssignOperator->isDeleted()) &&
11354          "DefineImplicitCopyAssignment called for wrong function");
11355   if (CopyAssignOperator->willHaveBody() || CopyAssignOperator->isInvalidDecl())
11356     return;
11357 
11358   CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
11359   if (ClassDecl->isInvalidDecl()) {
11360     CopyAssignOperator->setInvalidDecl();
11361     return;
11362   }
11363 
11364   SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
11365 
11366   // The exception specification is needed because we are defining the
11367   // function.
11368   ResolveExceptionSpec(CurrentLocation,
11369                        CopyAssignOperator->getType()->castAs<FunctionProtoType>());
11370 
11371   // Add a context note for diagnostics produced after this point.
11372   Scope.addContextNote(CurrentLocation);
11373 
11374   // C++11 [class.copy]p18:
11375   //   The [definition of an implicitly declared copy assignment operator] is
11376   //   deprecated if the class has a user-declared copy constructor or a
11377   //   user-declared destructor.
11378   if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit())
11379     diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator);
11380 
11381   // C++0x [class.copy]p30:
11382   //   The implicitly-defined or explicitly-defaulted copy assignment operator
11383   //   for a non-union class X performs memberwise copy assignment of its
11384   //   subobjects. The direct base classes of X are assigned first, in the
11385   //   order of their declaration in the base-specifier-list, and then the
11386   //   immediate non-static data members of X are assigned, in the order in
11387   //   which they were declared in the class definition.
11388 
11389   // The statements that form the synthesized function body.
11390   SmallVector<Stmt*, 8> Statements;
11391 
11392   // The parameter for the "other" object, which we are copying from.
11393   ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
11394   Qualifiers OtherQuals = Other->getType().getQualifiers();
11395   QualType OtherRefType = Other->getType();
11396   if (const LValueReferenceType *OtherRef
11397                                 = OtherRefType->getAs<LValueReferenceType>()) {
11398     OtherRefType = OtherRef->getPointeeType();
11399     OtherQuals = OtherRefType.getQualifiers();
11400   }
11401 
11402   // Our location for everything implicitly-generated.
11403   SourceLocation Loc = CopyAssignOperator->getLocEnd().isValid()
11404                            ? CopyAssignOperator->getLocEnd()
11405                            : CopyAssignOperator->getLocation();
11406 
11407   // Builds a DeclRefExpr for the "other" object.
11408   RefBuilder OtherRef(Other, OtherRefType);
11409 
11410   // Builds the "this" pointer.
11411   ThisBuilder This;
11412 
11413   // Assign base classes.
11414   bool Invalid = false;
11415   for (auto &Base : ClassDecl->bases()) {
11416     // Form the assignment:
11417     //   static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
11418     QualType BaseType = Base.getType().getUnqualifiedType();
11419     if (!BaseType->isRecordType()) {
11420       Invalid = true;
11421       continue;
11422     }
11423 
11424     CXXCastPath BasePath;
11425     BasePath.push_back(&Base);
11426 
11427     // Construct the "from" expression, which is an implicit cast to the
11428     // appropriately-qualified base type.
11429     CastBuilder From(OtherRef, Context.getQualifiedType(BaseType, OtherQuals),
11430                      VK_LValue, BasePath);
11431 
11432     // Dereference "this".
11433     DerefBuilder DerefThis(This);
11434     CastBuilder To(DerefThis,
11435                    Context.getCVRQualifiedType(
11436                        BaseType, CopyAssignOperator->getTypeQualifiers()),
11437                    VK_LValue, BasePath);
11438 
11439     // Build the copy.
11440     StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
11441                                             To, From,
11442                                             /*CopyingBaseSubobject=*/true,
11443                                             /*Copying=*/true);
11444     if (Copy.isInvalid()) {
11445       CopyAssignOperator->setInvalidDecl();
11446       return;
11447     }
11448 
11449     // Success! Record the copy.
11450     Statements.push_back(Copy.getAs<Expr>());
11451   }
11452 
11453   // Assign non-static members.
11454   for (auto *Field : ClassDecl->fields()) {
11455     // FIXME: We should form some kind of AST representation for the implied
11456     // memcpy in a union copy operation.
11457     if (Field->isUnnamedBitfield() || Field->getParent()->isUnion())
11458       continue;
11459 
11460     if (Field->isInvalidDecl()) {
11461       Invalid = true;
11462       continue;
11463     }
11464 
11465     // Check for members of reference type; we can't copy those.
11466     if (Field->getType()->isReferenceType()) {
11467       Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
11468         << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
11469       Diag(Field->getLocation(), diag::note_declared_at);
11470       Invalid = true;
11471       continue;
11472     }
11473 
11474     // Check for members of const-qualified, non-class type.
11475     QualType BaseType = Context.getBaseElementType(Field->getType());
11476     if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
11477       Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
11478         << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
11479       Diag(Field->getLocation(), diag::note_declared_at);
11480       Invalid = true;
11481       continue;
11482     }
11483 
11484     // Suppress assigning zero-width bitfields.
11485     if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
11486       continue;
11487 
11488     QualType FieldType = Field->getType().getNonReferenceType();
11489     if (FieldType->isIncompleteArrayType()) {
11490       assert(ClassDecl->hasFlexibleArrayMember() &&
11491              "Incomplete array type is not valid");
11492       continue;
11493     }
11494 
11495     // Build references to the field in the object we're copying from and to.
11496     CXXScopeSpec SS; // Intentionally empty
11497     LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
11498                               LookupMemberName);
11499     MemberLookup.addDecl(Field);
11500     MemberLookup.resolveKind();
11501 
11502     MemberBuilder From(OtherRef, OtherRefType, /*IsArrow=*/false, MemberLookup);
11503 
11504     MemberBuilder To(This, getCurrentThisType(), /*IsArrow=*/true, MemberLookup);
11505 
11506     // Build the copy of this field.
11507     StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
11508                                             To, From,
11509                                             /*CopyingBaseSubobject=*/false,
11510                                             /*Copying=*/true);
11511     if (Copy.isInvalid()) {
11512       CopyAssignOperator->setInvalidDecl();
11513       return;
11514     }
11515 
11516     // Success! Record the copy.
11517     Statements.push_back(Copy.getAs<Stmt>());
11518   }
11519 
11520   if (!Invalid) {
11521     // Add a "return *this;"
11522     ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc));
11523 
11524     StmtResult Return = BuildReturnStmt(Loc, ThisObj.get());
11525     if (Return.isInvalid())
11526       Invalid = true;
11527     else
11528       Statements.push_back(Return.getAs<Stmt>());
11529   }
11530 
11531   if (Invalid) {
11532     CopyAssignOperator->setInvalidDecl();
11533     return;
11534   }
11535 
11536   StmtResult Body;
11537   {
11538     CompoundScopeRAII CompoundScope(*this);
11539     Body = ActOnCompoundStmt(Loc, Loc, Statements,
11540                              /*isStmtExpr=*/false);
11541     assert(!Body.isInvalid() && "Compound statement creation cannot fail");
11542   }
11543   CopyAssignOperator->setBody(Body.getAs<Stmt>());
11544   CopyAssignOperator->markUsed(Context);
11545 
11546   if (ASTMutationListener *L = getASTMutationListener()) {
11547     L->CompletedImplicitDefinition(CopyAssignOperator);
11548   }
11549 }
11550 
11551 CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
11552   assert(ClassDecl->needsImplicitMoveAssignment());
11553 
11554   DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment);
11555   if (DSM.isAlreadyBeingDeclared())
11556     return nullptr;
11557 
11558   // Note: The following rules are largely analoguous to the move
11559   // constructor rules.
11560 
11561   QualType ArgType = Context.getTypeDeclType(ClassDecl);
11562   QualType RetType = Context.getLValueReferenceType(ArgType);
11563   ArgType = Context.getRValueReferenceType(ArgType);
11564 
11565   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
11566                                                      CXXMoveAssignment,
11567                                                      false);
11568 
11569   //   An implicitly-declared move assignment operator is an inline public
11570   //   member of its class.
11571   DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
11572   SourceLocation ClassLoc = ClassDecl->getLocation();
11573   DeclarationNameInfo NameInfo(Name, ClassLoc);
11574   CXXMethodDecl *MoveAssignment =
11575       CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
11576                             /*TInfo=*/nullptr, /*StorageClass=*/SC_None,
11577                             /*isInline=*/true, Constexpr, SourceLocation());
11578   MoveAssignment->setAccess(AS_public);
11579   MoveAssignment->setDefaulted();
11580   MoveAssignment->setImplicit();
11581 
11582   if (getLangOpts().CUDA) {
11583     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveAssignment,
11584                                             MoveAssignment,
11585                                             /* ConstRHS */ false,
11586                                             /* Diagnose */ false);
11587   }
11588 
11589   // Build an exception specification pointing back at this member.
11590   FunctionProtoType::ExtProtoInfo EPI =
11591       getImplicitMethodEPI(*this, MoveAssignment);
11592   MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
11593 
11594   // Add the parameter to the operator.
11595   ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
11596                                                ClassLoc, ClassLoc,
11597                                                /*Id=*/nullptr, ArgType,
11598                                                /*TInfo=*/nullptr, SC_None,
11599                                                nullptr);
11600   MoveAssignment->setParams(FromParam);
11601 
11602   MoveAssignment->setTrivial(
11603     ClassDecl->needsOverloadResolutionForMoveAssignment()
11604       ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment)
11605       : ClassDecl->hasTrivialMoveAssignment());
11606 
11607   // Note that we have added this copy-assignment operator.
11608   ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
11609 
11610   Scope *S = getScopeForContext(ClassDecl);
11611   CheckImplicitSpecialMemberDeclaration(S, MoveAssignment);
11612 
11613   if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
11614     ClassDecl->setImplicitMoveAssignmentIsDeleted();
11615     SetDeclDeleted(MoveAssignment, ClassLoc);
11616   }
11617 
11618   if (S)
11619     PushOnScopeChains(MoveAssignment, S, false);
11620   ClassDecl->addDecl(MoveAssignment);
11621 
11622   return MoveAssignment;
11623 }
11624 
11625 /// Check if we're implicitly defining a move assignment operator for a class
11626 /// with virtual bases. Such a move assignment might move-assign the virtual
11627 /// base multiple times.
11628 static void checkMoveAssignmentForRepeatedMove(Sema &S, CXXRecordDecl *Class,
11629                                                SourceLocation CurrentLocation) {
11630   assert(!Class->isDependentContext() && "should not define dependent move");
11631 
11632   // Only a virtual base could get implicitly move-assigned multiple times.
11633   // Only a non-trivial move assignment can observe this. We only want to
11634   // diagnose if we implicitly define an assignment operator that assigns
11635   // two base classes, both of which move-assign the same virtual base.
11636   if (Class->getNumVBases() == 0 || Class->hasTrivialMoveAssignment() ||
11637       Class->getNumBases() < 2)
11638     return;
11639 
11640   llvm::SmallVector<CXXBaseSpecifier *, 16> Worklist;
11641   typedef llvm::DenseMap<CXXRecordDecl*, CXXBaseSpecifier*> VBaseMap;
11642   VBaseMap VBases;
11643 
11644   for (auto &BI : Class->bases()) {
11645     Worklist.push_back(&BI);
11646     while (!Worklist.empty()) {
11647       CXXBaseSpecifier *BaseSpec = Worklist.pop_back_val();
11648       CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl();
11649 
11650       // If the base has no non-trivial move assignment operators,
11651       // we don't care about moves from it.
11652       if (!Base->hasNonTrivialMoveAssignment())
11653         continue;
11654 
11655       // If there's nothing virtual here, skip it.
11656       if (!BaseSpec->isVirtual() && !Base->getNumVBases())
11657         continue;
11658 
11659       // If we're not actually going to call a move assignment for this base,
11660       // or the selected move assignment is trivial, skip it.
11661       Sema::SpecialMemberOverloadResult SMOR =
11662         S.LookupSpecialMember(Base, Sema::CXXMoveAssignment,
11663                               /*ConstArg*/false, /*VolatileArg*/false,
11664                               /*RValueThis*/true, /*ConstThis*/false,
11665                               /*VolatileThis*/false);
11666       if (!SMOR.getMethod() || SMOR.getMethod()->isTrivial() ||
11667           !SMOR.getMethod()->isMoveAssignmentOperator())
11668         continue;
11669 
11670       if (BaseSpec->isVirtual()) {
11671         // We're going to move-assign this virtual base, and its move
11672         // assignment operator is not trivial. If this can happen for
11673         // multiple distinct direct bases of Class, diagnose it. (If it
11674         // only happens in one base, we'll diagnose it when synthesizing
11675         // that base class's move assignment operator.)
11676         CXXBaseSpecifier *&Existing =
11677             VBases.insert(std::make_pair(Base->getCanonicalDecl(), &BI))
11678                 .first->second;
11679         if (Existing && Existing != &BI) {
11680           S.Diag(CurrentLocation, diag::warn_vbase_moved_multiple_times)
11681             << Class << Base;
11682           S.Diag(Existing->getLocStart(), diag::note_vbase_moved_here)
11683             << (Base->getCanonicalDecl() ==
11684                 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl())
11685             << Base << Existing->getType() << Existing->getSourceRange();
11686           S.Diag(BI.getLocStart(), diag::note_vbase_moved_here)
11687             << (Base->getCanonicalDecl() ==
11688                 BI.getType()->getAsCXXRecordDecl()->getCanonicalDecl())
11689             << Base << BI.getType() << BaseSpec->getSourceRange();
11690 
11691           // Only diagnose each vbase once.
11692           Existing = nullptr;
11693         }
11694       } else {
11695         // Only walk over bases that have defaulted move assignment operators.
11696         // We assume that any user-provided move assignment operator handles
11697         // the multiple-moves-of-vbase case itself somehow.
11698         if (!SMOR.getMethod()->isDefaulted())
11699           continue;
11700 
11701         // We're going to move the base classes of Base. Add them to the list.
11702         for (auto &BI : Base->bases())
11703           Worklist.push_back(&BI);
11704       }
11705     }
11706   }
11707 }
11708 
11709 void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
11710                                         CXXMethodDecl *MoveAssignOperator) {
11711   assert((MoveAssignOperator->isDefaulted() &&
11712           MoveAssignOperator->isOverloadedOperator() &&
11713           MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
11714           !MoveAssignOperator->doesThisDeclarationHaveABody() &&
11715           !MoveAssignOperator->isDeleted()) &&
11716          "DefineImplicitMoveAssignment called for wrong function");
11717   if (MoveAssignOperator->willHaveBody() || MoveAssignOperator->isInvalidDecl())
11718     return;
11719 
11720   CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
11721   if (ClassDecl->isInvalidDecl()) {
11722     MoveAssignOperator->setInvalidDecl();
11723     return;
11724   }
11725 
11726   // C++0x [class.copy]p28:
11727   //   The implicitly-defined or move assignment operator for a non-union class
11728   //   X performs memberwise move assignment of its subobjects. The direct base
11729   //   classes of X are assigned first, in the order of their declaration in the
11730   //   base-specifier-list, and then the immediate non-static data members of X
11731   //   are assigned, in the order in which they were declared in the class
11732   //   definition.
11733 
11734   // Issue a warning if our implicit move assignment operator will move
11735   // from a virtual base more than once.
11736   checkMoveAssignmentForRepeatedMove(*this, ClassDecl, CurrentLocation);
11737 
11738   SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
11739 
11740   // The exception specification is needed because we are defining the
11741   // function.
11742   ResolveExceptionSpec(CurrentLocation,
11743                        MoveAssignOperator->getType()->castAs<FunctionProtoType>());
11744 
11745   // Add a context note for diagnostics produced after this point.
11746   Scope.addContextNote(CurrentLocation);
11747 
11748   // The statements that form the synthesized function body.
11749   SmallVector<Stmt*, 8> Statements;
11750 
11751   // The parameter for the "other" object, which we are move from.
11752   ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
11753   QualType OtherRefType = Other->getType()->
11754       getAs<RValueReferenceType>()->getPointeeType();
11755   assert(!OtherRefType.getQualifiers() &&
11756          "Bad argument type of defaulted move assignment");
11757 
11758   // Our location for everything implicitly-generated.
11759   SourceLocation Loc = MoveAssignOperator->getLocEnd().isValid()
11760                            ? MoveAssignOperator->getLocEnd()
11761                            : MoveAssignOperator->getLocation();
11762 
11763   // Builds a reference to the "other" object.
11764   RefBuilder OtherRef(Other, OtherRefType);
11765   // Cast to rvalue.
11766   MoveCastBuilder MoveOther(OtherRef);
11767 
11768   // Builds the "this" pointer.
11769   ThisBuilder This;
11770 
11771   // Assign base classes.
11772   bool Invalid = false;
11773   for (auto &Base : ClassDecl->bases()) {
11774     // C++11 [class.copy]p28:
11775     //   It is unspecified whether subobjects representing virtual base classes
11776     //   are assigned more than once by the implicitly-defined copy assignment
11777     //   operator.
11778     // FIXME: Do not assign to a vbase that will be assigned by some other base
11779     // class. For a move-assignment, this can result in the vbase being moved
11780     // multiple times.
11781 
11782     // Form the assignment:
11783     //   static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
11784     QualType BaseType = Base.getType().getUnqualifiedType();
11785     if (!BaseType->isRecordType()) {
11786       Invalid = true;
11787       continue;
11788     }
11789 
11790     CXXCastPath BasePath;
11791     BasePath.push_back(&Base);
11792 
11793     // Construct the "from" expression, which is an implicit cast to the
11794     // appropriately-qualified base type.
11795     CastBuilder From(OtherRef, BaseType, VK_XValue, BasePath);
11796 
11797     // Dereference "this".
11798     DerefBuilder DerefThis(This);
11799 
11800     // Implicitly cast "this" to the appropriately-qualified base type.
11801     CastBuilder To(DerefThis,
11802                    Context.getCVRQualifiedType(
11803                        BaseType, MoveAssignOperator->getTypeQualifiers()),
11804                    VK_LValue, BasePath);
11805 
11806     // Build the move.
11807     StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
11808                                             To, From,
11809                                             /*CopyingBaseSubobject=*/true,
11810                                             /*Copying=*/false);
11811     if (Move.isInvalid()) {
11812       MoveAssignOperator->setInvalidDecl();
11813       return;
11814     }
11815 
11816     // Success! Record the move.
11817     Statements.push_back(Move.getAs<Expr>());
11818   }
11819 
11820   // Assign non-static members.
11821   for (auto *Field : ClassDecl->fields()) {
11822     // FIXME: We should form some kind of AST representation for the implied
11823     // memcpy in a union copy operation.
11824     if (Field->isUnnamedBitfield() || Field->getParent()->isUnion())
11825       continue;
11826 
11827     if (Field->isInvalidDecl()) {
11828       Invalid = true;
11829       continue;
11830     }
11831 
11832     // Check for members of reference type; we can't move those.
11833     if (Field->getType()->isReferenceType()) {
11834       Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
11835         << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
11836       Diag(Field->getLocation(), diag::note_declared_at);
11837       Invalid = true;
11838       continue;
11839     }
11840 
11841     // Check for members of const-qualified, non-class type.
11842     QualType BaseType = Context.getBaseElementType(Field->getType());
11843     if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
11844       Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
11845         << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
11846       Diag(Field->getLocation(), diag::note_declared_at);
11847       Invalid = true;
11848       continue;
11849     }
11850 
11851     // Suppress assigning zero-width bitfields.
11852     if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
11853       continue;
11854 
11855     QualType FieldType = Field->getType().getNonReferenceType();
11856     if (FieldType->isIncompleteArrayType()) {
11857       assert(ClassDecl->hasFlexibleArrayMember() &&
11858              "Incomplete array type is not valid");
11859       continue;
11860     }
11861 
11862     // Build references to the field in the object we're copying from and to.
11863     LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
11864                               LookupMemberName);
11865     MemberLookup.addDecl(Field);
11866     MemberLookup.resolveKind();
11867     MemberBuilder From(MoveOther, OtherRefType,
11868                        /*IsArrow=*/false, MemberLookup);
11869     MemberBuilder To(This, getCurrentThisType(),
11870                      /*IsArrow=*/true, MemberLookup);
11871 
11872     assert(!From.build(*this, Loc)->isLValue() && // could be xvalue or prvalue
11873         "Member reference with rvalue base must be rvalue except for reference "
11874         "members, which aren't allowed for move assignment.");
11875 
11876     // Build the move of this field.
11877     StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
11878                                             To, From,
11879                                             /*CopyingBaseSubobject=*/false,
11880                                             /*Copying=*/false);
11881     if (Move.isInvalid()) {
11882       MoveAssignOperator->setInvalidDecl();
11883       return;
11884     }
11885 
11886     // Success! Record the copy.
11887     Statements.push_back(Move.getAs<Stmt>());
11888   }
11889 
11890   if (!Invalid) {
11891     // Add a "return *this;"
11892     ExprResult ThisObj =
11893         CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc));
11894 
11895     StmtResult Return = BuildReturnStmt(Loc, ThisObj.get());
11896     if (Return.isInvalid())
11897       Invalid = true;
11898     else
11899       Statements.push_back(Return.getAs<Stmt>());
11900   }
11901 
11902   if (Invalid) {
11903     MoveAssignOperator->setInvalidDecl();
11904     return;
11905   }
11906 
11907   StmtResult Body;
11908   {
11909     CompoundScopeRAII CompoundScope(*this);
11910     Body = ActOnCompoundStmt(Loc, Loc, Statements,
11911                              /*isStmtExpr=*/false);
11912     assert(!Body.isInvalid() && "Compound statement creation cannot fail");
11913   }
11914   MoveAssignOperator->setBody(Body.getAs<Stmt>());
11915   MoveAssignOperator->markUsed(Context);
11916 
11917   if (ASTMutationListener *L = getASTMutationListener()) {
11918     L->CompletedImplicitDefinition(MoveAssignOperator);
11919   }
11920 }
11921 
11922 CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
11923                                                     CXXRecordDecl *ClassDecl) {
11924   // C++ [class.copy]p4:
11925   //   If the class definition does not explicitly declare a copy
11926   //   constructor, one is declared implicitly.
11927   assert(ClassDecl->needsImplicitCopyConstructor());
11928 
11929   DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor);
11930   if (DSM.isAlreadyBeingDeclared())
11931     return nullptr;
11932 
11933   QualType ClassType = Context.getTypeDeclType(ClassDecl);
11934   QualType ArgType = ClassType;
11935   bool Const = ClassDecl->implicitCopyConstructorHasConstParam();
11936   if (Const)
11937     ArgType = ArgType.withConst();
11938   ArgType = Context.getLValueReferenceType(ArgType);
11939 
11940   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
11941                                                      CXXCopyConstructor,
11942                                                      Const);
11943 
11944   DeclarationName Name
11945     = Context.DeclarationNames.getCXXConstructorName(
11946                                            Context.getCanonicalType(ClassType));
11947   SourceLocation ClassLoc = ClassDecl->getLocation();
11948   DeclarationNameInfo NameInfo(Name, ClassLoc);
11949 
11950   //   An implicitly-declared copy constructor is an inline public
11951   //   member of its class.
11952   CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
11953       Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr,
11954       /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
11955       Constexpr);
11956   CopyConstructor->setAccess(AS_public);
11957   CopyConstructor->setDefaulted();
11958 
11959   if (getLangOpts().CUDA) {
11960     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyConstructor,
11961                                             CopyConstructor,
11962                                             /* ConstRHS */ Const,
11963                                             /* Diagnose */ false);
11964   }
11965 
11966   // Build an exception specification pointing back at this member.
11967   FunctionProtoType::ExtProtoInfo EPI =
11968       getImplicitMethodEPI(*this, CopyConstructor);
11969   CopyConstructor->setType(
11970       Context.getFunctionType(Context.VoidTy, ArgType, EPI));
11971 
11972   // Add the parameter to the constructor.
11973   ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
11974                                                ClassLoc, ClassLoc,
11975                                                /*IdentifierInfo=*/nullptr,
11976                                                ArgType, /*TInfo=*/nullptr,
11977                                                SC_None, nullptr);
11978   CopyConstructor->setParams(FromParam);
11979 
11980   CopyConstructor->setTrivial(
11981     ClassDecl->needsOverloadResolutionForCopyConstructor()
11982       ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor)
11983       : ClassDecl->hasTrivialCopyConstructor());
11984 
11985   // Note that we have declared this constructor.
11986   ++ASTContext::NumImplicitCopyConstructorsDeclared;
11987 
11988   Scope *S = getScopeForContext(ClassDecl);
11989   CheckImplicitSpecialMemberDeclaration(S, CopyConstructor);
11990 
11991   if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor)) {
11992     ClassDecl->setImplicitCopyConstructorIsDeleted();
11993     SetDeclDeleted(CopyConstructor, ClassLoc);
11994   }
11995 
11996   if (S)
11997     PushOnScopeChains(CopyConstructor, S, false);
11998   ClassDecl->addDecl(CopyConstructor);
11999 
12000   return CopyConstructor;
12001 }
12002 
12003 void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
12004                                          CXXConstructorDecl *CopyConstructor) {
12005   assert((CopyConstructor->isDefaulted() &&
12006           CopyConstructor->isCopyConstructor() &&
12007           !CopyConstructor->doesThisDeclarationHaveABody() &&
12008           !CopyConstructor->isDeleted()) &&
12009          "DefineImplicitCopyConstructor - call it for implicit copy ctor");
12010   if (CopyConstructor->willHaveBody() || CopyConstructor->isInvalidDecl())
12011     return;
12012 
12013   CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
12014   assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
12015 
12016   SynthesizedFunctionScope Scope(*this, CopyConstructor);
12017 
12018   // The exception specification is needed because we are defining the
12019   // function.
12020   ResolveExceptionSpec(CurrentLocation,
12021                        CopyConstructor->getType()->castAs<FunctionProtoType>());
12022   MarkVTableUsed(CurrentLocation, ClassDecl);
12023 
12024   // Add a context note for diagnostics produced after this point.
12025   Scope.addContextNote(CurrentLocation);
12026 
12027   // C++11 [class.copy]p7:
12028   //   The [definition of an implicitly declared copy constructor] is
12029   //   deprecated if the class has a user-declared copy assignment operator
12030   //   or a user-declared destructor.
12031   if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit())
12032     diagnoseDeprecatedCopyOperation(*this, CopyConstructor);
12033 
12034   if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false)) {
12035     CopyConstructor->setInvalidDecl();
12036   }  else {
12037     SourceLocation Loc = CopyConstructor->getLocEnd().isValid()
12038                              ? CopyConstructor->getLocEnd()
12039                              : CopyConstructor->getLocation();
12040     Sema::CompoundScopeRAII CompoundScope(*this);
12041     CopyConstructor->setBody(
12042         ActOnCompoundStmt(Loc, Loc, None, /*isStmtExpr=*/false).getAs<Stmt>());
12043     CopyConstructor->markUsed(Context);
12044   }
12045 
12046   if (ASTMutationListener *L = getASTMutationListener()) {
12047     L->CompletedImplicitDefinition(CopyConstructor);
12048   }
12049 }
12050 
12051 CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
12052                                                     CXXRecordDecl *ClassDecl) {
12053   assert(ClassDecl->needsImplicitMoveConstructor());
12054 
12055   DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor);
12056   if (DSM.isAlreadyBeingDeclared())
12057     return nullptr;
12058 
12059   QualType ClassType = Context.getTypeDeclType(ClassDecl);
12060   QualType ArgType = Context.getRValueReferenceType(ClassType);
12061 
12062   bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
12063                                                      CXXMoveConstructor,
12064                                                      false);
12065 
12066   DeclarationName Name
12067     = Context.DeclarationNames.getCXXConstructorName(
12068                                            Context.getCanonicalType(ClassType));
12069   SourceLocation ClassLoc = ClassDecl->getLocation();
12070   DeclarationNameInfo NameInfo(Name, ClassLoc);
12071 
12072   // C++11 [class.copy]p11:
12073   //   An implicitly-declared copy/move constructor is an inline public
12074   //   member of its class.
12075   CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
12076       Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr,
12077       /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
12078       Constexpr);
12079   MoveConstructor->setAccess(AS_public);
12080   MoveConstructor->setDefaulted();
12081 
12082   if (getLangOpts().CUDA) {
12083     inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveConstructor,
12084                                             MoveConstructor,
12085                                             /* ConstRHS */ false,
12086                                             /* Diagnose */ false);
12087   }
12088 
12089   // Build an exception specification pointing back at this member.
12090   FunctionProtoType::ExtProtoInfo EPI =
12091       getImplicitMethodEPI(*this, MoveConstructor);
12092   MoveConstructor->setType(
12093       Context.getFunctionType(Context.VoidTy, ArgType, EPI));
12094 
12095   // Add the parameter to the constructor.
12096   ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
12097                                                ClassLoc, ClassLoc,
12098                                                /*IdentifierInfo=*/nullptr,
12099                                                ArgType, /*TInfo=*/nullptr,
12100                                                SC_None, nullptr);
12101   MoveConstructor->setParams(FromParam);
12102 
12103   MoveConstructor->setTrivial(
12104     ClassDecl->needsOverloadResolutionForMoveConstructor()
12105       ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor)
12106       : ClassDecl->hasTrivialMoveConstructor());
12107 
12108   // Note that we have declared this constructor.
12109   ++ASTContext::NumImplicitMoveConstructorsDeclared;
12110 
12111   Scope *S = getScopeForContext(ClassDecl);
12112   CheckImplicitSpecialMemberDeclaration(S, MoveConstructor);
12113 
12114   if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
12115     ClassDecl->setImplicitMoveConstructorIsDeleted();
12116     SetDeclDeleted(MoveConstructor, ClassLoc);
12117   }
12118 
12119   if (S)
12120     PushOnScopeChains(MoveConstructor, S, false);
12121   ClassDecl->addDecl(MoveConstructor);
12122 
12123   return MoveConstructor;
12124 }
12125 
12126 void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
12127                                          CXXConstructorDecl *MoveConstructor) {
12128   assert((MoveConstructor->isDefaulted() &&
12129           MoveConstructor->isMoveConstructor() &&
12130           !MoveConstructor->doesThisDeclarationHaveABody() &&
12131           !MoveConstructor->isDeleted()) &&
12132          "DefineImplicitMoveConstructor - call it for implicit move ctor");
12133   if (MoveConstructor->willHaveBody() || MoveConstructor->isInvalidDecl())
12134     return;
12135 
12136   CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
12137   assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
12138 
12139   SynthesizedFunctionScope Scope(*this, MoveConstructor);
12140 
12141   // The exception specification is needed because we are defining the
12142   // function.
12143   ResolveExceptionSpec(CurrentLocation,
12144                        MoveConstructor->getType()->castAs<FunctionProtoType>());
12145   MarkVTableUsed(CurrentLocation, ClassDecl);
12146 
12147   // Add a context note for diagnostics produced after this point.
12148   Scope.addContextNote(CurrentLocation);
12149 
12150   if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false)) {
12151     MoveConstructor->setInvalidDecl();
12152   } else {
12153     SourceLocation Loc = MoveConstructor->getLocEnd().isValid()
12154                              ? MoveConstructor->getLocEnd()
12155                              : MoveConstructor->getLocation();
12156     Sema::CompoundScopeRAII CompoundScope(*this);
12157     MoveConstructor->setBody(ActOnCompoundStmt(
12158         Loc, Loc, None, /*isStmtExpr=*/ false).getAs<Stmt>());
12159     MoveConstructor->markUsed(Context);
12160   }
12161 
12162   if (ASTMutationListener *L = getASTMutationListener()) {
12163     L->CompletedImplicitDefinition(MoveConstructor);
12164   }
12165 }
12166 
12167 bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
12168   return FD->isDeleted() && FD->isDefaulted() && isa<CXXMethodDecl>(FD);
12169 }
12170 
12171 void Sema::DefineImplicitLambdaToFunctionPointerConversion(
12172                             SourceLocation CurrentLocation,
12173                             CXXConversionDecl *Conv) {
12174   SynthesizedFunctionScope Scope(*this, Conv);
12175 
12176   CXXRecordDecl *Lambda = Conv->getParent();
12177   CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator();
12178   // If we are defining a specialization of a conversion to function-ptr
12179   // cache the deduced template arguments for this specialization
12180   // so that we can use them to retrieve the corresponding call-operator
12181   // and static-invoker.
12182   const TemplateArgumentList *DeducedTemplateArgs = nullptr;
12183 
12184   // Retrieve the corresponding call-operator specialization.
12185   if (Lambda->isGenericLambda()) {
12186     assert(Conv->isFunctionTemplateSpecialization());
12187     FunctionTemplateDecl *CallOpTemplate =
12188         CallOp->getDescribedFunctionTemplate();
12189     DeducedTemplateArgs = Conv->getTemplateSpecializationArgs();
12190     void *InsertPos = nullptr;
12191     FunctionDecl *CallOpSpec = CallOpTemplate->findSpecialization(
12192                                                 DeducedTemplateArgs->asArray(),
12193                                                 InsertPos);
12194     assert(CallOpSpec &&
12195           "Conversion operator must have a corresponding call operator");
12196     CallOp = cast<CXXMethodDecl>(CallOpSpec);
12197   }
12198 
12199   // Mark the call operator referenced (and add to pending instantiations
12200   // if necessary).
12201   // For both the conversion and static-invoker template specializations
12202   // we construct their body's in this function, so no need to add them
12203   // to the PendingInstantiations.
12204   MarkFunctionReferenced(CurrentLocation, CallOp);
12205 
12206   // Retrieve the static invoker...
12207   CXXMethodDecl *Invoker = Lambda->getLambdaStaticInvoker();
12208   // ... and get the corresponding specialization for a generic lambda.
12209   if (Lambda->isGenericLambda()) {
12210     assert(DeducedTemplateArgs &&
12211       "Must have deduced template arguments from Conversion Operator");
12212     FunctionTemplateDecl *InvokeTemplate =
12213                           Invoker->getDescribedFunctionTemplate();
12214     void *InsertPos = nullptr;
12215     FunctionDecl *InvokeSpec = InvokeTemplate->findSpecialization(
12216                                                 DeducedTemplateArgs->asArray(),
12217                                                 InsertPos);
12218     assert(InvokeSpec &&
12219       "Must have a corresponding static invoker specialization");
12220     Invoker = cast<CXXMethodDecl>(InvokeSpec);
12221   }
12222   // Construct the body of the conversion function { return __invoke; }.
12223   Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(),
12224                                         VK_LValue, Conv->getLocation()).get();
12225    assert(FunctionRef && "Can't refer to __invoke function?");
12226    Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get();
12227    Conv->setBody(new (Context) CompoundStmt(Context, Return,
12228                                             Conv->getLocation(),
12229                                             Conv->getLocation()));
12230 
12231   Conv->markUsed(Context);
12232   Conv->setReferenced();
12233 
12234   // Fill in the __invoke function with a dummy implementation. IR generation
12235   // will fill in the actual details.
12236   Invoker->markUsed(Context);
12237   Invoker->setReferenced();
12238   Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation()));
12239 
12240   if (ASTMutationListener *L = getASTMutationListener()) {
12241     L->CompletedImplicitDefinition(Conv);
12242     L->CompletedImplicitDefinition(Invoker);
12243   }
12244 }
12245 
12246 
12247 
12248 void Sema::DefineImplicitLambdaToBlockPointerConversion(
12249        SourceLocation CurrentLocation,
12250        CXXConversionDecl *Conv)
12251 {
12252   assert(!Conv->getParent()->isGenericLambda());
12253 
12254   SynthesizedFunctionScope Scope(*this, Conv);
12255 
12256   // Copy-initialize the lambda object as needed to capture it.
12257   Expr *This = ActOnCXXThis(CurrentLocation).get();
12258   Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get();
12259 
12260   ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
12261                                                         Conv->getLocation(),
12262                                                         Conv, DerefThis);
12263 
12264   // If we're not under ARC, make sure we still get the _Block_copy/autorelease
12265   // behavior.  Note that only the general conversion function does this
12266   // (since it's unusable otherwise); in the case where we inline the
12267   // block literal, it has block literal lifetime semantics.
12268   if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
12269     BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
12270                                           CK_CopyAndAutoreleaseBlockObject,
12271                                           BuildBlock.get(), nullptr, VK_RValue);
12272 
12273   if (BuildBlock.isInvalid()) {
12274     Diag(CurrentLocation, diag::note_lambda_to_block_conv);
12275     Conv->setInvalidDecl();
12276     return;
12277   }
12278 
12279   // Create the return statement that returns the block from the conversion
12280   // function.
12281   StmtResult Return = BuildReturnStmt(Conv->getLocation(), BuildBlock.get());
12282   if (Return.isInvalid()) {
12283     Diag(CurrentLocation, diag::note_lambda_to_block_conv);
12284     Conv->setInvalidDecl();
12285     return;
12286   }
12287 
12288   // Set the body of the conversion function.
12289   Stmt *ReturnS = Return.get();
12290   Conv->setBody(new (Context) CompoundStmt(Context, ReturnS,
12291                                            Conv->getLocation(),
12292                                            Conv->getLocation()));
12293   Conv->markUsed(Context);
12294 
12295   // We're done; notify the mutation listener, if any.
12296   if (ASTMutationListener *L = getASTMutationListener()) {
12297     L->CompletedImplicitDefinition(Conv);
12298   }
12299 }
12300 
12301 /// \brief Determine whether the given list arguments contains exactly one
12302 /// "real" (non-default) argument.
12303 static bool hasOneRealArgument(MultiExprArg Args) {
12304   switch (Args.size()) {
12305   case 0:
12306     return false;
12307 
12308   default:
12309     if (!Args[1]->isDefaultArgument())
12310       return false;
12311 
12312     // fall through
12313   case 1:
12314     return !Args[0]->isDefaultArgument();
12315   }
12316 
12317   return false;
12318 }
12319 
12320 ExprResult
12321 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
12322                             NamedDecl *FoundDecl,
12323                             CXXConstructorDecl *Constructor,
12324                             MultiExprArg ExprArgs,
12325                             bool HadMultipleCandidates,
12326                             bool IsListInitialization,
12327                             bool IsStdInitListInitialization,
12328                             bool RequiresZeroInit,
12329                             unsigned ConstructKind,
12330                             SourceRange ParenRange) {
12331   bool Elidable = false;
12332 
12333   // C++0x [class.copy]p34:
12334   //   When certain criteria are met, an implementation is allowed to
12335   //   omit the copy/move construction of a class object, even if the
12336   //   copy/move constructor and/or destructor for the object have
12337   //   side effects. [...]
12338   //     - when a temporary class object that has not been bound to a
12339   //       reference (12.2) would be copied/moved to a class object
12340   //       with the same cv-unqualified type, the copy/move operation
12341   //       can be omitted by constructing the temporary object
12342   //       directly into the target of the omitted copy/move
12343   if (ConstructKind == CXXConstructExpr::CK_Complete && Constructor &&
12344       Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
12345     Expr *SubExpr = ExprArgs[0];
12346     Elidable = SubExpr->isTemporaryObject(
12347         Context, cast<CXXRecordDecl>(FoundDecl->getDeclContext()));
12348   }
12349 
12350   return BuildCXXConstructExpr(ConstructLoc, DeclInitType,
12351                                FoundDecl, Constructor,
12352                                Elidable, ExprArgs, HadMultipleCandidates,
12353                                IsListInitialization,
12354                                IsStdInitListInitialization, RequiresZeroInit,
12355                                ConstructKind, ParenRange);
12356 }
12357 
12358 ExprResult
12359 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
12360                             NamedDecl *FoundDecl,
12361                             CXXConstructorDecl *Constructor,
12362                             bool Elidable,
12363                             MultiExprArg ExprArgs,
12364                             bool HadMultipleCandidates,
12365                             bool IsListInitialization,
12366                             bool IsStdInitListInitialization,
12367                             bool RequiresZeroInit,
12368                             unsigned ConstructKind,
12369                             SourceRange ParenRange) {
12370   if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) {
12371     Constructor = findInheritingConstructor(ConstructLoc, Constructor, Shadow);
12372     if (DiagnoseUseOfDecl(Constructor, ConstructLoc))
12373       return ExprError();
12374   }
12375 
12376   return BuildCXXConstructExpr(
12377       ConstructLoc, DeclInitType, Constructor, Elidable, ExprArgs,
12378       HadMultipleCandidates, IsListInitialization, IsStdInitListInitialization,
12379       RequiresZeroInit, ConstructKind, ParenRange);
12380 }
12381 
12382 /// BuildCXXConstructExpr - Creates a complete call to a constructor,
12383 /// including handling of its default argument expressions.
12384 ExprResult
12385 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
12386                             CXXConstructorDecl *Constructor,
12387                             bool Elidable,
12388                             MultiExprArg ExprArgs,
12389                             bool HadMultipleCandidates,
12390                             bool IsListInitialization,
12391                             bool IsStdInitListInitialization,
12392                             bool RequiresZeroInit,
12393                             unsigned ConstructKind,
12394                             SourceRange ParenRange) {
12395   assert(declaresSameEntity(
12396              Constructor->getParent(),
12397              DeclInitType->getBaseElementTypeUnsafe()->getAsCXXRecordDecl()) &&
12398          "given constructor for wrong type");
12399   MarkFunctionReferenced(ConstructLoc, Constructor);
12400   if (getLangOpts().CUDA && !CheckCUDACall(ConstructLoc, Constructor))
12401     return ExprError();
12402 
12403   return CXXConstructExpr::Create(
12404       Context, DeclInitType, ConstructLoc, Constructor, Elidable,
12405       ExprArgs, HadMultipleCandidates, IsListInitialization,
12406       IsStdInitListInitialization, RequiresZeroInit,
12407       static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
12408       ParenRange);
12409 }
12410 
12411 ExprResult Sema::BuildCXXDefaultInitExpr(SourceLocation Loc, FieldDecl *Field) {
12412   assert(Field->hasInClassInitializer());
12413 
12414   // If we already have the in-class initializer nothing needs to be done.
12415   if (Field->getInClassInitializer())
12416     return CXXDefaultInitExpr::Create(Context, Loc, Field);
12417 
12418   // If we might have already tried and failed to instantiate, don't try again.
12419   if (Field->isInvalidDecl())
12420     return ExprError();
12421 
12422   // Maybe we haven't instantiated the in-class initializer. Go check the
12423   // pattern FieldDecl to see if it has one.
12424   CXXRecordDecl *ParentRD = cast<CXXRecordDecl>(Field->getParent());
12425 
12426   if (isTemplateInstantiation(ParentRD->getTemplateSpecializationKind())) {
12427     CXXRecordDecl *ClassPattern = ParentRD->getTemplateInstantiationPattern();
12428     DeclContext::lookup_result Lookup =
12429         ClassPattern->lookup(Field->getDeclName());
12430 
12431     // Lookup can return at most two results: the pattern for the field, or the
12432     // injected class name of the parent record. No other member can have the
12433     // same name as the field.
12434     // In modules mode, lookup can return multiple results (coming from
12435     // different modules).
12436     assert((getLangOpts().Modules || (!Lookup.empty() && Lookup.size() <= 2)) &&
12437            "more than two lookup results for field name");
12438     FieldDecl *Pattern = dyn_cast<FieldDecl>(Lookup[0]);
12439     if (!Pattern) {
12440       assert(isa<CXXRecordDecl>(Lookup[0]) &&
12441              "cannot have other non-field member with same name");
12442       for (auto L : Lookup)
12443         if (isa<FieldDecl>(L)) {
12444           Pattern = cast<FieldDecl>(L);
12445           break;
12446         }
12447       assert(Pattern && "We must have set the Pattern!");
12448     }
12449 
12450     if (!Pattern->hasInClassInitializer() ||
12451         InstantiateInClassInitializer(Loc, Field, Pattern,
12452                                       getTemplateInstantiationArgs(Field))) {
12453       // Don't diagnose this again.
12454       Field->setInvalidDecl();
12455       return ExprError();
12456     }
12457     return CXXDefaultInitExpr::Create(Context, Loc, Field);
12458   }
12459 
12460   // DR1351:
12461   //   If the brace-or-equal-initializer of a non-static data member
12462   //   invokes a defaulted default constructor of its class or of an
12463   //   enclosing class in a potentially evaluated subexpression, the
12464   //   program is ill-formed.
12465   //
12466   // This resolution is unworkable: the exception specification of the
12467   // default constructor can be needed in an unevaluated context, in
12468   // particular, in the operand of a noexcept-expression, and we can be
12469   // unable to compute an exception specification for an enclosed class.
12470   //
12471   // Any attempt to resolve the exception specification of a defaulted default
12472   // constructor before the initializer is lexically complete will ultimately
12473   // come here at which point we can diagnose it.
12474   RecordDecl *OutermostClass = ParentRD->getOuterLexicalRecordContext();
12475   Diag(Loc, diag::err_in_class_initializer_not_yet_parsed)
12476       << OutermostClass << Field;
12477   Diag(Field->getLocEnd(), diag::note_in_class_initializer_not_yet_parsed);
12478   // Recover by marking the field invalid, unless we're in a SFINAE context.
12479   if (!isSFINAEContext())
12480     Field->setInvalidDecl();
12481   return ExprError();
12482 }
12483 
12484 void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
12485   if (VD->isInvalidDecl()) return;
12486 
12487   CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
12488   if (ClassDecl->isInvalidDecl()) return;
12489   if (ClassDecl->hasIrrelevantDestructor()) return;
12490   if (ClassDecl->isDependentContext()) return;
12491 
12492   CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
12493   MarkFunctionReferenced(VD->getLocation(), Destructor);
12494   CheckDestructorAccess(VD->getLocation(), Destructor,
12495                         PDiag(diag::err_access_dtor_var)
12496                         << VD->getDeclName()
12497                         << VD->getType());
12498   DiagnoseUseOfDecl(Destructor, VD->getLocation());
12499 
12500   if (Destructor->isTrivial()) return;
12501   if (!VD->hasGlobalStorage()) return;
12502 
12503   // Emit warning for non-trivial dtor in global scope (a real global,
12504   // class-static, function-static).
12505   Diag(VD->getLocation(), diag::warn_exit_time_destructor);
12506 
12507   // TODO: this should be re-enabled for static locals by !CXAAtExit
12508   if (!VD->isStaticLocal())
12509     Diag(VD->getLocation(), diag::warn_global_destructor);
12510 }
12511 
12512 /// \brief Given a constructor and the set of arguments provided for the
12513 /// constructor, convert the arguments and add any required default arguments
12514 /// to form a proper call to this constructor.
12515 ///
12516 /// \returns true if an error occurred, false otherwise.
12517 bool
12518 Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
12519                               MultiExprArg ArgsPtr,
12520                               SourceLocation Loc,
12521                               SmallVectorImpl<Expr*> &ConvertedArgs,
12522                               bool AllowExplicit,
12523                               bool IsListInitialization) {
12524   // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
12525   unsigned NumArgs = ArgsPtr.size();
12526   Expr **Args = ArgsPtr.data();
12527 
12528   const FunctionProtoType *Proto
12529     = Constructor->getType()->getAs<FunctionProtoType>();
12530   assert(Proto && "Constructor without a prototype?");
12531   unsigned NumParams = Proto->getNumParams();
12532 
12533   // If too few arguments are available, we'll fill in the rest with defaults.
12534   if (NumArgs < NumParams)
12535     ConvertedArgs.reserve(NumParams);
12536   else
12537     ConvertedArgs.reserve(NumArgs);
12538 
12539   VariadicCallType CallType =
12540     Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
12541   SmallVector<Expr *, 8> AllArgs;
12542   bool Invalid = GatherArgumentsForCall(Loc, Constructor,
12543                                         Proto, 0,
12544                                         llvm::makeArrayRef(Args, NumArgs),
12545                                         AllArgs,
12546                                         CallType, AllowExplicit,
12547                                         IsListInitialization);
12548   ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
12549 
12550   DiagnoseSentinelCalls(Constructor, Loc, AllArgs);
12551 
12552   CheckConstructorCall(Constructor,
12553                        llvm::makeArrayRef(AllArgs.data(), AllArgs.size()),
12554                        Proto, Loc);
12555 
12556   return Invalid;
12557 }
12558 
12559 static inline bool
12560 CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
12561                                        const FunctionDecl *FnDecl) {
12562   const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
12563   if (isa<NamespaceDecl>(DC)) {
12564     return SemaRef.Diag(FnDecl->getLocation(),
12565                         diag::err_operator_new_delete_declared_in_namespace)
12566       << FnDecl->getDeclName();
12567   }
12568 
12569   if (isa<TranslationUnitDecl>(DC) &&
12570       FnDecl->getStorageClass() == SC_Static) {
12571     return SemaRef.Diag(FnDecl->getLocation(),
12572                         diag::err_operator_new_delete_declared_static)
12573       << FnDecl->getDeclName();
12574   }
12575 
12576   return false;
12577 }
12578 
12579 static inline bool
12580 CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
12581                             CanQualType ExpectedResultType,
12582                             CanQualType ExpectedFirstParamType,
12583                             unsigned DependentParamTypeDiag,
12584                             unsigned InvalidParamTypeDiag) {
12585   QualType ResultType =
12586       FnDecl->getType()->getAs<FunctionType>()->getReturnType();
12587 
12588   // Check that the result type is not dependent.
12589   if (ResultType->isDependentType())
12590     return SemaRef.Diag(FnDecl->getLocation(),
12591                         diag::err_operator_new_delete_dependent_result_type)
12592     << FnDecl->getDeclName() << ExpectedResultType;
12593 
12594   // Check that the result type is what we expect.
12595   if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
12596     return SemaRef.Diag(FnDecl->getLocation(),
12597                         diag::err_operator_new_delete_invalid_result_type)
12598     << FnDecl->getDeclName() << ExpectedResultType;
12599 
12600   // A function template must have at least 2 parameters.
12601   if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
12602     return SemaRef.Diag(FnDecl->getLocation(),
12603                       diag::err_operator_new_delete_template_too_few_parameters)
12604         << FnDecl->getDeclName();
12605 
12606   // The function decl must have at least 1 parameter.
12607   if (FnDecl->getNumParams() == 0)
12608     return SemaRef.Diag(FnDecl->getLocation(),
12609                         diag::err_operator_new_delete_too_few_parameters)
12610       << FnDecl->getDeclName();
12611 
12612   // Check the first parameter type is not dependent.
12613   QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
12614   if (FirstParamType->isDependentType())
12615     return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
12616       << FnDecl->getDeclName() << ExpectedFirstParamType;
12617 
12618   // Check that the first parameter type is what we expect.
12619   if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
12620       ExpectedFirstParamType)
12621     return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
12622     << FnDecl->getDeclName() << ExpectedFirstParamType;
12623 
12624   return false;
12625 }
12626 
12627 static bool
12628 CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
12629   // C++ [basic.stc.dynamic.allocation]p1:
12630   //   A program is ill-formed if an allocation function is declared in a
12631   //   namespace scope other than global scope or declared static in global
12632   //   scope.
12633   if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
12634     return true;
12635 
12636   CanQualType SizeTy =
12637     SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
12638 
12639   // C++ [basic.stc.dynamic.allocation]p1:
12640   //  The return type shall be void*. The first parameter shall have type
12641   //  std::size_t.
12642   if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
12643                                   SizeTy,
12644                                   diag::err_operator_new_dependent_param_type,
12645                                   diag::err_operator_new_param_type))
12646     return true;
12647 
12648   // C++ [basic.stc.dynamic.allocation]p1:
12649   //  The first parameter shall not have an associated default argument.
12650   if (FnDecl->getParamDecl(0)->hasDefaultArg())
12651     return SemaRef.Diag(FnDecl->getLocation(),
12652                         diag::err_operator_new_default_arg)
12653       << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
12654 
12655   return false;
12656 }
12657 
12658 static bool
12659 CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
12660   // C++ [basic.stc.dynamic.deallocation]p1:
12661   //   A program is ill-formed if deallocation functions are declared in a
12662   //   namespace scope other than global scope or declared static in global
12663   //   scope.
12664   if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
12665     return true;
12666 
12667   // C++ [basic.stc.dynamic.deallocation]p2:
12668   //   Each deallocation function shall return void and its first parameter
12669   //   shall be void*.
12670   if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
12671                                   SemaRef.Context.VoidPtrTy,
12672                                  diag::err_operator_delete_dependent_param_type,
12673                                  diag::err_operator_delete_param_type))
12674     return true;
12675 
12676   return false;
12677 }
12678 
12679 /// CheckOverloadedOperatorDeclaration - Check whether the declaration
12680 /// of this overloaded operator is well-formed. If so, returns false;
12681 /// otherwise, emits appropriate diagnostics and returns true.
12682 bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
12683   assert(FnDecl && FnDecl->isOverloadedOperator() &&
12684          "Expected an overloaded operator declaration");
12685 
12686   OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
12687 
12688   // C++ [over.oper]p5:
12689   //   The allocation and deallocation functions, operator new,
12690   //   operator new[], operator delete and operator delete[], are
12691   //   described completely in 3.7.3. The attributes and restrictions
12692   //   found in the rest of this subclause do not apply to them unless
12693   //   explicitly stated in 3.7.3.
12694   if (Op == OO_Delete || Op == OO_Array_Delete)
12695     return CheckOperatorDeleteDeclaration(*this, FnDecl);
12696 
12697   if (Op == OO_New || Op == OO_Array_New)
12698     return CheckOperatorNewDeclaration(*this, FnDecl);
12699 
12700   // C++ [over.oper]p6:
12701   //   An operator function shall either be a non-static member
12702   //   function or be a non-member function and have at least one
12703   //   parameter whose type is a class, a reference to a class, an
12704   //   enumeration, or a reference to an enumeration.
12705   if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
12706     if (MethodDecl->isStatic())
12707       return Diag(FnDecl->getLocation(),
12708                   diag::err_operator_overload_static) << FnDecl->getDeclName();
12709   } else {
12710     bool ClassOrEnumParam = false;
12711     for (auto Param : FnDecl->parameters()) {
12712       QualType ParamType = Param->getType().getNonReferenceType();
12713       if (ParamType->isDependentType() || ParamType->isRecordType() ||
12714           ParamType->isEnumeralType()) {
12715         ClassOrEnumParam = true;
12716         break;
12717       }
12718     }
12719 
12720     if (!ClassOrEnumParam)
12721       return Diag(FnDecl->getLocation(),
12722                   diag::err_operator_overload_needs_class_or_enum)
12723         << FnDecl->getDeclName();
12724   }
12725 
12726   // C++ [over.oper]p8:
12727   //   An operator function cannot have default arguments (8.3.6),
12728   //   except where explicitly stated below.
12729   //
12730   // Only the function-call operator allows default arguments
12731   // (C++ [over.call]p1).
12732   if (Op != OO_Call) {
12733     for (auto Param : FnDecl->parameters()) {
12734       if (Param->hasDefaultArg())
12735         return Diag(Param->getLocation(),
12736                     diag::err_operator_overload_default_arg)
12737           << FnDecl->getDeclName() << Param->getDefaultArgRange();
12738     }
12739   }
12740 
12741   static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
12742     { false, false, false }
12743 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
12744     , { Unary, Binary, MemberOnly }
12745 #include "clang/Basic/OperatorKinds.def"
12746   };
12747 
12748   bool CanBeUnaryOperator = OperatorUses[Op][0];
12749   bool CanBeBinaryOperator = OperatorUses[Op][1];
12750   bool MustBeMemberOperator = OperatorUses[Op][2];
12751 
12752   // C++ [over.oper]p8:
12753   //   [...] Operator functions cannot have more or fewer parameters
12754   //   than the number required for the corresponding operator, as
12755   //   described in the rest of this subclause.
12756   unsigned NumParams = FnDecl->getNumParams()
12757                      + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
12758   if (Op != OO_Call &&
12759       ((NumParams == 1 && !CanBeUnaryOperator) ||
12760        (NumParams == 2 && !CanBeBinaryOperator) ||
12761        (NumParams < 1) || (NumParams > 2))) {
12762     // We have the wrong number of parameters.
12763     unsigned ErrorKind;
12764     if (CanBeUnaryOperator && CanBeBinaryOperator) {
12765       ErrorKind = 2;  // 2 -> unary or binary.
12766     } else if (CanBeUnaryOperator) {
12767       ErrorKind = 0;  // 0 -> unary
12768     } else {
12769       assert(CanBeBinaryOperator &&
12770              "All non-call overloaded operators are unary or binary!");
12771       ErrorKind = 1;  // 1 -> binary
12772     }
12773 
12774     return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
12775       << FnDecl->getDeclName() << NumParams << ErrorKind;
12776   }
12777 
12778   // Overloaded operators other than operator() cannot be variadic.
12779   if (Op != OO_Call &&
12780       FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
12781     return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
12782       << FnDecl->getDeclName();
12783   }
12784 
12785   // Some operators must be non-static member functions.
12786   if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
12787     return Diag(FnDecl->getLocation(),
12788                 diag::err_operator_overload_must_be_member)
12789       << FnDecl->getDeclName();
12790   }
12791 
12792   // C++ [over.inc]p1:
12793   //   The user-defined function called operator++ implements the
12794   //   prefix and postfix ++ operator. If this function is a member
12795   //   function with no parameters, or a non-member function with one
12796   //   parameter of class or enumeration type, it defines the prefix
12797   //   increment operator ++ for objects of that type. If the function
12798   //   is a member function with one parameter (which shall be of type
12799   //   int) or a non-member function with two parameters (the second
12800   //   of which shall be of type int), it defines the postfix
12801   //   increment operator ++ for objects of that type.
12802   if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
12803     ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
12804     QualType ParamType = LastParam->getType();
12805 
12806     if (!ParamType->isSpecificBuiltinType(BuiltinType::Int) &&
12807         !ParamType->isDependentType())
12808       return Diag(LastParam->getLocation(),
12809                   diag::err_operator_overload_post_incdec_must_be_int)
12810         << LastParam->getType() << (Op == OO_MinusMinus);
12811   }
12812 
12813   return false;
12814 }
12815 
12816 static bool
12817 checkLiteralOperatorTemplateParameterList(Sema &SemaRef,
12818                                           FunctionTemplateDecl *TpDecl) {
12819   TemplateParameterList *TemplateParams = TpDecl->getTemplateParameters();
12820 
12821   // Must have one or two template parameters.
12822   if (TemplateParams->size() == 1) {
12823     NonTypeTemplateParmDecl *PmDecl =
12824         dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(0));
12825 
12826     // The template parameter must be a char parameter pack.
12827     if (PmDecl && PmDecl->isTemplateParameterPack() &&
12828         SemaRef.Context.hasSameType(PmDecl->getType(), SemaRef.Context.CharTy))
12829       return false;
12830 
12831   } else if (TemplateParams->size() == 2) {
12832     TemplateTypeParmDecl *PmType =
12833         dyn_cast<TemplateTypeParmDecl>(TemplateParams->getParam(0));
12834     NonTypeTemplateParmDecl *PmArgs =
12835         dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(1));
12836 
12837     // The second template parameter must be a parameter pack with the
12838     // first template parameter as its type.
12839     if (PmType && PmArgs && !PmType->isTemplateParameterPack() &&
12840         PmArgs->isTemplateParameterPack()) {
12841       const TemplateTypeParmType *TArgs =
12842           PmArgs->getType()->getAs<TemplateTypeParmType>();
12843       if (TArgs && TArgs->getDepth() == PmType->getDepth() &&
12844           TArgs->getIndex() == PmType->getIndex()) {
12845         if (!SemaRef.inTemplateInstantiation())
12846           SemaRef.Diag(TpDecl->getLocation(),
12847                        diag::ext_string_literal_operator_template);
12848         return false;
12849       }
12850     }
12851   }
12852 
12853   SemaRef.Diag(TpDecl->getTemplateParameters()->getSourceRange().getBegin(),
12854                diag::err_literal_operator_template)
12855       << TpDecl->getTemplateParameters()->getSourceRange();
12856   return true;
12857 }
12858 
12859 /// CheckLiteralOperatorDeclaration - Check whether the declaration
12860 /// of this literal operator function is well-formed. If so, returns
12861 /// false; otherwise, emits appropriate diagnostics and returns true.
12862 bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
12863   if (isa<CXXMethodDecl>(FnDecl)) {
12864     Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
12865       << FnDecl->getDeclName();
12866     return true;
12867   }
12868 
12869   if (FnDecl->isExternC()) {
12870     Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
12871     if (const LinkageSpecDecl *LSD =
12872             FnDecl->getDeclContext()->getExternCContext())
12873       Diag(LSD->getExternLoc(), diag::note_extern_c_begins_here);
12874     return true;
12875   }
12876 
12877   // This might be the definition of a literal operator template.
12878   FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
12879 
12880   // This might be a specialization of a literal operator template.
12881   if (!TpDecl)
12882     TpDecl = FnDecl->getPrimaryTemplate();
12883 
12884   // template <char...> type operator "" name() and
12885   // template <class T, T...> type operator "" name() are the only valid
12886   // template signatures, and the only valid signatures with no parameters.
12887   if (TpDecl) {
12888     if (FnDecl->param_size() != 0) {
12889       Diag(FnDecl->getLocation(),
12890            diag::err_literal_operator_template_with_params);
12891       return true;
12892     }
12893 
12894     if (checkLiteralOperatorTemplateParameterList(*this, TpDecl))
12895       return true;
12896 
12897   } else if (FnDecl->param_size() == 1) {
12898     const ParmVarDecl *Param = FnDecl->getParamDecl(0);
12899 
12900     QualType ParamType = Param->getType().getUnqualifiedType();
12901 
12902     // Only unsigned long long int, long double, any character type, and const
12903     // char * are allowed as the only parameters.
12904     if (ParamType->isSpecificBuiltinType(BuiltinType::ULongLong) ||
12905         ParamType->isSpecificBuiltinType(BuiltinType::LongDouble) ||
12906         Context.hasSameType(ParamType, Context.CharTy) ||
12907         Context.hasSameType(ParamType, Context.WideCharTy) ||
12908         Context.hasSameType(ParamType, Context.Char16Ty) ||
12909         Context.hasSameType(ParamType, Context.Char32Ty)) {
12910     } else if (const PointerType *Ptr = ParamType->getAs<PointerType>()) {
12911       QualType InnerType = Ptr->getPointeeType();
12912 
12913       // Pointer parameter must be a const char *.
12914       if (!(Context.hasSameType(InnerType.getUnqualifiedType(),
12915                                 Context.CharTy) &&
12916             InnerType.isConstQualified() && !InnerType.isVolatileQualified())) {
12917         Diag(Param->getSourceRange().getBegin(),
12918              diag::err_literal_operator_param)
12919             << ParamType << "'const char *'" << Param->getSourceRange();
12920         return true;
12921       }
12922 
12923     } else if (ParamType->isRealFloatingType()) {
12924       Diag(Param->getSourceRange().getBegin(), diag::err_literal_operator_param)
12925           << ParamType << Context.LongDoubleTy << Param->getSourceRange();
12926       return true;
12927 
12928     } else if (ParamType->isIntegerType()) {
12929       Diag(Param->getSourceRange().getBegin(), diag::err_literal_operator_param)
12930           << ParamType << Context.UnsignedLongLongTy << Param->getSourceRange();
12931       return true;
12932 
12933     } else {
12934       Diag(Param->getSourceRange().getBegin(),
12935            diag::err_literal_operator_invalid_param)
12936           << ParamType << Param->getSourceRange();
12937       return true;
12938     }
12939 
12940   } else if (FnDecl->param_size() == 2) {
12941     FunctionDecl::param_iterator Param = FnDecl->param_begin();
12942 
12943     // First, verify that the first parameter is correct.
12944 
12945     QualType FirstParamType = (*Param)->getType().getUnqualifiedType();
12946 
12947     // Two parameter function must have a pointer to const as a
12948     // first parameter; let's strip those qualifiers.
12949     const PointerType *PT = FirstParamType->getAs<PointerType>();
12950 
12951     if (!PT) {
12952       Diag((*Param)->getSourceRange().getBegin(),
12953            diag::err_literal_operator_param)
12954           << FirstParamType << "'const char *'" << (*Param)->getSourceRange();
12955       return true;
12956     }
12957 
12958     QualType PointeeType = PT->getPointeeType();
12959     // First parameter must be const
12960     if (!PointeeType.isConstQualified() || PointeeType.isVolatileQualified()) {
12961       Diag((*Param)->getSourceRange().getBegin(),
12962            diag::err_literal_operator_param)
12963           << FirstParamType << "'const char *'" << (*Param)->getSourceRange();
12964       return true;
12965     }
12966 
12967     QualType InnerType = PointeeType.getUnqualifiedType();
12968     // Only const char *, const wchar_t*, const char16_t*, and const char32_t*
12969     // are allowed as the first parameter to a two-parameter function
12970     if (!(Context.hasSameType(InnerType, Context.CharTy) ||
12971           Context.hasSameType(InnerType, Context.WideCharTy) ||
12972           Context.hasSameType(InnerType, Context.Char16Ty) ||
12973           Context.hasSameType(InnerType, Context.Char32Ty))) {
12974       Diag((*Param)->getSourceRange().getBegin(),
12975            diag::err_literal_operator_param)
12976           << FirstParamType << "'const char *'" << (*Param)->getSourceRange();
12977       return true;
12978     }
12979 
12980     // Move on to the second and final parameter.
12981     ++Param;
12982 
12983     // The second parameter must be a std::size_t.
12984     QualType SecondParamType = (*Param)->getType().getUnqualifiedType();
12985     if (!Context.hasSameType(SecondParamType, Context.getSizeType())) {
12986       Diag((*Param)->getSourceRange().getBegin(),
12987            diag::err_literal_operator_param)
12988           << SecondParamType << Context.getSizeType()
12989           << (*Param)->getSourceRange();
12990       return true;
12991     }
12992   } else {
12993     Diag(FnDecl->getLocation(), diag::err_literal_operator_bad_param_count);
12994     return true;
12995   }
12996 
12997   // Parameters are good.
12998 
12999   // A parameter-declaration-clause containing a default argument is not
13000   // equivalent to any of the permitted forms.
13001   for (auto Param : FnDecl->parameters()) {
13002     if (Param->hasDefaultArg()) {
13003       Diag(Param->getDefaultArgRange().getBegin(),
13004            diag::err_literal_operator_default_argument)
13005         << Param->getDefaultArgRange();
13006       break;
13007     }
13008   }
13009 
13010   StringRef LiteralName
13011     = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
13012   if (LiteralName[0] != '_') {
13013     // C++11 [usrlit.suffix]p1:
13014     //   Literal suffix identifiers that do not start with an underscore
13015     //   are reserved for future standardization.
13016     Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved)
13017       << StringLiteralParser::isValidUDSuffix(getLangOpts(), LiteralName);
13018   }
13019 
13020   return false;
13021 }
13022 
13023 /// ActOnStartLinkageSpecification - Parsed the beginning of a C++
13024 /// linkage specification, including the language and (if present)
13025 /// the '{'. ExternLoc is the location of the 'extern', Lang is the
13026 /// language string literal. LBraceLoc, if valid, provides the location of
13027 /// the '{' brace. Otherwise, this linkage specification does not
13028 /// have any braces.
13029 Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
13030                                            Expr *LangStr,
13031                                            SourceLocation LBraceLoc) {
13032   StringLiteral *Lit = cast<StringLiteral>(LangStr);
13033   if (!Lit->isAscii()) {
13034     Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_not_ascii)
13035       << LangStr->getSourceRange();
13036     return nullptr;
13037   }
13038 
13039   StringRef Lang = Lit->getString();
13040   LinkageSpecDecl::LanguageIDs Language;
13041   if (Lang == "C")
13042     Language = LinkageSpecDecl::lang_c;
13043   else if (Lang == "C++")
13044     Language = LinkageSpecDecl::lang_cxx;
13045   else {
13046     Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_unknown)
13047       << LangStr->getSourceRange();
13048     return nullptr;
13049   }
13050 
13051   // FIXME: Add all the various semantics of linkage specifications
13052 
13053   LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, ExternLoc,
13054                                                LangStr->getExprLoc(), Language,
13055                                                LBraceLoc.isValid());
13056   CurContext->addDecl(D);
13057   PushDeclContext(S, D);
13058   return D;
13059 }
13060 
13061 /// ActOnFinishLinkageSpecification - Complete the definition of
13062 /// the C++ linkage specification LinkageSpec. If RBraceLoc is
13063 /// valid, it's the position of the closing '}' brace in a linkage
13064 /// specification that uses braces.
13065 Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
13066                                             Decl *LinkageSpec,
13067                                             SourceLocation RBraceLoc) {
13068   if (RBraceLoc.isValid()) {
13069     LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
13070     LSDecl->setRBraceLoc(RBraceLoc);
13071   }
13072   PopDeclContext();
13073   return LinkageSpec;
13074 }
13075 
13076 Decl *Sema::ActOnEmptyDeclaration(Scope *S,
13077                                   AttributeList *AttrList,
13078                                   SourceLocation SemiLoc) {
13079   Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc);
13080   // Attribute declarations appertain to empty declaration so we handle
13081   // them here.
13082   if (AttrList)
13083     ProcessDeclAttributeList(S, ED, AttrList);
13084 
13085   CurContext->addDecl(ED);
13086   return ED;
13087 }
13088 
13089 /// \brief Perform semantic analysis for the variable declaration that
13090 /// occurs within a C++ catch clause, returning the newly-created
13091 /// variable.
13092 VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
13093                                          TypeSourceInfo *TInfo,
13094                                          SourceLocation StartLoc,
13095                                          SourceLocation Loc,
13096                                          IdentifierInfo *Name) {
13097   bool Invalid = false;
13098   QualType ExDeclType = TInfo->getType();
13099 
13100   // Arrays and functions decay.
13101   if (ExDeclType->isArrayType())
13102     ExDeclType = Context.getArrayDecayedType(ExDeclType);
13103   else if (ExDeclType->isFunctionType())
13104     ExDeclType = Context.getPointerType(ExDeclType);
13105 
13106   // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
13107   // The exception-declaration shall not denote a pointer or reference to an
13108   // incomplete type, other than [cv] void*.
13109   // N2844 forbids rvalue references.
13110   if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
13111     Diag(Loc, diag::err_catch_rvalue_ref);
13112     Invalid = true;
13113   }
13114 
13115   if (ExDeclType->isVariablyModifiedType()) {
13116     Diag(Loc, diag::err_catch_variably_modified) << ExDeclType;
13117     Invalid = true;
13118   }
13119 
13120   QualType BaseType = ExDeclType;
13121   int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
13122   unsigned DK = diag::err_catch_incomplete;
13123   if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
13124     BaseType = Ptr->getPointeeType();
13125     Mode = 1;
13126     DK = diag::err_catch_incomplete_ptr;
13127   } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
13128     // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
13129     BaseType = Ref->getPointeeType();
13130     Mode = 2;
13131     DK = diag::err_catch_incomplete_ref;
13132   }
13133   if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
13134       !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
13135     Invalid = true;
13136 
13137   if (!Invalid && !ExDeclType->isDependentType() &&
13138       RequireNonAbstractType(Loc, ExDeclType,
13139                              diag::err_abstract_type_in_decl,
13140                              AbstractVariableType))
13141     Invalid = true;
13142 
13143   // Only the non-fragile NeXT runtime currently supports C++ catches
13144   // of ObjC types, and no runtime supports catching ObjC types by value.
13145   if (!Invalid && getLangOpts().ObjC1) {
13146     QualType T = ExDeclType;
13147     if (const ReferenceType *RT = T->getAs<ReferenceType>())
13148       T = RT->getPointeeType();
13149 
13150     if (T->isObjCObjectType()) {
13151       Diag(Loc, diag::err_objc_object_catch);
13152       Invalid = true;
13153     } else if (T->isObjCObjectPointerType()) {
13154       // FIXME: should this be a test for macosx-fragile specifically?
13155       if (getLangOpts().ObjCRuntime.isFragile())
13156         Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
13157     }
13158   }
13159 
13160   VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
13161                                     ExDeclType, TInfo, SC_None);
13162   ExDecl->setExceptionVariable(true);
13163 
13164   // In ARC, infer 'retaining' for variables of retainable type.
13165   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
13166     Invalid = true;
13167 
13168   if (!Invalid && !ExDeclType->isDependentType()) {
13169     if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
13170       // Insulate this from anything else we might currently be parsing.
13171       EnterExpressionEvaluationContext scope(
13172           *this, ExpressionEvaluationContext::PotentiallyEvaluated);
13173 
13174       // C++ [except.handle]p16:
13175       //   The object declared in an exception-declaration or, if the
13176       //   exception-declaration does not specify a name, a temporary (12.2) is
13177       //   copy-initialized (8.5) from the exception object. [...]
13178       //   The object is destroyed when the handler exits, after the destruction
13179       //   of any automatic objects initialized within the handler.
13180       //
13181       // We just pretend to initialize the object with itself, then make sure
13182       // it can be destroyed later.
13183       QualType initType = Context.getExceptionObjectType(ExDeclType);
13184 
13185       InitializedEntity entity =
13186         InitializedEntity::InitializeVariable(ExDecl);
13187       InitializationKind initKind =
13188         InitializationKind::CreateCopy(Loc, SourceLocation());
13189 
13190       Expr *opaqueValue =
13191         new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
13192       InitializationSequence sequence(*this, entity, initKind, opaqueValue);
13193       ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue);
13194       if (result.isInvalid())
13195         Invalid = true;
13196       else {
13197         // If the constructor used was non-trivial, set this as the
13198         // "initializer".
13199         CXXConstructExpr *construct = result.getAs<CXXConstructExpr>();
13200         if (!construct->getConstructor()->isTrivial()) {
13201           Expr *init = MaybeCreateExprWithCleanups(construct);
13202           ExDecl->setInit(init);
13203         }
13204 
13205         // And make sure it's destructable.
13206         FinalizeVarWithDestructor(ExDecl, recordType);
13207       }
13208     }
13209   }
13210 
13211   if (Invalid)
13212     ExDecl->setInvalidDecl();
13213 
13214   return ExDecl;
13215 }
13216 
13217 /// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
13218 /// handler.
13219 Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
13220   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13221   bool Invalid = D.isInvalidType();
13222 
13223   // Check for unexpanded parameter packs.
13224   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
13225                                       UPPC_ExceptionType)) {
13226     TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
13227                                              D.getIdentifierLoc());
13228     Invalid = true;
13229   }
13230 
13231   IdentifierInfo *II = D.getIdentifier();
13232   if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
13233                                              LookupOrdinaryName,
13234                                              ForVisibleRedeclaration)) {
13235     // The scope should be freshly made just for us. There is just no way
13236     // it contains any previous declaration, except for function parameters in
13237     // a function-try-block's catch statement.
13238     assert(!S->isDeclScope(PrevDecl));
13239     if (isDeclInScope(PrevDecl, CurContext, S)) {
13240       Diag(D.getIdentifierLoc(), diag::err_redefinition)
13241         << D.getIdentifier();
13242       Diag(PrevDecl->getLocation(), diag::note_previous_definition);
13243       Invalid = true;
13244     } else if (PrevDecl->isTemplateParameter())
13245       // Maybe we will complain about the shadowed template parameter.
13246       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
13247   }
13248 
13249   if (D.getCXXScopeSpec().isSet() && !Invalid) {
13250     Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
13251       << D.getCXXScopeSpec().getRange();
13252     Invalid = true;
13253   }
13254 
13255   VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
13256                                               D.getLocStart(),
13257                                               D.getIdentifierLoc(),
13258                                               D.getIdentifier());
13259   if (Invalid)
13260     ExDecl->setInvalidDecl();
13261 
13262   // Add the exception declaration into this scope.
13263   if (II)
13264     PushOnScopeChains(ExDecl, S);
13265   else
13266     CurContext->addDecl(ExDecl);
13267 
13268   ProcessDeclAttributes(S, ExDecl, D);
13269   return ExDecl;
13270 }
13271 
13272 Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
13273                                          Expr *AssertExpr,
13274                                          Expr *AssertMessageExpr,
13275                                          SourceLocation RParenLoc) {
13276   StringLiteral *AssertMessage =
13277       AssertMessageExpr ? cast<StringLiteral>(AssertMessageExpr) : nullptr;
13278 
13279   if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
13280     return nullptr;
13281 
13282   return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
13283                                       AssertMessage, RParenLoc, false);
13284 }
13285 
13286 Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
13287                                          Expr *AssertExpr,
13288                                          StringLiteral *AssertMessage,
13289                                          SourceLocation RParenLoc,
13290                                          bool Failed) {
13291   assert(AssertExpr != nullptr && "Expected non-null condition");
13292   if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
13293       !Failed) {
13294     // In a static_assert-declaration, the constant-expression shall be a
13295     // constant expression that can be contextually converted to bool.
13296     ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
13297     if (Converted.isInvalid())
13298       Failed = true;
13299 
13300     llvm::APSInt Cond;
13301     if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
13302           diag::err_static_assert_expression_is_not_constant,
13303           /*AllowFold=*/false).isInvalid())
13304       Failed = true;
13305 
13306     if (!Failed && !Cond) {
13307       SmallString<256> MsgBuffer;
13308       llvm::raw_svector_ostream Msg(MsgBuffer);
13309       if (AssertMessage)
13310         AssertMessage->printPretty(Msg, nullptr, getPrintingPolicy());
13311 
13312       Expr *InnerCond = nullptr;
13313       std::string InnerCondDescription;
13314       std::tie(InnerCond, InnerCondDescription) =
13315         findFailedBooleanCondition(Converted.get(),
13316                                    /*AllowTopLevelCond=*/false);
13317       if (InnerCond) {
13318         Diag(StaticAssertLoc, diag::err_static_assert_requirement_failed)
13319           << InnerCondDescription << !AssertMessage
13320           << Msg.str() << InnerCond->getSourceRange();
13321       } else {
13322         Diag(StaticAssertLoc, diag::err_static_assert_failed)
13323           << !AssertMessage << Msg.str() << AssertExpr->getSourceRange();
13324       }
13325       Failed = true;
13326     }
13327   }
13328 
13329   ExprResult FullAssertExpr = ActOnFinishFullExpr(AssertExpr, StaticAssertLoc,
13330                                                   /*DiscardedValue*/false,
13331                                                   /*IsConstexpr*/true);
13332   if (FullAssertExpr.isInvalid())
13333     Failed = true;
13334   else
13335     AssertExpr = FullAssertExpr.get();
13336 
13337   Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
13338                                         AssertExpr, AssertMessage, RParenLoc,
13339                                         Failed);
13340 
13341   CurContext->addDecl(Decl);
13342   return Decl;
13343 }
13344 
13345 /// \brief Perform semantic analysis of the given friend type declaration.
13346 ///
13347 /// \returns A friend declaration that.
13348 FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
13349                                       SourceLocation FriendLoc,
13350                                       TypeSourceInfo *TSInfo) {
13351   assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
13352 
13353   QualType T = TSInfo->getType();
13354   SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
13355 
13356   // C++03 [class.friend]p2:
13357   //   An elaborated-type-specifier shall be used in a friend declaration
13358   //   for a class.*
13359   //
13360   //   * The class-key of the elaborated-type-specifier is required.
13361   if (!CodeSynthesisContexts.empty()) {
13362     // Do not complain about the form of friend template types during any kind
13363     // of code synthesis. For template instantiation, we will have complained
13364     // when the template was defined.
13365   } else {
13366     if (!T->isElaboratedTypeSpecifier()) {
13367       // If we evaluated the type to a record type, suggest putting
13368       // a tag in front.
13369       if (const RecordType *RT = T->getAs<RecordType>()) {
13370         RecordDecl *RD = RT->getDecl();
13371 
13372         SmallString<16> InsertionText(" ");
13373         InsertionText += RD->getKindName();
13374 
13375         Diag(TypeRange.getBegin(),
13376              getLangOpts().CPlusPlus11 ?
13377                diag::warn_cxx98_compat_unelaborated_friend_type :
13378                diag::ext_unelaborated_friend_type)
13379           << (unsigned) RD->getTagKind()
13380           << T
13381           << FixItHint::CreateInsertion(getLocForEndOfToken(FriendLoc),
13382                                         InsertionText);
13383       } else {
13384         Diag(FriendLoc,
13385              getLangOpts().CPlusPlus11 ?
13386                diag::warn_cxx98_compat_nonclass_type_friend :
13387                diag::ext_nonclass_type_friend)
13388           << T
13389           << TypeRange;
13390       }
13391     } else if (T->getAs<EnumType>()) {
13392       Diag(FriendLoc,
13393            getLangOpts().CPlusPlus11 ?
13394              diag::warn_cxx98_compat_enum_friend :
13395              diag::ext_enum_friend)
13396         << T
13397         << TypeRange;
13398     }
13399 
13400     // C++11 [class.friend]p3:
13401     //   A friend declaration that does not declare a function shall have one
13402     //   of the following forms:
13403     //     friend elaborated-type-specifier ;
13404     //     friend simple-type-specifier ;
13405     //     friend typename-specifier ;
13406     if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc)
13407       Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
13408   }
13409 
13410   //   If the type specifier in a friend declaration designates a (possibly
13411   //   cv-qualified) class type, that class is declared as a friend; otherwise,
13412   //   the friend declaration is ignored.
13413   return FriendDecl::Create(Context, CurContext,
13414                             TSInfo->getTypeLoc().getLocStart(), TSInfo,
13415                             FriendLoc);
13416 }
13417 
13418 /// Handle a friend tag declaration where the scope specifier was
13419 /// templated.
13420 Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
13421                                     unsigned TagSpec, SourceLocation TagLoc,
13422                                     CXXScopeSpec &SS,
13423                                     IdentifierInfo *Name,
13424                                     SourceLocation NameLoc,
13425                                     AttributeList *Attr,
13426                                     MultiTemplateParamsArg TempParamLists) {
13427   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
13428 
13429   bool IsMemberSpecialization = false;
13430   bool Invalid = false;
13431 
13432   if (TemplateParameterList *TemplateParams =
13433           MatchTemplateParametersToScopeSpecifier(
13434               TagLoc, NameLoc, SS, nullptr, TempParamLists, /*friend*/ true,
13435               IsMemberSpecialization, Invalid)) {
13436     if (TemplateParams->size() > 0) {
13437       // This is a declaration of a class template.
13438       if (Invalid)
13439         return nullptr;
13440 
13441       return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc, SS, Name,
13442                                 NameLoc, Attr, TemplateParams, AS_public,
13443                                 /*ModulePrivateLoc=*/SourceLocation(),
13444                                 FriendLoc, TempParamLists.size() - 1,
13445                                 TempParamLists.data()).get();
13446     } else {
13447       // The "template<>" header is extraneous.
13448       Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
13449         << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
13450       IsMemberSpecialization = true;
13451     }
13452   }
13453 
13454   if (Invalid) return nullptr;
13455 
13456   bool isAllExplicitSpecializations = true;
13457   for (unsigned I = TempParamLists.size(); I-- > 0; ) {
13458     if (TempParamLists[I]->size()) {
13459       isAllExplicitSpecializations = false;
13460       break;
13461     }
13462   }
13463 
13464   // FIXME: don't ignore attributes.
13465 
13466   // If it's explicit specializations all the way down, just forget
13467   // about the template header and build an appropriate non-templated
13468   // friend.  TODO: for source fidelity, remember the headers.
13469   if (isAllExplicitSpecializations) {
13470     if (SS.isEmpty()) {
13471       bool Owned = false;
13472       bool IsDependent = false;
13473       return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
13474                       Attr, AS_public,
13475                       /*ModulePrivateLoc=*/SourceLocation(),
13476                       MultiTemplateParamsArg(), Owned, IsDependent,
13477                       /*ScopedEnumKWLoc=*/SourceLocation(),
13478                       /*ScopedEnumUsesClassTag=*/false,
13479                       /*UnderlyingType=*/TypeResult(),
13480                       /*IsTypeSpecifier=*/false,
13481                       /*IsTemplateParamOrArg=*/false);
13482     }
13483 
13484     NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
13485     ElaboratedTypeKeyword Keyword
13486       = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
13487     QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
13488                                    *Name, NameLoc);
13489     if (T.isNull())
13490       return nullptr;
13491 
13492     TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
13493     if (isa<DependentNameType>(T)) {
13494       DependentNameTypeLoc TL =
13495           TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
13496       TL.setElaboratedKeywordLoc(TagLoc);
13497       TL.setQualifierLoc(QualifierLoc);
13498       TL.setNameLoc(NameLoc);
13499     } else {
13500       ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
13501       TL.setElaboratedKeywordLoc(TagLoc);
13502       TL.setQualifierLoc(QualifierLoc);
13503       TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc);
13504     }
13505 
13506     FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
13507                                             TSI, FriendLoc, TempParamLists);
13508     Friend->setAccess(AS_public);
13509     CurContext->addDecl(Friend);
13510     return Friend;
13511   }
13512 
13513   assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
13514 
13515 
13516 
13517   // Handle the case of a templated-scope friend class.  e.g.
13518   //   template <class T> class A<T>::B;
13519   // FIXME: we don't support these right now.
13520   Diag(NameLoc, diag::warn_template_qualified_friend_unsupported)
13521     << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext);
13522   ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
13523   QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
13524   TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
13525   DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
13526   TL.setElaboratedKeywordLoc(TagLoc);
13527   TL.setQualifierLoc(SS.getWithLocInContext(Context));
13528   TL.setNameLoc(NameLoc);
13529 
13530   FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
13531                                           TSI, FriendLoc, TempParamLists);
13532   Friend->setAccess(AS_public);
13533   Friend->setUnsupportedFriend(true);
13534   CurContext->addDecl(Friend);
13535   return Friend;
13536 }
13537 
13538 
13539 /// Handle a friend type declaration.  This works in tandem with
13540 /// ActOnTag.
13541 ///
13542 /// Notes on friend class templates:
13543 ///
13544 /// We generally treat friend class declarations as if they were
13545 /// declaring a class.  So, for example, the elaborated type specifier
13546 /// in a friend declaration is required to obey the restrictions of a
13547 /// class-head (i.e. no typedefs in the scope chain), template
13548 /// parameters are required to match up with simple template-ids, &c.
13549 /// However, unlike when declaring a template specialization, it's
13550 /// okay to refer to a template specialization without an empty
13551 /// template parameter declaration, e.g.
13552 ///   friend class A<T>::B<unsigned>;
13553 /// We permit this as a special case; if there are any template
13554 /// parameters present at all, require proper matching, i.e.
13555 ///   template <> template \<class T> friend class A<int>::B;
13556 Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
13557                                 MultiTemplateParamsArg TempParams) {
13558   SourceLocation Loc = DS.getLocStart();
13559 
13560   assert(DS.isFriendSpecified());
13561   assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
13562 
13563   // Try to convert the decl specifier to a type.  This works for
13564   // friend templates because ActOnTag never produces a ClassTemplateDecl
13565   // for a TUK_Friend.
13566   Declarator TheDeclarator(DS, Declarator::MemberContext);
13567   TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
13568   QualType T = TSI->getType();
13569   if (TheDeclarator.isInvalidType())
13570     return nullptr;
13571 
13572   if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
13573     return nullptr;
13574 
13575   // This is definitely an error in C++98.  It's probably meant to
13576   // be forbidden in C++0x, too, but the specification is just
13577   // poorly written.
13578   //
13579   // The problem is with declarations like the following:
13580   //   template <T> friend A<T>::foo;
13581   // where deciding whether a class C is a friend or not now hinges
13582   // on whether there exists an instantiation of A that causes
13583   // 'foo' to equal C.  There are restrictions on class-heads
13584   // (which we declare (by fiat) elaborated friend declarations to
13585   // be) that makes this tractable.
13586   //
13587   // FIXME: handle "template <> friend class A<T>;", which
13588   // is possibly well-formed?  Who even knows?
13589   if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
13590     Diag(Loc, diag::err_tagless_friend_type_template)
13591       << DS.getSourceRange();
13592     return nullptr;
13593   }
13594 
13595   // C++98 [class.friend]p1: A friend of a class is a function
13596   //   or class that is not a member of the class . . .
13597   // This is fixed in DR77, which just barely didn't make the C++03
13598   // deadline.  It's also a very silly restriction that seriously
13599   // affects inner classes and which nobody else seems to implement;
13600   // thus we never diagnose it, not even in -pedantic.
13601   //
13602   // But note that we could warn about it: it's always useless to
13603   // friend one of your own members (it's not, however, worthless to
13604   // friend a member of an arbitrary specialization of your template).
13605 
13606   Decl *D;
13607   if (!TempParams.empty())
13608     D = FriendTemplateDecl::Create(Context, CurContext, Loc,
13609                                    TempParams,
13610                                    TSI,
13611                                    DS.getFriendSpecLoc());
13612   else
13613     D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
13614 
13615   if (!D)
13616     return nullptr;
13617 
13618   D->setAccess(AS_public);
13619   CurContext->addDecl(D);
13620 
13621   return D;
13622 }
13623 
13624 NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
13625                                         MultiTemplateParamsArg TemplateParams) {
13626   const DeclSpec &DS = D.getDeclSpec();
13627 
13628   assert(DS.isFriendSpecified());
13629   assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
13630 
13631   SourceLocation Loc = D.getIdentifierLoc();
13632   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13633 
13634   // C++ [class.friend]p1
13635   //   A friend of a class is a function or class....
13636   // Note that this sees through typedefs, which is intended.
13637   // It *doesn't* see through dependent types, which is correct
13638   // according to [temp.arg.type]p3:
13639   //   If a declaration acquires a function type through a
13640   //   type dependent on a template-parameter and this causes
13641   //   a declaration that does not use the syntactic form of a
13642   //   function declarator to have a function type, the program
13643   //   is ill-formed.
13644   if (!TInfo->getType()->isFunctionType()) {
13645     Diag(Loc, diag::err_unexpected_friend);
13646 
13647     // It might be worthwhile to try to recover by creating an
13648     // appropriate declaration.
13649     return nullptr;
13650   }
13651 
13652   // C++ [namespace.memdef]p3
13653   //  - If a friend declaration in a non-local class first declares a
13654   //    class or function, the friend class or function is a member
13655   //    of the innermost enclosing namespace.
13656   //  - The name of the friend is not found by simple name lookup
13657   //    until a matching declaration is provided in that namespace
13658   //    scope (either before or after the class declaration granting
13659   //    friendship).
13660   //  - If a friend function is called, its name may be found by the
13661   //    name lookup that considers functions from namespaces and
13662   //    classes associated with the types of the function arguments.
13663   //  - When looking for a prior declaration of a class or a function
13664   //    declared as a friend, scopes outside the innermost enclosing
13665   //    namespace scope are not considered.
13666 
13667   CXXScopeSpec &SS = D.getCXXScopeSpec();
13668   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
13669   DeclarationName Name = NameInfo.getName();
13670   assert(Name);
13671 
13672   // Check for unexpanded parameter packs.
13673   if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
13674       DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
13675       DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
13676     return nullptr;
13677 
13678   // The context we found the declaration in, or in which we should
13679   // create the declaration.
13680   DeclContext *DC;
13681   Scope *DCScope = S;
13682   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
13683                         ForExternalRedeclaration);
13684 
13685   // There are five cases here.
13686   //   - There's no scope specifier and we're in a local class. Only look
13687   //     for functions declared in the immediately-enclosing block scope.
13688   // We recover from invalid scope qualifiers as if they just weren't there.
13689   FunctionDecl *FunctionContainingLocalClass = nullptr;
13690   if ((SS.isInvalid() || !SS.isSet()) &&
13691       (FunctionContainingLocalClass =
13692            cast<CXXRecordDecl>(CurContext)->isLocalClass())) {
13693     // C++11 [class.friend]p11:
13694     //   If a friend declaration appears in a local class and the name
13695     //   specified is an unqualified name, a prior declaration is
13696     //   looked up without considering scopes that are outside the
13697     //   innermost enclosing non-class scope. For a friend function
13698     //   declaration, if there is no prior declaration, the program is
13699     //   ill-formed.
13700 
13701     // Find the innermost enclosing non-class scope. This is the block
13702     // scope containing the local class definition (or for a nested class,
13703     // the outer local class).
13704     DCScope = S->getFnParent();
13705 
13706     // Look up the function name in the scope.
13707     Previous.clear(LookupLocalFriendName);
13708     LookupName(Previous, S, /*AllowBuiltinCreation*/false);
13709 
13710     if (!Previous.empty()) {
13711       // All possible previous declarations must have the same context:
13712       // either they were declared at block scope or they are members of
13713       // one of the enclosing local classes.
13714       DC = Previous.getRepresentativeDecl()->getDeclContext();
13715     } else {
13716       // This is ill-formed, but provide the context that we would have
13717       // declared the function in, if we were permitted to, for error recovery.
13718       DC = FunctionContainingLocalClass;
13719     }
13720     adjustContextForLocalExternDecl(DC);
13721 
13722     // C++ [class.friend]p6:
13723     //   A function can be defined in a friend declaration of a class if and
13724     //   only if the class is a non-local class (9.8), the function name is
13725     //   unqualified, and the function has namespace scope.
13726     if (D.isFunctionDefinition()) {
13727       Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
13728     }
13729 
13730   //   - There's no scope specifier, in which case we just go to the
13731   //     appropriate scope and look for a function or function template
13732   //     there as appropriate.
13733   } else if (SS.isInvalid() || !SS.isSet()) {
13734     // C++11 [namespace.memdef]p3:
13735     //   If the name in a friend declaration is neither qualified nor
13736     //   a template-id and the declaration is a function or an
13737     //   elaborated-type-specifier, the lookup to determine whether
13738     //   the entity has been previously declared shall not consider
13739     //   any scopes outside the innermost enclosing namespace.
13740     bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
13741 
13742     // Find the appropriate context according to the above.
13743     DC = CurContext;
13744 
13745     // Skip class contexts.  If someone can cite chapter and verse
13746     // for this behavior, that would be nice --- it's what GCC and
13747     // EDG do, and it seems like a reasonable intent, but the spec
13748     // really only says that checks for unqualified existing
13749     // declarations should stop at the nearest enclosing namespace,
13750     // not that they should only consider the nearest enclosing
13751     // namespace.
13752     while (DC->isRecord())
13753       DC = DC->getParent();
13754 
13755     DeclContext *LookupDC = DC;
13756     while (LookupDC->isTransparentContext())
13757       LookupDC = LookupDC->getParent();
13758 
13759     while (true) {
13760       LookupQualifiedName(Previous, LookupDC);
13761 
13762       if (!Previous.empty()) {
13763         DC = LookupDC;
13764         break;
13765       }
13766 
13767       if (isTemplateId) {
13768         if (isa<TranslationUnitDecl>(LookupDC)) break;
13769       } else {
13770         if (LookupDC->isFileContext()) break;
13771       }
13772       LookupDC = LookupDC->getParent();
13773     }
13774 
13775     DCScope = getScopeForDeclContext(S, DC);
13776 
13777   //   - There's a non-dependent scope specifier, in which case we
13778   //     compute it and do a previous lookup there for a function
13779   //     or function template.
13780   } else if (!SS.getScopeRep()->isDependent()) {
13781     DC = computeDeclContext(SS);
13782     if (!DC) return nullptr;
13783 
13784     if (RequireCompleteDeclContext(SS, DC)) return nullptr;
13785 
13786     LookupQualifiedName(Previous, DC);
13787 
13788     // Ignore things found implicitly in the wrong scope.
13789     // TODO: better diagnostics for this case.  Suggesting the right
13790     // qualified scope would be nice...
13791     LookupResult::Filter F = Previous.makeFilter();
13792     while (F.hasNext()) {
13793       NamedDecl *D = F.next();
13794       if (!DC->InEnclosingNamespaceSetOf(
13795               D->getDeclContext()->getRedeclContext()))
13796         F.erase();
13797     }
13798     F.done();
13799 
13800     if (Previous.empty()) {
13801       D.setInvalidType();
13802       Diag(Loc, diag::err_qualified_friend_not_found)
13803           << Name << TInfo->getType();
13804       return nullptr;
13805     }
13806 
13807     // C++ [class.friend]p1: A friend of a class is a function or
13808     //   class that is not a member of the class . . .
13809     if (DC->Equals(CurContext))
13810       Diag(DS.getFriendSpecLoc(),
13811            getLangOpts().CPlusPlus11 ?
13812              diag::warn_cxx98_compat_friend_is_member :
13813              diag::err_friend_is_member);
13814 
13815     if (D.isFunctionDefinition()) {
13816       // C++ [class.friend]p6:
13817       //   A function can be defined in a friend declaration of a class if and
13818       //   only if the class is a non-local class (9.8), the function name is
13819       //   unqualified, and the function has namespace scope.
13820       SemaDiagnosticBuilder DB
13821         = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
13822 
13823       DB << SS.getScopeRep();
13824       if (DC->isFileContext())
13825         DB << FixItHint::CreateRemoval(SS.getRange());
13826       SS.clear();
13827     }
13828 
13829   //   - There's a scope specifier that does not match any template
13830   //     parameter lists, in which case we use some arbitrary context,
13831   //     create a method or method template, and wait for instantiation.
13832   //   - There's a scope specifier that does match some template
13833   //     parameter lists, which we don't handle right now.
13834   } else {
13835     if (D.isFunctionDefinition()) {
13836       // C++ [class.friend]p6:
13837       //   A function can be defined in a friend declaration of a class if and
13838       //   only if the class is a non-local class (9.8), the function name is
13839       //   unqualified, and the function has namespace scope.
13840       Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
13841         << SS.getScopeRep();
13842     }
13843 
13844     DC = CurContext;
13845     assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
13846   }
13847 
13848   if (!DC->isRecord()) {
13849     int DiagArg = -1;
13850     switch (D.getName().getKind()) {
13851     case UnqualifiedId::IK_ConstructorTemplateId:
13852     case UnqualifiedId::IK_ConstructorName:
13853       DiagArg = 0;
13854       break;
13855     case UnqualifiedId::IK_DestructorName:
13856       DiagArg = 1;
13857       break;
13858     case UnqualifiedId::IK_ConversionFunctionId:
13859       DiagArg = 2;
13860       break;
13861     case UnqualifiedId::IK_DeductionGuideName:
13862       DiagArg = 3;
13863       break;
13864     case UnqualifiedId::IK_Identifier:
13865     case UnqualifiedId::IK_ImplicitSelfParam:
13866     case UnqualifiedId::IK_LiteralOperatorId:
13867     case UnqualifiedId::IK_OperatorFunctionId:
13868     case UnqualifiedId::IK_TemplateId:
13869       break;
13870     }
13871     // This implies that it has to be an operator or function.
13872     if (DiagArg >= 0) {
13873       Diag(Loc, diag::err_introducing_special_friend) << DiagArg;
13874       return nullptr;
13875     }
13876   }
13877 
13878   // FIXME: This is an egregious hack to cope with cases where the scope stack
13879   // does not contain the declaration context, i.e., in an out-of-line
13880   // definition of a class.
13881   Scope FakeDCScope(S, Scope::DeclScope, Diags);
13882   if (!DCScope) {
13883     FakeDCScope.setEntity(DC);
13884     DCScope = &FakeDCScope;
13885   }
13886 
13887   bool AddToScope = true;
13888   NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
13889                                           TemplateParams, AddToScope);
13890   if (!ND) return nullptr;
13891 
13892   assert(ND->getLexicalDeclContext() == CurContext);
13893 
13894   // If we performed typo correction, we might have added a scope specifier
13895   // and changed the decl context.
13896   DC = ND->getDeclContext();
13897 
13898   // Add the function declaration to the appropriate lookup tables,
13899   // adjusting the redeclarations list as necessary.  We don't
13900   // want to do this yet if the friending class is dependent.
13901   //
13902   // Also update the scope-based lookup if the target context's
13903   // lookup context is in lexical scope.
13904   if (!CurContext->isDependentContext()) {
13905     DC = DC->getRedeclContext();
13906     DC->makeDeclVisibleInContext(ND);
13907     if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
13908       PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
13909   }
13910 
13911   FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
13912                                        D.getIdentifierLoc(), ND,
13913                                        DS.getFriendSpecLoc());
13914   FrD->setAccess(AS_public);
13915   CurContext->addDecl(FrD);
13916 
13917   if (ND->isInvalidDecl()) {
13918     FrD->setInvalidDecl();
13919   } else {
13920     if (DC->isRecord()) CheckFriendAccess(ND);
13921 
13922     FunctionDecl *FD;
13923     if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
13924       FD = FTD->getTemplatedDecl();
13925     else
13926       FD = cast<FunctionDecl>(ND);
13927 
13928     // C++11 [dcl.fct.default]p4: If a friend declaration specifies a
13929     // default argument expression, that declaration shall be a definition
13930     // and shall be the only declaration of the function or function
13931     // template in the translation unit.
13932     if (functionDeclHasDefaultArgument(FD)) {
13933       // We can't look at FD->getPreviousDecl() because it may not have been set
13934       // if we're in a dependent context. If the function is known to be a
13935       // redeclaration, we will have narrowed Previous down to the right decl.
13936       if (D.isRedeclaration()) {
13937         Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_redeclared);
13938         Diag(Previous.getRepresentativeDecl()->getLocation(),
13939              diag::note_previous_declaration);
13940       } else if (!D.isFunctionDefinition())
13941         Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_must_be_def);
13942     }
13943 
13944     // Mark templated-scope function declarations as unsupported.
13945     if (FD->getNumTemplateParameterLists() && SS.isValid()) {
13946       Diag(FD->getLocation(), diag::warn_template_qualified_friend_unsupported)
13947         << SS.getScopeRep() << SS.getRange()
13948         << cast<CXXRecordDecl>(CurContext);
13949       FrD->setUnsupportedFriend(true);
13950     }
13951   }
13952 
13953   return ND;
13954 }
13955 
13956 void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
13957   AdjustDeclIfTemplate(Dcl);
13958 
13959   FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl);
13960   if (!Fn) {
13961     Diag(DelLoc, diag::err_deleted_non_function);
13962     return;
13963   }
13964 
13965   // Deleted function does not have a body.
13966   Fn->setWillHaveBody(false);
13967 
13968   if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
13969     // Don't consider the implicit declaration we generate for explicit
13970     // specializations. FIXME: Do not generate these implicit declarations.
13971     if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization ||
13972          Prev->getPreviousDecl()) &&
13973         !Prev->isDefined()) {
13974       Diag(DelLoc, diag::err_deleted_decl_not_first);
13975       Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(),
13976            Prev->isImplicit() ? diag::note_previous_implicit_declaration
13977                               : diag::note_previous_declaration);
13978     }
13979     // If the declaration wasn't the first, we delete the function anyway for
13980     // recovery.
13981     Fn = Fn->getCanonicalDecl();
13982   }
13983 
13984   // dllimport/dllexport cannot be deleted.
13985   if (const InheritableAttr *DLLAttr = getDLLAttr(Fn)) {
13986     Diag(Fn->getLocation(), diag::err_attribute_dll_deleted) << DLLAttr;
13987     Fn->setInvalidDecl();
13988   }
13989 
13990   if (Fn->isDeleted())
13991     return;
13992 
13993   // See if we're deleting a function which is already known to override a
13994   // non-deleted virtual function.
13995   if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn)) {
13996     bool IssuedDiagnostic = false;
13997     for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
13998                                         E = MD->end_overridden_methods();
13999          I != E; ++I) {
14000       if (!(*MD->begin_overridden_methods())->isDeleted()) {
14001         if (!IssuedDiagnostic) {
14002           Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName();
14003           IssuedDiagnostic = true;
14004         }
14005         Diag((*I)->getLocation(), diag::note_overridden_virtual_function);
14006       }
14007     }
14008     // If this function was implicitly deleted because it was defaulted,
14009     // explain why it was deleted.
14010     if (IssuedDiagnostic && MD->isDefaulted())
14011       ShouldDeleteSpecialMember(MD, getSpecialMember(MD), nullptr,
14012                                 /*Diagnose*/true);
14013   }
14014 
14015   // C++11 [basic.start.main]p3:
14016   //   A program that defines main as deleted [...] is ill-formed.
14017   if (Fn->isMain())
14018     Diag(DelLoc, diag::err_deleted_main);
14019 
14020   // C++11 [dcl.fct.def.delete]p4:
14021   //  A deleted function is implicitly inline.
14022   Fn->setImplicitlyInline();
14023   Fn->setDeletedAsWritten();
14024 }
14025 
14026 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
14027   CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Dcl);
14028 
14029   if (MD) {
14030     if (MD->getParent()->isDependentType()) {
14031       MD->setDefaulted();
14032       MD->setExplicitlyDefaulted();
14033       return;
14034     }
14035 
14036     CXXSpecialMember Member = getSpecialMember(MD);
14037     if (Member == CXXInvalid) {
14038       if (!MD->isInvalidDecl())
14039         Diag(DefaultLoc, diag::err_default_special_members);
14040       return;
14041     }
14042 
14043     MD->setDefaulted();
14044     MD->setExplicitlyDefaulted();
14045 
14046     // Unset that we will have a body for this function. We might not,
14047     // if it turns out to be trivial, and we don't need this marking now
14048     // that we've marked it as defaulted.
14049     MD->setWillHaveBody(false);
14050 
14051     // If this definition appears within the record, do the checking when
14052     // the record is complete.
14053     const FunctionDecl *Primary = MD;
14054     if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
14055       // Ask the template instantiation pattern that actually had the
14056       // '= default' on it.
14057       Primary = Pattern;
14058 
14059     // If the method was defaulted on its first declaration, we will have
14060     // already performed the checking in CheckCompletedCXXClass. Such a
14061     // declaration doesn't trigger an implicit definition.
14062     if (Primary->getCanonicalDecl()->isDefaulted())
14063       return;
14064 
14065     CheckExplicitlyDefaultedSpecialMember(MD);
14066 
14067     if (!MD->isInvalidDecl())
14068       DefineImplicitSpecialMember(*this, MD, DefaultLoc);
14069   } else {
14070     Diag(DefaultLoc, diag::err_default_special_members);
14071   }
14072 }
14073 
14074 static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
14075   for (Stmt *SubStmt : S->children()) {
14076     if (!SubStmt)
14077       continue;
14078     if (isa<ReturnStmt>(SubStmt))
14079       Self.Diag(SubStmt->getLocStart(),
14080            diag::err_return_in_constructor_handler);
14081     if (!isa<Expr>(SubStmt))
14082       SearchForReturnInStmt(Self, SubStmt);
14083   }
14084 }
14085 
14086 void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
14087   for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
14088     CXXCatchStmt *Handler = TryBlock->getHandler(I);
14089     SearchForReturnInStmt(*this, Handler);
14090   }
14091 }
14092 
14093 bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
14094                                              const CXXMethodDecl *Old) {
14095   const auto *NewFT = New->getType()->getAs<FunctionProtoType>();
14096   const auto *OldFT = Old->getType()->getAs<FunctionProtoType>();
14097 
14098   if (OldFT->hasExtParameterInfos()) {
14099     for (unsigned I = 0, E = OldFT->getNumParams(); I != E; ++I)
14100       // A parameter of the overriding method should be annotated with noescape
14101       // if the corresponding parameter of the overridden method is annotated.
14102       if (OldFT->getExtParameterInfo(I).isNoEscape() &&
14103           !NewFT->getExtParameterInfo(I).isNoEscape()) {
14104         Diag(New->getParamDecl(I)->getLocation(),
14105              diag::warn_overriding_method_missing_noescape);
14106         Diag(Old->getParamDecl(I)->getLocation(),
14107              diag::note_overridden_marked_noescape);
14108       }
14109   }
14110 
14111   CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv();
14112 
14113   // If the calling conventions match, everything is fine
14114   if (NewCC == OldCC)
14115     return false;
14116 
14117   // If the calling conventions mismatch because the new function is static,
14118   // suppress the calling convention mismatch error; the error about static
14119   // function override (err_static_overrides_virtual from
14120   // Sema::CheckFunctionDeclaration) is more clear.
14121   if (New->getStorageClass() == SC_Static)
14122     return false;
14123 
14124   Diag(New->getLocation(),
14125        diag::err_conflicting_overriding_cc_attributes)
14126     << New->getDeclName() << New->getType() << Old->getType();
14127   Diag(Old->getLocation(), diag::note_overridden_virtual_function);
14128   return true;
14129 }
14130 
14131 bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
14132                                              const CXXMethodDecl *Old) {
14133   QualType NewTy = New->getType()->getAs<FunctionType>()->getReturnType();
14134   QualType OldTy = Old->getType()->getAs<FunctionType>()->getReturnType();
14135 
14136   if (Context.hasSameType(NewTy, OldTy) ||
14137       NewTy->isDependentType() || OldTy->isDependentType())
14138     return false;
14139 
14140   // Check if the return types are covariant
14141   QualType NewClassTy, OldClassTy;
14142 
14143   /// Both types must be pointers or references to classes.
14144   if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
14145     if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
14146       NewClassTy = NewPT->getPointeeType();
14147       OldClassTy = OldPT->getPointeeType();
14148     }
14149   } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
14150     if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
14151       if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
14152         NewClassTy = NewRT->getPointeeType();
14153         OldClassTy = OldRT->getPointeeType();
14154       }
14155     }
14156   }
14157 
14158   // The return types aren't either both pointers or references to a class type.
14159   if (NewClassTy.isNull()) {
14160     Diag(New->getLocation(),
14161          diag::err_different_return_type_for_overriding_virtual_function)
14162         << New->getDeclName() << NewTy << OldTy
14163         << New->getReturnTypeSourceRange();
14164     Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14165         << Old->getReturnTypeSourceRange();
14166 
14167     return true;
14168   }
14169 
14170   if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
14171     // C++14 [class.virtual]p8:
14172     //   If the class type in the covariant return type of D::f differs from
14173     //   that of B::f, the class type in the return type of D::f shall be
14174     //   complete at the point of declaration of D::f or shall be the class
14175     //   type D.
14176     if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
14177       if (!RT->isBeingDefined() &&
14178           RequireCompleteType(New->getLocation(), NewClassTy,
14179                               diag::err_covariant_return_incomplete,
14180                               New->getDeclName()))
14181         return true;
14182     }
14183 
14184     // Check if the new class derives from the old class.
14185     if (!IsDerivedFrom(New->getLocation(), NewClassTy, OldClassTy)) {
14186       Diag(New->getLocation(), diag::err_covariant_return_not_derived)
14187           << New->getDeclName() << NewTy << OldTy
14188           << New->getReturnTypeSourceRange();
14189       Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14190           << Old->getReturnTypeSourceRange();
14191       return true;
14192     }
14193 
14194     // Check if we the conversion from derived to base is valid.
14195     if (CheckDerivedToBaseConversion(
14196             NewClassTy, OldClassTy,
14197             diag::err_covariant_return_inaccessible_base,
14198             diag::err_covariant_return_ambiguous_derived_to_base_conv,
14199             New->getLocation(), New->getReturnTypeSourceRange(),
14200             New->getDeclName(), nullptr)) {
14201       // FIXME: this note won't trigger for delayed access control
14202       // diagnostics, and it's impossible to get an undelayed error
14203       // here from access control during the original parse because
14204       // the ParsingDeclSpec/ParsingDeclarator are still in scope.
14205       Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14206           << Old->getReturnTypeSourceRange();
14207       return true;
14208     }
14209   }
14210 
14211   // The qualifiers of the return types must be the same.
14212   if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
14213     Diag(New->getLocation(),
14214          diag::err_covariant_return_type_different_qualifications)
14215         << New->getDeclName() << NewTy << OldTy
14216         << New->getReturnTypeSourceRange();
14217     Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14218         << Old->getReturnTypeSourceRange();
14219     return true;
14220   }
14221 
14222 
14223   // The new class type must have the same or less qualifiers as the old type.
14224   if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
14225     Diag(New->getLocation(),
14226          diag::err_covariant_return_type_class_type_more_qualified)
14227         << New->getDeclName() << NewTy << OldTy
14228         << New->getReturnTypeSourceRange();
14229     Diag(Old->getLocation(), diag::note_overridden_virtual_function)
14230         << Old->getReturnTypeSourceRange();
14231     return true;
14232   }
14233 
14234   return false;
14235 }
14236 
14237 /// \brief Mark the given method pure.
14238 ///
14239 /// \param Method the method to be marked pure.
14240 ///
14241 /// \param InitRange the source range that covers the "0" initializer.
14242 bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
14243   SourceLocation EndLoc = InitRange.getEnd();
14244   if (EndLoc.isValid())
14245     Method->setRangeEnd(EndLoc);
14246 
14247   if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
14248     Method->setPure();
14249     return false;
14250   }
14251 
14252   if (!Method->isInvalidDecl())
14253     Diag(Method->getLocation(), diag::err_non_virtual_pure)
14254       << Method->getDeclName() << InitRange;
14255   return true;
14256 }
14257 
14258 void Sema::ActOnPureSpecifier(Decl *D, SourceLocation ZeroLoc) {
14259   if (D->getFriendObjectKind())
14260     Diag(D->getLocation(), diag::err_pure_friend);
14261   else if (auto *M = dyn_cast<CXXMethodDecl>(D))
14262     CheckPureMethod(M, ZeroLoc);
14263   else
14264     Diag(D->getLocation(), diag::err_illegal_initializer);
14265 }
14266 
14267 /// \brief Determine whether the given declaration is a global variable or
14268 /// static data member.
14269 static bool isNonlocalVariable(const Decl *D) {
14270   if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D))
14271     return Var->hasGlobalStorage();
14272 
14273   return false;
14274 }
14275 
14276 /// Invoked when we are about to parse an initializer for the declaration
14277 /// 'Dcl'.
14278 ///
14279 /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
14280 /// static data member of class X, names should be looked up in the scope of
14281 /// class X. If the declaration had a scope specifier, a scope will have
14282 /// been created and passed in for this purpose. Otherwise, S will be null.
14283 void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
14284   // If there is no declaration, there was an error parsing it.
14285   if (!D || D->isInvalidDecl())
14286     return;
14287 
14288   // We will always have a nested name specifier here, but this declaration
14289   // might not be out of line if the specifier names the current namespace:
14290   //   extern int n;
14291   //   int ::n = 0;
14292   if (S && D->isOutOfLine())
14293     EnterDeclaratorContext(S, D->getDeclContext());
14294 
14295   // If we are parsing the initializer for a static data member, push a
14296   // new expression evaluation context that is associated with this static
14297   // data member.
14298   if (isNonlocalVariable(D))
14299     PushExpressionEvaluationContext(
14300         ExpressionEvaluationContext::PotentiallyEvaluated, D);
14301 }
14302 
14303 /// Invoked after we are finished parsing an initializer for the declaration D.
14304 void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
14305   // If there is no declaration, there was an error parsing it.
14306   if (!D || D->isInvalidDecl())
14307     return;
14308 
14309   if (isNonlocalVariable(D))
14310     PopExpressionEvaluationContext();
14311 
14312   if (S && D->isOutOfLine())
14313     ExitDeclaratorContext(S);
14314 }
14315 
14316 /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
14317 /// C++ if/switch/while/for statement.
14318 /// e.g: "if (int x = f()) {...}"
14319 DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
14320   // C++ 6.4p2:
14321   // The declarator shall not specify a function or an array.
14322   // The type-specifier-seq shall not contain typedef and shall not declare a
14323   // new class or enumeration.
14324   assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
14325          "Parser allowed 'typedef' as storage class of condition decl.");
14326 
14327   Decl *Dcl = ActOnDeclarator(S, D);
14328   if (!Dcl)
14329     return true;
14330 
14331   if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
14332     Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
14333       << D.getSourceRange();
14334     return true;
14335   }
14336 
14337   return Dcl;
14338 }
14339 
14340 void Sema::LoadExternalVTableUses() {
14341   if (!ExternalSource)
14342     return;
14343 
14344   SmallVector<ExternalVTableUse, 4> VTables;
14345   ExternalSource->ReadUsedVTables(VTables);
14346   SmallVector<VTableUse, 4> NewUses;
14347   for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
14348     llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
14349       = VTablesUsed.find(VTables[I].Record);
14350     // Even if a definition wasn't required before, it may be required now.
14351     if (Pos != VTablesUsed.end()) {
14352       if (!Pos->second && VTables[I].DefinitionRequired)
14353         Pos->second = true;
14354       continue;
14355     }
14356 
14357     VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
14358     NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
14359   }
14360 
14361   VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
14362 }
14363 
14364 void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
14365                           bool DefinitionRequired) {
14366   // Ignore any vtable uses in unevaluated operands or for classes that do
14367   // not have a vtable.
14368   if (!Class->isDynamicClass() || Class->isDependentContext() ||
14369       CurContext->isDependentContext() || isUnevaluatedContext())
14370     return;
14371 
14372   // Try to insert this class into the map.
14373   LoadExternalVTableUses();
14374   Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
14375   std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
14376     Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
14377   if (!Pos.second) {
14378     // If we already had an entry, check to see if we are promoting this vtable
14379     // to require a definition. If so, we need to reappend to the VTableUses
14380     // list, since we may have already processed the first entry.
14381     if (DefinitionRequired && !Pos.first->second) {
14382       Pos.first->second = true;
14383     } else {
14384       // Otherwise, we can early exit.
14385       return;
14386     }
14387   } else {
14388     // The Microsoft ABI requires that we perform the destructor body
14389     // checks (i.e. operator delete() lookup) when the vtable is marked used, as
14390     // the deleting destructor is emitted with the vtable, not with the
14391     // destructor definition as in the Itanium ABI.
14392     if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
14393       CXXDestructorDecl *DD = Class->getDestructor();
14394       if (DD && DD->isVirtual() && !DD->isDeleted()) {
14395         if (Class->hasUserDeclaredDestructor() && !DD->isDefined()) {
14396           // If this is an out-of-line declaration, marking it referenced will
14397           // not do anything. Manually call CheckDestructor to look up operator
14398           // delete().
14399           ContextRAII SavedContext(*this, DD);
14400           CheckDestructor(DD);
14401         } else {
14402           MarkFunctionReferenced(Loc, Class->getDestructor());
14403         }
14404       }
14405     }
14406   }
14407 
14408   // Local classes need to have their virtual members marked
14409   // immediately. For all other classes, we mark their virtual members
14410   // at the end of the translation unit.
14411   if (Class->isLocalClass())
14412     MarkVirtualMembersReferenced(Loc, Class);
14413   else
14414     VTableUses.push_back(std::make_pair(Class, Loc));
14415 }
14416 
14417 bool Sema::DefineUsedVTables() {
14418   LoadExternalVTableUses();
14419   if (VTableUses.empty())
14420     return false;
14421 
14422   // Note: The VTableUses vector could grow as a result of marking
14423   // the members of a class as "used", so we check the size each
14424   // time through the loop and prefer indices (which are stable) to
14425   // iterators (which are not).
14426   bool DefinedAnything = false;
14427   for (unsigned I = 0; I != VTableUses.size(); ++I) {
14428     CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
14429     if (!Class)
14430       continue;
14431     TemplateSpecializationKind ClassTSK =
14432         Class->getTemplateSpecializationKind();
14433 
14434     SourceLocation Loc = VTableUses[I].second;
14435 
14436     bool DefineVTable = true;
14437 
14438     // If this class has a key function, but that key function is
14439     // defined in another translation unit, we don't need to emit the
14440     // vtable even though we're using it.
14441     const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class);
14442     if (KeyFunction && !KeyFunction->hasBody()) {
14443       // The key function is in another translation unit.
14444       DefineVTable = false;
14445       TemplateSpecializationKind TSK =
14446           KeyFunction->getTemplateSpecializationKind();
14447       assert(TSK != TSK_ExplicitInstantiationDefinition &&
14448              TSK != TSK_ImplicitInstantiation &&
14449              "Instantiations don't have key functions");
14450       (void)TSK;
14451     } else if (!KeyFunction) {
14452       // If we have a class with no key function that is the subject
14453       // of an explicit instantiation declaration, suppress the
14454       // vtable; it will live with the explicit instantiation
14455       // definition.
14456       bool IsExplicitInstantiationDeclaration =
14457           ClassTSK == TSK_ExplicitInstantiationDeclaration;
14458       for (auto R : Class->redecls()) {
14459         TemplateSpecializationKind TSK
14460           = cast<CXXRecordDecl>(R)->getTemplateSpecializationKind();
14461         if (TSK == TSK_ExplicitInstantiationDeclaration)
14462           IsExplicitInstantiationDeclaration = true;
14463         else if (TSK == TSK_ExplicitInstantiationDefinition) {
14464           IsExplicitInstantiationDeclaration = false;
14465           break;
14466         }
14467       }
14468 
14469       if (IsExplicitInstantiationDeclaration)
14470         DefineVTable = false;
14471     }
14472 
14473     // The exception specifications for all virtual members may be needed even
14474     // if we are not providing an authoritative form of the vtable in this TU.
14475     // We may choose to emit it available_externally anyway.
14476     if (!DefineVTable) {
14477       MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
14478       continue;
14479     }
14480 
14481     // Mark all of the virtual members of this class as referenced, so
14482     // that we can build a vtable. Then, tell the AST consumer that a
14483     // vtable for this class is required.
14484     DefinedAnything = true;
14485     MarkVirtualMembersReferenced(Loc, Class);
14486     CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
14487     if (VTablesUsed[Canonical])
14488       Consumer.HandleVTable(Class);
14489 
14490     // Warn if we're emitting a weak vtable. The vtable will be weak if there is
14491     // no key function or the key function is inlined. Don't warn in C++ ABIs
14492     // that lack key functions, since the user won't be able to make one.
14493     if (Context.getTargetInfo().getCXXABI().hasKeyFunctions() &&
14494         Class->isExternallyVisible() && ClassTSK != TSK_ImplicitInstantiation) {
14495       const FunctionDecl *KeyFunctionDef = nullptr;
14496       if (!KeyFunction || (KeyFunction->hasBody(KeyFunctionDef) &&
14497                            KeyFunctionDef->isInlined())) {
14498         Diag(Class->getLocation(),
14499              ClassTSK == TSK_ExplicitInstantiationDefinition
14500                  ? diag::warn_weak_template_vtable
14501                  : diag::warn_weak_vtable)
14502             << Class;
14503       }
14504     }
14505   }
14506   VTableUses.clear();
14507 
14508   return DefinedAnything;
14509 }
14510 
14511 void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
14512                                                  const CXXRecordDecl *RD) {
14513   for (const auto *I : RD->methods())
14514     if (I->isVirtual() && !I->isPure())
14515       ResolveExceptionSpec(Loc, I->getType()->castAs<FunctionProtoType>());
14516 }
14517 
14518 void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
14519                                         const CXXRecordDecl *RD) {
14520   // Mark all functions which will appear in RD's vtable as used.
14521   CXXFinalOverriderMap FinalOverriders;
14522   RD->getFinalOverriders(FinalOverriders);
14523   for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
14524                                             E = FinalOverriders.end();
14525        I != E; ++I) {
14526     for (OverridingMethods::const_iterator OI = I->second.begin(),
14527                                            OE = I->second.end();
14528          OI != OE; ++OI) {
14529       assert(OI->second.size() > 0 && "no final overrider");
14530       CXXMethodDecl *Overrider = OI->second.front().Method;
14531 
14532       // C++ [basic.def.odr]p2:
14533       //   [...] A virtual member function is used if it is not pure. [...]
14534       if (!Overrider->isPure())
14535         MarkFunctionReferenced(Loc, Overrider);
14536     }
14537   }
14538 
14539   // Only classes that have virtual bases need a VTT.
14540   if (RD->getNumVBases() == 0)
14541     return;
14542 
14543   for (const auto &I : RD->bases()) {
14544     const CXXRecordDecl *Base =
14545         cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl());
14546     if (Base->getNumVBases() == 0)
14547       continue;
14548     MarkVirtualMembersReferenced(Loc, Base);
14549   }
14550 }
14551 
14552 /// SetIvarInitializers - This routine builds initialization ASTs for the
14553 /// Objective-C implementation whose ivars need be initialized.
14554 void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
14555   if (!getLangOpts().CPlusPlus)
14556     return;
14557   if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
14558     SmallVector<ObjCIvarDecl*, 8> ivars;
14559     CollectIvarsToConstructOrDestruct(OID, ivars);
14560     if (ivars.empty())
14561       return;
14562     SmallVector<CXXCtorInitializer*, 32> AllToInit;
14563     for (unsigned i = 0; i < ivars.size(); i++) {
14564       FieldDecl *Field = ivars[i];
14565       if (Field->isInvalidDecl())
14566         continue;
14567 
14568       CXXCtorInitializer *Member;
14569       InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
14570       InitializationKind InitKind =
14571         InitializationKind::CreateDefault(ObjCImplementation->getLocation());
14572 
14573       InitializationSequence InitSeq(*this, InitEntity, InitKind, None);
14574       ExprResult MemberInit =
14575         InitSeq.Perform(*this, InitEntity, InitKind, None);
14576       MemberInit = MaybeCreateExprWithCleanups(MemberInit);
14577       // Note, MemberInit could actually come back empty if no initialization
14578       // is required (e.g., because it would call a trivial default constructor)
14579       if (!MemberInit.get() || MemberInit.isInvalid())
14580         continue;
14581 
14582       Member =
14583         new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
14584                                          SourceLocation(),
14585                                          MemberInit.getAs<Expr>(),
14586                                          SourceLocation());
14587       AllToInit.push_back(Member);
14588 
14589       // Be sure that the destructor is accessible and is marked as referenced.
14590       if (const RecordType *RecordTy =
14591               Context.getBaseElementType(Field->getType())
14592                   ->getAs<RecordType>()) {
14593         CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
14594         if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
14595           MarkFunctionReferenced(Field->getLocation(), Destructor);
14596           CheckDestructorAccess(Field->getLocation(), Destructor,
14597                             PDiag(diag::err_access_dtor_ivar)
14598                               << Context.getBaseElementType(Field->getType()));
14599         }
14600       }
14601     }
14602     ObjCImplementation->setIvarInitializers(Context,
14603                                             AllToInit.data(), AllToInit.size());
14604   }
14605 }
14606 
14607 static
14608 void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
14609                            llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
14610                            llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
14611                            llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
14612                            Sema &S) {
14613   if (Ctor->isInvalidDecl())
14614     return;
14615 
14616   CXXConstructorDecl *Target = Ctor->getTargetConstructor();
14617 
14618   // Target may not be determinable yet, for instance if this is a dependent
14619   // call in an uninstantiated template.
14620   if (Target) {
14621     const FunctionDecl *FNTarget = nullptr;
14622     (void)Target->hasBody(FNTarget);
14623     Target = const_cast<CXXConstructorDecl*>(
14624       cast_or_null<CXXConstructorDecl>(FNTarget));
14625   }
14626 
14627   CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
14628                      // Avoid dereferencing a null pointer here.
14629                      *TCanonical = Target? Target->getCanonicalDecl() : nullptr;
14630 
14631   if (!Current.insert(Canonical).second)
14632     return;
14633 
14634   // We know that beyond here, we aren't chaining into a cycle.
14635   if (!Target || !Target->isDelegatingConstructor() ||
14636       Target->isInvalidDecl() || Valid.count(TCanonical)) {
14637     Valid.insert(Current.begin(), Current.end());
14638     Current.clear();
14639   // We've hit a cycle.
14640   } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
14641              Current.count(TCanonical)) {
14642     // If we haven't diagnosed this cycle yet, do so now.
14643     if (!Invalid.count(TCanonical)) {
14644       S.Diag((*Ctor->init_begin())->getSourceLocation(),
14645              diag::warn_delegating_ctor_cycle)
14646         << Ctor;
14647 
14648       // Don't add a note for a function delegating directly to itself.
14649       if (TCanonical != Canonical)
14650         S.Diag(Target->getLocation(), diag::note_it_delegates_to);
14651 
14652       CXXConstructorDecl *C = Target;
14653       while (C->getCanonicalDecl() != Canonical) {
14654         const FunctionDecl *FNTarget = nullptr;
14655         (void)C->getTargetConstructor()->hasBody(FNTarget);
14656         assert(FNTarget && "Ctor cycle through bodiless function");
14657 
14658         C = const_cast<CXXConstructorDecl*>(
14659           cast<CXXConstructorDecl>(FNTarget));
14660         S.Diag(C->getLocation(), diag::note_which_delegates_to);
14661       }
14662     }
14663 
14664     Invalid.insert(Current.begin(), Current.end());
14665     Current.clear();
14666   } else {
14667     DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
14668   }
14669 }
14670 
14671 
14672 void Sema::CheckDelegatingCtorCycles() {
14673   llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
14674 
14675   for (DelegatingCtorDeclsType::iterator
14676          I = DelegatingCtorDecls.begin(ExternalSource),
14677          E = DelegatingCtorDecls.end();
14678        I != E; ++I)
14679     DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
14680 
14681   for (llvm::SmallSet<CXXConstructorDecl *, 4>::iterator CI = Invalid.begin(),
14682                                                          CE = Invalid.end();
14683        CI != CE; ++CI)
14684     (*CI)->setInvalidDecl();
14685 }
14686 
14687 namespace {
14688   /// \brief AST visitor that finds references to the 'this' expression.
14689   class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
14690     Sema &S;
14691 
14692   public:
14693     explicit FindCXXThisExpr(Sema &S) : S(S) { }
14694 
14695     bool VisitCXXThisExpr(CXXThisExpr *E) {
14696       S.Diag(E->getLocation(), diag::err_this_static_member_func)
14697         << E->isImplicit();
14698       return false;
14699     }
14700   };
14701 }
14702 
14703 bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
14704   TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
14705   if (!TSInfo)
14706     return false;
14707 
14708   TypeLoc TL = TSInfo->getTypeLoc();
14709   FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
14710   if (!ProtoTL)
14711     return false;
14712 
14713   // C++11 [expr.prim.general]p3:
14714   //   [The expression this] shall not appear before the optional
14715   //   cv-qualifier-seq and it shall not appear within the declaration of a
14716   //   static member function (although its type and value category are defined
14717   //   within a static member function as they are within a non-static member
14718   //   function). [ Note: this is because declaration matching does not occur
14719   //  until the complete declarator is known. - end note ]
14720   const FunctionProtoType *Proto = ProtoTL.getTypePtr();
14721   FindCXXThisExpr Finder(*this);
14722 
14723   // If the return type came after the cv-qualifier-seq, check it now.
14724   if (Proto->hasTrailingReturn() &&
14725       !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc()))
14726     return true;
14727 
14728   // Check the exception specification.
14729   if (checkThisInStaticMemberFunctionExceptionSpec(Method))
14730     return true;
14731 
14732   return checkThisInStaticMemberFunctionAttributes(Method);
14733 }
14734 
14735 bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
14736   TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
14737   if (!TSInfo)
14738     return false;
14739 
14740   TypeLoc TL = TSInfo->getTypeLoc();
14741   FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
14742   if (!ProtoTL)
14743     return false;
14744 
14745   const FunctionProtoType *Proto = ProtoTL.getTypePtr();
14746   FindCXXThisExpr Finder(*this);
14747 
14748   switch (Proto->getExceptionSpecType()) {
14749   case EST_Unparsed:
14750   case EST_Uninstantiated:
14751   case EST_Unevaluated:
14752   case EST_BasicNoexcept:
14753   case EST_DynamicNone:
14754   case EST_MSAny:
14755   case EST_None:
14756     break;
14757 
14758   case EST_ComputedNoexcept:
14759     if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
14760       return true;
14761     LLVM_FALLTHROUGH;
14762 
14763   case EST_Dynamic:
14764     for (const auto &E : Proto->exceptions()) {
14765       if (!Finder.TraverseType(E))
14766         return true;
14767     }
14768     break;
14769   }
14770 
14771   return false;
14772 }
14773 
14774 bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
14775   FindCXXThisExpr Finder(*this);
14776 
14777   // Check attributes.
14778   for (const auto *A : Method->attrs()) {
14779     // FIXME: This should be emitted by tblgen.
14780     Expr *Arg = nullptr;
14781     ArrayRef<Expr *> Args;
14782     if (const auto *G = dyn_cast<GuardedByAttr>(A))
14783       Arg = G->getArg();
14784     else if (const auto *G = dyn_cast<PtGuardedByAttr>(A))
14785       Arg = G->getArg();
14786     else if (const auto *AA = dyn_cast<AcquiredAfterAttr>(A))
14787       Args = llvm::makeArrayRef(AA->args_begin(), AA->args_size());
14788     else if (const auto *AB = dyn_cast<AcquiredBeforeAttr>(A))
14789       Args = llvm::makeArrayRef(AB->args_begin(), AB->args_size());
14790     else if (const auto *ETLF = dyn_cast<ExclusiveTrylockFunctionAttr>(A)) {
14791       Arg = ETLF->getSuccessValue();
14792       Args = llvm::makeArrayRef(ETLF->args_begin(), ETLF->args_size());
14793     } else if (const auto *STLF = dyn_cast<SharedTrylockFunctionAttr>(A)) {
14794       Arg = STLF->getSuccessValue();
14795       Args = llvm::makeArrayRef(STLF->args_begin(), STLF->args_size());
14796     } else if (const auto *LR = dyn_cast<LockReturnedAttr>(A))
14797       Arg = LR->getArg();
14798     else if (const auto *LE = dyn_cast<LocksExcludedAttr>(A))
14799       Args = llvm::makeArrayRef(LE->args_begin(), LE->args_size());
14800     else if (const auto *RC = dyn_cast<RequiresCapabilityAttr>(A))
14801       Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size());
14802     else if (const auto *AC = dyn_cast<AcquireCapabilityAttr>(A))
14803       Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size());
14804     else if (const auto *AC = dyn_cast<TryAcquireCapabilityAttr>(A))
14805       Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size());
14806     else if (const auto *RC = dyn_cast<ReleaseCapabilityAttr>(A))
14807       Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size());
14808 
14809     if (Arg && !Finder.TraverseStmt(Arg))
14810       return true;
14811 
14812     for (unsigned I = 0, N = Args.size(); I != N; ++I) {
14813       if (!Finder.TraverseStmt(Args[I]))
14814         return true;
14815     }
14816   }
14817 
14818   return false;
14819 }
14820 
14821 void Sema::checkExceptionSpecification(
14822     bool IsTopLevel, ExceptionSpecificationType EST,
14823     ArrayRef<ParsedType> DynamicExceptions,
14824     ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr,
14825     SmallVectorImpl<QualType> &Exceptions,
14826     FunctionProtoType::ExceptionSpecInfo &ESI) {
14827   Exceptions.clear();
14828   ESI.Type = EST;
14829   if (EST == EST_Dynamic) {
14830     Exceptions.reserve(DynamicExceptions.size());
14831     for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
14832       // FIXME: Preserve type source info.
14833       QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
14834 
14835       if (IsTopLevel) {
14836         SmallVector<UnexpandedParameterPack, 2> Unexpanded;
14837         collectUnexpandedParameterPacks(ET, Unexpanded);
14838         if (!Unexpanded.empty()) {
14839           DiagnoseUnexpandedParameterPacks(
14840               DynamicExceptionRanges[ei].getBegin(), UPPC_ExceptionType,
14841               Unexpanded);
14842           continue;
14843         }
14844       }
14845 
14846       // Check that the type is valid for an exception spec, and
14847       // drop it if not.
14848       if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
14849         Exceptions.push_back(ET);
14850     }
14851     ESI.Exceptions = Exceptions;
14852     return;
14853   }
14854 
14855   if (EST == EST_ComputedNoexcept) {
14856     // If an error occurred, there's no expression here.
14857     if (NoexceptExpr) {
14858       assert((NoexceptExpr->isTypeDependent() ||
14859               NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
14860               Context.BoolTy) &&
14861              "Parser should have made sure that the expression is boolean");
14862       if (IsTopLevel && NoexceptExpr &&
14863           DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
14864         ESI.Type = EST_BasicNoexcept;
14865         return;
14866       }
14867 
14868       if (!NoexceptExpr->isValueDependent()) {
14869         ExprResult Result = VerifyIntegerConstantExpression(
14870             NoexceptExpr, nullptr, diag::err_noexcept_needs_constant_expression,
14871             /*AllowFold*/ false);
14872         if (Result.isInvalid()) {
14873           ESI.Type = EST_BasicNoexcept;
14874           return;
14875         }
14876         NoexceptExpr = Result.get();
14877       }
14878       ESI.NoexceptExpr = NoexceptExpr;
14879     }
14880     return;
14881   }
14882 }
14883 
14884 void Sema::actOnDelayedExceptionSpecification(Decl *MethodD,
14885              ExceptionSpecificationType EST,
14886              SourceRange SpecificationRange,
14887              ArrayRef<ParsedType> DynamicExceptions,
14888              ArrayRef<SourceRange> DynamicExceptionRanges,
14889              Expr *NoexceptExpr) {
14890   if (!MethodD)
14891     return;
14892 
14893   // Dig out the method we're referring to.
14894   if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(MethodD))
14895     MethodD = FunTmpl->getTemplatedDecl();
14896 
14897   CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(MethodD);
14898   if (!Method)
14899     return;
14900 
14901   // Check the exception specification.
14902   llvm::SmallVector<QualType, 4> Exceptions;
14903   FunctionProtoType::ExceptionSpecInfo ESI;
14904   checkExceptionSpecification(/*IsTopLevel*/true, EST, DynamicExceptions,
14905                               DynamicExceptionRanges, NoexceptExpr, Exceptions,
14906                               ESI);
14907 
14908   // Update the exception specification on the function type.
14909   Context.adjustExceptionSpec(Method, ESI, /*AsWritten*/true);
14910 
14911   if (Method->isStatic())
14912     checkThisInStaticMemberFunctionExceptionSpec(Method);
14913 
14914   if (Method->isVirtual()) {
14915     // Check overrides, which we previously had to delay.
14916     for (CXXMethodDecl::method_iterator O = Method->begin_overridden_methods(),
14917                                      OEnd = Method->end_overridden_methods();
14918          O != OEnd; ++O)
14919       CheckOverridingFunctionExceptionSpec(Method, *O);
14920   }
14921 }
14922 
14923 /// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class.
14924 ///
14925 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record,
14926                                        SourceLocation DeclStart,
14927                                        Declarator &D, Expr *BitWidth,
14928                                        InClassInitStyle InitStyle,
14929                                        AccessSpecifier AS,
14930                                        AttributeList *MSPropertyAttr) {
14931   IdentifierInfo *II = D.getIdentifier();
14932   if (!II) {
14933     Diag(DeclStart, diag::err_anonymous_property);
14934     return nullptr;
14935   }
14936   SourceLocation Loc = D.getIdentifierLoc();
14937 
14938   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
14939   QualType T = TInfo->getType();
14940   if (getLangOpts().CPlusPlus) {
14941     CheckExtraCXXDefaultArguments(D);
14942 
14943     if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
14944                                         UPPC_DataMemberType)) {
14945       D.setInvalidType();
14946       T = Context.IntTy;
14947       TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
14948     }
14949   }
14950 
14951   DiagnoseFunctionSpecifiers(D.getDeclSpec());
14952 
14953   if (D.getDeclSpec().isInlineSpecified())
14954     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
14955         << getLangOpts().CPlusPlus1z;
14956   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
14957     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
14958          diag::err_invalid_thread)
14959       << DeclSpec::getSpecifierName(TSCS);
14960 
14961   // Check to see if this name was declared as a member previously
14962   NamedDecl *PrevDecl = nullptr;
14963   LookupResult Previous(*this, II, Loc, LookupMemberName,
14964                         ForVisibleRedeclaration);
14965   LookupName(Previous, S);
14966   switch (Previous.getResultKind()) {
14967   case LookupResult::Found:
14968   case LookupResult::FoundUnresolvedValue:
14969     PrevDecl = Previous.getAsSingle<NamedDecl>();
14970     break;
14971 
14972   case LookupResult::FoundOverloaded:
14973     PrevDecl = Previous.getRepresentativeDecl();
14974     break;
14975 
14976   case LookupResult::NotFound:
14977   case LookupResult::NotFoundInCurrentInstantiation:
14978   case LookupResult::Ambiguous:
14979     break;
14980   }
14981 
14982   if (PrevDecl && PrevDecl->isTemplateParameter()) {
14983     // Maybe we will complain about the shadowed template parameter.
14984     DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
14985     // Just pretend that we didn't see the previous declaration.
14986     PrevDecl = nullptr;
14987   }
14988 
14989   if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
14990     PrevDecl = nullptr;
14991 
14992   SourceLocation TSSL = D.getLocStart();
14993   const AttributeList::PropertyData &Data = MSPropertyAttr->getPropertyData();
14994   MSPropertyDecl *NewPD = MSPropertyDecl::Create(
14995       Context, Record, Loc, II, T, TInfo, TSSL, Data.GetterId, Data.SetterId);
14996   ProcessDeclAttributes(TUScope, NewPD, D);
14997   NewPD->setAccess(AS);
14998 
14999   if (NewPD->isInvalidDecl())
15000     Record->setInvalidDecl();
15001 
15002   if (D.getDeclSpec().isModulePrivateSpecified())
15003     NewPD->setModulePrivate();
15004 
15005   if (NewPD->isInvalidDecl() && PrevDecl) {
15006     // Don't introduce NewFD into scope; there's already something
15007     // with the same name in the same scope.
15008   } else if (II) {
15009     PushOnScopeChains(NewPD, S);
15010   } else
15011     Record->addDecl(NewPD);
15012 
15013   return NewPD;
15014 }
15015