SemaDeclCXX.cpp revision 4b7631bc011ce36dbc8f664c518668f0ba5d18a9
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/Sema/SemaInternal.h"
15#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
17#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
19#include "clang/Sema/ScopeInfo.h"
20#include "clang/AST/ASTConsumer.h"
21#include "clang/AST/ASTContext.h"
22#include "clang/AST/ASTMutationListener.h"
23#include "clang/AST/CharUnits.h"
24#include "clang/AST/CXXInheritance.h"
25#include "clang/AST/DeclVisitor.h"
26#include "clang/AST/EvaluatedExprVisitor.h"
27#include "clang/AST/ExprCXX.h"
28#include "clang/AST/RecordLayout.h"
29#include "clang/AST/RecursiveASTVisitor.h"
30#include "clang/AST/StmtVisitor.h"
31#include "clang/AST/TypeLoc.h"
32#include "clang/AST/TypeOrdering.h"
33#include "clang/Sema/DeclSpec.h"
34#include "clang/Sema/ParsedTemplate.h"
35#include "clang/Basic/PartialDiagnostic.h"
36#include "clang/Lex/Preprocessor.h"
37#include "llvm/ADT/SmallString.h"
38#include "llvm/ADT/STLExtras.h"
39#include <map>
40#include <set>
41
42using namespace clang;
43
44//===----------------------------------------------------------------------===//
45// CheckDefaultArgumentVisitor
46//===----------------------------------------------------------------------===//
47
48namespace {
49  /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
50  /// the default argument of a parameter to determine whether it
51  /// contains any ill-formed subexpressions. For example, this will
52  /// diagnose the use of local variables or parameters within the
53  /// default argument expression.
54  class CheckDefaultArgumentVisitor
55    : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
56    Expr *DefaultArg;
57    Sema *S;
58
59  public:
60    CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
61      : DefaultArg(defarg), S(s) {}
62
63    bool VisitExpr(Expr *Node);
64    bool VisitDeclRefExpr(DeclRefExpr *DRE);
65    bool VisitCXXThisExpr(CXXThisExpr *ThisE);
66    bool VisitLambdaExpr(LambdaExpr *Lambda);
67  };
68
69  /// VisitExpr - Visit all of the children of this expression.
70  bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
71    bool IsInvalid = false;
72    for (Stmt::child_range I = Node->children(); I; ++I)
73      IsInvalid |= Visit(*I);
74    return IsInvalid;
75  }
76
77  /// VisitDeclRefExpr - Visit a reference to a declaration, to
78  /// determine whether this declaration can be used in the default
79  /// argument expression.
80  bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
81    NamedDecl *Decl = DRE->getDecl();
82    if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
83      // C++ [dcl.fct.default]p9
84      //   Default arguments are evaluated each time the function is
85      //   called. The order of evaluation of function arguments is
86      //   unspecified. Consequently, parameters of a function shall not
87      //   be used in default argument expressions, even if they are not
88      //   evaluated. Parameters of a function declared before a default
89      //   argument expression are in scope and can hide namespace and
90      //   class member names.
91      return S->Diag(DRE->getLocStart(),
92                     diag::err_param_default_argument_references_param)
93         << Param->getDeclName() << DefaultArg->getSourceRange();
94    } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
95      // C++ [dcl.fct.default]p7
96      //   Local variables shall not be used in default argument
97      //   expressions.
98      if (VDecl->isLocalVarDecl())
99        return S->Diag(DRE->getLocStart(),
100                       diag::err_param_default_argument_references_local)
101          << VDecl->getDeclName() << DefaultArg->getSourceRange();
102    }
103
104    return false;
105  }
106
107  /// VisitCXXThisExpr - Visit a C++ "this" expression.
108  bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
109    // C++ [dcl.fct.default]p8:
110    //   The keyword this shall not be used in a default argument of a
111    //   member function.
112    return S->Diag(ThisE->getLocStart(),
113                   diag::err_param_default_argument_references_this)
114               << ThisE->getSourceRange();
115  }
116
117  bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
118    // C++11 [expr.lambda.prim]p13:
119    //   A lambda-expression appearing in a default argument shall not
120    //   implicitly or explicitly capture any entity.
121    if (Lambda->capture_begin() == Lambda->capture_end())
122      return false;
123
124    return S->Diag(Lambda->getLocStart(),
125                   diag::err_lambda_capture_default_arg);
126  }
127}
128
129void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
130                                                      CXXMethodDecl *Method) {
131  // If we have an MSAny spec already, don't bother.
132  if (!Method || ComputedEST == EST_MSAny)
133    return;
134
135  const FunctionProtoType *Proto
136    = Method->getType()->getAs<FunctionProtoType>();
137  Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
138  if (!Proto)
139    return;
140
141  ExceptionSpecificationType EST = Proto->getExceptionSpecType();
142
143  // If this function can throw any exceptions, make a note of that.
144  if (EST == EST_MSAny || EST == EST_None) {
145    ClearExceptions();
146    ComputedEST = EST;
147    return;
148  }
149
150  // FIXME: If the call to this decl is using any of its default arguments, we
151  // need to search them for potentially-throwing calls.
152
153  // If this function has a basic noexcept, it doesn't affect the outcome.
154  if (EST == EST_BasicNoexcept)
155    return;
156
157  // If we have a throw-all spec at this point, ignore the function.
158  if (ComputedEST == EST_None)
159    return;
160
161  // If we're still at noexcept(true) and there's a nothrow() callee,
162  // change to that specification.
163  if (EST == EST_DynamicNone) {
164    if (ComputedEST == EST_BasicNoexcept)
165      ComputedEST = EST_DynamicNone;
166    return;
167  }
168
169  // Check out noexcept specs.
170  if (EST == EST_ComputedNoexcept) {
171    FunctionProtoType::NoexceptResult NR =
172        Proto->getNoexceptSpec(Self->Context);
173    assert(NR != FunctionProtoType::NR_NoNoexcept &&
174           "Must have noexcept result for EST_ComputedNoexcept.");
175    assert(NR != FunctionProtoType::NR_Dependent &&
176           "Should not generate implicit declarations for dependent cases, "
177           "and don't know how to handle them anyway.");
178
179    // noexcept(false) -> no spec on the new function
180    if (NR == FunctionProtoType::NR_Throw) {
181      ClearExceptions();
182      ComputedEST = EST_None;
183    }
184    // noexcept(true) won't change anything either.
185    return;
186  }
187
188  assert(EST == EST_Dynamic && "EST case not considered earlier.");
189  assert(ComputedEST != EST_None &&
190         "Shouldn't collect exceptions when throw-all is guaranteed.");
191  ComputedEST = EST_Dynamic;
192  // Record the exceptions in this function's exception specification.
193  for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
194                                          EEnd = Proto->exception_end();
195       E != EEnd; ++E)
196    if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
197      Exceptions.push_back(*E);
198}
199
200void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
201  if (!E || ComputedEST == EST_MSAny)
202    return;
203
204  // FIXME:
205  //
206  // C++0x [except.spec]p14:
207  //   [An] implicit exception-specification specifies the type-id T if and
208  // only if T is allowed by the exception-specification of a function directly
209  // invoked by f's implicit definition; f shall allow all exceptions if any
210  // function it directly invokes allows all exceptions, and f shall allow no
211  // exceptions if every function it directly invokes allows no exceptions.
212  //
213  // Note in particular that if an implicit exception-specification is generated
214  // for a function containing a throw-expression, that specification can still
215  // be noexcept(true).
216  //
217  // Note also that 'directly invoked' is not defined in the standard, and there
218  // is no indication that we should only consider potentially-evaluated calls.
219  //
220  // Ultimately we should implement the intent of the standard: the exception
221  // specification should be the set of exceptions which can be thrown by the
222  // implicit definition. For now, we assume that any non-nothrow expression can
223  // throw any exception.
224
225  if (Self->canThrow(E))
226    ComputedEST = EST_None;
227}
228
229bool
230Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
231                              SourceLocation EqualLoc) {
232  if (RequireCompleteType(Param->getLocation(), Param->getType(),
233                          diag::err_typecheck_decl_incomplete_type)) {
234    Param->setInvalidDecl();
235    return true;
236  }
237
238  // C++ [dcl.fct.default]p5
239  //   A default argument expression is implicitly converted (clause
240  //   4) to the parameter type. The default argument expression has
241  //   the same semantic constraints as the initializer expression in
242  //   a declaration of a variable of the parameter type, using the
243  //   copy-initialization semantics (8.5).
244  InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
245                                                                    Param);
246  InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
247                                                           EqualLoc);
248  InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
249  ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
250  if (Result.isInvalid())
251    return true;
252  Arg = Result.takeAs<Expr>();
253
254  CheckImplicitConversions(Arg, EqualLoc);
255  Arg = MaybeCreateExprWithCleanups(Arg);
256
257  // Okay: add the default argument to the parameter
258  Param->setDefaultArg(Arg);
259
260  // We have already instantiated this parameter; provide each of the
261  // instantiations with the uninstantiated default argument.
262  UnparsedDefaultArgInstantiationsMap::iterator InstPos
263    = UnparsedDefaultArgInstantiations.find(Param);
264  if (InstPos != UnparsedDefaultArgInstantiations.end()) {
265    for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
266      InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
267
268    // We're done tracking this parameter's instantiations.
269    UnparsedDefaultArgInstantiations.erase(InstPos);
270  }
271
272  return false;
273}
274
275/// ActOnParamDefaultArgument - Check whether the default argument
276/// provided for a function parameter is well-formed. If so, attach it
277/// to the parameter declaration.
278void
279Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
280                                Expr *DefaultArg) {
281  if (!param || !DefaultArg)
282    return;
283
284  ParmVarDecl *Param = cast<ParmVarDecl>(param);
285  UnparsedDefaultArgLocs.erase(Param);
286
287  // Default arguments are only permitted in C++
288  if (!getLangOpts().CPlusPlus) {
289    Diag(EqualLoc, diag::err_param_default_argument)
290      << DefaultArg->getSourceRange();
291    Param->setInvalidDecl();
292    return;
293  }
294
295  // Check for unexpanded parameter packs.
296  if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
297    Param->setInvalidDecl();
298    return;
299  }
300
301  // Check that the default argument is well-formed
302  CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
303  if (DefaultArgChecker.Visit(DefaultArg)) {
304    Param->setInvalidDecl();
305    return;
306  }
307
308  SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
309}
310
311/// ActOnParamUnparsedDefaultArgument - We've seen a default
312/// argument for a function parameter, but we can't parse it yet
313/// because we're inside a class definition. Note that this default
314/// argument will be parsed later.
315void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
316                                             SourceLocation EqualLoc,
317                                             SourceLocation ArgLoc) {
318  if (!param)
319    return;
320
321  ParmVarDecl *Param = cast<ParmVarDecl>(param);
322  if (Param)
323    Param->setUnparsedDefaultArg();
324
325  UnparsedDefaultArgLocs[Param] = ArgLoc;
326}
327
328/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
329/// the default argument for the parameter param failed.
330void Sema::ActOnParamDefaultArgumentError(Decl *param) {
331  if (!param)
332    return;
333
334  ParmVarDecl *Param = cast<ParmVarDecl>(param);
335
336  Param->setInvalidDecl();
337
338  UnparsedDefaultArgLocs.erase(Param);
339}
340
341/// CheckExtraCXXDefaultArguments - Check for any extra default
342/// arguments in the declarator, which is not a function declaration
343/// or definition and therefore is not permitted to have default
344/// arguments. This routine should be invoked for every declarator
345/// that is not a function declaration or definition.
346void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
347  // C++ [dcl.fct.default]p3
348  //   A default argument expression shall be specified only in the
349  //   parameter-declaration-clause of a function declaration or in a
350  //   template-parameter (14.1). It shall not be specified for a
351  //   parameter pack. If it is specified in a
352  //   parameter-declaration-clause, it shall not occur within a
353  //   declarator or abstract-declarator of a parameter-declaration.
354  for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
355    DeclaratorChunk &chunk = D.getTypeObject(i);
356    if (chunk.Kind == DeclaratorChunk::Function) {
357      for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
358        ParmVarDecl *Param =
359          cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
360        if (Param->hasUnparsedDefaultArg()) {
361          CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
362          Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
363            << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
364          delete Toks;
365          chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
366        } else if (Param->getDefaultArg()) {
367          Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
368            << Param->getDefaultArg()->getSourceRange();
369          Param->setDefaultArg(0);
370        }
371      }
372    }
373  }
374}
375
376/// MergeCXXFunctionDecl - Merge two declarations of the same C++
377/// function, once we already know that they have the same
378/// type. Subroutine of MergeFunctionDecl. Returns true if there was an
379/// error, false otherwise.
380bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
381                                Scope *S) {
382  bool Invalid = false;
383
384  // C++ [dcl.fct.default]p4:
385  //   For non-template functions, default arguments can be added in
386  //   later declarations of a function in the same
387  //   scope. Declarations in different scopes have completely
388  //   distinct sets of default arguments. That is, declarations in
389  //   inner scopes do not acquire default arguments from
390  //   declarations in outer scopes, and vice versa. In a given
391  //   function declaration, all parameters subsequent to a
392  //   parameter with a default argument shall have default
393  //   arguments supplied in this or previous declarations. A
394  //   default argument shall not be redefined by a later
395  //   declaration (not even to the same value).
396  //
397  // C++ [dcl.fct.default]p6:
398  //   Except for member functions of class templates, the default arguments
399  //   in a member function definition that appears outside of the class
400  //   definition are added to the set of default arguments provided by the
401  //   member function declaration in the class definition.
402  for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
403    ParmVarDecl *OldParam = Old->getParamDecl(p);
404    ParmVarDecl *NewParam = New->getParamDecl(p);
405
406    bool OldParamHasDfl = OldParam->hasDefaultArg();
407    bool NewParamHasDfl = NewParam->hasDefaultArg();
408
409    NamedDecl *ND = Old;
410    if (S && !isDeclInScope(ND, New->getDeclContext(), S))
411      // Ignore default parameters of old decl if they are not in
412      // the same scope.
413      OldParamHasDfl = false;
414
415    if (OldParamHasDfl && NewParamHasDfl) {
416
417      unsigned DiagDefaultParamID =
418        diag::err_param_default_argument_redefinition;
419
420      // MSVC accepts that default parameters be redefined for member functions
421      // of template class. The new default parameter's value is ignored.
422      Invalid = true;
423      if (getLangOpts().MicrosoftExt) {
424        CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
425        if (MD && MD->getParent()->getDescribedClassTemplate()) {
426          // Merge the old default argument into the new parameter.
427          NewParam->setHasInheritedDefaultArg();
428          if (OldParam->hasUninstantiatedDefaultArg())
429            NewParam->setUninstantiatedDefaultArg(
430                                      OldParam->getUninstantiatedDefaultArg());
431          else
432            NewParam->setDefaultArg(OldParam->getInit());
433          DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
434          Invalid = false;
435        }
436      }
437
438      // FIXME: If we knew where the '=' was, we could easily provide a fix-it
439      // hint here. Alternatively, we could walk the type-source information
440      // for NewParam to find the last source location in the type... but it
441      // isn't worth the effort right now. This is the kind of test case that
442      // is hard to get right:
443      //   int f(int);
444      //   void g(int (*fp)(int) = f);
445      //   void g(int (*fp)(int) = &f);
446      Diag(NewParam->getLocation(), DiagDefaultParamID)
447        << NewParam->getDefaultArgRange();
448
449      // Look for the function declaration where the default argument was
450      // actually written, which may be a declaration prior to Old.
451      for (FunctionDecl *Older = Old->getPreviousDecl();
452           Older; Older = Older->getPreviousDecl()) {
453        if (!Older->getParamDecl(p)->hasDefaultArg())
454          break;
455
456        OldParam = Older->getParamDecl(p);
457      }
458
459      Diag(OldParam->getLocation(), diag::note_previous_definition)
460        << OldParam->getDefaultArgRange();
461    } else if (OldParamHasDfl) {
462      // Merge the old default argument into the new parameter.
463      // It's important to use getInit() here;  getDefaultArg()
464      // strips off any top-level ExprWithCleanups.
465      NewParam->setHasInheritedDefaultArg();
466      if (OldParam->hasUninstantiatedDefaultArg())
467        NewParam->setUninstantiatedDefaultArg(
468                                      OldParam->getUninstantiatedDefaultArg());
469      else
470        NewParam->setDefaultArg(OldParam->getInit());
471    } else if (NewParamHasDfl) {
472      if (New->getDescribedFunctionTemplate()) {
473        // Paragraph 4, quoted above, only applies to non-template functions.
474        Diag(NewParam->getLocation(),
475             diag::err_param_default_argument_template_redecl)
476          << NewParam->getDefaultArgRange();
477        Diag(Old->getLocation(), diag::note_template_prev_declaration)
478          << false;
479      } else if (New->getTemplateSpecializationKind()
480                   != TSK_ImplicitInstantiation &&
481                 New->getTemplateSpecializationKind() != TSK_Undeclared) {
482        // C++ [temp.expr.spec]p21:
483        //   Default function arguments shall not be specified in a declaration
484        //   or a definition for one of the following explicit specializations:
485        //     - the explicit specialization of a function template;
486        //     - the explicit specialization of a member function template;
487        //     - the explicit specialization of a member function of a class
488        //       template where the class template specialization to which the
489        //       member function specialization belongs is implicitly
490        //       instantiated.
491        Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
492          << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
493          << New->getDeclName()
494          << NewParam->getDefaultArgRange();
495      } else if (New->getDeclContext()->isDependentContext()) {
496        // C++ [dcl.fct.default]p6 (DR217):
497        //   Default arguments for a member function of a class template shall
498        //   be specified on the initial declaration of the member function
499        //   within the class template.
500        //
501        // Reading the tea leaves a bit in DR217 and its reference to DR205
502        // leads me to the conclusion that one cannot add default function
503        // arguments for an out-of-line definition of a member function of a
504        // dependent type.
505        int WhichKind = 2;
506        if (CXXRecordDecl *Record
507              = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
508          if (Record->getDescribedClassTemplate())
509            WhichKind = 0;
510          else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
511            WhichKind = 1;
512          else
513            WhichKind = 2;
514        }
515
516        Diag(NewParam->getLocation(),
517             diag::err_param_default_argument_member_template_redecl)
518          << WhichKind
519          << NewParam->getDefaultArgRange();
520      } else if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(New)) {
521        CXXSpecialMember NewSM = getSpecialMember(Ctor),
522                         OldSM = getSpecialMember(cast<CXXConstructorDecl>(Old));
523        if (NewSM != OldSM) {
524          Diag(NewParam->getLocation(),diag::warn_default_arg_makes_ctor_special)
525            << NewParam->getDefaultArgRange() << NewSM;
526          Diag(Old->getLocation(), diag::note_previous_declaration_special)
527            << OldSM;
528        }
529      }
530    }
531  }
532
533  // C++11 [dcl.constexpr]p1: If any declaration of a function or function
534  // template has a constexpr specifier then all its declarations shall
535  // contain the constexpr specifier.
536  if (New->isConstexpr() != Old->isConstexpr()) {
537    Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
538      << New << New->isConstexpr();
539    Diag(Old->getLocation(), diag::note_previous_declaration);
540    Invalid = true;
541  }
542
543  if (CheckEquivalentExceptionSpec(Old, New))
544    Invalid = true;
545
546  return Invalid;
547}
548
549/// \brief Merge the exception specifications of two variable declarations.
550///
551/// This is called when there's a redeclaration of a VarDecl. The function
552/// checks if the redeclaration might have an exception specification and
553/// validates compatibility and merges the specs if necessary.
554void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
555  // Shortcut if exceptions are disabled.
556  if (!getLangOpts().CXXExceptions)
557    return;
558
559  assert(Context.hasSameType(New->getType(), Old->getType()) &&
560         "Should only be called if types are otherwise the same.");
561
562  QualType NewType = New->getType();
563  QualType OldType = Old->getType();
564
565  // We're only interested in pointers and references to functions, as well
566  // as pointers to member functions.
567  if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
568    NewType = R->getPointeeType();
569    OldType = OldType->getAs<ReferenceType>()->getPointeeType();
570  } else if (const PointerType *P = NewType->getAs<PointerType>()) {
571    NewType = P->getPointeeType();
572    OldType = OldType->getAs<PointerType>()->getPointeeType();
573  } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
574    NewType = M->getPointeeType();
575    OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
576  }
577
578  if (!NewType->isFunctionProtoType())
579    return;
580
581  // There's lots of special cases for functions. For function pointers, system
582  // libraries are hopefully not as broken so that we don't need these
583  // workarounds.
584  if (CheckEquivalentExceptionSpec(
585        OldType->getAs<FunctionProtoType>(), Old->getLocation(),
586        NewType->getAs<FunctionProtoType>(), New->getLocation())) {
587    New->setInvalidDecl();
588  }
589}
590
591/// CheckCXXDefaultArguments - Verify that the default arguments for a
592/// function declaration are well-formed according to C++
593/// [dcl.fct.default].
594void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
595  unsigned NumParams = FD->getNumParams();
596  unsigned p;
597
598  bool IsLambda = FD->getOverloadedOperator() == OO_Call &&
599                  isa<CXXMethodDecl>(FD) &&
600                  cast<CXXMethodDecl>(FD)->getParent()->isLambda();
601
602  // Find first parameter with a default argument
603  for (p = 0; p < NumParams; ++p) {
604    ParmVarDecl *Param = FD->getParamDecl(p);
605    if (Param->hasDefaultArg()) {
606      // C++11 [expr.prim.lambda]p5:
607      //   [...] Default arguments (8.3.6) shall not be specified in the
608      //   parameter-declaration-clause of a lambda-declarator.
609      //
610      // FIXME: Core issue 974 strikes this sentence, we only provide an
611      // extension warning.
612      if (IsLambda)
613        Diag(Param->getLocation(), diag::ext_lambda_default_arguments)
614          << Param->getDefaultArgRange();
615      break;
616    }
617  }
618
619  // C++ [dcl.fct.default]p4:
620  //   In a given function declaration, all parameters
621  //   subsequent to a parameter with a default argument shall
622  //   have default arguments supplied in this or previous
623  //   declarations. A default argument shall not be redefined
624  //   by a later declaration (not even to the same value).
625  unsigned LastMissingDefaultArg = 0;
626  for (; p < NumParams; ++p) {
627    ParmVarDecl *Param = FD->getParamDecl(p);
628    if (!Param->hasDefaultArg()) {
629      if (Param->isInvalidDecl())
630        /* We already complained about this parameter. */;
631      else if (Param->getIdentifier())
632        Diag(Param->getLocation(),
633             diag::err_param_default_argument_missing_name)
634          << Param->getIdentifier();
635      else
636        Diag(Param->getLocation(),
637             diag::err_param_default_argument_missing);
638
639      LastMissingDefaultArg = p;
640    }
641  }
642
643  if (LastMissingDefaultArg > 0) {
644    // Some default arguments were missing. Clear out all of the
645    // default arguments up to (and including) the last missing
646    // default argument, so that we leave the function parameters
647    // in a semantically valid state.
648    for (p = 0; p <= LastMissingDefaultArg; ++p) {
649      ParmVarDecl *Param = FD->getParamDecl(p);
650      if (Param->hasDefaultArg()) {
651        Param->setDefaultArg(0);
652      }
653    }
654  }
655}
656
657// CheckConstexprParameterTypes - Check whether a function's parameter types
658// are all literal types. If so, return true. If not, produce a suitable
659// diagnostic and return false.
660static bool CheckConstexprParameterTypes(Sema &SemaRef,
661                                         const FunctionDecl *FD) {
662  unsigned ArgIndex = 0;
663  const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
664  for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
665       e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
666    const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
667    SourceLocation ParamLoc = PD->getLocation();
668    if (!(*i)->isDependentType() &&
669        SemaRef.RequireLiteralType(ParamLoc, *i,
670                                   diag::err_constexpr_non_literal_param,
671                                   ArgIndex+1, PD->getSourceRange(),
672                                   isa<CXXConstructorDecl>(FD)))
673      return false;
674  }
675  return true;
676}
677
678/// \brief Get diagnostic %select index for tag kind for
679/// record diagnostic message.
680/// WARNING: Indexes apply to particular diagnostics only!
681///
682/// \returns diagnostic %select index.
683static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
684  switch (Tag) {
685  case TTK_Struct: return 0;
686  case TTK_Interface: return 1;
687  case TTK_Class:  return 2;
688  default: llvm_unreachable("Invalid tag kind for record diagnostic!");
689  }
690}
691
692// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
693// the requirements of a constexpr function definition or a constexpr
694// constructor definition. If so, return true. If not, produce appropriate
695// diagnostics and return false.
696//
697// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
698bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
699  const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
700  if (MD && MD->isInstance()) {
701    // C++11 [dcl.constexpr]p4:
702    //  The definition of a constexpr constructor shall satisfy the following
703    //  constraints:
704    //  - the class shall not have any virtual base classes;
705    const CXXRecordDecl *RD = MD->getParent();
706    if (RD->getNumVBases()) {
707      Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
708        << isa<CXXConstructorDecl>(NewFD)
709        << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
710      for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
711             E = RD->vbases_end(); I != E; ++I)
712        Diag(I->getLocStart(),
713             diag::note_constexpr_virtual_base_here) << I->getSourceRange();
714      return false;
715    }
716  }
717
718  if (!isa<CXXConstructorDecl>(NewFD)) {
719    // C++11 [dcl.constexpr]p3:
720    //  The definition of a constexpr function shall satisfy the following
721    //  constraints:
722    // - it shall not be virtual;
723    const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
724    if (Method && Method->isVirtual()) {
725      Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
726
727      // If it's not obvious why this function is virtual, find an overridden
728      // function which uses the 'virtual' keyword.
729      const CXXMethodDecl *WrittenVirtual = Method;
730      while (!WrittenVirtual->isVirtualAsWritten())
731        WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
732      if (WrittenVirtual != Method)
733        Diag(WrittenVirtual->getLocation(),
734             diag::note_overridden_virtual_function);
735      return false;
736    }
737
738    // - its return type shall be a literal type;
739    QualType RT = NewFD->getResultType();
740    if (!RT->isDependentType() &&
741        RequireLiteralType(NewFD->getLocation(), RT,
742                           diag::err_constexpr_non_literal_return))
743      return false;
744  }
745
746  // - each of its parameter types shall be a literal type;
747  if (!CheckConstexprParameterTypes(*this, NewFD))
748    return false;
749
750  return true;
751}
752
753/// Check the given declaration statement is legal within a constexpr function
754/// body. C++0x [dcl.constexpr]p3,p4.
755///
756/// \return true if the body is OK, false if we have diagnosed a problem.
757static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
758                                   DeclStmt *DS) {
759  // C++0x [dcl.constexpr]p3 and p4:
760  //  The definition of a constexpr function(p3) or constructor(p4) [...] shall
761  //  contain only
762  for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
763         DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
764    switch ((*DclIt)->getKind()) {
765    case Decl::StaticAssert:
766    case Decl::Using:
767    case Decl::UsingShadow:
768    case Decl::UsingDirective:
769    case Decl::UnresolvedUsingTypename:
770      //   - static_assert-declarations
771      //   - using-declarations,
772      //   - using-directives,
773      continue;
774
775    case Decl::Typedef:
776    case Decl::TypeAlias: {
777      //   - typedef declarations and alias-declarations that do not define
778      //     classes or enumerations,
779      TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
780      if (TN->getUnderlyingType()->isVariablyModifiedType()) {
781        // Don't allow variably-modified types in constexpr functions.
782        TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
783        SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
784          << TL.getSourceRange() << TL.getType()
785          << isa<CXXConstructorDecl>(Dcl);
786        return false;
787      }
788      continue;
789    }
790
791    case Decl::Enum:
792    case Decl::CXXRecord:
793      // As an extension, we allow the declaration (but not the definition) of
794      // classes and enumerations in all declarations, not just in typedef and
795      // alias declarations.
796      if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition()) {
797        SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_type_definition)
798          << isa<CXXConstructorDecl>(Dcl);
799        return false;
800      }
801      continue;
802
803    case Decl::Var:
804      SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_var_declaration)
805        << isa<CXXConstructorDecl>(Dcl);
806      return false;
807
808    default:
809      SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
810        << isa<CXXConstructorDecl>(Dcl);
811      return false;
812    }
813  }
814
815  return true;
816}
817
818/// Check that the given field is initialized within a constexpr constructor.
819///
820/// \param Dcl The constexpr constructor being checked.
821/// \param Field The field being checked. This may be a member of an anonymous
822///        struct or union nested within the class being checked.
823/// \param Inits All declarations, including anonymous struct/union members and
824///        indirect members, for which any initialization was provided.
825/// \param Diagnosed Set to true if an error is produced.
826static void CheckConstexprCtorInitializer(Sema &SemaRef,
827                                          const FunctionDecl *Dcl,
828                                          FieldDecl *Field,
829                                          llvm::SmallSet<Decl*, 16> &Inits,
830                                          bool &Diagnosed) {
831  if (Field->isUnnamedBitfield())
832    return;
833
834  if (Field->isAnonymousStructOrUnion() &&
835      Field->getType()->getAsCXXRecordDecl()->isEmpty())
836    return;
837
838  if (!Inits.count(Field)) {
839    if (!Diagnosed) {
840      SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
841      Diagnosed = true;
842    }
843    SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
844  } else if (Field->isAnonymousStructOrUnion()) {
845    const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
846    for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
847         I != E; ++I)
848      // If an anonymous union contains an anonymous struct of which any member
849      // is initialized, all members must be initialized.
850      if (!RD->isUnion() || Inits.count(*I))
851        CheckConstexprCtorInitializer(SemaRef, Dcl, *I, Inits, Diagnosed);
852  }
853}
854
855/// Check the body for the given constexpr function declaration only contains
856/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
857///
858/// \return true if the body is OK, false if we have diagnosed a problem.
859bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
860  if (isa<CXXTryStmt>(Body)) {
861    // C++11 [dcl.constexpr]p3:
862    //  The definition of a constexpr function shall satisfy the following
863    //  constraints: [...]
864    // - its function-body shall be = delete, = default, or a
865    //   compound-statement
866    //
867    // C++11 [dcl.constexpr]p4:
868    //  In the definition of a constexpr constructor, [...]
869    // - its function-body shall not be a function-try-block;
870    Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
871      << isa<CXXConstructorDecl>(Dcl);
872    return false;
873  }
874
875  // - its function-body shall be [...] a compound-statement that contains only
876  CompoundStmt *CompBody = cast<CompoundStmt>(Body);
877
878  llvm::SmallVector<SourceLocation, 4> ReturnStmts;
879  for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
880         BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
881    switch ((*BodyIt)->getStmtClass()) {
882    case Stmt::NullStmtClass:
883      //   - null statements,
884      continue;
885
886    case Stmt::DeclStmtClass:
887      //   - static_assert-declarations
888      //   - using-declarations,
889      //   - using-directives,
890      //   - typedef declarations and alias-declarations that do not define
891      //     classes or enumerations,
892      if (!CheckConstexprDeclStmt(*this, Dcl, cast<DeclStmt>(*BodyIt)))
893        return false;
894      continue;
895
896    case Stmt::ReturnStmtClass:
897      //   - and exactly one return statement;
898      if (isa<CXXConstructorDecl>(Dcl))
899        break;
900
901      ReturnStmts.push_back((*BodyIt)->getLocStart());
902      continue;
903
904    default:
905      break;
906    }
907
908    Diag((*BodyIt)->getLocStart(), diag::err_constexpr_body_invalid_stmt)
909      << isa<CXXConstructorDecl>(Dcl);
910    return false;
911  }
912
913  if (const CXXConstructorDecl *Constructor
914        = dyn_cast<CXXConstructorDecl>(Dcl)) {
915    const CXXRecordDecl *RD = Constructor->getParent();
916    // DR1359:
917    // - every non-variant non-static data member and base class sub-object
918    //   shall be initialized;
919    // - if the class is a non-empty union, or for each non-empty anonymous
920    //   union member of a non-union class, exactly one non-static data member
921    //   shall be initialized;
922    if (RD->isUnion()) {
923      if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
924        Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
925        return false;
926      }
927    } else if (!Constructor->isDependentContext() &&
928               !Constructor->isDelegatingConstructor()) {
929      assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
930
931      // Skip detailed checking if we have enough initializers, and we would
932      // allow at most one initializer per member.
933      bool AnyAnonStructUnionMembers = false;
934      unsigned Fields = 0;
935      for (CXXRecordDecl::field_iterator I = RD->field_begin(),
936           E = RD->field_end(); I != E; ++I, ++Fields) {
937        if (I->isAnonymousStructOrUnion()) {
938          AnyAnonStructUnionMembers = true;
939          break;
940        }
941      }
942      if (AnyAnonStructUnionMembers ||
943          Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
944        // Check initialization of non-static data members. Base classes are
945        // always initialized so do not need to be checked. Dependent bases
946        // might not have initializers in the member initializer list.
947        llvm::SmallSet<Decl*, 16> Inits;
948        for (CXXConstructorDecl::init_const_iterator
949               I = Constructor->init_begin(), E = Constructor->init_end();
950             I != E; ++I) {
951          if (FieldDecl *FD = (*I)->getMember())
952            Inits.insert(FD);
953          else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
954            Inits.insert(ID->chain_begin(), ID->chain_end());
955        }
956
957        bool Diagnosed = false;
958        for (CXXRecordDecl::field_iterator I = RD->field_begin(),
959             E = RD->field_end(); I != E; ++I)
960          CheckConstexprCtorInitializer(*this, Dcl, *I, Inits, Diagnosed);
961        if (Diagnosed)
962          return false;
963      }
964    }
965  } else {
966    if (ReturnStmts.empty()) {
967      Diag(Dcl->getLocation(), diag::err_constexpr_body_no_return);
968      return false;
969    }
970    if (ReturnStmts.size() > 1) {
971      Diag(ReturnStmts.back(), diag::err_constexpr_body_multiple_return);
972      for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
973        Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
974      return false;
975    }
976  }
977
978  // C++11 [dcl.constexpr]p5:
979  //   if no function argument values exist such that the function invocation
980  //   substitution would produce a constant expression, the program is
981  //   ill-formed; no diagnostic required.
982  // C++11 [dcl.constexpr]p3:
983  //   - every constructor call and implicit conversion used in initializing the
984  //     return value shall be one of those allowed in a constant expression.
985  // C++11 [dcl.constexpr]p4:
986  //   - every constructor involved in initializing non-static data members and
987  //     base class sub-objects shall be a constexpr constructor.
988  llvm::SmallVector<PartialDiagnosticAt, 8> Diags;
989  if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
990    Diag(Dcl->getLocation(), diag::err_constexpr_function_never_constant_expr)
991      << isa<CXXConstructorDecl>(Dcl);
992    for (size_t I = 0, N = Diags.size(); I != N; ++I)
993      Diag(Diags[I].first, Diags[I].second);
994    return false;
995  }
996
997  return true;
998}
999
1000/// isCurrentClassName - Determine whether the identifier II is the
1001/// name of the class type currently being defined. In the case of
1002/// nested classes, this will only return true if II is the name of
1003/// the innermost class.
1004bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
1005                              const CXXScopeSpec *SS) {
1006  assert(getLangOpts().CPlusPlus && "No class names in C!");
1007
1008  CXXRecordDecl *CurDecl;
1009  if (SS && SS->isSet() && !SS->isInvalid()) {
1010    DeclContext *DC = computeDeclContext(*SS, true);
1011    CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1012  } else
1013    CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1014
1015  if (CurDecl && CurDecl->getIdentifier())
1016    return &II == CurDecl->getIdentifier();
1017  else
1018    return false;
1019}
1020
1021/// \brief Check the validity of a C++ base class specifier.
1022///
1023/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1024/// and returns NULL otherwise.
1025CXXBaseSpecifier *
1026Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1027                         SourceRange SpecifierRange,
1028                         bool Virtual, AccessSpecifier Access,
1029                         TypeSourceInfo *TInfo,
1030                         SourceLocation EllipsisLoc) {
1031  QualType BaseType = TInfo->getType();
1032
1033  // C++ [class.union]p1:
1034  //   A union shall not have base classes.
1035  if (Class->isUnion()) {
1036    Diag(Class->getLocation(), diag::err_base_clause_on_union)
1037      << SpecifierRange;
1038    return 0;
1039  }
1040
1041  if (EllipsisLoc.isValid() &&
1042      !TInfo->getType()->containsUnexpandedParameterPack()) {
1043    Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1044      << TInfo->getTypeLoc().getSourceRange();
1045    EllipsisLoc = SourceLocation();
1046  }
1047
1048  if (BaseType->isDependentType())
1049    return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
1050                                          Class->getTagKind() == TTK_Class,
1051                                          Access, TInfo, EllipsisLoc);
1052
1053  SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
1054
1055  // Base specifiers must be record types.
1056  if (!BaseType->isRecordType()) {
1057    Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1058    return 0;
1059  }
1060
1061  // C++ [class.union]p1:
1062  //   A union shall not be used as a base class.
1063  if (BaseType->isUnionType()) {
1064    Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1065    return 0;
1066  }
1067
1068  // C++ [class.derived]p2:
1069  //   The class-name in a base-specifier shall not be an incompletely
1070  //   defined class.
1071  if (RequireCompleteType(BaseLoc, BaseType,
1072                          diag::err_incomplete_base_class, SpecifierRange)) {
1073    Class->setInvalidDecl();
1074    return 0;
1075  }
1076
1077  // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
1078  RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
1079  assert(BaseDecl && "Record type has no declaration");
1080  BaseDecl = BaseDecl->getDefinition();
1081  assert(BaseDecl && "Base type is not incomplete, but has no definition");
1082  CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1083  assert(CXXBaseDecl && "Base type is not a C++ type");
1084
1085  // C++ [class]p3:
1086  //   If a class is marked final and it appears as a base-type-specifier in
1087  //   base-clause, the program is ill-formed.
1088  if (CXXBaseDecl->hasAttr<FinalAttr>()) {
1089    Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1090      << CXXBaseDecl->getDeclName();
1091    Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1092      << CXXBaseDecl->getDeclName();
1093    return 0;
1094  }
1095
1096  if (BaseDecl->isInvalidDecl())
1097    Class->setInvalidDecl();
1098
1099  // Create the base specifier.
1100  return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
1101                                        Class->getTagKind() == TTK_Class,
1102                                        Access, TInfo, EllipsisLoc);
1103}
1104
1105/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1106/// one entry in the base class list of a class specifier, for
1107/// example:
1108///    class foo : public bar, virtual private baz {
1109/// 'public bar' and 'virtual private baz' are each base-specifiers.
1110BaseResult
1111Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
1112                         bool Virtual, AccessSpecifier Access,
1113                         ParsedType basetype, SourceLocation BaseLoc,
1114                         SourceLocation EllipsisLoc) {
1115  if (!classdecl)
1116    return true;
1117
1118  AdjustDeclIfTemplate(classdecl);
1119  CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
1120  if (!Class)
1121    return true;
1122
1123  TypeSourceInfo *TInfo = 0;
1124  GetTypeFromParser(basetype, &TInfo);
1125
1126  if (EllipsisLoc.isInvalid() &&
1127      DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
1128                                      UPPC_BaseType))
1129    return true;
1130
1131  if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
1132                                                      Virtual, Access, TInfo,
1133                                                      EllipsisLoc))
1134    return BaseSpec;
1135  else
1136    Class->setInvalidDecl();
1137
1138  return true;
1139}
1140
1141/// \brief Performs the actual work of attaching the given base class
1142/// specifiers to a C++ class.
1143bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1144                                unsigned NumBases) {
1145 if (NumBases == 0)
1146    return false;
1147
1148  // Used to keep track of which base types we have already seen, so
1149  // that we can properly diagnose redundant direct base types. Note
1150  // that the key is always the unqualified canonical type of the base
1151  // class.
1152  std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1153
1154  // Copy non-redundant base specifiers into permanent storage.
1155  unsigned NumGoodBases = 0;
1156  bool Invalid = false;
1157  for (unsigned idx = 0; idx < NumBases; ++idx) {
1158    QualType NewBaseType
1159      = Context.getCanonicalType(Bases[idx]->getType());
1160    NewBaseType = NewBaseType.getLocalUnqualifiedType();
1161
1162    CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1163    if (KnownBase) {
1164      // C++ [class.mi]p3:
1165      //   A class shall not be specified as a direct base class of a
1166      //   derived class more than once.
1167      Diag(Bases[idx]->getLocStart(),
1168           diag::err_duplicate_base_class)
1169        << KnownBase->getType()
1170        << Bases[idx]->getSourceRange();
1171
1172      // Delete the duplicate base class specifier; we're going to
1173      // overwrite its pointer later.
1174      Context.Deallocate(Bases[idx]);
1175
1176      Invalid = true;
1177    } else {
1178      // Okay, add this new base class.
1179      KnownBase = Bases[idx];
1180      Bases[NumGoodBases++] = Bases[idx];
1181      if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
1182        const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
1183        if (Class->isInterface() &&
1184              (!RD->isInterface() ||
1185               KnownBase->getAccessSpecifier() != AS_public)) {
1186          // The Microsoft extension __interface does not permit bases that
1187          // are not themselves public interfaces.
1188          Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
1189            << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
1190            << RD->getSourceRange();
1191          Invalid = true;
1192        }
1193        if (RD->hasAttr<WeakAttr>())
1194          Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
1195      }
1196    }
1197  }
1198
1199  // Attach the remaining base class specifiers to the derived class.
1200  Class->setBases(Bases, NumGoodBases);
1201
1202  // Delete the remaining (good) base class specifiers, since their
1203  // data has been copied into the CXXRecordDecl.
1204  for (unsigned idx = 0; idx < NumGoodBases; ++idx)
1205    Context.Deallocate(Bases[idx]);
1206
1207  return Invalid;
1208}
1209
1210/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1211/// class, after checking whether there are any duplicate base
1212/// classes.
1213void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
1214                               unsigned NumBases) {
1215  if (!ClassDecl || !Bases || !NumBases)
1216    return;
1217
1218  AdjustDeclIfTemplate(ClassDecl);
1219  AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
1220                       (CXXBaseSpecifier**)(Bases), NumBases);
1221}
1222
1223static CXXRecordDecl *GetClassForType(QualType T) {
1224  if (const RecordType *RT = T->getAs<RecordType>())
1225    return cast<CXXRecordDecl>(RT->getDecl());
1226  else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1227    return ICT->getDecl();
1228  else
1229    return 0;
1230}
1231
1232/// \brief Determine whether the type \p Derived is a C++ class that is
1233/// derived from the type \p Base.
1234bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
1235  if (!getLangOpts().CPlusPlus)
1236    return false;
1237
1238  CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1239  if (!DerivedRD)
1240    return false;
1241
1242  CXXRecordDecl *BaseRD = GetClassForType(Base);
1243  if (!BaseRD)
1244    return false;
1245
1246  // FIXME: instantiate DerivedRD if necessary.  We need a PoI for this.
1247  return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
1248}
1249
1250/// \brief Determine whether the type \p Derived is a C++ class that is
1251/// derived from the type \p Base.
1252bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
1253  if (!getLangOpts().CPlusPlus)
1254    return false;
1255
1256  CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1257  if (!DerivedRD)
1258    return false;
1259
1260  CXXRecordDecl *BaseRD = GetClassForType(Base);
1261  if (!BaseRD)
1262    return false;
1263
1264  return DerivedRD->isDerivedFrom(BaseRD, Paths);
1265}
1266
1267void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
1268                              CXXCastPath &BasePathArray) {
1269  assert(BasePathArray.empty() && "Base path array must be empty!");
1270  assert(Paths.isRecordingPaths() && "Must record paths!");
1271
1272  const CXXBasePath &Path = Paths.front();
1273
1274  // We first go backward and check if we have a virtual base.
1275  // FIXME: It would be better if CXXBasePath had the base specifier for
1276  // the nearest virtual base.
1277  unsigned Start = 0;
1278  for (unsigned I = Path.size(); I != 0; --I) {
1279    if (Path[I - 1].Base->isVirtual()) {
1280      Start = I - 1;
1281      break;
1282    }
1283  }
1284
1285  // Now add all bases.
1286  for (unsigned I = Start, E = Path.size(); I != E; ++I)
1287    BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
1288}
1289
1290/// \brief Determine whether the given base path includes a virtual
1291/// base class.
1292bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1293  for (CXXCastPath::const_iterator B = BasePath.begin(),
1294                                BEnd = BasePath.end();
1295       B != BEnd; ++B)
1296    if ((*B)->isVirtual())
1297      return true;
1298
1299  return false;
1300}
1301
1302/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1303/// conversion (where Derived and Base are class types) is
1304/// well-formed, meaning that the conversion is unambiguous (and
1305/// that all of the base classes are accessible). Returns true
1306/// and emits a diagnostic if the code is ill-formed, returns false
1307/// otherwise. Loc is the location where this routine should point to
1308/// if there is an error, and Range is the source range to highlight
1309/// if there is an error.
1310bool
1311Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
1312                                   unsigned InaccessibleBaseID,
1313                                   unsigned AmbigiousBaseConvID,
1314                                   SourceLocation Loc, SourceRange Range,
1315                                   DeclarationName Name,
1316                                   CXXCastPath *BasePath) {
1317  // First, determine whether the path from Derived to Base is
1318  // ambiguous. This is slightly more expensive than checking whether
1319  // the Derived to Base conversion exists, because here we need to
1320  // explore multiple paths to determine if there is an ambiguity.
1321  CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1322                     /*DetectVirtual=*/false);
1323  bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1324  assert(DerivationOkay &&
1325         "Can only be used with a derived-to-base conversion");
1326  (void)DerivationOkay;
1327
1328  if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
1329    if (InaccessibleBaseID) {
1330      // Check that the base class can be accessed.
1331      switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1332                                   InaccessibleBaseID)) {
1333        case AR_inaccessible:
1334          return true;
1335        case AR_accessible:
1336        case AR_dependent:
1337        case AR_delayed:
1338          break;
1339      }
1340    }
1341
1342    // Build a base path if necessary.
1343    if (BasePath)
1344      BuildBasePathArray(Paths, *BasePath);
1345    return false;
1346  }
1347
1348  // We know that the derived-to-base conversion is ambiguous, and
1349  // we're going to produce a diagnostic. Perform the derived-to-base
1350  // search just one more time to compute all of the possible paths so
1351  // that we can print them out. This is more expensive than any of
1352  // the previous derived-to-base checks we've done, but at this point
1353  // performance isn't as much of an issue.
1354  Paths.clear();
1355  Paths.setRecordingPaths(true);
1356  bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1357  assert(StillOkay && "Can only be used with a derived-to-base conversion");
1358  (void)StillOkay;
1359
1360  // Build up a textual representation of the ambiguous paths, e.g.,
1361  // D -> B -> A, that will be used to illustrate the ambiguous
1362  // conversions in the diagnostic. We only print one of the paths
1363  // to each base class subobject.
1364  std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1365
1366  Diag(Loc, AmbigiousBaseConvID)
1367  << Derived << Base << PathDisplayStr << Range << Name;
1368  return true;
1369}
1370
1371bool
1372Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
1373                                   SourceLocation Loc, SourceRange Range,
1374                                   CXXCastPath *BasePath,
1375                                   bool IgnoreAccess) {
1376  return CheckDerivedToBaseConversion(Derived, Base,
1377                                      IgnoreAccess ? 0
1378                                       : diag::err_upcast_to_inaccessible_base,
1379                                      diag::err_ambiguous_derived_to_base_conv,
1380                                      Loc, Range, DeclarationName(),
1381                                      BasePath);
1382}
1383
1384
1385/// @brief Builds a string representing ambiguous paths from a
1386/// specific derived class to different subobjects of the same base
1387/// class.
1388///
1389/// This function builds a string that can be used in error messages
1390/// to show the different paths that one can take through the
1391/// inheritance hierarchy to go from the derived class to different
1392/// subobjects of a base class. The result looks something like this:
1393/// @code
1394/// struct D -> struct B -> struct A
1395/// struct D -> struct C -> struct A
1396/// @endcode
1397std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1398  std::string PathDisplayStr;
1399  std::set<unsigned> DisplayedPaths;
1400  for (CXXBasePaths::paths_iterator Path = Paths.begin();
1401       Path != Paths.end(); ++Path) {
1402    if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1403      // We haven't displayed a path to this particular base
1404      // class subobject yet.
1405      PathDisplayStr += "\n    ";
1406      PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1407      for (CXXBasePath::const_iterator Element = Path->begin();
1408           Element != Path->end(); ++Element)
1409        PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1410    }
1411  }
1412
1413  return PathDisplayStr;
1414}
1415
1416//===----------------------------------------------------------------------===//
1417// C++ class member Handling
1418//===----------------------------------------------------------------------===//
1419
1420/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
1421bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1422                                SourceLocation ASLoc,
1423                                SourceLocation ColonLoc,
1424                                AttributeList *Attrs) {
1425  assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
1426  AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
1427                                                  ASLoc, ColonLoc);
1428  CurContext->addHiddenDecl(ASDecl);
1429  return ProcessAccessDeclAttributeList(ASDecl, Attrs);
1430}
1431
1432/// CheckOverrideControl - Check C++11 override control semantics.
1433void Sema::CheckOverrideControl(Decl *D) {
1434  if (D->isInvalidDecl())
1435    return;
1436
1437  const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
1438
1439  // Do we know which functions this declaration might be overriding?
1440  bool OverridesAreKnown = !MD ||
1441      (!MD->getParent()->hasAnyDependentBases() &&
1442       !MD->getType()->isDependentType());
1443
1444  if (!MD || !MD->isVirtual()) {
1445    if (OverridesAreKnown) {
1446      if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1447        Diag(OA->getLocation(),
1448             diag::override_keyword_only_allowed_on_virtual_member_functions)
1449          << "override" << FixItHint::CreateRemoval(OA->getLocation());
1450        D->dropAttr<OverrideAttr>();
1451      }
1452      if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1453        Diag(FA->getLocation(),
1454             diag::override_keyword_only_allowed_on_virtual_member_functions)
1455          << "final" << FixItHint::CreateRemoval(FA->getLocation());
1456        D->dropAttr<FinalAttr>();
1457      }
1458    }
1459    return;
1460  }
1461
1462  if (!OverridesAreKnown)
1463    return;
1464
1465  // C++11 [class.virtual]p5:
1466  //   If a virtual function is marked with the virt-specifier override and
1467  //   does not override a member function of a base class, the program is
1468  //   ill-formed.
1469  bool HasOverriddenMethods =
1470    MD->begin_overridden_methods() != MD->end_overridden_methods();
1471  if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1472    Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1473      << MD->getDeclName();
1474}
1475
1476/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
1477/// function overrides a virtual member function marked 'final', according to
1478/// C++11 [class.virtual]p4.
1479bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1480                                                  const CXXMethodDecl *Old) {
1481  if (!Old->hasAttr<FinalAttr>())
1482    return false;
1483
1484  Diag(New->getLocation(), diag::err_final_function_overridden)
1485    << New->getDeclName();
1486  Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1487  return true;
1488}
1489
1490static bool InitializationHasSideEffects(const FieldDecl &FD) {
1491  const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1492  // FIXME: Destruction of ObjC lifetime types has side-effects.
1493  if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1494    return !RD->isCompleteDefinition() ||
1495           !RD->hasTrivialDefaultConstructor() ||
1496           !RD->hasTrivialDestructor();
1497  return false;
1498}
1499
1500/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1501/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
1502/// bitfield width if there is one, 'InitExpr' specifies the initializer if
1503/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1504/// present (but parsing it has been deferred).
1505Decl *
1506Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
1507                               MultiTemplateParamsArg TemplateParameterLists,
1508                               Expr *BW, const VirtSpecifiers &VS,
1509                               InClassInitStyle InitStyle) {
1510  const DeclSpec &DS = D.getDeclSpec();
1511  DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1512  DeclarationName Name = NameInfo.getName();
1513  SourceLocation Loc = NameInfo.getLoc();
1514
1515  // For anonymous bitfields, the location should point to the type.
1516  if (Loc.isInvalid())
1517    Loc = D.getLocStart();
1518
1519  Expr *BitWidth = static_cast<Expr*>(BW);
1520
1521  assert(isa<CXXRecordDecl>(CurContext));
1522  assert(!DS.isFriendSpecified());
1523
1524  bool isFunc = D.isDeclarationOfFunction();
1525
1526  if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
1527    // The Microsoft extension __interface only permits public member functions
1528    // and prohibits constructors, destructors, operators, non-public member
1529    // functions, static methods and data members.
1530    unsigned InvalidDecl;
1531    bool ShowDeclName = true;
1532    if (!isFunc)
1533      InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
1534    else if (AS != AS_public)
1535      InvalidDecl = 2;
1536    else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
1537      InvalidDecl = 3;
1538    else switch (Name.getNameKind()) {
1539      case DeclarationName::CXXConstructorName:
1540        InvalidDecl = 4;
1541        ShowDeclName = false;
1542        break;
1543
1544      case DeclarationName::CXXDestructorName:
1545        InvalidDecl = 5;
1546        ShowDeclName = false;
1547        break;
1548
1549      case DeclarationName::CXXOperatorName:
1550      case DeclarationName::CXXConversionFunctionName:
1551        InvalidDecl = 6;
1552        break;
1553
1554      default:
1555        InvalidDecl = 0;
1556        break;
1557    }
1558
1559    if (InvalidDecl) {
1560      if (ShowDeclName)
1561        Diag(Loc, diag::err_invalid_member_in_interface)
1562          << (InvalidDecl-1) << Name;
1563      else
1564        Diag(Loc, diag::err_invalid_member_in_interface)
1565          << (InvalidDecl-1) << "";
1566      return 0;
1567    }
1568  }
1569
1570  // C++ 9.2p6: A member shall not be declared to have automatic storage
1571  // duration (auto, register) or with the extern storage-class-specifier.
1572  // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1573  // data members and cannot be applied to names declared const or static,
1574  // and cannot be applied to reference members.
1575  switch (DS.getStorageClassSpec()) {
1576    case DeclSpec::SCS_unspecified:
1577    case DeclSpec::SCS_typedef:
1578    case DeclSpec::SCS_static:
1579      // FALL THROUGH.
1580      break;
1581    case DeclSpec::SCS_mutable:
1582      if (isFunc) {
1583        if (DS.getStorageClassSpecLoc().isValid())
1584          Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
1585        else
1586          Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
1587
1588        // FIXME: It would be nicer if the keyword was ignored only for this
1589        // declarator. Otherwise we could get follow-up errors.
1590        D.getMutableDeclSpec().ClearStorageClassSpecs();
1591      }
1592      break;
1593    default:
1594      if (DS.getStorageClassSpecLoc().isValid())
1595        Diag(DS.getStorageClassSpecLoc(),
1596             diag::err_storageclass_invalid_for_member);
1597      else
1598        Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1599      D.getMutableDeclSpec().ClearStorageClassSpecs();
1600  }
1601
1602  bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1603                       DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
1604                      !isFunc);
1605
1606  Decl *Member;
1607  if (isInstField) {
1608    CXXScopeSpec &SS = D.getCXXScopeSpec();
1609
1610    // Data members must have identifiers for names.
1611    if (!Name.isIdentifier()) {
1612      Diag(Loc, diag::err_bad_variable_name)
1613        << Name;
1614      return 0;
1615    }
1616
1617    IdentifierInfo *II = Name.getAsIdentifierInfo();
1618
1619    // Member field could not be with "template" keyword.
1620    // So TemplateParameterLists should be empty in this case.
1621    if (TemplateParameterLists.size()) {
1622      TemplateParameterList* TemplateParams = TemplateParameterLists[0];
1623      if (TemplateParams->size()) {
1624        // There is no such thing as a member field template.
1625        Diag(D.getIdentifierLoc(), diag::err_template_member)
1626            << II
1627            << SourceRange(TemplateParams->getTemplateLoc(),
1628                TemplateParams->getRAngleLoc());
1629      } else {
1630        // There is an extraneous 'template<>' for this member.
1631        Diag(TemplateParams->getTemplateLoc(),
1632            diag::err_template_member_noparams)
1633            << II
1634            << SourceRange(TemplateParams->getTemplateLoc(),
1635                TemplateParams->getRAngleLoc());
1636      }
1637      return 0;
1638    }
1639
1640    if (SS.isSet() && !SS.isInvalid()) {
1641      // The user provided a superfluous scope specifier inside a class
1642      // definition:
1643      //
1644      // class X {
1645      //   int X::member;
1646      // };
1647      if (DeclContext *DC = computeDeclContext(SS, false))
1648        diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
1649      else
1650        Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1651          << Name << SS.getRange();
1652
1653      SS.clear();
1654    }
1655
1656    Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
1657                         InitStyle, AS);
1658    assert(Member && "HandleField never returns null");
1659  } else {
1660    assert(InitStyle == ICIS_NoInit);
1661
1662    Member = HandleDeclarator(S, D, TemplateParameterLists);
1663    if (!Member) {
1664      return 0;
1665    }
1666
1667    // Non-instance-fields can't have a bitfield.
1668    if (BitWidth) {
1669      if (Member->isInvalidDecl()) {
1670        // don't emit another diagnostic.
1671      } else if (isa<VarDecl>(Member)) {
1672        // C++ 9.6p3: A bit-field shall not be a static member.
1673        // "static member 'A' cannot be a bit-field"
1674        Diag(Loc, diag::err_static_not_bitfield)
1675          << Name << BitWidth->getSourceRange();
1676      } else if (isa<TypedefDecl>(Member)) {
1677        // "typedef member 'x' cannot be a bit-field"
1678        Diag(Loc, diag::err_typedef_not_bitfield)
1679          << Name << BitWidth->getSourceRange();
1680      } else {
1681        // A function typedef ("typedef int f(); f a;").
1682        // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1683        Diag(Loc, diag::err_not_integral_type_bitfield)
1684          << Name << cast<ValueDecl>(Member)->getType()
1685          << BitWidth->getSourceRange();
1686      }
1687
1688      BitWidth = 0;
1689      Member->setInvalidDecl();
1690    }
1691
1692    Member->setAccess(AS);
1693
1694    // If we have declared a member function template, set the access of the
1695    // templated declaration as well.
1696    if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1697      FunTmpl->getTemplatedDecl()->setAccess(AS);
1698  }
1699
1700  if (VS.isOverrideSpecified())
1701    Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1702  if (VS.isFinalSpecified())
1703    Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
1704
1705  if (VS.getLastLocation().isValid()) {
1706    // Update the end location of a method that has a virt-specifiers.
1707    if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1708      MD->setRangeEnd(VS.getLastLocation());
1709  }
1710
1711  CheckOverrideControl(Member);
1712
1713  assert((Name || isInstField) && "No identifier for non-field ?");
1714
1715  if (isInstField) {
1716    FieldDecl *FD = cast<FieldDecl>(Member);
1717    FieldCollector->Add(FD);
1718
1719    if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1720                                 FD->getLocation())
1721          != DiagnosticsEngine::Ignored) {
1722      // Remember all explicit private FieldDecls that have a name, no side
1723      // effects and are not part of a dependent type declaration.
1724      if (!FD->isImplicit() && FD->getDeclName() &&
1725          FD->getAccess() == AS_private &&
1726          !FD->hasAttr<UnusedAttr>() &&
1727          !FD->getParent()->isDependentContext() &&
1728          !InitializationHasSideEffects(*FD))
1729        UnusedPrivateFields.insert(FD);
1730    }
1731  }
1732
1733  return Member;
1734}
1735
1736namespace {
1737  class UninitializedFieldVisitor
1738      : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
1739    Sema &S;
1740    ValueDecl *VD;
1741  public:
1742    typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
1743    UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
1744                                                        S(S), VD(VD) {
1745    }
1746
1747    void HandleExpr(Expr *E) {
1748      if (!E) return;
1749
1750      // Expressions like x(x) sometimes lack the surrounding expressions
1751      // but need to be checked anyways.
1752      HandleValue(E);
1753      Visit(E);
1754    }
1755
1756    void HandleValue(Expr *E) {
1757      E = E->IgnoreParens();
1758
1759      if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1760        if (isa<EnumConstantDecl>(ME->getMemberDecl()))
1761            return;
1762        Expr *Base = E;
1763        while (isa<MemberExpr>(Base)) {
1764          ME = dyn_cast<MemberExpr>(Base);
1765          if (VarDecl *VarD = dyn_cast<VarDecl>(ME->getMemberDecl()))
1766            if (VarD->hasGlobalStorage())
1767              return;
1768          Base = ME->getBase();
1769        }
1770
1771        if (VD == ME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
1772          unsigned diag = VD->getType()->isReferenceType()
1773              ? diag::warn_reference_field_is_uninit
1774              : diag::warn_field_is_uninit;
1775          S.Diag(ME->getExprLoc(), diag) << ME->getMemberNameInfo().getName();
1776          return;
1777        }
1778      }
1779
1780      if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1781        HandleValue(CO->getTrueExpr());
1782        HandleValue(CO->getFalseExpr());
1783        return;
1784      }
1785
1786      if (BinaryConditionalOperator *BCO =
1787              dyn_cast<BinaryConditionalOperator>(E)) {
1788        HandleValue(BCO->getCommon());
1789        HandleValue(BCO->getFalseExpr());
1790        return;
1791      }
1792
1793      if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
1794        switch (BO->getOpcode()) {
1795        default:
1796          return;
1797        case(BO_PtrMemD):
1798        case(BO_PtrMemI):
1799          HandleValue(BO->getLHS());
1800          return;
1801        case(BO_Comma):
1802          HandleValue(BO->getRHS());
1803          return;
1804        }
1805      }
1806    }
1807
1808    void VisitImplicitCastExpr(ImplicitCastExpr *E) {
1809      if (E->getCastKind() == CK_LValueToRValue)
1810        HandleValue(E->getSubExpr());
1811
1812      Inherited::VisitImplicitCastExpr(E);
1813    }
1814
1815    void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
1816      Expr *Callee = E->getCallee();
1817      if (isa<MemberExpr>(Callee))
1818        HandleValue(Callee);
1819
1820      Inherited::VisitCXXMemberCallExpr(E);
1821    }
1822  };
1823  static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
1824                                                       ValueDecl *VD) {
1825    UninitializedFieldVisitor(S, VD).HandleExpr(E);
1826  }
1827} // namespace
1828
1829/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
1830/// in-class initializer for a non-static C++ class member, and after
1831/// instantiating an in-class initializer in a class template. Such actions
1832/// are deferred until the class is complete.
1833void
1834Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
1835                                       Expr *InitExpr) {
1836  FieldDecl *FD = cast<FieldDecl>(D);
1837  assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1838         "must set init style when field is created");
1839
1840  if (!InitExpr) {
1841    FD->setInvalidDecl();
1842    FD->removeInClassInitializer();
1843    return;
1844  }
1845
1846  if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1847    FD->setInvalidDecl();
1848    FD->removeInClassInitializer();
1849    return;
1850  }
1851
1852  if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, InitLoc)
1853      != DiagnosticsEngine::Ignored) {
1854    CheckInitExprContainsUninitializedFields(*this, InitExpr, FD);
1855  }
1856
1857  ExprResult Init = InitExpr;
1858  if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent() &&
1859      !FD->getDeclContext()->isDependentContext()) {
1860    // Note: We don't type-check when we're in a dependent context, because
1861    // the initialization-substitution code does not properly handle direct
1862    // list initialization. We have the same hackaround for ctor-initializers.
1863    if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
1864      Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
1865        << /*at end of ctor*/1 << InitExpr->getSourceRange();
1866    }
1867    Expr **Inits = &InitExpr;
1868    unsigned NumInits = 1;
1869    InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
1870    InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
1871        ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
1872        : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
1873    InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1874    Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
1875    if (Init.isInvalid()) {
1876      FD->setInvalidDecl();
1877      return;
1878    }
1879
1880    CheckImplicitConversions(Init.get(), InitLoc);
1881  }
1882
1883  // C++0x [class.base.init]p7:
1884  //   The initialization of each base and member constitutes a
1885  //   full-expression.
1886  Init = MaybeCreateExprWithCleanups(Init);
1887  if (Init.isInvalid()) {
1888    FD->setInvalidDecl();
1889    return;
1890  }
1891
1892  InitExpr = Init.release();
1893
1894  FD->setInClassInitializer(InitExpr);
1895}
1896
1897/// \brief Find the direct and/or virtual base specifiers that
1898/// correspond to the given base type, for use in base initialization
1899/// within a constructor.
1900static bool FindBaseInitializer(Sema &SemaRef,
1901                                CXXRecordDecl *ClassDecl,
1902                                QualType BaseType,
1903                                const CXXBaseSpecifier *&DirectBaseSpec,
1904                                const CXXBaseSpecifier *&VirtualBaseSpec) {
1905  // First, check for a direct base class.
1906  DirectBaseSpec = 0;
1907  for (CXXRecordDecl::base_class_const_iterator Base
1908         = ClassDecl->bases_begin();
1909       Base != ClassDecl->bases_end(); ++Base) {
1910    if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1911      // We found a direct base of this type. That's what we're
1912      // initializing.
1913      DirectBaseSpec = &*Base;
1914      break;
1915    }
1916  }
1917
1918  // Check for a virtual base class.
1919  // FIXME: We might be able to short-circuit this if we know in advance that
1920  // there are no virtual bases.
1921  VirtualBaseSpec = 0;
1922  if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1923    // We haven't found a base yet; search the class hierarchy for a
1924    // virtual base class.
1925    CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1926                       /*DetectVirtual=*/false);
1927    if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1928                              BaseType, Paths)) {
1929      for (CXXBasePaths::paths_iterator Path = Paths.begin();
1930           Path != Paths.end(); ++Path) {
1931        if (Path->back().Base->isVirtual()) {
1932          VirtualBaseSpec = Path->back().Base;
1933          break;
1934        }
1935      }
1936    }
1937  }
1938
1939  return DirectBaseSpec || VirtualBaseSpec;
1940}
1941
1942/// \brief Handle a C++ member initializer using braced-init-list syntax.
1943MemInitResult
1944Sema::ActOnMemInitializer(Decl *ConstructorD,
1945                          Scope *S,
1946                          CXXScopeSpec &SS,
1947                          IdentifierInfo *MemberOrBase,
1948                          ParsedType TemplateTypeTy,
1949                          const DeclSpec &DS,
1950                          SourceLocation IdLoc,
1951                          Expr *InitList,
1952                          SourceLocation EllipsisLoc) {
1953  return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
1954                             DS, IdLoc, InitList,
1955                             EllipsisLoc);
1956}
1957
1958/// \brief Handle a C++ member initializer using parentheses syntax.
1959MemInitResult
1960Sema::ActOnMemInitializer(Decl *ConstructorD,
1961                          Scope *S,
1962                          CXXScopeSpec &SS,
1963                          IdentifierInfo *MemberOrBase,
1964                          ParsedType TemplateTypeTy,
1965                          const DeclSpec &DS,
1966                          SourceLocation IdLoc,
1967                          SourceLocation LParenLoc,
1968                          Expr **Args, unsigned NumArgs,
1969                          SourceLocation RParenLoc,
1970                          SourceLocation EllipsisLoc) {
1971  Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
1972                                           llvm::makeArrayRef(Args, NumArgs),
1973                                           RParenLoc);
1974  return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
1975                             DS, IdLoc, List, EllipsisLoc);
1976}
1977
1978namespace {
1979
1980// Callback to only accept typo corrections that can be a valid C++ member
1981// intializer: either a non-static field member or a base class.
1982class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
1983 public:
1984  explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
1985      : ClassDecl(ClassDecl) {}
1986
1987  virtual bool ValidateCandidate(const TypoCorrection &candidate) {
1988    if (NamedDecl *ND = candidate.getCorrectionDecl()) {
1989      if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
1990        return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
1991      else
1992        return isa<TypeDecl>(ND);
1993    }
1994    return false;
1995  }
1996
1997 private:
1998  CXXRecordDecl *ClassDecl;
1999};
2000
2001}
2002
2003/// \brief Handle a C++ member initializer.
2004MemInitResult
2005Sema::BuildMemInitializer(Decl *ConstructorD,
2006                          Scope *S,
2007                          CXXScopeSpec &SS,
2008                          IdentifierInfo *MemberOrBase,
2009                          ParsedType TemplateTypeTy,
2010                          const DeclSpec &DS,
2011                          SourceLocation IdLoc,
2012                          Expr *Init,
2013                          SourceLocation EllipsisLoc) {
2014  if (!ConstructorD)
2015    return true;
2016
2017  AdjustDeclIfTemplate(ConstructorD);
2018
2019  CXXConstructorDecl *Constructor
2020    = dyn_cast<CXXConstructorDecl>(ConstructorD);
2021  if (!Constructor) {
2022    // The user wrote a constructor initializer on a function that is
2023    // not a C++ constructor. Ignore the error for now, because we may
2024    // have more member initializers coming; we'll diagnose it just
2025    // once in ActOnMemInitializers.
2026    return true;
2027  }
2028
2029  CXXRecordDecl *ClassDecl = Constructor->getParent();
2030
2031  // C++ [class.base.init]p2:
2032  //   Names in a mem-initializer-id are looked up in the scope of the
2033  //   constructor's class and, if not found in that scope, are looked
2034  //   up in the scope containing the constructor's definition.
2035  //   [Note: if the constructor's class contains a member with the
2036  //   same name as a direct or virtual base class of the class, a
2037  //   mem-initializer-id naming the member or base class and composed
2038  //   of a single identifier refers to the class member. A
2039  //   mem-initializer-id for the hidden base class may be specified
2040  //   using a qualified name. ]
2041  if (!SS.getScopeRep() && !TemplateTypeTy) {
2042    // Look for a member, first.
2043    DeclContext::lookup_result Result
2044      = ClassDecl->lookup(MemberOrBase);
2045    if (Result.first != Result.second) {
2046      ValueDecl *Member;
2047      if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
2048          (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
2049        if (EllipsisLoc.isValid())
2050          Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
2051            << MemberOrBase
2052            << SourceRange(IdLoc, Init->getSourceRange().getEnd());
2053
2054        return BuildMemberInitializer(Member, Init, IdLoc);
2055      }
2056    }
2057  }
2058  // It didn't name a member, so see if it names a class.
2059  QualType BaseType;
2060  TypeSourceInfo *TInfo = 0;
2061
2062  if (TemplateTypeTy) {
2063    BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
2064  } else if (DS.getTypeSpecType() == TST_decltype) {
2065    BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
2066  } else {
2067    LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
2068    LookupParsedName(R, S, &SS);
2069
2070    TypeDecl *TyD = R.getAsSingle<TypeDecl>();
2071    if (!TyD) {
2072      if (R.isAmbiguous()) return true;
2073
2074      // We don't want access-control diagnostics here.
2075      R.suppressDiagnostics();
2076
2077      if (SS.isSet() && isDependentScopeSpecifier(SS)) {
2078        bool NotUnknownSpecialization = false;
2079        DeclContext *DC = computeDeclContext(SS, false);
2080        if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
2081          NotUnknownSpecialization = !Record->hasAnyDependentBases();
2082
2083        if (!NotUnknownSpecialization) {
2084          // When the scope specifier can refer to a member of an unknown
2085          // specialization, we take it as a type name.
2086          BaseType = CheckTypenameType(ETK_None, SourceLocation(),
2087                                       SS.getWithLocInContext(Context),
2088                                       *MemberOrBase, IdLoc);
2089          if (BaseType.isNull())
2090            return true;
2091
2092          R.clear();
2093          R.setLookupName(MemberOrBase);
2094        }
2095      }
2096
2097      // If no results were found, try to correct typos.
2098      TypoCorrection Corr;
2099      MemInitializerValidatorCCC Validator(ClassDecl);
2100      if (R.empty() && BaseType.isNull() &&
2101          (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
2102                              Validator, ClassDecl))) {
2103        std::string CorrectedStr(Corr.getAsString(getLangOpts()));
2104        std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
2105        if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
2106          // We have found a non-static data member with a similar
2107          // name to what was typed; complain and initialize that
2108          // member.
2109          Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
2110            << MemberOrBase << true << CorrectedQuotedStr
2111            << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
2112          Diag(Member->getLocation(), diag::note_previous_decl)
2113            << CorrectedQuotedStr;
2114
2115          return BuildMemberInitializer(Member, Init, IdLoc);
2116        } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
2117          const CXXBaseSpecifier *DirectBaseSpec;
2118          const CXXBaseSpecifier *VirtualBaseSpec;
2119          if (FindBaseInitializer(*this, ClassDecl,
2120                                  Context.getTypeDeclType(Type),
2121                                  DirectBaseSpec, VirtualBaseSpec)) {
2122            // We have found a direct or virtual base class with a
2123            // similar name to what was typed; complain and initialize
2124            // that base class.
2125            Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
2126              << MemberOrBase << false << CorrectedQuotedStr
2127              << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
2128
2129            const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
2130                                                             : VirtualBaseSpec;
2131            Diag(BaseSpec->getLocStart(),
2132                 diag::note_base_class_specified_here)
2133              << BaseSpec->getType()
2134              << BaseSpec->getSourceRange();
2135
2136            TyD = Type;
2137          }
2138        }
2139      }
2140
2141      if (!TyD && BaseType.isNull()) {
2142        Diag(IdLoc, diag::err_mem_init_not_member_or_class)
2143          << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
2144        return true;
2145      }
2146    }
2147
2148    if (BaseType.isNull()) {
2149      BaseType = Context.getTypeDeclType(TyD);
2150      if (SS.isSet()) {
2151        NestedNameSpecifier *Qualifier =
2152          static_cast<NestedNameSpecifier*>(SS.getScopeRep());
2153
2154        // FIXME: preserve source range information
2155        BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
2156      }
2157    }
2158  }
2159
2160  if (!TInfo)
2161    TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
2162
2163  return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
2164}
2165
2166/// Checks a member initializer expression for cases where reference (or
2167/// pointer) members are bound to by-value parameters (or their addresses).
2168static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2169                                               Expr *Init,
2170                                               SourceLocation IdLoc) {
2171  QualType MemberTy = Member->getType();
2172
2173  // We only handle pointers and references currently.
2174  // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2175  if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2176    return;
2177
2178  const bool IsPointer = MemberTy->isPointerType();
2179  if (IsPointer) {
2180    if (const UnaryOperator *Op
2181          = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2182      // The only case we're worried about with pointers requires taking the
2183      // address.
2184      if (Op->getOpcode() != UO_AddrOf)
2185        return;
2186
2187      Init = Op->getSubExpr();
2188    } else {
2189      // We only handle address-of expression initializers for pointers.
2190      return;
2191    }
2192  }
2193
2194  if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2195    // Taking the address of a temporary will be diagnosed as a hard error.
2196    if (IsPointer)
2197      return;
2198
2199    S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2200      << Member << Init->getSourceRange();
2201  } else if (const DeclRefExpr *DRE
2202               = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2203    // We only warn when referring to a non-reference parameter declaration.
2204    const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2205    if (!Parameter || Parameter->getType()->isReferenceType())
2206      return;
2207
2208    S.Diag(Init->getExprLoc(),
2209           IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2210                     : diag::warn_bind_ref_member_to_parameter)
2211      << Member << Parameter << Init->getSourceRange();
2212  } else {
2213    // Other initializers are fine.
2214    return;
2215  }
2216
2217  S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2218    << (unsigned)IsPointer;
2219}
2220
2221MemInitResult
2222Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
2223                             SourceLocation IdLoc) {
2224  FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2225  IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2226  assert((DirectMember || IndirectMember) &&
2227         "Member must be a FieldDecl or IndirectFieldDecl");
2228
2229  if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
2230    return true;
2231
2232  if (Member->isInvalidDecl())
2233    return true;
2234
2235  // Diagnose value-uses of fields to initialize themselves, e.g.
2236  //   foo(foo)
2237  // where foo is not also a parameter to the constructor.
2238  // TODO: implement -Wuninitialized and fold this into that framework.
2239  Expr **Args;
2240  unsigned NumArgs;
2241  if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2242    Args = ParenList->getExprs();
2243    NumArgs = ParenList->getNumExprs();
2244  } else {
2245    InitListExpr *InitList = cast<InitListExpr>(Init);
2246    Args = InitList->getInits();
2247    NumArgs = InitList->getNumInits();
2248  }
2249
2250  if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2251        != DiagnosticsEngine::Ignored)
2252    for (unsigned i = 0; i < NumArgs; ++i)
2253      // FIXME: Warn about the case when other fields are used before being
2254      // initialized. For example, let this field be the i'th field. When
2255      // initializing the i'th field, throw a warning if any of the >= i'th
2256      // fields are used, as they are not yet initialized.
2257      // Right now we are only handling the case where the i'th field uses
2258      // itself in its initializer.
2259      // Also need to take into account that some fields may be initialized by
2260      // in-class initializers, see C++11 [class.base.init]p9.
2261      CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
2262
2263  SourceRange InitRange = Init->getSourceRange();
2264
2265  if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
2266    // Can't check initialization for a member of dependent type or when
2267    // any of the arguments are type-dependent expressions.
2268    DiscardCleanupsInEvaluationContext();
2269  } else {
2270    bool InitList = false;
2271    if (isa<InitListExpr>(Init)) {
2272      InitList = true;
2273      Args = &Init;
2274      NumArgs = 1;
2275
2276      if (isStdInitializerList(Member->getType(), 0)) {
2277        Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2278            << /*at end of ctor*/1 << InitRange;
2279      }
2280    }
2281
2282    // Initialize the member.
2283    InitializedEntity MemberEntity =
2284      DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2285                   : InitializedEntity::InitializeMember(IndirectMember, 0);
2286    InitializationKind Kind =
2287      InitList ? InitializationKind::CreateDirectList(IdLoc)
2288               : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2289                                                  InitRange.getEnd());
2290
2291    InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2292    ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
2293                                            MultiExprArg(Args, NumArgs),
2294                                            0);
2295    if (MemberInit.isInvalid())
2296      return true;
2297
2298    CheckImplicitConversions(MemberInit.get(),
2299                             InitRange.getBegin());
2300
2301    // C++0x [class.base.init]p7:
2302    //   The initialization of each base and member constitutes a
2303    //   full-expression.
2304    MemberInit = MaybeCreateExprWithCleanups(MemberInit);
2305    if (MemberInit.isInvalid())
2306      return true;
2307
2308    // If we are in a dependent context, template instantiation will
2309    // perform this type-checking again. Just save the arguments that we
2310    // received.
2311    // FIXME: This isn't quite ideal, since our ASTs don't capture all
2312    // of the information that we have about the member
2313    // initializer. However, deconstructing the ASTs is a dicey process,
2314    // and this approach is far more likely to get the corner cases right.
2315    if (CurContext->isDependentContext()) {
2316      // The existing Init will do fine.
2317    } else {
2318      Init = MemberInit.get();
2319      CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2320    }
2321  }
2322
2323  if (DirectMember) {
2324    return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2325                                            InitRange.getBegin(), Init,
2326                                            InitRange.getEnd());
2327  } else {
2328    return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2329                                            InitRange.getBegin(), Init,
2330                                            InitRange.getEnd());
2331  }
2332}
2333
2334MemInitResult
2335Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
2336                                 CXXRecordDecl *ClassDecl) {
2337  SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
2338  if (!LangOpts.CPlusPlus0x)
2339    return Diag(NameLoc, diag::err_delegating_ctor)
2340      << TInfo->getTypeLoc().getLocalSourceRange();
2341  Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
2342
2343  bool InitList = true;
2344  Expr **Args = &Init;
2345  unsigned NumArgs = 1;
2346  if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2347    InitList = false;
2348    Args = ParenList->getExprs();
2349    NumArgs = ParenList->getNumExprs();
2350  }
2351
2352  SourceRange InitRange = Init->getSourceRange();
2353  // Initialize the object.
2354  InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2355                                     QualType(ClassDecl->getTypeForDecl(), 0));
2356  InitializationKind Kind =
2357    InitList ? InitializationKind::CreateDirectList(NameLoc)
2358             : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2359                                                InitRange.getEnd());
2360  InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2361  ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
2362                                              MultiExprArg(Args, NumArgs),
2363                                              0);
2364  if (DelegationInit.isInvalid())
2365    return true;
2366
2367  assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2368         "Delegating constructor with no target?");
2369
2370  CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
2371
2372  // C++0x [class.base.init]p7:
2373  //   The initialization of each base and member constitutes a
2374  //   full-expression.
2375  DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2376  if (DelegationInit.isInvalid())
2377    return true;
2378
2379  // If we are in a dependent context, template instantiation will
2380  // perform this type-checking again. Just save the arguments that we
2381  // received in a ParenListExpr.
2382  // FIXME: This isn't quite ideal, since our ASTs don't capture all
2383  // of the information that we have about the base
2384  // initializer. However, deconstructing the ASTs is a dicey process,
2385  // and this approach is far more likely to get the corner cases right.
2386  if (CurContext->isDependentContext())
2387    DelegationInit = Owned(Init);
2388
2389  return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
2390                                          DelegationInit.takeAs<Expr>(),
2391                                          InitRange.getEnd());
2392}
2393
2394MemInitResult
2395Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
2396                           Expr *Init, CXXRecordDecl *ClassDecl,
2397                           SourceLocation EllipsisLoc) {
2398  SourceLocation BaseLoc
2399    = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
2400
2401  if (!BaseType->isDependentType() && !BaseType->isRecordType())
2402    return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2403             << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2404
2405  // C++ [class.base.init]p2:
2406  //   [...] Unless the mem-initializer-id names a nonstatic data
2407  //   member of the constructor's class or a direct or virtual base
2408  //   of that class, the mem-initializer is ill-formed. A
2409  //   mem-initializer-list can initialize a base class using any
2410  //   name that denotes that base class type.
2411  bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
2412
2413  SourceRange InitRange = Init->getSourceRange();
2414  if (EllipsisLoc.isValid()) {
2415    // This is a pack expansion.
2416    if (!BaseType->containsUnexpandedParameterPack())  {
2417      Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
2418        << SourceRange(BaseLoc, InitRange.getEnd());
2419
2420      EllipsisLoc = SourceLocation();
2421    }
2422  } else {
2423    // Check for any unexpanded parameter packs.
2424    if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2425      return true;
2426
2427    if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
2428      return true;
2429  }
2430
2431  // Check for direct and virtual base classes.
2432  const CXXBaseSpecifier *DirectBaseSpec = 0;
2433  const CXXBaseSpecifier *VirtualBaseSpec = 0;
2434  if (!Dependent) {
2435    if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2436                                       BaseType))
2437      return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
2438
2439    FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2440                        VirtualBaseSpec);
2441
2442    // C++ [base.class.init]p2:
2443    // Unless the mem-initializer-id names a nonstatic data member of the
2444    // constructor's class or a direct or virtual base of that class, the
2445    // mem-initializer is ill-formed.
2446    if (!DirectBaseSpec && !VirtualBaseSpec) {
2447      // If the class has any dependent bases, then it's possible that
2448      // one of those types will resolve to the same type as
2449      // BaseType. Therefore, just treat this as a dependent base
2450      // class initialization.  FIXME: Should we try to check the
2451      // initialization anyway? It seems odd.
2452      if (ClassDecl->hasAnyDependentBases())
2453        Dependent = true;
2454      else
2455        return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2456          << BaseType << Context.getTypeDeclType(ClassDecl)
2457          << BaseTInfo->getTypeLoc().getLocalSourceRange();
2458    }
2459  }
2460
2461  if (Dependent) {
2462    DiscardCleanupsInEvaluationContext();
2463
2464    return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2465                                            /*IsVirtual=*/false,
2466                                            InitRange.getBegin(), Init,
2467                                            InitRange.getEnd(), EllipsisLoc);
2468  }
2469
2470  // C++ [base.class.init]p2:
2471  //   If a mem-initializer-id is ambiguous because it designates both
2472  //   a direct non-virtual base class and an inherited virtual base
2473  //   class, the mem-initializer is ill-formed.
2474  if (DirectBaseSpec && VirtualBaseSpec)
2475    return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
2476      << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2477
2478  CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
2479  if (!BaseSpec)
2480    BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2481
2482  // Initialize the base.
2483  bool InitList = true;
2484  Expr **Args = &Init;
2485  unsigned NumArgs = 1;
2486  if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2487    InitList = false;
2488    Args = ParenList->getExprs();
2489    NumArgs = ParenList->getNumExprs();
2490  }
2491
2492  InitializedEntity BaseEntity =
2493    InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2494  InitializationKind Kind =
2495    InitList ? InitializationKind::CreateDirectList(BaseLoc)
2496             : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2497                                                InitRange.getEnd());
2498  InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2499  ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
2500                                        MultiExprArg(Args, NumArgs), 0);
2501  if (BaseInit.isInvalid())
2502    return true;
2503
2504  CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
2505
2506  // C++0x [class.base.init]p7:
2507  //   The initialization of each base and member constitutes a
2508  //   full-expression.
2509  BaseInit = MaybeCreateExprWithCleanups(BaseInit);
2510  if (BaseInit.isInvalid())
2511    return true;
2512
2513  // If we are in a dependent context, template instantiation will
2514  // perform this type-checking again. Just save the arguments that we
2515  // received in a ParenListExpr.
2516  // FIXME: This isn't quite ideal, since our ASTs don't capture all
2517  // of the information that we have about the base
2518  // initializer. However, deconstructing the ASTs is a dicey process,
2519  // and this approach is far more likely to get the corner cases right.
2520  if (CurContext->isDependentContext())
2521    BaseInit = Owned(Init);
2522
2523  return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2524                                          BaseSpec->isVirtual(),
2525                                          InitRange.getBegin(),
2526                                          BaseInit.takeAs<Expr>(),
2527                                          InitRange.getEnd(), EllipsisLoc);
2528}
2529
2530// Create a static_cast\<T&&>(expr).
2531static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2532  QualType ExprType = E->getType();
2533  QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2534  SourceLocation ExprLoc = E->getLocStart();
2535  TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2536      TargetType, ExprLoc);
2537
2538  return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2539                                   SourceRange(ExprLoc, ExprLoc),
2540                                   E->getSourceRange()).take();
2541}
2542
2543/// ImplicitInitializerKind - How an implicit base or member initializer should
2544/// initialize its base or member.
2545enum ImplicitInitializerKind {
2546  IIK_Default,
2547  IIK_Copy,
2548  IIK_Move
2549};
2550
2551static bool
2552BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
2553                             ImplicitInitializerKind ImplicitInitKind,
2554                             CXXBaseSpecifier *BaseSpec,
2555                             bool IsInheritedVirtualBase,
2556                             CXXCtorInitializer *&CXXBaseInit) {
2557  InitializedEntity InitEntity
2558    = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2559                                        IsInheritedVirtualBase);
2560
2561  ExprResult BaseInit;
2562
2563  switch (ImplicitInitKind) {
2564  case IIK_Default: {
2565    InitializationKind InitKind
2566      = InitializationKind::CreateDefault(Constructor->getLocation());
2567    InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
2568    BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
2569    break;
2570  }
2571
2572  case IIK_Move:
2573  case IIK_Copy: {
2574    bool Moving = ImplicitInitKind == IIK_Move;
2575    ParmVarDecl *Param = Constructor->getParamDecl(0);
2576    QualType ParamType = Param->getType().getNonReferenceType();
2577
2578    Expr *CopyCtorArg =
2579      DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
2580                          SourceLocation(), Param, false,
2581                          Constructor->getLocation(), ParamType,
2582                          VK_LValue, 0);
2583
2584    SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2585
2586    // Cast to the base class to avoid ambiguities.
2587    QualType ArgTy =
2588      SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2589                                       ParamType.getQualifiers());
2590
2591    if (Moving) {
2592      CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2593    }
2594
2595    CXXCastPath BasePath;
2596    BasePath.push_back(BaseSpec);
2597    CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2598                                            CK_UncheckedDerivedToBase,
2599                                            Moving ? VK_XValue : VK_LValue,
2600                                            &BasePath).take();
2601
2602    InitializationKind InitKind
2603      = InitializationKind::CreateDirect(Constructor->getLocation(),
2604                                         SourceLocation(), SourceLocation());
2605    InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2606                                   &CopyCtorArg, 1);
2607    BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
2608                               MultiExprArg(&CopyCtorArg, 1));
2609    break;
2610  }
2611  }
2612
2613  BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
2614  if (BaseInit.isInvalid())
2615    return true;
2616
2617  CXXBaseInit =
2618    new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2619               SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2620                                                        SourceLocation()),
2621                                             BaseSpec->isVirtual(),
2622                                             SourceLocation(),
2623                                             BaseInit.takeAs<Expr>(),
2624                                             SourceLocation(),
2625                                             SourceLocation());
2626
2627  return false;
2628}
2629
2630static bool RefersToRValueRef(Expr *MemRef) {
2631  ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2632  return Referenced->getType()->isRValueReferenceType();
2633}
2634
2635static bool
2636BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
2637                               ImplicitInitializerKind ImplicitInitKind,
2638                               FieldDecl *Field, IndirectFieldDecl *Indirect,
2639                               CXXCtorInitializer *&CXXMemberInit) {
2640  if (Field->isInvalidDecl())
2641    return true;
2642
2643  SourceLocation Loc = Constructor->getLocation();
2644
2645  if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2646    bool Moving = ImplicitInitKind == IIK_Move;
2647    ParmVarDecl *Param = Constructor->getParamDecl(0);
2648    QualType ParamType = Param->getType().getNonReferenceType();
2649
2650    // Suppress copying zero-width bitfields.
2651    if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2652      return false;
2653
2654    Expr *MemberExprBase =
2655      DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
2656                          SourceLocation(), Param, false,
2657                          Loc, ParamType, VK_LValue, 0);
2658
2659    SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2660
2661    if (Moving) {
2662      MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2663    }
2664
2665    // Build a reference to this field within the parameter.
2666    CXXScopeSpec SS;
2667    LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2668                              Sema::LookupMemberName);
2669    MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2670                                  : cast<ValueDecl>(Field), AS_public);
2671    MemberLookup.resolveKind();
2672    ExprResult CtorArg
2673      = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
2674                                         ParamType, Loc,
2675                                         /*IsArrow=*/false,
2676                                         SS,
2677                                         /*TemplateKWLoc=*/SourceLocation(),
2678                                         /*FirstQualifierInScope=*/0,
2679                                         MemberLookup,
2680                                         /*TemplateArgs=*/0);
2681    if (CtorArg.isInvalid())
2682      return true;
2683
2684    // C++11 [class.copy]p15:
2685    //   - if a member m has rvalue reference type T&&, it is direct-initialized
2686    //     with static_cast<T&&>(x.m);
2687    if (RefersToRValueRef(CtorArg.get())) {
2688      CtorArg = CastForMoving(SemaRef, CtorArg.take());
2689    }
2690
2691    // When the field we are copying is an array, create index variables for
2692    // each dimension of the array. We use these index variables to subscript
2693    // the source array, and other clients (e.g., CodeGen) will perform the
2694    // necessary iteration with these index variables.
2695    SmallVector<VarDecl *, 4> IndexVariables;
2696    QualType BaseType = Field->getType();
2697    QualType SizeType = SemaRef.Context.getSizeType();
2698    bool InitializingArray = false;
2699    while (const ConstantArrayType *Array
2700                          = SemaRef.Context.getAsConstantArrayType(BaseType)) {
2701      InitializingArray = true;
2702      // Create the iteration variable for this array index.
2703      IdentifierInfo *IterationVarName = 0;
2704      {
2705        SmallString<8> Str;
2706        llvm::raw_svector_ostream OS(Str);
2707        OS << "__i" << IndexVariables.size();
2708        IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2709      }
2710      VarDecl *IterationVar
2711        = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
2712                          IterationVarName, SizeType,
2713                        SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
2714                          SC_None, SC_None);
2715      IndexVariables.push_back(IterationVar);
2716
2717      // Create a reference to the iteration variable.
2718      ExprResult IterationVarRef
2719        = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
2720      assert(!IterationVarRef.isInvalid() &&
2721             "Reference to invented variable cannot fail!");
2722      IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2723      assert(!IterationVarRef.isInvalid() &&
2724             "Conversion of invented variable cannot fail!");
2725
2726      // Subscript the array with this iteration variable.
2727      CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
2728                                                        IterationVarRef.take(),
2729                                                        Loc);
2730      if (CtorArg.isInvalid())
2731        return true;
2732
2733      BaseType = Array->getElementType();
2734    }
2735
2736    // The array subscript expression is an lvalue, which is wrong for moving.
2737    if (Moving && InitializingArray)
2738      CtorArg = CastForMoving(SemaRef, CtorArg.take());
2739
2740    // Construct the entity that we will be initializing. For an array, this
2741    // will be first element in the array, which may require several levels
2742    // of array-subscript entities.
2743    SmallVector<InitializedEntity, 4> Entities;
2744    Entities.reserve(1 + IndexVariables.size());
2745    if (Indirect)
2746      Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2747    else
2748      Entities.push_back(InitializedEntity::InitializeMember(Field));
2749    for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2750      Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2751                                                              0,
2752                                                              Entities.back()));
2753
2754    // Direct-initialize to use the copy constructor.
2755    InitializationKind InitKind =
2756      InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2757
2758    Expr *CtorArgE = CtorArg.takeAs<Expr>();
2759    InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
2760                                   &CtorArgE, 1);
2761
2762    ExprResult MemberInit
2763      = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
2764                        MultiExprArg(&CtorArgE, 1));
2765    MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
2766    if (MemberInit.isInvalid())
2767      return true;
2768
2769    if (Indirect) {
2770      assert(IndexVariables.size() == 0 &&
2771             "Indirect field improperly initialized");
2772      CXXMemberInit
2773        = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2774                                                   Loc, Loc,
2775                                                   MemberInit.takeAs<Expr>(),
2776                                                   Loc);
2777    } else
2778      CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2779                                                 Loc, MemberInit.takeAs<Expr>(),
2780                                                 Loc,
2781                                                 IndexVariables.data(),
2782                                                 IndexVariables.size());
2783    return false;
2784  }
2785
2786  assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2787
2788  QualType FieldBaseElementType =
2789    SemaRef.Context.getBaseElementType(Field->getType());
2790
2791  if (FieldBaseElementType->isRecordType()) {
2792    InitializedEntity InitEntity
2793      = Indirect? InitializedEntity::InitializeMember(Indirect)
2794                : InitializedEntity::InitializeMember(Field);
2795    InitializationKind InitKind =
2796      InitializationKind::CreateDefault(Loc);
2797
2798    InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
2799    ExprResult MemberInit =
2800      InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
2801
2802    MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
2803    if (MemberInit.isInvalid())
2804      return true;
2805
2806    if (Indirect)
2807      CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2808                                                               Indirect, Loc,
2809                                                               Loc,
2810                                                               MemberInit.get(),
2811                                                               Loc);
2812    else
2813      CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2814                                                               Field, Loc, Loc,
2815                                                               MemberInit.get(),
2816                                                               Loc);
2817    return false;
2818  }
2819
2820  if (!Field->getParent()->isUnion()) {
2821    if (FieldBaseElementType->isReferenceType()) {
2822      SemaRef.Diag(Constructor->getLocation(),
2823                   diag::err_uninitialized_member_in_ctor)
2824      << (int)Constructor->isImplicit()
2825      << SemaRef.Context.getTagDeclType(Constructor->getParent())
2826      << 0 << Field->getDeclName();
2827      SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2828      return true;
2829    }
2830
2831    if (FieldBaseElementType.isConstQualified()) {
2832      SemaRef.Diag(Constructor->getLocation(),
2833                   diag::err_uninitialized_member_in_ctor)
2834      << (int)Constructor->isImplicit()
2835      << SemaRef.Context.getTagDeclType(Constructor->getParent())
2836      << 1 << Field->getDeclName();
2837      SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2838      return true;
2839    }
2840  }
2841
2842  if (SemaRef.getLangOpts().ObjCAutoRefCount &&
2843      FieldBaseElementType->isObjCRetainableType() &&
2844      FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2845      FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
2846    // ARC:
2847    //   Default-initialize Objective-C pointers to NULL.
2848    CXXMemberInit
2849      = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2850                                                 Loc, Loc,
2851                 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2852                                                 Loc);
2853    return false;
2854  }
2855
2856  // Nothing to initialize.
2857  CXXMemberInit = 0;
2858  return false;
2859}
2860
2861namespace {
2862struct BaseAndFieldInfo {
2863  Sema &S;
2864  CXXConstructorDecl *Ctor;
2865  bool AnyErrorsInInits;
2866  ImplicitInitializerKind IIK;
2867  llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
2868  SmallVector<CXXCtorInitializer*, 8> AllToInit;
2869
2870  BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2871    : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
2872    bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2873    if (Generated && Ctor->isCopyConstructor())
2874      IIK = IIK_Copy;
2875    else if (Generated && Ctor->isMoveConstructor())
2876      IIK = IIK_Move;
2877    else
2878      IIK = IIK_Default;
2879  }
2880
2881  bool isImplicitCopyOrMove() const {
2882    switch (IIK) {
2883    case IIK_Copy:
2884    case IIK_Move:
2885      return true;
2886
2887    case IIK_Default:
2888      return false;
2889    }
2890
2891    llvm_unreachable("Invalid ImplicitInitializerKind!");
2892  }
2893
2894  bool addFieldInitializer(CXXCtorInitializer *Init) {
2895    AllToInit.push_back(Init);
2896
2897    // Check whether this initializer makes the field "used".
2898    if (Init->getInit() && Init->getInit()->HasSideEffects(S.Context))
2899      S.UnusedPrivateFields.remove(Init->getAnyMember());
2900
2901    return false;
2902  }
2903};
2904}
2905
2906/// \brief Determine whether the given indirect field declaration is somewhere
2907/// within an anonymous union.
2908static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2909  for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2910                                      CEnd = F->chain_end();
2911       C != CEnd; ++C)
2912    if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2913      if (Record->isUnion())
2914        return true;
2915
2916  return false;
2917}
2918
2919/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2920/// array type.
2921static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2922  if (T->isIncompleteArrayType())
2923    return true;
2924
2925  while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2926    if (!ArrayT->getSize())
2927      return true;
2928
2929    T = ArrayT->getElementType();
2930  }
2931
2932  return false;
2933}
2934
2935static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
2936                                    FieldDecl *Field,
2937                                    IndirectFieldDecl *Indirect = 0) {
2938
2939  // Overwhelmingly common case: we have a direct initializer for this field.
2940  if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field))
2941    return Info.addFieldInitializer(Init);
2942
2943  // C++11 [class.base.init]p8: if the entity is a non-static data member that
2944  // has a brace-or-equal-initializer, the entity is initialized as specified
2945  // in [dcl.init].
2946  if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
2947    CXXCtorInitializer *Init;
2948    if (Indirect)
2949      Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2950                                                      SourceLocation(),
2951                                                      SourceLocation(), 0,
2952                                                      SourceLocation());
2953    else
2954      Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2955                                                      SourceLocation(),
2956                                                      SourceLocation(), 0,
2957                                                      SourceLocation());
2958    return Info.addFieldInitializer(Init);
2959  }
2960
2961  // Don't build an implicit initializer for union members if none was
2962  // explicitly specified.
2963  if (Field->getParent()->isUnion() ||
2964      (Indirect && isWithinAnonymousUnion(Indirect)))
2965    return false;
2966
2967  // Don't initialize incomplete or zero-length arrays.
2968  if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
2969    return false;
2970
2971  // Don't try to build an implicit initializer if there were semantic
2972  // errors in any of the initializers (and therefore we might be
2973  // missing some that the user actually wrote).
2974  if (Info.AnyErrorsInInits || Field->isInvalidDecl())
2975    return false;
2976
2977  CXXCtorInitializer *Init = 0;
2978  if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
2979                                     Indirect, Init))
2980    return true;
2981
2982  if (!Init)
2983    return false;
2984
2985  return Info.addFieldInitializer(Init);
2986}
2987
2988bool
2989Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
2990                               CXXCtorInitializer *Initializer) {
2991  assert(Initializer->isDelegatingInitializer());
2992  Constructor->setNumCtorInitializers(1);
2993  CXXCtorInitializer **initializer =
2994    new (Context) CXXCtorInitializer*[1];
2995  memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
2996  Constructor->setCtorInitializers(initializer);
2997
2998  if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
2999    MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
3000    DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
3001  }
3002
3003  DelegatingCtorDecls.push_back(Constructor);
3004
3005  return false;
3006}
3007
3008bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
3009                               CXXCtorInitializer **Initializers,
3010                               unsigned NumInitializers,
3011                               bool AnyErrors) {
3012  if (Constructor->isDependentContext()) {
3013    // Just store the initializers as written, they will be checked during
3014    // instantiation.
3015    if (NumInitializers > 0) {
3016      Constructor->setNumCtorInitializers(NumInitializers);
3017      CXXCtorInitializer **baseOrMemberInitializers =
3018        new (Context) CXXCtorInitializer*[NumInitializers];
3019      memcpy(baseOrMemberInitializers, Initializers,
3020             NumInitializers * sizeof(CXXCtorInitializer*));
3021      Constructor->setCtorInitializers(baseOrMemberInitializers);
3022    }
3023
3024    // Let template instantiation know whether we had errors.
3025    if (AnyErrors)
3026      Constructor->setInvalidDecl();
3027
3028    return false;
3029  }
3030
3031  BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
3032
3033  // We need to build the initializer AST according to order of construction
3034  // and not what user specified in the Initializers list.
3035  CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
3036  if (!ClassDecl)
3037    return true;
3038
3039  bool HadError = false;
3040
3041  for (unsigned i = 0; i < NumInitializers; i++) {
3042    CXXCtorInitializer *Member = Initializers[i];
3043
3044    if (Member->isBaseInitializer())
3045      Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
3046    else
3047      Info.AllBaseFields[Member->getAnyMember()] = Member;
3048  }
3049
3050  // Keep track of the direct virtual bases.
3051  llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
3052  for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
3053       E = ClassDecl->bases_end(); I != E; ++I) {
3054    if (I->isVirtual())
3055      DirectVBases.insert(I);
3056  }
3057
3058  // Push virtual bases before others.
3059  for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3060       E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
3061
3062    if (CXXCtorInitializer *Value
3063        = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
3064      Info.AllToInit.push_back(Value);
3065    } else if (!AnyErrors) {
3066      bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
3067      CXXCtorInitializer *CXXBaseInit;
3068      if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
3069                                       VBase, IsInheritedVirtualBase,
3070                                       CXXBaseInit)) {
3071        HadError = true;
3072        continue;
3073      }
3074
3075      Info.AllToInit.push_back(CXXBaseInit);
3076    }
3077  }
3078
3079  // Non-virtual bases.
3080  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3081       E = ClassDecl->bases_end(); Base != E; ++Base) {
3082    // Virtuals are in the virtual base list and already constructed.
3083    if (Base->isVirtual())
3084      continue;
3085
3086    if (CXXCtorInitializer *Value
3087          = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
3088      Info.AllToInit.push_back(Value);
3089    } else if (!AnyErrors) {
3090      CXXCtorInitializer *CXXBaseInit;
3091      if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
3092                                       Base, /*IsInheritedVirtualBase=*/false,
3093                                       CXXBaseInit)) {
3094        HadError = true;
3095        continue;
3096      }
3097
3098      Info.AllToInit.push_back(CXXBaseInit);
3099    }
3100  }
3101
3102  // Fields.
3103  for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3104                               MemEnd = ClassDecl->decls_end();
3105       Mem != MemEnd; ++Mem) {
3106    if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
3107      // C++ [class.bit]p2:
3108      //   A declaration for a bit-field that omits the identifier declares an
3109      //   unnamed bit-field. Unnamed bit-fields are not members and cannot be
3110      //   initialized.
3111      if (F->isUnnamedBitfield())
3112        continue;
3113
3114      // If we're not generating the implicit copy/move constructor, then we'll
3115      // handle anonymous struct/union fields based on their individual
3116      // indirect fields.
3117      if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
3118        continue;
3119
3120      if (CollectFieldInitializer(*this, Info, F))
3121        HadError = true;
3122      continue;
3123    }
3124
3125    // Beyond this point, we only consider default initialization.
3126    if (Info.IIK != IIK_Default)
3127      continue;
3128
3129    if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3130      if (F->getType()->isIncompleteArrayType()) {
3131        assert(ClassDecl->hasFlexibleArrayMember() &&
3132               "Incomplete array type is not valid");
3133        continue;
3134      }
3135
3136      // Initialize each field of an anonymous struct individually.
3137      if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3138        HadError = true;
3139
3140      continue;
3141    }
3142  }
3143
3144  NumInitializers = Info.AllToInit.size();
3145  if (NumInitializers > 0) {
3146    Constructor->setNumCtorInitializers(NumInitializers);
3147    CXXCtorInitializer **baseOrMemberInitializers =
3148      new (Context) CXXCtorInitializer*[NumInitializers];
3149    memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
3150           NumInitializers * sizeof(CXXCtorInitializer*));
3151    Constructor->setCtorInitializers(baseOrMemberInitializers);
3152
3153    // Constructors implicitly reference the base and member
3154    // destructors.
3155    MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3156                                           Constructor->getParent());
3157  }
3158
3159  return HadError;
3160}
3161
3162static void *GetKeyForTopLevelField(FieldDecl *Field) {
3163  // For anonymous unions, use the class declaration as the key.
3164  if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
3165    if (RT->getDecl()->isAnonymousStructOrUnion())
3166      return static_cast<void *>(RT->getDecl());
3167  }
3168  return static_cast<void *>(Field);
3169}
3170
3171static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
3172  return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
3173}
3174
3175static void *GetKeyForMember(ASTContext &Context,
3176                             CXXCtorInitializer *Member) {
3177  if (!Member->isAnyMemberInitializer())
3178    return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
3179
3180  // For fields injected into the class via declaration of an anonymous union,
3181  // use its anonymous union class declaration as the unique key.
3182  FieldDecl *Field = Member->getAnyMember();
3183
3184  // If the field is a member of an anonymous struct or union, our key
3185  // is the anonymous record decl that's a direct child of the class.
3186  RecordDecl *RD = Field->getParent();
3187  if (RD->isAnonymousStructOrUnion()) {
3188    while (true) {
3189      RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3190      if (Parent->isAnonymousStructOrUnion())
3191        RD = Parent;
3192      else
3193        break;
3194    }
3195
3196    return static_cast<void *>(RD);
3197  }
3198
3199  return static_cast<void *>(Field);
3200}
3201
3202static void
3203DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
3204                                  const CXXConstructorDecl *Constructor,
3205                                  CXXCtorInitializer **Inits,
3206                                  unsigned NumInits) {
3207  if (Constructor->getDeclContext()->isDependentContext())
3208    return;
3209
3210  // Don't check initializers order unless the warning is enabled at the
3211  // location of at least one initializer.
3212  bool ShouldCheckOrder = false;
3213  for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
3214    CXXCtorInitializer *Init = Inits[InitIndex];
3215    if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3216                                         Init->getSourceLocation())
3217          != DiagnosticsEngine::Ignored) {
3218      ShouldCheckOrder = true;
3219      break;
3220    }
3221  }
3222  if (!ShouldCheckOrder)
3223    return;
3224
3225  // Build the list of bases and members in the order that they'll
3226  // actually be initialized.  The explicit initializers should be in
3227  // this same order but may be missing things.
3228  SmallVector<const void*, 32> IdealInitKeys;
3229
3230  const CXXRecordDecl *ClassDecl = Constructor->getParent();
3231
3232  // 1. Virtual bases.
3233  for (CXXRecordDecl::base_class_const_iterator VBase =
3234       ClassDecl->vbases_begin(),
3235       E = ClassDecl->vbases_end(); VBase != E; ++VBase)
3236    IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
3237
3238  // 2. Non-virtual bases.
3239  for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
3240       E = ClassDecl->bases_end(); Base != E; ++Base) {
3241    if (Base->isVirtual())
3242      continue;
3243    IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
3244  }
3245
3246  // 3. Direct fields.
3247  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
3248       E = ClassDecl->field_end(); Field != E; ++Field) {
3249    if (Field->isUnnamedBitfield())
3250      continue;
3251
3252    IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
3253  }
3254
3255  unsigned NumIdealInits = IdealInitKeys.size();
3256  unsigned IdealIndex = 0;
3257
3258  CXXCtorInitializer *PrevInit = 0;
3259  for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
3260    CXXCtorInitializer *Init = Inits[InitIndex];
3261    void *InitKey = GetKeyForMember(SemaRef.Context, Init);
3262
3263    // Scan forward to try to find this initializer in the idealized
3264    // initializers list.
3265    for (; IdealIndex != NumIdealInits; ++IdealIndex)
3266      if (InitKey == IdealInitKeys[IdealIndex])
3267        break;
3268
3269    // If we didn't find this initializer, it must be because we
3270    // scanned past it on a previous iteration.  That can only
3271    // happen if we're out of order;  emit a warning.
3272    if (IdealIndex == NumIdealInits && PrevInit) {
3273      Sema::SemaDiagnosticBuilder D =
3274        SemaRef.Diag(PrevInit->getSourceLocation(),
3275                     diag::warn_initializer_out_of_order);
3276
3277      if (PrevInit->isAnyMemberInitializer())
3278        D << 0 << PrevInit->getAnyMember()->getDeclName();
3279      else
3280        D << 1 << PrevInit->getTypeSourceInfo()->getType();
3281
3282      if (Init->isAnyMemberInitializer())
3283        D << 0 << Init->getAnyMember()->getDeclName();
3284      else
3285        D << 1 << Init->getTypeSourceInfo()->getType();
3286
3287      // Move back to the initializer's location in the ideal list.
3288      for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3289        if (InitKey == IdealInitKeys[IdealIndex])
3290          break;
3291
3292      assert(IdealIndex != NumIdealInits &&
3293             "initializer not found in initializer list");
3294    }
3295
3296    PrevInit = Init;
3297  }
3298}
3299
3300namespace {
3301bool CheckRedundantInit(Sema &S,
3302                        CXXCtorInitializer *Init,
3303                        CXXCtorInitializer *&PrevInit) {
3304  if (!PrevInit) {
3305    PrevInit = Init;
3306    return false;
3307  }
3308
3309  if (FieldDecl *Field = Init->getMember())
3310    S.Diag(Init->getSourceLocation(),
3311           diag::err_multiple_mem_initialization)
3312      << Field->getDeclName()
3313      << Init->getSourceRange();
3314  else {
3315    const Type *BaseClass = Init->getBaseClass();
3316    assert(BaseClass && "neither field nor base");
3317    S.Diag(Init->getSourceLocation(),
3318           diag::err_multiple_base_initialization)
3319      << QualType(BaseClass, 0)
3320      << Init->getSourceRange();
3321  }
3322  S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3323    << 0 << PrevInit->getSourceRange();
3324
3325  return true;
3326}
3327
3328typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
3329typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3330
3331bool CheckRedundantUnionInit(Sema &S,
3332                             CXXCtorInitializer *Init,
3333                             RedundantUnionMap &Unions) {
3334  FieldDecl *Field = Init->getAnyMember();
3335  RecordDecl *Parent = Field->getParent();
3336  NamedDecl *Child = Field;
3337
3338  while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
3339    if (Parent->isUnion()) {
3340      UnionEntry &En = Unions[Parent];
3341      if (En.first && En.first != Child) {
3342        S.Diag(Init->getSourceLocation(),
3343               diag::err_multiple_mem_union_initialization)
3344          << Field->getDeclName()
3345          << Init->getSourceRange();
3346        S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3347          << 0 << En.second->getSourceRange();
3348        return true;
3349      }
3350      if (!En.first) {
3351        En.first = Child;
3352        En.second = Init;
3353      }
3354      if (!Parent->isAnonymousStructOrUnion())
3355        return false;
3356    }
3357
3358    Child = Parent;
3359    Parent = cast<RecordDecl>(Parent->getDeclContext());
3360  }
3361
3362  return false;
3363}
3364}
3365
3366/// ActOnMemInitializers - Handle the member initializers for a constructor.
3367void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
3368                                SourceLocation ColonLoc,
3369                                CXXCtorInitializer **meminits,
3370                                unsigned NumMemInits,
3371                                bool AnyErrors) {
3372  if (!ConstructorDecl)
3373    return;
3374
3375  AdjustDeclIfTemplate(ConstructorDecl);
3376
3377  CXXConstructorDecl *Constructor
3378    = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
3379
3380  if (!Constructor) {
3381    Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3382    return;
3383  }
3384
3385  CXXCtorInitializer **MemInits =
3386    reinterpret_cast<CXXCtorInitializer **>(meminits);
3387
3388  // Mapping for the duplicate initializers check.
3389  // For member initializers, this is keyed with a FieldDecl*.
3390  // For base initializers, this is keyed with a Type*.
3391  llvm::DenseMap<void*, CXXCtorInitializer *> Members;
3392
3393  // Mapping for the inconsistent anonymous-union initializers check.
3394  RedundantUnionMap MemberUnions;
3395
3396  bool HadError = false;
3397  for (unsigned i = 0; i < NumMemInits; i++) {
3398    CXXCtorInitializer *Init = MemInits[i];
3399
3400    // Set the source order index.
3401    Init->setSourceOrder(i);
3402
3403    if (Init->isAnyMemberInitializer()) {
3404      FieldDecl *Field = Init->getAnyMember();
3405      if (CheckRedundantInit(*this, Init, Members[Field]) ||
3406          CheckRedundantUnionInit(*this, Init, MemberUnions))
3407        HadError = true;
3408    } else if (Init->isBaseInitializer()) {
3409      void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3410      if (CheckRedundantInit(*this, Init, Members[Key]))
3411        HadError = true;
3412    } else {
3413      assert(Init->isDelegatingInitializer());
3414      // This must be the only initializer
3415      if (NumMemInits != 1) {
3416        Diag(Init->getSourceLocation(),
3417             diag::err_delegating_initializer_alone)
3418          << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
3419        // We will treat this as being the only initializer.
3420      }
3421      SetDelegatingInitializer(Constructor, MemInits[i]);
3422      // Return immediately as the initializer is set.
3423      return;
3424    }
3425  }
3426
3427  if (HadError)
3428    return;
3429
3430  DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
3431
3432  SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
3433}
3434
3435void
3436Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3437                                             CXXRecordDecl *ClassDecl) {
3438  // Ignore dependent contexts. Also ignore unions, since their members never
3439  // have destructors implicitly called.
3440  if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
3441    return;
3442
3443  // FIXME: all the access-control diagnostics are positioned on the
3444  // field/base declaration.  That's probably good; that said, the
3445  // user might reasonably want to know why the destructor is being
3446  // emitted, and we currently don't say.
3447
3448  // Non-static data members.
3449  for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3450       E = ClassDecl->field_end(); I != E; ++I) {
3451    FieldDecl *Field = *I;
3452    if (Field->isInvalidDecl())
3453      continue;
3454
3455    // Don't destroy incomplete or zero-length arrays.
3456    if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3457      continue;
3458
3459    QualType FieldType = Context.getBaseElementType(Field->getType());
3460
3461    const RecordType* RT = FieldType->getAs<RecordType>();
3462    if (!RT)
3463      continue;
3464
3465    CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
3466    if (FieldClassDecl->isInvalidDecl())
3467      continue;
3468    if (FieldClassDecl->hasIrrelevantDestructor())
3469      continue;
3470    // The destructor for an implicit anonymous union member is never invoked.
3471    if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3472      continue;
3473
3474    CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
3475    assert(Dtor && "No dtor found for FieldClassDecl!");
3476    CheckDestructorAccess(Field->getLocation(), Dtor,
3477                          PDiag(diag::err_access_dtor_field)
3478                            << Field->getDeclName()
3479                            << FieldType);
3480
3481    MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
3482    DiagnoseUseOfDecl(Dtor, Location);
3483  }
3484
3485  llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3486
3487  // Bases.
3488  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3489       E = ClassDecl->bases_end(); Base != E; ++Base) {
3490    // Bases are always records in a well-formed non-dependent class.
3491    const RecordType *RT = Base->getType()->getAs<RecordType>();
3492
3493    // Remember direct virtual bases.
3494    if (Base->isVirtual())
3495      DirectVirtualBases.insert(RT);
3496
3497    CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
3498    // If our base class is invalid, we probably can't get its dtor anyway.
3499    if (BaseClassDecl->isInvalidDecl())
3500      continue;
3501    if (BaseClassDecl->hasIrrelevantDestructor())
3502      continue;
3503
3504    CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
3505    assert(Dtor && "No dtor found for BaseClassDecl!");
3506
3507    // FIXME: caret should be on the start of the class name
3508    CheckDestructorAccess(Base->getLocStart(), Dtor,
3509                          PDiag(diag::err_access_dtor_base)
3510                            << Base->getType()
3511                            << Base->getSourceRange(),
3512                          Context.getTypeDeclType(ClassDecl));
3513
3514    MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
3515    DiagnoseUseOfDecl(Dtor, Location);
3516  }
3517
3518  // Virtual bases.
3519  for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3520       E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
3521
3522    // Bases are always records in a well-formed non-dependent class.
3523    const RecordType *RT = VBase->getType()->castAs<RecordType>();
3524
3525    // Ignore direct virtual bases.
3526    if (DirectVirtualBases.count(RT))
3527      continue;
3528
3529    CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
3530    // If our base class is invalid, we probably can't get its dtor anyway.
3531    if (BaseClassDecl->isInvalidDecl())
3532      continue;
3533    if (BaseClassDecl->hasIrrelevantDestructor())
3534      continue;
3535
3536    CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
3537    assert(Dtor && "No dtor found for BaseClassDecl!");
3538    CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
3539                          PDiag(diag::err_access_dtor_vbase)
3540                            << VBase->getType(),
3541                          Context.getTypeDeclType(ClassDecl));
3542
3543    MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
3544    DiagnoseUseOfDecl(Dtor, Location);
3545  }
3546}
3547
3548void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
3549  if (!CDtorDecl)
3550    return;
3551
3552  if (CXXConstructorDecl *Constructor
3553      = dyn_cast<CXXConstructorDecl>(CDtorDecl))
3554    SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
3555}
3556
3557bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
3558                                  unsigned DiagID, AbstractDiagSelID SelID) {
3559  class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3560    unsigned DiagID;
3561    AbstractDiagSelID SelID;
3562
3563  public:
3564    NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3565      : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3566
3567    virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
3568      if (Suppressed) return;
3569      if (SelID == -1)
3570        S.Diag(Loc, DiagID) << T;
3571      else
3572        S.Diag(Loc, DiagID) << SelID << T;
3573    }
3574  } Diagnoser(DiagID, SelID);
3575
3576  return RequireNonAbstractType(Loc, T, Diagnoser);
3577}
3578
3579bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
3580                                  TypeDiagnoser &Diagnoser) {
3581  if (!getLangOpts().CPlusPlus)
3582    return false;
3583
3584  if (const ArrayType *AT = Context.getAsArrayType(T))
3585    return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
3586
3587  if (const PointerType *PT = T->getAs<PointerType>()) {
3588    // Find the innermost pointer type.
3589    while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
3590      PT = T;
3591
3592    if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
3593      return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
3594  }
3595
3596  const RecordType *RT = T->getAs<RecordType>();
3597  if (!RT)
3598    return false;
3599
3600  const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
3601
3602  // We can't answer whether something is abstract until it has a
3603  // definition.  If it's currently being defined, we'll walk back
3604  // over all the declarations when we have a full definition.
3605  const CXXRecordDecl *Def = RD->getDefinition();
3606  if (!Def || Def->isBeingDefined())
3607    return false;
3608
3609  if (!RD->isAbstract())
3610    return false;
3611
3612  Diagnoser.diagnose(*this, Loc, T);
3613  DiagnoseAbstractType(RD);
3614
3615  return true;
3616}
3617
3618void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3619  // Check if we've already emitted the list of pure virtual functions
3620  // for this class.
3621  if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
3622    return;
3623
3624  CXXFinalOverriderMap FinalOverriders;
3625  RD->getFinalOverriders(FinalOverriders);
3626
3627  // Keep a set of seen pure methods so we won't diagnose the same method
3628  // more than once.
3629  llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3630
3631  for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3632                                   MEnd = FinalOverriders.end();
3633       M != MEnd;
3634       ++M) {
3635    for (OverridingMethods::iterator SO = M->second.begin(),
3636                                  SOEnd = M->second.end();
3637         SO != SOEnd; ++SO) {
3638      // C++ [class.abstract]p4:
3639      //   A class is abstract if it contains or inherits at least one
3640      //   pure virtual function for which the final overrider is pure
3641      //   virtual.
3642
3643      //
3644      if (SO->second.size() != 1)
3645        continue;
3646
3647      if (!SO->second.front().Method->isPure())
3648        continue;
3649
3650      if (!SeenPureMethods.insert(SO->second.front().Method))
3651        continue;
3652
3653      Diag(SO->second.front().Method->getLocation(),
3654           diag::note_pure_virtual_function)
3655        << SO->second.front().Method->getDeclName() << RD->getDeclName();
3656    }
3657  }
3658
3659  if (!PureVirtualClassDiagSet)
3660    PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3661  PureVirtualClassDiagSet->insert(RD);
3662}
3663
3664namespace {
3665struct AbstractUsageInfo {
3666  Sema &S;
3667  CXXRecordDecl *Record;
3668  CanQualType AbstractType;
3669  bool Invalid;
3670
3671  AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3672    : S(S), Record(Record),
3673      AbstractType(S.Context.getCanonicalType(
3674                   S.Context.getTypeDeclType(Record))),
3675      Invalid(false) {}
3676
3677  void DiagnoseAbstractType() {
3678    if (Invalid) return;
3679    S.DiagnoseAbstractType(Record);
3680    Invalid = true;
3681  }
3682
3683  void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3684};
3685
3686struct CheckAbstractUsage {
3687  AbstractUsageInfo &Info;
3688  const NamedDecl *Ctx;
3689
3690  CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3691    : Info(Info), Ctx(Ctx) {}
3692
3693  void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3694    switch (TL.getTypeLocClass()) {
3695#define ABSTRACT_TYPELOC(CLASS, PARENT)
3696#define TYPELOC(CLASS, PARENT) \
3697    case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3698#include "clang/AST/TypeLocNodes.def"
3699    }
3700  }
3701
3702  void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3703    Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3704    for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3705      if (!TL.getArg(I))
3706        continue;
3707
3708      TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3709      if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
3710    }
3711  }
3712
3713  void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3714    Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3715  }
3716
3717  void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3718    // Visit the type parameters from a permissive context.
3719    for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3720      TemplateArgumentLoc TAL = TL.getArgLoc(I);
3721      if (TAL.getArgument().getKind() == TemplateArgument::Type)
3722        if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3723          Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3724      // TODO: other template argument types?
3725    }
3726  }
3727
3728  // Visit pointee types from a permissive context.
3729#define CheckPolymorphic(Type) \
3730  void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3731    Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3732  }
3733  CheckPolymorphic(PointerTypeLoc)
3734  CheckPolymorphic(ReferenceTypeLoc)
3735  CheckPolymorphic(MemberPointerTypeLoc)
3736  CheckPolymorphic(BlockPointerTypeLoc)
3737  CheckPolymorphic(AtomicTypeLoc)
3738
3739  /// Handle all the types we haven't given a more specific
3740  /// implementation for above.
3741  void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3742    // Every other kind of type that we haven't called out already
3743    // that has an inner type is either (1) sugar or (2) contains that
3744    // inner type in some way as a subobject.
3745    if (TypeLoc Next = TL.getNextTypeLoc())
3746      return Visit(Next, Sel);
3747
3748    // If there's no inner type and we're in a permissive context,
3749    // don't diagnose.
3750    if (Sel == Sema::AbstractNone) return;
3751
3752    // Check whether the type matches the abstract type.
3753    QualType T = TL.getType();
3754    if (T->isArrayType()) {
3755      Sel = Sema::AbstractArrayType;
3756      T = Info.S.Context.getBaseElementType(T);
3757    }
3758    CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3759    if (CT != Info.AbstractType) return;
3760
3761    // It matched; do some magic.
3762    if (Sel == Sema::AbstractArrayType) {
3763      Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3764        << T << TL.getSourceRange();
3765    } else {
3766      Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3767        << Sel << T << TL.getSourceRange();
3768    }
3769    Info.DiagnoseAbstractType();
3770  }
3771};
3772
3773void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3774                                  Sema::AbstractDiagSelID Sel) {
3775  CheckAbstractUsage(*this, D).Visit(TL, Sel);
3776}
3777
3778}
3779
3780/// Check for invalid uses of an abstract type in a method declaration.
3781static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3782                                    CXXMethodDecl *MD) {
3783  // No need to do the check on definitions, which require that
3784  // the return/param types be complete.
3785  if (MD->doesThisDeclarationHaveABody())
3786    return;
3787
3788  // For safety's sake, just ignore it if we don't have type source
3789  // information.  This should never happen for non-implicit methods,
3790  // but...
3791  if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3792    Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3793}
3794
3795/// Check for invalid uses of an abstract type within a class definition.
3796static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3797                                    CXXRecordDecl *RD) {
3798  for (CXXRecordDecl::decl_iterator
3799         I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3800    Decl *D = *I;
3801    if (D->isImplicit()) continue;
3802
3803    // Methods and method templates.
3804    if (isa<CXXMethodDecl>(D)) {
3805      CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3806    } else if (isa<FunctionTemplateDecl>(D)) {
3807      FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3808      CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3809
3810    // Fields and static variables.
3811    } else if (isa<FieldDecl>(D)) {
3812      FieldDecl *FD = cast<FieldDecl>(D);
3813      if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3814        Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3815    } else if (isa<VarDecl>(D)) {
3816      VarDecl *VD = cast<VarDecl>(D);
3817      if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3818        Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3819
3820    // Nested classes and class templates.
3821    } else if (isa<CXXRecordDecl>(D)) {
3822      CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3823    } else if (isa<ClassTemplateDecl>(D)) {
3824      CheckAbstractClassUsage(Info,
3825                             cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3826    }
3827  }
3828}
3829
3830/// \brief Perform semantic checks on a class definition that has been
3831/// completing, introducing implicitly-declared members, checking for
3832/// abstract types, etc.
3833void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
3834  if (!Record)
3835    return;
3836
3837  if (Record->isAbstract() && !Record->isInvalidDecl()) {
3838    AbstractUsageInfo Info(*this, Record);
3839    CheckAbstractClassUsage(Info, Record);
3840  }
3841
3842  // If this is not an aggregate type and has no user-declared constructor,
3843  // complain about any non-static data members of reference or const scalar
3844  // type, since they will never get initializers.
3845  if (!Record->isInvalidDecl() && !Record->isDependentType() &&
3846      !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3847      !Record->isLambda()) {
3848    bool Complained = false;
3849    for (RecordDecl::field_iterator F = Record->field_begin(),
3850                                 FEnd = Record->field_end();
3851         F != FEnd; ++F) {
3852      if (F->hasInClassInitializer() || F->isUnnamedBitfield())
3853        continue;
3854
3855      if (F->getType()->isReferenceType() ||
3856          (F->getType().isConstQualified() && F->getType()->isScalarType())) {
3857        if (!Complained) {
3858          Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3859            << Record->getTagKind() << Record;
3860          Complained = true;
3861        }
3862
3863        Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3864          << F->getType()->isReferenceType()
3865          << F->getDeclName();
3866      }
3867    }
3868  }
3869
3870  if (Record->isDynamicClass() && !Record->isDependentType())
3871    DynamicClasses.push_back(Record);
3872
3873  if (Record->getIdentifier()) {
3874    // C++ [class.mem]p13:
3875    //   If T is the name of a class, then each of the following shall have a
3876    //   name different from T:
3877    //     - every member of every anonymous union that is a member of class T.
3878    //
3879    // C++ [class.mem]p14:
3880    //   In addition, if class T has a user-declared constructor (12.1), every
3881    //   non-static data member of class T shall have a name different from T.
3882    for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
3883         R.first != R.second; ++R.first) {
3884      NamedDecl *D = *R.first;
3885      if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3886          isa<IndirectFieldDecl>(D)) {
3887        Diag(D->getLocation(), diag::err_member_name_of_class)
3888          << D->getDeclName();
3889        break;
3890      }
3891    }
3892  }
3893
3894  // Warn if the class has virtual methods but non-virtual public destructor.
3895  if (Record->isPolymorphic() && !Record->isDependentType()) {
3896    CXXDestructorDecl *dtor = Record->getDestructor();
3897    if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
3898      Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3899           diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3900  }
3901
3902  if (Record->isAbstract() && Record->hasAttr<FinalAttr>()) {
3903    Diag(Record->getLocation(), diag::warn_abstract_final_class);
3904    DiagnoseAbstractType(Record);
3905  }
3906
3907  // See if a method overloads virtual methods in a base
3908  /// class without overriding any.
3909  if (!Record->isDependentType()) {
3910    for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3911                                     MEnd = Record->method_end();
3912         M != MEnd; ++M) {
3913      if (!M->isStatic())
3914        DiagnoseHiddenVirtualMethods(Record, *M);
3915    }
3916  }
3917
3918  // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3919  // function that is not a constructor declares that member function to be
3920  // const. [...] The class of which that function is a member shall be
3921  // a literal type.
3922  //
3923  // If the class has virtual bases, any constexpr members will already have
3924  // been diagnosed by the checks performed on the member declaration, so
3925  // suppress this (less useful) diagnostic.
3926  if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
3927      !Record->isLiteral() && !Record->getNumVBases()) {
3928    for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3929                                     MEnd = Record->method_end();
3930         M != MEnd; ++M) {
3931      if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
3932        switch (Record->getTemplateSpecializationKind()) {
3933        case TSK_ImplicitInstantiation:
3934        case TSK_ExplicitInstantiationDeclaration:
3935        case TSK_ExplicitInstantiationDefinition:
3936          // If a template instantiates to a non-literal type, but its members
3937          // instantiate to constexpr functions, the template is technically
3938          // ill-formed, but we allow it for sanity.
3939          continue;
3940
3941        case TSK_Undeclared:
3942        case TSK_ExplicitSpecialization:
3943          RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
3944                             diag::err_constexpr_method_non_literal);
3945          break;
3946        }
3947
3948        // Only produce one error per class.
3949        break;
3950      }
3951    }
3952  }
3953
3954  // Declare inherited constructors. We do this eagerly here because:
3955  // - The standard requires an eager diagnostic for conflicting inherited
3956  //   constructors from different classes.
3957  // - The lazy declaration of the other implicit constructors is so as to not
3958  //   waste space and performance on classes that are not meant to be
3959  //   instantiated (e.g. meta-functions). This doesn't apply to classes that
3960  //   have inherited constructors.
3961  DeclareInheritedConstructors(Record);
3962}
3963
3964void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
3965  for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
3966                                      ME = Record->method_end();
3967       MI != ME; ++MI)
3968    if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
3969      CheckExplicitlyDefaultedSpecialMember(*MI);
3970}
3971
3972/// Is the special member function which would be selected to perform the
3973/// specified operation on the specified class type a constexpr constructor?
3974static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
3975                                     Sema::CXXSpecialMember CSM,
3976                                     bool ConstArg) {
3977  Sema::SpecialMemberOverloadResult *SMOR =
3978      S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
3979                            false, false, false, false);
3980  if (!SMOR || !SMOR->getMethod())
3981    // A constructor we wouldn't select can't be "involved in initializing"
3982    // anything.
3983    return true;
3984  return SMOR->getMethod()->isConstexpr();
3985}
3986
3987/// Determine whether the specified special member function would be constexpr
3988/// if it were implicitly defined.
3989static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
3990                                              Sema::CXXSpecialMember CSM,
3991                                              bool ConstArg) {
3992  if (!S.getLangOpts().CPlusPlus0x)
3993    return false;
3994
3995  // C++11 [dcl.constexpr]p4:
3996  // In the definition of a constexpr constructor [...]
3997  switch (CSM) {
3998  case Sema::CXXDefaultConstructor:
3999    // Since default constructor lookup is essentially trivial (and cannot
4000    // involve, for instance, template instantiation), we compute whether a
4001    // defaulted default constructor is constexpr directly within CXXRecordDecl.
4002    //
4003    // This is important for performance; we need to know whether the default
4004    // constructor is constexpr to determine whether the type is a literal type.
4005    return ClassDecl->defaultedDefaultConstructorIsConstexpr();
4006
4007  case Sema::CXXCopyConstructor:
4008  case Sema::CXXMoveConstructor:
4009    // For copy or move constructors, we need to perform overload resolution.
4010    break;
4011
4012  case Sema::CXXCopyAssignment:
4013  case Sema::CXXMoveAssignment:
4014  case Sema::CXXDestructor:
4015  case Sema::CXXInvalid:
4016    return false;
4017  }
4018
4019  //   -- if the class is a non-empty union, or for each non-empty anonymous
4020  //      union member of a non-union class, exactly one non-static data member
4021  //      shall be initialized; [DR1359]
4022  //
4023  // If we squint, this is guaranteed, since exactly one non-static data member
4024  // will be initialized (if the constructor isn't deleted), we just don't know
4025  // which one.
4026  if (ClassDecl->isUnion())
4027    return true;
4028
4029  //   -- the class shall not have any virtual base classes;
4030  if (ClassDecl->getNumVBases())
4031    return false;
4032
4033  //   -- every constructor involved in initializing [...] base class
4034  //      sub-objects shall be a constexpr constructor;
4035  for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4036                                       BEnd = ClassDecl->bases_end();
4037       B != BEnd; ++B) {
4038    const RecordType *BaseType = B->getType()->getAs<RecordType>();
4039    if (!BaseType) continue;
4040
4041    CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4042    if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
4043      return false;
4044  }
4045
4046  //   -- every constructor involved in initializing non-static data members
4047  //      [...] shall be a constexpr constructor;
4048  //   -- every non-static data member and base class sub-object shall be
4049  //      initialized
4050  for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4051                               FEnd = ClassDecl->field_end();
4052       F != FEnd; ++F) {
4053    if (F->isInvalidDecl())
4054      continue;
4055    if (const RecordType *RecordTy =
4056            S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4057      CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4058      if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
4059        return false;
4060    }
4061  }
4062
4063  // All OK, it's constexpr!
4064  return true;
4065}
4066
4067static Sema::ImplicitExceptionSpecification
4068computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
4069  switch (S.getSpecialMember(MD)) {
4070  case Sema::CXXDefaultConstructor:
4071    return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
4072  case Sema::CXXCopyConstructor:
4073    return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
4074  case Sema::CXXCopyAssignment:
4075    return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
4076  case Sema::CXXMoveConstructor:
4077    return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4078  case Sema::CXXMoveAssignment:
4079    return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4080  case Sema::CXXDestructor:
4081    return S.ComputeDefaultedDtorExceptionSpec(MD);
4082  case Sema::CXXInvalid:
4083    break;
4084  }
4085  llvm_unreachable("only special members have implicit exception specs");
4086}
4087
4088static void
4089updateExceptionSpec(Sema &S, FunctionDecl *FD, const FunctionProtoType *FPT,
4090                    const Sema::ImplicitExceptionSpecification &ExceptSpec) {
4091  FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4092  ExceptSpec.getEPI(EPI);
4093  const FunctionProtoType *NewFPT = cast<FunctionProtoType>(
4094    S.Context.getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
4095                              FPT->getNumArgs(), EPI));
4096  FD->setType(QualType(NewFPT, 0));
4097}
4098
4099void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4100  const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4101  if (FPT->getExceptionSpecType() != EST_Unevaluated)
4102    return;
4103
4104  // Evaluate the exception specification.
4105  ImplicitExceptionSpecification ExceptSpec =
4106      computeImplicitExceptionSpec(*this, Loc, MD);
4107
4108  // Update the type of the special member to use it.
4109  updateExceptionSpec(*this, MD, FPT, ExceptSpec);
4110
4111  // A user-provided destructor can be defined outside the class. When that
4112  // happens, be sure to update the exception specification on both
4113  // declarations.
4114  const FunctionProtoType *CanonicalFPT =
4115    MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4116  if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4117    updateExceptionSpec(*this, MD->getCanonicalDecl(),
4118                        CanonicalFPT, ExceptSpec);
4119}
4120
4121static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4122static bool isImplicitCopyAssignmentArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4123
4124void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4125  CXXRecordDecl *RD = MD->getParent();
4126  CXXSpecialMember CSM = getSpecialMember(MD);
4127
4128  assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4129         "not an explicitly-defaulted special member");
4130
4131  // Whether this was the first-declared instance of the constructor.
4132  // This affects whether we implicitly add an exception spec and constexpr.
4133  bool First = MD == MD->getCanonicalDecl();
4134
4135  bool HadError = false;
4136
4137  // C++11 [dcl.fct.def.default]p1:
4138  //   A function that is explicitly defaulted shall
4139  //     -- be a special member function (checked elsewhere),
4140  //     -- have the same type (except for ref-qualifiers, and except that a
4141  //        copy operation can take a non-const reference) as an implicit
4142  //        declaration, and
4143  //     -- not have default arguments.
4144  unsigned ExpectedParams = 1;
4145  if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4146    ExpectedParams = 0;
4147  if (MD->getNumParams() != ExpectedParams) {
4148    // This also checks for default arguments: a copy or move constructor with a
4149    // default argument is classified as a default constructor, and assignment
4150    // operations and destructors can't have default arguments.
4151    Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4152      << CSM << MD->getSourceRange();
4153    HadError = true;
4154  }
4155
4156  const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
4157
4158  // Compute argument constness, constexpr, and triviality.
4159  bool CanHaveConstParam = false;
4160  bool Trivial = false;
4161  switch (CSM) {
4162  case CXXDefaultConstructor:
4163    Trivial = RD->hasTrivialDefaultConstructor();
4164    break;
4165  case CXXCopyConstructor:
4166    CanHaveConstParam = isImplicitCopyCtorArgConst(*this, RD);
4167    Trivial = RD->hasTrivialCopyConstructor();
4168    break;
4169  case CXXCopyAssignment:
4170    CanHaveConstParam = isImplicitCopyAssignmentArgConst(*this, RD);
4171    Trivial = RD->hasTrivialCopyAssignment();
4172    break;
4173  case CXXMoveConstructor:
4174    Trivial = RD->hasTrivialMoveConstructor();
4175    break;
4176  case CXXMoveAssignment:
4177    Trivial = RD->hasTrivialMoveAssignment();
4178    break;
4179  case CXXDestructor:
4180    Trivial = RD->hasTrivialDestructor();
4181    break;
4182  case CXXInvalid:
4183    llvm_unreachable("non-special member explicitly defaulted!");
4184  }
4185
4186  QualType ReturnType = Context.VoidTy;
4187  if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4188    // Check for return type matching.
4189    ReturnType = Type->getResultType();
4190    QualType ExpectedReturnType =
4191        Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4192    if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4193      Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4194        << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4195      HadError = true;
4196    }
4197
4198    // A defaulted special member cannot have cv-qualifiers.
4199    if (Type->getTypeQuals()) {
4200      Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4201        << (CSM == CXXMoveAssignment);
4202      HadError = true;
4203    }
4204  }
4205
4206  // Check for parameter type matching.
4207  QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
4208  bool HasConstParam = false;
4209  if (ExpectedParams && ArgType->isReferenceType()) {
4210    // Argument must be reference to possibly-const T.
4211    QualType ReferentType = ArgType->getPointeeType();
4212    HasConstParam = ReferentType.isConstQualified();
4213
4214    if (ReferentType.isVolatileQualified()) {
4215      Diag(MD->getLocation(),
4216           diag::err_defaulted_special_member_volatile_param) << CSM;
4217      HadError = true;
4218    }
4219
4220    if (HasConstParam && !CanHaveConstParam) {
4221      if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4222        Diag(MD->getLocation(),
4223             diag::err_defaulted_special_member_copy_const_param)
4224          << (CSM == CXXCopyAssignment);
4225        // FIXME: Explain why this special member can't be const.
4226      } else {
4227        Diag(MD->getLocation(),
4228             diag::err_defaulted_special_member_move_const_param)
4229          << (CSM == CXXMoveAssignment);
4230      }
4231      HadError = true;
4232    }
4233
4234    // If a function is explicitly defaulted on its first declaration, it shall
4235    // have the same parameter type as if it had been implicitly declared.
4236    // (Presumably this is to prevent it from being trivial?)
4237    if (!HasConstParam && CanHaveConstParam && First)
4238      Diag(MD->getLocation(),
4239           diag::err_defaulted_special_member_copy_non_const_param)
4240        << (CSM == CXXCopyAssignment);
4241  } else if (ExpectedParams) {
4242    // A copy assignment operator can take its argument by value, but a
4243    // defaulted one cannot.
4244    assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
4245    Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
4246    HadError = true;
4247  }
4248
4249  // Rebuild the type with the implicit exception specification added, if we
4250  // are going to need it.
4251  const FunctionProtoType *ImplicitType = 0;
4252  if (First || Type->hasExceptionSpec()) {
4253    FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4254    computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4255    ImplicitType = cast<FunctionProtoType>(
4256      Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
4257  }
4258
4259  // C++11 [dcl.fct.def.default]p2:
4260  //   An explicitly-defaulted function may be declared constexpr only if it
4261  //   would have been implicitly declared as constexpr,
4262  // Do not apply this rule to members of class templates, since core issue 1358
4263  // makes such functions always instantiate to constexpr functions. For
4264  // non-constructors, this is checked elsewhere.
4265  bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4266                                                     HasConstParam);
4267  if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4268      MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4269    Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
4270    // FIXME: Explain why the constructor can't be constexpr.
4271    HadError = true;
4272  }
4273  //   and may have an explicit exception-specification only if it is compatible
4274  //   with the exception-specification on the implicit declaration.
4275  if (Type->hasExceptionSpec() &&
4276      CheckEquivalentExceptionSpec(
4277        PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4278        PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4279    HadError = true;
4280
4281  //   If a function is explicitly defaulted on its first declaration,
4282  if (First) {
4283    //  -- it is implicitly considered to be constexpr if the implicit
4284    //     definition would be,
4285    MD->setConstexpr(Constexpr);
4286
4287    //  -- it is implicitly considered to have the same exception-specification
4288    //     as if it had been implicitly declared,
4289    MD->setType(QualType(ImplicitType, 0));
4290
4291    // Such a function is also trivial if the implicitly-declared function
4292    // would have been.
4293    MD->setTrivial(Trivial);
4294  }
4295
4296  if (ShouldDeleteSpecialMember(MD, CSM)) {
4297    if (First) {
4298      MD->setDeletedAsWritten();
4299    } else {
4300      // C++11 [dcl.fct.def.default]p4:
4301      //   [For a] user-provided explicitly-defaulted function [...] if such a
4302      //   function is implicitly defined as deleted, the program is ill-formed.
4303      Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4304      HadError = true;
4305    }
4306  }
4307
4308  if (HadError)
4309    MD->setInvalidDecl();
4310}
4311
4312namespace {
4313struct SpecialMemberDeletionInfo {
4314  Sema &S;
4315  CXXMethodDecl *MD;
4316  Sema::CXXSpecialMember CSM;
4317  bool Diagnose;
4318
4319  // Properties of the special member, computed for convenience.
4320  bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4321  SourceLocation Loc;
4322
4323  bool AllFieldsAreConst;
4324
4325  SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
4326                            Sema::CXXSpecialMember CSM, bool Diagnose)
4327    : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
4328      IsConstructor(false), IsAssignment(false), IsMove(false),
4329      ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4330      AllFieldsAreConst(true) {
4331    switch (CSM) {
4332      case Sema::CXXDefaultConstructor:
4333      case Sema::CXXCopyConstructor:
4334        IsConstructor = true;
4335        break;
4336      case Sema::CXXMoveConstructor:
4337        IsConstructor = true;
4338        IsMove = true;
4339        break;
4340      case Sema::CXXCopyAssignment:
4341        IsAssignment = true;
4342        break;
4343      case Sema::CXXMoveAssignment:
4344        IsAssignment = true;
4345        IsMove = true;
4346        break;
4347      case Sema::CXXDestructor:
4348        break;
4349      case Sema::CXXInvalid:
4350        llvm_unreachable("invalid special member kind");
4351    }
4352
4353    if (MD->getNumParams()) {
4354      ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4355      VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4356    }
4357  }
4358
4359  bool inUnion() const { return MD->getParent()->isUnion(); }
4360
4361  /// Look up the corresponding special member in the given class.
4362  Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4363                                              unsigned Quals) {
4364    unsigned TQ = MD->getTypeQualifiers();
4365    // cv-qualifiers on class members don't affect default ctor / dtor calls.
4366    if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4367      Quals = 0;
4368    return S.LookupSpecialMember(Class, CSM,
4369                                 ConstArg || (Quals & Qualifiers::Const),
4370                                 VolatileArg || (Quals & Qualifiers::Volatile),
4371                                 MD->getRefQualifier() == RQ_RValue,
4372                                 TQ & Qualifiers::Const,
4373                                 TQ & Qualifiers::Volatile);
4374  }
4375
4376  typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
4377
4378  bool shouldDeleteForBase(CXXBaseSpecifier *Base);
4379  bool shouldDeleteForField(FieldDecl *FD);
4380  bool shouldDeleteForAllConstMembers();
4381
4382  bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4383                                     unsigned Quals);
4384  bool shouldDeleteForSubobjectCall(Subobject Subobj,
4385                                    Sema::SpecialMemberOverloadResult *SMOR,
4386                                    bool IsDtorCallInCtor);
4387
4388  bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
4389};
4390}
4391
4392/// Is the given special member inaccessible when used on the given
4393/// sub-object.
4394bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4395                                             CXXMethodDecl *target) {
4396  /// If we're operating on a base class, the object type is the
4397  /// type of this special member.
4398  QualType objectTy;
4399  AccessSpecifier access = target->getAccess();
4400  if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4401    objectTy = S.Context.getTypeDeclType(MD->getParent());
4402    access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4403
4404  // If we're operating on a field, the object type is the type of the field.
4405  } else {
4406    objectTy = S.Context.getTypeDeclType(target->getParent());
4407  }
4408
4409  return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4410}
4411
4412/// Check whether we should delete a special member due to the implicit
4413/// definition containing a call to a special member of a subobject.
4414bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4415    Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4416    bool IsDtorCallInCtor) {
4417  CXXMethodDecl *Decl = SMOR->getMethod();
4418  FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4419
4420  int DiagKind = -1;
4421
4422  if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4423    DiagKind = !Decl ? 0 : 1;
4424  else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4425    DiagKind = 2;
4426  else if (!isAccessible(Subobj, Decl))
4427    DiagKind = 3;
4428  else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4429           !Decl->isTrivial()) {
4430    // A member of a union must have a trivial corresponding special member.
4431    // As a weird special case, a destructor call from a union's constructor
4432    // must be accessible and non-deleted, but need not be trivial. Such a
4433    // destructor is never actually called, but is semantically checked as
4434    // if it were.
4435    DiagKind = 4;
4436  }
4437
4438  if (DiagKind == -1)
4439    return false;
4440
4441  if (Diagnose) {
4442    if (Field) {
4443      S.Diag(Field->getLocation(),
4444             diag::note_deleted_special_member_class_subobject)
4445        << CSM << MD->getParent() << /*IsField*/true
4446        << Field << DiagKind << IsDtorCallInCtor;
4447    } else {
4448      CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4449      S.Diag(Base->getLocStart(),
4450             diag::note_deleted_special_member_class_subobject)
4451        << CSM << MD->getParent() << /*IsField*/false
4452        << Base->getType() << DiagKind << IsDtorCallInCtor;
4453    }
4454
4455    if (DiagKind == 1)
4456      S.NoteDeletedFunction(Decl);
4457    // FIXME: Explain inaccessibility if DiagKind == 3.
4458  }
4459
4460  return true;
4461}
4462
4463/// Check whether we should delete a special member function due to having a
4464/// direct or virtual base class or non-static data member of class type M.
4465bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
4466    CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
4467  FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4468
4469  // C++11 [class.ctor]p5:
4470  // -- any direct or virtual base class, or non-static data member with no
4471  //    brace-or-equal-initializer, has class type M (or array thereof) and
4472  //    either M has no default constructor or overload resolution as applied
4473  //    to M's default constructor results in an ambiguity or in a function
4474  //    that is deleted or inaccessible
4475  // C++11 [class.copy]p11, C++11 [class.copy]p23:
4476  // -- a direct or virtual base class B that cannot be copied/moved because
4477  //    overload resolution, as applied to B's corresponding special member,
4478  //    results in an ambiguity or a function that is deleted or inaccessible
4479  //    from the defaulted special member
4480  // C++11 [class.dtor]p5:
4481  // -- any direct or virtual base class [...] has a type with a destructor
4482  //    that is deleted or inaccessible
4483  if (!(CSM == Sema::CXXDefaultConstructor &&
4484        Field && Field->hasInClassInitializer()) &&
4485      shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
4486    return true;
4487
4488  // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4489  // -- any direct or virtual base class or non-static data member has a
4490  //    type with a destructor that is deleted or inaccessible
4491  if (IsConstructor) {
4492    Sema::SpecialMemberOverloadResult *SMOR =
4493        S.LookupSpecialMember(Class, Sema::CXXDestructor,
4494                              false, false, false, false, false);
4495    if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4496      return true;
4497  }
4498
4499  return false;
4500}
4501
4502/// Check whether we should delete a special member function due to the class
4503/// having a particular direct or virtual base class.
4504bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
4505  CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
4506  return shouldDeleteForClassSubobject(BaseClass, Base, 0);
4507}
4508
4509/// Check whether we should delete a special member function due to the class
4510/// having a particular non-static data member.
4511bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4512  QualType FieldType = S.Context.getBaseElementType(FD->getType());
4513  CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4514
4515  if (CSM == Sema::CXXDefaultConstructor) {
4516    // For a default constructor, all references must be initialized in-class
4517    // and, if a union, it must have a non-const member.
4518    if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4519      if (Diagnose)
4520        S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4521          << MD->getParent() << FD << FieldType << /*Reference*/0;
4522      return true;
4523    }
4524    // C++11 [class.ctor]p5: any non-variant non-static data member of
4525    // const-qualified type (or array thereof) with no
4526    // brace-or-equal-initializer does not have a user-provided default
4527    // constructor.
4528    if (!inUnion() && FieldType.isConstQualified() &&
4529        !FD->hasInClassInitializer() &&
4530        (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4531      if (Diagnose)
4532        S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4533          << MD->getParent() << FD << FD->getType() << /*Const*/1;
4534      return true;
4535    }
4536
4537    if (inUnion() && !FieldType.isConstQualified())
4538      AllFieldsAreConst = false;
4539  } else if (CSM == Sema::CXXCopyConstructor) {
4540    // For a copy constructor, data members must not be of rvalue reference
4541    // type.
4542    if (FieldType->isRValueReferenceType()) {
4543      if (Diagnose)
4544        S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4545          << MD->getParent() << FD << FieldType;
4546      return true;
4547    }
4548  } else if (IsAssignment) {
4549    // For an assignment operator, data members must not be of reference type.
4550    if (FieldType->isReferenceType()) {
4551      if (Diagnose)
4552        S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4553          << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
4554      return true;
4555    }
4556    if (!FieldRecord && FieldType.isConstQualified()) {
4557      // C++11 [class.copy]p23:
4558      // -- a non-static data member of const non-class type (or array thereof)
4559      if (Diagnose)
4560        S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4561          << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
4562      return true;
4563    }
4564  }
4565
4566  if (FieldRecord) {
4567    // Some additional restrictions exist on the variant members.
4568    if (!inUnion() && FieldRecord->isUnion() &&
4569        FieldRecord->isAnonymousStructOrUnion()) {
4570      bool AllVariantFieldsAreConst = true;
4571
4572      // FIXME: Handle anonymous unions declared within anonymous unions.
4573      for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4574                                         UE = FieldRecord->field_end();
4575           UI != UE; ++UI) {
4576        QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
4577
4578        if (!UnionFieldType.isConstQualified())
4579          AllVariantFieldsAreConst = false;
4580
4581        CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4582        if (UnionFieldRecord &&
4583            shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4584                                          UnionFieldType.getCVRQualifiers()))
4585          return true;
4586      }
4587
4588      // At least one member in each anonymous union must be non-const
4589      if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
4590          FieldRecord->field_begin() != FieldRecord->field_end()) {
4591        if (Diagnose)
4592          S.Diag(FieldRecord->getLocation(),
4593                 diag::note_deleted_default_ctor_all_const)
4594            << MD->getParent() << /*anonymous union*/1;
4595        return true;
4596      }
4597
4598      // Don't check the implicit member of the anonymous union type.
4599      // This is technically non-conformant, but sanity demands it.
4600      return false;
4601    }
4602
4603    if (shouldDeleteForClassSubobject(FieldRecord, FD,
4604                                      FieldType.getCVRQualifiers()))
4605      return true;
4606  }
4607
4608  return false;
4609}
4610
4611/// C++11 [class.ctor] p5:
4612///   A defaulted default constructor for a class X is defined as deleted if
4613/// X is a union and all of its variant members are of const-qualified type.
4614bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
4615  // This is a silly definition, because it gives an empty union a deleted
4616  // default constructor. Don't do that.
4617  if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4618      (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4619    if (Diagnose)
4620      S.Diag(MD->getParent()->getLocation(),
4621             diag::note_deleted_default_ctor_all_const)
4622        << MD->getParent() << /*not anonymous union*/0;
4623    return true;
4624  }
4625  return false;
4626}
4627
4628/// Determine whether a defaulted special member function should be defined as
4629/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4630/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
4631bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4632                                     bool Diagnose) {
4633  if (MD->isInvalidDecl())
4634    return false;
4635  CXXRecordDecl *RD = MD->getParent();
4636  assert(!RD->isDependentType() && "do deletion after instantiation");
4637  if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
4638    return false;
4639
4640  // C++11 [expr.lambda.prim]p19:
4641  //   The closure type associated with a lambda-expression has a
4642  //   deleted (8.4.3) default constructor and a deleted copy
4643  //   assignment operator.
4644  if (RD->isLambda() &&
4645      (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4646    if (Diagnose)
4647      Diag(RD->getLocation(), diag::note_lambda_decl);
4648    return true;
4649  }
4650
4651  // For an anonymous struct or union, the copy and assignment special members
4652  // will never be used, so skip the check. For an anonymous union declared at
4653  // namespace scope, the constructor and destructor are used.
4654  if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4655      RD->isAnonymousStructOrUnion())
4656    return false;
4657
4658  // C++11 [class.copy]p7, p18:
4659  //   If the class definition declares a move constructor or move assignment
4660  //   operator, an implicitly declared copy constructor or copy assignment
4661  //   operator is defined as deleted.
4662  if (MD->isImplicit() &&
4663      (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4664    CXXMethodDecl *UserDeclaredMove = 0;
4665
4666    // In Microsoft mode, a user-declared move only causes the deletion of the
4667    // corresponding copy operation, not both copy operations.
4668    if (RD->hasUserDeclaredMoveConstructor() &&
4669        (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4670      if (!Diagnose) return true;
4671      UserDeclaredMove = RD->getMoveConstructor();
4672      assert(UserDeclaredMove);
4673    } else if (RD->hasUserDeclaredMoveAssignment() &&
4674               (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4675      if (!Diagnose) return true;
4676      UserDeclaredMove = RD->getMoveAssignmentOperator();
4677      assert(UserDeclaredMove);
4678    }
4679
4680    if (UserDeclaredMove) {
4681      Diag(UserDeclaredMove->getLocation(),
4682           diag::note_deleted_copy_user_declared_move)
4683        << (CSM == CXXCopyAssignment) << RD
4684        << UserDeclaredMove->isMoveAssignmentOperator();
4685      return true;
4686    }
4687  }
4688
4689  // Do access control from the special member function
4690  ContextRAII MethodContext(*this, MD);
4691
4692  // C++11 [class.dtor]p5:
4693  // -- for a virtual destructor, lookup of the non-array deallocation function
4694  //    results in an ambiguity or in a function that is deleted or inaccessible
4695  if (CSM == CXXDestructor && MD->isVirtual()) {
4696    FunctionDecl *OperatorDelete = 0;
4697    DeclarationName Name =
4698      Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4699    if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
4700                                 OperatorDelete, false)) {
4701      if (Diagnose)
4702        Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
4703      return true;
4704    }
4705  }
4706
4707  SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
4708
4709  for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
4710                                          BE = RD->bases_end(); BI != BE; ++BI)
4711    if (!BI->isVirtual() &&
4712        SMI.shouldDeleteForBase(BI))
4713      return true;
4714
4715  for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
4716                                          BE = RD->vbases_end(); BI != BE; ++BI)
4717    if (SMI.shouldDeleteForBase(BI))
4718      return true;
4719
4720  for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
4721                                     FE = RD->field_end(); FI != FE; ++FI)
4722    if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
4723        SMI.shouldDeleteForField(*FI))
4724      return true;
4725
4726  if (SMI.shouldDeleteForAllConstMembers())
4727    return true;
4728
4729  return false;
4730}
4731
4732/// \brief Data used with FindHiddenVirtualMethod
4733namespace {
4734  struct FindHiddenVirtualMethodData {
4735    Sema *S;
4736    CXXMethodDecl *Method;
4737    llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
4738    SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
4739  };
4740}
4741
4742/// \brief Check whether any most overriden method from MD in Methods
4743static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
4744                   const llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4745  if (MD->size_overridden_methods() == 0)
4746    return Methods.count(MD->getCanonicalDecl());
4747  for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4748                                      E = MD->end_overridden_methods();
4749       I != E; ++I)
4750    if (CheckMostOverridenMethods(*I, Methods))
4751      return true;
4752  return false;
4753}
4754
4755/// \brief Member lookup function that determines whether a given C++
4756/// method overloads virtual methods in a base class without overriding any,
4757/// to be used with CXXRecordDecl::lookupInBases().
4758static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4759                                    CXXBasePath &Path,
4760                                    void *UserData) {
4761  RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4762
4763  FindHiddenVirtualMethodData &Data
4764    = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4765
4766  DeclarationName Name = Data.Method->getDeclName();
4767  assert(Name.getNameKind() == DeclarationName::Identifier);
4768
4769  bool foundSameNameMethod = false;
4770  SmallVector<CXXMethodDecl *, 8> overloadedMethods;
4771  for (Path.Decls = BaseRecord->lookup(Name);
4772       Path.Decls.first != Path.Decls.second;
4773       ++Path.Decls.first) {
4774    NamedDecl *D = *Path.Decls.first;
4775    if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
4776      MD = MD->getCanonicalDecl();
4777      foundSameNameMethod = true;
4778      // Interested only in hidden virtual methods.
4779      if (!MD->isVirtual())
4780        continue;
4781      // If the method we are checking overrides a method from its base
4782      // don't warn about the other overloaded methods.
4783      if (!Data.S->IsOverload(Data.Method, MD, false))
4784        return true;
4785      // Collect the overload only if its hidden.
4786      if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
4787        overloadedMethods.push_back(MD);
4788    }
4789  }
4790
4791  if (foundSameNameMethod)
4792    Data.OverloadedMethods.append(overloadedMethods.begin(),
4793                                   overloadedMethods.end());
4794  return foundSameNameMethod;
4795}
4796
4797/// \brief Add the most overriden methods from MD to Methods
4798static void AddMostOverridenMethods(const CXXMethodDecl *MD,
4799                         llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4800  if (MD->size_overridden_methods() == 0)
4801    Methods.insert(MD->getCanonicalDecl());
4802  for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4803                                      E = MD->end_overridden_methods();
4804       I != E; ++I)
4805    AddMostOverridenMethods(*I, Methods);
4806}
4807
4808/// \brief See if a method overloads virtual methods in a base class without
4809/// overriding any.
4810void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4811  if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
4812                               MD->getLocation()) == DiagnosticsEngine::Ignored)
4813    return;
4814  if (!MD->getDeclName().isIdentifier())
4815    return;
4816
4817  CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4818                     /*bool RecordPaths=*/false,
4819                     /*bool DetectVirtual=*/false);
4820  FindHiddenVirtualMethodData Data;
4821  Data.Method = MD;
4822  Data.S = this;
4823
4824  // Keep the base methods that were overriden or introduced in the subclass
4825  // by 'using' in a set. A base method not in this set is hidden.
4826  for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4827       res.first != res.second; ++res.first) {
4828    NamedDecl *ND = *res.first;
4829    if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
4830      ND = shad->getTargetDecl();
4831    if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
4832      AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
4833  }
4834
4835  if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4836      !Data.OverloadedMethods.empty()) {
4837    Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4838      << MD << (Data.OverloadedMethods.size() > 1);
4839
4840    for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4841      CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4842      Diag(overloadedMD->getLocation(),
4843           diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4844    }
4845  }
4846}
4847
4848void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
4849                                             Decl *TagDecl,
4850                                             SourceLocation LBrac,
4851                                             SourceLocation RBrac,
4852                                             AttributeList *AttrList) {
4853  if (!TagDecl)
4854    return;
4855
4856  AdjustDeclIfTemplate(TagDecl);
4857
4858  for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4859    if (l->getKind() != AttributeList::AT_Visibility)
4860      continue;
4861    l->setInvalid();
4862    Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
4863      l->getName();
4864  }
4865
4866  ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
4867              // strict aliasing violation!
4868              reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
4869              FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
4870
4871  CheckCompletedCXXClass(
4872                        dyn_cast_or_null<CXXRecordDecl>(TagDecl));
4873}
4874
4875/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4876/// special functions, such as the default constructor, copy
4877/// constructor, or destructor, to the given C++ class (C++
4878/// [special]p1).  This routine can only be executed just before the
4879/// definition of the class is complete.
4880void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
4881  if (!ClassDecl->hasUserDeclaredConstructor())
4882    ++ASTContext::NumImplicitDefaultConstructors;
4883
4884  if (!ClassDecl->hasUserDeclaredCopyConstructor())
4885    ++ASTContext::NumImplicitCopyConstructors;
4886
4887  if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
4888    ++ASTContext::NumImplicitMoveConstructors;
4889
4890  if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4891    ++ASTContext::NumImplicitCopyAssignmentOperators;
4892
4893    // If we have a dynamic class, then the copy assignment operator may be
4894    // virtual, so we have to declare it immediately. This ensures that, e.g.,
4895    // it shows up in the right place in the vtable and that we diagnose
4896    // problems with the implicit exception specification.
4897    if (ClassDecl->isDynamicClass())
4898      DeclareImplicitCopyAssignment(ClassDecl);
4899  }
4900
4901  if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
4902    ++ASTContext::NumImplicitMoveAssignmentOperators;
4903
4904    // Likewise for the move assignment operator.
4905    if (ClassDecl->isDynamicClass())
4906      DeclareImplicitMoveAssignment(ClassDecl);
4907  }
4908
4909  if (!ClassDecl->hasUserDeclaredDestructor()) {
4910    ++ASTContext::NumImplicitDestructors;
4911
4912    // If we have a dynamic class, then the destructor may be virtual, so we
4913    // have to declare the destructor immediately. This ensures that, e.g., it
4914    // shows up in the right place in the vtable and that we diagnose problems
4915    // with the implicit exception specification.
4916    if (ClassDecl->isDynamicClass())
4917      DeclareImplicitDestructor(ClassDecl);
4918  }
4919}
4920
4921void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4922  if (!D)
4923    return;
4924
4925  int NumParamList = D->getNumTemplateParameterLists();
4926  for (int i = 0; i < NumParamList; i++) {
4927    TemplateParameterList* Params = D->getTemplateParameterList(i);
4928    for (TemplateParameterList::iterator Param = Params->begin(),
4929                                      ParamEnd = Params->end();
4930          Param != ParamEnd; ++Param) {
4931      NamedDecl *Named = cast<NamedDecl>(*Param);
4932      if (Named->getDeclName()) {
4933        S->AddDecl(Named);
4934        IdResolver.AddDecl(Named);
4935      }
4936    }
4937  }
4938}
4939
4940void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
4941  if (!D)
4942    return;
4943
4944  TemplateParameterList *Params = 0;
4945  if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
4946    Params = Template->getTemplateParameters();
4947  else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4948           = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
4949    Params = PartialSpec->getTemplateParameters();
4950  else
4951    return;
4952
4953  for (TemplateParameterList::iterator Param = Params->begin(),
4954                                    ParamEnd = Params->end();
4955       Param != ParamEnd; ++Param) {
4956    NamedDecl *Named = cast<NamedDecl>(*Param);
4957    if (Named->getDeclName()) {
4958      S->AddDecl(Named);
4959      IdResolver.AddDecl(Named);
4960    }
4961  }
4962}
4963
4964void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
4965  if (!RecordD) return;
4966  AdjustDeclIfTemplate(RecordD);
4967  CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
4968  PushDeclContext(S, Record);
4969}
4970
4971void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
4972  if (!RecordD) return;
4973  PopDeclContext();
4974}
4975
4976/// ActOnStartDelayedCXXMethodDeclaration - We have completed
4977/// parsing a top-level (non-nested) C++ class, and we are now
4978/// parsing those parts of the given Method declaration that could
4979/// not be parsed earlier (C++ [class.mem]p2), such as default
4980/// arguments. This action should enter the scope of the given
4981/// Method declaration as if we had just parsed the qualified method
4982/// name. However, it should not bring the parameters into scope;
4983/// that will be performed by ActOnDelayedCXXMethodParameter.
4984void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
4985}
4986
4987/// ActOnDelayedCXXMethodParameter - We've already started a delayed
4988/// C++ method declaration. We're (re-)introducing the given
4989/// function parameter into scope for use in parsing later parts of
4990/// the method declaration. For example, we could see an
4991/// ActOnParamDefaultArgument event for this parameter.
4992void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
4993  if (!ParamD)
4994    return;
4995
4996  ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
4997
4998  // If this parameter has an unparsed default argument, clear it out
4999  // to make way for the parsed default argument.
5000  if (Param->hasUnparsedDefaultArg())
5001    Param->setDefaultArg(0);
5002
5003  S->AddDecl(Param);
5004  if (Param->getDeclName())
5005    IdResolver.AddDecl(Param);
5006}
5007
5008/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
5009/// processing the delayed method declaration for Method. The method
5010/// declaration is now considered finished. There may be a separate
5011/// ActOnStartOfFunctionDef action later (not necessarily
5012/// immediately!) for this method, if it was also defined inside the
5013/// class body.
5014void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
5015  if (!MethodD)
5016    return;
5017
5018  AdjustDeclIfTemplate(MethodD);
5019
5020  FunctionDecl *Method = cast<FunctionDecl>(MethodD);
5021
5022  // Now that we have our default arguments, check the constructor
5023  // again. It could produce additional diagnostics or affect whether
5024  // the class has implicitly-declared destructors, among other
5025  // things.
5026  if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
5027    CheckConstructor(Constructor);
5028
5029  // Check the default arguments, which we may have added.
5030  if (!Method->isInvalidDecl())
5031    CheckCXXDefaultArguments(Method);
5032}
5033
5034/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
5035/// the well-formedness of the constructor declarator @p D with type @p
5036/// R. If there are any errors in the declarator, this routine will
5037/// emit diagnostics and set the invalid bit to true.  In any case, the type
5038/// will be updated to reflect a well-formed type for the constructor and
5039/// returned.
5040QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
5041                                          StorageClass &SC) {
5042  bool isVirtual = D.getDeclSpec().isVirtualSpecified();
5043
5044  // C++ [class.ctor]p3:
5045  //   A constructor shall not be virtual (10.3) or static (9.4). A
5046  //   constructor can be invoked for a const, volatile or const
5047  //   volatile object. A constructor shall not be declared const,
5048  //   volatile, or const volatile (9.3.2).
5049  if (isVirtual) {
5050    if (!D.isInvalidType())
5051      Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5052        << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
5053        << SourceRange(D.getIdentifierLoc());
5054    D.setInvalidType();
5055  }
5056  if (SC == SC_Static) {
5057    if (!D.isInvalidType())
5058      Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5059        << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5060        << SourceRange(D.getIdentifierLoc());
5061    D.setInvalidType();
5062    SC = SC_None;
5063  }
5064
5065  DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
5066  if (FTI.TypeQuals != 0) {
5067    if (FTI.TypeQuals & Qualifiers::Const)
5068      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5069        << "const" << SourceRange(D.getIdentifierLoc());
5070    if (FTI.TypeQuals & Qualifiers::Volatile)
5071      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5072        << "volatile" << SourceRange(D.getIdentifierLoc());
5073    if (FTI.TypeQuals & Qualifiers::Restrict)
5074      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5075        << "restrict" << SourceRange(D.getIdentifierLoc());
5076    D.setInvalidType();
5077  }
5078
5079  // C++0x [class.ctor]p4:
5080  //   A constructor shall not be declared with a ref-qualifier.
5081  if (FTI.hasRefQualifier()) {
5082    Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
5083      << FTI.RefQualifierIsLValueRef
5084      << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5085    D.setInvalidType();
5086  }
5087
5088  // Rebuild the function type "R" without any type qualifiers (in
5089  // case any of the errors above fired) and with "void" as the
5090  // return type, since constructors don't have return types.
5091  const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5092  if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
5093    return R;
5094
5095  FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5096  EPI.TypeQuals = 0;
5097  EPI.RefQualifier = RQ_None;
5098
5099  return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
5100                                 Proto->getNumArgs(), EPI);
5101}
5102
5103/// CheckConstructor - Checks a fully-formed constructor for
5104/// well-formedness, issuing any diagnostics required. Returns true if
5105/// the constructor declarator is invalid.
5106void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
5107  CXXRecordDecl *ClassDecl
5108    = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5109  if (!ClassDecl)
5110    return Constructor->setInvalidDecl();
5111
5112  // C++ [class.copy]p3:
5113  //   A declaration of a constructor for a class X is ill-formed if
5114  //   its first parameter is of type (optionally cv-qualified) X and
5115  //   either there are no other parameters or else all other
5116  //   parameters have default arguments.
5117  if (!Constructor->isInvalidDecl() &&
5118      ((Constructor->getNumParams() == 1) ||
5119       (Constructor->getNumParams() > 1 &&
5120        Constructor->getParamDecl(1)->hasDefaultArg())) &&
5121      Constructor->getTemplateSpecializationKind()
5122                                              != TSK_ImplicitInstantiation) {
5123    QualType ParamType = Constructor->getParamDecl(0)->getType();
5124    QualType ClassTy = Context.getTagDeclType(ClassDecl);
5125    if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
5126      SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
5127      const char *ConstRef
5128        = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5129                                                        : " const &";
5130      Diag(ParamLoc, diag::err_constructor_byvalue_arg)
5131        << FixItHint::CreateInsertion(ParamLoc, ConstRef);
5132
5133      // FIXME: Rather that making the constructor invalid, we should endeavor
5134      // to fix the type.
5135      Constructor->setInvalidDecl();
5136    }
5137  }
5138}
5139
5140/// CheckDestructor - Checks a fully-formed destructor definition for
5141/// well-formedness, issuing any diagnostics required.  Returns true
5142/// on error.
5143bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
5144  CXXRecordDecl *RD = Destructor->getParent();
5145
5146  if (Destructor->isVirtual()) {
5147    SourceLocation Loc;
5148
5149    if (!Destructor->isImplicit())
5150      Loc = Destructor->getLocation();
5151    else
5152      Loc = RD->getLocation();
5153
5154    // If we have a virtual destructor, look up the deallocation function
5155    FunctionDecl *OperatorDelete = 0;
5156    DeclarationName Name =
5157    Context.DeclarationNames.getCXXOperatorName(OO_Delete);
5158    if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
5159      return true;
5160
5161    MarkFunctionReferenced(Loc, OperatorDelete);
5162
5163    Destructor->setOperatorDelete(OperatorDelete);
5164  }
5165
5166  return false;
5167}
5168
5169static inline bool
5170FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5171  return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5172          FTI.ArgInfo[0].Param &&
5173          cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
5174}
5175
5176/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5177/// the well-formednes of the destructor declarator @p D with type @p
5178/// R. If there are any errors in the declarator, this routine will
5179/// emit diagnostics and set the declarator to invalid.  Even if this happens,
5180/// will be updated to reflect a well-formed type for the destructor and
5181/// returned.
5182QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
5183                                         StorageClass& SC) {
5184  // C++ [class.dtor]p1:
5185  //   [...] A typedef-name that names a class is a class-name
5186  //   (7.1.3); however, a typedef-name that names a class shall not
5187  //   be used as the identifier in the declarator for a destructor
5188  //   declaration.
5189  QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
5190  if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
5191    Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5192      << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
5193  else if (const TemplateSpecializationType *TST =
5194             DeclaratorType->getAs<TemplateSpecializationType>())
5195    if (TST->isTypeAlias())
5196      Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5197        << DeclaratorType << 1;
5198
5199  // C++ [class.dtor]p2:
5200  //   A destructor is used to destroy objects of its class type. A
5201  //   destructor takes no parameters, and no return type can be
5202  //   specified for it (not even void). The address of a destructor
5203  //   shall not be taken. A destructor shall not be static. A
5204  //   destructor can be invoked for a const, volatile or const
5205  //   volatile object. A destructor shall not be declared const,
5206  //   volatile or const volatile (9.3.2).
5207  if (SC == SC_Static) {
5208    if (!D.isInvalidType())
5209      Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5210        << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5211        << SourceRange(D.getIdentifierLoc())
5212        << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5213
5214    SC = SC_None;
5215  }
5216  if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
5217    // Destructors don't have return types, but the parser will
5218    // happily parse something like:
5219    //
5220    //   class X {
5221    //     float ~X();
5222    //   };
5223    //
5224    // The return type will be eliminated later.
5225    Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5226      << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5227      << SourceRange(D.getIdentifierLoc());
5228  }
5229
5230  DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
5231  if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
5232    if (FTI.TypeQuals & Qualifiers::Const)
5233      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5234        << "const" << SourceRange(D.getIdentifierLoc());
5235    if (FTI.TypeQuals & Qualifiers::Volatile)
5236      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5237        << "volatile" << SourceRange(D.getIdentifierLoc());
5238    if (FTI.TypeQuals & Qualifiers::Restrict)
5239      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5240        << "restrict" << SourceRange(D.getIdentifierLoc());
5241    D.setInvalidType();
5242  }
5243
5244  // C++0x [class.dtor]p2:
5245  //   A destructor shall not be declared with a ref-qualifier.
5246  if (FTI.hasRefQualifier()) {
5247    Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5248      << FTI.RefQualifierIsLValueRef
5249      << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5250    D.setInvalidType();
5251  }
5252
5253  // Make sure we don't have any parameters.
5254  if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
5255    Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5256
5257    // Delete the parameters.
5258    FTI.freeArgs();
5259    D.setInvalidType();
5260  }
5261
5262  // Make sure the destructor isn't variadic.
5263  if (FTI.isVariadic) {
5264    Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
5265    D.setInvalidType();
5266  }
5267
5268  // Rebuild the function type "R" without any type qualifiers or
5269  // parameters (in case any of the errors above fired) and with
5270  // "void" as the return type, since destructors don't have return
5271  // types.
5272  if (!D.isInvalidType())
5273    return R;
5274
5275  const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5276  FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5277  EPI.Variadic = false;
5278  EPI.TypeQuals = 0;
5279  EPI.RefQualifier = RQ_None;
5280  return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
5281}
5282
5283/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5284/// well-formednes of the conversion function declarator @p D with
5285/// type @p R. If there are any errors in the declarator, this routine
5286/// will emit diagnostics and return true. Otherwise, it will return
5287/// false. Either way, the type @p R will be updated to reflect a
5288/// well-formed type for the conversion operator.
5289void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
5290                                     StorageClass& SC) {
5291  // C++ [class.conv.fct]p1:
5292  //   Neither parameter types nor return type can be specified. The
5293  //   type of a conversion function (8.3.5) is "function taking no
5294  //   parameter returning conversion-type-id."
5295  if (SC == SC_Static) {
5296    if (!D.isInvalidType())
5297      Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5298        << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5299        << SourceRange(D.getIdentifierLoc());
5300    D.setInvalidType();
5301    SC = SC_None;
5302  }
5303
5304  QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5305
5306  if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
5307    // Conversion functions don't have return types, but the parser will
5308    // happily parse something like:
5309    //
5310    //   class X {
5311    //     float operator bool();
5312    //   };
5313    //
5314    // The return type will be changed later anyway.
5315    Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5316      << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5317      << SourceRange(D.getIdentifierLoc());
5318    D.setInvalidType();
5319  }
5320
5321  const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5322
5323  // Make sure we don't have any parameters.
5324  if (Proto->getNumArgs() > 0) {
5325    Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5326
5327    // Delete the parameters.
5328    D.getFunctionTypeInfo().freeArgs();
5329    D.setInvalidType();
5330  } else if (Proto->isVariadic()) {
5331    Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
5332    D.setInvalidType();
5333  }
5334
5335  // Diagnose "&operator bool()" and other such nonsense.  This
5336  // is actually a gcc extension which we don't support.
5337  if (Proto->getResultType() != ConvType) {
5338    Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5339      << Proto->getResultType();
5340    D.setInvalidType();
5341    ConvType = Proto->getResultType();
5342  }
5343
5344  // C++ [class.conv.fct]p4:
5345  //   The conversion-type-id shall not represent a function type nor
5346  //   an array type.
5347  if (ConvType->isArrayType()) {
5348    Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5349    ConvType = Context.getPointerType(ConvType);
5350    D.setInvalidType();
5351  } else if (ConvType->isFunctionType()) {
5352    Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5353    ConvType = Context.getPointerType(ConvType);
5354    D.setInvalidType();
5355  }
5356
5357  // Rebuild the function type "R" without any parameters (in case any
5358  // of the errors above fired) and with the conversion type as the
5359  // return type.
5360  if (D.isInvalidType())
5361    R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
5362
5363  // C++0x explicit conversion operators.
5364  if (D.getDeclSpec().isExplicitSpecified())
5365    Diag(D.getDeclSpec().getExplicitSpecLoc(),
5366         getLangOpts().CPlusPlus0x ?
5367           diag::warn_cxx98_compat_explicit_conversion_functions :
5368           diag::ext_explicit_conversion_functions)
5369      << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
5370}
5371
5372/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5373/// the declaration of the given C++ conversion function. This routine
5374/// is responsible for recording the conversion function in the C++
5375/// class, if possible.
5376Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
5377  assert(Conversion && "Expected to receive a conversion function declaration");
5378
5379  CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
5380
5381  // Make sure we aren't redeclaring the conversion function.
5382  QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
5383
5384  // C++ [class.conv.fct]p1:
5385  //   [...] A conversion function is never used to convert a
5386  //   (possibly cv-qualified) object to the (possibly cv-qualified)
5387  //   same object type (or a reference to it), to a (possibly
5388  //   cv-qualified) base class of that type (or a reference to it),
5389  //   or to (possibly cv-qualified) void.
5390  // FIXME: Suppress this warning if the conversion function ends up being a
5391  // virtual function that overrides a virtual function in a base class.
5392  QualType ClassType
5393    = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
5394  if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
5395    ConvType = ConvTypeRef->getPointeeType();
5396  if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5397      Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
5398    /* Suppress diagnostics for instantiations. */;
5399  else if (ConvType->isRecordType()) {
5400    ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5401    if (ConvType == ClassType)
5402      Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
5403        << ClassType;
5404    else if (IsDerivedFrom(ClassType, ConvType))
5405      Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
5406        <<  ClassType << ConvType;
5407  } else if (ConvType->isVoidType()) {
5408    Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
5409      << ClassType << ConvType;
5410  }
5411
5412  if (FunctionTemplateDecl *ConversionTemplate
5413                                = Conversion->getDescribedFunctionTemplate())
5414    return ConversionTemplate;
5415
5416  return Conversion;
5417}
5418
5419//===----------------------------------------------------------------------===//
5420// Namespace Handling
5421//===----------------------------------------------------------------------===//
5422
5423/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
5424/// reopened.
5425static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
5426                                            SourceLocation Loc,
5427                                            IdentifierInfo *II, bool *IsInline,
5428                                            NamespaceDecl *PrevNS) {
5429  assert(*IsInline != PrevNS->isInline());
5430
5431  // HACK: Work around a bug in libstdc++4.6's <atomic>, where
5432  // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
5433  // inline namespaces, with the intention of bringing names into namespace std.
5434  //
5435  // We support this just well enough to get that case working; this is not
5436  // sufficient to support reopening namespaces as inline in general.
5437  if (*IsInline && II && II->getName().startswith("__atomic") &&
5438      S.getSourceManager().isInSystemHeader(Loc)) {
5439    // Mark all prior declarations of the namespace as inline.
5440    for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
5441         NS = NS->getPreviousDecl())
5442      NS->setInline(*IsInline);
5443    // Patch up the lookup table for the containing namespace. This isn't really
5444    // correct, but it's good enough for this particular case.
5445    for (DeclContext::decl_iterator I = PrevNS->decls_begin(),
5446                                    E = PrevNS->decls_end(); I != E; ++I)
5447      if (NamedDecl *ND = dyn_cast<NamedDecl>(*I))
5448        PrevNS->getParent()->makeDeclVisibleInContext(ND);
5449    return;
5450  }
5451
5452  if (PrevNS->isInline())
5453    // The user probably just forgot the 'inline', so suggest that it
5454    // be added back.
5455    S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
5456      << FixItHint::CreateInsertion(KeywordLoc, "inline ");
5457  else
5458    S.Diag(Loc, diag::err_inline_namespace_mismatch)
5459      << IsInline;
5460
5461  S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
5462  *IsInline = PrevNS->isInline();
5463}
5464
5465/// ActOnStartNamespaceDef - This is called at the start of a namespace
5466/// definition.
5467Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
5468                                   SourceLocation InlineLoc,
5469                                   SourceLocation NamespaceLoc,
5470                                   SourceLocation IdentLoc,
5471                                   IdentifierInfo *II,
5472                                   SourceLocation LBrace,
5473                                   AttributeList *AttrList) {
5474  SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5475  // For anonymous namespace, take the location of the left brace.
5476  SourceLocation Loc = II ? IdentLoc : LBrace;
5477  bool IsInline = InlineLoc.isValid();
5478  bool IsInvalid = false;
5479  bool IsStd = false;
5480  bool AddToKnown = false;
5481  Scope *DeclRegionScope = NamespcScope->getParent();
5482
5483  NamespaceDecl *PrevNS = 0;
5484  if (II) {
5485    // C++ [namespace.def]p2:
5486    //   The identifier in an original-namespace-definition shall not
5487    //   have been previously defined in the declarative region in
5488    //   which the original-namespace-definition appears. The
5489    //   identifier in an original-namespace-definition is the name of
5490    //   the namespace. Subsequently in that declarative region, it is
5491    //   treated as an original-namespace-name.
5492    //
5493    // Since namespace names are unique in their scope, and we don't
5494    // look through using directives, just look for any ordinary names.
5495
5496    const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
5497    Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5498    Decl::IDNS_Namespace;
5499    NamedDecl *PrevDecl = 0;
5500    for (DeclContext::lookup_result R
5501         = CurContext->getRedeclContext()->lookup(II);
5502         R.first != R.second; ++R.first) {
5503      if ((*R.first)->getIdentifierNamespace() & IDNS) {
5504        PrevDecl = *R.first;
5505        break;
5506      }
5507    }
5508
5509    PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5510
5511    if (PrevNS) {
5512      // This is an extended namespace definition.
5513      if (IsInline != PrevNS->isInline())
5514        DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
5515                                        &IsInline, PrevNS);
5516    } else if (PrevDecl) {
5517      // This is an invalid name redefinition.
5518      Diag(Loc, diag::err_redefinition_different_kind)
5519        << II;
5520      Diag(PrevDecl->getLocation(), diag::note_previous_definition);
5521      IsInvalid = true;
5522      // Continue on to push Namespc as current DeclContext and return it.
5523    } else if (II->isStr("std") &&
5524               CurContext->getRedeclContext()->isTranslationUnit()) {
5525      // This is the first "real" definition of the namespace "std", so update
5526      // our cache of the "std" namespace to point at this definition.
5527      PrevNS = getStdNamespace();
5528      IsStd = true;
5529      AddToKnown = !IsInline;
5530    } else {
5531      // We've seen this namespace for the first time.
5532      AddToKnown = !IsInline;
5533    }
5534  } else {
5535    // Anonymous namespaces.
5536
5537    // Determine whether the parent already has an anonymous namespace.
5538    DeclContext *Parent = CurContext->getRedeclContext();
5539    if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5540      PrevNS = TU->getAnonymousNamespace();
5541    } else {
5542      NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
5543      PrevNS = ND->getAnonymousNamespace();
5544    }
5545
5546    if (PrevNS && IsInline != PrevNS->isInline())
5547      DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
5548                                      &IsInline, PrevNS);
5549  }
5550
5551  NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5552                                                 StartLoc, Loc, II, PrevNS);
5553  if (IsInvalid)
5554    Namespc->setInvalidDecl();
5555
5556  ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
5557
5558  // FIXME: Should we be merging attributes?
5559  if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
5560    PushNamespaceVisibilityAttr(Attr, Loc);
5561
5562  if (IsStd)
5563    StdNamespace = Namespc;
5564  if (AddToKnown)
5565    KnownNamespaces[Namespc] = false;
5566
5567  if (II) {
5568    PushOnScopeChains(Namespc, DeclRegionScope);
5569  } else {
5570    // Link the anonymous namespace into its parent.
5571    DeclContext *Parent = CurContext->getRedeclContext();
5572    if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5573      TU->setAnonymousNamespace(Namespc);
5574    } else {
5575      cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
5576    }
5577
5578    CurContext->addDecl(Namespc);
5579
5580    // C++ [namespace.unnamed]p1.  An unnamed-namespace-definition
5581    //   behaves as if it were replaced by
5582    //     namespace unique { /* empty body */ }
5583    //     using namespace unique;
5584    //     namespace unique { namespace-body }
5585    //   where all occurrences of 'unique' in a translation unit are
5586    //   replaced by the same identifier and this identifier differs
5587    //   from all other identifiers in the entire program.
5588
5589    // We just create the namespace with an empty name and then add an
5590    // implicit using declaration, just like the standard suggests.
5591    //
5592    // CodeGen enforces the "universally unique" aspect by giving all
5593    // declarations semantically contained within an anonymous
5594    // namespace internal linkage.
5595
5596    if (!PrevNS) {
5597      UsingDirectiveDecl* UD
5598        = UsingDirectiveDecl::Create(Context, Parent,
5599                                     /* 'using' */ LBrace,
5600                                     /* 'namespace' */ SourceLocation(),
5601                                     /* qualifier */ NestedNameSpecifierLoc(),
5602                                     /* identifier */ SourceLocation(),
5603                                     Namespc,
5604                                     /* Ancestor */ Parent);
5605      UD->setImplicit();
5606      Parent->addDecl(UD);
5607    }
5608  }
5609
5610  ActOnDocumentableDecl(Namespc);
5611
5612  // Although we could have an invalid decl (i.e. the namespace name is a
5613  // redefinition), push it as current DeclContext and try to continue parsing.
5614  // FIXME: We should be able to push Namespc here, so that the each DeclContext
5615  // for the namespace has the declarations that showed up in that particular
5616  // namespace definition.
5617  PushDeclContext(NamespcScope, Namespc);
5618  return Namespc;
5619}
5620
5621/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5622/// is a namespace alias, returns the namespace it points to.
5623static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5624  if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5625    return AD->getNamespace();
5626  return dyn_cast_or_null<NamespaceDecl>(D);
5627}
5628
5629/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5630/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
5631void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
5632  NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5633  assert(Namespc && "Invalid parameter, expected NamespaceDecl");
5634  Namespc->setRBraceLoc(RBrace);
5635  PopDeclContext();
5636  if (Namespc->hasAttr<VisibilityAttr>())
5637    PopPragmaVisibility(true, RBrace);
5638}
5639
5640CXXRecordDecl *Sema::getStdBadAlloc() const {
5641  return cast_or_null<CXXRecordDecl>(
5642                                  StdBadAlloc.get(Context.getExternalSource()));
5643}
5644
5645NamespaceDecl *Sema::getStdNamespace() const {
5646  return cast_or_null<NamespaceDecl>(
5647                                 StdNamespace.get(Context.getExternalSource()));
5648}
5649
5650/// \brief Retrieve the special "std" namespace, which may require us to
5651/// implicitly define the namespace.
5652NamespaceDecl *Sema::getOrCreateStdNamespace() {
5653  if (!StdNamespace) {
5654    // The "std" namespace has not yet been defined, so build one implicitly.
5655    StdNamespace = NamespaceDecl::Create(Context,
5656                                         Context.getTranslationUnitDecl(),
5657                                         /*Inline=*/false,
5658                                         SourceLocation(), SourceLocation(),
5659                                         &PP.getIdentifierTable().get("std"),
5660                                         /*PrevDecl=*/0);
5661    getStdNamespace()->setImplicit(true);
5662  }
5663
5664  return getStdNamespace();
5665}
5666
5667bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
5668  assert(getLangOpts().CPlusPlus &&
5669         "Looking for std::initializer_list outside of C++.");
5670
5671  // We're looking for implicit instantiations of
5672  // template <typename E> class std::initializer_list.
5673
5674  if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5675    return false;
5676
5677  ClassTemplateDecl *Template = 0;
5678  const TemplateArgument *Arguments = 0;
5679
5680  if (const RecordType *RT = Ty->getAs<RecordType>()) {
5681
5682    ClassTemplateSpecializationDecl *Specialization =
5683        dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5684    if (!Specialization)
5685      return false;
5686
5687    Template = Specialization->getSpecializedTemplate();
5688    Arguments = Specialization->getTemplateArgs().data();
5689  } else if (const TemplateSpecializationType *TST =
5690                 Ty->getAs<TemplateSpecializationType>()) {
5691    Template = dyn_cast_or_null<ClassTemplateDecl>(
5692        TST->getTemplateName().getAsTemplateDecl());
5693    Arguments = TST->getArgs();
5694  }
5695  if (!Template)
5696    return false;
5697
5698  if (!StdInitializerList) {
5699    // Haven't recognized std::initializer_list yet, maybe this is it.
5700    CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5701    if (TemplateClass->getIdentifier() !=
5702            &PP.getIdentifierTable().get("initializer_list") ||
5703        !getStdNamespace()->InEnclosingNamespaceSetOf(
5704            TemplateClass->getDeclContext()))
5705      return false;
5706    // This is a template called std::initializer_list, but is it the right
5707    // template?
5708    TemplateParameterList *Params = Template->getTemplateParameters();
5709    if (Params->getMinRequiredArguments() != 1)
5710      return false;
5711    if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5712      return false;
5713
5714    // It's the right template.
5715    StdInitializerList = Template;
5716  }
5717
5718  if (Template != StdInitializerList)
5719    return false;
5720
5721  // This is an instance of std::initializer_list. Find the argument type.
5722  if (Element)
5723    *Element = Arguments[0].getAsType();
5724  return true;
5725}
5726
5727static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5728  NamespaceDecl *Std = S.getStdNamespace();
5729  if (!Std) {
5730    S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5731    return 0;
5732  }
5733
5734  LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5735                      Loc, Sema::LookupOrdinaryName);
5736  if (!S.LookupQualifiedName(Result, Std)) {
5737    S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5738    return 0;
5739  }
5740  ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5741  if (!Template) {
5742    Result.suppressDiagnostics();
5743    // We found something weird. Complain about the first thing we found.
5744    NamedDecl *Found = *Result.begin();
5745    S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5746    return 0;
5747  }
5748
5749  // We found some template called std::initializer_list. Now verify that it's
5750  // correct.
5751  TemplateParameterList *Params = Template->getTemplateParameters();
5752  if (Params->getMinRequiredArguments() != 1 ||
5753      !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
5754    S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5755    return 0;
5756  }
5757
5758  return Template;
5759}
5760
5761QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5762  if (!StdInitializerList) {
5763    StdInitializerList = LookupStdInitializerList(*this, Loc);
5764    if (!StdInitializerList)
5765      return QualType();
5766  }
5767
5768  TemplateArgumentListInfo Args(Loc, Loc);
5769  Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5770                                       Context.getTrivialTypeSourceInfo(Element,
5771                                                                        Loc)));
5772  return Context.getCanonicalType(
5773      CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5774}
5775
5776bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5777  // C++ [dcl.init.list]p2:
5778  //   A constructor is an initializer-list constructor if its first parameter
5779  //   is of type std::initializer_list<E> or reference to possibly cv-qualified
5780  //   std::initializer_list<E> for some type E, and either there are no other
5781  //   parameters or else all other parameters have default arguments.
5782  if (Ctor->getNumParams() < 1 ||
5783      (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5784    return false;
5785
5786  QualType ArgType = Ctor->getParamDecl(0)->getType();
5787  if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5788    ArgType = RT->getPointeeType().getUnqualifiedType();
5789
5790  return isStdInitializerList(ArgType, 0);
5791}
5792
5793/// \brief Determine whether a using statement is in a context where it will be
5794/// apply in all contexts.
5795static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5796  switch (CurContext->getDeclKind()) {
5797    case Decl::TranslationUnit:
5798      return true;
5799    case Decl::LinkageSpec:
5800      return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5801    default:
5802      return false;
5803  }
5804}
5805
5806namespace {
5807
5808// Callback to only accept typo corrections that are namespaces.
5809class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5810 public:
5811  virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5812    if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5813      return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5814    }
5815    return false;
5816  }
5817};
5818
5819}
5820
5821static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5822                                       CXXScopeSpec &SS,
5823                                       SourceLocation IdentLoc,
5824                                       IdentifierInfo *Ident) {
5825  NamespaceValidatorCCC Validator;
5826  R.clear();
5827  if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
5828                                               R.getLookupKind(), Sc, &SS,
5829                                               Validator)) {
5830    std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5831    std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
5832    if (DeclContext *DC = S.computeDeclContext(SS, false))
5833      S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5834        << Ident << DC << CorrectedQuotedStr << SS.getRange()
5835        << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
5836                                        CorrectedStr);
5837    else
5838      S.Diag(IdentLoc, diag::err_using_directive_suggest)
5839        << Ident << CorrectedQuotedStr
5840        << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5841
5842    S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5843         diag::note_namespace_defined_here) << CorrectedQuotedStr;
5844
5845    R.addDecl(Corrected.getCorrectionDecl());
5846    return true;
5847  }
5848  return false;
5849}
5850
5851Decl *Sema::ActOnUsingDirective(Scope *S,
5852                                          SourceLocation UsingLoc,
5853                                          SourceLocation NamespcLoc,
5854                                          CXXScopeSpec &SS,
5855                                          SourceLocation IdentLoc,
5856                                          IdentifierInfo *NamespcName,
5857                                          AttributeList *AttrList) {
5858  assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5859  assert(NamespcName && "Invalid NamespcName.");
5860  assert(IdentLoc.isValid() && "Invalid NamespceName location.");
5861
5862  // This can only happen along a recovery path.
5863  while (S->getFlags() & Scope::TemplateParamScope)
5864    S = S->getParent();
5865  assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
5866
5867  UsingDirectiveDecl *UDir = 0;
5868  NestedNameSpecifier *Qualifier = 0;
5869  if (SS.isSet())
5870    Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5871
5872  // Lookup namespace name.
5873  LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5874  LookupParsedName(R, S, &SS);
5875  if (R.isAmbiguous())
5876    return 0;
5877
5878  if (R.empty()) {
5879    R.clear();
5880    // Allow "using namespace std;" or "using namespace ::std;" even if
5881    // "std" hasn't been defined yet, for GCC compatibility.
5882    if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5883        NamespcName->isStr("std")) {
5884      Diag(IdentLoc, diag::ext_using_undefined_std);
5885      R.addDecl(getOrCreateStdNamespace());
5886      R.resolveKind();
5887    }
5888    // Otherwise, attempt typo correction.
5889    else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
5890  }
5891
5892  if (!R.empty()) {
5893    NamedDecl *Named = R.getFoundDecl();
5894    assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5895        && "expected namespace decl");
5896    // C++ [namespace.udir]p1:
5897    //   A using-directive specifies that the names in the nominated
5898    //   namespace can be used in the scope in which the
5899    //   using-directive appears after the using-directive. During
5900    //   unqualified name lookup (3.4.1), the names appear as if they
5901    //   were declared in the nearest enclosing namespace which
5902    //   contains both the using-directive and the nominated
5903    //   namespace. [Note: in this context, "contains" means "contains
5904    //   directly or indirectly". ]
5905
5906    // Find enclosing context containing both using-directive and
5907    // nominated namespace.
5908    NamespaceDecl *NS = getNamespaceDecl(Named);
5909    DeclContext *CommonAncestor = cast<DeclContext>(NS);
5910    while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5911      CommonAncestor = CommonAncestor->getParent();
5912
5913    UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
5914                                      SS.getWithLocInContext(Context),
5915                                      IdentLoc, Named, CommonAncestor);
5916
5917    if (IsUsingDirectiveInToplevelContext(CurContext) &&
5918        !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
5919      Diag(IdentLoc, diag::warn_using_directive_in_header);
5920    }
5921
5922    PushUsingDirective(S, UDir);
5923  } else {
5924    Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
5925  }
5926
5927  // FIXME: We ignore attributes for now.
5928  return UDir;
5929}
5930
5931void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
5932  // If the scope has an associated entity and the using directive is at
5933  // namespace or translation unit scope, add the UsingDirectiveDecl into
5934  // its lookup structure so qualified name lookup can find it.
5935  DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
5936  if (Ctx && !Ctx->isFunctionOrMethod())
5937    Ctx->addDecl(UDir);
5938  else
5939    // Otherwise, it is at block sope. The using-directives will affect lookup
5940    // only to the end of the scope.
5941    S->PushUsingDirective(UDir);
5942}
5943
5944
5945Decl *Sema::ActOnUsingDeclaration(Scope *S,
5946                                  AccessSpecifier AS,
5947                                  bool HasUsingKeyword,
5948                                  SourceLocation UsingLoc,
5949                                  CXXScopeSpec &SS,
5950                                  UnqualifiedId &Name,
5951                                  AttributeList *AttrList,
5952                                  bool IsTypeName,
5953                                  SourceLocation TypenameLoc) {
5954  assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
5955
5956  switch (Name.getKind()) {
5957  case UnqualifiedId::IK_ImplicitSelfParam:
5958  case UnqualifiedId::IK_Identifier:
5959  case UnqualifiedId::IK_OperatorFunctionId:
5960  case UnqualifiedId::IK_LiteralOperatorId:
5961  case UnqualifiedId::IK_ConversionFunctionId:
5962    break;
5963
5964  case UnqualifiedId::IK_ConstructorName:
5965  case UnqualifiedId::IK_ConstructorTemplateId:
5966    // C++11 inheriting constructors.
5967    Diag(Name.getLocStart(),
5968         getLangOpts().CPlusPlus0x ?
5969           // FIXME: Produce warn_cxx98_compat_using_decl_constructor
5970           //        instead once inheriting constructors work.
5971           diag::err_using_decl_constructor_unsupported :
5972           diag::err_using_decl_constructor)
5973      << SS.getRange();
5974
5975    if (getLangOpts().CPlusPlus0x) break;
5976
5977    return 0;
5978
5979  case UnqualifiedId::IK_DestructorName:
5980    Diag(Name.getLocStart(), diag::err_using_decl_destructor)
5981      << SS.getRange();
5982    return 0;
5983
5984  case UnqualifiedId::IK_TemplateId:
5985    Diag(Name.getLocStart(), diag::err_using_decl_template_id)
5986      << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
5987    return 0;
5988  }
5989
5990  DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
5991  DeclarationName TargetName = TargetNameInfo.getName();
5992  if (!TargetName)
5993    return 0;
5994
5995  // Warn about using declarations.
5996  // TODO: store that the declaration was written without 'using' and
5997  // talk about access decls instead of using decls in the
5998  // diagnostics.
5999  if (!HasUsingKeyword) {
6000    UsingLoc = Name.getLocStart();
6001
6002    Diag(UsingLoc, diag::warn_access_decl_deprecated)
6003      << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
6004  }
6005
6006  if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
6007      DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
6008    return 0;
6009
6010  NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
6011                                        TargetNameInfo, AttrList,
6012                                        /* IsInstantiation */ false,
6013                                        IsTypeName, TypenameLoc);
6014  if (UD)
6015    PushOnScopeChains(UD, S, /*AddToContext*/ false);
6016
6017  return UD;
6018}
6019
6020/// \brief Determine whether a using declaration considers the given
6021/// declarations as "equivalent", e.g., if they are redeclarations of
6022/// the same entity or are both typedefs of the same type.
6023static bool
6024IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
6025                         bool &SuppressRedeclaration) {
6026  if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
6027    SuppressRedeclaration = false;
6028    return true;
6029  }
6030
6031  if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
6032    if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
6033      SuppressRedeclaration = true;
6034      return Context.hasSameType(TD1->getUnderlyingType(),
6035                                 TD2->getUnderlyingType());
6036    }
6037
6038  return false;
6039}
6040
6041
6042/// Determines whether to create a using shadow decl for a particular
6043/// decl, given the set of decls existing prior to this using lookup.
6044bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
6045                                const LookupResult &Previous) {
6046  // Diagnose finding a decl which is not from a base class of the
6047  // current class.  We do this now because there are cases where this
6048  // function will silently decide not to build a shadow decl, which
6049  // will pre-empt further diagnostics.
6050  //
6051  // We don't need to do this in C++0x because we do the check once on
6052  // the qualifier.
6053  //
6054  // FIXME: diagnose the following if we care enough:
6055  //   struct A { int foo; };
6056  //   struct B : A { using A::foo; };
6057  //   template <class T> struct C : A {};
6058  //   template <class T> struct D : C<T> { using B::foo; } // <---
6059  // This is invalid (during instantiation) in C++03 because B::foo
6060  // resolves to the using decl in B, which is not a base class of D<T>.
6061  // We can't diagnose it immediately because C<T> is an unknown
6062  // specialization.  The UsingShadowDecl in D<T> then points directly
6063  // to A::foo, which will look well-formed when we instantiate.
6064  // The right solution is to not collapse the shadow-decl chain.
6065  if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
6066    DeclContext *OrigDC = Orig->getDeclContext();
6067
6068    // Handle enums and anonymous structs.
6069    if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
6070    CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
6071    while (OrigRec->isAnonymousStructOrUnion())
6072      OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
6073
6074    if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
6075      if (OrigDC == CurContext) {
6076        Diag(Using->getLocation(),
6077             diag::err_using_decl_nested_name_specifier_is_current_class)
6078          << Using->getQualifierLoc().getSourceRange();
6079        Diag(Orig->getLocation(), diag::note_using_decl_target);
6080        return true;
6081      }
6082
6083      Diag(Using->getQualifierLoc().getBeginLoc(),
6084           diag::err_using_decl_nested_name_specifier_is_not_base_class)
6085        << Using->getQualifier()
6086        << cast<CXXRecordDecl>(CurContext)
6087        << Using->getQualifierLoc().getSourceRange();
6088      Diag(Orig->getLocation(), diag::note_using_decl_target);
6089      return true;
6090    }
6091  }
6092
6093  if (Previous.empty()) return false;
6094
6095  NamedDecl *Target = Orig;
6096  if (isa<UsingShadowDecl>(Target))
6097    Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6098
6099  // If the target happens to be one of the previous declarations, we
6100  // don't have a conflict.
6101  //
6102  // FIXME: but we might be increasing its access, in which case we
6103  // should redeclare it.
6104  NamedDecl *NonTag = 0, *Tag = 0;
6105  for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6106         I != E; ++I) {
6107    NamedDecl *D = (*I)->getUnderlyingDecl();
6108    bool Result;
6109    if (IsEquivalentForUsingDecl(Context, D, Target, Result))
6110      return Result;
6111
6112    (isa<TagDecl>(D) ? Tag : NonTag) = D;
6113  }
6114
6115  if (Target->isFunctionOrFunctionTemplate()) {
6116    FunctionDecl *FD;
6117    if (isa<FunctionTemplateDecl>(Target))
6118      FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
6119    else
6120      FD = cast<FunctionDecl>(Target);
6121
6122    NamedDecl *OldDecl = 0;
6123    switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
6124    case Ovl_Overload:
6125      return false;
6126
6127    case Ovl_NonFunction:
6128      Diag(Using->getLocation(), diag::err_using_decl_conflict);
6129      break;
6130
6131    // We found a decl with the exact signature.
6132    case Ovl_Match:
6133      // If we're in a record, we want to hide the target, so we
6134      // return true (without a diagnostic) to tell the caller not to
6135      // build a shadow decl.
6136      if (CurContext->isRecord())
6137        return true;
6138
6139      // If we're not in a record, this is an error.
6140      Diag(Using->getLocation(), diag::err_using_decl_conflict);
6141      break;
6142    }
6143
6144    Diag(Target->getLocation(), diag::note_using_decl_target);
6145    Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6146    return true;
6147  }
6148
6149  // Target is not a function.
6150
6151  if (isa<TagDecl>(Target)) {
6152    // No conflict between a tag and a non-tag.
6153    if (!Tag) return false;
6154
6155    Diag(Using->getLocation(), diag::err_using_decl_conflict);
6156    Diag(Target->getLocation(), diag::note_using_decl_target);
6157    Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6158    return true;
6159  }
6160
6161  // No conflict between a tag and a non-tag.
6162  if (!NonTag) return false;
6163
6164  Diag(Using->getLocation(), diag::err_using_decl_conflict);
6165  Diag(Target->getLocation(), diag::note_using_decl_target);
6166  Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6167  return true;
6168}
6169
6170/// Builds a shadow declaration corresponding to a 'using' declaration.
6171UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
6172                                            UsingDecl *UD,
6173                                            NamedDecl *Orig) {
6174
6175  // If we resolved to another shadow declaration, just coalesce them.
6176  NamedDecl *Target = Orig;
6177  if (isa<UsingShadowDecl>(Target)) {
6178    Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6179    assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
6180  }
6181
6182  UsingShadowDecl *Shadow
6183    = UsingShadowDecl::Create(Context, CurContext,
6184                              UD->getLocation(), UD, Target);
6185  UD->addShadowDecl(Shadow);
6186
6187  Shadow->setAccess(UD->getAccess());
6188  if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6189    Shadow->setInvalidDecl();
6190
6191  if (S)
6192    PushOnScopeChains(Shadow, S);
6193  else
6194    CurContext->addDecl(Shadow);
6195
6196
6197  return Shadow;
6198}
6199
6200/// Hides a using shadow declaration.  This is required by the current
6201/// using-decl implementation when a resolvable using declaration in a
6202/// class is followed by a declaration which would hide or override
6203/// one or more of the using decl's targets; for example:
6204///
6205///   struct Base { void foo(int); };
6206///   struct Derived : Base {
6207///     using Base::foo;
6208///     void foo(int);
6209///   };
6210///
6211/// The governing language is C++03 [namespace.udecl]p12:
6212///
6213///   When a using-declaration brings names from a base class into a
6214///   derived class scope, member functions in the derived class
6215///   override and/or hide member functions with the same name and
6216///   parameter types in a base class (rather than conflicting).
6217///
6218/// There are two ways to implement this:
6219///   (1) optimistically create shadow decls when they're not hidden
6220///       by existing declarations, or
6221///   (2) don't create any shadow decls (or at least don't make them
6222///       visible) until we've fully parsed/instantiated the class.
6223/// The problem with (1) is that we might have to retroactively remove
6224/// a shadow decl, which requires several O(n) operations because the
6225/// decl structures are (very reasonably) not designed for removal.
6226/// (2) avoids this but is very fiddly and phase-dependent.
6227void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
6228  if (Shadow->getDeclName().getNameKind() ==
6229        DeclarationName::CXXConversionFunctionName)
6230    cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6231
6232  // Remove it from the DeclContext...
6233  Shadow->getDeclContext()->removeDecl(Shadow);
6234
6235  // ...and the scope, if applicable...
6236  if (S) {
6237    S->RemoveDecl(Shadow);
6238    IdResolver.RemoveDecl(Shadow);
6239  }
6240
6241  // ...and the using decl.
6242  Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6243
6244  // TODO: complain somehow if Shadow was used.  It shouldn't
6245  // be possible for this to happen, because...?
6246}
6247
6248/// Builds a using declaration.
6249///
6250/// \param IsInstantiation - Whether this call arises from an
6251///   instantiation of an unresolved using declaration.  We treat
6252///   the lookup differently for these declarations.
6253NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6254                                       SourceLocation UsingLoc,
6255                                       CXXScopeSpec &SS,
6256                                       const DeclarationNameInfo &NameInfo,
6257                                       AttributeList *AttrList,
6258                                       bool IsInstantiation,
6259                                       bool IsTypeName,
6260                                       SourceLocation TypenameLoc) {
6261  assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
6262  SourceLocation IdentLoc = NameInfo.getLoc();
6263  assert(IdentLoc.isValid() && "Invalid TargetName location.");
6264
6265  // FIXME: We ignore attributes for now.
6266
6267  if (SS.isEmpty()) {
6268    Diag(IdentLoc, diag::err_using_requires_qualname);
6269    return 0;
6270  }
6271
6272  // Do the redeclaration lookup in the current scope.
6273  LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
6274                        ForRedeclaration);
6275  Previous.setHideTags(false);
6276  if (S) {
6277    LookupName(Previous, S);
6278
6279    // It is really dumb that we have to do this.
6280    LookupResult::Filter F = Previous.makeFilter();
6281    while (F.hasNext()) {
6282      NamedDecl *D = F.next();
6283      if (!isDeclInScope(D, CurContext, S))
6284        F.erase();
6285    }
6286    F.done();
6287  } else {
6288    assert(IsInstantiation && "no scope in non-instantiation");
6289    assert(CurContext->isRecord() && "scope not record in instantiation");
6290    LookupQualifiedName(Previous, CurContext);
6291  }
6292
6293  // Check for invalid redeclarations.
6294  if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6295    return 0;
6296
6297  // Check for bad qualifiers.
6298  if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6299    return 0;
6300
6301  DeclContext *LookupContext = computeDeclContext(SS);
6302  NamedDecl *D;
6303  NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
6304  if (!LookupContext) {
6305    if (IsTypeName) {
6306      // FIXME: not all declaration name kinds are legal here
6307      D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6308                                              UsingLoc, TypenameLoc,
6309                                              QualifierLoc,
6310                                              IdentLoc, NameInfo.getName());
6311    } else {
6312      D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6313                                           QualifierLoc, NameInfo);
6314    }
6315  } else {
6316    D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6317                          NameInfo, IsTypeName);
6318  }
6319  D->setAccess(AS);
6320  CurContext->addDecl(D);
6321
6322  if (!LookupContext) return D;
6323  UsingDecl *UD = cast<UsingDecl>(D);
6324
6325  if (RequireCompleteDeclContext(SS, LookupContext)) {
6326    UD->setInvalidDecl();
6327    return UD;
6328  }
6329
6330  // The normal rules do not apply to inheriting constructor declarations.
6331  if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
6332    if (CheckInheritingConstructorUsingDecl(UD))
6333      UD->setInvalidDecl();
6334    return UD;
6335  }
6336
6337  // Otherwise, look up the target name.
6338
6339  LookupResult R(*this, NameInfo, LookupOrdinaryName);
6340
6341  // Unlike most lookups, we don't always want to hide tag
6342  // declarations: tag names are visible through the using declaration
6343  // even if hidden by ordinary names, *except* in a dependent context
6344  // where it's important for the sanity of two-phase lookup.
6345  if (!IsInstantiation)
6346    R.setHideTags(false);
6347
6348  // For the purposes of this lookup, we have a base object type
6349  // equal to that of the current context.
6350  if (CurContext->isRecord()) {
6351    R.setBaseObjectType(
6352                   Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6353  }
6354
6355  LookupQualifiedName(R, LookupContext);
6356
6357  if (R.empty()) {
6358    Diag(IdentLoc, diag::err_no_member)
6359      << NameInfo.getName() << LookupContext << SS.getRange();
6360    UD->setInvalidDecl();
6361    return UD;
6362  }
6363
6364  if (R.isAmbiguous()) {
6365    UD->setInvalidDecl();
6366    return UD;
6367  }
6368
6369  if (IsTypeName) {
6370    // If we asked for a typename and got a non-type decl, error out.
6371    if (!R.getAsSingle<TypeDecl>()) {
6372      Diag(IdentLoc, diag::err_using_typename_non_type);
6373      for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6374        Diag((*I)->getUnderlyingDecl()->getLocation(),
6375             diag::note_using_decl_target);
6376      UD->setInvalidDecl();
6377      return UD;
6378    }
6379  } else {
6380    // If we asked for a non-typename and we got a type, error out,
6381    // but only if this is an instantiation of an unresolved using
6382    // decl.  Otherwise just silently find the type name.
6383    if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
6384      Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6385      Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
6386      UD->setInvalidDecl();
6387      return UD;
6388    }
6389  }
6390
6391  // C++0x N2914 [namespace.udecl]p6:
6392  // A using-declaration shall not name a namespace.
6393  if (R.getAsSingle<NamespaceDecl>()) {
6394    Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6395      << SS.getRange();
6396    UD->setInvalidDecl();
6397    return UD;
6398  }
6399
6400  for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6401    if (!CheckUsingShadowDecl(UD, *I, Previous))
6402      BuildUsingShadowDecl(S, UD, *I);
6403  }
6404
6405  return UD;
6406}
6407
6408/// Additional checks for a using declaration referring to a constructor name.
6409bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6410  assert(!UD->isTypeName() && "expecting a constructor name");
6411
6412  const Type *SourceType = UD->getQualifier()->getAsType();
6413  assert(SourceType &&
6414         "Using decl naming constructor doesn't have type in scope spec.");
6415  CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6416
6417  // Check whether the named type is a direct base class.
6418  CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6419  CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6420  for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6421       BaseIt != BaseE; ++BaseIt) {
6422    CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6423    if (CanonicalSourceType == BaseType)
6424      break;
6425    if (BaseIt->getType()->isDependentType())
6426      break;
6427  }
6428
6429  if (BaseIt == BaseE) {
6430    // Did not find SourceType in the bases.
6431    Diag(UD->getUsingLocation(),
6432         diag::err_using_decl_constructor_not_in_direct_base)
6433      << UD->getNameInfo().getSourceRange()
6434      << QualType(SourceType, 0) << TargetClass;
6435    return true;
6436  }
6437
6438  if (!CurContext->isDependentContext())
6439    BaseIt->setInheritConstructors();
6440
6441  return false;
6442}
6443
6444/// Checks that the given using declaration is not an invalid
6445/// redeclaration.  Note that this is checking only for the using decl
6446/// itself, not for any ill-formedness among the UsingShadowDecls.
6447bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6448                                       bool isTypeName,
6449                                       const CXXScopeSpec &SS,
6450                                       SourceLocation NameLoc,
6451                                       const LookupResult &Prev) {
6452  // C++03 [namespace.udecl]p8:
6453  // C++0x [namespace.udecl]p10:
6454  //   A using-declaration is a declaration and can therefore be used
6455  //   repeatedly where (and only where) multiple declarations are
6456  //   allowed.
6457  //
6458  // That's in non-member contexts.
6459  if (!CurContext->getRedeclContext()->isRecord())
6460    return false;
6461
6462  NestedNameSpecifier *Qual
6463    = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6464
6465  for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6466    NamedDecl *D = *I;
6467
6468    bool DTypename;
6469    NestedNameSpecifier *DQual;
6470    if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6471      DTypename = UD->isTypeName();
6472      DQual = UD->getQualifier();
6473    } else if (UnresolvedUsingValueDecl *UD
6474                 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6475      DTypename = false;
6476      DQual = UD->getQualifier();
6477    } else if (UnresolvedUsingTypenameDecl *UD
6478                 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6479      DTypename = true;
6480      DQual = UD->getQualifier();
6481    } else continue;
6482
6483    // using decls differ if one says 'typename' and the other doesn't.
6484    // FIXME: non-dependent using decls?
6485    if (isTypeName != DTypename) continue;
6486
6487    // using decls differ if they name different scopes (but note that
6488    // template instantiation can cause this check to trigger when it
6489    // didn't before instantiation).
6490    if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6491        Context.getCanonicalNestedNameSpecifier(DQual))
6492      continue;
6493
6494    Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
6495    Diag(D->getLocation(), diag::note_using_decl) << 1;
6496    return true;
6497  }
6498
6499  return false;
6500}
6501
6502
6503/// Checks that the given nested-name qualifier used in a using decl
6504/// in the current context is appropriately related to the current
6505/// scope.  If an error is found, diagnoses it and returns true.
6506bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6507                                   const CXXScopeSpec &SS,
6508                                   SourceLocation NameLoc) {
6509  DeclContext *NamedContext = computeDeclContext(SS);
6510
6511  if (!CurContext->isRecord()) {
6512    // C++03 [namespace.udecl]p3:
6513    // C++0x [namespace.udecl]p8:
6514    //   A using-declaration for a class member shall be a member-declaration.
6515
6516    // If we weren't able to compute a valid scope, it must be a
6517    // dependent class scope.
6518    if (!NamedContext || NamedContext->isRecord()) {
6519      Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6520        << SS.getRange();
6521      return true;
6522    }
6523
6524    // Otherwise, everything is known to be fine.
6525    return false;
6526  }
6527
6528  // The current scope is a record.
6529
6530  // If the named context is dependent, we can't decide much.
6531  if (!NamedContext) {
6532    // FIXME: in C++0x, we can diagnose if we can prove that the
6533    // nested-name-specifier does not refer to a base class, which is
6534    // still possible in some cases.
6535
6536    // Otherwise we have to conservatively report that things might be
6537    // okay.
6538    return false;
6539  }
6540
6541  if (!NamedContext->isRecord()) {
6542    // Ideally this would point at the last name in the specifier,
6543    // but we don't have that level of source info.
6544    Diag(SS.getRange().getBegin(),
6545         diag::err_using_decl_nested_name_specifier_is_not_class)
6546      << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6547    return true;
6548  }
6549
6550  if (!NamedContext->isDependentContext() &&
6551      RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6552    return true;
6553
6554  if (getLangOpts().CPlusPlus0x) {
6555    // C++0x [namespace.udecl]p3:
6556    //   In a using-declaration used as a member-declaration, the
6557    //   nested-name-specifier shall name a base class of the class
6558    //   being defined.
6559
6560    if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6561                                 cast<CXXRecordDecl>(NamedContext))) {
6562      if (CurContext == NamedContext) {
6563        Diag(NameLoc,
6564             diag::err_using_decl_nested_name_specifier_is_current_class)
6565          << SS.getRange();
6566        return true;
6567      }
6568
6569      Diag(SS.getRange().getBegin(),
6570           diag::err_using_decl_nested_name_specifier_is_not_base_class)
6571        << (NestedNameSpecifier*) SS.getScopeRep()
6572        << cast<CXXRecordDecl>(CurContext)
6573        << SS.getRange();
6574      return true;
6575    }
6576
6577    return false;
6578  }
6579
6580  // C++03 [namespace.udecl]p4:
6581  //   A using-declaration used as a member-declaration shall refer
6582  //   to a member of a base class of the class being defined [etc.].
6583
6584  // Salient point: SS doesn't have to name a base class as long as
6585  // lookup only finds members from base classes.  Therefore we can
6586  // diagnose here only if we can prove that that can't happen,
6587  // i.e. if the class hierarchies provably don't intersect.
6588
6589  // TODO: it would be nice if "definitely valid" results were cached
6590  // in the UsingDecl and UsingShadowDecl so that these checks didn't
6591  // need to be repeated.
6592
6593  struct UserData {
6594    llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
6595
6596    static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6597      UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6598      Data->Bases.insert(Base);
6599      return true;
6600    }
6601
6602    bool hasDependentBases(const CXXRecordDecl *Class) {
6603      return !Class->forallBases(collect, this);
6604    }
6605
6606    /// Returns true if the base is dependent or is one of the
6607    /// accumulated base classes.
6608    static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6609      UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6610      return !Data->Bases.count(Base);
6611    }
6612
6613    bool mightShareBases(const CXXRecordDecl *Class) {
6614      return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6615    }
6616  };
6617
6618  UserData Data;
6619
6620  // Returns false if we find a dependent base.
6621  if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6622    return false;
6623
6624  // Returns false if the class has a dependent base or if it or one
6625  // of its bases is present in the base set of the current context.
6626  if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6627    return false;
6628
6629  Diag(SS.getRange().getBegin(),
6630       diag::err_using_decl_nested_name_specifier_is_not_base_class)
6631    << (NestedNameSpecifier*) SS.getScopeRep()
6632    << cast<CXXRecordDecl>(CurContext)
6633    << SS.getRange();
6634
6635  return true;
6636}
6637
6638Decl *Sema::ActOnAliasDeclaration(Scope *S,
6639                                  AccessSpecifier AS,
6640                                  MultiTemplateParamsArg TemplateParamLists,
6641                                  SourceLocation UsingLoc,
6642                                  UnqualifiedId &Name,
6643                                  TypeResult Type) {
6644  // Skip up to the relevant declaration scope.
6645  while (S->getFlags() & Scope::TemplateParamScope)
6646    S = S->getParent();
6647  assert((S->getFlags() & Scope::DeclScope) &&
6648         "got alias-declaration outside of declaration scope");
6649
6650  if (Type.isInvalid())
6651    return 0;
6652
6653  bool Invalid = false;
6654  DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6655  TypeSourceInfo *TInfo = 0;
6656  GetTypeFromParser(Type.get(), &TInfo);
6657
6658  if (DiagnoseClassNameShadow(CurContext, NameInfo))
6659    return 0;
6660
6661  if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
6662                                      UPPC_DeclarationType)) {
6663    Invalid = true;
6664    TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6665                                             TInfo->getTypeLoc().getBeginLoc());
6666  }
6667
6668  LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6669  LookupName(Previous, S);
6670
6671  // Warn about shadowing the name of a template parameter.
6672  if (Previous.isSingleResult() &&
6673      Previous.getFoundDecl()->isTemplateParameter()) {
6674    DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
6675    Previous.clear();
6676  }
6677
6678  assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6679         "name in alias declaration must be an identifier");
6680  TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6681                                               Name.StartLocation,
6682                                               Name.Identifier, TInfo);
6683
6684  NewTD->setAccess(AS);
6685
6686  if (Invalid)
6687    NewTD->setInvalidDecl();
6688
6689  CheckTypedefForVariablyModifiedType(S, NewTD);
6690  Invalid |= NewTD->isInvalidDecl();
6691
6692  bool Redeclaration = false;
6693
6694  NamedDecl *NewND;
6695  if (TemplateParamLists.size()) {
6696    TypeAliasTemplateDecl *OldDecl = 0;
6697    TemplateParameterList *OldTemplateParams = 0;
6698
6699    if (TemplateParamLists.size() != 1) {
6700      Diag(UsingLoc, diag::err_alias_template_extra_headers)
6701        << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
6702         TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
6703    }
6704    TemplateParameterList *TemplateParams = TemplateParamLists[0];
6705
6706    // Only consider previous declarations in the same scope.
6707    FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6708                         /*ExplicitInstantiationOrSpecialization*/false);
6709    if (!Previous.empty()) {
6710      Redeclaration = true;
6711
6712      OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6713      if (!OldDecl && !Invalid) {
6714        Diag(UsingLoc, diag::err_redefinition_different_kind)
6715          << Name.Identifier;
6716
6717        NamedDecl *OldD = Previous.getRepresentativeDecl();
6718        if (OldD->getLocation().isValid())
6719          Diag(OldD->getLocation(), diag::note_previous_definition);
6720
6721        Invalid = true;
6722      }
6723
6724      if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6725        if (TemplateParameterListsAreEqual(TemplateParams,
6726                                           OldDecl->getTemplateParameters(),
6727                                           /*Complain=*/true,
6728                                           TPL_TemplateMatch))
6729          OldTemplateParams = OldDecl->getTemplateParameters();
6730        else
6731          Invalid = true;
6732
6733        TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6734        if (!Invalid &&
6735            !Context.hasSameType(OldTD->getUnderlyingType(),
6736                                 NewTD->getUnderlyingType())) {
6737          // FIXME: The C++0x standard does not clearly say this is ill-formed,
6738          // but we can't reasonably accept it.
6739          Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6740            << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6741          if (OldTD->getLocation().isValid())
6742            Diag(OldTD->getLocation(), diag::note_previous_definition);
6743          Invalid = true;
6744        }
6745      }
6746    }
6747
6748    // Merge any previous default template arguments into our parameters,
6749    // and check the parameter list.
6750    if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6751                                   TPC_TypeAliasTemplate))
6752      return 0;
6753
6754    TypeAliasTemplateDecl *NewDecl =
6755      TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6756                                    Name.Identifier, TemplateParams,
6757                                    NewTD);
6758
6759    NewDecl->setAccess(AS);
6760
6761    if (Invalid)
6762      NewDecl->setInvalidDecl();
6763    else if (OldDecl)
6764      NewDecl->setPreviousDeclaration(OldDecl);
6765
6766    NewND = NewDecl;
6767  } else {
6768    ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6769    NewND = NewTD;
6770  }
6771
6772  if (!Redeclaration)
6773    PushOnScopeChains(NewND, S);
6774
6775  ActOnDocumentableDecl(NewND);
6776  return NewND;
6777}
6778
6779Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
6780                                             SourceLocation NamespaceLoc,
6781                                             SourceLocation AliasLoc,
6782                                             IdentifierInfo *Alias,
6783                                             CXXScopeSpec &SS,
6784                                             SourceLocation IdentLoc,
6785                                             IdentifierInfo *Ident) {
6786
6787  // Lookup the namespace name.
6788  LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6789  LookupParsedName(R, S, &SS);
6790
6791  // Check if we have a previous declaration with the same name.
6792  NamedDecl *PrevDecl
6793    = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6794                       ForRedeclaration);
6795  if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6796    PrevDecl = 0;
6797
6798  if (PrevDecl) {
6799    if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
6800      // We already have an alias with the same name that points to the same
6801      // namespace, so don't create a new one.
6802      // FIXME: At some point, we'll want to create the (redundant)
6803      // declaration to maintain better source information.
6804      if (!R.isAmbiguous() && !R.empty() &&
6805          AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
6806        return 0;
6807    }
6808
6809    unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6810      diag::err_redefinition_different_kind;
6811    Diag(AliasLoc, DiagID) << Alias;
6812    Diag(PrevDecl->getLocation(), diag::note_previous_definition);
6813    return 0;
6814  }
6815
6816  if (R.isAmbiguous())
6817    return 0;
6818
6819  if (R.empty()) {
6820    if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
6821      Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
6822      return 0;
6823    }
6824  }
6825
6826  NamespaceAliasDecl *AliasDecl =
6827    NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
6828                               Alias, SS.getWithLocInContext(Context),
6829                               IdentLoc, R.getFoundDecl());
6830
6831  PushOnScopeChains(AliasDecl, S);
6832  return AliasDecl;
6833}
6834
6835Sema::ImplicitExceptionSpecification
6836Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
6837                                               CXXMethodDecl *MD) {
6838  CXXRecordDecl *ClassDecl = MD->getParent();
6839
6840  // C++ [except.spec]p14:
6841  //   An implicitly declared special member function (Clause 12) shall have an
6842  //   exception-specification. [...]
6843  ImplicitExceptionSpecification ExceptSpec(*this);
6844  if (ClassDecl->isInvalidDecl())
6845    return ExceptSpec;
6846
6847  // Direct base-class constructors.
6848  for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6849                                       BEnd = ClassDecl->bases_end();
6850       B != BEnd; ++B) {
6851    if (B->isVirtual()) // Handled below.
6852      continue;
6853
6854    if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6855      CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
6856      CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6857      // If this is a deleted function, add it anyway. This might be conformant
6858      // with the standard. This might not. I'm not sure. It might not matter.
6859      if (Constructor)
6860        ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
6861    }
6862  }
6863
6864  // Virtual base-class constructors.
6865  for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6866                                       BEnd = ClassDecl->vbases_end();
6867       B != BEnd; ++B) {
6868    if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6869      CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
6870      CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6871      // If this is a deleted function, add it anyway. This might be conformant
6872      // with the standard. This might not. I'm not sure. It might not matter.
6873      if (Constructor)
6874        ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
6875    }
6876  }
6877
6878  // Field constructors.
6879  for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6880                               FEnd = ClassDecl->field_end();
6881       F != FEnd; ++F) {
6882    if (F->hasInClassInitializer()) {
6883      if (Expr *E = F->getInClassInitializer())
6884        ExceptSpec.CalledExpr(E);
6885      else if (!F->isInvalidDecl())
6886        // DR1351:
6887        //   If the brace-or-equal-initializer of a non-static data member
6888        //   invokes a defaulted default constructor of its class or of an
6889        //   enclosing class in a potentially evaluated subexpression, the
6890        //   program is ill-formed.
6891        //
6892        // This resolution is unworkable: the exception specification of the
6893        // default constructor can be needed in an unevaluated context, in
6894        // particular, in the operand of a noexcept-expression, and we can be
6895        // unable to compute an exception specification for an enclosed class.
6896        //
6897        // We do not allow an in-class initializer to require the evaluation
6898        // of the exception specification for any in-class initializer whose
6899        // definition is not lexically complete.
6900        Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
6901    } else if (const RecordType *RecordTy
6902              = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
6903      CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6904      CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6905      // If this is a deleted function, add it anyway. This might be conformant
6906      // with the standard. This might not. I'm not sure. It might not matter.
6907      // In particular, the problem is that this function never gets called. It
6908      // might just be ill-formed because this function attempts to refer to
6909      // a deleted function here.
6910      if (Constructor)
6911        ExceptSpec.CalledDecl(F->getLocation(), Constructor);
6912    }
6913  }
6914
6915  return ExceptSpec;
6916}
6917
6918CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
6919                                                     CXXRecordDecl *ClassDecl) {
6920  // C++ [class.ctor]p5:
6921  //   A default constructor for a class X is a constructor of class X
6922  //   that can be called without an argument. If there is no
6923  //   user-declared constructor for class X, a default constructor is
6924  //   implicitly declared. An implicitly-declared default constructor
6925  //   is an inline public member of its class.
6926  assert(!ClassDecl->hasUserDeclaredConstructor() &&
6927         "Should not build implicit default constructor!");
6928
6929  bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
6930                                                     CXXDefaultConstructor,
6931                                                     false);
6932
6933  // Create the actual constructor declaration.
6934  CanQualType ClassType
6935    = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
6936  SourceLocation ClassLoc = ClassDecl->getLocation();
6937  DeclarationName Name
6938    = Context.DeclarationNames.getCXXConstructorName(ClassType);
6939  DeclarationNameInfo NameInfo(Name, ClassLoc);
6940  CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
6941      Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
6942      /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
6943      Constexpr);
6944  DefaultCon->setAccess(AS_public);
6945  DefaultCon->setDefaulted();
6946  DefaultCon->setImplicit();
6947  DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
6948
6949  // Build an exception specification pointing back at this constructor.
6950  FunctionProtoType::ExtProtoInfo EPI;
6951  EPI.ExceptionSpecType = EST_Unevaluated;
6952  EPI.ExceptionSpecDecl = DefaultCon;
6953  DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
6954
6955  // Note that we have declared this constructor.
6956  ++ASTContext::NumImplicitDefaultConstructorsDeclared;
6957
6958  if (Scope *S = getScopeForContext(ClassDecl))
6959    PushOnScopeChains(DefaultCon, S, false);
6960  ClassDecl->addDecl(DefaultCon);
6961
6962  if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
6963    DefaultCon->setDeletedAsWritten();
6964
6965  return DefaultCon;
6966}
6967
6968void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
6969                                            CXXConstructorDecl *Constructor) {
6970  assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
6971          !Constructor->doesThisDeclarationHaveABody() &&
6972          !Constructor->isDeleted()) &&
6973    "DefineImplicitDefaultConstructor - call it for implicit default ctor");
6974
6975  CXXRecordDecl *ClassDecl = Constructor->getParent();
6976  assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
6977
6978  SynthesizedFunctionScope Scope(*this, Constructor);
6979  DiagnosticErrorTrap Trap(Diags);
6980  if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
6981      Trap.hasErrorOccurred()) {
6982    Diag(CurrentLocation, diag::note_member_synthesized_at)
6983      << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
6984    Constructor->setInvalidDecl();
6985    return;
6986  }
6987
6988  SourceLocation Loc = Constructor->getLocation();
6989  Constructor->setBody(new (Context) CompoundStmt(Loc));
6990
6991  Constructor->setUsed();
6992  MarkVTableUsed(CurrentLocation, ClassDecl);
6993
6994  if (ASTMutationListener *L = getASTMutationListener()) {
6995    L->CompletedImplicitDefinition(Constructor);
6996  }
6997}
6998
6999void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
7000  if (!D) return;
7001  AdjustDeclIfTemplate(D);
7002
7003  CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
7004
7005  if (!ClassDecl->isDependentType())
7006    CheckExplicitlyDefaultedMethods(ClassDecl);
7007}
7008
7009void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
7010  // We start with an initial pass over the base classes to collect those that
7011  // inherit constructors from. If there are none, we can forgo all further
7012  // processing.
7013  typedef SmallVector<const RecordType *, 4> BasesVector;
7014  BasesVector BasesToInheritFrom;
7015  for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
7016                                          BaseE = ClassDecl->bases_end();
7017         BaseIt != BaseE; ++BaseIt) {
7018    if (BaseIt->getInheritConstructors()) {
7019      QualType Base = BaseIt->getType();
7020      if (Base->isDependentType()) {
7021        // If we inherit constructors from anything that is dependent, just
7022        // abort processing altogether. We'll get another chance for the
7023        // instantiations.
7024        return;
7025      }
7026      BasesToInheritFrom.push_back(Base->castAs<RecordType>());
7027    }
7028  }
7029  if (BasesToInheritFrom.empty())
7030    return;
7031
7032  // Now collect the constructors that we already have in the current class.
7033  // Those take precedence over inherited constructors.
7034  // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
7035  //   unless there is a user-declared constructor with the same signature in
7036  //   the class where the using-declaration appears.
7037  llvm::SmallSet<const Type *, 8> ExistingConstructors;
7038  for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
7039                                    CtorE = ClassDecl->ctor_end();
7040       CtorIt != CtorE; ++CtorIt) {
7041    ExistingConstructors.insert(
7042        Context.getCanonicalType(CtorIt->getType()).getTypePtr());
7043  }
7044
7045  DeclarationName CreatedCtorName =
7046      Context.DeclarationNames.getCXXConstructorName(
7047          ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
7048
7049  // Now comes the true work.
7050  // First, we keep a map from constructor types to the base that introduced
7051  // them. Needed for finding conflicting constructors. We also keep the
7052  // actually inserted declarations in there, for pretty diagnostics.
7053  typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
7054  typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
7055  ConstructorToSourceMap InheritedConstructors;
7056  for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
7057                             BaseE = BasesToInheritFrom.end();
7058       BaseIt != BaseE; ++BaseIt) {
7059    const RecordType *Base = *BaseIt;
7060    CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
7061    CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
7062    for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
7063                                      CtorE = BaseDecl->ctor_end();
7064         CtorIt != CtorE; ++CtorIt) {
7065      // Find the using declaration for inheriting this base's constructors.
7066      // FIXME: Don't perform name lookup just to obtain a source location!
7067      DeclarationName Name =
7068          Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
7069      LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
7070      LookupQualifiedName(Result, CurContext);
7071      UsingDecl *UD = Result.getAsSingle<UsingDecl>();
7072      SourceLocation UsingLoc = UD ? UD->getLocation() :
7073                                     ClassDecl->getLocation();
7074
7075      // C++0x [class.inhctor]p1: The candidate set of inherited constructors
7076      //   from the class X named in the using-declaration consists of actual
7077      //   constructors and notional constructors that result from the
7078      //   transformation of defaulted parameters as follows:
7079      //   - all non-template default constructors of X, and
7080      //   - for each non-template constructor of X that has at least one
7081      //     parameter with a default argument, the set of constructors that
7082      //     results from omitting any ellipsis parameter specification and
7083      //     successively omitting parameters with a default argument from the
7084      //     end of the parameter-type-list.
7085      CXXConstructorDecl *BaseCtor = *CtorIt;
7086      bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
7087      const FunctionProtoType *BaseCtorType =
7088          BaseCtor->getType()->getAs<FunctionProtoType>();
7089
7090      for (unsigned params = BaseCtor->getMinRequiredArguments(),
7091                    maxParams = BaseCtor->getNumParams();
7092           params <= maxParams; ++params) {
7093        // Skip default constructors. They're never inherited.
7094        if (params == 0)
7095          continue;
7096        // Skip copy and move constructors for the same reason.
7097        if (CanBeCopyOrMove && params == 1)
7098          continue;
7099
7100        // Build up a function type for this particular constructor.
7101        // FIXME: The working paper does not consider that the exception spec
7102        // for the inheriting constructor might be larger than that of the
7103        // source. This code doesn't yet, either. When it does, this code will
7104        // need to be delayed until after exception specifications and in-class
7105        // member initializers are attached.
7106        const Type *NewCtorType;
7107        if (params == maxParams)
7108          NewCtorType = BaseCtorType;
7109        else {
7110          SmallVector<QualType, 16> Args;
7111          for (unsigned i = 0; i < params; ++i) {
7112            Args.push_back(BaseCtorType->getArgType(i));
7113          }
7114          FunctionProtoType::ExtProtoInfo ExtInfo =
7115              BaseCtorType->getExtProtoInfo();
7116          ExtInfo.Variadic = false;
7117          NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
7118                                                Args.data(), params, ExtInfo)
7119                       .getTypePtr();
7120        }
7121        const Type *CanonicalNewCtorType =
7122            Context.getCanonicalType(NewCtorType);
7123
7124        // Now that we have the type, first check if the class already has a
7125        // constructor with this signature.
7126        if (ExistingConstructors.count(CanonicalNewCtorType))
7127          continue;
7128
7129        // Then we check if we have already declared an inherited constructor
7130        // with this signature.
7131        std::pair<ConstructorToSourceMap::iterator, bool> result =
7132            InheritedConstructors.insert(std::make_pair(
7133                CanonicalNewCtorType,
7134                std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7135        if (!result.second) {
7136          // Already in the map. If it came from a different class, that's an
7137          // error. Not if it's from the same.
7138          CanQualType PreviousBase = result.first->second.first;
7139          if (CanonicalBase != PreviousBase) {
7140            const CXXConstructorDecl *PrevCtor = result.first->second.second;
7141            const CXXConstructorDecl *PrevBaseCtor =
7142                PrevCtor->getInheritedConstructor();
7143            assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7144
7145            Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7146            Diag(BaseCtor->getLocation(),
7147                 diag::note_using_decl_constructor_conflict_current_ctor);
7148            Diag(PrevBaseCtor->getLocation(),
7149                 diag::note_using_decl_constructor_conflict_previous_ctor);
7150            Diag(PrevCtor->getLocation(),
7151                 diag::note_using_decl_constructor_conflict_previous_using);
7152          }
7153          continue;
7154        }
7155
7156        // OK, we're there, now add the constructor.
7157        // C++0x [class.inhctor]p8: [...] that would be performed by a
7158        //   user-written inline constructor [...]
7159        DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7160        CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
7161            Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7162            /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
7163            /*ImplicitlyDeclared=*/true,
7164            // FIXME: Due to a defect in the standard, we treat inherited
7165            // constructors as constexpr even if that makes them ill-formed.
7166            /*Constexpr=*/BaseCtor->isConstexpr());
7167        NewCtor->setAccess(BaseCtor->getAccess());
7168
7169        // Build up the parameter decls and add them.
7170        SmallVector<ParmVarDecl *, 16> ParamDecls;
7171        for (unsigned i = 0; i < params; ++i) {
7172          ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7173                                                   UsingLoc, UsingLoc,
7174                                                   /*IdentifierInfo=*/0,
7175                                                   BaseCtorType->getArgType(i),
7176                                                   /*TInfo=*/0, SC_None,
7177                                                   SC_None, /*DefaultArg=*/0));
7178        }
7179        NewCtor->setParams(ParamDecls);
7180        NewCtor->setInheritedConstructor(BaseCtor);
7181
7182        ClassDecl->addDecl(NewCtor);
7183        result.first->second.second = NewCtor;
7184      }
7185    }
7186  }
7187}
7188
7189Sema::ImplicitExceptionSpecification
7190Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7191  CXXRecordDecl *ClassDecl = MD->getParent();
7192
7193  // C++ [except.spec]p14:
7194  //   An implicitly declared special member function (Clause 12) shall have
7195  //   an exception-specification.
7196  ImplicitExceptionSpecification ExceptSpec(*this);
7197  if (ClassDecl->isInvalidDecl())
7198    return ExceptSpec;
7199
7200  // Direct base-class destructors.
7201  for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7202                                       BEnd = ClassDecl->bases_end();
7203       B != BEnd; ++B) {
7204    if (B->isVirtual()) // Handled below.
7205      continue;
7206
7207    if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
7208      ExceptSpec.CalledDecl(B->getLocStart(),
7209                   LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
7210  }
7211
7212  // Virtual base-class destructors.
7213  for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7214                                       BEnd = ClassDecl->vbases_end();
7215       B != BEnd; ++B) {
7216    if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
7217      ExceptSpec.CalledDecl(B->getLocStart(),
7218                  LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
7219  }
7220
7221  // Field destructors.
7222  for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7223                               FEnd = ClassDecl->field_end();
7224       F != FEnd; ++F) {
7225    if (const RecordType *RecordTy
7226        = Context.getBaseElementType(F->getType())->getAs<RecordType>())
7227      ExceptSpec.CalledDecl(F->getLocation(),
7228                  LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
7229  }
7230
7231  return ExceptSpec;
7232}
7233
7234CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7235  // C++ [class.dtor]p2:
7236  //   If a class has no user-declared destructor, a destructor is
7237  //   declared implicitly. An implicitly-declared destructor is an
7238  //   inline public member of its class.
7239
7240  // Create the actual destructor declaration.
7241  CanQualType ClassType
7242    = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
7243  SourceLocation ClassLoc = ClassDecl->getLocation();
7244  DeclarationName Name
7245    = Context.DeclarationNames.getCXXDestructorName(ClassType);
7246  DeclarationNameInfo NameInfo(Name, ClassLoc);
7247  CXXDestructorDecl *Destructor
7248      = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7249                                  QualType(), 0, /*isInline=*/true,
7250                                  /*isImplicitlyDeclared=*/true);
7251  Destructor->setAccess(AS_public);
7252  Destructor->setDefaulted();
7253  Destructor->setImplicit();
7254  Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
7255
7256  // Build an exception specification pointing back at this destructor.
7257  FunctionProtoType::ExtProtoInfo EPI;
7258  EPI.ExceptionSpecType = EST_Unevaluated;
7259  EPI.ExceptionSpecDecl = Destructor;
7260  Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7261
7262  // Note that we have declared this destructor.
7263  ++ASTContext::NumImplicitDestructorsDeclared;
7264
7265  // Introduce this destructor into its scope.
7266  if (Scope *S = getScopeForContext(ClassDecl))
7267    PushOnScopeChains(Destructor, S, false);
7268  ClassDecl->addDecl(Destructor);
7269
7270  AddOverriddenMethods(ClassDecl, Destructor);
7271
7272  if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
7273    Destructor->setDeletedAsWritten();
7274
7275  return Destructor;
7276}
7277
7278void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
7279                                    CXXDestructorDecl *Destructor) {
7280  assert((Destructor->isDefaulted() &&
7281          !Destructor->doesThisDeclarationHaveABody() &&
7282          !Destructor->isDeleted()) &&
7283         "DefineImplicitDestructor - call it for implicit default dtor");
7284  CXXRecordDecl *ClassDecl = Destructor->getParent();
7285  assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
7286
7287  if (Destructor->isInvalidDecl())
7288    return;
7289
7290  SynthesizedFunctionScope Scope(*this, Destructor);
7291
7292  DiagnosticErrorTrap Trap(Diags);
7293  MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7294                                         Destructor->getParent());
7295
7296  if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
7297    Diag(CurrentLocation, diag::note_member_synthesized_at)
7298      << CXXDestructor << Context.getTagDeclType(ClassDecl);
7299
7300    Destructor->setInvalidDecl();
7301    return;
7302  }
7303
7304  SourceLocation Loc = Destructor->getLocation();
7305  Destructor->setBody(new (Context) CompoundStmt(Loc));
7306  Destructor->setImplicitlyDefined(true);
7307  Destructor->setUsed();
7308  MarkVTableUsed(CurrentLocation, ClassDecl);
7309
7310  if (ASTMutationListener *L = getASTMutationListener()) {
7311    L->CompletedImplicitDefinition(Destructor);
7312  }
7313}
7314
7315/// \brief Perform any semantic analysis which needs to be delayed until all
7316/// pending class member declarations have been parsed.
7317void Sema::ActOnFinishCXXMemberDecls() {
7318  // Perform any deferred checking of exception specifications for virtual
7319  // destructors.
7320  for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7321       i != e; ++i) {
7322    const CXXDestructorDecl *Dtor =
7323        DelayedDestructorExceptionSpecChecks[i].first;
7324    assert(!Dtor->getParent()->isDependentType() &&
7325           "Should not ever add destructors of templates into the list.");
7326    CheckOverridingFunctionExceptionSpec(Dtor,
7327        DelayedDestructorExceptionSpecChecks[i].second);
7328  }
7329  DelayedDestructorExceptionSpecChecks.clear();
7330}
7331
7332void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7333                                         CXXDestructorDecl *Destructor) {
7334  assert(getLangOpts().CPlusPlus0x &&
7335         "adjusting dtor exception specs was introduced in c++11");
7336
7337  // C++11 [class.dtor]p3:
7338  //   A declaration of a destructor that does not have an exception-
7339  //   specification is implicitly considered to have the same exception-
7340  //   specification as an implicit declaration.
7341  const FunctionProtoType *DtorType = Destructor->getType()->
7342                                        getAs<FunctionProtoType>();
7343  if (DtorType->hasExceptionSpec())
7344    return;
7345
7346  // Replace the destructor's type, building off the existing one. Fortunately,
7347  // the only thing of interest in the destructor type is its extended info.
7348  // The return and arguments are fixed.
7349  FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7350  EPI.ExceptionSpecType = EST_Unevaluated;
7351  EPI.ExceptionSpecDecl = Destructor;
7352  Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7353
7354  // FIXME: If the destructor has a body that could throw, and the newly created
7355  // spec doesn't allow exceptions, we should emit a warning, because this
7356  // change in behavior can break conforming C++03 programs at runtime.
7357  // However, we don't have a body or an exception specification yet, so it
7358  // needs to be done somewhere else.
7359}
7360
7361/// \brief Builds a statement that copies/moves the given entity from \p From to
7362/// \c To.
7363///
7364/// This routine is used to copy/move the members of a class with an
7365/// implicitly-declared copy/move assignment operator. When the entities being
7366/// copied are arrays, this routine builds for loops to copy them.
7367///
7368/// \param S The Sema object used for type-checking.
7369///
7370/// \param Loc The location where the implicit copy/move is being generated.
7371///
7372/// \param T The type of the expressions being copied/moved. Both expressions
7373/// must have this type.
7374///
7375/// \param To The expression we are copying/moving to.
7376///
7377/// \param From The expression we are copying/moving from.
7378///
7379/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
7380/// Otherwise, it's a non-static member subobject.
7381///
7382/// \param Copying Whether we're copying or moving.
7383///
7384/// \param Depth Internal parameter recording the depth of the recursion.
7385///
7386/// \returns A statement or a loop that copies the expressions.
7387static StmtResult
7388BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
7389                      Expr *To, Expr *From,
7390                      bool CopyingBaseSubobject, bool Copying,
7391                      unsigned Depth = 0) {
7392  // C++0x [class.copy]p28:
7393  //   Each subobject is assigned in the manner appropriate to its type:
7394  //
7395  //     - if the subobject is of class type, as if by a call to operator= with
7396  //       the subobject as the object expression and the corresponding
7397  //       subobject of x as a single function argument (as if by explicit
7398  //       qualification; that is, ignoring any possible virtual overriding
7399  //       functions in more derived classes);
7400  if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7401    CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7402
7403    // Look for operator=.
7404    DeclarationName Name
7405      = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7406    LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7407    S.LookupQualifiedName(OpLookup, ClassDecl, false);
7408
7409    // Filter out any result that isn't a copy/move-assignment operator.
7410    LookupResult::Filter F = OpLookup.makeFilter();
7411    while (F.hasNext()) {
7412      NamedDecl *D = F.next();
7413      if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
7414        if (Method->isCopyAssignmentOperator() ||
7415            (!Copying && Method->isMoveAssignmentOperator()))
7416          continue;
7417
7418      F.erase();
7419    }
7420    F.done();
7421
7422    // Suppress the protected check (C++ [class.protected]) for each of the
7423    // assignment operators we found. This strange dance is required when
7424    // we're assigning via a base classes's copy-assignment operator. To
7425    // ensure that we're getting the right base class subobject (without
7426    // ambiguities), we need to cast "this" to that subobject type; to
7427    // ensure that we don't go through the virtual call mechanism, we need
7428    // to qualify the operator= name with the base class (see below). However,
7429    // this means that if the base class has a protected copy assignment
7430    // operator, the protected member access check will fail. So, we
7431    // rewrite "protected" access to "public" access in this case, since we
7432    // know by construction that we're calling from a derived class.
7433    if (CopyingBaseSubobject) {
7434      for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7435           L != LEnd; ++L) {
7436        if (L.getAccess() == AS_protected)
7437          L.setAccess(AS_public);
7438      }
7439    }
7440
7441    // Create the nested-name-specifier that will be used to qualify the
7442    // reference to operator=; this is required to suppress the virtual
7443    // call mechanism.
7444    CXXScopeSpec SS;
7445    const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
7446    SS.MakeTrivial(S.Context,
7447                   NestedNameSpecifier::Create(S.Context, 0, false,
7448                                               CanonicalT),
7449                   Loc);
7450
7451    // Create the reference to operator=.
7452    ExprResult OpEqualRef
7453      = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
7454                                   /*TemplateKWLoc=*/SourceLocation(),
7455                                   /*FirstQualifierInScope=*/0,
7456                                   OpLookup,
7457                                   /*TemplateArgs=*/0,
7458                                   /*SuppressQualifierCheck=*/true);
7459    if (OpEqualRef.isInvalid())
7460      return StmtError();
7461
7462    // Build the call to the assignment operator.
7463
7464    ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
7465                                                  OpEqualRef.takeAs<Expr>(),
7466                                                  Loc, &From, 1, Loc);
7467    if (Call.isInvalid())
7468      return StmtError();
7469
7470    return S.Owned(Call.takeAs<Stmt>());
7471  }
7472
7473  //     - if the subobject is of scalar type, the built-in assignment
7474  //       operator is used.
7475  const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
7476  if (!ArrayTy) {
7477    ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
7478    if (Assignment.isInvalid())
7479      return StmtError();
7480
7481    return S.Owned(Assignment.takeAs<Stmt>());
7482  }
7483
7484  //     - if the subobject is an array, each element is assigned, in the
7485  //       manner appropriate to the element type;
7486
7487  // Construct a loop over the array bounds, e.g.,
7488  //
7489  //   for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7490  //
7491  // that will copy each of the array elements.
7492  QualType SizeType = S.Context.getSizeType();
7493
7494  // Create the iteration variable.
7495  IdentifierInfo *IterationVarName = 0;
7496  {
7497    SmallString<8> Str;
7498    llvm::raw_svector_ostream OS(Str);
7499    OS << "__i" << Depth;
7500    IterationVarName = &S.Context.Idents.get(OS.str());
7501  }
7502  VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
7503                                          IterationVarName, SizeType,
7504                            S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
7505                                          SC_None, SC_None);
7506
7507  // Initialize the iteration variable to zero.
7508  llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
7509  IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
7510
7511  // Create a reference to the iteration variable; we'll use this several
7512  // times throughout.
7513  Expr *IterationVarRef
7514    = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
7515  assert(IterationVarRef && "Reference to invented variable cannot fail!");
7516  Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7517  assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7518
7519  // Create the DeclStmt that holds the iteration variable.
7520  Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
7521
7522  // Create the comparison against the array bound.
7523  llvm::APInt Upper
7524    = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
7525  Expr *Comparison
7526    = new (S.Context) BinaryOperator(IterationVarRefRVal,
7527                     IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7528                                     BO_NE, S.Context.BoolTy,
7529                                     VK_RValue, OK_Ordinary, Loc, false);
7530
7531  // Create the pre-increment of the iteration variable.
7532  Expr *Increment
7533    = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7534                                    VK_LValue, OK_Ordinary, Loc);
7535
7536  // Subscript the "from" and "to" expressions with the iteration variable.
7537  From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
7538                                                         IterationVarRefRVal,
7539                                                         Loc));
7540  To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
7541                                                       IterationVarRefRVal,
7542                                                       Loc));
7543  if (!Copying) // Cast to rvalue
7544    From = CastForMoving(S, From);
7545
7546  // Build the copy/move for an individual element of the array.
7547  StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
7548                                          To, From, CopyingBaseSubobject,
7549                                          Copying, Depth + 1);
7550  if (Copy.isInvalid())
7551    return StmtError();
7552
7553  // Construct the loop that copies all elements of this array.
7554  return S.ActOnForStmt(Loc, Loc, InitStmt,
7555                        S.MakeFullExpr(Comparison),
7556                        0, S.MakeFullExpr(Increment),
7557                        Loc, Copy.take());
7558}
7559
7560/// Determine whether an implicit copy assignment operator for ClassDecl has a
7561/// const argument.
7562/// FIXME: It ought to be possible to store this on the record.
7563static bool isImplicitCopyAssignmentArgConst(Sema &S,
7564                                             CXXRecordDecl *ClassDecl) {
7565  if (ClassDecl->isInvalidDecl())
7566    return true;
7567
7568  // C++ [class.copy]p10:
7569  //   If the class definition does not explicitly declare a copy
7570  //   assignment operator, one is declared implicitly.
7571  //   The implicitly-defined copy assignment operator for a class X
7572  //   will have the form
7573  //
7574  //       X& X::operator=(const X&)
7575  //
7576  //   if
7577  //       -- each direct base class B of X has a copy assignment operator
7578  //          whose parameter is of type const B&, const volatile B& or B,
7579  //          and
7580  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7581                                       BaseEnd = ClassDecl->bases_end();
7582       Base != BaseEnd; ++Base) {
7583    // We'll handle this below
7584    if (S.getLangOpts().CPlusPlus0x && Base->isVirtual())
7585      continue;
7586
7587    assert(!Base->getType()->isDependentType() &&
7588           "Cannot generate implicit members for class with dependent bases.");
7589    CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
7590    if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const, false, 0))
7591      return false;
7592  }
7593
7594  // In C++11, the above citation has "or virtual" added
7595  if (S.getLangOpts().CPlusPlus0x) {
7596    for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7597                                         BaseEnd = ClassDecl->vbases_end();
7598         Base != BaseEnd; ++Base) {
7599      assert(!Base->getType()->isDependentType() &&
7600             "Cannot generate implicit members for class with dependent bases.");
7601      CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
7602      if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7603                                     false, 0))
7604        return false;
7605    }
7606  }
7607
7608  //       -- for all the nonstatic data members of X that are of a class
7609  //          type M (or array thereof), each such class type has a copy
7610  //          assignment operator whose parameter is of type const M&,
7611  //          const volatile M& or M.
7612  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7613                                  FieldEnd = ClassDecl->field_end();
7614       Field != FieldEnd; ++Field) {
7615    QualType FieldType = S.Context.getBaseElementType(Field->getType());
7616    if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl())
7617      if (!S.LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
7618                                     false, 0))
7619        return false;
7620  }
7621
7622  //   Otherwise, the implicitly declared copy assignment operator will
7623  //   have the form
7624  //
7625  //       X& X::operator=(X&)
7626
7627  return true;
7628}
7629
7630Sema::ImplicitExceptionSpecification
7631Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
7632  CXXRecordDecl *ClassDecl = MD->getParent();
7633
7634  ImplicitExceptionSpecification ExceptSpec(*this);
7635  if (ClassDecl->isInvalidDecl())
7636    return ExceptSpec;
7637
7638  const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
7639  assert(T->getNumArgs() == 1 && "not a copy assignment op");
7640  unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
7641
7642  // C++ [except.spec]p14:
7643  //   An implicitly declared special member function (Clause 12) shall have an
7644  //   exception-specification. [...]
7645
7646  // It is unspecified whether or not an implicit copy assignment operator
7647  // attempts to deduplicate calls to assignment operators of virtual bases are
7648  // made. As such, this exception specification is effectively unspecified.
7649  // Based on a similar decision made for constness in C++0x, we're erring on
7650  // the side of assuming such calls to be made regardless of whether they
7651  // actually happen.
7652  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7653                                       BaseEnd = ClassDecl->bases_end();
7654       Base != BaseEnd; ++Base) {
7655    if (Base->isVirtual())
7656      continue;
7657
7658    CXXRecordDecl *BaseClassDecl
7659      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7660    if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7661                                                            ArgQuals, false, 0))
7662      ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
7663  }
7664
7665  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7666                                       BaseEnd = ClassDecl->vbases_end();
7667       Base != BaseEnd; ++Base) {
7668    CXXRecordDecl *BaseClassDecl
7669      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7670    if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7671                                                            ArgQuals, false, 0))
7672      ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
7673  }
7674
7675  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7676                                  FieldEnd = ClassDecl->field_end();
7677       Field != FieldEnd;
7678       ++Field) {
7679    QualType FieldType = Context.getBaseElementType(Field->getType());
7680    if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7681      if (CXXMethodDecl *CopyAssign =
7682          LookupCopyingAssignment(FieldClassDecl,
7683                                  ArgQuals | FieldType.getCVRQualifiers(),
7684                                  false, 0))
7685        ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
7686    }
7687  }
7688
7689  return ExceptSpec;
7690}
7691
7692CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7693  // Note: The following rules are largely analoguous to the copy
7694  // constructor rules. Note that virtual bases are not taken into account
7695  // for determining the argument type of the operator. Note also that
7696  // operators taking an object instead of a reference are allowed.
7697
7698  QualType ArgType = Context.getTypeDeclType(ClassDecl);
7699  QualType RetType = Context.getLValueReferenceType(ArgType);
7700  if (isImplicitCopyAssignmentArgConst(*this, ClassDecl))
7701    ArgType = ArgType.withConst();
7702  ArgType = Context.getLValueReferenceType(ArgType);
7703
7704  //   An implicitly-declared copy assignment operator is an inline public
7705  //   member of its class.
7706  DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7707  SourceLocation ClassLoc = ClassDecl->getLocation();
7708  DeclarationNameInfo NameInfo(Name, ClassLoc);
7709  CXXMethodDecl *CopyAssignment
7710    = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
7711                            /*TInfo=*/0, /*isStatic=*/false,
7712                            /*StorageClassAsWritten=*/SC_None,
7713                            /*isInline=*/true, /*isConstexpr=*/false,
7714                            SourceLocation());
7715  CopyAssignment->setAccess(AS_public);
7716  CopyAssignment->setDefaulted();
7717  CopyAssignment->setImplicit();
7718  CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
7719
7720  // Build an exception specification pointing back at this member.
7721  FunctionProtoType::ExtProtoInfo EPI;
7722  EPI.ExceptionSpecType = EST_Unevaluated;
7723  EPI.ExceptionSpecDecl = CopyAssignment;
7724  CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
7725
7726  // Add the parameter to the operator.
7727  ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
7728                                               ClassLoc, ClassLoc, /*Id=*/0,
7729                                               ArgType, /*TInfo=*/0,
7730                                               SC_None,
7731                                               SC_None, 0);
7732  CopyAssignment->setParams(FromParam);
7733
7734  // Note that we have added this copy-assignment operator.
7735  ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
7736
7737  if (Scope *S = getScopeForContext(ClassDecl))
7738    PushOnScopeChains(CopyAssignment, S, false);
7739  ClassDecl->addDecl(CopyAssignment);
7740
7741  // C++0x [class.copy]p19:
7742  //   ....  If the class definition does not explicitly declare a copy
7743  //   assignment operator, there is no user-declared move constructor, and
7744  //   there is no user-declared move assignment operator, a copy assignment
7745  //   operator is implicitly declared as defaulted.
7746  if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
7747    CopyAssignment->setDeletedAsWritten();
7748
7749  AddOverriddenMethods(ClassDecl, CopyAssignment);
7750  return CopyAssignment;
7751}
7752
7753void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7754                                        CXXMethodDecl *CopyAssignOperator) {
7755  assert((CopyAssignOperator->isDefaulted() &&
7756          CopyAssignOperator->isOverloadedOperator() &&
7757          CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
7758          !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7759          !CopyAssignOperator->isDeleted()) &&
7760         "DefineImplicitCopyAssignment called for wrong function");
7761
7762  CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7763
7764  if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7765    CopyAssignOperator->setInvalidDecl();
7766    return;
7767  }
7768
7769  CopyAssignOperator->setUsed();
7770
7771  SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
7772  DiagnosticErrorTrap Trap(Diags);
7773
7774  // C++0x [class.copy]p30:
7775  //   The implicitly-defined or explicitly-defaulted copy assignment operator
7776  //   for a non-union class X performs memberwise copy assignment of its
7777  //   subobjects. The direct base classes of X are assigned first, in the
7778  //   order of their declaration in the base-specifier-list, and then the
7779  //   immediate non-static data members of X are assigned, in the order in
7780  //   which they were declared in the class definition.
7781
7782  // The statements that form the synthesized function body.
7783  SmallVector<Stmt*, 8> Statements;
7784
7785  // The parameter for the "other" object, which we are copying from.
7786  ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7787  Qualifiers OtherQuals = Other->getType().getQualifiers();
7788  QualType OtherRefType = Other->getType();
7789  if (const LValueReferenceType *OtherRef
7790                                = OtherRefType->getAs<LValueReferenceType>()) {
7791    OtherRefType = OtherRef->getPointeeType();
7792    OtherQuals = OtherRefType.getQualifiers();
7793  }
7794
7795  // Our location for everything implicitly-generated.
7796  SourceLocation Loc = CopyAssignOperator->getLocation();
7797
7798  // Construct a reference to the "other" object. We'll be using this
7799  // throughout the generated ASTs.
7800  Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
7801  assert(OtherRef && "Reference to parameter cannot fail!");
7802
7803  // Construct the "this" pointer. We'll be using this throughout the generated
7804  // ASTs.
7805  Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7806  assert(This && "Reference to this cannot fail!");
7807
7808  // Assign base classes.
7809  bool Invalid = false;
7810  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7811       E = ClassDecl->bases_end(); Base != E; ++Base) {
7812    // Form the assignment:
7813    //   static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7814    QualType BaseType = Base->getType().getUnqualifiedType();
7815    if (!BaseType->isRecordType()) {
7816      Invalid = true;
7817      continue;
7818    }
7819
7820    CXXCastPath BasePath;
7821    BasePath.push_back(Base);
7822
7823    // Construct the "from" expression, which is an implicit cast to the
7824    // appropriately-qualified base type.
7825    Expr *From = OtherRef;
7826    From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7827                             CK_UncheckedDerivedToBase,
7828                             VK_LValue, &BasePath).take();
7829
7830    // Dereference "this".
7831    ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
7832
7833    // Implicitly cast "this" to the appropriately-qualified base type.
7834    To = ImpCastExprToType(To.take(),
7835                           Context.getCVRQualifiedType(BaseType,
7836                                     CopyAssignOperator->getTypeQualifiers()),
7837                           CK_UncheckedDerivedToBase,
7838                           VK_LValue, &BasePath);
7839
7840    // Build the copy.
7841    StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
7842                                            To.get(), From,
7843                                            /*CopyingBaseSubobject=*/true,
7844                                            /*Copying=*/true);
7845    if (Copy.isInvalid()) {
7846      Diag(CurrentLocation, diag::note_member_synthesized_at)
7847        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7848      CopyAssignOperator->setInvalidDecl();
7849      return;
7850    }
7851
7852    // Success! Record the copy.
7853    Statements.push_back(Copy.takeAs<Expr>());
7854  }
7855
7856  // \brief Reference to the __builtin_memcpy function.
7857  Expr *BuiltinMemCpyRef = 0;
7858  // \brief Reference to the __builtin_objc_memmove_collectable function.
7859  Expr *CollectableMemCpyRef = 0;
7860
7861  // Assign non-static members.
7862  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7863                                  FieldEnd = ClassDecl->field_end();
7864       Field != FieldEnd; ++Field) {
7865    if (Field->isUnnamedBitfield())
7866      continue;
7867
7868    // Check for members of reference type; we can't copy those.
7869    if (Field->getType()->isReferenceType()) {
7870      Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7871        << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
7872      Diag(Field->getLocation(), diag::note_declared_at);
7873      Diag(CurrentLocation, diag::note_member_synthesized_at)
7874        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7875      Invalid = true;
7876      continue;
7877    }
7878
7879    // Check for members of const-qualified, non-class type.
7880    QualType BaseType = Context.getBaseElementType(Field->getType());
7881    if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
7882      Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7883        << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
7884      Diag(Field->getLocation(), diag::note_declared_at);
7885      Diag(CurrentLocation, diag::note_member_synthesized_at)
7886        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7887      Invalid = true;
7888      continue;
7889    }
7890
7891    // Suppress assigning zero-width bitfields.
7892    if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
7893      continue;
7894
7895    QualType FieldType = Field->getType().getNonReferenceType();
7896    if (FieldType->isIncompleteArrayType()) {
7897      assert(ClassDecl->hasFlexibleArrayMember() &&
7898             "Incomplete array type is not valid");
7899      continue;
7900    }
7901
7902    // Build references to the field in the object we're copying from and to.
7903    CXXScopeSpec SS; // Intentionally empty
7904    LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
7905                              LookupMemberName);
7906    MemberLookup.addDecl(*Field);
7907    MemberLookup.resolveKind();
7908    ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
7909                                               Loc, /*IsArrow=*/false,
7910                                               SS, SourceLocation(), 0,
7911                                               MemberLookup, 0);
7912    ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
7913                                             Loc, /*IsArrow=*/true,
7914                                             SS, SourceLocation(), 0,
7915                                             MemberLookup, 0);
7916    assert(!From.isInvalid() && "Implicit field reference cannot fail");
7917    assert(!To.isInvalid() && "Implicit field reference cannot fail");
7918
7919    // If the field should be copied with __builtin_memcpy rather than via
7920    // explicit assignments, do so. This optimization only applies for arrays
7921    // of scalars and arrays of class type with trivial copy-assignment
7922    // operators.
7923    if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
7924        && BaseType.hasTrivialAssignment(Context, /*Copying=*/true)) {
7925      // Compute the size of the memory buffer to be copied.
7926      QualType SizeType = Context.getSizeType();
7927      llvm::APInt Size(Context.getTypeSize(SizeType),
7928                       Context.getTypeSizeInChars(BaseType).getQuantity());
7929      for (const ConstantArrayType *Array
7930              = Context.getAsConstantArrayType(FieldType);
7931           Array;
7932           Array = Context.getAsConstantArrayType(Array->getElementType())) {
7933        llvm::APInt ArraySize
7934          = Array->getSize().zextOrTrunc(Size.getBitWidth());
7935        Size *= ArraySize;
7936      }
7937
7938      // Take the address of the field references for "from" and "to".
7939      From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
7940      To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
7941
7942      bool NeedsCollectableMemCpy =
7943          (BaseType->isRecordType() &&
7944           BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
7945
7946      if (NeedsCollectableMemCpy) {
7947        if (!CollectableMemCpyRef) {
7948          // Create a reference to the __builtin_objc_memmove_collectable function.
7949          LookupResult R(*this,
7950                         &Context.Idents.get("__builtin_objc_memmove_collectable"),
7951                         Loc, LookupOrdinaryName);
7952          LookupName(R, TUScope, true);
7953
7954          FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
7955          if (!CollectableMemCpy) {
7956            // Something went horribly wrong earlier, and we will have
7957            // complained about it.
7958            Invalid = true;
7959            continue;
7960          }
7961
7962          CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
7963                                                  Context.BuiltinFnTy,
7964                                                  VK_RValue, Loc, 0).take();
7965          assert(CollectableMemCpyRef && "Builtin reference cannot fail");
7966        }
7967      }
7968      // Create a reference to the __builtin_memcpy builtin function.
7969      else if (!BuiltinMemCpyRef) {
7970        LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
7971                       LookupOrdinaryName);
7972        LookupName(R, TUScope, true);
7973
7974        FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
7975        if (!BuiltinMemCpy) {
7976          // Something went horribly wrong earlier, and we will have complained
7977          // about it.
7978          Invalid = true;
7979          continue;
7980        }
7981
7982        BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
7983                                            Context.BuiltinFnTy,
7984                                            VK_RValue, Loc, 0).take();
7985        assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
7986      }
7987
7988      SmallVector<Expr*, 8> CallArgs;
7989      CallArgs.push_back(To.takeAs<Expr>());
7990      CallArgs.push_back(From.takeAs<Expr>());
7991      CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
7992      ExprResult Call = ExprError();
7993      if (NeedsCollectableMemCpy)
7994        Call = ActOnCallExpr(/*Scope=*/0,
7995                             CollectableMemCpyRef,
7996                             Loc, CallArgs,
7997                             Loc);
7998      else
7999        Call = ActOnCallExpr(/*Scope=*/0,
8000                             BuiltinMemCpyRef,
8001                             Loc, CallArgs,
8002                             Loc);
8003
8004      assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
8005      Statements.push_back(Call.takeAs<Expr>());
8006      continue;
8007    }
8008
8009    // Build the copy of this field.
8010    StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
8011                                            To.get(), From.get(),
8012                                            /*CopyingBaseSubobject=*/false,
8013                                            /*Copying=*/true);
8014    if (Copy.isInvalid()) {
8015      Diag(CurrentLocation, diag::note_member_synthesized_at)
8016        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8017      CopyAssignOperator->setInvalidDecl();
8018      return;
8019    }
8020
8021    // Success! Record the copy.
8022    Statements.push_back(Copy.takeAs<Stmt>());
8023  }
8024
8025  if (!Invalid) {
8026    // Add a "return *this;"
8027    ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8028
8029    StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8030    if (Return.isInvalid())
8031      Invalid = true;
8032    else {
8033      Statements.push_back(Return.takeAs<Stmt>());
8034
8035      if (Trap.hasErrorOccurred()) {
8036        Diag(CurrentLocation, diag::note_member_synthesized_at)
8037          << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8038        Invalid = true;
8039      }
8040    }
8041  }
8042
8043  if (Invalid) {
8044    CopyAssignOperator->setInvalidDecl();
8045    return;
8046  }
8047
8048  StmtResult Body;
8049  {
8050    CompoundScopeRAII CompoundScope(*this);
8051    Body = ActOnCompoundStmt(Loc, Loc, Statements,
8052                             /*isStmtExpr=*/false);
8053    assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8054  }
8055  CopyAssignOperator->setBody(Body.takeAs<Stmt>());
8056
8057  if (ASTMutationListener *L = getASTMutationListener()) {
8058    L->CompletedImplicitDefinition(CopyAssignOperator);
8059  }
8060}
8061
8062Sema::ImplicitExceptionSpecification
8063Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
8064  CXXRecordDecl *ClassDecl = MD->getParent();
8065
8066  ImplicitExceptionSpecification ExceptSpec(*this);
8067  if (ClassDecl->isInvalidDecl())
8068    return ExceptSpec;
8069
8070  // C++0x [except.spec]p14:
8071  //   An implicitly declared special member function (Clause 12) shall have an
8072  //   exception-specification. [...]
8073
8074  // It is unspecified whether or not an implicit move assignment operator
8075  // attempts to deduplicate calls to assignment operators of virtual bases are
8076  // made. As such, this exception specification is effectively unspecified.
8077  // Based on a similar decision made for constness in C++0x, we're erring on
8078  // the side of assuming such calls to be made regardless of whether they
8079  // actually happen.
8080  // Note that a move constructor is not implicitly declared when there are
8081  // virtual bases, but it can still be user-declared and explicitly defaulted.
8082  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8083                                       BaseEnd = ClassDecl->bases_end();
8084       Base != BaseEnd; ++Base) {
8085    if (Base->isVirtual())
8086      continue;
8087
8088    CXXRecordDecl *BaseClassDecl
8089      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8090    if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
8091                                                           0, false, 0))
8092      ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
8093  }
8094
8095  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8096                                       BaseEnd = ClassDecl->vbases_end();
8097       Base != BaseEnd; ++Base) {
8098    CXXRecordDecl *BaseClassDecl
8099      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8100    if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
8101                                                           0, false, 0))
8102      ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
8103  }
8104
8105  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8106                                  FieldEnd = ClassDecl->field_end();
8107       Field != FieldEnd;
8108       ++Field) {
8109    QualType FieldType = Context.getBaseElementType(Field->getType());
8110    if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8111      if (CXXMethodDecl *MoveAssign =
8112              LookupMovingAssignment(FieldClassDecl,
8113                                     FieldType.getCVRQualifiers(),
8114                                     false, 0))
8115        ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
8116    }
8117  }
8118
8119  return ExceptSpec;
8120}
8121
8122/// Determine whether the class type has any direct or indirect virtual base
8123/// classes which have a non-trivial move assignment operator.
8124static bool
8125hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8126  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8127                                          BaseEnd = ClassDecl->vbases_end();
8128       Base != BaseEnd; ++Base) {
8129    CXXRecordDecl *BaseClass =
8130        cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8131
8132    // Try to declare the move assignment. If it would be deleted, then the
8133    // class does not have a non-trivial move assignment.
8134    if (BaseClass->needsImplicitMoveAssignment())
8135      S.DeclareImplicitMoveAssignment(BaseClass);
8136
8137    // If the class has both a trivial move assignment and a non-trivial move
8138    // assignment, hasTrivialMoveAssignment() is false.
8139    if (BaseClass->hasDeclaredMoveAssignment() &&
8140        !BaseClass->hasTrivialMoveAssignment())
8141      return true;
8142  }
8143
8144  return false;
8145}
8146
8147/// Determine whether the given type either has a move constructor or is
8148/// trivially copyable.
8149static bool
8150hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8151  Type = S.Context.getBaseElementType(Type);
8152
8153  // FIXME: Technically, non-trivially-copyable non-class types, such as
8154  // reference types, are supposed to return false here, but that appears
8155  // to be a standard defect.
8156  CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
8157  if (!ClassDecl || !ClassDecl->getDefinition() || ClassDecl->isInvalidDecl())
8158    return true;
8159
8160  if (Type.isTriviallyCopyableType(S.Context))
8161    return true;
8162
8163  if (IsConstructor) {
8164    if (ClassDecl->needsImplicitMoveConstructor())
8165      S.DeclareImplicitMoveConstructor(ClassDecl);
8166    return ClassDecl->hasDeclaredMoveConstructor();
8167  }
8168
8169  if (ClassDecl->needsImplicitMoveAssignment())
8170    S.DeclareImplicitMoveAssignment(ClassDecl);
8171  return ClassDecl->hasDeclaredMoveAssignment();
8172}
8173
8174/// Determine whether all non-static data members and direct or virtual bases
8175/// of class \p ClassDecl have either a move operation, or are trivially
8176/// copyable.
8177static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8178                                            bool IsConstructor) {
8179  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8180                                          BaseEnd = ClassDecl->bases_end();
8181       Base != BaseEnd; ++Base) {
8182    if (Base->isVirtual())
8183      continue;
8184
8185    if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8186      return false;
8187  }
8188
8189  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8190                                          BaseEnd = ClassDecl->vbases_end();
8191       Base != BaseEnd; ++Base) {
8192    if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8193      return false;
8194  }
8195
8196  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8197                                     FieldEnd = ClassDecl->field_end();
8198       Field != FieldEnd; ++Field) {
8199    if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
8200      return false;
8201  }
8202
8203  return true;
8204}
8205
8206CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
8207  // C++11 [class.copy]p20:
8208  //   If the definition of a class X does not explicitly declare a move
8209  //   assignment operator, one will be implicitly declared as defaulted
8210  //   if and only if:
8211  //
8212  //   - [first 4 bullets]
8213  assert(ClassDecl->needsImplicitMoveAssignment());
8214
8215  // [Checked after we build the declaration]
8216  //   - the move assignment operator would not be implicitly defined as
8217  //     deleted,
8218
8219  // [DR1402]:
8220  //   - X has no direct or indirect virtual base class with a non-trivial
8221  //     move assignment operator, and
8222  //   - each of X's non-static data members and direct or virtual base classes
8223  //     has a type that either has a move assignment operator or is trivially
8224  //     copyable.
8225  if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8226      !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8227    ClassDecl->setFailedImplicitMoveAssignment();
8228    return 0;
8229  }
8230
8231  // Note: The following rules are largely analoguous to the move
8232  // constructor rules.
8233
8234  QualType ArgType = Context.getTypeDeclType(ClassDecl);
8235  QualType RetType = Context.getLValueReferenceType(ArgType);
8236  ArgType = Context.getRValueReferenceType(ArgType);
8237
8238  //   An implicitly-declared move assignment operator is an inline public
8239  //   member of its class.
8240  DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8241  SourceLocation ClassLoc = ClassDecl->getLocation();
8242  DeclarationNameInfo NameInfo(Name, ClassLoc);
8243  CXXMethodDecl *MoveAssignment
8244    = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
8245                            /*TInfo=*/0, /*isStatic=*/false,
8246                            /*StorageClassAsWritten=*/SC_None,
8247                            /*isInline=*/true,
8248                            /*isConstexpr=*/false,
8249                            SourceLocation());
8250  MoveAssignment->setAccess(AS_public);
8251  MoveAssignment->setDefaulted();
8252  MoveAssignment->setImplicit();
8253  MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8254
8255  // Build an exception specification pointing back at this member.
8256  FunctionProtoType::ExtProtoInfo EPI;
8257  EPI.ExceptionSpecType = EST_Unevaluated;
8258  EPI.ExceptionSpecDecl = MoveAssignment;
8259  MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8260
8261  // Add the parameter to the operator.
8262  ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8263                                               ClassLoc, ClassLoc, /*Id=*/0,
8264                                               ArgType, /*TInfo=*/0,
8265                                               SC_None,
8266                                               SC_None, 0);
8267  MoveAssignment->setParams(FromParam);
8268
8269  // Note that we have added this copy-assignment operator.
8270  ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8271
8272  // C++0x [class.copy]p9:
8273  //   If the definition of a class X does not explicitly declare a move
8274  //   assignment operator, one will be implicitly declared as defaulted if and
8275  //   only if:
8276  //   [...]
8277  //   - the move assignment operator would not be implicitly defined as
8278  //     deleted.
8279  if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
8280    // Cache this result so that we don't try to generate this over and over
8281    // on every lookup, leaking memory and wasting time.
8282    ClassDecl->setFailedImplicitMoveAssignment();
8283    return 0;
8284  }
8285
8286  if (Scope *S = getScopeForContext(ClassDecl))
8287    PushOnScopeChains(MoveAssignment, S, false);
8288  ClassDecl->addDecl(MoveAssignment);
8289
8290  AddOverriddenMethods(ClassDecl, MoveAssignment);
8291  return MoveAssignment;
8292}
8293
8294void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8295                                        CXXMethodDecl *MoveAssignOperator) {
8296  assert((MoveAssignOperator->isDefaulted() &&
8297          MoveAssignOperator->isOverloadedOperator() &&
8298          MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
8299          !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8300          !MoveAssignOperator->isDeleted()) &&
8301         "DefineImplicitMoveAssignment called for wrong function");
8302
8303  CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8304
8305  if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8306    MoveAssignOperator->setInvalidDecl();
8307    return;
8308  }
8309
8310  MoveAssignOperator->setUsed();
8311
8312  SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
8313  DiagnosticErrorTrap Trap(Diags);
8314
8315  // C++0x [class.copy]p28:
8316  //   The implicitly-defined or move assignment operator for a non-union class
8317  //   X performs memberwise move assignment of its subobjects. The direct base
8318  //   classes of X are assigned first, in the order of their declaration in the
8319  //   base-specifier-list, and then the immediate non-static data members of X
8320  //   are assigned, in the order in which they were declared in the class
8321  //   definition.
8322
8323  // The statements that form the synthesized function body.
8324  SmallVector<Stmt*, 8> Statements;
8325
8326  // The parameter for the "other" object, which we are move from.
8327  ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8328  QualType OtherRefType = Other->getType()->
8329      getAs<RValueReferenceType>()->getPointeeType();
8330  assert(OtherRefType.getQualifiers() == 0 &&
8331         "Bad argument type of defaulted move assignment");
8332
8333  // Our location for everything implicitly-generated.
8334  SourceLocation Loc = MoveAssignOperator->getLocation();
8335
8336  // Construct a reference to the "other" object. We'll be using this
8337  // throughout the generated ASTs.
8338  Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8339  assert(OtherRef && "Reference to parameter cannot fail!");
8340  // Cast to rvalue.
8341  OtherRef = CastForMoving(*this, OtherRef);
8342
8343  // Construct the "this" pointer. We'll be using this throughout the generated
8344  // ASTs.
8345  Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8346  assert(This && "Reference to this cannot fail!");
8347
8348  // Assign base classes.
8349  bool Invalid = false;
8350  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8351       E = ClassDecl->bases_end(); Base != E; ++Base) {
8352    // Form the assignment:
8353    //   static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8354    QualType BaseType = Base->getType().getUnqualifiedType();
8355    if (!BaseType->isRecordType()) {
8356      Invalid = true;
8357      continue;
8358    }
8359
8360    CXXCastPath BasePath;
8361    BasePath.push_back(Base);
8362
8363    // Construct the "from" expression, which is an implicit cast to the
8364    // appropriately-qualified base type.
8365    Expr *From = OtherRef;
8366    From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
8367                             VK_XValue, &BasePath).take();
8368
8369    // Dereference "this".
8370    ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8371
8372    // Implicitly cast "this" to the appropriately-qualified base type.
8373    To = ImpCastExprToType(To.take(),
8374                           Context.getCVRQualifiedType(BaseType,
8375                                     MoveAssignOperator->getTypeQualifiers()),
8376                           CK_UncheckedDerivedToBase,
8377                           VK_LValue, &BasePath);
8378
8379    // Build the move.
8380    StmtResult Move = BuildSingleCopyAssign(*this, Loc, BaseType,
8381                                            To.get(), From,
8382                                            /*CopyingBaseSubobject=*/true,
8383                                            /*Copying=*/false);
8384    if (Move.isInvalid()) {
8385      Diag(CurrentLocation, diag::note_member_synthesized_at)
8386        << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8387      MoveAssignOperator->setInvalidDecl();
8388      return;
8389    }
8390
8391    // Success! Record the move.
8392    Statements.push_back(Move.takeAs<Expr>());
8393  }
8394
8395  // \brief Reference to the __builtin_memcpy function.
8396  Expr *BuiltinMemCpyRef = 0;
8397  // \brief Reference to the __builtin_objc_memmove_collectable function.
8398  Expr *CollectableMemCpyRef = 0;
8399
8400  // Assign non-static members.
8401  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8402                                  FieldEnd = ClassDecl->field_end();
8403       Field != FieldEnd; ++Field) {
8404    if (Field->isUnnamedBitfield())
8405      continue;
8406
8407    // Check for members of reference type; we can't move those.
8408    if (Field->getType()->isReferenceType()) {
8409      Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8410        << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8411      Diag(Field->getLocation(), diag::note_declared_at);
8412      Diag(CurrentLocation, diag::note_member_synthesized_at)
8413        << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8414      Invalid = true;
8415      continue;
8416    }
8417
8418    // Check for members of const-qualified, non-class type.
8419    QualType BaseType = Context.getBaseElementType(Field->getType());
8420    if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8421      Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8422        << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8423      Diag(Field->getLocation(), diag::note_declared_at);
8424      Diag(CurrentLocation, diag::note_member_synthesized_at)
8425        << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8426      Invalid = true;
8427      continue;
8428    }
8429
8430    // Suppress assigning zero-width bitfields.
8431    if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8432      continue;
8433
8434    QualType FieldType = Field->getType().getNonReferenceType();
8435    if (FieldType->isIncompleteArrayType()) {
8436      assert(ClassDecl->hasFlexibleArrayMember() &&
8437             "Incomplete array type is not valid");
8438      continue;
8439    }
8440
8441    // Build references to the field in the object we're copying from and to.
8442    CXXScopeSpec SS; // Intentionally empty
8443    LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8444                              LookupMemberName);
8445    MemberLookup.addDecl(*Field);
8446    MemberLookup.resolveKind();
8447    ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8448                                               Loc, /*IsArrow=*/false,
8449                                               SS, SourceLocation(), 0,
8450                                               MemberLookup, 0);
8451    ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8452                                             Loc, /*IsArrow=*/true,
8453                                             SS, SourceLocation(), 0,
8454                                             MemberLookup, 0);
8455    assert(!From.isInvalid() && "Implicit field reference cannot fail");
8456    assert(!To.isInvalid() && "Implicit field reference cannot fail");
8457
8458    assert(!From.get()->isLValue() && // could be xvalue or prvalue
8459        "Member reference with rvalue base must be rvalue except for reference "
8460        "members, which aren't allowed for move assignment.");
8461
8462    // If the field should be copied with __builtin_memcpy rather than via
8463    // explicit assignments, do so. This optimization only applies for arrays
8464    // of scalars and arrays of class type with trivial move-assignment
8465    // operators.
8466    if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
8467        && BaseType.hasTrivialAssignment(Context, /*Copying=*/false)) {
8468      // Compute the size of the memory buffer to be copied.
8469      QualType SizeType = Context.getSizeType();
8470      llvm::APInt Size(Context.getTypeSize(SizeType),
8471                       Context.getTypeSizeInChars(BaseType).getQuantity());
8472      for (const ConstantArrayType *Array
8473              = Context.getAsConstantArrayType(FieldType);
8474           Array;
8475           Array = Context.getAsConstantArrayType(Array->getElementType())) {
8476        llvm::APInt ArraySize
8477          = Array->getSize().zextOrTrunc(Size.getBitWidth());
8478        Size *= ArraySize;
8479      }
8480
8481      // Take the address of the field references for "from" and "to". We
8482      // directly construct UnaryOperators here because semantic analysis
8483      // does not permit us to take the address of an xvalue.
8484      From = new (Context) UnaryOperator(From.get(), UO_AddrOf,
8485                             Context.getPointerType(From.get()->getType()),
8486                             VK_RValue, OK_Ordinary, Loc);
8487      To = new (Context) UnaryOperator(To.get(), UO_AddrOf,
8488                           Context.getPointerType(To.get()->getType()),
8489                           VK_RValue, OK_Ordinary, Loc);
8490
8491      bool NeedsCollectableMemCpy =
8492          (BaseType->isRecordType() &&
8493           BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
8494
8495      if (NeedsCollectableMemCpy) {
8496        if (!CollectableMemCpyRef) {
8497          // Create a reference to the __builtin_objc_memmove_collectable function.
8498          LookupResult R(*this,
8499                         &Context.Idents.get("__builtin_objc_memmove_collectable"),
8500                         Loc, LookupOrdinaryName);
8501          LookupName(R, TUScope, true);
8502
8503          FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
8504          if (!CollectableMemCpy) {
8505            // Something went horribly wrong earlier, and we will have
8506            // complained about it.
8507            Invalid = true;
8508            continue;
8509          }
8510
8511          CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
8512                                                  Context.BuiltinFnTy,
8513                                                  VK_RValue, Loc, 0).take();
8514          assert(CollectableMemCpyRef && "Builtin reference cannot fail");
8515        }
8516      }
8517      // Create a reference to the __builtin_memcpy builtin function.
8518      else if (!BuiltinMemCpyRef) {
8519        LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
8520                       LookupOrdinaryName);
8521        LookupName(R, TUScope, true);
8522
8523        FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
8524        if (!BuiltinMemCpy) {
8525          // Something went horribly wrong earlier, and we will have complained
8526          // about it.
8527          Invalid = true;
8528          continue;
8529        }
8530
8531        BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
8532                                            Context.BuiltinFnTy,
8533                                            VK_RValue, Loc, 0).take();
8534        assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
8535      }
8536
8537      SmallVector<Expr*, 8> CallArgs;
8538      CallArgs.push_back(To.takeAs<Expr>());
8539      CallArgs.push_back(From.takeAs<Expr>());
8540      CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
8541      ExprResult Call = ExprError();
8542      if (NeedsCollectableMemCpy)
8543        Call = ActOnCallExpr(/*Scope=*/0,
8544                             CollectableMemCpyRef,
8545                             Loc, CallArgs,
8546                             Loc);
8547      else
8548        Call = ActOnCallExpr(/*Scope=*/0,
8549                             BuiltinMemCpyRef,
8550                             Loc, CallArgs,
8551                             Loc);
8552
8553      assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
8554      Statements.push_back(Call.takeAs<Expr>());
8555      continue;
8556    }
8557
8558    // Build the move of this field.
8559    StmtResult Move = BuildSingleCopyAssign(*this, Loc, FieldType,
8560                                            To.get(), From.get(),
8561                                            /*CopyingBaseSubobject=*/false,
8562                                            /*Copying=*/false);
8563    if (Move.isInvalid()) {
8564      Diag(CurrentLocation, diag::note_member_synthesized_at)
8565        << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8566      MoveAssignOperator->setInvalidDecl();
8567      return;
8568    }
8569
8570    // Success! Record the copy.
8571    Statements.push_back(Move.takeAs<Stmt>());
8572  }
8573
8574  if (!Invalid) {
8575    // Add a "return *this;"
8576    ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8577
8578    StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8579    if (Return.isInvalid())
8580      Invalid = true;
8581    else {
8582      Statements.push_back(Return.takeAs<Stmt>());
8583
8584      if (Trap.hasErrorOccurred()) {
8585        Diag(CurrentLocation, diag::note_member_synthesized_at)
8586          << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8587        Invalid = true;
8588      }
8589    }
8590  }
8591
8592  if (Invalid) {
8593    MoveAssignOperator->setInvalidDecl();
8594    return;
8595  }
8596
8597  StmtResult Body;
8598  {
8599    CompoundScopeRAII CompoundScope(*this);
8600    Body = ActOnCompoundStmt(Loc, Loc, Statements,
8601                             /*isStmtExpr=*/false);
8602    assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8603  }
8604  MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8605
8606  if (ASTMutationListener *L = getASTMutationListener()) {
8607    L->CompletedImplicitDefinition(MoveAssignOperator);
8608  }
8609}
8610
8611/// Determine whether an implicit copy constructor for ClassDecl has a const
8612/// argument.
8613/// FIXME: It ought to be possible to store this on the record.
8614static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl) {
8615  if (ClassDecl->isInvalidDecl())
8616    return true;
8617
8618  // C++ [class.copy]p5:
8619  //   The implicitly-declared copy constructor for a class X will
8620  //   have the form
8621  //
8622  //       X::X(const X&)
8623  //
8624  //   if
8625  //     -- each direct or virtual base class B of X has a copy
8626  //        constructor whose first parameter is of type const B& or
8627  //        const volatile B&, and
8628  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8629                                       BaseEnd = ClassDecl->bases_end();
8630       Base != BaseEnd; ++Base) {
8631    // Virtual bases are handled below.
8632    if (Base->isVirtual())
8633      continue;
8634
8635    CXXRecordDecl *BaseClassDecl
8636      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8637    // FIXME: This lookup is wrong. If the copy ctor for a member or base is
8638    // ambiguous, we should still produce a constructor with a const-qualified
8639    // parameter.
8640    if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8641      return false;
8642  }
8643
8644  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8645                                       BaseEnd = ClassDecl->vbases_end();
8646       Base != BaseEnd; ++Base) {
8647    CXXRecordDecl *BaseClassDecl
8648      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8649    if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8650      return false;
8651  }
8652
8653  //     -- for all the nonstatic data members of X that are of a
8654  //        class type M (or array thereof), each such class type
8655  //        has a copy constructor whose first parameter is of type
8656  //        const M& or const volatile M&.
8657  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8658                                  FieldEnd = ClassDecl->field_end();
8659       Field != FieldEnd; ++Field) {
8660    QualType FieldType = S.Context.getBaseElementType(Field->getType());
8661    if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8662      if (!S.LookupCopyingConstructor(FieldClassDecl, Qualifiers::Const))
8663        return false;
8664    }
8665  }
8666
8667  //   Otherwise, the implicitly declared copy constructor will have
8668  //   the form
8669  //
8670  //       X::X(X&)
8671
8672  return true;
8673}
8674
8675Sema::ImplicitExceptionSpecification
8676Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
8677  CXXRecordDecl *ClassDecl = MD->getParent();
8678
8679  ImplicitExceptionSpecification ExceptSpec(*this);
8680  if (ClassDecl->isInvalidDecl())
8681    return ExceptSpec;
8682
8683  const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8684  assert(T->getNumArgs() >= 1 && "not a copy ctor");
8685  unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8686
8687  // C++ [except.spec]p14:
8688  //   An implicitly declared special member function (Clause 12) shall have an
8689  //   exception-specification. [...]
8690  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8691                                       BaseEnd = ClassDecl->bases_end();
8692       Base != BaseEnd;
8693       ++Base) {
8694    // Virtual bases are handled below.
8695    if (Base->isVirtual())
8696      continue;
8697
8698    CXXRecordDecl *BaseClassDecl
8699      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8700    if (CXXConstructorDecl *CopyConstructor =
8701          LookupCopyingConstructor(BaseClassDecl, Quals))
8702      ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
8703  }
8704  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8705                                       BaseEnd = ClassDecl->vbases_end();
8706       Base != BaseEnd;
8707       ++Base) {
8708    CXXRecordDecl *BaseClassDecl
8709      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8710    if (CXXConstructorDecl *CopyConstructor =
8711          LookupCopyingConstructor(BaseClassDecl, Quals))
8712      ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
8713  }
8714  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8715                                  FieldEnd = ClassDecl->field_end();
8716       Field != FieldEnd;
8717       ++Field) {
8718    QualType FieldType = Context.getBaseElementType(Field->getType());
8719    if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8720      if (CXXConstructorDecl *CopyConstructor =
8721              LookupCopyingConstructor(FieldClassDecl,
8722                                       Quals | FieldType.getCVRQualifiers()))
8723      ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
8724    }
8725  }
8726
8727  return ExceptSpec;
8728}
8729
8730CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8731                                                    CXXRecordDecl *ClassDecl) {
8732  // C++ [class.copy]p4:
8733  //   If the class definition does not explicitly declare a copy
8734  //   constructor, one is declared implicitly.
8735
8736  QualType ClassType = Context.getTypeDeclType(ClassDecl);
8737  QualType ArgType = ClassType;
8738  bool Const = isImplicitCopyCtorArgConst(*this, ClassDecl);
8739  if (Const)
8740    ArgType = ArgType.withConst();
8741  ArgType = Context.getLValueReferenceType(ArgType);
8742
8743  bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8744                                                     CXXCopyConstructor,
8745                                                     Const);
8746
8747  DeclarationName Name
8748    = Context.DeclarationNames.getCXXConstructorName(
8749                                           Context.getCanonicalType(ClassType));
8750  SourceLocation ClassLoc = ClassDecl->getLocation();
8751  DeclarationNameInfo NameInfo(Name, ClassLoc);
8752
8753  //   An implicitly-declared copy constructor is an inline public
8754  //   member of its class.
8755  CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
8756      Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
8757      /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
8758      Constexpr);
8759  CopyConstructor->setAccess(AS_public);
8760  CopyConstructor->setDefaulted();
8761  CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
8762
8763  // Build an exception specification pointing back at this member.
8764  FunctionProtoType::ExtProtoInfo EPI;
8765  EPI.ExceptionSpecType = EST_Unevaluated;
8766  EPI.ExceptionSpecDecl = CopyConstructor;
8767  CopyConstructor->setType(
8768      Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8769
8770  // Note that we have declared this constructor.
8771  ++ASTContext::NumImplicitCopyConstructorsDeclared;
8772
8773  // Add the parameter to the constructor.
8774  ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
8775                                               ClassLoc, ClassLoc,
8776                                               /*IdentifierInfo=*/0,
8777                                               ArgType, /*TInfo=*/0,
8778                                               SC_None,
8779                                               SC_None, 0);
8780  CopyConstructor->setParams(FromParam);
8781
8782  if (Scope *S = getScopeForContext(ClassDecl))
8783    PushOnScopeChains(CopyConstructor, S, false);
8784  ClassDecl->addDecl(CopyConstructor);
8785
8786  // C++11 [class.copy]p8:
8787  //   ... If the class definition does not explicitly declare a copy
8788  //   constructor, there is no user-declared move constructor, and there is no
8789  //   user-declared move assignment operator, a copy constructor is implicitly
8790  //   declared as defaulted.
8791  if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
8792    CopyConstructor->setDeletedAsWritten();
8793
8794  return CopyConstructor;
8795}
8796
8797void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
8798                                   CXXConstructorDecl *CopyConstructor) {
8799  assert((CopyConstructor->isDefaulted() &&
8800          CopyConstructor->isCopyConstructor() &&
8801          !CopyConstructor->doesThisDeclarationHaveABody() &&
8802          !CopyConstructor->isDeleted()) &&
8803         "DefineImplicitCopyConstructor - call it for implicit copy ctor");
8804
8805  CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
8806  assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
8807
8808  SynthesizedFunctionScope Scope(*this, CopyConstructor);
8809  DiagnosticErrorTrap Trap(Diags);
8810
8811  if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
8812      Trap.hasErrorOccurred()) {
8813    Diag(CurrentLocation, diag::note_member_synthesized_at)
8814      << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
8815    CopyConstructor->setInvalidDecl();
8816  }  else {
8817    Sema::CompoundScopeRAII CompoundScope(*this);
8818    CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8819                                               CopyConstructor->getLocation(),
8820                                               MultiStmtArg(),
8821                                               /*isStmtExpr=*/false)
8822                                                              .takeAs<Stmt>());
8823    CopyConstructor->setImplicitlyDefined(true);
8824  }
8825
8826  CopyConstructor->setUsed();
8827  if (ASTMutationListener *L = getASTMutationListener()) {
8828    L->CompletedImplicitDefinition(CopyConstructor);
8829  }
8830}
8831
8832Sema::ImplicitExceptionSpecification
8833Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
8834  CXXRecordDecl *ClassDecl = MD->getParent();
8835
8836  // C++ [except.spec]p14:
8837  //   An implicitly declared special member function (Clause 12) shall have an
8838  //   exception-specification. [...]
8839  ImplicitExceptionSpecification ExceptSpec(*this);
8840  if (ClassDecl->isInvalidDecl())
8841    return ExceptSpec;
8842
8843  // Direct base-class constructors.
8844  for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8845                                       BEnd = ClassDecl->bases_end();
8846       B != BEnd; ++B) {
8847    if (B->isVirtual()) // Handled below.
8848      continue;
8849
8850    if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8851      CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8852      CXXConstructorDecl *Constructor =
8853          LookupMovingConstructor(BaseClassDecl, 0);
8854      // If this is a deleted function, add it anyway. This might be conformant
8855      // with the standard. This might not. I'm not sure. It might not matter.
8856      if (Constructor)
8857        ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
8858    }
8859  }
8860
8861  // Virtual base-class constructors.
8862  for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8863                                       BEnd = ClassDecl->vbases_end();
8864       B != BEnd; ++B) {
8865    if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8866      CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8867      CXXConstructorDecl *Constructor =
8868          LookupMovingConstructor(BaseClassDecl, 0);
8869      // If this is a deleted function, add it anyway. This might be conformant
8870      // with the standard. This might not. I'm not sure. It might not matter.
8871      if (Constructor)
8872        ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
8873    }
8874  }
8875
8876  // Field constructors.
8877  for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8878                               FEnd = ClassDecl->field_end();
8879       F != FEnd; ++F) {
8880    QualType FieldType = Context.getBaseElementType(F->getType());
8881    if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
8882      CXXConstructorDecl *Constructor =
8883          LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
8884      // If this is a deleted function, add it anyway. This might be conformant
8885      // with the standard. This might not. I'm not sure. It might not matter.
8886      // In particular, the problem is that this function never gets called. It
8887      // might just be ill-formed because this function attempts to refer to
8888      // a deleted function here.
8889      if (Constructor)
8890        ExceptSpec.CalledDecl(F->getLocation(), Constructor);
8891    }
8892  }
8893
8894  return ExceptSpec;
8895}
8896
8897CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8898                                                    CXXRecordDecl *ClassDecl) {
8899  // C++11 [class.copy]p9:
8900  //   If the definition of a class X does not explicitly declare a move
8901  //   constructor, one will be implicitly declared as defaulted if and only if:
8902  //
8903  //   - [first 4 bullets]
8904  assert(ClassDecl->needsImplicitMoveConstructor());
8905
8906  // [Checked after we build the declaration]
8907  //   - the move assignment operator would not be implicitly defined as
8908  //     deleted,
8909
8910  // [DR1402]:
8911  //   - each of X's non-static data members and direct or virtual base classes
8912  //     has a type that either has a move constructor or is trivially copyable.
8913  if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8914    ClassDecl->setFailedImplicitMoveConstructor();
8915    return 0;
8916  }
8917
8918  QualType ClassType = Context.getTypeDeclType(ClassDecl);
8919  QualType ArgType = Context.getRValueReferenceType(ClassType);
8920
8921  bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8922                                                     CXXMoveConstructor,
8923                                                     false);
8924
8925  DeclarationName Name
8926    = Context.DeclarationNames.getCXXConstructorName(
8927                                           Context.getCanonicalType(ClassType));
8928  SourceLocation ClassLoc = ClassDecl->getLocation();
8929  DeclarationNameInfo NameInfo(Name, ClassLoc);
8930
8931  // C++0x [class.copy]p11:
8932  //   An implicitly-declared copy/move constructor is an inline public
8933  //   member of its class.
8934  CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
8935      Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
8936      /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
8937      Constexpr);
8938  MoveConstructor->setAccess(AS_public);
8939  MoveConstructor->setDefaulted();
8940  MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
8941
8942  // Build an exception specification pointing back at this member.
8943  FunctionProtoType::ExtProtoInfo EPI;
8944  EPI.ExceptionSpecType = EST_Unevaluated;
8945  EPI.ExceptionSpecDecl = MoveConstructor;
8946  MoveConstructor->setType(
8947      Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8948
8949  // Add the parameter to the constructor.
8950  ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8951                                               ClassLoc, ClassLoc,
8952                                               /*IdentifierInfo=*/0,
8953                                               ArgType, /*TInfo=*/0,
8954                                               SC_None,
8955                                               SC_None, 0);
8956  MoveConstructor->setParams(FromParam);
8957
8958  // C++0x [class.copy]p9:
8959  //   If the definition of a class X does not explicitly declare a move
8960  //   constructor, one will be implicitly declared as defaulted if and only if:
8961  //   [...]
8962  //   - the move constructor would not be implicitly defined as deleted.
8963  if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
8964    // Cache this result so that we don't try to generate this over and over
8965    // on every lookup, leaking memory and wasting time.
8966    ClassDecl->setFailedImplicitMoveConstructor();
8967    return 0;
8968  }
8969
8970  // Note that we have declared this constructor.
8971  ++ASTContext::NumImplicitMoveConstructorsDeclared;
8972
8973  if (Scope *S = getScopeForContext(ClassDecl))
8974    PushOnScopeChains(MoveConstructor, S, false);
8975  ClassDecl->addDecl(MoveConstructor);
8976
8977  return MoveConstructor;
8978}
8979
8980void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8981                                   CXXConstructorDecl *MoveConstructor) {
8982  assert((MoveConstructor->isDefaulted() &&
8983          MoveConstructor->isMoveConstructor() &&
8984          !MoveConstructor->doesThisDeclarationHaveABody() &&
8985          !MoveConstructor->isDeleted()) &&
8986         "DefineImplicitMoveConstructor - call it for implicit move ctor");
8987
8988  CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8989  assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8990
8991  SynthesizedFunctionScope Scope(*this, MoveConstructor);
8992  DiagnosticErrorTrap Trap(Diags);
8993
8994  if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8995      Trap.hasErrorOccurred()) {
8996    Diag(CurrentLocation, diag::note_member_synthesized_at)
8997      << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8998    MoveConstructor->setInvalidDecl();
8999  }  else {
9000    Sema::CompoundScopeRAII CompoundScope(*this);
9001    MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
9002                                               MoveConstructor->getLocation(),
9003                                               MultiStmtArg(),
9004                                               /*isStmtExpr=*/false)
9005                                                              .takeAs<Stmt>());
9006    MoveConstructor->setImplicitlyDefined(true);
9007  }
9008
9009  MoveConstructor->setUsed();
9010
9011  if (ASTMutationListener *L = getASTMutationListener()) {
9012    L->CompletedImplicitDefinition(MoveConstructor);
9013  }
9014}
9015
9016bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
9017  return FD->isDeleted() &&
9018         (FD->isDefaulted() || FD->isImplicit()) &&
9019         isa<CXXMethodDecl>(FD);
9020}
9021
9022/// \brief Mark the call operator of the given lambda closure type as "used".
9023static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
9024  CXXMethodDecl *CallOperator
9025    = cast<CXXMethodDecl>(
9026        *Lambda->lookup(
9027          S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
9028  CallOperator->setReferenced();
9029  CallOperator->setUsed();
9030}
9031
9032void Sema::DefineImplicitLambdaToFunctionPointerConversion(
9033       SourceLocation CurrentLocation,
9034       CXXConversionDecl *Conv)
9035{
9036  CXXRecordDecl *Lambda = Conv->getParent();
9037
9038  // Make sure that the lambda call operator is marked used.
9039  markLambdaCallOperatorUsed(*this, Lambda);
9040
9041  Conv->setUsed();
9042
9043  SynthesizedFunctionScope Scope(*this, Conv);
9044  DiagnosticErrorTrap Trap(Diags);
9045
9046  // Return the address of the __invoke function.
9047  DeclarationName InvokeName = &Context.Idents.get("__invoke");
9048  CXXMethodDecl *Invoke
9049    = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
9050  Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
9051                                       VK_LValue, Conv->getLocation()).take();
9052  assert(FunctionRef && "Can't refer to __invoke function?");
9053  Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
9054  Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
9055                                           Conv->getLocation(),
9056                                           Conv->getLocation()));
9057
9058  // Fill in the __invoke function with a dummy implementation. IR generation
9059  // will fill in the actual details.
9060  Invoke->setUsed();
9061  Invoke->setReferenced();
9062  Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
9063
9064  if (ASTMutationListener *L = getASTMutationListener()) {
9065    L->CompletedImplicitDefinition(Conv);
9066    L->CompletedImplicitDefinition(Invoke);
9067  }
9068}
9069
9070void Sema::DefineImplicitLambdaToBlockPointerConversion(
9071       SourceLocation CurrentLocation,
9072       CXXConversionDecl *Conv)
9073{
9074  Conv->setUsed();
9075
9076  SynthesizedFunctionScope Scope(*this, Conv);
9077  DiagnosticErrorTrap Trap(Diags);
9078
9079  // Copy-initialize the lambda object as needed to capture it.
9080  Expr *This = ActOnCXXThis(CurrentLocation).take();
9081  Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
9082
9083  ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
9084                                                        Conv->getLocation(),
9085                                                        Conv, DerefThis);
9086
9087  // If we're not under ARC, make sure we still get the _Block_copy/autorelease
9088  // behavior.  Note that only the general conversion function does this
9089  // (since it's unusable otherwise); in the case where we inline the
9090  // block literal, it has block literal lifetime semantics.
9091  if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
9092    BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
9093                                          CK_CopyAndAutoreleaseBlockObject,
9094                                          BuildBlock.get(), 0, VK_RValue);
9095
9096  if (BuildBlock.isInvalid()) {
9097    Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9098    Conv->setInvalidDecl();
9099    return;
9100  }
9101
9102  // Create the return statement that returns the block from the conversion
9103  // function.
9104  StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
9105  if (Return.isInvalid()) {
9106    Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9107    Conv->setInvalidDecl();
9108    return;
9109  }
9110
9111  // Set the body of the conversion function.
9112  Stmt *ReturnS = Return.take();
9113  Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
9114                                           Conv->getLocation(),
9115                                           Conv->getLocation()));
9116
9117  // We're done; notify the mutation listener, if any.
9118  if (ASTMutationListener *L = getASTMutationListener()) {
9119    L->CompletedImplicitDefinition(Conv);
9120  }
9121}
9122
9123/// \brief Determine whether the given list arguments contains exactly one
9124/// "real" (non-default) argument.
9125static bool hasOneRealArgument(MultiExprArg Args) {
9126  switch (Args.size()) {
9127  case 0:
9128    return false;
9129
9130  default:
9131    if (!Args[1]->isDefaultArgument())
9132      return false;
9133
9134    // fall through
9135  case 1:
9136    return !Args[0]->isDefaultArgument();
9137  }
9138
9139  return false;
9140}
9141
9142ExprResult
9143Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9144                            CXXConstructorDecl *Constructor,
9145                            MultiExprArg ExprArgs,
9146                            bool HadMultipleCandidates,
9147                            bool RequiresZeroInit,
9148                            unsigned ConstructKind,
9149                            SourceRange ParenRange) {
9150  bool Elidable = false;
9151
9152  // C++0x [class.copy]p34:
9153  //   When certain criteria are met, an implementation is allowed to
9154  //   omit the copy/move construction of a class object, even if the
9155  //   copy/move constructor and/or destructor for the object have
9156  //   side effects. [...]
9157  //     - when a temporary class object that has not been bound to a
9158  //       reference (12.2) would be copied/moved to a class object
9159  //       with the same cv-unqualified type, the copy/move operation
9160  //       can be omitted by constructing the temporary object
9161  //       directly into the target of the omitted copy/move
9162  if (ConstructKind == CXXConstructExpr::CK_Complete &&
9163      Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
9164    Expr *SubExpr = ExprArgs[0];
9165    Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
9166  }
9167
9168  return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
9169                               Elidable, ExprArgs, HadMultipleCandidates,
9170                               RequiresZeroInit, ConstructKind, ParenRange);
9171}
9172
9173/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9174/// including handling of its default argument expressions.
9175ExprResult
9176Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9177                            CXXConstructorDecl *Constructor, bool Elidable,
9178                            MultiExprArg ExprArgs,
9179                            bool HadMultipleCandidates,
9180                            bool RequiresZeroInit,
9181                            unsigned ConstructKind,
9182                            SourceRange ParenRange) {
9183  MarkFunctionReferenced(ConstructLoc, Constructor);
9184  return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
9185                                        Constructor, Elidable, ExprArgs,
9186                                        HadMultipleCandidates, /*FIXME*/false,
9187                                        RequiresZeroInit,
9188              static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9189                                        ParenRange));
9190}
9191
9192bool Sema::InitializeVarWithConstructor(VarDecl *VD,
9193                                        CXXConstructorDecl *Constructor,
9194                                        MultiExprArg Exprs,
9195                                        bool HadMultipleCandidates) {
9196  // FIXME: Provide the correct paren SourceRange when available.
9197  ExprResult TempResult =
9198    BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
9199                          Exprs, HadMultipleCandidates, false,
9200                          CXXConstructExpr::CK_Complete, SourceRange());
9201  if (TempResult.isInvalid())
9202    return true;
9203
9204  Expr *Temp = TempResult.takeAs<Expr>();
9205  CheckImplicitConversions(Temp, VD->getLocation());
9206  MarkFunctionReferenced(VD->getLocation(), Constructor);
9207  Temp = MaybeCreateExprWithCleanups(Temp);
9208  VD->setInit(Temp);
9209
9210  return false;
9211}
9212
9213void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
9214  if (VD->isInvalidDecl()) return;
9215
9216  CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
9217  if (ClassDecl->isInvalidDecl()) return;
9218  if (ClassDecl->hasIrrelevantDestructor()) return;
9219  if (ClassDecl->isDependentContext()) return;
9220
9221  CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
9222  MarkFunctionReferenced(VD->getLocation(), Destructor);
9223  CheckDestructorAccess(VD->getLocation(), Destructor,
9224                        PDiag(diag::err_access_dtor_var)
9225                        << VD->getDeclName()
9226                        << VD->getType());
9227  DiagnoseUseOfDecl(Destructor, VD->getLocation());
9228
9229  if (!VD->hasGlobalStorage()) return;
9230
9231  // Emit warning for non-trivial dtor in global scope (a real global,
9232  // class-static, function-static).
9233  Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9234
9235  // TODO: this should be re-enabled for static locals by !CXAAtExit
9236  if (!VD->isStaticLocal())
9237    Diag(VD->getLocation(), diag::warn_global_destructor);
9238}
9239
9240/// \brief Given a constructor and the set of arguments provided for the
9241/// constructor, convert the arguments and add any required default arguments
9242/// to form a proper call to this constructor.
9243///
9244/// \returns true if an error occurred, false otherwise.
9245bool
9246Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9247                              MultiExprArg ArgsPtr,
9248                              SourceLocation Loc,
9249                              SmallVectorImpl<Expr*> &ConvertedArgs,
9250                              bool AllowExplicit) {
9251  // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9252  unsigned NumArgs = ArgsPtr.size();
9253  Expr **Args = ArgsPtr.data();
9254
9255  const FunctionProtoType *Proto
9256    = Constructor->getType()->getAs<FunctionProtoType>();
9257  assert(Proto && "Constructor without a prototype?");
9258  unsigned NumArgsInProto = Proto->getNumArgs();
9259
9260  // If too few arguments are available, we'll fill in the rest with defaults.
9261  if (NumArgs < NumArgsInProto)
9262    ConvertedArgs.reserve(NumArgsInProto);
9263  else
9264    ConvertedArgs.reserve(NumArgs);
9265
9266  VariadicCallType CallType =
9267    Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
9268  SmallVector<Expr *, 8> AllArgs;
9269  bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9270                                        Proto, 0, Args, NumArgs, AllArgs,
9271                                        CallType, AllowExplicit);
9272  ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
9273
9274  DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9275
9276  CheckConstructorCall(Constructor, AllArgs.data(), AllArgs.size(),
9277                       Proto, Loc);
9278
9279  return Invalid;
9280}
9281
9282static inline bool
9283CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9284                                       const FunctionDecl *FnDecl) {
9285  const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
9286  if (isa<NamespaceDecl>(DC)) {
9287    return SemaRef.Diag(FnDecl->getLocation(),
9288                        diag::err_operator_new_delete_declared_in_namespace)
9289      << FnDecl->getDeclName();
9290  }
9291
9292  if (isa<TranslationUnitDecl>(DC) &&
9293      FnDecl->getStorageClass() == SC_Static) {
9294    return SemaRef.Diag(FnDecl->getLocation(),
9295                        diag::err_operator_new_delete_declared_static)
9296      << FnDecl->getDeclName();
9297  }
9298
9299  return false;
9300}
9301
9302static inline bool
9303CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9304                            CanQualType ExpectedResultType,
9305                            CanQualType ExpectedFirstParamType,
9306                            unsigned DependentParamTypeDiag,
9307                            unsigned InvalidParamTypeDiag) {
9308  QualType ResultType =
9309    FnDecl->getType()->getAs<FunctionType>()->getResultType();
9310
9311  // Check that the result type is not dependent.
9312  if (ResultType->isDependentType())
9313    return SemaRef.Diag(FnDecl->getLocation(),
9314                        diag::err_operator_new_delete_dependent_result_type)
9315    << FnDecl->getDeclName() << ExpectedResultType;
9316
9317  // Check that the result type is what we expect.
9318  if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9319    return SemaRef.Diag(FnDecl->getLocation(),
9320                        diag::err_operator_new_delete_invalid_result_type)
9321    << FnDecl->getDeclName() << ExpectedResultType;
9322
9323  // A function template must have at least 2 parameters.
9324  if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9325    return SemaRef.Diag(FnDecl->getLocation(),
9326                      diag::err_operator_new_delete_template_too_few_parameters)
9327        << FnDecl->getDeclName();
9328
9329  // The function decl must have at least 1 parameter.
9330  if (FnDecl->getNumParams() == 0)
9331    return SemaRef.Diag(FnDecl->getLocation(),
9332                        diag::err_operator_new_delete_too_few_parameters)
9333      << FnDecl->getDeclName();
9334
9335  // Check the first parameter type is not dependent.
9336  QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9337  if (FirstParamType->isDependentType())
9338    return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9339      << FnDecl->getDeclName() << ExpectedFirstParamType;
9340
9341  // Check that the first parameter type is what we expect.
9342  if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
9343      ExpectedFirstParamType)
9344    return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9345    << FnDecl->getDeclName() << ExpectedFirstParamType;
9346
9347  return false;
9348}
9349
9350static bool
9351CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
9352  // C++ [basic.stc.dynamic.allocation]p1:
9353  //   A program is ill-formed if an allocation function is declared in a
9354  //   namespace scope other than global scope or declared static in global
9355  //   scope.
9356  if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9357    return true;
9358
9359  CanQualType SizeTy =
9360    SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9361
9362  // C++ [basic.stc.dynamic.allocation]p1:
9363  //  The return type shall be void*. The first parameter shall have type
9364  //  std::size_t.
9365  if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9366                                  SizeTy,
9367                                  diag::err_operator_new_dependent_param_type,
9368                                  diag::err_operator_new_param_type))
9369    return true;
9370
9371  // C++ [basic.stc.dynamic.allocation]p1:
9372  //  The first parameter shall not have an associated default argument.
9373  if (FnDecl->getParamDecl(0)->hasDefaultArg())
9374    return SemaRef.Diag(FnDecl->getLocation(),
9375                        diag::err_operator_new_default_arg)
9376      << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9377
9378  return false;
9379}
9380
9381static bool
9382CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
9383  // C++ [basic.stc.dynamic.deallocation]p1:
9384  //   A program is ill-formed if deallocation functions are declared in a
9385  //   namespace scope other than global scope or declared static in global
9386  //   scope.
9387  if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9388    return true;
9389
9390  // C++ [basic.stc.dynamic.deallocation]p2:
9391  //   Each deallocation function shall return void and its first parameter
9392  //   shall be void*.
9393  if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9394                                  SemaRef.Context.VoidPtrTy,
9395                                 diag::err_operator_delete_dependent_param_type,
9396                                 diag::err_operator_delete_param_type))
9397    return true;
9398
9399  return false;
9400}
9401
9402/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9403/// of this overloaded operator is well-formed. If so, returns false;
9404/// otherwise, emits appropriate diagnostics and returns true.
9405bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
9406  assert(FnDecl && FnDecl->isOverloadedOperator() &&
9407         "Expected an overloaded operator declaration");
9408
9409  OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9410
9411  // C++ [over.oper]p5:
9412  //   The allocation and deallocation functions, operator new,
9413  //   operator new[], operator delete and operator delete[], are
9414  //   described completely in 3.7.3. The attributes and restrictions
9415  //   found in the rest of this subclause do not apply to them unless
9416  //   explicitly stated in 3.7.3.
9417  if (Op == OO_Delete || Op == OO_Array_Delete)
9418    return CheckOperatorDeleteDeclaration(*this, FnDecl);
9419
9420  if (Op == OO_New || Op == OO_Array_New)
9421    return CheckOperatorNewDeclaration(*this, FnDecl);
9422
9423  // C++ [over.oper]p6:
9424  //   An operator function shall either be a non-static member
9425  //   function or be a non-member function and have at least one
9426  //   parameter whose type is a class, a reference to a class, an
9427  //   enumeration, or a reference to an enumeration.
9428  if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9429    if (MethodDecl->isStatic())
9430      return Diag(FnDecl->getLocation(),
9431                  diag::err_operator_overload_static) << FnDecl->getDeclName();
9432  } else {
9433    bool ClassOrEnumParam = false;
9434    for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9435                                   ParamEnd = FnDecl->param_end();
9436         Param != ParamEnd; ++Param) {
9437      QualType ParamType = (*Param)->getType().getNonReferenceType();
9438      if (ParamType->isDependentType() || ParamType->isRecordType() ||
9439          ParamType->isEnumeralType()) {
9440        ClassOrEnumParam = true;
9441        break;
9442      }
9443    }
9444
9445    if (!ClassOrEnumParam)
9446      return Diag(FnDecl->getLocation(),
9447                  diag::err_operator_overload_needs_class_or_enum)
9448        << FnDecl->getDeclName();
9449  }
9450
9451  // C++ [over.oper]p8:
9452  //   An operator function cannot have default arguments (8.3.6),
9453  //   except where explicitly stated below.
9454  //
9455  // Only the function-call operator allows default arguments
9456  // (C++ [over.call]p1).
9457  if (Op != OO_Call) {
9458    for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9459         Param != FnDecl->param_end(); ++Param) {
9460      if ((*Param)->hasDefaultArg())
9461        return Diag((*Param)->getLocation(),
9462                    diag::err_operator_overload_default_arg)
9463          << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
9464    }
9465  }
9466
9467  static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9468    { false, false, false }
9469#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9470    , { Unary, Binary, MemberOnly }
9471#include "clang/Basic/OperatorKinds.def"
9472  };
9473
9474  bool CanBeUnaryOperator = OperatorUses[Op][0];
9475  bool CanBeBinaryOperator = OperatorUses[Op][1];
9476  bool MustBeMemberOperator = OperatorUses[Op][2];
9477
9478  // C++ [over.oper]p8:
9479  //   [...] Operator functions cannot have more or fewer parameters
9480  //   than the number required for the corresponding operator, as
9481  //   described in the rest of this subclause.
9482  unsigned NumParams = FnDecl->getNumParams()
9483                     + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
9484  if (Op != OO_Call &&
9485      ((NumParams == 1 && !CanBeUnaryOperator) ||
9486       (NumParams == 2 && !CanBeBinaryOperator) ||
9487       (NumParams < 1) || (NumParams > 2))) {
9488    // We have the wrong number of parameters.
9489    unsigned ErrorKind;
9490    if (CanBeUnaryOperator && CanBeBinaryOperator) {
9491      ErrorKind = 2;  // 2 -> unary or binary.
9492    } else if (CanBeUnaryOperator) {
9493      ErrorKind = 0;  // 0 -> unary
9494    } else {
9495      assert(CanBeBinaryOperator &&
9496             "All non-call overloaded operators are unary or binary!");
9497      ErrorKind = 1;  // 1 -> binary
9498    }
9499
9500    return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
9501      << FnDecl->getDeclName() << NumParams << ErrorKind;
9502  }
9503
9504  // Overloaded operators other than operator() cannot be variadic.
9505  if (Op != OO_Call &&
9506      FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
9507    return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
9508      << FnDecl->getDeclName();
9509  }
9510
9511  // Some operators must be non-static member functions.
9512  if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9513    return Diag(FnDecl->getLocation(),
9514                diag::err_operator_overload_must_be_member)
9515      << FnDecl->getDeclName();
9516  }
9517
9518  // C++ [over.inc]p1:
9519  //   The user-defined function called operator++ implements the
9520  //   prefix and postfix ++ operator. If this function is a member
9521  //   function with no parameters, or a non-member function with one
9522  //   parameter of class or enumeration type, it defines the prefix
9523  //   increment operator ++ for objects of that type. If the function
9524  //   is a member function with one parameter (which shall be of type
9525  //   int) or a non-member function with two parameters (the second
9526  //   of which shall be of type int), it defines the postfix
9527  //   increment operator ++ for objects of that type.
9528  if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9529    ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9530    bool ParamIsInt = false;
9531    if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
9532      ParamIsInt = BT->getKind() == BuiltinType::Int;
9533
9534    if (!ParamIsInt)
9535      return Diag(LastParam->getLocation(),
9536                  diag::err_operator_overload_post_incdec_must_be_int)
9537        << LastParam->getType() << (Op == OO_MinusMinus);
9538  }
9539
9540  return false;
9541}
9542
9543/// CheckLiteralOperatorDeclaration - Check whether the declaration
9544/// of this literal operator function is well-formed. If so, returns
9545/// false; otherwise, emits appropriate diagnostics and returns true.
9546bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
9547  if (isa<CXXMethodDecl>(FnDecl)) {
9548    Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9549      << FnDecl->getDeclName();
9550    return true;
9551  }
9552
9553  if (FnDecl->isExternC()) {
9554    Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9555    return true;
9556  }
9557
9558  bool Valid = false;
9559
9560  // This might be the definition of a literal operator template.
9561  FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9562  // This might be a specialization of a literal operator template.
9563  if (!TpDecl)
9564    TpDecl = FnDecl->getPrimaryTemplate();
9565
9566  // template <char...> type operator "" name() is the only valid template
9567  // signature, and the only valid signature with no parameters.
9568  if (TpDecl) {
9569    if (FnDecl->param_size() == 0) {
9570      // Must have only one template parameter
9571      TemplateParameterList *Params = TpDecl->getTemplateParameters();
9572      if (Params->size() == 1) {
9573        NonTypeTemplateParmDecl *PmDecl =
9574          dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
9575
9576        // The template parameter must be a char parameter pack.
9577        if (PmDecl && PmDecl->isTemplateParameterPack() &&
9578            Context.hasSameType(PmDecl->getType(), Context.CharTy))
9579          Valid = true;
9580      }
9581    }
9582  } else if (FnDecl->param_size()) {
9583    // Check the first parameter
9584    FunctionDecl::param_iterator Param = FnDecl->param_begin();
9585
9586    QualType T = (*Param)->getType().getUnqualifiedType();
9587
9588    // unsigned long long int, long double, and any character type are allowed
9589    // as the only parameters.
9590    if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9591        Context.hasSameType(T, Context.LongDoubleTy) ||
9592        Context.hasSameType(T, Context.CharTy) ||
9593        Context.hasSameType(T, Context.WCharTy) ||
9594        Context.hasSameType(T, Context.Char16Ty) ||
9595        Context.hasSameType(T, Context.Char32Ty)) {
9596      if (++Param == FnDecl->param_end())
9597        Valid = true;
9598      goto FinishedParams;
9599    }
9600
9601    // Otherwise it must be a pointer to const; let's strip those qualifiers.
9602    const PointerType *PT = T->getAs<PointerType>();
9603    if (!PT)
9604      goto FinishedParams;
9605    T = PT->getPointeeType();
9606    if (!T.isConstQualified() || T.isVolatileQualified())
9607      goto FinishedParams;
9608    T = T.getUnqualifiedType();
9609
9610    // Move on to the second parameter;
9611    ++Param;
9612
9613    // If there is no second parameter, the first must be a const char *
9614    if (Param == FnDecl->param_end()) {
9615      if (Context.hasSameType(T, Context.CharTy))
9616        Valid = true;
9617      goto FinishedParams;
9618    }
9619
9620    // const char *, const wchar_t*, const char16_t*, and const char32_t*
9621    // are allowed as the first parameter to a two-parameter function
9622    if (!(Context.hasSameType(T, Context.CharTy) ||
9623          Context.hasSameType(T, Context.WCharTy) ||
9624          Context.hasSameType(T, Context.Char16Ty) ||
9625          Context.hasSameType(T, Context.Char32Ty)))
9626      goto FinishedParams;
9627
9628    // The second and final parameter must be an std::size_t
9629    T = (*Param)->getType().getUnqualifiedType();
9630    if (Context.hasSameType(T, Context.getSizeType()) &&
9631        ++Param == FnDecl->param_end())
9632      Valid = true;
9633  }
9634
9635  // FIXME: This diagnostic is absolutely terrible.
9636FinishedParams:
9637  if (!Valid) {
9638    Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9639      << FnDecl->getDeclName();
9640    return true;
9641  }
9642
9643  // A parameter-declaration-clause containing a default argument is not
9644  // equivalent to any of the permitted forms.
9645  for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9646                                    ParamEnd = FnDecl->param_end();
9647       Param != ParamEnd; ++Param) {
9648    if ((*Param)->hasDefaultArg()) {
9649      Diag((*Param)->getDefaultArgRange().getBegin(),
9650           diag::err_literal_operator_default_argument)
9651        << (*Param)->getDefaultArgRange();
9652      break;
9653    }
9654  }
9655
9656  StringRef LiteralName
9657    = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9658  if (LiteralName[0] != '_') {
9659    // C++11 [usrlit.suffix]p1:
9660    //   Literal suffix identifiers that do not start with an underscore
9661    //   are reserved for future standardization.
9662    Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
9663  }
9664
9665  return false;
9666}
9667
9668/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9669/// linkage specification, including the language and (if present)
9670/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9671/// the location of the language string literal, which is provided
9672/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9673/// the '{' brace. Otherwise, this linkage specification does not
9674/// have any braces.
9675Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9676                                           SourceLocation LangLoc,
9677                                           StringRef Lang,
9678                                           SourceLocation LBraceLoc) {
9679  LinkageSpecDecl::LanguageIDs Language;
9680  if (Lang == "\"C\"")
9681    Language = LinkageSpecDecl::lang_c;
9682  else if (Lang == "\"C++\"")
9683    Language = LinkageSpecDecl::lang_cxx;
9684  else {
9685    Diag(LangLoc, diag::err_bad_language);
9686    return 0;
9687  }
9688
9689  // FIXME: Add all the various semantics of linkage specifications
9690
9691  LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
9692                                               ExternLoc, LangLoc, Language);
9693  CurContext->addDecl(D);
9694  PushDeclContext(S, D);
9695  return D;
9696}
9697
9698/// ActOnFinishLinkageSpecification - Complete the definition of
9699/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9700/// valid, it's the position of the closing '}' brace in a linkage
9701/// specification that uses braces.
9702Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
9703                                            Decl *LinkageSpec,
9704                                            SourceLocation RBraceLoc) {
9705  if (LinkageSpec) {
9706    if (RBraceLoc.isValid()) {
9707      LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9708      LSDecl->setRBraceLoc(RBraceLoc);
9709    }
9710    PopDeclContext();
9711  }
9712  return LinkageSpec;
9713}
9714
9715/// \brief Perform semantic analysis for the variable declaration that
9716/// occurs within a C++ catch clause, returning the newly-created
9717/// variable.
9718VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
9719                                         TypeSourceInfo *TInfo,
9720                                         SourceLocation StartLoc,
9721                                         SourceLocation Loc,
9722                                         IdentifierInfo *Name) {
9723  bool Invalid = false;
9724  QualType ExDeclType = TInfo->getType();
9725
9726  // Arrays and functions decay.
9727  if (ExDeclType->isArrayType())
9728    ExDeclType = Context.getArrayDecayedType(ExDeclType);
9729  else if (ExDeclType->isFunctionType())
9730    ExDeclType = Context.getPointerType(ExDeclType);
9731
9732  // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9733  // The exception-declaration shall not denote a pointer or reference to an
9734  // incomplete type, other than [cv] void*.
9735  // N2844 forbids rvalue references.
9736  if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
9737    Diag(Loc, diag::err_catch_rvalue_ref);
9738    Invalid = true;
9739  }
9740
9741  QualType BaseType = ExDeclType;
9742  int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
9743  unsigned DK = diag::err_catch_incomplete;
9744  if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
9745    BaseType = Ptr->getPointeeType();
9746    Mode = 1;
9747    DK = diag::err_catch_incomplete_ptr;
9748  } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
9749    // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
9750    BaseType = Ref->getPointeeType();
9751    Mode = 2;
9752    DK = diag::err_catch_incomplete_ref;
9753  }
9754  if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
9755      !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
9756    Invalid = true;
9757
9758  if (!Invalid && !ExDeclType->isDependentType() &&
9759      RequireNonAbstractType(Loc, ExDeclType,
9760                             diag::err_abstract_type_in_decl,
9761                             AbstractVariableType))
9762    Invalid = true;
9763
9764  // Only the non-fragile NeXT runtime currently supports C++ catches
9765  // of ObjC types, and no runtime supports catching ObjC types by value.
9766  if (!Invalid && getLangOpts().ObjC1) {
9767    QualType T = ExDeclType;
9768    if (const ReferenceType *RT = T->getAs<ReferenceType>())
9769      T = RT->getPointeeType();
9770
9771    if (T->isObjCObjectType()) {
9772      Diag(Loc, diag::err_objc_object_catch);
9773      Invalid = true;
9774    } else if (T->isObjCObjectPointerType()) {
9775      // FIXME: should this be a test for macosx-fragile specifically?
9776      if (getLangOpts().ObjCRuntime.isFragile())
9777        Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
9778    }
9779  }
9780
9781  VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9782                                    ExDeclType, TInfo, SC_None, SC_None);
9783  ExDecl->setExceptionVariable(true);
9784
9785  // In ARC, infer 'retaining' for variables of retainable type.
9786  if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
9787    Invalid = true;
9788
9789  if (!Invalid && !ExDeclType->isDependentType()) {
9790    if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
9791      // C++ [except.handle]p16:
9792      //   The object declared in an exception-declaration or, if the
9793      //   exception-declaration does not specify a name, a temporary (12.2) is
9794      //   copy-initialized (8.5) from the exception object. [...]
9795      //   The object is destroyed when the handler exits, after the destruction
9796      //   of any automatic objects initialized within the handler.
9797      //
9798      // We just pretend to initialize the object with itself, then make sure
9799      // it can be destroyed later.
9800      QualType initType = ExDeclType;
9801
9802      InitializedEntity entity =
9803        InitializedEntity::InitializeVariable(ExDecl);
9804      InitializationKind initKind =
9805        InitializationKind::CreateCopy(Loc, SourceLocation());
9806
9807      Expr *opaqueValue =
9808        new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9809      InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9810      ExprResult result = sequence.Perform(*this, entity, initKind,
9811                                           MultiExprArg(&opaqueValue, 1));
9812      if (result.isInvalid())
9813        Invalid = true;
9814      else {
9815        // If the constructor used was non-trivial, set this as the
9816        // "initializer".
9817        CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9818        if (!construct->getConstructor()->isTrivial()) {
9819          Expr *init = MaybeCreateExprWithCleanups(construct);
9820          ExDecl->setInit(init);
9821        }
9822
9823        // And make sure it's destructable.
9824        FinalizeVarWithDestructor(ExDecl, recordType);
9825      }
9826    }
9827  }
9828
9829  if (Invalid)
9830    ExDecl->setInvalidDecl();
9831
9832  return ExDecl;
9833}
9834
9835/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9836/// handler.
9837Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
9838  TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
9839  bool Invalid = D.isInvalidType();
9840
9841  // Check for unexpanded parameter packs.
9842  if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9843                                               UPPC_ExceptionType)) {
9844    TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9845                                             D.getIdentifierLoc());
9846    Invalid = true;
9847  }
9848
9849  IdentifierInfo *II = D.getIdentifier();
9850  if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
9851                                             LookupOrdinaryName,
9852                                             ForRedeclaration)) {
9853    // The scope should be freshly made just for us. There is just no way
9854    // it contains any previous declaration.
9855    assert(!S->isDeclScope(PrevDecl));
9856    if (PrevDecl->isTemplateParameter()) {
9857      // Maybe we will complain about the shadowed template parameter.
9858      DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
9859      PrevDecl = 0;
9860    }
9861  }
9862
9863  if (D.getCXXScopeSpec().isSet() && !Invalid) {
9864    Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9865      << D.getCXXScopeSpec().getRange();
9866    Invalid = true;
9867  }
9868
9869  VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
9870                                              D.getLocStart(),
9871                                              D.getIdentifierLoc(),
9872                                              D.getIdentifier());
9873  if (Invalid)
9874    ExDecl->setInvalidDecl();
9875
9876  // Add the exception declaration into this scope.
9877  if (II)
9878    PushOnScopeChains(ExDecl, S);
9879  else
9880    CurContext->addDecl(ExDecl);
9881
9882  ProcessDeclAttributes(S, ExDecl, D);
9883  return ExDecl;
9884}
9885
9886Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
9887                                         Expr *AssertExpr,
9888                                         Expr *AssertMessageExpr,
9889                                         SourceLocation RParenLoc) {
9890  StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
9891
9892  if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9893    return 0;
9894
9895  return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
9896                                      AssertMessage, RParenLoc, false);
9897}
9898
9899Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
9900                                         Expr *AssertExpr,
9901                                         StringLiteral *AssertMessage,
9902                                         SourceLocation RParenLoc,
9903                                         bool Failed) {
9904  if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
9905      !Failed) {
9906    // In a static_assert-declaration, the constant-expression shall be a
9907    // constant expression that can be contextually converted to bool.
9908    ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9909    if (Converted.isInvalid())
9910      Failed = true;
9911
9912    llvm::APSInt Cond;
9913    if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
9914          diag::err_static_assert_expression_is_not_constant,
9915          /*AllowFold=*/false).isInvalid())
9916      Failed = true;
9917
9918    if (!Failed && !Cond) {
9919      llvm::SmallString<256> MsgBuffer;
9920      llvm::raw_svector_ostream Msg(MsgBuffer);
9921      AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
9922      Diag(StaticAssertLoc, diag::err_static_assert_failed)
9923        << Msg.str() << AssertExpr->getSourceRange();
9924      Failed = true;
9925    }
9926  }
9927
9928  Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
9929                                        AssertExpr, AssertMessage, RParenLoc,
9930                                        Failed);
9931
9932  CurContext->addDecl(Decl);
9933  return Decl;
9934}
9935
9936/// \brief Perform semantic analysis of the given friend type declaration.
9937///
9938/// \returns A friend declaration that.
9939FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
9940                                      SourceLocation FriendLoc,
9941                                      TypeSourceInfo *TSInfo) {
9942  assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9943
9944  QualType T = TSInfo->getType();
9945  SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
9946
9947  // C++03 [class.friend]p2:
9948  //   An elaborated-type-specifier shall be used in a friend declaration
9949  //   for a class.*
9950  //
9951  //   * The class-key of the elaborated-type-specifier is required.
9952  if (!ActiveTemplateInstantiations.empty()) {
9953    // Do not complain about the form of friend template types during
9954    // template instantiation; we will already have complained when the
9955    // template was declared.
9956  } else if (!T->isElaboratedTypeSpecifier()) {
9957    // If we evaluated the type to a record type, suggest putting
9958    // a tag in front.
9959    if (const RecordType *RT = T->getAs<RecordType>()) {
9960      RecordDecl *RD = RT->getDecl();
9961
9962      std::string InsertionText = std::string(" ") + RD->getKindName();
9963
9964      Diag(TypeRange.getBegin(),
9965           getLangOpts().CPlusPlus0x ?
9966             diag::warn_cxx98_compat_unelaborated_friend_type :
9967             diag::ext_unelaborated_friend_type)
9968        << (unsigned) RD->getTagKind()
9969        << T
9970        << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9971                                      InsertionText);
9972    } else {
9973      Diag(FriendLoc,
9974           getLangOpts().CPlusPlus0x ?
9975             diag::warn_cxx98_compat_nonclass_type_friend :
9976             diag::ext_nonclass_type_friend)
9977        << T
9978        << TypeRange;
9979    }
9980  } else if (T->getAs<EnumType>()) {
9981    Diag(FriendLoc,
9982         getLangOpts().CPlusPlus0x ?
9983           diag::warn_cxx98_compat_enum_friend :
9984           diag::ext_enum_friend)
9985      << T
9986      << TypeRange;
9987  }
9988
9989  // C++11 [class.friend]p3:
9990  //   A friend declaration that does not declare a function shall have one
9991  //   of the following forms:
9992  //     friend elaborated-type-specifier ;
9993  //     friend simple-type-specifier ;
9994  //     friend typename-specifier ;
9995  if (getLangOpts().CPlusPlus0x && LocStart != FriendLoc)
9996    Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
9997
9998  //   If the type specifier in a friend declaration designates a (possibly
9999  //   cv-qualified) class type, that class is declared as a friend; otherwise,
10000  //   the friend declaration is ignored.
10001  return FriendDecl::Create(Context, CurContext, LocStart, TSInfo, FriendLoc);
10002}
10003
10004/// Handle a friend tag declaration where the scope specifier was
10005/// templated.
10006Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
10007                                    unsigned TagSpec, SourceLocation TagLoc,
10008                                    CXXScopeSpec &SS,
10009                                    IdentifierInfo *Name, SourceLocation NameLoc,
10010                                    AttributeList *Attr,
10011                                    MultiTemplateParamsArg TempParamLists) {
10012  TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
10013
10014  bool isExplicitSpecialization = false;
10015  bool Invalid = false;
10016
10017  if (TemplateParameterList *TemplateParams
10018        = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
10019                                                  TempParamLists.data(),
10020                                                  TempParamLists.size(),
10021                                                  /*friend*/ true,
10022                                                  isExplicitSpecialization,
10023                                                  Invalid)) {
10024    if (TemplateParams->size() > 0) {
10025      // This is a declaration of a class template.
10026      if (Invalid)
10027        return 0;
10028
10029      return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
10030                                SS, Name, NameLoc, Attr,
10031                                TemplateParams, AS_public,
10032                                /*ModulePrivateLoc=*/SourceLocation(),
10033                                TempParamLists.size() - 1,
10034                                TempParamLists.data()).take();
10035    } else {
10036      // The "template<>" header is extraneous.
10037      Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
10038        << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
10039      isExplicitSpecialization = true;
10040    }
10041  }
10042
10043  if (Invalid) return 0;
10044
10045  bool isAllExplicitSpecializations = true;
10046  for (unsigned I = TempParamLists.size(); I-- > 0; ) {
10047    if (TempParamLists[I]->size()) {
10048      isAllExplicitSpecializations = false;
10049      break;
10050    }
10051  }
10052
10053  // FIXME: don't ignore attributes.
10054
10055  // If it's explicit specializations all the way down, just forget
10056  // about the template header and build an appropriate non-templated
10057  // friend.  TODO: for source fidelity, remember the headers.
10058  if (isAllExplicitSpecializations) {
10059    if (SS.isEmpty()) {
10060      bool Owned = false;
10061      bool IsDependent = false;
10062      return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
10063                      Attr, AS_public,
10064                      /*ModulePrivateLoc=*/SourceLocation(),
10065                      MultiTemplateParamsArg(), Owned, IsDependent,
10066                      /*ScopedEnumKWLoc=*/SourceLocation(),
10067                      /*ScopedEnumUsesClassTag=*/false,
10068                      /*UnderlyingType=*/TypeResult());
10069    }
10070
10071    NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
10072    ElaboratedTypeKeyword Keyword
10073      = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10074    QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
10075                                   *Name, NameLoc);
10076    if (T.isNull())
10077      return 0;
10078
10079    TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10080    if (isa<DependentNameType>(T)) {
10081      DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
10082      TL.setElaboratedKeywordLoc(TagLoc);
10083      TL.setQualifierLoc(QualifierLoc);
10084      TL.setNameLoc(NameLoc);
10085    } else {
10086      ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
10087      TL.setElaboratedKeywordLoc(TagLoc);
10088      TL.setQualifierLoc(QualifierLoc);
10089      cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
10090    }
10091
10092    FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10093                                            TSI, FriendLoc);
10094    Friend->setAccess(AS_public);
10095    CurContext->addDecl(Friend);
10096    return Friend;
10097  }
10098
10099  assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
10100
10101
10102
10103  // Handle the case of a templated-scope friend class.  e.g.
10104  //   template <class T> class A<T>::B;
10105  // FIXME: we don't support these right now.
10106  ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10107  QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
10108  TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10109  DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
10110  TL.setElaboratedKeywordLoc(TagLoc);
10111  TL.setQualifierLoc(SS.getWithLocInContext(Context));
10112  TL.setNameLoc(NameLoc);
10113
10114  FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10115                                          TSI, FriendLoc);
10116  Friend->setAccess(AS_public);
10117  Friend->setUnsupportedFriend(true);
10118  CurContext->addDecl(Friend);
10119  return Friend;
10120}
10121
10122
10123/// Handle a friend type declaration.  This works in tandem with
10124/// ActOnTag.
10125///
10126/// Notes on friend class templates:
10127///
10128/// We generally treat friend class declarations as if they were
10129/// declaring a class.  So, for example, the elaborated type specifier
10130/// in a friend declaration is required to obey the restrictions of a
10131/// class-head (i.e. no typedefs in the scope chain), template
10132/// parameters are required to match up with simple template-ids, &c.
10133/// However, unlike when declaring a template specialization, it's
10134/// okay to refer to a template specialization without an empty
10135/// template parameter declaration, e.g.
10136///   friend class A<T>::B<unsigned>;
10137/// We permit this as a special case; if there are any template
10138/// parameters present at all, require proper matching, i.e.
10139///   template <> template \<class T> friend class A<int>::B;
10140Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
10141                                MultiTemplateParamsArg TempParams) {
10142  SourceLocation Loc = DS.getLocStart();
10143
10144  assert(DS.isFriendSpecified());
10145  assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10146
10147  // Try to convert the decl specifier to a type.  This works for
10148  // friend templates because ActOnTag never produces a ClassTemplateDecl
10149  // for a TUK_Friend.
10150  Declarator TheDeclarator(DS, Declarator::MemberContext);
10151  TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10152  QualType T = TSI->getType();
10153  if (TheDeclarator.isInvalidType())
10154    return 0;
10155
10156  if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10157    return 0;
10158
10159  // This is definitely an error in C++98.  It's probably meant to
10160  // be forbidden in C++0x, too, but the specification is just
10161  // poorly written.
10162  //
10163  // The problem is with declarations like the following:
10164  //   template <T> friend A<T>::foo;
10165  // where deciding whether a class C is a friend or not now hinges
10166  // on whether there exists an instantiation of A that causes
10167  // 'foo' to equal C.  There are restrictions on class-heads
10168  // (which we declare (by fiat) elaborated friend declarations to
10169  // be) that makes this tractable.
10170  //
10171  // FIXME: handle "template <> friend class A<T>;", which
10172  // is possibly well-formed?  Who even knows?
10173  if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
10174    Diag(Loc, diag::err_tagless_friend_type_template)
10175      << DS.getSourceRange();
10176    return 0;
10177  }
10178
10179  // C++98 [class.friend]p1: A friend of a class is a function
10180  //   or class that is not a member of the class . . .
10181  // This is fixed in DR77, which just barely didn't make the C++03
10182  // deadline.  It's also a very silly restriction that seriously
10183  // affects inner classes and which nobody else seems to implement;
10184  // thus we never diagnose it, not even in -pedantic.
10185  //
10186  // But note that we could warn about it: it's always useless to
10187  // friend one of your own members (it's not, however, worthless to
10188  // friend a member of an arbitrary specialization of your template).
10189
10190  Decl *D;
10191  if (unsigned NumTempParamLists = TempParams.size())
10192    D = FriendTemplateDecl::Create(Context, CurContext, Loc,
10193                                   NumTempParamLists,
10194                                   TempParams.data(),
10195                                   TSI,
10196                                   DS.getFriendSpecLoc());
10197  else
10198    D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
10199
10200  if (!D)
10201    return 0;
10202
10203  D->setAccess(AS_public);
10204  CurContext->addDecl(D);
10205
10206  return D;
10207}
10208
10209Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
10210                                    MultiTemplateParamsArg TemplateParams) {
10211  const DeclSpec &DS = D.getDeclSpec();
10212
10213  assert(DS.isFriendSpecified());
10214  assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10215
10216  SourceLocation Loc = D.getIdentifierLoc();
10217  TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
10218
10219  // C++ [class.friend]p1
10220  //   A friend of a class is a function or class....
10221  // Note that this sees through typedefs, which is intended.
10222  // It *doesn't* see through dependent types, which is correct
10223  // according to [temp.arg.type]p3:
10224  //   If a declaration acquires a function type through a
10225  //   type dependent on a template-parameter and this causes
10226  //   a declaration that does not use the syntactic form of a
10227  //   function declarator to have a function type, the program
10228  //   is ill-formed.
10229  if (!TInfo->getType()->isFunctionType()) {
10230    Diag(Loc, diag::err_unexpected_friend);
10231
10232    // It might be worthwhile to try to recover by creating an
10233    // appropriate declaration.
10234    return 0;
10235  }
10236
10237  // C++ [namespace.memdef]p3
10238  //  - If a friend declaration in a non-local class first declares a
10239  //    class or function, the friend class or function is a member
10240  //    of the innermost enclosing namespace.
10241  //  - The name of the friend is not found by simple name lookup
10242  //    until a matching declaration is provided in that namespace
10243  //    scope (either before or after the class declaration granting
10244  //    friendship).
10245  //  - If a friend function is called, its name may be found by the
10246  //    name lookup that considers functions from namespaces and
10247  //    classes associated with the types of the function arguments.
10248  //  - When looking for a prior declaration of a class or a function
10249  //    declared as a friend, scopes outside the innermost enclosing
10250  //    namespace scope are not considered.
10251
10252  CXXScopeSpec &SS = D.getCXXScopeSpec();
10253  DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10254  DeclarationName Name = NameInfo.getName();
10255  assert(Name);
10256
10257  // Check for unexpanded parameter packs.
10258  if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10259      DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10260      DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10261    return 0;
10262
10263  // The context we found the declaration in, or in which we should
10264  // create the declaration.
10265  DeclContext *DC;
10266  Scope *DCScope = S;
10267  LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
10268                        ForRedeclaration);
10269
10270  // FIXME: there are different rules in local classes
10271
10272  // There are four cases here.
10273  //   - There's no scope specifier, in which case we just go to the
10274  //     appropriate scope and look for a function or function template
10275  //     there as appropriate.
10276  // Recover from invalid scope qualifiers as if they just weren't there.
10277  if (SS.isInvalid() || !SS.isSet()) {
10278    // C++0x [namespace.memdef]p3:
10279    //   If the name in a friend declaration is neither qualified nor
10280    //   a template-id and the declaration is a function or an
10281    //   elaborated-type-specifier, the lookup to determine whether
10282    //   the entity has been previously declared shall not consider
10283    //   any scopes outside the innermost enclosing namespace.
10284    // C++0x [class.friend]p11:
10285    //   If a friend declaration appears in a local class and the name
10286    //   specified is an unqualified name, a prior declaration is
10287    //   looked up without considering scopes that are outside the
10288    //   innermost enclosing non-class scope. For a friend function
10289    //   declaration, if there is no prior declaration, the program is
10290    //   ill-formed.
10291    bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
10292    bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
10293
10294    // Find the appropriate context according to the above.
10295    DC = CurContext;
10296    while (true) {
10297      // Skip class contexts.  If someone can cite chapter and verse
10298      // for this behavior, that would be nice --- it's what GCC and
10299      // EDG do, and it seems like a reasonable intent, but the spec
10300      // really only says that checks for unqualified existing
10301      // declarations should stop at the nearest enclosing namespace,
10302      // not that they should only consider the nearest enclosing
10303      // namespace.
10304      while (DC->isRecord() || DC->isTransparentContext())
10305        DC = DC->getParent();
10306
10307      LookupQualifiedName(Previous, DC);
10308
10309      // TODO: decide what we think about using declarations.
10310      if (isLocal || !Previous.empty())
10311        break;
10312
10313      if (isTemplateId) {
10314        if (isa<TranslationUnitDecl>(DC)) break;
10315      } else {
10316        if (DC->isFileContext()) break;
10317      }
10318      DC = DC->getParent();
10319    }
10320
10321    // C++ [class.friend]p1: A friend of a class is a function or
10322    //   class that is not a member of the class . . .
10323    // C++11 changes this for both friend types and functions.
10324    // Most C++ 98 compilers do seem to give an error here, so
10325    // we do, too.
10326    if (!Previous.empty() && DC->Equals(CurContext))
10327      Diag(DS.getFriendSpecLoc(),
10328           getLangOpts().CPlusPlus0x ?
10329             diag::warn_cxx98_compat_friend_is_member :
10330             diag::err_friend_is_member);
10331
10332    DCScope = getScopeForDeclContext(S, DC);
10333
10334    // C++ [class.friend]p6:
10335    //   A function can be defined in a friend declaration of a class if and
10336    //   only if the class is a non-local class (9.8), the function name is
10337    //   unqualified, and the function has namespace scope.
10338    if (isLocal && D.isFunctionDefinition()) {
10339      Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10340    }
10341
10342  //   - There's a non-dependent scope specifier, in which case we
10343  //     compute it and do a previous lookup there for a function
10344  //     or function template.
10345  } else if (!SS.getScopeRep()->isDependent()) {
10346    DC = computeDeclContext(SS);
10347    if (!DC) return 0;
10348
10349    if (RequireCompleteDeclContext(SS, DC)) return 0;
10350
10351    LookupQualifiedName(Previous, DC);
10352
10353    // Ignore things found implicitly in the wrong scope.
10354    // TODO: better diagnostics for this case.  Suggesting the right
10355    // qualified scope would be nice...
10356    LookupResult::Filter F = Previous.makeFilter();
10357    while (F.hasNext()) {
10358      NamedDecl *D = F.next();
10359      if (!DC->InEnclosingNamespaceSetOf(
10360              D->getDeclContext()->getRedeclContext()))
10361        F.erase();
10362    }
10363    F.done();
10364
10365    if (Previous.empty()) {
10366      D.setInvalidType();
10367      Diag(Loc, diag::err_qualified_friend_not_found)
10368          << Name << TInfo->getType();
10369      return 0;
10370    }
10371
10372    // C++ [class.friend]p1: A friend of a class is a function or
10373    //   class that is not a member of the class . . .
10374    if (DC->Equals(CurContext))
10375      Diag(DS.getFriendSpecLoc(),
10376           getLangOpts().CPlusPlus0x ?
10377             diag::warn_cxx98_compat_friend_is_member :
10378             diag::err_friend_is_member);
10379
10380    if (D.isFunctionDefinition()) {
10381      // C++ [class.friend]p6:
10382      //   A function can be defined in a friend declaration of a class if and
10383      //   only if the class is a non-local class (9.8), the function name is
10384      //   unqualified, and the function has namespace scope.
10385      SemaDiagnosticBuilder DB
10386        = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10387
10388      DB << SS.getScopeRep();
10389      if (DC->isFileContext())
10390        DB << FixItHint::CreateRemoval(SS.getRange());
10391      SS.clear();
10392    }
10393
10394  //   - There's a scope specifier that does not match any template
10395  //     parameter lists, in which case we use some arbitrary context,
10396  //     create a method or method template, and wait for instantiation.
10397  //   - There's a scope specifier that does match some template
10398  //     parameter lists, which we don't handle right now.
10399  } else {
10400    if (D.isFunctionDefinition()) {
10401      // C++ [class.friend]p6:
10402      //   A function can be defined in a friend declaration of a class if and
10403      //   only if the class is a non-local class (9.8), the function name is
10404      //   unqualified, and the function has namespace scope.
10405      Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10406        << SS.getScopeRep();
10407    }
10408
10409    DC = CurContext;
10410    assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
10411  }
10412
10413  if (!DC->isRecord()) {
10414    // This implies that it has to be an operator or function.
10415    if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10416        D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10417        D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
10418      Diag(Loc, diag::err_introducing_special_friend) <<
10419        (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10420         D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
10421      return 0;
10422    }
10423  }
10424
10425  // FIXME: This is an egregious hack to cope with cases where the scope stack
10426  // does not contain the declaration context, i.e., in an out-of-line
10427  // definition of a class.
10428  Scope FakeDCScope(S, Scope::DeclScope, Diags);
10429  if (!DCScope) {
10430    FakeDCScope.setEntity(DC);
10431    DCScope = &FakeDCScope;
10432  }
10433
10434  bool AddToScope = true;
10435  NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
10436                                          TemplateParams, AddToScope);
10437  if (!ND) return 0;
10438
10439  assert(ND->getDeclContext() == DC);
10440  assert(ND->getLexicalDeclContext() == CurContext);
10441
10442  // Add the function declaration to the appropriate lookup tables,
10443  // adjusting the redeclarations list as necessary.  We don't
10444  // want to do this yet if the friending class is dependent.
10445  //
10446  // Also update the scope-based lookup if the target context's
10447  // lookup context is in lexical scope.
10448  if (!CurContext->isDependentContext()) {
10449    DC = DC->getRedeclContext();
10450    DC->makeDeclVisibleInContext(ND);
10451    if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
10452      PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
10453  }
10454
10455  FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
10456                                       D.getIdentifierLoc(), ND,
10457                                       DS.getFriendSpecLoc());
10458  FrD->setAccess(AS_public);
10459  CurContext->addDecl(FrD);
10460
10461  if (ND->isInvalidDecl()) {
10462    FrD->setInvalidDecl();
10463  } else {
10464    if (DC->isRecord()) CheckFriendAccess(ND);
10465
10466    FunctionDecl *FD;
10467    if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10468      FD = FTD->getTemplatedDecl();
10469    else
10470      FD = cast<FunctionDecl>(ND);
10471
10472    // Mark templated-scope function declarations as unsupported.
10473    if (FD->getNumTemplateParameterLists())
10474      FrD->setUnsupportedFriend(true);
10475  }
10476
10477  return ND;
10478}
10479
10480void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10481  AdjustDeclIfTemplate(Dcl);
10482
10483  FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10484  if (!Fn) {
10485    Diag(DelLoc, diag::err_deleted_non_function);
10486    return;
10487  }
10488  if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
10489    // Don't consider the implicit declaration we generate for explicit
10490    // specializations. FIXME: Do not generate these implicit declarations.
10491    if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10492        || Prev->getPreviousDecl()) && !Prev->isDefined()) {
10493      Diag(DelLoc, diag::err_deleted_decl_not_first);
10494      Diag(Prev->getLocation(), diag::note_previous_declaration);
10495    }
10496    // If the declaration wasn't the first, we delete the function anyway for
10497    // recovery.
10498  }
10499  Fn->setDeletedAsWritten();
10500
10501  CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10502  if (!MD)
10503    return;
10504
10505  // A deleted special member function is trivial if the corresponding
10506  // implicitly-declared function would have been.
10507  switch (getSpecialMember(MD)) {
10508  case CXXInvalid:
10509    break;
10510  case CXXDefaultConstructor:
10511    MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10512    break;
10513  case CXXCopyConstructor:
10514    MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10515    break;
10516  case CXXMoveConstructor:
10517    MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10518    break;
10519  case CXXCopyAssignment:
10520    MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10521    break;
10522  case CXXMoveAssignment:
10523    MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10524    break;
10525  case CXXDestructor:
10526    MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10527    break;
10528  }
10529}
10530
10531void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10532  CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10533
10534  if (MD) {
10535    if (MD->getParent()->isDependentType()) {
10536      MD->setDefaulted();
10537      MD->setExplicitlyDefaulted();
10538      return;
10539    }
10540
10541    CXXSpecialMember Member = getSpecialMember(MD);
10542    if (Member == CXXInvalid) {
10543      Diag(DefaultLoc, diag::err_default_special_members);
10544      return;
10545    }
10546
10547    MD->setDefaulted();
10548    MD->setExplicitlyDefaulted();
10549
10550    // If this definition appears within the record, do the checking when
10551    // the record is complete.
10552    const FunctionDecl *Primary = MD;
10553    if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
10554      // Find the uninstantiated declaration that actually had the '= default'
10555      // on it.
10556      Pattern->isDefined(Primary);
10557
10558    if (Primary == Primary->getCanonicalDecl())
10559      return;
10560
10561    CheckExplicitlyDefaultedSpecialMember(MD);
10562
10563    switch (Member) {
10564    case CXXDefaultConstructor: {
10565      CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
10566      if (!CD->isInvalidDecl())
10567        DefineImplicitDefaultConstructor(DefaultLoc, CD);
10568      break;
10569    }
10570
10571    case CXXCopyConstructor: {
10572      CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
10573      if (!CD->isInvalidDecl())
10574        DefineImplicitCopyConstructor(DefaultLoc, CD);
10575      break;
10576    }
10577
10578    case CXXCopyAssignment: {
10579      if (!MD->isInvalidDecl())
10580        DefineImplicitCopyAssignment(DefaultLoc, MD);
10581      break;
10582    }
10583
10584    case CXXDestructor: {
10585      CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
10586      if (!DD->isInvalidDecl())
10587        DefineImplicitDestructor(DefaultLoc, DD);
10588      break;
10589    }
10590
10591    case CXXMoveConstructor: {
10592      CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
10593      if (!CD->isInvalidDecl())
10594        DefineImplicitMoveConstructor(DefaultLoc, CD);
10595      break;
10596    }
10597
10598    case CXXMoveAssignment: {
10599      if (!MD->isInvalidDecl())
10600        DefineImplicitMoveAssignment(DefaultLoc, MD);
10601      break;
10602    }
10603
10604    case CXXInvalid:
10605      llvm_unreachable("Invalid special member.");
10606    }
10607  } else {
10608    Diag(DefaultLoc, diag::err_default_special_members);
10609  }
10610}
10611
10612static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
10613  for (Stmt::child_range CI = S->children(); CI; ++CI) {
10614    Stmt *SubStmt = *CI;
10615    if (!SubStmt)
10616      continue;
10617    if (isa<ReturnStmt>(SubStmt))
10618      Self.Diag(SubStmt->getLocStart(),
10619           diag::err_return_in_constructor_handler);
10620    if (!isa<Expr>(SubStmt))
10621      SearchForReturnInStmt(Self, SubStmt);
10622  }
10623}
10624
10625void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10626  for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10627    CXXCatchStmt *Handler = TryBlock->getHandler(I);
10628    SearchForReturnInStmt(*this, Handler);
10629  }
10630}
10631
10632bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
10633                                             const CXXMethodDecl *Old) {
10634  QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10635  QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
10636
10637  if (Context.hasSameType(NewTy, OldTy) ||
10638      NewTy->isDependentType() || OldTy->isDependentType())
10639    return false;
10640
10641  // Check if the return types are covariant
10642  QualType NewClassTy, OldClassTy;
10643
10644  /// Both types must be pointers or references to classes.
10645  if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10646    if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
10647      NewClassTy = NewPT->getPointeeType();
10648      OldClassTy = OldPT->getPointeeType();
10649    }
10650  } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10651    if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10652      if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10653        NewClassTy = NewRT->getPointeeType();
10654        OldClassTy = OldRT->getPointeeType();
10655      }
10656    }
10657  }
10658
10659  // The return types aren't either both pointers or references to a class type.
10660  if (NewClassTy.isNull()) {
10661    Diag(New->getLocation(),
10662         diag::err_different_return_type_for_overriding_virtual_function)
10663      << New->getDeclName() << NewTy << OldTy;
10664    Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10665
10666    return true;
10667  }
10668
10669  // C++ [class.virtual]p6:
10670  //   If the return type of D::f differs from the return type of B::f, the
10671  //   class type in the return type of D::f shall be complete at the point of
10672  //   declaration of D::f or shall be the class type D.
10673  if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10674    if (!RT->isBeingDefined() &&
10675        RequireCompleteType(New->getLocation(), NewClassTy,
10676                            diag::err_covariant_return_incomplete,
10677                            New->getDeclName()))
10678    return true;
10679  }
10680
10681  if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
10682    // Check if the new class derives from the old class.
10683    if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10684      Diag(New->getLocation(),
10685           diag::err_covariant_return_not_derived)
10686      << New->getDeclName() << NewTy << OldTy;
10687      Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10688      return true;
10689    }
10690
10691    // Check if we the conversion from derived to base is valid.
10692    if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
10693                    diag::err_covariant_return_inaccessible_base,
10694                    diag::err_covariant_return_ambiguous_derived_to_base_conv,
10695                    // FIXME: Should this point to the return type?
10696                    New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
10697      // FIXME: this note won't trigger for delayed access control
10698      // diagnostics, and it's impossible to get an undelayed error
10699      // here from access control during the original parse because
10700      // the ParsingDeclSpec/ParsingDeclarator are still in scope.
10701      Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10702      return true;
10703    }
10704  }
10705
10706  // The qualifiers of the return types must be the same.
10707  if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
10708    Diag(New->getLocation(),
10709         diag::err_covariant_return_type_different_qualifications)
10710    << New->getDeclName() << NewTy << OldTy;
10711    Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10712    return true;
10713  };
10714
10715
10716  // The new class type must have the same or less qualifiers as the old type.
10717  if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10718    Diag(New->getLocation(),
10719         diag::err_covariant_return_type_class_type_more_qualified)
10720    << New->getDeclName() << NewTy << OldTy;
10721    Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10722    return true;
10723  };
10724
10725  return false;
10726}
10727
10728/// \brief Mark the given method pure.
10729///
10730/// \param Method the method to be marked pure.
10731///
10732/// \param InitRange the source range that covers the "0" initializer.
10733bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
10734  SourceLocation EndLoc = InitRange.getEnd();
10735  if (EndLoc.isValid())
10736    Method->setRangeEnd(EndLoc);
10737
10738  if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10739    Method->setPure();
10740    return false;
10741  }
10742
10743  if (!Method->isInvalidDecl())
10744    Diag(Method->getLocation(), diag::err_non_virtual_pure)
10745      << Method->getDeclName() << InitRange;
10746  return true;
10747}
10748
10749/// \brief Determine whether the given declaration is a static data member.
10750static bool isStaticDataMember(Decl *D) {
10751  VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10752  if (!Var)
10753    return false;
10754
10755  return Var->isStaticDataMember();
10756}
10757/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10758/// an initializer for the out-of-line declaration 'Dcl'.  The scope
10759/// is a fresh scope pushed for just this purpose.
10760///
10761/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10762/// static data member of class X, names should be looked up in the scope of
10763/// class X.
10764void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
10765  // If there is no declaration, there was an error parsing it.
10766  if (D == 0 || D->isInvalidDecl()) return;
10767
10768  // We should only get called for declarations with scope specifiers, like:
10769  //   int foo::bar;
10770  assert(D->isOutOfLine());
10771  EnterDeclaratorContext(S, D->getDeclContext());
10772
10773  // If we are parsing the initializer for a static data member, push a
10774  // new expression evaluation context that is associated with this static
10775  // data member.
10776  if (isStaticDataMember(D))
10777    PushExpressionEvaluationContext(PotentiallyEvaluated, D);
10778}
10779
10780/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
10781/// initializer for the out-of-line declaration 'D'.
10782void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
10783  // If there is no declaration, there was an error parsing it.
10784  if (D == 0 || D->isInvalidDecl()) return;
10785
10786  if (isStaticDataMember(D))
10787    PopExpressionEvaluationContext();
10788
10789  assert(D->isOutOfLine());
10790  ExitDeclaratorContext(S);
10791}
10792
10793/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10794/// C++ if/switch/while/for statement.
10795/// e.g: "if (int x = f()) {...}"
10796DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
10797  // C++ 6.4p2:
10798  // The declarator shall not specify a function or an array.
10799  // The type-specifier-seq shall not contain typedef and shall not declare a
10800  // new class or enumeration.
10801  assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10802         "Parser allowed 'typedef' as storage class of condition decl.");
10803
10804  Decl *Dcl = ActOnDeclarator(S, D);
10805  if (!Dcl)
10806    return true;
10807
10808  if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10809    Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
10810      << D.getSourceRange();
10811    return true;
10812  }
10813
10814  return Dcl;
10815}
10816
10817void Sema::LoadExternalVTableUses() {
10818  if (!ExternalSource)
10819    return;
10820
10821  SmallVector<ExternalVTableUse, 4> VTables;
10822  ExternalSource->ReadUsedVTables(VTables);
10823  SmallVector<VTableUse, 4> NewUses;
10824  for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10825    llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10826      = VTablesUsed.find(VTables[I].Record);
10827    // Even if a definition wasn't required before, it may be required now.
10828    if (Pos != VTablesUsed.end()) {
10829      if (!Pos->second && VTables[I].DefinitionRequired)
10830        Pos->second = true;
10831      continue;
10832    }
10833
10834    VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10835    NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10836  }
10837
10838  VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10839}
10840
10841void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10842                          bool DefinitionRequired) {
10843  // Ignore any vtable uses in unevaluated operands or for classes that do
10844  // not have a vtable.
10845  if (!Class->isDynamicClass() || Class->isDependentContext() ||
10846      CurContext->isDependentContext() ||
10847      ExprEvalContexts.back().Context == Unevaluated)
10848    return;
10849
10850  // Try to insert this class into the map.
10851  LoadExternalVTableUses();
10852  Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10853  std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10854    Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10855  if (!Pos.second) {
10856    // If we already had an entry, check to see if we are promoting this vtable
10857    // to required a definition. If so, we need to reappend to the VTableUses
10858    // list, since we may have already processed the first entry.
10859    if (DefinitionRequired && !Pos.first->second) {
10860      Pos.first->second = true;
10861    } else {
10862      // Otherwise, we can early exit.
10863      return;
10864    }
10865  }
10866
10867  // Local classes need to have their virtual members marked
10868  // immediately. For all other classes, we mark their virtual members
10869  // at the end of the translation unit.
10870  if (Class->isLocalClass())
10871    MarkVirtualMembersReferenced(Loc, Class);
10872  else
10873    VTableUses.push_back(std::make_pair(Class, Loc));
10874}
10875
10876bool Sema::DefineUsedVTables() {
10877  LoadExternalVTableUses();
10878  if (VTableUses.empty())
10879    return false;
10880
10881  // Note: The VTableUses vector could grow as a result of marking
10882  // the members of a class as "used", so we check the size each
10883  // time through the loop and prefer indices (which are stable) to
10884  // iterators (which are not).
10885  bool DefinedAnything = false;
10886  for (unsigned I = 0; I != VTableUses.size(); ++I) {
10887    CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
10888    if (!Class)
10889      continue;
10890
10891    SourceLocation Loc = VTableUses[I].second;
10892
10893    bool DefineVTable = true;
10894
10895    // If this class has a key function, but that key function is
10896    // defined in another translation unit, we don't need to emit the
10897    // vtable even though we're using it.
10898    const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
10899    if (KeyFunction && !KeyFunction->hasBody()) {
10900      switch (KeyFunction->getTemplateSpecializationKind()) {
10901      case TSK_Undeclared:
10902      case TSK_ExplicitSpecialization:
10903      case TSK_ExplicitInstantiationDeclaration:
10904        // The key function is in another translation unit.
10905        DefineVTable = false;
10906        break;
10907
10908      case TSK_ExplicitInstantiationDefinition:
10909      case TSK_ImplicitInstantiation:
10910        // We will be instantiating the key function.
10911        break;
10912      }
10913    } else if (!KeyFunction) {
10914      // If we have a class with no key function that is the subject
10915      // of an explicit instantiation declaration, suppress the
10916      // vtable; it will live with the explicit instantiation
10917      // definition.
10918      bool IsExplicitInstantiationDeclaration
10919        = Class->getTemplateSpecializationKind()
10920                                      == TSK_ExplicitInstantiationDeclaration;
10921      for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10922                                 REnd = Class->redecls_end();
10923           R != REnd; ++R) {
10924        TemplateSpecializationKind TSK
10925          = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10926        if (TSK == TSK_ExplicitInstantiationDeclaration)
10927          IsExplicitInstantiationDeclaration = true;
10928        else if (TSK == TSK_ExplicitInstantiationDefinition) {
10929          IsExplicitInstantiationDeclaration = false;
10930          break;
10931        }
10932      }
10933
10934      if (IsExplicitInstantiationDeclaration)
10935        DefineVTable = false;
10936    }
10937
10938    // The exception specifications for all virtual members may be needed even
10939    // if we are not providing an authoritative form of the vtable in this TU.
10940    // We may choose to emit it available_externally anyway.
10941    if (!DefineVTable) {
10942      MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
10943      continue;
10944    }
10945
10946    // Mark all of the virtual members of this class as referenced, so
10947    // that we can build a vtable. Then, tell the AST consumer that a
10948    // vtable for this class is required.
10949    DefinedAnything = true;
10950    MarkVirtualMembersReferenced(Loc, Class);
10951    CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10952    Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10953
10954    // Optionally warn if we're emitting a weak vtable.
10955    if (Class->getLinkage() == ExternalLinkage &&
10956        Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
10957      const FunctionDecl *KeyFunctionDef = 0;
10958      if (!KeyFunction ||
10959          (KeyFunction->hasBody(KeyFunctionDef) &&
10960           KeyFunctionDef->isInlined()))
10961        Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10962             TSK_ExplicitInstantiationDefinition
10963             ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10964          << Class;
10965    }
10966  }
10967  VTableUses.clear();
10968
10969  return DefinedAnything;
10970}
10971
10972void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
10973                                                 const CXXRecordDecl *RD) {
10974  for (CXXRecordDecl::method_iterator I = RD->method_begin(),
10975                                      E = RD->method_end(); I != E; ++I)
10976    if ((*I)->isVirtual() && !(*I)->isPure())
10977      ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
10978}
10979
10980void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10981                                        const CXXRecordDecl *RD) {
10982  // Mark all functions which will appear in RD's vtable as used.
10983  CXXFinalOverriderMap FinalOverriders;
10984  RD->getFinalOverriders(FinalOverriders);
10985  for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
10986                                            E = FinalOverriders.end();
10987       I != E; ++I) {
10988    for (OverridingMethods::const_iterator OI = I->second.begin(),
10989                                           OE = I->second.end();
10990         OI != OE; ++OI) {
10991      assert(OI->second.size() > 0 && "no final overrider");
10992      CXXMethodDecl *Overrider = OI->second.front().Method;
10993
10994      // C++ [basic.def.odr]p2:
10995      //   [...] A virtual member function is used if it is not pure. [...]
10996      if (!Overrider->isPure())
10997        MarkFunctionReferenced(Loc, Overrider);
10998    }
10999  }
11000
11001  // Only classes that have virtual bases need a VTT.
11002  if (RD->getNumVBases() == 0)
11003    return;
11004
11005  for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
11006           e = RD->bases_end(); i != e; ++i) {
11007    const CXXRecordDecl *Base =
11008        cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
11009    if (Base->getNumVBases() == 0)
11010      continue;
11011    MarkVirtualMembersReferenced(Loc, Base);
11012  }
11013}
11014
11015/// SetIvarInitializers - This routine builds initialization ASTs for the
11016/// Objective-C implementation whose ivars need be initialized.
11017void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
11018  if (!getLangOpts().CPlusPlus)
11019    return;
11020  if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
11021    SmallVector<ObjCIvarDecl*, 8> ivars;
11022    CollectIvarsToConstructOrDestruct(OID, ivars);
11023    if (ivars.empty())
11024      return;
11025    SmallVector<CXXCtorInitializer*, 32> AllToInit;
11026    for (unsigned i = 0; i < ivars.size(); i++) {
11027      FieldDecl *Field = ivars[i];
11028      if (Field->isInvalidDecl())
11029        continue;
11030
11031      CXXCtorInitializer *Member;
11032      InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
11033      InitializationKind InitKind =
11034        InitializationKind::CreateDefault(ObjCImplementation->getLocation());
11035
11036      InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
11037      ExprResult MemberInit =
11038        InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
11039      MemberInit = MaybeCreateExprWithCleanups(MemberInit);
11040      // Note, MemberInit could actually come back empty if no initialization
11041      // is required (e.g., because it would call a trivial default constructor)
11042      if (!MemberInit.get() || MemberInit.isInvalid())
11043        continue;
11044
11045      Member =
11046        new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
11047                                         SourceLocation(),
11048                                         MemberInit.takeAs<Expr>(),
11049                                         SourceLocation());
11050      AllToInit.push_back(Member);
11051
11052      // Be sure that the destructor is accessible and is marked as referenced.
11053      if (const RecordType *RecordTy
11054                  = Context.getBaseElementType(Field->getType())
11055                                                        ->getAs<RecordType>()) {
11056                    CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
11057        if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
11058          MarkFunctionReferenced(Field->getLocation(), Destructor);
11059          CheckDestructorAccess(Field->getLocation(), Destructor,
11060                            PDiag(diag::err_access_dtor_ivar)
11061                              << Context.getBaseElementType(Field->getType()));
11062        }
11063      }
11064    }
11065    ObjCImplementation->setIvarInitializers(Context,
11066                                            AllToInit.data(), AllToInit.size());
11067  }
11068}
11069
11070static
11071void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
11072                           llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
11073                           llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
11074                           llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
11075                           Sema &S) {
11076  llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11077                                                   CE = Current.end();
11078  if (Ctor->isInvalidDecl())
11079    return;
11080
11081  CXXConstructorDecl *Target = Ctor->getTargetConstructor();
11082
11083  // Target may not be determinable yet, for instance if this is a dependent
11084  // call in an uninstantiated template.
11085  if (Target) {
11086    const FunctionDecl *FNTarget = 0;
11087    (void)Target->hasBody(FNTarget);
11088    Target = const_cast<CXXConstructorDecl*>(
11089      cast_or_null<CXXConstructorDecl>(FNTarget));
11090  }
11091
11092  CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
11093                     // Avoid dereferencing a null pointer here.
11094                     *TCanonical = Target ? Target->getCanonicalDecl() : 0;
11095
11096  if (!Current.insert(Canonical))
11097    return;
11098
11099  // We know that beyond here, we aren't chaining into a cycle.
11100  if (!Target || !Target->isDelegatingConstructor() ||
11101      Target->isInvalidDecl() || Valid.count(TCanonical)) {
11102    for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11103      Valid.insert(*CI);
11104    Current.clear();
11105  // We've hit a cycle.
11106  } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11107             Current.count(TCanonical)) {
11108    // If we haven't diagnosed this cycle yet, do so now.
11109    if (!Invalid.count(TCanonical)) {
11110      S.Diag((*Ctor->init_begin())->getSourceLocation(),
11111             diag::warn_delegating_ctor_cycle)
11112        << Ctor;
11113
11114      // Don't add a note for a function delegating directly to itself.
11115      if (TCanonical != Canonical)
11116        S.Diag(Target->getLocation(), diag::note_it_delegates_to);
11117
11118      CXXConstructorDecl *C = Target;
11119      while (C->getCanonicalDecl() != Canonical) {
11120        const FunctionDecl *FNTarget = 0;
11121        (void)C->getTargetConstructor()->hasBody(FNTarget);
11122        assert(FNTarget && "Ctor cycle through bodiless function");
11123
11124        C = const_cast<CXXConstructorDecl*>(
11125          cast<CXXConstructorDecl>(FNTarget));
11126        S.Diag(C->getLocation(), diag::note_which_delegates_to);
11127      }
11128    }
11129
11130    for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11131      Invalid.insert(*CI);
11132    Current.clear();
11133  } else {
11134    DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11135  }
11136}
11137
11138
11139void Sema::CheckDelegatingCtorCycles() {
11140  llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11141
11142  llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11143                                                   CE = Current.end();
11144
11145  for (DelegatingCtorDeclsType::iterator
11146         I = DelegatingCtorDecls.begin(ExternalSource),
11147         E = DelegatingCtorDecls.end();
11148       I != E; ++I)
11149    DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
11150
11151  for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11152    (*CI)->setInvalidDecl();
11153}
11154
11155namespace {
11156  /// \brief AST visitor that finds references to the 'this' expression.
11157  class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11158    Sema &S;
11159
11160  public:
11161    explicit FindCXXThisExpr(Sema &S) : S(S) { }
11162
11163    bool VisitCXXThisExpr(CXXThisExpr *E) {
11164      S.Diag(E->getLocation(), diag::err_this_static_member_func)
11165        << E->isImplicit();
11166      return false;
11167    }
11168  };
11169}
11170
11171bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11172  TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11173  if (!TSInfo)
11174    return false;
11175
11176  TypeLoc TL = TSInfo->getTypeLoc();
11177  FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11178  if (!ProtoTL)
11179    return false;
11180
11181  // C++11 [expr.prim.general]p3:
11182  //   [The expression this] shall not appear before the optional
11183  //   cv-qualifier-seq and it shall not appear within the declaration of a
11184  //   static member function (although its type and value category are defined
11185  //   within a static member function as they are within a non-static member
11186  //   function). [ Note: this is because declaration matching does not occur
11187  //  until the complete declarator is known. - end note ]
11188  const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11189  FindCXXThisExpr Finder(*this);
11190
11191  // If the return type came after the cv-qualifier-seq, check it now.
11192  if (Proto->hasTrailingReturn() &&
11193      !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11194    return true;
11195
11196  // Check the exception specification.
11197  if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11198    return true;
11199
11200  return checkThisInStaticMemberFunctionAttributes(Method);
11201}
11202
11203bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11204  TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11205  if (!TSInfo)
11206    return false;
11207
11208  TypeLoc TL = TSInfo->getTypeLoc();
11209  FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11210  if (!ProtoTL)
11211    return false;
11212
11213  const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11214  FindCXXThisExpr Finder(*this);
11215
11216  switch (Proto->getExceptionSpecType()) {
11217  case EST_Uninstantiated:
11218  case EST_Unevaluated:
11219  case EST_BasicNoexcept:
11220  case EST_DynamicNone:
11221  case EST_MSAny:
11222  case EST_None:
11223    break;
11224
11225  case EST_ComputedNoexcept:
11226    if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11227      return true;
11228
11229  case EST_Dynamic:
11230    for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
11231         EEnd = Proto->exception_end();
11232         E != EEnd; ++E) {
11233      if (!Finder.TraverseType(*E))
11234        return true;
11235    }
11236    break;
11237  }
11238
11239  return false;
11240}
11241
11242bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11243  FindCXXThisExpr Finder(*this);
11244
11245  // Check attributes.
11246  for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11247       A != AEnd; ++A) {
11248    // FIXME: This should be emitted by tblgen.
11249    Expr *Arg = 0;
11250    ArrayRef<Expr *> Args;
11251    if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11252      Arg = G->getArg();
11253    else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11254      Arg = G->getArg();
11255    else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11256      Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11257    else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11258      Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11259    else if (ExclusiveLockFunctionAttr *ELF
11260               = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11261      Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11262    else if (SharedLockFunctionAttr *SLF
11263               = dyn_cast<SharedLockFunctionAttr>(*A))
11264      Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11265    else if (ExclusiveTrylockFunctionAttr *ETLF
11266               = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11267      Arg = ETLF->getSuccessValue();
11268      Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11269    } else if (SharedTrylockFunctionAttr *STLF
11270                 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11271      Arg = STLF->getSuccessValue();
11272      Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11273    } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11274      Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11275    else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11276      Arg = LR->getArg();
11277    else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11278      Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11279    else if (ExclusiveLocksRequiredAttr *ELR
11280               = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11281      Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11282    else if (SharedLocksRequiredAttr *SLR
11283               = dyn_cast<SharedLocksRequiredAttr>(*A))
11284      Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11285
11286    if (Arg && !Finder.TraverseStmt(Arg))
11287      return true;
11288
11289    for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11290      if (!Finder.TraverseStmt(Args[I]))
11291        return true;
11292    }
11293  }
11294
11295  return false;
11296}
11297
11298void
11299Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11300                                  ArrayRef<ParsedType> DynamicExceptions,
11301                                  ArrayRef<SourceRange> DynamicExceptionRanges,
11302                                  Expr *NoexceptExpr,
11303                                  llvm::SmallVectorImpl<QualType> &Exceptions,
11304                                  FunctionProtoType::ExtProtoInfo &EPI) {
11305  Exceptions.clear();
11306  EPI.ExceptionSpecType = EST;
11307  if (EST == EST_Dynamic) {
11308    Exceptions.reserve(DynamicExceptions.size());
11309    for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11310      // FIXME: Preserve type source info.
11311      QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11312
11313      SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11314      collectUnexpandedParameterPacks(ET, Unexpanded);
11315      if (!Unexpanded.empty()) {
11316        DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11317                                         UPPC_ExceptionType,
11318                                         Unexpanded);
11319        continue;
11320      }
11321
11322      // Check that the type is valid for an exception spec, and
11323      // drop it if not.
11324      if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11325        Exceptions.push_back(ET);
11326    }
11327    EPI.NumExceptions = Exceptions.size();
11328    EPI.Exceptions = Exceptions.data();
11329    return;
11330  }
11331
11332  if (EST == EST_ComputedNoexcept) {
11333    // If an error occurred, there's no expression here.
11334    if (NoexceptExpr) {
11335      assert((NoexceptExpr->isTypeDependent() ||
11336              NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11337              Context.BoolTy) &&
11338             "Parser should have made sure that the expression is boolean");
11339      if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11340        EPI.ExceptionSpecType = EST_BasicNoexcept;
11341        return;
11342      }
11343
11344      if (!NoexceptExpr->isValueDependent())
11345        NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
11346                         diag::err_noexcept_needs_constant_expression,
11347                         /*AllowFold*/ false).take();
11348      EPI.NoexceptExpr = NoexceptExpr;
11349    }
11350    return;
11351  }
11352}
11353
11354/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11355Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11356  // Implicitly declared functions (e.g. copy constructors) are
11357  // __host__ __device__
11358  if (D->isImplicit())
11359    return CFT_HostDevice;
11360
11361  if (D->hasAttr<CUDAGlobalAttr>())
11362    return CFT_Global;
11363
11364  if (D->hasAttr<CUDADeviceAttr>()) {
11365    if (D->hasAttr<CUDAHostAttr>())
11366      return CFT_HostDevice;
11367    else
11368      return CFT_Device;
11369  }
11370
11371  return CFT_Host;
11372}
11373
11374bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11375                           CUDAFunctionTarget CalleeTarget) {
11376  // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11377  // Callable from the device only."
11378  if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11379    return true;
11380
11381  // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11382  // Callable from the host only."
11383  // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11384  // Callable from the host only."
11385  if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11386      (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11387    return true;
11388
11389  if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11390    return true;
11391
11392  return false;
11393}
11394